Initial commit of Ceres Solver.
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..4a9cecc
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,284 @@
+# Ceres Solver - A fast non-linear least squares minimizer
+# Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+# http://code.google.com/p/ceres-solver/
+#
+# 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 Google 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.
+#
+# Author: keir@google.com (Keir Mierle)
+
+
+CMAKE_MINIMUM_REQUIRED(VERSION 2.2)
+
+IF (COMMAND cmake_policy)
+  CMAKE_POLICY(SET CMP0003 NEW)
+ENDIF (COMMAND cmake_policy)
+
+PROJECT(CERES C CXX)
+
+ENABLE_TESTING()
+
+# SuiteSparse
+OPTION(SUITESPARSE
+       "Enable SuiteSparse. Needed for efficient solutions of large problems."
+       ON)
+
+# To get a more static build, try the following line on Mac and Linux:
+# SET(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
+
+IF (SUITESPARSE)
+  SET(SUITESPARSE_SEARCH_LIBS
+      ${SEARCH_LIBS}
+      /usr/lib
+      /usr/lib/suitesparse             # Ubuntu
+      /usr/local/lib/
+      /usr/local/lib/suitesparse
+      /opt/local/lib/ufsparse          # Mac OS X
+      )
+
+  SET(SUITESPARSE_SEARCH_HEADERS
+      ${SEARCH_HEADERS}
+      /usr/include
+      /usr/include/suitesparse         # Ubuntu
+      /usr/local/include
+      /usr/local/include/suitesparse,
+      /opt/local/include/ufsparse      # Mac os X
+      )
+
+  FIND_LIBRARY(AMD_LIB NAMES amd PATHS ${SUITESPARSE_SEARCH_LIBS})
+  FIND_PATH(AMD_INCLUDE NAMES amd.h PATHS ${SUITESPARSE_SEARCH_HEADERS})
+  IF (NOT EXISTS ${AMD_LIB} OR NOT EXISTS ${AMD_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find AMD (part of suitesparse.) "
+            "Please specify -DAMD_INCLUDE=... and -DAMD_LIB=...")
+  ENDIF (NOT EXISTS ${AMD_LIB} OR NOT EXISTS ${AMD_INCLUDE})
+  MESSAGE("-- Found AMD library: ${AMD_LIB}")
+  MESSAGE("-- Found AMD header in: ${AMD_INCLUDE}")
+
+  MESSAGE("-- Check for CAMD")
+  FIND_LIBRARY(CAMD_LIB NAMES camd PATHS ${SUITESPARSE_SEARCH_LIBS})
+  FIND_PATH(CAMD_INCLUDE NAMES camd.h PATHS ${SUITESPARSE_SEARCH_HEADERS})
+  IF (NOT EXISTS ${CAMD_LIB} OR NOT EXISTS ${CAMD_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find CAMD (part of suitesparse.) "
+            "Please specify -DCAMD_INCLUDE=... and -DCAMD_LIB=...")
+  ENDIF (NOT EXISTS ${CAMD_LIB} OR NOT EXISTS ${CAMD_INCLUDE})
+  MESSAGE("-- Found CAMD library: ${CAMD_LIB}")
+  MESSAGE("-- Found CAMD header in: ${CAMD_INCLUDE}")
+
+  # Note: Even though Ceres doesn't directly depend on COLAMD,
+  # some symbols from COLAMD that are needed for linking.
+  MESSAGE("-- Check for COLAMD")
+  FIND_LIBRARY(COLAMD_LIB NAMES colamd PATHS ${SUITESPARSE_SEARCH_LIBS})
+  FIND_PATH(COLAMD_INCLUDE NAMES colamd.h PATHS ${SUITESPARSE_SEARCH_HEADERS})
+  IF (NOT EXISTS ${COLAMD_LIB} OR NOT EXISTS ${COLAMD_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find COLAMD (part of suitesparse.)"
+            "Please specify -DCOLAMD_INCLUDE=... and -DCOLAMD_LIB=...")
+  ENDIF (NOT EXISTS ${COLAMD_LIB} OR NOT EXISTS ${COLAMD_INCLUDE})
+  MESSAGE("-- Found COLAMD library: ${COLAMD_LIB}")
+  MESSAGE("-- Found COLAMD header in: ${COLAMD_INCLUDE}")
+
+  MESSAGE("-- Check for CCOLAMD")
+  FIND_LIBRARY(CCOLAMD_LIB NAMES ccolamd PATHS ${SUITESPARSE_SEARCH_LIBS})
+  FIND_PATH(CCOLAMD_INCLUDE NAMES ccolamd.h PATHS ${SUITESPARSE_SEARCH_HEADERS})
+  IF (NOT EXISTS ${CCOLAMD_LIB} OR NOT EXISTS ${CCOLAMD_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find CCOLAMD (part of suitesparse.)"
+            "Please specify -DCOLAMD_INCLUDE=... and -DCOLAMD_LIB=...")
+  ENDIF (NOT EXISTS ${CCOLAMD_LIB} OR NOT EXISTS ${CCOLAMD_INCLUDE})
+  MESSAGE("-- Found CCOLAMD library: ${CCOLAMD_LIB}")
+  MESSAGE("-- Found CCOLAMD header in: ${CCOLAMD_INCLUDE}")
+
+  MESSAGE("-- Check for CHOLMOD")
+  FIND_LIBRARY(CHOLMOD_LIB NAMES cholmod PATHS ${SUITESPARSE_SEARCH_LIBS})
+  FIND_PATH(CHOLMOD_INCLUDE NAMES cholmod.h PATHS ${SUITESPARSE_SEARCH_HEADERS})
+  IF (NOT EXISTS ${CHOLMOD_LIB} OR NOT EXISTS ${CHOLMOD_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find CHOLMOD (part of suitesparse.)"
+            "Please specify -DCHOLMOD_INCLUDE=... and -DCHOLMOD_LIB=...")
+  ENDIF (NOT EXISTS ${CHOLMOD_LIB} OR NOT EXISTS ${CHOLMOD_INCLUDE})
+  MESSAGE("-- Found CHOLMOD library: ${CHOLMOD_LIB}")
+  MESSAGE("-- Found CHOLMOD header in: ${CHOLMOD_INCLUDE}")
+
+  MESSAGE("-- Check for METIS (optional)")
+  FIND_LIBRARY(METIS_LIB NAMES metis PATHS ${SUITESPARSE_SEARCH_LIBS})
+  IF (NOT EXISTS ${METIS_LIB})
+    MESSAGE("   Can't find METIS; disabling. (part of suitesparse.)")
+  ELSE (NOT EXISTS ${METIS_LIB})
+    MESSAGE("-- Found METIS library: ${METIS_LIB}")
+  ENDIF (NOT EXISTS ${METIS_LIB})
+
+  MESSAGE("-- Check for LAPACK")
+  IF (APPLE)
+    # Mac OS X has LAPACK/BLAS bundled in a framework called "vecLib". Search for
+    # that instead of for the normal "lapack" library.
+    FIND_LIBRARY(LAPACK_LIB NAMES vecLib)
+  ELSE (APPLE)
+    FIND_LIBRARY(LAPACK_LIB NAMES lapack)
+  ENDIF (APPLE)
+
+  IF (NOT EXISTS ${LAPACK_LIB})
+    MESSAGE(FATAL_ERROR
+            "Can't find LAPACK "
+            "Please specify -DLAPACK_LIB=...")
+  ENDIF (NOT EXISTS ${LAPACK_LIB})
+  MESSAGE ("-- Found LAPACK library: ${LAPACK_LIB}")
+
+ELSE (SUITESPARSE)
+  ADD_DEFINITIONS(-DCERES_NO_SUITESPARSE)
+ENDIF (SUITESPARSE)
+
+# Google Flags
+OPTION(GFLAGS
+       "Enable Google Flags."
+       ON)
+
+IF (GFLAGS)
+  MESSAGE("-- Check for Google Flags")
+  FIND_LIBRARY(GFLAGS_LIB NAMES gflags)
+  FIND_PATH(GFLAGS_INCLUDE NAMES gflags/gflags.h)
+  IF (NOT EXISTS ${GFLAGS_LIB} OR NOT EXISTS ${GFLAGS_INCLUDE})
+    MESSAGE(FATAL_ERROR
+            "Can't find Google Flags. Please specify: "
+            "-DGFLAGS_INCLUDE=... and -DGFLAGS_LIB=...")
+  ENDIF (NOT EXISTS ${GFLAGS_LIB} OR NOT EXISTS ${GFLAGS_INCLUDE})
+  MESSAGE("-- Found Google Flags library: ${GFLAGS_LIB}")
+  MESSAGE("-- Found Google Flags header in: ${GFLAGS_INCLUDE}")
+ELSE (GFLAGS)
+  MESSAGE("-- Google Flags disabled; no tests or tools will be built!")
+  ADD_DEFINITIONS(-DCERES_NO_GFLAGS)
+ENDIF (GFLAGS)
+
+# Google Logging
+MESSAGE("-- Check for Google Log")
+FIND_LIBRARY(GLOG_LIB NAMES glog)
+FIND_PATH(GLOG_INCLUDE NAMES glog/logging.h)
+IF (NOT EXISTS ${GLOG_LIB} OR NOT EXISTS ${GLOG_INCLUDE})
+  MESSAGE(FATAL_ERROR
+          "Can't find Google Log. Please specify: "
+          "-DGLOG_INCLUDE=... and -DGLOG_LIB=...")
+ENDIF (NOT EXISTS ${GLOG_LIB} OR NOT EXISTS ${GLOG_INCLUDE})
+MESSAGE("-- Found Google Log library: ${GLOG_LIB}")
+MESSAGE("-- Found Google Log header in: ${GLOG_INCLUDE}")
+
+# Eigen
+MESSAGE("-- Check for Eigen 3.0")
+SET(EIGEN_SEARCH_HEADERS
+    ${SEARCH_HEADERS}
+    /usr/include
+    /usr/include/eigen3  # Ubuntu 10.04's default location.
+    /usr/local/include
+    /usr/local/include/eigen3,
+    /opt/local/var/macports/software/eigen3/opt/local/include/eigen3/)
+FIND_PATH(EIGEN_INCLUDE NAMES Eigen/Core PATHS
+          /usr/include/eigen2
+          )
+IF (NOT EXISTS ${EIGEN_INCLUDE})
+ MESSAGE(FATAL_ERROR "Can't find Eigen. Try passing -DEIGEN_INCLUDE=...")
+ENDIF (NOT EXISTS ${EIGEN_INCLUDE})
+MESSAGE("-- Found Eigen 3.0: ${EIGEN_INCLUDE}")
+
+OPTION(SCHUR_SPECIALIZATIONS
+       "Enable fixed-size schur specializations."
+       ON)
+
+IF (NOT SCHUR_SPECIALIZATIONS)
+  # Disable fixed-size specializations of the schur complement solver, which
+  # requires multiple gigabytes of memory to compile.
+  ADD_DEFINITIONS(-DCERES_RESTRICT_SCHUR_SPECIALIZATION)
+ENDIF (NOT SCHUR_SPECIALIZATIONS)
+
+OPTION(OPENMP
+       "Enable threaded solving in Ceres (requires OpenMP)"
+       ON)
+
+IF (OPENMP)
+  FIND_PACKAGE(OpenMP)
+  IF(OPENMP_FOUND)
+    MESSAGE("-- Found OpenMP.")
+    SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
+    ADD_DEFINITIONS(-DCERES_USE_OPENMP)
+  ELSE(OPENMP_FOUND)
+    MESSAGE("-- Can't find OpenMP. Continuing without it.")
+  ENDIF(OPENMP_FOUND)
+ENDIF (OPENMP)
+
+OPTION(PROTOBUF
+       "Enable protocol buffers support."
+       ON)
+
+# Protocol buffers support.
+IF (PROTOBUF)
+  FIND_PACKAGE(Protobuf)
+  IF (PROTOBUF_FOUND)
+    INCLUDE_DIRECTORIES(${PROTOBUF_INCLUDE_DIRS})
+    INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}/internal)
+  ELSE (PROTOBUF_FOUND)
+    ADD_DEFINITIONS(-DCERES_DONT_HAVE_PROTOCOL_BUFFERS)
+  ENDIF (PROTOBUF_FOUND)
+ELSE (PROTOBUF)
+  ADD_DEFINITIONS(-DCERES_DONT_HAVE_PROTOCOL_BUFFERS)
+ENDIF (PROTOBUF)
+
+IF (UNIX)
+  # Atleast on linux, we need pthreads to be enabled for mutex to
+  # compile. This may not work on windows or android.
+  FIND_PACKAGE(Threads REQUIRED)
+  SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_THREAD_LIBS_INIT}")
+  ADD_DEFINITIONS(-DCERES_HAVE_PTHREAD)
+  ADD_DEFINITIONS(-DCERES_HAVE_RWLOCK)
+ENDIF (UNIX)
+
+
+# Use the std namespace for the hash<> and related templates. This may vary by
+# system.
+ADD_DEFINITIONS("\"-DCERES_HASH_NAMESPACE_START=namespace std { namespace tr1 {\"")
+ADD_DEFINITIONS("\"-DCERES_HASH_NAMESPACE_END=}}\"")
+
+INCLUDE_DIRECTORIES(
+  include
+  internal
+  internal/ceres
+  ${AMD_INCLUDE}
+  ${COLAMD_INCLUDE}
+  ${CHOLMOD_INCLUDE}
+  ${GLOG_INCLUDE}
+  ${GFLAGS_INCLUDE}
+  ${EIGEN_INCLUDE}
+)
+
+# Change the default build type from Debug to Release, while still
+# supporting overriding the build type.
+IF (NOT CMAKE_BUILD_TYPE)
+  SET(CMAKE_BUILD_TYPE Release)
+ENDIF (NOT CMAKE_BUILD_TYPE)
+
+ADD_SUBDIRECTORY(internal/ceres)
+ADD_SUBDIRECTORY(examples)
+
+# TODO(sameeragarwal): The following flags break the old gcc that
+# ships on Mac OS X. Make this conditional on operating system and
+# compiler.
+#SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mtune=native -march=native")
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..2e3ead5
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,27 @@
+Ceres Solver - A fast non-linear least squares minimizer
+Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+http://code.google.com/p/ceres-solver/
+
+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 Google 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.
diff --git a/README b/README
new file mode 100644
index 0000000..8dd8ccf
--- /dev/null
+++ b/README
@@ -0,0 +1,3 @@
+Ceres Solver - A non-linear least squares minimizer
+==================================================
+Please see ceres.pdf in docs/ for a tutorial and reference.
diff --git a/data/problem-16-22106-pre.txt b/data/problem-16-22106-pre.txt
new file mode 100644
index 0000000..d278e91
--- /dev/null
+++ b/data/problem-16-22106-pre.txt
@@ -0,0 +1,150181 @@
+16 22106 83718
+0 0     -3.859900e+02 3.871200e+02
+1 0     -3.844000e+01 4.921200e+02
+2 0     -6.679200e+02 1.231100e+02
+7 0     -5.991800e+02 4.079300e+02
+12 0     -7.204300e+02 3.143400e+02
+13 0     -1.151300e+02 5.548999e+01
+0 1     3.838800e+02 -1.529999e+01
+1 1     5.597500e+02 -1.061500e+02
+10 1     3.531899e+02 1.649500e+02
+0 2     5.915500e+02 1.364400e+02
+1 2     8.638600e+02 -2.346997e+01
+2 2     4.947200e+02 1.125200e+02
+6 2     4.087800e+02 2.846700e+02
+7 2     4.246100e+02 3.101700e+02
+9 2     2.848900e+02 1.928900e+02
+10 2     5.826200e+02 3.637200e+02
+12 2     4.940601e+02 2.939500e+02
+13 2     7.968300e+02 -7.853003e+01
+15 2     7.798900e+02 4.082500e+02
+0 3     5.925000e+02 1.257500e+02
+1 3     8.610800e+02 -3.521997e+01
+2 3     4.985400e+02 1.015600e+02
+6 3     4.123100e+02 2.729200e+02
+7 3     4.267300e+02 2.995900e+02
+8 3     4.683800e+02 5.512000e+01
+9 3     2.879500e+02 1.839400e+02
+10 3     5.840500e+02 3.509700e+02
+12 3     4.973199e+02 2.825100e+02
+15 3     7.819500e+02 3.932600e+02
+0 4     3.487200e+02 5.583800e+02
+1 4     7.760300e+02 4.835300e+02
+2 4     7.780029e+00 3.263500e+02
+3 4     -1.372400e+02 -7.799988e+00
+5 4     7.500699e+02 -7.871997e+01
+6 4     -1.160900e+02 6.642200e+02
+8 4     8.704999e+01 2.563100e+02
+9 4     -1.471900e+02 3.578000e+02
+11 4     4.569200e+02 -1.971600e+02
+13 4     4.635800e+02 2.410300e+02
+14 4     6.482500e+02 -1.595700e+02
+0 5     1.401001e+01 9.642001e+01
+1 5     2.071300e+02 1.183600e+02
+3 5     1.859003e+01 -2.068000e+02
+4 5     -2.095300e+02 -4.217600e+02
+5 5     6.350900e+02 -5.616200e+02
+6 5     -6.738000e+01 1.258300e+02
+7 5     -9.081000e+01 2.093600e+02
+8 5     1.251800e+02 4.523999e+01
+9 5     -2.071997e+01 1.799200e+02
+10 5     -8.720001e+01 2.550200e+02
+13 5     3.672600e+02 -1.403400e+02
+15 5     -2.814001e+01 2.705200e+02
+0 6     2.027600e+02 3.409900e+02
+1 6     5.431801e+02 2.948100e+02
+2 6     -5.841998e+01 1.108300e+02
+6 6     -1.970800e+02 3.693100e+02
+9 6     -1.916600e+02 1.693800e+02
+10 6     1.095900e+02 5.662500e+02
+12 6     -4.534003e+01 3.656000e+02
+13 6     3.698700e+02 4.792999e+01
+14 6     5.376000e+02 -3.953000e+02
+0 7     2.784998e+01 6.340997e+01
+1 7     2.076700e+02 8.259000e+01
+3 7     5.706000e+01 -2.246000e+02
+4 7     -2.321000e+02 -4.337000e+02
+5 7     6.628300e+02 -5.977400e+02
+6 7     -3.060999e+01 9.716998e+01
+7 7     -6.769000e+01 1.800300e+02
+8 7     1.541100e+02 2.748001e+01
+10 7     -6.696997e+01 2.173500e+02
+12 7     -1.144000e+01 1.517900e+02
+13 7     3.881100e+02 -1.658300e+02
+15 7     -5.020020e+00 2.274200e+02
+0 8     -2.750000e+01 9.788000e+01
+1 8     1.702000e+02 1.310200e+02
+3 8     -3.317999e+01 -2.263400e+02
+4 8     -2.051100e+02 -3.883200e+02
+5 8     5.803199e+02 -5.634100e+02
+6 8     -1.245300e+02 1.102100e+02
+7 8     -1.350300e+02 2.014500e+02
+8 8     8.146002e+01 3.072000e+01
+10 8     -1.359700e+02 2.526800e+02
+12 8     -9.739001e+01 1.646700e+02
+13 8     3.259200e+02 -1.444000e+02
+15 8     -8.390997e+01 2.669100e+02
+0 9     -2.878700e+02 4.245500e+02
+1 9     6.648999e+01 5.046000e+02
+5 9     1.167700e+02 -2.296800e+02
+8 9     -3.860500e+02 1.203500e+02
+11 9     -1.079600e+02 -3.335700e+02
+13 9     -3.758002e+01 9.117999e+01
+14 9     3.228998e+01 -3.212400e+02
+0 10     2.057800e+02 4.791800e+02
+1 10     5.918000e+02 4.354700e+02
+3 10     -2.434800e+02 -9.378998e+01
+5 10     6.078101e+02 -1.671800e+02
+7 10     -2.639001e+01 5.679100e+02
+14 10     5.138800e+02 -2.489400e+02
+0 11     -3.105400e+02 3.763300e+02
+1 11     3.300000e+01 4.634700e+02
+2 11     -5.909000e+02 1.078800e+02
+7 11     -5.205800e+02 4.047900e+02
+8 11     -4.043000e+02 7.310999e+01
+11 11     -1.296200e+02 -3.755400e+02
+12 11     -6.313300e+02 3.121400e+02
+13 11     -5.696997e+01 4.944000e+01
+14 11     6.109985e+00 -3.718900e+02
+0 12     -2.168800e+02 -4.861600e+02
+1 12     -1.780400e+02 -3.683000e+02
+0 13     -3.132700e+02 4.044100e+02
+1 13     3.688000e+01 4.912400e+02
+7 13     -5.272300e+02 4.339600e+02
+10 13     -5.121800e+02 5.931300e+02
+11 13     -1.306200e+02 -3.524300e+02
+12 13     -6.389500e+02 3.464000e+02
+0 14     -4.466800e+02 2.216200e+02
+1 14     -1.351100e+02 3.486600e+02
+5 14     -6.496002e+01 -4.504900e+02
+7 14     -6.385100e+02 2.242000e+02
+10 14     -6.492300e+02 3.592700e+02
+11 14     -2.603000e+02 -5.149000e+02
+0 15     -3.948000e+02 3.086400e+02
+1 15     -6.462000e+01 4.186700e+02
+5 15     -3.280029e+00 -3.539900e+02
+7 15     -5.980400e+02 3.229200e+02
+8 15     -4.761100e+02 1.820007e+00
+10 15     -5.981700e+02 4.687200e+02
+11 15     -2.072500e+02 -4.353200e+02
+13 15     -1.271600e+02 -1.440002e+01
+14 15     -8.452002e+01 -4.475601e+02
+15 15     -6.041500e+02 5.064400e+02
+0 16     -3.705100e+02 3.271000e+02
+1 16     -3.682001e+01 4.306000e+02
+5 16     2.346997e+01 -3.346800e+02
+7 16     -5.754700e+02 3.454500e+02
+8 16     -4.551500e+02 2.050000e+01
+10 16     -5.711700e+02 4.937700e+02
+11 16     -1.851900e+02 -4.192400e+02
+12 16     -6.937400e+02 2.401900e+02
+15 16     -5.738200e+02 5.354800e+02
+0 17     -5.534700e+02 4.375600e+02
+1 17     -1.853700e+02 5.787300e+02
+11 17     -3.367200e+02 -3.189600e+02
+0 18     -4.341400e+02 4.274400e+02
+1 18     -7.542999e+01 5.424400e+02
+2 18     -7.231700e+02 1.731400e+02
+10 18     -6.657300e+02 6.132900e+02
+0 19     -5.044400e+02 3.330700e+02
+1 19     -1.632600e+02 4.683200e+02
+5 19     -1.100300e+02 -3.237900e+02
+7 19     -7.171000e+02 3.349000e+02
+8 19     -5.770300e+02 2.210999e+01
+10 19     -7.381500e+02 4.900900e+02
+15 19     -7.633900e+02 5.258700e+02
+0 20     -5.365200e+02 2.877000e+02
+1 20     -2.035200e+02 4.333000e+02
+7 20     -7.445700e+02 2.824400e+02
+13 20     -2.435300e+02 -3.773999e+01
+15 20     -7.996900e+02 4.587900e+02
+0 21     -5.267900e+02 2.775900e+02
+1 21     -1.966700e+02 4.214600e+02
+5 21     -1.414300e+02 -3.843900e+02
+7 21     -7.326900e+02 2.729400e+02
+10 21     -7.574700e+02 4.203400e+02
+11 21     -3.277800e+02 -4.606100e+02
+13 21     -2.362100e+02 -4.604999e+01
+14 21     -2.221800e+02 -4.812200e+02
+15 21     -7.843600e+02 4.459000e+02
+0 22     -4.797200e+02 4.078300e+02
+1 22     -1.228300e+02 5.340200e+02
+5 22     -7.429999e+01 -2.439400e+02
+7 22     -7.020000e+02 4.191500e+02
+8 22     -5.541900e+02 1.003900e+02
+11 22     -2.763800e+02 -3.458400e+02
+13 22     -1.917000e+02 7.029999e+01
+14 22     -1.567600e+02 -3.381400e+02
+0 23     -4.335900e+02 4.062700e+02
+1 23     -7.928003e+01 5.217400e+02
+2 23     -7.237600e+02 1.452100e+02
+5 23     -2.913000e+01 -2.471400e+02
+7 23     -6.527900e+02 4.227100e+02
+8 23     -5.123100e+02 9.954999e+01
+10 23     -6.613000e+02 5.869200e+02
+11 23     -2.364000e+02 -3.480900e+02
+13 23     -1.546000e+02 7.046997e+01
+14 23     -1.115200e+02 -3.399600e+02
+0 24     -5.171400e+02 3.709500e+02
+1 24     -1.664300e+02 5.075700e+02
+5 24     -1.168500e+02 -2.821500e+02
+7 24     -7.365900e+02 3.748800e+02
+8 24     -5.890700e+02 6.162000e+01
+10 24     -7.601400e+02 5.362900e+02
+11 24     -3.112400e+02 -3.771000e+02
+13 24     -2.233400e+02 3.629999e+01
+14 24     -1.986000e+02 -3.778700e+02
+15 24     -7.887000e+02 5.784900e+02
+0 25     -4.289100e+02 4.224400e+02
+1 25     -7.135999e+01 5.363700e+02
+2 25     -7.189300e+02 1.660800e+02
+4 25     3.250000e+00 -1.125400e+02
+5 25     -2.232001e+01 -2.294600e+02
+7 25     -6.505400e+02 4.405200e+02
+8 25     -5.083300e+02 1.163100e+02
+10 25     -6.577600e+02 6.075100e+02
+11 25     -2.316100e+02 -3.341900e+02
+12 25     -7.809300e+02 3.521600e+02
+13 25     -1.507800e+02 8.448001e+01
+14 25     -1.054500e+02 -3.228700e+02
+0 26     -5.069500e+02 4.007100e+02
+1 26     -1.502500e+02 5.334800e+02
+5 26     -1.021000e+02 -2.507300e+02
+7 26     -7.299800e+02 4.080800e+02
+8 26     -5.790900e+02 9.237000e+01
+10 26     -7.527500e+02 5.746400e+02
+11 26     -3.004900e+02 -3.519500e+02
+13 26     -2.141300e+02 6.309003e+01
+14 26     -1.845200e+02 -3.455300e+02
+0 27     -4.478900e+02 3.609900e+02
+1 27     -1.046800e+02 4.822400e+02
+5 27     -4.701001e+01 -2.956700e+02
+7 27     -6.602400e+02 3.726700e+02
+10 27     -6.716700e+02 5.292300e+02
+11 27     -2.528500e+02 -3.869000e+02
+12 27     -7.925600e+02 2.724600e+02
+13 27     -1.660900e+02 3.047998e+01
+15 27     -6.895500e+02 5.734000e+02
+0 28     -3.717700e+02 3.349400e+02
+1 28     -3.633002e+01 4.384600e+02
+4 28     -5.022998e+01 -1.328300e+02
+5 28     2.313000e+01 -3.257800e+02
+7 28     -5.778600e+02 3.534800e+02
+10 28     -5.736700e+02 5.032000e+02
+11 28     -1.857300e+02 -4.123600e+02
+13 28     -1.072800e+02 1.037000e+01
+14 28     -5.821002e+01 -4.180100e+02
+15 28     -5.771200e+02 5.461800e+02
+0 29     2.929399e+02 -2.407300e+02
+1 29     3.787000e+02 -3.008300e+02
+12 29     3.769700e+02 -1.269300e+02
+15 29     3.971500e+02 -1.510400e+02
+0 30     -2.287500e+02 4.542400e+02
+1 30     1.322000e+02 5.195400e+02
+2 30     -5.090100e+02 2.041600e+02
+4 30     4.530029e+00 -2.236600e+02
+8 30     -3.386600e+02 1.507000e+02
+11 30     -5.545001e+01 -3.074400e+02
+12 30     -5.499200e+02 4.199100e+02
+14 30     9.203003e+01 -2.891900e+02
+0 31     -4.568500e+02 3.491600e+02
+1 31     -1.144900e+02 4.727700e+02
+4 31     -3.435999e+01 -8.971997e+01
+7 31     -6.686900e+02 3.585800e+02
+8 31     -5.319300e+02 4.114999e+01
+11 31     -2.600300e+02 -3.975300e+02
+12 31     -8.016400e+02 2.550200e+02
+15 31     -6.988700e+02 5.560200e+02
+0 32     -3.717600e+02 3.534700e+02
+1 32     -3.197998e+01 4.563500e+02
+5 32     2.556000e+01 -3.052100e+02
+7 32     -5.805700e+02 3.736500e+02
+8 32     -4.570300e+02 4.829999e+01
+11 32     -1.844300e+02 -3.952500e+02
+12 32     -7.000700e+02 2.734700e+02
+13 32     -1.064700e+02 2.695001e+01
+14 32     -5.603003e+01 -3.973200e+02
+15 32     -5.806100e+02 5.728400e+02
+0 33     -3.686800e+02 4.200900e+02
+1 33     -1.358002e+01 5.199100e+02
+2 33     -6.536800e+02 1.625900e+02
+7 33     -5.868600e+02 4.445900e+02
+14 33     -4.654999e+01 -3.255900e+02
+0 34     -4.324200e+02 4.189200e+02
+1 34     -7.521002e+01 5.340000e+02
+2 34     -7.222900e+02 1.626000e+02
+7 34     -6.535700e+02 4.367300e+02
+10 34     -6.620400e+02 6.029000e+02
+14 34     -1.089800e+02 -3.260300e+02
+0 35     -3.240900e+02 3.997800e+02
+1 35     2.503003e+01 4.896100e+02
+2 35     -6.056300e+02 1.371600e+02
+7 35     -5.379100e+02 4.280500e+02
+10 35     -5.252000e+02 5.874300e+02
+14 35     -5.030029e+00 -3.471700e+02
+0 36     -3.227200e+02 4.045700e+02
+1 36     2.738000e+01 4.937000e+02
+2 36     -6.045500e+02 1.432400e+02
+5 36     8.033002e+01 -2.506500e+02
+7 36     -5.370200e+02 4.338700e+02
+8 36     -4.159600e+02 1.003900e+02
+10 36     -5.240400e+02 5.931200e+02
+11 36     -1.395000e+02 -3.507100e+02
+14 36     -3.229980e+00 -3.421200e+02
+0 37     -4.512100e+02 2.949200e+02
+1 37     -1.196900e+02 4.192700e+02
+7 37     -6.570100e+02 2.996800e+02
+12 37     -7.891500e+02 1.802900e+02
+15 37     -6.809600e+02 4.797900e+02
+0 38     -5.367500e+02 4.331500e+02
+1 38     -1.709100e+02 5.708900e+02
+5 38     -1.264100e+02 -2.160500e+02
+7 38     -7.673700e+02 4.398200e+02
+10 38     -7.968700e+02 6.137000e+02
+14 38     -2.089200e+02 -3.116900e+02
+0 39     -3.572000e+02 4.869300e+02
+1 39     1.285999e+01 5.821700e+02
+2 39     -6.419200e+02 2.459500e+02
+5 39     5.509003e+01 -1.631800e+02
+12 39     -7.054500e+02 4.434100e+02
+0 40     -1.078000e+02 5.097500e+02
+1 40     2.678101e+02 5.456900e+02
+2 40     -3.932500e+02 2.712600e+02
+3 40     -5.205600e+02 -5.933002e+01
+5 40     2.997200e+02 -1.402300e+02
+7 40     -3.341000e+02 5.671100e+02
+8 40     -2.438100e+02 2.049600e+02
+11 40     5.104999e+01 -2.584500e+02
+12 40     -4.236200e+02 5.055200e+02
+0 41     2.109985e+00 5.495000e+02
+1 41     3.916100e+02 5.594600e+02
+14 41     3.156400e+02 -1.853600e+02
+0 42     1.487500e+02 5.630600e+02
+1 42     5.527100e+02 5.382800e+02
+2 42     -1.632200e+02 3.308500e+02
+3 42     -2.981300e+02 -3.320007e+00
+4 42     4.272998e+01 -4.577200e+02
+5 42     5.509000e+02 -8.103003e+01
+6 42     -3.278400e+02 6.322900e+02
+9 42     -2.930800e+02 3.564300e+02
+11 42     2.764200e+02 -2.035800e+02
+12 42     -1.582800e+02 6.020600e+02
+13 42     3.058700e+02 2.321500e+02
+14 42     4.550200e+02 -1.650300e+02
+0 43     -1.188500e+02 5.298700e+02
+1 43     2.615601e+02 5.686500e+02
+2 43     -4.051700e+02 2.946100e+02
+5 43     2.900300e+02 -1.193800e+02
+7 43     -3.479300e+02 5.869700e+02
+12 43     -4.394600e+02 5.283000e+02
+0 44     -2.036300e+02 5.136900e+02
+1 44     1.714600e+02 5.725600e+02
+2 44     -4.865400e+02 2.763000e+02
+3 44     -6.126800e+02 -5.227002e+01
+5 44     2.067900e+02 -1.365200e+02
+7 44     -4.308400e+02 5.614800e+02
+11 44     -3.287000e+01 -2.564500e+02
+12 44     -5.319800e+02 4.973900e+02
+0 45     7.131000e+01 5.701300e+02
+1 45     4.704000e+02 5.640200e+02
+2 45     -2.320500e+02 3.384900e+02
+6 45     -4.131000e+02 6.261000e+02
+9 45     -3.520700e+02 3.614200e+02
+12 45     -2.403100e+02 6.003400e+02
+14 45     3.809399e+02 -1.618800e+02
+0 46     1.764301e+02 -3.612000e+01
+1 46     3.201801e+02 -5.872998e+01
+3 46     2.438500e+02 -2.726500e+02
+4 46     -3.235900e+02 -5.561801e+02
+6 46     1.748600e+02 3.790997e+01
+7 46     9.814001e+01 1.081400e+02
+8 46     3.133700e+02 -2.066000e+01
+10 46     1.146800e+02 1.174400e+02
+12 46     1.953900e+02 8.467999e+01
+13 46     5.342000e+02 -2.373600e+02
+15 46     2.092900e+02 1.120700e+02
+0 47     9.095001e+01 9.173999e+01
+1 47     2.778500e+02 9.273001e+01
+5 47     7.376600e+02 -5.687000e+02
+10 47     3.119995e+00 2.566800e+02
+12 47     5.871997e+01 1.968000e+02
+13 47     4.489900e+02 -1.384800e+02
+15 47     7.690997e+01 2.743000e+02
+0 48     -9.142999e+01 1.057600e+02
+1 48     1.259600e+02 1.531000e+02
+3 48     -1.718700e+02 -2.953600e+02
+5 48     4.640300e+02 -5.629301e+02
+6 48     -2.580300e+02 7.590997e+01
+7 48     -2.144800e+02 1.899300e+02
+9 48     -1.824600e+02 9.945999e+01
+10 48     -2.115500e+02 2.552300e+02
+12 48     -2.078700e+02 1.282100e+02
+15 48     -1.678100e+02 2.680300e+02
+0 49     5.475000e+02 2.152500e+02
+1 49     8.426700e+02 7.370001e+01
+3 49     2.869200e+02 -1.493700e+02
+7 49     3.703900e+02 3.780900e+02
+8 49     4.088600e+02 1.119200e+02
+9 49     2.248000e+02 2.411600e+02
+10 49     5.248199e+02 4.521400e+02
+13 49     7.440800e+02 -1.517999e+01
+15 49     7.092900e+02 5.130500e+02
+0 50     2.672998e+01 1.419700e+02
+1 50     2.359399e+02 1.589300e+02
+3 50     1.299988e+00 -1.743000e+02
+4 50     -1.827600e+02 -4.297900e+02
+5 50     6.362100e+02 -5.120300e+02
+7 50     -8.865997e+01 2.542000e+02
+10 50     -7.759998e+01 3.091700e+02
+12 50     -4.788000e+01 2.289800e+02
+15 50     -1.600000e+01 3.347100e+02
+0 51     2.051200e+02 8.492999e+01
+1 51     3.923500e+02 5.275000e+01
+3 51     1.980200e+02 -1.731900e+02
+6 51     1.469600e+02 1.702300e+02
+7 51     1.023100e+02 2.306500e+02
+8 51     2.876300e+02 7.006000e+01
+10 51     1.341600e+02 2.602300e+02
+12 51     1.784900e+02 2.176800e+02
+13 51     5.330400e+02 -1.343100e+02
+0 52     1.364400e+02 7.383002e+01
+1 52     3.163300e+02 6.177002e+01
+2 52     2.570699e+02 1.252300e+02
+3 52     1.561200e+02 -1.882000e+02
+4 52     -2.385800e+02 -5.203500e+02
+6 52     8.778003e+01 1.425800e+02
+7 52     3.813000e+01 2.088200e+02
+8 52     2.448400e+02 5.685001e+01
+9 52     9.975000e+01 1.989600e+02
+10 52     5.694000e+01 2.410000e+02
+12 52     1.123200e+02 1.938300e+02
+13 52     4.821000e+02 -1.478800e+02
+15 52     1.406899e+02 2.567300e+02
+0 53     9.415997e+01 7.465002e+01
+1 53     2.745400e+02 7.496002e+01
+2 53     2.158000e+02 1.186700e+02
+3 53     1.176500e+02 -1.953500e+02
+4 53     -2.327400e+02 -4.868101e+02
+6 53     4.244000e+01 1.312000e+02
+7 53     -3.820007e+00 2.030600e+02
+8 53     2.099300e+02 5.120999e+01
+10 53     8.090027e+00 2.374000e+02
+12 53     6.470001e+01 1.841200e+02
+13 53     4.458800e+02 -1.504200e+02
+15 53     8.301001e+01 2.520500e+02
+0 54     2.094600e+02 4.755000e+02
+1 54     5.947700e+02 4.311100e+02
+2 54     -9.934998e+01 2.337300e+02
+5 54     6.126899e+02 -1.718700e+02
+6 54     -2.449200e+02 5.317200e+02
+7 54     -2.227002e+01 5.645100e+02
+8 54     -2.030029e+00 1.810500e+02
+11 54     3.386700e+02 -2.766800e+02
+12 54     -7.845001e+01 5.086100e+02
+13 54     3.566000e+02 1.608400e+02
+14 54     5.184301e+02 -2.533000e+02
+0 55     2.328998e+01 1.258200e+02
+1 55     2.264301e+02 1.442700e+02
+2 55     1.037000e+02 1.328300e+02
+3 55     9.039978e+00 -1.848000e+02
+5 55     6.370400e+02 -5.291700e+02
+6 55     -7.306000e+01 1.592400e+02
+7 55     -8.800000e+01 2.388900e+02
+10 55     -7.959003e+01 2.902800e+02
+12 55     -4.472998e+01 2.127300e+02
+13 55     3.686300e+02 -1.156700e+02
+15 55     -1.884998e+01 3.122400e+02
+0 56     5.720001e+01 5.653998e+01
+1 56     2.327500e+02 6.775000e+01
+2 56     1.860400e+02 9.404999e+01
+3 56     9.217999e+01 -2.191300e+02
+5 56     7.025699e+02 -6.043900e+02
+6 56     9.239990e+00 9.994000e+01
+7 56     -3.756000e+01 1.791300e+02
+8 56     1.844500e+02 3.075000e+01
+10 56     -3.309998e+01 2.121200e+02
+12 56     2.802002e+01 1.539500e+02
+13 56     4.164399e+02 -1.688600e+02
+15 56     3.517999e+01 2.220200e+02
+0 57     2.094600e+02 4.755000e+02
+1 57     5.947700e+02 4.311100e+02
+2 57     -9.934998e+01 2.337300e+02
+4 57     -1.421002e+01 -4.918500e+02
+5 57     6.126899e+02 -1.718700e+02
+6 57     -2.449200e+02 5.317200e+02
+7 57     -2.227002e+01 5.645100e+02
+8 57     -2.030029e+00 1.810500e+02
+11 57     3.386700e+02 -2.766800e+02
+12 57     -7.845001e+01 5.086100e+02
+13 57     3.566000e+02 1.608400e+02
+14 57     5.184301e+02 -2.533000e+02
+0 58     4.862000e+02 3.568500e+02
+1 58     8.373101e+02 2.377200e+02
+2 58     2.756100e+02 2.385700e+02
+3 58     1.350000e+02 -8.741998e+01
+6 58     1.790800e+02 4.828700e+02
+7 58     2.788000e+02 4.965800e+02
+10 58     4.415699e+02 6.150400e+02
+12 58     2.906300e+02 4.753400e+02
+0 59     2.060300e+02 4.365100e+02
+1 59     5.802000e+02 3.907600e+02
+2 59     -9.892999e+01 1.913000e+02
+3 59     -2.388700e+02 -1.400200e+02
+5 59     6.091000e+02 -2.132700e+02
+7 59     -2.075000e+01 5.244800e+02
+8 59     -1.270020e+00 1.467800e+02
+9 59     -2.323400e+02 2.365900e+02
+11 59     3.393500e+02 -3.115000e+02
+12 59     -7.519000e+01 4.638100e+02
+13 59     3.544900e+02 1.278800e+02
+14 59     5.164200e+02 -2.941500e+02
+0 60     -4.165002e+01 5.609985e+00
+1 60     1.265400e+02 4.542999e+01
+2 60     8.404999e+01 2.940002e+00
+3 60     -1.890015e+00 -3.091900e+02
+7 60     -1.315700e+02 1.094200e+02
+8 60     9.983002e+01 -4.260999e+01
+15 60     -9.090997e+01 1.391400e+02
+0 61     2.959003e+01 4.290200e+02
+1 61     3.899600e+02 4.292200e+02
+2 61     -2.568600e+02 1.787500e+02
+3 61     -3.916600e+02 -1.522400e+02
+4 61     -2.870001e+01 -3.721900e+02
+5 61     4.313900e+02 -2.235600e+02
+7 61     -1.890500e+02 4.984500e+02
+8 61     -1.324900e+02 1.351900e+02
+12 61     -2.605200e+02 4.304000e+02
+13 61     2.142400e+02 1.112900e+02
+14 61     3.425699e+02 -3.088400e+02
+0 62     5.325100e+02 2.077600e+02
+1 62     8.242900e+02 6.931000e+01
+3 62     2.726200e+02 -1.621300e+02
+8 62     3.960000e+02 1.018100e+02
+9 62     2.106400e+02 2.263700e+02
+10 62     5.073800e+02 4.407300e+02
+15 62     6.888199e+02 4.992900e+02
+0 63     4.494000e+01 -1.564200e+02
+1 63     1.549000e+02 -1.363900e+02
+2 63     2.607600e+02 -1.221500e+02
+3 63     1.751700e+02 -4.234200e+02
+4 63     -3.924200e+02 -4.464200e+02
+6 63     7.772998e+01 -1.406899e+02
+7 63     -1.116998e+01 -3.394000e+01
+8 63     2.376300e+02 -1.508900e+02
+10 63     -2.477002e+01 -3.517999e+01
+12 63     8.328003e+01 -9.306000e+01
+15 63     4.648999e+01 -6.878998e+01
+0 64     -9.878998e+01 -2.223200e+02
+1 64     8.969971e+00 -1.575900e+02
+4 64     -4.192700e+02 -3.207200e+02
+7 64     -1.524300e+02 -1.325700e+02
+8 64     9.772998e+01 -2.745200e+02
+9 64     -1.782001e+01 -1.455200e+02
+10 64     -1.838900e+02 -1.263500e+02
+12 64     -8.770001e+01 -2.365600e+02
+13 64     2.947800e+02 -4.331300e+02
+15 64     -1.360200e+02 -1.772400e+02
+0 65     1.747400e+02 -2.422600e+02
+1 65     2.532100e+02 -2.607000e+02
+2 65     4.303300e+02 -1.697100e+02
+3 65     3.396500e+02 -4.645300e+02
+4 65     -4.870300e+02 -5.583000e+02
+6 65     2.523700e+02 -1.877200e+02
+7 65     1.332900e+02 -9.427002e+01
+8 65     3.775100e+02 -1.936000e+02
+9 65     2.568400e+02 -3.806000e+01
+10 65     1.335500e+02 -1.203600e+02
+12 65     2.635100e+02 -1.501700e+02
+15 65     2.334200e+02 -1.681500e+02
+0 66     1.431600e+02 6.653998e+01
+1 66     3.201100e+02 5.272998e+01
+2 66     2.679800e+02 1.219500e+02
+3 66     1.660500e+02 -1.911600e+02
+4 66     -2.442400e+02 -5.262800e+02
+6 66     9.925000e+01 1.375200e+02
+7 66     4.646002e+01 2.031500e+02
+8 66     2.531600e+02 5.389001e+01
+9 66     1.083700e+02 1.962100e+02
+10 66     6.596997e+01 2.332300e+02
+13 66     4.899100e+02 -1.530700e+02
+0 67     6.596002e+01 -8.371997e+01
+1 67     1.980900e+02 -7.198999e+01
+2 67     2.506200e+02 -4.296997e+01
+3 67     1.602700e+02 -3.486300e+02
+4 67     -3.414500e+02 -4.635500e+02
+6 67     7.146002e+01 -5.269000e+01
+7 67     -3.729980e+00 4.187000e+01
+8 67     2.328400e+02 -8.434003e+01
+10 67     -8.080017e+00 5.087000e+01
+12 67     8.314001e+01 -3.030029e+00
+13 67     4.426700e+02 -2.882900e+02
+0 68     7.303003e+01 -1.236000e+02
+1 68     1.933500e+02 -1.131800e+02
+3 68     1.819900e+02 -3.883000e+02
+7 68     9.419983e+00 2.760010e+00
+10 68     3.859985e+00 5.250000e+00
+13 68     4.529200e+02 -3.235100e+02
+15 68     7.971997e+01 -2.125000e+01
+0 69     5.801700e+02 1.987400e+02
+1 69     8.714900e+02 4.598999e+01
+2 69     4.654600e+02 1.690500e+02
+6 69     3.785400e+02 3.497600e+02
+7 69     4.049100e+02 3.676600e+02
+8 69     4.423500e+02 1.114100e+02
+9 69     2.583900e+02 2.396100e+02
+12 69     4.648900e+02 3.587100e+02
+13 69     7.781500e+02 -2.587000e+01
+0 70     1.219800e+02 -8.892999e+01
+1 70     2.503800e+02 -9.445001e+01
+2 70     3.099600e+02 -3.465997e+01
+3 70     2.155601e+02 -3.370200e+02
+4 70     -3.543000e+02 -5.099200e+02
+6 70     1.348500e+02 -4.078003e+01
+7 70     5.313000e+01 4.640997e+01
+8 70     2.824500e+02 -7.783002e+01
+10 70     5.728998e+01 5.051001e+01
+12 70     1.498200e+02 5.809998e+00
+13 70     4.931801e+02 -2.885300e+02
+15 70     1.422000e+02 3.288000e+01
+0 71     6.522500e+02 -5.717999e+01
+1 71     8.661000e+02 -2.480700e+02
+2 71     6.151000e+02 -5.621997e+01
+3 71     4.849600e+02 -3.596800e+02
+7 71     5.101200e+02 1.345800e+02
+8 71     5.629600e+02 -7.734998e+01
+10 71     6.687900e+02 1.433300e+02
+0 72     3.897998e+01 -9.863000e+01
+1 72     1.688199e+02 -7.881000e+01
+3 72     1.358100e+02 -3.759000e+02
+6 72     4.340997e+01 -8.114001e+01
+7 72     -2.895001e+01 2.152002e+01
+8 72     2.102200e+02 -1.069100e+02
+9 72     8.214001e+01 3.466998e+01
+10 72     -3.778998e+01 3.092999e+01
+12 72     5.390997e+01 -3.100000e+01
+13 72     4.186300e+02 -3.044400e+02
+15 72     3.117999e+01 8.489990e+00
+0 73     2.075300e+02 1.613000e+02
+1 73     4.285601e+02 1.255400e+02
+2 73     2.435300e+02 1.706300e+02
+3 73     1.331500e+02 -1.478300e+02
+10 73     1.313000e+02 3.507400e+02
+13 73     5.082000e+02 -7.570001e+01
+14 73     7.201700e+02 -5.638000e+02
+15 73     2.310699e+02 3.869100e+02
+0 74     2.095400e+02 3.241900e+02
+1 74     5.436300e+02 2.759900e+02
+7 74     4.840027e+00 4.178000e+02
+13 74     3.836700e+02 3.292999e+01
+14 74     5.553199e+02 -4.150100e+02
+0 75     1.646600e+02 -1.096000e+02
+1 75     2.880900e+02 -1.284900e+02
+3 75     2.568300e+02 -3.519400e+02
+6 75     1.827400e+02 -5.060999e+01
+7 75     9.727002e+01 3.253998e+01
+8 75     3.198900e+02 -9.028998e+01
+10 75     1.086600e+02 3.141998e+01
+13 75     5.305900e+02 -3.037100e+02
+15 75     2.032000e+02 1.056000e+01
+0 76     3.957001e+01 -9.128003e+01
+1 76     1.714500e+02 -7.182001e+01
+2 76     2.226899e+02 -6.179999e+01
+3 76     1.347200e+02 -3.671100e+02
+6 76     4.233002e+01 -7.196997e+01
+7 76     -2.952002e+01 2.909998e+01
+8 76     2.095000e+02 -9.896002e+01
+9 76     8.126001e+01 4.228998e+01
+10 76     -3.801001e+01 3.941998e+01
+13 76     4.187500e+02 -2.978500e+02
+15 76     3.091998e+01 1.852002e+01
+0 77     3.738000e+01 -1.083400e+02
+1 77     1.643700e+02 -8.750000e+01
+2 77     2.238000e+02 -8.284998e+01
+3 77     1.365900e+02 -3.869800e+02
+6 77     4.321002e+01 -9.517999e+01
+7 77     -2.981000e+01 1.145001e+01
+10 77     -3.771002e+01 1.984003e+01
+12 77     5.334003e+01 -4.489001e+01
+15 77     2.959998e+01 -4.690002e+00
+0 78     2.371300e+02 5.222300e+02
+1 78     6.381000e+02 4.729100e+02
+3 78     -2.219600e+02 -4.769000e+01
+9 78     -2.223800e+02 3.205000e+02
+0 79     3.245900e+02 5.168100e+02
+1 79     7.352600e+02 4.448800e+02
+4 79     4.119995e+00 -5.745100e+02
+5 79     7.284399e+02 -1.231900e+02
+6 79     -1.326600e+02 6.087100e+02
+9 79     -1.570300e+02 3.202900e+02
+11 79     4.401700e+02 -2.342200e+02
+0 80     5.932800e+02 1.561500e+02
+1 80     8.714800e+02 -2.419983e+00
+2 80     4.901300e+02 1.344100e+02
+3 80     3.528000e+02 -1.792000e+02
+6 80     4.045900e+02 3.092500e+02
+8 80     4.618700e+02 8.248001e+01
+9 80     2.800000e+02 2.117000e+02
+10 80     5.827700e+02 3.861300e+02
+12 80     4.896801e+02 3.178100e+02
+13 80     7.963000e+02 -6.135999e+01
+0 81     1.378000e+02 -1.078300e+02
+1 81     2.614399e+02 -1.178700e+02
+2 81     3.288800e+02 -5.229999e+01
+3 81     2.342800e+02 -3.555400e+02
+6 81     1.552700e+02 -5.659003e+01
+7 81     7.090997e+01 2.996997e+01
+8 81     2.982300e+02 -9.235999e+01
+10 81     7.731000e+01 3.041998e+01
+12 81     1.715800e+02 -1.119000e+01
+13 81     5.073800e+02 -3.039300e+02
+15 81     1.660100e+02 9.299988e+00
+0 82     1.180900e+02 4.264300e+02
+1 82     4.827500e+02 4.037700e+02
+2 82     -1.755100e+02 1.764400e+02
+3 82     -3.126400e+02 -1.555100e+02
+4 82     -3.728003e+01 -4.279600e+02
+7 82     -1.031100e+02 5.047800e+02
+8 82     -6.475000e+01 1.341400e+02
+9 82     -2.969500e+02 2.204900e+02
+13 82     2.849800e+02 1.135300e+02
+14 82     4.300800e+02 -3.091200e+02
+0 83     1.875300e+02 1.485999e+01
+1 83     3.485200e+02 -1.192999e+01
+2 83     3.299301e+02 8.263000e+01
+3 83     2.266600e+02 -2.272100e+02
+4 83     -2.874300e+02 -5.639100e+02
+7 83     9.904999e+01 1.593800e+02
+8 83     3.045100e+02 2.094000e+01
+10 83     1.211000e+02 1.772800e+02
+13 83     5.352700e+02 -1.932200e+02
+15 83     2.192000e+02 1.829900e+02
+0 84     1.012500e+02 -4.721002e+01
+1 84     2.425100e+02 -4.695001e+01
+2 84     2.761700e+02 7.289978e+00
+3 84     1.817000e+02 -2.992600e+02
+4 84     -3.192300e+02 -4.941700e+02
+7 84     2.585999e+01 8.460999e+01
+8 84     2.553500e+02 -4.210999e+01
+9 84     1.219900e+02 1.014100e+02
+10 84     2.822998e+01 9.665997e+01
+15 84     1.081400e+02 8.675000e+01
+0 85     1.011200e+02 -6.097998e+01
+1 85     2.378101e+02 -6.079999e+01
+2 85     2.810400e+02 -6.869995e+00
+3 85     1.873300e+02 -3.123900e+02
+7 85     2.800000e+01 7.090997e+01
+8 85     2.594400e+02 -5.442001e+01
+10 85     2.948999e+01 8.114001e+01
+13 85     4.722500e+02 -2.646400e+02
+0 86     1.825100e+02 -8.396002e+01
+1 86     3.130800e+02 -1.085700e+02
+2 86     3.623700e+02 -1.747998e+01
+3 86     2.641300e+02 -3.208200e+02
+6 86     1.925000e+02 -1.600000e+01
+8 86     3.272200e+02 -6.346997e+01
+10 86     1.267900e+02 6.278003e+01
+13 86     5.437600e+02 -2.792900e+02
+0 87     2.619995e+00 -4.784998e+01
+1 87     1.499200e+02 -1.878003e+01
+2 87     1.638300e+02 -2.902002e+01
+3 87     7.634003e+01 -3.364300e+02
+6 87     -1.867999e+01 -3.623999e+01
+7 87     -7.513000e+01 6.556000e+01
+8 87     1.618200e+02 -7.032001e+01
+9 87     3.042999e+01 6.702002e+01
+10 87     -8.562000e+01 8.606000e+01
+12 87     -7.359985e+00 1.709003e+01
+13 87     3.789301e+02 -2.633600e+02
+15 87     -2.513000e+01 7.285999e+01
+0 88     -1.764001e+01 -4.846002e+01
+1 88     1.317700e+02 -1.371002e+01
+2 88     1.380800e+02 -3.988000e+01
+3 88     5.256000e+01 -3.480800e+02
+4 88     -3.040000e+02 -3.959100e+02
+6 88     -4.419000e+01 -4.584998e+01
+7 88     -9.589001e+01 6.044000e+01
+8 88     1.415300e+02 -7.860999e+01
+9 88     1.297998e+01 5.758002e+01
+10 88     -1.081700e+02 8.295001e+01
+12 88     -3.196997e+01 8.429993e+00
+13 88     3.594200e+02 -2.663800e+02
+15 88     -5.103998e+01 6.888000e+01
+0 89     8.909003e+01 3.873300e+02
+1 89     4.421600e+02 3.724100e+02
+2 89     -1.972100e+02 1.303000e+02
+7 89     -1.251400e+02 4.616200e+02
+11 89     2.359100e+02 -3.608600e+02
+14 89     4.018600e+02 -3.511700e+02
+0 90     5.527700e+02 2.468200e+02
+1 90     8.579100e+02 1.050200e+02
+2 90     4.222900e+02 2.041800e+02
+3 90     2.845100e+02 -1.156200e+02
+7 90     3.712500e+02 4.096700e+02
+8 90     4.077200e+02 1.407300e+02
+9 90     2.208400e+02 2.677900e+02
+10 90     5.284900e+02 4.895400e+02
+11 90     6.797300e+02 -4.774800e+02
+12 90     4.213101e+02 4.013500e+02
+13 90     7.452400e+02 1.159998e+01
+15 90     7.128500e+02 5.575200e+02
+0 91     -5.580700e+02 3.910000e+02
+1 91     -2.000700e+02 5.359700e+02
+5 91     -1.539500e+02 -2.595000e+02
+7 91     -7.840600e+02 3.924600e+02
+10 91     -8.167200e+02 5.592100e+02
+11 91     -3.447500e+02 -3.585900e+02
+14 91     -2.358100e+02 -3.555900e+02
+0 92     -2.784100e+02 -4.636200e+02
+1 92     -2.255600e+02 -3.278400e+02
+4 92     -5.755000e+02 -1.689300e+02
+6 92     -2.134700e+02 -6.697100e+02
+0 93     -4.952300e+02 3.796100e+02
+1 93     -1.439600e+02 5.106800e+02
+10 93     -7.344400e+02 5.489400e+02
+14 93     -1.755300e+02 -3.688600e+02
+0 94     -5.432100e+02 3.561600e+02
+1 94     -1.940800e+02 4.993600e+02
+5 94     -1.446400e+02 -2.977500e+02
+14 94     -2.262900e+02 -3.938300e+02
+15 94     -8.224600e+02 5.540900e+02
+0 95     -3.520700e+02 4.695000e+02
+1 95     1.385999e+01 5.640500e+02
+2 95     -6.362600e+02 2.248700e+02
+5 95     5.790002e+01 -1.812400e+02
+7 95     -5.768300e+02 4.994100e+02
+11 95     -1.621600e+02 -2.941200e+02
+14 95     -2.632001e+01 -2.736800e+02
+0 96     -3.795500e+02 4.535100e+02
+1 96     -1.640997e+01 5.547800e+02
+7 96     -6.028400e+02 4.792600e+02
+11 96     -1.872100e+02 -3.079700e+02
+12 96     -7.260600e+02 3.983000e+02
+0 97     -3.508700e+02 3.998600e+02
+1 97     -8.800049e-01 4.957700e+02
+2 97     -6.348100e+02 1.374100e+02
+5 97     5.178998e+01 -2.556000e+02
+7 97     -5.657000e+02 4.252700e+02
+10 97     -5.581200e+02 5.855700e+02
+11 97     -1.642900e+02 -3.545300e+02
+14 97     -3.142999e+01 -3.471400e+02
+0 98     -4.993000e+02 4.040900e+02
+1 98     -1.422300e+02 5.350400e+02
+5 98     -9.415002e+01 -2.472300e+02
+8 98     -5.721500e+02 9.628000e+01
+10 98     -7.437100e+02 5.798600e+02
+0 99     -5.434000e+02 4.285100e+02
+1 99     -1.778800e+02 5.677600e+02
+5 99     -1.334200e+02 -2.205400e+02
+7 99     -7.737000e+02 4.342900e+02
+11 99     -3.285700e+02 -3.273300e+02
+13 99     -2.414700e+02 8.529001e+01
+14 99     -2.157300e+02 -3.166300e+02
+0 100     -4.288600e+02 3.977900e+02
+1 100     -7.672998e+01 5.124900e+02
+2 100     -7.188500e+02 1.338400e+02
+7 100     -6.465900e+02 4.138400e+02
+8 100     -5.081500e+02 9.078000e+01
+10 100     -6.542100e+02 5.764900e+02
+12 100     -7.765700e+02 3.205000e+02
+14 100     -1.080900e+02 -3.494400e+02
+0 101     -4.305600e+02 4.729600e+02
+1 101     -6.125000e+01 5.854000e+02
+2 101     -7.201900e+02 2.298600e+02
+5 101     -1.770001e+01 -1.766100e+02
+8 101     -5.107600e+02 1.656500e+02
+12 101     -7.913300e+02 4.157800e+02
+14 101     -1.012800e+02 -2.703700e+02
+0 102     -4.470000e+02 3.914400e+02
+1 102     -9.547998e+01 5.107100e+02
+5 102     -4.465002e+01 -2.619900e+02
+7 102     -6.648000e+02 4.050600e+02
+8 102     -5.245400e+02 8.395001e+01
+11 102     -2.490000e+02 -3.609200e+02
+12 102     -7.980000e+02 3.098200e+02
+13 102     -1.660700e+02 5.671002e+01
+14 102     -1.267400e+02 -3.562900e+02
+0 103     -5.123200e+02 4.442500e+02
+1 103     -1.454200e+02 5.758700e+02
+5 103     -1.008000e+02 -2.052600e+02
+7 103     -7.424600e+02 4.550500e+02
+14 103     -1.836900e+02 -3.003000e+02
+0 104     -4.244600e+02 4.563400e+02
+1 104     -5.928003e+01 5.681700e+02
+2 104     -7.138100e+02 2.086800e+02
+5 104     -1.378998e+01 -1.939400e+02
+11 104     -2.260300e+02 -3.049600e+02
+14 104     -9.726001e+01 -2.875500e+02
+0 105     -4.473600e+02 3.997000e+02
+1 105     -9.403003e+01 5.190600e+02
+7 105     -6.661600e+02 4.140400e+02
+10 105     -6.772900e+02 5.777700e+02
+12 105     -7.992300e+02 3.204300e+02
+14 105     -1.259200e+02 -3.472900e+02
+0 106     -4.846800e+02 3.848800e+02
+1 106     -1.327700e+02 5.132000e+02
+4 106     -1.228998e+01 -8.085999e+01
+11 106     -2.824800e+02 -3.661000e+02
+0 107     -5.400900e+02 4.395200e+02
+1 107     -1.726000e+02 5.776900e+02
+0 108     -1.249800e+02 1.093200e+02
+1 108     9.991998e+01 1.647000e+02
+2 108     -1.394900e+02 1.049988e+00
+5 108     4.123900e+02 -5.605900e+02
+6 108     -3.191900e+02 6.259003e+01
+7 108     -2.529300e+02 1.856300e+02
+10 108     -2.503500e+02 2.566600e+02
+12 108     -2.591900e+02 1.151500e+02
+15 108     -2.119900e+02 2.685300e+02
+0 109     -4.269300e+02 4.288600e+02
+1 109     -6.888000e+01 5.421700e+02
+4 109     6.320007e+00 -1.138800e+02
+5 109     -1.947998e+01 -2.230800e+02
+8 109     -5.064100e+02 1.223700e+02
+10 109     -6.571000e+02 6.152800e+02
+11 109     -2.305800e+02 -3.288500e+02
+12 109     -7.799600e+02 3.599700e+02
+13 109     -1.486900e+02 8.959000e+01
+14 109     -1.029600e+02 -3.166700e+02
+0 110     -3.159900e+02 4.188000e+02
+1 110     3.753003e+01 5.058000e+02
+2 110     -5.965700e+02 1.605000e+02
+4 110     -8.309998e+00 -1.725800e+02
+5 110     8.939001e+01 -2.363100e+02
+7 110     -5.316800e+02 4.487800e+02
+8 110     -4.091800e+02 1.139200e+02
+10 110     -5.177400e+02 6.110900e+02
+12 110     -6.438900e+02 3.634800e+02
+13 110     -5.966998e+01 8.534000e+01
+14 110     5.169983e+00 -3.271500e+02
+0 111     4.015997e+01 -2.316000e+02
+1 111     1.258000e+02 -2.071900e+02
+3 111     2.119200e+02 -4.950100e+02
+6 111     1.062500e+02 -2.247500e+02
+7 111     -1.280029e+00 -1.085000e+02
+8 111     2.610000e+02 -2.143600e+02
+9 111     1.468000e+02 -6.521002e+01
+12 111     1.055300e+02 -1.805500e+02
+13 111     4.427100e+02 -4.208100e+02
+15 111     4.958002e+01 -1.711500e+02
+0 112     -1.080017e+00 -2.227400e+02
+1 112     9.026001e+01 -1.856000e+02
+2 112     2.411500e+02 -2.042900e+02
+3 112     1.618700e+02 -5.037600e+02
+4 112     -4.353000e+02 -4.082500e+02
+6 112     5.341998e+01 -2.320601e+02
+7 112     -4.495001e+01 -1.079200e+02
+8 112     2.164700e+02 -2.190800e+02
+10 112     -7.192999e+01 -1.161300e+02
+12 112     5.128003e+01 -1.848300e+02
+13 112     4.029700e+02 -4.170200e+02
+15 112     -7.229980e+00 -1.643600e+02
+0 113     4.428003e+01 -2.320300e+02
+1 113     1.295900e+02 -2.088900e+02
+3 113     2.170400e+02 -4.930800e+02
+4 113     -4.512300e+02 -4.470800e+02
+6 113     1.116400e+02 -2.232300e+02
+7 113     3.140015e+00 -1.082200e+02
+8 113     2.655300e+02 -2.130100e+02
+9 113     1.514900e+02 -6.403003e+01
+10 113     -1.751001e+01 -1.228100e+02
+12 113     1.112700e+02 -1.790800e+02
+15 113     5.537000e+01 -1.710600e+02
+0 114     2.358002e+01 1.107400e+02
+1 114     2.209900e+02 1.296600e+02
+2 114     1.142900e+02 1.231500e+02
+5 114     6.428900e+02 -5.453199e+02
+6 114     -6.328003e+01 1.442300e+02
+7 114     -8.420001e+01 2.247100e+02
+10 114     -7.778998e+01 2.725600e+02
+12 114     -3.703003e+01 1.981100e+02
+15 114     -1.678998e+01 2.916800e+02
+0 115     -6.075000e+01 6.903998e+01
+1 115     1.311200e+02 1.112700e+02
+3 115     -6.425000e+01 -2.685400e+02
+4 115     -2.200000e+02 -3.615000e+02
+5 115     5.408400e+02 -5.975500e+02
+6 115     -1.587500e+02 6.437000e+01
+7 115     -1.654700e+02 1.666200e+02
+8 115     5.348999e+01 -2.940002e+00
+10 115     -1.710900e+02 2.135700e+02
+12 115     -1.326300e+02 1.202700e+02
+13 115     2.962500e+02 -1.713600e+02
+15 115     -1.245800e+02 2.222400e+02
+0 116     6.288000e+01 5.094800e+02
+1 116     4.458900e+02 5.034800e+02
+2 116     -2.343500e+02 2.716000e+02
+3 116     -3.673600e+02 -6.126001e+01
+5 116     4.666500e+02 -1.381900e+02
+6 116     -4.108600e+02 5.465100e+02
+7 116     -1.672900e+02 5.841000e+02
+8 116     -1.137100e+02 2.082200e+02
+9 116     -3.513900e+02 3.021800e+02
+12 116     -2.388900e+02 5.286800e+02
+14 116     3.737900e+02 -2.238600e+02
+0 117     1.317000e+02 1.395001e+01
+1 117     2.911500e+02 4.320007e+00
+2 117     2.825800e+02 7.484998e+01
+3 117     1.839000e+02 -2.350400e+02
+4 117     -2.794200e+02 -5.192500e+02
+6 117     1.100800e+02 7.967999e+01
+7 117     4.554999e+01 1.502600e+02
+8 117     2.629700e+02 1.398001e+01
+10 117     5.753003e+01 1.709900e+02
+13 117     4.893400e+02 -1.975900e+02
+0 118     -3.558002e+01 4.886500e+02
+1 118     3.372800e+02 5.066800e+02
+5 118     3.692400e+02 -1.619200e+02
+6 118     -5.169400e+02 4.991100e+02
+7 118     -2.602500e+02 5.525300e+02
+8 118     -1.865800e+02 1.867500e+02
+9 118     -4.264200e+02 2.774500e+02
+11 118     1.159300e+02 -2.747700e+02
+12 118     -3.409000e+02 4.898900e+02
+13 118     1.623800e+02 1.584100e+02
+14 118     2.793700e+02 -2.487000e+02
+0 119     5.560100e+02 2.534200e+02
+1 119     8.635000e+02 1.113800e+02
+2 119     4.238600e+02 2.117200e+02
+6 119     3.337600e+02 4.022500e+02
+8 119     4.084000e+02 1.468200e+02
+9 119     2.216400e+02 2.744500e+02
+10 119     5.315601e+02 4.979000e+02
+11 119     6.811801e+02 -4.702900e+02
+12 119     4.227600e+02 4.092000e+02
+15 119     7.162200e+02 5.676100e+02
+0 120     1.669983e+00 4.915200e+02
+1 120     3.769000e+02 5.000300e+02
+2 120     -2.892400e+02 2.497300e+02
+3 120     -4.201600e+02 -8.137000e+01
+4 120     9.349976e+00 -3.601500e+02
+5 120     4.059000e+02 -1.589400e+02
+6 120     -4.753500e+02 5.095500e+02
+7 120     -2.242000e+02 5.588000e+02
+8 120     -1.582600e+02 1.898000e+02
+9 120     -3.966600e+02 2.812700e+02
+11 120     1.491100e+02 -2.713700e+02
+12 120     -3.008100e+02 4.979900e+02
+0 121     -4.017999e+01 4.909500e+02
+1 121     3.326500e+02 5.100300e+02
+2 121     -3.277300e+02 2.496400e+02
+4 121     1.253998e+01 -3.354200e+02
+5 121     3.653000e+02 -1.590500e+02
+6 121     -5.220400e+02 5.028600e+02
+7 121     -2.650600e+02 5.543700e+02
+8 121     -1.896400e+02 1.897300e+02
+11 121     1.115200e+02 -2.725900e+02
+12 121     -3.452300e+02 4.936800e+02
+13 121     1.585000e+02 1.599200e+02
+14 121     2.747000e+02 -2.463600e+02
+0 122     1.183800e+02 4.099731e-01
+1 122     2.745200e+02 -5.500000e+00
+2 122     2.755601e+02 5.935999e+01
+3 122     1.777300e+02 -2.491600e+02
+4 122     -2.881500e+02 -5.126200e+02
+6 122     1.102200e+02 6.358002e+01
+7 122     3.548999e+01 1.349400e+02
+8 122     2.547200e+02 1.679993e+00
+10 122     4.467999e+01 1.536900e+02
+13 122     4.799600e+02 -2.103700e+02
+15 122     1.253100e+02 1.540400e+02
+0 123     5.598000e+02 1.577700e+02
+1 123     8.368101e+02 8.580017e+00
+7 123     3.901000e+02 3.244500e+02
+10 123     5.436700e+02 3.850400e+02
+12 123     4.510601e+02 3.059500e+02
+15 123     7.324301e+02 4.331700e+02
+0 124     -2.609003e+01 5.030800e+02
+1 124     3.511500e+02 5.191100e+02
+2 124     -3.154700e+02 2.647100e+02
+3 124     -4.451800e+02 -6.735999e+01
+4 124     1.872998e+01 -3.447100e+02
+5 124     3.791400e+02 -1.462800e+02
+6 124     -5.090400e+02 5.208800e+02
+7 124     -2.523900e+02 5.688900e+02
+12 124     -3.336100e+02 5.093400e+02
+0 125     1.272900e+02 4.483700e+02
+1 125     4.983199e+02 4.239100e+02
+2 125     -1.697500e+02 2.031000e+02
+3 125     -3.065200e+02 -1.292300e+02
+4 125     -2.490002e+01 -4.354399e+02
+5 125     5.297700e+02 -2.023700e+02
+7 125     -9.734998e+01 5.285700e+02
+8 125     -6.019000e+01 1.548200e+02
+12 125     -1.592700e+02 4.660300e+02
+13 125     2.917000e+02 1.336300e+02
+14 125     4.383800e+02 -2.847100e+02
+0 126     3.112600e+02 5.753000e+02
+1 126     7.379800e+02 5.111600e+02
+2 126     -2.534998e+01 3.437700e+02
+9 126     -1.761900e+02 3.721400e+02
+13 126     4.329700e+02 2.524900e+02
+14 126     6.101500e+02 -1.447200e+02
+0 127     -1.122400e+02 4.972900e+02
+1 127     2.604200e+02 5.344500e+02
+2 127     -3.962700e+02 2.573100e+02
+7 127     -3.367300e+02 5.540700e+02
+8 127     -2.457200e+02 1.946500e+02
+0 128     1.250900e+02 -3.498999e+01
+1 128     2.692700e+02 -4.201001e+01
+3 128     1.988500e+02 -2.805400e+02
+4 128     -3.145300e+02 -5.137000e+02
+6 128     1.215800e+02 2.328003e+01
+7 128     4.756000e+01 1.011500e+02
+8 128     2.721300e+02 -2.762000e+01
+10 128     5.510999e+01 1.133800e+02
+12 128     1.375300e+02 7.263000e+01
+13 128     4.903900e+02 -2.398400e+02
+15 128     1.388400e+02 1.067100e+02
+0 129     1.659399e+02 1.534003e+01
+1 129     3.262200e+02 -4.469971e+00
+2 129     3.132100e+02 8.178003e+01
+3 129     2.111200e+02 -2.282800e+02
+6 129     1.449500e+02 9.039001e+01
+7 129     7.853003e+01 1.570300e+02
+10 129     9.739001e+01 1.768100e+02
+12 129     1.673300e+02 1.397100e+02
+13 129     5.181801e+02 -1.937200e+02
+15 129     1.884900e+02 1.812900e+02
+0 130     4.867400e+02 3.696900e+02
+1 130     8.421801e+02 2.513500e+02
+3 130     1.328500e+02 -7.459998e+01
+7 130     2.772300e+02 5.095000e+02
+8 130     2.915100e+02 1.864100e+02
+9 130     8.914001e+01 3.028200e+02
+11 130     5.996200e+02 -3.592700e+02
+0 131     3.077200e+02 5.442700e+02
+1 131     7.244800e+02 4.785600e+02
+2 131     -2.483002e+01 3.105000e+02
+3 131     -1.684300e+02 -2.223999e+01
+5 131     7.096100e+02 -9.209003e+01
+8 131     6.031000e+01 2.463300e+02
+9 131     -1.744900e+02 3.460500e+02
+11 131     4.214200e+02 -2.109300e+02
+12 131     8.390015e+00 6.003700e+02
+13 131     4.314399e+02 2.256100e+02
+14 131     6.093000e+02 -1.768500e+02
+0 132     1.434000e+02 8.089001e+01
+1 132     3.259200e+02 6.684003e+01
+3 132     1.567900e+02 -1.824500e+02
+4 132     -2.348600e+02 -5.248500e+02
+6 132     9.050000e+01 1.517500e+02
+7 132     4.348999e+01 2.166000e+02
+8 132     2.464200e+02 6.223999e+01
+10 132     6.478003e+01 2.500600e+02
+12 132     1.168800e+02 2.025500e+02
+13 132     4.855200e+02 -1.415600e+02
+15 132     1.496100e+02 2.674000e+02
+0 133     1.866100e+02 5.805400e+02
+1 133     5.980500e+02 5.466600e+02
+5 133     5.882100e+02 -6.121002e+01
+6 133     -2.898800e+02 6.614100e+02
+11 133     3.086500e+02 -1.875400e+02
+13 133     3.352100e+02 2.485800e+02
+0 134     5.440002e+01 5.778800e+02
+1 134     4.545900e+02 5.760800e+02
+2 134     -2.480700e+02 3.471300e+02
+3 134     -3.791100e+02 1.395001e+01
+4 134     5.679999e+01 -3.992900e+02
+5 134     4.597300e+02 -6.746002e+01
+6 134     -4.331600e+02 6.325900e+02
+8 134     -1.247500e+02 2.680100e+02
+9 134     -3.662700e+02 3.687000e+02
+11 134     1.917200e+02 -1.956800e+02
+12 134     -2.596500e+02 6.068700e+02
+13 134     2.315500e+02 2.383200e+02
+14 134     3.646801e+02 -1.546200e+02
+0 135     4.948500e+02 4.219200e+02
+1 135     8.679500e+02 3.056400e+02
+7 135     2.783000e+02 5.618600e+02
+8 135     2.888300e+02 2.299800e+02
+9 135     8.448999e+01 3.488700e+02
+12 135     2.852800e+02 5.484700e+02
+0 136     1.682600e+02 5.214001e+01
+1 136     3.403600e+02 3.121002e+01
+2 136     2.987200e+02 1.127300e+02
+3 136     1.953600e+02 -1.985600e+02
+7 136     7.339001e+01 1.932300e+02
+10 136     9.602002e+01 2.196200e+02
+12 136     1.550000e+02 1.796100e+02
+13 136     5.131700e+02 -1.630100e+02
+0 137     5.222500e+02 3.573300e+02
+1 137     8.762100e+02 2.289500e+02
+2 137     3.168300e+02 2.542700e+02
+3 137     1.758000e+02 -7.090002e+01
+6 137     2.260400e+02 4.950800e+02
+7 137     3.148101e+02 5.036300e+02
+9 137     1.268500e+02 3.063100e+02
+10 137     4.845100e+02 6.198600e+02
+12 137     3.328600e+02 4.885400e+02
+0 138     -9.960022e+00 -1.144000e+01
+1 138     1.493199e+02 2.047998e+01
+2 138     1.350800e+02 3.349976e+00
+3 138     4.765997e+01 -3.071800e+02
+4 138     -2.793100e+02 -4.034400e+02
+6 138     -4.640002e+01 -1.309998e+00
+7 138     -9.453003e+01 9.913000e+01
+8 138     1.402200e+02 -4.420999e+01
+10 138     -1.040600e+02 1.275100e+02
+12 138     -3.332001e+01 5.365997e+01
+13 138     3.629500e+02 -2.332800e+02
+0 139     5.826500e+02 1.211600e+02
+1 139     8.492800e+02 -3.703998e+01
+2 139     4.884399e+02 9.165997e+01
+3 139     3.528600e+02 -2.210500e+02
+6 139     4.012000e+02 2.637400e+02
+7 139     4.175100e+02 2.932000e+02
+8 139     4.601400e+02 4.757999e+01
+9 139     2.795601e+02 1.753400e+02
+10 139     5.731801e+02 3.442700e+02
+12 139     4.870500e+02 2.732600e+02
+15 139     7.685699e+02 3.852300e+02
+0 140     3.710400e+02 5.120000e+02
+1 140     7.878400e+02 4.277700e+02
+2 140     3.257001e+01 2.777300e+02
+5 140     7.754800e+02 -1.263200e+02
+6 140     -8.391000e+01 6.117100e+02
+8 140     1.086300e+02 2.186100e+02
+9 140     -1.250300e+02 3.164000e+02
+11 140     4.834301e+02 -2.357800e+02
+12 140     7.819000e+01 5.725000e+02
+14 140     6.747400e+02 -2.056700e+02
+0 141     -5.090002e+01 4.513100e+02
+1 141     3.094900e+02 4.734500e+02
+2 141     -3.256200e+02 2.118900e+02
+3 141     -4.545500e+02 -1.188700e+02
+0 142     -4.115997e+01 1.206700e+02
+1 142     1.668500e+02 1.553900e+02
+2 142     1.952002e+01 9.678003e+01
+3 142     -7.147998e+01 -2.211200e+02
+4 142     -1.892900e+02 -3.756800e+02
+5 142     5.516801e+02 -5.381600e+02
+6 142     -1.621100e+02 1.279000e+02
+7 142     -1.557800e+02 2.196800e+02
+8 142     5.290002e+01 3.854001e+01
+9 142     -9.851001e+01 1.652400e+02
+10 142     -1.542200e+02 2.768500e+02
+12 142     -1.287000e+02 1.822200e+02
+13 142     3.051000e+02 -1.279500e+02
+15 142     -1.046100e+02 2.957100e+02
+0 143     2.126899e+02 4.965500e+02
+1 143     6.037800e+02 4.519600e+02
+2 143     -9.909998e+01 2.584600e+02
+3 143     -2.381100e+02 -7.434998e+01
+5 143     6.156200e+02 -1.511100e+02
+6 143     -2.451800e+02 5.581600e+02
+8 143     -1.659973e+00 2.000200e+02
+9 143     -2.354800e+02 2.950100e+02
+12 143     -7.872998e+01 5.340800e+02
+0 144     1.986400e+02 5.757000e+02
+1 144     6.106300e+02 5.389300e+02
+3 144     -2.585400e+02 1.010999e+01
+4 144     4.798999e+01 -4.916600e+02
+5 144     6.002700e+02 -6.533002e+01
+6 144     -2.759000e+02 6.579300e+02
+8 144     -1.950000e+01 2.687400e+02
+9 144     -2.569300e+02 3.700300e+02
+11 144     3.199600e+02 -1.908200e+02
+14 144     5.021100e+02 -1.502400e+02
+0 145     -2.119995e+00 -2.244000e+01
+1 145     1.531000e+02 7.520020e+00
+4 145     -2.866300e+02 -4.095500e+02
+6 145     -3.197998e+01 -9.650024e+00
+7 145     -8.403998e+01 9.054999e+01
+8 145     1.519800e+02 -4.875000e+01
+12 145     -2.002002e+01 4.591998e+01
+15 145     -3.453998e+01 1.073000e+02
+0 146     3.234998e+01 4.699707e-01
+1 146     1.913600e+02 2.010999e+01
+2 146     1.834800e+02 3.394000e+01
+3 146     9.253998e+01 -2.761600e+02
+4 146     -2.757200e+02 -4.385300e+02
+6 146     3.820007e+00 3.017999e+01
+7 146     -5.215997e+01 1.195300e+02
+8 146     1.798900e+02 -1.932999e+01
+13 146     4.027100e+02 -2.182200e+02
+15 146     8.530029e+00 1.421400e+02
+0 147     8.640002e+01 -3.359003e+01
+1 147     2.319900e+02 -2.896002e+01
+3 147     1.625800e+02 -2.893200e+02
+4 147     -3.070700e+02 -4.817500e+02
+6 147     7.817999e+01 1.485999e+01
+7 147     8.789978e+00 9.592001e+01
+9 147     1.048700e+02 1.097700e+02
+10 147     9.309998e+00 1.140300e+02
+12 147     9.184998e+01 6.613000e+01
+13 147     4.560699e+02 -2.421000e+02
+15 147     8.595001e+01 1.035000e+02
+0 148     4.340002e+01 1.379999e+01
+1 148     2.059100e+02 3.004999e+01
+2 148     1.903600e+02 5.101001e+01
+6 148     1.148999e+01 4.885999e+01
+7 148     -4.351001e+01 1.346200e+02
+12 148     2.672998e+01 1.028700e+02
+15 148     2.147998e+01 1.615600e+02
+0 149     2.114500e+02 5.230700e+02
+1 149     6.099900e+02 4.801700e+02
+2 149     -1.042500e+02 2.875300e+02
+6 149     -2.532700e+02 5.935300e+02
+8 149     -5.989990e+00 2.233900e+02
+9 149     -2.410700e+02 3.201700e+02
+11 149     3.359200e+02 -2.350100e+02
+12 149     -8.591998e+01 5.644500e+02
+13 149     3.563101e+02 2.021700e+02
+14 149     5.172800e+02 -2.030300e+02
+0 150     4.179999e+01 4.906900e+02
+1 150     4.184600e+02 4.889500e+02
+7 150     -1.850300e+02 5.626500e+02
+12 150     -2.576700e+02 5.040900e+02
+0 151     3.236500e+02 5.621100e+02
+1 151     7.479500e+02 4.937600e+02
+5 151     7.242300e+02 -7.563000e+01
+6 151     -1.427700e+02 6.644700e+02
+8 151     6.946002e+01 2.593400e+02
+9 151     -1.655300e+02 3.607800e+02
+13 151     4.432200e+02 2.425400e+02
+0 152     1.294800e+02 5.237900e+02
+1 152     5.207500e+02 5.015700e+02
+5 152     5.335500e+02 -1.214400e+02
+6 152     -3.401100e+02 5.786300e+02
+8 152     -6.428998e+01 2.232900e+02
+13 152     2.923500e+02 1.978800e+02
+14 152     4.387900e+02 -2.058500e+02
+0 153     2.565800e+02 5.710400e+02
+1 153     6.743600e+02 5.193900e+02
+2 153     -7.151001e+01 3.385400e+02
+5 153     6.569800e+02 -6.934003e+01
+6 153     -2.146100e+02 6.615100e+02
+8 153     2.165997e+01 2.646400e+02
+9 153     -2.147800e+02 3.660800e+02
+11 153     3.721600e+02 -1.920800e+02
+12 153     -4.853003e+01 6.236700e+02
+13 153     3.899399e+02 2.450600e+02
+0 154     3.088300e+02 5.534000e+02
+1 154     7.281801e+02 4.878900e+02
+2 154     -2.516998e+01 3.207000e+02
+3 154     -1.683300e+02 -1.315997e+01
+5 154     7.095200e+02 -8.552002e+01
+6 154     -1.567200e+02 6.500900e+02
+8 154     5.952002e+01 2.510900e+02
+9 154     -1.752700e+02 3.521800e+02
+11 154     4.213900e+02 -2.037600e+02
+12 154     7.630005e+00 6.107400e+02
+13 154     4.318500e+02 2.339500e+02
+14 154     6.095300e+02 -1.668700e+02
+0 155     2.007200e+02 2.082001e+01
+1 155     3.634800e+02 -9.919983e+00
+7 155     1.105000e+02 1.672700e+02
+10 155     1.368400e+02 1.860100e+02
+12 155     2.018900e+02 1.520900e+02
+15 155     2.353300e+02 1.931500e+02
+0 156     1.544200e+02 1.251001e+01
+1 156     3.130800e+02 -3.929993e+00
+2 156     3.039800e+02 7.734998e+01
+3 156     2.035400e+02 -2.320200e+02
+4 156     -2.841500e+02 -5.380100e+02
+6 156     1.344900e+02 8.403998e+01
+7 156     6.776001e+01 1.524200e+02
+9 156     1.421600e+02 1.602900e+02
+10 156     8.367999e+01 1.715000e+02
+13 156     5.091100e+02 -1.973400e+02
+15 156     1.725699e+02 1.753500e+02
+0 157     3.023300e+02 5.432700e+02
+1 157     7.184200e+02 4.791500e+02
+3 157     -1.720100e+02 -2.153003e+01
+4 157     2.196997e+01 -5.601200e+02
+5 157     7.036500e+02 -9.645001e+01
+6 157     -1.613200e+02 6.364500e+02
+9 157     -1.783100e+02 3.422100e+02
+11 157     4.167800e+02 -2.127900e+02
+12 157     3.080017e+00 5.979000e+02
+13 157     4.275800e+02 2.259100e+02
+0 158     3.971200e+02 5.727600e+02
+1 158     8.384399e+02 4.881200e+02
+5 158     7.981200e+02 -6.120001e+01
+6 158     -6.982001e+01 6.920900e+02
+9 158     -1.166000e+02 3.727700e+02
+11 158     4.993400e+02 -1.810400e+02
+0 159     4.323999e+01 5.559998e+00
+1 159     2.028199e+02 2.188000e+01
+2 159     1.937300e+02 4.312000e+01
+3 159     1.016600e+02 -2.669800e+02
+6 159     1.495001e+01 3.973999e+01
+7 159     -4.194000e+01 1.266500e+02
+8 159     1.888200e+02 -1.217001e+01
+10 159     -4.396997e+01 1.516300e+02
+12 159     2.898999e+01 9.321002e+01
+13 159     4.119800e+02 -2.128100e+02
+0 160     1.360700e+02 2.083002e+01
+1 160     2.975601e+02 9.580017e+00
+2 160     2.834399e+02 8.182001e+01
+3 160     1.841600e+02 -2.282500e+02
+4 160     -2.750500e+02 -5.220900e+02
+6 160     1.119400e+02 8.796002e+01
+7 160     4.856000e+01 1.575800e+02
+8 160     2.641100e+02 1.995001e+01
+10 160     6.184998e+01 1.792600e+02
+12 160     1.321700e+02 1.386300e+02
+13 160     4.918900e+02 -1.916100e+02
+15 160     1.465900e+02 1.842200e+02
+0 161     4.271700e+02 5.797700e+02
+1 161     8.769100e+02 4.885300e+02
+2 161     6.846997e+01 3.497200e+02
+3 161     -8.007001e+01 1.446002e+01
+6 161     -4.034998e+01 7.059900e+02
+8 161     1.376400e+02 2.762600e+02
+9 161     -9.678998e+01 3.798900e+02
+11 161     5.256899e+02 -1.738100e+02
+13 161     5.248300e+02 2.644100e+02
+14 161     7.225400e+02 -1.330100e+02
+0 162     4.886899e+02 3.777600e+02
+1 162     8.466700e+02 2.592600e+02
+2 162     2.730699e+02 2.592700e+02
+7 162     2.782400e+02 5.174200e+02
+12 162     2.880300e+02 4.982800e+02
+13 162     6.460601e+02 1.095900e+02
+0 163     2.382100e+02 4.838600e+02
+1 163     6.289500e+02 4.318200e+02
+4 163     -1.085999e+01 -5.121600e+02
+5 163     6.414200e+02 -1.609900e+02
+6 163     -2.165600e+02 5.499200e+02
+7 163     4.140015e+00 5.757800e+02
+9 163     -2.153200e+02 2.839400e+02
+11 163     3.647400e+02 -2.680300e+02
+12 163     -5.064001e+01 5.230300e+02
+14 163     5.456200e+02 -2.421300e+02
+0 164     2.618700e+02 4.796600e+02
+1 164     6.534500e+02 4.211900e+02
+4 164     -1.488000e+01 -5.278900e+02
+5 164     6.649000e+02 -1.647800e+02
+6 164     -1.915200e+02 5.489100e+02
+7 164     2.615002e+01 5.735600e+02
+8 164     3.454999e+01 1.869400e+02
+9 164     -1.979600e+02 2.806900e+02
+11 164     3.863400e+02 -2.706900e+02
+12 164     -2.628998e+01 5.209800e+02
+14 164     5.692800e+02 -2.456300e+02
+0 165     2.440002e+01 -3.365002e+01
+1 165     1.735300e+02 -1.089001e+01
+2 165     1.865700e+02 -3.869995e+00
+3 165     9.759003e+01 -3.123500e+02
+6 165     6.099976e+00 -1.170001e+01
+8 165     1.818000e+02 -5.117999e+01
+9 165     4.821002e+01 8.895001e+01
+10 165     -6.103998e+01 1.041500e+02
+12 165     1.795001e+01 4.059998e+01
+13 165     3.990000e+02 -2.487000e+02
+15 165     2.979980e+00 9.441000e+01
+0 166     3.053500e+02 5.600000e+02
+1 166     7.264399e+02 4.959200e+02
+3 166     -1.717100e+02 -6.830017e+00
+5 166     7.060200e+02 -7.821002e+01
+6 166     -1.615100e+02 6.584600e+02
+9 166     -1.785500e+02 3.580600e+02
+11 166     4.178400e+02 -1.984300e+02
+14 166     6.057800e+02 -1.597700e+02
+0 167     3.522800e+02 5.659100e+02
+1 167     7.826300e+02 4.910000e+02
+2 167     9.570007e+00 3.353500e+02
+3 167     -1.355400e+02 2.199707e-01
+5 167     7.532800e+02 -7.044000e+01
+6 167     -1.138200e+02 6.748700e+02
+8 167     8.888000e+01 2.633800e+02
+9 167     -1.461600e+02 3.651000e+02
+11 167     4.592100e+02 -1.904500e+02
+13 167     4.659200e+02 2.477200e+02
+14 167     6.510400e+02 -1.512900e+02
+0 168     4.340002e+01 1.379999e+01
+1 168     2.059100e+02 3.004999e+01
+9 168     4.921997e+01 1.348400e+02
+12 168     2.672998e+01 1.028700e+02
+0 169     5.065200e+02 3.321400e+02
+1 169     8.508600e+02 2.058500e+02
+2 169     3.046100e+02 2.228900e+02
+3 169     1.643800e+02 -1.018500e+02
+7 169     3.024301e+02 4.762100e+02
+9 169     1.177900e+02 2.793400e+02
+10 169     4.668700e+02 5.880300e+02
+13 169     6.680500e+02 7.373999e+01
+0 170     -1.005400e+02 4.959800e+02
+1 170     2.718600e+02 5.301500e+02
+7 170     -3.251000e+02 5.534800e+02
+8 170     -2.374100e+02 1.926400e+02
+11 170     5.808002e+01 -2.696400e+02
+0 171     9.150000e+01 5.075800e+02
+1 171     4.756400e+02 4.942300e+02
+2 171     -2.083000e+02 2.706500e+02
+3 171     -3.425700e+02 -6.331000e+01
+4 171     1.334998e+01 -4.170200e+02
+5 171     4.947100e+02 -1.397700e+02
+6 171     -3.790000e+02 5.501600e+02
+11 171     2.288101e+02 -2.535500e+02
+12 171     -2.078900e+02 5.303400e+02
+14 171     4.015400e+02 -2.242900e+02
+0 172     1.413101e+02 -5.045001e+01
+1 172     2.803101e+02 -6.185999e+01
+2 172     3.165400e+02 1.331000e+01
+3 172     2.192800e+02 -2.925400e+02
+4 172     -3.283800e+02 -5.257200e+02
+6 172     1.446200e+02 1.069000e+01
+7 172     6.608002e+01 8.850000e+01
+8 172     2.899400e+02 -3.823999e+01
+10 172     7.576001e+01 9.716998e+01
+12 172     1.617500e+02 5.902002e+01
+13 172     5.059700e+02 -2.519600e+02
+15 172     1.638000e+02 8.795999e+01
+0 173     -1.096700e+02 5.425200e+02
+1 173     2.738500e+02 5.792200e+02
+2 173     -3.969000e+02 3.091000e+02
+5 173     2.997100e+02 -1.063200e+02
+12 173     -4.312800e+02 5.443000e+02
+0 174     5.653003e+01 5.683900e+02
+1 174     4.543101e+02 5.660500e+02
+3 174     -3.767500e+02 3.419983e+00
+5 174     4.613400e+02 -7.701001e+01
+6 174     -4.291100e+02 6.222700e+02
+8 174     -1.224700e+02 2.603800e+02
+9 174     -3.632200e+02 3.593700e+02
+11 174     1.940000e+02 -2.030700e+02
+12 174     -2.559200e+02 5.967100e+02
+13 174     2.333900e+02 2.304700e+02
+14 174     3.668900e+02 -1.643100e+02
+0 175     -8.462000e+01 4.734700e+02
+1 175     2.827700e+02 5.036000e+02
+4 175     5.109985e+00 -3.073400e+02
+5 175     3.204600e+02 -1.785400e+02
+6 175     -5.701700e+02 4.689500e+02
+8 175     -2.234600e+02 1.716300e+02
+12 175     -3.921700e+02 4.653800e+02
+0 176     -1.002400e+02 5.035900e+02
+1 176     2.742600e+02 5.378600e+02
+2 176     -3.855200e+02 2.646100e+02
+3 176     -5.137000e+02 -6.644000e+01
+5 176     3.067100e+02 -1.460000e+02
+7 176     -3.259700e+02 5.618800e+02
+12 176     -4.141400e+02 4.998800e+02
+0 177     5.590100e+02 1.636700e+02
+1 177     8.379100e+02 1.507001e+01
+2 177     4.506000e+02 1.236000e+02
+6 177     3.605900e+02 3.030100e+02
+7 177     3.883101e+02 3.299500e+02
+8 177     4.295300e+02 7.464999e+01
+9 177     2.470000e+02 2.008100e+02
+10 177     5.418400e+02 3.917500e+02
+12 177     4.481899e+02 3.120300e+02
+15 177     7.307600e+02 4.412100e+02
+0 178     4.954600e+02 3.639700e+02
+1 178     8.494700e+02 2.431400e+02
+2 178     2.844800e+02 2.502800e+02
+3 178     1.439700e+02 -7.614001e+01
+7 178     2.869200e+02 5.055400e+02
+9 178     9.890002e+01 3.015000e+02
+11 178     6.080601e+02 -3.642600e+02
+12 178     2.995200e+02 4.866500e+02
+0 179     2.707001e+01 9.822000e+01
+1 179     2.195601e+02 1.164500e+02
+3 179     3.039001e+01 -2.009100e+02
+4 179     -2.096000e+02 -4.313700e+02
+5 179     6.505601e+02 -5.589000e+02
+6 179     -5.265002e+01 1.323600e+02
+8 179     1.367200e+02 5.010001e+01
+10 179     -7.258002e+01 2.582900e+02
+12 179     -2.834003e+01 1.865800e+02
+13 179     3.787900e+02 -1.373400e+02
+15 179     -1.064001e+01 2.747300e+02
+0 180     2.170001e+01 4.681500e+02
+1 180     3.919700e+02 4.705100e+02
+2 180     -2.681800e+02 2.240900e+02
+3 180     -4.007300e+02 -1.069400e+02
+4 180     -3.909973e+00 -3.706300e+02
+5 180     4.254100e+02 -1.816300e+02
+6 180     -4.486000e+02 4.856800e+02
+7 180     -2.018600e+02 5.373200e+02
+8 180     -1.412300e+02 1.702100e+02
+9 180     -3.777200e+02 2.595700e+02
+11 180     1.677100e+02 -2.915000e+02
+12 180     -2.755700e+02 4.752800e+02
+13 180     2.079100e+02 1.444900e+02
+14 180     3.349200e+02 -2.676200e+02
+0 181     8.965002e+01 5.364001e+01
+1 181     2.630699e+02 5.553998e+01
+2 181     2.217900e+02 1.008500e+02
+4 181     -2.463700e+02 -4.845699e+02
+5 181     7.424800e+02 -6.068800e+02
+6 181     4.707001e+01 1.081200e+02
+7 181     -3.690002e+00 1.816200e+02
+8 181     2.141900e+02 3.573001e+01
+10 181     4.809998e+00 2.122400e+02
+13 181     4.462100e+02 -1.684000e+02
+15 181     7.921002e+01 2.226400e+02
+0 182     6.813000e+01 -9.080017e+00
+1 182     2.219900e+02 5.700073e-01
+2 182     2.271300e+02 3.725000e+01
+3 182     1.343600e+02 -2.723600e+02
+4 182     -2.874900e+02 -4.672500e+02
+6 182     4.985999e+01 3.248999e+01
+7 182     -1.384003e+01 1.168300e+02
+8 182     2.161300e+02 -1.817001e+01
+10 182     -1.346997e+01 1.374300e+02
+12 182     6.396997e+01 8.482001e+01
+13 182     4.368500e+02 -2.229700e+02
+15 182     5.815002e+01 1.341800e+02
+0 183     -5.054999e+01 4.556200e+02
+1 183     3.113101e+02 4.775200e+02
+2 183     -3.267800e+02 2.161200e+02
+3 183     -4.558200e+02 -1.148800e+02
+5 183     3.585100e+02 -1.965400e+02
+6 183     -5.189700e+02 4.554200e+02
+7 183     -2.690500e+02 5.183200e+02
+8 183     -1.902300e+02 1.619000e+02
+11 183     1.025300e+02 -3.035500e+02
+12 183     -3.473500e+02 4.528100e+02
+13 183     1.549800e+02 1.301300e+02
+14 183     2.696899e+02 -2.829300e+02
+0 184     1.710900e+02 5.292500e+02
+1 184     5.675100e+02 4.967500e+02
+2 184     -1.398000e+02 2.940100e+02
+5 184     5.732900e+02 -1.150000e+02
+6 184     -2.969600e+02 5.931800e+02
+8 184     -3.559003e+01 2.278700e+02
+9 184     -2.712600e+02 3.251100e+02
+12 184     -1.283900e+02 5.660200e+02
+14 184     4.780400e+02 -1.987100e+02
+0 185     1.282000e+02 4.551100e+02
+1 185     5.009800e+02 4.307300e+02
+2 185     -1.695300e+02 2.104000e+02
+3 185     -3.062100e+02 -1.216600e+02
+4 185     -2.063000e+01 -4.365200e+02
+5 185     5.302600e+02 -1.953200e+02
+7 185     -9.759003e+01 5.356200e+02
+8 185     -6.012000e+01 1.613800e+02
+12 185     -1.605100e+02 4.739800e+02
+13 185     2.923300e+02 1.392100e+02
+14 185     4.391500e+02 -2.777100e+02
+0 186     -6.071997e+01 3.934998e+01
+1 186     1.210500e+02 8.322000e+01
+2 186     4.058002e+01 2.217999e+01
+3 186     -4.634003e+01 -2.916800e+02
+4 186     -2.399400e+02 -3.622400e+02
+6 186     -1.415700e+02 3.189001e+01
+7 186     -1.590200e+02 1.378000e+02
+8 186     6.619000e+01 -2.513000e+01
+9 186     -7.663000e+01 1.046200e+02
+12 186     -1.198200e+02 8.801001e+01
+0 187     1.971997e+01 9.695999e+01
+1 187     2.121700e+02 1.171500e+02
+2 187     1.175200e+02 1.122100e+02
+3 187     2.360999e+01 -2.037700e+02
+4 187     -2.095400e+02 -4.261700e+02
+5 187     6.421600e+02 -5.604500e+02
+6 187     -6.015997e+01 1.289600e+02
+7 187     -8.534003e+01 2.110400e+02
+10 187     -8.146002e+01 2.565900e+02
+12 187     -3.608002e+01 1.833200e+02
+13 187     3.715601e+02 -1.388400e+02
+15 187     -1.990997e+01 2.715300e+02
+0 188     -1.100600e+02 4.422800e+02
+1 188     2.488101e+02 4.786800e+02
+2 188     -3.909800e+02 1.910500e+02
+3 188     -5.225100e+02 -1.388500e+02
+5 188     2.934600e+02 -2.121600e+02
+7 188     -3.278700e+02 4.964900e+02
+11 188     4.962000e+01 -3.166000e+02
+12 188     -4.147700e+02 4.234400e+02
+14 188     2.064100e+02 -2.994700e+02
+0 189     -1.078000e+02 5.097500e+02
+1 189     2.678101e+02 5.456900e+02
+3 189     -5.205600e+02 -5.933002e+01
+5 189     2.997200e+02 -1.402300e+02
+7 189     -3.341000e+02 5.671100e+02
+8 189     -2.438100e+02 2.049600e+02
+0 190     -2.562000e+01 4.765700e+02
+1 190     3.445400e+02 4.917500e+02
+2 190     -3.136300e+02 2.323700e+02
+5 190     3.785000e+02 -1.747400e+02
+6 190     -5.035800e+02 4.852900e+02
+7 190     -2.489900e+02 5.408600e+02
+9 190     -4.171800e+02 2.654200e+02
+12 190     -3.279500e+02 4.766900e+02
+13 190     1.704100e+02 1.489100e+02
+14 190     2.888400e+02 -2.608000e+02
+0 191     -2.426001e+01 5.067999e+01
+1 191     1.561500e+02 8.445999e+01
+2 191     8.709003e+01 5.545001e+01
+3 191     -9.799805e-01 -2.589300e+02
+7 191     -1.214200e+02 1.577400e+02
+8 191     1.041000e+02 3.999939e-01
+10 191     -1.270600e+02 1.976700e+02
+12 191     -7.422998e+01 1.180200e+02
+13 191     3.395800e+02 -1.822700e+02
+15 191     -7.392999e+01 2.023800e+02
+0 192     2.979900e+02 5.761000e+02
+1 192     7.226899e+02 5.149500e+02
+2 192     -3.685999e+01 3.450000e+02
+0 193     8.165002e+01 -3.200073e-01
+1 193     2.376400e+02 5.229980e+00
+0 194     -3.080017e+00 4.811200e+02
+1 194     3.692000e+02 4.908300e+02
+2 194     -2.926300e+02 2.383300e+02
+3 194     -4.242400e+02 -9.319000e+01
+4 194     4.030029e+00 -3.564300e+02
+5 194     4.008300e+02 -1.695800e+02
+6 194     -4.791100e+02 4.961400e+02
+7 194     -2.273100e+02 5.482800e+02
+9 194     -3.998200e+02 2.710400e+02
+11 194     1.449600e+02 -2.803700e+02
+12 194     -3.041100e+02 4.850400e+02
+14 194     3.106801e+02 -2.551900e+02
+0 195     5.119995e+00 8.357001e+01
+1 195     1.939700e+02 1.072400e+02
+3 195     1.235999e+01 -2.208300e+02
+4 195     -2.162700e+02 -4.135000e+02
+6 195     -7.378003e+01 1.099300e+02
+12 195     -5.115997e+01 1.648900e+02
+15 195     -3.875000e+01 2.519300e+02
+0 196     9.795001e+01 5.679400e+02
+1 196     4.980699e+02 5.550300e+02
+2 196     -2.083500e+02 3.360000e+02
+3 196     -3.410400e+02 2.479980e+00
+4 196     4.865002e+01 -4.252700e+02
+5 196     5.013800e+02 -7.710999e+01
+6 196     -3.836600e+02 6.279600e+02
+8 196     -9.176001e+01 2.602100e+02
+9 196     -3.315000e+02 3.598700e+02
+11 196     2.302200e+02 -2.023400e+02
+12 196     -2.120900e+02 6.008300e+02
+13 196     2.652600e+02 2.319000e+02
+14 196     4.056801e+02 -1.635600e+02
+0 197     7.440997e+01 -2.972998e+01
+1 197     2.216400e+02 -2.159998e+01
+2 197     2.422900e+02 1.833002e+01
+3 197     1.495500e+02 -2.896000e+02
+4 197     -3.031600e+02 -4.726000e+02
+7 197     -3.770020e+00 9.754001e+01
+8 197     2.275100e+02 -3.357999e+01
+9 197     9.345001e+01 1.094900e+02
+10 197     -4.349976e+00 1.143800e+02
+12 197     7.798999e+01 6.290997e+01
+13 197     4.451700e+02 -2.400500e+02
+15 197     6.932001e+01 1.069300e+02
+0 198     -3.097998e+01 5.064700e+02
+1 198     3.464200e+02 5.235100e+02
+7 198     -2.580700e+02 5.715600e+02
+0 199     5.884301e+02 2.051100e+02
+1 199     8.823900e+02 5.046997e+01
+2 199     4.731300e+02 1.798200e+02
+3 199     3.342700e+02 -1.370200e+02
+6 199     3.870200e+02 3.605100e+02
+7 199     4.123199e+02 3.758500e+02
+8 199     4.487400e+02 1.195600e+02
+9 199     2.644800e+02 2.490500e+02
+10 199     5.736200e+02 4.439100e+02
+12 199     4.727800e+02 3.693500e+02
+15 199     7.676000e+02 5.043600e+02
+0 200     2.162200e+02 -1.194000e+01
+1 200     3.691200e+02 -4.721002e+01
+2 200     3.660601e+02 6.070001e+01
+3 200     2.613300e+02 -2.467600e+02
+7 200     1.311200e+02 1.375600e+02
+12 200     2.291300e+02 1.192600e+02
+13 200     5.627900e+02 -2.141400e+02
+15 200     2.609900e+02 1.505300e+02
+0 201     4.232001e+01 5.959998e+01
+1 201     2.197500e+02 7.495001e+01
+2 201     1.671400e+02 9.160999e+01
+3 201     7.359998e+01 -2.217400e+02
+6 201     -1.059003e+01 9.802002e+01
+7 201     -5.329999e+01 1.795000e+02
+10 201     -5.103998e+01 2.149400e+02
+12 201     8.070007e+00 1.525000e+02
+15 201     1.454999e+01 2.242300e+02
+0 202     5.592200e+02 2.350100e+02
+1 202     8.609399e+02 9.085999e+01
+3 202     2.938900e+02 -1.239100e+02
+7 202     3.790200e+02 3.990600e+02
+15 202     7.229600e+02 5.422100e+02
+0 203     2.084301e+02 5.401001e+01
+1 203     3.830800e+02 2.078003e+01
+2 203     3.284200e+02 1.169700e+02
+6 203     1.670100e+02 1.411300e+02
+8 203     3.046200e+02 5.012000e+01
+10 203     1.424200e+02 2.253100e+02
+12 203     1.968900e+02 1.887200e+02
+15 203     2.421200e+02 2.399700e+02
+0 204     5.598000e+02 1.577700e+02
+1 204     8.368101e+02 8.580017e+00
+7 204     3.901000e+02 3.244500e+02
+10 204     5.436700e+02 3.850400e+02
+12 204     4.510601e+02 3.059500e+02
+15 204     7.324301e+02 4.331700e+02
+0 205     5.809998e+01 -2.262000e+01
+1 205     2.093500e+02 -9.109985e+00
+3 205     1.304200e+02 -2.873300e+02
+4 205     -2.956700e+02 -4.594100e+02
+6 205     4.302002e+01 1.370001e+01
+7 205     -2.092999e+01 1.026700e+02
+8 205     2.109700e+02 -3.204999e+01
+12 205     5.623999e+01 6.640997e+01
+13 205     4.303700e+02 -2.343000e+02
+0 206     1.143900e+02 5.123999e+01
+1 206     2.860300e+02 4.620001e+01
+2 206     2.496600e+02 1.047100e+02
+3 206     1.504700e+02 -2.079400e+02
+4 206     -2.512900e+02 -5.048300e+02
+8 206     2.369300e+02 3.884000e+01
+9 206     9.448999e+01 1.810900e+02
+10 206     3.296002e+01 2.122500e+02
+12 206     9.726001e+01 1.651200e+02
+13 206     4.686400e+02 -1.679300e+02
+0 207     1.698999e+01 5.152700e+02
+1 207     3.979600e+02 5.207000e+02
+2 207     -2.764200e+02 2.778600e+02
+3 207     -4.079200e+02 -5.387000e+01
+4 207     2.245001e+01 -3.713800e+02
+5 207     4.217200e+02 -1.331200e+02
+6 207     -4.626000e+02 5.445600e+02
+9 207     -3.874500e+02 3.064200e+02
+11 207     1.610200e+02 -2.505500e+02
+12 207     -2.888500e+02 5.289300e+02
+13 207     2.033300e+02 1.839900e+02
+14 207     3.298101e+02 -2.191100e+02
+0 208     2.173999e+01 4.331400e+02
+1 208     3.828000e+02 4.357800e+02
+2 208     -2.655200e+02 1.830300e+02
+3 208     -3.988600e+02 -1.479400e+02
+4 208     -2.592999e+01 -3.674700e+02
+5 208     4.241400e+02 -2.203800e+02
+6 208     -4.422600e+02 4.391700e+02
+7 208     -1.973300e+02 5.017300e+02
+8 208     -1.385300e+02 1.378400e+02
+12 208     -2.690300e+02 4.329400e+02
+13 208     2.079301e+02 1.141100e+02
+14 208     3.347200e+02 -3.050500e+02
+0 209     4.454999e+01 5.764800e+02
+1 209     4.435601e+02 5.770000e+02
+2 209     -2.568100e+02 3.459400e+02
+3 209     -3.887500e+02 1.231000e+01
+4 209     5.653003e+01 -3.934700e+02
+5 209     4.502600e+02 -6.914001e+01
+6 209     -4.434800e+02 6.296100e+02
+8 209     -1.314800e+02 2.672900e+02
+12 209     -2.698800e+02 6.042700e+02
+13 209     2.239399e+02 2.368000e+02
+14 209     3.553500e+02 -1.563800e+02
+0 210     1.090000e+02 4.384998e+01
+1 210     2.784700e+02 4.057001e+01
+2 210     2.471400e+02 9.656000e+01
+6 210     7.388000e+01 1.034300e+02
+7 210     1.719000e+01 1.758800e+02
+8 210     2.345500e+02 3.201001e+01
+10 210     2.850000e+01 2.031600e+02
+12 210     9.396002e+01 1.554200e+02
+13 210     4.649700e+02 -1.746300e+02
+15 210     1.070300e+02 2.119700e+02
+0 211     5.716998e+01 5.062300e+02
+1 211     4.386500e+02 5.018300e+02
+2 211     -2.388700e+02 2.682200e+02
+3 211     -3.713800e+02 -6.481000e+01
+5 211     4.611700e+02 -1.412300e+02
+7 211     -1.720600e+02 5.804100e+02
+8 211     -1.173100e+02 2.056300e+02
+9 211     -3.543400e+02 2.992700e+02
+12 211     -2.438400e+02 5.249300e+02
+13 211     2.353400e+02 1.785000e+02
+14 211     3.687700e+02 -2.270700e+02
+0 212     -2.009998e+01 5.275900e+02
+1 212     3.629000e+02 5.424400e+02
+2 212     -3.120300e+02 2.914400e+02
+5 212     3.857200e+02 -1.208000e+02
+6 212     -5.065600e+02 5.533600e+02
+12 212     -3.308300e+02 5.384800e+02
+0 213     4.360999e+01 5.318700e+02
+1 213     4.311700e+02 5.313200e+02
+2 213     -2.544000e+02 2.976100e+02
+4 213     3.038000e+01 -3.889100e+02
+5 213     4.490100e+02 -1.122500e+02
+8 213     -1.292700e+02 2.333000e+02
+11 213     1.840300e+02 -2.346500e+02
+12 213     -2.630300e+02 5.547900e+02
+0 214     5.889001e+01 1.250000e+00
+1 214     2.164200e+02 1.319000e+01
+2 214     2.133500e+02 4.444000e+01
+3 214     1.205100e+02 -2.656100e+02
+4 214     -2.789900e+02 -4.601300e+02
+7 214     -2.498999e+01 1.254100e+02
+9 214     6.764001e+01 1.302000e+02
+10 214     -2.515002e+01 1.485200e+02
+13 214     4.270300e+02 -2.150100e+02
+15 214     4.432001e+01 1.468300e+02
+0 215     4.454999e+01 5.764800e+02
+1 215     4.435601e+02 5.770000e+02
+2 215     -2.568100e+02 3.459400e+02
+4 215     5.653003e+01 -3.934700e+02
+5 215     4.502600e+02 -6.914001e+01
+6 215     -4.434800e+02 6.296100e+02
+8 215     -1.314800e+02 2.672900e+02
+11 215     1.830800e+02 -1.971100e+02
+12 215     -2.698800e+02 6.042700e+02
+13 215     2.239399e+02 2.368000e+02
+14 215     3.553500e+02 -1.563800e+02
+0 216     3.796997e+01 -2.208002e+01
+1 216     1.894100e+02 -3.200012e+00
+2 216     1.986000e+02 1.359998e+01
+3 216     1.079700e+02 -2.953800e+02
+7 216     -4.265002e+01 9.839999e+01
+8 216     1.918400e+02 -3.703000e+01
+10 216     -4.703003e+01 1.193500e+02
+12 216     3.219000e+01 5.970001e+01
+13 216     4.107300e+02 -2.370300e+02
+15 216     1.921997e+01 1.121900e+02
+0 217     1.213500e+02 5.070001e+01
+1 217     2.924399e+02 4.426001e+01
+2 217     2.564700e+02 1.050700e+02
+3 217     1.570500e+02 -2.072400e+02
+4 217     -2.520800e+02 -5.089700e+02
+6 217     8.484998e+01 1.144600e+02
+8 217     2.430000e+02 3.904001e+01
+10 217     4.277002e+01 2.120700e+02
+12 217     1.063300e+02 1.661100e+02
+15 217     1.225400e+02 2.231700e+02
+0 218     4.856000e+01 5.450600e+02
+1 218     4.397200e+02 5.438400e+02
+2 218     -2.502400e+02 3.115400e+02
+5 218     4.533000e+02 -1.017200e+02
+6 218     -4.329700e+02 5.894200e+02
+8 218     -1.262900e+02 2.390100e+02
+9 218     -3.663900e+02 3.366000e+02
+12 218     -2.599400e+02 5.683900e+02
+13 218     2.277800e+02 2.107200e+02
+14 218     3.596300e+02 -1.876600e+02
+0 219     3.036899e+02 5.745200e+02
+1 219     7.287000e+02 5.121500e+02
+9 219     -1.811800e+02 3.709500e+02
+0 220     5.587000e+01 8.747000e+01
+1 220     2.421100e+02 9.870999e+01
+2 220     1.714800e+02 1.177200e+02
+3 220     7.465997e+01 -1.965700e+02
+4 220     -2.195900e+02 -4.568900e+02
+6 220     -6.239990e+00 1.318900e+02
+8 220     1.731200e+02 5.148999e+01
+10 220     -3.971002e+01 2.495200e+02
+12 220     1.647998e+01 1.852000e+02
+13 220     4.096899e+02 -1.432600e+02
+15 220     2.978003e+01 2.642500e+02
+0 221     8.166998e+01 9.720999e+01
+1 221     2.711200e+02 1.006900e+02
+2 221     1.860000e+02 1.324000e+02
+4 221     -2.166500e+02 -4.754600e+02
+5 221     7.192600e+02 -5.593199e+02
+6 221     1.291998e+01 1.515200e+02
+7 221     -2.166998e+01 2.220400e+02
+9 221     4.196002e+01 2.009100e+02
+12 221     3.763000e+01 2.043900e+02
+13 221     4.282800e+02 -1.318200e+02
+15 221     6.357001e+01 2.811800e+02
+0 222     9.183002e+01 -1.650024e+00
+1 222     2.468800e+02 7.899780e-01
+2 222     2.495601e+02 5.106000e+01
+3 222     1.541300e+02 -2.582100e+02
+6 222     7.392999e+01 4.877002e+01
+7 222     8.640015e+00 1.283900e+02
+10 222     1.322998e+01 1.483100e+02
+12 222     8.976001e+01 1.006000e+02
+15 222     8.946002e+01 1.475000e+02
+0 223     5.115699e+02 3.734200e+02
+1 223     8.698900e+02 2.490700e+02
+2 223     3.006700e+02 2.653500e+02
+3 223     1.595300e+02 -6.069000e+01
+6 223     2.087600e+02 5.106200e+02
+7 223     3.019100e+02 5.173200e+02
+8 223     3.135600e+02 1.971300e+02
+9 223     1.128200e+02 3.162600e+02
+11 223     6.219100e+02 -3.535300e+02
+13 223     6.696600e+02 1.092800e+02
+0 224     -4.229980e+00 9.957001e+01
+1 224     1.914200e+02 1.260800e+02
+3 224     -6.010010e+00 -2.129500e+02
+4 224     -2.053700e+02 -4.067000e+02
+6 224     -9.248001e+01 1.215700e+02
+7 224     -1.106000e+02 2.084600e+02
+12 224     -6.831000e+01 1.769500e+02
+13 224     3.487200e+02 -1.397800e+02
+15 224     -5.290997e+01 2.722100e+02
+0 225     5.784700e+02 1.036900e+02
+1 225     8.393199e+02 -5.426001e+01
+2 225     4.890601e+02 7.191998e+01
+3 225     3.543700e+02 -2.401000e+02
+6 225     4.009000e+02 2.427100e+02
+7 225     4.159500e+02 2.756800e+02
+8 225     4.597500e+02 3.113000e+01
+9 225     2.803500e+02 1.583800e+02
+10 225     5.696700e+02 3.234100e+02
+12 225     4.865500e+02 2.525900e+02
+15 225     7.651300e+02 3.600600e+02
+0 226     2.046300e+02 4.853800e+02
+1 226     5.915900e+02 4.425100e+02
+2 226     -1.063800e+02 2.466800e+02
+3 226     -2.445500e+02 -8.667999e+01
+4 226     -7.580017e+00 -4.894200e+02
+5 226     6.076600e+02 -1.609000e+02
+6 226     -2.533300e+02 5.456900e+02
+7 226     -2.826001e+01 5.734500e+02
+8 226     -6.830017e+00 1.902600e+02
+9 226     -2.409900e+02 2.845600e+02
+11 226     3.327400e+02 -2.682100e+02
+12 226     -8.658002e+01 5.217800e+02
+14 226     5.119200e+02 -2.397600e+02
+0 227     9.265002e+01 5.151800e+02
+1 227     4.788600e+02 5.018800e+02
+3 227     -3.400000e+02 -5.263000e+01
+5 227     4.982000e+02 -1.291700e+02
+6 227     -3.768500e+02 5.634500e+02
+9 227     -3.269600e+02 3.109400e+02
+13 227     2.626700e+02 1.875900e+02
+14 227     4.025601e+02 -2.168600e+02
+0 228     -8.965997e+01 4.681400e+02
+1 228     2.761801e+02 4.995300e+02
+2 228     -3.738200e+02 2.223600e+02
+6 228     -5.757300e+02 4.610700e+02
+7 228     -3.111800e+02 5.257000e+02
+8 228     -2.274200e+02 1.668300e+02
+11 228     6.779999e+01 -2.934700e+02
+0 229     5.912900e+02 1.399200e+02
+1 229     8.643900e+02 -1.982001e+01
+2 229     4.937300e+02 1.154700e+02
+3 229     3.578400e+02 -1.980100e+02
+7 229     4.238500e+02 3.131600e+02
+8 229     4.640900e+02 6.648001e+01
+9 229     2.831200e+02 1.954200e+02
+10 229     5.818400e+02 3.671300e+02
+13 229     7.965400e+02 -7.571002e+01
+15 229     7.788800e+02 4.128400e+02
+0 230     4.223700e+02 5.774600e+02
+1 230     8.710699e+02 4.870900e+02
+5 230     8.234600e+02 -5.541998e+01
+6 230     -4.466998e+01 7.018200e+02
+14 230     7.184301e+02 -1.355900e+02
+0 231     4.712600e+02 3.942700e+02
+1 231     8.337500e+02 2.816200e+02
+2 231     2.495300e+02 2.690200e+02
+3 231     1.093600e+02 -5.881000e+01
+7 231     2.585400e+02 5.306700e+02
+8 231     2.728400e+02 2.014200e+02
+9 231     6.865997e+01 3.174100e+02
+11 231     5.810200e+02 -3.366700e+02
+12 231     2.643600e+02 5.110100e+02
+13 231     6.277600e+02 1.219000e+02
+14 231     8.613300e+02 -3.119800e+02
+0 232     3.583700e+02 5.743400e+02
+1 232     7.926100e+02 4.987500e+02
+2 232     1.309998e+01 3.429000e+02
+3 232     -1.323800e+02 8.530029e+00
+5 232     7.585900e+02 -6.153003e+01
+6 232     -1.098900e+02 6.859100e+02
+9 232     -1.434400e+02 3.726500e+02
+11 232     4.636000e+02 -1.827700e+02
+13 232     4.701500e+02 2.550500e+02
+14 232     6.563700e+02 -1.428000e+02
+0 233     -3.472998e+01 1.007000e+02
+1 233     1.646700e+02 1.352800e+02
+2 233     4.415997e+01 8.964001e+01
+3 233     -4.614001e+01 -2.278100e+02
+4 233     -2.023400e+02 -3.823200e+02
+5 233     5.692600e+02 -5.595900e+02
+6 233     -1.366700e+02 1.106800e+02
+7 233     -1.437300e+02 2.034200e+02
+8 233     7.154999e+01 3.076999e+01
+10 233     -1.445000e+02 2.546100e+02
+12 233     -1.090100e+02 1.653800e+02
+13 233     3.179200e+02 -1.423400e+02
+15 233     -9.370001e+01 2.696000e+02
+0 234     2.446000e+02 1.934003e+01
+1 234     4.098900e+02 -2.551001e+01
+2 234     3.731600e+02 8.684003e+01
+3 234     2.664399e+02 -2.226600e+02
+7 234     1.517500e+02 1.705500e+02
+10 234     1.878500e+02 1.885000e+02
+13 234     5.796801e+02 -1.866900e+02
+15 234     2.967500e+02 1.970500e+02
+0 235     -9.320007e+00 1.190002e+00
+1 235     1.540400e+02 3.140997e+01
+4 235     -2.701100e+02 -4.044100e+02
+6 235     -4.963000e+01 1.328003e+01
+8 235     1.385800e+02 -3.310001e+01
+10 235     -1.025800e+02 1.401100e+02
+12 235     -3.445001e+01 6.779999e+01
+13 235     3.632900e+02 -2.228200e+02
+15 235     -4.577002e+01 1.363000e+02
+0 236     -2.603998e+01 3.287000e+01
+1 236     1.488900e+02 6.765002e+01
+2 236     9.525000e+01 3.962000e+01
+3 236     6.880005e+00 -2.732900e+02
+4 236     -2.470400e+02 -3.912800e+02
+6 236     -8.698999e+01 4.253003e+01
+7 236     -1.194600e+02 1.395800e+02
+10 236     -1.272300e+02 1.762600e+02
+12 236     -6.931000e+01 9.840997e+01
+13 236     3.410601e+02 -1.971600e+02
+15 236     -7.379999e+01 1.782400e+02
+0 237     1.095000e+02 5.719971e+00
+1 237     2.666100e+02 2.890015e+00
+2 237     2.643600e+02 6.240002e+01
+3 237     1.676000e+02 -2.473100e+02
+6 237     9.056000e+01 6.209998e+01
+7 237     2.502002e+01 1.387200e+02
+8 237     2.473600e+02 2.619995e+00
+10 237     3.306000e+01 1.589300e+02
+12 237     1.079300e+02 1.135600e+02
+13 237     4.715500e+02 -2.066600e+02
+15 237     1.124300e+02 1.599600e+02
+0 238     3.622000e+02 5.140900e+02
+1 238     7.775300e+02 4.329600e+02
+3 238     -1.198200e+02 -5.415997e+01
+5 238     7.657100e+02 -1.253900e+02
+6 238     -9.342001e+01 6.109500e+02
+9 238     -1.313500e+02 3.161100e+02
+11 238     4.745601e+02 -2.341600e+02
+13 238     4.770601e+02 2.044700e+02
+14 238     6.660699e+02 -2.043000e+02
+0 239     -1.937600e+02 5.080000e+02
+1 239     1.799800e+02 5.647200e+02
+2 239     -4.764000e+02 2.699200e+02
+3 239     -6.029600e+02 -5.914001e+01
+7 239     -4.201000e+02 5.567300e+02
+0 240     -6.419983e+00 4.749300e+02
+1 240     3.643000e+02 4.853200e+02
+2 240     -2.953700e+02 2.311900e+02
+5 240     3.972100e+02 -1.762300e+02
+6 240     -4.814500e+02 4.871600e+02
+7 240     -2.299000e+02 5.414700e+02
+8 240     -1.633100e+02 1.754200e+02
+9 240     -4.013200e+02 2.646900e+02
+11 240     1.426700e+02 -2.856600e+02
+12 240     -3.064500e+02 4.779300e+02
+0 241     -8.925000e+01 4.743600e+02
+1 241     2.780800e+02 5.054500e+02
+2 241     -3.734800e+02 2.290100e+02
+5 241     3.158700e+02 -1.778400e+02
+6 241     -5.758300e+02 4.688100e+02
+7 241     -3.113100e+02 5.319400e+02
+8 241     -2.275900e+02 1.721800e+02
+11 241     6.806000e+01 -2.881800e+02
+12 241     -3.971300e+02 4.648800e+02
+13 241     1.199800e+02 1.432200e+02
+14 241     2.272100e+02 -2.651000e+02
+0 242     -3.066998e+01 5.616400e+02
+1 242     3.604000e+02 5.797200e+02
+5 242     3.768700e+02 -8.644000e+01
+6 242     -5.252000e+02 5.962600e+02
+8 242     -1.873100e+02 2.524800e+02
+11 242     1.173800e+02 -2.123600e+02
+12 242     -3.481100e+02 5.767000e+02
+0 243     -2.281000e+01 5.676400e+02
+1 243     3.703800e+02 5.839900e+02
+2 243     -3.171800e+02 3.367100e+02
+5 243     3.847500e+02 -7.957001e+01
+0 244     2.101600e+02 5.526900e+02
+1 244     6.169399e+02 5.116100e+02
+2 244     -1.086700e+02 3.196200e+02
+3 244     -2.473600e+02 -1.428003e+01
+4 244     3.335999e+01 -4.975400e+02
+5 244     6.115900e+02 -8.892999e+01
+6 244     -2.600300e+02 6.309200e+02
+9 244     -2.459400e+02 3.484000e+02
+11 244     3.321899e+02 -2.099200e+02
+12 244     -9.263000e+01 5.982000e+02
+14 244     5.142200e+02 -1.729100e+02
+0 245     5.254999e+01 5.434800e+02
+1 245     4.438800e+02 5.416200e+02
+8 245     -1.233800e+02 2.388400e+02
+9 245     -3.631400e+02 3.357800e+02
+11 245     1.916300e+02 -2.250600e+02
+14 245     3.639600e+02 -1.890900e+02
+0 246     -1.074400e+02 5.323300e+02
+1 246     2.737900e+02 5.682100e+02
+2 246     -3.944500e+02 2.975100e+02
+12 246     -4.272000e+02 5.327200e+02
+0 247     2.832600e+02 5.630600e+02
+1 247     7.027700e+02 5.046500e+02
+2 247     -4.741998e+01 3.306100e+02
+3 247     -1.901800e+02 -3.729980e+00
+5 247     6.840400e+02 -7.585999e+01
+6 247     -1.852300e+02 6.577700e+02
+9 247     -1.951200e+02 3.600000e+02
+11 247     3.970699e+02 -1.968300e+02
+12 247     -1.896002e+01 6.183300e+02
+14 247     5.843400e+02 -1.585200e+02
+0 248     -1.050100e+02 5.271900e+02
+1 248     2.750800e+02 5.626500e+02
+2 248     -3.919500e+02 2.914700e+02
+4 248     3.735999e+01 -3.003400e+02
+5 248     3.033900e+02 -1.220400e+02
+8 248     -2.430200e+02 2.208200e+02
+11 248     5.312000e+01 -2.431600e+02
+12 248     -4.239300e+02 5.264400e+02
+0 249     -2.665000e+02 4.544700e+02
+1 249     9.477002e+01 5.290700e+02
+4 249     8.000000e+00 -2.028900e+02
+5 249     1.408600e+02 -1.985400e+02
+7 249     -4.864600e+02 4.922800e+02
+11 249     -8.852002e+01 -3.073100e+02
+12 249     -5.932500e+02 4.157800e+02
+0 250     5.981000e+01 -1.628000e+02
+1 250     1.671300e+02 -1.475200e+02
+2 250     2.783700e+02 -1.261000e+02
+3 250     1.921100e+02 -4.261801e+02
+6 250     9.641998e+01 -1.436700e+02
+13 250     4.482500e+02 -3.591200e+02
+15 250     6.758002e+01 -7.571002e+01
+0 251     3.272998e+01 -1.589800e+02
+1 251     1.432700e+02 -1.352100e+02
+2 251     2.468600e+02 -1.306200e+02
+3 251     1.623300e+02 -4.323600e+02
+4 251     -3.925200e+02 -4.357600e+02
+6 251     6.346997e+01 -1.494900e+02
+7 251     -2.340997e+01 -3.903998e+01
+8 251     2.261600e+02 -1.574600e+02
+10 251     -3.865997e+01 -3.960999e+01
+12 251     6.859003e+01 -1.014400e+02
+13 251     4.230699e+02 -3.576800e+02
+15 251     3.053003e+01 -7.390002e+01
+0 252     -7.710999e+01 -2.262700e+02
+1 252     2.562000e+01 -1.675100e+02
+3 252     5.309003e+01 -5.722800e+02
+4 252     -4.255500e+02 -3.400700e+02
+6 252     -5.690002e+01 -2.809900e+02
+7 252     -1.274000e+02 -1.310600e+02
+8 252     1.269500e+02 -2.653500e+02
+9 252     1.252002e+01 -1.321200e+02
+12 252     -5.470001e+01 -2.290400e+02
+15 252     -1.067800e+02 -1.796100e+02
+0 253     -1.627002e+01 -2.250500e+02
+1 253     7.664001e+01 -1.839000e+02
+2 253     2.226100e+02 -2.159300e+02
+3 253     1.458400e+02 -5.156801e+02
+4 253     -4.346400e+02 -3.952600e+02
+7 253     -6.025000e+01 -1.140700e+02
+8 253     2.034500e+02 -2.278900e+02
+10 253     -8.800000e+01 -1.212600e+02
+12 253     3.271002e+01 -1.953600e+02
+13 253     3.880100e+02 -4.217600e+02
+15 253     -2.653003e+01 -1.697300e+02
+0 254     -8.364001e+01 -2.469000e+02
+1 254     1.554999e+01 -1.858700e+02
+6 254     -6.142999e+01 -3.147400e+02
+7 254     -1.312900e+02 -1.541600e+02
+9 254     1.354999e+01 -1.698900e+02
+10 254     -1.631800e+02 -1.527000e+02
+12 254     -5.720001e+01 -2.630200e+02
+15 254     -1.123000e+02 -2.082300e+02
+0 255     -1.485000e+02 5.321100e+02
+1 255     2.316100e+02 5.779500e+02
+2 255     -4.335200e+02 2.976100e+02
+5 255     2.616899e+02 -1.170200e+02
+7 255     -3.778100e+02 5.865400e+02
+11 255     1.521002e+01 -2.399700e+02
+12 255     -4.723200e+02 5.275100e+02
+0 256     3.650000e+01 5.594500e+02
+1 256     4.306600e+02 5.614700e+02
+8 256     -1.365700e+02 2.518200e+02
+9 256     -3.779000e+02 3.509900e+02
+11 256     1.768900e+02 -2.116000e+02
+13 256     2.180000e+02 2.215800e+02
+0 257     3.623700e+02 5.779000e+02
+1 257     7.984301e+02 5.013700e+02
+5 257     7.630699e+02 -5.831000e+01
+11 257     4.673101e+02 -1.799900e+02
+13 257     4.734200e+02 2.579500e+02
+14 257     6.597300e+02 -1.391600e+02
+0 258     1.011200e+02 4.294100e+02
+1 258     4.655500e+02 4.112900e+02
+2 258     -1.927800e+02 1.802000e+02
+8 258     -7.879999e+01 1.366300e+02
+13 258     2.711000e+02 1.154100e+02
+14 258     4.128900e+02 -3.062900e+02
+0 259     -1.974100e+02 3.867000e+02
+1 259     1.473700e+02 4.454600e+02
+2 259     -4.744900e+02 1.223600e+02
+10 259     -3.695500e+02 5.820300e+02
+13 259     3.391998e+01 6.266998e+01
+14 259     1.186100e+02 -3.604500e+02
+0 260     6.696002e+01 6.401001e+01
+1 260     2.447100e+02 7.214001e+01
+2 260     1.921500e+02 1.032700e+02
+3 260     9.691998e+01 -2.107800e+02
+4 260     -2.364000e+02 -4.655800e+02
+5 260     7.118101e+02 -5.955400e+02
+6 260     1.645001e+01 1.114600e+02
+7 260     -2.900000e+01 1.881600e+02
+8 260     1.903500e+02 3.817001e+01
+9 260     4.746997e+01 1.775600e+02
+10 260     -2.273999e+01 2.222100e+02
+12 260     3.644000e+01 1.650400e+02
+13 260     4.234900e+02 -1.613100e+02
+15 260     4.735999e+01 2.336900e+02
+0 261     -3.140997e+01 1.115500e+02
+1 261     1.717600e+02 1.448600e+02
+2 261     4.096002e+01 9.821002e+01
+3 261     -5.034998e+01 -2.189100e+02
+4 261     -1.961500e+02 -3.845300e+02
+5 261     5.698300e+02 -5.475200e+02
+6 261     -1.392700e+02 1.227900e+02
+7 261     -1.429200e+02 2.145000e+02
+8 261     6.975000e+01 3.873999e+01
+10 261     -1.416700e+02 2.682200e+02
+12 261     -1.098500e+02 1.775400e+02
+13 261     3.180900e+02 -1.330000e+02
+15 261     -9.063000e+01 2.848200e+02
+0 262     3.697998e+01 1.866998e+01
+1 262     2.013199e+02 3.651001e+01
+2 262     1.805900e+02 5.353003e+01
+4 262     -2.642100e+02 -4.423800e+02
+6 262     2.010010e+00 5.165997e+01
+8 262     1.788700e+02 -3.549988e+00
+9 262     4.069000e+01 1.363100e+02
+12 262     1.703998e+01 1.058900e+02
+15 262     1.258002e+01 1.677300e+02
+0 263     2.417700e+02 5.731200e+02
+1 263     6.576500e+02 5.253700e+02
+2 263     -8.410999e+01 3.405500e+02
+4 263     4.381000e+01 -5.205200e+02
+5 263     6.425500e+02 -6.783002e+01
+6 263     -2.303500e+02 6.612000e+02
+8 263     1.091998e+01 2.655800e+02
+9 263     -2.257300e+02 3.674500e+02
+11 263     3.586300e+02 -1.913600e+02
+13 263     3.783000e+02 2.455500e+02
+14 263     5.433101e+02 -1.514300e+02
+0 264     2.159200e+02 5.201800e+02
+1 264     6.140900e+02 4.760000e+02
+3 264     -2.387400e+02 -4.929999e+01
+5 264     6.181500e+02 -1.240200e+02
+6 264     -2.494600e+02 5.982200e+02
+12 264     -8.278003e+01 5.678800e+02
+13 264     3.593700e+02 2.047700e+02
+14 264     5.210699e+02 -1.998400e+02
+0 265     1.049200e+02 4.273600e+02
+1 265     4.689000e+02 4.081600e+02
+2 265     -1.879400e+02 1.775400e+02
+7 265     -1.161300e+02 5.045300e+02
+8 265     -7.477002e+01 1.347000e+02
+9 265     -3.069500e+02 2.217800e+02
+13 265     2.741400e+02 1.135900e+02
+14 265     4.169301e+02 -3.086100e+02
+0 266     1.478199e+02 1.870300e+02
+1 266     3.776500e+02 1.678400e+02
+2 266     1.700700e+02 1.783900e+02
+8 266     1.827000e+02 1.084700e+02
+12 266     5.959003e+01 2.941700e+02
+13 266     4.501700e+02 -5.923999e+01
+14 266     6.443700e+02 -5.396899e+02
+15 266     1.460300e+02 4.141100e+02
+0 267     3.547998e+01 9.151999e+01
+1 267     2.247300e+02 1.076900e+02
+2 267     1.402700e+02 1.138600e+02
+4 267     -2.152400e+02 -4.391600e+02
+5 267     6.645000e+02 -5.671801e+02
+6 267     -3.645001e+01 1.286100e+02
+12 267     -1.356000e+01 1.829200e+02
+13 267     3.883900e+02 -1.414000e+02
+15 267     1.489990e+00 2.666000e+02
+0 268     1.698700e+02 4.897998e+01
+1 268     3.410400e+02 2.734003e+01
+3 268     1.984500e+02 -2.020800e+02
+4 268     -2.604800e+02 -5.484399e+02
+10 268     9.859998e+01 2.152800e+02
+15 268     1.894200e+02 2.274700e+02
+0 269     9.884003e+01 4.014001e+01
+1 269     2.674700e+02 3.944000e+01
+2 269     2.368800e+02 9.103003e+01
+3 269     1.411100e+02 -2.206300e+02
+4 269     -2.567100e+02 -4.916000e+02
+6 269     6.285999e+01 9.647998e+01
+7 269     8.090027e+00 1.704100e+02
+8 269     2.263600e+02 2.757999e+01
+10 269     1.671002e+01 1.976200e+02
+12 269     8.206000e+01 1.489000e+02
+13 269     4.565699e+02 -1.785800e+02
+15 269     9.353003e+01 2.053200e+02
+0 270     2.178000e+02 3.002930e-02
+1 270     3.743900e+02 -3.578998e+01
+2 270     3.622200e+02 7.148999e+01
+3 270     2.566200e+02 -2.365500e+02
+7 270     1.304400e+02 1.494900e+02
+8 270     3.309800e+02 1.116000e+01
+13 270     5.624100e+02 -2.036400e+02
+15 270     2.616801e+02 1.669200e+02
+0 271     7.344000e+01 2.595001e+01
+1 271     2.380200e+02 3.341998e+01
+4 271     -2.635600e+02 -4.718700e+02
+6 271     4.216998e+01 7.284003e+01
+8 271     2.104100e+02 1.148001e+01
+9 271     7.151001e+01 1.526300e+02
+10 271     -1.078998e+01 1.788900e+02
+13 271     4.370200e+02 -1.925100e+02
+15 271     6.092999e+01 1.828000e+02
+0 272     1.977002e+01 3.601001e+01
+1 272     1.909800e+02 5.821002e+01
+2 272     1.526200e+02 6.283002e+01
+4 272     -2.499200e+02 -4.284300e+02
+6 272     -2.714001e+01 6.441998e+01
+7 272     -7.188000e+01 1.520100e+02
+8 272     1.559900e+02 5.190002e+00
+9 272     1.645001e+01 1.431400e+02
+10 272     -7.431000e+01 1.847500e+02
+12 272     -1.059998e+01 1.190800e+02
+13 272     3.855300e+02 -1.895900e+02
+15 272     -1.287000e+01 1.888000e+02
+0 273     8.783002e+01 -8.509003e+01
+1 273     2.186300e+02 -7.996002e+01
+2 273     2.744500e+02 -3.715997e+01
+3 273     1.827400e+02 -3.424300e+02
+6 273     9.676001e+01 -4.582001e+01
+7 273     1.858002e+01 4.434998e+01
+8 273     2.527600e+02 -7.989001e+01
+9 273     1.221600e+02 6.509998e+01
+10 273     1.728003e+01 5.195001e+01
+13 273     4.625300e+02 -2.878400e+02
+15 273     9.527002e+01 3.387000e+01
+0 274     2.523600e+02 -1.251300e+02
+1 274     3.721400e+02 -1.718300e+02
+2 274     4.340000e+02 -5.158002e+01
+7 274     1.834200e+02 3.128998e+01
+9 274     2.523300e+02 5.822998e+01
+10 274     2.116801e+02 2.263000e+01
+15 274     3.262200e+02 9.500122e-01
+0 275     1.094000e+01 5.096800e+02
+1 275     3.913800e+02 5.166400e+02
+2 275     -2.821000e+02 2.717900e+02
+4 275     1.990997e+01 -3.671000e+02
+5 275     4.155000e+02 -1.389000e+02
+6 275     -4.689600e+02 5.365100e+02
+7 275     -2.175700e+02 5.793900e+02
+8 275     -1.527700e+02 2.075800e+02
+9 275     -3.920800e+02 3.007100e+02
+11 275     1.562200e+02 -2.550500e+02
+12 275     -2.945100e+02 5.220100e+02
+13 275     1.985200e+02 1.789700e+02
+14 275     3.239301e+02 -2.251200e+02
+0 276     5.522998e+01 4.937000e+02
+1 276     4.327600e+02 4.892400e+02
+2 276     -2.402700e+02 2.532400e+02
+3 276     -3.730500e+02 -7.915997e+01
+4 276     7.510010e+00 -3.930800e+02
+5 276     4.587000e+02 -1.556200e+02
+6 276     -4.165700e+02 5.245600e+02
+7 276     -1.725900e+02 5.671500e+02
+9 276     -3.550000e+02 2.860800e+02
+11 276     1.969100e+02 -2.672200e+02
+13 276     2.334600e+02 1.673100e+02
+14 276     3.669800e+02 -2.407100e+02
+0 277     -8.366998e+01 4.922300e+02
+1 277     2.885400e+02 5.224900e+02
+2 277     -3.693400e+02 2.516100e+02
+4 277     1.614001e+01 -3.096400e+02
+5 277     3.222200e+02 -1.585800e+02
+6 277     -5.727500e+02 4.949800e+02
+7 277     -3.080700e+02 5.516300e+02
+11 277     7.290997e+01 -2.723600e+02
+12 277     -3.941700e+02 4.883300e+02
+0 278     4.882000e+02 3.473600e+02
+1 278     8.363101e+02 2.270600e+02
+3 278     1.401100e+02 -9.559998e+01
+6 278     1.843000e+02 4.725500e+02
+7 278     2.817500e+02 4.880200e+02
+9 278     9.551001e+01 2.841400e+02
+11 278     6.044700e+02 -3.812000e+02
+12 278     2.944399e+02 4.649700e+02
+0 279     1.010800e+02 4.426600e+02
+1 279     4.688700e+02 4.248400e+02
+2 279     -1.934100e+02 1.951800e+02
+4 279     -2.631000e+01 -4.179900e+02
+5 279     5.033400e+02 -2.090000e+02
+6 279     -3.563900e+02 4.680400e+02
+7 279     -1.218900e+02 5.196600e+02
+8 279     -7.995001e+01 1.484400e+02
+12 279     -1.863600e+02 4.554300e+02
+13 279     2.706700e+02 1.265800e+02
+14 279     4.125300e+02 -2.923500e+02
+0 280     1.388700e+02 1.857700e+02
+1 280     3.689399e+02 1.690900e+02
+2 280     1.615100e+02 1.759800e+02
+3 280     5.517999e+01 -1.439200e+02
+7 280     8.820007e+00 3.100300e+02
+10 280     4.894000e+01 3.727000e+02
+13 280     4.410500e+02 -6.133002e+01
+14 280     6.328600e+02 -5.415000e+02
+15 280     1.333400e+02 4.109200e+02
+0 281     2.129399e+02 7.051001e+01
+1 281     3.936801e+02 3.546997e+01
+4 281     -2.513700e+02 -5.813000e+02
+6 281     1.644100e+02 1.581000e+02
+7 281     1.119200e+02 2.164900e+02
+10 281     1.460600e+02 2.450600e+02
+12 281     1.959500e+02 2.051900e+02
+13 281     5.449600e+02 -1.453300e+02
+15 281     2.463400e+02 2.631500e+02
+0 282     1.543800e+02 6.976001e+01
+1 282     3.325400e+02 5.253003e+01
+2 282     2.762900e+02 1.254100e+02
+3 282     1.739500e+02 -1.879000e+02
+5 282     8.142100e+02 -5.884100e+02
+6 282     1.088300e+02 1.434900e+02
+7 282     5.652002e+01 2.078000e+02
+8 282     2.613400e+02 5.648999e+01
+9 282     1.151000e+02 1.995500e+02
+10 282     7.823999e+01 2.381000e+02
+12 282     1.342400e+02 1.940700e+02
+13 282     4.983400e+02 -1.499700e+02
+0 283     -1.489700e+02 3.671800e+02
+1 283     1.916801e+02 4.137300e+02
+2 283     -4.242700e+02 9.923999e+01
+5 283     2.512200e+02 -2.933200e+02
+7 283     -3.549500e+02 4.145700e+02
+8 283     -2.677800e+02 6.939001e+01
+12 283     -4.420000e+02 3.280000e+02
+14 283     1.655601e+02 -3.810300e+02
+0 284     5.694700e+02 1.164700e+02
+1 284     8.336300e+02 -3.773999e+01
+2 284     4.747700e+02 7.984998e+01
+3 284     3.398400e+02 -2.328900e+02
+6 284     3.858500e+02 2.531600e+02
+7 284     4.050601e+02 2.859700e+02
+8 284     4.485000e+02 3.847000e+01
+9 284     2.686700e+02 1.650500e+02
+10 284     5.578600e+02 3.372300e+02
+12 284     4.722800e+02 2.626500e+02
+13 284     7.764000e+02 -9.970001e+01
+15 284     7.506200e+02 3.766000e+02
+0 285     -1.594300e+02 3.412100e+02
+1 285     1.742700e+02 3.907900e+02
+2 285     -4.335600e+02 6.600000e+01
+7 285     -3.631500e+02 3.857500e+02
+8 285     -2.760600e+02 4.295999e+01
+11 285     6.789978e+00 -4.074700e+02
+14 285     1.540800e+02 -4.097700e+02
+0 286     2.194399e+02 9.820007e+00
+1 286     3.796899e+02 -2.660999e+01
+2 286     3.582300e+02 8.053003e+01
+6 286     1.971600e+02 9.734998e+01
+7 286     1.299400e+02 1.588800e+02
+8 286     3.282000e+02 1.884000e+01
+13 286     5.613700e+02 -1.954300e+02
+0 287     2.269800e+02 3.979980e+00
+1 287     3.857500e+02 -3.477002e+01
+6 287     2.054000e+02 9.071997e+01
+7 287     1.383800e+02 1.543500e+02
+8 287     3.361800e+02 1.398999e+01
+12 287     2.339100e+02 1.369100e+02
+13 287     5.687100e+02 -2.002100e+02
+15 287     2.740900e+02 1.736700e+02
+0 288     2.409900e+02 -8.280029e+00
+1 288     3.966801e+02 -5.191998e+01
+2 288     3.834700e+02 6.285999e+01
+3 288     2.768800e+02 -2.444300e+02
+0 289     6.166998e+01 -1.004999e+01
+1 289     2.156700e+02 1.520020e+00
+2 289     2.210900e+02 3.401001e+01
+3 289     1.288900e+02 -2.751700e+02
+4 289     -2.874300e+02 -4.625500e+02
+6 289     4.314001e+01 2.897998e+01
+7 289     -1.996997e+01 1.147100e+02
+8 289     2.108900e+02 -2.035001e+01
+9 289     7.501001e+01 1.219900e+02
+10 289     -2.063000e+01 1.356200e+02
+12 289     5.637000e+01 8.215002e+01
+13 289     4.314800e+02 -2.244700e+02
+15 289     4.971002e+01 1.319600e+02
+0 290     7.127002e+01 -1.402002e+01
+1 290     2.236100e+02 -5.210022e+00
+2 290     2.328400e+02 3.358002e+01
+3 290     1.399900e+02 -2.769900e+02
+4 290     -2.920100e+02 -4.698400e+02
+9 290     8.484003e+01 1.217000e+02
+10 290     -9.299988e+00 1.327400e+02
+12 290     6.991998e+01 7.984003e+01
+13 290     4.403101e+02 -2.263500e+02
+15 290     6.306000e+01 1.285500e+02
+0 291     -1.437400e+02 9.188000e+01
+1 291     7.484003e+01 1.535500e+02
+2 291     -1.464800e+02 -1.478998e+01
+3 291     -2.391600e+02 -3.346200e+02
+4 291     -2.016400e+02 -2.890400e+02
+5 291     3.971100e+02 -5.811801e+02
+6 291     -3.277600e+02 3.748999e+01
+7 291     -2.677700e+02 1.657300e+02
+8 291     -7.640002e+01 -4.542001e+01
+10 291     -2.707300e+02 2.337000e+02
+12 291     -2.726200e+02 9.240002e+01
+13 291     1.897100e+02 -1.671500e+02
+15 291     -2.356300e+02 2.417000e+02
+0 292     3.199200e+02 5.215000e+02
+1 292     7.310200e+02 4.511900e+02
+3 292     -1.520900e+02 -4.469000e+01
+4 292     7.820007e+00 -5.671300e+02
+5 292     7.235300e+02 -1.176700e+02
+6 292     -1.375000e+02 6.152400e+02
+8 292     7.225000e+01 2.266600e+02
+12 292     2.546002e+01 5.790700e+02
+0 293     4.845000e+02 4.017500e+02
+1 293     8.500900e+02 2.865200e+02
+2 293     2.626300e+02 2.817200e+02
+3 293     1.219700e+02 -4.635999e+01
+6 293     1.654900e+02 5.334900e+02
+7 293     2.706200e+02 5.401300e+02
+8 293     2.833500e+02 2.106700e+02
+9 293     7.891998e+01 3.283200e+02
+0 294     1.423101e+02 5.101900e+02
+1 294     5.290400e+02 4.844900e+02
+2 294     -1.552800e+02 2.800200e+02
+3 294     -2.905900e+02 -5.292999e+01
+4 294     1.253003e+01 -4.519200e+02
+5 294     5.502200e+02 -1.352800e+02
+6 294     -3.161700e+02 5.657500e+02
+8 294     -4.903998e+01 2.158100e+02
+9 294     -2.829500e+02 3.122700e+02
+11 294     2.736200e+02 -2.494700e+02
+12 294     -1.508800e+02 5.440500e+02
+13 294     3.055601e+02 1.875200e+02
+14 294     4.550800e+02 -2.190800e+02
+0 295     2.506000e+01 5.105900e+02
+1 295     4.049100e+02 5.139700e+02
+2 295     -2.681600e+02 2.742000e+02
+3 295     -4.005900e+02 -5.906000e+01
+5 295     4.302500e+02 -1.367300e+02
+6 295     -4.524500e+02 5.427700e+02
+9 295     -3.802300e+02 3.037600e+02
+13 295     2.100200e+02 1.809200e+02
+14 295     3.378101e+02 -2.232600e+02
+0 296     8.390015e+00 5.011000e+02
+1 296     3.861899e+02 5.078600e+02
+4 296     1.452002e+01 -3.644300e+02
+6 296     -4.700600e+02 5.236000e+02
+7 296     -2.187500e+02 5.691900e+02
+8 296     -1.539000e+02 1.986000e+02
+9 296     -3.927700e+02 2.914000e+02
+11 296     1.544800e+02 -2.629900e+02
+12 296     -2.957300e+02 5.101100e+02
+0 297     2.356000e+01 4.950200e+02
+1 297     3.998700e+02 4.982400e+02
+2 297     -2.687000e+02 2.545300e+02
+3 297     -4.007800e+02 -7.721997e+01
+4 297     1.042999e+01 -3.739000e+02
+5 297     4.279301e+02 -1.543800e+02
+6 297     -4.513600e+02 5.199000e+02
+7 297     -2.034800e+02 5.651600e+02
+8 297     -1.416700e+02 1.942000e+02
+9 297     -3.795500e+02 2.865400e+02
+11 297     1.679200e+02 -2.674600e+02
+12 297     -2.778500e+02 5.057800e+02
+13 297     2.085900e+02 1.669700e+02
+14 297     3.361899e+02 -2.401300e+02
+0 298     2.341998e+01 4.865600e+02
+1 298     3.975500e+02 4.892700e+02
+2 298     -2.681200e+02 2.447300e+02
+6 298     -4.502100e+02 5.109200e+02
+7 298     -2.024500e+02 5.566500e+02
+8 298     -1.409900e+02 1.874700e+02
+9 298     -3.786500e+02 2.772400e+02
+11 298     1.685300e+02 -2.744900e+02
+14 298     3.359700e+02 -2.492300e+02
+0 299     -6.975000e+01 4.854000e+02
+1 299     3.008300e+02 5.118700e+02
+2 299     -3.557200e+02 2.423900e+02
+3 299     -4.850600e+02 -8.821997e+01
+4 299     1.121997e+01 -3.171000e+02
+5 299     3.354200e+02 -1.661000e+02
+6 299     -5.555600e+02 4.877400e+02
+7 299     -2.935600e+02 5.455100e+02
+8 299     -2.128600e+02 1.832300e+02
+11 299     8.512000e+01 -2.782100e+02
+12 299     -3.778000e+02 4.813500e+02
+13 299     1.352900e+02 1.537600e+02
+14 299     2.462300e+02 -2.530600e+02
+0 300     1.065000e+02 4.371900e+02
+1 300     4.730200e+02 4.177200e+02
+4 300     -3.032001e+01 -4.202400e+02
+6 300     -3.506500e+02 4.612100e+02
+7 300     -1.164000e+02 5.145300e+02
+8 300     -7.710999e+01 1.427600e+02
+13 300     2.755200e+02 1.224000e+02
+14 300     4.178700e+02 -2.980200e+02
+0 301     2.162000e+01 4.144300e+02
+1 301     3.780300e+02 4.168300e+02
+2 301     -2.639400e+02 1.605400e+02
+3 301     -3.982600e+02 -1.709800e+02
+5 301     4.230300e+02 -2.410300e+02
+6 301     -4.390500e+02 4.140200e+02
+7 301     -1.950600e+02 4.821900e+02
+8 301     -1.374900e+02 1.200700e+02
+12 301     -2.661200e+02 4.101700e+02
+13 301     2.078101e+02 9.763000e+01
+14 301     3.346300e+02 -3.253200e+02
+0 302     -1.309600e+02 3.790300e+02
+1 302     2.125500e+02 4.208000e+02
+2 302     -4.080000e+02 1.134700e+02
+5 302     2.691000e+02 -2.807800e+02
+7 302     -3.397500e+02 4.282400e+02
+8 302     -2.547200e+02 8.107999e+01
+13 302     8.701001e+01 5.920001e+01
+14 302     1.842400e+02 -3.675600e+02
+0 303     2.030029e+00 1.172500e+02
+1 303     2.040800e+02 1.421500e+02
+2 303     8.332001e+01 1.169800e+02
+3 303     -9.609985e+00 -2.001500e+02
+5 303     6.126500e+02 -5.407600e+02
+6 303     -9.573001e+01 1.411700e+02
+7 303     -1.082900e+02 2.265700e+02
+8 303     1.036900e+02 5.282999e+01
+12 303     -6.789001e+01 1.963800e+02
+15 303     -4.638000e+01 2.978800e+02
+0 304     2.316801e+02 -1.130005e+00
+1 304     3.891000e+02 -4.150000e+01
+2 304     3.716700e+02 7.027002e+01
+6 304     2.108000e+02 8.727002e+01
+7 304     1.433600e+02 1.500600e+02
+8 304     3.398200e+02 1.025000e+01
+10 304     1.749200e+02 1.635000e+02
+12 304     2.400699e+02 1.331500e+02
+0 305     6.727002e+01 1.339001e+01
+1 305     2.283600e+02 2.283002e+01
+2 305     2.173101e+02 5.772998e+01
+3 305     1.236500e+02 -2.523300e+02
+4 305     -2.706000e+02 -4.672100e+02
+6 305     4.026001e+01 5.959998e+01
+7 305     -1.877002e+01 1.385300e+02
+8 305     2.084500e+02 1.529999e+00
+9 305     7.071002e+01 1.413000e+02
+12 305     5.597998e+01 1.125400e+02
+15 305     5.417999e+01 1.648400e+02
+0 306     8.600000e+01 -6.080017e+00
+1 306     2.400300e+02 -1.890015e+00
+2 306     2.451600e+02 4.481000e+01
+3 306     1.505200e+02 -2.643400e+02
+4 306     -2.878800e+02 -4.817200e+02
+6 306     6.908002e+01 4.160999e+01
+7 306     3.419983e+00 1.227800e+02
+8 306     2.309400e+02 -1.166000e+01
+9 306     9.463000e+01 1.314000e+02
+10 306     6.469971e+00 1.424300e+02
+12 306     8.413000e+01 9.344000e+01
+13 306     4.521801e+02 -2.190300e+02
+15 306     8.175000e+01 1.406100e+02
+0 307     -1.712600e+02 4.999800e+02
+1 307     2.007500e+02 5.515500e+02
+2 307     -4.544100e+02 2.605100e+02
+3 307     -5.819300e+02 -7.006000e+01
+4 307     2.695001e+01 -2.603000e+02
+5 307     2.374500e+02 -1.502700e+02
+7 307     -3.964700e+02 5.506300e+02
+8 307     -2.938200e+02 1.956600e+02
+11 307     -5.159973e+00 -2.670400e+02
+12 307     -4.928500e+02 4.863000e+02
+13 307     5.535999e+01 1.612800e+02
+14 307     1.491500e+02 -2.400200e+02
+0 308     5.422200e+02 1.617100e+02
+1 308     8.197300e+02 1.792999e+01
+2 308     4.319200e+02 1.125400e+02
+6 308     3.398200e+02 2.938100e+02
+7 308     3.717200e+02 3.247200e+02
+8 308     4.138400e+02 6.657001e+01
+10 308     5.219800e+02 3.876400e+02
+12 308     4.296200e+02 3.017200e+02
+13 308     7.435300e+02 -6.346002e+01
+15 308     7.074800e+02 4.358400e+02
+0 309     -1.910999e+01 7.478003e+01
+1 309     1.695699e+02 1.060600e+02
+2 309     7.981000e+01 7.821997e+01
+5 309     5.992600e+02 -5.874100e+02
+6 309     -1.001200e+02 9.050000e+01
+7 309     -1.207300e+02 1.817300e+02
+8 309     9.840002e+01 1.998999e+01
+10 309     -1.235800e+02 2.262200e+02
+12 309     -7.746997e+01 1.459900e+02
+13 309     3.398900e+02 -1.614900e+02
+15 309     -6.973999e+01 2.363900e+02
+0 310     1.679200e+02 -1.114001e+01
+1 310     3.194399e+02 -3.152002e+01
+2 310     3.261700e+02 5.690997e+01
+3 310     2.247600e+02 -2.515500e+02
+7 310     8.563000e+01 1.313600e+02
+13 310     5.248700e+02 -2.161200e+02
+15 310     1.952100e+02 1.454200e+02
+0 311     1.453003e+01 -2.770001e+01
+1 311     1.666200e+02 -2.780029e+00
+2 311     1.730700e+02 -1.469971e+00
+3 311     8.445001e+01 -3.106100e+02
+4 311     -2.938700e+02 -4.236200e+02
+7 311     -6.537000e+01 8.806000e+01
+9 311     3.765997e+01 9.029999e+01
+10 311     -7.337000e+01 1.102500e+02
+12 311     3.109985e+00 4.485999e+01
+13 311     3.897600e+02 -2.445600e+02
+15 311     -1.107001e+01 1.009400e+02
+0 312     -5.080017e+00 -3.039001e+01
+1 312     1.482800e+02 -2.100220e-01
+2 312     1.488900e+02 -1.322998e+01
+3 312     5.948999e+01 -3.225700e+02
+6 312     -3.419000e+01 -2.021002e+01
+7 312     -8.590002e+01 8.148001e+01
+8 312     1.494900e+02 -5.820999e+01
+10 312     -9.666998e+01 1.055200e+02
+12 312     -2.270001e+01 3.397998e+01
+13 312     3.705601e+02 -2.489400e+02
+15 312     -3.771997e+01 9.537000e+01
+0 313     -1.665000e+02 4.893000e+02
+1 313     2.030900e+02 5.398800e+02
+2 313     -4.491800e+02 2.483700e+02
+3 313     -5.758700e+02 -8.247998e+01
+4 313     2.106000e+01 -2.618500e+02
+5 313     2.414200e+02 -1.608000e+02
+7 313     -3.903600e+02 5.403000e+02
+11 313     -6.699829e-01 -2.755900e+02
+13 313     5.945001e+01 1.526800e+02
+14 313     1.535699e+02 -2.506200e+02
+0 314     1.658600e+02 7.525000e+01
+1 314     3.462600e+02 5.467999e+01
+2 314     2.828500e+02 1.310400e+02
+3 314     1.800300e+02 -1.820800e+02
+6 314     1.164900e+02 1.532900e+02
+7 314     6.646997e+01 2.142700e+02
+10 314     9.146002e+01 2.457000e+02
+12 314     1.440100e+02 2.021300e+02
+13 314     5.061100e+02 -1.444300e+02
+15 314     1.808900e+02 2.629800e+02
+0 315     1.631000e+01 1.320001e+01
+1 315     1.814500e+02 3.546002e+01
+2 315     1.587600e+02 4.090997e+01
+4 315     -2.653400e+02 -4.263400e+02
+6 315     -2.196002e+01 3.845001e+01
+7 315     -6.892999e+01 1.283600e+02
+8 315     1.611800e+02 -1.335999e+01
+9 315     2.973999e+01 1.237800e+02
+10 315     -7.073999e+01 1.550200e+02
+12 315     -6.710022e+00 9.266998e+01
+13 315     3.862200e+02 -2.089500e+02
+0 316     5.439001e+01 -8.372998e+01
+1 316     1.880200e+02 -6.960999e+01
+2 316     2.385699e+02 -4.765002e+01
+4 316     -3.401300e+02 -4.546200e+02
+6 316     5.867999e+01 -5.760999e+01
+7 316     -1.469000e+01 3.934003e+01
+8 316     2.226400e+02 -8.789001e+01
+10 316     -2.065997e+01 4.898999e+01
+12 316     6.879999e+01 -6.710022e+00
+13 316     4.314900e+02 -2.895500e+02
+15 316     4.995001e+01 3.070001e+01
+0 317     1.692100e+02 2.459003e+01
+1 317     3.328900e+02 3.210022e+00
+3 317     2.082000e+02 -2.202100e+02
+4 317     -2.779500e+02 -5.489700e+02
+6 317     1.428800e+02 1.001000e+02
+7 317     8.046997e+01 1.660600e+02
+8 317     2.880800e+02 2.601999e+01
+10 317     1.003300e+02 1.864000e+02
+12 317     1.665900e+02 1.495500e+02
+13 317     5.195601e+02 -1.863900e+02
+15 317     1.916100e+02 1.939400e+02
+0 318     1.562700e+02 -2.485999e+01
+1 318     3.029600e+02 -4.112000e+01
+2 318     3.209200e+02 4.177002e+01
+3 318     2.210400e+02 -2.653500e+02
+4 318     -3.120800e+02 -5.394600e+02
+6 318     1.528000e+02 4.202002e+01
+7 318     7.615997e+01 1.161700e+02
+8 318     2.947000e+02 -1.535001e+01
+10 318     9.048999e+01 1.285700e+02
+12 318     1.713100e+02 9.083002e+01
+13 318     5.161100e+02 -2.292800e+02
+15 318     1.802700e+02 1.245000e+02
+0 319     1.997700e+02 2.460022e+00
+1 319     3.587000e+02 -2.772998e+01
+3 319     2.404800e+02 -2.373300e+02
+7 319     1.139700e+02 1.497000e+02
+8 319     3.175200e+02 1.129999e+01
+10 319     1.373000e+02 1.639400e+02
+13 319     5.487600e+02 -2.028500e+02
+15 319     2.378101e+02 1.680300e+02
+0 320     3.064800e+02 5.669800e+02
+1 320     7.299000e+02 5.033000e+02
+2 320     -2.882001e+01 3.351900e+02
+3 320     -1.717700e+02 3.599854e-01
+4 320     3.667999e+01 -5.645000e+02
+6 320     -1.618300e+02 6.670000e+02
+8 320     5.681000e+01 2.622200e+02
+9 320     -1.789200e+02 3.644500e+02
+11 320     4.176300e+02 -1.921100e+02
+13 320     4.294200e+02 2.453000e+02
+14 320     6.063199e+02 -1.532700e+02
+0 321     3.089900e+02 5.627800e+02
+1 321     7.313700e+02 4.981800e+02
+2 321     -2.604999e+01 3.311600e+02
+3 321     -1.692200e+02 -3.700012e+00
+4 321     3.390997e+01 -5.662100e+02
+6 321     -1.581600e+02 6.624500e+02
+9 321     -1.762900e+02 3.607700e+02
+11 321     4.197100e+02 -1.957200e+02
+13 321     4.314800e+02 2.421500e+02
+14 321     6.089700e+02 -1.570600e+02
+0 322     2.194100e+02 5.528200e+02
+1 322     6.260000e+02 5.093400e+02
+4 322     3.283002e+01 -5.037700e+02
+5 322     6.208199e+02 -8.903003e+01
+6 322     -2.506700e+02 6.321200e+02
+9 322     -2.393900e+02 3.483700e+02
+11 322     3.400000e+02 -2.090800e+02
+12 322     -8.363000e+01 5.990000e+02
+13 322     3.611200e+02 2.273000e+02
+14 322     5.229700e+02 -1.725100e+02
+0 323     2.053300e+02 5.657200e+02
+1 323     6.147700e+02 5.261700e+02
+2 323     -1.142300e+02 3.347100e+02
+4 323     4.170001e+01 -4.954100e+02
+5 323     6.067600e+02 -7.585999e+01
+6 323     -2.676400e+02 6.466200e+02
+8 323     -1.427002e+01 2.606100e+02
+9 323     -2.513500e+02 3.609000e+02
+11 323     3.268700e+02 -1.984600e+02
+12 323     -1.000000e+02 6.125300e+02
+13 323     3.500601e+02 2.378800e+02
+14 323     5.087800e+02 -1.597800e+02
+0 324     2.341400e+02 5.536200e+02
+1 324     6.425300e+02 5.067700e+02
+2 324     -8.877002e+01 3.205000e+02
+5 324     6.354399e+02 -8.708002e+01
+6 324     -2.352000e+02 6.368400e+02
+8 324     7.349976e+00 2.505200e+02
+11 324     3.530699e+02 -2.076500e+02
+12 324     -6.846997e+01 6.022400e+02
+0 325     6.463000e+01 5.706700e+02
+1 325     4.636300e+02 5.661600e+02
+2 325     -2.379100e+02 3.391100e+02
+4 325     5.207001e+01 -4.052100e+02
+5 325     4.694301e+02 -7.458002e+01
+6 325     -4.203500e+02 6.257400e+02
+8 325     -1.164400e+02 2.622000e+02
+9 325     -3.572000e+02 3.617200e+02
+11 325     2.014600e+02 -2.012000e+02
+12 325     -2.476400e+02 6.000400e+02
+14 325     3.746500e+02 -1.615100e+02
+0 326     8.132001e+01 5.738300e+02
+1 326     4.825900e+02 5.654000e+02
+2 326     -2.237000e+02 3.424300e+02
+3 326     -3.556800e+02 9.080017e+00
+4 326     5.288000e+01 -4.157300e+02
+5 326     4.855100e+02 -7.120001e+01
+6 326     -4.027400e+02 6.327200e+02
+8 326     -1.047400e+02 2.648700e+02
+9 326     -3.450200e+02 3.650500e+02
+11 326     2.157800e+02 -1.980500e+02
+12 326     -2.305400e+02 6.056300e+02
+13 326     2.530000e+02 2.365000e+02
+14 326     3.904000e+02 -1.576800e+02
+0 327     -1.433300e+02 5.387300e+02
+1 327     2.385400e+02 5.834100e+02
+2 327     -4.293700e+02 3.046900e+02
+3 327     -5.547100e+02 -2.510999e+01
+4 327     4.623999e+01 -2.794300e+02
+5 327     2.671200e+02 -1.104000e+02
+8 327     -2.733400e+02 2.312400e+02
+11 327     1.963000e+01 -2.341300e+02
+12 327     -4.682900e+02 5.355800e+02
+14 327     1.774301e+02 -2.000600e+02
+0 328     2.341400e+02 5.536200e+02
+1 328     6.425300e+02 5.067700e+02
+2 328     -8.877002e+01 3.205000e+02
+3 328     -2.281400e+02 -1.382001e+01
+4 328     3.290997e+01 -5.138600e+02
+5 328     6.354399e+02 -8.708002e+01
+6 328     -2.352000e+02 6.368400e+02
+8 328     7.349976e+00 2.505200e+02
+9 328     -2.288200e+02 3.498300e+02
+11 328     3.530699e+02 -2.076500e+02
+12 328     -6.846997e+01 6.022400e+02
+14 328     5.370000e+02 -1.707700e+02
+0 329     5.442500e+02 2.191100e+02
+1 329     8.395800e+02 7.838000e+01
+2 329     4.213101e+02 1.741100e+02
+3 329     2.842500e+02 -1.441000e+02
+7 329     3.667200e+02 3.815200e+02
+8 329     4.059500e+02 1.175900e+02
+9 329     2.211100e+02 2.429600e+02
+10 329     5.200699e+02 4.553600e+02
+11 329     6.768000e+02 -5.052100e+02
+13 329     7.402500e+02 -1.283002e+01
+15 329     7.037800e+02 5.173700e+02
+0 330     -2.756200e+02 4.454600e+02
+1 330     8.366998e+01 5.225300e+02
+2 330     -5.568500e+02 1.944100e+02
+8 330     -3.772300e+02 1.414800e+02
+0 331     -3.790700e+02 3.525100e+02
+1 331     -3.926001e+01 4.571100e+02
+2 331     -6.636800e+02 7.556000e+01
+5 331     1.821002e+01 -3.061700e+02
+7 331     -5.878700e+02 3.714900e+02
+8 331     -4.632500e+02 4.650000e+01
+11 331     -1.913800e+02 -3.960300e+02
+12 331     -7.084300e+02 2.708200e+02
+13 331     -1.124300e+02 2.551001e+01
+14 331     -6.352002e+01 -3.985600e+02
+15 331     -5.904500e+02 5.702300e+02
+0 332     -3.092900e+02 3.920100e+02
+1 332     3.800000e+01 4.781300e+02
+2 332     -5.895700e+02 1.274100e+02
+4 332     -2.388000e+01 -1.737700e+02
+5 332     9.226001e+01 -2.647400e+02
+7 332     -5.204800e+02 4.210400e+02
+12 332     -6.316700e+02 3.316300e+02
+13 332     -5.397998e+01 6.201001e+01
+14 332     1.045001e+01 -3.562800e+02
+0 333     -5.341300e+02 3.304900e+02
+1 333     -1.913800e+02 4.729700e+02
+4 333     -3.803998e+01 -4.675000e+01
+5 333     -1.401800e+02 -3.261100e+02
+10 333     -7.756700e+02 4.853000e+02
+11 333     -3.292000e+02 -4.124800e+02
+13 333     -2.391300e+02 2.500000e-01
+14 333     -2.211500e+02 -4.223300e+02
+15 333     -8.053500e+02 5.193700e+02
+0 334     -2.931100e+02 3.838400e+02
+1 334     5.190997e+01 4.669100e+02
+2 334     -5.725800e+02 1.177500e+02
+4 334     -2.948999e+01 -1.809200e+02
+5 334     1.076100e+02 -2.738900e+02
+7 334     -5.041000e+02 4.148000e+02
+8 334     -3.897800e+02 8.057999e+01
+10 334     -4.848500e+02 5.701100e+02
+12 334     -6.122600e+02 3.245500e+02
+14 334     2.464001e+01 -3.637200e+02
+0 335     -3.465500e+02 3.961100e+02
+1 335     2.599976e+00 4.912700e+02
+2 335     -6.290400e+02 1.320600e+02
+4 335     -1.812000e+01 -1.532300e+02
+5 335     5.559003e+01 -2.596100e+02
+7 335     -5.604900e+02 4.214800e+02
+8 335     -4.354800e+02 9.188000e+01
+10 335     -5.514000e+02 5.814400e+02
+11 335     -1.607600e+02 -3.583400e+02
+12 335     -6.767400e+02 3.311900e+02
+13 335     -8.526001e+01 6.444000e+01
+14 335     -2.738000e+01 -3.514400e+02
+0 336     -5.365800e+02 4.463500e+02
+1 336     -1.676700e+02 5.833900e+02
+5 336     -1.239700e+02 -2.021500e+02
+7 336     -7.691900e+02 4.545100e+02
+11 336     -3.215200e+02 -3.122800e+02
+14 336     -2.066400e+02 -2.978700e+02
+0 337     -4.297100e+02 4.486500e+02
+1 337     -6.595001e+01 5.618800e+02
+2 337     -7.196100e+02 1.992500e+02
+5 337     -1.971002e+01 -2.018700e+02
+8 337     -5.094000e+02 1.421500e+02
+12 337     -7.860800e+02 3.850300e+02
+14 337     -1.031900e+02 -2.957700e+02
+0 338     -4.169300e+02 4.488500e+02
+1 338     -5.362000e+01 5.591600e+02
+2 338     -7.057700e+02 1.993400e+02
+5 338     -6.950012e+00 -2.013300e+02
+12 338     -7.706900e+02 3.871500e+02
+14 338     -9.071997e+01 -2.950100e+02
+0 339     -2.633400e+02 4.381700e+02
+1 339     9.389001e+01 5.122700e+02
+7 339     -4.810400e+02 4.756600e+02
+0 340     -5.653700e+02 3.420700e+02
+1 340     -2.181600e+02 4.915900e+02
+5 340     -1.695800e+02 -3.117500e+02
+7 340     -7.846400e+02 3.380800e+02
+10 340     -8.174900e+02 4.971000e+02
+13 340     -2.643100e+02 9.669983e+00
+14 340     -2.510800e+02 -4.088900e+02
+15 340     -8.514600e+02 5.314300e+02
+0 341     -5.227900e+02 2.891500e+02
+1 341     -1.903200e+02 4.318900e+02
+5 341     -1.354100e+02 -3.717000e+02
+7 341     -7.300600e+02 2.856600e+02
+8 341     -5.946300e+02 -2.401999e+01
+10 341     -7.539200e+02 4.344600e+02
+11 341     -3.232300e+02 -4.490200e+02
+14 341     -2.162900e+02 -4.685400e+02
+15 341     -7.805900e+02 4.620600e+02
+0 342     -2.669400e+02 4.232500e+02
+1 342     8.663000e+01 4.985100e+02
+2 342     -5.465500e+02 1.673700e+02
+5 342     1.376600e+02 -2.314300e+02
+7 342     -4.827600e+02 4.593800e+02
+8 342     -3.686100e+02 1.202700e+02
+11 342     -8.972998e+01 -3.344100e+02
+12 342     -5.884400e+02 3.776100e+02
+14 342     5.295001e+01 -3.215900e+02
+0 343     -2.886900e+02 4.420400e+02
+1 343     6.996997e+01 5.226300e+02
+2 343     -5.697800e+02 1.905900e+02
+5 343     1.177300e+02 -2.111500e+02
+7 343     -5.074000e+02 4.772100e+02
+8 343     -3.880400e+02 1.379300e+02
+11 343     -1.082200e+02 -3.178300e+02
+12 343     -6.170700e+02 3.972900e+02
+13 343     -3.785999e+01 1.069800e+02
+14 343     3.303998e+01 -3.018800e+02
+0 344     -4.695800e+02 3.515900e+02
+1 344     -1.266900e+02 4.773900e+02
+7 344     -6.817000e+02 3.596400e+02
+0 345     -4.340500e+02 3.965300e+02
+1 345     -8.194000e+01 5.126900e+02
+4 345     -1.046997e+01 -1.069000e+02
+5 345     -3.094000e+01 -2.570500e+02
+7 345     -6.518200e+02 4.121600e+02
+8 345     -5.129400e+02 8.956000e+01
+10 345     -6.601300e+02 5.747600e+02
+11 345     -2.373800e+02 -3.564000e+02
+12 345     -7.826100e+02 3.183900e+02
+13 345     -1.551900e+02 6.187000e+01
+14 345     -1.130700e+02 -3.505900e+02
+0 346     -5.578100e+02 3.826000e+02
+1 346     -2.013700e+02 5.276900e+02
+4 346     -8.469971e+00 -4.221997e+01
+5 346     -1.523300e+02 -2.693300e+02
+11 346     -3.439200e+02 -3.663800e+02
+13 346     -2.545500e+02 4.509998e+01
+0 347     -3.046500e+02 3.981000e+02
+1 347     4.395001e+01 4.834000e+02
+2 347     -5.849000e+02 1.346300e+02
+4 347     -2.071002e+01 -1.764100e+02
+5 347     9.758002e+01 -2.584100e+02
+7 347     -5.174300e+02 4.282000e+02
+8 347     -3.999900e+02 9.420999e+01
+10 347     -5.008800e+02 5.866100e+02
+11 347     -1.235300e+02 -3.566900e+02
+12 347     -6.282700e+02 3.397800e+02
+13 347     -5.140997e+01 6.796002e+01
+14 347     1.428003e+01 -3.491000e+02
+0 348     -3.837400e+02 3.828800e+02
+1 348     -3.776001e+01 4.876500e+02
+5 348     1.923999e+01 -2.726300e+02
+7 348     -5.967600e+02 4.037500e+02
+10 348     -5.957600e+02 5.618800e+02
+11 348     -1.945000e+02 -3.692400e+02
+14 348     -6.346002e+01 -3.652700e+02
+0 349     -3.095300e+02 3.594800e+02
+1 349     3.001001e+01 4.466300e+02
+2 349     -5.897300e+02 8.600000e+01
+4 349     -4.169000e+01 -1.689400e+02
+5 349     8.785999e+01 -3.003000e+02
+7 349     -5.173000e+02 3.871700e+02
+10 349     -5.016100e+02 5.393000e+02
+11 349     -1.293700e+02 -3.908200e+02
+12 349     -6.282600e+02 2.904400e+02
+13 349     -5.657001e+01 3.420001e+01
+0 350     -4.067900e+02 4.235300e+02
+1 350     -4.909998e+01 5.322000e+02
+2 350     -6.931800e+02 1.677500e+02
+5 350     -9.997559e-02 -2.290000e+02
+7 350     -6.265400e+02 4.443300e+02
+8 350     -4.880700e+02 1.177900e+02
+10 350     -6.301100e+02 6.106800e+02
+11 350     -2.120000e+02 -3.332000e+02
+12 350     -7.529800e+02 3.571200e+02
+14 350     -8.295001e+01 -3.216600e+02
+0 351     -3.573200e+02 4.336400e+02
+1 351     7.199707e-01 5.306700e+02
+2 351     -6.424500e+02 1.799200e+02
+4 351     3.799988e+00 -1.515600e+02
+5 351     4.957001e+01 -2.189600e+02
+7 351     -5.772400e+02 4.606100e+02
+8 351     -4.460000e+02 1.292900e+02
+11 351     -1.684300e+02 -3.250500e+02
+12 351     -6.968000e+02 3.773800e+02
+14 351     -3.450000e+01 -3.110700e+02
+0 352     4.651200e+02 3.125500e+02
+1 352     8.009301e+02 1.959600e+02
+6 352     1.626900e+02 4.250500e+02
+7 352     2.633000e+02 4.495900e+02
+10 352     4.200900e+02 5.590200e+02
+11 352     5.889100e+02 -4.151100e+02
+12 352     2.756801e+02 4.195600e+02
+13 352     6.289000e+02 5.178998e+01
+14 352     8.680900e+02 -4.013400e+02
+0 353     -2.005400e+02 3.809300e+02
+1 353     1.427800e+02 4.405800e+02
+7 353     -4.102800e+02 4.227100e+02
+14 353     1.148500e+02 -3.662800e+02
+0 354     -2.126300e+02 3.498200e+02
+1 354     1.233800e+02 4.129800e+02
+2 354     -4.879400e+02 7.590002e+01
+5 354     1.847700e+02 -3.120700e+02
+7 354     -4.175700e+02 3.885400e+02
+10 354     -3.827200e+02 5.359100e+02
+11 354     -4.203998e+01 -3.998700e+02
+12 354     -5.133200e+02 2.950000e+02
+14 354     1.017800e+02 -4.007800e+02
+15 354     -3.572500e+02 5.880500e+02
+0 355     -1.818100e+02 3.305100e+02
+1 355     1.496300e+02 3.858700e+02
+5 355     2.138300e+02 -3.338600e+02
+7 355     -3.842000e+02 3.717300e+02
+14 355     1.311900e+02 -4.221000e+02
+15 355     -3.114200e+02 5.648000e+02
+0 356     4.688300e+02 2.972100e+02
+1 356     8.000500e+02 1.788700e+02
+6 356     1.717100e+02 4.079800e+02
+7 356     2.691700e+02 4.353200e+02
+10 356     4.253900e+02 5.411600e+02
+11 356     5.955200e+02 -4.298500e+02
+12 356     2.837200e+02 4.043800e+02
+0 357     -1.163100e+02 1.610000e+02
+1 357     1.540699e+02 2.060400e+02
+0 358     5.646500e+02 1.573300e+02
+1 358     8.417500e+02 6.669983e+00
+2 358     4.588300e+02 1.198800e+02
+6 358     3.696000e+02 2.981100e+02
+7 358     3.948800e+02 3.248200e+02
+8 358     4.363700e+02 7.166000e+01
+9 358     2.541100e+02 1.979000e+02
+10 358     5.489600e+02 3.847600e+02
+12 358     4.567500e+02 3.073700e+02
+13 358     7.669000e+02 -6.402002e+01
+15 358     7.395300e+02 4.333400e+02
+0 359     -1.346000e+02 1.004300e+02
+1 359     8.706000e+01 1.587100e+02
+0 360     1.808400e+02 7.787000e+01
+1 360     3.629399e+02 5.260999e+01
+10 360     1.082500e+02 2.504700e+02
+0 361     2.118600e+02 2.583002e+01
+1 361     3.770000e+02 -8.460022e+00
+7 361     1.198100e+02 1.735000e+02
+0 362     2.324500e+02 1.895001e+01
+1 362     3.965000e+02 -2.171002e+01
+10 362     1.738600e+02 1.870000e+02
+15 362     2.798500e+02 1.950100e+02
+0 363     2.394000e+02 8.409973e+00
+1 363     4.006200e+02 -3.447998e+01
+2 363     3.739399e+02 7.865002e+01
+6 363     2.147500e+02 9.991998e+01
+7 363     1.489100e+02 1.602600e+02
+10 363     1.829700e+02 1.755500e+02
+12 363     2.450200e+02 1.450800e+02
+15 363     2.905400e+02 1.814200e+02
+0 364     2.379200e+02 4.460022e+00
+1 364     3.975200e+02 -3.803003e+01
+6 364     2.153100e+02 9.621997e+01
+7 364     1.478700e+02 1.562500e+02
+12 364     2.444200e+02 1.410100e+02
+13 364     5.770400e+02 -1.990200e+02
+15 364     2.883199e+02 1.758900e+02
+0 365     2.871200e+02 5.590027e+00
+1 365     4.516100e+02 -5.294000e+01
+10 365     2.383600e+02 1.773100e+02
+12 365     2.906500e+02 1.485500e+02
+15 365     3.578600e+02 1.842300e+02
+0 366     2.328300e+02 -5.090027e+00
+1 366     3.888500e+02 -4.570001e+01
+7 366     1.453500e+02 1.460000e+02
+0 367     5.679100e+02 -1.303998e+01
+1 367     7.919800e+02 -1.736700e+02
+6 367     4.186600e+02 1.057900e+02
+7 367     4.209100e+02 1.600100e+02
+10 367     5.666700e+02 1.860900e+02
+12 367     5.032100e+02 1.170900e+02
+13 367     7.896600e+02 -2.163800e+02
+15 367     7.639100e+02 1.960700e+02
+0 368     2.408300e+02 -1.958002e+01
+1 368     3.929500e+02 -6.283002e+01
+7 368     1.550800e+02 1.332100e+02
+10 368     1.865700e+02 1.430100e+02
+15 368     2.961600e+02 1.434900e+02
+0 369     1.419200e+02 -3.238000e+01
+1 369     2.867800e+02 -4.452002e+01
+2 369     3.105601e+02 3.192999e+01
+3 369     2.125699e+02 -2.750400e+02
+6 369     1.385200e+02 3.065997e+01
+7 369     6.354999e+01 1.063500e+02
+8 369     2.847300e+02 -2.284000e+01
+10 369     7.444000e+01 1.181700e+02
+12 369     1.566100e+02 7.954999e+01
+15 369     1.615300e+02 1.124900e+02
+0 370     2.244700e+02 -3.670001e+01
+1 370     3.701600e+02 -7.479999e+01
+6 370     2.184900e+02 4.852002e+01
+7 370     1.429200e+02 1.144600e+02
+10 370     1.700800e+02 1.222400e+02
+15 370     2.755300e+02 1.178900e+02
+0 371     6.062800e+02 -4.853998e+01
+1 371     8.206000e+02 -2.234000e+02
+8 371     5.187900e+02 -8.857001e+01
+10 371     6.143900e+02 1.489900e+02
+12 371     5.577300e+02 9.309003e+01
+15 371     8.219100e+02 1.523100e+02
+0 372     5.569000e+01 -7.071002e+01
+1 372     1.919399e+02 -5.658002e+01
+8 372     2.209100e+02 -7.463000e+01
+13 372     4.322900e+02 -2.776700e+02
+0 373     6.385601e+02 -7.996002e+01
+1 373     8.443700e+02 -2.672600e+02
+2 373     6.068700e+02 -8.796997e+01
+3 373     4.790500e+02 -3.918600e+02
+7 373     4.997300e+02 1.099200e+02
+8 373     5.563600e+02 -1.026200e+02
+10 373     6.546700e+02 1.158800e+02
+12 373     6.037600e+02 7.117999e+01
+13 373     8.728101e+02 -2.674900e+02
+15 373     8.710000e+02 1.131900e+02
+0 374     8.717999e+01 -9.910999e+01
+1 374     2.140500e+02 -9.365002e+01
+4 374     -3.565200e+02 -4.805800e+02
+7 374     2.029999e+01 3.001001e+01
+12 374     1.121900e+02 -1.502002e+01
+13 374     4.636000e+02 -3.005800e+02
+15 374     9.634998e+01 1.439001e+01
+0 375     6.598800e+02 -8.965002e+01
+1 375     8.638199e+02 -2.850900e+02
+2 375     6.334200e+02 -8.566998e+01
+6 375     5.528199e+02 5.942999e+01
+7 375     5.219000e+02 1.050400e+02
+10 375     6.802000e+02 1.070400e+02
+12 375     6.312100e+02 6.896002e+01
+0 376     1.337900e+02 -1.142800e+02
+1 376     2.556600e+02 -1.231400e+02
+2 376     3.271400e+02 -6.101001e+01
+3 376     2.328900e+02 -3.635300e+02
+6 376     1.529900e+02 -6.546997e+01
+8 376     2.963300e+02 -9.945001e+01
+10 376     7.362000e+01 2.266998e+01
+15 376     1.622000e+02 5.999756e-02
+0 377     1.441899e+02 -2.469100e+02
+1 377     2.213199e+02 -2.556700e+02
+4 377     -4.844200e+02 -5.313000e+02
+7 377     1.041000e+02 -1.045600e+02
+10 377     9.938000e+01 -1.290300e+02
+15 377     1.927000e+02 -1.783000e+02
+0 378     1.492600e+02 -2.686000e+02
+1 378     2.226300e+02 -2.795200e+02
+0 379     3.262400e+02 -5.118500e+02
+1 379     3.308000e+02 -5.815900e+02
+10 379     3.359399e+02 -4.118900e+02
+0 380     -1.965800e+02 3.769900e+02
+1 380     1.458400e+02 4.357600e+02
+2 380     -4.733300e+02 1.096400e+02
+5 380     2.027000e+02 -2.828100e+02
+7 380     -4.052500e+02 4.186400e+02
+14 380     1.188000e+02 -3.713100e+02
+0 381     -1.965800e+02 3.769900e+02
+1 381     1.458400e+02 4.357600e+02
+2 381     -4.733300e+02 1.096400e+02
+5 381     2.027000e+02 -2.828100e+02
+7 381     -4.052500e+02 4.186400e+02
+14 381     1.188000e+02 -3.713100e+02
+0 382     4.910000e+02 3.664200e+02
+1 382     8.455200e+02 2.467400e+02
+2 382     2.787400e+02 2.502900e+02
+3 382     1.383000e+02 -7.588000e+01
+6 382     1.827400e+02 4.954100e+02
+7 382     2.821700e+02 5.069200e+02
+8 382     2.962500e+02 1.851800e+02
+9 382     9.396002e+01 3.020300e+02
+11 382     6.040000e+02 -3.624400e+02
+12 382     2.936500e+02 4.882000e+02
+13 382     6.498101e+02 1.011100e+02
+0 383     -1.997300e+02 3.489900e+02
+1 383     1.362700e+02 4.088000e+02
+5 383     1.974900e+02 -3.130400e+02
+7 383     -4.044700e+02 3.893600e+02
+8 383     -3.093400e+02 4.901001e+01
+10 383     -3.675100e+02 5.359200e+02
+14 383     1.144600e+02 -4.016800e+02
+0 384     4.610900e+02 3.292400e+02
+1 384     8.020900e+02 2.147000e+02
+6 384     1.534000e+02 4.416900e+02
+7 384     2.569900e+02 4.650300e+02
+8 384     2.747800e+02 1.447000e+02
+10 384     4.139000e+02 5.789200e+02
+11 384     5.828000e+02 -3.992700e+02
+12 384     2.672300e+02 4.352900e+02
+13 384     6.234100e+02 6.528998e+01
+14 384     8.598900e+02 -3.839500e+02
+0 385     -4.001400e+02 3.083900e+02
+1 385     -6.973999e+01 4.199100e+02
+7 385     -6.035100e+02 3.219000e+02
+8 385     -4.812800e+02 2.999878e-02
+11 385     -2.123500e+02 -4.348900e+02
+12 385     -7.261400e+02 2.109500e+02
+15 385     -6.118900e+02 5.057100e+02
+0 386     4.747100e+02 3.002200e+02
+1 386     8.067500e+02 1.807400e+02
+8 386     2.920500e+02 1.263000e+02
+0 387     1.025600e+02 1.854000e+02
+1 387     3.310500e+02 1.789900e+02
+15 387     8.379999e+01 4.051300e+02
+0 388     -1.405900e+02 1.010700e+02
+1 388     8.140002e+01 1.611000e+02
+2 388     -1.498900e+02 -7.479980e+00
+3 388     -2.425900e+02 -3.277500e+02
+5 388     3.975800e+02 -5.705800e+02
+6 388     -3.310800e+02 4.853003e+01
+7 388     -2.670200e+02 1.748200e+02
+10 388     -2.682900e+02 2.448300e+02
+12 388     -2.732300e+02 1.027100e+02
+13 388     1.903101e+02 -1.596000e+02
+15 388     -2.327500e+02 2.548800e+02
+0 389     5.276400e+02 1.122500e+02
+1 389     7.893000e+02 -2.978998e+01
+6 389     3.339300e+02 2.321200e+02
+8 389     4.105500e+02 1.876001e+01
+10 389     5.091500e+02 3.278700e+02
+12 389     4.234800e+02 2.420900e+02
+13 389     7.336600e+02 -1.091200e+02
+15 389     6.928000e+02 3.640600e+02
+0 390     -2.801500e+02 7.689001e+01
+1 390     -3.215002e+01 1.707600e+02
+0 391     7.131000e+01 8.439001e+01
+1 391     2.560800e+02 9.088000e+01
+2 391     1.857200e+02 1.202000e+02
+3 391     8.907001e+01 -1.945600e+02
+4 391     -2.234800e+02 -4.680200e+02
+5 391     7.113300e+02 -5.725300e+02
+6 391     1.098999e+01 1.340300e+02
+7 391     -2.912000e+01 2.084100e+02
+8 391     1.859000e+02 5.322000e+01
+10 391     -1.965997e+01 2.463600e+02
+12 391     3.347998e+01 1.875000e+02
+13 391     4.233199e+02 -1.444500e+02
+15 391     5.085999e+01 2.622300e+02
+0 392     5.550100e+02 8.695001e+01
+1 392     8.098000e+02 -6.457001e+01
+6 392     3.751600e+02 2.139700e+02
+7 392     3.947900e+02 2.545300e+02
+8 392     4.412700e+02 7.700012e+00
+12 392     4.622900e+02 2.236800e+02
+13 392     7.648900e+02 -1.273000e+02
+15 392     7.341899e+02 3.334300e+02
+0 393     5.449700e+02 8.473001e+01
+1 393     7.987700e+02 -6.409998e+01
+6 393     3.638600e+02 2.079100e+02
+7 393     3.851100e+02 2.503700e+02
+8 393     4.326600e+02 1.950012e+00
+10 393     5.316801e+02 2.976600e+02
+15 393     7.205000e+02 3.284900e+02
+0 394     5.759000e+02 8.564001e+01
+1 394     8.308900e+02 -7.270001e+01
+6 394     4.021600e+02 2.222100e+02
+9 394     2.827000e+02 1.422600e+02
+12 394     4.876500e+02 2.323400e+02
+0 395     1.180900e+02 6.912000e+01
+1 395     2.961300e+02 6.254999e+01
+4 395     -2.393300e+02 -5.063700e+02
+5 395     7.720601e+02 -5.888600e+02
+6 395     7.129999e+01 1.330000e+02
+7 395     2.154999e+01 2.016600e+02
+8 395     2.325100e+02 5.167001e+01
+9 395     8.815002e+01 1.937100e+02
+12 395     9.492999e+01 1.852200e+02
+13 395     4.683800e+02 -1.528000e+02
+15 395     1.164800e+02 2.477800e+02
+0 396     1.997800e+02 6.828003e+01
+1 396     3.792100e+02 3.723999e+01
+7 396     1.002700e+02 2.126000e+02
+10 396     1.315800e+02 2.415800e+02
+13 396     5.354800e+02 -1.479500e+02
+15 396     2.285400e+02 2.581300e+02
+0 397     2.140601e+02 6.432001e+01
+1 397     3.929000e+02 2.898999e+01
+2 397     3.282200e+02 1.257200e+02
+3 397     2.215699e+02 -1.863600e+02
+6 397     1.675700e+02 1.529900e+02
+7 397     1.146100e+02 2.107900e+02
+8 397     3.057000e+02 5.770001e+01
+10 397     1.482700e+02 2.377600e+02
+12 397     1.989301e+02 2.002800e+02
+13 397     5.470699e+02 -1.503700e+02
+15 397     2.490100e+02 2.546300e+02
+0 398     1.500244e-01 2.259003e+01
+1 398     1.686600e+02 5.064001e+01
+4 398     -2.571400e+02 -4.117300e+02
+6 398     -4.747998e+01 4.159003e+01
+8 398     1.398500e+02 -1.185001e+01
+10 398     -9.584003e+01 1.669300e+02
+15 398     -3.784998e+01 1.675900e+02
+0 399     2.468000e+02 1.119000e+01
+1 399     4.095100e+02 -3.407001e+01
+10 399     1.909500e+02 1.794200e+02
+13 399     5.820000e+02 -1.931000e+02
+15 399     3.009200e+02 1.862700e+02
+0 400     1.271500e+02 -7.719971e+00
+1 400     2.796300e+02 -1.547998e+01
+2 400     2.871400e+02 5.365002e+01
+3 400     1.888101e+02 -2.556800e+02
+4 400     -2.951100e+02 -5.156500e+02
+7 400     4.475000e+01 1.283900e+02
+10 400     5.444000e+01 1.450100e+02
+15 400     1.381300e+02 1.439900e+02
+0 401     5.588700e+02 -9.400024e+00
+1 401     7.837900e+02 -1.669400e+02
+7 401     4.113600e+02 1.618000e+02
+13 401     7.799500e+02 -2.143900e+02
+15 401     7.508300e+02 1.996800e+02
+0 402     3.372800e+02 -1.813000e+01
+1 402     5.023600e+02 -9.378998e+01
+10 402     2.991300e+02 1.550900e+02
+0 403     5.610601e+02 -1.765002e+01
+1 403     7.834301e+02 -1.762200e+02
+7 403     4.148500e+02 1.540000e+02
+10 403     5.590900e+02 1.800600e+02
+13 403     7.833900e+02 -2.217200e+02
+15 403     7.550300e+02 1.885800e+02
+0 404     2.069900e+02 -4.919000e+01
+1 404     3.477700e+02 -8.144000e+01
+2 404     3.726100e+02 2.254999e+01
+3 404     2.696801e+02 -2.825800e+02
+4 404     -3.385700e+02 -5.803500e+02
+6 404     2.072100e+02 3.038000e+01
+7 404     1.287500e+02 9.953000e+01
+8 404     3.378700e+02 -2.998001e+01
+13 404     5.602700e+02 -2.469600e+02
+15 404     2.529600e+02 9.845001e+01
+0 405     1.694399e+02 -5.629999e+01
+1 405     3.071200e+02 -7.666998e+01
+2 405     3.438400e+02 1.178003e+01
+3 405     2.444000e+02 -2.934000e+02
+6 405     1.737400e+02 1.240997e+01
+7 405     9.392999e+01 8.694000e+01
+8 405     3.127000e+02 -3.957001e+01
+10 405     1.082600e+02 9.334998e+01
+13 405     5.302600e+02 -2.555500e+02
+15 405     2.024600e+02 8.353000e+01
+0 406     1.122998e+01 -6.876001e+01
+1 406     1.512800e+02 -4.115997e+01
+3 406     9.463000e+01 -3.546500e+02
+4 406     -3.219600e+02 -4.185600e+02
+7 406     -6.257001e+01 4.615002e+01
+8 406     1.770400e+02 -8.715997e+01
+15 406     -1.054999e+01 4.541998e+01
+0 407     2.422700e+02 -7.672998e+01
+1 407     3.765400e+02 -1.201700e+02
+6 407     2.470100e+02 8.780029e+00
+7 407     1.655200e+02 7.698999e+01
+12 407     2.741899e+02 5.015997e+01
+15 407     3.055200e+02 6.550000e+01
+0 408     -5.030029e+00 -8.703003e+01
+1 408     1.317500e+02 -5.471002e+01
+7 408     -7.646997e+01 2.434003e+01
+10 408     -8.982001e+01 3.988000e+01
+15 408     -2.921002e+01 1.854999e+01
+0 409     2.586200e+02 -8.622998e+01
+1 409     3.918000e+02 -1.353600e+02
+3 409     3.171500e+02 -3.183400e+02
+6 409     2.629000e+02 1.109985e+00
+7 409     1.819399e+02 6.965002e+01
+10 409     2.150100e+02 6.840997e+01
+12 409     2.926700e+02 4.172998e+01
+13 409     6.044600e+02 -2.771500e+02
+15 409     3.295400e+02 5.471002e+01
+0 410     2.481899e+02 -8.792999e+01
+1 410     3.800400e+02 -1.337800e+02
+2 410     4.158300e+02 -1.757001e+01
+6 410     2.549500e+02 -3.450012e+00
+7 410     1.727700e+02 6.657001e+01
+8 410     3.743800e+02 -6.237000e+01
+10 410     2.027800e+02 6.514001e+01
+12 410     2.831000e+02 3.714001e+01
+13 410     5.967200e+02 -2.791100e+02
+15 410     3.154500e+02 5.134003e+01
+0 411     2.189900e+02 -9.837000e+01
+1 411     3.466000e+02 -1.348000e+02
+8 411     3.567100e+02 -7.451001e+01
+10 411     1.701300e+02 5.008002e+01
+12 411     2.563400e+02 1.898999e+01
+15 411     2.763500e+02 3.303003e+01
+0 412     4.278199e+02 -1.082700e+02
+1 412     5.681400e+02 -2.150300e+02
+7 412     3.393700e+02 7.059003e+01
+0 413     3.969700e+02 -1.637000e+02
+1 413     5.186400e+02 -2.613200e+02
+10 413     3.813000e+02 -6.010010e+00
+15 413     5.326400e+02 -3.428998e+01
+0 414     2.960400e+02 -2.422700e+02
+1 414     3.817500e+02 -3.036100e+02
+7 414     2.430500e+02 -7.734003e+01
+10 414     2.733000e+02 -1.064800e+02
+12 414     3.793300e+02 -1.294000e+02
+15 414     4.016000e+02 -1.526500e+02
+0 415     2.572000e+02 -2.577100e+02
+1 415     3.360800e+02 -3.051500e+02
+7 415     2.104301e+02 -9.814001e+01
+10 415     2.303600e+02 -1.286900e+02
+15 415     3.500900e+02 -1.784800e+02
+0 416     2.574800e+02 -2.610400e+02
+1 416     3.358800e+02 -3.085900e+02
+12 416     3.473400e+02 -1.589800e+02
+0 417     6.233800e+02 -2.664700e+02
+1 417     7.486200e+02 -4.518600e+02
+7 417     5.275500e+02 -6.054999e+01
+12 417     6.747000e+02 -1.105100e+02
+15 417     8.681801e+02 -1.453700e+02
+0 418     6.309700e+02 -3.364500e+02
+1 418     7.272100e+02 -5.261600e+02
+7 418     5.504800e+02 -1.220900e+02
+12 418     7.160500e+02 -1.751500e+02
+0 419     -1.681200e+02 -5.286200e+02
+1 419     -1.494200e+02 -4.227200e+02
+6 419     -3.721997e+01 -6.851300e+02
+7 419     -1.622200e+02 -4.542200e+02
+0 420     -1.720100e+02 -5.345300e+02
+1 420     -1.549000e+02 -4.269500e+02
+6 420     -3.839001e+01 -6.932000e+02
+7 420     -1.658200e+02 -4.606801e+02
+9 420     6.215002e+01 -4.610100e+02
+0 421     -7.948999e+01 -5.454500e+02
+1 421     -7.477002e+01 -4.681700e+02
+4 421     -6.968300e+02 -3.231800e+02
+7 421     -6.925000e+01 -4.514900e+02
+9 421     1.519900e+02 -4.324900e+02
+0 422     1.395900e+02 -5.392500e+02
+1 422     1.345700e+02 -5.387300e+02
+0 423     -8.203003e+01 -5.528900e+02
+1 423     -7.971997e+01 -4.739900e+02
+4 423     -7.027200e+02 -3.213900e+02
+7 423     -6.988000e+01 -4.587100e+02
+9 423     1.555100e+02 -4.370500e+02
+0 424     4.792600e+02 3.800900e+02
+1 424     8.376899e+02 2.642700e+02
+2 424     2.619399e+02 2.588700e+02
+3 424     1.218300e+02 -6.837000e+01
+7 424     2.687700e+02 5.183900e+02
+9 424     7.950000e+01 3.085800e+02
+11 424     5.906600e+02 -3.496700e+02
+12 424     2.766801e+02 4.987600e+02
+0 425     4.792600e+02 3.800900e+02
+1 425     8.376899e+02 2.642700e+02
+2 425     2.619399e+02 2.588700e+02
+3 425     1.218300e+02 -6.837000e+01
+8 425     2.827700e+02 1.925700e+02
+9 425     7.950000e+01 3.085800e+02
+11 425     5.906600e+02 -3.496700e+02
+12 425     2.766801e+02 4.987600e+02
+0 426     -2.814200e+02 3.579100e+02
+1 426     5.716998e+01 4.378300e+02
+4 426     -4.465002e+01 -1.845000e+02
+5 426     1.169900e+02 -3.031500e+02
+7 426     -4.880800e+02 3.882000e+02
+8 426     -3.786200e+02 5.554999e+01
+10 426     -4.668500e+02 5.391000e+02
+11 426     -1.035100e+02 -3.933900e+02
+13 426     -3.357001e+01 3.359998e+01
+14 426     3.444000e+01 -3.931500e+02
+0 427     5.180100e+02 3.551700e+02
+1 427     8.706600e+02 2.275800e+02
+3 427     1.722100e+02 -7.491998e+01
+6 427     2.212100e+02 4.917000e+02
+7 427     3.109800e+02 5.007000e+02
+8 427     3.229700e+02 1.852000e+02
+9 427     1.234000e+02 3.035100e+02
+11 427     6.311300e+02 -3.707900e+02
+0 428     4.733500e+02 3.347900e+02
+1 428     8.166600e+02 2.175500e+02
+2 428     2.659399e+02 2.104900e+02
+3 428     1.263900e+02 -1.142800e+02
+6 428     1.679500e+02 4.532100e+02
+7 428     2.687100e+02 4.727500e+02
+8 428     2.854300e+02 1.534300e+02
+9 428     8.413000e+01 2.675600e+02
+11 428     5.925300e+02 -3.921100e+02
+13 428     6.350000e+02 7.178998e+01
+14 428     8.744000e+02 -3.760500e+02
+0 429     4.733500e+02 3.347900e+02
+1 429     8.166600e+02 2.175500e+02
+2 429     2.659399e+02 2.104900e+02
+3 429     1.263900e+02 -1.142800e+02
+6 429     1.679500e+02 4.532100e+02
+7 429     2.687100e+02 4.727500e+02
+8 429     2.854300e+02 1.534300e+02
+9 429     8.413000e+01 2.675600e+02
+11 429     5.925300e+02 -3.921100e+02
+13 429     6.350000e+02 7.178998e+01
+14 429     8.744000e+02 -3.760500e+02
+0 430     -3.957400e+02 3.032900e+02
+1 430     -6.669000e+01 4.137700e+02
+4 430     -6.584003e+01 -1.164500e+02
+5 430     -5.049988e+00 -3.605700e+02
+7 430     -5.982100e+02 3.172600e+02
+8 430     -4.770200e+02 -4.700012e+00
+10 430     -5.983200e+02 4.627500e+02
+11 430     -2.087000e+02 -4.404200e+02
+12 430     -7.200200e+02 2.053400e+02
+13 430     -1.279700e+02 -1.825000e+01
+14 430     -8.590997e+01 -4.530900e+02
+15 430     -6.048000e+02 4.989300e+02
+0 431     2.489399e+02 2.751400e+02
+1 431     5.652400e+02 2.160500e+02
+0 432     8.095001e+01 2.646400e+02
+1 432     3.879399e+02 2.525400e+02
+11 432     2.280699e+02 -4.764200e+02
+0 433     2.328101e+02 2.296000e+02
+1 433     5.303800e+02 1.753400e+02
+11 433     3.749000e+02 -5.067300e+02
+0 434     5.442500e+02 2.191100e+02
+1 434     8.395800e+02 7.838000e+01
+11 434     6.768000e+02 -5.052100e+02
+0 435     -5.703003e+01 1.797000e+02
+1 435     2.186700e+02 2.077200e+02
+0 436     -1.236900e+02 1.571500e+02
+1 436     1.458700e+02 2.043300e+02
+5 436     3.201400e+02 -5.233600e+02
+7 436     -2.865500e+02 2.127600e+02
+13 436     1.346800e+02 -1.272300e+02
+0 437     5.932800e+02 1.561500e+02
+1 437     8.714800e+02 -2.419983e+00
+3 437     3.528000e+02 -1.792000e+02
+6 437     4.064900e+02 3.053700e+02
+9 437     2.800000e+02 2.117000e+02
+13 437     7.963000e+02 -6.135999e+01
+0 438     -1.011700e+02 1.023100e+02
+1 438     1.154300e+02 1.525100e+02
+4 438     -1.983000e+02 -3.214700e+02
+5 438     4.539600e+02 -5.665601e+02
+7 438     -2.235200e+02 1.855200e+02
+12 438     -2.180300e+02 1.226200e+02
+13 438     2.327100e+02 -1.535100e+02
+15 438     -1.808000e+02 2.618300e+02
+0 439     -2.606800e+02 6.635999e+01
+1 439     -1.788000e+01 1.558100e+02
+0 440     1.009900e+02 4.615002e+01
+1 440     2.713600e+02 4.508002e+01
+4 440     -2.526500e+02 -4.936000e+02
+5 440     7.580500e+02 -6.147100e+02
+6 440     6.375000e+01 1.033700e+02
+7 440     8.739990e+00 1.768400e+02
+8 440     2.268600e+02 3.223999e+01
+10 440     1.877002e+01 2.054700e+02
+12 440     8.334003e+01 1.557600e+02
+13 440     4.571200e+02 -1.729100e+02
+15 440     9.577002e+01 2.142000e+02
+0 441     5.588400e+02 -1.130005e+00
+1 441     7.863300e+02 -1.580900e+02
+6 441     4.039700e+02 1.157900e+02
+7 441     4.103101e+02 1.697100e+02
+10 441     5.554200e+02 1.989600e+02
+13 441     7.793700e+02 -2.071700e+02
+0 442     5.636100e+02 -1.400000e+01
+1 442     7.870900e+02 -1.731400e+02
+7 442     4.168101e+02 1.581500e+02
+10 442     5.613000e+02 1.852400e+02
+13 442     7.854900e+02 -2.179100e+02
+15 442     7.581500e+02 1.942500e+02
+0 443     2.107000e+02 -2.677002e+01
+1 443     3.587200e+02 -6.009998e+01
+2 443     3.669600e+02 4.639001e+01
+3 443     2.631801e+02 -2.601600e+02
+4 443     -3.221400e+02 -5.834500e+02
+6 443     2.024800e+02 5.659998e+01
+13 443     5.602500e+02 -2.270000e+02
+15 443     2.552000e+02 1.297300e+02
+0 444     3.321500e+02 -2.804999e+01
+1 444     4.925100e+02 -1.019000e+02
+10 444     2.939900e+02 1.438200e+02
+15 444     4.253600e+02 1.440100e+02
+0 445     5.853300e+02 -4.034998e+01
+1 445     8.013101e+02 -2.080300e+02
+7 445     4.418500e+02 1.371400e+02
+10 445     5.891801e+02 1.562100e+02
+13 445     8.118000e+02 -2.390400e+02
+15 445     7.916200e+02 1.605600e+02
+0 446     5.894000e+01 -7.514001e+01
+1 446     1.937800e+02 -6.164001e+01
+7 446     -1.198999e+01 4.928998e+01
+13 446     4.354600e+02 -2.808600e+02
+15 446     5.484003e+01 4.359003e+01
+0 447     6.084003e+01 -8.995001e+01
+1 447     1.915500e+02 -7.671002e+01
+2 447     2.469200e+02 -5.247998e+01
+3 447     1.571500e+02 -3.565600e+02
+6 447     6.741998e+01 -6.210999e+01
+7 447     -7.950012e+00 3.413000e+01
+8 447     2.293800e+02 -9.227002e+01
+9 447     1.002900e+02 5.173999e+01
+10 447     -1.329999e+01 4.242999e+01
+12 447     7.827002e+01 -1.165997e+01
+13 447     4.384301e+02 -2.948300e+02
+15 447     5.940002e+01 2.323999e+01
+0 448     -2.997800e+02 -1.247800e+02
+1 448     -1.229000e+02 -1.150000e+01
+6 448     -4.849900e+02 -3.105601e+02
+7 448     -3.985600e+02 -8.901001e+01
+13 448     4.829999e+01 -3.796200e+02
+0 449     -2.964100e+02 -1.297500e+02
+1 449     -1.213100e+02 -1.657001e+01
+0 450     -3.142600e+02 -1.516100e+02
+1 450     -1.456600e+02 -3.177002e+01
+8 450     -2.112500e+02 -3.353400e+02
+15 450     -4.303200e+02 -1.120900e+02
+0 451     -9.916998e+01 -5.071100e+02
+1 451     -7.831000e+01 -4.259500e+02
+4 451     -6.563100e+02 -3.065200e+02
+6 451     2.615997e+01 -6.306801e+02
+9 451     1.084000e+02 -4.134300e+02
+0 452     -1.916400e+02 3.504900e+02
+1 452     1.442300e+02 4.081100e+02
+5 452     2.057000e+02 -3.109900e+02
+7 452     -3.969100e+02 3.912100e+02
+8 452     -3.033500e+02 5.253000e+01
+12 452     -4.904400e+02 3.008100e+02
+13 452     3.788000e+01 3.231000e+01
+14 452     1.223000e+02 -3.994500e+02
+0 453     5.126700e+02 3.307700e+02
+1 453     8.569399e+02 2.028600e+02
+3 453     1.721200e+02 -1.002300e+02
+6 453     2.202200e+02 4.613400e+02
+7 453     3.085400e+02 4.761200e+02
+8 453     3.228100e+02 1.634500e+02
+9 453     1.231900e+02 2.795700e+02
+10 453     4.734000e+02 5.850400e+02
+12 453     3.277800e+02 4.557300e+02
+13 453     6.743101e+02 7.250000e+01
+0 454     5.010300e+02 2.699100e+02
+1 454     8.248500e+02 1.411900e+02
+6 454     2.212400e+02 3.882500e+02
+7 454     3.053800e+02 4.148200e+02
+8 454     3.241600e+02 1.102900e+02
+10 454     4.661100e+02 5.124500e+02
+12 454     3.291300e+02 3.859100e+02
+13 454     6.693800e+02 1.965002e+01
+15 454     6.407000e+02 5.810500e+02
+0 455     2.097100e+02 2.391700e+02
+1 455     5.102800e+02 1.911900e+02
+10 455     1.278100e+02 4.448500e+02
+0 456     5.849600e+02 1.399100e+02
+1 456     8.575800e+02 -1.781000e+01
+2 456     4.862300e+02 1.123900e+02
+3 456     3.498300e+02 -2.011300e+02
+6 456     3.995200e+02 2.855800e+02
+7 456     4.171100e+02 3.122100e+02
+8 456     4.584399e+02 6.438000e+01
+9 456     2.773800e+02 1.927600e+02
+10 456     5.735699e+02 3.664100e+02
+12 456     4.848500e+02 2.948400e+02
+15 456     7.698000e+02 4.121400e+02
+0 457     5.608000e+02 1.233600e+02
+1 457     8.270000e+02 -2.825000e+01
+2 457     4.633700e+02 8.251001e+01
+3 457     3.286700e+02 -2.308800e+02
+6 457     3.735800e+02 2.566400e+02
+7 457     3.954900e+02 2.909800e+02
+8 457     4.394399e+02 4.067999e+01
+9 457     2.586200e+02 1.665300e+02
+10 457     5.471300e+02 3.446300e+02
+12 457     4.605000e+02 2.662500e+02
+13 457     7.666300e+02 -9.508002e+01
+15 457     7.380400e+02 3.847400e+02
+0 458     5.260100e+02 1.044000e+02
+1 458     7.854200e+02 -3.765997e+01
+6 458     3.314500e+02 2.241000e+02
+7 458     3.629700e+02 2.660300e+02
+10 458     5.077100e+02 3.183400e+02
+12 458     4.216200e+02 2.334300e+02
+15 458     6.916700e+02 3.528900e+02
+0 459     2.668300e+02 1.025000e+02
+1 459     4.641899e+02 5.044000e+01
+6 459     1.915800e+02 2.022300e+02
+7 459     1.541600e+02 2.526700e+02
+10 459     2.059500e+02 2.880700e+02
+12 459     2.332000e+02 2.446400e+02
+13 459     5.772900e+02 -1.168500e+02
+15 459     3.186500e+02 3.147000e+02
+0 460     -2.902500e+02 6.751001e+01
+1 460     -4.489001e+01 1.648400e+02
+2 460     -4.304300e+02 -1.885100e+02
+4 460     -2.075200e+02 -1.697700e+02
+7 460     -4.352100e+02 1.006600e+02
+8 460     -2.909300e+02 -1.709300e+02
+13 460     9.000000e+00 -2.132000e+02
+15 460     -4.246200e+02 1.888700e+02
+0 461     -2.667400e+02 4.997998e+01
+1 461     -2.937000e+01 1.420300e+02
+2 461     -3.893800e+02 -1.972400e+02
+4 461     -2.209300e+02 -1.843400e+02
+7 461     -4.065600e+02 8.719000e+01
+13 461     3.467999e+01 -2.265600e+02
+15 461     -3.895300e+02 1.680100e+02
+0 462     5.466400e+02 4.350000e+01
+1 462     7.876600e+02 -1.077000e+02
+6 462     3.760300e+02 1.616400e+02
+7 462     3.919600e+02 2.106300e+02
+10 462     5.368600e+02 2.497700e+02
+12 462     4.629301e+02 1.725000e+02
+13 462     7.610300e+02 -1.677500e+02
+15 462     7.274200e+02 2.714000e+02
+0 463     6.003300e+02 4.421002e+01
+1 463     8.433600e+02 -1.237000e+02
+7 463     4.453000e+02 2.219700e+02
+8 463     4.930300e+02 -1.048001e+01
+10 463     6.013800e+02 2.565100e+02
+15 463     8.040900e+02 2.809900e+02
+0 464     6.378000e+02 -1.397998e+01
+1 464     8.644600e+02 -1.974000e+02
+0 465     6.451200e+02 -2.159003e+01
+1 465     8.698199e+02 -2.077600e+02
+2 465     5.976200e+02 -2.247998e+01
+3 465     4.658600e+02 -3.279000e+02
+6 465     5.165500e+02 1.297000e+02
+7 465     4.983300e+02 1.672900e+02
+8 465     5.489000e+02 -4.882001e+01
+10 465     6.571899e+02 1.839700e+02
+12 465     5.968101e+02 1.397600e+02
+13 465     8.716801e+02 -2.125700e+02
+0 466     6.316200e+02 -2.251001e+01
+1 466     8.551200e+02 -2.042100e+02
+7 466     4.848199e+02 1.642600e+02
+8 466     5.358101e+02 -5.454001e+01
+10 466     6.416801e+02 1.819100e+02
+12 466     5.798900e+02 1.339800e+02
+15 466     8.534399e+02 1.926200e+02
+0 467     2.149100e+02 -2.978003e+01
+1 467     3.622200e+02 -6.452002e+01
+7 467     1.337300e+02 1.193000e+02
+10 467     1.586100e+02 1.289000e+02
+15 467     2.619500e+02 1.256800e+02
+0 468     6.629700e+02 -1.130700e+02
+1 468     8.595699e+02 -3.105800e+02
+7 468     5.279600e+02 8.309000e+01
+0 469     1.465400e+02 -2.935000e+02
+1 469     2.156200e+02 -3.031600e+02
+4 469     -5.255900e+02 -5.258300e+02
+7 469     1.093900e+02 -1.536800e+02
+10 469     1.066400e+02 -1.816100e+02
+15 469     2.038700e+02 -2.411400e+02
+0 470     -7.092999e+01 -5.674000e+02
+1 470     -7.472998e+01 -4.907300e+02
+7 470     -5.523999e+01 -4.705100e+02
+9 470     1.755200e+02 -4.427900e+02
+0 471     -3.925800e+02 3.104100e+02
+1 471     -6.190002e+01 4.198800e+02
+4 471     -6.173999e+01 -1.191400e+02
+5 471     -4.600220e-01 -3.520000e+02
+7 471     -5.955700e+02 3.252800e+02
+8 471     -4.741300e+02 2.850006e+00
+10 471     -5.951100e+02 4.722900e+02
+12 471     -7.170800e+02 2.154400e+02
+15 471     -6.013000e+02 5.098800e+02
+0 472     4.840000e+02 3.215500e+02
+1 472     8.234900e+02 2.007000e+02
+2 472     2.813400e+02 2.023400e+02
+6 472     1.855200e+02 4.414400e+02
+7 472     2.810000e+02 4.619300e+02
+8 472     2.978900e+02 1.464700e+02
+9 472     9.762000e+01 2.609700e+02
+10 472     4.416000e+02 5.721100e+02
+11 472     6.053800e+02 -4.053000e+02
+12 472     2.960200e+02 4.359800e+02
+13 472     6.467100e+02 6.178003e+01
+0 473     -5.596997e+01 2.940400e+02
+1 473     2.620200e+02 3.177900e+02
+0 474     4.701100e+02 2.927400e+02
+1 474     7.998000e+02 1.736000e+02
+6 474     1.747600e+02 4.027400e+02
+7 474     2.709800e+02 4.311800e+02
+10 474     4.273900e+02 5.356700e+02
+11 474     5.984100e+02 -4.362100e+02
+12 474     2.866600e+02 3.987500e+02
+13 474     6.358600e+02 3.516998e+01
+14 474     8.785500e+02 -4.232100e+02
+0 475     4.902700e+02 2.925000e+02
+1 475     8.209500e+02 1.680700e+02
+6 475     2.012700e+02 4.103000e+02
+7 475     2.913199e+02 4.349000e+02
+8 475     3.091100e+02 1.250400e+02
+10 475     4.516200e+02 5.373600e+02
+11 475     6.167400e+02 -4.329200e+02
+12 475     3.107000e+02 4.066100e+02
+13 475     6.564900e+02 3.790002e+01
+0 476     5.095400e+02 2.713700e+02
+1 476     8.342800e+02 1.402000e+02
+6 476     2.345600e+02 3.919900e+02
+7 476     3.136600e+02 4.174300e+02
+8 476     3.314700e+02 1.139600e+02
+10 476     4.756100e+02 5.144100e+02
+11 476     6.394600e+02 -4.535400e+02
+12 476     3.398600e+02 3.897000e+02
+13 476     6.780300e+02 2.179999e+01
+0 477     5.101001e+01 2.494100e+02
+1 477     3.520699e+02 2.454000e+02
+11 477     2.004800e+02 -4.923300e+02
+0 478     3.032300e+02 1.964300e+02
+1 478     5.910000e+02 1.217800e+02
+10 478     2.394800e+02 4.038700e+02
+0 479     3.032300e+02 1.964300e+02
+1 479     5.910000e+02 1.217800e+02
+10 479     2.394800e+02 4.038700e+02
+0 480     5.531200e+02 1.886100e+02
+1 480     8.395300e+02 4.297998e+01
+2 480     4.372000e+02 1.454500e+02
+3 480     3.008000e+02 -1.705700e+02
+6 480     3.465700e+02 3.279600e+02
+7 480     3.790400e+02 3.524600e+02
+8 480     4.189600e+02 9.267999e+01
+9 480     2.347800e+02 2.186900e+02
+10 480     5.325100e+02 4.196700e+02
+12 480     4.349301e+02 3.364000e+02
+13 480     7.513101e+02 -3.842999e+01
+15 480     7.198101e+02 4.753200e+02
+0 481     9.606000e+01 9.609000e+01
+1 481     2.845100e+02 9.710999e+01
+2 481     2.033800e+02 1.337100e+02
+3 481     1.041100e+02 -1.818900e+02
+7 481     -7.070007e+00 2.230200e+02
+8 481     2.017100e+02 6.416000e+01
+12 481     5.679999e+01 2.050600e+02
+13 481     4.423500e+02 -1.340300e+02
+15 481     8.383002e+01 2.803400e+02
+0 482     1.157300e+02 6.115997e+01
+1 482     2.909600e+02 5.540002e+01
+3 482     1.434400e+02 -1.994200e+02
+7 482     2.053998e+01 1.936100e+02
+8 482     2.320700e+02 4.709000e+01
+15 482     1.141500e+02 2.363400e+02
+0 483     5.519000e+02 6.004999e+01
+1 483     7.979399e+02 -9.172998e+01
+6 483     3.789300e+02 1.823700e+02
+7 483     3.955400e+02 2.274900e+02
+12 483     4.654900e+02 1.928100e+02
+13 483     7.645000e+02 -1.521000e+02
+0 484     3.385800e+02 1.006000e+01
+1 484     5.134200e+02 -6.596002e+01
+15 484     4.303000e+02 1.972700e+02
+0 485     3.330200e+02 9.520020e+00
+1 485     5.058400e+02 -6.515997e+01
+10 485     2.915800e+02 1.868400e+02
+15 485     4.228600e+02 1.957300e+02
+0 486     1.951000e+02 -8.646997e+01
+1 486     3.252300e+02 -1.149400e+02
+3 486     2.745000e+02 -3.223000e+02
+8 486     3.379300e+02 -6.494000e+01
+15 486     2.417500e+02 4.616998e+01
+0 487     6.178101e+02 -2.824600e+02
+1 487     7.353900e+02 -4.663700e+02
+2 487     7.185800e+02 -2.293800e+02
+7 487     5.265000e+02 -7.560999e+01
+12 487     6.772900e+02 -1.271800e+02
+15 487     8.630300e+02 -1.674800e+02
+0 488     4.968300e+02 -4.150300e+02
+1 488     5.471899e+02 -5.521500e+02
+7 488     4.489200e+02 -2.155200e+02
+0 489     4.620601e+02 3.171800e+02
+1 489     7.992700e+02 2.017400e+02
+7 489     2.597300e+02 4.536800e+02
+11 489     5.846500e+02 -4.099600e+02
+13 489     6.255800e+02 5.540002e+01
+0 490     5.052300e+02 2.937700e+02
+1 490     8.369900e+02 1.653100e+02
+6 490     2.204800e+02 4.169100e+02
+7 490     3.064700e+02 4.384700e+02
+8 490     3.230700e+02 1.306400e+02
+10 490     4.693500e+02 5.410400e+02
+11 490     6.311300e+02 -4.313200e+02
+12 490     3.279500e+02 4.132400e+02
+13 490     6.715100e+02 4.033002e+01
+0 491     5.150300e+02 2.780500e+02
+1 491     8.422900e+02 1.457900e+02
+6 491     2.374100e+02 4.022400e+02
+7 491     3.182700e+02 4.250900e+02
+10 491     4.816801e+02 5.230300e+02
+12 491     3.440300e+02 3.986100e+02
+0 492     5.321997e+01 2.404100e+02
+1 492     3.508400e+02 2.365500e+02
+10 492     -5.633002e+01 4.302400e+02
+11 492     2.013000e+02 -5.004000e+02
+0 493     1.620200e+02 1.334600e+02
+1 493     3.603101e+02 1.174000e+02
+0 494     5.767000e+02 1.203300e+02
+1 494     8.428500e+02 -3.629999e+01
+2 494     4.823600e+02 8.821997e+01
+3 494     3.464200e+02 -2.246100e+02
+6 494     3.939600e+02 2.611000e+02
+7 494     4.119100e+02 2.913300e+02
+8 494     4.545400e+02 4.526999e+01
+9 494     2.747400e+02 1.721800e+02
+10 494     5.671700e+02 3.420300e+02
+12 494     4.799500e+02 2.707700e+02
+15 494     7.614800e+02 3.831300e+02
+0 495     6.238800e+02 -2.622998e+01
+1 495     8.460601e+02 -2.055600e+02
+7 495     4.780601e+02 1.585900e+02
+12 495     5.729399e+02 1.253100e+02
+13 495     8.503700e+02 -2.206900e+02
+15 495     8.439200e+02 1.860300e+02
+0 496     7.450000e+01 -7.554999e+01
+1 496     2.087600e+02 -6.629999e+01
+3 496     1.669600e+02 -3.365300e+02
+6 496     7.946997e+01 -3.940997e+01
+7 496     3.520020e+00 5.189001e+01
+8 496     2.389800e+02 -7.413000e+01
+13 496     4.504500e+02 -2.802300e+02
+15 496     7.559003e+01 4.496997e+01
+0 497     2.043700e+02 -7.975000e+01
+1 497     3.364600e+02 -1.112600e+02
+7 497     1.308100e+02 6.856000e+01
+10 497     1.508300e+02 6.959998e+01
+15 497     2.537800e+02 5.656000e+01
+0 498     2.184700e+02 3.290600e+02
+1 498     5.544399e+02 2.785100e+02
+11 498     3.565000e+02 -4.110100e+02
+0 499     5.538199e+02 9.189999e+01
+1 499     8.100300e+02 -5.890997e+01
+10 499     5.411801e+02 3.064200e+02
+12 499     4.599600e+02 2.316000e+02
+13 499     7.635699e+02 -1.230200e+02
+15 499     7.319600e+02 3.406000e+02
+0 500     6.073600e+02 -2.703600e+02
+1 500     7.292400e+02 -4.502300e+02
+7 500     5.132800e+02 -6.628998e+01
+12 500     6.590699e+02 -1.182000e+02
+0 501     -5.414300e+02 2.768800e+02
+1 501     -2.104700e+02 4.241600e+02
+7 501     -7.482800e+02 2.700500e+02
+10 501     -7.760300e+02 4.182300e+02
+11 501     -3.407900e+02 -4.607700e+02
+14 501     -2.370900e+02 -4.821600e+02
+15 501     -8.047800e+02 4.428400e+02
+0 502     -3.416400e+02 3.278400e+02
+1 502     -8.760010e+00 4.240600e+02
+5 502     5.304999e+01 -3.341600e+02
+7 502     -5.455500e+02 3.497900e+02
+11 502     -1.591700e+02 -4.188300e+02
+12 502     -6.592000e+02 2.461300e+02
+0 503     -5.241200e+02 4.458100e+02
+1 503     -1.560800e+02 5.803500e+02
+5 503     -1.117400e+02 -2.027400e+02
+7 503     -7.554500e+02 4.553800e+02
+8 503     -5.939700e+02 1.374300e+02
+14 503     -1.948800e+02 -2.983200e+02
+0 504     -5.198700e+02 4.467800e+02
+1 504     -1.519300e+02 5.801500e+02
+7 504     -7.511600e+02 4.565400e+02
+11 504     -3.080700e+02 -3.122200e+02
+14 504     -1.905900e+02 -2.976000e+02
+0 505     -5.307500e+02 3.480800e+02
+1 505     -1.850100e+02 4.889400e+02
+5 505     -1.312500e+02 -3.061300e+02
+8 505     -5.989700e+02 3.944000e+01
+11 505     -3.251300e+02 -3.975000e+02
+13 505     -2.338600e+02 1.642999e+01
+14 505     -2.129900e+02 -4.021500e+02
+15 505     -8.035600e+02 5.442300e+02
+0 506     1.310900e+02 5.681000e+02
+1 506     5.335000e+02 5.481300e+02
+2 506     -1.786800e+02 3.365900e+02
+3 506     -3.138300e+02 2.890015e+00
+4 506     4.709998e+01 -4.463800e+02
+5 506     5.337200e+02 -7.557001e+01
+6 506     -3.477600e+02 6.359500e+02
+9 506     -3.064300e+02 3.614300e+02
+11 506     2.592000e+02 -2.000300e+02
+12 506     -1.777800e+02 6.062700e+02
+13 506     2.915300e+02 2.349900e+02
+14 506     4.375100e+02 -1.611100e+02
+0 507     4.165000e+02 5.800300e+02
+1 507     8.640900e+02 4.913500e+02
+2 507     6.008002e+01 3.498300e+02
+3 507     -8.819000e+01 1.466998e+01
+5 507     8.177500e+02 -5.279999e+01
+6 507     -5.073999e+01 7.043300e+02
+9 507     -1.037700e+02 3.797800e+02
+14 507     7.121801e+02 -1.335000e+02
+0 508     2.876200e+02 5.574800e+02
+1 508     7.059700e+02 4.978600e+02
+2 508     -4.369000e+01 3.264600e+02
+3 508     -1.863000e+02 -9.979980e+00
+4 508     3.153998e+01 -5.498300e+02
+5 508     6.870300e+02 -8.212000e+01
+6 508     -1.806200e+02 6.512100e+02
+9 508     -1.915200e+02 3.548600e+02
+11 508     4.002000e+02 -2.021400e+02
+12 508     -1.538000e+01 6.131000e+02
+13 508     4.148800e+02 2.366400e+02
+0 509     3.268300e+02 5.809800e+02
+1 509     7.579800e+02 5.133800e+02
+14 509     6.243101e+02 -1.383400e+02
+0 510     2.991100e+02 5.657500e+02
+1 510     7.211801e+02 5.038200e+02
+2 510     -3.482001e+01 3.337200e+02
+4 510     3.646997e+01 -5.592900e+02
+5 510     6.997600e+02 -7.259998e+01
+6 510     -1.689700e+02 6.641500e+02
+9 510     -1.837100e+02 3.630400e+02
+11 510     4.111600e+02 -1.937600e+02
+13 510     4.237700e+02 2.437200e+02
+14 510     5.992900e+02 -1.548700e+02
+0 511     1.639000e+02 5.786700e+02
+1 511     5.731100e+02 5.504700e+02
+2 511     -1.520200e+02 3.478500e+02
+3 511     -2.882900e+02 1.340997e+01
+4 511     5.169000e+01 -4.685300e+02
+5 511     5.657100e+02 -6.364001e+01
+6 511     -3.149800e+02 6.547500e+02
+8 511     -4.521002e+01 2.704000e+02
+9 511     -2.842800e+02 3.718400e+02
+11 511     2.884800e+02 -1.896800e+02
+12 511     -1.456500e+02 6.220000e+02
+14 511     4.685500e+02 -1.488600e+02
+0 512     1.181700e+02 -3.924100e+02
+1 512     1.611899e+02 -3.903400e+02
+0 513     5.684200e+02 2.209500e+02
+1 513     8.660300e+02 7.335999e+01
+6 513     3.575200e+02 3.710300e+02
+7 513     3.899900e+02 3.874900e+02
+8 513     4.264900e+02 1.256100e+02
+10 513     5.476500e+02 4.613000e+02
+15 513     7.399100e+02 5.200300e+02
+0 514     5.007200e+02 4.029700e+02
+1 514     8.682100e+02 2.837500e+02
+3 514     1.403700e+02 -3.965002e+01
+6 514     1.867200e+02 5.385100e+02
+7 514     2.870900e+02 5.443400e+02
+8 514     2.981800e+02 2.168400e+02
+9 514     9.528998e+01 3.340400e+02
+11 514     6.066801e+02 -3.277200e+02
+0 515     3.352400e+02 4.606300e+02
+1 515     7.308600e+02 3.819600e+02
+2 515     1.044000e+01 2.219300e+02
+4 515     -3.202002e+01 -5.795400e+02
+5 515     7.415000e+02 -1.827600e+02
+6 515     -1.099200e+02 5.412200e+02
+7 515     9.770001e+01 5.621400e+02
+8 515     8.914001e+01 1.731400e+02
+9 515     -1.414500e+02 2.671000e+02
+12 515     5.277002e+01 5.102500e+02
+13 515     4.577000e+02 1.572900e+02
+14 515     6.443101e+02 -2.615100e+02
+0 516     3.702900e+02 5.021000e+02
+1 516     7.839301e+02 4.172200e+02
+2 516     3.350000e+01 2.671600e+02
+3 516     -1.126700e+02 -6.513000e+01
+5 516     7.755699e+02 -1.374000e+02
+6 516     -8.247000e+01 5.986800e+02
+8 516     1.086300e+02 2.091600e+02
+9 516     -1.236700e+02 3.072100e+02
+12 516     7.944000e+01 5.606000e+02
+13 516     4.835200e+02 1.950500e+02
+14 516     6.749800e+02 -2.158800e+02
+0 517     5.191600e+02 3.460900e+02
+1 517     8.685000e+02 2.180100e+02
+2 517     3.157500e+02 2.425800e+02
+3 517     1.748000e+02 -8.252002e+01
+7 517     3.125900e+02 4.923200e+02
+8 517     3.250200e+02 1.778800e+02
+9 517     1.255000e+02 2.963400e+02
+11 517     6.343800e+02 -3.800800e+02
+12 517     3.315400e+02 4.749600e+02
+13 517     6.796300e+02 8.731000e+01
+0 518     4.840000e+02 3.215500e+02
+1 518     8.234900e+02 2.007000e+02
+2 518     2.813400e+02 2.023400e+02
+6 518     1.855200e+02 4.414400e+02
+7 518     2.810000e+02 4.619300e+02
+8 518     2.978900e+02 1.464700e+02
+10 518     4.416000e+02 5.721100e+02
+11 518     6.053800e+02 -4.053000e+02
+13 518     6.467100e+02 6.178003e+01
+0 519     4.544000e+02 3.166200e+02
+1 519     7.909900e+02 2.029500e+02
+6 519     1.470400e+02 4.252700e+02
+7 519     2.519399e+02 4.516100e+02
+8 519     2.708800e+02 1.323200e+02
+10 519     4.070200e+02 5.628000e+02
+11 519     5.790500e+02 -4.121500e+02
+12 519     2.618199e+02 4.196700e+02
+13 519     6.178101e+02 5.371002e+01
+14 519     8.539100e+02 -3.985700e+02
+0 520     3.146400e+02 5.682200e+02
+1 520     7.393300e+02 5.025900e+02
+2 520     -2.184003e+01 3.367900e+02
+3 520     -1.647800e+02 1.950012e+00
+4 520     3.702002e+01 -5.700900e+02
+5 520     7.151500e+02 -6.946002e+01
+6 520     -1.534900e+02 6.701000e+02
+9 520     -1.728600e+02 3.660800e+02
+11 520     4.245100e+02 -1.907300e+02
+13 520     4.356600e+02 2.468200e+02
+14 520     6.141300e+02 -1.514400e+02
+0 521     5.044100e+02 4.060300e+02
+1 521     8.728600e+02 2.855500e+02
+2 521     2.847200e+02 2.939400e+02
+3 521     1.433600e+02 -3.402002e+01
+6 521     1.909300e+02 5.440500e+02
+7 521     2.907000e+02 5.473600e+02
+8 521     3.012600e+02 2.199000e+02
+11 521     6.091899e+02 -3.247200e+02
+13 521     6.591700e+02 1.354100e+02
+0 522     4.914200e+02 4.193500e+02
+1 522     8.635500e+02 3.034300e+02
+2 522     2.671801e+02 3.013700e+02
+3 522     1.256900e+02 -2.690002e+01
+6 522     1.704400e+02 5.561000e+02
+7 522     2.756100e+02 5.584100e+02
+8 522     2.869200e+02 2.269700e+02
+9 522     8.259998e+01 3.454000e+02
+11 522     5.951400e+02 -3.126700e+02
+12 522     2.822400e+02 5.447200e+02
+13 522     6.453800e+02 1.449900e+02
+0 523     4.670800e+02 3.837400e+02
+1 523     8.257700e+02 2.716400e+02
+2 523     2.466600e+02 2.572300e+02
+3 523     1.067700e+02 -7.020001e+01
+7 523     2.554301e+02 5.198200e+02
+8 523     2.705000e+02 1.915000e+02
+9 523     6.592999e+01 3.066000e+02
+11 523     5.789600e+02 -3.471500e+02
+12 523     2.617100e+02 4.983200e+02
+13 523     6.238500e+02 1.128500e+02
+14 523     8.567300e+02 -3.234700e+02
+0 524     5.823199e+02 2.087100e+02
+1 524     8.770900e+02 5.601001e+01
+2 524     4.645300e+02 1.805600e+02
+3 524     3.261000e+02 -1.369200e+02
+6 524     3.779900e+02 3.625500e+02
+7 524     4.057300e+02 3.781000e+02
+8 524     4.414900e+02 1.199900e+02
+9 524     2.574100e+02 2.491800e+02
+10 524     5.655200e+02 4.474300e+02
+11 524     7.179900e+02 -5.159200e+02
+13 524     7.785100e+02 -1.753003e+01
+15 524     7.588600e+02 5.085700e+02
+0 525     1.172998e+01 5.549800e+02
+1 525     4.042800e+02 5.623600e+02
+2 525     -2.854100e+02 3.220700e+02
+3 525     -4.175800e+02 -1.104999e+01
+4 525     4.594000e+01 -3.703100e+02
+5 525     4.167400e+02 -9.221997e+01
+6 525     -4.764500e+02 5.952900e+02
+8 525     -1.556200e+02 2.471400e+02
+11 525     1.550300e+02 -2.165200e+02
+12 525     -3.013800e+02 5.749700e+02
+13 525     1.990100e+02 2.170400e+02
+14 525     3.244000e+02 -1.791200e+02
+0 526     -2.115997e+01 1.203003e+01
+1 526     1.462300e+02 4.534003e+01
+3 526     2.245001e+01 -2.905300e+02
+7 526     -1.111400e+02 1.202600e+02
+10 526     -1.203400e+02 1.527900e+02
+15 526     -6.498999e+01 1.508000e+02
+0 527     -2.660600e+02 3.863100e+02
+1 527     7.883002e+01 4.619900e+02
+2 527     -5.442500e+02 1.199000e+02
+4 527     -3.041998e+01 -1.961200e+02
+5 527     1.348500e+02 -2.719900e+02
+7 527     -4.765800e+02 4.203100e+02
+8 527     -3.665600e+02 8.326999e+01
+10 527     -4.522000e+02 5.750800e+02
+11 527     -8.963000e+01 -3.674700e+02
+13 527     -2.085999e+01 5.890002e+01
+14 527     5.121997e+01 -3.620000e+02
+0 528     -3.153000e+02 4.062500e+02
+1 528     3.523999e+01 4.935800e+02
+2 528     -5.966100e+02 1.453500e+02
+7 528     -5.297700e+02 4.360000e+02
+10 528     -5.154900e+02 5.961900e+02
+11 528     -1.326400e+02 -3.494500e+02
+12 528     -6.421600e+02 3.488200e+02
+14 528     4.169983e+00 -3.403200e+02
+0 529     -5.645500e+02 3.069400e+02
+1 529     -2.251200e+02 4.580800e+02
+5 529     -1.745800e+02 -3.506900e+02
+15 529     -8.432800e+02 4.821000e+02
+0 530     -5.052600e+02 3.887900e+02
+1 530     -1.513800e+02 5.216900e+02
+8 530     -5.771600e+02 7.989001e+01
+14 530     -1.842900e+02 -3.590900e+02
+0 531     -4.252000e+02 3.101900e+02
+1 531     -9.251001e+01 4.271700e+02
+10 531     -6.345700e+02 4.680700e+02
+12 531     -7.581700e+02 2.080700e+02
+15 531     -6.465500e+02 5.041500e+02
+0 532     3.315200e+02 4.657300e+02
+1 532     7.279600e+02 3.881800e+02
+2 532     6.479980e+00 2.273500e+02
+3 532     -1.385500e+02 -1.044800e+02
+4 532     -2.794000e+01 -5.771899e+02
+5 532     7.370400e+02 -1.770500e+02
+6 532     -1.152400e+02 5.466200e+02
+7 532     9.366998e+01 5.672600e+02
+9 532     -1.451200e+02 2.721400e+02
+11 532     4.528199e+02 -2.789100e+02
+12 532     4.769000e+01 5.154700e+02
+14 532     6.399200e+02 -2.563000e+02
+0 533     1.181300e+02 4.194900e+02
+1 533     4.809000e+02 3.965800e+02
+2 533     -1.751100e+02 1.689300e+02
+3 533     -3.117800e+02 -1.626000e+02
+5 533     5.201200e+02 -2.338800e+02
+6 533     -3.332100e+02 4.418700e+02
+7 533     -1.025900e+02 4.977200e+02
+8 533     -6.452002e+01 1.278100e+02
+9 533     -2.963600e+02 2.145400e+02
+11 533     2.587300e+02 -3.310200e+02
+12 533     -1.640300e+02 4.308000e+02
+13 533     2.848300e+02 1.075000e+02
+14 533     4.299600e+02 -3.167900e+02
+0 534     3.352400e+02 4.606300e+02
+1 534     7.308600e+02 3.819600e+02
+2 534     1.044000e+01 2.219300e+02
+4 534     -3.202002e+01 -5.795400e+02
+5 534     7.415000e+02 -1.827600e+02
+6 534     -1.099200e+02 5.412200e+02
+7 534     9.770001e+01 5.621400e+02
+8 534     8.914001e+01 1.731400e+02
+9 534     -1.414500e+02 2.671000e+02
+11 534     4.572700e+02 -2.832000e+02
+12 534     5.277002e+01 5.102500e+02
+13 534     4.577000e+02 1.572900e+02
+14 534     6.443101e+02 -2.615100e+02
+0 535     -1.699500e+02 1.481200e+02
+1 535     9.758002e+01 2.082000e+02
+4 535     -1.733400e+02 -2.424900e+02
+5 535     2.694700e+02 -5.334100e+02
+7 535     -3.310200e+02 1.973500e+02
+9 535     -4.150600e+02 -2.106000e+01
+12 535     -3.876100e+02 8.940002e+01
+13 535     9.403003e+01 -1.380200e+02
+0 536     1.698999e+01 5.152700e+02
+1 536     3.979600e+02 5.207000e+02
+2 536     -2.764200e+02 2.778600e+02
+3 536     -4.079200e+02 -5.387000e+01
+5 536     4.217200e+02 -1.331200e+02
+6 536     -4.626000e+02 5.445600e+02
+8 536     -1.481700e+02 2.126300e+02
+11 536     1.610200e+02 -2.505500e+02
+13 536     2.033300e+02 1.839900e+02
+14 536     3.298101e+02 -2.191100e+02
+0 537     -6.969000e+01 4.670500e+02
+1 537     2.960900e+02 4.932700e+02
+2 537     -3.536400e+02 2.209800e+02
+3 537     -4.840400e+02 -1.094600e+02
+4 537     4.099731e-01 -3.158100e+02
+5 537     3.353101e+02 -1.855700e+02
+6 537     -5.512600e+02 4.636500e+02
+7 537     -2.907000e+02 5.265200e+02
+8 537     -2.109300e+02 1.662100e+02
+11 537     8.581000e+01 -2.942100e+02
+12 537     -3.735200e+02 4.592200e+02
+13 537     1.359000e+02 1.381500e+02
+14 537     2.463900e+02 -2.721700e+02
+0 538     1.676200e+02 3.628003e+01
+1 538     3.346400e+02 1.548999e+01
+2 538     3.032600e+02 1.004900e+02
+3 538     2.020900e+02 -2.110400e+02
+4 538     -2.687600e+02 -5.460000e+02
+6 538     1.350500e+02 1.146600e+02
+7 538     7.448999e+01 1.771900e+02
+8 538     2.818000e+02 3.538000e+01
+10 538     9.506000e+01 2.004100e+02
+12 538     1.591700e+02 1.624900e+02
+13 538     5.142500e+02 -1.767200e+02
+15 538     1.857700e+02 2.095200e+02
+0 539     3.371600e+02 4.397200e+02
+1 539     7.267700e+02 3.592200e+02
+2 539     1.590002e+01 1.992400e+02
+5 539     7.451600e+02 -2.052100e+02
+9 539     -1.363700e+02 2.473700e+02
+14 539     6.479100e+02 -2.835600e+02
+0 540     -1.282001e+01 -3.871002e+01
+1 540     1.381801e+02 -5.429993e+00
+2 540     1.414700e+02 -2.589001e+01
+3 540     5.739001e+01 -3.350000e+02
+6 540     -4.145001e+01 -3.269000e+01
+7 540     -9.240997e+01 7.142999e+01
+8 540     1.450700e+02 -6.814001e+01
+10 540     -1.036500e+02 9.464001e+01
+12 540     -2.910999e+01 2.133002e+01
+13 540     3.620699e+02 -2.566700e+02
+15 540     -4.650000e+01 8.272000e+01
+0 541     -4.654600e+02 3.989400e+02
+1 541     -1.114500e+02 5.223600e+02
+5 541     -6.175000e+01 -2.537300e+02
+10 541     -7.004300e+02 5.755700e+02
+12 541     -8.217700e+02 3.162800e+02
+14 541     -1.440200e+02 -3.477700e+02
+0 542     -1.008300e+02 5.394700e+02
+1 542     2.822700e+02 5.737900e+02
+4 542     4.382001e+01 -3.037200e+02
+8 542     -2.403300e+02 2.312800e+02
+11 542     5.671997e+01 -2.332500e+02
+0 543     -4.011300e+02 3.989200e+02
+1 543     -4.965002e+01 5.070600e+02
+2 543     -6.882600e+02 1.354100e+02
+7 543     -6.175900e+02 4.183500e+02
+10 543     -6.197100e+02 5.801700e+02
+11 543     -2.082900e+02 -3.549000e+02
+13 543     -1.289600e+02 6.503003e+01
+14 543     -8.060999e+01 -3.482800e+02
+0 544     -4.982000e+02 3.835000e+02
+1 544     -1.459800e+02 5.148000e+02
+5 544     -9.604999e+01 -2.696000e+02
+8 544     -5.709600e+02 7.414001e+01
+11 544     -2.940700e+02 -3.673900e+02
+0 545     -4.569700e+02 3.903600e+02
+1 545     -1.047500e+02 5.120500e+02
+4 545     -1.188000e+01 -9.303998e+01
+5 545     -5.428003e+01 -2.634700e+02
+8 545     -5.336000e+02 8.276999e+01
+11 545     -2.574400e+02 -3.614600e+02
+12 545     -8.107400e+02 3.063600e+02
+14 545     -1.358700e+02 -3.571000e+02
+0 546     3.194000e+01 5.193000e+02
+1 546     4.153800e+02 5.212200e+02
+2 546     -2.631100e+02 2.825200e+02
+3 546     -3.947100e+02 -4.965002e+01
+4 546     2.428998e+01 -3.809200e+02
+6 546     -4.465700e+02 5.532000e+02
+8 546     -1.370800e+02 2.162500e+02
+9 546     -3.762700e+02 3.109200e+02
+11 546     1.745200e+02 -2.462600e+02
+12 546     -2.731500e+02 5.361000e+02
+14 546     3.441600e+02 -2.148400e+02
+0 547     -4.891998e+01 4.394900e+02
+1 547     3.084700e+02 4.608700e+02
+2 547     -3.223600e+02 1.981800e+02
+5 547     3.609000e+02 -2.136300e+02
+6 547     -5.122600e+02 4.346400e+02
+7 547     -2.648800e+02 5.019600e+02
+11 547     1.040900e+02 -3.180600e+02
+12 547     -3.418800e+02 4.341300e+02
+14 547     2.724800e+02 -2.998300e+02
+0 548     -1.768800e+02 4.582700e+02
+1 548     1.850900e+02 5.110500e+02
+2 548     -4.577200e+02 2.103000e+02
+5 548     2.285500e+02 -1.950100e+02
+7 548     -3.963800e+02 5.060800e+02
+8 548     -2.967100e+02 1.554600e+02
+11 548     -1.025000e+01 -3.035300e+02
+12 548     -4.918500e+02 4.335800e+02
+13 548     5.065997e+01 1.252900e+02
+14 548     1.422700e+02 -2.836500e+02
+0 549     5.390015e+00 3.832700e+02
+1 549     3.533000e+02 3.895000e+02
+2 549     -2.765800e+02 1.224500e+02
+5 549     4.056700e+02 -2.752800e+02
+6 549     -4.512600e+02 3.694600e+02
+7 549     -2.063100e+02 4.484400e+02
+8 549     -1.478700e+02 8.979999e+01
+12 549     -2.773200e+02 3.706700e+02
+14 549     3.191000e+02 -3.597800e+02
+0 550     5.237000e+01 5.637500e+02
+1 550     4.486700e+02 5.619300e+02
+2 550     -2.488100e+02 3.316800e+02
+5 550     4.573600e+02 -8.179999e+01
+6 550     -4.327800e+02 6.141300e+02
+8 550     -1.255200e+02 2.556300e+02
+9 550     -3.661500e+02 3.549600e+02
+11 550     1.906600e+02 -2.075200e+02
+12 550     -2.591900e+02 5.910700e+02
+13 550     2.302500e+02 2.261900e+02
+14 550     3.628700e+02 -1.694600e+02
+0 551     1.263600e+02 4.268900e+02
+1 551     4.918000e+02 4.020300e+02
+3 551     -3.057800e+02 -1.548400e+02
+4 551     -3.802002e+01 -4.330699e+02
+7 551     -9.548999e+01 5.055300e+02
+9 551     -2.909700e+02 2.216400e+02
+11 551     2.660699e+02 -3.240500e+02
+12 551     -1.565400e+02 4.398100e+02
+0 552     3.608002e+01 1.054400e+02
+1 552     2.304399e+02 1.210100e+02
+2 552     1.329700e+02 1.242800e+02
+3 552     3.846002e+01 -1.920000e+02
+4 552     -2.061300e+02 -4.390800e+02
+5 552     6.608900e+02 -5.508600e+02
+6 552     -4.365002e+01 1.435800e+02
+7 552     -6.953003e+01 2.221000e+02
+10 552     -6.265997e+01 2.672000e+02
+13 552     3.862700e+02 -1.309300e+02
+15 552     8.900146e-01 2.860300e+02
+0 553     -1.206500e+02 1.614100e+02
+1 553     1.500699e+02 2.075200e+02
+7 553     -2.842000e+02 2.172100e+02
+13 553     1.355600e+02 -1.237800e+02
+0 554     7.070001e+01 5.805800e+02
+1 554     4.725800e+02 5.748500e+02
+2 554     -2.337300e+02 3.499000e+02
+4 554     5.732001e+01 -4.095100e+02
+5 554     4.752100e+02 -6.465997e+01
+6 554     -4.156600e+02 6.390400e+02
+8 554     -1.131000e+02 2.706000e+02
+9 554     -3.539400e+02 3.711100e+02
+11 554     2.058000e+02 -1.928300e+02
+12 554     -2.432100e+02 6.117600e+02
+13 554     2.443500e+02 2.417200e+02
+14 554     3.800900e+02 -1.513900e+02
+0 555     -1.956000e+02 4.695900e+02
+1 555     1.686600e+02 5.268000e+02
+2 555     -4.775600e+02 2.246000e+02
+4 555     1.121997e+01 -2.432300e+02
+5 555     2.107800e+02 -1.831400e+02
+7 555     -4.172400e+02 5.157300e+02
+11 555     -2.613000e+01 -2.939200e+02
+12 555     -5.156600e+02 4.444500e+02
+0 556     -1.917999e+01 8.673001e+01
+1 556     1.730800e+02 1.178200e+02
+3 556     -1.579999e+01 -2.289400e+02
+4 556     -2.131000e+02 -3.956300e+02
+5 556     5.946801e+02 -5.749000e+02
+6 556     -1.054600e+02 1.022300e+02
+7 556     -1.239300e+02 1.930300e+02
+8 556     9.547998e+01 2.754001e+01
+10 556     -1.250500e+02 2.401600e+02
+12 556     -8.151001e+01 1.576000e+02
+13 556     3.374700e+02 -1.515700e+02
+0 557     2.509003e+01 5.230300e+02
+1 557     4.084000e+02 5.268300e+02
+2 557     -2.695500e+02 2.857600e+02
+3 557     -4.012600e+02 -4.663000e+01
+4 557     2.638000e+01 -3.768300e+02
+5 557     4.304399e+02 -1.250500e+02
+6 557     -4.549300e+02 5.558300e+02
+8 557     -1.425400e+02 2.188200e+02
+9 557     -3.818800e+02 3.137000e+02
+11 557     1.675000e+02 -2.435500e+02
+14 557     3.370900e+02 -2.117800e+02
+0 558     -3.481000e+01 5.014200e+02
+1 558     3.412900e+02 5.196000e+02
+3 558     -4.534900e+02 -6.959003e+01
+4 558     1.802002e+01 -3.394800e+02
+5 558     3.705900e+02 -1.482200e+02
+6 558     -5.186000e+02 5.168800e+02
+7 558     -2.610600e+02 5.660600e+02
+11 558     1.160900e+02 -2.635600e+02
+12 558     -3.422500e+02 5.062600e+02
+0 559     -4.938000e+01 4.495500e+02
+1 559     3.104900e+02 4.711700e+02
+2 559     -3.242000e+02 2.101100e+02
+4 559     -1.002002e+01 -3.280900e+02
+5 559     3.605500e+02 -2.028200e+02
+6 559     -5.150400e+02 4.482100e+02
+7 559     -2.669000e+02 5.121800e+02
+8 559     -1.881200e+02 1.572000e+02
+11 559     1.031500e+02 -3.091700e+02
+12 559     -3.443700e+02 4.462500e+02
+13 559     1.570100e+02 1.251100e+02
+14 559     2.718700e+02 -2.892000e+02
+0 560     -9.952002e+01 1.833200e+02
+1 560     1.787000e+02 2.228000e+02
+8 560     -1.622400e+02 -6.032001e+01
+0 561     7.403003e+01 1.030400e+02
+1 561     2.657700e+02 1.082000e+02
+2 561     1.751800e+02 1.329300e+02
+5 561     7.065400e+02 -5.532500e+02
+6 561     1.979980e+00 1.530800e+02
+7 561     -3.048999e+01 2.265400e+02
+8 561     1.782900e+02 6.441000e+01
+10 561     -1.757001e+01 2.685800e+02
+12 561     2.723999e+01 2.067000e+02
+15 561     5.216998e+01 2.881000e+02
+0 562     3.609998e+01 6.625000e+01
+1 562     2.163400e+02 8.317001e+01
+2 562     1.568500e+02 9.460999e+01
+4 562     -2.316100e+02 -4.409600e+02
+5 562     6.733900e+02 -5.945800e+02
+6 562     -2.140002e+01 1.026000e+02
+7 562     -6.109998e+01 1.844900e+02
+9 562     1.742999e+01 1.695400e+02
+10 562     -5.813000e+01 2.212400e+02
+12 562     -1.979980e+00 1.571700e+02
+13 562     3.951100e+02 -1.629200e+02
+15 562     5.119995e+00 2.326000e+02
+0 563     1.157400e+02 4.487000e+01
+1 563     2.854900e+02 3.939001e+01
+4 563     -2.559400e+02 -5.055500e+02
+6 563     8.058002e+01 1.069400e+02
+9 563     9.765997e+01 1.769100e+02
+12 563     1.012000e+02 1.587400e+02
+15 563     1.160700e+02 2.142300e+02
+0 564     1.941998e+01 5.519300e+02
+1 564     4.115200e+02 5.649100e+02
+3 564     -4.081900e+02 -1.446997e+01
+5 564     4.249000e+02 -9.587000e+01
+6 564     -4.674000e+02 5.918600e+02
+0 565     7.039001e+01 8.942001e+01
+1 565     2.572100e+02 9.603000e+01
+2 565     1.819600e+02 1.245900e+02
+3 565     8.596002e+01 -1.907900e+02
+4 565     -2.189200e+02 -4.679100e+02
+5 565     7.090400e+02 -5.654000e+02
+6 565     6.950012e+00 1.403100e+02
+7 565     -3.088000e+01 2.131000e+02
+8 565     1.827700e+02 5.714001e+01
+9 565     3.846997e+01 1.944600e+02
+10 565     -2.104999e+01 2.520400e+02
+12 565     3.012000e+01 1.925500e+02
+13 565     4.218900e+02 -1.407800e+02
+15 565     4.900000e+01 2.692500e+02
+0 566     -1.444000e+01 5.471997e+01
+1 566     1.662400e+02 8.576001e+01
+2 566     9.942999e+01 6.292999e+01
+3 566     9.919983e+00 -2.511800e+02
+4 566     -2.343500e+02 -3.999400e+02
+5 566     6.099000e+02 -6.105601e+02
+6 566     -8.154999e+01 6.983002e+01
+7 566     -1.118100e+02 1.629800e+02
+8 566     1.133500e+02 6.609985e+00
+10 566     -1.161000e+02 2.032000e+02
+12 566     -6.216998e+01 1.253600e+02
+13 566     3.484800e+02 -1.780200e+02
+15 566     -6.113000e+01 2.094700e+02
+0 567     3.792999e+01 2.900000e+01
+1 567     2.056300e+02 4.620001e+01
+3 567     8.569000e+01 -2.484700e+02
+7 567     -5.150000e+01 1.486300e+02
+9 567     3.784003e+01 1.442000e+02
+10 567     -5.265997e+01 1.784700e+02
+13 567     4.039600e+02 -1.936400e+02
+15 567     1.239001e+01 1.817900e+02
+0 568     1.026900e+02 7.578003e+01
+1 568     2.832300e+02 7.342999e+01
+3 568     1.239700e+02 -1.920700e+02
+4 568     -2.325300e+02 -4.938900e+02
+5 568     7.517700e+02 -5.809100e+02
+6 568     5.107001e+01 1.352100e+02
+7 568     4.369995e+00 2.058200e+02
+8 568     2.162300e+02 5.404999e+01
+10 568     1.753998e+01 2.395100e+02
+12 568     7.376001e+01 1.877800e+02
+13 568     4.528700e+02 -1.485500e+02
+15 568     9.434998e+01 2.545600e+02
+0 569     1.609985e+00 7.213000e+01
+1 569     1.873101e+02 9.810999e+01
+3 569     2.271997e+01 -2.296200e+02
+4 569     -2.244900e+02 -4.132700e+02
+6 569     -6.921002e+01 9.544000e+01
+7 569     -9.779999e+01 1.832700e+02
+8 569     1.244100e+02 2.489999e+01
+9 569     -1.792999e+01 1.594300e+02
+10 569     -9.853003e+01 2.249000e+02
+12 569     -4.794000e+01 1.506300e+02
+13 569     3.616600e+02 -1.620700e+02
+15 569     -4.107001e+01 2.354200e+02
+0 570     4.410999e+01 5.340002e+01
+1 570     2.194000e+02 6.816998e+01
+2 570     1.715000e+02 8.733002e+01
+3 570     7.865002e+01 -2.262600e+02
+4 570     -2.408400e+02 -4.476100e+02
+5 570     6.855400e+02 -6.084000e+02
+6 570     -6.119995e+00 9.237000e+01
+7 570     -5.010999e+01 1.737700e+02
+8 570     1.722700e+02 2.504001e+01
+9 570     3.320001e+01 1.637000e+02
+10 570     -4.773999e+01 2.078000e+02
+12 570     1.252002e+01 1.466200e+02
+13 570     4.042300e+02 -1.719700e+02
+15 570     1.775000e+01 2.162000e+02
+0 571     7.944000e+01 4.854999e+01
+1 571     2.512700e+02 5.371002e+01
+3 571     1.181200e+02 -2.191300e+02
+4 571     -2.484500e+02 -4.757700e+02
+6 571     3.865002e+01 9.909003e+01
+7 571     -1.327002e+01 1.753400e+02
+8 571     2.075100e+02 2.964001e+01
+9 571     6.487000e+01 1.707300e+02
+10 571     -6.549988e+00 2.055800e+02
+12 571     5.719000e+01 1.523100e+02
+13 571     4.380200e+02 -1.732000e+02
+15 571     6.600000e+01 2.143800e+02
+0 572     7.039978e+00 2.109998e+01
+1 572     1.748199e+02 4.696997e+01
+3 572     5.345001e+01 -2.680400e+02
+4 572     -2.585100e+02 -4.177800e+02
+7 572     -8.228998e+01 1.348800e+02
+13 572     3.751500e+02 -2.032600e+02
+15 572     -2.803003e+01 1.667700e+02
+0 573     1.507300e+02 1.984003e+01
+1 573     3.117600e+02 4.469971e+00
+2 573     2.973600e+02 8.327002e+01
+3 573     1.964700e+02 -2.270100e+02
+4 573     -2.778700e+02 -5.339200e+02
+7 573     6.282001e+01 1.589100e+02
+8 573     2.759400e+02 2.151001e+01
+10 573     7.906000e+01 1.793600e+02
+12 573     1.492100e+02 1.415800e+02
+13 573     5.044000e+02 -1.914600e+02
+15 573     1.671500e+02 1.852300e+02
+0 574     2.055500e+02 5.421600e+02
+1 574     6.089301e+02 5.023400e+02
+2 574     -1.110600e+02 3.083800e+02
+3 574     -2.502400e+02 -2.651001e+01
+4 574     2.548999e+01 -4.936200e+02
+5 574     6.075601e+02 -1.001700e+02
+6 574     -2.628300e+02 6.182300e+02
+11 574     3.290601e+02 -2.195300e+02
+12 574     -9.571997e+01 5.874900e+02
+13 574     3.511100e+02 2.172900e+02
+14 574     5.105800e+02 -1.840500e+02
+0 575     3.303998e+01 4.507001e+01
+1 575     2.062400e+02 6.334998e+01
+3 575     7.388000e+01 -2.369600e+02
+6 575     -1.365997e+01 7.934998e+01
+8 575     1.676600e+02 1.619000e+01
+10 575     -6.000000e+01 1.953300e+02
+12 575     3.669983e+00 1.337500e+02
+15 575     3.859985e+00 2.023300e+02
+0 576     -1.535999e+01 9.692001e+01
+1 576     1.803400e+02 1.264200e+02
+2 576     7.331000e+01 9.742999e+01
+3 576     -1.921002e+01 -2.195000e+02
+4 576     -2.056600e+02 -3.978800e+02
+5 576     5.963500e+02 -5.619600e+02
+6 576     -1.068600e+02 1.152800e+02
+7 576     -1.223500e+02 2.044800e+02
+8 576     9.410999e+01 3.632001e+01
+10 576     -1.214900e+02 2.528000e+02
+12 576     -8.152002e+01 1.702100e+02
+13 576     3.381899e+02 -1.427700e+02
+15 576     -6.757001e+01 2.672100e+02
+0 577     3.095001e+01 8.842001e+01
+1 577     2.188500e+02 1.053700e+02
+2 577     1.365000e+02 1.085400e+02
+3 577     4.559003e+01 -2.054200e+02
+4 577     -2.170600e+02 -4.346600e+02
+5 577     6.564399e+02 -5.725100e+02
+6 577     -4.238000e+01 1.217700e+02
+7 577     -7.359998e+01 2.026400e+02
+8 577     1.447300e+02 4.373001e+01
+12 577     -2.019000e+01 1.760500e+02
+13 577     3.848400e+02 -1.454800e+02
+15 577     -6.869995e+00 2.597400e+02
+0 578     6.796002e+01 6.481000e+01
+1 578     2.442700e+02 7.279999e+01
+7 578     -2.856000e+01 1.896800e+02
+8 578     1.905700e+02 3.926999e+01
+10 578     -1.881000e+01 2.233800e+02
+13 578     4.241400e+02 -1.607700e+02
+15 578     4.823999e+01 2.346200e+02
+0 579     8.539001e+01 3.290002e+01
+1 579     2.520400e+02 3.616998e+01
+2 579     2.255699e+02 8.267999e+01
+3 579     1.305600e+02 -2.294400e+02
+4 579     -2.591100e+02 -4.806300e+02
+6 579     5.116998e+01 8.528003e+01
+7 579     -4.030029e+00 1.611700e+02
+8 579     2.157700e+02 2.029999e+01
+9 579     7.647998e+01 1.617000e+02
+10 579     2.030029e+00 1.885200e+02
+12 579     6.900000e+01 1.379400e+02
+13 579     4.452700e+02 -1.849200e+02
+15 579     7.621002e+01 1.939700e+02
+0 580     7.778998e+01 5.818400e+02
+1 580     4.803800e+02 5.744400e+02
+2 580     -2.271600e+02 3.513100e+02
+3 580     -3.593700e+02 1.658002e+01
+4 580     5.776001e+01 -4.142200e+02
+5 580     4.822900e+02 -6.301001e+01
+6 580     -4.079500e+02 6.425800e+02
+8 580     -1.076000e+02 2.718700e+02
+9 580     -3.484900e+02 3.727500e+02
+11 580     2.119400e+02 -1.915900e+02
+12 580     -2.356100e+02 6.146700e+02
+13 580     2.499100e+02 2.428100e+02
+14 580     3.868600e+02 -1.500600e+02
+0 581     2.610999e+01 5.411000e+02
+1 581     4.146000e+02 5.451100e+02
+2 581     -2.701000e+02 3.061600e+02
+3 581     -4.012800e+02 -2.577002e+01
+4 581     3.695001e+01 -3.791100e+02
+5 581     4.316700e+02 -1.065600e+02
+6 581     -4.571300e+02 5.791800e+02
+8 581     -1.427000e+02 2.348900e+02
+9 581     -3.832600e+02 3.317300e+02
+11 581     1.678900e+02 -2.275700e+02
+12 581     -2.832000e+02 5.597500e+02
+13 581     2.101600e+02 2.060600e+02
+14 581     3.383400e+02 -1.924800e+02
+0 582     2.271000e+02 1.054400e+02
+1 582     4.225300e+02 6.519000e+01
+15 582     2.623300e+02 3.124100e+02
+0 583     -5.793600e+02 3.882700e+02
+1 583     -2.205000e+02 5.380100e+02
+5 583     -1.750600e+02 -2.621100e+02
+7 583     -8.069700e+02 3.865000e+02
+11 583     -3.632600e+02 -3.609200e+02
+13 583     -2.725700e+02 4.937000e+01
+14 583     -2.571000e+02 -3.587600e+02
+0 584     -5.149600e+02 3.289400e+02
+1 584     -1.738800e+02 4.669800e+02
+4 584     -4.065997e+01 -5.652002e+01
+5 584     -1.211800e+02 -3.285100e+02
+8 584     -5.866800e+02 1.710999e+01
+10 584     -7.506200e+02 4.843000e+02
+11 584     -3.125800e+02 -4.151400e+02
+13 584     -2.237500e+02 -3.599854e-01
+14 584     -2.024700e+02 -4.242000e+02
+15 584     -7.774900e+02 5.195800e+02
+0 585     -2.889200e+02 3.896000e+02
+1 585     5.688000e+01 4.700500e+02
+4 585     -2.602002e+01 -1.840600e+02
+5 585     1.125500e+02 -2.679000e+02
+7 585     -5.006300e+02 4.216800e+02
+8 585     -3.861100e+02 8.720001e+01
+11 585     -1.102300e+02 -3.643400e+02
+12 585     -6.083600e+02 3.327600e+02
+13 585     -3.898999e+01 6.107001e+01
+14 585     2.903003e+01 -3.581400e+02
+0 586     -2.799800e+02 3.830700e+02
+1 586     6.433002e+01 4.622200e+02
+2 586     -5.588900e+02 1.169100e+02
+4 586     -3.084003e+01 -1.881000e+02
+5 586     1.209300e+02 -2.748400e+02
+7 586     -4.903900e+02 4.156700e+02
+8 586     -3.781400e+02 8.028000e+01
+10 586     -4.681900e+02 5.702400e+02
+11 586     -1.021500e+02 -3.699500e+02
+12 586     -5.965900e+02 3.253500e+02
+13 586     -3.183002e+01 5.600000e+01
+14 586     3.748999e+01 -3.651700e+02
+0 587     -3.774600e+02 3.310200e+02
+1 587     -4.258002e+01 4.361100e+02
+4 587     -5.178003e+01 -1.294700e+02
+5 587     1.709998e+01 -3.303200e+02
+7 587     -5.831500e+02 3.483100e+02
+8 587     -4.617200e+02 2.410999e+01
+10 587     -5.799100e+02 4.981800e+02
+11 587     -1.907400e+02 -4.154000e+02
+13 587     -1.118200e+02 6.289978e+00
+14 587     -6.416998e+01 -4.227600e+02
+15 587     -5.841700e+02 5.399800e+02
+0 588     2.557001e+01 5.648800e+02
+1 588     4.199500e+02 5.696700e+02
+2 588     -2.729100e+02 3.319400e+02
+3 588     -4.030300e+02 -3.599854e-01
+4 588     5.096002e+01 -3.808900e+02
+5 588     4.316100e+02 -8.154999e+01
+6 588     -4.624800e+02 6.106200e+02
+8 588     -1.449500e+02 2.565600e+02
+11 588     1.664800e+02 -2.077000e+02
+12 588     -2.879500e+02 5.879400e+02
+13 588     2.093600e+02 2.256400e+02
+14 588     3.375601e+02 -1.689700e+02
+0 589     4.678003e+01 5.680100e+02
+1 589     4.444800e+02 5.677700e+02
+3 589     -3.880000e+02 2.250000e+00
+5 589     4.538199e+02 -7.759998e+01
+8 589     -1.304000e+02 2.593000e+02
+11 589     1.869200e+02 -2.039300e+02
+12 589     -2.667600e+02 5.942700e+02
+0 590     2.721002e+01 5.561300e+02
+1 590     4.193500e+02 5.602600e+02
+2 590     -2.702300e+02 3.234500e+02
+4 590     4.588000e+01 -3.810200e+02
+5 590     4.329301e+02 -9.044000e+01
+6 590     -4.589800e+02 5.998600e+02
+8 590     -1.430400e+02 2.488700e+02
+11 590     1.678900e+02 -2.150400e+02
+12 590     -2.849700e+02 5.781800e+02
+13 590     2.108300e+02 2.187200e+02
+14 590     3.392900e+02 -1.775100e+02
+0 591     -5.142500e+02 3.236000e+02
+1 591     -1.745700e+02 4.620900e+02
+5 591     -1.210000e+02 -3.336200e+02
+7 591     -7.263000e+02 3.241100e+02
+8 591     -5.860600e+02 1.181000e+01
+10 591     -7.487800e+02 4.780600e+02
+11 591     -3.132700e+02 -4.195800e+02
+13 591     -2.233700e+02 -4.969971e+00
+14 591     -2.025100e+02 -4.298000e+02
+15 591     -7.754600e+02 5.123000e+02
+0 592     -3.440600e+02 3.319400e+02
+1 592     -1.044000e+01 4.287400e+02
+4 592     -5.407001e+01 -1.477400e+02
+5 592     5.077002e+01 -3.296000e+02
+7 592     -5.488900e+02 3.539500e+02
+8 592     -4.322200e+02 2.738000e+01
+10 592     -5.393300e+02 5.023300e+02
+11 592     -1.611800e+02 -4.151300e+02
+13 592     -8.526001e+01 8.799988e+00
+14 592     -3.089001e+01 -4.212200e+02
+15 592     -5.380900e+02 5.458500e+02
+0 593     -4.308100e+02 4.647000e+02
+1 593     -6.392999e+01 5.775500e+02
+2 593     -7.207500e+02 2.192800e+02
+5 593     -1.989001e+01 -1.854100e+02
+7 593     -6.588900e+02 4.855600e+02
+14 593     -1.022500e+02 -2.788100e+02
+0 594     -5.400900e+02 4.395200e+02
+1 594     -1.726000e+02 5.776900e+02
+5 594     -1.287400e+02 -2.091000e+02
+7 594     -7.722000e+02 4.468200e+02
+14 594     -2.113400e+02 -3.050100e+02
+0 595     -5.400900e+02 4.395200e+02
+1 595     -1.726000e+02 5.776900e+02
+5 595     -1.287400e+02 -2.091000e+02
+7 595     -7.722000e+02 4.468200e+02
+14 595     -2.113400e+02 -3.050100e+02
+0 596     -4.976700e+02 4.130600e+02
+1 596     -1.389500e+02 5.431100e+02
+10 596     -7.432600e+02 5.906200e+02
+0 597     -4.260000e+02 4.130900e+02
+1 597     -7.048999e+01 5.266300e+02
+2 597     -7.154000e+02 1.535600e+02
+7 597     -6.459800e+02 4.308200e+02
+10 597     -6.532000e+02 5.958600e+02
+13 597     -1.483300e+02 7.628998e+01
+14 597     -1.035600e+02 -3.330900e+02
+0 598     -5.227700e+02 2.777700e+02
+1 598     -1.923900e+02 4.201800e+02
+5 598     -1.369700e+02 -3.847900e+02
+7 598     -7.279000e+02 2.733000e+02
+10 598     -7.518400e+02 4.209100e+02
+11 598     -3.237200e+02 -4.606000e+02
+13 598     -2.323000e+02 -4.607001e+01
+14 598     -2.173500e+02 -4.814000e+02
+0 599     -5.171400e+02 3.709500e+02
+1 599     -1.664300e+02 5.075700e+02
+7 599     -7.365900e+02 3.748800e+02
+10 599     -7.601400e+02 5.362900e+02
+11 599     -3.112400e+02 -3.771000e+02
+13 599     -2.233400e+02 3.629999e+01
+14 599     -1.986000e+02 -3.778700e+02
+15 599     -7.887000e+02 5.784900e+02
+0 600     -4.552000e+02 2.017200e+02
+1 600     -1.497400e+02 3.323300e+02
+7 600     -6.428900e+02 2.034800e+02
+0 601     -4.556200e+02 1.969700e+02
+1 601     -1.517100e+02 3.280600e+02
+13 601     -1.727300e+02 -1.147100e+02
+0 602     -4.624600e+02 4.106200e+02
+1 602     -1.056500e+02 5.327800e+02
+4 602     -5.900269e-01 -9.360999e+01
+5 602     -5.690002e+01 -2.413900e+02
+8 602     -5.383400e+02 1.034900e+02
+10 602     -6.977500e+02 5.903700e+02
+11 602     -2.610600e+02 -3.438700e+02
+12 602     -8.203300e+02 3.317700e+02
+13 602     -1.775900e+02 7.315997e+01
+14 602     -1.392400e+02 -3.353000e+02
+0 603     -4.354500e+02 4.158500e+02
+1 603     -7.870001e+01 5.317500e+02
+2 603     -7.262200e+02 1.581800e+02
+4 603     2.700195e-01 -1.082400e+02
+5 603     -2.975000e+01 -2.362500e+02
+8 603     -5.136800e+02 1.095800e+02
+10 603     -6.655100e+02 5.991200e+02
+11 603     -2.373800e+02 -3.397100e+02
+12 603     -7.876600e+02 3.430400e+02
+0 604     -5.024300e+02 3.910900e+02
+1 604     -1.481100e+02 5.231400e+02
+4 604     -8.030029e+00 -7.071002e+01
+5 604     -9.894000e+01 -2.616700e+02
+7 604     -7.234300e+02 3.981200e+02
+8 604     -5.746000e+02 8.232999e+01
+10 604     -7.454900e+02 5.626000e+02
+11 604     -2.969800e+02 -3.603800e+02
+13 604     -2.104800e+02 5.435999e+01
+14 604     -1.810000e+02 -3.565500e+02
+0 605     -5.680000e+02 3.908800e+02
+1 605     -2.094100e+02 5.379300e+02
+5 605     -1.635600e+02 -2.595400e+02
+7 605     -7.947800e+02 3.905500e+02
+10 605     -8.292000e+02 5.579800e+02
+0 606     -3.654200e+02 4.007100e+02
+1 606     -1.490002e+01 5.004100e+02
+2 606     -6.497700e+02 1.380200e+02
+7 606     -5.810300e+02 4.243600e+02
+8 606     -4.504800e+02 9.551999e+01
+10 606     -5.779200e+02 5.851800e+02
+13 606     -1.000700e+02 6.804999e+01
+14 606     -4.532001e+01 -3.462600e+02
+0 607     1.865601e+02 -9.316998e+01
+1 607     3.145500e+02 -1.187900e+02
+6 607     1.999100e+02 -2.473999e+01
+7 607     1.155800e+02 5.270001e+01
+8 607     3.324300e+02 -7.071002e+01
+10 607     1.319300e+02 5.269000e+01
+13 607     5.474600e+02 -2.871800e+02
+15 607     2.305900e+02 3.558002e+01
+0 608     -3.446600e+02 3.363900e+02
+1 608     -9.890015e+00 4.331600e+02
+5 608     5.052002e+01 -3.244700e+02
+7 608     -5.498500e+02 3.586700e+02
+8 608     -4.326700e+02 3.176001e+01
+10 608     -5.409400e+02 5.076200e+02
+11 608     -1.621200e+02 -4.112100e+02
+12 608     -6.650200e+02 2.562900e+02
+13 608     -8.510999e+01 1.278998e+01
+15 608     -5.395800e+02 5.520000e+02
+0 609     -5.005100e+02 3.237300e+02
+1 609     -1.615500e+02 4.586100e+02
+5 609     -1.076900e+02 -3.344200e+02
+7 609     -7.114800e+02 3.257900e+02
+8 609     -5.733700e+02 1.188000e+01
+10 609     -7.320300e+02 4.792400e+02
+11 609     -3.006600e+02 -4.194300e+02
+13 609     -2.122600e+02 -4.419983e+00
+14 609     -1.886700e+02 -4.299300e+02
+15 609     -7.561000e+02 5.140500e+02
+0 610     -4.685500e+02 4.039200e+02
+1 610     -1.131500e+02 5.276600e+02
+5 610     -6.415002e+01 -2.482700e+02
+10 610     -7.047200e+02 5.810800e+02
+14 610     -1.461400e+02 -3.430100e+02
+0 611     -5.519600e+02 3.035600e+02
+1 611     -2.142500e+02 4.517200e+02
+5 611     -1.624900e+02 -3.550800e+02
+10 611     -7.932000e+02 4.498000e+02
+11 611     -3.476600e+02 -4.359100e+02
+14 611     -2.436600e+02 -4.522100e+02
+15 611     -8.247600e+02 4.787800e+02
+0 612     -5.401500e+02 2.888500e+02
+1 612     -2.064600e+02 4.352300e+02
+4 612     -6.025000e+01 -3.829999e+01
+5 612     -1.528700e+02 -3.716800e+02
+7 612     -7.485700e+02 2.832800e+02
+11 612     -3.385700e+02 -4.503300e+02
+13 612     -2.465900e+02 -3.690997e+01
+14 612     -2.337400e+02 -4.683700e+02
+15 612     -8.052400e+02 4.600000e+02
+0 613     -3.646500e+02 3.746500e+02
+1 613     -2.015002e+01 4.748400e+02
+2 613     -6.482100e+02 1.046700e+02
+5 613     3.537000e+01 -2.823300e+02
+7 613     -5.761100e+02 3.969300e+02
+8 613     -4.513700e+02 6.984000e+01
+11 613     -1.774100e+02 -3.767500e+02
+12 613     -6.949700e+02 3.014200e+02
+13 613     -1.002700e+02 4.540002e+01
+14 613     -4.712000e+01 -3.743500e+02
+0 614     -4.300400e+02 4.097000e+02
+1 614     -7.484998e+01 5.237200e+02
+4 614     -5.309998e+00 -1.107800e+02
+5 614     -2.490002e+01 -2.437900e+02
+7 614     -6.494900e+02 4.266500e+02
+8 614     -5.079200e+02 9.957001e+01
+0 615     -4.683500e+02 3.882400e+02
+1 615     -1.164100e+02 5.128400e+02
+4 615     -1.216998e+01 -8.788000e+01
+5 615     -6.625000e+01 -2.653200e+02
+8 615     -5.439000e+02 8.035001e+01
+10 615     -7.020500e+02 5.619400e+02
+11 615     -2.681100e+02 -3.631500e+02
+13 615     -1.835100e+02 5.333002e+01
+14 615     -1.483000e+02 -3.595800e+02
+0 616     -4.407600e+02 3.353003e+01
+1 616     -1.953500e+02 1.731700e+02
+2 616     -6.029200e+02 -2.553000e+02
+10 616     -6.158400e+02 1.350900e+02
+15 616     -6.269900e+02 1.212000e+02
+0 617     -5.401500e+02 2.888500e+02
+1 617     -2.064600e+02 4.352300e+02
+7 617     -7.485700e+02 2.832800e+02
+14 617     -2.337400e+02 -4.683700e+02
+15 617     -8.052400e+02 4.600000e+02
+0 618     -5.082700e+02 3.918700e+02
+1 618     -1.534800e+02 5.253800e+02
+7 618     -7.301700e+02 3.985100e+02
+8 618     -5.805700e+02 8.282001e+01
+10 618     -7.530300e+02 5.632900e+02
+11 618     -3.021800e+02 -3.592200e+02
+0 619     -5.212800e+02 2.832400e+02
+1 619     -1.902800e+02 4.253700e+02
+5 619     -1.347700e+02 -3.785000e+02
+7 619     -7.275500e+02 2.795400e+02
+8 619     -5.930600e+02 -3.173999e+01
+10 619     -7.511600e+02 4.275200e+02
+11 619     -3.223800e+02 -4.554400e+02
+13 619     -2.313500e+02 -4.097998e+01
+14 619     -2.157200e+02 -4.750300e+02
+15 619     -7.775000e+02 4.544100e+02
+0 620     -2.902500e+02 7.341998e+01
+1 620     -4.297998e+01 1.702100e+02
+7 620     -4.368900e+02 1.057600e+02
+15 620     -4.256900e+02 1.961000e+02
+0 621     -3.904400e+02 4.214000e+02
+1 621     -3.445001e+01 5.263900e+02
+2 621     -6.771600e+02 1.643400e+02
+5 621     1.521002e+01 -2.313600e+02
+7 621     -6.100000e+02 4.437400e+02
+8 621     -4.747500e+02 1.157600e+02
+10 621     -6.100600e+02 6.092000e+02
+12 621     -7.336600e+02 3.572100e+02
+13 621     -1.197300e+02 8.479001e+01
+14 621     -6.816998e+01 -3.244200e+02
+0 622     -2.832000e+02 4.189000e+02
+1 622     6.992999e+01 4.984300e+02
+4 622     -1.022998e+01 -1.902800e+02
+7 622     -4.988100e+02 4.533800e+02
+8 622     -3.825600e+02 1.164700e+02
+11 622     -1.041400e+02 -3.378900e+02
+12 622     -6.068400e+02 3.704600e+02
+13 622     -3.391998e+01 8.742001e+01
+14 622     3.665002e+01 -3.261900e+02
+0 623     -5.375000e+02 3.295800e+02
+1 623     -1.944400e+02 4.731600e+02
+10 623     -7.794900e+02 4.834300e+02
+11 623     -3.318100e+02 -4.129600e+02
+14 623     -2.247800e+02 -4.229700e+02
+15 623     -8.089600e+02 5.177000e+02
+0 624     -5.212800e+02 2.832400e+02
+1 624     -1.902800e+02 4.253700e+02
+5 624     -1.347700e+02 -3.785000e+02
+7 624     -7.275500e+02 2.795400e+02
+8 624     -5.930600e+02 -3.173999e+01
+10 624     -7.511600e+02 4.275200e+02
+11 624     -3.223800e+02 -4.554400e+02
+13 624     -2.313500e+02 -4.097998e+01
+15 624     -7.775000e+02 4.544100e+02
+0 625     -5.014100e+02 3.858100e+02
+1 625     -1.483700e+02 5.179500e+02
+5 625     -9.867999e+01 -2.668900e+02
+7 625     -7.219200e+02 3.926200e+02
+10 625     -7.435400e+02 5.562800e+02
+11 625     -2.965300e+02 -3.647000e+02
+14 625     -1.809800e+02 -3.620700e+02
+0 626     -2.941400e+02 4.484700e+02
+1 626     6.588000e+01 5.296400e+02
+2 626     -5.755900e+02 1.980700e+02
+4 626     6.640015e+00 -1.872500e+02
+5 626     1.130400e+02 -2.048200e+02
+7 626     -5.138400e+02 4.828100e+02
+8 626     -3.925700e+02 1.440700e+02
+11 626     -1.129400e+02 -3.127300e+02
+12 626     -6.243400e+02 4.042900e+02
+0 627     -3.431900e+02 3.499100e+02
+1 627     -5.059998e+00 4.458600e+02
+2 627     -6.242800e+02 7.377002e+01
+8 627     -4.316600e+02 4.560999e+01
+10 627     -5.408600e+02 5.243200e+02
+12 627     -6.648500e+02 2.741300e+02
+13 627     -8.346997e+01 2.465002e+01
+0 628     -4.905800e+02 3.828200e+02
+1 628     -1.387900e+02 5.127800e+02
+5 628     -8.870001e+01 -2.707600e+02
+8 628     -5.640200e+02 7.398001e+01
+10 628     -7.290100e+02 5.533100e+02
+11 628     -2.871500e+02 -3.668900e+02
+14 628     -1.705100e+02 -3.651800e+02
+0 629     -3.421700e+02 4.332100e+02
+1 629     1.506000e+01 5.264900e+02
+2 629     -6.264200e+02 1.783700e+02
+5 629     6.416998e+01 -2.196900e+02
+7 629     -5.614100e+02 4.616800e+02
+8 629     -4.325300e+02 1.288200e+02
+12 629     -6.790700e+02 3.776000e+02
+14 629     -1.990002e+01 -3.116900e+02
+0 630     -5.441000e+02 3.136800e+02
+1 630     -2.046500e+02 4.595100e+02
+5 630     -1.526200e+02 -3.439400e+02
+10 630     -7.854300e+02 4.633500e+02
+13 630     -2.483300e+02 -1.471002e+01
+14 630     -2.339600e+02 -4.405100e+02
+15 630     -8.155700e+02 4.942700e+02
+0 631     -4.262900e+02 4.639000e+02
+1 631     -5.928003e+01 5.755600e+02
+2 631     -7.158900e+02 2.185700e+02
+5 631     -1.469000e+01 -1.857400e+02
+7 631     -6.538800e+02 4.855200e+02
+12 631     -7.845900e+02 4.047800e+02
+14 631     -9.813000e+01 -2.797100e+02
+0 632     5.094000e+01 -8.045001e+01
+1 632     1.849800e+02 -6.440997e+01
+6 632     5.334003e+01 -5.484998e+01
+7 632     -1.956000e+01 4.296002e+01
+8 632     2.182100e+02 -8.522998e+01
+0 633     5.021500e+02 4.105300e+02
+1 633     8.718400e+02 2.911900e+02
+2 633     2.814100e+02 2.977600e+02
+3 633     1.399800e+02 -3.007001e+01
+6 633     1.876000e+02 5.494000e+02
+7 633     2.875200e+02 5.518200e+02
+8 633     2.988600e+02 2.235200e+02
+9 633     9.453003e+01 3.428700e+02
+11 633     6.070900e+02 -3.202500e+02
+12 633     2.976700e+02 5.388000e+02
+0 634     4.682200e+02 3.330700e+02
+1 634     8.108700e+02 2.167900e+02
+2 634     2.598800e+02 2.067600e+02
+6 634     1.613900e+02 4.494200e+02
+7 634     2.638000e+02 4.702700e+02
+10 634     4.220000e+02 5.841700e+02
+11 634     5.882600e+02 -3.947600e+02
+12 634     2.743400e+02 4.431800e+02
+13 634     6.297500e+02 6.975000e+01
+14 634     8.678400e+02 -3.783700e+02
+0 635     4.682200e+02 3.330700e+02
+1 635     8.108700e+02 2.167900e+02
+2 635     2.598800e+02 2.067600e+02
+6 635     1.613900e+02 4.494200e+02
+7 635     2.638000e+02 4.702700e+02
+8 635     2.805000e+02 1.505400e+02
+10 635     4.220000e+02 5.841700e+02
+11 635     5.882600e+02 -3.947600e+02
+12 635     2.743400e+02 4.431800e+02
+13 635     6.297500e+02 6.975000e+01
+14 635     8.678400e+02 -3.783700e+02
+0 636     4.679200e+02 3.224200e+02
+1 636     8.067800e+02 2.061000e+02
+6 636     1.623400e+02 4.386900e+02
+7 636     2.649100e+02 4.597900e+02
+8 636     2.819400e+02 1.420300e+02
+10 636     4.212300e+02 5.729600e+02
+12 636     2.746899e+02 4.330500e+02
+13 636     6.286500e+02 6.203998e+01
+14 636     8.673101e+02 -3.882600e+02
+0 637     4.882000e+02 3.473600e+02
+1 637     8.363101e+02 2.270600e+02
+3 637     1.401100e+02 -9.559998e+01
+6 637     1.843000e+02 4.725500e+02
+7 637     2.817500e+02 4.880200e+02
+10 637     4.449000e+02 6.036600e+02
+12 637     2.944399e+02 4.649700e+02
+0 638     5.877200e+02 1.234600e+02
+1 638     8.551100e+02 -3.570001e+01
+3 638     3.571400e+02 -2.153900e+02
+7 638     4.216300e+02 2.972800e+02
+8 638     4.627200e+02 5.251001e+01
+9 638     2.828900e+02 1.805900e+02
+12 638     4.915000e+02 2.787500e+02
+13 638     7.880500e+02 -8.720001e+01
+15 638     7.750200e+02 3.901900e+02
+0 639     1.585100e+02 -3.654999e+01
+1 639     3.020300e+02 -5.360999e+01
+2 639     3.274301e+02 3.060999e+01
+3 639     2.277400e+02 -2.763700e+02
+4 639     -3.212100e+02 -5.413199e+02
+6 639     1.575400e+02 3.084998e+01
+7 639     8.077002e+01 1.048400e+02
+8 639     2.996400e+02 -2.392999e+01
+9 639     1.618600e+02 1.224600e+02
+10 639     9.438000e+01 1.146800e+02
+12 639     1.766900e+02 7.856000e+01
+13 639     5.194100e+02 -2.391600e+02
+15 639     1.851400e+02 1.089200e+02
+0 640     5.766100e+02 1.101300e+02
+1 640     8.394900e+02 -4.678998e+01
+2 640     4.844399e+02 7.721002e+01
+3 640     3.497800e+02 -2.350000e+02
+6 640     3.967700e+02 2.488700e+02
+7 640     4.130400e+02 2.812900e+02
+8 640     4.566700e+02 3.606000e+01
+9 640     2.769200e+02 1.632200e+02
+10 640     5.670300e+02 3.299800e+02
+12 640     4.821200e+02 2.591800e+02
+13 640     7.842500e+02 -1.040000e+02
+15 640     7.616899e+02 3.689500e+02
+0 641     5.701600e+02 9.329001e+01
+1 641     8.273101e+02 -6.288000e+01
+2 641     4.818600e+02 5.610999e+01
+3 641     3.479700e+02 -2.558100e+02
+6 641     3.927200e+02 2.270600e+02
+7 641     4.087900e+02 2.633200e+02
+8 641     4.542900e+02 1.889999e+01
+9 641     2.754100e+02 1.454400e+02
+10 641     5.605900e+02 3.101200e+02
+12 641     4.788400e+02 2.370600e+02
+13 641     7.797500e+02 -1.204000e+02
+15 641     7.546500e+02 3.440800e+02
+0 642     4.958400e+02 3.920000e+02
+1 642     8.592900e+02 2.730200e+02
+2 642     2.779100e+02 2.772900e+02
+3 642     1.371700e+02 -5.009003e+01
+6 642     1.828500e+02 5.262600e+02
+7 642     2.836300e+02 5.326700e+02
+8 642     2.956200e+02 2.069300e+02
+9 642     9.240002e+01 3.248600e+02
+12 642     2.933101e+02 5.170800e+02
+13 642     6.516700e+02 1.229800e+02
+0 643     4.842500e+02 3.829300e+02
+1 643     8.438700e+02 2.659600e+02
+2 643     2.662200e+02 2.631500e+02
+3 643     1.263500e+02 -6.377002e+01
+6 643     1.693200e+02 5.125400e+02
+7 643     2.730500e+02 5.218800e+02
+8 643     2.861600e+02 1.958900e+02
+9 643     8.334003e+01 3.125000e+02
+12 643     2.813000e+02 5.029100e+02
+14 643     8.784600e+02 -3.225800e+02
+0 644     4.962800e+02 3.433800e+02
+1 644     8.436000e+02 2.205000e+02
+2 644     2.901500e+02 2.287300e+02
+3 644     1.502700e+02 -9.609998e+01
+6 644     1.962500e+02 4.691400e+02
+7 644     2.904000e+02 4.850300e+02
+8 644     3.056500e+02 1.671600e+02
+10 644     4.541801e+02 5.995500e+02
+11 644     6.129100e+02 -3.843600e+02
+12 644     3.061500e+02 4.622800e+02
+13 644     6.568199e+02 8.145001e+01
+0 645     5.924900e+02 1.460200e+02
+1 645     8.675601e+02 -1.382001e+01
+2 645     4.932800e+02 1.218000e+02
+3 645     3.563600e+02 -1.915600e+02
+6 645     4.069100e+02 2.951800e+02
+7 645     4.238700e+02 3.192500e+02
+8 645     4.638000e+02 7.163000e+01
+9 645     2.828400e+02 2.009200e+02
+10 645     5.821500e+02 3.736400e+02
+12 645     4.919600e+02 3.041400e+02
+15 645     7.801600e+02 4.214900e+02
+0 646     1.405000e+02 -2.517999e+01
+1 646     2.870100e+02 -3.660999e+01
+2 646     3.065100e+02 3.871002e+01
+3 646     2.084800e+02 -2.687100e+02
+4 646     -3.100700e+02 -5.267800e+02
+7 646     6.106000e+01 1.132900e+02
+8 646     2.830300e+02 -1.809000e+01
+9 646     1.445800e+02 1.283700e+02
+10 646     7.247998e+01 1.258200e+02
+12 646     1.545500e+02 8.571002e+01
+13 646     5.026300e+02 -2.308300e+02
+15 646     1.587800e+02 1.220000e+02
+0 647     2.659973e+00 -7.395001e+01
+1 647     1.424800e+02 -4.412000e+01
+2 647     1.698100e+02 -5.550000e+01
+3 647     8.544000e+01 -3.643000e+02
+4 647     -3.243700e+02 -4.111300e+02
+7 647     -7.090997e+01 3.938000e+01
+8 647     1.677000e+02 -9.425000e+01
+9 647     3.907001e+01 4.341998e+01
+10 647     -8.254999e+01 5.540997e+01
+13 647     3.810800e+02 -2.858200e+02
+15 647     -2.112000e+01 3.725000e+01
+0 648     5.611500e+02 2.203100e+02
+1 648     8.585800e+02 7.453998e+01
+2 648     4.385000e+02 1.820000e+02
+3 648     3.005500e+02 -1.360900e+02
+7 648     3.830100e+02 3.856400e+02
+8 648     4.205699e+02 1.223000e+02
+9 648     2.347100e+02 2.498200e+02
+10 648     5.401600e+02 4.592500e+02
+11 648     6.942600e+02 -5.045300e+02
+12 648     4.378900e+02 3.753500e+02
+13 648     7.564301e+02 -9.640015e+00
+15 648     7.273600e+02 5.216000e+02
+0 649     -3.608002e+01 4.551001e+01
+1 649     1.440400e+02 8.307999e+01
+3 649     -1.359003e+01 -2.703400e+02
+7 649     -1.333500e+02 1.494800e+02
+8 649     9.313000e+01 -8.130005e+00
+10 649     -1.400100e+02 1.905100e+02
+15 649     -8.900000e+01 1.942700e+02
+0 650     1.881200e+02 -4.754999e+01
+1 650     3.286000e+02 -7.384998e+01
+2 650     3.595699e+02 2.378998e+01
+3 650     2.597800e+02 -2.808200e+02
+10 650     1.299000e+02 1.057100e+02
+15 650     2.265900e+02 9.809000e+01
+0 651     1.745000e+02 -6.134003e+01
+1 651     3.109500e+02 -8.321002e+01
+2 651     3.520601e+02 7.900024e+00
+6 651     1.804400e+02 8.760010e+00
+7 651     9.977002e+01 8.285999e+01
+8 651     3.186500e+02 -4.273001e+01
+13 651     5.352000e+02 -2.597800e+02
+15 651     2.096200e+02 7.750000e+01
+0 652     -3.521002e+01 6.559998e+00
+1 652     1.327100e+02 4.463000e+01
+3 652     7.020020e+00 -3.032900e+02
+4 652     -2.646200e+02 -3.835800e+02
+6 652     -8.937000e+01 6.400024e+00
+7 652     -1.246900e+02 1.121000e+02
+8 652     1.066600e+02 -4.010001e+01
+10 652     -1.349000e+02 1.448400e+02
+13 652     3.350300e+02 -2.200300e+02
+15 652     -8.265002e+01 1.416000e+02
+0 653     7.090027e+00 -2.256000e+01
+1 653     1.611000e+02 4.890015e+00
+2 653     1.610700e+02 1.300049e-01
+3 653     7.327002e+01 -3.091200e+02
+4 653     -2.889000e+02 -4.176200e+02
+6 653     -1.978003e+01 -6.440002e+00
+7 653     -7.445001e+01 9.157001e+01
+8 653     1.610500e+02 -4.692999e+01
+9 653     2.689001e+01 9.154999e+01
+10 653     -8.271002e+01 1.153700e+02
+13 653     3.808199e+02 -2.409100e+02
+15 653     -2.181000e+01 1.070700e+02
+0 654     1.453003e+01 -2.770001e+01
+1 654     1.666200e+02 -2.780029e+00
+2 654     1.730700e+02 -1.469971e+00
+3 654     8.445001e+01 -3.106100e+02
+7 654     -6.537000e+01 8.806000e+01
+9 654     3.765997e+01 9.029999e+01
+10 654     -7.337000e+01 1.102500e+02
+13 654     3.897600e+02 -2.445600e+02
+15 654     -1.107001e+01 1.009400e+02
+0 655     2.440002e+01 -3.365002e+01
+1 655     1.735300e+02 -1.089001e+01
+2 655     1.865700e+02 -3.869995e+00
+9 655     4.821002e+01 8.895001e+01
+13 655     3.990000e+02 -2.487000e+02
+15 655     2.979980e+00 9.441000e+01
+0 656     1.463500e+02 -7.447998e+01
+1 656     2.793300e+02 -8.770001e+01
+2 656     3.284500e+02 -1.182001e+01
+3 656     2.316400e+02 -3.166800e+02
+6 656     1.559700e+02 -1.479999e+01
+7 656     7.470001e+01 6.515997e+01
+8 656     2.985900e+02 -5.920001e+01
+13 656     5.125300e+02 -2.734300e+02
+15 656     1.732400e+02 5.584003e+01
+0 657     1.463500e+02 -7.447998e+01
+1 657     2.793300e+02 -8.770001e+01
+2 657     3.284500e+02 -1.182001e+01
+3 657     2.316400e+02 -3.166800e+02
+4 657     -3.477900e+02 -5.306400e+02
+6 657     1.559700e+02 -1.479999e+01
+7 657     7.470001e+01 6.515997e+01
+8 657     2.985900e+02 -5.920001e+01
+10 657     8.410999e+01 7.044000e+01
+13 657     5.125300e+02 -2.734300e+02
+15 657     1.732400e+02 5.584003e+01
+0 658     -1.558002e+01 -2.339001e+01
+1 658     1.403900e+02 1.041998e+01
+2 658     1.333300e+02 -1.109003e+01
+3 658     4.621997e+01 -3.211100e+02
+6 658     -4.839001e+01 -1.781000e+01
+7 658     -9.795001e+01 8.639999e+01
+8 658     1.382400e+02 -5.651999e+01
+10 658     -1.091900e+02 1.125000e+02
+12 658     -3.600000e+01 3.671002e+01
+13 658     3.593500e+02 -2.439700e+02
+15 658     -5.233002e+01 1.035800e+02
+0 659     1.419000e+02 -8.204999e+01
+1 659     2.716700e+02 -9.356000e+01
+2 659     3.267500e+02 -2.135999e+01
+3 659     2.313600e+02 -3.251100e+02
+6 659     1.532400e+02 -2.525000e+01
+7 659     7.122998e+01 5.690002e+01
+8 659     2.967400e+02 -6.695001e+01
+10 659     7.928003e+01 6.106000e+01
+12 659     1.695600e+02 2.115997e+01
+15 659     1.681000e+02 4.503003e+01
+0 660     -6.535999e+01 -3.159973e+00
+1 660     1.038400e+02 4.370001e+01
+3 660     -3.322998e+01 -3.341800e+02
+4 660     -2.675800e+02 -3.576300e+02
+6 660     -1.307600e+02 -1.817999e+01
+7 660     -1.558700e+02 9.451999e+01
+8 660     7.354999e+01 -6.202002e+01
+10 660     -1.692000e+02 1.310600e+02
+12 660     -1.120300e+02 3.732001e+01
+13 660     3.043700e+02 -2.335300e+02
+15 660     -1.212800e+02 1.239200e+02
+0 661     4.910400e+02 4.087800e+02
+1 661     8.599200e+02 2.918800e+02
+2 661     2.692900e+02 2.910800e+02
+3 661     1.279500e+02 -3.687000e+01
+6 661     1.731100e+02 5.438200e+02
+7 661     2.769900e+02 5.478300e+02
+8 661     2.886600e+02 2.183700e+02
+9 661     8.481000e+01 3.365900e+02
+11 661     5.961899e+02 -3.219900e+02
+12 661     2.842400e+02 5.332900e+02
+13 661     6.460601e+02 1.359900e+02
+0 662     -1.821997e+01 -8.539978e+00
+1 662     1.426700e+02 2.546997e+01
+2 662     1.245300e+02 1.849976e+00
+3 662     3.771002e+01 -3.073300e+02
+7 662     -1.032800e+02 9.995001e+01
+10 662     -1.132200e+02 1.290900e+02
+13 662     3.553300e+02 -2.321300e+02
+15 662     -5.809998e+01 1.226200e+02
+0 663     -4.523999e+01 -8.880005e+00
+1 663     1.192800e+02 3.307001e+01
+2 663     8.427002e+01 -1.365002e+01
+3 663     -5.800171e-01 -3.258600e+02
+4 663     -2.734500e+02 -3.741400e+02
+6 663     -9.670001e+01 -1.528998e+01
+7 663     -1.328500e+02 9.382001e+01
+8 663     1.000300e+02 -5.750000e+01
+10 663     -1.447700e+02 1.246100e+02
+12 663     -8.100000e+01 3.979999e+01
+13 663     3.266100e+02 -2.359800e+02
+15 663     -9.384998e+01 1.185100e+02
+0 664     5.825000e+01 -6.165997e+01
+1 664     1.970000e+02 -4.839001e+01
+2 664     2.358800e+02 -2.100000e+01
+7 664     -1.485999e+01 6.237000e+01
+10 664     -1.945001e+01 7.520001e+01
+15 664     5.165002e+01 6.088000e+01
+0 665     5.825000e+01 -6.165997e+01
+1 665     1.970000e+02 -4.839001e+01
+2 665     2.358800e+02 -2.100000e+01
+3 665     1.454300e+02 -3.273000e+02
+4 665     -3.235300e+02 -4.581100e+02
+6 665     5.487000e+01 -2.915997e+01
+7 665     -1.485999e+01 6.237000e+01
+8 665     2.210100e+02 -6.589001e+01
+10 665     -1.945001e+01 7.520001e+01
+15 665     5.165002e+01 6.088000e+01
+0 666     8.319000e+01 -8.078003e+01
+1 666     2.152800e+02 -7.433002e+01
+2 666     2.686801e+02 -3.406000e+01
+3 666     1.769800e+02 -3.391700e+02
+4 666     -3.416400e+02 -4.782700e+02
+6 666     9.060999e+01 -4.294000e+01
+7 666     1.346997e+01 4.809003e+01
+8 666     2.479100e+02 -7.703998e+01
+9 666     1.173000e+02 6.719000e+01
+10 666     1.162000e+01 5.609998e+01
+12 666     1.032600e+02 6.580017e+00
+13 666     4.580300e+02 -2.839500e+02
+15 666     8.845001e+01 3.875000e+01
+0 667     8.887000e+01 -5.883002e+01
+1 667     2.268600e+02 -5.441998e+01
+2 667     2.678600e+02 -8.049988e+00
+3 667     1.751500e+02 -3.139500e+02
+6 667     9.113000e+01 -1.403003e+01
+7 667     1.550000e+01 7.112000e+01
+8 667     2.483900e+02 -5.500000e+01
+10 667     1.577002e+01 8.194000e+01
+13 667     4.608800e+02 -2.645700e+02
+15 667     9.290002e+01 6.919000e+01
+0 668     -3.055400e+02 3.808100e+02
+1 668     3.889001e+01 4.664900e+02
+2 668     -5.858600e+02 1.133400e+02
+5 668     9.441998e+01 -2.767700e+02
+7 668     -5.162100e+02 4.103100e+02
+8 668     -3.999800e+02 7.744000e+01
+10 668     -4.996900e+02 5.657100e+02
+11 668     -1.249400e+02 -3.713100e+02
+12 668     -6.265200e+02 3.185400e+02
+13 668     -5.290997e+01 5.307001e+01
+14 668     1.157001e+01 -3.676400e+02
+0 669     -3.972500e+02 4.260000e+02
+1 669     -4.004999e+01 5.326200e+02
+2 669     -6.844900e+02 1.705300e+02
+5 669     8.940002e+00 -2.262300e+02
+7 669     -6.177300e+02 4.479900e+02
+8 669     -4.813900e+02 1.204400e+02
+10 669     -6.191800e+02 6.142700e+02
+11 669     -2.040800e+02 -3.311600e+02
+12 669     -7.432500e+02 3.616200e+02
+13 669     -1.253000e+02 8.895999e+01
+14 669     -7.446002e+01 -3.191100e+02
+0 670     -4.685500e+02 4.039200e+02
+1 670     -1.131500e+02 5.276600e+02
+5 670     -6.415002e+01 -2.482700e+02
+8 670     -5.448600e+02 9.632001e+01
+10 670     -7.047200e+02 5.810800e+02
+11 670     -2.664800e+02 -3.487300e+02
+12 670     -8.267700e+02 3.222500e+02
+0 671     -4.407300e+02 3.924800e+02
+1 671     -8.929999e+01 5.103200e+02
+2 671     -7.320400e+02 1.271400e+02
+5 671     -3.796997e+01 -2.612900e+02
+7 671     -6.583500e+02 4.068300e+02
+10 671     -6.680600e+02 5.691400e+02
+11 671     -2.441600e+02 -3.590700e+02
+12 671     -7.901300e+02 3.119500e+02
+14 671     -1.203100e+02 -3.549500e+02
+0 672     -3.226000e+02 4.420100e+02
+1 672     3.657001e+01 5.305100e+02
+2 672     -6.049800e+02 1.910100e+02
+5 672     8.440002e+01 -2.104600e+02
+7 672     -5.421600e+02 4.733300e+02
+8 672     -4.164700e+02 1.388200e+02
+11 672     -1.379400e+02 -3.178900e+02
+12 672     -6.566500e+02 3.931600e+02
+0 673     -5.460400e+02 3.291900e+02
+1 673     -2.030100e+02 4.748500e+02
+5 673     -1.509500e+02 -3.255900e+02
+11 673     -3.403600e+02 -4.131400e+02
+13 673     -2.492600e+02 -1.630005e+00
+14 673     -2.336000e+02 -4.233200e+02
+15 673     -8.211700e+02 5.164300e+02
+0 674     -3.190000e+02 4.012700e+02
+1 674     3.051001e+01 4.899900e+02
+2 674     -6.004500e+02 1.391800e+02
+4 674     -1.729999e+01 -1.689000e+02
+5 674     8.359998e+01 -2.543400e+02
+7 674     -5.326300e+02 4.304800e+02
+8 674     -4.121900e+02 9.760001e+01
+10 674     -5.189800e+02 5.895700e+02
+11 674     -1.362800e+02 -3.533700e+02
+12 674     -6.457500e+02 3.422900e+02
+14 674     3.400269e-01 -3.453800e+02
+0 675     -4.754700e+02 3.916000e+02
+1 675     -1.224700e+02 5.176000e+02
+5 675     -7.303003e+01 -2.615400e+02
+10 675     -7.115300e+02 5.656300e+02
+11 675     -2.735600e+02 -3.597400e+02
+14 675     -1.546000e+02 -3.559000e+02
+0 676     -5.499400e+02 3.263300e+02
+1 676     -2.071800e+02 4.729600e+02
+4 676     -3.878003e+01 -3.798999e+01
+5 676     -1.567600e+02 -3.297100e+02
+10 676     -7.934800e+02 4.781000e+02
+11 676     -3.437700e+02 -4.159200e+02
+13 676     -2.523800e+02 -3.820007e+00
+14 676     -2.379200e+02 -4.264000e+02
+15 676     -8.261600e+02 5.112500e+02
+0 677     -3.459500e+02 3.427100e+02
+1 677     -9.530029e+00 4.397800e+02
+2 677     -6.270600e+02 6.437000e+01
+5 677     5.013000e+01 -3.173500e+02
+7 677     -5.523100e+02 3.651800e+02
+8 677     -4.346700e+02 3.810001e+01
+10 677     -5.433200e+02 5.152200e+02
+11 677     -1.629100e+02 -4.054300e+02
+14 677     -3.177002e+01 -4.093600e+02
+15 677     -5.427700e+02 5.608100e+02
+0 678     -4.371500e+02 4.083000e+02
+1 678     -8.239001e+01 5.245300e+02
+2 678     -7.277900e+02 1.474800e+02
+5 678     -3.225000e+01 -2.442800e+02
+7 678     -6.569400e+02 4.244000e+02
+10 678     -6.662500e+02 5.894100e+02
+12 678     -7.882500e+02 3.327500e+02
+13 678     -1.574200e+02 7.182001e+01
+14 678     -1.149100e+02 -3.381200e+02
+0 679     -5.499400e+02 3.263300e+02
+1 679     -2.071800e+02 4.729600e+02
+4 679     -3.878003e+01 -3.798999e+01
+5 679     -1.567600e+02 -3.297100e+02
+10 679     -7.934800e+02 4.781000e+02
+11 679     -3.437700e+02 -4.159200e+02
+13 679     -2.523800e+02 -3.820007e+00
+14 679     -2.379200e+02 -4.264000e+02
+15 679     -8.261600e+02 5.112500e+02
+0 680     -5.586300e+02 3.733500e+02
+1 680     -2.046400e+02 5.192100e+02
+4 680     -1.284003e+01 -3.965997e+01
+5 680     -1.570000e+02 -2.785000e+02
+7 680     -7.815000e+02 3.721900e+02
+10 680     -8.144100e+02 5.366600e+02
+14 680     -2.390800e+02 -3.748100e+02
+15 680     -8.478100e+02 5.766100e+02
+0 681     -5.680700e+02 3.392500e+02
+1 681     -2.211700e+02 4.893800e+02
+5 681     -1.722700e+02 -3.152600e+02
+7 681     -7.867800e+02 3.343900e+02
+10 681     -8.201400e+02 4.931700e+02
+11 681     -3.584500e+02 -4.039400e+02
+15 681     -8.544200e+02 5.271900e+02
+0 682     -4.011300e+02 3.989200e+02
+1 682     -4.965002e+01 5.070600e+02
+2 682     -6.882600e+02 1.354100e+02
+5 682     1.890015e+00 -2.555200e+02
+7 682     -6.175900e+02 4.183500e+02
+8 682     -4.834900e+02 9.289001e+01
+10 682     -6.197100e+02 5.801700e+02
+11 682     -2.082900e+02 -3.549000e+02
+12 682     -7.425600e+02 3.261200e+02
+13 682     -1.289600e+02 6.503003e+01
+14 682     -8.060999e+01 -3.482800e+02
+0 683     -4.119300e+02 3.940500e+02
+1 683     -6.138000e+01 5.050300e+02
+2 683     -7.000200e+02 1.290700e+02
+7 683     -6.282100e+02 4.120700e+02
+10 683     -6.326500e+02 5.731200e+02
+11 683     -2.182700e+02 -3.588600e+02
+12 683     -7.553000e+02 3.184300e+02
+13 683     -1.377100e+02 6.032001e+01
+0 684     -4.461100e+02 3.948200e+02
+1 684     -9.384003e+01 5.137900e+02
+4 684     -1.056000e+01 -1.001200e+02
+5 684     -4.327002e+01 -2.590600e+02
+8 684     -5.238700e+02 8.751999e+01
+10 684     -6.754900e+02 5.714600e+02
+11 684     -2.479000e+02 -3.576800e+02
+12 684     -7.974900e+02 3.136500e+02
+13 684     -1.652700e+02 5.981000e+01
+14 684     -1.253100e+02 -3.527300e+02
+0 685     -3.904400e+02 4.214000e+02
+1 685     -3.445001e+01 5.263900e+02
+2 685     -6.771600e+02 1.643400e+02
+7 685     -6.100000e+02 4.437400e+02
+8 685     -4.747500e+02 1.157600e+02
+10 685     -6.100600e+02 6.092000e+02
+13 685     -1.197300e+02 8.479001e+01
+14 685     -6.816998e+01 -3.244200e+02
+0 686     -3.480100e+02 4.070700e+02
+1 686     3.619995e+00 5.026600e+02
+2 686     -6.315600e+02 1.457500e+02
+5 686     5.571997e+01 -2.472600e+02
+7 686     -5.636300e+02 4.334100e+02
+8 686     -4.370000e+02 1.031100e+02
+10 686     -5.553800e+02 5.944600e+02
+13 686     -8.615997e+01 7.410999e+01
+14 686     -2.778998e+01 -3.394100e+02
+0 687     -5.602800e+02 3.419400e+02
+1 687     -2.129700e+02 4.899600e+02
+5 687     -1.649500e+02 -3.129000e+02
+7 687     -7.781200e+02 3.382500e+02
+10 687     -8.105400e+02 4.971400e+02
+15 687     -8.439600e+02 5.321400e+02
+0 688     -4.535200e+02 4.044000e+02
+1 688     -9.873999e+01 5.240400e+02
+5 688     -4.867999e+01 -2.492400e+02
+8 688     -5.296600e+02 9.545999e+01
+10 688     -6.860400e+02 5.832900e+02
+11 688     -2.539000e+02 -3.494200e+02
+12 688     -8.063900e+02 3.230800e+02
+0 689     -3.682700e+02 4.159400e+02
+1 689     -1.384998e+01 5.159400e+02
+2 689     -6.529400e+02 1.573800e+02
+5 689     3.628998e+01 -2.380700e+02
+10 689     -5.819200e+02 6.039900e+02
+11 689     -1.789700e+02 -3.401900e+02
+12 689     -7.060500e+02 3.532700e+02
+13 689     -1.022200e+02 8.076999e+01
+14 689     -4.684003e+01 -3.301300e+02
+0 690     -5.351800e+02 3.264900e+02
+1 690     -1.930600e+02 4.698500e+02
+5 690     -1.416000e+02 -3.302300e+02
+11 690     -3.307700e+02 -4.160600e+02
+15 690     -8.058800e+02 5.130900e+02
+0 691     -5.438100e+02 4.032300e+02
+1 691     -1.842700e+02 5.441100e+02
+4 691     1.950012e+00 -5.084003e+01
+5 691     -1.381300e+02 -2.472000e+02
+7 691     -7.700800e+02 4.065900e+02
+10 691     -8.007300e+02 5.749900e+02
+11 691     -3.313500e+02 -3.489000e+02
+13 691     -2.423400e+02 6.315002e+01
+14 691     -2.198400e+02 -3.431400e+02
+0 692     -5.035100e+02 1.737000e+02
+1 692     -2.038500e+02 3.174800e+02
+0 693     -5.039500e+02 3.728400e+02
+1 693     -1.537500e+02 5.073300e+02
+4 693     -1.826001e+01 -6.779999e+01
+5 693     -1.032600e+02 -2.821000e+02
+10 693     -7.436500e+02 5.396400e+02
+13 693     -2.124600e+02 3.858002e+01
+14 693     -1.850200e+02 -3.761100e+02
+15 693     -7.704200e+02 5.829500e+02
+0 694     -3.620300e+02 4.249400e+02
+1 694     -6.150024e+00 5.235000e+02
+2 694     -6.462700e+02 1.686300e+02
+5 694     4.364001e+01 -2.277800e+02
+7 694     -5.809900e+02 4.511900e+02
+8 694     -4.502500e+02 1.205400e+02
+10 694     -5.755500e+02 6.157800e+02
+13 694     -9.678998e+01 8.926999e+01
+0 695     -5.446200e+02 3.069500e+02
+1 695     -2.066100e+02 4.535000e+02
+4 695     -4.960999e+01 -3.839001e+01
+0 696     -5.446200e+02 3.069500e+02
+1 696     -2.066100e+02 4.535000e+02
+4 696     -4.960999e+01 -3.839001e+01
+5 696     -1.543800e+02 -3.512700e+02
+11 696     -3.409000e+02 -4.336400e+02
+15 696     -8.151600e+02 4.847300e+02
+0 697     -5.680700e+02 3.392500e+02
+1 697     -2.211700e+02 4.893800e+02
+5 697     -1.722700e+02 -3.152600e+02
+7 697     -7.867800e+02 3.343900e+02
+10 697     -8.201400e+02 4.931700e+02
+11 697     -3.584500e+02 -4.039400e+02
+13 697     -2.666400e+02 6.739990e+00
+14 697     -2.543400e+02 -4.120400e+02
+15 697     -8.544200e+02 5.271900e+02
+0 698     -4.896400e+02 3.967500e+02
+1 698     -1.347500e+02 5.257800e+02
+4 698     -5.820007e+00 -7.778998e+01
+5 698     -8.579999e+01 -2.554500e+02
+7 698     -7.108000e+02 4.058600e+02
+8 698     -5.631900e+02 8.856000e+01
+10 698     -7.304500e+02 5.708100e+02
+11 698     -2.853500e+02 -3.553000e+02
+13 698     -1.999700e+02 5.982001e+01
+0 699     -3.682700e+02 4.159400e+02
+1 699     -1.384998e+01 5.159400e+02
+2 699     -6.529400e+02 1.573800e+02
+5 699     3.628998e+01 -2.380700e+02
+7 699     -5.857300e+02 4.404800e+02
+10 699     -5.819200e+02 6.039900e+02
+11 699     -1.789700e+02 -3.401900e+02
+12 699     -7.060500e+02 3.532700e+02
+13 699     -1.022200e+02 8.076999e+01
+14 699     -4.684003e+01 -3.301300e+02
+0 700     -5.627800e+02 3.374100e+02
+1 700     -2.166500e+02 4.863300e+02
+4 700     -3.177002e+01 -3.290997e+01
+5 700     -1.675600e+02 -3.173700e+02
+7 700     -7.805900e+02 3.330000e+02
+10 700     -8.130800e+02 4.915400e+02
+11 700     -3.534800e+02 -4.058500e+02
+13 700     -2.621700e+02 5.500000e+00
+14 700     -2.489600e+02 -4.141100e+02
+15 700     -8.468900e+02 5.253200e+02
+0 701     -5.154500e+02 3.989800e+02
+1 701     -1.587500e+02 5.339400e+02
+4 701     -2.469971e+00 -6.473999e+01
+5 701     -1.110600e+02 -2.521600e+02
+7 701     -7.392700e+02 4.058400e+02
+8 701     -5.873700e+02 9.079001e+01
+10 701     -7.635800e+02 5.718800e+02
+11 701     -3.077000e+02 -3.528600e+02
+13 701     -2.210100e+02 6.146997e+01
+14 701     -1.932600e+02 -3.473400e+02
+0 702     -3.481700e+02 4.287100e+02
+1 702     8.409973e+00 5.233800e+02
+2 702     -6.317200e+02 1.735500e+02
+4 702     1.500244e-01 -1.559800e+02
+5 702     5.765997e+01 -2.244800e+02
+7 702     -5.668500e+02 4.561000e+02
+8 702     -4.382200e+02 1.234300e+02
+11 702     -1.610200e+02 -3.294500e+02
+12 702     -6.848800e+02 3.718600e+02
+13 702     -8.540997e+01 9.285001e+01
+14 702     -2.564001e+01 -3.165100e+02
+0 703     -4.444400e+02 4.115200e+02
+1 703     -8.848999e+01 5.295000e+02
+2 703     -7.360100e+02 1.517200e+02
+7 703     -6.651200e+02 4.271100e+02
+10 703     -6.761700e+02 5.925800e+02
+12 703     -7.981800e+02 3.358300e+02
+0 704     -3.777100e+02 -5.219971e+00
+1 704     -1.517500e+02 1.207100e+02
+7 704     -5.102800e+02 1.384998e+01
+15 704     -5.364400e+02 7.715002e+01
+0 705     -1.010000e+02 9.682001e+01
+1 705     1.130500e+02 1.471700e+02
+5 705     4.573700e+02 -5.723101e+02
+6 705     -2.621400e+02 6.419000e+01
+7 705     -2.217100e+02 1.801900e+02
+8 705     -2.595001e+01 -2.170999e+01
+10 705     -2.213400e+02 2.439400e+02
+12 705     -2.144400e+02 1.176800e+02
+13 705     2.351200e+02 -1.578100e+02
+15 705     -1.797000e+02 2.545900e+02
+0 706     2.707200e+02 5.072700e+02
+1 706     6.717000e+02 4.486800e+02
+2 706     -4.983002e+01 2.721700e+02
+3 706     -1.916600e+02 -6.103003e+01
+8 706     3.877002e+01 2.123000e+02
+9 706     -1.943200e+02 3.086500e+02
+11 706     3.917500e+02 -2.457700e+02
+0 707     9.453998e+01 5.453998e+01
+1 707     2.684200e+02 5.481000e+01
+3 707     1.301900e+02 -2.104900e+02
+6 707     5.042999e+01 1.101400e+02
+7 707     1.750000e+00 1.836100e+02
+8 707     2.159400e+02 3.707999e+01
+10 707     1.031000e+01 2.142000e+02
+12 707     7.040997e+01 1.630400e+02
+13 707     4.511500e+02 -1.671900e+02
+15 707     8.601001e+01 2.246100e+02
+0 708     1.415400e+02 1.271002e+01
+1 708     3.004800e+02 -4.998779e-02
+2 708     2.928900e+02 7.509998e+01
+3 708     1.935800e+02 -2.340400e+02
+7 708     5.564001e+01 1.506100e+02
+10 708     6.957001e+01 1.706000e+02
+15 708     1.554500e+02 1.740200e+02
+0 709     1.831899e+02 -9.880005e+00
+1 709     3.354600e+02 -3.509998e+01
+2 709     3.384301e+02 5.988000e+01
+3 709     2.374200e+02 -2.479000e+02
+4 709     -3.049600e+02 -5.610601e+02
+6 709     1.707100e+02 6.787000e+01
+7 709     9.947998e+01 1.347100e+02
+10 709     1.195600e+02 1.483100e+02
+12 709     1.935100e+02 1.155000e+02
+13 709     5.357600e+02 -2.143300e+02
+15 709     2.149200e+02 1.487900e+02
+0 710     2.474200e+02 -7.190002e+01
+1 710     3.840900e+02 -1.170200e+02
+2 710     4.100800e+02 -7.000732e-02
+6 710     2.491700e+02 1.462000e+01
+7 710     1.694900e+02 8.251001e+01
+8 710     3.700500e+02 -4.763000e+01
+10 710     1.998700e+02 8.325000e+01
+12 710     2.761899e+02 5.614001e+01
+13 710     5.942500e+02 -2.650200e+02
+15 710     3.119000e+02 7.275000e+01
+0 711     3.828500e+02 4.624500e+02
+1 711     7.862400e+02 3.712300e+02
+2 711     4.940002e+01 2.235800e+02
+5 711     7.909000e+02 -1.792800e+02
+7 711     1.415200e+02 5.687300e+02
+8 711     1.216900e+02 1.757100e+02
+9 711     -1.085600e+02 2.710300e+02
+11 711     5.021700e+02 -2.780300e+02
+12 711     1.000800e+02 5.185400e+02
+0 712     -2.638500e+02 5.716998e+01
+1 712     -2.428998e+01 1.479000e+02
+15 712     -3.875700e+02 1.775000e+02
+0 713     -3.100600e+02 2.223999e+01
+1 713     -8.017999e+01 1.282300e+02
+2 713     -4.243100e+02 -2.323300e+02
+10 713     -4.577600e+02 1.357700e+02
+13 713     2.270020e+00 -2.540400e+02
+15 713     -4.450300e+02 1.230800e+02
+0 714     -1.991900e+02 3.403800e+02
+1 714     1.349000e+02 4.002600e+02
+2 714     -4.744200e+02 6.362000e+01
+5 714     1.971700e+02 -3.227900e+02
+7 714     -4.030500e+02 3.801600e+02
+8 714     -3.091700e+02 4.048999e+01
+13 714     3.190002e+01 2.226001e+01
+14 714     1.145300e+02 -4.109100e+02
+0 715     1.565997e+01 4.723000e+02
+1 715     3.852100e+02 4.766000e+02
+2 715     -2.745200e+02 2.294400e+02
+4 715     -2.159973e+00 -3.669700e+02
+8 715     -1.465100e+02 1.732300e+02
+12 715     -2.831400e+02 4.769600e+02
+14 715     3.287600e+02 -2.641900e+02
+0 716     -4.524100e+02 4.170800e+02
+1 716     -9.478003e+01 5.364600e+02
+2 716     -7.448000e+02 1.592700e+02
+5 716     -4.665002e+01 -2.346300e+02
+8 716     -5.301900e+02 1.100900e+02
+10 716     -6.866900e+02 5.988900e+02
+12 716     -8.087200e+02 3.416800e+02
+14 716     -1.291300e+02 -3.285400e+02
+0 717     -1.152300e+02 -4.971801e+02
+1 717     -8.898999e+01 -4.119400e+02
+0 718     2.983400e+02 5.797000e+02
+1 718     7.240500e+02 5.188000e+02
+6 718     -1.736600e+02 6.797400e+02
+8 718     4.941998e+01 2.717200e+02
+9 718     -1.869300e+02 3.753300e+02
+11 718     4.077900e+02 -1.834200e+02
+13 718     4.225300e+02 2.551500e+02
+14 718     5.974700e+02 -1.410500e+02
+0 719     -2.752100e+02 4.217300e+02
+1 719     7.834003e+01 4.989600e+02
+7 719     -4.906300e+02 4.567900e+02
+8 719     -3.756900e+02 1.185100e+02
+12 719     -5.975000e+02 3.739800e+02
+13 719     -2.765002e+01 8.964999e+01
+0 720     -2.584900e+02 4.176100e+02
+1 720     9.407001e+01 4.912100e+02
+2 720     -5.376800e+02 1.606700e+02
+4 720     -1.309998e+01 -2.035700e+02
+5 720     1.450000e+02 -2.377200e+02
+7 720     -4.732600e+02 4.546900e+02
+8 720     -3.611800e+02 1.156200e+02
+10 720     -4.475700e+02 6.148700e+02
+11 720     -8.228003e+01 -3.391500e+02
+12 720     -5.778300e+02 3.724600e+02
+14 720     6.103998e+01 -3.272000e+02
+0 721     2.268500e+02 -3.420001e+01
+1 721     3.732500e+02 -7.283002e+01
+2 721     3.830000e+02 3.928003e+01
+3 721     2.781801e+02 -2.666900e+02
+6 721     2.202200e+02 5.207001e+01
+7 721     1.447500e+02 1.171300e+02
+10 721     1.724900e+02 1.248500e+02
+13 721     5.739900e+02 -2.327300e+02
+0 722     8.159998e+01 -1.626001e+01
+1 722     2.327400e+02 -1.034998e+01
+3 722     1.502900e+02 -2.765500e+02
+4 722     -2.946400e+02 -4.786300e+02
+8 722     2.299000e+02 -2.254001e+01
+9 722     9.551001e+01 1.225300e+02
+10 722     3.099976e+00 1.308500e+02
+12 722     8.226001e+01 7.813000e+01
+13 722     4.505000e+02 -2.278100e+02
+15 722     7.708002e+01 1.257200e+02
+0 723     1.575200e+02 -1.488100e+02
+1 723     2.663500e+02 -1.641800e+02
+2 723     3.714100e+02 -8.290997e+01
+3 723     2.768500e+02 -3.827700e+02
+7 723     9.881000e+01 -6.109985e+00
+10 723     1.036500e+02 -1.446997e+01
+13 723     5.328300e+02 -3.375100e+02
+15 723     1.983700e+02 -4.347998e+01
+0 724     5.065200e+02 3.321400e+02
+1 724     8.508600e+02 2.058500e+02
+7 724     3.024301e+02 4.762100e+02
+8 724     3.169000e+02 1.627200e+02
+9 724     1.177900e+02 2.793400e+02
+0 725     3.162800e+02 -1.061000e+02
+1 725     4.463101e+02 -1.743200e+02
+2 725     4.751899e+02 -2.903998e+01
+7 725     2.387600e+02 5.853998e+01
+10 725     2.827100e+02 5.144000e+01
+13 725     6.542800e+02 -2.911600e+02
+15 725     4.119500e+02 3.529999e+01
+0 726     1.968700e+02 -1.006100e+02
+1 726     3.230800e+02 -1.294400e+02
+3 726     2.793500e+02 -3.374800e+02
+15 726     2.460699e+02 2.717999e+01
+0 727     -2.704300e+02 4.298900e+02
+1 727     8.482001e+01 5.055900e+02
+2 727     -5.510300e+02 1.756100e+02
+4 727     -5.929993e+00 -1.977700e+02
+5 727     1.340800e+02 -2.253800e+02
+7 727     -4.871400e+02 4.659300e+02
+8 727     -3.726900e+02 1.253000e+02
+11 727     -9.279999e+01 -3.294600e+02
+12 727     -5.943900e+02 3.832700e+02
+13 727     -2.369000e+01 9.742001e+01
+14 727     4.984998e+01 -3.143500e+02
+0 728     -2.704300e+02 4.298900e+02
+1 728     8.482001e+01 5.055900e+02
+2 728     -5.510300e+02 1.756100e+02
+7 728     -4.871400e+02 4.659300e+02
+0 729     -1.444000e+01 5.471997e+01
+1 729     1.662400e+02 8.576001e+01
+3 729     9.919983e+00 -2.511800e+02
+7 729     -1.118100e+02 1.629800e+02
+10 729     -1.161000e+02 2.032000e+02
+15 729     -6.113000e+01 2.094700e+02
+0 730     3.272998e+01 -1.589800e+02
+1 730     1.432700e+02 -1.352100e+02
+3 730     1.623300e+02 -4.323600e+02
+7 730     -2.340997e+01 -3.903998e+01
+10 730     -3.865997e+01 -3.960999e+01
+12 730     6.859003e+01 -1.014400e+02
+13 730     4.230699e+02 -3.576800e+02
+15 730     3.053003e+01 -7.390002e+01
+0 731     1.433300e+02 3.609003e+01
+1 731     3.099000e+02 2.289001e+01
+7 731     5.244000e+01 1.737700e+02
+13 731     4.958500e+02 -1.784500e+02
+15 731     1.538101e+02 2.060200e+02
+0 732     1.433300e+02 3.609003e+01
+1 732     3.099000e+02 2.289001e+01
+7 732     5.244000e+01 1.737700e+02
+10 732     6.789001e+01 1.974100e+02
+13 732     4.958500e+02 -1.784500e+02
+15 732     1.538101e+02 2.060200e+02
+0 733     5.743900e+02 1.006100e+02
+1 733     8.342800e+02 -5.620001e+01
+2 733     4.823199e+02 6.721997e+01
+3 733     3.496899e+02 -2.460800e+02
+6 733     3.950700e+02 2.377900e+02
+8 733     4.567300e+02 2.734000e+01
+9 733     2.772700e+02 1.535200e+02
+10 733     5.644800e+02 3.195100e+02
+13 733     7.815601e+02 -1.119100e+02
+0 734     5.743900e+02 1.006100e+02
+1 734     8.342800e+02 -5.620001e+01
+2 734     4.823199e+02 6.721997e+01
+8 734     4.567300e+02 2.734000e+01
+10 734     5.644800e+02 3.195100e+02
+13 734     7.815601e+02 -1.119100e+02
+0 735     -4.454700e+02 4.019700e+02
+1 735     -9.166998e+01 5.206500e+02
+7 735     -6.646700e+02 4.164500e+02
+10 735     -6.753400e+02 5.801900e+02
+12 735     -7.974200e+02 3.229000e+02
+0 736     -2.699800e+02 4.510200e+02
+1 736     9.040997e+01 5.266300e+02
+2 736     -5.509500e+02 2.013700e+02
+5 736     1.368800e+02 -2.016000e+02
+7 736     -4.897000e+02 4.884700e+02
+11 736     -9.189001e+01 -3.102300e+02
+12 736     -5.969100e+02 4.113700e+02
+14 736     5.160999e+01 -2.924500e+02
+0 737     1.374800e+02 -1.700400e+02
+1 737     2.403700e+02 -1.786100e+02
+2 737     3.597300e+02 -1.100400e+02
+8 737     3.210400e+02 -1.413900e+02
+15 737     1.738000e+02 -7.496002e+01
+0 738     -2.369300e+02 4.013000e+02
+1 738     1.112900e+02 4.698100e+02
+2 738     -5.145200e+02 1.406600e+02
+7 738     -4.491900e+02 4.397200e+02
+12 738     -5.502100e+02 3.556800e+02
+0 739     -1.333700e+02 3.475700e+02
+1 739     2.024600e+02 3.900900e+02
+2 739     -4.080500e+02 7.475000e+01
+5 739     2.642500e+02 -3.154100e+02
+7 739     -3.379700e+02 3.953300e+02
+8 739     -2.550500e+02 5.023999e+01
+9 739     -4.910200e+02 1.235700e+02
+11 739     3.075000e+01 -4.017800e+02
+13 739     8.487000e+01 3.153003e+01
+14 739     1.805500e+02 -4.022400e+02
+0 740     4.585999e+01 5.623600e+02
+1 740     4.411801e+02 5.622900e+02
+8 740     -1.299800e+02 2.546500e+02
+9 740     -3.701800e+02 3.537600e+02
+11 740     1.846900e+02 -2.088000e+02
+12 740     -2.663200e+02 5.879400e+02
+0 741     -2.079500e+02 5.040800e+02
+1 741     1.648500e+02 5.643700e+02
+5 741     2.019600e+02 -1.461400e+02
+7 741     -4.339300e+02 5.513800e+02
+8 741     -3.234100e+02 1.989900e+02
+12 741     -5.347900e+02 4.857600e+02
+0 742     3.362000e+01 5.460700e+02
+1 742     4.239301e+02 5.484700e+02
+2 742     -2.638600e+02 3.123600e+02
+0 743     -2.146000e+02 4.062200e+02
+1 743     1.347600e+02 4.690900e+02
+2 743     -4.924900e+02 1.469700e+02
+8 743     -3.244800e+02 1.055300e+02
+11 743     -4.326001e+01 -3.492400e+02
+14 743     1.036500e+02 -3.393000e+02
+0 744     2.083199e+02 -5.617999e+01
+1 744     3.476200e+02 -8.885999e+01
+2 744     3.754301e+02 1.576001e+01
+6 744     2.099300e+02 2.334998e+01
+7 744     1.309400e+02 9.285999e+01
+8 744     3.399100e+02 -3.582001e+01
+10 744     1.539000e+02 9.752002e+01
+13 744     5.619200e+02 -2.527500e+02
+15 744     2.557800e+02 8.889001e+01
+0 745     2.495601e+02 -2.038600e+02
+1 745     3.420699e+02 -2.488700e+02
+2 745     4.735699e+02 -1.220500e+02
+6 745     3.059000e+02 -1.248400e+02
+7 745     1.964600e+02 -4.502002e+01
+8 745     4.175900e+02 -1.521900e+02
+10 745     2.160000e+02 -6.827002e+01
+12 745     3.274600e+02 -8.854999e+01
+13 745     6.197500e+02 -3.801300e+02
+15 745     3.314301e+02 -1.063700e+02
+0 746     7.065997e+01 -7.788000e+01
+1 746     2.041200e+02 -6.779999e+01
+2 746     2.538300e+02 -3.487000e+01
+3 746     1.643400e+02 -3.397700e+02
+7 746     2.100220e-01 4.853003e+01
+8 746     2.363800e+02 -7.737000e+01
+10 746     -3.000000e+00 5.840002e+01
+13 746     4.466300e+02 -2.827000e+02
+0 747     8.051001e+01 -3.753998e+01
+1 747     2.250699e+02 -3.104999e+01
+2 747     2.518000e+02 1.222998e+01
+3 747     1.586600e+02 -2.950800e+02
+4 747     -3.095200e+02 -4.772100e+02
+6 747     7.459998e+01 4.869995e+00
+7 747     3.719971e+00 9.082999e+01
+8 747     2.352100e+02 -3.894000e+01
+10 747     3.840027e+00 1.054600e+02
+12 747     8.787000e+01 5.606000e+01
+13 747     4.516801e+02 -2.463400e+02
+15 747     7.869000e+01 9.707001e+01
+0 748     -1.376600e+02 9.789999e+01
+1 748     8.312000e+01 1.573000e+02
+2 748     -1.431600e+02 -1.000000e+01
+3 748     -2.358400e+02 -3.296100e+02
+4 748     -1.984500e+02 -2.927300e+02
+5 748     4.018101e+02 -5.740699e+02
+6 748     -3.254200e+02 4.597998e+01
+7 748     -2.631200e+02 1.722700e+02
+8 748     -7.428003e+01 -4.056000e+01
+9 748     -2.361800e+02 6.791998e+01
+10 748     -2.643300e+02 2.415100e+02
+12 748     -2.687000e+02 1.002300e+02
+13 748     1.933800e+02 -1.619600e+02
+15 748     -2.283300e+02 2.509400e+02
+0 749     3.468500e+02 -6.328003e+01
+1 749     4.963700e+02 -1.422100e+02
+3 749     3.539700e+02 -3.031300e+02
+7 749     2.567500e+02 1.014200e+02
+8 749     4.228500e+02 -4.482999e+01
+9 749     2.739100e+02 1.014200e+02
+10 749     3.142100e+02 1.033700e+02
+12 749     3.663400e+02 7.783002e+01
+13 749     6.663000e+02 -2.540400e+02
+15 749     4.502400e+02 9.726001e+01
+0 750     6.509100e+02 -1.941998e+01
+1 750     8.767300e+02 -2.076400e+02
+2 750     6.027600e+02 -1.713000e+01
+7 750     5.037400e+02 1.709000e+02
+10 750     6.639600e+02 1.874800e+02
+0 751     1.421200e+02 -2.589000e+02
+1 751     2.176500e+02 -2.669900e+02
+2 751     3.999600e+02 -2.029600e+02
+6 751     2.201800e+02 -2.208199e+02
+7 751     1.032700e+02 -1.174600e+02
+9 751     2.335800e+02 -6.642999e+01
+12 751     2.286000e+02 -1.832900e+02
+15 751     1.921000e+02 -1.944500e+02
+0 752     5.428600e+02 1.565400e+02
+1 752     8.187400e+02 1.209998e+01
+2 752     4.349000e+02 1.087800e+02
+3 752     2.983600e+02 -2.065900e+02
+6 752     3.418300e+02 2.894000e+02
+7 752     3.730699e+02 3.203100e+02
+8 752     4.156100e+02 6.248001e+01
+10 752     5.233101e+02 3.819200e+02
+12 752     4.309000e+02 2.984600e+02
+13 752     7.446200e+02 -6.741998e+01
+0 753     1.284900e+02 -4.252002e+01
+1 753     2.702900e+02 -5.046997e+01
+2 753     3.015900e+02 1.851001e+01
+6 753     1.281100e+02 1.573999e+01
+7 753     5.217999e+01 9.409000e+01
+10 753     5.984003e+01 1.052100e+02
+13 753     4.943500e+02 -2.463300e+02
+15 753     1.445500e+02 9.679001e+01
+0 754     1.810400e+02 -1.095400e+02
+1 754     3.044399e+02 -1.331600e+02
+2 754     3.679800e+02 -4.710999e+01
+6 754     1.985100e+02 -4.565997e+01
+8 754     3.319000e+02 -8.792999e+01
+9 754     1.982100e+02 5.987000e+01
+12 754     2.191500e+02 -2.309998e+00
+15 754     2.256100e+02 1.290997e+01
+0 755     6.879999e+01 -7.390997e+01
+1 755     2.035100e+02 -6.334003e+01
+3 755     1.599100e+02 -3.359400e+02
+7 755     -2.219971e+00 5.273999e+01
+9 755     1.021200e+02 6.862000e+01
+15 755     6.778003e+01 4.671002e+01
+0 756     1.647200e+02 -4.734003e+01
+1 756     3.055400e+02 -6.654999e+01
+4 756     -3.300700e+02 -5.458700e+02
+6 756     1.671600e+02 2.137000e+01
+9 756     1.717400e+02 1.146000e+02
+15 756     1.950800e+02 9.514001e+01
+0 757     2.283002e+01 -5.015002e+01
+1 757     1.669800e+02 -2.727002e+01
+2 757     1.910800e+02 -2.273999e+01
+4 757     -3.108800e+02 -4.289500e+02
+7 757     -5.321002e+01 6.642999e+01
+9 757     5.317999e+01 7.234003e+01
+13 757     3.995699e+02 -2.638900e+02
+0 758     6.510800e+02 -7.752002e+01
+1 758     8.586200e+02 -2.691600e+02
+2 758     6.209000e+02 -7.833002e+01
+7 758     5.118300e+02 1.146000e+02
+8 758     5.674700e+02 -9.529999e+01
+12 758     6.183000e+02 7.908002e+01
+0 759     1.836700e+02 -3.548999e+01
+1 759     3.284500e+02 -6.073999e+01
+2 759     3.454700e+02 3.385999e+01
+3 759     2.438500e+02 -2.726500e+02
+4 759     -3.240800e+02 -5.615400e+02
+7 759     1.039600e+02 1.093900e+02
+9 759     1.756500e+02 1.257000e+02
+10 759     1.229800e+02 1.190400e+02
+0 760     -2.902500e+02 7.341998e+01
+1 760     -4.297998e+01 1.702100e+02
+7 760     -4.368900e+02 1.057600e+02
+15 760     -4.256900e+02 1.961000e+02
+0 761     -3.094700e+02 7.076001e+01
+1 761     -6.190997e+01 1.730000e+02
+13 761     -9.659973e+00 -2.120800e+02
+0 762     -3.094700e+02 7.076001e+01
+1 762     -6.190997e+01 1.730000e+02
+10 762     -4.642100e+02 1.923100e+02
+0 763     -2.406200e+02 4.220200e+02
+1 763     1.125100e+02 4.909900e+02
+2 763     -5.204100e+02 1.660500e+02
+5 763     1.630600e+02 -2.328700e+02
+7 763     -4.558700e+02 4.611200e+02
+8 763     -3.472300e+02 1.201800e+02
+11 763     -6.647998e+01 -3.354400e+02
+13 763     -2.899780e-01 9.157999e+01
+0 764     -2.283400e+02 2.496800e+02
+1 764     7.962000e+01 3.199400e+02
+7 764     -4.148000e+02 2.853400e+02
+15 764     -3.626500e+02 4.460000e+02
+0 765     -2.229900e+02 2.162600e+02
+1 765     7.207001e+01 2.870300e+02
+7 765     -4.021400e+02 2.539200e+02
+11 765     -5.725000e+01 -5.251600e+02
+0 766     -3.926400e+02 7.120001e+01
+1 766     -1.385100e+02 1.954600e+02
+10 766     -5.628500e+02 1.848500e+02
+0 767     -3.489300e+02 2.251400e+02
+1 767     -4.342999e+01 3.275500e+02
+7 767     -5.359800e+02 2.426300e+02
+11 767     -1.720300e+02 -5.144500e+02
+13 767     -8.379999e+01 -8.478998e+01
+0 768     -2.929600e+02 4.023100e+02
+1 768     5.603003e+01 4.844700e+02
+5 768     1.096200e+02 -2.534000e+02
+7 768     -5.061600e+02 4.344900e+02
+8 768     -3.903700e+02 9.960999e+01
+10 768     -4.871800e+02 5.930500e+02
+11 768     -1.133600e+02 -3.528000e+02
+12 768     -6.151500e+02 3.476600e+02
+13 768     -4.207001e+01 7.267999e+01
+14 768     2.596997e+01 -3.437600e+02
+0 769     -2.924900e+02 7.789001e+01
+1 769     -4.370001e+01 1.750400e+02
+5 769     1.493500e+02 -6.118000e+02
+7 769     -4.399600e+02 1.096200e+02
+13 769     4.219971e+00 -2.047100e+02
+15 769     -4.288300e+02 2.016600e+02
+0 770     -4.485300e+02 3.194900e+02
+1 770     -1.108600e+02 4.480500e+02
+11 770     -2.526600e+02 -4.248500e+02
+0 771     -5.339100e+02 3.950000e+02
+1 771     -1.766700e+02 5.346700e+02
+10 771     -7.849800e+02 5.646900e+02
+11 771     -3.236500e+02 -3.553300e+02
+13 771     -2.350000e+02 5.634998e+01
+0 772     -2.162300e+02 4.290000e+02
+1 772     1.386500e+02 4.917600e+02
+2 772     -4.956400e+02 1.745600e+02
+7 772     -4.320700e+02 4.710200e+02
+14 772     1.025000e+02 -3.150600e+02
+0 773     -5.226500e+02 3.506200e+02
+1 773     -1.767500e+02 4.896300e+02
+10 773     -7.634700e+02 5.110500e+02
+11 773     -3.184700e+02 -3.952200e+02
+15 773     -7.921300e+02 5.492600e+02
+0 774     -2.329900e+02 4.417800e+02
+1 774     1.248300e+02 5.082900e+02
+4 774     -1.719971e+00 -2.199400e+02
+5 774     1.722600e+02 -2.124200e+02
+8 774     -3.417000e+02 1.382900e+02
+11 774     -5.931000e+01 -3.181500e+02
+12 774     -5.530700e+02 4.046400e+02
+13 774     6.270020e+00 1.092300e+02
+0 775     -2.230200e+02 3.983300e+02
+1 775     1.244400e+02 4.634500e+02
+11 775     -5.106000e+01 -3.563400e+02
+14 775     9.422998e+01 -3.480500e+02
+0 776     -2.178500e+02 4.257700e+02
+1 776     1.362700e+02 4.891100e+02
+2 776     -4.974000e+02 1.699200e+02
+7 776     -4.330800e+02 4.678900e+02
+14 776     1.009000e+02 -3.184100e+02
+0 777     -2.650100e+02 4.342800e+02
+1 777     9.152002e+01 5.087800e+02
+2 777     -5.452200e+02 1.806700e+02
+4 777     -3.330017e+00 -2.016600e+02
+5 777     1.401900e+02 -2.198300e+02
+7 777     -4.821900e+02 4.712600e+02
+8 777     -3.677300e+02 1.311300e+02
+11 777     -8.762000e+01 -3.250700e+02
+12 777     -5.883600e+02 3.911600e+02
+13 777     -1.932001e+01 1.009800e+02
+14 777     5.540002e+01 -3.100800e+02
+0 778     -5.595001e+01 -6.734998e+01
+1 778     9.070001e+01 -2.083002e+01
+7 778     -1.324100e+02 3.392999e+01
+10 778     -1.508800e+02 5.669000e+01
+13 778     3.250699e+02 -2.870000e+02
+15 778     -1.002700e+02 3.763000e+01
+0 779     -3.225800e+02 3.456800e+02
+1 779     1.408002e+01 4.365200e+02
+2 779     -6.026500e+02 6.803998e+01
+14 779     -8.109985e+00 -4.063000e+02
+15 779     -5.099100e+02 5.679000e+02
+0 780     -4.260000e+02 4.130900e+02
+1 780     -7.048999e+01 5.266300e+02
+7 780     -6.459800e+02 4.308200e+02
+8 780     -5.056300e+02 1.067300e+02
+12 780     -7.752900e+02 3.409000e+02
+13 780     -1.483300e+02 7.628998e+01
+14 780     -1.035600e+02 -3.330900e+02
+0 781     -3.121600e+02 3.262100e+02
+1 781     2.019000e+01 4.149800e+02
+7 781     -5.151400e+02 3.515400e+02
+10 781     -4.992400e+02 4.984300e+02
+14 781     7.199707e-01 -4.277700e+02
+15 781     -4.911700e+02 5.422300e+02
+0 782     -2.162300e+02 4.290000e+02
+1 782     1.386500e+02 4.917600e+02
+2 782     -4.956400e+02 1.745600e+02
+5 782     1.878500e+02 -2.259500e+02
+7 782     -4.320700e+02 4.710200e+02
+12 782     -5.312900e+02 3.915200e+02
+14 782     1.025000e+02 -3.150600e+02
+0 783     -1.068800e+02 -5.352200e+02
+1 783     -9.588000e+01 -4.491500e+02
+0 784     -2.542200e+02 -4.306800e+02
+1 784     -1.916600e+02 -3.055700e+02
+6 784     -2.070200e+02 -6.229200e+02
+7 784     -2.756000e+02 -3.777100e+02
+9 784     -9.219000e+01 -4.241200e+02
+0 785     -1.492700e+02 -5.222000e+02
+1 785     -1.298300e+02 -4.230300e+02
+4 785     -6.566700e+02 -2.665200e+02
+7 785     -1.455100e+02 -4.435400e+02
+9 785     7.373999e+01 -4.432600e+02
+0 786     -1.916400e+02 -5.028400e+02
+1 786     -1.615900e+02 -3.914400e+02
+4 786     -6.289800e+02 -2.331000e+02
+6 786     -8.298001e+01 -6.696700e+02
+7 786     -1.943600e+02 -4.340400e+02
+9 786     1.991998e+01 -4.476500e+02
+0 787     -1.593900e+02 -5.170300e+02
+1 787     -1.371400e+02 -4.149100e+02
+6 787     -3.512000e+01 -6.683500e+02
+7 787     -1.568500e+02 -4.408900e+02
+0 788     7.440997e+01 -2.972998e+01
+1 788     2.216400e+02 -2.159998e+01
+3 788     1.495500e+02 -2.896000e+02
+4 788     -3.031600e+02 -4.726000e+02
+9 788     9.345001e+01 1.094900e+02
+15 788     6.932001e+01 1.069300e+02
+0 789     -1.494900e+02 -4.932800e+02
+1 789     -1.194200e+02 -3.964300e+02
+6 789     -4.008002e+01 -6.389301e+02
+7 789     -1.527300e+02 -4.157000e+02
+9 789     5.325000e+01 -4.242700e+02
+12 789     -5.852002e+01 -5.887700e+02
+0 790     -1.670400e+02 -4.871300e+02
+1 790     -1.334400e+02 -3.847700e+02
+6 790     -6.340997e+01 -6.403400e+02
+7 790     -1.720100e+02 -4.137200e+02
+9 790     3.415002e+01 -4.270000e+02
+0 791     -1.742400e+02 -5.134500e+02
+1 791     -1.496100e+02 -4.067300e+02
+6 791     -5.577002e+01 -6.718600e+02
+7 791     -1.730900e+02 -4.407700e+02
+0 792     -1.063300e+02 -2.346100e+02
+1 792     -5.399780e-01 -1.658000e+02
+4 792     -4.286100e+02 -3.113900e+02
+6 792     -1.079900e+02 -3.142000e+02
+10 792     -1.916700e+02 -1.418500e+02
+12 792     -9.962000e+01 -2.600400e+02
+13 792     2.841200e+02 -4.482800e+02
+15 792     -1.446000e+02 -1.945900e+02
+0 793     9.134003e+01 7.904999e+01
+1 793     2.732100e+02 7.985999e+01
+4 793     -2.294600e+02 -4.848199e+02
+10 793     4.099976e+00 2.415300e+02
+13 793     4.425601e+02 -1.474100e+02
+15 793     7.856000e+01 2.575000e+02
+0 794     5.969971e+00 -2.653300e+02
+1 794     8.969000e+01 -2.304000e+02
+4 794     -4.720000e+02 -4.068500e+02
+7 794     -3.465002e+01 -1.521300e+02
+10 794     -5.770001e+01 -1.645500e+02
+13 794     4.051600e+02 -4.592700e+02
+15 794     9.710022e+00 -2.210400e+02
+0 795     -3.157700e+02 3.880900e+02
+1 795     3.041998e+01 4.763600e+02
+2 795     -5.966200e+02 1.225800e+02
+7 795     -5.277900e+02 4.167800e+02
+10 795     -5.132200e+02 5.737900e+02
+12 795     -6.395100e+02 3.258900e+02
+14 795     2.159973e+00 -3.597000e+02
+0 796     -3.435300e+02 3.439500e+02
+1 796     -7.299988e+00 4.382500e+02
+2 796     -6.254900e+02 7.027002e+01
+4 796     -4.589001e+01 -1.493300e+02
+5 796     5.266998e+01 -3.131200e+02
+8 796     -4.324700e+02 4.354999e+01
+10 796     -5.407400e+02 5.167700e+02
+11 796     -1.605200e+02 -4.109900e+02
+12 796     -6.660300e+02 2.719200e+02
+15 796     -5.385900e+02 5.580100e+02
+0 797     -3.485900e+02 3.320300e+02
+1 797     -1.452002e+01 4.297100e+02
+8 797     -4.379200e+02 2.645999e+01
+10 797     -5.451300e+02 5.018600e+02
+11 797     -1.668500e+02 -4.156100e+02
+14 797     -3.520001e+01 -4.217200e+02
+0 798     -7.953200e+02 5.884998e+01
+1 798     -4.946900e+02 2.844400e+02
+0 799     -3.008500e+02 4.894800e+02
+1 799     6.883002e+01 5.716200e+02
+2 799     -5.833900e+02 2.485000e+02
+5 799     1.104700e+02 -1.609100e+02
+7 799     -5.267500e+02 5.259000e+02
+8 799     -3.991800e+02 1.835900e+02
+12 799     -6.391000e+02 4.545300e+02
+0 800     -4.203900e+02 3.213700e+02
+1 800     -8.544000e+01 4.362100e+02
+7 800     -6.261300e+02 3.327300e+02
+10 800     -6.313500e+02 4.833200e+02
+11 800     -2.291600e+02 -4.246100e+02
+15 800     -6.423300e+02 5.205100e+02
+0 801     -2.026800e+02 4.509300e+02
+1 801     1.574700e+02 5.101300e+02
+2 801     -4.831200e+02 2.012000e+02
+5 801     2.028300e+02 -2.024000e+02
+7 801     -4.214200e+02 4.956500e+02
+11 801     -3.226001e+01 -3.100300e+02
+12 801     -5.200100e+02 4.207900e+02
+13 801     3.029999e+01 1.177400e+02
+14 801     1.167800e+02 -2.917600e+02
+0 802     -2.415700e+02 4.378800e+02
+1 802     1.154400e+02 5.068400e+02
+2 802     -5.215600e+02 1.846300e+02
+5 802     1.636300e+02 -2.165600e+02
+7 802     -4.589400e+02 4.775600e+02
+8 802     -3.484700e+02 1.345800e+02
+12 802     -5.618500e+02 3.989000e+02
+0 803     -2.603100e+02 3.995400e+02
+1 803     8.787000e+01 4.740400e+02
+5 803     1.424400e+02 -2.572100e+02
+8 803     -3.619800e+02 9.817999e+01
+11 803     -8.362000e+01 -3.555000e+02
+12 803     -5.764000e+02 3.492200e+02
+13 803     -1.609998e+01 7.113000e+01
+0 804     -2.512900e+02 4.232900e+02
+1 804     1.013600e+02 4.952500e+02
+4 804     -1.325000e+01 -2.063900e+02
+0 805     -2.882400e+02 3.830100e+02
+1 805     5.626001e+01 4.645100e+02
+5 805     1.123700e+02 -2.749400e+02
+7 805     -4.987700e+02 4.147400e+02
+8 805     -3.851300e+02 8.081000e+01
+10 805     -4.786400e+02 5.696100e+02
+11 805     -1.094300e+02 -3.694900e+02
+12 805     -6.062100e+02 3.249500e+02
+13 805     -3.864001e+01 5.545001e+01
+14 805     2.916998e+01 -3.656800e+02
+0 806     -5.062200e+02 2.274800e+02
+1 806     -1.886100e+02 3.689100e+02
+4 806     -9.771997e+01 -4.825000e+01
+0 807     -2.458400e+02 4.419100e+02
+1 807     1.121300e+02 5.118800e+02
+2 807     -5.261800e+02 1.904400e+02
+5 807     1.598400e+02 -2.116100e+02
+7 807     -4.640100e+02 4.815100e+02
+12 807     -5.674700e+02 4.037900e+02
+14 807     7.438000e+01 -3.017000e+02
+0 808     -4.135000e+02 2.665000e+02
+1 808     -9.090002e+01 3.825700e+02
+7 808     -6.113800e+02 2.757200e+02
+0 809     -3.210500e+02 3.504600e+02
+1 809     1.646997e+01 4.405500e+02
+2 809     -6.014200e+02 7.427002e+01
+7 809     -5.280500e+02 3.762500e+02
+8 809     -4.124600e+02 4.589999e+01
+10 809     -5.141100e+02 5.268400e+02
+12 809     -6.393200e+02 2.779300e+02
+14 809     -6.359985e+00 -4.010600e+02
+15 809     -5.087100e+02 5.745400e+02
+0 810     -4.004900e+02 4.178400e+02
+1 810     -4.475000e+01 5.253300e+02
+2 810     -6.872900e+02 1.596600e+02
+5 810     5.109985e+00 -2.351000e+02
+7 810     -6.198500e+02 4.387200e+02
+8 810     -4.829500e+02 1.115400e+02
+10 810     -6.224200e+02 6.038800e+02
+12 810     -7.450600e+02 3.501300e+02
+0 811     -5.904200e+02 4.103300e+02
+1 811     -2.258000e+02 5.615000e+02
+7 811     -8.227000e+02 4.096400e+02
+11 811     -3.705600e+02 -3.413500e+02
+14 811     -2.644000e+02 -3.351100e+02
+0 812     -3.010700e+02 3.388300e+02
+1 812     3.335999e+01 4.248900e+02
+2 812     -5.797300e+02 6.257001e+01
+5 812     9.548999e+01 -3.253100e+02
+8 812     -3.955800e+02 3.748001e+01
+10 812     -4.883000e+02 5.106100e+02
+12 812     -6.172100e+02 2.719700e+02
+0 813     4.539001e+01 -7.023999e+01
+1 813     1.822600e+02 -5.247998e+01
+2 813     2.238600e+02 -3.510999e+01
+3 813     1.345300e+02 -3.407900e+02
+4 813     -3.291800e+02 -4.486500e+02
+7 813     -2.715002e+01 5.171997e+01
+9 813     7.952002e+01 6.470001e+01
+15 813     3.560999e+01 4.803003e+01
+0 814     -5.309000e+02 3.381200e+02
+1 814     -1.858000e+02 4.746300e+02
+15 814     -7.983900e+02 5.230200e+02
+0 815     -2.103900e+02 4.027200e+02
+1 815     1.381600e+02 4.648200e+02
+2 815     -4.851800e+02 1.476600e+02
+4 815     -2.338000e+01 -2.321400e+02
+8 815     -3.185800e+02 1.057700e+02
+14 815     1.065000e+02 -3.425200e+02
+0 816     -4.051600e+02 3.706200e+02
+1 816     -6.082001e+01 4.818000e+02
+2 816     -6.892400e+02 1.011800e+02
+4 816     -2.725000e+01 -1.196900e+02
+7 816     -6.159400e+02 3.887000e+02
+10 816     -6.202100e+02 5.444600e+02
+11 816     -2.144800e+02 -3.791000e+02
+13 816     -1.312300e+02 4.056000e+01
+0 817     -2.584200e+02 4.247400e+02
+1 817     9.535999e+01 4.977900e+02
+2 817     -5.378900e+02 1.690100e+02
+4 817     -8.809998e+00 -2.045000e+02
+5 817     1.460600e+02 -2.294400e+02
+7 817     -4.744400e+02 4.618800e+02
+8 817     -3.618100e+02 1.225500e+02
+11 817     -8.240002e+01 -3.334600e+02
+12 817     -5.790800e+02 3.808600e+02
+13 817     -1.432001e+01 9.320001e+01
+14 817     6.104999e+01 -3.199800e+02
+0 818     6.348500e+02 -3.428003e+01
+1 818     8.553199e+02 -2.183200e+02
+2 818     5.900000e+02 -4.187000e+01
+7 818     4.900800e+02 1.533500e+02
+8 818     5.420100e+02 -6.478998e+01
+12 818     5.877800e+02 1.202900e+02
+13 818     8.632000e+02 -2.259800e+02
+15 818     8.605400e+02 1.762500e+02
+0 819     -3.205300e+02 1.972600e+02
+1 819     -2.695001e+01 2.941100e+02
+7 819     -4.986100e+02 2.205100e+02
+0 820     -4.305600e+02 4.729600e+02
+1 820     -6.125000e+01 5.854000e+02
+2 820     -7.201900e+02 2.298600e+02
+5 820     -1.770001e+01 -1.766100e+02
+7 820     -6.595400e+02 4.945400e+02
+8 820     -5.107600e+02 1.656500e+02
+12 820     -7.913300e+02 4.157800e+02
+14 820     -1.012800e+02 -2.703700e+02
+0 821     -4.308100e+02 4.647000e+02
+1 821     -6.392999e+01 5.775500e+02
+2 821     -7.207500e+02 2.192800e+02
+7 821     -6.588900e+02 4.855600e+02
+8 821     -5.105000e+02 1.575200e+02
+12 821     -7.871400e+02 4.060500e+02
+14 821     -1.022500e+02 -2.788100e+02
+0 822     -4.004900e+02 4.178400e+02
+1 822     -4.475000e+01 5.253300e+02
+2 822     -6.872900e+02 1.596600e+02
+5 822     5.109985e+00 -2.351000e+02
+7 822     -6.198500e+02 4.387200e+02
+8 822     -4.829500e+02 1.115400e+02
+14 822     -7.804999e+01 -3.279900e+02
+0 823     -3.734200e+02 3.379100e+02
+1 823     -3.727002e+01 4.416700e+02
+7 823     -5.801700e+02 3.570900e+02
+10 823     -5.765200e+02 5.069300e+02
+15 823     -5.799000e+02 5.503400e+02
+0 824     -3.071100e+02 4.294400e+02
+1 824     4.870001e+01 5.142000e+02
+2 824     -5.888700e+02 1.748200e+02
+11 824     -1.250100e+02 -3.287400e+02
+14 824     1.409998e+01 -3.156000e+02
+0 825     -3.329800e+02 4.853700e+02
+1 825     3.612000e+01 5.749800e+02
+2 825     -6.166500e+02 2.436500e+02
+7 825     -5.592400e+02 5.182100e+02
+12 825     -6.763200e+02 4.446500e+02
+0 826     -2.904000e+02 1.073900e+02
+1 826     -2.917999e+01 2.005500e+02
+4 826     -1.849300e+02 -1.699400e+02
+8 826     -3.096200e+02 -1.429100e+02
+0 827     -3.051800e+02 2.200500e+02
+1 827     -4.619995e+00 3.117400e+02
+7 827     -4.880100e+02 2.447000e+02
+11 827     -1.323400e+02 -5.200400e+02
+0 828     -4.785100e+02 1.521900e+02
+1 828     -1.868400e+02 2.923800e+02
+7 828     -6.574200e+02 1.508100e+02
+0 829     -4.410600e+02 1.522700e+02
+1 829     -1.537500e+02 2.831900e+02
+7 829     -6.147700e+02 1.573200e+02
+13 829     -1.483600e+02 -1.510900e+02
+0 830     -4.872500e+02 1.293200e+02
+1 830     -2.036400e+02 2.734100e+02
+5 830     -8.926001e+01 -5.518199e+02
+7 830     -6.586600e+02 1.265500e+02
+0 831     -3.762000e+02 2.980700e+02
+1 831     -4.906000e+01 4.038200e+02
+5 831     1.398999e+01 -3.666600e+02
+7 831     -5.771500e+02 3.141500e+02
+10 831     -5.737000e+02 4.580600e+02
+14 831     -6.675000e+01 -4.587000e+02
+15 831     -5.763900e+02 4.939900e+02
+0 832     -4.639700e+02 1.373000e+02
+1 832     -1.799100e+02 2.749900e+02
+5 832     -6.634003e+01 -5.426899e+02
+7 832     -6.373000e+02 1.385500e+02
+10 832     -6.597800e+02 2.567000e+02
+13 832     -1.672200e+02 -1.651300e+02
+0 833     -4.395100e+02 1.569200e+02
+1 833     -1.507800e+02 2.869300e+02
+7 833     -6.153200e+02 1.622900e+02
+0 834     -2.964600e+02 1.998300e+02
+1 834     -3.260010e+00 2.904900e+02
+0 835     -4.403700e+02 1.406600e+02
+1 835     -1.573000e+02 2.721700e+02
+5 835     -3.790002e+01 -5.395800e+02
+0 836     -3.843900e+02 3.145400e+02
+1 836     -5.307001e+01 4.217900e+02
+5 836     7.919983e+00 -3.482100e+02
+7 836     -5.877800e+02 3.304700e+02
+10 836     -5.860700e+02 4.777700e+02
+11 836     -1.979000e+02 -4.305900e+02
+12 836     -7.083600e+02 2.212700e+02
+13 836     -1.182700e+02 -8.390015e+00
+14 836     -7.362000e+01 -4.414900e+02
+15 836     -5.908200e+02 5.162300e+02
+0 837     -3.130400e+02 4.296400e+02
+1 837     4.271002e+01 5.162500e+02
+2 837     -5.945500e+02 1.746300e+02
+5 837     9.254999e+01 -2.238300e+02
+7 837     -5.305600e+02 4.610900e+02
+8 837     -4.081100e+02 1.256000e+02
+12 837     -6.428600e+02 3.783000e+02
+14 837     8.309998e+00 -3.154300e+02
+0 838     -4.603600e+02 2.004100e+02
+1 838     -1.549400e+02 3.322900e+02
+7 838     -6.479200e+02 2.013000e+02
+10 838     -6.625500e+02 3.325400e+02
+13 838     -1.779400e+02 -1.117900e+02
+14 838     -1.555000e+02 -5.698000e+02
+0 839     -3.434500e+02 4.290000e+02
+1 839     1.303998e+01 5.223800e+02
+7 839     -5.619700e+02 4.570100e+02
+11 839     -1.566300e+02 -3.303500e+02
+12 839     -6.786900e+02 3.724400e+02
+0 840     -3.047600e+02 3.565500e+02
+1 840     3.381000e+01 4.429600e+02
+5 840     9.282001e+01 -3.032400e+02
+7 840     -5.120400e+02 3.847700e+02
+10 840     -4.951300e+02 5.357600e+02
+12 840     -6.212500e+02 2.884100e+02
+0 841     -3.071100e+02 4.294400e+02
+1 841     4.870001e+01 5.142000e+02
+2 841     -5.888700e+02 1.748200e+02
+7 841     -5.248400e+02 4.615700e+02
+8 841     -4.031500e+02 1.255000e+02
+11 841     -1.250100e+02 -3.287400e+02
+12 841     -6.364400e+02 3.790000e+02
+14 841     1.409998e+01 -3.156000e+02
+0 842     -3.909600e+02 2.903100e+02
+1 842     -6.497998e+01 4.002300e+02
+7 842     -5.915300e+02 3.037700e+02
+10 842     -5.908700e+02 4.473300e+02
+13 842     -1.246600e+02 -2.992999e+01
+14 842     -8.258002e+01 -4.679200e+02
+15 842     -5.956800e+02 4.813100e+02
+0 843     3.014200e+02 1.378998e+01
+1 843     4.705100e+02 -4.972998e+01
+7 843     2.033500e+02 1.717800e+02
+13 843     6.219399e+02 -1.890900e+02
+15 843     3.771500e+02 1.965600e+02
+0 844     2.946200e+02 6.059998e+00
+1 844     4.603000e+02 -5.469000e+01
+6 844     2.611300e+02 1.065700e+02
+7 844     1.990400e+02 1.637300e+02
+10 844     2.470900e+02 1.782500e+02
+12 844     2.981700e+02 1.480100e+02
+13 844     6.182400e+02 -1.962500e+02
+15 844     3.682100e+02 1.856500e+02
+0 845     3.198101e+02 -4.009998e+01
+1 845     4.737800e+02 -1.102000e+02
+7 845     2.281801e+02 1.209800e+02
+10 845     2.805300e+02 1.278100e+02
+15 845     4.092400e+02 1.256600e+02
+0 846     5.371002e+01 -2.197400e+02
+1 846     1.414200e+02 -1.999700e+02
+3 846     2.238500e+02 -4.717000e+02
+6 846     1.204400e+02 -2.036400e+02
+7 846     1.162000e+01 -9.337000e+01
+10 846     -7.530029e+00 -1.075500e+02
+12 846     1.206200e+02 -1.591500e+02
+13 846     4.558300e+02 -4.076300e+02
+15 846     6.628998e+01 -1.532900e+02
+0 847     2.295300e+02 3.507800e+02
+1 847     5.748101e+02 2.973500e+02
+2 847     -3.666998e+01 1.209000e+02
+7 847     1.827002e+01 4.452400e+02
+8 847     4.557001e+01 8.881000e+01
+13 847     3.905000e+02 5.741998e+01
+14 847     5.630699e+02 -3.842400e+02
+0 848     6.160699e+02 7.648999e+01
+1 848     8.704000e+02 -9.509998e+01
+2 848     5.386100e+02 6.320001e+01
+6 848     4.549200e+02 2.269100e+02
+7 848     4.567200e+02 2.565800e+02
+8 848     5.009600e+02 2.254999e+01
+9 848     3.224200e+02 1.534000e+02
+10 848     6.155400e+02 2.954900e+02
+12 848     5.389000e+02 2.359100e+02
+13 848     8.288700e+02 -1.281800e+02
+0 849     -2.112000e+01 6.328998e+01
+1 849     1.634301e+02 9.570999e+01
+3 849     -3.830017e+00 -2.467900e+02
+4 849     -2.268700e+02 -3.945800e+02
+5 849     5.984200e+02 -6.004301e+02
+7 849     -1.205300e+02 1.701400e+02
+8 849     1.022000e+02 1.151999e+01
+10 849     -1.249900e+02 2.122200e+02
+12 849     -7.410999e+01 1.329600e+02
+13 849     3.400699e+02 -1.712900e+02
+15 849     -7.121002e+01 2.201900e+02
+0 850     -3.488000e+01 6.392999e+01
+1 850     1.517600e+02 1.001900e+02
+4 850     -2.257800e+02 -3.836100e+02
+5 850     5.790800e+02 -6.004301e+02
+7 850     -1.360200e+02 1.680200e+02
+8 850     8.628998e+01 5.809998e+00
+10 850     -1.411400e+02 2.119200e+02
+12 850     -9.360999e+01 1.273700e+02
+15 850     -8.953998e+01 2.192600e+02
+0 851     2.194399e+02 9.820007e+00
+1 851     3.796899e+02 -2.660999e+01
+6 851     1.971600e+02 9.734998e+01
+7 851     1.299400e+02 1.588800e+02
+10 851     1.597000e+02 1.748100e+02
+12 851     2.249500e+02 1.432600e+02
+13 851     5.613700e+02 -1.954300e+02
+15 851     2.623800e+02 1.803500e+02
+0 852     2.298900e+02 -1.489001e+01
+1 852     3.827400e+02 -5.437000e+01
+2 852     3.767300e+02 5.716998e+01
+7 852     1.440400e+02 1.363900e+02
+15 852     2.802700e+02 1.491500e+02
+0 853     1.162800e+02 7.553998e+01
+1 853     2.965900e+02 6.923999e+01
+5 853     7.683500e+02 -5.810300e+02
+7 853     1.803998e+01 2.073600e+02
+0 854     3.145699e+02 -1.129900e+02
+1 854     4.416801e+02 -1.806100e+02
+7 854     2.389399e+02 5.171997e+01
+15 854     4.099000e+02 2.571997e+01
+0 855     9.907001e+01 4.190200e+02
+1 855     4.601899e+02 4.022300e+02
+2 855     -1.933900e+02 1.676400e+02
+3 855     -3.301000e+02 -1.618400e+02
+7 855     -1.207300e+02 4.951100e+02
+8 855     -7.809003e+01 1.246200e+02
+13 855     2.689399e+02 1.071300e+02
+0 856     -1.655100e+02 3.931300e+02
+1 856     1.832000e+02 4.442100e+02
+7 856     -3.756700e+02 4.385600e+02
+8 856     -2.836200e+02 9.129001e+01
+13 856     5.927002e+01 6.878003e+01
+14 856     1.500601e+02 -3.539800e+02
+0 857     -2.474900e+02 3.989600e+02
+1 857     9.951001e+01 4.691800e+02
+4 857     -2.491998e+01 -2.076200e+02
+5 857     1.537000e+02 -2.596600e+02
+10 857     -4.315500e+02 5.925900e+02
+11 857     -7.347998e+01 -3.569300e+02
+12 857     -5.630200e+02 3.472900e+02
+13 857     -6.599976e+00 7.040002e+01
+0 858     -4.431000e+02 1.441500e+02
+1 858     -1.585800e+02 2.760600e+02
+5 858     -4.257001e+01 -5.360900e+02
+7 858     -6.150100e+02 1.489100e+02
+8 858     -4.802400e+02 -1.445200e+02
+0 859     -2.796700e+02 1.873400e+02
+1 859     7.869995e+00 2.743400e+02
+7 859     -4.529300e+02 2.174600e+02
+0 860     1.940900e+02 3.448300e+02
+1 860     5.353500e+02 3.008200e+02
+6 860     -2.092500e+02 3.724300e+02
+10 860     9.866998e+01 5.694700e+02
+0 861     2.822500e+02 3.355200e+02
+1 861     6.248000e+02 2.674600e+02
+6 861     -1.005700e+02 3.854400e+02
+7 861     7.228998e+01 4.382400e+02
+11 861     4.167500e+02 -4.015000e+02
+0 862     2.822500e+02 3.355200e+02
+1 862     6.248000e+02 2.674600e+02
+6 862     -1.005700e+02 3.854400e+02
+7 862     7.228998e+01 4.382400e+02
+11 862     4.167500e+02 -4.015000e+02
+0 863     2.074200e+02 3.527900e+02
+1 863     5.525500e+02 3.051500e+02
+2 863     -6.121997e+01 1.197600e+02
+6 863     -1.992200e+02 3.849100e+02
+12 863     -4.413000e+01 3.782800e+02
+13 863     3.704800e+02 5.808002e+01
+14 863     5.382700e+02 -3.825200e+02
+0 864     1.129200e+02 4.379100e+02
+1 864     4.803101e+02 4.168300e+02
+2 864     -1.820100e+02 1.897500e+02
+4 864     -3.002002e+01 -4.253100e+02
+5 864     5.152000e+02 -2.139400e+02
+6 864     -3.425400e+02 4.644900e+02
+7 864     -1.098800e+02 5.160000e+02
+8 864     -6.991998e+01 1.447300e+02
+12 864     -1.727100e+02 4.517900e+02
+13 864     2.804500e+02 1.233300e+02
+0 865     2.664399e+02 4.854600e+02
+1 865     6.604000e+02 4.267100e+02
+5 865     6.704600e+02 -1.598200e+02
+7 865     3.041998e+01 5.801600e+02
+8 865     3.810999e+01 1.918500e+02
+11 865     3.899600e+02 -2.650800e+02
+12 865     -2.156000e+01 5.278700e+02
+13 865     4.016801e+02 1.734700e+02
+14 865     5.741300e+02 -2.400400e+02
+0 866     1.032200e+02 3.968900e+02
+1 866     4.594600e+02 3.777500e+02
+4 866     -5.378998e+01 -4.154900e+02
+7 866     -1.141600e+02 4.735100e+02
+11 866     2.467100e+02 -3.513000e+02
+0 867     1.380300e+02 4.573900e+02
+1 867     5.120000e+02 4.304300e+02
+4 867     -1.990002e+01 -4.434500e+02
+5 867     5.410900e+02 -1.924200e+02
+7 867     -8.783002e+01 5.386100e+02
+8 867     -5.232001e+01 1.630300e+02
+12 867     -1.493300e+02 4.779300e+02
+14 867     4.492500e+02 -2.752300e+02
+0 868     2.203998e+01 4.226100e+02
+1 868     3.805300e+02 4.249300e+02
+2 868     -2.641700e+02 1.699300e+02
+5 868     4.238600e+02 -2.320900e+02
+6 868     -4.397200e+02 4.248000e+02
+7 868     -1.956600e+02 4.906100e+02
+8 868     -1.375300e+02 1.277300e+02
+12 868     -2.668400e+02 4.199800e+02
+13 868     2.082400e+02 1.048000e+02
+14 868     3.351200e+02 -3.165900e+02
+0 869     -2.153600e+02 4.951600e+02
+1 869     1.553800e+02 5.569300e+02
+5 869     1.944200e+02 -1.558000e+02
+7 869     -4.400300e+02 5.407800e+02
+0 870     -1.612500e+02 4.608200e+02
+1 870     2.016400e+02 5.095500e+02
+2 870     -4.425900e+02 2.134600e+02
+4 870     3.580017e+00 -2.622900e+02
+5 870     2.443700e+02 -1.924200e+02
+7 870     -3.811800e+02 5.103100e+02
+8 870     -2.838900e+02 1.582700e+02
+12 870     -4.747000e+02 4.386100e+02
+13 870     6.315002e+01 1.282700e+02
+14 870     1.572000e+02 -2.808000e+02
+0 871     -1.986900e+02 4.088000e+02
+1 871     1.514301e+02 4.673600e+02
+2 871     -4.769100e+02 1.500400e+02
+5 871     2.037600e+02 -2.477600e+02
+7 871     -4.115400e+02 4.518400e+02
+10 871     -3.738600e+02 6.089700e+02
+12 871     -5.079100e+02 3.703000e+02
+14 871     1.186600e+02 -3.365400e+02
+0 872     -7.304999e+01 4.943700e+02
+1 872     2.998000e+02 5.218100e+02
+2 872     -3.592700e+02 2.541800e+02
+3 872     -4.881700e+02 -7.731000e+01
+4 872     1.644000e+01 -3.158600e+02
+5 872     3.326100e+02 -1.567700e+02
+6 872     -5.609700e+02 4.990600e+02
+7 872     -2.979100e+02 5.547400e+02
+8 872     -2.158100e+02 1.919500e+02
+11 872     8.222998e+01 -2.706000e+02
+12 872     -3.827800e+02 4.915400e+02
+14 872     2.432900e+02 -2.433900e+02
+0 873     -1.286400e+02 4.184100e+02
+1 873     2.241801e+02 4.589400e+02
+2 873     -4.082300e+02 1.621700e+02
+4 873     -2.365002e+01 -2.765100e+02
+5 873     2.734800e+02 -2.381400e+02
+7 873     -3.429800e+02 4.692800e+02
+8 873     -2.556600e+02 1.183900e+02
+11 873     3.401001e+01 -3.382800e+02
+12 873     -4.313500e+02 3.911100e+02
+13 873     8.863000e+01 9.345001e+01
+14 873     1.874399e+02 -3.250000e+02
+0 874     8.602002e+01 5.686800e+02
+1 874     4.859200e+02 5.589200e+02
+4 874     4.983002e+01 -4.182900e+02
+5 874     4.896801e+02 -7.606000e+01
+13 874     2.559301e+02 2.320900e+02
+0 875     5.134998e+01 5.853800e+02
+1 875     4.531700e+02 5.845900e+02
+3 875     -3.823800e+02 2.204999e+01
+5 875     4.567500e+02 -6.012000e+01
+11 875     1.887900e+02 -1.898200e+02
+13 875     2.291300e+02 2.443000e+02
+14 875     3.617800e+02 -1.471700e+02
+0 876     1.209400e+02 4.153400e+02
+1 876     4.828300e+02 3.916500e+02
+2 876     -1.717400e+02 1.645200e+02
+3 876     -3.088200e+02 -1.673700e+02
+5 876     5.234800e+02 -2.384100e+02
+7 876     -9.913000e+01 4.940400e+02
+9 876     -2.931200e+02 2.108700e+02
+0 877     9.196997e+01 4.388300e+02
+1 877     4.581500e+02 4.233400e+02
+7 877     -1.295700e+02 5.156700e+02
+0 878     -3.393600e+02 3.764600e+02
+1 878     4.809998e+00 4.706800e+02
+2 878     -6.212400e+02 1.073800e+02
+7 878     -5.502300e+02 4.015600e+02
+11 878     -1.550900e+02 -3.755300e+02
+12 878     -6.652900e+02 3.075700e+02
+0 879     -3.505300e+02 3.109400e+02
+1 879     -2.140997e+01 4.100000e+02
+7 879     -5.528800e+02 3.306800e+02
+15 879     -5.434600e+02 5.146800e+02
+0 880     -4.488000e+01 2.627600e+02
+1 880     2.614900e+02 2.844800e+02
+7 880     -2.316800e+02 3.247800e+02
+10 880     -1.737100e+02 4.472500e+02
+15 880     -1.133500e+02 4.892100e+02
+0 881     -1.588100e+02 -8.973999e+01
+1 881     -1.062000e+01 -1.258002e+01
+3 881     -9.242999e+01 -4.457600e+02
+6 881     -2.043100e+02 -1.510300e+02
+7 881     -2.354700e+02 -8.469971e+00
+8 881     1.294000e+01 -1.557800e+02
+10 881     -2.679900e+02 1.984998e+01
+12 881     -1.969000e+02 -9.057001e+01
+15 881     -2.360700e+02 -6.460022e+00
+0 882     -1.448000e+02 -9.584998e+01
+1 882     1.599731e-01 -2.267999e+01
+3 882     -7.247998e+01 -4.470000e+02
+7 882     -2.197400e+02 -1.184998e+01
+8 882     2.864001e+01 -1.577300e+02
+10 882     -2.516000e+02 1.471997e+01
+12 882     -1.766800e+02 -9.281000e+01
+13 882     2.465300e+02 -3.205200e+02
+15 882     -2.159400e+02 -1.240997e+01
+0 883     -1.467800e+02 -5.010100e+02
+1 883     -1.197900e+02 -4.044600e+02
+4 883     -6.388200e+02 -2.684100e+02
+6 883     -3.115997e+01 -6.462000e+02
+7 883     -1.483000e+02 -4.230200e+02
+9 883     6.147998e+01 -4.285400e+02
+0 884     3.420001e+01 -6.138000e+01
+1 884     1.745800e+02 -4.077002e+01
+3 884     1.193600e+02 -3.361800e+02
+7 884     -3.963000e+01 5.847998e+01
+8 884     1.983000e+02 -7.215997e+01
+10 884     -4.783002e+01 7.413000e+01
+13 884     4.110200e+02 -2.712000e+02
+15 884     1.931000e+01 5.865997e+01
+0 885     8.347998e+01 4.104999e+01
+1 885     2.526100e+02 4.494000e+01
+2 885     2.220100e+02 8.872998e+01
+4 885     -2.541200e+02 -4.793700e+02
+7 885     -7.580017e+00 1.689000e+02
+8 885     2.137300e+02 2.551001e+01
+10 885     -9.699707e-01 1.975300e+02
+12 885     6.559003e+01 1.461300e+02
+13 885     4.431600e+02 -1.787800e+02
+15 885     7.271002e+01 2.048800e+02
+0 886     3.024100e+02 -1.843100e+02
+1 886     4.042200e+02 -2.474300e+02
+2 886     5.030400e+02 -9.937000e+01
+6 886     3.445200e+02 -9.019000e+01
+7 886     2.414200e+02 -1.826001e+01
+8 886     4.454399e+02 -1.320300e+02
+10 886     2.745400e+02 -4.027002e+01
+12 886     3.731300e+02 -5.575000e+01
+13 886     6.589100e+02 -3.597800e+02
+15 886     4.022800e+02 -7.300000e+01
+0 887     -1.947700e+02 4.287600e+02
+1 887     1.602000e+02 4.861100e+02
+2 887     -4.741900e+02 1.747500e+02
+5 887     2.094200e+02 -2.261100e+02
+7 887     -4.101500e+02 4.731200e+02
+8 887     -3.091300e+02 1.266000e+02
+11 887     -2.513000e+01 -3.294800e+02
+12 887     -5.066300e+02 3.947200e+02
+0 888     -5.000000e-01 4.731100e+02
+1 888     3.698600e+02 4.819600e+02
+2 888     -2.895100e+02 2.290500e+02
+4 888     -9.199829e-01 -3.575300e+02
+5 888     4.033900e+02 -1.781400e+02
+6 888     -4.743100e+02 4.860000e+02
+7 888     -2.239800e+02 5.402500e+02
+8 888     -1.582000e+02 1.735300e+02
+9 888     -3.960300e+02 2.632000e+02
+11 888     1.479600e+02 -2.871000e+02
+12 888     -2.998300e+02 4.766300e+02
+13 888     1.895900e+02 1.469800e+02
+14 888     3.127700e+02 -2.637100e+02
+0 889     2.601100e+02 5.228600e+02
+1 889     6.624399e+02 4.680100e+02
+2 889     -5.446997e+01 2.948200e+02
+3 889     -1.949900e+02 -3.846002e+01
+4 889     1.278998e+01 -5.319800e+02
+5 889     6.676700e+02 -1.182300e+02
+6 889     -1.935400e+02 6.052500e+02
+11 889     3.793300e+02 -2.328000e+02
+12 889     -3.163000e+01 5.740700e+02
+0 890     2.227000e+02 9.576001e+01
+1 890     4.138900e+02 5.702002e+01
+3 890     2.042100e+02 -1.650400e+02
+7 890     1.151900e+02 2.414300e+02
+10 890     1.548700e+02 2.755000e+02
+12 890     1.928600e+02 2.328700e+02
+13 890     5.453900e+02 -1.241500e+02
+15 890     2.575500e+02 2.989100e+02
+0 891     1.557800e+02 -4.984998e+01
+1 891     2.953900e+02 -6.642999e+01
+6 891     1.581900e+02 1.490002e+01
+7 891     8.003998e+01 9.112000e+01
+8 891     3.007400e+02 -3.644000e+01
+15 891     1.829600e+02 9.101001e+01
+0 892     2.241200e+02 -5.234003e+01
+1 892     3.648900e+02 -9.032001e+01
+6 892     2.235100e+02 3.037000e+01
+7 892     1.450000e+02 9.838000e+01
+8 892     3.504900e+02 -3.157001e+01
+13 892     5.738500e+02 -2.488600e+02
+15 892     2.770400e+02 9.626999e+01
+0 893     1.882400e+02 -1.742300e+02
+1 893     2.902200e+02 -1.993600e+02
+6 893     2.332800e+02 -1.126600e+02
+8 893     3.601200e+02 -1.389800e+02
+10 893     1.424600e+02 -4.091998e+01
+12 893     2.507500e+02 -7.288000e+01
+15 893     2.436200e+02 -7.398999e+01
+0 894     2.917000e+02 -2.386700e+02
+1 894     3.774700e+02 -2.983800e+02
+6 894     3.495800e+02 -1.545300e+02
+7 894     2.394800e+02 -7.364001e+01
+12 894     3.759900e+02 -1.235100e+02
+15 894     3.955000e+02 -1.483000e+02
+0 895     2.917000e+02 -2.386700e+02
+1 895     3.774700e+02 -2.983800e+02
+6 895     3.495800e+02 -1.545300e+02
+7 895     2.394800e+02 -7.364001e+01
+12 895     3.759900e+02 -1.235100e+02
+15 895     3.955000e+02 -1.483000e+02
+0 896     2.195300e+02 8.667999e+01
+1 896     4.067200e+02 4.937000e+01
+6 896     1.582700e+02 1.777600e+02
+7 896     1.143800e+02 2.323200e+02
+10 896     1.525500e+02 2.644400e+02
+12 896     1.946400e+02 2.229800e+02
+13 896     5.457600e+02 -1.316900e+02
+15 896     2.541400e+02 2.860800e+02
+0 897     1.413101e+02 -5.045001e+01
+1 897     2.803101e+02 -6.185999e+01
+2 897     3.165400e+02 1.331000e+01
+3 897     2.192800e+02 -2.925400e+02
+7 897     6.608002e+01 8.850000e+01
+8 897     2.899400e+02 -3.823999e+01
+10 897     7.576001e+01 9.716998e+01
+13 897     5.059700e+02 -2.519600e+02
+15 897     1.638000e+02 8.795999e+01
+0 898     7.690002e+01 -5.635999e+01
+1 898     2.161400e+02 -4.856000e+01
+3 898     1.627800e+02 -3.153500e+02
+7 898     3.489990e+00 7.150000e+01
+8 898     2.372300e+02 -5.548001e+01
+10 898     1.469971e+00 8.446997e+01
+13 898     4.509800e+02 -2.628800e+02
+15 898     7.666998e+01 7.101001e+01
+0 899     1.340500e+02 -7.435999e+01
+1 899     2.668800e+02 -8.370001e+01
+2 899     3.178500e+02 -1.389001e+01
+6 899     1.438100e+02 -1.875000e+01
+7 899     6.253998e+01 6.321002e+01
+8 899     2.895400e+02 -6.089001e+01
+10 899     6.945001e+01 6.889001e+01
+13 899     5.021500e+02 -2.740000e+02
+15 899     1.565200e+02 5.442999e+01
+0 900     1.906700e+02 -9.381000e+01
+1 900     3.181700e+02 -1.207500e+02
+4 900     -3.702400e+02 -5.663101e+02
+6 900     2.042800e+02 -2.496002e+01
+7 900     1.199000e+02 5.244000e+01
+8 900     3.354600e+02 -7.194000e+01
+10 900     1.368000e+02 5.173999e+01
+12 900     2.252000e+02 1.848999e+01
+13 900     5.506700e+02 -2.877400e+02
+15 900     2.365900e+02 3.547998e+01
+0 901     1.730000e+02 -1.065400e+02
+1 901     2.960400e+02 -1.286500e+02
+6 901     1.899000e+02 -4.672998e+01
+0 902     -8.440002e+00 -2.145700e+02
+1 902     8.548999e+01 -1.757000e+02
+2 902     2.344600e+02 -1.953400e+02
+3 902     1.569000e+02 -4.949700e+02
+4 902     -4.273600e+02 -4.038100e+02
+6 902     4.645001e+01 -2.244399e+02
+7 902     -5.265997e+01 -1.011000e+02
+8 902     2.120700e+02 -2.116000e+02
+10 902     -8.056000e+01 -1.077900e+02
+12 902     4.328003e+01 -1.766000e+02
+13 902     3.968101e+02 -4.100900e+02
+15 902     -1.790997e+01 -1.542600e+02
+0 903     1.296400e+02 -2.712000e+02
+1 903     2.028199e+02 -2.755200e+02
+4 903     -5.032100e+02 -5.149700e+02
+6 903     2.077100e+02 -2.428101e+02
+7 903     9.189001e+01 -1.332300e+02
+10 903     8.485999e+01 -1.582400e+02
+12 903     2.159800e+02 -2.053400e+02
+15 903     1.771300e+02 -2.133000e+02
+0 904     3.498800e+02 -3.395400e+02
+1 904     4.140300e+02 -4.207400e+02
+10 904     3.443900e+02 -2.118300e+02
+12 904     4.534200e+02 -2.401800e+02
+0 905     9.102002e+01 -2.291000e+02
+1 905     1.731600e+02 -2.206600e+02
+2 905     3.508900e+02 -1.712800e+02
+3 905     2.655699e+02 -4.676400e+02
+4 905     -4.578000e+02 -4.880100e+02
+6 905     1.654600e+02 -1.994500e+02
+7 905     5.041998e+01 -9.554999e+01
+8 905     3.092900e+02 -1.943500e+02
+10 905     3.672998e+01 -1.139900e+02
+12 905     1.677600e+02 -1.571600e+02
+15 905     1.182600e+02 -1.607700e+02
+0 906     3.702900e+02 5.021000e+02
+1 906     7.839301e+02 4.172200e+02
+5 906     7.755699e+02 -1.374000e+02
+6 906     -8.247000e+01 5.986800e+02
+8 906     1.086300e+02 2.091600e+02
+11 906     4.850500e+02 -2.440200e+02
+12 906     7.944000e+01 5.606000e+02
+13 906     4.835200e+02 1.950500e+02
+14 906     6.749800e+02 -2.158800e+02
+0 907     1.467800e+02 4.686400e+02
+1 907     5.248400e+02 4.401000e+02
+6 907     -3.097200e+02 5.193100e+02
+7 907     -8.129999e+01 5.505700e+02
+12 907     -1.411700e+02 5.019000e+02
+13 907     3.090400e+02 1.575400e+02
+14 907     4.599700e+02 -2.554700e+02
+0 908     4.070007e+00 -2.673200e+02
+1 908     8.708002e+01 -2.318400e+02
+3 908     1.672600e+02 -5.763000e+02
+4 908     -4.731100e+02 -4.050100e+02
+6 908     6.020001e+01 -2.918101e+02
+7 908     -3.663000e+01 -1.547900e+02
+8 908     2.216800e+02 -2.755400e+02
+10 908     -6.057001e+01 -1.671200e+02
+12 908     6.162000e+01 -2.467700e+02
+13 908     4.035601e+02 -4.615200e+02
+15 908     7.539978e+00 -2.241600e+02
+0 909     -3.877200e+02 3.151900e+02
+1 909     -5.587000e+01 4.220400e+02
+5 909     2.250000e+00 -3.403000e+02
+8 909     -4.742300e+02 1.367999e+01
+10 909     -5.927300e+02 4.777000e+02
+14 909     -7.848999e+01 -4.479900e+02
+0 910     5.500000e+01 -1.015900e+02
+1 910     1.827400e+02 -8.640997e+01
+2 910     2.438500e+02 -6.828003e+01
+4 910     -3.533100e+02 -4.540601e+02
+6 910     6.400000e+01 -7.808002e+01
+8 910     2.266100e+02 -1.048000e+02
+9 910     9.803998e+01 3.744000e+01
+13 910     4.344100e+02 -3.059500e+02
+15 910     5.372998e+01 6.630005e+00
+0 911     4.129999e+01 -2.826001e+01
+1 911     1.907600e+02 -1.034998e+01
+4 911     -2.977300e+02 -4.453300e+02
+13 911     4.152500e+02 -2.426100e+02
+15 911     2.473999e+01 1.049000e+02
+0 912     1.628500e+02 -7.289001e+01
+1 912     2.950300e+02 -9.151001e+01
+2 912     3.425601e+02 -8.750000e+00
+6 912     1.713000e+02 -9.739990e+00
+7 912     8.979999e+01 6.859998e+01
+8 912     3.110900e+02 -5.614001e+01
+10 912     1.033500e+02 7.434998e+01
+13 912     5.258600e+02 -2.713800e+02
+15 912     1.957600e+02 6.060999e+01
+0 913     -3.440300e+02 8.167999e+01
+1 913     -8.998999e+01 1.925000e+02
+10 913     -5.069800e+02 2.030300e+02
+0 914     -3.925800e+02 3.104100e+02
+1 914     -6.190002e+01 4.198800e+02
+5 914     -4.600220e-01 -3.520000e+02
+7 914     -5.955700e+02 3.252800e+02
+10 914     -5.951100e+02 4.722900e+02
+13 914     -1.245800e+02 -1.171997e+01
+14 914     -8.103003e+01 -4.444900e+02
+15 914     -6.013000e+02 5.098800e+02
+0 915     -3.787500e+02 3.142200e+02
+1 915     -4.746997e+01 4.204400e+02
+7 915     -5.820000e+02 3.308700e+02
+0 916     -3.979300e+02 3.345000e+02
+1 916     -6.159998e+01 4.446300e+02
+7 916     -6.048100e+02 3.500000e+02
+8 916     -4.787500e+02 2.863000e+01
+10 916     -6.060500e+02 5.007500e+02
+12 916     -7.279800e+02 2.455700e+02
+14 916     -8.440002e+01 -4.186400e+02
+15 916     -6.137100e+02 5.424500e+02
+0 917     -3.694300e+02 3.035800e+02
+1 917     -4.120001e+01 4.074600e+02
+5 917     2.128998e+01 -3.606900e+02
+7 917     -5.708100e+02 3.205000e+02
+10 917     -5.660600e+02 4.656600e+02
+11 917     -1.852300e+02 -4.406900e+02
+13 917     -1.063800e+02 -1.748999e+01
+14 917     -5.912000e+01 -4.533300e+02
+15 917     -5.682200e+02 5.027300e+02
+0 918     -3.736400e+02 3.170300e+02
+1 918     -4.234003e+01 4.205900e+02
+4 918     -6.012000e+01 -1.298800e+02
+7 918     -5.769700e+02 3.335000e+02
+8 918     -4.574700e+02 9.209991e+00
+11 918     -1.880800e+02 -4.293400e+02
+12 918     -6.954800e+02 2.253600e+02
+15 918     -5.761500e+02 5.209600e+02
+0 919     -3.304400e+02 4.423900e+02
+1 919     2.882001e+01 5.327400e+02
+0 920     -5.263800e+02 4.349400e+02
+1 920     -1.607400e+02 5.704100e+02
+7 920     -7.564600e+02 4.432500e+02
+8 920     -5.969100e+02 1.265600e+02
+10 920     -7.838100e+02 6.164300e+02
+14 920     -1.985200e+02 -3.096600e+02
+0 921     -2.414100e+02 4.120700e+02
+1 921     1.128700e+02 4.797200e+02
+10 921     -4.251700e+02 6.084500e+02
+0 922     -1.655100e+02 3.931300e+02
+1 922     1.832000e+02 4.442100e+02
+2 922     -4.431200e+02 1.281700e+02
+4 922     -3.563000e+01 -2.526900e+02
+5 922     2.354700e+02 -2.667300e+02
+7 922     -3.756700e+02 4.385600e+02
+8 922     -2.836200e+02 9.129001e+01
+11 922     1.679993e+00 -3.612800e+02
+12 922     -4.680800e+02 3.536800e+02
+13 922     5.927002e+01 6.878003e+01
+14 922     1.500601e+02 -3.539800e+02
+0 923     1.823101e+02 4.016100e+02
+1 923     5.450300e+02 3.610400e+02
+0 924     2.054200e+02 4.107400e+02
+1 924     5.726400e+02 3.642000e+02
+2 924     -9.612000e+01 1.611800e+02
+7 924     -1.828998e+01 4.983000e+02
+8 924     7.700195e-01 1.231400e+02
+11 924     3.412200e+02 -3.349400e+02
+12 924     -7.097998e+01 4.334800e+02
+13 924     3.549200e+02 1.054400e+02
+14 924     5.173800e+02 -3.220600e+02
+0 925     4.975300e+02 4.076700e+02
+1 925     8.663800e+02 2.894400e+02
+2 925     2.764600e+02 2.931600e+02
+3 925     1.353000e+02 -3.503998e+01
+7 925     2.835400e+02 5.484000e+02
+9 925     9.094000e+01 3.383100e+02
+11 925     6.030000e+02 -3.231200e+02
+0 926     2.496700e+02 4.519700e+02
+1 926     6.326000e+02 3.954500e+02
+2 926     -6.241998e+01 2.098900e+02
+3 926     -2.044700e+02 -1.216600e+02
+5 926     6.531600e+02 -1.954700e+02
+6 926     -1.984400e+02 5.117500e+02
+7 926     1.852002e+01 5.447200e+02
+8 926     2.871997e+01 1.618900e+02
+9 926     -2.025200e+02 2.536300e+02
+11 926     3.785699e+02 -2.953900e+02
+12 926     -3.302002e+01 4.873800e+02
+13 926     3.891400e+02 1.442800e+02
+14 926     5.591500e+02 -2.752500e+02
+0 927     3.296600e+02 4.607700e+02
+1 927     7.244301e+02 3.833600e+02
+6 927     -1.167400e+02 5.398000e+02
+7 927     9.217999e+01 5.616600e+02
+8 927     8.477002e+01 1.727700e+02
+9 927     -1.462200e+02 2.662400e+02
+11 927     4.519301e+02 -2.832000e+02
+12 927     4.641998e+01 5.091100e+02
+13 927     4.528800e+02 1.573300e+02
+0 928     1.503400e+02 -1.133100e+02
+1 928     2.722800e+02 -1.272800e+02
+2 928     3.423500e+02 -5.682001e+01
+4 928     -3.783800e+02 -5.319700e+02
+6 928     1.697100e+02 -5.910999e+01
+7 928     8.410999e+01 2.645001e+01
+8 928     3.094900e+02 -9.595001e+01
+10 928     9.259003e+01 2.559003e+01
+12 928     1.871600e+02 -1.476001e+01
+15 928     1.845100e+02 3.479980e+00
+0 929     2.509800e+02 -7.922998e+01
+1 929     3.855601e+02 -1.258400e+02
+2 929     4.153199e+02 -7.549988e+00
+6 929     2.548700e+02 7.299988e+00
+7 929     1.740900e+02 7.571002e+01
+8 929     3.742500e+02 -5.429001e+01
+12 929     2.835400e+02 4.859003e+01
+15 929     3.179800e+02 6.339001e+01
+0 930     1.479700e+02 6.995001e+01
+1 930     3.261801e+02 5.450000e+01
+2 930     2.696899e+02 1.255700e+02
+3 930     1.676400e+02 -1.878300e+02
+4 930     -2.424200e+02 -5.298800e+02
+5 930     8.064301e+02 -5.877400e+02
+6 930     1.019600e+02 1.423800e+02
+8 930     2.555000e+02 5.659000e+01
+9 930     1.095600e+02 1.996400e+02
+15 930     1.571400e+02 2.530100e+02
+0 931     1.605300e+02 -1.143800e+02
+1 931     2.825300e+02 -1.317200e+02
+2 931     3.513500e+02 -5.603003e+01
+3 931     2.548300e+02 -3.583200e+02
+6 931     1.793200e+02 -5.727002e+01
+10 931     1.043100e+02 2.535999e+01
+15 931     1.982700e+02 3.539978e+00
+0 932     8.241998e+01 -2.235500e+02
+1 932     1.675500e+02 -2.126300e+02
+3 932     2.532700e+02 -4.665699e+02
+4 932     -4.518800e+02 -4.806000e+02
+6 932     1.533600e+02 -1.972800e+02
+7 932     4.042999e+01 -9.213000e+01
+10 932     2.541998e+01 -1.089400e+02
+12 932     1.554600e+02 -1.543800e+02
+13 932     4.820100e+02 -4.092100e+02
+0 933     5.863900e+02 8.251999e+01
+1 933     8.411899e+02 -7.921997e+01
+6 933     4.164400e+02 2.223100e+02
+7 933     4.269600e+02 2.564700e+02
+8 933     4.720601e+02 1.660001e+01
+9 933     2.938800e+02 1.443700e+02
+12 933     5.016100e+02 2.324500e+02
+15 933     7.789700e+02 3.316600e+02
+0 934     2.328600e+02 -8.790997e+01
+1 934     3.637100e+02 -1.286900e+02
+2 934     4.041700e+02 -1.772998e+01
+6 934     2.410500e+02 -6.869995e+00
+7 934     1.585000e+02 6.456000e+01
+12 934     2.675100e+02 3.450000e+01
+15 934     2.936100e+02 4.913000e+01
+0 935     3.473400e+02 -1.814600e+02
+1 935     4.518101e+02 -2.599600e+02
+2 935     5.374000e+02 -8.901001e+01
+6 935     3.849900e+02 -7.360999e+01
+7 935     2.832300e+02 -8.359985e+00
+10 935     3.257800e+02 -3.210999e+01
+12 935     4.182100e+02 -4.112000e+01
+15 935     4.641200e+02 -6.335999e+01
+0 936     2.955500e+02 -1.840100e+02
+1 936     3.972400e+02 -2.447300e+02
+7 936     2.354100e+02 -1.915997e+01
+8 936     4.414500e+02 -1.335900e+02
+10 936     2.669600e+02 -4.033002e+01
+12 936     3.662400e+02 -5.756000e+01
+13 936     6.533199e+02 -3.601000e+02
+15 936     3.927200e+02 -7.344000e+01
+0 937     2.383002e+01 -2.525500e+02
+1 937     1.074100e+02 -2.229400e+02
+2 937     2.706899e+02 -2.421300e+02
+3 937     1.915900e+02 -5.409800e+02
+4 937     -4.647600e+02 -4.252100e+02
+6 937     8.516998e+01 -2.624600e+02
+7 937     -1.666998e+01 -1.348500e+02
+8 937     2.427100e+02 -2.488500e+02
+9 937     1.296500e+02 -1.038600e+02
+10 937     -3.892999e+01 -1.480100e+02
+12 937     8.615997e+01 -2.178100e+02
+13 937     4.246000e+02 -4.445000e+02
+15 937     3.134998e+01 -2.014100e+02
+0 938     1.120100e+02 3.439001e+01
+1 938     2.783800e+02 3.004999e+01
+2 938     2.543800e+02 8.934003e+01
+6 938     8.090002e+01 9.462000e+01
+7 938     2.234998e+01 1.669800e+02
+10 938     3.296002e+01 1.924100e+02
+12 938     1.002800e+02 1.463700e+02
+15 938     1.122000e+02 1.994600e+02
+0 939     6.279500e+02 6.559998e+01
+1 939     8.796100e+02 -1.100600e+02
+2 939     5.539600e+02 5.823999e+01
+6 939     4.718400e+02 2.197900e+02
+7 939     4.698600e+02 2.484800e+02
+9 939     3.362500e+02 1.498300e+02
+10 939     6.304100e+02 2.839400e+02
+12 939     5.541000e+02 2.298400e+02
+15 939     8.387700e+02 3.143100e+02
+0 940     8.876001e+01 -1.673200e+02
+1 940     1.936700e+02 -1.604400e+02
+3 940     2.228800e+02 -4.196801e+02
+6 940     1.303700e+02 -1.367800e+02
+7 940     3.470001e+01 -3.646002e+01
+10 940     2.714001e+01 -4.323999e+01
+12 940     1.384200e+02 -9.157001e+01
+13 940     4.754301e+02 -3.598300e+02
+15 940     1.071200e+02 -7.769000e+01
+0 941     2.272200e+02 -9.220001e+01
+1 941     3.564900e+02 -1.313100e+02
+2 941     4.011300e+02 -2.341998e+01
+3 941     2.990200e+02 -3.252800e+02
+6 941     2.371500e+02 -1.353998e+01
+7 941     1.540000e+02 5.914001e+01
+8 941     3.613100e+02 -6.778998e+01
+12 941     2.626100e+02 2.759003e+01
+13 941     5.804900e+02 -2.839600e+02
+15 941     2.871899e+02 4.228003e+01
+0 942     8.971002e+01 5.170600e+02
+1 942     4.764800e+02 5.040700e+02
+2 942     -2.108600e+02 2.805300e+02
+3 942     -3.455700e+02 -5.246002e+01
+5 942     4.933700e+02 -1.298000e+02
+8 942     -9.398001e+01 2.161000e+02
+9 942     -3.315800e+02 3.108600e+02
+11 942     2.266100e+02 -2.458900e+02
+14 942     3.998300e+02 -2.150600e+02
+0 943     1.623700e+02 -1.006900e+02
+1 943     2.873199e+02 -1.183700e+02
+3 943     2.528900e+02 -3.431300e+02
+0 944     2.147400e+02 -1.093900e+02
+1 944     3.392300e+02 -1.440900e+02
+3 944     2.942700e+02 -3.455200e+02
+6 944     2.297500e+02 -3.645001e+01
+8 944     3.549200e+02 -8.476001e+01
+12 944     2.539399e+02 5.020020e+00
+15 944     2.720400e+02 1.762000e+01
+0 945     5.902700e+02 1.116100e+02
+1 945     8.544100e+02 -4.929999e+01
+6 945     4.131500e+02 2.570100e+02
+9 945     2.897600e+02 1.714900e+02
+12 945     4.980000e+02 2.668500e+02
+15 945     7.807300e+02 3.734100e+02
+0 946     6.587300e+02 -5.646997e+01
+1 946     8.735200e+02 -2.496000e+02
+2 946     6.224399e+02 -5.171002e+01
+3 946     4.921000e+02 -3.553800e+02
+6 946     5.413500e+02 9.692999e+01
+7 946     5.164200e+02 1.361900e+02
+8 946     5.686899e+02 -7.363000e+01
+10 946     6.762800e+02 1.446700e+02
+12 946     6.200900e+02 1.067700e+02
+0 947     1.582500e+02 -1.117800e+02
+1 947     2.807400e+02 -1.283200e+02
+6 947     1.768900e+02 -5.477002e+01
+8 947     3.152000e+02 -9.306000e+01
+15 947     1.948199e+02 6.739990e+00
+0 948     1.319900e+02 -9.564001e+01
+1 948     2.587300e+02 -1.041300e+02
+2 948     3.208400e+02 -3.928003e+01
+6 948     1.467500e+02 -4.406000e+01
+7 948     6.383002e+01 4.156000e+01
+8 948     2.913500e+02 -8.128998e+01
+12 948     1.624100e+02 1.809998e+00
+15 948     1.568400e+02 2.532001e+01
+0 949     6.647700e+02 -1.092700e+02
+1 949     8.631100e+02 -3.073300e+02
+2 949     6.443500e+02 -1.042900e+02
+6 949     5.642200e+02 3.952002e+01
+12 949     6.422500e+02 4.895001e+01
+0 950     6.072300e+02 1.314200e+02
+1 950     8.785300e+02 -3.364001e+01
+2 950     5.131899e+02 1.149800e+02
+3 950     3.762300e+02 -1.980300e+02
+6 950     4.292900e+02 2.850900e+02
+7 950     4.406700e+02 3.079400e+02
+8 950     4.807400e+02 6.570999e+01
+9 950     3.005400e+02 1.957200e+02
+10 950     6.011200e+02 3.589200e+02
+12 950     5.132700e+02 2.949100e+02
+13 950     8.132900e+02 -8.091998e+01
+15 950     8.022300e+02 4.034300e+02
+0 951     2.327800e+02 5.659973e+00
+1 951     3.921899e+02 -3.508002e+01
+2 951     3.702300e+02 7.620001e+01
+3 951     2.638900e+02 -2.318500e+02
+6 951     2.109000e+02 9.620001e+01
+7 951     1.433000e+02 1.567700e+02
+8 951     3.388600e+02 1.573001e+01
+10 951     1.755600e+02 1.716700e+02
+12 951     2.397700e+02 1.412700e+02
+13 951     5.727200e+02 -1.982900e+02
+15 951     2.819200e+02 1.768700e+02
+0 952     2.916500e+02 -2.743500e+02
+1 952     3.715601e+02 -3.348400e+02
+2 952     5.062700e+02 -2.261200e+02
+6 952     3.473100e+02 -2.069500e+02
+7 952     2.406300e+02 -1.133300e+02
+8 952     4.472300e+02 -2.337900e+02
+10 952     2.715601e+02 -1.444800e+02
+12 952     3.767600e+02 -1.765800e+02
+13 952     6.514000e+02 -4.496899e+02
+15 952     4.011899e+02 -1.972000e+02
+0 953     1.914000e+02 -9.075000e+01
+1 953     3.200100e+02 -1.179900e+02
+2 953     3.726300e+02 -2.360999e+01
+6 953     2.041300e+02 -2.066998e+01
+8 953     3.353000e+02 -6.890997e+01
+12 953     2.257800e+02 2.340002e+01
+15 953     2.371801e+02 3.970001e+01
+0 954     3.217400e+02 5.498100e+02
+1 954     7.421300e+02 4.810700e+02
+5 954     7.228199e+02 -8.873999e+01
+6 954     -1.426000e+02 6.483800e+02
+8 954     6.923999e+01 2.483500e+02
+9 954     -1.654100e+02 3.491400e+02
+12 954     2.134998e+01 6.084400e+02
+13 954     4.423900e+02 2.317500e+02
+14 954     6.225699e+02 -1.698800e+02
+0 955     6.072300e+02 1.314200e+02
+1 955     8.785300e+02 -3.364001e+01
+2 955     5.131899e+02 1.149800e+02
+3 955     3.762300e+02 -1.980300e+02
+6 955     4.292900e+02 2.850900e+02
+7 955     4.406700e+02 3.079400e+02
+8 955     4.807400e+02 6.570999e+01
+9 955     3.005400e+02 1.957200e+02
+10 955     6.011200e+02 3.589200e+02
+12 955     5.132700e+02 2.949100e+02
+13 955     8.132900e+02 -8.091998e+01
+0 956     2.363700e+02 4.490400e+02
+1 956     6.178500e+02 3.961700e+02
+2 956     -7.437000e+01 2.052200e+02
+8 956     1.853003e+01 1.584200e+02
+12 956     -4.742999e+01 4.817200e+02
+14 956     5.450699e+02 -2.797400e+02
+0 957     2.002900e+02 -2.431600e+02
+1 957     2.784301e+02 -2.708500e+02
+2 957     4.518300e+02 -1.677300e+02
+3 957     3.594000e+02 -4.613700e+02
+6 957     2.768000e+02 -1.811899e+02
+7 957     1.577800e+02 -9.126001e+01
+9 957     2.744600e+02 -3.476001e+01
+12 957     2.906899e+02 -1.454100e+02
+15 957     2.687800e+02 -1.661700e+02
+0 958     1.995400e+02 4.332600e+02
+1 958     5.723800e+02 3.892200e+02
+2 958     -1.038700e+02 1.860600e+02
+5 958     6.025200e+02 -2.170500e+02
+7 958     -2.656000e+01 5.204800e+02
+11 958     3.336200e+02 -3.147400e+02
+12 958     -8.141998e+01 4.594600e+02
+13 958     3.494200e+02 1.243200e+02
+14 958     5.103500e+02 -2.981800e+02
+0 959     3.465100e+02 4.712700e+02
+1 959     7.467900e+02 3.902000e+02
+2 959     1.795001e+01 2.333300e+02
+3 959     -1.278500e+02 -9.947998e+01
+5 959     7.521600e+02 -1.711600e+02
+6 959     -1.007600e+02 5.566500e+02
+7 959     1.067200e+02 5.737600e+02
+8 959     9.566998e+01 1.822600e+02
+9 959     -1.356000e+02 2.773500e+02
+11 959     4.670000e+02 -2.724600e+02
+12 959     6.178998e+01 5.233900e+02
+13 959     4.657400e+02 1.667200e+02
+14 959     6.542400e+02 -2.497000e+02
+0 960     3.535200e+02 5.241300e+02
+1 960     7.708300e+02 4.452500e+02
+2 960     1.626001e+01 2.905000e+02
+3 960     -1.290400e+02 -4.159998e+01
+5 960     7.566100e+02 -1.142200e+02
+6 960     -1.045600e+02 6.232700e+02
+8 960     9.413000e+01 2.278300e+02
+9 960     -1.388700e+02 3.267800e+02
+11 960     4.656000e+02 -2.261200e+02
+12 960     5.782001e+01 5.835100e+02
+13 960     4.687200e+02 2.129700e+02
+14 960     6.558101e+02 -1.936400e+02
+0 961     3.523199e+02 4.965000e+02
+1 961     7.612400e+02 4.158800e+02
+2 961     1.913000e+01 2.596900e+02
+5 961     7.567500e+02 -1.436700e+02
+6 961     -1.000900e+02 5.885600e+02
+8 961     9.645001e+01 2.037300e+02
+9 961     -1.353800e+02 3.011800e+02
+12 961     6.242999e+01 5.521400e+02
+13 961     4.694301e+02 1.889000e+02
+14 961     6.576100e+02 -2.227600e+02
+0 962     6.593101e+02 -1.004200e+02
+1 962     8.599200e+02 -2.959200e+02
+6 962     5.549200e+02 4.776001e+01
+7 962     5.227300e+02 9.460999e+01
+10 962     6.802400e+02 9.459003e+01
+12 962     6.337600e+02 5.733002e+01
+0 963     1.875200e+02 -1.716000e+02
+1 963     2.900400e+02 -1.965300e+02
+2 963     4.038000e+02 -1.030600e+02
+3 963     3.081000e+02 -4.022400e+02
+4 963     -4.316700e+02 -5.655900e+02
+6 963     2.317900e+02 -1.098700e+02
+7 963     1.309400e+02 -2.410999e+01
+10 963     1.412300e+02 -3.796002e+01
+12 963     2.490900e+02 -6.985999e+01
+13 963     5.605601e+02 -3.561100e+02
+15 963     2.423101e+02 -7.071997e+01
+0 964     1.710200e+02 -7.041998e+01
+1 964     3.047500e+02 -9.127002e+01
+2 964     3.495601e+02 -3.349976e+00
+3 964     2.507100e+02 -3.074900e+02
+6 964     1.796600e+02 -2.950012e+00
+7 964     9.789001e+01 7.319000e+01
+8 964     3.171700e+02 -5.198999e+01
+12 964     1.996801e+02 4.298999e+01
+13 964     5.334900e+02 -2.676400e+02
+15 964     2.062800e+02 6.453003e+01
+0 965     3.643101e+02 5.436300e+02
+1 965     7.904800e+02 4.636700e+02
+2 965     2.313000e+01 3.123900e+02
+6 965     -9.616000e+01 6.501900e+02
+0 966     3.404301e+02 5.572400e+02
+1 966     7.662300e+02 4.844300e+02
+2 966     8.800049e-01 3.260000e+02
+3 966     -1.435300e+02 -8.840027e+00
+6 966     -1.244900e+02 6.626500e+02
+9 966     -1.533400e+02 3.574400e+02
+11 966     4.498500e+02 -1.982300e+02
+13 966     4.569200e+02 2.393400e+02
+14 966     6.402800e+02 -1.611500e+02
+0 967     3.522400e+02 5.037500e+02
+1 967     7.633800e+02 4.236700e+02
+2 967     1.863000e+01 2.685600e+02
+3 967     -1.272500e+02 -6.372998e+01
+5 967     7.565699e+02 -1.358000e+02
+6 967     -1.010700e+02 5.977900e+02
+8 967     9.602002e+01 2.101300e+02
+9 967     -1.362800e+02 3.080200e+02
+11 967     4.677400e+02 -2.439000e+02
+12 967     6.152002e+01 5.608300e+02
+13 967     4.691500e+02 1.952100e+02
+14 967     6.570000e+02 -2.152200e+02
+0 968     1.253700e+02 -1.659000e+02
+1 968     2.293900e+02 -1.707200e+02
+2 968     3.476200e+02 -1.072000e+02
+7 968     7.067999e+01 -2.816998e+01
+13 968     5.082100e+02 -3.554100e+02
+15 968     1.567500e+02 -7.127002e+01
+0 969     1.985699e+02 -8.065997e+01
+1 969     3.300800e+02 -1.102400e+02
+2 969     3.751600e+02 -1.087000e+01
+6 969     2.086600e+02 -7.020020e+00
+7 969     1.253300e+02 6.723999e+01
+8 969     3.394900e+02 -5.820999e+01
+10 969     1.443100e+02 6.857001e+01
+12 969     2.312200e+02 3.678003e+01
+13 969     5.564800e+02 -2.750700e+02
+15 969     2.456100e+02 5.446002e+01
+0 970     4.773000e+02 3.380100e+02
+1 970     8.218800e+02 2.196900e+02
+6 970     1.725300e+02 4.578300e+02
+7 970     2.720699e+02 4.767800e+02
+8 970     2.883900e+02 1.576200e+02
+12 970     2.842600e+02 4.519300e+02
+14 970     8.788600e+02 -3.722700e+02
+0 971     5.531200e+02 1.886100e+02
+1 971     8.395300e+02 4.297998e+01
+6 971     3.465700e+02 3.279600e+02
+7 971     3.790400e+02 3.524600e+02
+10 971     5.325100e+02 4.196700e+02
+12 971     4.349301e+02 3.364000e+02
+13 971     7.513101e+02 -3.842999e+01
+15 971     7.198101e+02 4.753200e+02
+0 972     9.090002e+01 -1.124100e+02
+1 972     2.141000e+02 -1.077700e+02
+2 972     2.845000e+02 -6.879999e+01
+3 972     1.934000e+02 -3.723500e+02
+6 972     1.070700e+02 -7.741998e+01
+7 972     2.528003e+01 1.734998e+01
+8 972     2.607300e+02 -1.058400e+02
+10 972     2.344000e+01 2.053003e+01
+12 972     1.194200e+02 -3.008002e+01
+15 972     1.031600e+02 -3.109985e+00
+0 973     2.756801e+02 -1.995900e+02
+1 973     3.703900e+02 -2.533400e+02
+2 973     4.936700e+02 -1.139000e+02
+3 973     3.933600e+02 -4.097400e+02
+8 973     4.354000e+02 -1.451600e+02
+10 973     2.454301e+02 -6.044000e+01
+12 973     3.534600e+02 -7.712000e+01
+13 973     6.416100e+02 -3.744200e+02
+15 973     3.667500e+02 -9.733002e+01
+0 974     2.122100e+02 -6.633002e+01
+1 974     3.484399e+02 -1.000300e+02
+3 974     2.796200e+02 -2.982800e+02
+6 974     2.169400e+02 1.276001e+01
+7 974     1.362100e+02 8.367999e+01
+13 974     5.664301e+02 -2.611200e+02
+15 974     2.624000e+02 7.590997e+01
+0 975     4.965000e+02 4.113600e+02
+1 975     8.663900e+02 2.936400e+02
+6 975     1.785300e+02 5.486800e+02
+7 975     2.816400e+02 5.517400e+02
+9 975     8.903003e+01 3.410900e+02
+0 976     6.591300e+02 -8.606000e+01
+1 976     8.644200e+02 -2.807600e+02
+2 976     6.314200e+02 -8.240997e+01
+6 976     5.510300e+02 6.334998e+01
+7 976     5.206801e+02 1.082800e+02
+8 976     5.762400e+02 -9.917999e+01
+10 976     6.791801e+02 1.108600e+02
+12 976     6.294399e+02 7.278003e+01
+0 977     4.812300e+02 3.331100e+02
+1 977     8.243500e+02 2.133000e+02
+2 977     2.754100e+02 2.126000e+02
+3 977     1.358100e+02 -1.123100e+02
+6 977     1.792900e+02 4.537200e+02
+7 977     2.769100e+02 4.722600e+02
+8 977     2.928300e+02 1.555100e+02
+10 977     4.376100e+02 5.854700e+02
+12 977     2.904900e+02 4.471400e+02
+13 977     6.432700e+02 7.123999e+01
+0 978     1.053700e+02 -8.659003e+01
+1 978     2.351200e+02 -8.669000e+01
+2 978     2.927600e+02 -3.503003e+01
+4 978     -3.496500e+02 -4.959399e+02
+6 978     1.164700e+02 -4.178003e+01
+7 978     3.613000e+01 4.615997e+01
+8 978     2.678700e+02 -7.783002e+01
+12 978     1.301800e+02 6.190002e+00
+13 978     4.782200e+02 -2.874100e+02
+15 978     1.190800e+02 3.378003e+01
+0 979     6.551001e+01 -1.608900e+02
+1 979     1.730200e+02 -1.472100e+02
+2 979     2.845000e+02 -1.193300e+02
+10 979     -6.599731e-01 -3.806000e+01
+12 979     1.092000e+02 -9.133002e+01
+15 979     7.479999e+01 -7.221002e+01
+0 980     2.196600e+02 -1.063500e+02
+1 980     3.449700e+02 -1.427100e+02
+2 980     3.986300e+02 -4.007001e+01
+3 980     2.970000e+02 -3.419300e+02
+6 980     2.337100e+02 -3.152002e+01
+7 980     1.489500e+02 4.417999e+01
+8 980     3.581900e+02 -8.141998e+01
+10 980     1.716200e+02 4.095001e+01
+12 980     2.584399e+02 9.770020e+00
+13 980     5.754301e+02 -2.971100e+02
+15 980     2.782900e+02 2.240002e+01
+0 981     9.090002e+01 -1.124100e+02
+1 981     2.141000e+02 -1.077700e+02
+2 981     2.845000e+02 -6.879999e+01
+3 981     1.934000e+02 -3.723500e+02
+6 981     1.070700e+02 -7.741998e+01
+7 981     2.528003e+01 1.734998e+01
+8 981     2.607300e+02 -1.058400e+02
+10 981     2.344000e+01 2.053003e+01
+13 981     4.668000e+02 -3.118800e+02
+15 981     1.031600e+02 -3.109985e+00
+0 982     3.424200e+02 5.479100e+02
+1 982     7.656400e+02 4.737800e+02
+2 982     3.989990e+00 3.156500e+02
+5 982     7.444600e+02 -8.940002e+01
+6 982     -1.202700e+02 6.499000e+02
+8 982     8.415002e+01 2.470900e+02
+9 982     -1.497400e+02 3.487100e+02
+12 982     4.291998e+01 6.083700e+02
+13 982     4.592600e+02 2.320400e+02
+14 982     6.434100e+02 -1.703200e+02
+0 983     5.737400e+02 2.051000e+02
+1 983     8.666000e+02 5.477002e+01
+2 983     4.566700e+02 1.724500e+02
+3 983     3.188300e+02 -1.442700e+02
+6 983     3.688500e+02 3.549800e+02
+8 983     4.350400e+02 1.145800e+02
+9 983     2.503700e+02 2.424600e+02
+10 983     5.560800e+02 4.426900e+02
+12 983     4.560601e+02 3.634400e+02
+13 983     7.710601e+02 -2.121997e+01
+15 983     7.465800e+02 5.021100e+02
+0 984     2.247700e+02 -7.954999e+01
+1 984     3.577000e+02 -1.176300e+02
+2 984     3.957300e+02 -8.650024e+00
+3 984     2.931700e+02 -3.123100e+02
+6 984     2.318900e+02 4.899902e-01
+7 984     1.498900e+02 7.177002e+01
+8 984     3.567600e+02 -5.557999e+01
+10 984     1.746300e+02 7.251001e+01
+13 984     5.775000e+02 -2.727500e+02
+15 984     2.815900e+02 5.944000e+01
+0 985     4.820699e+02 3.294900e+02
+1 985     8.241400e+02 2.095100e+02
+2 985     2.771700e+02 2.094100e+02
+3 985     1.381500e+02 -1.158900e+02
+6 985     1.808800e+02 4.497500e+02
+7 985     2.782400e+02 4.692200e+02
+8 985     2.944500e+02 1.522700e+02
+9 985     9.420001e+01 2.666700e+02
+12 985     2.920400e+02 4.442100e+02
+13 985     6.444500e+02 6.817999e+01
+0 986     2.583300e+02 -2.060600e+02
+1 986     3.498900e+02 -2.535000e+02
+2 986     4.822600e+02 -1.205800e+02
+6 986     3.165300e+02 -1.238700e+02
+7 986     2.052900e+02 -4.507001e+01
+8 986     4.254000e+02 -1.512700e+02
+10 986     2.261000e+02 -6.909003e+01
+12 986     3.381801e+02 -8.807001e+01
+15 986     3.434000e+02 -1.080700e+02
+0 987     2.295900e+02 4.334800e+02
+1 987     6.051200e+02 3.812700e+02
+7 987     1.849976e+00 5.239700e+02
+8 987     1.615997e+01 1.433800e+02
+11 987     3.616801e+02 -3.138600e+02
+14 987     5.402100e+02 -2.962100e+02
+0 988     6.040200e+02 9.834000e+01
+1 988     8.644500e+02 -6.806000e+01
+2 988     5.189399e+02 7.921002e+01
+6 988     4.341000e+02 2.465500e+02
+7 988     4.417800e+02 2.750900e+02
+8 988     4.849600e+02 3.685001e+01
+9 988     3.058400e+02 1.661100e+02
+10 988     5.998700e+02 3.196300e+02
+13 988     8.143900e+02 -1.109800e+02
+15 988     8.017600e+02 3.563600e+02
+0 989     2.385200e+02 5.571900e+02
+1 989     6.320601e+02 5.114000e+02
+0 990     -8.845001e+01 1.102100e+02
+1 990     1.303500e+02 1.563400e+02
+3 990     -1.726000e+02 -2.913100e+02
+4 990     -1.948800e+02 -3.299800e+02
+5 990     4.661899e+02 -5.574800e+02
+6 990     -2.579200e+02 8.258002e+01
+7 990     -2.123600e+02 1.947900e+02
+8 990     -2.214001e+01 -1.228000e+01
+9 990     -1.828300e+02 1.029300e+02
+10 990     -2.081600e+02 2.609200e+02
+12 990     -2.063700e+02 1.336600e+02
+13 990     2.417700e+02 -1.461900e+02
+15 990     -1.641600e+02 2.744300e+02
+0 991     6.150024e+00 -1.955300e+02
+1 991     1.050500e+02 -1.617800e+02
+3 991     1.601400e+02 -4.695200e+02
+4 991     -4.149800e+02 -4.158500e+02
+6 991     5.346997e+01 -1.970200e+02
+7 991     -4.116998e+01 -7.925000e+01
+10 991     -6.550000e+01 -8.448999e+01
+12 991     5.228003e+01 -1.488700e+02
+13 991     4.079000e+02 -3.914300e+02
+15 991     -9.899902e-01 -1.264500e+02
+0 992     -7.892999e+01 -1.500600e+02
+1 992     4.146002e+01 -9.288000e+01
+4 992     -3.671300e+02 -3.478600e+02
+6 992     -6.965997e+01 -1.826801e+02
+7 992     -1.386400e+02 -5.173999e+01
+8 992     1.193800e+02 -1.782700e+02
+10 992     -1.687900e+02 -4.115997e+01
+12 992     -7.012000e+01 -1.283200e+02
+13 992     3.198800e+02 -3.603400e+02
+15 992     -1.211700e+02 -7.709998e+01
+0 993     2.009399e+02 -2.833000e+02
+1 993     2.718700e+02 -3.113900e+02
+2 993     4.500900e+02 -2.309100e+02
+3 993     3.602400e+02 -5.257500e+02
+4 993     -5.295600e+02 -5.746400e+02
+6 993     2.770400e+02 -2.349100e+02
+7 993     1.606600e+02 -1.335700e+02
+8 993     3.953000e+02 -2.414700e+02
+9 993     2.742400e+02 -8.825000e+01
+10 993     1.677200e+02 -1.642600e+02
+12 993     2.936700e+02 -2.011000e+02
+13 993     5.831300e+02 -4.590300e+02
+15 993     2.765200e+02 -2.204100e+02
+0 994     5.706600e+02 2.496800e+02
+1 994     8.774399e+02 1.026700e+02
+2 994     4.413900e+02 2.126100e+02
+7 994     3.880699e+02 4.140900e+02
+8 994     4.229000e+02 1.470500e+02
+12 994     4.409399e+02 4.073700e+02
+13 994     7.623700e+02 1.445001e+01
+15 994     7.380400e+02 5.658400e+02
+0 995     -1.084700e+02 5.510010e+00
+1 995     6.950000e+01 6.321002e+01
+2 995     -1.671002e+01 -4.022998e+01
+4 995     -2.572700e+02 -3.227500e+02
+6 995     -1.993400e+02 -2.951001e+01
+7 995     -2.048600e+02 9.338000e+01
+8 995     1.942999e+01 -7.422998e+01
+10 995     -2.201200e+02 1.364600e+02
+12 995     -1.753300e+02 2.810999e+01
+13 995     2.574500e+02 -2.317700e+02
+15 995     -1.797300e+02 1.295100e+02
+0 996     1.791998e+01 -1.128500e+02
+1 996     1.437900e+02 -8.609998e+01
+6 996     2.734998e+01 -1.034400e+02
+7 996     -4.722998e+01 4.070007e+00
+9 996     7.175000e+01 1.977002e+01
+10 996     -6.090002e+01 1.245001e+01
+12 996     3.462000e+01 -5.291998e+01
+13 996     4.027900e+02 -3.182700e+02
+15 996     4.450012e+00 -1.334003e+01
+0 997     9.071997e+01 -1.727000e+02
+1 997     1.940200e+02 -1.664600e+02
+4 997     -4.136800e+02 -4.840800e+02
+6 997     1.340500e+02 -1.425500e+02
+7 997     3.767999e+01 -4.179999e+01
+8 997     2.824800e+02 -1.544900e+02
+10 997     2.982001e+01 -4.928003e+01
+12 997     1.420700e+02 -9.796002e+01
+13 997     4.775500e+02 -3.643900e+02
+15 997     1.104700e+02 -8.466998e+01
+0 998     -2.015997e+01 -1.980700e+02
+1 998     7.846002e+01 -1.557900e+02
+2 998     2.189600e+02 -1.759400e+02
+3 998     1.400000e+02 -4.767200e+02
+4 998     -4.122000e+02 -3.965300e+02
+6 998     2.912000e+01 -2.080699e+02
+7 998     -6.684003e+01 -8.617999e+01
+10 998     -9.504999e+01 -9.044000e+01
+12 998     2.519000e+01 -1.589200e+02
+15 998     -3.587000e+01 -1.337700e+02
+0 999     1.806200e+02 -3.320800e+02
+1 999     2.423700e+02 -3.533000e+02
+6 999     2.575000e+02 -3.079900e+02
+7 999     1.447900e+02 -1.886400e+02
+8 999     3.773300e+02 -3.072400e+02
+9 999     2.605699e+02 -1.582000e+02
+10 999     1.500200e+02 -2.218900e+02
+12 999     2.752300e+02 -2.752500e+02
+13 999     5.619500e+02 -5.110100e+02
+15 999     2.568700e+02 -2.892400e+02
+0 1000     7.328003e+01 -2.245900e+02
+1 1000     1.584700e+02 -2.110100e+02
+3 1000     2.432400e+02 -4.695400e+02
+4 1000     -4.499400e+02 -4.716600e+02
+6 1000     1.430600e+02 -2.012900e+02
+7 1000     3.154999e+01 -9.433002e+01
+8 1000     2.900800e+02 -1.949900e+02
+10 1000     1.432001e+01 -1.105800e+02
+12 1000     1.441300e+02 -1.579900e+02
+13 1000     4.733000e+02 -4.099500e+02
+15 1000     9.314001e+01 -1.569700e+02
+0 1001     1.177002e+01 -2.121800e+02
+1 1001     1.040200e+02 -1.793900e+02
+2 1001     2.583800e+02 -1.807000e+02
+3 1001     1.783300e+02 -4.796000e+02
+4 1001     -4.290800e+02 -4.209400e+02
+6 1001     7.004999e+01 -2.118300e+02
+7 1001     -3.256000e+01 -9.400000e+01
+8 1001     2.321700e+02 -2.005600e+02
+10 1001     -5.702002e+01 -1.032000e+02
+12 1001     6.752002e+01 -1.649000e+02
+13 1001     4.166700e+02 -4.050300e+02
+15 1001     8.080017e+00 -1.484600e+02
+0 1002     -7.951001e+01 -1.602800e+02
+1 1002     3.750000e+01 -1.024800e+02
+3 1002     5.046002e+01 -4.694301e+02
+6 1002     -6.278998e+01 -1.924800e+02
+8 1002     1.259100e+02 -1.847300e+02
+10 1002     -1.677500e+02 -5.300000e+01
+12 1002     -6.471002e+01 -1.386100e+02
+13 1002     3.214399e+02 -3.682300e+02
+15 1002     -1.205100e+02 -9.041998e+01
+0 1003     2.884003e+01 -2.326500e+02
+1 1003     1.157700e+02 -2.051000e+02
+2 1003     2.794301e+02 -2.048800e+02
+3 1003     1.980300e+02 -5.023400e+02
+4 1003     -4.489500e+02 -4.329500e+02
+6 1003     9.208002e+01 -2.314200e+02
+7 1003     -1.273999e+01 -1.120300e+02
+8 1003     2.496400e+02 -2.200000e+02
+10 1003     -3.551001e+01 -1.245400e+02
+12 1003     9.142999e+01 -1.865900e+02
+13 1003     4.321100e+02 -4.233900e+02
+15 1003     3.465997e+01 -1.738400e+02
+0 1004     1.510999e+01 -2.211600e+02
+1 1004     1.050600e+02 -1.889900e+02
+3 1004     1.825600e+02 -4.924900e+02
+4 1004     -4.368600e+02 -4.229500e+02
+6 1004     7.521997e+01 -2.220400e+02
+7 1004     -2.809003e+01 -1.027800e+02
+8 1004     2.359900e+02 -2.101400e+02
+10 1004     -5.252002e+01 -1.129700e+02
+12 1004     7.312000e+01 -1.756300e+02
+13 1004     4.195601e+02 -4.136700e+02
+15 1004     1.445001e+01 -1.601900e+02
+0 1005     -9.291998e+01 -1.725700e+02
+1 1005     2.298999e+01 -1.107100e+02
+2 1005     1.072200e+02 -1.937400e+02
+3 1005     3.116998e+01 -4.978300e+02
+4 1005     -3.817800e+02 -3.350200e+02
+6 1005     -8.104001e+01 -2.165699e+02
+7 1005     -1.498300e+02 -7.709003e+01
+8 1005     1.093200e+02 -2.065200e+02
+12 1005     -8.160999e+01 -1.625800e+02
+15 1005     -1.372700e+02 -1.089800e+02
+0 1006     3.260900e+02 5.041400e+02
+1 1006     7.332100e+02 4.307100e+02
+2 1006     -3.679993e+00 2.694500e+02
+5 1006     7.299301e+02 -1.373800e+02
+6 1006     -1.291600e+02 5.952400e+02
+8 1006     7.753998e+01 2.109000e+02
+9 1006     -1.554600e+02 3.090600e+02
+11 1006     4.429100e+02 -2.447000e+02
+12 1006     3.451001e+01 5.590700e+02
+13 1006     4.467600e+02 1.971800e+02
+14 1006     6.294700e+02 -2.125700e+02
+0 1007     1.731899e+02 -3.053600e+02
+1 1007     2.393000e+02 -3.221800e+02
+2 1007     4.208500e+02 -2.721700e+02
+7 1007     1.348600e+02 -1.611700e+02
+8 1007     3.685700e+02 -2.746200e+02
+9 1007     2.536000e+02 -1.237900e+02
+0 1008     6.115100e+02 1.307700e+02
+1 1008     8.830300e+02 -3.560999e+01
+2 1008     5.180900e+02 1.165600e+02
+3 1008     3.807000e+02 -1.963500e+02
+7 1008     4.447000e+02 3.086200e+02
+8 1008     4.857900e+02 6.635001e+01
+9 1008     3.055900e+02 1.974400e+02
+10 1008     6.062800e+02 3.587200e+02
+12 1008     5.177600e+02 2.983100e+02
+13 1008     8.189500e+02 -8.148999e+01
+15 1008     8.091801e+02 4.027600e+02
+0 1009     6.722900e+02 -2.746400e+02
+1 1009     8.011300e+02 -4.799399e+02
+0 1010     -2.405000e+02 4.504400e+02
+1 1010     1.193800e+02 5.184300e+02
+2 1010     -5.208600e+02 2.016300e+02
+4 1010     3.419983e+00 -2.166100e+02
+5 1010     1.655100e+02 -2.034300e+02
+7 1010     -4.594600e+02 4.902900e+02
+11 1010     -6.595001e+01 -3.110900e+02
+12 1010     -5.628700e+02 4.141300e+02
+0 1011     -3.768000e+02 4.244100e+02
+1 1011     -2.038000e+01 5.260400e+02
+7 1011     -5.960200e+02 4.485500e+02
+8 1011     -4.628900e+02 1.192300e+02
+10 1011     -5.936200e+02 6.140200e+02
+12 1011     -7.178300e+02 3.625200e+02
+14 1011     -5.415002e+01 -3.212400e+02
+0 1012     -1.930900e+02 4.649800e+02
+1 1012     1.702000e+02 5.216600e+02
+5 1012     2.132600e+02 -1.881000e+02
+7 1012     -4.137900e+02 5.111600e+02
+12 1012     -5.112600e+02 4.391100e+02
+0 1013     -3.572000e+02 4.869300e+02
+1 1013     1.285999e+01 5.821700e+02
+8 1013     -4.472700e+02 1.800100e+02
+12 1013     -7.054500e+02 4.434100e+02
+0 1014     -2.410999e+01 -6.006000e+01
+1 1014     1.223700e+02 -2.302002e+01
+3 1014     4.754999e+01 -3.647300e+02
+7 1014     -1.012200e+02 4.715002e+01
+8 1014     1.367900e+02 -9.265002e+01
+10 1014     -1.148900e+02 6.882001e+01
+15 1014     -5.873999e+01 5.203003e+01
+0 1015     -3.400000e+01 5.159003e+01
+1 1015     1.479399e+02 8.788000e+01
+2 1015     7.423999e+01 5.045001e+01
+3 1015     -1.420001e+01 -2.633900e+02
+5 1015     5.839900e+02 -6.144900e+02
+6 1015     -1.075300e+02 5.845001e+01
+7 1015     -1.322000e+02 1.562800e+02
+8 1015     9.328998e+01 -2.929993e+00
+10 1015     -1.384400e+02 1.974700e+02
+12 1015     -8.712000e+01 1.143000e+02
+13 1015     3.292900e+02 -1.827400e+02
+15 1015     -8.691998e+01 2.025500e+02
+0 1016     2.770020e+00 -2.641300e+02
+1 1016     8.666998e+01 -2.280400e+02
+3 1016     1.651600e+02 -5.720400e+02
+4 1016     -4.702000e+02 -4.039000e+02
+6 1016     5.700000e+01 -2.884000e+02
+7 1016     -3.784998e+01 -1.518000e+02
+9 1016     1.076600e+02 -1.298300e+02
+10 1016     -6.135999e+01 -1.634100e+02
+12 1016     5.933002e+01 -2.431900e+02
+13 1016     4.017500e+02 -4.585200e+02
+15 1016     5.250000e+00 -2.199300e+02
+0 1017     1.194000e+01 -2.362400e+02
+1 1017     1.000000e+02 -2.038800e+02
+2 1017     2.575699e+02 -2.200700e+02
+3 1017     1.793000e+02 -5.193000e+02
+6 1017     7.050000e+01 -2.449301e+02
+7 1017     -2.998999e+01 -1.199700e+02
+8 1017     2.317300e+02 -2.316700e+02
+9 1017     1.193300e+02 -8.628003e+01
+12 1017     6.978003e+01 -1.992400e+02
+15 1017     1.248999e+01 -1.808600e+02
+0 1018     -4.795001e+01 -1.125400e+02
+1 1018     8.272998e+01 -6.623999e+01
+2 1018     1.339400e+02 -1.124000e+02
+3 1018     5.276001e+01 -4.182500e+02
+6 1018     -5.122998e+01 -1.292900e+02
+7 1018     -1.146500e+02 -8.479980e+00
+8 1018     1.347800e+02 -1.397900e+02
+9 1018     1.069000e+01 -3.119995e+00
+10 1018     -1.369800e+02 5.549988e+00
+12 1018     -4.622998e+01 -7.563000e+01
+13 1018     3.417000e+02 -3.245900e+02
+15 1018     -8.414001e+01 -2.197998e+01
+0 1019     -1.235200e+02 -3.454999e+01
+1 1019     4.216998e+01 2.923999e+01
+3 1019     -9.400000e+01 -3.935900e+02
+4 1019     -2.817700e+02 -3.116200e+02
+7 1019     -2.118000e+02 5.160999e+01
+9 1019     -1.152200e+02 1.562000e+01
+10 1019     -2.332000e+02 8.796002e+01
+13 1019     2.513900e+02 -2.670000e+02
+15 1019     -1.948500e+02 7.313000e+01
+0 1020     -8.408002e+01 -1.023800e+02
+1 1020     5.401001e+01 -4.628998e+01
+2 1020     8.032001e+01 -1.226500e+02
+3 1020     5.100098e-01 -4.301400e+02
+6 1020     -1.047700e+02 -1.355200e+02
+7 1020     -1.548600e+02 -6.590027e+00
+10 1020     -1.797100e+02 1.346002e+01
+12 1020     -9.784003e+01 -7.965997e+01
+15 1020     -1.335000e+02 -1.317999e+01
+0 1021     -2.776001e+01 -2.748999e+01
+1 1021     1.284500e+02 9.479980e+00
+2 1021     1.172800e+02 -2.412000e+01
+3 1021     3.183002e+01 -3.320800e+02
+4 1021     -2.880300e+02 -3.889500e+02
+6 1021     -6.508002e+01 -2.612000e+01
+10 1021     -1.244700e+02 1.044000e+02
+12 1021     -5.187000e+01 2.921997e+01
+15 1021     -6.840002e+01 9.557999e+01
+0 1022     -9.431000e+01 -2.284000e+02
+1 1022     1.146997e+01 -1.644900e+02
+3 1022     2.146002e+01 -5.957700e+02
+4 1022     -4.254600e+02 -3.238100e+02
+6 1022     -8.467999e+01 -2.971100e+02
+7 1022     -1.468600e+02 -1.381600e+02
+8 1022     1.038600e+02 -2.808800e+02
+9 1022     -1.313000e+01 -1.509400e+02
+12 1022     -7.940002e+01 -2.441800e+02
+13 1022     2.992000e+02 -4.389800e+02
+0 1023     -5.228003e+01 -1.177400e+02
+1 1023     7.704999e+01 -7.009003e+01
+7 1023     -1.181300e+02 -1.471997e+01
+8 1023     1.307700e+02 -1.469200e+02
+10 1023     -1.422200e+02 -1.270020e+00
+12 1023     -5.103003e+01 -8.401001e+01
+0 1024     1.392999e+01 -2.491600e+02
+1 1024     9.906000e+01 -2.166000e+02
+2 1024     2.582200e+02 -2.411800e+02
+3 1024     1.793400e+02 -5.404500e+02
+4 1024     -4.598800e+02 -4.170900e+02
+6 1024     7.251001e+01 -2.624900e+02
+7 1024     -2.723999e+01 -1.335300e+02
+8 1024     2.323000e+02 -2.481600e+02
+9 1024     1.195100e+02 -1.034500e+02
+10 1024     -5.067999e+01 -1.455900e+02
+12 1024     7.282001e+01 -2.176400e+02
+13 1024     4.146400e+02 -4.424900e+02
+15 1024     1.746997e+01 -1.982700e+02
+0 1025     -4.473999e+01 -1.136000e+02
+1 1025     8.521002e+01 -6.790002e+01
+3 1025     5.725000e+01 -4.181200e+02
+6 1025     -4.648999e+01 -1.286500e+02
+7 1025     -1.111400e+02 -8.669983e+00
+13 1025     3.448101e+02 -3.252200e+02
+15 1025     -7.962000e+01 -2.302002e+01
+0 1026     -5.559998e+00 -2.713200e+02
+1 1026     7.781000e+01 -2.326600e+02
+6 1026     4.728998e+01 -3.021700e+02
+7 1026     -4.589001e+01 -1.614800e+02
+8 1026     2.106300e+02 -2.848100e+02
+10 1026     -7.069000e+01 -1.730800e+02
+12 1026     4.940997e+01 -2.569500e+02
+13 1026     3.932100e+02 -4.672400e+02
+15 1026     -4.559998e+00 -2.307400e+02
+0 1027     -1.803998e+01 -1.305700e+02
+1 1027     1.039500e+02 -9.222998e+01
+2 1027     1.803100e+02 -1.162300e+02
+6 1027     -4.760010e+00 -1.360600e+02
+7 1027     -7.977002e+01 -2.014001e+01
+8 1027     1.715100e+02 -1.445500e+02
+10 1027     -1.005700e+02 -1.204999e+01
+12 1027     -9.400024e-01 -8.429999e+01
+13 1027     3.737100e+02 -3.369800e+02
+15 1027     -4.171002e+01 -4.232001e+01
+0 1028     -6.870001e+01 -1.079900e+02
+1 1028     6.592999e+01 -5.627002e+01
+3 1028     2.313000e+01 -4.268500e+02
+6 1028     -8.178000e+01 -1.345100e+02
+12 1028     -7.571002e+01 -7.952002e+01
+0 1029     4.084998e+01 -1.458900e+02
+1 1029     1.539900e+02 -1.246000e+02
+2 1029     2.533800e+02 -1.105900e+02
+6 1029     7.056000e+01 -1.298800e+02
+7 1029     -1.698999e+01 -2.365002e+01
+8 1029     2.319600e+02 -1.411900e+02
+10 1029     -3.058002e+01 -2.379999e+01
+15 1029     3.945001e+01 -5.520001e+01
+0 1030     4.169000e+01 -1.630300e+02
+1 1030     1.502600e+02 -1.416200e+02
+2 1030     2.577200e+02 -1.321000e+02
+3 1030     1.727200e+02 -4.334900e+02
+6 1030     7.523999e+01 -1.513000e+02
+7 1030     -1.366998e+01 -4.160999e+01
+10 1030     -2.814001e+01 -4.346997e+01
+13 1030     4.311600e+02 -3.604800e+02
+15 1030     4.288000e+01 -7.817999e+01
+0 1031     -4.346002e+01 -1.262000e+02
+1 1031     8.321002e+01 -8.056000e+01
+2 1031     1.432700e+02 -1.277500e+02
+3 1031     6.258002e+01 -4.329399e+02
+6 1031     -4.164001e+01 -1.443500e+02
+7 1031     -1.078300e+02 -2.219000e+01
+10 1031     -1.299500e+02 -1.021002e+01
+12 1031     -3.690002e+01 -9.153003e+01
+13 1031     3.468500e+02 -3.369100e+02
+15 1031     -7.607001e+01 -4.008002e+01
+0 1032     -4.346002e+01 -1.262000e+02
+1 1032     8.321002e+01 -8.056000e+01
+2 1032     1.432700e+02 -1.277500e+02
+3 1032     6.258002e+01 -4.329399e+02
+6 1032     -4.164001e+01 -1.443500e+02
+7 1032     -1.078300e+02 -2.219000e+01
+10 1032     -1.299500e+02 -1.021002e+01
+12 1032     -3.690002e+01 -9.153003e+01
+15 1032     -7.607001e+01 -4.008002e+01
+0 1033     6.128003e+01 -1.591400e+02
+1 1033     1.694600e+02 -1.444900e+02
+3 1033     1.926600e+02 -4.205300e+02
+6 1033     9.734998e+01 -1.384301e+02
+7 1033     5.520020e+00 -3.391998e+01
+8 1033     2.535600e+02 -1.488000e+02
+10 1033     -5.940002e+00 -3.771002e+01
+12 1033     1.036800e+02 -9.146002e+01
+13 1033     4.496300e+02 -3.551600e+02
+15 1033     6.881000e+01 -7.044000e+01
+0 1034     -2.969971e+00 -2.755500e+02
+1 1034     7.915002e+01 -2.373900e+02
+4 1034     -4.786100e+02 -3.977700e+02
+6 1034     5.078998e+01 -3.064500e+02
+7 1034     -4.287000e+01 -1.653100e+02
+8 1034     2.149900e+02 -2.883300e+02
+9 1034     1.020600e+02 -1.482500e+02
+10 1034     -6.782001e+01 -1.772600e+02
+12 1034     5.444000e+01 -2.609100e+02
+15 1034     -5.599976e-01 -2.360700e+02
+0 1035     3.500000e+01 -1.540800e+02
+1 1035     1.466400e+02 -1.312600e+02
+2 1035     2.485601e+02 -1.231700e+02
+3 1035     1.633500e+02 -4.249200e+02
+4 1035     -3.887800e+02 -4.379700e+02
+6 1035     6.515002e+01 -1.420601e+02
+7 1035     -2.176001e+01 -3.341998e+01
+8 1035     2.275400e+02 -1.513100e+02
+10 1035     -3.627002e+01 -3.394000e+01
+12 1035     7.058002e+01 -9.396002e+01
+13 1035     4.251500e+02 -3.528600e+02
+0 1036     -1.532001e+01 -2.716700e+02
+1 1036     6.912000e+01 -2.299600e+02
+4 1036     -4.730500e+02 -3.874200e+02
+6 1036     3.409003e+01 -3.076500e+02
+7 1036     -5.584998e+01 -1.638300e+02
+8 1036     2.008900e+02 -2.888800e+02
+9 1036     8.904999e+01 -1.491700e+02
+10 1036     -8.171997e+01 -1.741700e+02
+12 1036     3.635999e+01 -2.614100e+02
+13 1036     3.838101e+02 -4.686200e+02
+15 1036     -1.769000e+01 -2.327200e+02
+0 1037     -5.840027e+00 -2.478000e+02
+1 1037     8.158002e+01 -2.092700e+02
+2 1037     2.335400e+02 -2.491100e+02
+3 1037     1.556800e+02 -5.489100e+02
+4 1037     -4.551700e+02 -3.996200e+02
+6 1037     4.710999e+01 -2.700500e+02
+7 1037     -4.881000e+01 -1.361700e+02
+8 1037     2.109500e+02 -2.540000e+02
+15 1037     -9.729980e+00 -1.990600e+02
+0 1038     -8.609003e+01 -2.527200e+02
+1 1038     1.233002e+01 -1.905600e+02
+6 1038     -6.696997e+01 -3.223700e+02
+7 1038     -1.342300e+02 -1.612300e+02
+8 1038     1.174400e+02 -3.023300e+02
+10 1038     -1.654000e+02 -1.601900e+02
+13 1038     3.091300e+02 -4.604700e+02
+15 1038     -1.144900e+02 -2.166300e+02
+0 1039     3.800000e+01 -2.351400e+02
+1 1039     1.232900e+02 -2.100400e+02
+2 1039     2.899800e+02 -2.021100e+02
+3 1039     2.102800e+02 -5.009600e+02
+4 1039     -4.532000e+02 -4.407000e+02
+6 1039     1.032900e+02 -2.300900e+02
+7 1039     -3.070007e+00 -1.128600e+02
+8 1039     2.588900e+02 -2.192200e+02
+9 1039     1.447500e+02 -7.113000e+01
+10 1039     -2.452002e+01 -1.268200e+02
+12 1039     1.031900e+02 -1.859000e+02
+13 1039     4.403800e+02 -4.241600e+02
+15 1039     4.733002e+01 -1.761800e+02
+0 1040     8.042999e+01 -1.682400e+02
+1 1040     1.854100e+02 -1.588600e+02
+2 1040     3.022900e+02 -1.238900e+02
+3 1040     2.144100e+02 -4.241801e+02
+4 1040     -4.080500e+02 -4.754200e+02
+6 1040     1.211800e+02 -1.412600e+02
+7 1040     2.622998e+01 -3.904999e+01
+8 1040     2.724200e+02 -1.525700e+02
+10 1040     1.716998e+01 -4.521002e+01
+12 1040     1.287400e+02 -9.579999e+01
+13 1040     4.679700e+02 -3.613500e+02
+15 1040     9.604999e+01 -8.009998e+01
+0 1041     -6.539001e+01 -2.456000e+02
+1 1041     3.003998e+01 -1.876900e+02
+2 1041     1.460700e+02 -2.868900e+02
+4 1041     -4.428700e+02 -3.485300e+02
+6 1041     -3.684998e+01 -2.994000e+02
+7 1041     -1.120800e+02 -1.478900e+02
+8 1041     1.413900e+02 -2.814900e+02
+9 1041     2.813000e+01 -1.481400e+02
+10 1041     -1.425900e+02 -1.495000e+02
+12 1041     -3.542999e+01 -2.482300e+02
+15 1041     -8.847998e+01 -2.039000e+02
+0 1042     2.937200e+02 5.577100e+02
+1 1042     7.126200e+02 4.964200e+02
+2 1042     -3.815997e+01 3.260900e+02
+4 1042     3.170001e+01 -5.551000e+02
+5 1042     6.947000e+02 -8.097998e+01
+8 1042     4.906000e+01 2.553000e+02
+9 1042     -1.862400e+02 3.559400e+02
+11 1042     4.073800e+02 -2.007200e+02
+12 1042     -8.200012e+00 6.148000e+02
+13 1042     4.199100e+02 2.369500e+02
+14 1042     5.946300e+02 -1.629100e+02
+0 1043     -3.234800e+02 4.967500e+02
+1 1043     4.826001e+01 5.839200e+02
+2 1043     -6.068100e+02 2.568100e+02
+7 1043     -5.508900e+02 5.312600e+02
+12 1043     -6.664100e+02 4.593300e+02
+14 1043     3.500000e+00 -2.456200e+02
+0 1044     -3.130700e+02 4.875700e+02
+1 1044     5.625000e+01 5.723500e+02
+2 1044     -5.960700e+02 2.462600e+02
+7 1044     -5.390700e+02 5.224000e+02
+8 1044     -4.096600e+02 1.815200e+02
+12 1044     -6.532500e+02 4.497300e+02
+0 1045     -3.005100e+02 3.818100e+02
+1 1045     4.402002e+01 4.663300e+02
+2 1045     -5.802200e+02 1.148800e+02
+5 1045     9.981000e+01 -2.757900e+02
+7 1045     -5.111700e+02 4.119700e+02
+8 1045     -3.959200e+02 7.854001e+01
+10 1045     -4.935000e+02 5.675200e+02
+11 1045     -1.201500e+02 -3.706000e+02
+12 1045     -6.206700e+02 3.204000e+02
+13 1045     -4.871997e+01 5.419000e+01
+14 1045     1.678998e+01 -3.663500e+02
+0 1046     -5.196700e+02 2.803400e+02
+1 1046     -1.886400e+02 4.219000e+02
+5 1046     -1.314100e+02 -3.821800e+02
+7 1046     -7.239200e+02 2.768400e+02
+10 1046     -7.482200e+02 4.247600e+02
+14 1046     -2.122400e+02 -4.785800e+02
+15 1046     -7.739200e+02 4.509500e+02
+0 1047     -3.146500e+02 4.128500e+02
+1 1047     3.781000e+01 5.001500e+02
+7 1047     -5.297300e+02 4.431200e+02
+8 1047     -4.090600e+02 1.090500e+02
+10 1047     -5.149300e+02 6.051500e+02
+12 1047     -6.422900e+02 3.575900e+02
+0 1048     -4.552300e+02 3.607700e+02
+1 1048     -1.109600e+02 4.832300e+02
+7 1048     -6.679100e+02 3.711300e+02
+8 1048     -5.285200e+02 5.448999e+01
+10 1048     -6.810800e+02 5.286200e+02
+11 1048     -2.583600e+02 -3.879300e+02
+0 1049     -2.756200e+02 4.454600e+02
+1 1049     8.366998e+01 5.225300e+02
+5 1049     1.313100e+02 -2.074900e+02
+7 1049     -4.940300e+02 4.823200e+02
+8 1049     -3.772300e+02 1.414800e+02
+0 1050     -2.971100e+02 4.434100e+02
+1 1050     6.162000e+01 5.256900e+02
+2 1050     -5.787000e+02 1.922700e+02
+5 1050     1.095600e+02 -2.097100e+02
+7 1050     -5.162600e+02 4.773400e+02
+12 1050     -6.271800e+02 3.977200e+02
+14 1050     2.485999e+01 -3.007800e+02
+0 1051     -1.560800e+02 3.354300e+02
+1 1051     1.765601e+02 3.841800e+02
+7 1051     -3.597200e+02 3.796800e+02
+11 1051     9.760010e+00 -4.129600e+02
+14 1051     1.565200e+02 -4.165100e+02
+15 1051     -2.772300e+02 5.745200e+02
+0 1052     -2.405000e+02 4.504400e+02
+1 1052     1.193800e+02 5.184300e+02
+2 1052     -5.208600e+02 2.016300e+02
+5 1052     1.655100e+02 -2.034300e+02
+7 1052     -4.594600e+02 4.902900e+02
+11 1052     -6.595001e+01 -3.110900e+02
+12 1052     -5.628700e+02 4.141300e+02
+14 1052     8.004999e+01 -2.931400e+02
+0 1053     -2.155500e+02 2.253400e+02
+1 1053     8.248999e+01 2.937300e+02
+11 1053     -5.064001e+01 -5.163199e+02
+0 1054     -2.993900e+02 4.208000e+02
+1 1054     5.428003e+01 5.038600e+02
+2 1054     -5.805700e+02 1.638000e+02
+5 1054     1.047900e+02 -2.336000e+02
+7 1054     -5.155200e+02 4.530800e+02
+10 1054     -4.977100e+02 6.152900e+02
+11 1054     -1.182400e+02 -3.368300e+02
+12 1054     -6.259600e+02 3.692900e+02
+14 1054     2.090997e+01 -3.246800e+02
+0 1055     -2.251000e+02 4.544100e+02
+1 1055     1.358900e+02 5.190100e+02
+2 1055     -5.058200e+02 2.056600e+02
+7 1055     -4.445900e+02 4.972000e+02
+0 1056     -2.186700e+02 3.837000e+02
+1 1056     1.255100e+02 4.484100e+02
+4 1056     -3.632001e+01 -2.226200e+02
+14 1056     9.769000e+01 -3.632200e+02
+0 1057     -1.672400e+02 3.633500e+02
+1 1057     1.720500e+02 4.147300e+02
+2 1057     -4.427300e+02 9.409003e+01
+5 1057     2.312400e+02 -2.976200e+02
+7 1057     -3.741600e+02 4.082300e+02
+8 1057     -2.836800e+02 6.509000e+01
+13 1057     5.750000e+01 4.378998e+01
+0 1058     -3.282300e+02 4.206700e+02
+1 1058     2.595001e+01 5.104200e+02
+2 1058     -6.105400e+02 1.632400e+02
+5 1058     7.640997e+01 -2.335100e+02
+7 1058     -5.449500e+02 4.495300e+02
+10 1058     -5.335900e+02 6.130700e+02
+12 1058     -6.595200e+02 3.640400e+02
+13 1058     -6.991998e+01 8.645001e+01
+14 1058     -7.320007e+00 -3.250800e+02
+0 1059     -3.768000e+02 4.244100e+02
+1 1059     -2.038000e+01 5.260400e+02
+2 1059     -6.623000e+02 1.684000e+02
+7 1059     -5.960200e+02 4.485500e+02
+10 1059     -5.936200e+02 6.140200e+02
+11 1059     -1.855900e+02 -3.326200e+02
+12 1059     -7.178300e+02 3.625200e+02
+14 1059     -5.415002e+01 -3.212400e+02
+0 1060     -4.952300e+02 3.796100e+02
+1 1060     -1.439600e+02 5.106800e+02
+14 1060     -1.755300e+02 -3.688600e+02
+0 1061     -3.640100e+02 3.071900e+02
+1 1061     -3.520001e+01 4.096800e+02
+7 1061     -5.657500e+02 3.250700e+02
+10 1061     -5.601400e+02 4.703200e+02
+13 1061     -1.022000e+02 -1.363000e+01
+14 1061     -5.357001e+01 -4.488900e+02
+15 1061     -5.610000e+02 5.082400e+02
+0 1062     -3.324200e+02 2.079700e+02
+1 1062     -3.425000e+01 3.074300e+02
+7 1062     -5.136800e+02 2.290100e+02
+8 1062     -3.957000e+02 -8.112000e+01
+10 1062     -5.081200e+02 3.535100e+02
+13 1062     -6.390997e+01 -9.778998e+01
+14 1062     -1.185999e+01 -5.592400e+02
+0 1063     -7.641700e+02 4.679993e+00
+1 1063     -4.868100e+02 2.287100e+02
+0 1064     -7.930800e+02 1.850000e+01
+1 1064     -5.051500e+02 2.482000e+02
+0 1065     -8.141800e+02 -7.800293e-01
+1 1065     -5.285900e+02 2.364300e+02
+0 1066     -2.028600e+02 3.778900e+02
+1 1066     1.397200e+02 4.360400e+02
+2 1066     -4.797000e+02 1.132200e+02
+5 1066     1.977100e+02 -2.796700e+02
+7 1066     -4.105500e+02 4.202800e+02
+8 1066     -3.134500e+02 7.912000e+01
+11 1066     -3.247998e+01 -3.748600e+02
+12 1066     -5.067700e+02 3.335200e+02
+13 1066     2.909998e+01 5.446002e+01
+14 1066     1.123400e+02 -3.703200e+02
+0 1067     -1.930900e+02 4.649800e+02
+1 1067     1.702000e+02 5.216600e+02
+2 1067     -4.741700e+02 2.181800e+02
+7 1067     -4.137900e+02 5.111600e+02
+0 1068     -3.839200e+02 4.360300e+02
+1 1068     -2.475000e+01 5.393500e+02
+2 1068     -6.686900e+02 1.830400e+02
+12 1068     -7.277500e+02 3.766000e+02
+0 1069     -2.472800e+02 4.457100e+02
+1 1069     1.117700e+02 5.159900e+02
+2 1069     -5.276000e+02 1.949500e+02
+5 1069     1.588500e+02 -2.076500e+02
+7 1069     -4.657200e+02 4.852300e+02
+12 1069     -5.696500e+02 4.079700e+02
+14 1069     7.339001e+01 -2.978300e+02
+0 1070     -2.705600e+02 4.422100e+02
+1 1070     8.735999e+01 5.181100e+02
+2 1070     -5.514800e+02 1.902300e+02
+4 1070     1.419983e+00 -1.990600e+02
+5 1070     1.355000e+02 -2.115600e+02
+7 1070     -4.889800e+02 4.788200e+02
+8 1070     -3.747700e+02 1.369900e+02
+12 1070     -5.963200e+02 4.000200e+02
+13 1070     -2.403998e+01 1.072100e+02
+14 1070     5.026001e+01 -3.019200e+02
+0 1071     -2.181200e+02 4.644800e+02
+1 1071     1.452100e+02 5.271700e+02
+2 1071     -4.989900e+02 2.181700e+02
+4 1071     1.001001e+01 -2.306900e+02
+5 1071     1.894100e+02 -1.881100e+02
+7 1071     -4.384600e+02 5.081300e+02
+8 1071     -3.297300e+02 1.612000e+02
+11 1071     -4.545001e+01 -2.985800e+02
+12 1071     -5.394700e+02 4.353900e+02
+0 1072     -2.936100e+02 1.866200e+02
+1 1072     -5.630005e+00 2.773500e+02
+7 1072     -4.683000e+02 2.143800e+02
+0 1073     -4.469100e+02 2.484400e+02
+1 1073     -1.277100e+02 3.739800e+02
+7 1073     -6.442600e+02 2.514900e+02
+11 1073     -2.585300e+02 -4.899200e+02
+13 1073     -1.732900e+02 -6.972998e+01
+14 1073     -1.463800e+02 -5.154800e+02
+0 1074     -3.167800e+02 1.945600e+02
+1 1074     -2.423999e+01 2.908200e+02
+13 1074     -4.663000e+01 -1.080200e+02
+0 1075     -3.393600e+02 3.764600e+02
+1 1075     4.809998e+00 4.706800e+02
+2 1075     -6.212400e+02 1.073800e+02
+7 1075     -5.502300e+02 4.015600e+02
+10 1075     -5.401900e+02 5.574800e+02
+11 1075     -1.550900e+02 -3.755300e+02
+12 1075     -6.652900e+02 3.075700e+02
+0 1076     -1.851200e+02 4.395500e+02
+1 1076     1.723000e+02 4.947700e+02
+5 1076     2.193500e+02 -2.144400e+02
+7 1076     -4.021300e+02 4.856500e+02
+8 1076     -3.026100e+02 1.376500e+02
+12 1076     -4.980600e+02 4.099900e+02
+0 1077     -1.851200e+02 4.395500e+02
+1 1077     1.723000e+02 4.947700e+02
+2 1077     -4.649600e+02 1.875200e+02
+5 1077     2.193500e+02 -2.144400e+02
+7 1077     -4.021300e+02 4.856500e+02
+12 1077     -4.980600e+02 4.099900e+02
+0 1078     -3.047600e+02 3.565500e+02
+1 1078     3.381000e+01 4.429600e+02
+5 1078     9.282001e+01 -3.032400e+02
+7 1078     -5.120400e+02 3.847700e+02
+8 1078     -3.989100e+02 5.314001e+01
+10 1078     -4.951300e+02 5.357600e+02
+12 1078     -6.212500e+02 2.884100e+02
+14 1078     1.031000e+01 -3.939100e+02
+0 1079     -1.914700e+02 3.419300e+02
+1 1079     1.428101e+02 3.996500e+02
+2 1079     -4.663900e+02 6.602002e+01
+5 1079     2.052600e+02 -3.213800e+02
+7 1079     -3.952800e+02 3.825000e+02
+8 1079     -3.026400e+02 4.223001e+01
+12 1079     -4.884900e+02 2.879400e+02
+15 1079     -3.268300e+02 5.793500e+02
+0 1080     -2.149700e+02 4.000900e+02
+1 1080     1.330100e+02 4.632100e+02
+2 1080     -4.930200e+02 1.389000e+02
+4 1080     -2.651001e+01 -2.258700e+02
+5 1080     1.867800e+02 -2.567900e+02
+7 1080     -4.269200e+02 4.409700e+02
+8 1080     -3.249300e+02 9.916000e+01
+10 1080     -3.924900e+02 5.971300e+02
+11 1080     -4.375000e+01 -3.549000e+02
+12 1080     -5.250600e+02 3.569000e+02
+13 1080     2.027002e+01 7.384003e+01
+14 1080     1.024200e+02 -3.457100e+02
+0 1081     -3.383800e+02 4.730500e+02
+1 1081     2.803998e+01 5.646200e+02
+2 1081     -6.221700e+02 2.291200e+02
+5 1081     7.210999e+01 -1.773800e+02
+7 1081     -5.632100e+02 5.046500e+02
+14 1081     -1.271997e+01 -2.696200e+02
+0 1082     -2.904100e+02 4.371500e+02
+1 1082     6.702002e+01 5.177300e+02
+2 1082     -5.716400e+02 1.841400e+02
+7 1082     -5.085500e+02 4.714800e+02
+8 1082     -3.893900e+02 1.329800e+02
+12 1082     -6.183200e+02 3.907200e+02
+13 1082     -3.933002e+01 1.022700e+02
+14 1082     3.104999e+01 -3.074100e+02
+0 1083     -3.383800e+02 4.730500e+02
+1 1083     2.803998e+01 5.646200e+02
+2 1083     -6.221700e+02 2.291200e+02
+5 1083     7.210999e+01 -1.773800e+02
+7 1083     -5.632100e+02 5.046500e+02
+14 1083     -1.271997e+01 -2.696200e+02
+0 1084     -2.919700e+02 3.973300e+02
+1 1084     5.553003e+01 4.790900e+02
+4 1084     -2.182001e+01 -1.835800e+02
+5 1084     1.111900e+02 -2.591600e+02
+8 1084     -3.876800e+02 9.512000e+01
+11 1084     -1.125700e+02 -3.577700e+02
+13 1084     -4.078003e+01 6.808002e+01
+14 1084     2.728998e+01 -3.495800e+02
+0 1085     -2.859800e+02 3.706700e+02
+1 1085     5.592999e+01 4.519300e+02
+5 1085     1.133100e+02 -2.880200e+02
+7 1085     -4.939700e+02 4.022700e+02
+8 1085     -3.825700e+02 6.873001e+01
+10 1085     -4.735900e+02 5.552200e+02
+13 1085     -3.703003e+01 4.526001e+01
+14 1085     3.073999e+01 -3.781600e+02
+0 1086     -2.610000e+02 4.514500e+02
+1 1086     9.928998e+01 5.247300e+02
+11 1086     -8.377002e+01 -3.099300e+02
+12 1086     -5.865100e+02 4.125000e+02
+14 1086     6.034998e+01 -2.921900e+02
+0 1087     -2.246700e+02 3.929200e+02
+1 1087     1.217000e+02 4.583100e+02
+2 1087     -5.020700e+02 1.295900e+02
+7 1087     -4.352300e+02 4.324100e+02
+8 1087     -3.327200e+02 9.167999e+01
+10 1087     -4.029800e+02 5.871300e+02
+11 1087     -5.232001e+01 -3.612800e+02
+12 1087     -5.348100e+02 3.461600e+02
+0 1088     -2.899100e+02 3.551900e+02
+1 1088     4.854999e+01 4.375100e+02
+5 1088     1.077600e+02 -3.057800e+02
+7 1088     -4.963800e+02 3.851000e+02
+10 1088     -4.765900e+02 5.348900e+02
+13 1088     -4.060999e+01 3.048999e+01
+14 1088     2.525000e+01 -3.964500e+02
+0 1089     -2.610000e+02 4.514500e+02
+1 1089     9.928998e+01 5.247300e+02
+2 1089     -5.415900e+02 2.015700e+02
+5 1089     1.457900e+02 -2.019400e+02
+7 1089     -4.805500e+02 4.894600e+02
+8 1089     -3.650900e+02 1.471700e+02
+11 1089     -8.377002e+01 -3.099300e+02
+12 1089     -5.865100e+02 4.125000e+02
+14 1089     6.034998e+01 -2.921900e+02
+0 1090     -2.603400e+02 4.378200e+02
+1 1090     9.665997e+01 5.113600e+02
+7 1090     -4.780700e+02 4.756800e+02
+12 1090     -5.835200e+02 3.964400e+02
+14 1090     6.007001e+01 -3.062400e+02
+0 1091     -3.210500e+02 3.504600e+02
+1 1091     1.646997e+01 4.405500e+02
+2 1091     -6.014200e+02 7.427002e+01
+7 1091     -5.280500e+02 3.762500e+02
+10 1091     -5.141100e+02 5.268400e+02
+12 1091     -6.393200e+02 2.779300e+02
+14 1091     -6.359985e+00 -4.010600e+02
+15 1091     -5.087100e+02 5.745400e+02
+0 1092     -4.260000e+02 4.130900e+02
+1 1092     -7.048999e+01 5.266300e+02
+2 1092     -7.154000e+02 1.535600e+02
+5 1092     -2.066998e+01 -2.398500e+02
+8 1092     -5.056300e+02 1.067300e+02
+13 1092     -1.483300e+02 7.628998e+01
+14 1092     -1.035600e+02 -3.330900e+02
+0 1093     -3.669600e+02 3.336200e+02
+1 1093     -3.196997e+01 4.359000e+02
+7 1093     -5.727300e+02 3.527000e+02
+10 1093     -5.674500e+02 5.020000e+02
+13 1093     -1.035500e+02 9.219971e+00
+14 1093     -5.369000e+01 -4.196000e+02
+15 1093     -5.700400e+02 5.451000e+02
+0 1094     -3.787500e+02 3.142200e+02
+1 1094     -4.746997e+01 4.204400e+02
+5 1094     1.335999e+01 -3.488700e+02
+7 1094     -5.820000e+02 3.308700e+02
+10 1094     -5.795400e+02 4.774900e+02
+11 1094     -1.929300e+02 -4.307600e+02
+15 1094     -5.831200e+02 5.163200e+02
+0 1095     -3.797200e+02 2.986400e+02
+1 1095     -5.223999e+01 4.052600e+02
+7 1095     -5.809500e+02 3.137200e+02
+10 1095     -5.779800e+02 4.578300e+02
+13 1095     -1.150700e+02 -2.258002e+01
+15 1095     -5.815200e+02 4.951000e+02
+0 1096     -2.847500e+02 3.534100e+02
+1 1096     5.302002e+01 4.344200e+02
+5 1096     1.125500e+02 -3.074900e+02
+7 1096     -4.910400e+02 3.837300e+02
+8 1096     -3.811100e+02 5.057999e+01
+10 1096     -4.705100e+02 5.334300e+02
+11 1096     -1.069900e+02 -3.961900e+02
+12 1096     -5.971700e+02 2.867200e+02
+0 1097     -2.329900e+02 4.417800e+02
+1 1097     1.248300e+02 5.082900e+02
+2 1097     -5.134900e+02 1.915800e+02
+4 1097     -1.719971e+00 -2.199400e+02
+5 1097     1.722600e+02 -2.124200e+02
+8 1097     -3.417000e+02 1.382900e+02
+11 1097     -5.931000e+01 -3.181500e+02
+12 1097     -5.530700e+02 4.046400e+02
+13 1097     6.270020e+00 1.092300e+02
+14 1097     8.696997e+01 -3.011400e+02
+0 1098     -4.332000e+02 4.502900e+02
+1 1098     -6.913000e+01 5.632400e+02
+5 1098     -2.284998e+01 -2.001200e+02
+8 1098     -5.123800e+02 1.429600e+02
+12 1098     -7.906600e+02 3.863700e+02
+13 1098     -1.526600e+02 1.067600e+02
+14 1098     -1.061900e+02 -2.936900e+02
+0 1099     -2.324000e+02 4.496200e+02
+1 1099     1.272500e+02 5.161700e+02
+7 1099     -4.514500e+02 4.908800e+02
+8 1099     -3.411600e+02 1.463300e+02
+11 1099     -5.871002e+01 -3.115100e+02
+13 1099     6.869995e+00 1.157000e+02
+14 1099     8.783002e+01 -2.935600e+02
+0 1100     -2.287500e+02 4.542400e+02
+1 1100     1.322000e+02 5.195400e+02
+2 1100     -5.090100e+02 2.041600e+02
+4 1100     4.530029e+00 -2.236600e+02
+5 1100     1.777700e+02 -1.999900e+02
+8 1100     -3.386600e+02 1.507000e+02
+11 1100     -5.545001e+01 -3.074400e+02
+12 1100     -5.499200e+02 4.199100e+02
+13 1100     9.979980e+00 1.194400e+02
+14 1100     9.203003e+01 -2.891900e+02
+0 1101     2.829999e+01 -2.527000e+02
+1 1101     1.111600e+02 -2.244100e+02
+2 1101     2.763600e+02 -2.391800e+02
+3 1101     1.969301e+02 -5.376700e+02
+4 1101     -4.657900e+02 -4.292500e+02
+6 1101     9.113000e+01 -2.600800e+02
+7 1101     -1.203998e+01 -1.341300e+02
+8 1101     2.475400e+02 -2.469400e+02
+9 1101     1.342100e+02 -1.013900e+02
+12 1101     9.209003e+01 -2.160100e+02
+13 1101     4.289301e+02 -4.440900e+02
+15 1101     3.746997e+01 -2.012700e+02
+0 1102     -8.066998e+01 -2.277800e+02
+1 1102     2.253998e+01 -1.681300e+02
+4 1102     -4.261300e+02 -3.364900e+02
+6 1102     -6.256000e+01 -2.848199e+02
+7 1102     -1.312700e+02 -1.338900e+02
+12 1102     -5.979999e+01 -2.325100e+02
+15 1102     -1.111000e+02 -1.816300e+02
+0 1103     4.229980e+00 -2.477800e+02
+1 1103     9.120001e+01 -2.127300e+02
+6 1103     6.117999e+01 -2.639600e+02
+7 1103     -3.753003e+01 -1.338400e+02
+9 1103     1.099000e+02 -1.053900e+02
+10 1103     -6.247998e+01 -1.447400e+02
+12 1103     6.029999e+01 -2.184700e+02
+13 1103     4.057400e+02 -4.417700e+02
+15 1103     4.570007e+00 -1.976300e+02
+0 1104     -7.720001e+01 -2.337100e+02
+1 1104     2.445001e+01 -1.748200e+02
+6 1104     -5.760999e+01 -2.920800e+02
+8 1104     1.260800e+02 -2.753900e+02
+9 1104     1.217999e+01 -1.427000e+02
+12 1104     -5.434003e+01 -2.404900e+02
+13 1104     3.187200e+02 -4.404399e+02
+15 1104     -1.051600e+02 -1.897900e+02
+0 1105     2.338000e+01 -2.608000e+02
+1 1105     1.051300e+02 -2.309900e+02
+4 1105     -4.714500e+02 -4.230100e+02
+10 1105     -3.906000e+01 -1.572700e+02
+15 1105     3.214001e+01 -2.128200e+02
+0 1106     -2.195400e+02 4.963000e+02
+1 1106     1.512700e+02 5.592800e+02
+2 1106     -5.015200e+02 2.558700e+02
+5 1106     1.900000e+02 -1.546200e+02
+7 1106     -4.444300e+02 5.415900e+02
+8 1106     -3.327300e+02 1.909200e+02
+12 1106     -5.465900e+02 4.742200e+02
+0 1107     -1.976100e+02 4.003500e+02
+1 1107     1.506400e+02 4.592100e+02
+2 1107     -4.753700e+02 1.398200e+02
+5 1107     2.040699e+02 -2.561500e+02
+7 1107     -4.094000e+02 4.438900e+02
+8 1107     -3.104300e+02 1.002300e+02
+10 1107     -3.714800e+02 5.988900e+02
+12 1107     -5.054100e+02 3.606500e+02
+14 1107     1.191600e+02 -3.463100e+02
+0 1108     -1.852800e+02 4.464300e+02
+1 1108     1.740300e+02 5.013800e+02
+2 1108     -4.657700e+02 1.960000e+02
+7 1108     -4.035100e+02 4.927800e+02
+12 1108     -4.991100e+02 4.182300e+02
+14 1108     1.334100e+02 -2.962400e+02
+0 1109     -5.686100e+02 3.048600e+02
+1 1109     -2.292300e+02 4.570700e+02
+14 1109     -2.600900e+02 -4.501600e+02
+15 1109     -8.489100e+02 4.785700e+02
+0 1110     -3.717700e+02 3.349400e+02
+1 1110     -3.633002e+01 4.384600e+02
+4 1110     -5.022998e+01 -1.328300e+02
+5 1110     2.313000e+01 -3.257800e+02
+11 1110     -1.857300e+02 -4.123600e+02
+13 1110     -1.072800e+02 1.037000e+01
+14 1110     -5.821002e+01 -4.180100e+02
+15 1110     -5.771200e+02 5.461800e+02
+0 1111     -4.220900e+02 2.885300e+02
+1 1111     -9.476001e+01 4.060100e+02
+7 1111     -6.238000e+02 2.976400e+02
+11 1111     -2.331700e+02 -4.529800e+02
+12 1111     -7.503500e+02 1.803100e+02
+0 1112     -4.552300e+02 3.607700e+02
+1 1112     -1.109600e+02 4.832300e+02
+5 1112     -5.448999e+01 -2.954600e+02
+7 1112     -6.679100e+02 3.711300e+02
+8 1112     -5.285200e+02 5.448999e+01
+10 1112     -6.810800e+02 5.286200e+02
+11 1112     -2.583600e+02 -3.879300e+02
+12 1112     -8.007800e+02 2.700400e+02
+0 1113     -3.848900e+02 3.502600e+02
+1 1113     -4.544000e+01 4.564100e+02
+4 1113     -4.033002e+01 -1.275300e+02
+5 1113     1.177002e+01 -3.085200e+02
+7 1113     -5.937800e+02 3.681400e+02
+8 1113     -4.686200e+02 4.451001e+01
+10 1113     -5.912700e+02 5.196900e+02
+15 1113     -5.981800e+02 5.659500e+02
+0 1114     -1.136800e+02 -1.646002e+01
+1 1114     5.600000e+01 4.406000e+01
+10 1114     -2.234300e+02 1.103200e+02
+15 1114     -1.841700e+02 9.922000e+01
+0 1115     2.543400e+02 -6.270001e+01
+1 1115     3.939600e+02 -1.103300e+02
+12 1115     2.817900e+02 6.834998e+01
+15 1115     3.203800e+02 8.629999e+01
+0 1116     1.487200e+02 -2.025800e+02
+1 1116     2.413600e+02 -2.141100e+02
+7 1116     9.954999e+01 -6.078003e+01
+10 1116     9.984003e+01 -7.727002e+01
+15 1116     1.934800e+02 -1.175200e+02
+0 1117     2.673800e+02 -1.846600e+02
+1 1117     3.679399e+02 -2.360100e+02
+10 1117     2.342500e+02 -4.414001e+01
+0 1118     1.969900e+02 -2.866400e+02
+1 1118     2.674200e+02 -3.133200e+02
+12 1118     2.929700e+02 -1.972600e+02
+15 1118     2.716801e+02 -2.253400e+02
+0 1119     -1.186000e+02 5.679993e+00
+1 1119     5.995001e+01 6.614001e+01
+6 1119     -2.108200e+02 -3.300000e+01
+15 1119     -1.935700e+02 1.283400e+02
+0 1120     -1.074700e+02 8.532999e+01
+1 1120     1.020800e+02 1.380000e+02
+6 1120     -2.604000e+02 5.091998e+01
+7 1120     -2.252000e+02 1.687100e+02
+10 1120     -2.279100e+02 2.295200e+02
+12 1120     -2.159200e+02 1.055400e+02
+15 1120     -1.872500e+02 2.381000e+02
+0 1121     3.510800e+02 -5.694000e+01
+1 1121     5.034800e+02 -1.374800e+02
+7 1121     2.589000e+02 1.085000e+02
+10 1121     3.182700e+02 1.116500e+02
+12 1121     3.674600e+02 8.467999e+01
+15 1121     4.551801e+02 1.069800e+02
+0 1122     2.168199e+02 -2.115200e+02
+1 1122     3.059800e+02 -2.452200e+02
+6 1122     2.787600e+02 -1.419800e+02
+7 1122     1.671500e+02 -5.763000e+01
+10 1122     1.787000e+02 -8.067999e+01
+12 1122     2.963000e+02 -1.047400e+02
+15 1122     2.871300e+02 -1.209400e+02
+0 1123     4.850000e+01 -1.284300e+02
+1 1123     1.672800e+02 -1.102300e+02
+15 1123     4.773999e+01 -3.028998e+01
+0 1124     -2.634003e+01 -1.860900e+02
+1 1124     7.733002e+01 -1.426700e+02
+3 1124     1.230900e+02 -4.719200e+02
+4 1124     -4.025000e+02 -3.901000e+02
+6 1124     1.353998e+01 -1.990900e+02
+7 1124     -7.683002e+01 -7.600000e+01
+8 1124     1.861500e+02 -1.908700e+02
+10 1124     -1.043800e+02 -7.695001e+01
+12 1124     1.103003e+01 -1.489800e+02
+0 1125     -7.459003e+01 -1.558200e+02
+1 1125     4.353998e+01 -9.965002e+01
+2 1125     1.272700e+02 -1.618500e+02
+6 1125     -6.097998e+01 -1.870300e+02
+7 1125     -1.327500e+02 -5.606000e+01
+10 1125     -1.642800e+02 -4.753003e+01
+12 1125     -6.265997e+01 -1.333400e+02
+15 1125     -1.145200e+02 -8.403003e+01
+0 1126     -1.816800e+02 4.013000e+01
+1 1126     1.884998e+01 1.150300e+02
+6 1126     -3.333000e+02 -2.778003e+01
+7 1126     -2.936300e+02 1.103100e+02
+10 1126     -3.096000e+02 1.692100e+02
+15 1126     -2.817700e+02 1.663400e+02
+0 1127     -1.982100e+02 -4.210900e+02
+1 1127     -1.374800e+02 -3.145400e+02
+4 1127     -5.583200e+02 -2.286200e+02
+7 1127     -2.204800e+02 -3.562300e+02
+15 1127     -2.418700e+02 -4.595100e+02
+0 1128     2.043400e+02 1.025000e+01
+1 1128     3.638600e+02 -2.151001e+01
+2 1128     3.467500e+02 8.031000e+01
+3 1128     2.422900e+02 -2.286700e+02
+6 1128     1.834300e+02 9.428003e+01
+7 1128     1.157900e+02 1.575200e+02
+8 1128     3.189000e+02 1.845999e+01
+10 1128     1.422900e+02 1.739500e+02
+12 1128     2.095200e+02 1.413300e+02
+13 1128     5.493700e+02 -1.958800e+02
+15 1128     2.420200e+02 1.792100e+02
+0 1129     7.245001e+01 2.287000e+02
+1 1129     3.657300e+02 2.195500e+02
+5 1129     5.200000e+02 -4.416600e+02
+6 1129     -2.732700e+02 2.096200e+02
+7 1129     -1.066700e+02 3.100200e+02
+10 1129     -3.222998e+01 4.182300e+02
+11 1129     2.204000e+02 -5.117800e+02
+0 1130     2.294399e+02 -2.244000e+01
+1 1130     3.799700e+02 -6.183002e+01
+2 1130     3.796400e+02 5.100000e+01
+3 1130     2.742800e+02 -2.557900e+02
+7 1130     1.449000e+02 1.292500e+02
+10 1130     1.746300e+02 1.386400e+02
+13 1130     5.743600e+02 -2.224000e+02
+15 1130     2.808500e+02 1.379300e+02
+0 1131     6.270020e+00 1.627300e+02
+1 1131     2.267000e+02 1.840300e+02
+5 1131     5.970800e+02 -4.913300e+02
+6 1131     -1.263000e+02 1.877700e+02
+7 1131     -1.165300e+02 2.689700e+02
+12 1131     -8.745001e+01 2.387900e+02
+13 1131     3.388000e+02 -8.896002e+01
+14 1131     5.008900e+02 -5.727500e+02
+15 1131     -4.558002e+01 3.600900e+02
+0 1132     5.584800e+02 6.017999e+01
+1 1132     8.048900e+02 -9.384003e+01
+6 1132     3.868400e+02 1.851900e+02
+13 1132     7.711700e+02 -1.509900e+02
+15 1132     7.419301e+02 2.962400e+02
+0 1133     -1.641700e+02 -5.812000e+01
+1 1133     -3.179993e+00 1.819000e+01
+6 1133     -2.356000e+02 -1.214500e+02
+7 1133     -2.491000e+02 2.077002e+01
+10 1133     -2.777700e+02 5.615997e+01
+12 1133     -2.207400e+02 -5.967999e+01
+13 1133     2.178700e+02 -2.909800e+02
+15 1133     -2.467100e+02 3.545001e+01
+0 1134     1.582500e+02 -1.117800e+02
+1 1134     2.807400e+02 -1.283200e+02
+2 1134     3.487300e+02 -5.351001e+01
+6 1134     1.768900e+02 -5.477002e+01
+7 1134     9.128003e+01 2.933002e+01
+8 1134     3.152000e+02 -9.306000e+01
+10 1134     1.013900e+02 2.809003e+01
+15 1134     1.948199e+02 6.739990e+00
+0 1135     1.282400e+02 -2.364500e+02
+1 1135     2.073500e+02 -2.399100e+02
+6 1135     2.068800e+02 -1.951100e+02
+7 1135     8.825000e+01 -9.596997e+01
+13 1135     5.251899e+02 -4.162100e+02
+15 1135     1.689200e+02 -1.660700e+02
+0 1136     2.485300e+02 8.989999e+01
+1 1136     4.390100e+02 4.347998e+01
+6 1136     1.840600e+02 1.874300e+02
+12 1136     2.218900e+02 2.315600e+02
+13 1136     5.672000e+02 -1.275200e+02
+15 1136     2.939700e+02 2.944700e+02
+0 1137     1.822600e+02 -3.350400e+02
+1 1137     2.431300e+02 -3.568000e+02
+4 1137     -5.721600e+02 -5.497200e+02
+6 1137     2.589800e+02 -3.121000e+02
+7 1137     1.464399e+02 -1.916100e+02
+9 1137     2.615601e+02 -1.622200e+02
+10 1137     1.518200e+02 -2.249900e+02
+12 1137     2.769100e+02 -2.795300e+02
+13 1137     5.627900e+02 -5.142000e+02
+15 1137     2.595400e+02 -2.929700e+02
+0 1138     1.386300e+02 5.140002e+01
+1 1138     3.103600e+02 3.914001e+01
+7 1138     4.507001e+01 1.878600e+02
+10 1138     6.166998e+01 2.156800e+02
+12 1138     1.240400e+02 1.721600e+02
+15 1138     1.464301e+02 2.264500e+02
+0 1139     1.845601e+02 -1.734900e+02
+1 1139     2.867500e+02 -1.972500e+02
+2 1139     4.006000e+02 -1.051100e+02
+10 1139     1.378200e+02 -3.944000e+01
+12 1139     2.449600e+02 -7.009003e+01
+13 1139     5.579800e+02 -3.575200e+02
+15 1139     2.384301e+02 -7.340997e+01
+0 1140     6.478998e+01 1.655200e+02
+1 1140     2.846801e+02 1.703100e+02
+7 1140     -5.771997e+01 2.802500e+02
+10 1140     -3.506000e+01 3.407700e+02
+15 1140     3.396002e+01 3.725500e+02
+0 1141     7.290997e+01 2.326800e+02
+1 1141     3.677700e+02 2.232400e+02
+7 1141     -1.070200e+02 3.136400e+02
+10 1141     -3.210999e+01 4.230200e+02
+0 1142     -7.637000e+01 1.221700e+02
+1 1142     1.471200e+02 1.644800e+02
+3 1142     -1.719800e+02 -2.845000e+02
+5 1142     4.739900e+02 -5.449399e+02
+6 1142     -2.531800e+02 9.756000e+01
+8 1142     -1.952002e+01 -5.579987e+00
+9 1142     -1.828400e+02 1.077900e+02
+10 1142     -1.950500e+02 2.762000e+02
+12 1142     -1.988700e+02 1.476000e+02
+0 1143     5.919200e+02 1.301000e+02
+1 1143     8.617500e+02 -3.076001e+01
+8 1143     4.668101e+02 5.867999e+01
+10 1143     5.832500e+02 3.559000e+02
+15 1143     7.805900e+02 3.992100e+02
+0 1144     -9.047998e+01 -2.257300e+02
+1 1144     1.508002e+01 -1.630100e+02
+4 1144     -4.234800e+02 -3.277700e+02
+7 1144     -1.427900e+02 -1.341700e+02
+10 1144     -1.737900e+02 -1.297000e+02
+12 1144     -7.490002e+01 -2.371400e+02
+15 1144     -1.244500e+02 -1.810100e+02
+0 1145     -5.559003e+01 -1.577700e+02
+1 1145     6.067999e+01 -1.072600e+02
+4 1145     -3.760300e+02 -3.651600e+02
+6 1145     -3.959998e+01 -1.817100e+02
+7 1145     -1.127200e+02 -5.464001e+01
+8 1145     1.436900e+02 -1.783900e+02
+10 1145     -1.409500e+02 -4.753998e+01
+12 1145     -3.946997e+01 -1.288400e+02
+13 1145     3.426000e+02 -3.640900e+02
+15 1145     -8.875000e+01 -8.407001e+01
+0 1146     1.999301e+02 4.101600e+02
+1 1146     5.670500e+02 3.650500e+02
+14 1146     5.122500e+02 -3.227600e+02
+0 1147     -2.626900e+02 3.957100e+02
+1 1147     8.447998e+01 4.704800e+02
+2 1147     -5.419200e+02 1.332500e+02
+7 1147     -4.744300e+02 4.307100e+02
+8 1147     -3.646200e+02 9.347000e+01
+11 1147     -8.645001e+01 -3.585200e+02
+14 1147     5.544000e+01 -3.511100e+02
+0 1148     -2.654999e+01 5.105600e+02
+1 1148     3.518400e+02 5.265400e+02
+2 1148     -3.164200e+02 2.718400e+02
+6 1148     -5.107600e+02 5.311100e+02
+7 1148     -2.541200e+02 5.761800e+02
+8 1148     -1.809800e+02 2.081200e+02
+11 1148     1.233200e+02 -2.551500e+02
+12 1148     -3.347100e+02 5.184600e+02
+0 1149     -6.745001e+01 4.722900e+02
+1 1149     2.997400e+02 4.982900e+02
+2 1149     -3.526900e+02 2.274800e+02
+5 1149     3.372200e+02 -1.794700e+02
+6 1149     -5.506400e+02 4.713400e+02
+7 1149     -2.898300e+02 5.323900e+02
+12 1149     -3.731300e+02 4.663700e+02
+14 1149     2.479301e+02 -2.665000e+02
+0 1150     5.528003e+01 5.009998e+01
+1 1150     2.282000e+02 6.212000e+01
+6 1150     9.469971e+00 9.201001e+01
+8 1150     1.841000e+02 2.445001e+01
+12 1150     2.746997e+01 1.459500e+02
+0 1151     -1.230300e+02 4.888100e+02
+1 1151     2.472600e+02 5.284000e+02
+2 1151     -4.065900e+02 2.472200e+02
+3 1151     -5.345500e+02 -8.323999e+01
+0 1152     1.595699e+02 3.846997e+01
+1 1152     3.271000e+02 2.019000e+01
+15 1152     1.767000e+02 2.118300e+02
+0 1153     8.763000e+01 2.628700e+02
+1 1153     3.941100e+02 2.488800e+02
+5 1153     5.255699e+02 -4.054900e+02
+6 1153     -2.785400e+02 2.512200e+02
+9 1153     -2.432600e+02 1.031100e+02
+11 1153     2.343500e+02 -4.780200e+02
+12 1153     -1.379600e+02 2.648200e+02
+14 1153     4.387200e+02 -4.860800e+02
+0 1154     -5.470001e+01 -3.909003e+01
+1 1154     1.022700e+02 5.900024e+00
+3 1154     -1.679993e+00 -3.626000e+02
+7 1154     -1.378500e+02 6.140002e+01
+10 1154     -1.526200e+02 9.000000e+01
+13 1154     3.198400e+02 -2.634300e+02
+15 1154     -1.022300e+02 7.657001e+01
+0 1155     4.308002e+01 1.273400e+02
+1 1155     2.452800e+02 1.402200e+02
+15 1155     7.710022e+00 3.170300e+02
+0 1156     -4.457900e+02 6.670001e+01
+1 1156     -1.880500e+02 2.051700e+02
+13 1156     -1.327300e+02 -2.239200e+02
+15 1156     -6.386400e+02 1.655700e+02
+0 1157     -4.078300e+02 -2.659973e+00
+1 1157     -1.780500e+02 1.313700e+02
+15 1157     -5.773500e+02 7.614001e+01
+0 1158     2.538400e+02 -2.529100e+02
+1 1158     3.331200e+02 -2.989500e+02
+7 1158     2.073199e+02 -9.328003e+01
+10 1158     2.260500e+02 -1.235700e+02
+15 1158     3.444800e+02 -1.723600e+02
+0 1159     -3.046997e+01 -2.987000e+02
+1 1159     5.021997e+01 -2.510700e+02
+4 1159     -4.917200e+02 -3.707100e+02
+6 1159     1.756000e+01 -3.488700e+02
+7 1159     -6.916998e+01 -1.948800e+02
+10 1159     -9.625000e+01 -2.064800e+02
+12 1159     2.017999e+01 -3.031300e+02
+13 1159     3.668101e+02 -4.967200e+02
+0 1160     5.907600e+02 1.913000e+02
+1 1160     8.805200e+02 3.497998e+01
+6 1160     3.938200e+02 3.450600e+02
+7 1160     4.168500e+02 3.624900e+02
+0 1161     -4.320000e+02 1.152002e+01
+1 1161     -1.949400e+02 1.508500e+02
+15 1161     -6.122500e+02 9.173999e+01
+0 1162     -4.541300e+02 -8.520020e+00
+1 1162     -2.216900e+02 1.381600e+02
+10 1162     -6.264400e+02 8.384003e+01
+12 1162     -6.717100e+02 -1.567800e+02
+0 1163     -3.084800e+02 -4.711000e+02
+1 1163     -2.545100e+02 -3.248400e+02
+7 1163     -3.214100e+02 -4.283100e+02
+0 1164     5.257000e+02 3.572100e+02
+1 1164     8.796400e+02 2.278400e+02
+3 1164     1.794800e+02 -6.954999e+01
+7 1164     3.180100e+02 5.041200e+02
+9 1164     1.301800e+02 3.081400e+02
+11 1164     6.378900e+02 -3.690500e+02
+13 1164     6.851600e+02 9.717999e+01
+0 1165     5.564100e+02 2.491900e+02
+1 1165     8.627400e+02 1.072400e+02
+7 1165     3.759800e+02 4.109100e+02
+11 1165     6.825500e+02 -4.744700e+02
+12 1165     4.241600e+02 4.052100e+02
+0 1166     6.438199e+02 -1.434003e+01
+1 1166     8.708101e+02 -1.997400e+02
+2 1166     5.936200e+02 -1.513000e+01
+3 1166     4.613000e+02 -3.210700e+02
+6 1166     5.123900e+02 1.367900e+02
+7 1166     4.960900e+02 1.743400e+02
+8 1166     5.455200e+02 -4.341000e+01
+10 1166     6.553000e+02 1.930200e+02
+12 1166     5.926700e+02 1.467000e+02
+13 1166     8.696700e+02 -2.060900e+02
+0 1167     3.851200e+02 -1.748900e+02
+1 1167     5.013600e+02 -2.674600e+02
+10 1167     3.687200e+02 -2.044000e+01
+15 1167     5.176600e+02 -4.934003e+01
+0 1168     6.233002e+01 2.647500e+02
+1 1168     3.692700e+02 2.575700e+02
+6 1168     -3.102700e+02 2.460300e+02
+7 1168     -1.244600e+02 3.423300e+02
+0 1169     -4.758600e+02 1.870300e+02
+1 1169     -1.736700e+02 3.239400e+02
+7 1169     -6.614400e+02 1.851500e+02
+10 1169     -6.800400e+02 3.144800e+02
+13 1169     -1.890400e+02 -1.247000e+02
+0 1170     3.595000e+02 -3.301500e+02
+1 1170     4.278199e+02 -4.149800e+02
+0 1171     -1.202300e+02 -5.327900e+02
+1 1171     -1.072200e+02 -4.426801e+02
+0 1172     2.058199e+02 -7.012000e+01
+1 1172     3.404900e+02 -1.020600e+02
+10 1172     1.519900e+02 8.151001e+01
+15 1172     2.544100e+02 6.975000e+01
+0 1173     6.700012e+00 1.394700e+02
+1 1173     2.166000e+02 1.615900e+02
+7 1173     -1.090700e+02 2.485400e+02
+10 1173     -1.006000e+02 3.045600e+02
+15 1173     -4.282001e+01 3.287000e+02
+0 1174     8.346002e+01 -1.334400e+02
+1 1174     1.997800e+02 -1.259300e+02
+7 1174     2.296997e+01 -4.270020e+00
+10 1174     1.722998e+01 -4.580017e+00
+15 1174     9.553998e+01 -3.257001e+01
+0 1175     -5.432100e+02 3.561600e+02
+1 1175     -1.940800e+02 4.993600e+02
+5 1175     -1.446400e+02 -2.977500e+02
+0 1176     -4.113900e+02 3.130100e+02
+1 1176     -7.929999e+01 4.283500e+02
+7 1176     -6.158400e+02 3.267500e+02
+10 1176     -6.195100e+02 4.735700e+02
+12 1176     -7.407300e+02 2.153500e+02
+15 1176     -6.283400e+02 5.105100e+02
+0 1177     9.394000e+01 -2.201000e+02
+1 1177     1.800601e+02 -2.132600e+02
+0 1178     -1.398700e+02 1.633200e+02
+1 1178     1.322100e+02 2.144700e+02
+5 1178     3.029399e+02 -5.168101e+02
+13 1178     1.193400e+02 -1.240600e+02
+0 1179     2.544100e+02 1.025000e+01
+1 1179     4.171000e+02 -3.752002e+01
+6 1179     2.272000e+02 1.053600e+02
+10 1179     2.004000e+02 1.793200e+02
+12 1179     2.597300e+02 1.493100e+02
+0 1180     -2.299988e+00 1.266500e+02
+1 1180     2.034600e+02 1.516400e+02
+5 1180     6.019399e+02 -5.283400e+02
+6 1180     -1.098800e+02 1.509100e+02
+7 1180     -1.156600e+02 2.347000e+02
+10 1180     -1.098400e+02 2.889200e+02
+12 1180     -7.997998e+01 2.049500e+02
+13 1180     3.422300e+02 -1.173300e+02
+15 1180     -5.367999e+01 3.101300e+02
+0 1181     1.808199e+02 -3.279900e+02
+1 1181     2.431500e+02 -3.493400e+02
+4 1181     -5.654000e+02 -5.498000e+02
+12 1181     2.750601e+02 -2.698900e+02
+13 1181     5.622400e+02 -5.069500e+02
+15 1181     2.564301e+02 -2.835600e+02
+0 1182     5.420100e+02 2.018800e+02
+1 1182     8.323500e+02 6.070001e+01
+2 1182     4.213500e+02 1.537000e+02
+3 1182     2.848000e+02 -1.644700e+02
+6 1182     3.303600e+02 3.385500e+02
+7 1182     3.662200e+02 3.637400e+02
+8 1182     4.061100e+02 9.937000e+01
+9 1182     2.215900e+02 2.257800e+02
+10 1182     5.189200e+02 4.348800e+02
+13 1182     7.384600e+02 -2.809003e+01
+15 1182     7.031200e+02 4.917200e+02
+0 1183     -2.510600e+02 3.881000e+02
+1 1183     9.396997e+01 4.603200e+02
+2 1183     -5.296200e+02 1.230500e+02
+5 1183     1.494400e+02 -2.699800e+02
+7 1183     -4.619100e+02 4.240500e+02
+8 1183     -3.546800e+02 8.594000e+01
+10 1183     -4.344400e+02 5.789300e+02
+11 1183     -7.609003e+01 -3.654100e+02
+12 1183     -5.647800e+02 3.356300e+02
+13 1183     -9.020020e+00 6.144000e+01
+14 1183     6.601001e+01 -3.596000e+02
+0 1184     1.791998e+01 -1.128500e+02
+1 1184     1.437900e+02 -8.609998e+01
+6 1184     2.734998e+01 -1.034400e+02
+10 1184     -6.090002e+01 1.245001e+01
+13 1184     4.027900e+02 -3.182700e+02
+0 1185     2.679000e+02 -2.852800e+02
+1 1185     3.433199e+02 -3.372000e+02
+6 1185     3.310800e+02 -2.223101e+02
+0 1186     2.947000e+02 9.523001e+01
+1 1186     4.924500e+02 3.237000e+01
+7 1186     1.801200e+02 2.462200e+02
+15 1186     3.585400e+02 3.079800e+02
+0 1187     -9.478998e+01 -1.362600e+02
+1 1187     3.195001e+01 -7.550000e+01
+3 1187     1.151001e+01 -4.574399e+02
+4 1187     -3.539900e+02 -3.353800e+02
+6 1187     -9.973001e+01 -1.721400e+02
+7 1187     -1.579000e+02 -4.059003e+01
+8 1187     9.569000e+01 -1.707500e+02
+10 1187     -1.887000e+02 -2.676001e+01
+12 1187     -9.767999e+01 -1.172300e+02
+13 1187     3.022000e+02 -3.490000e+02
+15 1187     -1.436700e+02 -6.002002e+01
+0 1188     9.979980e+00 1.234800e+02
+1 1188     2.132700e+02 1.458000e+02
+5 1188     6.216700e+02 -5.326000e+02
+7 1188     -1.019000e+02 2.337400e+02
+10 1188     -9.417999e+01 2.855600e+02
+13 1188     3.564800e+02 -1.187600e+02
+15 1188     -3.617999e+01 3.071900e+02
+0 1189     6.434998e+01 -2.274600e+02
+1 1189     1.485400e+02 -2.103900e+02
+2 1189     3.226600e+02 -1.781000e+02
+3 1189     2.394100e+02 -4.750900e+02
+4 1189     -4.516500e+02 -4.652300e+02
+6 1189     1.360200e+02 -2.079301e+02
+7 1189     2.347998e+01 -9.872998e+01
+8 1189     2.853500e+02 -1.996300e+02
+9 1189     1.702100e+02 -4.858002e+01
+10 1189     4.969971e+00 -1.149000e+02
+12 1189     1.360300e+02 -1.643000e+02
+13 1189     4.671300e+02 -4.138100e+02
+15 1189     8.146997e+01 -1.622000e+02
+0 1190     1.034600e+02 -2.259998e+01
+1 1190     2.520900e+02 -2.353998e+01
+3 1190     1.748700e+02 -2.744800e+02
+4 1190     -3.018400e+02 -4.963300e+02
+9 1190     1.163900e+02 1.228800e+02
+10 1190     2.884998e+01 1.250700e+02
+15 1190     1.075900e+02 1.205600e+02
+0 1191     1.689800e+02 -3.128400e+02
+1 1191     2.337900e+02 -3.300200e+02
+4 1191     -5.487300e+02 -5.422400e+02
+0 1192     2.229999e+01 -4.344000e+01
+1 1192     1.692300e+02 -1.983002e+01
+3 1192     1.000200e+02 -3.226500e+02
+4 1192     -3.058800e+02 -4.294900e+02
+7 1192     -5.464001e+01 7.407001e+01
+9 1192     5.094000e+01 8.017001e+01
+10 1192     -6.259003e+01 9.297998e+01
+13 1192     3.983600e+02 -2.570800e+02
+15 1192     1.049988e+00 8.110999e+01
+0 1193     -1.068800e+02 -5.352200e+02
+1 1193     -9.588000e+01 -4.491500e+02
+4 1193     -6.803800e+02 -3.006500e+02
+6 1193     3.557001e+01 -6.620000e+02
+7 1193     -9.928003e+01 -4.474301e+02
+9 1193     1.218100e+02 -4.358700e+02
+0 1194     1.591600e+02 -1.443000e+02
+1 1194     2.699301e+02 -1.602700e+02
+2 1194     3.681300e+02 -7.994000e+01
+3 1194     2.734100e+02 -3.799700e+02
+4 1194     -4.038500e+02 -5.414200e+02
+7 1194     9.922998e+01 -1.510010e+00
+9 1194     2.015699e+02 3.325000e+01
+10 1194     1.056400e+02 -9.200012e+00
+12 1194     2.099301e+02 -4.490002e+01
+13 1194     5.332100e+02 -3.336000e+02
+15 1194     1.996700e+02 -3.719000e+01
+0 1195     -1.322200e+02 -5.330900e+02
+1 1195     -1.181400e+02 -4.389800e+02
+4 1195     -6.701800e+02 -2.790400e+02
+0 1196     -2.297100e+02 4.687300e+02
+1 1196     1.345200e+02 5.344700e+02
+2 1196     -5.095400e+02 2.235400e+02
+4 1196     1.396002e+01 -2.253200e+02
+7 1196     -4.507000e+02 5.116400e+02
+0 1197     -3.870001e+01 4.969300e+02
+1 1197     3.358900e+02 5.157100e+02
+5 1197     3.666600e+02 -1.534900e+02
+6 1197     -5.222300e+02 5.093500e+02
+7 1197     -2.643400e+02 5.608900e+02
+11 1197     1.123900e+02 -2.672700e+02
+12 1197     -3.456400e+02 4.992500e+02
+14 1197     2.763900e+02 -2.403400e+02
+0 1198     -1.564000e+02 4.736200e+02
+1 1198     2.094301e+02 5.213700e+02
+2 1198     -4.383600e+02 2.286500e+02
+7 1198     -3.777600e+02 5.244900e+02
+8 1198     -2.802700e+02 1.705400e+02
+12 1198     -4.712800e+02 4.550900e+02
+0 1199     -4.490002e+01 4.812200e+02
+1 1199     3.257200e+02 5.014500e+02
+4 1199     6.809998e+00 -3.311500e+02
+5 1199     3.594301e+02 -1.703700e+02
+6 1199     -5.267700e+02 4.865200e+02
+7 1199     -2.684600e+02 5.439400e+02
+8 1199     -1.934300e+02 1.793200e+02
+9 1199     -4.335500e+02 2.697700e+02
+11 1199     1.078600e+02 -2.815700e+02
+12 1199     -3.501900e+02 4.792200e+02
+13 1199     1.549500e+02 1.515100e+02
+14 1199     2.701500e+02 -2.563000e+02
+0 1200     -4.313300e+02 4.415300e+02
+1 1200     -6.903998e+01 5.552900e+02
+11 1200     -2.323200e+02 -3.173600e+02
+12 1200     -7.867100e+02 3.763400e+02
+0 1201     7.285999e+01 -1.606000e+02
+1 1201     1.805000e+02 -1.488400e+02
+10 1201     7.770020e+00 -3.677002e+01
+0 1202     -1.347800e+02 1.562600e+02
+1 1202     1.344000e+02 2.063400e+02
+5 1202     3.085200e+02 -5.244500e+02
+0 1203     -2.090800e+02 2.086200e+02
+1 1203     8.232001e+01 2.761900e+02
+5 1203     2.073500e+02 -4.666200e+02
+7 1203     -3.860300e+02 2.488100e+02
+10 1203     -3.616300e+02 3.663500e+02
+15 1203     -3.317100e+02 3.918700e+02
+0 1204     -5.419983e+00 5.036400e+02
+1 1204     3.721700e+02 5.143800e+02
+3 1204     -4.270200e+02 -6.746997e+01
+5 1204     3.996600e+02 -1.460800e+02
+6 1204     -4.856800e+02 5.247100e+02
+7 1204     -2.326900e+02 5.712800e+02
+9 1204     -4.042500e+02 2.937100e+02
+12 1204     -3.105400e+02 5.117600e+02
+14 1204     3.088500e+02 -2.323900e+02
+0 1205     5.796002e+01 5.110100e+02
+1 1205     4.405800e+02 5.061500e+02
+2 1205     -2.380700e+02 2.734100e+02
+5 1205     4.623101e+02 -1.369000e+02
+7 1205     -1.715400e+02 5.852900e+02
+11 1205     1.985100e+02 -2.523600e+02
+12 1205     -2.436600e+02 5.297800e+02
+14 1205     3.697200e+02 -2.223100e+02
+0 1206     -1.430500e+02 9.806000e+01
+1 1206     7.781000e+01 1.591500e+02
+5 1206     3.959301e+02 -5.739301e+02
+7 1206     -2.686100e+02 1.715800e+02
+10 1206     -2.705800e+02 2.412300e+02
+15 1206     -2.356600e+02 2.503900e+02
+0 1207     1.739001e+01 4.898999e+01
+1 1207     1.930000e+02 7.170001e+01
+7 1207     -7.706000e+01 1.644400e+02
+10 1207     -7.838000e+01 1.996200e+02
+15 1207     -1.764001e+01 2.061700e+02
+0 1208     5.453199e+02 1.546500e+02
+1 1208     8.208101e+02 9.369995e+00
+2 1208     4.374000e+02 1.071800e+02
+6 1208     3.457300e+02 2.879400e+02
+8 1208     4.185900e+02 6.159000e+01
+10 1208     5.265400e+02 3.795700e+02
+15 1208     7.126700e+02 4.262600e+02
+0 1209     1.198600e+02 3.070001e+01
+1 1209     2.845000e+02 2.444000e+01
+10 1209     4.245001e+01 1.890800e+02
+15 1209     1.229400e+02 1.955000e+02
+0 1210     1.198600e+02 3.070001e+01
+1 1210     2.845000e+02 2.444000e+01
+10 1210     4.245001e+01 1.890800e+02
+15 1210     1.229400e+02 1.955000e+02
+0 1211     4.785999e+01 -1.483600e+02
+1 1211     1.592500e+02 -1.301400e+02
+2 1211     2.622100e+02 -1.104100e+02
+7 1211     -9.630005e+00 -2.606000e+01
+15 1211     4.903003e+01 -5.815002e+01
+0 1212     -1.950200e+02 -5.251700e+02
+1 1212     -1.724400e+02 -4.105600e+02
+4 1212     -6.482600e+02 -2.308500e+02
+6 1212     -7.091998e+01 -6.946600e+02
+7 1212     -1.909600e+02 -4.567300e+02
+9 1212     3.446002e+01 -4.642700e+02
+0 1213     -1.994100e+02 -5.257900e+02
+1 1213     -1.767400e+02 -4.097100e+02
+4 1213     -6.466700e+02 -2.274600e+02
+6 1213     -7.602002e+01 -6.969500e+02
+7 1213     -1.952500e+02 -4.577600e+02
+9 1213     3.058002e+01 -4.658800e+02
+0 1214     -1.228800e+02 -5.434600e+02
+1 1214     -1.136300e+02 -4.512500e+02
+4 1214     -6.826300e+02 -2.875300e+02
+6 1214     2.454999e+01 -6.790601e+02
+7 1214     -1.134500e+02 -4.584500e+02
+9 1214     1.134300e+02 -4.469600e+02
+0 1215     1.019200e+02 6.264001e+01
+1 1215     2.778400e+02 6.100000e+01
+2 1215     2.311200e+02 1.107400e+02
+4 1215     -2.405700e+02 -4.940500e+02
+6 1215     5.716998e+01 1.208700e+02
+8 1215     2.205500e+02 4.406000e+01
+12 1215     7.837000e+01 1.744600e+02
+15 1215     9.484003e+01 2.367900e+02
+0 1216     5.761700e+02 1.422100e+02
+1 1216     8.490400e+02 -1.277002e+01
+2 1216     4.758199e+02 1.100300e+02
+3 1216     3.397400e+02 -2.037900e+02
+6 1216     3.865600e+02 2.858400e+02
+8 1216     4.491100e+02 6.326001e+01
+9 1216     2.678400e+02 1.906800e+02
+10 1216     5.634900e+02 3.684400e+02
+15 1216     7.570400e+02 4.138700e+02
+0 1217     7.347998e+01 9.970999e+01
+1 1217     2.642200e+02 1.052400e+02
+5 1217     7.077600e+02 -5.558600e+02
+6 1217     4.609985e+00 1.507700e+02
+7 1217     -3.059998e+01 2.231300e+02
+10 1217     -1.891998e+01 2.645500e+02
+15 1217     5.159003e+01 2.831500e+02
+0 1218     6.933002e+01 -4.026000e+02
+1 1218     1.091700e+02 -3.831000e+02
+7 1218     5.113000e+01 -2.782100e+02
+9 1218     2.104500e+02 -2.446800e+02
+0 1219     1.765002e+01 -5.825000e+01
+1 1219     1.602400e+02 -3.303003e+01
+3 1219     9.762000e+01 -3.404900e+02
+7 1219     -5.798999e+01 5.834003e+01
+10 1219     -6.683002e+01 7.604999e+01
+13 1219     3.944000e+02 -2.709000e+02
+15 1219     -2.989990e+00 6.091998e+01
+0 1220     1.031600e+02 -9.247998e+01
+1 1220     2.314200e+02 -9.194000e+01
+4 1220     -3.544300e+02 -4.939301e+02
+6 1220     1.150500e+02 -4.996997e+01
+7 1220     3.458002e+01 3.969000e+01
+8 1220     2.665400e+02 -8.426001e+01
+9 1220     1.367300e+02 6.041998e+01
+15 1220     1.168900e+02 2.576001e+01
+0 1221     -5.040997e+01 7.358002e+01
+1 1221     1.414399e+02 1.133200e+02
+4 1221     -2.184200e+02 -3.702500e+02
+5 1221     5.545000e+02 -5.912400e+02
+7 1221     -1.550000e+02 1.735600e+02
+10 1221     -1.598800e+02 2.215900e+02
+13 1221     3.073500e+02 -1.668400e+02
+15 1221     -1.116300e+02 2.301000e+02
+0 1222     -2.123300e+02 -4.298500e+02
+1 1222     -1.532500e+02 -3.184400e+02
+6 1222     -1.578600e+02 -6.016300e+02
+7 1222     -2.320100e+02 -3.679300e+02
+9 1222     -5.117999e+01 -4.062000e+02
+10 1222     -2.918500e+02 -3.788000e+02
+15 1222     -2.599600e+02 -4.734900e+02
+0 1223     -1.567700e+02 -8.123999e+01
+1 1223     -5.390015e+00 -5.330017e+00
+2 1223     -2.214001e+01 -1.312100e+02
+6 1223     -2.086200e+02 -1.427600e+02
+10 1223     -2.674600e+02 3.010999e+01
+0 1224     4.352002e+01 -1.658300e+02
+1 1224     1.515400e+02 -1.455100e+02
+7 1224     -1.145001e+01 -4.423999e+01
+13 1224     4.323101e+02 -3.629000e+02
+15 1224     4.558002e+01 -8.175000e+01
+0 1225     1.409998e+01 -1.531000e+01
+1 1225     1.698000e+02 9.929993e+00
+9 1225     3.206000e+01 1.010500e+02
+15 1225     -1.352002e+01 1.188900e+02
+0 1226     2.034500e+02 -1.532800e+02
+1 1226     3.116300e+02 -1.833000e+02
+13 1226     5.731899e+02 -3.379400e+02
+15 1226     2.613101e+02 -4.366998e+01
+0 1227     2.896002e+01 -2.093800e+02
+1 1227     1.211000e+02 -1.819800e+02
+7 1227     -1.546997e+01 -8.809998e+01
+10 1227     -3.712000e+01 -9.827002e+01
+15 1227     3.177002e+01 -1.427100e+02
+0 1228     1.721500e+02 5.396997e+01
+1 1228     3.451100e+02 3.169000e+01
+2 1228     3.004900e+02 1.156000e+02
+3 1228     1.970200e+02 -1.963400e+02
+6 1228     1.343100e+02 1.324300e+02
+7 1228     7.696002e+01 1.953500e+02
+8 1228     2.808200e+02 4.834000e+01
+10 1228     1.005400e+02 2.215700e+02
+12 1228     1.600300e+02 1.819000e+02
+13 1228     5.161400e+02 -1.614000e+02
+15 1228     1.921600e+02 2.346300e+02
+0 1229     -1.742400e+02 -5.134500e+02
+1 1229     -1.496100e+02 -4.067300e+02
+6 1229     -5.577002e+01 -6.718600e+02
+7 1229     -1.730900e+02 -4.407700e+02
+9 1229     4.588000e+01 -4.476500e+02
+0 1230     3.944200e+02 -1.019700e+02
+1 1230     5.352200e+02 -1.974700e+02
+3 1230     4.049700e+02 -3.353800e+02
+7 1230     3.066400e+02 7.115997e+01
+8 1230     4.658400e+02 -7.292999e+01
+10 1230     3.728199e+02 6.451001e+01
+12 1230     4.254500e+02 4.428003e+01
+15 1230     5.218800e+02 5.147998e+01
+0 1231     -3.597600e+02 4.365300e+02
+1 1231     -1.099976e+00 5.340200e+02
+0 1232     -5.069000e+01 4.999600e+02
+1 1232     3.242400e+02 5.222400e+02
+2 1232     -3.394500e+02 2.607800e+02
+3 1232     -4.680100e+02 -7.120001e+01
+5 1232     3.549100e+02 -1.497200e+02
+6 1232     -5.368000e+02 5.116100e+02
+7 1232     -2.767000e+02 5.630200e+02
+8 1232     -1.995600e+02 1.973700e+02
+12 1232     -3.597300e+02 5.022700e+02
+14 1232     2.643800e+02 -2.367800e+02
+0 1233     8.688000e+01 -2.149200e+02
+1 1233     1.753300e+02 -2.060500e+02
+4 1233     -4.455700e+02 -4.834399e+02
+6 1233     1.513000e+02 -1.876801e+02
+0 1234     1.634998e+01 -4.152002e+01
+1 1234     1.635500e+02 -1.652002e+01
+2 1234     1.800000e+02 -1.546002e+01
+3 1234     9.146002e+01 -3.240100e+02
+6 1234     -1.179993e+00 -2.328003e+01
+7 1234     -6.165002e+01 7.434003e+01
+12 1234     1.034998e+01 3.010999e+01
+13 1234     3.921500e+02 -2.565900e+02
+15 1234     -7.119995e+00 8.303000e+01
+0 1235     6.323000e+02 -9.014001e+01
+1 1235     8.343900e+02 -2.757100e+02
+7 1235     4.953199e+02 9.906000e+01
+10 1235     6.483900e+02 1.036600e+02
+13 1235     8.687600e+02 -2.776900e+02
+15 1235     8.630400e+02 9.832001e+01
+0 1236     1.106800e+02 -3.061900e+02
+1 1236     1.777100e+02 -3.037500e+02
+4 1236     -5.289600e+02 -4.929100e+02
+6 1236     1.875300e+02 -2.970000e+02
+7 1236     7.559998e+01 -1.738600e+02
+8 1236     3.236700e+02 -2.878000e+02
+10 1236     6.642999e+01 -2.001900e+02
+12 1236     1.966000e+02 -2.596000e+02
+13 1236     5.027500e+02 -4.892400e+02
+15 1236     1.569500e+02 -2.628200e+02
+0 1237     2.039500e+02 -7.190002e+00
+1 1237     3.575000e+02 -3.875000e+01
+2 1237     3.541600e+02 6.495001e+01
+4 1237     -3.060500e+02 -5.780100e+02
+0 1238     -2.704600e+02 5.494000e+01
+1 1238     -3.104999e+01 1.476900e+02
+7 1238     -4.119500e+02 9.100000e+01
+13 1238     2.940997e+01 -2.232900e+02
+15 1238     -3.959700e+02 1.732500e+02
+0 1239     -1.302200e+02 4.375400e+02
+1 1239     2.273800e+02 4.790000e+02
+2 1239     -4.103000e+02 1.855500e+02
+3 1239     -5.403000e+02 -1.442900e+02
+5 1239     2.732800e+02 -2.170200e+02
+7 1239     -3.469700e+02 4.895900e+02
+12 1239     -4.353200e+02 4.155400e+02
+14 1239     1.866600e+02 -3.046100e+02
+0 1240     -1.419200e+02 4.476600e+02
+1 1240     2.179301e+02 4.920800e+02
+2 1240     -4.226100e+02 1.975300e+02
+7 1240     -3.599100e+02 4.987100e+02
+12 1240     -4.510200e+02 4.260000e+02
+14 1240     1.755400e+02 -2.939800e+02
+0 1241     -1.536400e+02 4.797400e+02
+1 1241     2.137500e+02 5.269400e+02
+3 1241     -5.642600e+02 -9.271997e+01
+5 1241     2.531801e+02 -1.718700e+02
+7 1241     -3.760600e+02 5.313100e+02
+0 1242     -1.805100e+02 5.046400e+02
+1 1242     1.924600e+02 5.580500e+02
+2 1242     -4.635700e+02 2.653000e+02
+7 1242     -4.062300e+02 5.541700e+02
+0 1243     -2.071800e+02 4.982600e+02
+1 1243     1.639500e+02 5.583700e+02
+2 1243     -4.895000e+02 2.584600e+02
+3 1243     -6.161700e+02 -7.065997e+01
+5 1243     2.021200e+02 -1.523400e+02
+7 1243     -4.323600e+02 5.449600e+02
+11 1243     -3.639001e+01 -2.693900e+02
+12 1243     -5.330200e+02 4.783100e+02
+0 1244     -1.407001e+01 5.019400e+02
+1 1244     3.628300e+02 5.149800e+02
+2 1244     -3.046900e+02 2.621000e+02
+3 1244     -4.350700e+02 -6.940002e+01
+5 1244     3.909000e+02 -1.477800e+02
+7 1244     -2.407200e+02 5.685700e+02
+12 1244     -3.197500e+02 5.087200e+02
+14 1244     3.000000e+02 -2.342500e+02
+0 1245     -2.887000e+02 3.305200e+02
+1 1245     4.365002e+01 4.133100e+02
+2 1245     -5.662900e+02 4.919000e+01
+5 1245     1.062300e+02 -3.324000e+02
+7 1245     -4.918700e+02 3.589700e+02
+10 1245     -4.724000e+02 5.052800e+02
+11 1245     -1.109500e+02 -4.170100e+02
+13 1245     -4.028998e+01 9.440002e+00
+14 1245     2.432001e+01 -4.229700e+02
+15 1245     -4.601200e+02 5.508100e+02
+0 1246     -2.874200e+02 3.398100e+02
+1 1246     4.714001e+01 4.214500e+02
+2 1246     -5.652100e+02 6.078003e+01
+5 1246     1.086500e+02 -3.229700e+02
+10 1246     -4.715100e+02 5.162600e+02
+15 1246     -4.598300e+02 5.638200e+02
+0 1247     2.109985e+00 5.495000e+02
+1 1247     3.916100e+02 5.594600e+02
+6 1247     -4.854300e+02 5.858100e+02
+12 1247     -3.095800e+02 5.666100e+02
+14 1247     3.156400e+02 -1.853600e+02
+0 1248     -1.354400e+02 3.569700e+02
+1 1248     2.019200e+02 3.999800e+02
+2 1248     -4.113000e+02 8.641998e+01
+5 1248     2.621300e+02 -3.050800e+02
+7 1248     -3.419300e+02 4.048200e+02
+8 1248     -2.578500e+02 5.898001e+01
+11 1248     2.854999e+01 -3.931300e+02
+13 1248     8.278003e+01 3.942999e+01
+14 1248     1.780601e+02 -3.921800e+02
+0 1249     1.684100e+02 5.742400e+02
+1 1249     5.770900e+02 5.447600e+02
+6 1249     -3.080900e+02 6.498100e+02
+12 1249     -1.396400e+02 6.172300e+02
+0 1250     4.138199e+02 5.823000e+02
+1 1250     8.614000e+02 4.942100e+02
+3 1250     -9.075000e+01 1.733002e+01
+5 1250     8.144399e+02 -5.069000e+01
+6 1250     -5.451001e+01 7.060700e+02
+9 1250     -1.065700e+02 3.813800e+02
+13 1250     5.138600e+02 2.654200e+02
+14 1250     7.092300e+02 -1.314800e+02
+0 1251     -2.199707e-01 -8.090997e+01
+1 1251     1.375400e+02 -4.954999e+01
+3 1251     8.451001e+01 -3.742500e+02
+7 1251     -7.228998e+01 3.140002e+01
+8 1251     1.669500e+02 -1.027900e+02
+10 1251     -8.477002e+01 4.694000e+01
+15 1251     -2.359003e+01 2.721002e+01
+0 1252     2.712000e+01 1.357800e+02
+1 1252     2.340100e+02 1.533400e+02
+5 1252     6.379399e+02 -5.179900e+02
+7 1252     -8.689001e+01 2.490600e+02
+10 1252     -7.635999e+01 3.023200e+02
+12 1252     -4.453003e+01 2.232700e+02
+15 1252     -1.504999e+01 3.265100e+02
+0 1253     3.998400e+02 -8.966998e+01
+1 1253     5.461300e+02 -1.870200e+02
+3 1253     4.001700e+02 -3.287000e+02
+6 1253     3.778600e+02 2.535999e+01
+7 1253     3.088300e+02 8.289001e+01
+8 1253     4.636600e+02 -6.621997e+01
+9 1253     3.147700e+02 7.994000e+01
+12 1253     4.246801e+02 5.646997e+01
+13 1253     7.129399e+02 -2.749200e+02
+0 1254     -1.408300e+02 9.473001e+01
+1 1254     7.890002e+01 1.552300e+02
+2 1254     -1.456400e+02 -1.295001e+01
+3 1254     -2.373000e+02 -3.319500e+02
+6 1254     -3.263800e+02 4.128998e+01
+8 1254     -7.460999e+01 -4.345999e+01
+10 1254     -2.678700e+02 2.372600e+02
+12 1254     -2.705200e+02 9.571997e+01
+0 1255     -1.497500e+02 -4.809700e+02
+1 1255     -1.151100e+02 -3.851200e+02
+6 1255     -4.809003e+01 -6.260800e+02
+7 1255     -1.555400e+02 -4.038300e+02
+9 1255     4.431000e+01 -4.158400e+02
+12 1255     -6.459003e+01 -5.745100e+02
+0 1256     6.378000e+02 -1.397998e+01
+1 1256     8.644600e+02 -1.974000e+02
+2 1256     5.873199e+02 -1.871997e+01
+6 1256     5.055400e+02 1.344500e+02
+7 1256     4.904900e+02 1.733400e+02
+8 1256     5.404200e+02 -4.589001e+01
+10 1256     6.486600e+02 1.919500e+02
+12 1256     5.859399e+02 1.445400e+02
+13 1256     8.633900e+02 -2.070900e+02
+15 1256     8.621200e+02 2.046500e+02
+0 1257     -1.969100e+02 -4.433400e+02
+1 1257     -1.444600e+02 -3.354800e+02
+7 1257     -2.129000e+02 -3.768300e+02
+9 1257     -2.687000e+01 -4.089200e+02
+10 1257     -2.720300e+02 -3.907500e+02
+15 1257     -2.365700e+02 -4.883199e+02
+0 1258     -2.961300e+02 -2.394400e+02
+1 1258     -1.602100e+02 -1.183500e+02
+9 1258     -2.745500e+02 -3.079300e+02
+12 1258     -3.647200e+02 -3.592300e+02
+13 1258     7.903003e+01 -4.794500e+02
+15 1258     -3.951200e+02 -2.272900e+02
+0 1259     1.019200e+02 -5.572100e+02
+1 1259     9.270001e+01 -5.418900e+02
+0 1260     1.284600e+02 -3.142300e+02
+1 1260     1.940000e+02 -3.177400e+02
+7 1260     9.387000e+01 -1.789600e+02
+9 1260     2.242100e+02 -1.452800e+02
+15 1260     1.825699e+02 -2.712900e+02
+0 1261     3.398600e+02 5.600100e+02
+1 1261     7.667500e+02 4.878900e+02
+3 1261     -1.440500e+02 -5.659973e+00
+14 1261     6.392400e+02 -1.575900e+02
+0 1262     1.109800e+02 -7.403003e+01
+1 1262     2.439600e+02 -7.682001e+01
+7 1262     4.009003e+01 5.927002e+01
+10 1262     4.259998e+01 6.656000e+01
+13 1262     4.822500e+02 -2.757200e+02
+15 1262     1.249600e+02 5.152002e+01
+0 1263     7.921997e+01 -3.511000e+02
+1 1263     1.355500e+02 -3.364800e+02
+7 1263     5.031000e+01 -2.258400e+02
+9 1263     1.931600e+02 -1.991400e+02
+10 1263     3.528998e+01 -2.550100e+02
+13 1263     4.751000e+02 -5.359301e+02
+0 1264     6.224900e+02 2.196997e+01
+1 1264     8.597500e+02 -1.545400e+02
+2 1264     5.610100e+02 1.037000e+01
+3 1264     4.272100e+02 -2.975700e+02
+6 1264     4.778800e+02 1.687500e+02
+7 1264     4.703900e+02 2.050800e+02
+10 1264     6.275100e+02 2.325800e+02
+12 1264     5.606400e+02 1.786600e+02
+13 1264     8.426300e+02 -1.764200e+02
+15 1264     8.362900e+02 2.527600e+02
+0 1265     5.555200e+02 2.251600e+02
+1 1265     8.539700e+02 8.097000e+01
+2 1265     4.305500e+02 1.830800e+02
+3 1265     2.929500e+02 -1.348100e+02
+6 1265     3.405500e+02 3.706300e+02
+15 1265     7.192500e+02 5.269900e+02
+0 1266     5.846400e+02 6.363000e+01
+1 1266     8.330900e+02 -9.856000e+01
+2 1266     5.067900e+02 3.331000e+01
+7 1266     4.273900e+02 2.376700e+02
+15 1266     7.780300e+02 3.050000e+02
+0 1267     -5.847998e+01 -1.781100e+02
+1 1267     5.000000e+01 -1.256400e+02
+3 1267     8.666998e+01 -4.740800e+02
+4 1267     -3.906300e+02 -3.649800e+02
+6 1267     -2.704999e+01 -2.025300e+02
+7 1267     -1.106600e+02 -7.412000e+01
+8 1267     1.557100e+02 -1.909900e+02
+12 1267     -3.088000e+01 -1.502000e+02
+13 1267     3.462100e+02 -3.816100e+02
+0 1268     -7.334998e+01 7.842999e+01
+1 1268     1.249000e+02 1.238600e+02
+6 1268     -1.865500e+02 6.658002e+01
+7 1268     -1.823500e+02 1.721600e+02
+9 1268     -1.172900e+02 1.197500e+02
+15 1268     -1.422000e+02 2.333800e+02
+0 1269     5.624700e+02 9.985999e+01
+1 1269     8.216300e+02 -5.329999e+01
+6 1269     3.814100e+02 2.312100e+02
+7 1269     4.002600e+02 2.685000e+02
+9 1269     2.662500e+02 1.474400e+02
+10 1269     5.508000e+02 3.171600e+02
+12 1269     4.679399e+02 2.407000e+02
+13 1269     7.710800e+02 -1.153200e+02
+15 1269     7.430300e+02 3.522600e+02
+0 1270     5.629500e+02 6.810999e+01
+1 1270     8.121801e+02 -8.681000e+01
+6 1270     3.903900e+02 1.961400e+02
+7 1270     4.049301e+02 2.378800e+02
+10 1270     5.538800e+02 2.804500e+02
+12 1270     4.766801e+02 2.064500e+02
+15 1270     7.473500e+02 3.082500e+02
+0 1271     5.530000e+02 1.283300e+02
+1 1271     8.206500e+02 -2.052002e+01
+9 1271     2.501700e+02 1.678000e+02
+13 1271     7.581300e+02 -9.115997e+01
+15 1271     7.266500e+02 3.907400e+02
+0 1272     1.164900e+02 4.045300e+02
+1 1272     4.754800e+02 3.817400e+02
+2 1272     -1.750300e+02 1.509500e+02
+7 1272     -1.017300e+02 4.829800e+02
+11 1272     2.589100e+02 -3.443300e+02
+13 1272     2.841300e+02 9.473001e+01
+14 1272     4.291000e+02 -3.325100e+02
+0 1273     -3.003900e+02 4.627800e+02
+1 1273     6.291998e+01 5.454600e+02
+5 1273     1.088000e+02 -1.896600e+02
+8 1273     -3.977900e+02 1.570400e+02
+12 1273     -6.338000e+02 4.194600e+02
+0 1274     3.015002e+01 5.423100e+02
+1 1274     4.196700e+02 5.450500e+02
+2 1274     -2.668600e+02 3.076700e+02
+8 1274     -1.404500e+02 2.364000e+02
+12 1274     -2.795800e+02 5.619600e+02
+13 1274     2.134399e+02 2.072400e+02
+0 1275     -1.554700e+02 3.466200e+02
+1 1275     1.802600e+02 3.948100e+02
+2 1275     -4.299600e+02 7.309998e+01
+5 1275     2.419301e+02 -3.164000e+02
+7 1275     -3.598400e+02 3.919200e+02
+8 1275     -2.734600e+02 4.829999e+01
+14 1275     1.581400e+02 -4.036800e+02
+0 1276     2.295300e+02 3.507800e+02
+1 1276     5.748101e+02 2.973500e+02
+2 1276     -3.666998e+01 1.209000e+02
+7 1276     1.827002e+01 4.452400e+02
+9 1276     -1.741900e+02 1.786800e+02
+13 1276     3.905000e+02 5.741998e+01
+14 1276     5.630699e+02 -3.842400e+02
+0 1277     5.037000e+01 5.665800e+02
+1 1277     4.473900e+02 5.651500e+02
+2 1277     -2.509100e+02 3.346600e+02
+12 1277     -2.619000e+02 5.932400e+02
+0 1278     2.600699e+02 5.021900e+02
+1 1278     6.582400e+02 4.455300e+02
+2 1278     -5.987000e+01 2.651800e+02
+8 1278     3.182001e+01 2.062000e+02
+9 1278     -2.022300e+02 3.022500e+02
+0 1279     -2.752900e+02 1.188000e+01
+1 1279     -5.095001e+01 1.085200e+02
+0 1280     -2.535999e+01 5.428700e+02
+1 1280     3.615400e+02 5.596000e+02
+0 1281     -1.282001e+01 5.127800e+02
+1 1281     3.665601e+02 5.255200e+02
+2 1281     -3.041500e+02 2.744600e+02
+0 1282     3.222998e+01 4.259700e+02
+1 1282     3.922700e+02 4.257000e+02
+2 1282     -2.540100e+02 1.767500e+02
+6 1282     -4.262900e+02 4.319900e+02
+0 1283     -1.325200e+02 2.645400e+02
+1 1283     1.766801e+02 3.094400e+02
+0 1284     6.770020e+00 2.927800e+02
+1 1284     3.241000e+02 3.000000e+02
+5 1284     4.250200e+02 -3.728800e+02
+6 1284     -3.986200e+02 2.621900e+02
+0 1285     2.158400e+02 1.178998e+01
+1 1285     3.761801e+02 -2.365997e+01
+0 1286     -1.475700e+02 2.747700e+02
+1 1286     1.655800e+02 3.232200e+02
+11 1286     1.557001e+01 -4.692100e+02
+0 1287     4.222600e+02 1.825800e+02
+1 1287     7.135000e+02 7.206000e+01
+14 1287     8.440900e+02 -5.538000e+02
+0 1288     -3.228300e+02 -1.205500e+02
+1 1288     -1.424600e+02 -7.700195e-01
+0 1289     6.341998e+01 -1.413200e+02
+1 1289     1.765100e+02 -1.272300e+02
+0 1290     -1.704700e+02 2.243400e+02
+1 1290     1.251800e+02 2.808800e+02
+7 1290     -3.499800e+02 2.702200e+02
+10 1290     -3.171900e+02 3.893500e+02
+11 1290     -8.150024e+00 -5.172200e+02
+0 1291     1.327400e+02 -1.294600e+02
+1 1291     2.499301e+02 -1.376900e+02
+7 1291     6.903998e+01 7.539978e+00
+10 1291     7.314001e+01 5.260010e+00
+13 1291     5.047100e+02 -3.236600e+02
+15 1291     1.604700e+02 -2.077002e+01
+0 1292     4.133700e+02 -1.141400e+02
+1 1292     5.501801e+02 -2.161300e+02
+6 1292     4.056200e+02 7.210022e+00
+10 1292     3.958700e+02 5.362000e+01
+15 1292     5.498500e+02 3.859003e+01
+0 1293     -3.260800e+02 -1.264300e+02
+1 1293     -1.474800e+02 -5.390015e+00
+0 1294     -2.002900e+02 2.142300e+02
+1 1294     9.285999e+01 2.789700e+02
+0 1295     2.461300e+02 9.460999e+01
+1 1295     4.384600e+02 4.853998e+01
+10 1295     1.804800e+02 2.771800e+02
+15 1295     2.896000e+02 3.009500e+02
+0 1296     -7.406000e+01 4.981800e+02
+1 1296     3.001000e+02 5.260300e+02
+0 1297     -4.434700e+02 2.211900e+02
+1 1297     -1.322200e+02 3.476500e+02
+7 1297     -6.344700e+02 2.245900e+02
+10 1297     -6.446700e+02 3.594200e+02
+14 1297     -1.409300e+02 -5.462200e+02
+0 1298     -2.102100e+02 2.144700e+02
+1 1298     8.313000e+01 2.819700e+02
+5 1298     2.056200e+02 -4.604900e+02
+8 1298     -2.791800e+02 -5.709000e+01
+10 1298     -3.641400e+02 3.733000e+02
+11 1298     -4.591998e+01 -5.268700e+02
+14 1298     1.235100e+02 -5.494800e+02
+0 1299     -4.342800e+02 4.579400e+02
+1 1299     -6.795001e+01 5.718200e+02
+2 1299     -7.249000e+02 2.085500e+02
+12 1299     -7.933600e+02 3.937700e+02
+13 1299     -1.532200e+02 1.145200e+02
+14 1299     -1.061300e+02 -2.860500e+02
+0 1300     -2.800300e+02 5.162000e+01
+1 1300     -4.140997e+01 1.471400e+02
+0 1301     -1.192000e+02 4.594000e+01
+1 1301     7.526001e+01 1.040200e+02
+7 1301     -2.266900e+02 1.296600e+02
+10 1301     -2.369700e+02 1.825200e+02
+15 1301     -1.985000e+02 1.828900e+02
+0 1302     -3.988000e+01 4.734200e+02
+1 1302     3.286700e+02 4.920400e+02
+0 1303     -7.805600e+02 3.238000e+01
+1 1303     -4.905200e+02 2.575800e+02
+0 1304     -3.162900e+02 7.798999e+01
+1 1304     -6.558002e+01 1.816800e+02
+4 1304     -1.988700e+02 -1.538800e+02
+8 1304     -3.219900e+02 -1.686000e+02
+10 1304     -4.723300e+02 2.014200e+02
+0 1305     -1.693500e+02 2.284800e+02
+1 1305     1.276500e+02 2.845900e+02
+0 1306     2.593900e+02 -1.240900e+02
+1 1306     3.797900e+02 -1.734700e+02
+7 1306     1.898400e+02 3.323999e+01
+12 1306     3.064700e+02 2.800293e-01
+15 1306     3.350000e+02 3.140015e+00
+0 1307     -3.463600e+02 2.187700e+02
+1 1307     -4.363000e+01 3.210800e+02
+11 1307     -1.710300e+02 -5.210000e+02
+0 1308     -1.029500e+02 2.846500e+02
+1 1308     2.125699e+02 3.209100e+02
+0 1309     3.044200e+02 8.262000e+01
+1 1309     5.005500e+02 1.750000e+01
+15 1309     3.732300e+02 2.925600e+02
+0 1310     -3.967999e+01 2.383300e+02
+1 1310     2.576200e+02 2.595000e+02
+0 1311     6.543900e+02 -8.690997e+01
+1 1311     8.588300e+02 -2.800400e+02
+7 1311     5.160699e+02 1.060200e+02
+0 1312     3.355400e+02 -1.593300e+02
+1 1312     4.487800e+02 -2.342000e+02
+10 1312     3.099600e+02 -8.070007e+00
+0 1313     3.906100e+02 -4.239001e+01
+1 1313     5.562300e+02 -1.372600e+02
+7 1313     2.877400e+02 1.245200e+02
+15 1313     5.095601e+02 1.321200e+02
+0 1314     1.051000e+02 2.906700e+02
+1 1314     4.226400e+02 2.713000e+02
+6 1314     -2.770700e+02 2.873300e+02
+11 1314     2.512100e+02 -4.509900e+02
+13 1314     2.984200e+02 -1.070007e+00
+0 1315     -4.403100e+02 4.990997e+01
+1 1315     -1.889900e+02 1.882700e+02
+2 1315     -6.121700e+02 -2.412000e+02
+10 1315     -6.173500e+02 1.544600e+02
+13 1315     -1.228500e+02 -2.380900e+02
+15 1315     -6.279900e+02 1.436900e+02
+0 1316     4.091200e+02 -7.473999e+01
+1 1316     5.625900e+02 -1.750500e+02
+10 1316     3.870200e+02 9.704999e+01
+15 1316     5.394399e+02 9.091000e+01
+0 1317     2.166000e+02 -1.312500e+02
+1 1317     3.329900e+02 -1.663200e+02
+7 1317     1.518500e+02 2.012000e+01
+9 1317     2.336700e+02 5.002002e+01
+13 1317     5.786000e+02 -3.186200e+02
+15 1317     2.779301e+02 -1.187000e+01
+0 1318     5.099600e+02 -3.558600e+02
+1 1318     5.859200e+02 -4.980699e+02
+7 1318     4.462200e+02 -1.607100e+02
+0 1319     7.427002e+01 -1.336800e+02
+1 1319     1.905100e+02 -1.231600e+02
+10 1319     6.869995e+00 -5.650024e+00
+12 1319     1.107200e+02 -5.750000e+01
+0 1320     1.141500e+02 7.926999e+01
+1 1320     2.960200e+02 7.359003e+01
+2 1320     2.325601e+02 1.251600e+02
+6 1320     6.126001e+01 1.414600e+02
+15 1320     1.096500e+02 2.610500e+02
+0 1321     1.907700e+02 3.889700e+02
+1 1321     5.493199e+02 3.459600e+02
+0 1322     1.911801e+02 5.159998e+01
+1 1322     3.643199e+02 2.342999e+01
+6 1322     1.523000e+02 1.326800e+02
+8 1322     2.946900e+02 4.695999e+01
+10 1322     1.227800e+02 2.205900e+02
+12 1322     1.797900e+02 1.814300e+02
+15 1322     2.190800e+02 2.340000e+02
+0 1323     -1.415300e+02 7.046997e+01
+1 1323     6.856000e+01 1.325900e+02
+7 1323     -2.598400e+02 1.458800e+02
+10 1323     -2.656700e+02 2.090400e+02
+13 1323     1.984000e+02 -1.847100e+02
+15 1323     -2.305200e+02 2.129500e+02
+0 1324     1.906000e+02 3.807600e+02
+1 1324     5.458000e+02 3.378700e+02
+10 1324     9.114001e+01 6.127800e+02
+14 1324     5.099301e+02 -3.541900e+02
+0 1325     1.803000e+02 8.250000e+01
+1 1325     3.639900e+02 5.727002e+01
+6 1325     1.265200e+02 1.630700e+02
+8 1325     2.738300e+02 6.781000e+01
+12 1325     1.560900e+02 2.118700e+02
+13 1325     5.158600e+02 -1.372000e+02
+15 1325     1.998900e+02 2.747600e+02
+0 1326     2.966500e+02 3.648000e+02
+1 1326     6.521700e+02 2.933400e+02
+0 1327     -5.900269e-01 7.428003e+01
+1 1327     1.854900e+02 1.010100e+02
+15 1327     -4.522998e+01 2.383500e+02
+0 1328     1.679999e+01 -2.749300e+02
+1 1328     9.712000e+01 -2.428700e+02
+3 1328     1.822000e+02 -5.812500e+02
+6 1328     7.534998e+01 -2.955800e+02
+9 1328     1.216700e+02 -1.373900e+02
+10 1328     -4.439001e+01 -1.746500e+02
+0 1329     -1.196100e+02 5.309998e+00
+1 1329     5.879999e+01 6.602002e+01
+0 1330     7.520020e+00 -1.134600e+02
+1 1330     1.334500e+02 -8.371002e+01
+0 1331     -9.720001e+01 2.452000e+02
+1 1331     2.037600e+02 2.815500e+02
+5 1331     3.240601e+02 -4.268600e+02
+7 1331     -2.801500e+02 3.006900e+02
+10 1331     -2.329900e+02 4.210200e+02
+11 1331     6.115002e+01 -4.974600e+02
+14 1331     2.412700e+02 -5.128300e+02
+0 1332     -2.297000e+02 1.917500e+02
+1 1332     5.671002e+01 2.655500e+02
+0 1333     7.644000e+01 7.312000e+01
+1 1333     2.567600e+02 7.853998e+01
+0 1334     2.896700e+02 3.686700e+02
+1 1334     6.466600e+02 2.988800e+02
+0 1335     -1.207100e+02 2.795700e+02
+1 1335     1.932600e+02 3.209100e+02
+0 1336     -1.134700e+02 2.516200e+02
+1 1336     1.903199e+02 2.921600e+02
+0 1337     2.224700e+02 -2.759700e+02
+1 1337     2.947000e+02 -3.109400e+02
+10 1337     1.920699e+02 -1.531100e+02
+13 1337     6.024900e+02 -4.496801e+02
+0 1338     -1.820100e+02 -5.221000e+02
+1 1338     -1.596700e+02 -4.121400e+02
+0 1339     3.003600e+02 6.406000e+01
+1 1339     4.873300e+02 1.380005e+00
+15 1339     3.700200e+02 2.691400e+02
+0 1340     1.393000e+02 -1.402300e+02
+1 1340     2.519100e+02 -1.501600e+02
+10 1340     8.248999e+01 -6.349976e+00
+0 1341     -2.636900e+02 -4.504200e+02
+1 1341     -2.074100e+02 -3.204100e+02
+7 1341     -2.803300e+02 -3.985700e+02
+0 1342     3.183101e+02 7.558002e+01
+1 1342     5.134900e+02 6.500000e+00
+15 1342     3.937000e+02 2.841900e+02
+0 1343     -1.705500e+02 -5.043700e+02
+1 1343     -1.425300e+02 -3.998400e+02
+4 1343     -6.349400e+02 -2.497300e+02
+6 1343     -5.640997e+01 -6.585800e+02
+7 1343     -1.713100e+02 -4.306000e+02
+0 1344     -4.721100e+02 1.324300e+02
+1 1344     -1.890400e+02 2.722700e+02
+7 1344     -6.437500e+02 1.322100e+02
+10 1344     -6.674200e+02 2.491500e+02
+0 1345     2.255601e+02 3.711700e+02
+1 1345     5.787000e+02 3.189800e+02
+0 1346     -3.343800e+02 6.403003e+01
+1 1346     -8.712000e+01 1.733500e+02
+10 1346     -4.926300e+02 1.825000e+02
+0 1347     1.854000e+02 -1.299900e+02
+1 1347     3.020699e+02 -1.550300e+02
+0 1348     -3.689001e+01 8.929999e+01
+1 1348     1.587100e+02 1.249500e+02
+2 1348     4.816998e+01 7.885999e+01
+4 1348     -2.094800e+02 -3.809600e+02
+5 1348     5.698500e+02 -5.727000e+02
+6 1348     -1.327900e+02 9.703998e+01
+7 1348     -1.435300e+02 1.920200e+02
+10 1348     -1.456600e+02 2.408800e+02
+12 1348     -1.070500e+02 1.525900e+02
+13 1348     3.182700e+02 -1.521000e+02
+15 1348     -9.534003e+01 2.535700e+02
+0 1349     7.290400e+02 -3.458500e+02
+1 1349     8.370100e+02 -5.769900e+02
+0 1350     -1.369100e+02 2.398800e+02
+1 1350     1.630500e+02 2.869400e+02
+2 1350     -3.602500e+02 -2.131000e+01
+11 1350     2.428003e+01 -5.022800e+02
+13 1350     1.013300e+02 -5.964001e+01
+14 1350     1.981400e+02 -5.198700e+02
+0 1351     -1.084100e+02 1.314500e+02
+1 1351     1.244500e+02 1.810600e+02
+0 1352     -9.071002e+01 2.219800e+02
+1 1352     2.015400e+02 2.574600e+02
+0 1353     -1.266300e+02 2.507000e+02
+1 1353     1.770699e+02 2.946300e+02
+0 1354     3.365200e+02 -1.758100e+02
+1 1354     4.430699e+02 -2.504800e+02
+6 1354     3.720600e+02 -7.192999e+01
+7 1354     2.718600e+02 -4.880005e+00
+12 1354     4.044700e+02 -3.879999e+01
+13 1354     6.858000e+02 -3.504200e+02
+15 1354     4.484100e+02 -5.703998e+01
+0 1355     -1.573000e+02 -5.235699e+02
+1 1355     -1.360900e+02 -4.215500e+02
+4 1355     -6.568200e+02 -2.588400e+02
+6 1355     -3.020001e+01 -6.769500e+02
+7 1355     -1.533400e+02 -4.472200e+02
+0 1356     1.851001e+01 1.634100e+02
+1 1356     2.378800e+02 1.813800e+02
+10 1356     -8.912000e+01 3.337300e+02
+15 1356     -2.909998e+01 3.628900e+02
+0 1357     1.373000e+02 -5.511500e+02
+1 1357     1.294900e+02 -5.490699e+02
+10 1357     1.233000e+02 -4.772400e+02
+0 1358     1.531899e+02 -2.168900e+02
+1 1358     2.398800e+02 -2.294100e+02
+10 1358     1.064000e+02 -9.359998e+01
+0 1359     3.615601e+02 3.367999e+01
+1 1359     5.537000e+02 -5.104999e+01
+7 1359     2.448000e+02 1.923100e+02
+10 1359     3.212100e+02 2.189400e+02
+15 1359     4.602700e+02 2.334400e+02
+0 1360     1.748800e+02 -2.048800e+02
+1 1360     2.665900e+02 -2.250000e+02
+10 1360     1.301900e+02 -7.719000e+01
+0 1361     -1.070001e+01 1.477500e+02
+1 1361     2.050400e+02 1.743000e+02
+10 1361     -1.212600e+02 3.127100e+02
+15 1361     -6.692999e+01 3.374100e+02
+0 1362     -1.218300e+02 -1.159500e+02
+1 1362     1.440997e+01 -4.847998e+01
+12 1362     -1.392900e+02 -1.063800e+02
+13 1362     2.725601e+02 -3.350300e+02
+0 1363     2.748700e+02 9.776999e+01
+1 1363     4.719700e+02 4.357001e+01
+15 1363     3.301400e+02 3.091700e+02
+0 1364     -1.825400e+02 -5.257400e+02
+1 1364     -1.613200e+02 -4.152200e+02
+6 1364     -5.578998e+01 -6.891300e+02
+7 1364     -1.782200e+02 -4.544500e+02
+9 1364     4.647998e+01 -4.594399e+02
+0 1365     3.242900e+02 -1.597800e+02
+1 1365     4.370900e+02 -2.308300e+02
+7 1365     2.560400e+02 7.739990e+00
+15 1365     4.299100e+02 -3.677002e+01
+0 1366     4.071801e+02 -9.100000e+01
+1 1366     5.533700e+02 -1.906500e+02
+10 1366     3.866100e+02 7.803998e+01
+0 1367     -4.573400e+02 1.247700e+02
+1 1367     -1.783200e+02 2.615800e+02
+7 1367     -6.259500e+02 1.272000e+02
+0 1368     -2.346500e+02 1.941000e+02
+1 1368     5.323999e+01 2.690000e+02
+7 1368     -4.092100e+02 2.306500e+02
+0 1369     -1.349800e+02 -1.125300e+02
+1 1369     3.210022e+00 -4.115002e+01
+2 1369     2.795001e+01 -1.462300e+02
+4 1369     -3.324200e+02 -3.056100e+02
+6 1369     -1.597700e+02 -1.653700e+02
+7 1369     -2.050500e+02 -2.583002e+01
+8 1369     4.734998e+01 -1.657000e+02
+12 1369     -1.562400e+02 -1.066900e+02
+13 1369     2.599800e+02 -3.331100e+02
+15 1369     -2.010600e+02 -3.378998e+01
+0 1370     -4.516200e+02 3.200000e+01
+1 1370     -2.054000e+02 1.747100e+02
+0 1371     2.458600e+02 -4.685999e+01
+1 1371     3.897700e+02 -9.204999e+01
+0 1372     6.253998e+01 2.540400e+02
+1 1372     3.651500e+02 2.469600e+02
+6 1372     -3.034600e+02 2.341400e+02
+10 1372     -4.603998e+01 4.477000e+02
+0 1373     -1.244900e+02 2.816500e+02
+1 1373     1.903400e+02 3.238600e+02
+7 1373     -3.164300e+02 3.314100e+02
+10 1373     -2.697900e+02 4.618100e+02
+15 1373     -2.248500e+02 5.045400e+02
+0 1374     5.443500e+02 6.740997e+01
+1 1374     7.927400e+02 -8.203003e+01
+6 1374     3.669200e+02 1.872700e+02
+7 1374     3.865100e+02 2.333300e+02
+10 1374     5.321200e+02 2.769500e+02
+12 1374     4.546300e+02 1.979500e+02
+13 1374     7.560200e+02 -1.467800e+02
+15 1374     7.215200e+02 3.041500e+02
+0 1375     -3.343600e+02 5.840002e+01
+1 1375     -8.913000e+01 1.681400e+02
+13 1375     -2.903998e+01 -2.240800e+02
+0 1376     3.540500e+02 3.425000e+02
+1 1376     7.053199e+02 2.545000e+02
+0 1377     -9.887000e+01 -2.287000e+01
+1 1377     6.760999e+01 3.369000e+01
+10 1377     -2.051000e+02 1.044300e+02
+15 1377     -1.631500e+02 9.239001e+01
+0 1378     -1.501100e+02 2.812800e+02
+1 1378     1.657800e+02 3.298700e+02
+10 1378     -3.002300e+02 4.590900e+02
+0 1379     -2.468900e+02 -4.181600e+02
+1 1379     -1.805600e+02 -2.964600e+02
+0 1380     -2.472600e+02 -4.914100e+02
+1 1380     -2.074600e+02 -3.627800e+02
+6 1380     -1.559800e+02 -6.844200e+02
+0 1381     -8.036900e+02 4.720001e+01
+1 1381     -5.048500e+02 2.762400e+02
+0 1382     -7.918800e+02 3.725000e+01
+1 1382     -4.983700e+02 2.646300e+02
+0 1383     -8.758700e+02 -3.146997e+01
+1 1383     -5.881100e+02 2.234800e+02
+0 1384     -7.878000e+02 4.977002e+01
+1 1384     -4.913600e+02 2.749700e+02
+0 1385     2.548000e+02 1.432100e+02
+1 1385     4.686300e+02 9.382999e+01
+0 1386     2.988900e+02 -3.132001e+01
+1 1386     4.524301e+02 -9.387000e+01
+7 1386     2.091801e+02 1.283500e+02
+10 1386     2.556500e+02 1.352900e+02
+15 1386     3.787300e+02 1.347400e+02
+0 1387     -8.484900e+02 -4.218100e+02
+1 1387     -6.875000e+02 -1.201000e+02
+4 1387     -4.366800e+02 1.925700e+02
+0 1388     -2.385800e+02 -4.676200e+02
+1 1388     -1.909000e+02 -3.440600e+02
+4 1388     -5.880600e+02 -1.983000e+02
+6 1388     -1.620800e+02 -6.545500e+02
+7 1388     -2.500300e+02 -4.100900e+02
+9 1388     -4.902002e+01 -4.425601e+02
+0 1389     -2.102800e+02 -4.826400e+02
+1 1389     -1.712600e+02 -3.667300e+02
+6 1389     -1.189400e+02 -6.570100e+02
+7 1389     -2.160000e+02 -4.181500e+02
+9 1389     -1.034998e+01 -4.399399e+02
+0 1390     -1.453003e+01 5.276100e+02
+1 1390     3.690699e+02 5.409700e+02
+2 1390     -3.069400e+02 2.915400e+02
+3 1390     -4.366700e+02 -4.013000e+01
+12 1390     -3.244900e+02 5.390300e+02
+0 1391     8.804999e+01 5.524300e+02
+1 1391     4.835699e+02 5.416800e+02
+5 1391     4.925900e+02 -9.302002e+01
+0 1392     -2.009998e+01 5.275900e+02
+1 1392     3.629000e+02 5.424400e+02
+5 1392     3.857200e+02 -1.208000e+02
+0 1393     -7.234500e+02 -4.637000e+02
+1 1393     -6.032900e+02 -1.918100e+02
+4 1393     -4.874300e+02 1.253700e+02
+0 1394     -4.224300e+02 3.127300e+02
+1 1394     -8.946002e+01 4.293100e+02
+7 1394     -6.279500e+02 3.233700e+02
+0 1395     -4.224300e+02 3.127300e+02
+1 1395     -8.946002e+01 4.293100e+02
+5 1395     -3.198999e+01 -3.492300e+02
+7 1395     -6.279500e+02 3.233700e+02
+8 1395     -5.033800e+02 2.769989e+00
+10 1395     -6.325600e+02 4.716400e+02
+13 1395     -1.498500e+02 -1.157001e+01
+14 1395     -1.126000e+02 -4.425500e+02
+0 1396     -1.852800e+02 4.464300e+02
+1 1396     1.740300e+02 5.013800e+02
+2 1396     -4.657700e+02 1.960000e+02
+14 1396     1.334100e+02 -2.962400e+02
+0 1397     2.922900e+02 5.455800e+02
+1 1397     7.072100e+02 4.835500e+02
+2 1397     -3.809998e+01 3.122400e+02
+6 1397     -1.720300e+02 6.364300e+02
+11 1397     4.075000e+02 -2.113600e+02
+12 1397     -7.289978e+00 5.992800e+02
+13 1397     4.192000e+02 2.262200e+02
+14 1397     5.939800e+02 -1.760100e+02
+0 1398     3.590400e+02 4.616000e+02
+1 1398     7.585100e+02 3.768200e+02
+6 1398     -8.610999e+01 5.471600e+02
+12 1398     7.603998e+01 5.142300e+02
+14 1398     6.675200e+02 -2.589300e+02
+0 1399     2.094600e+02 4.110900e+02
+1 1399     5.772900e+02 3.638000e+02
+3 1399     -2.330800e+02 -1.694400e+02
+7 1399     -1.442999e+01 4.998600e+02
+11 1399     3.450400e+02 -3.334400e+02
+12 1399     -6.707001e+01 4.353400e+02
+14 1399     5.212800e+02 -3.209400e+02
+0 1400     9.700000e+01 5.010500e+02
+1 1400     4.799600e+02 4.857500e+02
+8 1400     -8.716998e+01 2.017100e+02
+11 1400     2.354900e+02 -2.592400e+02
+12 1400     -2.008000e+02 5.232000e+02
+14 1400     4.071100e+02 -2.312300e+02
+0 1401     2.584500e+02 -1.163500e+02
+1 1401     3.820800e+02 -1.654800e+02
+10 1401     2.176600e+02 3.359998e+01
+15 1401     3.332300e+02 1.370001e+01
+0 1402     2.832700e+02 -2.526500e+02
+1 1402     3.659399e+02 -3.089700e+02
+15 1402     3.853800e+02 -1.679700e+02
+0 1403     2.555100e+02 -2.739200e+02
+1 1403     3.308101e+02 -3.210800e+02
+10 1403     2.297900e+02 -1.476400e+02
+15 1403     3.501700e+02 -2.009700e+02
+0 1404     -2.033300e+02 -5.425800e+02
+1 1404     -1.862600e+02 -4.234300e+02
+4 1404     -6.612900e+02 -2.244000e+02
+0 1405     -2.790400e+02 1.921200e+02
+1 1405     1.021997e+01 2.786800e+02
+0 1406     1.016998e+01 1.088900e+02
+1 1406     2.077100e+02 1.313700e+02
+4 1406     -2.011000e+02 -4.176500e+02
+10 1406     -9.319000e+01 2.689500e+02
+15 1406     -3.454999e+01 2.872100e+02
+0 1407     -1.076200e+02 -7.999878e-01
+1 1407     6.779999e+01 5.681000e+01
+2 1407     -1.027002e+01 -4.391998e+01
+4 1407     -2.612600e+02 -3.237500e+02
+6 1407     -1.933800e+02 -3.572998e+01
+7 1407     -2.023500e+02 8.773001e+01
+8 1407     2.407001e+01 -7.790002e+01
+10 1407     -2.182800e+02 1.289400e+02
+13 1407     2.603500e+02 -2.367900e+02
+15 1407     -1.778300e+02 1.212100e+02
+0 1408     5.852200e+02 -4.465997e+01
+1 1408     7.995500e+02 -2.121300e+02
+7 1408     4.432700e+02 1.328400e+02
+10 1408     5.907400e+02 1.509900e+02
+13 1408     8.126000e+02 -2.429100e+02
+15 1408     7.924301e+02 1.545100e+02
+0 1409     -1.817100e+02 -5.149800e+02
+1 1409     -1.577700e+02 -4.044700e+02
+6 1409     -6.190997e+01 -6.769700e+02
+0 1410     6.263000e+02 -2.714000e+02
+1 1410     7.496200e+02 -4.584000e+02
+0 1411     -8.203003e+01 -5.528900e+02
+1 1411     -7.971997e+01 -4.739900e+02
+7 1411     -6.988000e+01 -4.587100e+02
+9 1411     1.555100e+02 -4.370500e+02
+0 1412     4.555300e+02 3.096600e+02
+1 1412     7.901400e+02 1.954800e+02
+0 1413     -6.789001e+01 2.277002e+01
+1 1413     1.095400e+02 6.891998e+01
+3 1413     -5.085999e+01 -3.130200e+02
+6 1413     -1.455400e+02 9.840027e+00
+7 1413     -1.634200e+02 1.200600e+02
+10 1413     -1.759100e+02 1.602600e+02
+15 1413     -1.281500e+02 1.586700e+02
+0 1414     1.859800e+02 6.128003e+01
+1 1414     3.623101e+02 3.476001e+01
+6 1414     1.434200e+02 1.437100e+02
+10 1414     1.159400e+02 2.312600e+02
+12 1414     1.709900e+02 1.922900e+02
+13 1414     5.260699e+02 -1.548900e+02
+15 1414     2.104500e+02 2.466500e+02
+0 1415     3.045900e+02 9.517001e+01
+1 1415     5.052700e+02 3.073999e+01
+15 1415     3.725100e+02 3.096000e+02
+0 1416     -3.426001e+01 -1.593000e+02
+1 1416     8.035999e+01 -1.151300e+02
+7 1416     -9.142999e+01 -5.264001e+01
+15 1416     -6.003998e+01 -8.423999e+01
+0 1417     2.159700e+02 -8.331000e+01
+1 1417     3.472200e+02 -1.188800e+02
+2 1417     3.902600e+02 -1.427002e+01
+6 1417     2.250600e+02 -6.640015e+00
+7 1417     1.423300e+02 6.641998e+01
+8 1417     3.517300e+02 -6.073999e+01
+10 1417     1.651200e+02 6.670001e+01
+12 1417     2.495800e+02 3.592999e+01
+13 1417     5.707800e+02 -2.770000e+02
+15 1417     2.703300e+02 5.295001e+01
+0 1418     6.380200e+02 -8.403003e+01
+1 1418     8.425900e+02 -2.710600e+02
+2 1418     6.080601e+02 -9.304999e+01
+3 1418     4.796801e+02 -3.965900e+02
+8 1418     5.568900e+02 -1.071300e+02
+10 1418     6.541700e+02 1.114600e+02
+12 1418     6.042500e+02 6.621002e+01
+13 1418     8.730100e+02 -2.714700e+02
+15 1418     8.708101e+02 1.074100e+02
+0 1419     2.799500e+02 -2.525000e+02
+1 1419     3.622800e+02 -3.079900e+02
+0 1420     -1.984500e+02 -4.523400e+02
+1 1420     -1.494200e+02 -3.434900e+02
+6 1420     -1.252100e+02 -6.191200e+02
+15 1420     -2.395900e+02 -5.016300e+02
+0 1421     6.409600e+02 -2.376900e+02
+1 1421     7.807300e+02 -4.299100e+02
+7 1421     5.367600e+02 -3.194000e+01
+0 1422     3.131600e+02 5.610999e+01
+1 1422     4.994399e+02 -1.137000e+01
+7 1422     2.051400e+02 2.125000e+02
+10 1422     2.642200e+02 2.384100e+02
+15 1422     3.891100e+02 2.562300e+02
+0 1423     2.955601e+02 -2.945100e+02
+1 1423     3.720400e+02 -3.567700e+02
+15 1423     4.097700e+02 -2.238700e+02
+0 1424     6.440400e+02 -2.656900e+02
+1 1424     7.728300e+02 -4.602200e+02
+7 1424     5.450200e+02 -5.642999e+01
+10 1424     6.760400e+02 -9.728998e+01
+12 1424     6.947800e+02 -1.037900e+02
+0 1425     6.004600e+02 -4.013100e+02
+1 1425     6.647300e+02 -5.791899e+02
+7 1425     5.383101e+02 -1.856300e+02
+12 1425     7.181300e+02 -2.458300e+02
+15 1425     8.504200e+02 -3.330400e+02
+0 1426     2.919800e+02 1.056700e+02
+1 1426     4.949700e+02 4.531000e+01
+15 1426     3.533600e+02 3.229900e+02
+0 1427     2.629800e+02 -2.766500e+02
+1 1427     3.389500e+02 -3.265200e+02
+6 1427     3.271200e+02 -2.117800e+02
+7 1427     2.151300e+02 -1.185800e+02
+10 1427     2.379900e+02 -1.500600e+02
+12 1427     3.517800e+02 -1.807000e+02
+13 1427     6.308900e+02 -4.505500e+02
+15 1427     3.601100e+02 -2.043500e+02
+0 1428     -2.116800e+02 -4.980400e+02
+1 1428     -1.779100e+02 -3.800500e+02
+0 1429     2.357500e+02 1.133700e+02
+1 1429     4.347600e+02 7.096997e+01
+7 1429     1.236000e+02 2.591900e+02
+10 1429     1.677700e+02 2.976900e+02
+13 1429     5.513400e+02 -1.096000e+02
+15 1429     2.734800e+02 3.249600e+02
+0 1430     4.141899e+02 -5.521997e+01
+1 1430     5.765601e+02 -1.584500e+02
+0 1431     2.993199e+02 -2.383000e+02
+1 1431     3.862500e+02 -3.002300e+02
+15 1431     4.058800e+02 -1.470900e+02
+0 1432     2.993199e+02 -2.383000e+02
+1 1432     3.862500e+02 -3.002300e+02
+15 1432     4.058800e+02 -1.470900e+02
+0 1433     2.897900e+02 -2.919000e+02
+1 1433     3.654900e+02 -3.519900e+02
+7 1433     2.412000e+02 -1.301200e+02
+10 1433     2.708900e+02 -1.641800e+02
+15 1433     4.012000e+02 -2.210500e+02
+0 1434     2.887500e+02 -3.011700e+02
+1 1434     3.626000e+02 -3.607900e+02
+10 1434     2.704399e+02 -1.754000e+02
+15 1434     4.011000e+02 -2.336100e+02
+0 1435     6.289200e+02 -2.264000e+02
+1 1435     7.716700e+02 -4.136500e+02
+0 1436     1.228900e+02 -5.840997e+01
+1 1436     2.603600e+02 -6.446002e+01
+2 1436     3.018300e+02 1.070007e+00
+7 1436     4.906000e+01 7.746997e+01
+8 1436     2.765700e+02 -4.876001e+01
+10 1436     5.447998e+01 8.640997e+01
+15 1436     1.389100e+02 7.432001e+01
+0 1437     1.228900e+02 -5.840997e+01
+1 1437     2.603600e+02 -6.446002e+01
+0 1438     3.646200e+02 4.431100e+02
+1 1438     7.591801e+02 3.554400e+02
+5 1438     7.740300e+02 -2.007400e+02
+14 1438     6.765500e+02 -2.776200e+02
+0 1439     -4.594900e+02 3.659700e+02
+1 1439     -1.140000e+02 4.894700e+02
+7 1439     -6.733600e+02 3.766800e+02
+11 1439     -2.613200e+02 -3.830300e+02
+15 1439     -7.060500e+02 5.787700e+02
+0 1440     4.780500e+02 2.870700e+02
+1 1440     8.064000e+02 1.656700e+02
+7 1440     2.801600e+02 4.269100e+02
+10 1440     4.370699e+02 5.299800e+02
+0 1441     4.796899e+02 2.740500e+02
+1 1441     8.033300e+02 1.504700e+02
+10 1441     4.398000e+02 5.126900e+02
+0 1442     9.452002e+01 4.871600e+02
+1 1442     4.743700e+02 4.727400e+02
+0 1443     -1.437500e+02 5.340300e+02
+1 1443     2.369700e+02 5.787300e+02
+2 1443     -4.292600e+02 2.996100e+02
+11 1443     1.915997e+01 -2.382700e+02
+0 1444     2.382700e+02 4.237100e+02
+1 1444     6.121200e+02 3.685700e+02
+0 1445     7.346000e+02 -3.049600e+02
+1 1445     8.614800e+02 -5.371899e+02
+7 1445     6.339500e+02 -7.679999e+01
+0 1446     5.424700e+02 1.423000e+02
+1 1446     8.140900e+02 -2.630005e+00
+2 1446     4.374600e+02 9.320001e+01
+0 1447     1.079000e+02 4.044600e+02
+1 1447     4.662300e+02 3.839900e+02
+9 1447     -3.023600e+02 1.988900e+02
+0 1448     3.324200e+02 4.924100e+02
+1 1448     7.370200e+02 4.169200e+02
+3 1448     -1.416400e+02 -7.702002e+01
+4 1448     -1.128003e+01 -5.787100e+02
+6 1448     -1.199400e+02 5.801900e+02
+8 1448     8.342999e+01 2.008600e+02
+11 1448     4.503400e+02 -2.540400e+02
+12 1448     4.354999e+01 5.452800e+02
+0 1449     1.534800e+02 5.590200e+02
+1 1449     5.562900e+02 5.324800e+02
+2 1449     -1.585700e+02 3.261100e+02
+6 1449     -3.216700e+02 6.279200e+02
+12 1449     -1.524200e+02 5.976100e+02
+14 1449     4.596100e+02 -1.694000e+02
+0 1450     -4.484100e+02 3.669000e+01
+1 1450     -2.007000e+02 1.781500e+02
+8 1450     -4.372900e+02 -2.226100e+02
+10 1450     -6.207900e+02 1.406500e+02
+13 1450     -1.246100e+02 -2.485900e+02
+15 1450     -6.376600e+02 1.243500e+02
+0 1451     -1.373400e+02 3.369300e+02
+1 1451     1.959700e+02 3.808800e+02
+9 1451     -4.934100e+02 1.115300e+02
+11 1451     2.723999e+01 -4.108800e+02
+0 1452     3.009399e+02 5.769700e+02
+1 1452     7.259800e+02 5.150200e+02
+2 1452     -3.420001e+01 3.450500e+02
+9 1452     -1.835000e+02 3.732100e+02
+13 1452     4.251400e+02 2.534600e+02
+14 1452     6.006400e+02 -1.432300e+02
+0 1453     3.326001e+01 5.712500e+02
+1 1453     4.303600e+02 5.744200e+02
+0 1454     -3.087700e+02 4.152400e+02
+1 1454     4.398999e+01 5.008400e+02
+2 1454     -5.900400e+02 1.571300e+02
+13 1454     -5.467999e+01 8.289999e+01
+0 1455     -2.257000e+02 -5.281500e+02
+1 1455     -2.007500e+02 -4.026000e+02
+4 1455     -6.445400e+02 -2.081200e+02
+6 1455     -1.044800e+02 -7.137200e+02
+0 1456     2.636300e+02 -1.106000e+02
+1 1456     3.904399e+02 -1.610300e+02
+7 1456     1.904500e+02 4.627002e+01
+10 1456     2.228500e+02 4.103998e+01
+13 1456     6.106500e+02 -2.985300e+02
+15 1456     3.395800e+02 2.210999e+01
+0 1457     -1.260600e+02 -2.896997e+01
+1 1457     4.176001e+01 3.484003e+01
+2 1457     -1.852002e+01 -7.578998e+01
+3 1457     -1.004500e+02 -3.887100e+02
+4 1457     -2.774400e+02 -3.099600e+02
+6 1457     -2.032000e+02 -7.347998e+01
+7 1457     -2.156400e+02 5.656000e+01
+8 1457     1.528003e+01 -1.046800e+02
+9 1457     -1.210400e+02 1.984998e+01
+10 1457     -2.366900e+02 9.412000e+01
+12 1457     -1.840300e+02 -1.478003e+01
+13 1457     2.477900e+02 -2.619800e+02
+15 1457     -1.989500e+02 8.022000e+01
+0 1458     -1.301400e+02 -3.666998e+01
+1 1458     3.644000e+01 2.884998e+01
+4 1458     -2.823700e+02 -3.059300e+02
+7 1458     -2.192700e+02 4.709003e+01
+9 1458     -1.250700e+02 7.679993e+00
+10 1458     -2.406300e+02 8.413000e+01
+15 1458     -2.033400e+02 6.842999e+01
+0 1459     -3.008500e+02 4.894800e+02
+1 1459     6.883002e+01 5.716200e+02
+2 1459     -5.833900e+02 2.485000e+02
+5 1459     1.104700e+02 -1.609100e+02
+7 1459     -5.267500e+02 5.259000e+02
+8 1459     -3.991800e+02 1.835900e+02
+12 1459     -6.391000e+02 4.545300e+02
+0 1460     -3.021000e+02 3.267300e+02
+1 1460     2.965997e+01 4.130000e+02
+5 1460     9.240002e+01 -3.362600e+02
+7 1460     -5.050500e+02 3.536700e+02
+15 1460     -4.779500e+02 5.438800e+02
+0 1461     5.703600e+02 3.279999e+01
+1 1461     8.086400e+02 -1.264500e+02
+6 1461     4.094600e+02 1.586400e+02
+7 1461     4.171899e+02 2.051600e+02
+10 1461     5.652600e+02 2.400000e+02
+12 1461     4.944900e+02 1.691200e+02
+13 1461     7.870601e+02 -1.742400e+02
+15 1461     7.619000e+02 2.599000e+02
+0 1462     5.755900e+02 2.723999e+01
+1 1462     8.122900e+02 -1.336700e+02
+6 1462     4.171400e+02 1.554700e+02
+7 1462     4.229399e+02 2.005800e+02
+10 1462     5.717300e+02 2.337200e+02
+13 1462     7.929399e+02 -1.783900e+02
+15 1462     7.697800e+02 2.530300e+02
+0 1463     6.118500e+02 1.180600e+02
+1 1463     8.788101e+02 -4.928998e+01
+6 1463     4.392200e+02 2.711500e+02
+7 1463     4.471400e+02 2.956000e+02
+8 1463     4.887000e+02 5.589001e+01
+9 1463     3.089800e+02 1.861500e+02
+10 1463     6.081400e+02 3.435700e+02
+12 1463     5.229000e+02 2.808000e+02
+13 1463     8.200500e+02 -9.227002e+01
+15 1463     8.106000e+02 3.852800e+02
+0 1464     2.097900e+02 -1.613800e+02
+1 1464     3.152000e+02 -1.938100e+02
+7 1464     1.510900e+02 -1.019000e+01
+13 1464     5.794000e+02 -3.452000e+02
+15 1464     2.712400e+02 -5.367999e+01
+0 1465     5.959399e+02 1.239001e+01
+1 1465     8.288700e+02 -1.558800e+02
+6 1465     4.472900e+02 1.475300e+02
+7 1465     4.458199e+02 1.902700e+02
+15 1465     8.004700e+02 2.351300e+02
+0 1466     5.924000e+02 -1.709998e+01
+1 1466     8.159800e+02 -1.859600e+02
+6 1466     4.500900e+02 1.117700e+02
+7 1466     4.457200e+02 1.609700e+02
+10 1466     5.954100e+02 1.841100e+02
+12 1466     5.331000e+02 1.225100e+02
+13 1466     8.160900e+02 -2.164300e+02
+15 1466     7.987100e+02 1.937700e+02
+0 1467     -2.487200e+02 3.923800e+02
+1 1467     9.778003e+01 4.641800e+02
+7 1467     -4.606000e+02 4.290100e+02
+13 1467     -6.750000e+00 6.572998e+01
+14 1467     6.912000e+01 -3.542500e+02
+0 1468     6.492600e+02 -9.402002e+01
+1 1468     8.516600e+02 -2.860400e+02
+2 1468     6.250900e+02 -9.690002e+01
+8 1468     5.705200e+02 -1.106200e+02
+0 1469     6.684500e+02 -6.559003e+01
+1 1469     8.807400e+02 -2.620900e+02
+2 1469     6.356600e+02 -5.552002e+01
+0 1470     -2.112600e+02 4.081500e+02
+1 1470     1.384700e+02 4.702700e+02
+7 1470     -4.241100e+02 4.499100e+02
+10 1470     -3.891900e+02 6.073800e+02
+12 1470     -5.218300e+02 3.669500e+02
+0 1471     -3.508700e+02 3.998600e+02
+1 1471     -8.800049e-01 4.957700e+02
+0 1472     -6.540300e+02 3.990300e+02
+1 1472     -2.671800e+02 5.643600e+02
+0 1473     -2.741800e+02 3.489100e+02
+1 1473     6.254999e+01 4.278900e+02
+8 1473     -3.716000e+02 4.542001e+01
+11 1473     -9.759003e+01 -4.001400e+02
+0 1474     -1.286400e+02 4.184100e+02
+1 1474     2.241801e+02 4.589400e+02
+2 1474     -4.082300e+02 1.621700e+02
+8 1474     -2.556600e+02 1.183900e+02
+0 1475     5.460022e+00 4.512000e+02
+1 1475     3.707400e+02 4.582400e+02
+2 1475     -2.824900e+02 2.033600e+02
+6 1475     -4.636600e+02 4.585900e+02
+7 1475     -2.152200e+02 5.182700e+02
+14 1475     3.187400e+02 -2.866800e+02
+0 1476     5.876001e+01 -1.161300e+02
+1 1476     1.822700e+02 -1.017900e+02
+3 1476     1.631700e+02 -3.863900e+02
+10 1476     -1.313000e+01 1.290997e+01
+13 1476     4.386100e+02 -3.180300e+02
+0 1477     -1.744100e+02 4.408500e+02
+1 1477     1.834301e+02 4.933400e+02
+2 1477     -4.541600e+02 1.894200e+02
+7 1477     -3.915400e+02 4.881900e+02
+0 1478     3.501801e+02 4.694700e+02
+1 1478     7.507200e+02 3.874700e+02
+2 1478     2.158002e+01 2.316100e+02
+3 1478     -1.242900e+02 -1.000400e+02
+5 1478     7.566100e+02 -1.728900e+02
+6 1478     -9.645001e+01 5.549800e+02
+7 1478     1.104800e+02 5.725800e+02
+9 1478     -1.324300e+02 2.757600e+02
+12 1478     6.601001e+01 5.217300e+02
+0 1479     1.890300e+02 5.320400e+02
+1 1479     5.882400e+02 4.950800e+02
+2 1479     -1.247500e+02 2.971400e+02
+5 1479     5.907100e+02 -1.117100e+02
+12 1479     -1.105600e+02 5.712600e+02
+0 1480     3.501801e+02 4.694700e+02
+1 1480     7.507200e+02 3.874700e+02
+0 1481     3.468400e+02 4.885300e+02
+1 1481     7.524900e+02 4.086400e+02
+5 1481     7.516000e+02 -1.523500e+02
+6 1481     -1.040900e+02 5.777700e+02
+12 1481     5.860999e+01 5.430100e+02
+14 1481     6.527900e+02 -2.313500e+02
+0 1482     -1.453003e+01 5.276100e+02
+1 1482     3.690699e+02 5.409700e+02
+2 1482     -3.069400e+02 2.915400e+02
+6 1482     -5.003500e+02 5.546900e+02
+12 1482     -3.244900e+02 5.390300e+02
+0 1483     -1.261000e+02 4.587000e+02
+1 1483     2.368500e+02 4.990100e+02
+8 1483     -2.557600e+02 1.573200e+02
+0 1484     2.248700e+02 3.568300e+02
+1 1484     5.722900e+02 3.044600e+02
+2 1484     -4.556000e+01 1.257900e+02
+7 1484     1.292999e+01 4.509100e+02
+8 1484     3.813000e+01 9.217999e+01
+9 1484     -1.826900e+02 1.824300e+02
+11 1484     3.610800e+02 -3.840600e+02
+13 1484     3.849000e+02 6.259003e+01
+14 1484     5.566700e+02 -3.765300e+02
+0 1485     3.370800e+02 4.563200e+02
+1 1485     7.315601e+02 3.766700e+02
+2 1485     1.215997e+01 2.175600e+02
+5 1485     7.429700e+02 -1.876800e+02
+6 1485     -1.078900e+02 5.358800e+02
+7 1485     1.001200e+02 5.579100e+02
+8 1485     9.059998e+01 1.696700e+02
+9 1485     -1.398200e+02 2.630400e+02
+12 1485     5.471997e+01 5.053200e+02
+13 1485     4.587100e+02 1.540900e+02
+14 1485     6.459500e+02 -2.656200e+02
+0 1486     -9.206000e+01 -1.545200e+02
+1 1486     2.722998e+01 -9.320001e+01
+3 1486     3.384003e+01 -4.693900e+02
+7 1486     -1.504200e+02 -5.797998e+01
+15 1486     -1.384100e+02 -8.475000e+01
+0 1487     -1.111100e+02 7.931000e+01
+1 1487     9.671997e+01 1.337000e+02
+4 1487     -2.114200e+02 -3.161400e+02
+5 1487     4.526801e+02 -5.926600e+02
+6 1487     -2.601500e+02 4.233002e+01
+7 1487     -2.275000e+02 1.619000e+02
+8 1487     -2.538000e+01 -3.395001e+01
+9 1487     -1.801800e+02 8.213000e+01
+10 1487     -2.310800e+02 2.224300e+02
+12 1487     -2.175000e+02 9.757001e+01
+13 1487     2.315400e+02 -1.730000e+02
+15 1487     -1.915300e+02 2.295100e+02
+0 1488     -1.432300e+02 2.879300e+02
+1 1488     1.747800e+02 3.346700e+02
+13 1488     8.309003e+01 -2.090002e+01
+14 1488     1.765500e+02 -4.687900e+02
+0 1489     1.071000e+02 2.950700e+02
+1 1489     4.263900e+02 2.752600e+02
+2 1489     -1.271500e+02 6.312000e+01
+4 1489     -1.143400e+02 -4.217400e+02
+6 1489     -2.779300e+02 2.928700e+02
+9 1489     -2.473000e+02 1.257500e+02
+15 1489     9.103003e+01 5.555300e+02
+0 1490     2.308800e+02 3.663200e+02
+1 1490     5.827100e+02 3.126200e+02
+7 1490     1.628998e+01 4.600900e+02
+9 1490     -1.835000e+02 1.874700e+02
+14 1490     5.585500e+02 -3.677600e+02
+0 1491     -6.870001e+01 -1.079900e+02
+1 1491     6.592999e+01 -5.627002e+01
+2 1491     1.034300e+02 -1.195000e+02
+3 1491     2.313000e+01 -4.268500e+02
+4 1491     -3.389500e+02 -3.548300e+02
+6 1491     -8.178000e+01 -1.345100e+02
+7 1491     -1.376800e+02 -8.770020e+00
+10 1491     -1.615500e+02 8.880005e+00
+12 1491     -7.571002e+01 -7.952002e+01
+13 1491     3.199399e+02 -3.232800e+02
+15 1491     -1.123900e+02 -1.882001e+01
+0 1492     2.390699e+02 4.596800e+02
+1 1492     6.232700e+02 4.057200e+02
+6 1492     -2.107600e+02 5.187800e+02
+7 1492     8.130005e+00 5.508500e+02
+9 1492     -2.108600e+02 2.605900e+02
+11 1492     3.686000e+02 -2.894900e+02
+0 1493     2.322998e+01 -5.966998e+01
+1 1493     1.652700e+02 -3.595001e+01
+15 1493     4.489990e+00 5.928998e+01
+0 1494     -1.416200e+02 2.954500e+02
+1 1494     1.790400e+02 3.414600e+02
+7 1494     -3.367400e+02 3.419500e+02
+10 1494     -2.913000e+02 4.763200e+02
+13 1494     8.282001e+01 -1.403998e+01
+14 1494     1.765601e+02 -4.598400e+02
+0 1495     1.881000e+02 -8.642999e+01
+1 1495     3.179000e+02 -1.124800e+02
+2 1495     3.689800e+02 -1.900000e+01
+6 1495     1.998100e+02 -1.644000e+01
+0 1496     -3.546002e+01 -7.402002e+01
+1 1496     1.077900e+02 -3.301001e+01
+2 1496     1.264800e+02 -7.509003e+01
+3 1496     4.314001e+01 -3.829600e+02
+6 1496     -5.703003e+01 -8.378003e+01
+7 1496     -1.103900e+02 3.117999e+01
+8 1496     1.305100e+02 -1.078200e+02
+10 1496     -1.261300e+02 5.181000e+01
+12 1496     -4.675000e+01 -2.960999e+01
+13 1496     3.461700e+02 -2.907500e+02
+15 1496     -7.178998e+01 3.191998e+01
+0 1497     1.285100e+02 -1.042600e+02
+1 1497     2.531300e+02 -1.115800e+02
+3 1497     2.252200e+02 -3.529300e+02
+8 1497     2.901700e+02 -9.010999e+01
+0 1498     -5.092999e+01 -8.328003e+01
+1 1498     8.928003e+01 -3.712000e+01
+3 1498     3.320001e+01 -3.926700e+02
+6 1498     -6.809998e+01 -9.787000e+01
+7 1498     -1.234300e+02 2.014001e+01
+12 1498     -6.047998e+01 -4.284998e+01
+15 1498     -9.178003e+01 1.752002e+01
+0 1499     1.596100e+02 6.104999e+01
+1 1499     3.347400e+02 4.250000e+01
+6 1499     1.183100e+02 1.364600e+02
+15 1499     1.740000e+02 2.427400e+02
+0 1500     2.804200e+02 -2.851600e+02
+1 1500     3.569500e+02 -3.416500e+02
+2 1500     5.015100e+02 -2.365700e+02
+10 1500     2.594800e+02 -1.575900e+02
+15 1500     3.871300e+02 -2.129600e+02
+0 1501     6.468900e+02 6.530029e+00
+1 1501     8.805699e+02 -1.784300e+02
+6 1501     5.111600e+02 1.604600e+02
+7 1501     4.963000e+02 1.950000e+02
+10 1501     6.572200e+02 2.177300e+02
+15 1501     8.722700e+02 2.344800e+02
+0 1502     -1.376600e+02 9.789999e+01
+1 1502     8.312000e+01 1.573000e+02
+2 1502     -1.431600e+02 -1.000000e+01
+3 1502     -2.358400e+02 -3.296100e+02
+5 1502     4.018101e+02 -5.740699e+02
+6 1502     -3.254200e+02 4.597998e+01
+7 1502     -2.631200e+02 1.722700e+02
+9 1502     -2.361800e+02 6.791998e+01
+10 1502     -2.643300e+02 2.415100e+02
+13 1502     1.933800e+02 -1.619600e+02
+15 1502     -2.283300e+02 2.509400e+02
+0 1503     5.860200e+02 3.084003e+01
+1 1503     8.242800e+02 -1.333000e+02
+7 1503     4.328300e+02 2.064900e+02
+0 1504     5.530000e+02 1.283300e+02
+1 1504     8.206500e+02 -2.052002e+01
+2 1504     4.530800e+02 8.410999e+01
+7 1504     3.871400e+02 2.943400e+02
+9 1504     2.501700e+02 1.678000e+02
+10 1504     5.375000e+02 3.494900e+02
+13 1504     7.581300e+02 -9.115997e+01
+15 1504     7.266500e+02 3.907400e+02
+0 1505     5.398900e+02 9.248001e+01
+1 1505     7.959700e+02 -5.442999e+01
+10 1505     5.247000e+02 3.056900e+02
+13 1505     7.484301e+02 -1.248000e+02
+15 1505     7.125400e+02 3.380800e+02
+0 1506     1.479301e+02 -1.095200e+02
+1 1506     2.711000e+02 -1.228700e+02
+6 1506     1.663000e+02 -5.540002e+01
+15 1506     1.802900e+02 8.440002e+00
+0 1507     2.323900e+02 -3.687000e+01
+1 1507     3.783199e+02 -7.740002e+01
+7 1507     1.504900e+02 1.149400e+02
+10 1507     1.791200e+02 1.223000e+02
+15 1507     2.864100e+02 1.184300e+02
+0 1508     1.758199e+02 -9.300000e+01
+1 1508     3.034700e+02 -1.152800e+02
+7 1508     1.055700e+02 5.165997e+01
+15 1508     2.160500e+02 3.458002e+01
+0 1509     2.927700e+02 -1.174300e+02
+1 1509     4.175699e+02 -1.775100e+02
+7 1509     2.192900e+02 4.441998e+01
+13 1509     6.378101e+02 -3.023800e+02
+15 1509     3.805200e+02 1.679999e+01
+0 1510     2.768800e+02 -1.020300e+02
+1 1510     4.072800e+02 -1.574900e+02
+6 1510     2.819300e+02 -1.334003e+01
+7 1510     2.004200e+02 5.579999e+01
+10 1510     2.368700e+02 5.177002e+01
+15 1510     3.568800e+02 3.571002e+01
+0 1511     -6.879999e+01 -1.548100e+02
+1 1511     4.928998e+01 -1.006300e+02
+6 1511     -5.587000e+01 -1.840200e+02
+7 1511     -1.273200e+02 -5.409003e+01
+10 1511     -1.565800e+02 -4.575000e+01
+15 1511     -1.068600e+02 -8.213000e+01
+0 1512     4.131801e+02 -9.753003e+01
+1 1512     5.569100e+02 -1.994300e+02
+6 1512     3.954100e+02 2.238000e+01
+7 1512     3.230100e+02 7.801001e+01
+10 1512     3.944800e+02 7.156000e+01
+12 1512     4.423600e+02 5.272998e+01
+15 1512     5.475900e+02 5.989001e+01
+0 1513     1.985800e+02 -1.432100e+02
+1 1513     3.100100e+02 -1.719600e+02
+2 1513     4.023700e+02 -7.209998e+01
+4 1513     -4.106100e+02 -5.745900e+02
+7 1513     1.367000e+02 5.919983e+00
+10 1513     1.509500e+02 -3.789978e+00
+12 1513     2.520699e+02 -3.359003e+01
+13 1513     5.665900e+02 -3.301400e+02
+15 1513     2.535200e+02 -3.048999e+01
+0 1514     2.181500e+02 -1.259100e+02
+1 1514     3.369700e+02 -1.616200e+02
+10 1514     1.718300e+02 1.817999e+01
+15 1514     2.787300e+02 -4.359985e+00
+0 1515     1.149400e+02 -1.358900e+02
+1 1515     2.297200e+02 -1.381500e+02
+2 1515     3.204200e+02 -8.410999e+01
+7 1515     5.376001e+01 -1.510010e+00
+10 1515     5.359998e+01 -4.260010e+00
+13 1515     4.923101e+02 -3.302600e+02
+15 1515     1.387400e+02 -3.148999e+01
+0 1516     -1.678800e+02 -6.285999e+01
+1 1516     -8.780029e+00 1.566998e+01
+3 1516     -1.266000e+02 -4.325699e+02
+4 1516     -2.947700e+02 -2.802400e+02
+6 1516     -2.342800e+02 -1.280200e+02
+8 1516     -1.051001e+01 -1.414700e+02
+13 1516     2.163900e+02 -2.955700e+02
+15 1516     -2.511500e+02 2.881000e+01
+0 1517     3.440997e+01 -2.502100e+02
+1 1517     1.175400e+02 -2.239200e+02
+2 1517     2.850100e+02 -2.291000e+02
+3 1517     2.049399e+02 -5.272000e+02
+6 1517     9.889001e+01 -2.523600e+02
+7 1517     -5.489990e+00 -1.291500e+02
+8 1517     2.543300e+02 -2.394200e+02
+9 1517     1.408300e+02 -9.203998e+01
+10 1517     -2.635999e+01 -1.437600e+02
+12 1517     1.000500e+02 -2.080700e+02
+13 1517     4.357800e+02 -4.396200e+02
+15 1517     4.533002e+01 -1.964700e+02
+0 1518     -2.744000e+01 -7.517999e+01
+1 1518     1.146800e+02 -3.633002e+01
+6 1518     -4.685999e+01 -8.233002e+01
+7 1518     -1.021200e+02 3.156000e+01
+10 1518     -1.171800e+02 5.098999e+01
+12 1518     -3.570001e+01 -2.859003e+01
+13 1518     3.520000e+02 -2.912900e+02
+15 1518     -6.132001e+01 3.156000e+01
+0 1519     2.191400e+02 -1.156600e+02
+1 1519     3.420000e+02 -1.522200e+02
+3 1519     2.999900e+02 -3.517800e+02
+7 1519     1.498199e+02 3.476001e+01
+10 1519     1.716800e+02 3.033002e+01
+15 1519     2.788199e+02 9.570007e+00
+0 1520     5.469700e+02 1.663100e+02
+1 1520     8.260400e+02 2.146997e+01
+3 1520     2.981801e+02 -1.958400e+02
+7 1520     3.753199e+02 3.300800e+02
+10 1520     5.274301e+02 3.930200e+02
+15 1520     7.137800e+02 4.428500e+02
+0 1521     1.990400e+02 -2.086400e+02
+1 1521     2.891500e+02 -2.362600e+02
+7 1521     1.495100e+02 -5.782001e+01
+13 1521     5.780699e+02 -3.876300e+02
+15 1521     2.625699e+02 -1.189700e+02
+0 1522     -8.770001e+01 -1.222400e+02
+1 1522     4.457001e+01 -6.458002e+01
+7 1522     -1.544900e+02 -2.647998e+01
+15 1522     -1.355700e+02 -4.022998e+01
+0 1523     1.461300e+02 -1.473500e+02
+1 1523     2.556899e+02 -1.590400e+02
+7 1523     8.748999e+01 -6.719971e+00
+10 1523     9.096997e+01 -1.390002e+01
+15 1523     1.823101e+02 -4.287000e+01
+0 1524     1.401200e+02 -2.656500e+02
+1 1524     2.142300e+02 -2.731500e+02
+4 1524     -4.998800e+02 -5.249600e+02
+6 1524     2.177900e+02 -2.309000e+02
+7 1524     1.015300e+02 -1.252300e+02
+9 1524     2.318800e+02 -7.591998e+01
+10 1524     9.662000e+01 -1.507500e+02
+12 1524     2.269100e+02 -1.932100e+02
+15 1524     1.903600e+02 -2.041900e+02
+0 1525     2.913900e+02 -1.721800e+02
+1 1525     3.979100e+02 -2.318900e+02
+10 1525     2.605699e+02 -2.734003e+01
+0 1526     1.285100e+02 -1.042600e+02
+1 1526     2.531300e+02 -1.115800e+02
+3 1526     2.252200e+02 -3.529300e+02
+6 1526     1.450600e+02 -5.521997e+01
+8 1526     2.901700e+02 -9.010999e+01
+0 1527     1.832001e+01 -9.403998e+01
+1 1527     1.503000e+02 -6.716998e+01
+3 1527     1.128500e+02 -3.802000e+02
+7 1527     -5.059998e+01 2.173999e+01
+10 1527     -6.107001e+01 3.353998e+01
+13 1527     3.999700e+02 -3.031900e+02
+15 1527     2.739990e+00 1.209998e+01
+0 1528     -5.870001e+01 -6.023999e+01
+1 1528     8.991998e+01 -1.338000e+01
+7 1528     -1.373500e+02 3.994000e+01
+8 1528     1.035100e+02 -1.042800e+02
+13 1528     3.209100e+02 -2.820200e+02
+15 1528     -1.057200e+02 4.698999e+01
+0 1529     2.871997e+01 -7.631000e+01
+1 1529     1.654700e+02 -5.395001e+01
+7 1529     -4.260999e+01 4.189001e+01
+8 1529     1.959500e+02 -8.832001e+01
+10 1529     -5.263000e+01 5.546002e+01
+13 1529     4.076899e+02 -2.856100e+02
+15 1529     1.432001e+01 3.740002e+01
+0 1530     3.488000e+02 -3.338900e+02
+1 1530     4.149800e+02 -4.149200e+02
+2 1530     5.651300e+02 -2.901200e+02
+3 1530     4.715800e+02 -5.839301e+02
+8 1530     4.983199e+02 -2.863600e+02
+9 1530     3.677900e+02 -1.338400e+02
+12 1530     4.478000e+02 -2.350800e+02
+0 1531     4.594000e+01 -1.329400e+02
+1 1531     1.631300e+02 -1.135900e+02
+2 1531     2.545000e+02 -9.578998e+01
+3 1531     1.675300e+02 -3.985300e+02
+7 1531     -1.392999e+01 -1.006000e+01
+10 1531     -2.545001e+01 -8.630005e+00
+15 1531     4.437000e+01 -3.677002e+01
+0 1532     -5.309003e+01 -5.527002e+01
+1 1532     9.814001e+01 -1.038000e+01
+3 1532     7.409973e+00 -3.762700e+02
+6 1532     -8.957001e+01 -7.128003e+01
+7 1532     -1.337500e+02 4.547998e+01
+10 1532     -1.492800e+02 7.148999e+01
+12 1532     -7.696002e+01 -1.597998e+01
+13 1532     3.238199e+02 -2.765600e+02
+15 1532     -9.812000e+01 5.503998e+01
+0 1533     2.964001e+01 -1.329999e+01
+1 1533     1.832800e+02 7.979980e+00
+7 1533     -5.152002e+01 1.055900e+02
+0 1534     5.528000e+02 2.237900e+02
+1 1534     8.505800e+02 8.076999e+01
+3 1534     2.907700e+02 -1.372500e+02
+7 1534     3.744500e+02 3.870900e+02
+8 1534     4.120300e+02 1.216700e+02
+9 1534     2.267200e+02 2.484400e+02
+10 1534     5.299301e+02 4.620000e+02
+11 1534     6.844800e+02 -5.002900e+02
+15 1534     7.152200e+02 5.250300e+02
+0 1535     1.992000e+02 -3.950012e+00
+1 1535     3.536801e+02 -3.389001e+01
+2 1535     3.497700e+02 6.740997e+01
+3 1535     2.459100e+02 -2.407800e+02
+6 1535     1.849200e+02 7.783002e+01
+7 1535     1.139200e+02 1.433100e+02
+8 1535     3.200100e+02 7.119995e+00
+10 1535     1.381700e+02 1.572900e+02
+12 1535     2.094800e+02 1.249700e+02
+13 1535     5.484200e+02 -2.080700e+02
+15 1535     2.368900e+02 1.592200e+02
+0 1536     -3.940002e+01 -3.296997e+01
+1 1536     1.169800e+02 7.619995e+00
+2 1536     1.040500e+02 -3.397998e+01
+6 1536     -7.857001e+01 -3.812000e+01
+7 1536     -1.215000e+02 7.188000e+01
+10 1536     -1.351100e+02 9.913000e+01
+12 1536     -6.516998e+01 1.744000e+01
+15 1536     -8.264001e+01 8.706000e+01
+0 1537     2.170001e+01 5.349976e+00
+1 1537     1.829800e+02 2.789001e+01
+2 1537     1.683700e+02 3.539001e+01
+7 1537     -6.389001e+01 1.224600e+02
+13 1537     3.920601e+02 -2.148300e+02
+15 1537     -6.260010e+00 1.478300e+02
+0 1538     2.149800e+02 -5.028003e+01
+1 1538     3.559200e+02 -8.491998e+01
+6 1538     2.145200e+02 3.146997e+01
+7 1538     1.360000e+02 9.967999e+01
+8 1538     3.437300e+02 -2.988000e+01
+10 1538     1.600900e+02 1.049600e+02
+15 1538     2.638199e+02 9.792001e+01
+0 1539     5.599399e+02 2.244500e+02
+1 1539     8.583199e+02 7.985001e+01
+2 1539     4.361700e+02 1.856800e+02
+3 1539     2.982500e+02 -1.332400e+02
+7 1539     3.812300e+02 3.893300e+02
+11 1539     6.918900e+02 -5.006300e+02
+15 1539     7.250699e+02 5.274900e+02
+0 1540     5.981899e+02 1.463500e+02
+1 1540     8.736899e+02 -1.496997e+01
+2 1540     4.988800e+02 1.253700e+02
+6 1540     4.138000e+02 2.981900e+02
+7 1540     4.297400e+02 3.206000e+02
+8 1540     4.691600e+02 7.426001e+01
+9 1540     2.878400e+02 2.041700e+02
+15 1540     7.875699e+02 4.230200e+02
+0 1541     6.451400e+02 -3.159973e+00
+1 1541     8.759100e+02 -1.885400e+02
+2 1541     5.920699e+02 -3.450012e+00
+15 1541     8.711000e+02 2.208400e+02
+0 1542     6.510699e+02 -4.563000e+01
+1 1542     8.685400e+02 -2.354000e+02
+2 1542     6.112000e+02 -4.425000e+01
+3 1542     4.803700e+02 -3.487500e+02
+7 1542     5.072800e+02 1.456600e+02
+0 1543     2.248400e+02 3.482600e+02
+1 1543     5.689301e+02 2.960700e+02
+2 1543     -4.060999e+01 1.191800e+02
+6 1543     -1.751700e+02 3.840800e+02
+7 1543     1.417999e+01 4.422000e+02
+11 1543     3.620900e+02 -3.920400e+02
+14 1543     5.585400e+02 -3.869900e+02
+0 1544     1.643900e+02 -5.173500e+02
+1 1544     1.679100e+02 -5.271300e+02
+10 1544     1.505500e+02 -4.351300e+02
+0 1545     -3.920001e+01 -2.059900e+02
+1 1545     5.690997e+01 -1.574200e+02
+2 1545     2.057600e+02 -1.861200e+02
+3 1545     1.294700e+02 -4.864301e+02
+4 1545     -4.145400e+02 -3.824900e+02
+6 1545     1.373999e+01 -2.217700e+02
+8 1545     1.873400e+02 -2.047300e+02
+10 1545     -1.159400e+02 -1.017500e+02
+12 1545     6.969971e+00 -1.717800e+02
+15 1545     -6.112000e+01 -1.469600e+02
+0 1546     2.937000e+02 -1.533800e+02
+1 1546     4.076801e+02 -2.137700e+02
+6 1546     3.192200e+02 -6.365997e+01
+7 1546     2.261600e+02 8.409973e+00
+8 1546     4.245800e+02 -1.152800e+02
+10 1546     2.616400e+02 -5.130005e+00
+13 1546     6.431000e+02 -3.350100e+02
+15 1546     3.865800e+02 -3.256000e+01
+0 1547     -2.694000e+01 -6.789001e+01
+1 1547     1.179400e+02 -2.978998e+01
+3 1547     4.684003e+01 -3.749100e+02
+6 1547     -5.090002e+01 -7.253998e+01
+7 1547     -1.028100e+02 3.890997e+01
+8 1547     1.355800e+02 -1.007600e+02
+10 1547     -1.176500e+02 6.001001e+01
+12 1547     -3.890002e+01 -1.878998e+01
+13 1547     3.514100e+02 -2.847600e+02
+15 1547     -6.138000e+01 4.151001e+01
+0 1548     2.369000e+02 -2.104100e+02
+1 1548     3.260500e+02 -2.505800e+02
+2 1548     4.697100e+02 -1.289700e+02
+3 1548     3.729800e+02 -4.250400e+02
+7 1548     1.868199e+02 -5.345001e+01
+10 1548     2.015100e+02 -7.737000e+01
+15 1548     3.144200e+02 -1.171100e+02
+0 1549     -6.400000e+01 -3.469000e+01
+1 1549     9.621997e+01 1.119000e+01
+10 1549     -1.627900e+02 9.328998e+01
+13 1549     3.082800e+02 -2.604900e+02
+15 1549     -1.146200e+02 8.062000e+01
+0 1550     2.312600e+02 7.885999e+01
+1 1550     4.164700e+02 3.771997e+01
+6 1550     1.744700e+02 1.726100e+02
+12 1550     2.083600e+02 2.184200e+02
+13 1550     5.562700e+02 -1.368800e+02
+15 1550     2.709301e+02 2.772900e+02
+0 1551     1.883400e+02 7.246997e+01
+1 1551     3.684700e+02 4.503998e+01
+13 1551     5.252800e+02 -1.452100e+02
+15 1551     2.123700e+02 2.622400e+02
+0 1552     1.619500e+02 7.865997e+01
+1 1552     3.437300e+02 5.877002e+01
+2 1552     2.770699e+02 1.327900e+02
+4 1552     -2.393000e+02 -5.403600e+02
+6 1552     1.107000e+02 1.548300e+02
+8 1552     2.624100e+02 6.289999e+01
+9 1552     1.158900e+02 2.052700e+02
+10 1552     8.534003e+01 2.504700e+02
+12 1552     1.382400e+02 2.040500e+02
+13 1552     5.017600e+02 -1.412900e+02
+15 1552     1.750100e+02 2.669200e+02
+0 1553     9.979980e+00 1.234800e+02
+1 1553     2.132700e+02 1.458000e+02
+2 1553     8.996997e+01 1.254500e+02
+3 1553     -1.099854e-01 -1.932200e+02
+4 1553     -1.921700e+02 -4.170800e+02
+5 1553     6.216700e+02 -5.326000e+02
+6 1553     -8.798999e+01 1.514700e+02
+7 1553     -1.019000e+02 2.337400e+02
+8 1553     1.108400e+02 5.931000e+01
+12 1553     -6.034003e+01 2.054200e+02
+13 1553     3.564800e+02 -1.187600e+02
+15 1553     -3.617999e+01 3.071900e+02
+0 1554     2.192000e+02 4.312500e+02
+1 1554     5.933600e+02 3.821600e+02
+7 1554     -7.739990e+00 5.206500e+02
+11 1554     3.524301e+02 -3.159600e+02
+14 1554     5.298800e+02 -2.991600e+02
+0 1555     7.971002e+01 5.098200e+02
+1 1555     4.644000e+02 4.997000e+02
+7 1555     -1.505900e+02 5.864500e+02
+0 1556     5.476000e+02 5.669983e+00
+1 1556     7.767200e+02 -1.477700e+02
+7 1556     3.980900e+02 1.739600e+02
+0 1557     5.538900e+02 -2.020020e+00
+1 1557     7.809900e+02 -1.576700e+02
+7 1557     4.055601e+02 1.677700e+02
+10 1557     5.491400e+02 1.976000e+02
+13 1557     7.740200e+02 -2.083600e+02
+0 1558     -7.835200e+02 -4.747000e+02
+1 1558     -6.539200e+02 -1.837500e+02
+4 1558     -4.844500e+02 1.621800e+02
+0 1559     -1.329600e+02 3.421400e+02
+1 1559     2.017900e+02 3.848300e+02
+2 1559     -4.076000e+02 6.815997e+01
+5 1559     2.642200e+02 -3.211400e+02
+7 1559     -3.370600e+02 3.901200e+02
+9 1559     -4.902400e+02 1.180600e+02
+14 1559     1.807300e+02 -4.080500e+02
+0 1560     -1.351000e+02 2.810500e+02
+1 1560     1.793800e+02 3.260900e+02
+7 1560     -3.265100e+02 3.300000e+02
+11 1560     2.895001e+01 -4.635000e+02
+0 1561     -1.396900e+02 -1.045900e+02
+1 1561     1.760010e+00 -3.215997e+01
+7 1561     -2.121400e+02 -1.912000e+01
+15 1561     -2.085000e+02 -2.378998e+01
+0 1562     -1.020700e+02 2.902500e+02
+1 1562     2.156200e+02 3.263300e+02
+2 1562     -3.523400e+02 2.284003e+01
+7 1562     -2.964700e+02 3.432000e+02
+9 1562     -4.381700e+02 8.114999e+01
+10 1562     -2.444600e+02 4.747400e+02
+13 1562     1.190000e+02 -1.521002e+01
+14 1562     2.213600e+02 -4.633700e+02
+0 1563     6.582001e+01 3.704400e+02
+1 1563     4.128199e+02 3.605900e+02
+7 1563     -1.462100e+02 4.424100e+02
+0 1564     4.066500e+02 -5.597998e+01
+1 1564     5.679700e+02 -1.559700e+02
+7 1564     3.062500e+02 1.145800e+02
+10 1564     3.822200e+02 1.185600e+02
+15 1564     5.337700e+02 1.157500e+02
+0 1565     7.267200e+02 -3.495300e+02
+1 1565     8.329301e+02 -5.799399e+02
+7 1565     6.372300e+02 -1.177500e+02
+12 1565     8.159700e+02 -1.609200e+02
+0 1566     1.400300e+02 5.453998e+01
+1 1566     3.132500e+02 4.234003e+01
+6 1566     1.020700e+02 1.226600e+02
+7 1566     4.595001e+01 1.918500e+02
+13 1566     4.897000e+02 -1.631600e+02
+15 1566     1.483101e+02 2.315700e+02
+0 1567     2.125300e+02 -2.050200e+02
+1 1567     3.042000e+02 -2.374900e+02
+7 1567     1.614900e+02 -5.208002e+01
+10 1567     1.733100e+02 -7.317999e+01
+15 1567     2.808101e+02 -1.126600e+02
+0 1568     1.279999e+01 -1.310700e+02
+1 1568     1.318200e+02 -1.017500e+02
+7 1568     -4.765002e+01 -1.409003e+01
+15 1568     -5.200195e-01 -3.865002e+01
+0 1569     3.296700e+02 4.448300e+02
+1 1569     7.201899e+02 3.666700e+02
+6 1569     -1.129800e+02 5.199600e+02
+7 1569     9.446997e+01 5.460000e+02
+14 1569     6.398500e+02 -2.786300e+02
+0 1570     5.004999e+01 -1.349200e+02
+1 1570     1.661899e+02 -1.168600e+02
+7 1570     -9.549988e+00 -1.146997e+01
+15 1570     5.040002e+01 -3.921002e+01
+0 1571     5.114301e+02 2.656300e+02
+1 1571     8.342700e+02 1.335600e+02
+7 1571     3.157600e+02 4.118700e+02
+0 1572     1.783199e+02 4.612000e+01
+1 1572     3.486100e+02 2.207001e+01
+2 1572     3.096899e+02 1.094700e+02
+7 1572     8.458002e+01 1.885800e+02
+10 1572     1.086300e+02 2.131300e+02
+13 1572     5.229900e+02 -1.676000e+02
+15 1572     2.017400e+02 2.247800e+02
+0 1573     -1.304900e+02 3.320100e+02
+1 1573     2.015300e+02 3.739100e+02
+9 1573     -4.863200e+02 1.073500e+02
+11 1573     3.325000e+01 -4.160600e+02
+0 1574     -1.991500e+02 4.754000e+02
+1 1574     1.661200e+02 5.338700e+02
+7 1574     -4.211700e+02 5.216700e+02
+0 1575     -4.563000e+01 4.858700e+02
+1 1575     3.259301e+02 5.062000e+02
+7 1575     -2.698300e+02 5.487000e+02
+0 1576     4.422998e+01 -1.178100e+02
+1 1576     1.676801e+02 -9.878003e+01
+7 1576     -1.996002e+01 3.890015e+00
+10 1576     -2.977002e+01 9.320007e+00
+12 1576     6.746002e+01 -5.064001e+01
+0 1577     2.655400e+02 -2.946100e+02
+1 1577     3.385699e+02 -3.464000e+02
+7 1577     2.198600e+02 -1.365700e+02
+10 1577     2.430900e+02 -1.703400e+02
+13 1577     6.328700e+02 -4.689000e+02
+0 1578     -1.286600e+02 3.400000e+02
+1 1578     2.036000e+02 3.810200e+02
+2 1578     -4.031700e+02 6.522998e+01
+8 1578     -2.506900e+02 4.372000e+01
+9 1578     -4.861900e+02 1.157300e+02
+13 1578     8.828998e+01 2.500000e+01
+0 1579     5.072998e+01 -4.587000e+01
+1 1579     1.945200e+02 -3.053003e+01
+2 1579     2.231000e+02 -6.609985e+00
+3 1579     1.326100e+02 -3.137800e+02
+7 1579     -2.465997e+01 7.678998e+01
+10 1579     -2.971997e+01 9.265002e+01
+13 1579     4.260601e+02 -2.566500e+02
+15 1579     3.981000e+01 8.150000e+01
+0 1580     -7.340997e+01 -6.217999e+01
+1 1580     7.590997e+01 -1.070001e+01
+7 1580     -1.521000e+02 3.608002e+01
+10 1580     -1.720400e+02 6.134998e+01
+15 1580     -1.247200e+02 4.257001e+01
+0 1581     1.997600e+02 -2.460600e+02
+1 1581     2.780300e+02 -2.735700e+02
+2 1581     4.506500e+02 -1.715600e+02
+7 1581     1.577300e+02 -9.404999e+01
+8 1581     3.959100e+02 -1.940700e+02
+9 1581     2.736100e+02 -3.862000e+01
+12 1581     2.891500e+02 -1.492600e+02
+0 1582     1.874500e+02 5.700073e-01
+1 1582     3.432300e+02 -2.575000e+01
+7 1582     1.019700e+02 1.457600e+02
+13 1582     5.380699e+02 -2.052500e+02
+15 1582     2.197500e+02 1.638400e+02
+0 1583     -1.517700e+02 3.691800e+02
+1 1583     1.892200e+02 4.162900e+02
+2 1583     -4.275800e+02 1.016300e+02
+5 1583     2.471801e+02 -2.916000e+02
+7 1583     -3.594500e+02 4.158600e+02
+10 1583     -3.125600e+02 5.648100e+02
+14 1583     1.629399e+02 -3.787600e+02
+0 1584     2.517000e+02 4.643600e+02
+1 1584     6.383101e+02 4.078700e+02
+7 1584     1.864001e+01 5.576700e+02
+0 1585     3.297000e+02 -9.410999e+01
+1 1585     4.651100e+02 -1.670000e+02
+7 1585     2.479700e+02 7.150000e+01
+10 1585     2.971300e+02 6.653998e+01
+15 1585     4.292300e+02 5.328003e+01
+0 1586     -1.027700e+02 3.830800e+02
+1 1586     2.419200e+02 4.176200e+02
+5 1586     2.975300e+02 -2.759500e+02
+7 1586     -3.127300e+02 4.358400e+02
+0 1587     -1.805100e+02 5.046400e+02
+1 1587     1.924600e+02 5.580500e+02
+2 1587     -4.635700e+02 2.653000e+02
+7 1587     -4.062300e+02 5.541700e+02
+12 1587     -5.038600e+02 4.887900e+02
+0 1588     -2.153600e+02 4.951600e+02
+1 1588     1.553800e+02 5.569300e+02
+7 1588     -4.400300e+02 5.407800e+02
+0 1589     -2.348999e+01 1.365002e+01
+1 1589     1.448500e+02 4.844000e+01
+6 1589     -7.506000e+01 2.167999e+01
+7 1589     -1.137600e+02 1.212100e+02
+10 1589     -1.224200e+02 1.545400e+02
+13 1589     3.464000e+02 -2.131400e+02
+15 1589     -6.847998e+01 1.525600e+02
+0 1590     1.426100e+02 4.696800e+02
+1 1590     5.203101e+02 4.419400e+02
+7 1590     -8.520001e+01 5.516700e+02
+0 1591     -3.921997e+01 5.119400e+02
+1 1591     3.376899e+02 5.316800e+02
+7 1591     -2.674000e+02 5.764800e+02
+0 1592     2.308800e+02 3.663200e+02
+1 1592     5.827100e+02 3.126200e+02
+7 1592     1.628998e+01 4.600900e+02
+0 1593     -2.079500e+02 5.040800e+02
+1 1593     1.648500e+02 5.643700e+02
+3 1593     -6.169900e+02 -6.316998e+01
+5 1593     2.019600e+02 -1.461400e+02
+7 1593     -4.339300e+02 5.513800e+02
+11 1593     -3.672998e+01 -2.645800e+02
+0 1594     2.819800e+02 -2.878700e+02
+1 1594     3.576200e+02 -3.448600e+02
+7 1594     2.336700e+02 -1.267900e+02
+10 1594     2.613400e+02 -1.604500e+02
+15 1594     3.895800e+02 -2.165500e+02
+0 1595     7.330200e+02 -3.359400e+02
+1 1595     8.460000e+02 -5.682500e+02
+7 1595     6.392500e+02 -1.045900e+02
+0 1596     1.504500e+02 4.714700e+02
+1 1596     5.294600e+02 4.417900e+02
+7 1596     -7.791998e+01 5.544500e+02
+0 1597     2.155300e+02 1.581700e+02
+1 1597     4.352000e+02 1.205400e+02
+7 1597     9.051001e+01 2.958600e+02
+10 1597     1.405500e+02 3.475600e+02
+15 1597     2.421500e+02 3.838400e+02
+0 1598     4.930699e+02 2.901300e+02
+1 1598     8.230000e+02 1.645200e+02
+6 1598     2.055100e+02 4.084700e+02
+7 1598     2.946899e+02 4.328900e+02
+8 1598     3.123900e+02 1.237200e+02
+11 1598     6.192800e+02 -4.353500e+02
+13 1598     6.594000e+02 3.597998e+01
+0 1599     2.893000e+02 -1.844300e+02
+1 1599     3.905300e+02 -2.431300e+02
+7 1599     2.292800e+02 -2.054999e+01
+10 1599     2.596700e+02 -4.184998e+01
+0 1600     7.903998e+01 -1.553600e+02
+1 1600     1.874399e+02 -1.456000e+02
+7 1600     2.320001e+01 -2.598999e+01
+10 1600     1.457001e+01 -3.022998e+01
+15 1600     9.216998e+01 -6.262000e+01
+0 1601     2.247700e+02 -7.954999e+01
+1 1601     3.577000e+02 -1.176300e+02
+7 1601     1.498900e+02 7.177002e+01
+15 1601     2.815900e+02 5.944000e+01
+0 1602     -3.023999e+01 -9.801001e+01
+1 1602     1.032700e+02 -5.726001e+01
+3 1602     6.665997e+01 -3.959800e+02
+7 1602     -9.884003e+01 9.559998e+00
+8 1602     1.481900e+02 -1.217700e+02
+15 1602     -6.215997e+01 4.600220e-01
+0 1603     3.721700e+02 1.706000e+01
+1 1603     5.579399e+02 -7.121997e+01
+7 1603     2.593700e+02 1.782200e+02
+0 1604     -6.478003e+01 -1.467900e+02
+1 1604     5.640997e+01 -9.420001e+01
+6 1604     -5.652002e+01 -1.743600e+02
+7 1604     -1.251800e+02 -4.559998e+01
+12 1604     -5.496997e+01 -1.205100e+02
+0 1605     3.247600e+02 -7.882001e+01
+1 1605     4.666600e+02 -1.501900e+02
+7 1605     2.398101e+02 8.470999e+01
+10 1605     2.902200e+02 8.373999e+01
+15 1605     4.209800e+02 7.376001e+01
+0 1606     1.966400e+02 4.289300e+02
+1 1606     5.680800e+02 3.853700e+02
+5 1606     5.998400e+02 -2.222200e+02
+7 1606     -2.876001e+01 5.159900e+02
+14 1606     5.076899e+02 -3.027500e+02
+0 1607     2.041998e+01 4.866300e+02
+1 1607     3.948199e+02 4.903500e+02
+4 1607     5.710022e+00 -3.715500e+02
+7 1607     -2.052500e+02 5.562400e+02
+11 1607     1.660200e+02 -2.746500e+02
+13 1607     2.063700e+02 1.595600e+02
+0 1608     -1.838300e+02 4.253100e+02
+1 1608     1.700500e+02 4.807700e+02
+2 1608     -4.626400e+02 1.707300e+02
+7 1608     -3.993600e+02 4.715100e+02
+11 1608     -1.585999e+01 -3.321500e+02
+0 1609     -1.484400e+02 3.554800e+02
+1 1609     1.886899e+02 4.020800e+02
+7 1609     -3.544600e+02 4.020100e+02
+0 1610     3.070601e+02 -2.515800e+02
+1 1610     3.926400e+02 -3.172500e+02
+7 1610     2.526700e+02 -8.694000e+01
+10 1610     2.860900e+02 -1.172300e+02
+12 1610     3.898600e+02 -1.409100e+02
+15 1610     4.187700e+02 -1.640700e+02
+0 1611     -8.640997e+01 2.255600e+02
+1 1611     2.073700e+02 2.598300e+02
+7 1611     -2.646500e+02 2.839400e+02
+0 1612     4.509301e+02 3.007600e+02
+1 1612     7.822100e+02 1.872800e+02
+6 1612     1.469800e+02 4.053700e+02
+7 1612     2.503400e+02 4.352200e+02
+14 1612     8.519100e+02 -4.165700e+02
+0 1613     -1.214200e+02 1.988700e+02
+1 1613     1.632200e+02 2.435000e+02
+7 1613     -2.935800e+02 2.530400e+02
+0 1614     -6.460022e+00 -1.241800e+02
+1 1614     1.157100e+02 -8.908002e+01
+2 1614     1.942900e+02 -1.023500e+02
+6 1614     9.400024e+00 -1.232700e+02
+7 1614     -6.841998e+01 -1.089001e+01
+8 1614     1.836500e+02 -1.336100e+02
+10 1614     -8.753998e+01 -3.789978e+00
+12 1614     1.273999e+01 -7.194000e+01
+15 1614     -2.726001e+01 -3.217999e+01
+0 1615     1.300049e-01 -8.644000e+01
+1 1615     1.366600e+02 -5.557001e+01
+2 1615     1.730600e+02 -7.401001e+01
+7 1615     -7.139001e+01 2.559003e+01
+10 1615     -8.417999e+01 4.110999e+01
+13 1615     3.801300e+02 -2.981000e+02
+15 1615     -2.252002e+01 1.984998e+01
+0 1616     -2.347100e+02 4.652800e+02
+1 1616     1.285200e+02 5.321300e+02
+2 1616     -5.155800e+02 2.193100e+02
+7 1616     -4.557400e+02 5.073600e+02
+0 1617     1.642400e+02 -1.268000e+02
+1 1617     2.822500e+02 -1.451200e+02
+7 1617     9.960999e+01 1.560999e+01
+10 1617     1.097700e+02 1.176001e+01
+15 1617     2.051200e+02 -1.284998e+01
+0 1618     -3.741500e+02 3.012600e+02
+1 1618     -4.646997e+01 4.062500e+02
+7 1618     -5.756000e+02 3.172600e+02
+10 1618     -5.722100e+02 4.617400e+02
+15 1618     -5.741700e+02 4.986300e+02
+0 1619     -4.398500e+02 3.730000e+02
+1 1619     -9.379999e+01 4.915600e+02
+7 1619     -6.539200e+02 3.865800e+02
+0 1620     1.732400e+02 -1.361400e+02
+1 1620     2.875100e+02 -1.570700e+02
+7 1620     1.105900e+02 8.210022e+00
+10 1620     1.213600e+02 1.530029e+00
+0 1621     3.204900e+02 -1.081700e+02
+1 1621     4.497700e+02 -1.779500e+02
+7 1621     2.431899e+02 5.687000e+01
+10 1621     2.879500e+02 4.945001e+01
+13 1621     6.583400e+02 -2.925100e+02
+15 1621     4.181600e+02 3.323999e+01
+0 1622     3.398400e+02 -1.708700e+02
+1 1622     4.485500e+02 -2.468100e+02
+7 1622     2.732500e+02 7.600098e-01
+13 1622     6.870800e+02 -3.450100e+02
+15 1622     4.528700e+02 -4.919000e+01
+0 1623     -1.049700e+02 -1.465400e+02
+1 1623     1.809998e+01 -8.188000e+01
+6 1623     -1.009300e+02 -1.882100e+02
+7 1623     -1.658500e+02 -5.248999e+01
+10 1623     -1.994100e+02 -4.010999e+01
+12 1623     -1.024800e+02 -1.321600e+02
+15 1623     -1.566900e+02 -7.563000e+01
+0 1624     2.812500e+02 2.976100e+02
+1 1624     6.085900e+02 2.294200e+02
+6 1624     -7.671997e+01 3.439100e+02
+7 1624     8.045001e+01 4.030700e+02
+0 1625     -9.351001e+01 4.989900e+02
+1 1625     2.796400e+02 5.315500e+02
+7 1625     -3.184200e+02 5.576100e+02
+0 1626     3.615900e+02 -2.313000e+01
+1 1626     5.291700e+02 -1.075600e+02
+7 1626     2.602200e+02 1.405800e+02
+10 1626     3.276801e+02 1.520200e+02
+12 1626     3.608600e+02 1.178900e+02
+13 1626     6.659301e+02 -2.210600e+02
+15 1626     4.668900e+02 1.545200e+02
+0 1627     2.477400e+02 4.607000e+02
+1 1627     6.329200e+02 4.051200e+02
+2 1627     -6.528998e+01 2.197800e+02
+5 1627     6.510900e+02 -1.859500e+02
+6 1627     -2.021800e+02 5.230300e+02
+7 1627     1.554999e+01 5.533800e+02
+8 1627     2.619000e+01 1.695100e+02
+9 1627     -2.051800e+02 2.623800e+02
+11 1627     3.758101e+02 -2.883300e+02
+12 1627     -3.654999e+01 4.980200e+02
+14 1627     5.566300e+02 -2.660100e+02
+0 1628     -1.524100e+02 -1.844000e+01
+1 1628     2.421997e+01 5.202002e+01
+6 1628     -2.517500e+02 -7.760999e+01
+7 1628     -2.480900e+02 6.001001e+01
+10 1628     -2.684900e+02 1.039900e+02
+15 1628     -2.350100e+02 9.114001e+01
+0 1629     1.309000e+02 4.706400e+02
+1 1629     5.079600e+02 4.461200e+02
+7 1629     -9.751001e+01 5.512600e+02
+0 1630     -3.097998e+01 5.064700e+02
+1 1630     3.464200e+02 5.235100e+02
+2 1630     -3.206500e+02 2.677400e+02
+6 1630     -5.153300e+02 5.237300e+02
+7 1630     -2.580700e+02 5.715600e+02
+0 1631     1.081800e+02 4.441900e+02
+1 1631     4.768400e+02 4.246400e+02
+7 1631     -1.148500e+02 5.221800e+02
+0 1632     -6.034998e+01 -1.425300e+02
+1 1632     6.220001e+01 -9.162000e+01
+7 1632     -1.218700e+02 -4.108002e+01
+10 1632     -1.482800e+02 -3.064001e+01
+15 1632     -9.677002e+01 -6.428003e+01
+0 1633     -5.640002e+01 -1.245300e+02
+1 1633     7.233002e+01 -7.545001e+01
+7 1633     -1.216700e+02 -2.340997e+01
+10 1633     -1.453200e+02 -9.429993e+00
+15 1633     -9.346002e+01 -3.946997e+01
+0 1634     3.089000e+02 2.220200e+02
+1 1634     6.072200e+02 1.456500e+02
+7 1634     1.242400e+02 3.373300e+02
+0 1635     -6.122998e+01 -1.301400e+02
+1 1635     6.616998e+01 -7.925000e+01
+2 1635     1.205700e+02 -1.413200e+02
+7 1635     -1.267700e+02 -2.966998e+01
+0 1636     2.158002e+01 7.165002e+01
+1 1636     2.048800e+02 9.242001e+01
+7 1636     -7.717999e+01 1.869400e+02
+15 1636     -1.484998e+01 2.375100e+02
+0 1637     3.331600e+02 -1.785600e+02
+1 1637     4.383800e+02 -2.519600e+02
+6 1637     3.707100e+02 -7.565997e+01
+7 1637     2.690100e+02 -8.090027e+00
+12 1637     4.024600e+02 -4.251001e+01
+15 1637     4.440900e+02 -6.121997e+01
+0 1638     -2.495200e+02 4.138300e+02
+1 1638     1.016400e+02 4.853200e+02
+7 1638     -4.638200e+02 4.516500e+02
+10 1638     -4.366200e+02 6.109300e+02
+11 1638     -7.464001e+01 -3.424400e+02
+0 1639     -3.600000e+01 5.080500e+02
+1 1639     3.412600e+02 5.265900e+02
+7 1639     -2.630200e+02 5.726600e+02
+11 1639     1.144900e+02 -2.575100e+02
+0 1640     -2.178500e+02 4.257700e+02
+1 1640     1.362700e+02 4.891100e+02
+2 1640     -4.974000e+02 1.699200e+02
+7 1640     -4.330800e+02 4.678900e+02
+14 1640     1.009000e+02 -3.184100e+02
+0 1641     -2.453000e+02 3.166000e+02
+1 1641     8.356000e+01 3.890700e+02
+7 1641     -4.465700e+02 3.501700e+02
+0 1642     4.923600e+02 2.779700e+02
+1 1642     8.184399e+02 1.518900e+02
+7 1642     2.955200e+02 4.207100e+02
+10 1642     4.549800e+02 5.203700e+02
+0 1643     -2.471700e+02 3.109100e+02
+1 1643     8.040002e+01 3.837800e+02
+7 1643     -4.474100e+02 3.429300e+02
+11 1643     -7.365997e+01 -4.349800e+02
+0 1644     -2.221900e+02 4.834700e+02
+1 1644     1.454100e+02 5.472000e+02
+2 1644     -5.036600e+02 2.410200e+02
+7 1644     -4.456600e+02 5.278400e+02
+11 1644     -4.962000e+01 -2.822400e+02
+12 1644     -5.475500e+02 4.582300e+02
+0 1645     -2.824000e+02 3.455800e+02
+1 1645     5.322998e+01 4.265400e+02
+7 1645     -4.875500e+02 3.763100e+02
+0 1646     4.103000e+02 -1.383002e+01
+1 1646     5.901200e+02 -1.153300e+02
+7 1646     2.990699e+02 1.532100e+02
+0 1647     -2.218700e+02 4.947300e+02
+1 1647     1.482600e+02 5.581200e+02
+2 1647     -5.042500e+02 2.538200e+02
+7 1647     -4.466800e+02 5.398700e+02
+0 1648     4.871300e+02 3.460300e+02
+1 1648     8.346400e+02 2.256200e+02
+3 1648     1.391700e+02 -9.700000e+01
+6 1648     1.834700e+02 4.702200e+02
+7 1648     2.809700e+02 4.863100e+02
+12 1648     2.942700e+02 4.635900e+02
+13 1648     6.479000e+02 8.285999e+01
+0 1649     5.541500e+02 3.502002e+01
+1 1649     7.925500e+02 -1.189200e+02
+6 1649     3.876900e+02 1.546600e+02
+7 1649     4.005601e+02 2.037400e+02
+15 1649     7.388700e+02 2.605400e+02
+0 1650     5.538900e+02 -2.020020e+00
+1 1650     7.809900e+02 -1.576700e+02
+7 1650     4.055601e+02 1.677700e+02
+0 1651     1.603199e+02 1.140002e+01
+1 1651     3.188600e+02 -6.710022e+00
+7 1651     7.360999e+01 1.522500e+02
+15 1651     1.811300e+02 1.745600e+02
+0 1652     1.842500e+02 -1.140002e+01
+1 1652     3.360400e+02 -3.702002e+01
+7 1652     1.008100e+02 1.335600e+02
+10 1652     1.209200e+02 1.467700e+02
+15 1652     2.166200e+02 1.469300e+02
+0 1653     2.668300e+02 -1.996300e+02
+1 1653     3.612800e+02 -2.502800e+02
+7 1653     2.119600e+02 -3.819000e+01
+10 1653     2.349700e+02 -6.153998e+01
+15 1653     3.548700e+02 -9.850000e+01
+0 1654     8.198999e+01 -5.556899e+02
+1 1654     7.340002e+01 -5.338300e+02
+7 1654     9.213000e+01 -4.270600e+02
+0 1655     6.360300e+02 -2.659200e+02
+1 1655     7.628700e+02 -4.565699e+02
+7 1655     5.396500e+02 -5.728003e+01
+10 1655     6.689800e+02 -9.765997e+01
+12 1655     6.872100e+02 -1.054500e+02
+0 1656     -1.207200e+02 -5.378800e+02
+1 1656     -1.096100e+02 -4.469600e+02
+6 1656     2.263000e+01 -6.717000e+02
+7 1656     -1.123500e+02 -4.532600e+02
+0 1657     6.245200e+02 4.994000e+01
+1 1657     8.707300e+02 -1.252200e+02
+7 1657     4.685400e+02 2.325000e+02
+10 1657     6.280900e+02 2.656400e+02
+13 1657     8.412900e+02 -1.507700e+02
+0 1658     -1.023900e+02 -1.308200e+02
+1 1658     2.675000e+01 -6.800000e+01
+2 1658     7.759998e+01 -1.511000e+02
+6 1658     -1.093600e+02 -1.722100e+02
+7 1658     -1.671800e+02 -3.744000e+01
+12 1658     -1.079600e+02 -1.159600e+02
+13 1658     2.940500e+02 -3.461400e+02
+15 1658     -1.548700e+02 -5.433002e+01
+0 1659     6.108400e+02 -1.376001e+01
+1 1659     8.364200e+02 -1.879900e+02
+6 1659     4.724500e+02 1.248300e+02
+7 1659     4.636100e+02 1.689200e+02
+12 1659     5.542900e+02 1.347500e+02
+13 1659     8.351200e+02 -2.103800e+02
+15 1659     8.240300e+02 2.016900e+02
+0 1660     -5.640002e+01 -1.245300e+02
+1 1660     7.233002e+01 -7.545001e+01
+2 1660     1.246100e+02 -1.335700e+02
+7 1660     -1.216700e+02 -2.340997e+01
+9 1660     3.260010e+00 -2.091998e+01
+10 1660     -1.453200e+02 -9.429993e+00
+15 1660     -9.346002e+01 -3.946997e+01
+0 1661     6.220601e+02 -9.549988e+00
+1 1661     8.492300e+02 -1.870700e+02
+6 1661     4.847300e+02 1.335300e+02
+7 1661     4.738400e+02 1.746000e+02
+10 1661     6.291400e+02 1.963800e+02
+13 1661     8.461500e+02 -2.049200e+02
+15 1661     8.391700e+02 2.087100e+02
+0 1662     -4.539978e+00 -8.406000e+01
+1 1662     1.330100e+02 -5.160999e+01
+2 1662     1.650200e+02 -7.367999e+01
+7 1662     -7.716998e+01 2.728003e+01
+9 1662     3.375000e+01 3.013000e+01
+0 1663     -4.210999e+01 -3.165997e+01
+1 1663     1.150300e+02 9.659973e+00
+7 1663     -1.247900e+02 7.196002e+01
+15 1663     -8.634998e+01 8.817999e+01
+0 1664     5.967000e+02 4.717999e+01
+1 1664     8.405200e+02 -1.194600e+02
+2 1664     5.239900e+02 2.231000e+01
+7 1664     4.409900e+02 2.241400e+02
+10 1664     5.952200e+02 2.591500e+02
+13 1664     8.126200e+02 -1.573300e+02
+15 1664     7.967500e+02 2.836000e+02
+0 1665     -1.341800e+02 -4.821100e+02
+1 1665     -1.013600e+02 -3.914000e+02
+6 1665     -2.926001e+01 -6.199500e+02
+7 1665     -1.398500e+02 -4.019200e+02
+0 1666     2.151001e+01 -9.000244e-01
+1 1666     1.812800e+02 2.188000e+01
+7 1666     -6.291998e+01 1.163100e+02
+10 1666     -6.791998e+01 1.425300e+02
+15 1666     -5.840027e+00 1.391500e+02
+0 1667     4.878003e+01 -9.489001e+01
+1 1667     1.789000e+02 -7.800000e+01
+2 1667     2.348900e+02 -6.201001e+01
+3 1667     1.464100e+02 -3.662300e+02
+6 1667     5.465002e+01 -7.284003e+01
+7 1667     -1.951001e+01 2.700000e+01
+9 1667     9.070001e+01 4.240002e+01
+15 1667     4.417999e+01 1.513000e+01
+0 1668     1.096200e+02 -1.075000e+02
+1 1668     2.337100e+02 -1.089700e+02
+7 1668     4.331000e+01 2.540997e+01
+10 1668     4.465002e+01 2.797998e+01
+15 1668     1.281500e+02 5.750000e+00
+0 1669     1.060300e+02 -1.135400e+02
+1 1669     2.285900e+02 -1.141800e+02
+7 1669     4.063000e+01 1.890002e+01
+15 1669     1.236600e+02 -2.450012e+00
+0 1670     1.008700e+02 -1.160400e+02
+1 1670     2.228900e+02 -1.146400e+02
+6 1670     1.186300e+02 -7.832001e+01
+7 1670     3.604999e+01 1.554999e+01
+8 1670     2.700100e+02 -1.070400e+02
+12 1670     1.318900e+02 -3.173999e+01
+15 1670     1.174500e+02 -6.739990e+00
+0 1671     -6.460022e+00 -1.241800e+02
+1 1671     1.157100e+02 -8.908002e+01
+7 1671     -6.841998e+01 -1.089001e+01
+10 1671     -8.753998e+01 -3.789978e+00
+15 1671     -2.726001e+01 -3.217999e+01
+0 1672     6.051300e+02 1.059003e+01
+1 1672     8.377600e+02 -1.607500e+02
+7 1672     4.544100e+02 1.904800e+02
+10 1672     6.081700e+02 2.175200e+02
+13 1672     8.254000e+02 -1.898000e+02
+15 1672     8.131700e+02 2.341900e+02
+0 1673     6.552800e+02 -7.784998e+01
+1 1673     8.628800e+02 -2.708100e+02
+2 1673     6.250699e+02 -7.629999e+01
+6 1673     5.443400e+02 7.058002e+01
+7 1673     5.159600e+02 1.151500e+02
+10 1673     6.741300e+02 1.198800e+02
+0 1674     6.475100e+02 -9.809998e+01
+1 1674     8.481700e+02 -2.893900e+02
+7 1674     5.110100e+02 9.422000e+01
+8 1674     5.679600e+02 -1.148100e+02
+10 1674     6.665400e+02 9.603003e+01
+0 1675     6.409200e+02 -6.972998e+01
+1 1675     8.500300e+02 -2.571100e+02
+2 1675     6.069800e+02 -7.534003e+01
+7 1675     5.007500e+02 1.205000e+02
+12 1675     6.039200e+02 8.446002e+01
+13 1675     8.739301e+02 -2.573000e+02
+15 1675     8.725699e+02 1.280700e+02
+0 1676     -9.584003e+01 -5.101500e+02
+1 1676     -7.628998e+01 -4.300400e+02
+4 1676     -6.597400e+02 -3.087200e+02
+6 1676     3.253998e+01 -6.311801e+02
+7 1676     -9.394000e+01 -4.204300e+02
+0 1677     5.796600e+02 -2.343100e+02
+1 1677     7.128500e+02 -4.028500e+02
+7 1677     4.808500e+02 -3.901001e+01
+15 1677     8.027700e+02 -1.070800e+02
+0 1678     6.253003e+01 4.162000e+01
+1 1678     2.330699e+02 5.163000e+01
+2 1678     1.991300e+02 8.290002e+01
+3 1678     1.048200e+02 -2.292100e+02
+6 1678     2.221997e+01 8.628998e+01
+7 1678     -2.873999e+01 1.659900e+02
+10 1678     -2.492999e+01 1.956500e+02
+12 1678     3.989001e+01 1.397100e+02
+13 1678     4.245200e+02 -1.802500e+02
+15 1678     4.417999e+01 2.027600e+02
+0 1679     -2.197500e+02 -4.192600e+02
+1 1679     -1.564900e+02 -3.062100e+02
+6 1679     -1.729000e+02 -5.934900e+02
+7 1679     -2.424600e+02 -3.587600e+02
+10 1679     -3.014500e+02 -3.670800e+02
+15 1679     -2.709800e+02 -4.600100e+02
+0 1680     -4.800000e+02 1.187200e+02
+1 1680     -2.010300e+02 2.618500e+02
+4 1680     -1.588000e+02 -5.770001e+01
+7 1680     -6.500300e+02 1.177500e+02
+10 1680     -6.752700e+02 2.326400e+02
+13 1680     -1.764700e+02 -1.816200e+02
+0 1681     1.543700e+02 -1.532400e+02
+1 1681     2.615300e+02 -1.678400e+02
+2 1681     3.706700e+02 -8.691998e+01
+7 1681     9.683002e+01 -1.091998e+01
+10 1681     1.010100e+02 -1.994000e+01
+13 1681     5.317100e+02 -3.413900e+02
+15 1681     1.942000e+02 -4.996002e+01
+0 1682     1.857000e+02 -2.067100e+02
+1 1682     2.764700e+02 -2.303600e+02
+7 1682     1.362100e+02 -5.820001e+01
+15 1682     2.442100e+02 -1.180800e+02
+0 1683     4.159100e+02 -3.787000e+01
+1 1683     5.855000e+02 -1.412400e+02
+6 1683     3.605900e+02 7.884998e+01
+7 1683     3.099100e+02 1.327500e+02
+10 1683     3.915500e+02 1.403200e+02
+12 1683     4.144301e+02 1.081400e+02
+13 1683     7.088101e+02 -2.312400e+02
+15 1683     5.449399e+02 1.416600e+02
+0 1684     3.675699e+02 -9.347998e+01
+1 1684     5.095699e+02 -1.798100e+02
+6 1684     3.523300e+02 1.359003e+01
+7 1684     2.804399e+02 7.457001e+01
+10 1684     3.409500e+02 7.100000e+01
+15 1684     4.828900e+02 5.912000e+01
+0 1685     3.574800e+02 -1.709900e+02
+1 1685     4.668400e+02 -2.531000e+02
+7 1685     2.894600e+02 2.530029e+00
+12 1685     4.234600e+02 -2.909998e+01
+15 1685     4.766801e+02 -4.798999e+01
+0 1686     3.235300e+02 -2.061000e+02
+1 1686     4.190699e+02 -2.764100e+02
+7 1686     2.650200e+02 -3.640997e+01
+15 1686     4.342500e+02 -1.000100e+02
+0 1687     1.393101e+02 -2.362000e+02
+1 1687     2.191600e+02 -2.438700e+02
+7 1687     9.840002e+01 -9.400000e+01
+10 1687     9.232001e+01 -1.170000e+02
+13 1687     5.343500e+02 -4.151300e+02
+0 1688     -1.934300e+02 -4.625100e+02
+1 1688     -1.481400e+02 -3.541600e+02
+6 1688     -1.125600e+02 -6.273199e+02
+7 1688     -2.054700e+02 -3.955700e+02
+9 1688     -1.060999e+01 -4.213600e+02
+0 1689     -1.654800e+02 -5.214700e+02
+1 1689     -1.445100e+02 -4.170400e+02
+6 1689     -3.909003e+01 -6.759301e+02
+7 1689     -1.616600e+02 -4.466100e+02
+0 1690     -1.744300e+02 -5.288300e+02
+1 1690     -1.550900e+02 -4.206500e+02
+4 1690     -6.564200e+02 -2.465300e+02
+6 1690     -4.453003e+01 -6.884399e+02
+7 1690     -1.690000e+02 -4.554200e+02
+9 1690     5.603998e+01 -4.582400e+02
+0 1691     2.295500e+02 1.402900e+02
+1 1691     4.407100e+02 9.854999e+01
+7 1691     1.094900e+02 2.821800e+02
+10 1691     1.586500e+02 3.283500e+02
+15 1691     2.630300e+02 3.614300e+02
+0 1692     5.569600e+02 6.853998e+01
+1 1692     8.060601e+02 -8.472998e+01
+6 1692     3.858100e+02 1.925200e+02
+7 1692     3.996500e+02 2.364000e+02
+10 1692     5.477000e+02 2.790500e+02
+0 1693     2.954100e+02 3.606000e+01
+1 1693     4.713700e+02 -2.540997e+01
+7 1693     1.939700e+02 1.924500e+02
+10 1693     2.452400e+02 2.131500e+02
+13 1693     6.132300e+02 -1.705700e+02
+15 1693     3.657200e+02 2.270100e+02
+0 1694     2.085601e+02 -2.008900e+02
+1 1694     3.016200e+02 -2.319900e+02
+7 1694     1.564500e+02 -4.890002e+01
+15 1694     2.749500e+02 -1.071700e+02
+0 1695     -7.651001e+01 -4.646997e+01
+1 1695     7.935999e+01 4.979980e+00
+7 1695     -1.590500e+02 5.113000e+01
+0 1696     -1.353700e+02 -3.563000e+01
+1 1696     3.260999e+01 3.104999e+01
+7 1696     -2.255200e+02 4.747998e+01
+10 1696     -2.468400e+02 8.596002e+01
+15 1696     -2.105800e+02 7.042999e+01
+0 1697     -4.571002e+01 -6.701001e+01
+1 1697     1.011000e+02 -2.377002e+01
+7 1697     -1.225100e+02 3.634998e+01
+15 1697     -8.626001e+01 3.987000e+01
+0 1698     -1.288000e+01 -1.082400e+02
+1 1698     1.159800e+02 -7.264001e+01
+7 1698     -7.941998e+01 3.140015e+00
+10 1698     -9.684003e+01 1.497998e+01
+13 1698     3.744100e+02 -3.168100e+02
+15 1698     -3.759998e+01 -1.139001e+01
+0 1699     -1.522998e+01 -1.660300e+02
+1 1699     9.647998e+01 -1.273400e+02
+7 1699     -7.056000e+01 -5.537000e+01
+10 1699     -9.346997e+01 -5.272998e+01
+15 1699     -3.301001e+01 -8.978998e+01
+0 1700     2.421801e+02 -2.172800e+02
+1 1700     3.294600e+02 -2.592000e+02
+7 1700     1.934200e+02 -5.785999e+01
+10 1700     2.089301e+02 -8.410999e+01
+15 1700     3.231100e+02 -1.252800e+02
+0 1701     3.548900e+02 -4.959003e+01
+1 1701     5.107200e+02 -1.312000e+02
+7 1701     2.605100e+02 1.155900e+02
+10 1701     3.223500e+02 1.206800e+02
+15 1701     4.598700e+02 1.178400e+02
+0 1702     3.692000e+02 -1.058200e+02
+1 1702     5.070300e+02 -1.927900e+02
+7 1702     2.849700e+02 6.378003e+01
+10 1702     3.432500e+02 5.735999e+01
+15 1702     4.870400e+02 4.226001e+01
+0 1703     2.662400e+02 -1.209300e+02
+1 1703     3.880500e+02 -1.723200e+02
+7 1703     1.955300e+02 3.720001e+01
+10 1703     2.264900e+02 2.891998e+01
+13 1703     6.167200e+02 -3.064300e+02
+15 1703     3.443600e+02 8.679993e+00
+0 1704     2.298400e+02 -1.207300e+02
+1 1704     3.501600e+02 -1.607600e+02
+2 1704     4.127200e+02 -5.263000e+01
+3 1704     3.104399e+02 -3.533500e+02
+7 1704     1.601801e+02 3.119000e+01
+10 1704     1.841000e+02 2.552002e+01
+13 1704     5.846000e+02 -3.089600e+02
+15 1704     2.938700e+02 3.989990e+00
+0 1705     6.677800e+02 -3.451700e+02
+1 1705     7.661400e+02 -5.502800e+02
+7 1705     5.847900e+02 -1.238500e+02
+12 1705     7.564100e+02 -1.734400e+02
+0 1706     3.346000e+02 -6.239001e+01
+1 1706     4.840900e+02 -1.378000e+02
+7 1706     2.454000e+02 1.007900e+02
+10 1706     2.992600e+02 1.033100e+02
+15 1706     4.329200e+02 9.723999e+01
+0 1707     3.980000e+02 -7.854999e+01
+1 1707     5.495300e+02 -1.756000e+02
+7 1707     3.039301e+02 9.270999e+01
+10 1707     3.745500e+02 9.176001e+01
+15 1707     5.243900e+02 8.345999e+01
+0 1708     3.710500e+02 -1.483000e+02
+1 1708     4.907500e+02 -2.348100e+02
+7 1708     2.968900e+02 2.576001e+01
+10 1708     3.498400e+02 8.989990e+00
+0 1709     3.394700e+02 -1.588900e+02
+1 1709     4.531600e+02 -2.348300e+02
+7 1709     2.699301e+02 1.092999e+01
+0 1710     3.394700e+02 -1.588900e+02
+1 1710     4.531600e+02 -2.348300e+02
+15 1710     4.507800e+02 -3.407001e+01
+0 1711     6.153003e+01 -1.299600e+02
+1 1711     1.797100e+02 -1.155800e+02
+7 1711     -9.997559e-02 -5.859985e+00
+15 1711     6.620001e+01 -3.020001e+01
+0 1712     3.124301e+02 -2.325300e+02
+1 1712     4.022300e+02 -2.986600e+02
+10 1712     2.910300e+02 -9.509998e+01
+15 1712     4.231400e+02 -1.370800e+02
+0 1713     1.760800e+02 -3.337800e+02
+1 1713     2.377600e+02 -3.529000e+02
+7 1713     1.406100e+02 -1.911500e+02
+0 1714     3.618300e+02 -1.139900e+02
+1 1714     4.951801e+02 -1.981800e+02
+7 1714     2.787500e+02 5.596997e+01
+10 1714     3.370800e+02 4.656000e+01
+15 1714     4.768500e+02 3.073999e+01
+0 1715     2.837000e+01 -2.092300e+02
+1 1715     1.206100e+02 -1.815000e+02
+7 1715     -1.560999e+01 -8.825000e+01
+0 1716     -7.509003e+01 -2.858700e+02
+1 1716     1.539001e+01 -2.257400e+02
+7 1716     -1.185700e+02 -1.939000e+02
+10 1716     -1.476700e+02 -1.974000e+02
+13 1716     3.162300e+02 -4.949600e+02
+15 1716     -9.337000e+01 -2.603200e+02
+0 1717     2.413900e+02 -2.636600e+02
+1 1717     3.161200e+02 -3.054400e+02
+7 1717     2.020100e+02 -1.018700e+02
+0 1718     -9.529999e+01 6.203998e+01
+1 1718     1.035300e+02 1.139300e+02
+7 1718     -2.072600e+02 1.476600e+02
+10 1718     -2.103000e+02 2.023500e+02
+13 1718     2.510900e+02 -1.880500e+02
+15 1718     -1.685600e+02 2.073000e+02
+0 1719     1.170700e+02 -2.646997e+01
+1 1719     2.632100e+02 -3.225000e+01
+3 1719     1.866700e+02 -2.766700e+02
+4 1719     -3.058200e+02 -5.067900e+02
+7 1719     3.501001e+01 1.050500e+02
+10 1719     4.438000e+01 1.222100e+02
+13 1719     4.822600e+02 -2.331600e+02
+15 1719     1.242000e+02 1.141700e+02
+0 1720     -4.510010e+00 4.708600e+02
+1 1720     3.647600e+02 4.805100e+02
+2 1720     -2.931300e+02 2.260500e+02
+3 1720     -4.245900e+02 -1.053200e+02
+6 1720     -4.786800e+02 4.819800e+02
+7 1720     -2.275400e+02 5.375500e+02
+8 1720     -1.618400e+02 1.710100e+02
+11 1720     1.443400e+02 -2.896100e+02
+12 1720     -3.041700e+02 4.735100e+02
+0 1721     -1.761000e+02 1.640800e+02
+1 1721     9.756000e+01 2.250600e+02
+7 1721     -3.416100e+02 2.113600e+02
+10 1721     -3.169000e+02 3.169500e+02
+0 1722     -1.067400e+02 5.801001e+01
+1 1722     9.201001e+01 1.120800e+02
+7 1722     -2.167900e+02 1.432200e+02
+10 1722     -2.234100e+02 1.980300e+02
+15 1722     -1.828100e+02 2.010800e+02
+0 1723     -1.427200e+02 -1.245700e+02
+1 1723     -8.789978e+00 -4.994000e+01
+6 1723     -1.600800e+02 -1.801300e+02
+7 1723     -2.098300e+02 -3.841998e+01
+10 1723     -2.454700e+02 -1.888000e+01
+12 1723     -1.595200e+02 -1.211600e+02
+15 1723     -2.102600e+02 -5.110999e+01
+0 1724     -1.551001e+01 1.079000e+02
+1 1724     1.840900e+02 1.369700e+02
+3 1724     -2.604999e+01 -2.138200e+02
+4 1724     -1.990800e+02 -3.971700e+02
+5 1724     5.920300e+02 -5.499500e+02
+7 1724     -1.248500e+02 2.140500e+02
+10 1724     -1.231900e+02 2.658000e+02
+13 1724     3.353500e+02 -1.345600e+02
+0 1725     -1.027800e+02 7.833002e+01
+1 1725     1.038000e+02 1.300300e+02
+5 1725     4.627600e+02 -5.922500e+02
+6 1725     -2.494100e+02 4.576001e+01
+7 1725     -2.187800e+02 1.627800e+02
+10 1725     -2.216000e+02 2.219000e+02
+13 1725     2.391200e+02 -1.724600e+02
+15 1725     -1.801700e+02 2.292200e+02
+0 1726     1.732001e+01 4.189900e+02
+1 1726     3.745601e+02 4.226200e+02
+7 1726     -1.995600e+02 4.864300e+02
+9 1726     -3.754300e+02 2.084800e+02
+12 1726     -2.713100e+02 4.155900e+02
+0 1727     1.157300e+02 6.115997e+01
+1 1727     2.909600e+02 5.540002e+01
+4 1727     -2.453500e+02 -5.064399e+02
+5 1727     7.735200e+02 -5.992300e+02
+7 1727     2.053998e+01 1.936100e+02
+15 1727     1.141500e+02 2.363400e+02
+0 1728     1.876001e+01 1.419100e+02
+1 1728     2.280100e+02 1.602500e+02
+4 1728     -1.811700e+02 -4.233400e+02
+5 1728     6.257100e+02 -5.113500e+02
+6 1728     -9.029999e+01 1.754800e+02
+7 1728     -9.634998e+01 2.529600e+02
+10 1728     -8.614001e+01 3.081700e+02
+12 1728     -5.840997e+01 2.280600e+02
+15 1728     -2.615002e+01 3.335600e+02
+0 1729     5.283002e+01 7.966000e+01
+1 1729     2.367200e+02 9.167001e+01
+7 1729     -4.703003e+01 2.008400e+02
+10 1729     -4.060999e+01 2.393900e+02
+15 1729     2.653003e+01 2.529900e+02
+0 1730     -3.187400e+02 -1.104900e+02
+1 1730     -1.347800e+02 7.270020e+00
+6 1730     -5.209400e+02 -3.020900e+02
+7 1730     -4.216800e+02 -7.742999e+01
+13 1730     2.662000e+01 -3.681300e+02
+15 1730     -4.415400e+02 -5.715997e+01
+0 1731     -3.734200e+02 3.379100e+02
+1 1731     -3.727002e+01 4.416700e+02
+7 1731     -5.801700e+02 3.570900e+02
+15 1731     -5.799000e+02 5.503400e+02
+0 1732     -3.764500e+02 4.379100e+02
+1 1732     -1.765002e+01 5.394700e+02
+7 1732     -5.977600e+02 4.631200e+02
+11 1732     -1.850500e+02 -3.209800e+02
+0 1733     1.770800e+02 5.228998e+01
+1 1733     3.495800e+02 2.838000e+01
+2 1733     3.049301e+02 1.150700e+02
+4 1733     -2.591800e+02 -5.543600e+02
+6 1733     1.392200e+02 1.320500e+02
+7 1733     8.210999e+01 1.943500e+02
+12 1733     1.653000e+02 1.811900e+02
+13 1733     5.205900e+02 -1.622700e+02
+15 1733     1.990300e+02 2.329100e+02
+0 1734     2.349700e+02 7.552002e+01
+1 1734     4.188900e+02 3.385999e+01
+7 1734     1.311500e+02 2.231800e+02
+15 1734     2.765500e+02 2.727700e+02
+0 1735     3.985999e+01 4.185999e+01
+1 1735     2.115300e+02 5.840997e+01
+6 1735     -5.770020e+00 7.929999e+01
+7 1735     -5.184003e+01 1.617700e+02
+10 1735     -5.113000e+01 1.938200e+02
+15 1735     1.357001e+01 1.993800e+02
+0 1736     2.404600e+02 4.520300e+02
+1 1736     6.225100e+02 3.979800e+02
+2 1736     -7.059998e+01 2.093000e+02
+5 1736     6.436400e+02 -1.954900e+02
+6 1736     -2.084400e+02 5.098100e+02
+7 1736     9.799988e+00 5.439500e+02
+9 1736     -2.093800e+02 2.532400e+02
+11 1736     3.699000e+02 -2.956500e+02
+12 1736     -4.254999e+01 4.864900e+02
+14 1736     5.495800e+02 -2.757300e+02
+0 1737     1.628900e+02 2.062000e+01
+1 1737     3.244500e+02 1.609985e+00
+10 1737     9.290002e+01 1.816700e+02
+12 1737     1.622900e+02 1.435100e+02
+15 1737     1.833000e+02 1.878000e+02
+0 1738     -1.010010e+00 -1.172500e+02
+1 1738     1.236900e+02 -8.445001e+01
+6 1738     1.042999e+01 -1.140900e+02
+7 1738     -6.477002e+01 -3.500000e+00
+10 1738     -8.210999e+01 4.919983e+00
+12 1738     1.529999e+01 -6.240002e+01
+13 1738     3.878101e+02 -3.234200e+02
+15 1738     -2.067999e+01 -2.202002e+01
+0 1739     3.579700e+02 4.841800e+02
+1 1739     7.640200e+02 4.010700e+02
+5 1739     7.632100e+02 -1.566700e+02
+6 1739     -9.153000e+01 5.744900e+02
+7 1739     1.157800e+02 5.881500e+02
+11 1739     4.754200e+02 -2.610500e+02
+12 1739     7.076001e+01 5.394500e+02
+0 1740     3.067999e+01 -2.038200e+02
+1 1740     1.250700e+02 -1.774000e+02
+6 1740     8.564001e+01 -1.962300e+02
+7 1740     -1.541998e+01 -8.246002e+01
+10 1740     -3.628003e+01 -9.132001e+01
+12 1740     8.554999e+01 -1.497000e+02
+15 1740     3.308002e+01 -1.346900e+02
+0 1741     1.310900e+02 5.681000e+02
+1 1741     5.335000e+02 5.481300e+02
+3 1741     -3.138300e+02 2.890015e+00
+11 1741     2.592000e+02 -2.000300e+02
+13 1741     2.915300e+02 2.349900e+02
+0 1742     -8.542999e+01 4.844300e+02
+1 1742     2.846300e+02 5.150300e+02
+7 1742     -3.088800e+02 5.432900e+02
+11 1742     7.146997e+01 -2.793600e+02
+0 1743     -1.042600e+02 4.815500e+02
+1 1743     2.646500e+02 5.165000e+02
+2 1743     -3.885000e+02 2.383700e+02
+7 1743     -3.271900e+02 5.381300e+02
+12 1743     -4.150500e+02 4.720900e+02
+0 1744     2.794000e+01 -4.606000e+01
+1 1744     1.731801e+02 -2.392999e+01
+2 1744     1.956700e+02 -1.526001e+01
+8 1744     1.892200e+02 -6.115002e+01
+10 1744     -5.625000e+01 9.121997e+01
+12 1744     2.725000e+01 2.765002e+01
+15 1744     8.979980e+00 7.828003e+01
+0 1745     2.000400e+02 2.596400e+02
+1 1745     5.080400e+02 2.142100e+02
+6 1745     -1.445200e+02 2.796500e+02
+7 1745     1.053998e+01 3.565700e+02
+15 1745     2.232000e+02 5.194900e+02
+0 1746     2.435601e+02 2.669000e+02
+1 1746     5.562200e+02 2.093800e+02
+6 1746     -9.944000e+01 3.002500e+02
+7 1746     5.153998e+01 3.697100e+02
+10 1746     1.631700e+02 4.814300e+02
+11 1746     3.839900e+02 -4.694500e+02
+0 1747     2.145200e+02 2.646400e+02
+1 1747     5.251200e+02 2.152400e+02
+7 1747     2.375000e+01 3.634300e+02
+15 1747     2.431500e+02 5.289100e+02
+0 1748     2.761400e+02 -2.479300e+02
+1 1748     3.587300e+02 -3.017400e+02
+7 1748     2.261899e+02 -8.559998e+01
+0 1749     3.198101e+02 -4.009998e+01
+1 1749     4.737800e+02 -1.102000e+02
+7 1749     2.281801e+02 1.209800e+02
+10 1749     2.805300e+02 1.278100e+02
+15 1749     4.092400e+02 1.256600e+02
+0 1750     -3.007400e+02 7.581000e+01
+1 1750     -5.181000e+01 1.753200e+02
+2 1750     -4.494900e+02 -1.849900e+02
+7 1750     -4.485200e+02 1.059900e+02
+10 1750     -4.533200e+02 1.999100e+02
+0 1751     -1.139900e+02 -1.052002e+01
+1 1751     5.781000e+01 4.935999e+01
+7 1751     -2.062000e+02 7.745001e+01
+10 1751     -2.245800e+02 1.170000e+02
+15 1751     -1.854100e+02 1.067800e+02
+0 1752     -4.464500e+02 -6.770020e+00
+1 1752     -2.146400e+02 1.378800e+02
+2 1752     -5.844800e+02 -2.929100e+02
+15 1752     -6.312000e+02 6.495001e+01
+0 1753     3.378199e+02 1.091900e+02
+1 1753     5.661000e+02 2.984003e+01
+10 1753     2.875500e+02 3.039800e+02
+15 1753     4.226100e+02 3.326400e+02
+0 1754     -4.046002e+01 -3.153500e+02
+1 1754     3.644000e+01 -2.652200e+02
+6 1754     1.020001e+01 -3.783600e+02
+10 1754     -1.060700e+02 -2.270700e+02
+12 1754     1.307001e+01 -3.317600e+02
+13 1754     3.580300e+02 -5.154399e+02
+0 1755     -3.053100e+02 1.050300e+02
+1 1755     -4.547998e+01 2.037200e+02
+4 1755     -1.847400e+02 -1.610500e+02
+0 1756     4.895200e+02 2.812700e+02
+1 1756     8.162700e+02 1.564000e+02
+10 1756     4.511000e+02 5.243900e+02
+0 1757     3.859700e+02 -7.710999e+01
+1 1757     5.366400e+02 -1.696900e+02
+10 1757     3.601600e+02 9.215002e+01
+15 1757     5.068900e+02 8.404999e+01
+0 1758     7.612000e+01 2.267400e+02
+1 1758     3.686500e+02 2.165900e+02
+5 1758     5.237600e+02 -4.443400e+02
+6 1758     -2.674500e+02 2.082300e+02
+14 1758     4.386500e+02 -5.257400e+02
+0 1759     2.820300e+02 -1.939200e+02
+1 1759     3.790800e+02 -2.500100e+02
+10 1759     2.520200e+02 -5.316998e+01
+15 1759     3.751801e+02 -8.867999e+01
+0 1760     3.343300e+02 -2.422500e+02
+1 1760     4.260100e+02 -3.185300e+02
+6 1760     3.807000e+02 -1.537500e+02
+10 1760     3.169600e+02 -1.026700e+02
+12 1760     4.143199e+02 -1.244600e+02
+15 1760     4.548199e+02 -1.478600e+02
+0 1761     2.406300e+02 1.175600e+02
+1 1761     4.415900e+02 7.345001e+01
+7 1761     1.263900e+02 2.651400e+02
+10 1761     1.734900e+02 3.029300e+02
+12 1761     1.995601e+02 2.576700e+02
+15 1761     2.795699e+02 3.322400e+02
+0 1762     7.394000e+01 -3.983700e+02
+1 1762     1.156700e+02 -3.810000e+02
+4 1762     -6.016300e+02 -4.578900e+02
+7 1762     5.496002e+01 -2.729600e+02
+9 1762     2.121899e+02 -2.405100e+02
+0 1763     2.672998e+01 -2.472900e+02
+1 1763     1.109700e+02 -2.187900e+02
+4 1763     -4.608300e+02 -4.285800e+02
+7 1763     -1.404999e+01 -1.285000e+02
+10 1763     -3.587000e+01 -1.417100e+02
+15 1763     3.434003e+01 -1.940300e+02
+0 1764     1.675300e+02 -3.207200e+02
+1 1764     2.304000e+02 -3.376300e+02
+4 1764     -5.559400e+02 -5.401200e+02
+10 1764     1.332700e+02 -2.106200e+02
+15 1764     2.365000e+02 -2.754500e+02
+0 1765     -2.937000e+02 3.555700e+02
+1 1765     4.450000e+01 4.388200e+02
+2 1765     -5.724000e+02 8.150000e+01
+5 1765     1.038400e+02 -3.039300e+02
+7 1765     -5.007600e+02 3.852700e+02
+8 1765     -3.895000e+02 5.242001e+01
+10 1765     -4.815700e+02 5.355500e+02
+12 1765     -6.083800e+02 2.894000e+02
+0 1766     -2.939100e+02 3.897700e+02
+1 1766     5.234998e+01 4.734600e+02
+2 1766     -5.743000e+02 1.256600e+02
+5 1766     1.068400e+02 -2.667700e+02
+7 1766     -5.060700e+02 4.212900e+02
+10 1766     -4.865000e+02 5.781800e+02
+11 1766     -1.154900e+02 -3.630800e+02
+13 1766     -4.364001e+01 6.178003e+01
+14 1766     2.365997e+01 -3.573900e+02
+0 1767     -4.234000e+02 3.188600e+02
+1 1767     -8.917999e+01 4.354400e+02
+0 1768     -8.675000e+01 -1.150800e+02
+1 1768     4.776001e+01 -5.803003e+01
+7 1768     -1.553000e+02 -1.941998e+01
+15 1768     -1.357600e+02 -3.083002e+01
+0 1769     -2.711200e+02 3.998500e+02
+1 1769     7.660999e+01 4.769900e+02
+5 1769     1.324000e+02 -2.565100e+02
+7 1769     -4.832200e+02 4.346400e+02
+10 1769     -4.599500e+02 5.917300e+02
+14 1769     4.837000e+01 -3.466600e+02
+0 1770     -1.506500e+02 3.184200e+02
+1 1770     1.780200e+02 3.656300e+02
+2 1770     -4.228800e+02 3.765997e+01
+7 1770     -3.512500e+02 3.629600e+02
+11 1770     1.487000e+01 -4.285500e+02
+13 1770     7.062000e+01 5.400024e+00
+14 1770     1.620601e+02 -4.347500e+02
+0 1771     4.118600e+02 3.293200e+02
+1 1771     7.635100e+02 2.250000e+02
+7 1771     1.970300e+02 4.492200e+02
+0 1772     9.364001e+01 1.733700e+02
+1 1772     3.185500e+02 1.700100e+02
+6 1772     -4.113000e+01 2.217000e+02
+7 1772     -3.335999e+01 2.918000e+02
+13 1772     4.079100e+02 -7.407001e+01
+14 1772     5.898000e+02 -5.570800e+02
+15 1772     7.315002e+01 3.875800e+02
+0 1773     -2.004500e+02 4.211700e+02
+1 1773     1.531400e+02 4.799100e+02
+5 1773     2.042100e+02 -2.341000e+02
+7 1773     -4.141600e+02 4.649900e+02
+11 1773     -2.990997e+01 -3.360500e+02
+0 1774     -2.172300e+02 -4.476100e+02
+1 1774     -1.645000e+02 -3.328000e+02
+6 1774     -1.500900e+02 -6.226400e+02
+7 1774     -2.333400e+02 -3.857000e+02
+9 1774     -4.319000e+01 -4.198700e+02
+10 1774     -2.961400e+02 -3.990100e+02
+15 1774     -2.649400e+02 -4.977700e+02
+0 1775     3.682200e+02 -5.900024e+00
+1 1775     5.436300e+02 -9.279999e+01
+7 1775     2.618000e+02 1.569300e+02
+15 1775     4.742900e+02 1.791700e+02
+0 1776     -3.338400e+02 -1.295600e+02
+1 1776     -1.558200e+02 -6.030029e+00
+7 1776     -4.337900e+02 -9.921997e+01
+13 1776     1.707001e+01 -3.861400e+02
+0 1777     -3.007800e+02 -4.712700e+02
+1 1777     -2.478700e+02 -3.270800e+02
+6 1777     -2.372200e+02 -6.886200e+02
+7 1777     -3.135800e+02 -4.267000e+02
+15 1777     -3.754800e+02 -5.418900e+02
+0 1778     -1.175600e+02 6.821002e+01
+1 1778     8.589001e+01 1.249200e+02
+5 1778     4.498199e+02 -6.040200e+02
+6 1778     -2.589700e+02 2.998999e+01
+7 1778     -2.308800e+02 1.507700e+02
+12 1778     -2.192300e+02 8.565997e+01
+15 1778     -1.989600e+02 2.133600e+02
+0 1779     4.696000e+02 2.831900e+02
+1 1779     7.961700e+02 1.636300e+02
+6 1779     1.755900e+02 3.923500e+02
+7 1779     2.715800e+02 4.218200e+02
+10 1779     4.271500e+02 5.245200e+02
+13 1779     6.357900e+02 2.703003e+01
+14 1779     8.791600e+02 -4.337300e+02
+0 1780     -1.632700e+02 1.368600e+02
+1 1780     1.000900e+02 1.957700e+02
+7 1780     -3.216000e+02 1.875400e+02
+10 1780     -2.983900e+02 2.859100e+02
+15 1780     -2.596800e+02 2.998600e+02
+0 1781     -7.470001e+01 -7.539978e+00
+1 1781     9.484003e+01 4.144000e+01
+6 1781     -1.440000e+02 -2.862000e+01
+7 1781     -1.657400e+02 8.804999e+01
+10 1781     -1.795300e+02 1.244500e+02
+15 1781     -1.329000e+02 1.163900e+02
+0 1782     -9.198999e+01 2.387200e+02
+1 1782     2.062000e+02 2.738600e+02
+4 1782     -1.294100e+02 -2.919200e+02
+7 1782     -2.735800e+02 2.951600e+02
+9 1782     -3.952100e+02 5.267999e+01
+10 1782     -2.258300e+02 4.140500e+02
+11 1782     6.517999e+01 -5.041400e+02
+0 1783     5.353000e+02 -4.153100e+02
+1 1783     5.886400e+02 -5.674000e+02
+7 1783     4.828800e+02 -2.100100e+02
+0 1784     5.679200e+02 -1.637300e+02
+1 1784     7.298101e+02 -3.268500e+02
+2 1784     5.999500e+02 -1.619200e+02
+6 1784     5.005500e+02 -4.283002e+01
+7 1784     4.538800e+02 2.307001e+01
+8 1784     5.445601e+02 -1.672700e+02
+12 1784     5.704301e+02 -2.714001e+01
+13 1784     8.330500e+02 -3.459200e+02
+0 1785     6.048600e+02 1.556000e+01
+1 1785     8.391801e+02 -1.557900e+02
+2 1785     5.423300e+02 -5.789978e+00
+6 1785     4.567200e+02 1.543900e+02
+7 1785     4.537200e+02 1.954100e+02
+10 1785     6.073800e+02 2.228400e+02
+13 1785     8.252500e+02 -1.846600e+02
+15 1785     8.124200e+02 2.410300e+02
+0 1786     -2.949600e+02 -4.225600e+02
+1 1786     -2.252800e+02 -2.852100e+02
+4 1786     -5.385700e+02 -1.580700e+02
+7 1786     -3.195200e+02 -3.781500e+02
+10 1786     -3.891400e+02 -3.799800e+02
+15 1786     -3.727700e+02 -4.751200e+02
+0 1787     2.579500e+02 2.537800e+02
+1 1787     5.661000e+02 1.921400e+02
+4 1787     -1.536100e+02 -5.348101e+02
+7 1787     6.928998e+01 3.593200e+02
+14 1787     6.309000e+02 -4.858400e+02
+0 1788     -3.112000e+01 7.253998e+01
+1 1788     1.577200e+02 1.069500e+02
+7 1788     -1.336900e+02 1.768400e+02
+15 1788     -8.559003e+01 2.312300e+02
+0 1789     -1.987300e+02 4.309000e+02
+1 1789     1.566300e+02 4.892500e+02
+2 1789     -4.780000e+02 1.768000e+02
+7 1789     -4.146500e+02 4.751000e+02
+8 1789     -3.128200e+02 1.299700e+02
+11 1789     -2.890997e+01 -3.269700e+02
+12 1789     -5.118900e+02 3.968300e+02
+0 1790     5.803600e+02 -3.591998e+01
+1 1790     7.974600e+02 -2.016700e+02
+7 1790     4.361700e+02 1.404500e+02
+13 1790     8.063199e+02 -2.359700e+02
+15 1790     7.843101e+02 1.660400e+02
+0 1791     -1.605800e+02 -5.223800e+02
+1 1791     -1.404000e+02 -4.194200e+02
+4 1791     -6.541700e+02 -2.585800e+02
+6 1791     -3.273999e+01 -6.749600e+02
+7 1791     -1.563300e+02 -4.461200e+02
+0 1792     -1.599700e+02 3.328200e+02
+1 1792     1.723500e+02 3.823500e+02
+2 1792     -4.332400e+02 5.552002e+01
+7 1792     -3.626900e+02 3.770100e+02
+8 1792     -2.753100e+02 3.454001e+01
+10 1792     -3.181500e+02 5.201600e+02
+11 1792     6.750000e+00 -4.157300e+02
+15 1792     -2.811500e+02 5.711300e+02
+0 1793     1.991700e+02 3.023500e+02
+1 1793     5.240601e+02 2.570000e+02
+6 1793     -1.740800e+02 3.264100e+02
+7 1793     -3.997803e-02 3.961800e+02
+12 1793     -3.138000e+01 3.283700e+02
+13 1793     3.768600e+02 1.546997e+01
+14 1793     5.470601e+02 -4.372600e+02
+15 1793     2.176899e+02 5.790700e+02
+0 1794     6.178900e+02 -2.750600e+02
+1 1794     7.380100e+02 -4.585601e+02
+7 1794     5.253300e+02 -6.948999e+01
+12 1794     6.747500e+02 -1.200400e+02
+15 1794     8.621899e+02 -1.581800e+02
+0 1795     -6.881000e+01 2.963000e+02
+1 1795     2.503300e+02 3.233800e+02
+7 1795     -2.640900e+02 3.532700e+02
+15 1795     -1.512000e+02 5.324500e+02
+0 1796     2.068600e+02 -3.262000e+01
+1 1796     3.528000e+02 -6.537000e+01
+7 1796     1.259000e+02 1.154600e+02
+10 1796     1.496200e+02 1.244800e+02
+13 1796     5.581000e+02 -2.331300e+02
+0 1797     -8.640997e+01 1.727400e+02
+1 1797     1.873800e+02 2.090500e+02
+7 1797     -2.518900e+02 2.335500e+02
+8 1797     -1.448700e+02 -6.462000e+01
+0 1798     6.169000e+01 2.409100e+02
+1 1798     3.594800e+02 2.343300e+02
+7 1798     -1.205700e+02 3.196100e+02
+10 1798     -4.708002e+01 4.304200e+02
+11 1798     2.095300e+02 -5.006100e+02
+14 1798     4.178101e+02 -5.111200e+02
+0 1799     -1.654800e+02 -5.214700e+02
+1 1799     -1.445100e+02 -4.170400e+02
+7 1799     -1.616600e+02 -4.466100e+02
+0 1800     7.228300e+02 -3.541600e+02
+1 1800     8.260200e+02 -5.831600e+02
+7 1800     6.350601e+02 -1.226200e+02
+12 1800     8.148500e+02 -1.665900e+02
+0 1801     2.001100e+02 -1.415002e+01
+1 1801     3.515400e+02 -4.440997e+01
+7 1801     1.165600e+02 1.330400e+02
+10 1801     1.398500e+02 1.450500e+02
+13 1801     5.504200e+02 -2.169400e+02
+15 1801     2.391000e+02 1.452400e+02
+0 1802     -4.340500e+02 3.349500e+02
+1 1802     -9.589001e+01 4.533700e+02
+7 1802     -6.434400e+02 3.453300e+02
+11 1802     -2.412300e+02 -4.111600e+02
+12 1802     -7.732600e+02 2.376700e+02
+15 1802     -6.645700e+02 5.381100e+02
+0 1803     5.315000e+02 2.037700e+02
+1 1803     8.220100e+02 6.527002e+01
+0 1804     5.852200e+02 3.553003e+01
+1 1804     8.248500e+02 -1.279500e+02
+10 1804     5.826700e+02 2.445300e+02
+13 1804     8.021600e+02 -1.694100e+02
+0 1805     4.965997e+01 9.989990e+00
+1 1805     2.105699e+02 2.438000e+01
+2 1805     1.992000e+02 4.953998e+01
+7 1805     -3.601001e+01 1.323200e+02
+10 1805     -3.691998e+01 1.576300e+02
+15 1805     3.077002e+01 1.576300e+02
+0 1806     -5.849976e+00 -1.989200e+02
+1 1806     9.229999e+01 -1.613500e+02
+7 1806     -5.308002e+01 -8.446002e+01
+10 1806     -7.884003e+01 -8.978003e+01
+15 1806     -1.632001e+01 -1.328400e+02
+0 1807     1.458000e+02 -4.640015e+00
+1 1807     2.995000e+02 -1.804999e+01
+2 1807     3.037400e+02 5.997998e+01
+7 1807     6.294000e+01 1.347900e+02
+10 1807     7.631000e+01 1.509200e+02
+15 1807     1.635300e+02 1.513000e+02
+0 1808     -4.192400e+02 2.982500e+02
+1 1808     -8.954999e+01 4.145900e+02
+7 1808     -6.215900e+02 3.090300e+02
+10 1808     -6.265100e+02 4.553800e+02
+11 1808     -2.292800e+02 -4.446100e+02
+12 1808     -7.497500e+02 1.930000e+02
+0 1809     -7.946800e+02 4.166998e+01
+1 1809     -4.998300e+02 2.688500e+02
+0 1810     -4.253800e+02 9.700000e+01
+1 1810     -1.589300e+02 2.279600e+02
+4 1810     -1.766600e+02 -8.925000e+01
+10 1810     -6.051500e+02 2.123400e+02
+0 1811     -4.875000e+02 1.690300e+02
+1 1811     -1.903100e+02 3.097900e+02
+7 1811     -6.696500e+02 1.661100e+02
+0 1812     -4.783500e+02 1.632000e+02
+1 1812     -1.840400e+02 3.024300e+02
+7 1812     -6.579100e+02 1.617000e+02
+0 1813     -3.877900e+02 3.610500e+02
+1 1813     -4.659003e+01 4.685100e+02
+7 1813     -5.977200e+02 3.797000e+02
+10 1813     -5.977300e+02 5.353100e+02
+11 1813     -1.983800e+02 -3.869100e+02
+0 1814     2.966000e+02 -7.200012e+00
+1 1814     4.582900e+02 -6.865997e+01
+6 1814     2.662400e+02 9.457001e+01
+7 1814     2.030900e+02 1.517300e+02
+10 1814     2.505900e+02 1.634800e+02
+12 1814     3.034900e+02 1.351700e+02
+13 1814     6.217400e+02 -2.065500e+02
+15 1814     3.724301e+02 1.679300e+02
+0 1815     -4.501500e+02 2.212300e+02
+1 1815     -1.384600e+02 3.492700e+02
+10 1815     -6.534000e+02 3.587200e+02
+0 1816     -4.937200e+02 4.044500e+02
+1 1816     -1.368700e+02 5.343600e+02
+10 1816     -7.376400e+02 5.807900e+02
+0 1817     -2.035700e+02 -4.645699e+02
+1 1817     -1.583000e+02 -3.527900e+02
+6 1817     -1.228700e+02 -6.343500e+02
+7 1817     -2.148600e+02 -3.993100e+02
+10 1817     -2.781600e+02 -4.173000e+02
+0 1818     1.174200e+02 2.546002e+01
+1 1818     2.815900e+02 1.920001e+01
+2 1818     2.661801e+02 8.201001e+01
+7 1818     3.060999e+01 1.589900e+02
+10 1818     4.092999e+01 1.825200e+02
+15 1818     1.211900e+02 1.876300e+02
+0 1819     -2.754800e+02 3.076600e+02
+1 1819     5.003998e+01 3.871400e+02
+10 1819     -4.522700e+02 4.776400e+02
+15 1819     -4.387900e+02 5.195600e+02
+0 1820     -4.485300e+02 3.194900e+02
+1 1820     -1.108600e+02 4.480500e+02
+11 1820     -2.526600e+02 -4.248500e+02
+0 1821     -2.954999e+01 4.789900e+02
+1 1821     3.409100e+02 4.952500e+02
+2 1821     -3.176800e+02 2.355100e+02
+6 1821     -5.087600e+02 4.878500e+02
+7 1821     -2.532600e+02 5.430800e+02
+14 1821     2.845500e+02 -2.585800e+02
+0 1822     1.679800e+02 4.954100e+02
+1 1822     5.541801e+02 4.623500e+02
+11 1822     2.986700e+02 -2.614200e+02
+0 1823     -2.526600e+02 3.320800e+02
+1 1823     7.984003e+01 4.045700e+02
+0 1824     -2.824400e+02 4.601600e+02
+1 1824     7.990002e+01 5.386500e+02
+7 1824     -5.038000e+02 4.967400e+02
+0 1825     -4.471500e+02 4.104100e+02
+1 1825     -9.147998e+01 5.290100e+02
+5 1825     -4.203998e+01 -2.420100e+02
+10 1825     -6.793000e+02 5.904000e+02
+12 1825     -8.011500e+02 3.337900e+02
+0 1826     -5.057001e+01 4.703300e+02
+1 1826     3.168600e+02 4.918600e+02
+4 1826     1.549988e+00 -3.280100e+02
+5 1826     3.551000e+02 -1.804000e+02
+6 1826     -5.293100e+02 4.745600e+02
+7 1826     -2.719100e+02 5.324700e+02
+11 1826     1.028500e+02 -2.907600e+02
+13 1826     1.515400e+02 1.425700e+02
+14 1826     2.657900e+02 -2.672000e+02
+0 1827     -1.947700e+02 4.287600e+02
+1 1827     1.602000e+02 4.861100e+02
+4 1827     -1.206000e+01 -2.402500e+02
+7 1827     -4.101500e+02 4.731200e+02
+8 1827     -3.091300e+02 1.266000e+02
+12 1827     -5.066300e+02 3.947200e+02
+0 1828     -4.213100e+02 9.700012e+00
+1 1828     -1.859000e+02 1.462100e+02
+2 1828     -5.605000e+02 -2.715100e+02
+13 1828     -9.632001e+01 -2.711400e+02
+15 1828     -5.972900e+02 9.072000e+01
+0 1829     -4.465800e+02 1.000800e+02
+1 1829     -1.773200e+02 2.361900e+02
+2 1829     -6.545300e+02 -2.002000e+02
+7 1829     -6.085200e+02 1.046000e+02
+13 1829     -1.408700e+02 -1.951500e+02
+0 1830     -2.543000e+02 -5.523800e+02
+1 1830     -2.354400e+02 -4.155500e+02
+4 1830     -6.572800e+02 -1.849400e+02
+6 1830     -1.219600e+02 -7.532600e+02
+7 1830     -2.445700e+02 -4.959600e+02
+9 1830     -1.150024e+00 -5.082600e+02
+0 1831     -2.669800e+02 -4.552100e+02
+1 1831     -2.118200e+02 -3.236100e+02
+4 1831     -5.711900e+02 -1.776200e+02
+6 1831     -2.055300e+02 -6.552500e+02
+7 1831     -2.822100e+02 -4.038700e+02
+9 1831     -8.638000e+01 -4.455400e+02
+0 1832     7.502002e+01 8.785001e+01
+1 1832     2.611899e+02 9.334000e+01
+2 1832     1.872400e+02 1.236000e+02
+5 1832     7.141899e+02 -5.687300e+02
+6 1832     1.297998e+01 1.387600e+02
+9 1832     4.184003e+01 1.949700e+02
+12 1832     3.603003e+01 1.917900e+02
+0 1833     -1.006100e+02 6.903998e+01
+1 1833     1.022300e+02 1.207400e+02
+3 1833     -1.492700e+02 -3.164500e+02
+5 1833     4.688800e+02 -6.022900e+02
+8 1833     -9.510010e+00 -3.644000e+01
+9 1833     -1.632700e+02 8.145999e+01
+10 1833     -2.177700e+02 2.112400e+02
+12 1833     -1.992400e+02 9.153003e+01
+15 1833     -1.761000e+02 2.167600e+02
+0 1834     2.330300e+02 -4.247998e+01
+1 1834     3.772700e+02 -8.321997e+01
+10 1834     1.803400e+02 1.157000e+02
+0 1835     -5.460999e+01 -1.149000e+02
+1 1835     7.628998e+01 -6.673999e+01
+0 1836     3.180100e+02 -2.449100e+02
+1 1836     4.061300e+02 -3.141000e+02
+10 1836     2.985000e+02 -1.078900e+02
+0 1837     2.206100e+02 2.391300e+02
+1 1837     5.213800e+02 1.881100e+02
+10 1837     1.396200e+02 4.460600e+02
+0 1838     -1.858800e+02 2.220700e+02
+1 1838     1.097700e+02 2.828500e+02
+0 1839     -1.957000e+02 2.128700e+02
+1 1839     9.690002e+01 2.765900e+02
+7 1839     -3.727400e+02 2.551000e+02
+10 1839     -3.460600e+02 3.727700e+02
+11 1839     -3.175000e+01 -5.286000e+02
+14 1839     1.411600e+02 -5.511801e+02
+15 1839     -3.137800e+02 3.995400e+02
+0 1840     2.526600e+02 1.384600e+02
+1 1840     4.638800e+02 9.045999e+01
+10 1840     1.858500e+02 3.285500e+02
+15 1840     2.951100e+02 3.619900e+02
+0 1841     1.479700e+02 6.995001e+01
+1 1841     3.261801e+02 5.450000e+01
+0 1842     2.110200e+02 5.103998e+01
+1 1842     3.847700e+02 1.684003e+01
+0 1843     2.110200e+02 5.103998e+01
+1 1843     3.847700e+02 1.684003e+01
+15 1843     2.463400e+02 2.360800e+02
+0 1844     3.641899e+02 -1.934003e+01
+1 1844     5.334800e+02 -1.045700e+02
+6 1844     3.124000e+02 8.835999e+01
+7 1844     2.615699e+02 1.443200e+02
+10 1844     3.297100e+02 1.568200e+02
+12 1844     3.612600e+02 1.219100e+02
+13 1844     6.667500e+02 -2.173600e+02
+15 1844     4.702900e+02 1.601100e+02
+0 1845     3.562000e+02 -3.010999e+01
+1 1845     5.204000e+02 -1.128400e+02
+7 1845     2.566200e+02 1.337300e+02
+10 1845     3.217000e+02 1.431900e+02
+15 1845     4.598800e+02 1.443700e+02
+0 1846     2.233400e+02 -2.628998e+01
+1 1846     3.721000e+02 -6.409998e+01
+7 1846     1.401600e+02 1.242000e+02
+15 1846     2.727500e+02 1.316300e+02
+0 1847     -1.235200e+02 -3.454999e+01
+1 1847     4.216998e+01 2.923999e+01
+10 1847     -2.332000e+02 8.796002e+01
+15 1847     -1.948500e+02 7.313000e+01
+0 1848     2.150100e+02 -7.503003e+01
+1 1848     3.487600e+02 -1.093900e+02
+6 1848     2.213500e+02 4.169983e+00
+7 1848     1.398900e+02 7.544000e+01
+8 1848     3.491100e+02 -5.148999e+01
+10 1848     1.632300e+02 7.675000e+01
+13 1848     5.691500e+02 -2.691500e+02
+15 1848     2.677300e+02 6.427002e+01
+0 1849     4.390002e+01 -1.347600e+02
+1 1849     1.604200e+02 -1.148800e+02
+7 1849     -1.554999e+01 -1.201001e+01
+15 1849     4.201001e+01 -3.953003e+01
+0 1850     1.414500e+02 -2.445200e+02
+1 1850     2.191500e+02 -2.525200e+02
+15 1850     1.884900e+02 -1.754300e+02
+0 1851     6.723400e+02 -2.669600e+02
+1 1851     8.044000e+02 -4.722300e+02
+0 1852     -1.308300e+02 2.355100e+02
+1 1852     1.674900e+02 2.811100e+02
+0 1853     3.295000e+02 2.076200e+02
+1 1853     6.230400e+02 1.252500e+02
+7 1853     1.469200e+02 3.265600e+02
+10 1853     2.690400e+02 4.194700e+02
+0 1854     -1.865500e+02 2.295200e+02
+1 1854     1.113800e+02 2.900400e+02
+7 1854     -3.676400e+02 2.722900e+02
+10 1854     -3.379800e+02 3.935800e+02
+13 1854     6.100000e+01 -7.141998e+01
+14 1854     1.471100e+02 -5.327900e+02
+0 1855     3.103300e+02 2.029400e+02
+1 1855     6.009200e+02 1.263500e+02
+7 1855     1.301500e+02 3.196300e+02
+0 1856     2.854100e+02 1.972100e+02
+1 1856     5.725900e+02 1.277100e+02
+10 1856     2.189399e+02 4.028400e+02
+0 1857     2.850800e+02 1.905900e+02
+1 1857     5.696600e+02 1.210400e+02
+0 1858     1.025600e+02 1.854000e+02
+1 1858     3.310500e+02 1.789900e+02
+0 1859     2.640100e+02 1.086300e+02
+1 1859     4.637500e+02 5.716998e+01
+7 1859     1.501100e+02 2.575200e+02
+0 1860     -4.733700e+02 9.832999e+01
+1 1860     -2.022800e+02 2.412600e+02
+0 1861     4.049700e+02 3.398999e+01
+1 1861     6.054399e+02 -6.608002e+01
+6 1861     3.028200e+02 1.425500e+02
+7 1861     2.817400e+02 1.954000e+02
+10 1861     3.726000e+02 2.233400e+02
+12 1861     3.651899e+02 1.704900e+02
+0 1862     -1.105400e+02 5.733002e+01
+1 1862     8.827002e+01 1.125000e+02
+7 1862     -2.208400e+02 1.416500e+02
+10 1862     -2.283200e+02 1.965400e+02
+15 1862     -1.881700e+02 1.995300e+02
+0 1863     2.103600e+02 -9.940997e+01
+1 1863     3.375400e+02 -1.327600e+02
+2 1863     3.894000e+02 -3.251001e+01
+6 1863     2.236900e+02 -2.584998e+01
+8 1863     3.504600e+02 -7.570001e+01
+13 1863     5.672700e+02 -2.916100e+02
+0 1864     1.805900e+02 -1.428900e+02
+1 1864     2.919500e+02 -1.659600e+02
+12 1864     2.322600e+02 -3.773999e+01
+13 1864     5.508400e+02 -3.307500e+02
+15 1864     2.288800e+02 -3.275000e+01
+0 1865     3.152800e+02 -2.396500e+02
+1 1865     4.038700e+02 -3.076200e+02
+7 1865     2.593199e+02 -7.214001e+01
+10 1865     2.946899e+02 -1.017700e+02
+15 1865     4.282400e+02 -1.466700e+02
+0 1866     -2.093800e+02 -4.262000e+02
+1 1866     -1.495900e+02 -3.157500e+02
+0 1867     -4.377100e+02 -5.234200e+02
+1 1867     -3.863700e+02 -3.305000e+02
+0 1868     1.171400e+02 1.835300e+02
+1 1868     3.457900e+02 1.729500e+02
+15 1868     1.043200e+02 4.048100e+02
+0 1869     2.932400e+02 6.726001e+01
+1 1869     4.805200e+02 7.090027e+00
+7 1869     1.851700e+02 2.218700e+02
+10 1869     2.396200e+02 2.495200e+02
+12 1869     2.725300e+02 2.115700e+02
+13 1869     6.046100e+02 -1.451600e+02
+15 1869     3.592300e+02 2.693700e+02
+0 1870     3.073900e+02 -1.112500e+02
+1 1870     4.351300e+02 -1.765700e+02
+15 1870     4.001500e+02 2.717999e+01
+0 1871     7.294000e+01 -1.191300e+02
+1 1871     1.946400e+02 -1.088200e+02
+7 1871     8.090027e+00 7.359985e+00
+15 1871     7.945001e+01 -1.460999e+01
+0 1872     2.686600e+02 -1.879800e+02
+1 1872     3.679800e+02 -2.395900e+02
+7 1872     2.106100e+02 -2.731000e+01
+10 1872     2.363800e+02 -4.791998e+01
+15 1872     3.561200e+02 -8.241998e+01
+0 1873     1.251100e+02 -2.094000e+02
+1 1873     2.151600e+02 -2.130900e+02
+0 1874     5.106899e+02 -3.267400e+02
+1 1874     5.982600e+02 -4.701200e+02
+0 1875     -2.646000e+02 -4.134500e+02
+1 1875     -1.945100e+02 -2.869500e+02
+0 1876     2.461000e+02 1.341500e+02
+1 1876     4.542000e+02 8.807001e+01
+7 1876     1.280800e+02 2.794800e+02
+10 1876     1.790800e+02 3.226400e+02
+15 1876     2.867800e+02 3.552300e+02
+0 1877     -1.464300e+02 6.528003e+01
+1 1877     6.200000e+01 1.288700e+02
+10 1877     -2.708500e+02 2.024200e+02
+15 1877     -2.359600e+02 2.051300e+02
+0 1878     2.659600e+02 4.088000e+01
+1 1878     4.399700e+02 -1.092999e+01
+7 1878     1.666400e+02 1.935300e+02
+10 1878     2.112200e+02 2.169100e+02
+15 1878     3.237000e+02 2.296800e+02
+0 1879     2.086300e+02 -1.337300e+02
+1 1879     3.244000e+02 -1.661600e+02
+7 1879     1.439500e+02 1.606000e+01
+10 1879     1.616500e+02 8.059998e+00
+13 1879     5.721500e+02 -3.216000e+02
+15 1879     2.666899e+02 -1.656000e+01
+0 1880     1.519301e+02 -1.443800e+02
+1 1880     2.625601e+02 -1.580400e+02
+4 1880     -4.027000e+02 -5.359200e+02
+7 1880     9.277002e+01 -2.469971e+00
+10 1880     9.806000e+01 -9.760010e+00
+13 1880     5.269700e+02 -3.340000e+02
+15 1880     1.903700e+02 -3.802002e+01
+0 1881     -1.293100e+02 -5.150000e+02
+1 1881     -1.091700e+02 -4.231100e+02
+7 1881     -1.263000e+02 -4.322400e+02
+0 1882     -2.706900e+02 3.847998e+01
+1 1882     -3.726001e+01 1.325700e+02
+0 1883     6.602600e+02 -3.143400e+02
+1 1883     7.701899e+02 -5.157000e+02
+7 1883     5.712200e+02 -9.676001e+01
+0 1884     -2.513900e+02 -4.256800e+02
+1 1884     -1.870700e+02 -3.017700e+02
+6 1884     -2.067500e+02 -6.152300e+02
+7 1884     -2.731000e+02 -3.718800e+02
+0 1885     3.218300e+02 5.463000e+01
+1 1885     5.091200e+02 -1.579999e+01
+0 1886     -2.702900e+02 2.750000e+01
+1 1886     -4.103003e+01 1.219500e+02
+0 1887     -2.102500e+02 -5.485500e+02
+1 1887     -1.948700e+02 -4.274400e+02
+4 1887     -6.646500e+02 -2.189000e+02
+6 1887     -7.339001e+01 -7.252200e+02
+7 1887     -1.996600e+02 -4.801300e+02
+9 1887     3.684998e+01 -4.843000e+02
+0 1888     3.997900e+02 -2.261700e+02
+1 1888     5.110800e+02 -3.252900e+02
+7 1888     3.237900e+02 -5.390997e+01
+0 1889     -1.127800e+02 -5.129200e+02
+1 1889     -9.290997e+01 -4.268200e+02
+0 1890     3.732400e+02 -2.179800e+02
+1 1890     4.803300e+02 -3.082600e+02
+10 1890     3.592500e+02 -7.117999e+01
+15 1890     5.078800e+02 -1.103400e+02
+0 1891     -3.827300e+02 -5.270400e+02
+1 1891     -3.398300e+02 -3.512200e+02
+0 1892     2.010000e+02 -2.765002e+01
+1 1892     3.481600e+02 -5.803998e+01
+2 1892     3.598300e+02 4.445001e+01
+7 1892     1.194200e+02 1.201200e+02
+10 1892     1.422900e+02 1.297200e+02
+15 1892     2.422300e+02 1.269800e+02
+0 1893     -4.076100e+02 7.799988e+00
+1 1893     -1.747100e+02 1.407400e+02
+15 1893     -5.789600e+02 8.976999e+01
+0 1894     -4.044900e+02 -1.035800e+02
+1 1894     -2.104900e+02 3.791998e+01
+0 1895     6.220500e+02 9.304999e+01
+1 1895     8.819399e+02 -7.894000e+01
+2 1895     5.401700e+02 8.334003e+01
+6 1895     4.574301e+02 2.475700e+02
+7 1895     4.603199e+02 2.736800e+02
+8 1895     5.024100e+02 3.895001e+01
+10 1895     6.211700e+02 3.154200e+02
+12 1895     5.403300e+02 2.571500e+02
+15 1895     8.271300e+02 3.519900e+02
+0 1896     4.241600e+02 -2.546997e+01
+1 1896     5.999500e+02 -1.316800e+02
+6 1896     3.597800e+02 9.282001e+01
+7 1896     3.145500e+02 1.447300e+02
+10 1896     4.001801e+02 1.566400e+02
+12 1896     4.160400e+02 1.209100e+02
+15 1896     5.556801e+02 1.599000e+02
+0 1897     1.297200e+02 -1.958900e+02
+1 1897     2.251801e+02 -2.013800e+02
+0 1898     3.291000e+02 2.031800e+02
+1 1898     6.211400e+02 1.208300e+02
+7 1898     1.475300e+02 3.226200e+02
+10 1898     2.691100e+02 4.144300e+02
+0 1899     3.536000e+02 -2.568400e+02
+1 1899     4.478500e+02 -3.406400e+02
+15 1899     4.855100e+02 -1.655400e+02
+0 1900     5.477200e+02 -3.788100e+02
+1 1900     6.170100e+02 -5.357900e+02
+0 1901     3.146801e+02 -2.196600e+02
+1 1901     4.069200e+02 -2.869700e+02
+7 1901     2.581200e+02 -5.154999e+01
+10 1901     2.920601e+02 -7.927002e+01
+0 1902     -1.816900e+02 -1.494100e+02
+1 1902     -3.396002e+01 -6.467999e+01
+15 1902     -2.543600e+02 -9.094000e+01
+0 1903     -4.022400e+02 -1.505800e+02
+1 1903     -2.249900e+02 -6.030029e+00
+0 1904     -1.393000e+02 -1.204800e+02
+1 1904     -4.109985e+00 -4.704999e+01
+6 1904     -1.581800e+02 -1.750900e+02
+7 1904     -2.074400e+02 -3.412000e+01
+10 1904     -2.416800e+02 -1.363000e+01
+15 1904     -2.059800e+02 -4.526001e+01
+0 1905     -6.913000e+01 -1.710200e+02
+1 1905     4.258002e+01 -1.155700e+02
+4 1905     -3.836000e+02 -3.564000e+02
+10 1905     -1.552600e+02 -6.446002e+01
+13 1905     3.349301e+02 -3.767200e+02
+15 1905     -1.056900e+02 -1.038000e+02
+0 1906     1.938199e+02 -8.215997e+01
+1 1906     3.247300e+02 -1.095400e+02
+2 1906     3.722700e+02 -1.404999e+01
+6 1906     2.044400e+02 -1.046002e+01
+8 1906     3.361000e+02 -6.013000e+01
+0 1907     2.001801e+02 4.268500e+02
+1 1907     5.714000e+02 3.822900e+02
+7 1907     -2.516998e+01 5.142200e+02
+11 1907     3.348500e+02 -3.203500e+02
+14 1907     5.112200e+02 -3.047100e+02
+0 1908     -4.263300e+02 8.130005e+00
+1 1908     -1.908900e+02 1.459700e+02
+15 1908     -6.036300e+02 8.834000e+01
+0 1909     1.462200e+02 -2.198500e+02
+1 1909     2.319399e+02 -2.298300e+02
+7 1909     1.018500e+02 -7.750000e+01
+10 1909     9.881000e+01 -9.783002e+01
+15 1909     1.919301e+02 -1.415700e+02
+0 1910     1.658002e+01 -2.784000e+02
+1 1910     9.626001e+01 -2.463500e+02
+4 1910     -4.836600e+02 -4.140800e+02
+10 1910     -4.428003e+01 -1.780600e+02
+12 1910     7.772998e+01 -2.556300e+02
+13 1910     4.144301e+02 -4.715500e+02
+0 1911     3.164001e+01 -2.663400e+02
+1 1911     1.122400e+02 -2.391200e+02
+6 1911     9.352002e+01 -2.787900e+02
+10 1911     -2.854999e+01 -1.633000e+02
+12 1911     9.590002e+01 -2.357700e+02
+15 1911     4.414001e+01 -2.194000e+02
+0 1912     2.382200e+02 -2.335400e+02
+1 1912     3.179500e+02 -2.743900e+02
+7 1912     1.936100e+02 -7.446997e+01
+8 1912     4.257300e+02 -1.701100e+02
+10 1912     2.057200e+02 -1.031100e+02
+15 1912     3.189500e+02 -1.479700e+02
+0 1913     -6.991998e+01 -5.719200e+02
+1 1913     -7.542999e+01 -4.955300e+02
+4 1913     -7.248700e+02 -3.299200e+02
+9 1913     1.787500e+02 -4.463000e+02
+10 1913     -1.120000e+02 -5.250100e+02
+0 1914     -7.866998e+01 -5.549399e+02
+1 1914     -7.695001e+01 -4.769200e+02
+7 1914     -6.609998e+01 -4.602900e+02
+0 1915     3.294000e+01 5.569000e+02
+1 1915     4.262800e+02 5.594000e+02
+2 1915     -2.654900e+02 3.236100e+02
+3 1915     -3.962600e+02 -8.880005e+00
+5 1915     4.383400e+02 -8.956000e+01
+8 1915     -1.391500e+02 2.493500e+02
+9 1915     -3.804000e+02 3.476300e+02
+12 1915     -2.790900e+02 5.798600e+02
+13 1915     2.155100e+02 2.195900e+02
+14 1915     3.451300e+02 -1.767500e+02
+0 1916     -5.910600e+02 1.203003e+01
+1 1916     -3.359600e+02 1.927800e+02
+7 1916     -7.433600e+02 -7.739990e+00
+0 1917     6.853003e+01 1.655100e+02
+1 1917     2.886700e+02 1.695500e+02
+10 1917     -3.090997e+01 3.413200e+02
+14 1917     5.690500e+02 -5.667500e+02
+0 1918     1.006700e+02 2.164001e+01
+1 1918     2.629700e+02 2.100000e+01
+15 1918     9.839001e+01 1.805500e+02
+0 1919     1.262700e+02 -6.010999e+01
+1 1919     2.628700e+02 -6.716998e+01
+2 1919     3.055000e+02 -2.600098e-01
+3 1919     2.097800e+02 -3.056100e+02
+4 1919     -3.330000e+02 -5.144100e+02
+6 1919     1.314700e+02 -5.140015e+00
+7 1919     5.287000e+01 7.604999e+01
+15 1919     1.438700e+02 7.256000e+01
+0 1920     1.340500e+02 -7.435999e+01
+1 1920     2.668800e+02 -8.370001e+01
+2 1920     3.178500e+02 -1.389001e+01
+7 1920     6.253998e+01 6.321002e+01
+8 1920     2.895400e+02 -6.089001e+01
+10 1920     6.945001e+01 6.889001e+01
+13 1920     5.021500e+02 -2.740000e+02
+15 1920     1.565200e+02 5.442999e+01
+0 1921     1.374300e+02 -4.444000e+01
+1 1921     2.787600e+02 -5.489001e+01
+2 1921     3.111600e+02 1.890997e+01
+3 1921     2.135601e+02 -2.875100e+02
+8 1921     2.849400e+02 -3.414999e+01
+10 1921     7.014001e+01 1.035600e+02
+15 1921     1.570900e+02 9.557999e+01
+0 1922     -4.289001e+01 5.042400e+02
+1 1922     3.336200e+02 5.244500e+02
+6 1922     -5.287400e+02 5.182900e+02
+0 1923     5.637400e+02 2.830300e+02
+1 1923     8.812100e+02 1.411700e+02
+6 1923     3.363600e+02 4.382000e+02
+9 1923     2.223800e+02 3.025200e+02
+12 1923     4.247000e+02 4.446700e+02
+0 1924     2.305601e+02 8.440002e+00
+1 1924     3.906500e+02 -3.144000e+01
+6 1924     2.082500e+02 9.839001e+01
+7 1924     1.406200e+02 1.590300e+02
+8 1924     3.372800e+02 1.776001e+01
+10 1924     1.725800e+02 1.747300e+02
+15 1924     2.782800e+02 1.802900e+02
+0 1925     8.735999e+01 3.816998e+01
+1 1925     2.556100e+02 4.103998e+01
+2 1925     2.272500e+02 8.688000e+01
+6 1925     5.215997e+01 9.067999e+01
+7 1925     -3.020020e+00 1.667600e+02
+8 1925     2.180900e+02 2.401999e+01
+10 1925     4.169983e+00 1.943700e+02
+12 1925     7.053003e+01 1.435300e+02
+15 1925     7.839001e+01 2.011900e+02
+0 1926     -1.073200e+02 7.290997e+01
+1 1926     9.760999e+01 1.262600e+02
+2 1926     -7.101001e+01 1.070007e+00
+3 1926     -1.610700e+02 -3.162000e+02
+5 1926     4.592200e+02 -5.986300e+02
+6 1926     -2.514200e+02 3.815002e+01
+7 1926     -2.223800e+02 1.565400e+02
+8 1926     -1.859998e+01 -3.617999e+01
+12 1926     -2.107000e+02 9.321997e+01
+13 1926     2.365000e+02 -1.773700e+02
+15 1926     -1.856400e+02 2.211700e+02
+0 1927     3.597800e+02 4.663700e+02
+1 1927     7.608500e+02 3.816900e+02
+2 1927     2.984998e+01 2.295600e+02
+5 1927     7.661500e+02 -1.757100e+02
+6 1927     -8.632001e+01 5.533400e+02
+7 1927     1.199000e+02 5.713200e+02
+9 1927     -1.254800e+02 2.731000e+02
+11 1927     4.798101e+02 -2.761200e+02
+0 1928     2.325500e+02 4.897800e+02
+1 1928     6.245000e+02 4.399500e+02
+2 1928     -8.213000e+01 2.500800e+02
+4 1928     -6.570007e+00 -5.082600e+02
+5 1928     6.346100e+02 -1.552900e+02
+6 1928     -2.243700e+02 5.551900e+02
+7 1928     -2.270020e+00 5.814000e+02
+8 1928     1.260999e+01 1.942100e+02
+9 1928     -2.207200e+02 2.892800e+02
+12 1928     -5.803998e+01 5.281500e+02
+13 1928     3.738900e+02 1.746400e+02
+14 1928     5.396100e+02 -2.365300e+02
+0 1929     1.684100e+02 5.742400e+02
+1 1929     5.770900e+02 5.447600e+02
+6 1929     -3.080900e+02 6.498100e+02
+12 1929     -1.396400e+02 6.172300e+02
+0 1930     -4.396002e+01 -5.401001e+01
+1 1930     1.069800e+02 -1.195001e+01
+2 1930     1.043100e+02 -6.290997e+01
+6 1930     -7.883002e+01 -6.617999e+01
+7 1930     -1.232600e+02 4.904999e+01
+8 1930     1.133100e+02 -9.584998e+01
+10 1930     -1.382900e+02 7.444000e+01
+12 1930     -6.563000e+01 -1.134998e+01
+13 1930     3.330000e+02 -2.753100e+02
+0 1931     4.921997e+01 -2.108002e+01
+1 1931     2.001500e+02 -5.809998e+00
+2 1931     2.111400e+02 1.864001e+01
+6 1931     3.228998e+01 1.264001e+01
+7 1931     -3.108002e+01 1.012600e+02
+10 1931     -3.447998e+01 1.220500e+02
+13 1931     4.210100e+02 -2.353700e+02
+15 1931     3.421002e+01 1.150300e+02
+0 1932     1.224100e+02 1.704999e+01
+1 1932     2.830100e+02 1.026001e+01
+2 1932     2.723199e+02 7.584003e+01
+6 1932     9.975000e+01 7.846002e+01
+7 1932     3.573999e+01 1.519100e+02
+10 1932     4.654999e+01 1.734000e+02
+12 1932     1.187000e+02 1.298900e+02
+15 1932     1.284700e+02 1.772400e+02
+0 1933     7.789001e+01 -2.520020e+00
+1 1933     2.334600e+02 4.349976e+00
+2 1933     2.353800e+02 4.648999e+01
+4 1933     -2.844900e+02 -4.752400e+02
+7 1933     -5.109985e+00 1.255400e+02
+9 1933     8.627002e+01 1.323700e+02
+10 1933     -2.760010e+00 1.465200e+02
+15 1933     7.053003e+01 1.444800e+02
+0 1934     -2.952300e+02 4.042100e+02
+1 1934     5.358002e+01 4.866000e+02
+8 1934     -3.941300e+02 1.017700e+02
+10 1934     -4.914800e+02 5.946500e+02
+11 1934     -1.164900e+02 -3.513300e+02
+12 1934     -6.217200e+02 3.526200e+02
+0 1935     -3.005700e+02 4.162900e+02
+1 1935     5.121002e+01 5.001600e+02
+7 1935     -5.155600e+02 4.479700e+02
+11 1935     -1.201200e+02 -3.401900e+02
+0 1936     3.069800e+02 -2.520001e+01
+1 1936     4.638500e+02 -9.040002e+01
+7 1936     2.151300e+02 1.347400e+02
+10 1936     2.642600e+02 1.441100e+02
+0 1937     2.810300e+02 5.156000e+01
+1 1937     4.608000e+02 -5.049988e+00
+7 1937     1.780800e+02 2.059000e+02
+10 1937     2.270400e+02 2.303300e+02
+13 1937     5.996700e+02 -1.579800e+02
+15 1937     3.437800e+02 2.461500e+02
+0 1938     3.213600e+02 -4.200012e+00
+1 1938     4.870500e+02 -7.415002e+01
+7 1938     2.238101e+02 1.564800e+02
+10 1938     2.787300e+02 1.694200e+02
+0 1939     3.474700e+02 -1.477400e+02
+1 1939     4.661500e+02 -2.267300e+02
+12 1939     4.014700e+02 -9.539978e+00
+0 1940     2.461100e+02 -3.064400e+02
+1 1940     3.152700e+02 -3.506700e+02
+7 1940     2.029000e+02 -1.518800e+02
+10 1940     2.219200e+02 -1.855700e+02
+15 1940     3.425500e+02 -2.464300e+02
+0 1941     3.163800e+02 4.352002e+01
+1 1941     4.978700e+02 -2.416998e+01
+7 1941     2.101400e+02 2.017000e+02
+10 1941     2.687900e+02 2.249100e+02
+15 1941     3.945900e+02 2.404700e+02
+0 1942     3.032900e+02 4.732001e+01
+1 1942     4.837700e+02 -1.714001e+01
+7 1942     1.980800e+02 2.040800e+02
+10 1942     2.530300e+02 2.272100e+02
+15 1942     3.751400e+02 2.441500e+02
+0 1943     3.105200e+02 6.516998e+01
+1 1943     5.000100e+02 -9.000244e-01
+7 1943     2.007600e+02 2.217300e+02
+15 1943     3.840400e+02 2.691400e+02
+0 1944     3.005100e+02 -2.069200e+02
+1 1944     3.936400e+02 -2.691200e+02
+7 1944     2.452400e+02 -3.941998e+01
+10 1944     2.740400e+02 -6.637000e+01
+0 1945     2.571700e+02 5.645001e+01
+1 1945     4.365100e+02 7.440002e+00
+7 1945     1.550900e+02 2.078400e+02
+13 1945     5.808900e+02 -1.549400e+02
+15 1945     3.091100e+02 2.497200e+02
+0 1946     1.838500e+02 5.806000e+01
+1 1946     3.585601e+02 3.223999e+01
+10 1946     1.137500e+02 2.274900e+02
+12 1946     1.706100e+02 1.880500e+02
+13 1946     5.250400e+02 -1.575000e+02
+15 1946     2.078600e+02 2.417700e+02
+0 1947     1.721200e+02 1.646997e+01
+1 1947     3.324700e+02 -5.479980e+00
+7 1947     8.408002e+01 1.591000e+02
+0 1948     -1.948500e+02 3.886600e+02
+1 1948     1.505800e+02 4.469300e+02
+2 1948     -4.720400e+02 1.247900e+02
+7 1948     -4.049500e+02 4.314400e+02
+8 1948     -3.071900e+02 8.839999e+01
+10 1948     -3.668900e+02 5.850100e+02
+12 1948     -4.999600e+02 3.455300e+02
+14 1948     1.212900e+02 -3.580500e+02
+0 1949     1.078900e+02 3.953400e+02
+1 1949     4.641801e+02 3.746000e+02
+7 1949     -1.090100e+02 4.722000e+02
+9 1949     -3.004900e+02 1.897300e+02
+10 1949     -7.840027e+00 6.216200e+02
+14 1949     4.208300e+02 -3.432200e+02
+0 1950     5.813300e+02 -5.246002e+01
+1 1950     7.916801e+02 -2.189400e+02
+0 1951     3.340400e+02 -6.696002e+01
+1 1951     4.813800e+02 -1.417200e+02
+7 1951     2.456000e+02 9.713000e+01
+15 1951     4.328400e+02 9.103000e+01
+0 1952     -7.240997e+01 -1.390800e+02
+1 1952     5.210999e+01 -8.466998e+01
+0 1953     -2.640015e+00 4.491400e+02
+1 1953     3.618600e+02 4.584500e+02
+0 1954     -2.640015e+00 4.491400e+02
+1 1954     3.618600e+02 4.584500e+02
+0 1955     4.431801e+02 3.067300e+02
+1 1955     7.764500e+02 1.956800e+02
+7 1955     2.421400e+02 4.399900e+02
+14 1955     8.409200e+02 -4.106000e+02
+0 1956     9.951001e+01 3.953700e+02
+1 1956     4.551100e+02 3.769100e+02
+0 1957     2.522200e+02 2.452700e+02
+1 1957     5.565900e+02 1.855000e+02
+0 1958     3.045699e+02 2.312800e+02
+1 1958     6.063300e+02 1.562600e+02
+10 1958     2.386000e+02 4.451300e+02
+0 1959     5.449700e+02 8.473001e+01
+1 1959     7.987700e+02 -6.409998e+01
+7 1959     3.851100e+02 2.503700e+02
+10 1959     5.316801e+02 2.976600e+02
+15 1959     7.205000e+02 3.284900e+02
+0 1960     5.771300e+02 6.128998e+01
+1 1960     8.245500e+02 -9.851001e+01
+7 1960     4.201300e+02 2.340200e+02
+10 1960     5.702100e+02 2.740400e+02
+15 1960     7.678800e+02 3.007300e+02
+0 1961     5.389900e+02 6.834998e+01
+1 1961     7.873101e+02 -7.904999e+01
+0 1962     6.026000e+02 1.275000e+01
+1 1962     8.357100e+02 -1.575300e+02
+6 1962     4.548199e+02 1.504600e+02
+7 1962     4.517800e+02 1.924200e+02
+15 1962     8.089500e+02 2.370300e+02
+0 1963     5.512400e+02 -4.807001e+01
+1 1963     7.600200e+02 -2.041200e+02
+0 1964     1.908600e+02 -1.184998e+01
+1 1964     3.430100e+02 -3.939001e+01
+7 1964     1.075500e+02 1.341500e+02
+15 1964     2.261400e+02 1.471200e+02
+0 1965     6.717300e+02 -1.257700e+02
+1 1965     8.649200e+02 -3.270100e+02
+0 1966     6.752100e+02 -1.287700e+02
+1 1966     8.677100e+02 -3.313700e+02
+0 1967     1.683500e+02 -3.827002e+01
+1 1967     3.112900e+02 -5.865997e+01
+6 1967     1.671000e+02 3.237000e+01
+15 1967     1.983500e+02 1.079700e+02
+0 1968     3.877100e+02 -1.012600e+02
+1 1968     5.284399e+02 -1.944200e+02
+12 1968     4.187800e+02 4.391998e+01
+0 1969     -1.778998e+01 -1.675000e+01
+1 1969     1.406600e+02 1.714001e+01
+0 1970     3.567800e+02 -1.420600e+02
+1 1970     4.782100e+02 -2.243500e+02
+0 1971     3.427400e+02 -1.432000e+02
+1 1971     4.632000e+02 -2.206600e+02
+0 1972     3.237000e+02 -1.781200e+02
+1 1972     4.287100e+02 -2.486000e+02
+0 1973     -8.780029e+00 -1.148100e+02
+1 1973     1.174500e+02 -7.970001e+01
+6 1973     6.799927e-01 -1.138500e+02
+0 1974     -1.015997e+01 -1.182000e+02
+1 1974     1.148500e+02 -8.294000e+01
+7 1974     -7.389001e+01 -5.750000e+00
+10 1974     -9.239001e+01 2.700012e+00
+15 1974     -3.309998e+01 -2.440002e+01
+0 1975     4.166998e+01 -1.371300e+02
+1 1975     1.567900e+02 -1.161100e+02
+0 1976     5.980800e+02 -2.867700e+02
+1 1976     7.111899e+02 -4.628199e+02
+0 1977     5.291000e+02 -3.514900e+02
+1 1977     6.081801e+02 -5.011700e+02
+0 1978     4.278800e+02 -4.738000e+02
+1 1978     4.502300e+02 -5.832200e+02
+0 1979     1.421000e+02 -5.576000e+02
+1 1979     1.305200e+02 -5.571600e+02
+6 1979     3.162400e+02 -5.764399e+02
+10 1979     1.292500e+02 -4.838600e+02
+0 1980     -9.681000e+01 -5.034000e+02
+1 1980     -7.478998e+01 -4.234600e+02
+6 1980     2.667999e+01 -6.249399e+02
+7 1980     -9.725000e+01 -4.143200e+02
+0 1981     -2.386300e+02 -4.850500e+02
+1 1981     -1.970700e+02 -3.598300e+02
+6 1981     -1.499000e+02 -6.732200e+02
+0 1982     1.118500e+02 4.041300e+02
+1 1982     4.702900e+02 3.824300e+02
+2 1982     -1.796200e+02 1.505800e+02
+7 1982     -1.066600e+02 4.817400e+02
+11 1982     2.544000e+02 -3.446300e+02
+13 1982     2.800200e+02 9.394000e+01
+14 1982     4.241100e+02 -3.334300e+02
+0 1983     4.147300e+02 3.320800e+02
+1 1983     7.681600e+02 2.270600e+02
+6 1983     4.995001e+01 4.167800e+02
+7 1983     1.995000e+02 4.519100e+02
+10 1983     3.593101e+02 5.774500e+02
+0 1984     3.653199e+02 3.046800e+02
+1 1984     7.022600e+02 2.127600e+02
+6 1984     1.321002e+01 3.743200e+02
+0 1985     5.619399e+02 2.017100e+02
+1 1985     8.531200e+02 5.458002e+01
+13 1985     7.591300e+02 -2.579999e+01
+15 1985     7.309800e+02 4.954500e+02
+0 1986     -9.797998e+01 2.419500e+02
+1 1986     2.016899e+02 2.785700e+02
+5 1986     3.239301e+02 -4.299600e+02
+7 1986     -2.806800e+02 2.974000e+02
+10 1986     -2.339200e+02 4.170700e+02
+11 1986     6.003003e+01 -5.006400e+02
+13 1986     1.352700e+02 -5.521997e+01
+14 1986     2.410100e+02 -5.161300e+02
+0 1987     -3.390800e+02 7.942999e+01
+1 1987     -8.609998e+01 1.888100e+02
+10 1987     -4.995800e+02 1.995800e+02
+0 1988     7.303800e+02 -2.733000e+02
+1 1988     8.704100e+02 -5.028199e+02
+0 1989     7.037800e+02 -2.929200e+02
+1 1989     8.303101e+02 -5.120900e+02
+7 1989     6.043900e+02 -7.154999e+01
+0 1990     5.922300e+02 -3.256900e+02
+1 1990     6.882400e+02 -5.002400e+02
+0 1991     2.570007e+00 -2.501700e+02
+1 1991     8.906000e+01 -2.144400e+02
+15 1991     2.679993e+00 -2.012700e+02
+0 1992     -2.669300e+02 -4.272100e+02
+1 1992     -2.019500e+02 -2.983900e+02
+0 1993     -1.070200e+02 4.434900e+02
+1 1993     2.521400e+02 4.792300e+02
+0 1994     1.135999e+01 4.205200e+02
+1 1994     3.688101e+02 4.255700e+02
+7 1994     -2.058600e+02 4.874100e+02
+0 1995     5.731300e+02 2.003000e+02
+1 1995     8.644800e+02 5.015997e+01
+13 1995     7.709500e+02 -2.544000e+01
+0 1996     5.569600e+02 6.853998e+01
+1 1996     8.060601e+02 -8.472998e+01
+0 1997     -2.502100e+02 4.004999e+01
+1 1997     -1.757001e+01 1.281400e+02
+10 1997     -3.903100e+02 1.629100e+02
+0 1998     2.067800e+02 -1.428300e+02
+1 1998     3.181700e+02 -1.743700e+02
+10 1998     1.600700e+02 -2.969971e+00
+15 1998     2.648300e+02 -2.878998e+01
+0 1999     -1.307200e+02 -9.263000e+01
+1 1999     1.550000e+01 -2.402002e+01
+0 2000     -5.522998e+01 -1.511400e+02
+1 2000     6.360999e+01 -1.011700e+02
+12 2000     -4.103998e+01 -1.222400e+02
+0 2001     5.056700e+02 -3.677600e+02
+1 2001     5.766899e+02 -5.086500e+02
+0 2002     1.095600e+02 -5.720699e+02
+1 2002     9.363000e+01 -5.592900e+02
+7 2002     1.232100e+02 -4.368000e+02
+10 2002     9.365997e+01 -5.040400e+02
+0 2003     1.072200e+02 4.085800e+02
+1 2003     4.662400e+02 3.883000e+02
+4 2003     -4.753003e+01 -4.185700e+02
+7 2003     -1.126900e+02 4.851800e+02
+8 2003     -7.153003e+01 1.178900e+02
+9 2003     -3.032100e+02 2.032900e+02
+11 2003     2.485699e+02 -3.414400e+02
+13 2003     2.753400e+02 9.701999e+01
+14 2003     4.184301e+02 -3.291900e+02
+0 2004     3.541998e+01 1.227700e+02
+1 2004     2.369800e+02 1.383500e+02
+4 2004     -1.946900e+02 -4.373800e+02
+5 2004     6.535500e+02 -5.317400e+02
+7 2004     -7.498999e+01 2.389000e+02
+10 2004     -6.564001e+01 2.876000e+02
+12 2004     -2.804999e+01 2.136200e+02
+13 2004     3.809399e+02 -1.175300e+02
+15 2004     -2.409973e+00 3.099000e+02
+0 2005     5.187400e+02 -3.591500e+02
+1 2005     5.941400e+02 -5.046600e+02
+7 2005     4.553500e+02 -1.619600e+02
+12 2005     6.156300e+02 -2.294600e+02
+0 2006     3.067500e+02 2.491400e+02
+1 2006     6.157700e+02 1.735400e+02
+0 2007     -8.620001e+01 1.911500e+02
+1 2007     1.946500e+02 2.265400e+02
+0 2008     5.568199e+02 -3.820000e+02
+1 2008     6.255300e+02 -5.424900e+02
+0 2009     6.429200e+02 -2.948200e+02
+1 2009     7.586100e+02 -4.889600e+02
+0 2010     -2.519700e+02 -4.703300e+02
+1 2010     -2.041300e+02 -3.420400e+02
+6 2010     -1.765100e+02 -6.642900e+02
+7 2010     -2.625700e+02 -4.147800e+02
+0 2011     6.160400e+02 -3.161300e+02
+1 2011     7.188700e+02 -4.996300e+02
+0 2012     6.264800e+02 -3.272900e+02
+1 2012     7.246899e+02 -5.156801e+02
+0 2013     5.143199e+02 -3.449300e+02
+1 2013     5.947600e+02 -4.890000e+02
+7 2013     4.477600e+02 -1.506200e+02
+13 2013     8.420500e+02 -5.097500e+02
+0 2014     -2.349200e+02 -4.552300e+02
+1 2014     -1.833300e+02 -3.340000e+02
+7 2014     -2.494500e+02 -3.972600e+02
+0 2015     5.400100e+02 1.135999e+01
+1 2015     7.709600e+02 -1.391900e+02
+6 2015     3.767700e+02 1.217400e+02
+7 2015     3.899900e+02 1.781200e+02
+10 2015     5.320601e+02 2.117800e+02
+12 2015     4.636300e+02 1.334500e+02
+0 2016     2.234800e+02 -1.117600e+02
+1 2016     3.476600e+02 -1.495400e+02
+7 2016     1.527500e+02 3.972998e+01
+10 2016     1.763800e+02 3.515997e+01
+0 2017     5.187400e+02 -3.591500e+02
+1 2017     5.941400e+02 -5.046600e+02
+12 2017     6.156300e+02 -2.294600e+02
+0 2018     -2.535900e+02 4.390000e+02
+1 2018     1.037500e+02 5.110400e+02
+0 2019     4.481000e+01 -2.099200e+02
+1 2019     1.365700e+02 -1.879100e+02
+6 2019     1.048000e+02 -1.972800e+02
+7 2019     1.699829e-01 -8.571997e+01
+10 2019     -1.940002e+01 -9.703998e+01
+12 2019     1.052000e+02 -1.519800e+02
+15 2019     5.292999e+01 -1.410100e+02
+0 2020     4.906300e+02 3.145700e+02
+1 2020     8.282600e+02 1.911200e+02
+2 2020     2.904500e+02 1.984400e+02
+7 2020     2.886000e+02 4.561700e+02
+9 2020     1.062500e+02 2.579100e+02
+13 2020     6.542300e+02 5.666998e+01
+0 2021     2.645001e+01 3.177002e+01
+1 2021     1.959800e+02 5.176001e+01
+2 2021     1.618700e+02 6.215002e+01
+4 2021     -2.533200e+02 -4.341600e+02
+7 2021     -6.403003e+01 1.491700e+02
+9 2021     2.625000e+01 1.425600e+02
+10 2021     -6.610999e+01 1.806700e+02
+13 2021     3.919399e+02 -1.922300e+02
+15 2021     -3.640015e+00 1.840500e+02
+0 2022     -1.226100e+02 -4.987900e+02
+1 2022     -9.622998e+01 -4.105900e+02
+0 2023     2.141899e+02 3.227800e+02
+1 2023     5.477100e+02 2.736300e+02
+7 2023     9.890015e+00 4.175200e+02
+14 2023     5.566300e+02 -4.141600e+02
+0 2024     1.444500e+02 -1.319600e+02
+1 2024     2.604600e+02 -1.437300e+02
+7 2024     8.215997e+01 7.669983e+00
+10 2024     8.709998e+01 3.599976e+00
+13 2024     5.169399e+02 -3.245700e+02
+15 2024     1.787000e+02 -2.239001e+01
+0 2025     5.956000e+01 2.671600e+02
+1 2025     3.673199e+02 2.607800e+02
+7 2025     -1.283000e+02 3.441100e+02
+10 2025     -5.125000e+01 4.626700e+02
+0 2026     4.252900e+02 -1.205800e+02
+1 2026     5.606100e+02 -2.267800e+02
+10 2026     4.098900e+02 4.635999e+01
+15 2026     5.665800e+02 2.965002e+01
+0 2027     6.870200e+02 -2.983700e+02
+1 2027     8.084200e+02 -5.104500e+02
+0 2028     5.107600e+02 -3.980600e+02
+1 2028     5.690200e+02 -5.406000e+02
+0 2029     -1.298400e+02 -5.172500e+02
+1 2029     -1.103900e+02 -4.250500e+02
+6 2029     -8.800049e-01 -6.545900e+02
+7 2029     -1.265500e+02 -4.347100e+02
+12 2029     -2.142999e+01 -6.074900e+02
+15 2029     -1.382300e+02 -5.804000e+02
+0 2030     -8.373999e+01 -5.225100e+02
+1 2030     -6.985999e+01 -4.451000e+02
+7 2030     -7.875000e+01 -4.301700e+02
+0 2031     -1.653100e+02 -5.051899e+02
+1 2031     -1.379300e+02 -4.021600e+02
+6 2031     -5.002002e+01 -6.586200e+02
+0 2032     -2.013900e+02 -5.017500e+02
+1 2032     -1.696300e+02 -3.872000e+02
+7 2032     -2.034200e+02 -4.349399e+02
+0 2033     -3.384998e+01 -4.023600e+02
+1 2033     1.810999e+01 -3.505400e+02
+7 2033     -5.637000e+01 -3.017500e+02
+15 2033     -2.370001e+01 -4.115300e+02
+0 2034     3.146400e+02 2.320700e+02
+1 2034     6.174301e+02 1.536000e+02
+10 2034     2.500400e+02 4.477900e+02
+11 2034     4.560500e+02 -5.011000e+02
+0 2035     7.184998e+01 -1.728100e+02
+1 2035     1.761000e+02 -1.606600e+02
+3 2035     2.068300e+02 -4.336899e+02
+6 2035     1.123100e+02 -1.496200e+02
+7 2035     1.810999e+01 -4.525000e+01
+10 2035     8.090027e+00 -5.142999e+01
+13 2035     4.601300e+02 -3.665500e+02
+15 2035     8.516998e+01 -8.740002e+01
+0 2036     2.871997e+01 -7.631000e+01
+1 2036     1.654700e+02 -5.395001e+01
+3 2036     1.185200e+02 -3.550000e+02
+7 2036     -4.260999e+01 4.189001e+01
+13 2036     4.076899e+02 -2.856100e+02
+15 2036     1.432001e+01 3.740002e+01
+0 2037     7.286300e+02 -3.030100e+02
+1 2037     8.551801e+02 -5.326700e+02
+7 2037     6.284900e+02 -7.608002e+01
+0 2038     1.392300e+02 -4.256500e+02
+1 2038     1.739200e+02 -4.306100e+02
+7 2038     1.206000e+02 -2.900600e+02
+0 2039     -2.692400e+02 -4.536600e+02
+1 2039     -2.134200e+02 -3.214400e+02
+6 2039     -2.102300e+02 -6.543700e+02
+0 2040     -3.375800e+02 -2.116100e+02
+1 2040     -1.882000e+02 -8.028003e+01
+6 2040     -4.707200e+02 -4.225400e+02
+9 2040     -3.381800e+02 -3.042500e+02
+0 2041     -4.144000e+02 3.309600e+02
+1 2041     -7.915002e+01 4.431300e+02
+7 2041     -6.222300e+02 3.470600e+02
+8 2041     -4.958000e+02 2.885001e+01
+10 2041     -6.259800e+02 4.961900e+02
+12 2041     -7.498100e+02 2.435900e+02
+15 2041     -6.364300e+02 5.359700e+02
+0 2042     1.219700e+02 4.253100e+02
+1 2042     4.866000e+02 4.016500e+02
+11 2042     2.619500e+02 -3.250100e+02
+0 2043     1.423101e+02 5.101900e+02
+1 2043     5.290400e+02 4.844900e+02
+6 2043     -3.161700e+02 5.657500e+02
+11 2043     2.736200e+02 -2.494700e+02
+12 2043     -1.508800e+02 5.440500e+02
+14 2043     4.550800e+02 -2.190800e+02
+0 2044     2.576700e+02 4.919400e+02
+1 2044     6.524100e+02 4.349100e+02
+2 2044     -6.015997e+01 2.537300e+02
+3 2044     -2.018200e+02 -7.981000e+01
+5 2044     6.606100e+02 -1.530200e+02
+6 2044     -1.979100e+02 5.636100e+02
+8 2044     3.063000e+01 1.976600e+02
+9 2044     -2.030100e+02 2.931500e+02
+12 2044     -3.251001e+01 5.345400e+02
+0 2045     3.064800e+02 5.669800e+02
+1 2045     7.299000e+02 5.033000e+02
+3 2045     -1.717700e+02 3.599854e-01
+9 2045     -1.789200e+02 3.644500e+02
+11 2045     4.176300e+02 -1.921100e+02
+0 2046     3.266600e+02 5.226100e+02
+1 2046     7.389200e+02 4.505000e+02
+3 2046     -1.520900e+02 -4.469000e+01
+11 2046     4.413400e+02 -2.290000e+02
+0 2047     2.576700e+02 4.919400e+02
+1 2047     6.524100e+02 4.349100e+02
+3 2047     -2.018200e+02 -7.981000e+01
+9 2047     -2.030100e+02 2.931500e+02
+11 2047     3.810000e+02 -2.599200e+02
+0 2048     3.374900e+02 2.644000e+01
+1 2048     5.177800e+02 -4.937000e+01
+10 2048     2.946600e+02 2.066800e+02
+15 2048     4.267900e+02 2.192900e+02
+0 2049     2.593900e+02 -1.240900e+02
+1 2049     3.797900e+02 -1.734700e+02
+7 2049     1.898400e+02 3.323999e+01
+10 2049     2.183600e+02 2.489001e+01
+12 2049     3.064700e+02 2.800293e-01
+13 2049     6.113199e+02 -3.096200e+02
+15 2049     3.350000e+02 3.140015e+00
+0 2050     2.449399e+02 -1.296300e+02
+1 2050     3.627300e+02 -1.739400e+02
+7 2050     1.772300e+02 2.553003e+01
+10 2050     2.030000e+02 1.684998e+01
+12 2050     2.948700e+02 -8.489990e+00
+13 2050     6.016300e+02 -3.157300e+02
+15 2050     3.158600e+02 -6.070007e+00
+0 2051     2.771300e+02 5.729000e+02
+1 2051     6.980400e+02 5.167900e+02
+2 2051     -5.409998e+01 3.411700e+02
+5 2051     6.775200e+02 -6.619000e+01
+9 2051     -2.004900e+02 3.689200e+02
+11 2051     3.912100e+02 -1.888500e+02
+13 2051     4.058800e+02 2.481900e+02
+14 2051     5.774600e+02 -1.490400e+02
+0 2052     -1.640600e+02 -5.389700e+02
+1 2052     -1.497600e+02 -4.330800e+02
+4 2052     -6.683100e+02 -2.548200e+02
+6 2052     -2.715997e+01 -6.937300e+02
+7 2052     -1.568800e+02 -4.630400e+02
+9 2052     7.248999e+01 -4.614600e+02
+0 2053     -1.042100e+02 3.997200e+02
+1 2053     2.452700e+02 4.350500e+02
+2 2053     -3.825700e+02 1.403600e+02
+6 2053     -5.786000e+02 3.674600e+02
+7 2053     -3.157000e+02 4.535200e+02
+9 2053     -4.721400e+02 1.822800e+02
+10 2053     -2.594600e+02 6.069900e+02
+14 2053     2.114399e+02 -3.443900e+02
+0 2054     3.429700e+02 5.711000e+02
+1 2054     7.731100e+02 4.986300e+02
+3 2054     -1.432400e+02 5.200012e+00
+5 2054     7.430200e+02 -6.547998e+01
+6 2054     -1.242500e+02 6.791000e+02
+9 2054     -1.533900e+02 3.692100e+02
+11 2054     4.507100e+02 -1.859100e+02
+0 2055     3.323500e+02 5.485900e+02
+1 2055     7.541801e+02 4.770100e+02
+2 2055     -4.510010e+00 3.162600e+02
+9 2055     -1.576600e+02 3.492600e+02
+11 2055     4.439000e+02 -2.064200e+02
+13 2055     4.508800e+02 2.320800e+02
+14 2055     6.330601e+02 -1.700800e+02
+0 2056     4.521100e+02 3.467600e+02
+1 2056     7.985900e+02 2.358800e+02
+2 2056     2.376600e+02 2.141000e+02
+6 2056     1.356300e+02 4.590800e+02
+8 2056     2.630200e+02 1.565900e+02
+9 2056     6.021002e+01 2.694200e+02
+0 2057     6.113199e+02 7.048999e+01
+1 2057     8.630601e+02 -9.937000e+01
+2 2057     5.341801e+02 5.484998e+01
+3 2057     3.995800e+02 -2.550600e+02
+9 2057     3.189500e+02 1.460900e+02
+12 2057     5.326500e+02 2.299000e+02
+15 2057     8.148600e+02 3.189400e+02
+0 2058     -1.414100e+02 3.438500e+02
+1 2058     1.938199e+02 3.889300e+02
+7 2058     -3.453900e+02 3.910500e+02
+13 2058     7.828998e+01 2.788000e+01
+14 2058     1.724301e+02 -4.062600e+02
+0 2059     8.594000e+01 5.495300e+02
+1 2059     4.807600e+02 5.391800e+02
+3 2059     -3.495400e+02 -1.656000e+01
+9 2059     -3.387900e+02 3.423100e+02
+0 2060     -1.808300e+02 -5.101000e+02
+1 2060     -1.542400e+02 -4.015600e+02
+6 2060     -6.471002e+01 -6.715100e+02
+7 2060     -1.797900e+02 -4.391500e+02
+9 2060     3.654999e+01 -4.474700e+02
+0 2061     1.359500e+02 -3.195100e+02
+1 2061     2.002300e+02 -3.258400e+02
+9 2061     2.322800e+02 -1.471300e+02
+10 2061     9.698999e+01 -2.132800e+02
+15 2061     1.931300e+02 -2.776300e+02
+0 2062     2.266200e+02 4.707400e+02
+1 2062     6.116300e+02 4.210600e+02
+2 2062     -8.515002e+01 2.291900e+02
+5 2062     6.296400e+02 -1.756000e+02
+6 2062     -2.266600e+02 5.304700e+02
+7 2062     -5.690002e+00 5.611900e+02
+8 2062     1.009998e+01 1.776300e+02
+9 2062     -2.220400e+02 2.703900e+02
+11 2062     3.558199e+02 -2.795100e+02
+12 2062     -6.028003e+01 5.059200e+02
+0 2063     -1.357500e+02 3.303300e+02
+1 2063     1.959600e+02 3.738200e+02
+7 2063     -3.379400e+02 3.774100e+02
+9 2063     -4.908600e+02 1.050900e+02
+14 2063     1.772700e+02 -4.215400e+02
+0 2064     1.135999e+01 4.205200e+02
+1 2064     3.688101e+02 4.255700e+02
+2 2064     -2.738200e+02 1.670900e+02
+7 2064     -2.058600e+02 4.874100e+02
+9 2064     -3.802400e+02 2.087900e+02
+13 2064     1.998900e+02 1.025200e+02
+0 2065     -2.078900e+02 -5.297200e+02
+1 2065     -1.857500e+02 -4.103900e+02
+6 2065     -8.257999e+01 -7.055200e+02
+7 2065     -2.027900e+02 -4.640100e+02
+9 2065     2.628998e+01 -4.724900e+02
+10 2065     -2.757600e+02 -4.931899e+02
+0 2066     -2.098900e+02 -4.509000e+02
+1 2066     -1.590800e+02 -3.381400e+02
+7 2066     -2.248300e+02 -3.877300e+02
+9 2066     -3.456000e+01 -4.196100e+02
+10 2066     -2.870500e+02 -4.025400e+02
+15 2066     -2.546800e+02 -5.017100e+02
+0 2067     -1.126900e+02 -5.096801e+02
+1 2067     -9.107001e+01 -4.235300e+02
+7 2067     -1.110000e+02 -4.240500e+02
+9 2067     9.925000e+01 -4.218800e+02
+0 2068     6.600800e+02 -9.315997e+01
+1 2068     8.630400e+02 -2.884900e+02
+6 2068     5.546801e+02 5.553998e+01
+8 2068     5.790800e+02 -1.050200e+02
+0 2069     -1.782600e+02 -4.842900e+02
+1 2069     -1.422500e+02 -3.788800e+02
+6 2069     -7.907999e+01 -6.432900e+02
+9 2069     2.059998e+01 -4.293100e+02
+0 2070     -1.758000e+02 -4.942500e+02
+1 2070     -1.441600e+02 -3.879600e+02
+6 2070     -6.546002e+01 -6.541300e+02
+7 2070     -1.767100e+02 -4.236400e+02
+9 2070     3.284003e+01 -4.359800e+02
+0 2071     5.381500e+02 -4.400024e-01
+1 2071     7.644800e+02 -1.505800e+02
+7 2071     3.893600e+02 1.663000e+02
+10 2071     5.304900e+02 1.979100e+02
+0 2072     -6.569000e+01 1.855900e+02
+1 2072     2.122600e+02 2.157500e+02
+5 2072     3.789100e+02 -4.911300e+02
+6 2072     -4.119600e+02 1.190300e+02
+7 2072     -2.345300e+02 2.487600e+02
+8 2072     -1.313600e+02 -5.270999e+01
+9 2072     -3.348700e+02 2.646997e+01
+0 2073     -9.496002e+01 9.504999e+01
+1 2073     1.181100e+02 1.439900e+02
+7 2073     -2.157300e+02 1.799900e+02
+15 2073     -1.716200e+02 2.541600e+02
+0 2074     5.503600e+02 -8.530029e+00
+1 2074     7.752900e+02 -1.632700e+02
+10 2074     5.450400e+02 1.904500e+02
+0 2075     5.227500e+02 1.194300e+02
+1 2075     7.866100e+02 -2.091998e+01
+7 2075     3.578199e+02 2.800300e+02
+10 2075     5.025200e+02 3.362700e+02
+12 2075     4.157100e+02 2.474800e+02
+13 2075     7.277900e+02 -1.032900e+02
+15 2075     6.852500e+02 3.739500e+02
+0 2076     -5.319800e+02 3.276600e+02
+1 2076     -1.902200e+02 4.704900e+02
+5 2076     -1.385200e+02 -3.289000e+02
+10 2076     -7.722000e+02 4.815300e+02
+13 2076     -2.377500e+02 -1.820007e+00
+15 2076     -8.016600e+02 5.159900e+02
+0 2077     1.594600e+02 5.195400e+02
+1 2077     5.521000e+02 4.894900e+02
+11 2077     2.894000e+02 -2.404400e+02
+0 2078     2.420900e+02 4.914900e+02
+1 2078     6.349000e+02 4.391000e+02
+7 2078     6.489990e+00 5.838300e+02
+11 2078     3.673400e+02 -2.605100e+02
+0 2079     4.097500e+02 3.583700e+02
+1 2079     7.738101e+02 2.556300e+02
+10 2079     3.503900e+02 6.091200e+02
+13 2079     5.437300e+02 7.839999e+01
+0 2080     3.713500e+02 3.354700e+02
+1 2080     7.207700e+02 2.427800e+02
+10 2080     3.081500e+02 5.770200e+02
+0 2081     2.120699e+02 3.120000e+02
+1 2081     5.411400e+02 2.632700e+02
+6 2081     -1.661800e+02 3.407600e+02
+0 2082     2.647500e+02 2.699100e+02
+1 2082     5.798600e+02 2.062600e+02
+0 2083     3.908800e+02 4.878800e+02
+1 2083     8.036100e+02 3.966500e+02
+2 2083     5.238000e+01 2.528300e+02
+3 2083     -9.488000e+01 -7.951001e+01
+5 2083     7.971300e+02 -1.517200e+02
+11 2083     5.060900e+02 -2.554500e+02
+12 2083     1.026500e+02 5.474600e+02
+14 2083     6.972100e+02 -2.292500e+02
+0 2084     2.428101e+02 2.530900e+02
+1 2084     5.497500e+02 1.961500e+02
+6 2084     -9.059000e+01 2.845200e+02
+7 2084     5.377002e+01 3.566600e+02
+15 2084     2.835900e+02 5.171500e+02
+0 2085     2.257600e+02 5.057900e+02
+1 2085     6.212800e+02 4.581600e+02
+11 2085     3.508800e+02 -2.490600e+02
+0 2086     1.679800e+02 4.954100e+02
+1 2086     5.541801e+02 4.623500e+02
+11 2086     2.986700e+02 -2.614200e+02
+0 2087     2.293900e+02 3.411300e+02
+1 2087     5.716801e+02 2.875500e+02
+7 2087     1.958002e+01 4.356800e+02
+13 2087     3.926400e+02 4.970001e+01
+14 2087     5.660699e+02 -3.940700e+02
+0 2088     -1.970300e+02 3.708000e+02
+1 2088     1.439800e+02 4.295500e+02
+2 2088     -4.733500e+02 1.005100e+02
+5 2088     2.019600e+02 -2.903300e+02
+7 2088     -4.048000e+02 4.120500e+02
+10 2088     -3.669100e+02 5.617900e+02
+13 2088     3.401001e+01 4.765997e+01
+14 2088     1.182000e+02 -3.792200e+02
+0 2089     2.861500e+02 3.603700e+02
+1 2089     6.387300e+02 2.914800e+02
+7 2089     7.084003e+01 4.613300e+02
+0 2090     2.027600e+02 3.409900e+02
+1 2090     5.431801e+02 2.948100e+02
+0 2091     2.186200e+02 4.891000e+02
+1 2091     6.087000e+02 4.425400e+02
+11 2091     3.460500e+02 -2.642800e+02
+0 2092     2.046899e+02 3.357800e+02
+1 2092     5.427600e+02 2.890000e+02
+0 2093     -2.450200e+02 4.735300e+02
+1 2093     1.201100e+02 5.431400e+02
+5 2093     1.634300e+02 -1.789100e+02
+7 2093     -4.674700e+02 5.151400e+02
+0 2094     -4.606500e+02 3.182500e+02
+1 2094     -1.230500e+02 4.437000e+02
+7 2094     -6.704400e+02 3.234000e+02
+10 2094     -6.809400e+02 4.760400e+02
+11 2094     -2.652800e+02 -4.251500e+02
+12 2094     -8.058300e+02 2.092800e+02
+15 2094     -6.983800e+02 5.113100e+02
+0 2095     -4.264500e+02 3.047700e+02
+1 2095     -9.359003e+01 4.227100e+02
+7 2095     -6.307900e+02 3.142100e+02
+11 2095     -2.359400e+02 -4.385200e+02
+0 2096     2.003000e+02 5.712300e+02
+1 2096     6.114700e+02 5.340300e+02
+2 2096     -1.187900e+02 3.403200e+02
+14 2096     5.038600e+02 -1.546600e+02
+0 2097     3.439000e+02 -1.877000e+02
+1 2097     4.461000e+02 -2.652200e+02
+2 2097     5.406100e+02 -9.403003e+01
+6 2097     3.861300e+02 -8.078998e+01
+10 2097     3.224100e+02 -3.979999e+01
+12 2097     4.180800e+02 -4.831000e+01
+0 2098     -1.756600e+02 -4.752000e+02
+1 2098     -1.365200e+02 -3.713800e+02
+6 2098     -8.273999e+01 -6.331500e+02
+7 2098     -1.848500e+02 -4.055400e+02
+9 2098     1.566998e+01 -4.230700e+02
+0 2099     -2.580200e+02 -4.118700e+02
+1 2099     -1.883900e+02 -2.872800e+02
+7 2099     -2.837100e+02 -3.593400e+02
+15 2099     -3.235100e+02 -4.551100e+02
+0 2100     7.315997e+01 3.523999e+01
+1 2100     2.407900e+02 4.248999e+01
+7 2100     -1.694000e+01 1.610600e+02
+10 2100     -1.237000e+01 1.891600e+02
+0 2101     3.279700e+02 -2.735999e+01
+1 2101     4.877000e+02 -1.000900e+02
+10 2101     2.887300e+02 1.437400e+02
+15 2101     4.190699e+02 1.445800e+02
+0 2102     3.061400e+02 1.069600e+02
+1 2102     5.128400e+02 4.121002e+01
+10 2102     2.505800e+02 2.978500e+02
+0 2103     5.460100e+02 8.729980e+00
+1 2103     7.764700e+02 -1.439800e+02
+6 2103     3.846200e+02 1.207600e+02
+7 2103     3.963700e+02 1.764500e+02
+10 2103     5.393500e+02 2.086500e+02
+12 2103     4.714301e+02 1.316800e+02
+13 2103     7.644900e+02 -2.000700e+02
+0 2104     3.819200e+02 -2.246000e+02
+1 2104     4.920900e+02 -3.188500e+02
+7 2104     3.072900e+02 -5.588000e+01
+15 2104     5.221000e+02 -1.180300e+02
+0 2105     -5.241998e+01 -1.557000e+02
+1 2105     6.483002e+01 -1.063000e+02
+7 2105     -1.102400e+02 -5.201001e+01
+15 2105     -8.344000e+01 -8.142999e+01
+0 2106     -4.784700e+02 1.599100e+02
+1 2106     -1.853800e+02 2.994200e+02
+0 2107     5.889500e+02 -3.244100e+02
+1 2107     6.851500e+02 -4.972900e+02
+0 2108     2.349200e+02 4.616998e+01
+1 2108     4.086000e+02 4.609985e+00
+15 2108     2.799399e+02 2.323900e+02
+0 2109     1.201300e+02 4.024700e+02
+1 2109     4.785800e+02 3.785300e+02
+5 2109     5.218500e+02 -2.525300e+02
+7 2109     -9.834003e+01 4.810400e+02
+8 2109     -6.166998e+01 1.122500e+02
+11 2109     2.625300e+02 -3.458300e+02
+0 2110     3.221300e+02 -3.034600e+02
+1 2110     3.980900e+02 -3.751600e+02
+7 2110     2.704500e+02 -1.380600e+02
+10 2110     3.093900e+02 -1.744400e+02
+15 2110     4.480800e+02 -2.329200e+02
+0 2111     -1.579400e+02 4.828998e+01
+1 2111     4.437000e+01 1.148000e+02
+2 2111     -1.266700e+02 -4.491998e+01
+4 2111     -2.261100e+02 -2.819800e+02
+7 2111     -2.706300e+02 1.220500e+02
+8 2111     -6.409998e+01 -7.239001e+01
+10 2111     -2.827700e+02 1.798300e+02
+15 2111     -2.506400e+02 1.795300e+02
+0 2112     4.940500e+02 2.599600e+02
+1 2112     8.146700e+02 1.321300e+02
+7 2112     2.992200e+02 4.037100e+02
+10 2112     4.580200e+02 4.999500e+02
+0 2113     -3.040100e+02 -1.138500e+02
+1 2113     -1.228700e+02 -2.800293e-01
+0 2114     5.438800e+02 6.919983e+00
+1 2114     7.735200e+02 -1.449000e+02
+0 2115     6.975000e+02 -3.552600e+02
+1 2115     7.955500e+02 -5.731300e+02
+12 2115     7.902400e+02 -1.745800e+02
+0 2116     2.381200e+02 -2.276300e+02
+1 2116     3.204100e+02 -2.680600e+02
+7 2116     1.917100e+02 -6.864001e+01
+10 2116     2.047900e+02 -9.659998e+01
+15 2116     3.181200e+02 -1.399900e+02
+0 2117     2.047600e+02 3.591400e+02
+1 2117     5.523400e+02 3.123800e+02
+10 2117     1.097700e+02 5.880300e+02
+0 2118     3.518199e+02 -1.932500e+02
+1 2118     4.520601e+02 -2.732400e+02
+10 2118     3.322700e+02 -4.526001e+01
+15 2118     4.715200e+02 -7.890002e+01
+0 2119     9.858002e+01 7.494000e+01
+1 2119     2.788900e+02 7.384998e+01
+2 2119     2.189200e+02 1.200600e+02
+8 2119     2.129400e+02 5.242999e+01
+15 2119     8.909998e+01 2.530600e+02
+0 2120     4.879301e+02 -4.324400e+02
+1 2120     5.305300e+02 -5.656700e+02
+0 2121     -2.169600e+02 3.892200e+02
+1 2121     1.284300e+02 4.529500e+02
+2 2121     -4.940000e+02 1.262800e+02
+5 2121     1.839300e+02 -2.688000e+02
+7 2121     -4.269100e+02 4.291700e+02
+10 2121     -3.932500e+02 5.833300e+02
+0 2122     2.990800e+02 -2.445500e+02
+1 2122     3.848400e+02 -3.068700e+02
+10 2122     2.766200e+02 -1.096300e+02
+15 2122     4.066801e+02 -1.555000e+02
+0 2123     -2.695700e+02 4.093400e+02
+1 2123     8.077002e+01 4.859200e+02
+7 2123     -4.838100e+02 4.448700e+02
+10 2123     -4.602500e+02 6.039600e+02
+11 2123     -9.290002e+01 -3.462800e+02
+0 2124     4.022300e+02 -1.099200e+02
+1 2124     5.399600e+02 -2.081400e+02
+6 2124     3.928200e+02 7.950012e+00
+12 2124     4.375300e+02 3.884998e+01
+13 2124     7.205000e+02 -2.912800e+02
+15 2124     5.330601e+02 4.109998e+01
+0 2125     6.223199e+02 -3.020100e+02
+1 2125     7.325000e+02 -4.879100e+02
+0 2126     9.788000e+01 5.696002e+01
+1 2126     2.722600e+02 5.583002e+01
+6 2126     5.528003e+01 1.139000e+02
+0 2127     2.128500e+02 3.471700e+02
+1 2127     5.559000e+02 2.982300e+02
+0 2128     5.438800e+02 6.919983e+00
+1 2128     7.735200e+02 -1.449000e+02
+6 2128     3.822600e+02 1.183500e+02
+10 2128     5.368199e+02 2.069200e+02
+0 2129     3.871200e+02 -1.767400e+02
+1 2129     5.033700e+02 -2.713500e+02
+10 2129     3.710300e+02 -2.297998e+01
+0 2130     2.574900e+02 1.066000e+02
+1 2130     4.556100e+02 5.739001e+01
+7 2130     1.448500e+02 2.552800e+02
+15 2130     3.047200e+02 3.189100e+02
+0 2131     -3.220900e+02 -1.312700e+02
+1 2131     -1.457800e+02 -1.112000e+01
+6 2131     -5.095900e+02 -3.259500e+02
+7 2131     -4.197100e+02 -9.871002e+01
+12 2131     -4.484700e+02 -2.481700e+02
+13 2131     2.882001e+01 -3.864000e+02
+0 2132     2.935900e+02 -2.491500e+02
+1 2132     3.778800e+02 -3.095600e+02
+15 2132     3.993300e+02 -1.621400e+02
+0 2133     9.592999e+01 -3.548999e+01
+1 2133     2.405900e+02 -3.363000e+01
+2 2133     2.668500e+02 1.856000e+01
+7 2133     1.859003e+01 9.589999e+01
+15 2133     9.944000e+01 1.020900e+02
+0 2134     -9.619000e+01 1.093600e+02
+1 2134     1.222800e+02 1.571300e+02
+7 2134     -2.202600e+02 1.931300e+02
+13 2134     2.348000e+02 -1.473300e+02
+0 2135     -3.759900e+02 -1.530100e+02
+1 2135     -2.019500e+02 -1.565997e+01
+7 2135     -4.708500e+02 -1.304400e+02
+0 2136     6.239200e+02 -3.343000e+02
+1 2136     7.204100e+02 -5.213400e+02
+7 2136     5.436700e+02 -1.215500e+02
+0 2137     6.040200e+02 9.834000e+01
+1 2137     8.644500e+02 -6.806000e+01
+7 2137     4.417800e+02 2.750900e+02
+10 2137     5.998700e+02 3.196300e+02
+15 2137     8.017600e+02 3.563600e+02
+0 2138     6.450100e+02 -3.384600e+02
+1 2138     7.429301e+02 -5.342300e+02
+7 2138     5.637900e+02 -1.213200e+02
+12 2138     7.312800e+02 -1.724800e+02
+0 2139     -1.860900e+02 1.607400e+02
+1 2139     8.669000e+01 2.247700e+02
+7 2139     -3.508200e+02 2.068000e+02
+10 2139     -3.284900e+02 3.120100e+02
+12 2139     -4.128400e+02 9.778998e+01
+15 2139     -2.942900e+02 3.294300e+02
+0 2140     -2.052000e+02 -4.443700e+02
+1 2140     -1.519600e+02 -3.329500e+02
+6 2140     -1.388300e+02 -6.141000e+02
+7 2140     -2.216300e+02 -3.807800e+02
+15 2140     -2.492200e+02 -4.925100e+02
+0 2141     4.958400e+02 3.920000e+02
+1 2141     8.592900e+02 2.730200e+02
+7 2141     2.836300e+02 5.326700e+02
+0 2142     5.261801e+02 2.554999e+01
+1 2142     7.613600e+02 -1.199100e+02
+6 2142     3.550100e+02 1.319400e+02
+7 2142     3.738900e+02 1.890400e+02
+12 2142     4.432100e+02 1.438000e+02
+15 2142     7.009900e+02 2.436400e+02
+0 2143     4.814800e+02 3.511200e+02
+1 2143     8.305500e+02 2.325400e+02
+6 2143     1.749300e+02 4.740800e+02
+7 2143     2.748500e+02 4.902000e+02
+9 2143     8.877002e+01 2.845600e+02
+10 2143     4.368500e+02 6.071900e+02
+0 2144     1.166900e+02 -2.141100e+02
+1 2144     2.050500e+02 -2.146100e+02
+10 2144     6.396002e+01 -9.410999e+01
+0 2145     3.406899e+02 -1.471002e+01
+1 2145     5.081200e+02 -9.172998e+01
+10 2145     3.030699e+02 1.597000e+02
+15 2145     4.367600e+02 1.637700e+02
+0 2146     2.122500e+02 -3.239900e+02
+1 2146     2.750601e+02 -3.559700e+02
+12 2146     3.100300e+02 -2.546400e+02
+15 2146     2.986100e+02 -2.742200e+02
+0 2147     9.303003e+01 3.131000e+01
+1 2147     2.587700e+02 3.265997e+01
+3 2147     1.400700e+02 -2.294100e+02
+7 2147     3.799988e+00 1.608900e+02
+10 2147     1.096002e+01 1.872600e+02
+13 2147     4.531400e+02 -1.864600e+02
+15 2147     8.678003e+01 1.928700e+02
+0 2148     8.840002e+01 1.746400e+02
+1 2148     3.157600e+02 1.731900e+02
+10 2148     -9.010010e+00 3.541500e+02
+13 2148     4.042600e+02 -7.387000e+01
+14 2148     5.847700e+02 -5.560500e+02
+15 2148     6.582001e+01 3.884300e+02
+0 2149     6.726500e+02 -3.699700e+02
+1 2149     7.603700e+02 -5.777200e+02
+12 2149     7.732200e+02 -1.953500e+02
+0 2150     -1.870700e+02 -4.946400e+02
+1 2150     -1.541400e+02 -3.855100e+02
+6 2150     -8.253000e+01 -6.584000e+02
+7 2150     -1.902900e+02 -4.253100e+02
+9 2150     1.888000e+01 -4.403101e+02
+0 2151     5.702800e+02 1.133400e+02
+1 2151     8.338700e+02 -4.173999e+01
+0 2152     3.285999e+01 2.102500e+02
+1 2152     3.190200e+02 2.124500e+02
+6 2152     -3.079200e+02 1.775200e+02
+10 2152     -7.676001e+01 3.924800e+02
+14 2152     3.961899e+02 -5.456700e+02
+0 2153     -4.490600e+02 9.573001e+01
+1 2153     -1.809900e+02 2.328000e+02
+5 2153     -3.827002e+01 -5.896899e+02
+7 2153     -6.101100e+02 1.003700e+02
+0 2154     3.095100e+02 -1.559998e+00
+1 2154     4.742500e+02 -6.729999e+01
+0 2155     3.051300e+02 -5.996002e+01
+1 2155     4.514800e+02 -1.268900e+02
+7 2155     2.203800e+02 9.984000e+01
+10 2155     2.646000e+02 1.039800e+02
+15 2155     3.894301e+02 9.607999e+01
+0 2156     1.283400e+02 1.472700e+02
+1 2156     3.387300e+02 1.360500e+02
+0 2157     3.061400e+02 1.069600e+02
+1 2157     5.128400e+02 4.121002e+01
+0 2158     2.445601e+02 -2.231100e+02
+1 2158     3.294900e+02 -2.659100e+02
+7 2158     1.970800e+02 -6.365002e+01
+15 2158     3.265900e+02 -1.326900e+02
+0 2159     2.454301e+02 -3.026100e+02
+1 2159     3.149700e+02 -3.465800e+02
+10 2159     2.209500e+02 -1.814100e+02
+15 2159     3.407400e+02 -2.413300e+02
+0 2160     -2.321300e+02 -4.391500e+02
+1 2160     -1.744800e+02 -3.203700e+02
+9 2160     -6.429999e+01 -4.198400e+02
+0 2161     8.588000e+01 -9.251001e+01
+1 2161     2.147300e+02 -8.678003e+01
+7 2161     1.760999e+01 3.684998e+01
+10 2161     1.588000e+01 4.327002e+01
+15 2161     9.370001e+01 2.328998e+01
+0 2162     4.389000e+02 3.154500e+02
+1 2162     7.747700e+02 2.058200e+02
+7 2162     2.363500e+02 4.475700e+02
+11 2162     5.639900e+02 -4.140000e+02
+13 2162     6.020400e+02 5.098999e+01
+14 2162     8.335699e+02 -4.016000e+02
+0 2163     -2.052000e+02 -4.443700e+02
+1 2163     -1.519600e+02 -3.329500e+02
+7 2163     -2.216300e+02 -3.807800e+02
+9 2163     -3.420001e+01 -4.139500e+02
+15 2163     -2.492200e+02 -4.925100e+02
+0 2164     -3.653998e+01 1.371100e+02
+1 2164     1.781100e+02 1.704000e+02
+4 2164     -1.802100e+02 -3.772900e+02
+5 2164     5.498700e+02 -5.212300e+02
+7 2164     -1.560200e+02 2.364100e+02
+10 2164     -1.507800e+02 2.977000e+02
+13 2164     3.034000e+02 -1.144100e+02
+15 2164     -1.002800e+02 3.190300e+02
+0 2165     9.252002e+01 5.800000e+01
+1 2165     2.674900e+02 5.895001e+01
+7 2165     -1.739990e+00 1.868100e+02
+10 2165     8.250000e+00 2.180900e+02
+0 2166     1.771400e+02 3.871997e+01
+1 2166     3.449900e+02 1.528998e+01
+0 2167     2.978900e+02 -2.879100e+02
+1 2167     3.755000e+02 -3.511400e+02
+10 2167     2.795400e+02 -1.590600e+02
+15 2167     4.119500e+02 -2.146400e+02
+0 2168     -1.863600e+02 -5.011600e+02
+1 2168     -1.559100e+02 -3.915700e+02
+7 2168     -1.882600e+02 -4.310500e+02
+0 2169     2.096100e+02 3.177002e+01
+1 2169     3.762800e+02 -1.179993e+00
+3 2169     2.347700e+02 -2.121200e+02
+7 2169     1.165600e+02 1.788000e+02
+10 2169     1.465800e+02 1.991500e+02
+15 2169     2.459800e+02 2.096800e+02
+0 2170     2.951899e+02 -3.065200e+02
+1 2170     3.691600e+02 -3.686000e+02
+0 2171     -2.439000e+02 -4.438900e+02
+1 2171     -1.867400e+02 -3.208700e+02
+7 2171     -2.580700e+02 -3.849200e+02
+0 2172     -1.479600e+02 -1.170700e+02
+1 2172     -1.009998e+01 -4.192999e+01
+10 2172     -2.522000e+02 -1.063000e+01
+15 2172     -2.177800e+02 -4.187000e+01
+0 2173     -1.880800e+02 1.580200e+02
+1 2173     8.390002e+01 2.225100e+02
+4 2173     -1.673900e+02 -2.328100e+02
+7 2173     -3.502900e+02 2.017700e+02
+8 2173     -2.310600e+02 -9.287000e+01
+9 2173     -4.348900e+02 -2.031000e+01
+10 2173     -3.299200e+02 3.070800e+02
+13 2173     8.031000e+01 -1.335800e+02
+0 2174     -1.157100e+02 -5.090100e+02
+1 2174     -9.419000e+01 -4.224300e+02
+4 2174     -6.536000e+02 -2.930000e+02
+6 2174     9.150024e+00 -6.399200e+02
+9 2174     9.502002e+01 -4.214600e+02
+0 2175     -1.188600e+02 7.346997e+01
+1 2175     8.653003e+01 1.298400e+02
+4 2175     -2.132800e+02 -3.116300e+02
+5 2175     4.460200e+02 -5.966100e+02
+10 2175     -2.402000e+02 2.143800e+02
+12 2175     -2.237800e+02 9.175000e+01
+13 2175     2.265601e+02 -1.763100e+02
+15 2175     -2.014100e+02 2.205000e+02
+0 2176     -1.788700e+02 -7.600098e-01
+1 2176     5.469971e+00 7.626001e+01
+4 2176     -2.537200e+02 -2.696100e+02
+6 2176     -2.971400e+02 -6.926001e+01
+10 2176     -3.018400e+02 1.212800e+02
+12 2176     -2.679000e+02 -8.020020e+00
+15 2176     -2.733600e+02 1.109600e+02
+0 2177     -1.799200e+02 -4.204999e+01
+1 2177     -1.197998e+01 3.822998e+01
+4 2177     -2.798800e+02 -2.711800e+02
+6 2177     -2.641700e+02 -1.113300e+02
+7 2177     -2.694100e+02 3.291998e+01
+10 2177     -2.978200e+02 7.321002e+01
+12 2177     -2.464000e+02 -4.945001e+01
+15 2177     -2.699400e+02 5.534998e+01
+0 2178     1.904500e+02 7.527002e+01
+1 2178     3.715900e+02 4.738000e+01
+2 2178     3.041600e+02 1.320700e+02
+4 2178     -2.451300e+02 -5.630300e+02
+6 2178     1.412900e+02 1.578800e+02
+7 2178     8.989001e+01 2.178500e+02
+9 2178     1.376300e+02 2.059000e+02
+10 2178     1.196000e+02 2.481600e+02
+12 2178     1.704000e+02 2.065900e+02
+13 2178     5.262600e+02 -1.432800e+02
+15 2178     2.148300e+02 2.663300e+02
+0 2179     -9.760010e+00 8.404999e+01
+1 2179     1.807500e+02 1.126700e+02
+4 2179     -2.151700e+02 -4.032200e+02
+5 2179     6.081500e+02 -5.767100e+02
+7 2179     -1.129100e+02 1.929200e+02
+10 2179     -1.137100e+02 2.380300e+02
+12 2179     -6.840002e+01 1.590600e+02
+15 2179     -5.826001e+01 2.505100e+02
+0 2180     3.408900e+02 -1.599900e+02
+1 2180     4.540601e+02 -2.365600e+02
+7 2180     2.713400e+02 1.016998e+01
+10 2180     3.163000e+02 -8.250000e+00
+12 2180     4.007200e+02 -2.253998e+01
+15 2180     4.527900e+02 -3.502002e+01
+0 2181     -1.670000e+02 -5.010200e+02
+1 2181     -1.385700e+02 -3.978000e+02
+0 2182     2.880800e+02 5.117999e+01
+1 2182     4.688000e+02 -7.619995e+00
+7 2182     1.839500e+02 2.062200e+02
+10 2182     2.353000e+02 2.305700e+02
+0 2183     3.206000e+01 4.216998e+01
+1 2183     2.043300e+02 6.031000e+01
+7 2183     -5.997998e+01 1.603800e+02
+10 2183     -6.100000e+01 1.930700e+02
+13 2183     3.965601e+02 -1.831400e+02
+15 2183     2.609985e+00 1.985800e+02
+0 2184     -4.359700e+02 1.031200e+02
+1 2184     -1.665100e+02 2.362200e+02
+4 2184     -1.721600e+02 -8.290997e+01
+0 2185     2.781000e+02 4.715997e+01
+1 2185     4.559700e+02 -8.320007e+00
+7 2185     1.763700e+02 2.016900e+02
+10 2185     2.241300e+02 2.238700e+02
+13 2185     5.984800e+02 -1.614100e+02
+15 2185     3.402700e+02 2.395100e+02
+0 2186     4.060200e+02 -4.694900e+02
+1 2186     4.291100e+02 -5.705100e+02
+0 2187     2.349200e+02 4.872500e+02
+1 2187     6.260100e+02 4.363100e+02
+9 2187     -2.185100e+02 2.867800e+02
+14 2187     5.420900e+02 -2.391500e+02
+0 2188     2.349200e+02 4.872500e+02
+1 2188     6.260100e+02 4.363100e+02
+9 2188     -2.185100e+02 2.867800e+02
+14 2188     5.420900e+02 -2.391500e+02
+0 2189     2.305900e+02 4.757200e+02
+1 2189     6.179600e+02 4.252400e+02
+14 2189     5.385800e+02 -2.514100e+02
+0 2190     3.757000e+02 4.710300e+02
+1 2190     7.808000e+02 3.823900e+02
+0 2191     1.369300e+02 4.621100e+02
+1 2191     5.117700e+02 4.355800e+02
+0 2192     2.130400e+02 4.303500e+02
+1 2192     5.865900e+02 3.827000e+02
+0 2193     -4.637000e+02 3.205800e+02
+1 2193     -1.255200e+02 4.465700e+02
+7 2193     -6.740200e+02 3.253400e+02
+10 2193     -6.852700e+02 4.782100e+02
+12 2193     -8.103700e+02 2.114300e+02
+15 2193     -7.033200e+02 5.141800e+02
+0 2194     -1.660999e+01 1.524400e+02
+1 2194     2.019500e+02 1.803700e+02
+10 2194     -1.286500e+02 3.176500e+02
+15 2194     -7.514001e+01 3.427800e+02
+0 2195     -1.196100e+02 5.309998e+00
+1 2195     5.879999e+01 6.602002e+01
+0 2196     6.198500e+02 -1.697998e+01
+1 2196     8.445699e+02 -1.947400e+02
+0 2197     3.075699e+02 -1.861100e+02
+1 2197     4.087300e+02 -2.508400e+02
+7 2197     2.467000e+02 -1.912000e+01
+10 2197     2.804000e+02 -4.159003e+01
+12 2197     3.799600e+02 -5.639001e+01
+15 2197     4.095601e+02 -7.487000e+01
+0 2198     6.396500e+02 -2.431300e+02
+1 2198     7.767700e+02 -4.345500e+02
+0 2199     7.181300e+02 -3.491400e+02
+1 2199     8.225400e+02 -5.756700e+02
+12 2199     8.066500e+02 -1.632100e+02
+0 2200     1.597700e+02 4.804700e+02
+1 2200     5.418500e+02 4.486100e+02
+2 2200     -1.446300e+02 2.393700e+02
+6 2200     -2.994400e+02 5.290100e+02
+7 2200     -7.009998e+01 5.643000e+02
+8 2200     -3.902002e+01 1.846600e+02
+13 2200     3.166899e+02 1.625900e+02
+14 2200     4.690000e+02 -2.497900e+02
+0 2201     3.801000e+02 4.858700e+02
+1 2201     7.904100e+02 3.971800e+02
+14 2201     6.863500e+02 -2.321500e+02
+0 2202     -5.678998e+01 4.667300e+02
+1 2202     3.091600e+02 4.892700e+02
+11 2202     9.709998e+01 -2.944800e+02
+0 2203     -5.409973e+00 4.560600e+02
+1 2203     3.603199e+02 4.659800e+02
+5 2203     3.977300e+02 -1.962800e+02
+6 2203     -4.766900e+02 4.626700e+02
+7 2203     -2.265000e+02 5.221600e+02
+14 2203     3.082400e+02 -2.818500e+02
+0 2204     1.997500e+02 4.465600e+02
+1 2204     5.761801e+02 4.031500e+02
+7 2204     -2.800000e+01 5.341500e+02
+0 2205     9.790997e+01 4.382700e+02
+1 2205     4.644399e+02 4.209800e+02
+7 2205     -1.240800e+02 5.149600e+02
+0 2206     2.056600e+02 4.068300e+02
+1 2206     5.717400e+02 3.602800e+02
+14 2206     5.176300e+02 -3.257100e+02
+0 2207     5.709003e+01 2.161600e+02
+1 2207     3.456400e+02 2.115800e+02
+10 2207     -4.853003e+01 4.022100e+02
+0 2208     2.998900e+02 1.934000e+02
+1 2208     5.860400e+02 1.196900e+02
+10 2208     2.369000e+02 4.000800e+02
+0 2209     -4.698200e+02 1.290900e+02
+1 2209     -1.881000e+02 2.687500e+02
+0 2210     -4.253800e+02 9.104001e+01
+1 2210     -1.614600e+02 2.224100e+02
+0 2211     1.939000e+02 7.363000e+01
+1 2211     3.744900e+02 4.465997e+01
+6 2211     1.453800e+02 1.575500e+02
+7 2211     9.379999e+01 2.170200e+02
+0 2212     5.673101e+02 -2.020020e+00
+1 2212     7.946100e+02 -1.623300e+02
+7 2212     4.190000e+02 1.703900e+02
+0 2213     4.803700e+02 -2.472500e+02
+1 2213     5.978000e+02 -3.787900e+02
+0 2214     6.236300e+02 -2.852000e+02
+1 2214     7.405300e+02 -4.711899e+02
+0 2215     7.254900e+02 -2.999600e+02
+1 2215     8.528500e+02 -5.283101e+02
+12 2215     7.903400e+02 -1.148900e+02
+0 2216     4.616801e+02 -4.580000e+02
+1 2216     4.919200e+02 -5.809100e+02
+0 2217     1.438600e+02 -5.546300e+02
+1 2217     1.332800e+02 -5.547400e+02
+4 2217     -7.696500e+02 -5.184399e+02
+7 2217     1.516200e+02 -4.131900e+02
+9 2217     3.356100e+02 -3.576500e+02
+10 2217     1.311300e+02 -4.801899e+02
+0 2218     -4.662300e+02 3.169300e+02
+1 2218     -1.280000e+02 4.437100e+02
+10 2218     -6.866900e+02 4.740800e+02
+11 2218     -2.708500e+02 -4.265800e+02
+0 2219     2.424301e+02 3.341800e+02
+1 2219     5.821700e+02 2.770900e+02
+9 2219     -1.542700e+02 1.720600e+02
+11 2219     3.787700e+02 -4.046100e+02
+13 2219     4.053300e+02 4.491998e+01
+14 2219     5.823800e+02 -4.006700e+02
+0 2220     4.864000e+02 2.788300e+02
+1 2220     8.120699e+02 1.540800e+02
+7 2220     2.893800e+02 4.200200e+02
+13 2220     6.537000e+02 2.463000e+01
+0 2221     4.763000e+01 2.496400e+02
+1 2221     3.488800e+02 2.468300e+02
+7 2221     -1.356100e+02 3.259900e+02
+10 2221     -6.359003e+01 4.406100e+02
+11 2221     1.964900e+02 -4.913101e+02
+0 2222     -4.258200e+02 2.355800e+02
+1 2222     -1.119300e+02 3.563000e+02
+5 2222     -4.473999e+01 -4.354800e+02
+13 2222     -1.552000e+02 -8.051001e+01
+14 2222     -1.241800e+02 -5.305100e+02
+0 2223     5.684200e+02 2.209500e+02
+1 2223     8.660300e+02 7.335999e+01
+7 2223     3.899900e+02 3.874900e+02
+10 2223     5.476500e+02 4.613000e+02
+0 2224     -4.811400e+02 1.771700e+02
+1 2224     -1.819800e+02 3.157200e+02
+7 2224     -6.644800e+02 1.756700e+02
+10 2224     -6.858700e+02 3.021500e+02
+13 2224     -1.911100e+02 -1.322400e+02
+0 2225     -7.151001e+01 1.750700e+02
+1 2225     2.028700e+02 2.073600e+02
+0 2226     -4.348300e+02 1.110500e+02
+1 2226     -1.629000e+02 2.432800e+02
+0 2227     4.728998e+01 1.147300e+02
+1 2227     2.443700e+02 1.270200e+02
+7 2227     -6.070001e+01 2.332600e+02
+15 2227     1.471997e+01 3.006100e+02
+0 2228     5.670001e+01 6.277002e+01
+1 2228     2.347700e+02 7.385999e+01
+7 2228     -3.903998e+01 1.850900e+02
+8 2228     1.815000e+02 3.459000e+01
+10 2228     -3.315997e+01 2.202500e+02
+13 2228     4.151801e+02 -1.633400e+02
+15 2228     3.337000e+01 2.305400e+02
+0 2229     5.526100e+02 2.772998e+01
+1 2229     7.888800e+02 -1.262900e+02
+10 2229     5.452700e+02 2.311200e+02
+0 2230     -1.164100e+02 9.330017e+00
+1 2230     6.342999e+01 6.879999e+01
+6 2230     -2.115100e+02 -2.819000e+01
+7 2230     -2.139100e+02 9.587000e+01
+0 2231     5.861300e+02 1.897998e+01
+1 2231     8.204000e+02 -1.458600e+02
+10 2231     5.849500e+02 2.247700e+02
+12 2231     5.159500e+02 1.613900e+02
+15 2231     7.852500e+02 2.429000e+02
+0 2232     5.861300e+02 1.897998e+01
+1 2232     8.204000e+02 -1.458600e+02
+15 2232     7.852500e+02 2.429000e+02
+0 2233     -1.755100e+02 -6.295001e+01
+1 2233     -1.566998e+01 1.684998e+01
+10 2233     -2.909400e+02 5.056000e+01
+15 2233     -2.616400e+02 2.767999e+01
+0 2234     1.094500e+02 -3.123800e+02
+1 2234     1.754301e+02 -3.094200e+02
+0 2235     7.439600e+02 -3.013100e+02
+1 2235     8.744500e+02 -5.377000e+02
+7 2235     6.409700e+02 -7.222998e+01
+0 2236     4.095500e+02 -4.713400e+02
+1 2236     4.324700e+02 -5.736700e+02
+0 2237     -4.627400e+02 1.279000e+02
+1 2237     -1.820800e+02 2.658600e+02
+0 2238     2.074600e+02 4.273200e+02
+1 2238     5.792800e+02 3.807100e+02
+7 2238     -1.834003e+01 5.151900e+02
+11 2238     3.410300e+02 -3.203100e+02
+0 2239     8.647998e+01 -1.172400e+02
+1 2239     2.085300e+02 -1.114600e+02
+2 2239     2.809700e+02 -7.590002e+01
+3 2239     1.907100e+02 -3.795300e+02
+7 2239     2.187000e+01 1.167999e+01
+10 2239     1.923999e+01 1.445001e+01
+13 2239     4.630100e+02 -3.162900e+02
+15 2239     9.809003e+01 -1.028003e+01
+0 2240     -1.934200e+02 2.071600e+02
+1 2240     9.691998e+01 2.705900e+02
+0 2241     6.120900e+02 -3.498500e+02
+1 2241     6.999700e+02 -5.322500e+02
+0 2242     2.150200e+02 3.379600e+02
+1 2242     5.544301e+02 2.886000e+02
+0 2243     6.217800e+02 -3.372100e+02
+1 2243     7.165601e+02 -5.233199e+02
+0 2244     -4.554000e+02 3.140500e+02
+1 2244     -1.196900e+02 4.397000e+02
+11 2244     -2.616700e+02 -4.286400e+02
+0 2245     6.326300e+02 -3.184700e+02
+1 2245     7.374000e+02 -5.093300e+02
+7 2245     5.486899e+02 -1.055200e+02
+0 2246     5.194900e+02 -1.426200e+02
+1 2246     6.850900e+02 -2.883400e+02
+0 2247     -2.005100e+02 1.658900e+02
+1 2247     7.510999e+01 2.331700e+02
+0 2248     2.196300e+02 1.633400e+02
+1 2248     4.398800e+02 1.244000e+02
+7 2248     9.390997e+01 3.018900e+02
+10 2248     1.450000e+02 3.542900e+02
+13 2248     5.204700e+02 -7.225000e+01
+14 2248     7.357100e+02 -5.597400e+02
+15 2248     2.470601e+02 3.915300e+02
+0 2249     5.465100e+02 1.409973e+00
+1 2249     7.744000e+02 -1.513900e+02
+7 2249     3.976200e+02 1.696000e+02
+12 2249     4.731100e+02 1.247000e+02
+13 2249     7.652500e+02 -2.061300e+02
+0 2250     3.593500e+02 -1.949200e+02
+1 2250     4.584900e+02 -2.772500e+02
+7 2250     2.975500e+02 -1.829999e+01
+10 2250     3.407800e+02 -4.604999e+01
+15 2250     4.817800e+02 -7.972998e+01
+0 2251     7.435999e+01 2.168300e+02
+1 2251     3.630900e+02 2.073800e+02
+6 2251     -2.620800e+02 1.973200e+02
+10 2251     -2.922998e+01 4.042300e+02
+0 2252     6.273999e+01 -5.301001e+01
+1 2252     2.036700e+02 -4.092999e+01
+9 2252     9.160999e+01 8.544000e+01
+13 2252     4.369900e+02 -2.616200e+02
+0 2253     -1.708200e+02 1.395500e+02
+1 2253     9.390002e+01 2.003400e+02
+5 2253     2.701899e+02 -5.439200e+02
+9 2253     -4.085600e+02 -2.696997e+01
+0 2254     -9.950012e+00 1.514300e+02
+1 2254     2.067200e+02 1.773100e+02
+6 2254     -1.394400e+02 1.713000e+02
+7 2254     -1.310100e+02 2.559100e+02
+10 2254     -1.212800e+02 3.166600e+02
+12 2254     -1.027700e+02 2.232800e+02
+13 2254     3.273500e+02 -9.934003e+01
+0 2255     6.306500e+02 -3.522300e+02
+1 2255     7.200601e+02 -5.420500e+02
+0 2256     3.310601e+02 -5.161700e+02
+1 2256     3.337500e+02 -5.872300e+02
+0 2257     2.523900e+02 2.968500e+02
+1 2257     5.776801e+02 2.367100e+02
+0 2258     2.523900e+02 2.968500e+02
+1 2258     5.776801e+02 2.367100e+02
+0 2259     -8.553998e+01 1.127800e+02
+1 2259     1.342100e+02 1.581100e+02
+7 2259     -2.102200e+02 1.976200e+02
+10 2259     -2.039200e+02 2.651300e+02
+15 2259     -1.595700e+02 2.791500e+02
+0 2260     5.698800e+02 -6.469971e+00
+1 2260     7.962200e+02 -1.675300e+02
+6 2260     4.191800e+02 1.145400e+02
+7 2260     4.221100e+02 1.667300e+02
+10 2260     5.685500e+02 1.938500e+02
+0 2261     6.333199e+02 -2.459800e+02
+1 2261     7.677200e+02 -4.354301e+02
+7 2261     5.320500e+02 -4.070001e+01
+10 2261     6.629399e+02 -7.602002e+01
+12 2261     6.748199e+02 -8.820001e+01
+0 2262     -1.003400e+02 2.950300e+02
+1 2262     2.190000e+02 3.303200e+02
+7 2262     -2.952400e+02 3.476600e+02
+11 2262     5.972998e+01 -4.501700e+02
+13 2262     1.190300e+02 -1.117999e+01
+14 2262     2.218700e+02 -4.583400e+02
+0 2263     6.878998e+01 2.654600e+02
+1 2263     3.759700e+02 2.564300e+02
+4 2263     -1.284000e+02 -3.967800e+02
+6 2263     -3.032300e+02 2.490600e+02
+7 2263     -1.199100e+02 3.438400e+02
+9 2263     -2.622600e+02 1.018400e+02
+11 2263     2.166700e+02 -4.757600e+02
+12 2263     -1.600700e+02 2.636500e+02
+13 2263     2.736000e+02 -2.379999e+01
+14 2263     4.166700e+02 -4.828600e+02
+0 2264     6.984003e+01 2.252200e+02
+1 2264     3.623000e+02 2.166700e+02
+5 2264     5.185300e+02 -4.453800e+02
+6 2264     -2.738500e+02 2.051300e+02
+7 2264     -1.083100e+02 3.065700e+02
+11 2264     2.182900e+02 -5.154600e+02
+13 2264     2.860200e+02 -5.745001e+01
+14 2264     4.325601e+02 -5.273700e+02
+0 2265     2.885300e+02 1.668700e+02
+1 2265     5.636300e+02 9.664001e+01
+0 2266     1.083500e+02 6.582001e+01
+1 2266     2.852800e+02 6.226001e+01
+15 2266     1.030100e+02 2.424000e+02
+0 2267     -1.722700e+02 3.806000e+01
+1 2267     2.725000e+01 1.106000e+02
+10 2267     -2.980200e+02 1.676800e+02
+12 2267     -2.800500e+02 3.266998e+01
+15 2267     -2.685600e+02 1.649700e+02
+0 2268     -3.670600e+02 3.609985e+00
+1 2268     -1.387500e+02 1.259200e+02
+7 2268     -5.001800e+02 2.529999e+01
+0 2269     3.721700e+02 1.706000e+01
+1 2269     5.579399e+02 -7.121997e+01
+6 2269     2.958900e+02 1.242200e+02
+7 2269     2.593700e+02 1.782200e+02
+13 2269     6.614000e+02 -1.878100e+02
+15 2269     4.776300e+02 2.111300e+02
+0 2270     2.930400e+02 -6.140015e+00
+1 2270     4.542600e+02 -6.640997e+01
+13 2270     6.192300e+02 -2.061100e+02
+15 2270     3.673600e+02 1.688800e+02
+0 2271     2.247200e+02 3.633100e+02
+1 2271     5.759600e+02 3.111400e+02
+7 2271     1.103003e+01 4.565500e+02
+13 2271     3.824700e+02 6.758002e+01
+14 2271     5.525699e+02 -3.710100e+02
+0 2272     4.637900e+02 2.925700e+02
+1 2272     7.929700e+02 1.750900e+02
+0 2273     -3.138300e+02 -1.118300e+02
+1 2273     -1.311300e+02 4.710022e+00
+13 2273     3.240002e+01 -3.690200e+02
+15 2273     -4.337300e+02 -5.825000e+01
+0 2274     6.401000e+02 -2.541200e+02
+1 2274     7.722600e+02 -4.459000e+02
+7 2274     5.404399e+02 -4.709003e+01
+0 2275     6.494900e+02 -2.772500e+02
+1 2275     7.734500e+02 -4.734600e+02
+7 2275     5.533500e+02 -6.637000e+01
+12 2275     7.061801e+02 -1.142400e+02
+0 2276     7.999878e-01 3.890002e+01
+1 2276     1.745200e+02 6.690002e+01
+6 2276     -5.078003e+01 5.790997e+01
+8 2276     1.383200e+02 -4.800110e-01
+12 2276     -3.503003e+01 1.138400e+02
+15 2276     -3.856000e+01 1.899900e+02
+0 2277     -4.426000e+02 -1.280029e+00
+1 2277     -2.087500e+02 1.418000e+02
+0 2278     1.438600e+02 -5.546300e+02
+1 2278     1.332800e+02 -5.547400e+02
+10 2278     1.311300e+02 -4.801899e+02
+0 2279     1.425200e+02 -5.496400e+02
+1 2279     1.338800e+02 -5.495200e+02
+7 2279     1.493199e+02 -4.089000e+02
+10 2279     1.296400e+02 -4.745699e+02
+0 2280     4.486600e+02 3.227000e+02
+1 2280     7.874900e+02 2.104000e+02
+10 2280     4.000200e+02 5.693300e+02
+13 2280     6.118101e+02 5.795001e+01
+0 2281     5.309800e+02 9.719971e+00
+1 2281     7.612700e+02 -1.381900e+02
+7 2281     3.808700e+02 1.746000e+02
+10 2281     5.214900e+02 2.089000e+02
+0 2282     6.412100e+02 -2.879900e+02
+1 2282     7.597300e+02 -4.815500e+02
+0 2283     1.055100e+02 4.190400e+02
+1 2283     4.676700e+02 3.995500e+02
+7 2283     -1.144600e+02 4.962000e+02
+14 2283     4.175900e+02 -3.174400e+02
+0 2284     3.778998e+01 2.125700e+02
+1 2284     3.247100e+02 2.133600e+02
+6 2284     -3.037000e+02 1.817500e+02
+10 2284     -7.169000e+01 3.950200e+02
+0 2285     6.187000e+02 1.388000e+01
+1 2285     8.530500e+02 -1.619100e+02
+2 2285     5.583101e+02 -1.099854e-01
+6 2285     4.747300e+02 1.590700e+02
+7 2285     4.677600e+02 1.962900e+02
+13 2285     8.397100e+02 -1.839400e+02
+0 2286     4.051001e+01 -4.373999e+01
+1 2286     1.854800e+02 -2.558002e+01
+15 2286     2.528003e+01 8.275000e+01
+0 2287     6.263000e+02 -2.714000e+02
+1 2287     7.496200e+02 -4.584000e+02
+7 2287     5.315699e+02 -6.494000e+01
+15 2287     8.727700e+02 -1.523200e+02
+0 2288     5.199500e+02 -3.962000e+02
+1 2288     5.797900e+02 -5.422000e+02
+7 2288     4.648900e+02 -1.953600e+02
+0 2289     2.144399e+02 3.622600e+02
+1 2289     5.632200e+02 3.130400e+02
+0 2290     5.727000e+02 6.035999e+01
+1 2290     8.199000e+02 -9.812000e+01
+6 2290     4.054000e+02 1.916800e+02
+7 2290     4.162300e+02 2.319300e+02
+13 2290     7.863300e+02 -1.490600e+02
+15 2290     7.621100e+02 2.986900e+02
+0 2291     2.272300e+02 -5.953998e+01
+1 2291     3.658900e+02 -9.771997e+01
+2 2291     3.910800e+02 1.309998e+01
+6 2291     2.277600e+02 2.459998e+01
+7 2291     1.489700e+02 9.229999e+01
+13 2291     5.773199e+02 -2.550100e+02
+15 2291     2.820200e+02 8.698999e+01
+0 2292     4.538500e+02 2.998300e+02
+1 2292     7.854399e+02 1.854600e+02
+7 2292     2.536400e+02 4.352100e+02
+10 2292     4.077100e+02 5.427600e+02
+0 2293     -2.743400e+02 4.808002e+01
+1 2293     -3.721997e+01 1.422400e+02
+0 2294     3.126600e+02 2.268000e+02
+1 2294     6.129301e+02 1.498300e+02
+0 2295     -4.801800e+02 1.323600e+02
+1 2295     -1.963600e+02 2.744100e+02
+7 2295     -6.531800e+02 1.315700e+02
+0 2296     2.306100e+02 1.237000e+01
+1 2296     3.922500e+02 -2.757001e+01
+0 2297     1.819600e+02 -2.236000e+02
+1 2297     2.658500e+02 -2.451200e+02
+15 2297     2.408101e+02 -1.413800e+02
+0 2298     -2.800400e+02 -4.605300e+02
+1 2298     -2.255600e+02 -3.243300e+02
+4 2298     -5.723100e+02 -1.686100e+02
+6 2298     -2.177600e+02 -6.669600e+02
+7 2298     -2.942300e+02 -4.115200e+02
+10 2298     -3.674100e+02 -4.221200e+02
+0 2299     1.907500e+02 3.311700e+02
+1 2299     5.263700e+02 2.881600e+02
+10 2299     9.573999e+01 5.536300e+02
+13 2299     3.619200e+02 3.909003e+01
+0 2300     -4.614900e+02 1.332900e+02
+1 2300     -1.790000e+02 2.705800e+02
+4 2300     -1.532400e+02 -6.894000e+01
+0 2301     2.359600e+02 -3.281200e+02
+1 2301     3.051700e+02 -3.681600e+02
+0 2302     -2.240000e+02 -4.203100e+02
+1 2302     -1.607700e+02 -3.058000e+02
+7 2302     -2.472000e+02 -3.612100e+02
+10 2302     -3.069500e+02 -3.695600e+02
+15 2302     -2.777300e+02 -4.629100e+02
+0 2303     3.169301e+02 2.182200e+02
+1 2303     6.142800e+02 1.396200e+02
+7 2303     1.336000e+02 3.349900e+02
+10 2303     2.550601e+02 4.313000e+02
+0 2304     3.294399e+02 2.119600e+02
+1 2304     6.250500e+02 1.298200e+02
+0 2305     5.099600e+02 -3.558600e+02
+1 2305     5.859200e+02 -4.980699e+02
+7 2305     4.462200e+02 -1.607100e+02
+0 2306     -2.282100e+02 -4.301600e+02
+1 2306     -1.680500e+02 -3.131400e+02
+0 2307     -6.701001e+01 -1.431000e+02
+1 2307     5.557001e+01 -8.992999e+01
+7 2307     -1.285100e+02 -4.273999e+01
+10 2307     -1.558400e+02 -3.182001e+01
+15 2307     -1.059400e+02 -6.569000e+01
+0 2308     4.921100e+02 4.303600e+02
+1 2308     8.678700e+02 3.150900e+02
+7 2308     2.746100e+02 5.694200e+02
+9 2308     8.071997e+01 3.544900e+02
+0 2309     -4.410000e+02 3.058600e+02
+1 2309     -1.073700e+02 4.272300e+02
+7 2309     -6.477600e+02 3.127300e+02
+10 2309     -6.546000e+02 4.617700e+02
+12 2309     -7.791100e+02 1.960800e+02
+15 2309     -6.684800e+02 4.963900e+02
+0 2310     -2.782200e+02 3.416300e+02
+1 2310     5.640002e+01 4.215000e+02
+7 2310     -4.827500e+02 3.722100e+02
+15 2310     -4.474200e+02 5.676100e+02
+0 2311     -4.632600e+02 1.645900e+02
+1 2311     -1.696300e+02 3.000100e+02
+7 2311     -6.421700e+02 1.660200e+02
+0 2312     -2.053600e+02 2.207900e+02
+1 2312     9.026001e+01 2.869200e+02
+7 2312     -3.847600e+02 2.610700e+02
+14 2312     1.275300e+02 -5.427100e+02
+15 2312     -3.282300e+02 4.089100e+02
+0 2313     -3.315700e+02 2.135700e+02
+1 2313     -3.137000e+01 3.122600e+02
+7 2313     -5.134400e+02 2.345800e+02
+10 2313     -5.077300e+02 3.602200e+02
+11 2313     -1.559900e+02 -5.257000e+02
+0 2314     -3.589200e+02 3.312200e+02
+1 2314     -2.431000e+01 4.312000e+02
+4 2314     -5.350000e+01 -1.393600e+02
+7 2314     -5.640600e+02 3.509100e+02
+10 2314     -5.568000e+02 4.997600e+02
+13 2314     -9.672998e+01 7.250000e+00
+15 2314     -5.579200e+02 5.428000e+02
+0 2315     -4.318900e+02 3.592800e+02
+1 2315     -8.641998e+01 4.763100e+02
+10 2315     -6.514200e+02 5.284900e+02
+15 2315     -6.659500e+02 5.730300e+02
+0 2316     -3.343600e+02 5.840002e+01
+1 2316     -8.913000e+01 1.681400e+02
+10 2316     -4.917200e+02 1.756800e+02
+0 2317     -3.791600e+02 3.809800e+02
+1 2317     -3.303003e+01 4.856000e+02
+7 2317     -5.923800e+02 4.027100e+02
+11 2317     -1.902500e+02 -3.702500e+02
+0 2318     -4.220900e+02 2.885300e+02
+1 2318     -9.476001e+01 4.060100e+02
+7 2318     -6.238000e+02 2.976400e+02
+11 2318     -2.331700e+02 -4.529800e+02
+12 2318     -7.503500e+02 1.803100e+02
+0 2319     -4.783500e+02 1.632000e+02
+1 2319     -1.840400e+02 3.024300e+02
+7 2319     -6.579100e+02 1.617000e+02
+13 2319     -1.857200e+02 -1.436500e+02
+0 2320     -4.342900e+02 2.598999e+01
+1 2320     -1.922300e+02 1.645000e+02
+10 2320     -6.081300e+02 1.262800e+02
+0 2321     5.408500e+02 -3.036100e+02
+1 2321     6.410900e+02 -4.579500e+02
+2 2321     6.709100e+02 -2.623900e+02
+7 2321     4.618300e+02 -1.081000e+02
+12 2321     6.099700e+02 -1.683300e+02
+0 2322     7.969000e+01 -5.538000e+02
+1 2322     7.210999e+01 -5.311200e+02
+6 2322     2.500100e+02 -5.985601e+02
+7 2322     8.963000e+01 -4.255900e+02
+9 2322     2.872100e+02 -3.788700e+02
+10 2322     5.760999e+01 -4.864900e+02
+12 2322     2.429700e+02 -5.702400e+02
+0 2323     -2.048600e+02 -5.259100e+02
+1 2323     -1.818600e+02 -4.086200e+02
+0 2324     4.021500e+02 -5.998999e+01
+1 2324     5.614900e+02 -1.584300e+02
+0 2325     -2.913600e+02 -4.287400e+02
+1 2325     -2.242600e+02 -2.918500e+02
+4 2325     -5.437100e+02 -1.609000e+02
+7 2325     -3.145700e+02 -3.831200e+02
+10 2325     -3.843000e+02 -3.861900e+02
+15 2325     -3.674900e+02 -4.829200e+02
+0 2326     1.838800e+02 1.577002e+01
+1 2326     3.443199e+02 -1.001001e+01
+15 2326     2.127800e+02 1.838800e+02
+0 2327     -6.850100e+02 -5.167800e+02
+1 2327     -5.893600e+02 -2.484600e+02
+0 2328     2.918600e+02 2.515002e+01
+1 2328     4.634500e+02 -3.466998e+01
+0 2329     -2.190500e+02 -1.187600e+02
+1 2329     -5.497998e+01 -2.744000e+01
+0 2330     -3.547998e+01 -1.650800e+02
+1 2330     7.690002e+01 -1.202200e+02
+0 2331     1.028700e+02 -3.379100e+02
+1 2331     1.643600e+02 -3.328100e+02
+10 2331     6.170001e+01 -2.370500e+02
+15 2331     1.520500e+02 -3.068100e+02
+0 2332     -1.396900e+02 -1.045900e+02
+1 2332     1.760010e+00 -3.215997e+01
+6 2332     -1.709700e+02 -1.597500e+02
+7 2332     -2.121400e+02 -1.912000e+01
+12 2332     -1.661700e+02 -1.003000e+02
+15 2332     -2.085000e+02 -2.378998e+01
+0 2333     2.822000e+02 -1.854500e+02
+1 2333     3.827500e+02 -2.415900e+02
+10 2333     2.514200e+02 -4.364001e+01
+15 2333     3.740100e+02 -7.715997e+01
+0 2334     9.456000e+01 -2.377000e+02
+1 2334     1.733500e+02 -2.299400e+02
+7 2334     5.584003e+01 -1.028800e+02
+10 2334     4.152002e+01 -1.238600e+02
+15 2334     1.237200e+02 -1.721300e+02
+0 2335     -2.456600e+02 -5.066600e+02
+1 2335     -2.114600e+02 -3.774100e+02
+7 2335     -2.474900e+02 -4.499000e+02
+9 2335     -2.697998e+01 -4.724100e+02
+10 2335     -3.224300e+02 -4.716300e+02
+0 2336     1.967600e+02 -1.084700e+02
+1 2336     3.204700e+02 -1.376400e+02
+6 2336     2.132700e+02 -4.047998e+01
+12 2336     2.355500e+02 1.770020e+00
+15 2336     2.471801e+02 1.628003e+01
+0 2337     9.898999e+01 -2.900100e+02
+1 2337     1.674900e+02 -2.828400e+02
+0 2338     1.758199e+02 -3.301300e+02
+1 2338     2.379200e+02 -3.498800e+02
+10 2338     1.440600e+02 -2.202400e+02
+15 2338     2.500699e+02 -2.869300e+02
+0 2339     7.603998e+01 -2.239400e+02
+1 2339     1.609600e+02 -2.107700e+02
+12 2339     1.484100e+02 -1.567800e+02
+0 2340     -6.608700e+02 -5.025400e+02
+1 2340     -5.654300e+02 -2.438800e+02
+0 2341     2.429301e+02 -2.412400e+02
+1 2341     3.195400e+02 -2.826600e+02
+10 2341     2.123400e+02 -1.116300e+02
+15 2341     3.268500e+02 -1.577100e+02
+0 2342     1.309400e+02 -4.132001e+01
+1 2342     2.730300e+02 -4.990002e+01
+15 2342     1.475000e+02 9.866000e+01
+0 2343     -3.165000e+02 -5.567400e+02
+1 2343     -2.923900e+02 -3.992300e+02
+0 2344     1.730500e+02 -2.690997e+01
+1 2344     3.196100e+02 -4.826001e+01
+0 2345     1.868600e+02 -1.329999e+01
+1 2345     3.378700e+02 -3.978003e+01
+10 2345     1.240300e+02 1.453100e+02
+15 2345     2.204500e+02 1.445100e+02
+0 2346     -1.409500e+02 -5.381400e+02
+1 2346     -1.285000e+02 -4.400601e+02
+0 2347     -3.547998e+01 -1.650800e+02
+1 2347     7.690002e+01 -1.202200e+02
+0 2348     2.918600e+02 2.515002e+01
+1 2348     4.634500e+02 -3.466998e+01
+15 2348     3.621600e+02 2.115900e+02
+0 2349     -8.226600e+02 -4.331899e+02
+1 2349     -6.712700e+02 -1.373000e+02
+0 2350     3.931100e+02 5.037000e+01
+1 2350     5.997500e+02 -4.578003e+01
+15 2350     5.050699e+02 2.602500e+02
+0 2351     2.555100e+02 -2.739200e+02
+1 2351     3.308101e+02 -3.210800e+02
+15 2351     3.501700e+02 -2.009700e+02
+0 2352     2.300000e+02 1.422998e+01
+1 2352     3.922300e+02 -2.534998e+01
+15 2352     2.766801e+02 1.886100e+02
+0 2353     1.315500e+02 -7.716998e+01
+1 2353     2.634399e+02 -8.534998e+01
+6 2353     1.416800e+02 -2.301001e+01
+8 2353     2.879800e+02 -6.406000e+01
+0 2354     1.408900e+02 3.380005e+00
+1 2354     2.969000e+02 -8.919983e+00
+7 2354     5.633002e+01 1.415100e+02
+10 2354     7.014001e+01 1.598000e+02
+15 2354     1.554200e+02 1.608700e+02
+0 2355     1.613101e+02 -1.474200e+02
+1 2355     2.708199e+02 -1.639800e+02
+7 2355     1.021100e+02 -4.010010e+00
+15 2355     2.030400e+02 -4.114001e+01
+0 2356     -2.523800e+02 -4.514700e+02
+1 2356     -1.975700e+02 -3.250200e+02
+0 2357     5.429600e+02 1.146002e+01
+1 2357     7.739000e+02 -1.401400e+02
+6 2357     3.795500e+02 1.230000e+02
+7 2357     3.926400e+02 1.789000e+02
+12 2357     4.668400e+02 1.341000e+02
+0 2358     1.894900e+02 -5.829999e+01
+1 2358     3.270601e+02 -8.545001e+01
+0 2359     -2.146900e+02 -5.141600e+02
+1 2359     -1.870400e+02 -3.939600e+02
+6 2359     -1.032700e+02 -6.927900e+02
+0 2360     1.993700e+02 -1.047998e+01
+1 2360     3.517800e+02 -4.076001e+01
+15 2360     2.375200e+02 1.504900e+02
+0 2361     2.821700e+02 -1.102002e+01
+1 2361     4.402700e+02 -6.766998e+01
+0 2362     -2.544400e+02 -5.490800e+02
+1 2362     -2.343600e+02 -4.123900e+02
+0 2363     -1.788500e+02 -5.044500e+02
+1 2363     -1.505400e+02 -3.973000e+02
+0 2364     1.945100e+02 1.037000e+01
+1 2364     3.535200e+02 -1.845001e+01
+7 2364     1.067500e+02 1.562300e+02
+10 2364     1.308100e+02 1.730900e+02
+12 2364     1.991000e+02 1.394900e+02
+15 2364     2.282700e+02 1.780700e+02
+0 2365     -3.039400e+02 -4.635100e+02
+1 2365     -2.478700e+02 -3.190700e+02
+4 2365     -5.702300e+02 -1.509300e+02
+7 2365     -3.186900e+02 -4.194400e+02
+9 2365     -1.165100e+02 -4.668600e+02
+15 2365     -3.803400e+02 -5.330900e+02
+0 2366     9.592999e+01 -3.548999e+01
+1 2366     2.405900e+02 -3.363000e+01
+2 2366     2.668500e+02 1.856000e+01
+7 2366     1.859003e+01 9.589999e+01
+0 2367     -4.015997e+01 -1.958500e+02
+1 2367     5.956000e+01 -1.470700e+02
+6 2367     6.679993e+00 -2.135100e+02
+7 2367     -8.767999e+01 -8.763000e+01
+10 2367     -1.185900e+02 -9.017999e+01
+12 2367     8.300171e-01 -1.630300e+02
+15 2367     -6.394000e+01 -1.333700e+02
+0 2368     7.221002e+01 -2.084700e+02
+1 2368     1.635200e+02 -1.950200e+02
+2 2368     3.156899e+02 -1.622000e+02
+4 2368     -4.379800e+02 -4.702200e+02
+7 2368     2.662000e+01 -7.953998e+01
+10 2368     1.172998e+01 -9.244000e+01
+15 2368     9.012000e+01 -1.356000e+02
+0 2369     9.642999e+01 -2.406500e+02
+1 2369     1.742400e+02 -2.333400e+02
+7 2369     5.842999e+01 -1.053700e+02
+10 2369     4.328998e+01 -1.268000e+02
+0 2370     7.190900e+02 -3.067200e+02
+1 2370     8.422900e+02 -5.325601e+02
+7 2370     6.207100e+02 -8.115997e+01
+0 2371     -1.993200e+02 -5.288600e+02
+1 2371     -1.778000e+02 -4.125600e+02
+4 2371     -6.498800e+02 -2.273500e+02
+6 2371     -7.321002e+01 -7.004200e+02
+7 2371     -1.943500e+02 -4.612800e+02
+10 2371     -2.661200e+02 -4.914500e+02
+0 2372     -1.258300e+02 -5.327400e+02
+1 2372     -1.123600e+02 -4.408300e+02
+6 2372     1.378003e+01 -6.691400e+02
+7 2372     -1.190600e+02 -4.490400e+02
+0 2373     2.983600e+02 -6.940997e+01
+1 2373     4.404000e+02 -1.316000e+02
+7 2373     2.143800e+02 9.057001e+01
+10 2373     2.585800e+02 9.296002e+01
+15 2373     3.828101e+02 8.363000e+01
+0 2374     2.636100e+02 -1.525500e+02
+1 2374     3.749500e+02 -2.029900e+02
+7 2374     1.989700e+02 6.130005e+00
+10 2374     2.271300e+02 -7.469971e+00
+15 2374     3.447600e+02 -3.482001e+01
+0 2375     -6.954800e+02 -3.586100e+02
+1 2375     -5.473900e+02 -1.086500e+02
+7 2375     -7.662400e+02 -4.024800e+02
+0 2376     3.121000e+02 -2.167400e+02
+1 2376     4.043000e+02 -2.832700e+02
+6 2376     3.637600e+02 -1.235300e+02
+7 2376     2.555800e+02 -4.866998e+01
+10 2376     2.889000e+02 -7.628003e+01
+12 2376     3.923000e+02 -9.138000e+01
+15 2376     4.199100e+02 -1.160100e+02
+0 2377     2.508199e+02 -2.885500e+02
+1 2377     3.235100e+02 -3.343400e+02
+7 2377     2.061000e+02 -1.317200e+02
+10 2377     2.256801e+02 -1.644800e+02
+15 2377     3.462300e+02 -2.214600e+02
+0 2378     6.435400e+02 -2.618600e+02
+1 2378     7.733700e+02 -4.554399e+02
+7 2378     5.445000e+02 -5.350000e+01
+0 2379     -2.140700e+02 -5.258199e+02
+1 2379     -1.897900e+02 -4.048500e+02
+6 2379     -9.287000e+01 -7.047100e+02
+7 2379     -2.098500e+02 -4.609700e+02
+10 2379     -2.831900e+02 -4.891300e+02
+0 2380     -8.576001e+01 -5.554500e+02
+1 2380     -8.408002e+01 -4.749399e+02
+4 2380     -7.042300e+02 -3.186700e+02
+7 2380     -7.278998e+01 -4.621801e+02
+9 2380     1.545000e+02 -4.401700e+02
+0 2381     6.045100e+02 -1.882001e+01
+1 2381     8.280900e+02 -1.916500e+02
+7 2381     4.584900e+02 1.621700e+02
+12 2381     5.480200e+02 1.255000e+02
+13 2381     8.296700e+02 -2.159600e+02
+15 2381     8.161400e+02 1.932000e+02
+0 2382     3.288600e+02 -1.204700e+02
+1 2382     4.559900e+02 -1.931900e+02
+7 2382     2.521700e+02 4.575000e+01
+0 2383     3.170400e+02 -1.916400e+02
+1 2383     4.161200e+02 -2.591900e+02
+6 2383     3.638800e+02 -9.321002e+01
+7 2383     2.562800e+02 -2.370001e+01
+8 2383     4.611300e+02 -1.347700e+02
+10 2383     2.918101e+02 -4.748999e+01
+12 2383     3.928900e+02 -5.983002e+01
+13 2383     6.730900e+02 -3.658000e+02
+15 2383     4.225800e+02 -8.173999e+01
+0 2384     9.445001e+01 -3.393200e+02
+1 2384     1.549700e+02 -3.307900e+02
+7 2384     6.309003e+01 -2.135600e+02
+15 2384     1.403000e+02 -3.097400e+02
+0 2385     -1.863600e+02 -5.011600e+02
+1 2385     -1.559100e+02 -3.915700e+02
+7 2385     -1.882600e+02 -4.310500e+02
+0 2386     6.484500e+02 -2.665200e+02
+1 2386     7.761100e+02 -4.620300e+02
+7 2386     5.499399e+02 -5.635999e+01
+0 2387     2.379301e+02 -7.466998e+01
+1 2387     3.729200e+02 -1.169500e+02
+6 2387     2.424600e+02 9.469971e+00
+10 2387     1.897700e+02 7.928998e+01
+15 2387     2.993000e+02 6.785999e+01
+0 2388     2.349500e+02 -7.266998e+01
+1 2388     3.705000e+02 -1.141600e+02
+6 2388     2.393900e+02 1.066998e+01
+7 2388     1.585699e+02 7.990997e+01
+15 2388     2.946100e+02 7.044000e+01
+0 2389     2.374800e+02 -8.256000e+01
+1 2389     3.703300e+02 -1.252700e+02
+10 2389     1.898199e+02 7.009998e+01
+15 2389     2.997100e+02 5.690997e+01
+0 2390     2.816899e+02 -2.410500e+02
+1 2390     3.655300e+02 -2.967100e+02
+6 2390     3.424400e+02 -1.601600e+02
+10 2390     2.563500e+02 -1.075200e+02
+15 2390     3.812700e+02 -1.529800e+02
+0 2391     -2.078900e+02 -5.297200e+02
+1 2391     -1.857500e+02 -4.103900e+02
+7 2391     -2.027900e+02 -4.640100e+02
+9 2391     2.628998e+01 -4.724900e+02
+10 2391     -2.757600e+02 -4.931899e+02
+0 2392     -1.670400e+02 -4.871300e+02
+1 2392     -1.334400e+02 -3.847700e+02
+7 2392     -1.720100e+02 -4.137200e+02
+9 2392     3.415002e+01 -4.270000e+02
+0 2393     2.322100e+02 -1.077300e+02
+1 2393     3.577400e+02 -1.484300e+02
+6 2393     2.450800e+02 -2.904999e+01
+7 2393     1.604900e+02 4.484998e+01
+12 2393     2.712900e+02 1.147998e+01
+15 2393     2.956000e+02 2.190002e+01
+0 2394     9.715002e+01 -2.360000e+02
+1 2394     1.765500e+02 -2.292000e+02
+7 2394     5.809003e+01 -1.006000e+02
+10 2394     4.390002e+01 -1.216800e+02
+15 2394     1.268400e+02 -1.694600e+02
+0 2395     -9.794000e+01 -5.127900e+02
+1 2395     -7.921997e+01 -4.317000e+02
+9 2395     1.121300e+02 -4.178700e+02
+0 2396     -1.033002e+01 -6.265002e+01
+1 2396     1.338600e+02 -2.939001e+01
+3 2396     6.678003e+01 -3.596900e+02
+7 2396     -8.628998e+01 4.769000e+01
+10 2396     -9.882001e+01 6.715997e+01
+15 2396     -3.996997e+01 5.057001e+01
+0 2397     7.500000e+01 -5.951001e+01
+1 2397     2.132800e+02 -5.109998e+01
+2 2397     2.536300e+02 -1.282001e+01
+7 2397     1.780029e+00 6.781000e+01
+13 2397     4.493199e+02 -2.660600e+02
+15 2397     7.420001e+01 6.646997e+01
+0 2398     2.949900e+02 1.098999e+01
+1 2398     4.621801e+02 -5.010999e+01
+15 2398     3.680200e+02 1.925400e+02
+0 2399     3.473400e+02 -1.814600e+02
+1 2399     4.518101e+02 -2.599600e+02
+15 2399     4.641200e+02 -6.335999e+01
+0 2400     1.777100e+02 -2.432300e+02
+1 2400     2.559800e+02 -2.631700e+02
+7 2400     1.357800e+02 -9.483002e+01
+10 2400     1.372500e+02 -1.210000e+02
+15 2400     2.378800e+02 -1.688800e+02
+0 2401     -1.720100e+02 -5.345300e+02
+1 2401     -1.549000e+02 -4.269500e+02
+6 2401     -3.839001e+01 -6.932000e+02
+7 2401     -1.658200e+02 -4.606801e+02
+9 2401     6.525000e+01 -4.612300e+02
+0 2402     -1.267000e+02 -5.418199e+02
+1 2402     -1.160400e+02 -4.483900e+02
+4 2402     -6.808900e+02 -2.847100e+02
+6 2402     1.902002e+01 -6.793500e+02
+7 2402     -1.172300e+02 -4.578101e+02
+9 2402     1.086500e+02 -4.481600e+02
+0 2403     -1.267000e+02 -5.418199e+02
+1 2403     -1.160400e+02 -4.483900e+02
+6 2403     1.902002e+01 -6.793500e+02
+7 2403     -1.172300e+02 -4.578101e+02
+9 2403     1.086500e+02 -4.481600e+02
+0 2404     -3.271700e+02 -1.862900e+02
+1 2404     -1.698700e+02 -6.004999e+01
+0 2405     2.622200e+02 -2.032300e+02
+1 2405     3.551600e+02 -2.523400e+02
+6 2405     3.188900e+02 -1.200100e+02
+7 2405     2.086000e+02 -4.223999e+01
+10 2405     2.303700e+02 -6.622998e+01
+12 2405     3.415800e+02 -8.442999e+01
+15 2405     3.489399e+02 -1.039400e+02
+0 2406     1.819600e+02 -2.236000e+02
+1 2406     2.658500e+02 -2.451200e+02
+10 2406     1.399700e+02 -9.741998e+01
+15 2406     2.408101e+02 -1.413800e+02
+0 2407     -2.351700e+02 -4.160700e+02
+1 2407     -1.692400e+02 -2.981500e+02
+0 2408     2.073600e+02 -3.413300e+02
+1 2408     2.666100e+02 -3.721300e+02
+15 2408     2.946899e+02 -2.985800e+02
+0 2409     6.745900e+02 -2.642000e+02
+1 2409     8.081899e+02 -4.704700e+02
+7 2409     5.728700e+02 -5.059003e+01
+0 2410     -1.808600e+02 -4.785800e+02
+1 2410     -1.427600e+02 -3.728800e+02
+6 2410     -8.648001e+01 -6.383900e+02
+7 2410     -1.886400e+02 -4.083600e+02
+9 2410     1.339001e+01 -4.267500e+02
+0 2411     2.854399e+02 2.347998e+01
+1 2411     4.558300e+02 -3.384003e+01
+7 2411     1.875500e+02 1.799500e+02
+13 2411     6.085100e+02 -1.811600e+02
+0 2412     3.746300e+02 -7.853998e+01
+1 2412     5.224100e+02 -1.671700e+02
+15 2412     4.912800e+02 8.119000e+01
+0 2413     1.552000e+02 -1.287300e+02
+1 2413     2.724900e+02 -1.439600e+02
+7 2413     9.163000e+01 1.200000e+01
+10 2413     9.990997e+01 8.349976e+00
+13 2413     5.253101e+02 -3.213200e+02
+15 2413     1.930200e+02 -1.682001e+01
+0 2414     2.741400e+02 -2.010700e+02
+1 2414     3.679000e+02 -2.537000e+02
+10 2414     2.436801e+02 -6.241998e+01
+15 2414     3.643600e+02 -9.956000e+01
+0 2415     2.955601e+02 -2.945100e+02
+1 2415     3.720400e+02 -3.567700e+02
+10 2415     2.776400e+02 -1.667200e+02
+15 2415     4.097700e+02 -2.238700e+02
+0 2416     2.336500e+02 -3.089100e+02
+1 2416     2.998000e+02 -3.489800e+02
+10 2416     2.081000e+02 -1.901200e+02
+15 2416     3.255400e+02 -2.513800e+02
+0 2417     2.996899e+02 -2.972200e+02
+1 2417     3.765100e+02 -3.606200e+02
+15 2417     4.162100e+02 -2.274100e+02
+0 2418     1.721500e+02 -3.259000e+02
+1 2418     2.344700e+02 -3.449700e+02
+10 2418     1.392900e+02 -2.159200e+02
+15 2418     2.430300e+02 -2.815900e+02
+0 2419     2.354100e+02 -3.228300e+02
+1 2419     3.003400e+02 -3.636800e+02
+10 2419     2.118101e+02 -2.059000e+02
+15 2419     3.308000e+02 -2.699600e+02
+0 2420     6.428101e+02 -2.702500e+02
+1 2420     7.688199e+02 -4.637900e+02
+7 2420     5.455800e+02 -6.126001e+01
+10 2420     6.760601e+02 -1.031200e+02
+12 2420     6.954900e+02 -1.094400e+02
+0 2421     -1.142700e+02 -5.166100e+02
+1 2421     -9.572998e+01 -4.298000e+02
+4 2421     -6.608800e+02 -2.940400e+02
+6 2421     1.676001e+01 -6.467600e+02
+7 2421     -1.112500e+02 -4.307800e+02
+9 2421     1.015100e+02 -4.259600e+02
+0 2422     3.210100e+02 2.409003e+01
+1 2422     4.967800e+02 -4.515997e+01
+15 2422     4.031400e+02 2.142900e+02
+0 2423     3.210100e+02 2.409003e+01
+1 2423     4.967800e+02 -4.515997e+01
+7 2423     2.183300e+02 1.837400e+02
+15 2423     4.031400e+02 2.142900e+02
+0 2424     3.305000e+02 2.431000e+01
+1 2424     5.081700e+02 -4.859003e+01
+10 2424     2.869500e+02 2.037100e+02
+15 2424     4.169900e+02 2.155800e+02
+0 2425     2.464900e+02 -2.454600e+02
+1 2425     3.227300e+02 -2.886600e+02
+6 2425     3.263800e+02 -1.661400e+02
+7 2425     2.032000e+02 -8.412000e+01
+10 2425     2.160100e+02 -1.161700e+02
+12 2425     3.441899e+02 -1.303700e+02
+15 2425     3.314600e+02 -1.633400e+02
+0 2426     -1.728800e+02 -5.236600e+02
+1 2426     -1.519900e+02 -4.165700e+02
+6 2426     -4.600000e+01 -6.817500e+02
+7 2426     -1.693300e+02 -4.505300e+02
+0 2427     -1.361000e+02 -5.394000e+02
+1 2427     -1.240900e+02 -4.431200e+02
+4 2427     -6.754200e+02 -2.761500e+02
+6 2427     5.770020e+00 -6.810000e+02
+7 2427     -1.278900e+02 -4.573800e+02
+9 2427     9.665997e+01 -4.497600e+02
+0 2428     5.371002e+01 -2.197400e+02
+1 2428     1.414200e+02 -1.999700e+02
+7 2428     1.162000e+01 -9.337000e+01
+10 2428     -7.530029e+00 -1.075500e+02
+13 2428     4.558300e+02 -4.076300e+02
+15 2428     6.628998e+01 -1.532900e+02
+0 2429     -2.494600e+02 -4.618400e+02
+1 2429     -1.986800e+02 -3.353400e+02
+4 2429     -5.805500e+02 -1.903300e+02
+6 2429     -1.793600e+02 -6.537700e+02
+7 2429     -2.624400e+02 -4.066800e+02
+9 2429     -6.400000e+01 -4.428500e+02
+0 2430     3.849301e+02 -7.440997e+01
+1 2430     5.363700e+02 -1.667300e+02
+7 2430     2.907800e+02 9.564001e+01
+10 2430     3.593700e+02 9.538000e+01
+15 2430     5.062000e+02 8.710001e+01
+0 2431     -1.322200e+02 -5.330900e+02
+1 2431     -1.181400e+02 -4.389800e+02
+6 2431     7.150024e+00 -6.720200e+02
+0 2432     9.102002e+01 -2.291000e+02
+1 2432     1.731600e+02 -2.206600e+02
+7 2432     5.041998e+01 -9.554999e+01
+10 2432     3.672998e+01 -1.139900e+02
+15 2432     1.182600e+02 -1.607700e+02
+0 2433     3.343300e+02 -2.422500e+02
+1 2433     4.260100e+02 -3.185300e+02
+6 2433     3.807000e+02 -1.537500e+02
+10 2433     3.169600e+02 -1.026700e+02
+12 2433     4.143199e+02 -1.244600e+02
+15 2433     4.548199e+02 -1.478600e+02
+0 2434     3.816500e+02 -2.076400e+02
+1 2434     4.932600e+02 -2.977600e+02
+0 2435     3.588800e+02 -2.168400e+02
+1 2435     4.572300e+02 -3.019900e+02
+10 2435     3.417800e+02 -7.114001e+01
+15 2435     4.839000e+02 -1.112400e+02
+0 2436     -1.550700e+02 -5.052000e+02
+1 2436     -1.282200e+02 -4.052600e+02
+7 2436     -1.547000e+02 -4.292700e+02
+0 2437     5.179000e+02 -1.455000e+02
+1 2437     6.820699e+02 -2.907400e+02
+6 2437     4.409600e+02 -4.048999e+01
+0 2438     -2.722900e+02 -4.550200e+02
+1 2438     -2.165400e+02 -3.219900e+02
+4 2438     -5.698100e+02 -1.736800e+02
+7 2438     -2.882700e+02 -4.051400e+02
+9 2438     -9.216998e+01 -4.481500e+02
+0 2439     2.337400e+02 -5.382300e+02
+1 2439     2.275200e+02 -5.721300e+02
+6 2439     3.962600e+02 -5.202600e+02
+7 2439     2.328600e+02 -3.799200e+02
+9 2439     3.899500e+02 -3.197000e+02
+0 2440     5.231600e+02 -2.988000e+02
+1 2440     6.234600e+02 -4.462400e+02
+0 2441     6.148300e+02 -3.753500e+02
+1 2441     6.918400e+02 -5.584900e+02
+7 2441     5.474700e+02 -1.599700e+02
+12 2441     7.212200e+02 -2.162600e+02
+0 2442     2.180000e+02 -2.206000e+01
+1 2442     3.677000e+02 -5.791998e+01
+6 2442     2.085000e+02 6.272998e+01
+10 2442     1.611000e+02 1.379500e+02
+15 2442     2.644500e+02 1.370300e+02
+0 2443     -1.247300e+02 -5.099000e+02
+1 2443     -1.025800e+02 -4.195600e+02
+4 2443     -6.523900e+02 -2.860400e+02
+6 2443     -2.001953e-02 -6.446100e+02
+7 2443     -1.233600e+02 -4.266000e+02
+9 2443     8.758002e+01 -4.253500e+02
+0 2444     5.575100e+02 3.767999e+01
+1 2444     7.966899e+02 -1.173200e+02
+15 2444     7.438600e+02 2.651600e+02
+0 2445     1.618101e+02 -5.557001e+01
+1 2445     2.996700e+02 -7.352002e+01
+2 2445     3.369600e+02 1.140002e+01
+6 2445     1.659500e+02 1.104999e+01
+8 2445     3.064500e+02 -3.991000e+01
+0 2446     -1.705500e+02 -5.043700e+02
+1 2446     -1.425300e+02 -3.998400e+02
+7 2446     -1.713100e+02 -4.306000e+02
+0 2447     6.623800e+02 -9.689001e+01
+1 2447     8.645100e+02 -2.935300e+02
+6 2447     5.578900e+02 5.228003e+01
+7 2447     5.253800e+02 9.839001e+01
+8 2447     5.813800e+02 -1.074800e+02
+10 2447     6.838600e+02 9.863000e+01
+12 2447     6.358800e+02 6.192999e+01
+0 2448     2.001300e+02 -2.140002e+01
+1 2448     3.492500e+02 -5.176001e+01
+15 2448     2.399000e+02 1.352900e+02
+0 2449     2.922900e+02 5.455800e+02
+1 2449     7.072100e+02 4.835500e+02
+2 2449     -3.809998e+01 3.122400e+02
+6 2449     -1.720300e+02 6.364300e+02
+11 2449     4.075000e+02 -2.113600e+02
+12 2449     -7.289978e+00 5.992800e+02
+13 2449     4.192000e+02 2.262200e+02
+14 2449     5.939800e+02 -1.760100e+02
+0 2450     3.404301e+02 5.572400e+02
+1 2450     7.662300e+02 4.844300e+02
+11 2450     4.498500e+02 -1.982300e+02
+13 2450     4.569200e+02 2.393400e+02
+14 2450     6.402800e+02 -1.611500e+02
+0 2451     2.292000e+02 4.660400e+02
+1 2451     6.136801e+02 4.155200e+02
+5 2451     6.319900e+02 -1.806300e+02
+6 2451     -2.231600e+02 5.252900e+02
+12 2451     -5.702002e+01 5.017400e+02
+0 2452     8.827002e+01 5.109900e+02
+1 2452     4.735200e+02 4.985800e+02
+11 2452     2.254600e+02 -2.510200e+02
+0 2453     2.237300e+02 4.586200e+02
+1 2453     6.058300e+02 4.091800e+02
+7 2453     -6.849976e+00 5.487900e+02
+0 2454     3.320100e+02 4.502900e+02
+1 2454     7.243700e+02 3.719600e+02
+6 2454     -1.118700e+02 5.282100e+02
+7 2454     9.587000e+01 5.518000e+02
+13 2454     4.551801e+02 1.484000e+02
+0 2455     3.703600e+02 4.929600e+02
+1 2455     7.811500e+02 4.073000e+02
+2 2455     3.481000e+01 2.574200e+02
+11 2455     4.858900e+02 -2.524800e+02
+14 2455     6.759600e+02 -2.251600e+02
+0 2456     3.002100e+02 5.588100e+02
+1 2456     7.202000e+02 4.959600e+02
+2 2456     -3.296002e+01 3.278000e+02
+3 2456     -1.759900e+02 -8.200012e+00
+5 2456     7.008800e+02 -7.960999e+01
+8 2456     5.345001e+01 2.560500e+02
+9 2456     -1.821700e+02 3.567200e+02
+11 2456     4.126899e+02 -1.994700e+02
+12 2456     -2.049988e+00 6.173400e+02
+13 2456     4.249100e+02 2.382700e+02
+0 2457     2.442000e+02 5.580200e+02
+1 2457     6.569800e+02 5.087400e+02
+11 2457     3.631600e+02 -2.034300e+02
+13 2457     3.808500e+02 2.335900e+02
+14 2457     5.467800e+02 -1.658100e+02
+0 2458     2.238300e+02 4.501300e+02
+1 2458     6.036000e+02 4.004800e+02
+7 2458     -5.679993e+00 5.409500e+02
+0 2459     3.326001e+01 5.712500e+02
+1 2459     4.303600e+02 5.744200e+02
+2 2459     -2.665000e+02 3.398400e+02
+5 2459     4.388700e+02 -7.481000e+01
+0 2460     3.564000e+02 4.500200e+02
+1 2460     7.521500e+02 3.650500e+02
+0 2461     4.393900e+02 5.041800e+02
+1 2461     8.669301e+02 4.018900e+02
+3 2461     -6.045001e+01 -6.187000e+01
+0 2462     3.886000e+02 5.048000e+02
+1 2462     8.061700e+02 4.154700e+02
+3 2462     -9.915002e+01 -6.134998e+01
+8 2462     1.204200e+02 2.112300e+02
+9 2462     -1.115500e+02 3.105700e+02
+0 2463     4.154800e+02 4.569600e+02
+1 2463     8.227000e+02 3.567400e+02
+6 2463     -2.720001e+01 5.532100e+02
+7 2463     1.723800e+02 5.666500e+02
+11 2463     5.342800e+02 -2.814100e+02
+0 2464     1.240500e+02 4.995200e+02
+1 2464     5.086500e+02 4.778600e+02
+7 2464     -1.067700e+02 5.801300e+02
+0 2465     3.995400e+02 4.502400e+02
+1 2465     8.017900e+02 3.537300e+02
+7 2465     1.590500e+02 5.582000e+02
+0 2466     1.361300e+02 4.510200e+02
+1 2466     5.083199e+02 4.239900e+02
+7 2466     -8.859003e+01 5.319900e+02
+8 2466     -5.253003e+01 1.573700e+02
+0 2467     2.213400e+02 4.726900e+02
+1 2467     6.070500e+02 4.244600e+02
+7 2467     -1.079999e+01 5.627600e+02
+11 2467     3.500500e+02 -2.787700e+02
+12 2467     -6.615997e+01 5.073500e+02
+0 2468     1.011400e+02 4.475500e+02
+1 2468     4.702900e+02 4.296800e+02
+7 2468     -1.220900e+02 5.245600e+02
+0 2469     4.164900e+02 4.543000e+02
+1 2469     8.230900e+02 3.535800e+02
+6 2469     -2.566998e+01 5.499400e+02
+7 2469     1.735300e+02 5.640500e+02
+0 2470     3.482000e+02 4.487400e+02
+1 2470     7.422100e+02 3.657600e+02
+2 2470     2.271002e+01 2.093000e+02
+9 2470     -1.310500e+02 2.563500e+02
+13 2470     4.684600e+02 1.480300e+02
+14 2470     6.579000e+02 -2.733700e+02
+0 2471     2.577800e+02 5.295900e+02
+1 2471     6.620800e+02 4.754400e+02
+4 2471     1.728998e+01 -5.304399e+02
+5 2471     6.645900e+02 -1.112600e+02
+6 2471     -1.978900e+02 6.128300e+02
+13 2471     3.961100e+02 2.112300e+02
+14 2471     5.660100e+02 -1.934800e+02
+0 2472     2.577800e+02 5.295900e+02
+1 2472     6.620800e+02 4.754400e+02
+11 2472     3.768101e+02 -2.269300e+02
+0 2473     1.543400e+02 5.057400e+02
+1 2473     5.426000e+02 4.766700e+02
+11 2473     2.853101e+02 -2.521700e+02
+0 2474     3.374200e+02 3.994100e+02
+1 2474     7.109500e+02 3.174200e+02
+11 2474     4.650900e+02 -3.384800e+02
+0 2475     1.353600e+02 5.149600e+02
+1 2475     5.238600e+02 4.912500e+02
+11 2475     2.670400e+02 -2.459000e+02
+12 2475     -1.623400e+02 5.445800e+02
+0 2476     4.140699e+02 4.594900e+02
+1 2476     8.229000e+02 3.595800e+02
+11 2476     5.314700e+02 -2.785500e+02
+0 2477     4.088300e+02 4.604200e+02
+1 2477     8.171600e+02 3.621500e+02
+0 2478     1.657200e+02 5.309900e+02
+1 2478     5.625100e+02 4.998500e+02
+5 2478     5.685200e+02 -1.133600e+02
+14 2478     4.736000e+02 -1.970700e+02
+0 2479     -1.042600e+02 4.815500e+02
+1 2479     2.646500e+02 5.165000e+02
+2 2479     -3.885000e+02 2.383700e+02
+3 2479     -5.171700e+02 -9.198999e+01
+7 2479     -3.271900e+02 5.381300e+02
+12 2479     -4.150500e+02 4.720900e+02
+0 2480     -3.280029e+00 4.738600e+02
+1 2480     3.668101e+02 4.833600e+02
+2 2480     -2.918200e+02 2.294600e+02
+5 2480     4.006000e+02 -1.774800e+02
+6 2480     -4.773300e+02 4.863300e+02
+7 2480     -2.267100e+02 5.406900e+02
+8 2480     -1.599800e+02 1.740300e+02
+12 2480     -3.028800e+02 4.768900e+02
+0 2481     -2.079500e+02 5.040800e+02
+1 2481     1.648500e+02 5.643700e+02
+5 2481     2.019600e+02 -1.461400e+02
+7 2481     -4.339300e+02 5.513800e+02
+0 2482     -3.528998e+01 4.782100e+02
+1 2482     3.349301e+02 4.961000e+02
+2 2482     -3.227700e+02 2.347500e+02
+5 2482     3.689200e+02 -1.728400e+02
+6 2482     -5.147000e+02 4.858000e+02
+7 2482     -2.585800e+02 5.420900e+02
+8 2482     -1.854900e+02 1.777700e+02
+12 2482     -3.387600e+02 4.782000e+02
+14 2482     2.793500e+02 -2.595200e+02
+0 2483     -1.896300e+02 4.249200e+02
+1 2483     1.641500e+02 4.812300e+02
+7 2483     -4.048400e+02 4.698600e+02
+12 2483     -5.005700e+02 3.914400e+02
+0 2484     -3.570001e+01 5.459700e+02
+1 2484     3.511600e+02 5.647900e+02
+2 2484     -3.278300e+02 3.114300e+02
+0 2485     -2.927900e+02 4.697100e+02
+1 2485     7.196997e+01 5.501600e+02
+2 2485     -5.753900e+02 2.244000e+02
+4 2485     1.828998e+01 -1.900900e+02
+5 2485     1.157600e+02 -1.822800e+02
+7 2485     -5.157800e+02 5.056700e+02
+0 2486     8.333002e+01 5.526001e+01
+1 2486     2.574100e+02 5.848999e+01
+6 2486     3.942999e+01 1.078900e+02
+15 2486     7.048999e+01 2.237900e+02
+0 2487     1.065500e+02 4.203998e+01
+1 2487     2.754200e+02 3.926001e+01
+6 2487     7.192999e+01 1.006900e+02
+12 2487     9.164001e+01 1.527500e+02
+15 2487     1.039200e+02 2.092200e+02
+0 2488     2.301001e+01 1.611900e+02
+1 2488     2.407000e+02 1.783100e+02
+10 2488     -8.375000e+01 3.314200e+02
+15 2488     -2.314001e+01 3.604600e+02
+0 2489     -1.148100e+02 7.317999e+01
+1 2489     9.044000e+01 1.286600e+02
+5 2489     4.514900e+02 -5.979900e+02
+10 2489     -2.346600e+02 2.146200e+02
+0 2490     1.271500e+02 -7.719971e+00
+1 2490     2.796300e+02 -1.547998e+01
+2 2490     2.871400e+02 5.365002e+01
+10 2490     5.444000e+01 1.450100e+02
+15 2490     1.381300e+02 1.439900e+02
+0 2491     2.121002e+01 8.856000e+01
+1 2491     2.112800e+02 1.084300e+02
+3 2491     3.189001e+01 -2.095800e+02
+4 2491     -2.154200e+02 -4.277400e+02
+5 2491     6.467800e+02 -5.705200e+02
+7 2491     -8.159998e+01 2.032200e+02
+8 2491     1.359900e+02 4.248999e+01
+15 2491     -1.752002e+01 2.610600e+02
+0 2492     -2.063000e+01 1.222600e+02
+1 2492     1.857800e+02 1.522300e+02
+15 2492     -7.740002e+01 3.009600e+02
+0 2493     -8.940002e+00 1.165000e+02
+1 2493     1.934301e+02 1.437200e+02
+3 2493     -2.407001e+01 -2.043500e+02
+4 2493     -1.940900e+02 -4.022300e+02
+5 2493     5.982300e+02 -5.403900e+02
+6 2493     -1.104100e+02 1.369400e+02
+7 2493     -1.199700e+02 2.240700e+02
+10 2493     -1.160500e+02 2.760700e+02
+12 2493     -8.203998e+01 1.909200e+02
+13 2493     3.396500e+02 -1.262800e+02
+15 2493     -6.120001e+01 2.948900e+02
+0 2494     -4.575000e+01 -1.726400e+02
+1 2494     6.398999e+01 -1.246300e+02
+6 2494     -1.838000e+01 -1.928199e+02
+7 2494     -9.952002e+01 -6.665002e+01
+8 2494     1.616400e+02 -1.855400e+02
+12 2494     -1.920001e+01 -1.406900e+02
+0 2495     -1.398000e+02 -1.006700e+02
+1 2495     3.270020e+00 -2.860999e+01
+7 2495     -2.132900e+02 -1.534998e+01
+10 2495     -2.449200e+02 9.640015e+00
+12 2495     -1.687100e+02 -9.590997e+01
+15 2495     -2.091100e+02 -1.840002e+01
+0 2496     6.158002e+01 -2.018700e+02
+1 2496     1.559399e+02 -1.852500e+02
+3 2496     2.172700e+02 -4.594900e+02
+6 2496     1.169300e+02 -1.841400e+02
+7 2496     1.478998e+01 -7.658002e+01
+10 2496     -8.900146e-01 -8.597998e+01
+12 2496     1.202000e+02 -1.397900e+02
+13 2496     4.573800e+02 -3.927100e+02
+15 2496     7.460999e+01 -1.280200e+02
+0 2497     1.240600e+02 -2.197200e+02
+1 2497     2.102800e+02 -2.225600e+02
+7 2497     8.028998e+01 -8.096997e+01
+10 2497     7.308002e+01 -9.979999e+01
+15 2497     1.615100e+02 -1.440100e+02
+0 2498     4.775000e+01 1.350600e+02
+1 2498     2.550400e+02 1.447100e+02
+10 2498     -5.167999e+01 3.029000e+02
+15 2498     1.315997e+01 3.281800e+02
+0 2499     3.393800e+02 4.957600e+02
+1 2499     7.457800e+02 4.180300e+02
+11 2499     4.565400e+02 -2.516900e+02
+14 2499     6.447700e+02 -2.240300e+02
+0 2500     3.739990e+00 4.936300e+02
+1 2500     3.789900e+02 5.018000e+02
+2 2500     -2.875600e+02 2.527600e+02
+5 2500     4.075800e+02 -1.566600e+02
+6 2500     -4.735800e+02 5.135400e+02
+7 2500     -2.223400e+02 5.619100e+02
+11 2500     1.506800e+02 -2.688100e+02
+14 2500     3.165500e+02 -2.422400e+02
+0 2501     -1.877500e+02 1.508700e+02
+1 2501     8.171997e+01 2.155600e+02
+12 2501     -4.101000e+02 8.723999e+01
+13 2501     7.904999e+01 -1.367700e+02
+0 2502     2.135999e+01 -7.044000e+01
+1 2502     1.606600e+02 -4.552002e+01
+2 2502     1.936801e+02 -4.477002e+01
+4 2502     -3.242500e+02 -4.261600e+02
+13 2502     3.986700e+02 -2.808500e+02
+15 2502     3.200012e+00 4.509003e+01
+0 2503     3.005800e+02 2.967999e+01
+1 2503     4.756899e+02 -3.248999e+01
+7 2503     1.995000e+02 1.868600e+02
+10 2503     2.515500e+02 2.065200e+02
+13 2503     6.178000e+02 -1.761600e+02
+15 2503     3.737500e+02 2.186900e+02
+0 2504     1.209400e+02 4.153400e+02
+1 2504     4.828300e+02 3.916500e+02
+2 2504     -1.717400e+02 1.645200e+02
+8 2504     -6.167999e+01 1.246300e+02
+13 2504     2.875100e+02 1.042400e+02
+0 2505     1.025600e+02 4.887500e+02
+1 2505     4.822700e+02 4.722300e+02
+0 2506     3.406700e+02 5.017200e+02
+1 2506     7.491500e+02 4.244700e+02
+13 2506     4.597800e+02 1.925000e+02
+14 2506     6.454800e+02 -2.182900e+02
+0 2507     5.885300e+02 -3.712000e+01
+1 2507     8.056899e+02 -2.056400e+02
+7 2507     4.448000e+02 1.409200e+02
+13 2507     8.147400e+02 -2.357800e+02
+15 2507     7.958900e+02 1.654000e+02
+0 2508     4.416000e+02 3.232500e+02
+1 2508     7.799200e+02 2.134300e+02
+13 2508     6.039700e+02 5.796997e+01
+14 2508     8.352800e+02 -3.923200e+02
+0 2509     -5.084300e+02 2.353000e+02
+1 2509     -1.889900e+02 3.766400e+02
+11 2509     -3.144200e+02 -5.010000e+02
+13 2509     -2.233100e+02 -8.378003e+01
+14 2509     -2.098500e+02 -5.302500e+02
+0 2510     -5.014300e+02 -4.304000e+02
+1 2510     -4.090800e+02 -2.286100e+02
+7 2510     -5.342400e+02 -4.298700e+02
+0 2511     -5.843000e+02 -4.661000e+02
+1 2511     -4.909300e+02 -2.347700e+02
+0 2512     5.917100e+02 -4.513000e+01
+1 2512     8.064800e+02 -2.149800e+02
+13 2512     8.190800e+02 -2.425400e+02
+0 2513     4.266998e+01 5.651800e+02
+1 2513     4.392600e+02 5.655000e+02
+11 2513     1.812000e+02 -2.070600e+02
+12 2513     -2.694200e+02 5.909800e+02
+13 2513     2.230400e+02 2.268600e+02
+14 2513     3.539301e+02 -1.680700e+02
+0 2514     4.896600e+02 3.985900e+02
+1 2514     8.552100e+02 2.820100e+02
+2 2514     2.695699e+02 2.823500e+02
+3 2514     1.288100e+02 -4.541998e+01
+7 2514     2.764500e+02 5.386600e+02
+9 2514     8.529999e+01 3.281600e+02
+13 2514     6.454600e+02 1.287800e+02
+0 2515     -5.014300e+02 -4.304000e+02
+1 2515     -4.090800e+02 -2.286100e+02
+7 2515     -5.342400e+02 -4.298700e+02
+0 2516     1.935300e+02 5.359000e+02
+1 2516     5.934700e+02 4.982000e+02
+13 2516     3.413900e+02 2.115700e+02
+14 2516     4.991600e+02 -1.909200e+02
+0 2517     -3.201300e+02 8.687000e+01
+1 2517     -6.548999e+01 1.907700e+02
+13 2517     -2.262000e+01 -1.992500e+02
+0 2518     -3.558002e+01 4.886500e+02
+1 2518     3.372800e+02 5.066800e+02
+5 2518     3.692400e+02 -1.619200e+02
+6 2518     -5.169400e+02 4.991100e+02
+11 2518     1.159300e+02 -2.747700e+02
+13 2518     1.623800e+02 1.584100e+02
+14 2518     2.793700e+02 -2.487000e+02
+0 2519     3.268300e+02 5.809800e+02
+1 2519     7.579800e+02 5.133800e+02
+13 2519     4.446100e+02 2.579700e+02
+14 2519     6.243101e+02 -1.383400e+02
+0 2520     5.472400e+02 1.313200e+02
+1 2520     8.156400e+02 -1.588000e+01
+2 2520     4.463101e+02 8.387000e+01
+7 2520     3.812200e+02 2.961500e+02
+15 2520     7.186700e+02 3.936700e+02
+0 2521     -3.268700e+02 8.632001e+01
+1 2521     -7.283002e+01 1.920400e+02
+8 2521     -3.345800e+02 -1.630800e+02
+13 2521     -2.647998e+01 -1.991700e+02
+0 2522     -1.492700e+02 -5.222000e+02
+1 2522     -1.298300e+02 -4.230300e+02
+4 2522     -6.566700e+02 -2.665200e+02
+6 2522     -1.987000e+01 -6.692800e+02
+7 2522     -1.455100e+02 -4.435400e+02
+9 2522     7.373999e+01 -4.432600e+02
+0 2523     -3.161600e+02 -1.340200e+02
+1 2523     -1.411600e+02 -1.528003e+01
+6 2523     -5.001900e+02 -3.267000e+02
+7 2523     -4.133700e+02 -1.001500e+02
+8 2523     -2.217800e+02 -3.226200e+02
+13 2523     3.515002e+01 -3.884100e+02
+0 2524     -3.884998e+01 2.909998e+01
+1 2524     1.364300e+02 6.758002e+01
+7 2524     -1.329300e+02 1.331600e+02
+10 2524     -1.419500e+02 1.710900e+02
+13 2524     3.280900e+02 -2.021200e+02
+15 2524     -9.058002e+01 1.717100e+02
+0 2525     -9.654999e+01 -1.420100e+02
+1 2525     2.803003e+01 -8.003998e+01
+4 2525     -3.584800e+02 -3.343300e+02
+10 2525     -1.904100e+02 -3.366998e+01
+12 2525     -9.503998e+01 -1.255000e+02
+15 2525     -1.463100e+02 -6.813000e+01
+0 2526     -1.342200e+02 -2.234200e+02
+1 2526     -1.959003e+01 -1.485700e+02
+10 2526     -2.244700e+02 -1.314400e+02
+15 2526     -1.822200e+02 -1.839800e+02
+0 2527     -4.069200e+02 -3.409003e+01
+1 2527     -1.883200e+02 1.020900e+02
+0 2528     -4.205700e+02 5.253998e+01
+1 2528     -1.697100e+02 1.852600e+02
+10 2528     -5.941700e+02 1.595100e+02
+13 2528     -1.061700e+02 -2.346900e+02
+0 2529     2.499301e+02 2.567300e+02
+1 2529     5.589100e+02 1.975900e+02
+7 2529     5.963000e+01 3.614400e+02
+10 2529     1.723200e+02 4.698700e+02
+13 2529     4.336801e+02 -1.835999e+01
+14 2529     6.202400e+02 -4.831600e+02
+0 2530     5.403700e+02 6.270020e+00
+1 2530     7.697800e+02 -1.446200e+02
+7 2530     3.908900e+02 1.731100e+02
+10 2530     5.329301e+02 2.061000e+02
+13 2530     7.589000e+02 -2.025800e+02
+0 2531     -2.760500e+02 5.921002e+01
+1 2531     -3.490002e+01 1.531500e+02
+2 2531     -4.072600e+02 -1.920700e+02
+4 2531     -2.144400e+02 -1.781900e+02
+7 2531     -4.185700e+02 9.482001e+01
+0 2532     4.416000e+02 3.232500e+02
+1 2532     7.799200e+02 2.134300e+02
+6 2532     1.274300e+02 4.270400e+02
+7 2532     2.376801e+02 4.559900e+02
+11 2532     5.646801e+02 -4.059300e+02
+12 2532     2.440800e+02 4.229600e+02
+13 2532     6.039700e+02 5.796997e+01
+14 2532     8.352800e+02 -3.923200e+02
+0 2533     2.422700e+02 -2.032500e+02
+1 2533     3.348000e+02 -2.456000e+02
+7 2533     1.894100e+02 -4.553998e+01
+10 2533     2.067700e+02 -6.807001e+01
+13 2533     6.132400e+02 -3.797200e+02
+0 2534     -1.179600e+02 -1.119900e+02
+1 2534     1.940997e+01 -4.546997e+01
+2 2534     4.485999e+01 -1.417500e+02
+3 2534     -3.233002e+01 -4.497700e+02
+7 2534     -1.881400e+02 -2.209998e+01
+8 2534     6.173999e+01 -1.617800e+02
+9 2534     -6.246002e+01 -3.126001e+01
+10 2534     -2.177100e+02 -1.729980e+00
+12 2534     -1.363100e+02 -1.012700e+02
+13 2534     2.739800e+02 -3.312200e+02
+15 2534     -1.778200e+02 -3.096002e+01
+0 2535     -1.641800e+02 -4.722100e+02
+1 2535     -1.247900e+02 -3.722300e+02
+6 2535     -7.092999e+01 -6.231600e+02
+7 2535     -1.725800e+02 -3.981600e+02
+9 2535     2.478003e+01 -4.151700e+02
+12 2535     -8.641998e+01 -5.689500e+02
+0 2536     -4.067900e+02 -7.838000e+01
+1 2536     -2.032800e+02 6.110999e+01
+10 2536     -5.605800e+02 6.789978e+00
+15 2536     -5.638600e+02 -2.663000e+01
+0 2537     -2.237500e+02 -4.426300e+02
+1 2537     -1.685500e+02 -3.262000e+02
+6 2537     -1.615400e+02 -6.195601e+02
+7 2537     -2.414300e+02 -3.829400e+02
+9 2537     -5.322998e+01 -4.192800e+02
+0 2538     -9.285999e+01 -5.755699e+02
+1 2538     -9.790002e+01 -4.910200e+02
+4 2538     -7.215800e+02 -3.136000e+02
+6 2538     7.964001e+01 -6.977400e+02
+7 2538     -7.475000e+01 -4.831600e+02
+9 2538     1.630699e+02 -4.559600e+02
+0 2539     -1.468400e+02 -5.165400e+02
+1 2539     -1.257500e+02 -4.187500e+02
+4 2539     -6.523500e+02 -2.682800e+02
+7 2539     -1.446700e+02 -4.376801e+02
+9 2539     7.216998e+01 -4.381500e+02
+0 2540     -2.494100e+02 -4.548400e+02
+1 2540     -1.961100e+02 -3.290100e+02
+4 2540     -5.746800e+02 -1.910600e+02
+6 2540     -1.835700e+02 -6.457400e+02
+7 2540     -2.632700e+02 -3.993600e+02
+9 2540     -6.839001e+01 -4.369600e+02
+0 2541     -2.027300e+02 -4.758199e+02
+1 2541     -1.614700e+02 -3.631600e+02
+6 2541     -1.135000e+02 -6.457500e+02
+7 2541     -2.102300e+02 -4.103500e+02
+0 2542     -1.833000e+02 -4.831400e+02
+1 2542     -1.468400e+02 -3.762200e+02
+6 2542     -8.597000e+01 -6.441500e+02
+7 2542     -1.896100e+02 -4.132500e+02
+9 2542     1.453003e+01 -4.305500e+02
+0 2543     6.433101e+02 -3.724300e+02
+1 2543     7.260000e+02 -5.678900e+02
+7 2543     5.681100e+02 -1.526200e+02
+0 2544     -2.350500e+02 3.958100e+02
+1 2544     1.121200e+02 4.639500e+02
+2 2544     -5.127600e+02 1.339900e+02
+7 2544     -4.464000e+02 4.345900e+02
+10 2544     -4.158800e+02 5.902300e+02
+11 2544     -6.164001e+01 -3.588400e+02
+0 2545     1.662500e+02 -2.439100e+02
+1 2545     2.437600e+02 -2.597600e+02
+2 2545     4.223800e+02 -1.749200e+02
+6 2545     2.440900e+02 -1.929100e+02
+8 2545     3.709400e+02 -1.971900e+02
+9 2545     2.505601e+02 -4.221997e+01
+10 2545     1.246000e+02 -1.233000e+02
+13 2545     5.568500e+02 -4.216700e+02
+15 2545     2.228800e+02 -1.714000e+02
+0 2546     1.280500e+02 -6.903003e+01
+1 2546     2.622100e+02 -7.639001e+01
+15 2546     1.476200e+02 6.053003e+01
+0 2547     -1.383800e+02 5.339000e+02
+1 2547     2.423700e+02 5.773500e+02
+2 2547     -4.238900e+02 2.995100e+02
+5 2547     2.714100e+02 -1.155100e+02
+12 2547     -4.617100e+02 5.303700e+02
+13 2547     8.151001e+01 1.914100e+02
+14 2547     1.819100e+02 -2.048000e+02
+0 2548     -4.878998e+01 -2.622998e+01
+1 2548     1.108400e+02 1.635999e+01
+2 2548     8.740997e+01 -3.390997e+01
+7 2548     -1.331600e+02 7.575000e+01
+13 2548     3.256899e+02 -2.511900e+02
+15 2548     -9.581000e+01 9.463000e+01
+0 2549     2.812000e+02 5.502100e+02
+1 2549     6.960200e+02 4.914300e+02
+13 2549     4.102700e+02 2.297800e+02
+14 2549     5.830601e+02 -1.716000e+02
+0 2550     -3.409000e+02 5.790002e+01
+1 2550     -9.532001e+01 1.695000e+02
+4 2550     -2.081600e+02 -1.385500e+02
+13 2550     -3.459003e+01 -2.247700e+02
+0 2551     1.984000e+02 9.372000e+01
+1 2551     3.880900e+02 6.253998e+01
+4 2551     -2.326200e+02 -5.676700e+02
+7 2551     9.302002e+01 2.357100e+02
+10 2551     1.274500e+02 2.711000e+02
+13 2551     5.278101e+02 -1.276800e+02
+15 2551     2.245100e+02 2.927800e+02
+0 2552     6.087000e+01 9.620999e+01
+1 2552     2.502500e+02 1.047400e+02
+2 2552     1.668000e+02 1.266100e+02
+4 2552     -2.145400e+02 -4.599100e+02
+5 2552     6.958500e+02 -5.597600e+02
+7 2552     -4.231000e+01 2.174100e+02
+10 2552     -3.331000e+01 2.589100e+02
+13 2552     4.111500e+02 -1.354400e+02
+15 2552     3.515997e+01 2.770800e+02
+0 2553     -3.220900e+02 -1.312700e+02
+1 2553     -1.457800e+02 -1.112000e+01
+7 2553     -4.197100e+02 -9.871002e+01
+12 2553     -4.484700e+02 -2.481700e+02
+13 2553     2.882001e+01 -3.864000e+02
+0 2554     4.039301e+02 -4.594000e+01
+1 2554     5.693400e+02 -1.450100e+02
+6 2554     3.550200e+02 6.763000e+01
+7 2554     3.016300e+02 1.229700e+02
+10 2554     3.783800e+02 1.298800e+02
+12 2554     4.068199e+02 9.809003e+01
+13 2554     7.016100e+02 -2.388900e+02
+15 2554     5.292600e+02 1.292300e+02
+0 2555     3.249100e+02 4.633700e+02
+1 2555     7.200000e+02 3.875200e+02
+5 2555     7.300500e+02 -1.806000e+02
+6 2555     -1.217900e+02 5.417500e+02
+7 2555     8.752002e+01 5.640200e+02
+12 2555     4.138000e+01 5.113200e+02
+13 2555     4.491300e+02 1.588900e+02
+14 2555     6.333600e+02 -2.591500e+02
+0 2556     -4.823999e+01 -1.106000e+01
+1 2556     1.156200e+02 3.100000e+01
+3 2556     -3.510010e+00 -3.292400e+02
+6 2556     -1.015800e+02 -1.858002e+01
+7 2556     -1.356600e+02 9.104001e+01
+12 2556     -8.608002e+01 3.702002e+01
+13 2556     3.238000e+02 -2.380300e+02
+15 2556     -9.752002e+01 1.153300e+02
+0 2557     -3.974300e+02 8.473999e+01
+1 2557     -1.385100e+02 2.093500e+02
+2 2557     -5.774600e+02 -2.004500e+02
+7 2557     -5.514200e+02 9.841000e+01
+10 2557     -5.694200e+02 2.003100e+02
+13 2557     -9.196997e+01 -2.061100e+02
+15 2557     -5.732900e+02 1.964600e+02
+0 2558     5.716500e+02 2.072900e+02
+1 2558     8.645601e+02 5.800000e+01
+2 2558     4.565100e+02 1.729200e+02
+8 2558     4.343300e+02 1.143300e+02
+9 2558     2.514500e+02 2.429300e+02
+12 2558     4.549200e+02 3.624800e+02
+13 2558     7.694100e+02 -2.021002e+01
+15 2558     7.430500e+02 5.050600e+02
+0 2559     2.878600e+02 5.395600e+02
+1 2559     7.002500e+02 4.783200e+02
+11 2559     4.040699e+02 -2.161600e+02
+13 2559     4.160500e+02 2.206500e+02
+14 2559     5.905300e+02 -1.821600e+02
+0 2560     4.948700e+02 2.937200e+02
+1 2560     8.260900e+02 1.680500e+02
+6 2560     2.069700e+02 4.131700e+02
+7 2560     2.958400e+02 4.367100e+02
+13 2560     6.608400e+02 3.928003e+01
+0 2561     5.155900e+02 -1.655300e+02
+1 2561     6.712400e+02 -3.098600e+02
+7 2561     4.070300e+02 1.284003e+01
+12 2561     5.187700e+02 -4.315002e+01
+13 2561     7.869000e+02 -3.520600e+02
+0 2562     5.210699e+02 2.247998e+01
+1 2562     7.550601e+02 -1.218400e+02
+7 2562     3.694100e+02 1.845500e+02
+13 2562     7.366200e+02 -1.909300e+02
+0 2563     1.202800e+02 2.165997e+01
+1 2563     2.818101e+02 1.559998e+01
+2 2563     2.685500e+02 7.971002e+01
+7 2563     3.251001e+01 1.559900e+02
+10 2563     4.456000e+01 1.774700e+02
+13 2563     4.785699e+02 -1.922700e+02
+15 2563     1.252500e+02 1.831700e+02
+0 2564     -2.928700e+02 -2.581100e+02
+1 2564     -1.645400e+02 -1.360400e+02
+9 2564     -2.586100e+02 -3.208500e+02
+10 2564     -4.057600e+02 -1.892500e+02
+13 2564     8.560999e+01 -4.956000e+02
+15 2564     -3.895900e+02 -2.530200e+02
+0 2565     1.807300e+02 -4.086300e+02
+1 2565     2.189000e+02 -4.269400e+02
+7 2565     1.586801e+02 -2.629100e+02
+13 2565     5.742800e+02 -5.831899e+02
+0 2566     5.917100e+02 -4.513000e+01
+1 2566     8.064800e+02 -2.149800e+02
+7 2566     4.489800e+02 1.337400e+02
+10 2566     5.969399e+02 1.514600e+02
+13 2566     8.190800e+02 -2.425400e+02
+0 2567     1.750100e+02 5.240700e+02
+1 2567     5.705300e+02 4.902200e+02
+9 2567     -2.685200e+02 3.201700e+02
+13 2567     3.272300e+02 2.006900e+02
+14 2567     4.815800e+02 -2.036700e+02
+0 2568     1.948101e+02 6.831000e+01
+1 2568     3.739600e+02 3.890002e+01
+6 2568     1.485100e+02 1.529500e+02
+7 2568     9.550000e+01 2.122700e+02
+10 2568     1.257400e+02 2.405200e+02
+12 2568     1.776200e+02 2.012400e+02
+13 2568     5.312700e+02 -1.480100e+02
+15 2568     2.220601e+02 2.575500e+02
+0 2569     4.912500e+02 3.079500e+02
+1 2569     8.271100e+02 1.845100e+02
+7 2569     2.904000e+02 4.501000e+02
+12 2569     3.078101e+02 4.246300e+02
+13 2569     6.556600e+02 5.098999e+01
+0 2570     1.588800e+02 -1.402800e+02
+1 2570     2.713400e+02 -1.563200e+02
+7 2570     9.788000e+01 1.840027e+00
+10 2570     1.045600e+02 -4.900024e+00
+12 2570     2.074800e+02 -4.138000e+01
+13 2570     5.316000e+02 -3.304700e+02
+15 2570     1.990601e+02 -3.182001e+01
+0 2571     9.884998e+01 4.211300e+02
+1 2571     4.607500e+02 4.034100e+02
+2 2571     -1.928300e+02 1.702800e+02
+7 2571     -1.210800e+02 4.975500e+02
+8 2571     -7.883002e+01 1.290800e+02
+9 2571     -3.113900e+02 2.150600e+02
+13 2571     2.693101e+02 1.078900e+02
+14 2571     4.109399e+02 -3.154000e+02
+0 2572     1.740997e+01 1.547700e+02
+1 2572     2.323300e+02 1.731800e+02
+5 2572     6.174000e+02 -4.977100e+02
+13 2572     3.534900e+02 -9.278998e+01
+15 2572     -2.983002e+01 3.489200e+02
+0 2573     5.560100e+02 8.385999e+01
+1 2573     8.094600e+02 -6.869000e+01
+2 2573     4.686300e+02 3.904999e+01
+6 2573     3.776600e+02 2.108200e+02
+12 2573     4.650800e+02 2.207700e+02
+13 2573     7.663800e+02 -1.304000e+02
+15 2573     7.358800e+02 3.285400e+02
+0 2574     -4.897100e+02 1.891200e+02
+1 2574     -1.854800e+02 3.292400e+02
+13 2574     -2.018200e+02 -1.237100e+02
+0 2575     -2.617600e+02 4.103200e+02
+1 2575     8.865997e+01 4.846500e+02
+5 2575     1.407000e+02 -2.457200e+02
+7 2575     -4.752800e+02 4.464400e+02
+10 2575     -4.504500e+02 6.053800e+02
+14 2575     5.691998e+01 -3.355700e+02
+0 2576     -1.475700e+02 2.747700e+02
+1 2576     1.655800e+02 3.232200e+02
+11 2576     1.557001e+01 -4.692100e+02
+14 2576     1.766400e+02 -4.821400e+02
+0 2577     3.967000e+02 3.297100e+02
+1 2577     7.471600e+02 2.295300e+02
+13 2577     5.400900e+02 5.378998e+01
+14 2577     7.531200e+02 -3.947600e+02
+0 2578     -2.415200e+02 3.098300e+02
+1 2578     8.558002e+01 3.813500e+02
+14 2578     6.938000e+01 -4.460699e+02
+0 2579     8.819000e+01 5.029900e+02
+1 2579     4.710100e+02 4.902100e+02
+2 2579     -2.109200e+02 2.641200e+02
+5 2579     4.910100e+02 -1.444700e+02
+6 2579     -3.817000e+02 5.430400e+02
+7 2579     -1.416900e+02 5.801400e+02
+8 2579     -9.385999e+01 2.029100e+02
+12 2579     -2.109500e+02 5.243500e+02
+14 2579     3.985400e+02 -2.294600e+02
+0 2580     3.653000e+02 4.925200e+02
+1 2580     7.751300e+02 4.080500e+02
+11 2580     4.812300e+02 -2.532000e+02
+14 2580     6.708199e+02 -2.261500e+02
+0 2581     3.732100e+02 4.803800e+02
+1 2581     7.807000e+02 3.932200e+02
+11 2581     4.905300e+02 -2.630000e+02
+14 2581     6.802800e+02 -2.382400e+02
+0 2582     7.153003e+01 4.973900e+02
+1 2582     4.518500e+02 4.888100e+02
+9 2582     -3.426700e+02 2.901800e+02
+14 2582     3.824600e+02 -2.361000e+02
+0 2583     -1.541800e+02 4.465800e+02
+1 2583     2.050699e+02 4.938800e+02
+2 2583     -4.349400e+02 1.961700e+02
+7 2583     -3.717200e+02 4.960000e+02
+12 2583     -4.639100e+02 4.220400e+02
+14 2583     1.637700e+02 -2.957300e+02
+0 2584     -4.539978e+00 4.522400e+02
+1 2584     3.609900e+02 4.620300e+02
+5 2584     3.979301e+02 -2.005700e+02
+7 2584     -2.248900e+02 5.184200e+02
+8 2584     -1.600200e+02 1.545300e+02
+11 2584     1.454100e+02 -3.054800e+02
+12 2584     -3.001000e+02 4.518300e+02
+13 2584     1.871100e+02 1.289200e+02
+14 2584     3.090900e+02 -2.858200e+02
+0 2585     2.434000e+02 4.505200e+02
+1 2585     6.256000e+02 3.957900e+02
+2 2585     -6.782001e+01 2.066600e+02
+5 2585     6.469399e+02 -1.971100e+02
+7 2585     1.281000e+01 5.427700e+02
+11 2585     3.726200e+02 -2.973000e+02
+12 2585     -3.917999e+01 4.850000e+02
+14 2585     5.528600e+02 -2.772800e+02
+0 2586     -1.382700e+02 3.330700e+02
+1 2586     1.940699e+02 3.772600e+02
+2 2586     -4.122300e+02 5.675000e+01
+7 2586     -3.415000e+02 3.799300e+02
+11 2586     2.653998e+01 -4.148100e+02
+14 2586     1.747500e+02 -4.185500e+02
+0 2587     -2.462300e+02 3.027000e+02
+1 2587     7.939001e+01 3.748600e+02
+7 2587     -4.453600e+02 3.347100e+02
+14 2587     6.341998e+01 -4.538800e+02
+15 2587     -3.957200e+02 5.173000e+02
+0 2588     2.361100e+02 4.285300e+02
+1 2588     6.110300e+02 3.745800e+02
+7 2588     8.789978e+00 5.197100e+02
+14 2588     5.470900e+02 -3.009900e+02
+0 2589     -3.102400e+02 3.990700e+02
+1 2589     3.842999e+01 4.853100e+02
+2 2589     -5.911700e+02 1.364600e+02
+7 2589     -5.235300e+02 4.290900e+02
+8 2589     -4.048300e+02 9.554001e+01
+10 2589     -5.078900e+02 5.879200e+02
+14 2589     8.609985e+00 -3.479500e+02
+0 2590     2.558800e+02 4.750500e+02
+1 2590     6.458000e+02 4.182700e+02
+6 2590     -1.966200e+02 5.421000e+02
+7 2590     2.175000e+01 5.687200e+02
+9 2590     -2.015400e+02 2.762600e+02
+13 2590     3.930601e+02 1.642200e+02
+14 2590     5.636700e+02 -2.507400e+02
+0 2591     2.434000e+02 4.505200e+02
+1 2591     6.256000e+02 3.957900e+02
+2 2591     -6.782001e+01 2.066600e+02
+5 2591     6.469399e+02 -1.971100e+02
+7 2591     1.281000e+01 5.427700e+02
+11 2591     3.726200e+02 -2.973000e+02
+12 2591     -3.917999e+01 4.850000e+02
+13 2591     3.840800e+02 1.427000e+02
+14 2591     5.528600e+02 -2.772800e+02
+0 2592     3.660999e+01 4.239800e+02
+1 2592     3.963600e+02 4.229100e+02
+7 2592     -1.814500e+02 4.940100e+02
+14 2592     3.497700e+02 -3.143900e+02
+0 2593     -1.650800e+02 2.297100e+02
+1 2593     1.319900e+02 2.845200e+02
+7 2593     -3.456400e+02 2.755200e+02
+14 2593     1.699000e+02 -5.320000e+02
+15 2593     -2.742700e+02 4.263800e+02
+0 2594     2.018101e+02 4.538600e+02
+1 2594     5.802900e+02 4.099000e+02
+2 2594     -1.048400e+02 2.097900e+02
+7 2594     -2.725000e+01 5.416600e+02
+14 2594     5.108400e+02 -2.759400e+02
+0 2595     -1.033600e+02 4.446700e+02
+1 2595     2.559700e+02 4.790200e+02
+7 2595     -3.210500e+02 4.999100e+02
+13 2595     1.091200e+02 1.177700e+02
+14 2595     2.133400e+02 -2.961100e+02
+0 2596     3.402600e+02 4.482500e+02
+1 2596     7.328101e+02 3.673300e+02
+7 2596     1.035900e+02 5.504300e+02
+13 2596     4.618500e+02 1.467300e+02
+14 2596     6.500601e+02 -2.746200e+02
+0 2597     5.031000e+01 5.031700e+02
+1 2597     4.311700e+02 4.999800e+02
+2 2597     -2.450600e+02 2.640200e+02
+3 2597     -3.778400e+02 -6.797998e+01
+5 2597     4.544399e+02 -1.457500e+02
+7 2597     -1.781600e+02 5.765000e+02
+13 2597     2.298500e+02 1.754300e+02
+14 2597     3.621400e+02 -2.306200e+02
+0 2598     2.297300e+02 4.244800e+02
+1 2598     6.028400e+02 3.719300e+02
+7 2598     3.179993e+00 5.149900e+02
+11 2598     3.628000e+02 -3.210700e+02
+14 2598     5.411500e+02 -3.053700e+02
+0 2599     1.081800e+02 4.441900e+02
+1 2599     4.768400e+02 4.246400e+02
+7 2599     -1.148500e+02 5.221800e+02
+14 2599     4.197100e+02 -2.902400e+02
+0 2600     -3.159900e+02 4.188000e+02
+1 2600     3.753003e+01 5.058000e+02
+4 2600     -8.309998e+00 -1.725800e+02
+7 2600     -5.316800e+02 4.487800e+02
+10 2600     -5.177400e+02 6.110900e+02
+11 2600     -1.329100e+02 -3.385700e+02
+13 2600     -5.966998e+01 8.534000e+01
+14 2600     5.169983e+00 -3.271500e+02
+0 2601     -1.998999e+01 4.817100e+02
+1 2601     3.516801e+02 4.955100e+02
+3 2601     -4.394000e+02 -9.270001e+01
+5 2601     3.841100e+02 -1.691600e+02
+6 2601     -4.982500e+02 4.933000e+02
+7 2601     -2.439500e+02 5.469500e+02
+12 2601     -3.224900e+02 4.839300e+02
+14 2601     2.941700e+02 -2.555400e+02
+0 2602     -6.985999e+01 4.916100e+02
+1 2602     3.024301e+02 5.180600e+02
+3 2602     -4.847000e+02 -8.039001e+01
+5 2602     3.355601e+02 -1.597600e+02
+6 2602     -5.564600e+02 4.960900e+02
+7 2602     -2.941800e+02 5.519500e+02
+11 2602     8.546997e+01 -2.724500e+02
+12 2602     -3.785700e+02 4.884300e+02
+14 2602     2.464500e+02 -2.465200e+02
+0 2603     -2.040002e+01 4.740200e+02
+1 2603     3.491100e+02 4.879000e+02
+2 2603     -3.082000e+02 2.296500e+02
+6 2603     -4.968800e+02 4.828700e+02
+7 2603     -2.434100e+02 5.389600e+02
+8 2603     -1.735200e+02 1.737500e+02
+11 2603     1.300100e+02 -2.869700e+02
+12 2603     -3.217400e+02 4.745800e+02
+14 2603     2.939000e+02 -2.635100e+02
+0 2604     -5.419983e+00 5.036400e+02
+1 2604     3.721700e+02 5.143800e+02
+2 2604     -2.960900e+02 2.638400e+02
+3 2604     -4.270200e+02 -6.746997e+01
+6 2604     -4.856800e+02 5.247100e+02
+7 2604     -2.326900e+02 5.712800e+02
+9 2604     -4.042500e+02 2.937100e+02
+12 2604     -3.105400e+02 5.117600e+02
+14 2604     3.088500e+02 -2.323900e+02
+0 2605     2.573000e+02 4.826700e+02
+1 2605     6.498101e+02 4.257400e+02
+7 2605     2.223999e+01 5.767100e+02
+14 2605     5.650100e+02 -2.424000e+02
+0 2606     3.631200e+02 4.522000e+02
+1 2606     7.605500e+02 3.655200e+02
+6 2606     -8.028000e+01 5.356300e+02
+7 2606     1.244700e+02 5.566200e+02
+11 2606     4.848400e+02 -2.892700e+02
+14 2606     6.728199e+02 -2.687900e+02
+0 2607     3.433500e+02 4.730400e+02
+1 2607     7.439900e+02 3.931700e+02
+6 2607     -1.045300e+02 5.582700e+02
+7 2607     1.036800e+02 5.752900e+02
+12 2607     5.815002e+01 5.254800e+02
+14 2607     6.507400e+02 -2.478100e+02
+0 2608     -9.950000e+01 4.735000e+02
+1 2608     2.674800e+02 5.072600e+02
+2 2608     -3.832100e+02 2.287500e+02
+3 2608     -5.125100e+02 -1.018300e+02
+5 2608     3.057500e+02 -1.783000e+02
+7 2608     -3.214900e+02 5.302200e+02
+12 2608     -4.081500e+02 4.634400e+02
+14 2608     2.172000e+02 -2.661800e+02
+0 2609     -3.528998e+01 4.782100e+02
+1 2609     3.349301e+02 4.961000e+02
+7 2609     -2.585800e+02 5.420900e+02
+14 2609     2.793500e+02 -2.595200e+02
+0 2610     -8.412000e+01 4.679700e+02
+1 2610     2.821100e+02 4.978700e+02
+2 2610     -3.683100e+02 2.222400e+02
+6 2610     -5.686000e+02 4.620600e+02
+7 2610     -3.053700e+02 5.261200e+02
+8 2610     -2.227300e+02 1.669500e+02
+12 2610     -3.905500e+02 4.586200e+02
+14 2610     2.318900e+02 -2.715300e+02
+0 2611     -1.191900e+02 4.217100e+02
+1 2611     2.348400e+02 4.603200e+02
+2 2611     -3.992100e+02 1.667300e+02
+5 2611     2.831600e+02 -2.339500e+02
+7 2611     -3.341000e+02 4.742000e+02
+8 2611     -2.479700e+02 1.223700e+02
+12 2611     -4.210400e+02 3.975000e+02
+14 2611     1.966300e+02 -3.214400e+02
+0 2612     -1.660800e+02 3.268100e+02
+1 2612     1.646899e+02 3.782500e+02
+7 2612     -3.681000e+02 3.701000e+02
+14 2612     1.466899e+02 -4.257200e+02
+0 2613     -4.282300e+02 4.445100e+02
+1 2613     -6.541998e+01 5.575700e+02
+2 2613     -7.176400e+02 1.939600e+02
+5 2613     -1.891998e+01 -2.060400e+02
+14 2613     -1.020900e+02 -2.998900e+02
+0 2614     2.991100e+02 5.657500e+02
+1 2614     7.211801e+02 5.038200e+02
+11 2614     4.111600e+02 -1.937600e+02
+13 2614     4.237700e+02 2.437200e+02
+14 2614     5.992900e+02 -1.548700e+02
+0 2615     1.947000e+02 4.025000e+02
+1 2615     5.585300e+02 3.585400e+02
+13 2615     3.473900e+02 9.781000e+01
+0 2616     3.651300e+02 4.565400e+02
+1 2616     7.640200e+02 3.695900e+02
+7 2616     1.259500e+02 5.609400e+02
+13 2616     4.814600e+02 1.557100e+02
+14 2616     6.744100e+02 -2.640500e+02
+0 2617     9.122998e+01 5.005800e+02
+1 2617     4.733300e+02 4.869200e+02
+2 2617     -2.080100e+02 2.614600e+02
+13 2617     2.618400e+02 1.756700e+02
+14 2617     4.013300e+02 -2.317900e+02
+0 2618     3.576300e+02 4.415700e+02
+1 2618     7.510100e+02 3.557100e+02
+2 2618     3.177002e+01 2.014900e+02
+14 2618     6.689500e+02 -2.804700e+02
+0 2619     3.118101e+02 -4.209003e+01
+1 2619     4.641400e+02 -1.088600e+02
+7 2619     2.221700e+02 1.187900e+02
+10 2619     2.716500e+02 1.242800e+02
+15 2619     3.983500e+02 1.215900e+02
+0 2620     -8.306000e+01 4.887400e+02
+1 2620     2.881899e+02 5.186700e+02
+3 2620     -4.969400e+02 -8.359003e+01
+5 2620     3.229900e+02 -1.617500e+02
+6 2620     -5.712400e+02 4.903600e+02
+7 2620     -3.067900e+02 5.481800e+02
+12 2620     -3.929200e+02 4.833000e+02
+0 2621     5.546500e+02 6.462000e+01
+1 2621     8.024700e+02 -8.803003e+01
+6 2621     3.812400e+02 1.886200e+02
+15 2621     7.366100e+02 3.016800e+02
+0 2622     5.286300e+02 7.982999e+01
+1 2622     7.803600e+02 -6.437000e+01
+6 2622     3.437000e+02 1.955800e+02
+7 2622     3.691500e+02 2.424000e+02
+10 2622     5.129301e+02 2.905300e+02
+15 2622     6.980601e+02 3.190800e+02
+0 2623     5.748000e+02 -3.094000e+01
+1 2623     7.933900e+02 -1.944900e+02
+13 2623     7.991700e+02 -2.316900e+02
+15 2623     7.755000e+02 1.721900e+02
+0 2624     4.120400e+02 -5.360999e+01
+1 2624     5.745699e+02 -1.554700e+02
+6 2624     3.669900e+02 6.271002e+01
+10 2624     3.883700e+02 1.218900e+02
+12 2624     4.187300e+02 9.296002e+01
+15 2624     5.411899e+02 1.193700e+02
+0 2625     -1.768700e+02 -1.341998e+01
+1 2625     2.460022e+00 6.371002e+01
+10 2625     -2.976500e+02 1.067500e+02
+15 2625     -2.690300e+02 9.419000e+01
+0 2626     3.923800e+02 -7.959003e+01
+1 2626     5.422000e+02 -1.744800e+02
+12 2626     4.118900e+02 6.471997e+01
+15 2626     5.161100e+02 8.142999e+01
+0 2627     5.221300e+02 1.089700e+02
+1 2627     7.829399e+02 -3.202002e+01
+7 2627     3.589399e+02 2.692800e+02
+13 2627     7.284301e+02 -1.128200e+02
+15 2627     6.856100e+02 3.587300e+02
+0 2628     1.301600e+02 -8.557001e+01
+1 2628     2.598300e+02 -9.353998e+01
+2 2628     3.164399e+02 -2.754999e+01
+6 2628     1.423400e+02 -3.328998e+01
+7 2628     6.053998e+01 5.113000e+01
+12 2628     1.579300e+02 1.390002e+01
+13 2628     4.996899e+02 -2.844700e+02
+15 2628     1.527700e+02 3.834003e+01
+0 2629     5.753000e+02 -1.632001e+01
+1 2629     7.984399e+02 -1.790700e+02
+6 2629     4.293900e+02 1.054200e+02
+7 2629     4.290200e+02 1.582700e+02
+10 2629     5.753600e+02 1.828500e+02
+15 2629     7.747400e+02 1.927400e+02
+0 2630     -4.037300e+02 7.899780e-01
+1 2630     -1.731400e+02 1.332300e+02
+15 2630     -5.715600e+02 8.139001e+01
+0 2631     -1.050500e+02 9.607001e+01
+1 2631     1.089900e+02 1.474400e+02
+7 2631     -2.256900e+02 1.787000e+02
+10 2631     -2.264300e+02 2.422800e+02
+15 2631     -1.850500e+02 2.530900e+02
+0 2632     -1.554100e+02 3.246997e+01
+1 2632     4.028998e+01 1.008800e+02
+7 2632     -2.642900e+02 1.072500e+02
+10 2632     -2.787100e+02 1.633100e+02
+15 2632     -2.448500e+02 1.593300e+02
+0 2633     2.648900e+02 1.321300e+02
+1 2633     4.748199e+02 8.026999e+01
+10 2633     2.007300e+02 3.221700e+02
+15 2633     3.127900e+02 3.547900e+02
+0 2634     7.091998e+01 5.552002e+01
+1 2634     2.460000e+02 6.253998e+01
+15 2634     5.377002e+01 2.226100e+02
+0 2635     9.669000e+01 -2.296100e+02
+1 2635     1.788000e+02 -2.229700e+02
+10 2635     4.242999e+01 -1.145400e+02
+15 2635     1.255300e+02 -1.612700e+02
+0 2636     2.837300e+02 1.129500e+02
+1 2636     4.881700e+02 5.484003e+01
+15 2636     3.411500e+02 3.312200e+02
+0 2637     3.950699e+02 -6.004999e+01
+1 2637     5.538101e+02 -1.561900e+02
+15 2637     5.183900e+02 1.085700e+02
+0 2638     3.010699e+02 -1.142400e+02
+1 2638     4.264500e+02 -1.771900e+02
+7 2638     2.257600e+02 4.846997e+01
+10 2638     2.652400e+02 3.991998e+01
+15 2638     3.911100e+02 2.200000e+01
+0 2639     2.858700e+02 8.606000e+01
+1 2639     4.794200e+02 2.784003e+01
+7 2639     1.749600e+02 2.388600e+02
+10 2639     2.290900e+02 2.702300e+02
+13 2639     5.950300e+02 -1.298000e+02
+15 2639     3.467200e+02 2.943500e+02
+0 2640     3.006899e+02 -9.897998e+01
+1 2640     4.331500e+02 -1.623700e+02
+15 2640     3.897700e+02 4.323999e+01
+0 2641     2.423000e+02 -2.341000e+02
+1 2641     3.220601e+02 -2.752900e+02
+12 2641     3.360300e+02 -1.197500e+02
+15 2641     3.246500e+02 -1.481800e+02
+0 2642     -8.358002e+01 -1.476700e+02
+1 2642     3.796002e+01 -8.919000e+01
+3 2642     3.331000e+01 -4.630000e+02
+4 2642     -3.643000e+02 -3.441200e+02
+6 2642     -7.640997e+01 -1.817700e+02
+7 2642     -1.440200e+02 -4.977002e+01
+8 2642     1.132100e+02 -1.774900e+02
+10 2642     -1.743200e+02 -3.896002e+01
+12 2642     -7.673999e+01 -1.270800e+02
+13 2642     3.148900e+02 -3.581900e+02
+15 2642     -1.275600e+02 -7.421002e+01
+0 2643     2.832000e+02 -1.192700e+02
+1 2643     4.064301e+02 -1.765600e+02
+10 2643     2.460000e+02 3.234998e+01
+15 2643     3.674600e+02 1.273999e+01
+0 2644     6.542999e+01 8.106000e+01
+1 2644     2.493400e+02 8.937000e+01
+7 2644     -3.441998e+01 2.042600e+02
+15 2644     4.282001e+01 2.568000e+02
+0 2645     2.424000e+02 -5.145001e+01
+1 2645     3.847400e+02 -9.509998e+01
+7 2645     1.619900e+02 1.018000e+02
+13 2645     5.884800e+02 -2.475700e+02
+15 2645     3.024000e+02 9.998001e+01
+0 2646     -1.806700e+02 -4.587000e+02
+1 2646     -1.351500e+02 -3.546100e+02
+6 2646     -9.950000e+01 -6.171500e+02
+7 2646     -1.928600e+02 -3.891900e+02
+15 2646     -2.141700e+02 -5.081700e+02
+0 2647     2.513300e+02 -5.188000e+01
+1 2647     3.940200e+02 -9.864001e+01
+7 2647     1.701200e+02 1.027700e+02
+10 2647     2.030800e+02 1.072500e+02
+13 2647     5.951100e+02 -2.470600e+02
+15 2647     3.148800e+02 1.006200e+02
+0 2648     -1.191200e+02 6.158002e+01
+1 2648     8.151001e+01 1.190300e+02
+15 2648     -2.005800e+02 2.042600e+02
+0 2649     1.998900e+02 5.196002e+01
+1 2649     3.731200e+02 2.096002e+01
+7 2649     1.036800e+02 1.967500e+02
+10 2649     1.327600e+02 2.222000e+02
+13 2649     5.386400e+02 -1.612300e+02
+15 2649     2.303101e+02 2.358200e+02
+0 2650     3.757700e+02 -1.415700e+02
+1 2650     4.985400e+02 -2.302400e+02
+6 2650     3.878200e+02 -2.879999e+01
+7 2650     2.993000e+02 3.241998e+01
+10 2650     3.546600e+02 1.684998e+01
+12 2650     4.272000e+02 3.229980e+00
+13 2650     7.081700e+02 -3.190900e+02
+15 2650     4.995400e+02 -5.030029e+00
+0 2651     2.419000e+02 -1.360900e+02
+1 2651     3.567600e+02 -1.789400e+02
+10 2651     1.997200e+02 8.940002e+00
+15 2651     3.116500e+02 -1.521997e+01
+0 2652     2.899600e+02 7.871997e+01
+1 2652     4.811899e+02 1.900000e+01
+7 2652     1.800000e+02 2.323700e+02
+10 2652     2.351300e+02 2.630000e+02
+15 2652     3.536100e+02 2.851000e+02
+0 2653     2.365100e+02 2.377100e+02
+1 2653     5.374100e+02 1.824700e+02
+10 2653     1.585100e+02 4.458700e+02
+15 2653     2.766200e+02 4.947700e+02
+0 2654     3.674100e+02 -4.353998e+01
+1 2654     5.265000e+02 -1.295200e+02
+7 2654     2.709000e+02 1.226400e+02
+10 2654     3.360400e+02 1.286700e+02
+15 2654     4.767500e+02 1.274300e+02
+0 2655     5.909003e+01 -1.289900e+02
+1 2655     1.769500e+02 -1.142900e+02
+7 2655     -2.900024e+00 -4.359985e+00
+12 2655     8.971997e+01 -5.747998e+01
+15 2655     6.198999e+01 -2.996002e+01
+0 2656     -2.553300e+02 1.971500e+02
+1 2656     3.469000e+01 2.772500e+02
+15 2656     -3.937500e+02 3.694400e+02
+0 2657     2.634600e+02 1.403200e+02
+1 2657     4.772400e+02 8.879999e+01
+15 2657     3.104301e+02 3.661800e+02
+0 2658     3.246200e+02 3.064001e+01
+1 2658     5.031899e+02 -4.046002e+01
+15 2658     4.075200e+02 2.234300e+02
+0 2659     -4.120200e+02 -1.395300e+02
+1 2659     -2.296700e+02 6.890015e+00
+7 2659     -5.123600e+02 -1.238800e+02
+15 2659     -5.652600e+02 -1.097200e+02
+0 2660     1.840000e+02 7.712000e+01
+1 2660     3.657600e+02 5.116998e+01
+10 2660     1.120200e+02 2.498900e+02
+15 2660     2.058199e+02 2.681400e+02
+0 2661     1.672800e+02 -2.189200e+02
+1 2661     2.528101e+02 -2.357100e+02
+2 2661     4.127100e+02 -1.482800e+02
+10 2661     1.236000e+02 -9.432001e+01
+15 2661     2.204301e+02 -1.372200e+02
+0 2662     2.136700e+02 4.422998e+01
+1 2662     3.852100e+02 9.440002e+00
+10 2662     1.497600e+02 2.144100e+02
+15 2662     2.505800e+02 2.273000e+02
+0 2663     8.458002e+01 -1.981400e+02
+1 2663     1.798101e+02 -1.892200e+02
+10 2663     2.521997e+01 -7.951001e+01
+15 2663     1.054700e+02 -1.200900e+02
+0 2664     1.892400e+02 2.778998e+01
+1 2664     3.541100e+02 2.999878e-01
+7 2664     9.887000e+01 1.720400e+02
+10 2664     1.230100e+02 1.931000e+02
+15 2664     2.188600e+02 2.010300e+02
+0 2665     -2.081600e+02 2.243300e+02
+1 2665     8.890997e+01 2.907800e+02
+8 2665     -2.814900e+02 -5.025000e+01
+11 2665     -4.283002e+01 -5.175000e+02
+13 2665     4.190997e+01 -7.652002e+01
+14 2665     1.235300e+02 -5.385699e+02
+15 2665     -3.325000e+02 4.134400e+02
+0 2666     2.149399e+02 8.926001e+01
+1 2666     4.026700e+02 5.328998e+01
+15 2666     2.476801e+02 2.888800e+02
+0 2667     2.836100e+02 6.241998e+01
+1 2667     4.670300e+02 4.640015e+00
+7 2667     1.780100e+02 2.142900e+02
+10 2667     2.291600e+02 2.411300e+02
+15 2667     3.465800e+02 2.610400e+02
+0 2668     3.080500e+02 -1.011400e+02
+1 2668     4.394500e+02 -1.670300e+02
+7 2668     2.302000e+02 6.165002e+01
+10 2668     2.727100e+02 5.613000e+01
+15 2668     4.005900e+02 4.110999e+01
+0 2669     2.934100e+02 5.926001e+01
+1 2669     4.772800e+02 -1.549988e+00
+7 2669     1.867800e+02 2.139200e+02
+15 2669     3.602800e+02 2.584900e+02
+0 2670     -4.575000e+01 -1.726400e+02
+1 2670     6.398999e+01 -1.246300e+02
+7 2670     -9.952002e+01 -6.665002e+01
+12 2670     -1.920001e+01 -1.406900e+02
+15 2670     -7.370001e+01 -1.030200e+02
+0 2671     7.221002e+01 -2.084700e+02
+1 2671     1.635200e+02 -1.950200e+02
+4 2671     -4.379800e+02 -4.702200e+02
+7 2671     2.662000e+01 -7.953998e+01
+10 2671     1.172998e+01 -9.244000e+01
+0 2672     -1.221300e+02 -2.121500e+02
+1 2672     -7.960022e+00 -1.409500e+02
+10 2672     -2.118800e+02 -1.174100e+02
+12 2672     -1.225100e+02 -2.357900e+02
+15 2672     -1.685800e+02 -1.664800e+02
+0 2673     -1.482700e+02 -6.701001e+01
+1 2673     7.909973e+00 5.179993e+00
+6 2673     -2.095500e+02 -1.248500e+02
+12 2673     -1.961800e+02 -6.485999e+01
+15 2673     -2.245900e+02 2.541998e+01
+0 2674     2.198900e+02 -1.431500e+02
+1 2674     3.314900e+02 -1.789200e+02
+15 2674     2.831300e+02 -2.812000e+01
+0 2675     2.521899e+02 3.796997e+01
+1 2675     4.243300e+02 -9.260010e+00
+10 2675     1.952200e+02 2.109000e+02
+15 2675     3.051600e+02 2.235900e+02
+0 2676     2.886899e+02 1.075300e+02
+1 2676     4.919100e+02 4.840002e+01
+15 2676     3.488199e+02 3.244800e+02
+0 2677     1.650800e+02 -1.297600e+02
+1 2677     2.820300e+02 -1.481500e+02
+10 2677     1.110700e+02 8.190002e+00
+15 2677     2.064600e+02 -1.675000e+01
+0 2678     2.477100e+02 8.548999e+01
+1 2678     4.366899e+02 3.954999e+01
+10 2678     1.849800e+02 2.661000e+02
+15 2678     2.935699e+02 2.886400e+02
+0 2679     2.700699e+02 6.460999e+01
+1 2679     4.535400e+02 1.159998e+01
+7 2679     1.659000e+02 2.168200e+02
+15 2679     3.266801e+02 2.627800e+02
+0 2680     3.859700e+02 -8.316998e+01
+1 2680     5.342100e+02 -1.760300e+02
+10 2680     3.611400e+02 8.490997e+01
+15 2680     5.077400e+02 7.578998e+01
+0 2681     2.647200e+02 1.228998e+01
+1 2681     4.287500e+02 -3.871002e+01
+7 2681     1.703800e+02 1.662900e+02
+10 2681     2.113800e+02 1.821000e+02
+13 2681     5.953400e+02 -1.916200e+02
+15 2681     3.248300e+02 1.896200e+02
+0 2682     3.248400e+02 -3.721997e+01
+1 2682     4.804900e+02 -1.089900e+02
+15 2682     4.159399e+02 1.306700e+02
+0 2683     2.651300e+02 -1.558500e+02
+1 2683     3.758600e+02 -2.065000e+02
+10 2683     2.287100e+02 -1.178003e+01
+15 2683     3.474399e+02 -3.906000e+01
+0 2684     3.875800e+02 -6.865997e+01
+1 2684     5.420900e+02 -1.622400e+02
+7 2684     2.919301e+02 1.004300e+02
+10 2684     3.619200e+02 1.023400e+02
+15 2684     5.088300e+02 9.591000e+01
+0 2685     1.232200e+02 -2.060200e+02
+1 2685     2.147200e+02 -2.089600e+02
+15 2685     1.588600e+02 -1.252300e+02
+0 2686     2.833400e+02 -1.157300e+02
+1 2686     4.080400e+02 -1.729500e+02
+10 2686     2.459900e+02 3.690997e+01
+13 2686     6.291700e+02 -3.013900e+02
+15 2686     3.673000e+02 1.787000e+01
+0 2687     2.330900e+02 -1.066400e+02
+1 2687     3.593900e+02 -1.474300e+02
+2 2687     4.080500e+02 -3.907001e+01
+10 2687     1.860200e+02 4.128998e+01
+12 2687     2.712900e+02 1.147998e+01
+15 2687     2.972600e+02 2.402002e+01
+0 2688     9.909998e+01 -1.340300e+02
+1 2688     2.146500e+02 -1.313700e+02
+10 2688     3.542999e+01 -3.599976e+00
+15 2688     1.168600e+02 -3.134998e+01
+0 2689     4.182000e+02 -9.870001e+01
+1 2689     5.620601e+02 -2.024500e+02
+10 2689     3.993101e+02 7.058002e+01
+15 2689     5.541500e+02 5.876001e+01
+0 2690     2.399700e+02 2.981000e+01
+1 2690     4.084600e+02 -1.323999e+01
+7 2690     1.450200e+02 1.808200e+02
+10 2690     1.811500e+02 2.003400e+02
+13 2690     5.736600e+02 -1.778800e+02
+15 2690     2.885601e+02 2.104600e+02
+0 2691     -1.757800e+02 -4.538900e+02
+1 2691     -1.290200e+02 -3.520400e+02
+6 2691     -9.550000e+01 -6.099399e+02
+15 2691     -2.072600e+02 -5.012300e+02
+0 2692     2.359399e+02 -1.369200e+02
+1 2692     3.507600e+02 -1.778800e+02
+7 2692     1.706500e+02 1.763000e+01
+10 2692     1.936500e+02 7.390015e+00
+15 2692     3.041300e+02 -1.725000e+01
+0 2693     -1.467999e+01 -2.672300e+02
+1 2693     7.052002e+01 -2.257200e+02
+6 2693     3.546997e+01 -3.011200e+02
+7 2693     -5.596002e+01 -1.590000e+02
+9 2693     8.975000e+01 -1.427700e+02
+10 2693     -8.150000e+01 -1.692600e+02
+12 2693     3.709998e+01 -2.545700e+02
+13 2693     3.844900e+02 -4.639800e+02
+15 2693     -1.750000e+01 -2.262400e+02
+0 2694     3.153199e+02 -1.900024e+00
+1 2694     4.808500e+02 -7.006000e+01
+15 2694     3.980400e+02 1.777100e+02
+0 2695     2.383700e+02 -1.284300e+02
+1 2695     3.566200e+02 -1.705400e+02
+7 2695     1.710300e+02 2.589001e+01
+10 2695     1.956400e+02 1.738000e+01
+12 2695     2.869500e+02 -9.349976e+00
+15 2695     3.067400e+02 -5.340027e+00
+0 2696     2.423000e+02 -2.341000e+02
+1 2696     3.220601e+02 -2.752900e+02
+12 2696     3.360300e+02 -1.197500e+02
+15 2696     3.246500e+02 -1.481800e+02
+0 2697     2.888400e+02 1.215300e+02
+1 2697     4.985000e+02 6.190002e+01
+15 2697     3.479200e+02 3.434900e+02
+0 2698     3.248400e+02 -3.721997e+01
+1 2698     4.804900e+02 -1.089900e+02
+13 2698     6.449100e+02 -2.317400e+02
+15 2698     4.159399e+02 1.306700e+02
+0 2699     5.863000e+01 -2.025800e+02
+1 2699     1.529100e+02 -1.849700e+02
+15 2699     7.050000e+01 -1.289500e+02
+0 2700     -1.464700e+02 -1.208100e+02
+1 2700     -1.090002e+01 -4.484998e+01
+10 2700     -2.505000e+02 -1.471997e+01
+12 2700     -1.660400e+02 -1.187800e+02
+15 2700     -2.156700e+02 -4.660999e+01
+0 2701     -1.762700e+02 -4.569600e+02
+1 2701     -1.306200e+02 -3.546900e+02
+15 2701     -2.082500e+02 -5.051200e+02
+0 2702     3.331600e+02 -1.785600e+02
+1 2702     4.383800e+02 -2.519600e+02
+6 2702     3.707100e+02 -7.565997e+01
+7 2702     2.690100e+02 -8.090027e+00
+10 2702     3.092300e+02 -3.072998e+01
+12 2702     4.024600e+02 -4.251001e+01
+13 2702     6.838101e+02 -3.528900e+02
+15 2702     4.440900e+02 -6.121997e+01
+0 2703     1.129800e+02 -2.066200e+02
+1 2703     2.041700e+02 -2.061500e+02
+15 2703     1.446100e+02 -1.274800e+02
+0 2704     1.324500e+02 -1.431400e+02
+1 2704     2.439800e+02 -1.507900e+02
+12 2704     1.796600e+02 -5.075000e+01
+15 2704     1.632400e+02 -3.871002e+01
+0 2705     4.090400e+02 -8.463000e+01
+1 2705     5.582200e+02 -1.852300e+02
+6 2705     3.832400e+02 3.303998e+01
+7 2705     3.155500e+02 8.879001e+01
+10 2705     3.877000e+02 8.564001e+01
+12 2705     4.312100e+02 6.365002e+01
+15 2705     5.400601e+02 7.659998e+01
+0 2706     3.037400e+02 8.848001e+01
+1 2706     5.011700e+02 2.406000e+01
+7 2706     1.892800e+02 2.420400e+02
+10 2706     2.500500e+02 2.749800e+02
+15 2706     3.718700e+02 3.000100e+02
+0 2707     9.909998e+01 -1.340300e+02
+1 2707     2.146500e+02 -1.313700e+02
+10 2707     3.542999e+01 -3.599976e+00
+15 2707     1.168600e+02 -3.134998e+01
+0 2708     3.682200e+02 -5.900024e+00
+1 2708     5.436300e+02 -9.279999e+01
+6 2708     3.073900e+02 1.021300e+02
+7 2708     2.618000e+02 1.569300e+02
+10 2708     3.331100e+02 1.728000e+02
+12 2708     3.582600e+02 1.351700e+02
+15 2708     4.742900e+02 1.791700e+02
+0 2709     3.263600e+02 -2.001001e+01
+1 2709     4.884301e+02 -9.178998e+01
+7 2709     2.306000e+02 1.414100e+02
+10 2709     2.868900e+02 1.511600e+02
+15 2709     4.163900e+02 1.541500e+02
+0 2710     -1.288300e+02 -1.107000e+02
+1 2710     9.919983e+00 -4.131000e+01
+7 2710     -1.992000e+02 -2.296997e+01
+10 2710     -2.310500e+02 -9.699707e-01
+13 2710     2.642600e+02 -3.310100e+02
+15 2710     -1.924500e+02 -3.064001e+01
+0 2711     2.479399e+02 1.572200e+02
+1 2711     4.680400e+02 1.102400e+02
+10 2711     1.783500e+02 3.504400e+02
+15 2711     2.867600e+02 3.873500e+02
+0 2712     -1.861400e+02 -4.601000e+02
+1 2712     -1.406900e+02 -3.543300e+02
+6 2712     -1.050500e+02 -6.211700e+02
+15 2712     -2.211600e+02 -5.106801e+02
+0 2713     3.584800e+02 -4.425000e+01
+1 2713     5.168700e+02 -1.275000e+02
+7 2713     2.626100e+02 1.209700e+02
+10 2713     3.258300e+02 1.269600e+02
+15 2713     4.646500e+02 1.251400e+02
+0 2714     3.128300e+02 9.304001e+01
+1 2714     5.143300e+02 2.565997e+01
+10 2714     2.598700e+02 2.819500e+02
+15 2714     3.847900e+02 3.078400e+02
+0 2715     3.241300e+02 6.745001e+01
+1 2715     5.172500e+02 -3.669983e+00
+10 2715     2.752500e+02 2.535700e+02
+15 2715     4.032500e+02 2.741600e+02
+0 2716     1.792300e+02 -1.135999e+01
+1 2716     3.308400e+02 -3.534998e+01
+2 2716     3.358700e+02 5.773999e+01
+15 2716     2.099000e+02 1.457300e+02
+0 2717     2.874000e+02 9.850000e+01
+1 2717     4.865000e+02 4.062000e+01
+10 2717     2.301300e+02 2.834200e+02
+15 2717     3.476500e+02 3.115200e+02
+0 2718     3.382600e+02 8.595001e+01
+1 2718     5.518900e+02 7.710022e+00
+10 2718     2.896300e+02 2.766000e+02
+15 2718     4.236600e+02 3.009900e+02
+0 2719     1.613101e+02 -1.474200e+02
+1 2719     2.708199e+02 -1.639800e+02
+7 2719     1.021100e+02 -4.010010e+00
+10 2719     1.085200e+02 -1.229999e+01
+15 2719     2.030400e+02 -4.114001e+01
+0 2720     2.466500e+02 -2.096700e+02
+1 2720     3.364100e+02 -2.532800e+02
+2 2720     4.754500e+02 -1.253000e+02
+6 2720     3.069900e+02 -1.309500e+02
+8 2720     4.191600e+02 -1.553000e+02
+10 2720     2.130000e+02 -7.545001e+01
+15 2720     3.278900e+02 -1.149300e+02
+0 2721     4.151801e+02 -4.896997e+01
+1 2721     5.800500e+02 -1.521100e+02
+7 2721     3.124800e+02 1.219100e+02
+13 2721     7.123400e+02 -2.406200e+02
+15 2721     5.452600e+02 1.262200e+02
+0 2722     -7.676001e+01 -1.396600e+02
+1 2722     4.795001e+01 -8.377002e+01
+6 2722     -7.506000e+01 -1.715699e+02
+7 2722     -1.389400e+02 -4.123999e+01
+10 2722     -1.668500e+02 -2.878003e+01
+12 2722     -7.271002e+01 -1.171700e+02
+13 2722     3.191600e+02 -3.515900e+02
+15 2722     -1.192500e+02 -6.240002e+01
+0 2723     -3.369995e+00 -1.055800e+02
+1 2723     1.261000e+02 -7.271002e+01
+6 2723     -6.500244e-01 -1.035300e+02
+7 2723     -7.007001e+01 7.150024e+00
+10 2723     -8.609998e+01 1.835999e+01
+12 2723     6.349976e+00 -5.175000e+01
+15 2723     -2.506000e+01 -6.609985e+00
+0 2724     3.875800e+02 -6.865997e+01
+1 2724     5.420900e+02 -1.622400e+02
+7 2724     2.919301e+02 1.004300e+02
+10 2724     3.619200e+02 1.023400e+02
+15 2724     5.088300e+02 9.591000e+01
+0 2725     1.251100e+02 -2.094000e+02
+1 2725     2.151600e+02 -2.130900e+02
+7 2725     7.847998e+01 -7.101001e+01
+10 2725     7.348999e+01 -8.789001e+01
+13 2725     5.145100e+02 -3.934100e+02
+15 2725     1.619700e+02 -1.297500e+02
+0 2726     -3.145900e+02 3.028998e+01
+1 2726     -8.106000e+01 1.366500e+02
+2 2726     -4.359100e+02 -2.260000e+02
+7 2726     -4.520500e+02 5.953998e+01
+10 2726     -4.651200e+02 1.444800e+02
+13 2726     -4.059998e+00 -2.470700e+02
+0 2727     3.196000e+02 3.231000e+01
+1 2727     4.977500e+02 -3.682001e+01
+15 2727     4.005100e+02 2.253500e+02
+0 2728     3.281600e+02 3.239990e+00
+1 2728     4.978500e+02 -6.882001e+01
+15 2728     4.161600e+02 1.854900e+02
+0 2729     4.207100e+02 -1.184800e+02
+1 2729     5.566000e+02 -2.229700e+02
+2 2729     5.518800e+02 -4.103003e+01
+6 2729     4.151000e+02 5.000000e+00
+7 2729     3.349200e+02 5.998999e+01
+8 2729     4.936400e+02 -7.934003e+01
+10 2729     4.043000e+02 4.826001e+01
+12 2729     4.604200e+02 3.510999e+01
+15 2729     5.598900e+02 3.190997e+01
+0 2730     2.887000e+02 -2.012000e+02
+1 2730     3.830800e+02 -2.594100e+02
+6 2730     3.427200e+02 -1.100900e+02
+10 2730     2.607700e+02 -6.129999e+01
+13 2730     6.528800e+02 -3.751200e+02
+15 2730     3.854100e+02 -9.820001e+01
+0 2731     9.358002e+01 -2.114100e+02
+1 2731     1.834600e+02 -2.045500e+02
+10 2731     3.694000e+01 -9.392999e+01
+15 2731     1.189800e+02 -1.371700e+02
+0 2732     -1.465800e+02 -1.123800e+02
+1 2732     -7.979980e+00 -3.745001e+01
+6 2732     -1.729100e+02 -1.689200e+02
+7 2732     -2.170900e+02 -2.772998e+01
+8 2732     3.726001e+01 -1.671500e+02
+10 2732     -2.511000e+02 -4.780029e+00
+12 2732     -1.701500e+02 -1.098400e+02
+15 2732     -2.168700e+02 -3.523999e+01
+0 2733     2.527300e+02 8.066000e+01
+1 2733     4.400000e+02 3.291998e+01
+7 2733     1.470100e+02 2.299100e+02
+10 2733     1.918300e+02 2.600400e+02
+15 2733     3.015900e+02 2.829500e+02
+0 2734     3.031700e+02 5.785999e+01
+1 2734     4.879600e+02 -5.969971e+00
+7 2734     1.960300e+02 2.135200e+02
+10 2734     2.524000e+02 2.395400e+02
+15 2734     3.744200e+02 2.579500e+02
+0 2735     2.899600e+02 7.871997e+01
+1 2735     4.811899e+02 1.900000e+01
+7 2735     1.800000e+02 2.323700e+02
+10 2735     2.351300e+02 2.630000e+02
+15 2735     3.536100e+02 2.851000e+02
+0 2736     2.280400e+02 -2.018300e+02
+1 2736     3.212900e+02 -2.396400e+02
+7 2736     1.754600e+02 -4.663000e+01
+10 2736     1.911600e+02 -6.815997e+01
+13 2736     6.000900e+02 -3.797600e+02
+15 2736     3.017300e+02 -1.063100e+02
+0 2737     3.580200e+02 -4.823999e+01
+1 2737     5.145900e+02 -1.311000e+02
+6 2737     3.255400e+02 6.021997e+01
+7 2737     2.633600e+02 1.176000e+02
+10 2737     3.258000e+02 1.226400e+02
+12 2737     3.703700e+02 9.395001e+01
+13 2737     6.713900e+02 -2.411100e+02
+15 2737     4.644200e+02 1.201500e+02
+0 2738     2.527300e+02 8.066000e+01
+1 2738     4.400000e+02 3.291998e+01
+10 2738     1.918300e+02 2.600400e+02
+15 2738     3.015900e+02 2.829500e+02
+0 2739     4.074200e+02 -6.912000e+01
+1 2739     5.630500e+02 -1.694100e+02
+15 2739     5.364200e+02 9.792001e+01
+0 2740     3.458000e+02 -1.628600e+02
+1 2740     4.582400e+02 -2.412700e+02
+3 2740     4.170200e+02 -3.754000e+02
+6 2740     3.728900e+02 -5.709003e+01
+7 2740     2.769000e+02 8.289978e+00
+8 2740     4.658700e+02 -1.129900e+02
+10 2740     3.224000e+02 -1.066998e+01
+13 2740     6.898900e+02 -3.390200e+02
+15 2740     4.601500e+02 -3.829999e+01
+0 2741     1.208200e+02 -2.616100e+02
+1 2741     1.956000e+02 -2.626300e+02
+4 2741     -4.918800e+02 -5.093300e+02
+10 2741     7.398999e+01 -1.477400e+02
+15 2741     1.633000e+02 -2.012000e+02
+0 2742     1.883199e+02 -2.438000e+02
+1 2742     2.662700e+02 -2.674100e+02
+4 2742     -4.914900e+02 -5.701400e+02
+6 2742     2.653000e+02 -1.863101e+02
+7 2742     1.465699e+02 -9.369000e+01
+9 2742     2.663900e+02 -3.796002e+01
+12 2742     2.775800e+02 -1.498200e+02
+15 2742     2.526500e+02 -1.682800e+02
+0 2743     8.142999e+01 -6.187000e+01
+1 2743     2.188300e+02 -5.551001e+01
+2 2743     2.609301e+02 -1.296002e+01
+7 2743     8.679993e+00 6.657001e+01
+10 2743     7.299988e+00 7.769000e+01
+15 2743     8.320001e+01 6.419000e+01
+0 2744     -4.669983e+00 -7.821997e+01
+1 2744     1.350000e+02 -4.645001e+01
+4 2744     -3.272800e+02 -4.050000e+02
+8 2744     1.620000e+02 -1.022900e+02
+15 2744     -3.028998e+01 3.023999e+01
+0 2745     3.062900e+02 -2.084003e+01
+1 2745     4.642900e+02 -8.581000e+01
+15 2745     3.880500e+02 1.505000e+02
+0 2746     2.282200e+02 -9.400024e+00
+1 2746     3.826000e+02 -4.858002e+01
+3 2746     2.690500e+02 -2.440500e+02
+7 2746     1.417900e+02 1.415600e+02
+10 2746     1.717500e+02 1.536500e+02
+15 2746     2.774301e+02 1.556700e+02
+0 2747     5.396801e+02 2.170600e+02
+1 2747     8.345100e+02 7.726001e+01
+7 2747     3.619500e+02 3.782200e+02
+10 2747     5.151600e+02 4.529100e+02
+15 2747     6.976000e+02 5.133500e+02
+0 2748     7.969000e+01 -1.247000e+02
+1 2748     1.997100e+02 -1.167300e+02
+7 2748     1.635999e+01 3.429993e+00
+10 2748     1.109003e+01 5.530029e+00
+15 2748     8.921002e+01 -2.108002e+01
+0 2749     3.598300e+02 -1.532400e+02
+1 2749     4.767100e+02 -2.363900e+02
+7 2749     2.874100e+02 1.940997e+01
+10 2749     3.379399e+02 1.030029e+00
+15 2749     4.785601e+02 -2.317999e+01
+0 2750     -6.334600e+02 -3.581300e+02
+1 2750     -4.965000e+02 -1.259200e+02
+4 2750     -4.288000e+02 6.032001e+01
+7 2750     -6.964900e+02 -3.870900e+02
+15 2750     -8.438100e+02 -4.383000e+02
+0 2751     4.025000e+02 -2.277200e+02
+1 2751     5.130300e+02 -3.297900e+02
+10 2751     3.940300e+02 -7.885999e+01
+15 2751     5.509700e+02 -1.199000e+02
+0 2752     3.550100e+02 -1.912200e+02
+1 2752     4.555900e+02 -2.720900e+02
+15 2752     4.757000e+02 -7.578998e+01
+0 2753     3.341998e+01 -1.218400e+02
+1 2753     1.551200e+02 -9.928003e+01
+2 2753     2.327700e+02 -9.133002e+01
+3 2753     1.463600e+02 -3.947800e+02
+6 2753     5.016998e+01 -1.071100e+02
+7 2753     -2.944000e+01 -1.750000e+00
+13 2753     4.189500e+02 -3.247000e+02
+15 2753     2.635999e+01 -2.346997e+01
+0 2754     5.660000e+02 6.378998e+01
+1 2754     8.137300e+02 -9.232001e+01
+6 2754     3.954800e+02 1.926700e+02
+10 2754     5.578199e+02 2.754600e+02
+12 2754     4.810200e+02 2.030400e+02
+15 2754     7.520200e+02 3.024500e+02
+0 2755     2.454800e+02 1.245400e+02
+1 2755     4.497200e+02 7.894000e+01
+15 2755     2.869000e+02 3.417000e+02
+0 2756     3.511700e+02 -1.722200e+02
+1 2756     4.598300e+02 -2.520000e+02
+6 2756     3.836300e+02 -6.347998e+01
+7 2756     2.846100e+02 1.280029e+00
+15 2756     4.682700e+02 -4.983002e+01
+0 2757     4.090900e+02 -7.369995e+00
+1 2757     5.916300e+02 -1.083600e+02
+6 2757     3.348000e+02 1.049300e+02
+10 2757     3.812300e+02 1.754800e+02
+15 2757     5.329000e+02 1.828800e+02
+0 2758     5.540002e+01 -1.153100e+02
+1 2758     1.793700e+02 -9.970001e+01
+7 2758     -9.619995e+00 7.869995e+00
+15 2758     5.582001e+01 -1.181000e+01
+0 2759     3.638101e+02 -4.284003e+01
+1 2759     5.233000e+02 -1.278200e+02
+15 2759     4.718199e+02 1.281600e+02
+0 2760     3.873000e+02 5.972998e+01
+1 2760     5.978000e+02 -3.465002e+01
+7 2760     2.589500e+02 2.157900e+02
+15 2760     4.959800e+02 2.717900e+02
+0 2761     1.913500e+02 -2.039000e+02
+1 2761     2.837400e+02 -2.292300e+02
+7 2761     1.408000e+02 -5.462000e+01
+10 2761     1.488100e+02 -7.428998e+01
+13 2761     5.696000e+02 -3.843000e+02
+15 2761     2.512700e+02 -1.140700e+02
+0 2762     3.583199e+02 -2.444900e+02
+1 2762     4.551400e+02 -3.295500e+02
+10 2762     3.447500e+02 -1.031800e+02
+15 2762     4.905100e+02 -1.481400e+02
+0 2763     1.805900e+02 -1.428900e+02
+1 2763     2.919500e+02 -1.659600e+02
+13 2763     5.508400e+02 -3.307500e+02
+15 2763     2.288800e+02 -3.275000e+01
+0 2764     -7.415002e+01 -1.522900e+02
+1 2764     4.527002e+01 -9.621002e+01
+4 2764     -3.693800e+02 -3.514900e+02
+10 2764     -1.629100e+02 -4.321997e+01
+15 2764     -1.144900e+02 -7.884998e+01
+0 2765     -4.452900e+02 3.102002e+01
+1 2765     -2.000500e+02 1.721600e+02
+15 2765     -6.330600e+02 1.168400e+02
+0 2766     3.249100e+02 4.003003e+01
+1 2766     5.068900e+02 -3.090002e+01
+15 2766     4.068800e+02 2.364300e+02
+0 2767     3.048000e+02 -2.429900e+02
+1 2767     3.916700e+02 -3.074000e+02
+6 2767     3.580800e+02 -1.596000e+02
+7 2767     2.505601e+02 -7.721002e+01
+10 2767     2.835601e+02 -1.066200e+02
+12 2767     3.873500e+02 -1.289100e+02
+15 2767     4.140900e+02 -1.526500e+02
+0 2768     2.324500e+02 1.895001e+01
+1 2768     3.965000e+02 -2.171002e+01
+10 2768     1.738600e+02 1.870000e+02
+15 2768     2.798500e+02 1.950100e+02
+0 2769     2.125100e+02 -7.659998e+01
+1 2769     3.455300e+02 -1.104800e+02
+2 2769     3.846500e+02 -6.469971e+00
+6 2769     2.199000e+02 7.199707e-01
+7 2769     1.380400e+02 7.292999e+01
+8 2769     3.472100e+02 -5.389001e+01
+15 2769     2.641100e+02 6.195001e+01
+0 2770     -1.105400e+02 5.733002e+01
+1 2770     8.827002e+01 1.125000e+02
+7 2770     -2.208400e+02 1.416500e+02
+10 2770     -2.283200e+02 1.965400e+02
+13 2770     2.392000e+02 -1.901100e+02
+15 2770     -1.881700e+02 1.995300e+02
+0 2771     -1.266300e+02 2.507000e+02
+1 2771     1.770699e+02 2.946300e+02
+15 2771     -2.241500e+02 4.613100e+02
+0 2772     2.763101e+02 6.141998e+01
+1 2772     4.592600e+02 6.460022e+00
+10 2772     2.207300e+02 2.409500e+02
+15 2772     3.361700e+02 2.591700e+02
+0 2773     1.366300e+02 -2.665600e+02
+1 2773     2.108900e+02 -2.723000e+02
+6 2773     2.136200e+02 -2.332900e+02
+7 2773     9.810999e+01 -1.265700e+02
+12 2773     2.223900e+02 -1.949700e+02
+15 2773     1.859301e+02 -2.047700e+02
+0 2774     6.996997e+01 -2.185200e+02
+1 2774     1.574500e+02 -2.038500e+02
+6 2774     1.367000e+02 -1.970601e+02
+7 2774     2.728998e+01 -8.914001e+01
+10 2774     1.046997e+01 -1.042700e+02
+12 2774     1.384600e+02 -1.534300e+02
+15 2774     8.791998e+01 -1.494200e+02
+0 2775     5.954800e+02 -8.300171e-01
+1 2775     8.241801e+02 -1.696300e+02
+6 2775     4.493900e+02 1.317200e+02
+7 2775     4.467000e+02 1.774500e+02
+8 2775     4.977000e+02 -5.128000e+01
+15 2775     8.010601e+02 2.167700e+02
+0 2776     5.264600e+02 1.977002e+01
+1 2776     7.597600e+02 -1.260800e+02
+15 2776     7.022100e+02 2.357400e+02
+0 2777     2.754000e+02 -1.058400e+02
+1 2777     4.041600e+02 -1.606900e+02
+7 2777     2.003400e+02 5.223999e+01
+10 2777     2.360300e+02 4.727002e+01
+15 2777     3.554200e+02 3.015997e+01
+0 2778     4.169700e+02 -1.124500e+02
+1 2778     5.547500e+02 -2.156000e+02
+12 2778     4.541600e+02 3.996997e+01
+15 2778     5.540601e+02 3.966998e+01
+0 2779     2.843300e+02 4.190002e+00
+1 2779     4.472400e+02 -5.323999e+01
+7 2779     1.900699e+02 1.608900e+02
+12 2779     2.900601e+02 1.468000e+02
+13 2779     6.115699e+02 -1.974600e+02
+15 2779     3.534200e+02 1.817100e+02
+0 2780     5.396801e+02 2.170600e+02
+1 2780     8.345100e+02 7.726001e+01
+7 2780     3.619500e+02 3.782200e+02
+15 2780     6.976000e+02 5.133500e+02
+0 2781     3.409100e+02 -7.708002e+01
+1 2781     4.839800e+02 -1.536400e+02
+10 2781     3.084399e+02 8.746997e+01
+15 2781     4.431000e+02 7.844000e+01
+0 2782     6.451400e+02 -3.159973e+00
+1 2782     8.759100e+02 -1.885400e+02
+2 2782     5.920699e+02 -3.450012e+00
+15 2782     8.711000e+02 2.208400e+02
+0 2783     -3.012400e+02 -4.570699e+02
+1 2783     -2.432800e+02 -3.144100e+02
+15 2783     -3.775200e+02 -5.226500e+02
+0 2784     3.152300e+02 1.040997e+01
+1 2784     4.852400e+02 -5.714001e+01
+7 2784     2.161700e+02 1.699000e+02
+10 2784     2.705200e+02 1.853700e+02
+15 2784     3.966801e+02 1.947500e+02
+0 2785     2.835200e+02 -2.377200e+02
+1 2785     3.678700e+02 -2.939300e+02
+10 2785     2.575601e+02 -1.036300e+02
+15 2785     3.830000e+02 -1.481400e+02
+0 2786     -5.935999e+01 -3.078003e+01
+1 2786     1.007100e+02 1.484998e+01
+10 2786     -1.588600e+02 9.889001e+01
+15 2786     -1.095400e+02 8.692999e+01
+0 2787     3.228000e+02 -3.114001e+01
+1 2787     4.803400e+02 -1.016500e+02
+7 2787     2.295800e+02 1.302400e+02
+10 2787     2.832000e+02 1.384000e+02
+15 2787     4.124700e+02 1.386500e+02
+0 2788     2.742200e+02 1.032300e+02
+1 2788     4.731899e+02 4.859998e+01
+7 2788     1.603700e+02 2.535300e+02
+10 2788     2.138300e+02 2.895400e+02
+13 2788     5.819000e+02 -1.165600e+02
+15 2788     3.286000e+02 3.165600e+02
+0 2789     4.100500e+02 -5.969000e+01
+1 2789     5.697900e+02 -1.607000e+02
+7 2789     3.104600e+02 1.113900e+02
+10 2789     3.866300e+02 1.144400e+02
+13 2789     7.112900e+02 -2.498100e+02
+15 2789     5.389301e+02 1.107100e+02
+0 2790     2.742200e+02 1.032300e+02
+1 2790     4.731899e+02 4.859998e+01
+7 2790     1.603700e+02 2.535300e+02
+10 2790     2.138300e+02 2.895400e+02
+13 2790     5.819000e+02 -1.165600e+02
+15 2790     3.286000e+02 3.165600e+02
+0 2791     -2.389400e+02 -4.072400e+02
+1 2791     -1.692600e+02 -2.890200e+02
+6 2791     -2.054500e+02 -5.901801e+02
+7 2791     -2.654600e+02 -3.511200e+02
+15 2791     -2.983700e+02 -4.463500e+02
+0 2792     -1.491000e+02 8.257999e+01
+1 2792     6.597998e+01 1.458600e+02
+6 2792     -3.267700e+02 2.659003e+01
+7 2792     -2.708200e+02 1.563100e+02
+10 2792     -2.759000e+02 2.226800e+02
+12 2792     -2.744500e+02 8.257001e+01
+15 2792     -2.422300e+02 2.284800e+02
+0 2793     -1.333600e+02 2.611400e+02
+1 2793     1.743400e+02 3.063800e+02
+2 2793     -3.696100e+02 -4.539978e+00
+7 2793     -3.214200e+02 3.109300e+02
+11 2793     2.816998e+01 -4.821400e+02
+15 2793     -2.349200e+02 4.749300e+02
+0 2794     2.300000e+01 -1.183400e+02
+1 2794     1.465300e+02 -9.275000e+01
+6 2794     3.665002e+01 -1.072100e+02
+7 2794     -4.042999e+01 -4.799805e-01
+10 2794     -5.459998e+01 6.590027e+00
+15 2794     1.220001e+01 -2.031000e+01
+0 2795     2.836801e+02 4.490997e+01
+1 2795     4.612400e+02 -1.216998e+01
+7 2795     1.816801e+02 2.002900e+02
+10 2795     2.307300e+02 2.222600e+02
+13 2795     6.027100e+02 -1.629600e+02
+15 2795     3.483199e+02 2.374100e+02
+0 2796     2.017500e+02 -2.729980e+00
+1 2796     3.573400e+02 -3.346997e+01
+10 2796     1.403900e+02 1.585800e+02
+15 2796     2.387300e+02 1.604900e+02
+0 2797     1.862100e+02 -3.429993e+00
+1 2797     3.409399e+02 -2.966998e+01
+15 2797     2.179900e+02 1.578400e+02
+0 2798     2.643101e+02 4.903003e+01
+1 2798     4.415500e+02 -2.049988e+00
+10 2798     2.081100e+02 2.250900e+02
+15 2798     3.207400e+02 2.406600e+02
+0 2799     1.407700e+02 -2.080800e+02
+1 2799     2.310000e+02 -2.168800e+02
+15 2799     1.829200e+02 -1.262000e+02
+0 2800     3.909100e+02 -2.004000e+02
+1 2800     5.074200e+02 -2.976700e+02
+10 2800     3.782700e+02 -4.882001e+01
+15 2800     5.309900e+02 -8.415997e+01
+0 2801     4.069600e+02 -4.923999e+01
+1 2801     5.710400e+02 -1.493400e+02
+6 2801     3.596600e+02 6.557001e+01
+15 2801     5.341600e+02 1.249500e+02
+0 2802     3.269100e+02 -1.510999e+01
+1 2802     4.903700e+02 -8.723999e+01
+10 2802     2.863900e+02 1.574800e+02
+15 2802     4.162700e+02 1.606600e+02
+0 2803     -4.474400e+02 4.096997e+01
+1 2803     -1.982000e+02 1.817200e+02
+10 2803     -6.251000e+02 1.427400e+02
+15 2803     -6.373800e+02 1.299500e+02
+0 2804     8.940002e+00 -1.093900e+02
+1 2804     1.365000e+02 -8.015002e+01
+6 2804     1.588000e+01 -1.030600e+02
+10 2804     -7.153998e+01 1.484998e+01
+12 2804     2.295001e+01 -5.185999e+01
+15 2804     -7.919983e+00 -1.014001e+01
+0 2805     4.030800e+02 -4.167999e+01
+1 2805     5.701000e+02 -1.407700e+02
+6 2805     3.509200e+02 7.184998e+01
+7 2805     2.995699e+02 1.268600e+02
+15 2805     5.278900e+02 1.343000e+02
+0 2806     1.531700e+02 -2.212300e+02
+1 2806     2.378300e+02 -2.332600e+02
+7 2806     1.084700e+02 -7.729999e+01
+10 2806     1.070600e+02 -9.829999e+01
+15 2806     2.015300e+02 -1.421000e+02
+0 2807     3.512200e+02 -1.375400e+02
+1 2807     4.742400e+02 -2.180000e+02
+2 2807     5.107200e+02 -6.154999e+01
+7 2807     2.755500e+02 3.246997e+01
+12 2807     4.001700e+02 1.150024e+00
+13 2807     6.861899e+02 -3.174600e+02
+15 2807     4.648000e+02 -3.059998e+00
+0 2808     2.452700e+02 -2.690002e+00
+1 2808     4.029800e+02 -4.733002e+01
+7 2808     1.558600e+02 1.502300e+02
+10 2808     1.905400e+02 1.633200e+02
+15 2808     3.001400e+02 1.671000e+02
+0 2809     2.399900e+02 -4.241998e+01
+1 2809     3.846100e+02 -8.534003e+01
+6 2809     2.342700e+02 4.585999e+01
+7 2809     1.578700e+02 1.103800e+02
+10 2809     1.891000e+02 1.168800e+02
+15 2809     2.976400e+02 1.119600e+02
+0 2810     4.297200e+02 -1.937000e+01
+1 2810     6.089000e+02 -1.271800e+02
+10 2810     4.057900e+02 1.635200e+02
+15 2810     5.629200e+02 1.690500e+02
+0 2811     3.295100e+02 -2.144000e+01
+1 2811     4.911801e+02 -9.439001e+01
+10 2811     2.902100e+02 1.509700e+02
+15 2811     4.207700e+02 1.527500e+02
+0 2812     4.149500e+02 -1.103800e+02
+1 2812     5.534200e+02 -2.127700e+02
+6 2812     4.048900e+02 1.113000e+01
+12 2812     4.507000e+02 4.151001e+01
+15 2812     5.510500e+02 4.233002e+01
+0 2813     9.415997e+01 7.465002e+01
+1 2813     2.745400e+02 7.496002e+01
+7 2813     -3.820007e+00 2.030600e+02
+10 2813     8.090027e+00 2.374000e+02
+13 2813     4.458800e+02 -1.504200e+02
+15 2813     8.301001e+01 2.520500e+02
+0 2814     2.424399e+02 -1.267700e+02
+1 2814     3.616801e+02 -1.704000e+02
+15 2814     3.121700e+02 -2.619995e+00
+0 2815     2.247600e+02 -3.867300e+02
+1 2815     2.680000e+02 -4.219200e+02
+6 2815     3.249100e+02 -3.530699e+02
+15 2815     3.238900e+02 -3.578800e+02
+0 2816     7.779999e+01 -1.347900e+02
+1 2816     1.932000e+02 -1.254300e+02
+10 2816     1.084003e+01 -6.950012e+00
+15 2816     8.794000e+01 -3.539001e+01
+0 2817     3.664001e+01 -2.053800e+02
+1 2817     1.303000e+02 -1.808200e+02
+7 2817     -9.030029e+00 -8.309998e+01
+15 2817     4.119000e+01 -1.360100e+02
+0 2818     1.095000e+02 5.719971e+00
+1 2818     2.666100e+02 2.890015e+00
+6 2818     9.056000e+01 6.209998e+01
+10 2818     3.306000e+01 1.589300e+02
+12 2818     1.079300e+02 1.135600e+02
+13 2818     4.715500e+02 -2.066600e+02
+15 2818     1.124300e+02 1.599600e+02
+0 2819     3.108600e+02 -2.003998e+01
+1 2819     4.700400e+02 -8.678003e+01
+6 2819     2.812200e+02 8.391998e+01
+7 2819     2.175300e+02 1.405500e+02
+10 2819     2.683800e+02 1.501400e+02
+15 2819     3.942000e+02 1.521900e+02
+0 2820     2.323000e+02 -1.290900e+02
+1 2820     3.501300e+02 -1.691700e+02
+7 2820     1.654200e+02 2.434003e+01
+10 2820     1.883600e+02 1.621997e+01
+15 2820     2.982800e+02 -6.770020e+00
+0 2821     1.756000e+01 -1.638700e+02
+1 2821     1.279200e+02 -1.354800e+02
+2 2821     2.303800e+02 -1.436900e+02
+6 2821     4.696002e+01 -1.617300e+02
+7 2821     -3.790002e+01 -4.725000e+01
+10 2821     -5.544000e+01 -4.696002e+01
+15 2821     1.121002e+01 -8.259003e+01
+0 2822     2.763101e+02 6.141998e+01
+1 2822     4.592600e+02 6.460022e+00
+10 2822     2.207300e+02 2.409500e+02
+15 2822     3.361700e+02 2.591700e+02
+0 2823     -1.170600e+02 7.690002e+01
+1 2823     8.976001e+01 1.326500e+02
+15 2823     -1.992900e+02 2.254100e+02
+0 2824     2.300000e+02 -1.312700e+02
+1 2824     3.464900e+02 -1.703000e+02
+7 2824     1.637700e+02 2.187000e+01
+12 2824     2.809600e+02 -1.451001e+01
+0 2825     2.427600e+02 2.486900e+02
+1 2825     5.484000e+02 1.913900e+02
+15 2825     2.833000e+02 5.112300e+02
+0 2826     5.758199e+02 1.525200e+02
+1 2826     8.518900e+02 -1.760010e+00
+10 2826     5.624100e+02 3.804400e+02
+13 2826     7.789399e+02 -6.669000e+01
+15 2826     7.554399e+02 4.281500e+02
+0 2827     5.758199e+02 1.525200e+02
+1 2827     8.518900e+02 -1.760010e+00
+2 2827     4.733700e+02 1.209600e+02
+3 2827     3.367800e+02 -1.935100e+02
+6 2827     3.851300e+02 2.970500e+02
+10 2827     5.624100e+02 3.804400e+02
+13 2827     7.789399e+02 -6.669000e+01
+15 2827     7.554399e+02 4.281500e+02
+0 2828     1.810300e+02 1.904200e+02
+1 2828     4.116500e+02 1.622200e+02
+15 2828     1.916200e+02 4.235300e+02
+0 2829     1.737900e+02 1.883000e+02
+1 2829     4.039399e+02 1.621700e+02
+10 2829     8.939001e+01 3.790200e+02
+13 2829     4.736300e+02 -5.632001e+01
+14 2829     6.740900e+02 -5.364800e+02
+15 2829     1.816000e+02 4.194500e+02
+0 2830     1.343300e+02 1.878700e+02
+1 2830     3.643700e+02 1.723700e+02
+15 2830     1.272800e+02 4.133300e+02
+0 2831     1.335800e+02 1.821900e+02
+1 2831     3.634399e+02 1.661000e+02
+7 2831     3.140015e+00 3.057400e+02
+10 2831     4.308002e+01 3.677000e+02
+0 2832     5.508500e+02 1.350900e+02
+1 2832     8.203500e+02 -1.273999e+01
+10 2832     5.343600e+02 3.567800e+02
+13 2832     7.549200e+02 -8.590997e+01
+15 2832     7.226400e+02 3.999700e+02
+0 2833     1.369700e+02 6.370001e+01
+1 2833     3.127000e+02 5.184003e+01
+2 2833     2.637200e+02 1.185300e+02
+5 2833     7.960800e+02 -5.954600e+02
+6 2833     9.409998e+01 1.327000e+02
+8 2833     2.496600e+02 5.038000e+01
+10 2833     5.873999e+01 2.289900e+02
+12 2833     1.175900e+02 1.837800e+02
+15 2833     1.425601e+02 2.429600e+02
+0 2834     6.019600e+02 -3.347998e+01
+1 2834     8.207700e+02 -2.061200e+02
+13 2834     8.281300e+02 -2.299300e+02
+15 2834     8.141000e+02 1.726600e+02
+0 2835     2.326600e+02 1.919983e+00
+1 2835     3.910000e+02 -3.889001e+01
+7 2835     1.437800e+02 1.530400e+02
+10 2835     1.759000e+02 1.675500e+02
+12 2835     2.405400e+02 1.372800e+02
+15 2835     2.820601e+02 1.717300e+02
+0 2836     1.842500e+02 -1.140002e+01
+1 2836     3.360400e+02 -3.702002e+01
+7 2836     1.008100e+02 1.335600e+02
+10 2836     1.209200e+02 1.467700e+02
+15 2836     2.166200e+02 1.469300e+02
+0 2837     -4.564600e+02 3.810999e+01
+1 2837     -2.078000e+02 1.815100e+02
+10 2837     -6.355600e+02 1.383700e+02
+15 2837     -6.495400e+02 1.247700e+02
+0 2838     2.028900e+02 -1.724600e+02
+1 2838     3.053700e+02 -2.018200e+02
+2 2838     4.176000e+02 -1.014300e+02
+3 2838     3.209000e+02 -3.995699e+02
+4 2838     -4.352700e+02 -5.788800e+02
+6 2838     2.469700e+02 -1.054200e+02
+13 2838     5.739100e+02 -3.552900e+02
+15 2838     2.633500e+02 -6.958002e+01
+0 2839     -6.966998e+01 -1.508100e+02
+1 2839     5.004999e+01 -9.633002e+01
+7 2839     -1.291900e+02 -5.046997e+01
+12 2839     -5.859998e+01 -1.264000e+02
+15 2839     -1.084100e+02 -7.663000e+01
+0 2840     5.763000e+02 -3.193500e+02
+1 2840     6.732500e+02 -4.870601e+02
+7 2840     4.978300e+02 -1.162300e+02
+12 2840     6.544500e+02 -1.740900e+02
+15 2840     8.078000e+02 -2.239900e+02
+0 2841     6.064500e+02 -3.915200e+02
+1 2841     6.761100e+02 -5.718400e+02
+10 2841     6.454399e+02 -2.458100e+02
+15 2841     8.576600e+02 -3.192500e+02
+0 2842     1.656801e+02 1.903400e+02
+1 2842     3.967200e+02 1.660800e+02
+10 2842     7.956000e+01 3.805100e+02
+14 2842     6.646700e+02 -5.348900e+02
+15 2842     1.700900e+02 4.211000e+02
+0 2843     1.985699e+02 1.781900e+02
+1 2843     4.249800e+02 1.450600e+02
+10 2843     1.189600e+02 3.698000e+02
+15 2843     2.165601e+02 4.089500e+02
+0 2844     1.029900e+02 1.754600e+02
+1 2844     3.260500e+02 1.685600e+02
+15 2844     8.571002e+01 3.921500e+02
+0 2845     7.731000e+01 1.769300e+02
+1 2845     3.018600e+02 1.782500e+02
+10 2845     -2.164001e+01 3.562200e+02
+15 2845     5.001001e+01 3.899900e+02
+0 2846     3.373500e+02 1.127800e+02
+1 2846     5.672600e+02 3.370001e+01
+7 2846     1.982200e+02 2.564300e+02
+10 2846     2.867100e+02 3.077200e+02
+15 2846     4.217000e+02 3.376600e+02
+0 2847     3.900900e+02 5.471997e+01
+1 2847     5.988900e+02 -4.060999e+01
+7 2847     2.630100e+02 2.117700e+02
+10 2847     3.536500e+02 2.458000e+02
+15 2847     5.008000e+02 2.653900e+02
+0 2848     2.176300e+02 6.246997e+01
+1 2848     3.958900e+02 2.590997e+01
+6 2848     1.716400e+02 1.520300e+02
+7 2848     1.178400e+02 2.095500e+02
+10 2848     1.522400e+02 2.363900e+02
+12 2848     2.026600e+02 1.989500e+02
+15 2848     2.539301e+02 2.526400e+02
+0 2849     6.187000e+02 1.388000e+01
+1 2849     8.530500e+02 -1.619100e+02
+2 2849     5.583101e+02 -1.099854e-01
+6 2849     4.747300e+02 1.590700e+02
+7 2849     4.677600e+02 1.962900e+02
+13 2849     8.397100e+02 -1.839400e+02
+15 2849     8.317800e+02 2.407100e+02
+0 2850     5.246300e+02 2.297998e+01
+1 2850     7.589700e+02 -1.222900e+02
+7 2850     3.727100e+02 1.860700e+02
+10 2850     5.130200e+02 2.236200e+02
+13 2850     7.404000e+02 -1.896700e+02
+15 2850     6.992900e+02 2.396100e+02
+0 2851     -2.608700e+02 5.846997e+01
+1 2851     -2.082001e+01 1.482600e+02
+2 2851     -3.879400e+02 -1.891100e+02
+7 2851     -4.027300e+02 9.620999e+01
+15 2851     -3.835200e+02 1.795000e+02
+0 2852     6.055900e+02 -4.496002e+01
+1 2852     8.214399e+02 -2.193300e+02
+7 2852     4.624399e+02 1.367300e+02
+10 2852     6.133400e+02 1.531600e+02
+12 2852     5.558600e+02 9.679999e+01
+15 2852     8.207200e+02 1.573600e+02
+0 2853     2.531500e+02 -1.329100e+02
+1 2853     3.700500e+02 -1.796400e+02
+7 2853     1.863000e+02 2.423999e+01
+10 2853     2.125699e+02 1.377002e+01
+15 2853     3.275800e+02 -9.369995e+00
+0 2854     -1.095001e+01 -1.688600e+02
+1 2854     9.877002e+01 -1.316500e+02
+7 2854     -6.571002e+01 -5.722998e+01
+10 2854     -8.809998e+01 -5.565997e+01
+15 2854     -2.701001e+01 -9.317999e+01
+0 2855     6.162000e+02 -2.603200e+02
+1 2855     7.431200e+02 -4.428600e+02
+12 2855     6.641000e+02 -1.060900e+02
+15 2855     8.571200e+02 -1.379300e+02
+0 2856     5.473600e+02 -4.178100e+02
+1 2856     5.999800e+02 -5.744399e+02
+15 2856     7.763400e+02 -3.619500e+02
+0 2857     -2.508100e+02 -4.110100e+02
+1 2857     -1.816700e+02 -2.889500e+02
+6 2857     -2.170800e+02 -5.999600e+02
+7 2857     -2.768900e+02 -3.575300e+02
+15 2857     -3.144300e+02 -4.536100e+02
+0 2858     3.946002e+01 1.352200e+02
+1 2858     2.447200e+02 1.487100e+02
+15 2858     2.080017e+00 3.273400e+02
+0 2859     6.135000e+02 -3.504999e+01
+1 2859     8.324200e+02 -2.119500e+02
+7 2859     4.693101e+02 1.479000e+02
+12 2859     5.622900e+02 1.112700e+02
+15 2859     8.306600e+02 1.716900e+02
+0 2860     -2.628900e+02 -4.097800e+02
+1 2860     -1.918600e+02 -2.840300e+02
+15 2860     -3.302100e+02 -4.537100e+02
+0 2861     -1.534900e+02 1.997300e+02
+1 2861     1.329200e+02 2.526900e+02
+15 2861     -2.547500e+02 3.872000e+02
+0 2862     6.373600e+02 -1.287300e+02
+1 2862     8.233700e+02 -3.170300e+02
+7 2862     5.082500e+02 6.483002e+01
+10 2862     6.570000e+02 5.962000e+01
+15 2862     8.744000e+02 4.553003e+01
+0 2863     5.944100e+02 -2.658500e+02
+1 2863     7.159000e+02 -4.402500e+02
+7 2863     5.015300e+02 -6.519000e+01
+12 2863     6.462700e+02 -1.177000e+02
+15 2863     8.271200e+02 -1.483300e+02
+0 2864     5.715100e+02 3.802002e+01
+1 2864     8.114600e+02 -1.211100e+02
+7 2864     4.175500e+02 2.106000e+02
+10 2864     5.654000e+02 2.458400e+02
+13 2864     7.877500e+02 -1.692700e+02
+15 2864     7.627000e+02 2.674100e+02
+0 2865     -4.792999e+01 6.363000e+01
+1 2865     1.404500e+02 1.022600e+02
+3 2865     -3.948999e+01 -2.627000e+02
+5 2865     5.609500e+02 -6.016400e+02
+7 2865     -1.496200e+02 1.645100e+02
+10 2865     -1.560700e+02 2.102700e+02
+15 2865     -1.069700e+02 2.171200e+02
+0 2866     1.300000e+01 3.478003e+01
+1 2866     1.845500e+02 5.928003e+01
+2 2866     1.439600e+02 5.769000e+01
+7 2866     -7.871002e+01 1.499500e+02
+10 2866     -8.209998e+01 1.832200e+02
+15 2866     -2.184003e+01 1.865700e+02
+0 2867     1.836700e+02 -3.548999e+01
+1 2867     3.284500e+02 -6.073999e+01
+2 2867     3.482600e+02 3.726001e+01
+3 2867     2.466100e+02 -2.688600e+02
+4 2867     -3.240800e+02 -5.615400e+02
+10 2867     1.229800e+02 1.190400e+02
+13 2867     5.403800e+02 -2.346900e+02
+0 2868     8.409998e+01 1.745800e+02
+1 2868     3.073900e+02 1.738100e+02
+10 2868     -1.363000e+01 3.536900e+02
+14 2868     5.822100e+02 -5.562500e+02
+15 2868     5.882001e+01 3.876300e+02
+0 2869     2.009900e+02 -9.335999e+01
+1 2869     3.293000e+02 -1.242100e+02
+3 2869     2.796200e+02 -3.293000e+02
+7 2869     1.294700e+02 5.453998e+01
+10 2869     1.484000e+02 5.383002e+01
+13 2869     5.592500e+02 -2.866600e+02
+15 2869     2.503400e+02 3.747998e+01
+0 2870     3.081000e+02 -1.240100e+02
+1 2870     4.314100e+02 -1.888200e+02
+7 2870     2.349000e+02 4.037000e+01
+10 2870     2.751700e+02 3.079999e+01
+15 2870     4.027800e+02 9.320007e+00
+0 2871     -2.086300e+02 -4.358500e+02
+1 2871     -1.524900e+02 -3.247500e+02
+7 2871     -2.269400e+02 -3.725800e+02
+10 2871     -2.866300e+02 -3.846500e+02
+15 2871     -2.542400e+02 -4.810000e+02
+0 2872     -3.798999e+01 -2.210022e+00
+1 2872     1.266600e+02 3.728998e+01
+3 2872     6.440002e+00 -3.142900e+02
+7 2872     -1.260900e+02 1.020300e+02
+13 2872     3.333300e+02 -2.283800e+02
+15 2872     -8.495001e+01 1.288200e+02
+0 2873     2.596400e+02 -2.616998e+01
+1 2873     4.130699e+02 -8.042999e+01
+7 2873     1.750800e+02 1.287600e+02
+10 2873     2.098400e+02 1.384100e+02
+13 2873     5.979200e+02 -2.227200e+02
+15 2873     3.238199e+02 1.361700e+02
+0 2874     -4.356100e+02 1.697998e+01
+1 2874     -1.963300e+02 1.567000e+02
+10 2874     -6.077000e+02 1.160600e+02
+15 2874     -6.180400e+02 9.914999e+01
+0 2875     -5.258800e+02 3.457000e+02
+1 2875     -1.810700e+02 4.859100e+02
+8 2875     -5.931200e+02 3.528000e+01
+15 2875     -7.961700e+02 5.416100e+02
+0 2876     -4.600400e+02 3.536600e+02
+1 2876     -1.169000e+02 4.773500e+02
+10 2876     -6.862300e+02 5.192000e+02
+11 2876     -2.629700e+02 -3.936100e+02
+15 2876     -7.051400e+02 5.614600e+02
+0 2877     -3.999800e+02 -8.962000e+01
+1 2877     -2.014600e+02 4.912000e+01
+7 2877     -5.124300e+02 -7.262000e+01
+10 2877     -5.513400e+02 -5.229980e+00
+12 2877     -5.668400e+02 -2.272900e+02
+13 2877     -5.263000e+01 -3.556400e+02
+15 2877     -5.551900e+02 -4.020001e+01
+0 2878     -2.477200e+02 7.371997e+01
+1 2878     -2.859985e+00 1.588000e+02
+7 2878     -3.934100e+02 1.133300e+02
+10 2878     -3.904900e+02 2.025000e+02
+15 2878     -3.673700e+02 2.019100e+02
+0 2879     6.159003e+01 -1.530000e+02
+1 2879     1.717100e+02 -1.377500e+02
+2 2879     2.784000e+02 -1.108400e+02
+7 2879     5.210022e+00 -2.695001e+01
+15 2879     6.832001e+01 -6.196002e+01
+0 2880     6.378700e+02 -8.973999e+01
+1 2880     8.408000e+02 -2.775400e+02
+3 2880     4.830699e+02 -4.026700e+02
+7 2880     5.007500e+02 1.002800e+02
+8 2880     5.579301e+02 -1.117100e+02
+10 2880     6.545200e+02 1.049100e+02
+13 2880     8.741200e+02 -2.766900e+02
+15 2880     8.713101e+02 9.964001e+01
+0 2881     1.128998e+01 -7.966998e+01
+1 2881     1.487200e+02 -5.217999e+01
+7 2881     -6.046997e+01 3.509003e+01
+10 2881     -7.229999e+01 4.982001e+01
+13 2881     3.911000e+02 -2.906300e+02
+15 2881     -7.909973e+00 3.028003e+01
+0 2882     7.919000e+01 -6.959998e+01
+1 2882     2.146300e+02 -6.209003e+01
+10 2882     6.349976e+00 6.839001e+01
+15 2882     8.159003e+01 5.357001e+01
+0 2883     5.857000e+02 1.492500e+02
+1 2883     8.611700e+02 -8.090027e+00
+15 2883     7.699800e+02 4.250200e+02
+0 2884     4.470001e+01 -9.640002e+01
+1 2884     1.745500e+02 -7.834998e+01
+2 2884     2.307700e+02 -6.654999e+01
+7 2884     -2.335999e+01 2.456000e+01
+15 2884     3.876001e+01 1.234003e+01
+0 2885     3.676001e+01 -2.410999e+01
+1 2885     1.878800e+02 -4.960022e+00
+2 2885     1.981500e+02 1.109003e+01
+10 2885     -4.821002e+01 1.167800e+02
+15 2885     1.779999e+01 1.091700e+02
+0 2886     1.300049e-01 -8.644000e+01
+1 2886     1.366600e+02 -5.557001e+01
+2 2886     1.730600e+02 -7.401001e+01
+3 2886     8.716998e+01 -3.803700e+02
+7 2886     -7.139001e+01 2.559003e+01
+10 2886     -8.417999e+01 4.110999e+01
+13 2886     3.801300e+02 -2.981000e+02
+15 2886     -2.252002e+01 1.984998e+01
+0 2887     5.955300e+02 3.727002e+01
+1 2887     8.362100e+02 -1.295400e+02
+15 2887     7.963800e+02 2.699400e+02
+0 2888     5.596600e+02 2.517700e+02
+1 2888     8.669500e+02 1.084500e+02
+7 2888     3.776700e+02 4.159600e+02
+10 2888     5.359900e+02 4.961200e+02
+15 2888     7.221500e+02 5.658800e+02
+0 2889     5.076899e+02 2.710700e+02
+1 2889     8.320699e+02 1.403800e+02
+10 2889     4.733800e+02 5.140900e+02
+15 2889     6.499100e+02 5.837900e+02
+0 2890     5.935100e+02 1.529999e+01
+1 2890     8.272300e+02 -1.521300e+02
+6 2890     4.429000e+02 1.492300e+02
+7 2890     4.426600e+02 1.927300e+02
+8 2890     4.927500e+02 -3.831000e+01
+10 2890     5.941500e+02 2.214800e+02
+13 2890     8.133800e+02 -1.865600e+02
+15 2890     7.966100e+02 2.389200e+02
+0 2891     6.931000e+01 2.942999e+01
+1 2891     2.355000e+02 3.771002e+01
+15 2891     5.482001e+01 1.867700e+02
+0 2892     6.100601e+02 1.171997e+01
+1 2892     8.436801e+02 -1.617300e+02
+7 2892     4.596300e+02 1.924000e+02
+13 2892     8.312300e+02 -1.876400e+02
+15 2892     8.201801e+02 2.363300e+02
+0 2893     -2.954999e+01 4.789900e+02
+1 2893     3.409100e+02 4.952500e+02
+2 2893     -3.176800e+02 2.355100e+02
+6 2893     -5.087600e+02 4.878500e+02
+7 2893     -2.532600e+02 5.430800e+02
+8 2893     -1.818700e+02 1.783600e+02
+12 2893     -3.331100e+02 4.795300e+02
+14 2893     2.845500e+02 -2.585800e+02
+0 2894     2.272998e+01 2.928300e+02
+1 2894     3.400000e+02 2.955400e+02
+4 2894     -1.085000e+02 -3.650700e+02
+5 2894     4.433199e+02 -3.730800e+02
+7 2894     -1.710200e+02 3.633800e+02
+8 2894     -1.020700e+02 2.717001e+01
+10 2894     -9.756000e+01 4.893800e+02
+11 2894     1.735600e+02 -4.506000e+02
+15 2894     -2.428003e+01 5.407800e+02
+0 2895     -6.353003e+01 1.815900e+02
+1 2895     2.130300e+02 2.113200e+02
+5 2895     3.809200e+02 -4.956200e+02
+6 2895     -4.062200e+02 1.158100e+02
+7 2895     -2.314000e+02 2.454900e+02
+10 2895     -1.866900e+02 3.488200e+02
+13 2895     1.807100e+02 -1.030000e+02
+14 2895     2.979600e+02 -5.813300e+02
+0 2896     -1.655400e+02 1.848900e+02
+1 2896     1.154100e+02 2.418700e+02
+0 2897     -1.609900e+02 1.763100e+02
+1 2897     1.165900e+02 2.326300e+02
+7 2897     -3.270800e+02 2.262800e+02
+0 2898     1.026900e+02 7.578003e+01
+1 2898     2.832300e+02 7.342999e+01
+0 2899     -1.049200e+02 4.899500e+02
+1 2899     2.661000e+02 5.254400e+02
+0 2900     2.862100e+02 5.111500e+02
+1 2900     6.900100e+02 4.487100e+02
+3 2900     -1.814900e+02 -5.740002e+01
+9 2900     -1.847300e+02 3.128000e+02
+11 2900     4.054100e+02 -2.416100e+02
+0 2901     1.609000e+02 7.003003e+01
+1 2901     3.394200e+02 5.126001e+01
+4 2901     -2.438400e+02 -5.399100e+02
+13 2901     5.033800e+02 -1.487700e+02
+15 2901     1.749500e+02 2.555900e+02
+0 2902     -6.516998e+01 1.918100e+02
+1 2902     2.153000e+02 2.215200e+02
+0 2903     -1.983000e+02 3.662200e+02
+1 2903     1.416000e+02 4.253700e+02
+2 2903     -4.743900e+02 9.682001e+01
+10 2903     -3.684800e+02 5.572000e+02
+14 2903     1.165600e+02 -3.827200e+02
+0 2904     -2.078800e+02 2.194000e+02
+1 2904     8.740002e+01 2.859600e+02
+7 2904     -3.870700e+02 2.592000e+02
+11 2904     -4.338000e+01 -5.220800e+02
+13 2904     4.371002e+01 -8.142999e+01
+14 2904     1.248500e+02 -5.447000e+02
+0 2905     -5.217999e+01 -2.827002e+01
+1 2905     1.075400e+02 1.565997e+01
+2 2905     8.128998e+01 -3.887000e+01
+4 2905     -2.855300e+02 -3.677200e+02
+7 2905     -1.370300e+02 7.301001e+01
+9 2905     -3.863000e+01 5.560999e+01
+15 2905     -1.005100e+02 9.166000e+01
+0 2906     8.221997e+01 -4.210999e+01
+1 2906     2.254600e+02 -3.600000e+01
+4 2906     -3.130500e+02 -4.779200e+02
+15 2906     8.172998e+01 9.147000e+01
+0 2907     1.695001e+01 3.983400e+02
+1 2907     3.690000e+02 4.020000e+02
+2 2907     -2.667400e+02 1.416700e+02
+6 2907     -4.408800e+02 3.924300e+02
+7 2907     -1.973400e+02 4.656400e+02
+9 2907     -3.728500e+02 1.883700e+02
+10 2907     -1.157500e+02 6.176200e+02
+14 2907     3.300900e+02 -3.426800e+02
+0 2908     1.523101e+02 2.163000e+01
+1 2908     3.140699e+02 5.880005e+00
+7 2908     6.390997e+01 1.613600e+02
+10 2908     8.087000e+01 1.820800e+02
+12 2908     1.504300e+02 1.426100e+02
+15 2908     1.688000e+02 1.876900e+02
+0 2909     1.633002e+01 5.691998e+01
+1 2909     1.949800e+02 7.992999e+01
+4 2909     -2.353700e+02 -4.254600e+02
+5 2909     6.503500e+02 -6.061400e+02
+7 2909     -8.116998e+01 1.731900e+02
+10 2909     -8.047998e+01 2.092400e+02
+12 2909     -2.278998e+01 1.396800e+02
+15 2909     -1.998999e+01 2.168200e+02
+0 2910     -1.471100e+02 1.803800e+02
+1 2910     1.312400e+02 2.327400e+02
+7 2910     -3.151400e+02 2.318600e+02
+0 2911     -3.069000e+01 -4.119000e+01
+1 2911     1.218700e+02 -3.059998e+00
+3 2911     3.285999e+01 -3.483900e+02
+6 2911     -6.452002e+01 -4.437000e+01
+13 2911     3.455100e+02 -2.618400e+02
+15 2911     -7.032001e+01 7.675000e+01
+0 2912     -4.664500e+02 1.884900e+02
+1 2912     -1.647100e+02 3.229500e+02
+7 2912     -6.514500e+02 1.884300e+02
+0 2913     -8.032400e+02 1.245001e+01
+1 2913     -5.157800e+02 2.455800e+02
+0 2914     -8.079200e+02 4.530029e+00
+1 2914     -5.215000e+02 2.391100e+02
+0 2915     -4.471500e+02 1.385800e+02
+1 2915     -1.642000e+02 2.718200e+02
+7 2915     -6.195300e+02 1.425600e+02
+0 2916     1.593300e+02 -8.340027e+00
+1 2916     3.116500e+02 -2.617999e+01
+2 2916     3.169399e+02 5.853998e+01
+7 2916     7.637000e+01 1.328900e+02
+15 2916     1.821400e+02 1.475900e+02
+0 2917     2.995001e+01 1.396000e+02
+1 2917     2.379200e+02 1.558000e+02
+15 2917     -1.146997e+01 3.315600e+02
+0 2918     -4.387000e+01 2.582600e+02
+1 2918     2.602900e+02 2.797000e+02
+7 2918     -2.294900e+02 3.212200e+02
+8 2918     -1.458800e+02 -3.630005e+00
+9 2918     -3.614700e+02 7.453003e+01
+10 2918     -1.716600e+02 4.425500e+02
+12 2918     -2.871800e+02 2.305700e+02
+13 2918     1.781400e+02 -3.782001e+01
+14 2918     2.956000e+02 -4.960601e+02
+15 2918     -1.111300e+02 4.834400e+02
+0 2919     -1.066000e+02 1.254600e+02
+1 2919     1.235300e+02 1.748500e+02
+5 2919     4.267400e+02 -5.445100e+02
+6 2919     -3.101100e+02 8.426001e+01
+7 2919     -2.394200e+02 2.031400e+02
+10 2919     -2.316700e+02 2.768600e+02
+15 2919     -1.894400e+02 2.927800e+02
+0 2920     8.547998e+01 -1.307001e+01
+1 2920     2.372200e+02 -8.700012e+00
+2 2920     2.477400e+02 3.826001e+01
+7 2920     4.530029e+00 1.160500e+02
+15 2920     8.251001e+01 1.311700e+02
+0 2921     7.159003e+01 1.109985e+00
+1 2921     2.286000e+02 9.549988e+00
+6 2921     4.983002e+01 4.431000e+01
+7 2921     -1.210999e+01 1.276100e+02
+12 2921     6.487000e+01 9.695001e+01
+15 2921     6.162000e+01 1.486400e+02
+0 2922     5.521997e+01 -6.075000e+01
+1 2922     1.944600e+02 -4.637000e+01
+3 2922     1.412200e+02 -3.268900e+02
+7 2922     -1.815002e+01 6.284003e+01
+9 2922     8.679999e+01 7.681000e+01
+10 2922     -2.325000e+01 7.698999e+01
+13 2922     4.308400e+02 -2.690100e+02
+15 2922     4.766998e+01 6.217999e+01
+0 2923     8.221997e+01 -4.210999e+01
+1 2923     2.254600e+02 -3.600000e+01
+15 2923     8.172998e+01 9.147000e+01
+0 2924     -2.407000e+02 3.948300e+02
+1 2924     1.062100e+02 4.643200e+02
+2 2924     -5.181000e+02 1.322300e+02
+7 2924     -4.517200e+02 4.323900e+02
+13 2924     -4.600220e-01 6.791998e+01
+14 2924     7.665997e+01 -3.519400e+02
+0 2925     2.229999e+01 -4.344000e+01
+1 2925     1.692300e+02 -1.983002e+01
+7 2925     -5.464001e+01 7.407001e+01
+15 2925     1.049988e+00 8.110999e+01
+0 2926     -1.896300e+02 2.109600e+02
+1 2926     1.015600e+02 2.732800e+02
+7 2926     -3.672200e+02 2.542600e+02
+10 2926     -3.391500e+02 3.716000e+02
+15 2926     -3.057500e+02 3.978600e+02
+0 2927     -1.896300e+02 2.109600e+02
+1 2927     1.015600e+02 2.732800e+02
+7 2927     -3.672200e+02 2.542600e+02
+0 2928     1.925300e+02 -1.703998e+01
+1 2928     3.427500e+02 -4.501001e+01
+2 2928     3.491500e+02 5.432001e+01
+7 2928     1.097900e+02 1.293400e+02
+10 2928     1.313400e+02 1.412900e+02
+15 2928     2.290601e+02 1.403100e+02
+0 2929     2.125400e+02 -3.581000e+01
+1 2929     3.577000e+02 -6.989001e+01
+2 2929     3.723900e+02 3.646997e+01
+3 2929     2.686100e+02 -2.694600e+02
+6 2929     2.079200e+02 4.652002e+01
+7 2929     1.318800e+02 1.134600e+02
+15 2929     2.590400e+02 1.174900e+02
+0 2930     1.180300e+02 -8.592999e+01
+1 2930     2.475000e+02 -8.985999e+01
+6 2930     1.306300e+02 -3.733002e+01
+7 2930     4.882001e+01 4.900000e+01
+8 2930     2.793900e+02 -7.479999e+01
+15 2930     1.363200e+02 3.612000e+01
+0 2931     2.404600e+02 4.520300e+02
+1 2931     6.225100e+02 3.979800e+02
+2 2931     -7.059998e+01 2.093000e+02
+5 2931     6.436400e+02 -1.954900e+02
+6 2931     -2.084400e+02 5.098100e+02
+7 2931     9.799988e+00 5.439500e+02
+12 2931     -4.254999e+01 4.864900e+02
+0 2932     -1.816800e+02 4.013000e+01
+1 2932     1.884998e+01 1.150300e+02
+6 2932     -3.333000e+02 -2.778003e+01
+7 2932     -2.936300e+02 1.103100e+02
+10 2932     -3.096000e+02 1.692100e+02
+12 2932     -2.919900e+02 3.219000e+01
+15 2932     -2.817700e+02 1.663400e+02
+0 2933     -2.109003e+01 5.270001e+01
+1 2933     1.595000e+02 8.550000e+01
+3 2933     1.820007e+00 -2.554900e+02
+4 2933     -2.346700e+02 -3.947300e+02
+5 2933     6.011899e+02 -6.124500e+02
+8 2933     1.069000e+02 3.079987e+00
+15 2933     -6.982001e+01 2.059300e+02
+0 2934     1.975800e+02 -1.119100e+02
+1 2934     3.206200e+02 -1.411300e+02
+2 2934     3.826300e+02 -4.802002e+01
+7 2934     1.286600e+02 3.539001e+01
+12 2934     2.372200e+02 -1.630005e+00
+13 2934     5.578101e+02 -3.035800e+02
+15 2934     2.485100e+02 1.172998e+01
+0 2935     3.734600e+02 4.770900e+02
+1 2935     7.795500e+02 3.896100e+02
+3 2935     -1.070400e+02 -9.110999e+01
+8 2935     1.135200e+02 1.878600e+02
+14 2935     6.802800e+02 -2.415200e+02
+0 2936     4.076001e+01 -1.056900e+02
+1 2936     1.685699e+02 -8.621002e+01
+2 2936     2.276300e+02 -7.870001e+01
+3 2936     1.397100e+02 -3.831400e+02
+7 2936     -2.617999e+01 1.451001e+01
+9 2936     8.512000e+01 2.872998e+01
+10 2936     -3.459998e+01 2.281000e+01
+13 2936     4.208000e+02 -3.108500e+02
+15 2936     3.470001e+01 -7.100220e-01
+0 2937     -3.052002e+01 7.652002e+01
+1 2937     1.595500e+02 1.112600e+02
+3 2937     -2.495001e+01 -2.421200e+02
+5 2937     5.829301e+02 -5.867600e+02
+6 2937     -1.215100e+02 8.925000e+01
+7 2937     -1.344900e+02 1.817700e+02
+8 2937     8.315997e+01 1.725000e+01
+10 2937     -1.375100e+02 2.277000e+02
+13 2937     3.270800e+02 -1.609600e+02
+15 2937     -8.589001e+01 2.379700e+02
+0 2938     1.881200e+02 -4.754999e+01
+1 2938     3.286000e+02 -7.384998e+01
+2 2938     3.595699e+02 2.378998e+01
+3 2938     2.597800e+02 -2.808200e+02
+6 2938     1.908200e+02 2.821997e+01
+8 2938     3.258300e+02 -2.923999e+01
+10 2938     1.299000e+02 1.057100e+02
+15 2938     2.265900e+02 9.809000e+01
+0 2939     2.043700e+02 -7.975000e+01
+1 2939     3.364600e+02 -1.112600e+02
+3 2939     2.771000e+02 -3.143100e+02
+7 2939     1.308100e+02 6.856000e+01
+13 2939     5.611300e+02 -2.744200e+02
+15 2939     2.537800e+02 5.656000e+01
+0 2940     -1.888000e+01 -7.396002e+01
+1 2940     1.232200e+02 -3.826001e+01
+3 2940     5.938000e+01 -3.761400e+02
+7 2940     -9.321002e+01 3.441998e+01
+10 2940     -1.073200e+02 5.369000e+01
+12 2940     -2.554999e+01 -2.358002e+01
+13 2940     3.605100e+02 -2.894300e+02
+0 2941     6.509100e+02 -1.941998e+01
+1 2941     8.767300e+02 -2.076400e+02
+2 2941     6.027600e+02 -1.713000e+01
+6 2941     5.226500e+02 1.341300e+02
+0 2942     -6.426001e+01 4.820100e+02
+1 2942     3.055900e+02 5.072000e+02
+3 2942     -4.795400e+02 -9.207001e+01
+5 2942     3.409700e+02 -1.691900e+02
+6 2942     -5.482900e+02 4.847400e+02
+7 2942     -2.875500e+02 5.428500e+02
+12 2942     -3.709900e+02 4.784100e+02
+0 2943     -1.173900e+02 5.528998e+01
+1 2943     8.067999e+01 1.123700e+02
+5 2943     4.550300e+02 -6.176899e+02
+7 2943     -2.272900e+02 1.385800e+02
+10 2943     -2.360400e+02 1.935800e+02
+15 2943     -1.974200e+02 1.958800e+02
+0 2944     7.053003e+01 -1.291000e+02
+1 2944     1.887400e+02 -1.178000e+02
+7 2944     8.880005e+00 -2.219971e+00
+12 2944     1.034200e+02 -5.434998e+01
+0 2945     1.404700e+02 7.392999e+01
+1 2945     3.204800e+02 6.123999e+01
+6 2945     9.196997e+01 1.440200e+02
+12 2945     1.167800e+02 1.949300e+02
+15 2945     1.461300e+02 2.583300e+02
+0 2946     6.282000e+02 -3.921600e+02
+1 2946     7.004700e+02 -5.816000e+02
+2 2946     8.024000e+02 -3.007300e+02
+0 2947     -8.542999e+01 4.844300e+02
+1 2947     2.846300e+02 5.150300e+02
+6 2947     -5.734800e+02 4.842500e+02
+7 2947     -3.088800e+02 5.432900e+02
+0 2948     1.329200e+02 7.653998e+01
+1 2948     3.137000e+02 6.552002e+01
+3 2948     1.505600e+02 -1.858000e+02
+7 2948     3.407001e+01 2.109200e+02
+10 2948     5.275000e+01 2.439600e+02
+13 2948     4.784900e+02 -1.454400e+02
+15 2948     1.356300e+02 2.597200e+02
+0 2949     2.428500e+02 -2.221002e+01
+1 2949     3.944900e+02 -6.626001e+01
+10 2949     1.902300e+02 1.409200e+02
+13 2949     5.843400e+02 -2.214600e+02
+15 2949     2.988900e+02 1.400900e+02
+0 2950     3.144301e+02 -9.860999e+01
+1 2950     4.472700e+02 -1.664100e+02
+7 2950     2.345800e+02 6.457001e+01
+10 2950     2.795601e+02 5.947998e+01
+12 2950     3.518600e+02 3.734998e+01
+13 2950     6.498300e+02 -2.854800e+02
+15 2950     4.084700e+02 4.519000e+01
+0 2951     -1.139700e+02 3.558500e+02
+1 2951     2.242500e+02 3.933300e+02
+2 2951     -3.895000e+02 8.601001e+01
+5 2951     2.839500e+02 -3.058200e+02
+6 2951     -5.822900e+02 3.058900e+02
+7 2951     -3.201000e+02 4.063100e+02
+8 2951     -2.402400e+02 5.941000e+01
+9 2951     -4.756500e+02 1.344100e+02
+10 2951     -2.660900e+02 5.524600e+02
+11 2951     4.827002e+01 -3.941900e+02
+12 2951     -4.039800e+02 3.185500e+02
+14 2951     1.999000e+02 -3.926600e+02
+0 2952     -1.172200e+02 2.844700e+02
+1 2952     1.987800e+02 3.246100e+02
+2 2952     -3.654000e+02 1.583002e+01
+7 2952     -3.095200e+02 3.354300e+02
+10 2952     -2.610300e+02 4.660400e+02
+15 2952     -2.149700e+02 5.096300e+02
+0 2953     9.551001e+01 -4.925000e+01
+1 2953     2.362700e+02 -4.734998e+01
+2 2953     2.714500e+02 4.059998e+00
+6 2953     9.400000e+01 -2.119995e+00
+7 2953     2.071997e+01 8.167999e+01
+10 2953     2.283002e+01 9.354999e+01
+15 2953     1.007300e+02 8.312000e+01
+0 2954     2.414500e+02 -1.645001e+01
+1 2954     3.948300e+02 -5.990997e+01
+2 2954     3.855601e+02 5.534003e+01
+13 2954     5.825300e+02 -2.169200e+02
+15 2954     2.979800e+02 1.480100e+02
+0 2955     1.910300e+02 -5.396997e+01
+1 2955     3.301100e+02 -8.115997e+01
+2 2955     3.609301e+02 1.684003e+01
+3 2955     2.597800e+02 -2.884600e+02
+6 2955     1.934700e+02 2.101001e+01
+8 2955     3.275100e+02 -3.512000e+01
+10 2955     1.333800e+02 9.844000e+01
+15 2955     2.318300e+02 8.989001e+01
+0 2956     5.641300e+02 1.416400e+02
+1 2956     8.366500e+02 -9.780029e+00
+2 2956     4.625100e+02 1.030700e+02
+6 2956     3.730200e+02 2.807200e+02
+9 2956     2.574100e+02 1.849600e+02
+15 2956     7.406400e+02 4.109700e+02
+0 2957     6.008900e+02 8.842001e+01
+1 2957     8.583600e+02 -7.777002e+01
+2 2957     5.183199e+02 6.760999e+01
+6 2957     4.329800e+02 2.343600e+02
+9 2957     3.056700e+02 1.564300e+02
+15 2957     7.984200e+02 3.417900e+02
+0 2958     6.480400e+02 -4.539978e+00
+1 2958     8.786000e+02 -1.910200e+02
+3 2958     4.624900e+02 -3.091600e+02
+6 2958     5.149700e+02 1.493300e+02
+10 2958     6.593800e+02 2.043200e+02
+12 2958     5.956400e+02 1.590100e+02
+15 2958     8.753199e+02 2.192700e+02
+0 2959     3.420001e+01 -6.138000e+01
+1 2959     1.745800e+02 -4.077002e+01
+7 2959     -3.963000e+01 5.847998e+01
+13 2959     4.110200e+02 -2.712000e+02
+15 2959     1.931000e+01 5.865997e+01
+0 2960     6.550000e+01 -1.187700e+02
+1 2960     1.877300e+02 -1.064200e+02
+3 2960     1.720100e+02 -3.865300e+02
+7 2960     7.600098e-01 6.400024e+00
+15 2960     6.931000e+01 -1.506000e+01
+0 2961     -6.701001e+01 -1.431000e+02
+1 2961     5.557001e+01 -8.992999e+01
+6 2961     -6.052002e+01 -1.716400e+02
+7 2961     -1.285100e+02 -4.273999e+01
+12 2961     -5.856000e+01 -1.177600e+02
+15 2961     -1.059400e+02 -6.569000e+01
+0 2962     1.149400e+02 -1.358900e+02
+1 2962     2.297200e+02 -1.381500e+02
+3 2962     2.295000e+02 -3.848100e+02
+7 2962     5.376001e+01 -1.510010e+00
+15 2962     1.387400e+02 -3.148999e+01
+0 2963     5.702800e+02 1.133400e+02
+1 2963     8.338700e+02 -4.173999e+01
+0 2964     2.407000e+02 -8.515002e+01
+1 2964     3.732400e+02 -1.286800e+02
+2 2964     4.087800e+02 -1.459003e+01
+3 2964     3.047300e+02 -3.170600e+02
+6 2964     2.468900e+02 -2.309998e+00
+7 2964     1.652700e+02 6.819000e+01
+10 2964     1.942500e+02 6.779999e+01
+12 2964     2.741700e+02 3.879999e+01
+13 2964     5.903101e+02 -2.769200e+02
+15 2964     3.044600e+02 5.390002e+01
+0 2965     -1.355100e+02 -1.239100e+02
+1 2965     -1.820007e+00 -5.170001e+01
+3 2965     -3.803003e+01 -4.616300e+02
+6 2965     -1.514300e+02 -1.772100e+02
+7 2965     -2.021000e+02 -3.695001e+01
+12 2965     -1.503600e+02 -1.186700e+02
+15 2965     -1.996900e+02 -5.006000e+01
+0 2966     5.416000e+02 2.120700e+02
+1 2966     8.350100e+02 7.142999e+01
+6 2966     3.268700e+02 3.518900e+02
+7 2966     3.648300e+02 3.739200e+02
+9 2966     2.193000e+02 2.348800e+02
+10 2966     5.181300e+02 4.477600e+02
+13 2966     7.378199e+02 -1.940997e+01
+15 2966     7.010300e+02 5.067300e+02
+0 2967     2.244900e+02 -6.821997e+01
+1 2967     3.604200e+02 -1.066000e+02
+2 2967     3.935500e+02 4.260010e+00
+6 2967     2.293800e+02 1.342999e+01
+7 2967     1.480601e+02 8.248999e+01
+13 2967     5.765200e+02 -2.627200e+02
+0 2968     3.890997e+01 6.983002e+01
+1 2968     2.204800e+02 8.556000e+01
+2 2968     1.549900e+02 9.815002e+01
+3 2968     6.517999e+01 -2.160600e+02
+4 2968     -2.295300e+02 -4.430500e+02
+5 2968     6.732900e+02 -5.895100e+02
+6 2968     -2.259998e+01 1.075700e+02
+7 2968     -5.884998e+01 1.886300e+02
+8 2968     1.593800e+02 3.507999e+01
+9 2968     1.947998e+01 1.730200e+02
+10 2968     -5.594000e+01 2.263600e+02
+12 2968     -2.599976e+00 1.619600e+02
+15 2968     8.989990e+00 2.377700e+02
+0 2969     5.731300e+02 2.003000e+02
+1 2969     8.644800e+02 5.015997e+01
+9 2969     2.513400e+02 2.381800e+02
+0 2970     1.940100e+02 -2.269100e+02
+1 2970     2.766600e+02 -2.520700e+02
+2 2970     4.423300e+02 -1.475100e+02
+10 2970     1.541500e+02 -1.004900e+02
+13 2970     5.781300e+02 -4.036800e+02
+0 2971     -4.504200e+02 3.205800e+02
+1 2971     -1.134700e+02 4.435400e+02
+10 2971     -6.693300e+02 4.793700e+02
+15 2971     -6.842500e+02 5.156100e+02
+0 2972     -5.952800e+02 3.672500e+02
+1 2972     -2.406800e+02 5.216800e+02
+0 2973     -5.876500e+02 3.641500e+02
+1 2973     -2.336900e+02 5.169400e+02
+0 2974     -4.718200e+02 3.210500e+02
+1 2974     -1.333100e+02 4.491300e+02
+7 2974     -6.825900e+02 3.248000e+02
+10 2974     -6.952100e+02 4.777200e+02
+11 2974     -2.750300e+02 -4.224600e+02
+15 2974     -7.144300e+02 5.131900e+02
+0 2975     -1.911500e+02 3.957001e+01
+1 2975     9.780029e+00 1.170500e+02
+4 2975     -2.273500e+02 -2.601100e+02
+7 2975     -3.024400e+02 1.085800e+02
+10 2975     -3.204300e+02 1.675200e+02
+15 2975     -2.944500e+02 1.647900e+02
+0 2976     2.151700e+02 3.261200e+02
+1 2976     5.499800e+02 2.762500e+02
+6 2976     -1.723300e+02 3.575100e+02
+7 2976     9.609985e+00 4.206500e+02
+11 2976     3.537400e+02 -4.133200e+02
+12 2976     -2.531000e+01 3.548200e+02
+13 2976     3.849600e+02 3.609003e+01
+14 2976     5.564600e+02 -4.108800e+02
+0 2977     2.091200e+02 3.185900e+02
+1 2977     5.407500e+02 2.705700e+02
+6 2977     -1.731300e+02 3.468000e+02
+7 2977     5.960022e+00 4.128100e+02
+10 2977     1.185400e+02 5.396300e+02
+12 2977     -2.787000e+01 3.460300e+02
+0 2978     2.896000e+02 1.908900e+02
+1 2978     5.743500e+02 1.202300e+02
+10 2978     2.244600e+02 3.956100e+02
+15 2978     3.541100e+02 4.375400e+02
+0 2979     2.508600e+02 5.622998e+01
+1 2979     4.294200e+02 9.530029e+00
+7 2979     1.498400e+02 2.070600e+02
+10 2979     1.917800e+02 2.324300e+02
+15 2979     3.012100e+02 2.487700e+02
+0 2980     2.508600e+02 5.622998e+01
+1 2980     4.294200e+02 9.530029e+00
+10 2980     1.917800e+02 2.324300e+02
+15 2980     3.012100e+02 2.487700e+02
+0 2981     2.820200e+02 4.060999e+01
+1 2981     4.577600e+02 -1.565002e+01
+7 2981     1.809700e+02 1.957700e+02
+10 2981     2.291899e+02 2.174800e+02
+15 2981     3.461899e+02 2.316900e+02
+0 2982     2.588199e+02 1.159003e+01
+1 2982     4.223500e+02 -3.745001e+01
+6 2982     2.298800e+02 1.072800e+02
+7 2982     1.657600e+02 1.654000e+02
+10 2982     2.050000e+02 1.808500e+02
+13 2982     5.910699e+02 -1.925200e+02
+15 2982     3.172900e+02 1.883100e+02
+0 2983     2.402000e+02 -7.190002e+00
+1 2983     3.961300e+02 -5.040002e+01
+10 2983     1.852200e+02 1.575500e+02
+12 2983     2.510300e+02 1.280400e+02
+15 2983     2.936600e+02 1.601200e+02
+0 2984     3.069800e+02 -2.520001e+01
+1 2984     4.638500e+02 -9.040002e+01
+6 2984     2.808700e+02 7.657001e+01
+7 2984     2.151300e+02 1.347400e+02
+10 2984     2.642600e+02 1.441100e+02
+15 2984     3.892800e+02 1.446400e+02
+0 2985     2.212400e+02 -4.875000e+01
+1 2985     3.631899e+02 -8.550000e+01
+6 2985     2.194300e+02 3.491998e+01
+7 2985     1.418000e+02 1.022100e+02
+8 2985     3.467600e+02 -2.807999e+01
+10 2985     1.677700e+02 1.076400e+02
+13 2985     5.712600e+02 -2.457300e+02
+15 2985     2.725800e+02 1.008400e+02
+0 2986     2.123101e+02 -8.308002e+01
+1 2986     3.438000e+02 -1.168600e+02
+6 2986     2.215400e+02 -5.909973e+00
+7 2986     1.388300e+02 6.673999e+01
+13 2986     5.679800e+02 -2.766700e+02
+15 2986     2.650400e+02 5.281000e+01
+0 2987     4.086000e+02 -3.022998e+01
+1 2987     5.812100e+02 -1.311000e+02
+6 2987     3.489700e+02 8.329999e+01
+7 2987     3.019100e+02 1.381300e+02
+10 2987     3.824000e+02 1.490100e+02
+13 2987     7.005500e+02 -2.260500e+02
+15 2987     5.342900e+02 1.514900e+02
+0 2988     -5.812000e+01 -1.624500e+02
+1 2988     5.664001e+01 -1.109900e+02
+4 2988     -3.795000e+02 -3.641100e+02
+10 2988     -1.430400e+02 -5.310999e+01
+12 2988     -3.898999e+01 -1.345600e+02
+13 2988     3.410300e+02 -3.683800e+02
+15 2988     -9.157001e+01 -9.081000e+01
+0 2989     3.074600e+02 -1.164300e+02
+1 2989     4.327300e+02 -1.817600e+02
+7 2989     2.332400e+02 4.751001e+01
+10 2989     2.738600e+02 3.850000e+01
+13 2989     6.501000e+02 -3.002900e+02
+15 2989     4.007800e+02 2.009998e+01
+0 2990     3.567800e+02 -1.420600e+02
+1 2990     4.782100e+02 -2.243500e+02
+6 2990     3.705100e+02 -3.490997e+01
+7 2990     2.819900e+02 2.914001e+01
+10 2990     3.330500e+02 1.460999e+01
+12 2990     4.081100e+02 -2.020020e+00
+15 2990     4.732700e+02 -8.400024e+00
+0 2991     -1.866000e+02 -5.198600e+02
+1 2991     -1.629900e+02 -4.088300e+02
+4 2991     -6.455600e+02 -2.370700e+02
+6 2991     -6.478998e+01 -6.851100e+02
+7 2991     -1.835100e+02 -4.499500e+02
+0 2992     -1.995200e+02 -5.390200e+02
+1 2992     -1.815800e+02 -4.216600e+02
+4 2992     -6.590800e+02 -2.266900e+02
+6 2992     -6.690997e+01 -7.115800e+02
+7 2992     -1.923400e+02 -4.711500e+02
+9 2992     4.045001e+01 -4.759900e+02
+0 2993     4.689100e+02 2.736200e+02
+1 2993     7.924900e+02 1.538500e+02
+10 2993     4.275100e+02 5.130700e+02
+0 2994     5.106700e+02 -1.979300e+02
+1 2994     6.521400e+02 -3.408400e+02
+7 2994     4.096400e+02 -1.703998e+01
+13 2994     7.912600e+02 -3.801700e+02
+0 2995     1.421000e+02 7.444000e+01
+1 2995     3.220601e+02 6.073999e+01
+15 2995     1.483300e+02 2.585300e+02
+0 2996     3.855900e+02 -9.565997e+01
+1 2996     5.285500e+02 -1.883900e+02
+10 2996     3.616200e+02 7.057001e+01
+15 2996     5.087500e+02 5.857001e+01
+0 2997     4.174800e+02 -1.062300e+02
+1 2997     5.575699e+02 -2.098300e+02
+15 2997     5.550800e+02 4.763000e+01
+0 2998     2.178900e+02 4.765997e+01
+1 2998     3.908400e+02 1.140002e+01
+7 2998     1.215700e+02 1.950100e+02
+15 2998     2.564100e+02 2.318400e+02
+0 2999     2.210100e+02 3.546997e+01
+1 2999     3.897900e+02 -1.330017e+00
+7 2999     1.265400e+02 1.841900e+02
+0 3000     2.104200e+02 1.877002e+01
+1 3000     3.733101e+02 -1.513000e+01
+10 3000     1.481300e+02 1.846700e+02
+12 3000     2.107800e+02 1.512200e+02
+15 3000     2.487900e+02 1.915400e+02
+0 3001     1.949100e+02 8.423999e+01
+1 3001     3.796100e+02 5.454999e+01
+7 3001     9.177002e+01 2.272400e+02
+13 3001     5.266801e+02 -1.341600e+02
+15 3001     2.200200e+02 2.792100e+02
+0 3002     3.091500e+02 4.294000e+01
+1 3002     4.897100e+02 -2.259003e+01
+7 3002     2.044200e+02 2.011300e+02
+10 3002     2.607100e+02 2.239800e+02
+13 3002     6.209000e+02 -1.633300e+02
+15 3002     3.845800e+02 2.387600e+02
+0 3003     1.275400e+02 -8.269000e+01
+1 3003     2.579100e+02 -9.001001e+01
+0 3004     9.858002e+01 7.494000e+01
+1 3004     2.788900e+02 7.384998e+01
+15 3004     8.909998e+01 2.530600e+02
+0 3005     2.357500e+02 -2.156000e+01
+1 3005     3.866500e+02 -6.317999e+01
+2 3005     3.839600e+02 5.090997e+01
+3 3005     2.775400e+02 -2.561400e+02
+6 3005     2.235500e+02 6.777002e+01
+7 3005     1.507900e+02 1.305700e+02
+10 3005     1.817600e+02 1.405400e+02
+13 3005     5.791200e+02 -2.216000e+02
+0 3006     2.181801e+02 1.522998e+01
+1 3006     3.797500e+02 -2.084998e+01
+2 3006     3.557300e+02 8.465997e+01
+7 3006     1.280100e+02 1.641200e+02
+0 3007     2.778300e+02 1.335999e+01
+1 3007     4.438800e+02 -4.196002e+01
+7 3007     1.824900e+02 1.692700e+02
+10 3007     2.271801e+02 1.853100e+02
+13 3007     6.045800e+02 -1.901400e+02
+15 3007     3.438000e+02 1.935200e+02
+0 3008     1.577700e+02 -1.971002e+01
+1 3008     3.067000e+02 -3.666998e+01
+2 3008     3.203900e+02 4.740997e+01
+10 3008     9.151001e+01 1.344600e+02
+15 3008     1.816600e+02 1.319000e+02
+0 3009     1.303100e+02 -6.083002e+01
+1 3009     2.666801e+02 -6.953998e+01
+2 3009     3.099200e+02 -7.700195e-01
+3 3009     2.139600e+02 -3.064200e+02
+6 3009     1.358200e+02 -4.869995e+00
+10 3009     6.396997e+01 8.340997e+01
+12 3009     1.517300e+02 4.372998e+01
+13 3009     4.979000e+02 -2.627800e+02
+0 3010     5.841998e+01 -1.117700e+02
+1 3010     1.833000e+02 -9.732001e+01
+2 3010     2.492400e+02 -7.916998e+01
+3 3010     1.603400e+02 -3.832300e+02
+7 3010     -7.450012e+00 1.191998e+01
+9 3010     1.034100e+02 2.917999e+01
+10 3010     -1.383002e+01 1.744000e+01
+13 3010     4.373400e+02 -3.143400e+02
+15 3010     5.912000e+01 -6.559998e+00
+0 3011     -1.337300e+02 2.434000e+02
+1 3011     1.674700e+02 2.894900e+02
+7 3011     -3.172000e+02 2.932800e+02
+11 3011     2.676001e+01 -4.996500e+02
+0 3012     6.622998e+01 -5.091998e+01
+1 3012     2.075200e+02 -3.985999e+01
+2 3012     2.405900e+02 -6.950012e+00
+3 3012     1.486000e+02 -3.139400e+02
+7 3012     -9.489990e+00 7.447998e+01
+9 3012     9.340997e+01 8.870999e+01
+10 3012     -1.284003e+01 8.831000e+01
+13 3012     4.395800e+02 -2.594400e+02
+15 3012     6.021997e+01 7.658002e+01
+0 3013     -4.831500e+02 1.408200e+02
+1 3013     -1.963000e+02 2.830400e+02
+0 3014     -3.471997e+01 -1.765100e+02
+1 3014     7.296002e+01 -1.313100e+02
+7 3014     -8.791998e+01 -6.809003e+01
+10 3014     -1.148100e+02 -6.684003e+01
+12 3014     -2.349976e+00 -1.428200e+02
+15 3014     -5.810999e+01 -1.064000e+02
+0 3015     -8.650024e+00 -1.853400e+02
+1 3015     9.452002e+01 -1.474000e+02
+15 3015     -2.294000e+01 -1.155300e+02
+0 3016     -1.663400e+02 -5.400000e+01
+1 3016     -4.200012e+00 2.271997e+01
+0 3017     -3.299600e+02 5.990997e+01
+1 3017     -8.462000e+01 1.682800e+02
+4 3017     -2.080200e+02 -1.453300e+02
+8 3017     -3.272700e+02 -1.840700e+02
+10 3017     -4.867400e+02 1.779600e+02
+0 3018     -7.786700e+02 -5.699399e+02
+1 3018     -6.785000e+02 -2.657700e+02
+0 3019     -2.828700e+02 2.522998e+01
+1 3019     -5.371997e+01 1.234900e+02
+4 3019     -2.336400e+02 -1.738100e+02
+0 3020     -4.614700e+02 1.414300e+02
+1 3020     -1.762900e+02 2.780700e+02
+13 3020     -1.650800e+02 -1.616500e+02
+0 3021     -3.299500e+02 6.496002e+01
+1 3021     -8.287000e+01 1.728100e+02
+0 3022     -7.246100e+02 -4.551000e+02
+1 3022     -6.015400e+02 -1.841100e+02
+4 3022     -4.815200e+02 1.251500e+02
+7 3022     -7.740100e+02 -5.072500e+02
+0 3023     2.781000e+02 4.715997e+01
+1 3023     4.559700e+02 -8.320007e+00
+7 3023     1.763700e+02 2.016900e+02
+10 3023     2.241300e+02 2.238700e+02
+13 3023     5.984800e+02 -1.614100e+02
+15 3023     3.402700e+02 2.395100e+02
+0 3024     8.553003e+01 5.119900e+02
+1 3024     4.702500e+02 5.003200e+02
+2 3024     -2.136600e+02 2.745300e+02
+5 3024     4.889399e+02 -1.345700e+02
+11 3024     2.232500e+02 -2.502300e+02
+12 3024     -2.152100e+02 5.352100e+02
+14 3024     3.957300e+02 -2.202800e+02
+0 3025     2.110800e+02 -4.546002e+01
+1 3025     3.536300e+02 -7.933002e+01
+6 3025     2.093700e+02 3.471002e+01
+7 3025     1.319000e+02 1.035500e+02
+8 3025     3.392300e+02 -2.712000e+01
+13 3025     5.629600e+02 -2.433900e+02
+15 3025     2.581100e+02 1.039800e+02
+0 3026     -5.227700e+02 2.777700e+02
+1 3026     -1.923900e+02 4.201800e+02
+10 3026     -7.518400e+02 4.209100e+02
+13 3026     -2.323000e+02 -4.607001e+01
+0 3027     8.795001e+01 5.142300e+02
+1 3027     4.734900e+02 5.020300e+02
+6 3027     -3.837600e+02 5.575700e+02
+14 3027     3.982400e+02 -2.179300e+02
+0 3028     3.351700e+02 -1.692600e+02
+1 3028     4.442700e+02 -2.439500e+02
+6 3028     3.667000e+02 -6.627002e+01
+7 3028     2.684600e+02 7.100220e-01
+10 3028     3.105699e+02 -1.921997e+01
+12 3028     3.997700e+02 -3.321002e+01
+15 3028     4.460000e+02 -4.844000e+01
+0 3029     9.941998e+01 -2.221300e+02
+1 3029     1.844500e+02 -2.163700e+02
+2 3029     3.511000e+02 -1.646000e+02
+3 3029     2.657000e+02 -4.615500e+02
+4 3029     -4.536500e+02 -4.937800e+02
+6 3029     1.693700e+02 -1.900900e+02
+7 3029     5.623999e+01 -8.712000e+01
+8 3029     3.112900e+02 -1.884600e+02
+10 3029     4.475000e+01 -1.048800e+02
+15 3029     1.282600e+02 -1.502100e+02
+0 3030     -2.331000e+02 4.626700e+02
+1 3030     1.298500e+02 5.293500e+02
+2 3030     -5.142200e+02 2.165100e+02
+5 3030     1.739800e+02 -1.895000e+02
+7 3030     -4.538600e+02 5.049100e+02
+11 3030     -5.906000e+01 -2.999100e+02
+12 3030     -5.566400e+02 4.312800e+02
+0 3031     -1.130600e+02 2.213600e+02
+1 3031     1.793800e+02 2.629300e+02
+0 3032     1.275400e+02 -8.269000e+01
+1 3032     2.579100e+02 -9.001001e+01
+6 3032     1.389300e+02 -3.046002e+01
+7 3032     5.750000e+01 5.382001e+01
+8 3032     2.853000e+02 -6.989001e+01
+0 3033     -7.657001e+01 -5.293400e+02
+1 3033     -6.578003e+01 -4.544200e+02
+6 3033     6.666998e+01 -6.426700e+02
+7 3033     -7.014001e+01 -4.352500e+02
+9 3033     1.437100e+02 -4.198400e+02
+0 3034     6.350000e+01 5.455100e+02
+1 3034     4.560400e+02 5.404900e+02
+2 3034     -2.357600e+02 3.126700e+02
+5 3034     4.689200e+02 -1.009000e+02
+0 3035     -6.870001e+01 -1.079900e+02
+1 3035     6.592999e+01 -5.627002e+01
+8 3035     1.101700e+02 -1.446100e+02
+12 3035     -7.571002e+01 -7.952002e+01
+0 3036     7.646002e+01 3.953998e+01
+1 3036     2.454800e+02 4.590002e+01
+6 3036     3.971002e+01 8.829999e+01
+15 3036     6.340002e+01 2.017500e+02
+0 3037     5.693101e+02 -1.829999e+01
+1 3037     7.916300e+02 -1.794100e+02
+12 3037     5.056300e+02 1.122300e+02
+13 3037     7.919301e+02 -2.207500e+02
+15 3037     7.662200e+02 1.891100e+02
+0 3038     -2.545100e+02 -4.579301e+02
+1 3038     -2.017600e+02 -3.300700e+02
+6 3038     -1.876100e+02 -6.525000e+02
+7 3038     -2.688100e+02 -4.043400e+02
+0 3039     -8.570001e+01 -5.800200e+02
+1 3039     -9.340997e+01 -4.975400e+02
+0 3040     2.525699e+02 4.495600e+02
+1 3040     6.349800e+02 3.920100e+02
+2 3040     -5.963000e+01 2.064500e+02
+5 3040     6.561700e+02 -1.979000e+02
+6 3040     -1.948900e+02 5.088700e+02
+7 3040     2.171002e+01 5.426100e+02
+11 3040     3.810200e+02 -2.980700e+02
+12 3040     -2.953003e+01 4.849100e+02
+14 3040     5.623101e+02 -2.782000e+02
+0 3041     2.394301e+02 4.442400e+02
+1 3041     6.192300e+02 3.898400e+02
+2 3041     -7.042999e+01 2.005300e+02
+3 3041     -2.117000e+02 -1.315100e+02
+5 3041     6.425400e+02 -2.039200e+02
+6 3041     -2.079500e+02 4.996500e+02
+7 3041     9.789978e+00 5.358800e+02
+8 3041     2.191998e+01 1.543200e+02
+11 3041     3.699399e+02 -3.035200e+02
+12 3041     -4.227002e+01 4.772600e+02
+14 3041     5.493600e+02 -2.842200e+02
+0 3042     -8.071997e+01 4.871600e+02
+1 3042     2.901899e+02 5.167300e+02
+7 3042     -3.044400e+02 5.469500e+02
+0 3043     -1.107600e+02 4.829200e+02
+1 3043     2.581899e+02 5.196900e+02
+7 3043     -3.335800e+02 5.385000e+02
+11 3043     4.882001e+01 -2.812700e+02
+12 3043     -4.220500e+02 4.721500e+02
+14 3043     2.067200e+02 -2.568600e+02
+0 3044     4.668900e+02 2.929900e+02
+1 3044     7.964900e+02 1.744600e+02
+6 3044     1.703200e+02 4.018800e+02
+7 3044     2.678199e+02 4.306700e+02
+10 3044     4.235601e+02 5.354000e+02
+0 3045     2.081300e+02 -4.190002e+00
+1 3045     3.626400e+02 -3.687000e+01
+7 3045     1.220400e+02 1.439600e+02
+10 3045     1.475500e+02 1.579100e+02
+13 3045     5.554900e+02 -2.080400e+02
+15 3045     2.486899e+02 1.598700e+02
+0 3046     7.687000e+01 -6.290002e+01
+1 3046     2.144600e+02 -5.498999e+01
+7 3046     4.340027e+00 6.501001e+01
+8 3046     2.380700e+02 -6.171002e+01
+0 3047     -1.008800e+02 -5.631899e+02
+1 3047     -1.007600e+02 -4.768800e+02
+6 3047     6.215002e+01 -6.885601e+02
+7 3047     -8.598999e+01 -4.728000e+02
+0 3048     9.122998e+01 5.005800e+02
+1 3048     4.733300e+02 4.869200e+02
+2 3048     -2.080100e+02 2.614600e+02
+7 3048     -1.385000e+02 5.778100e+02
+14 3048     4.013300e+02 -2.317900e+02
+0 3049     -2.369000e+01 4.888900e+02
+1 3049     3.499399e+02 5.040600e+02
+6 3049     -5.031000e+02 5.022500e+02
+7 3049     -2.481000e+02 5.544900e+02
+11 3049     1.265100e+02 -2.740000e+02
+14 3049     2.910300e+02 -2.477300e+02
+0 3050     -2.369000e+01 4.888900e+02
+1 3050     3.499399e+02 5.040600e+02
+2 3050     -3.123900e+02 2.471000e+02
+6 3050     -5.031000e+02 5.022500e+02
+7 3050     -2.481000e+02 5.544900e+02
+11 3050     1.265100e+02 -2.740000e+02
+14 3050     2.910300e+02 -2.477300e+02
+0 3051     2.103400e+02 4.235000e+02
+1 3051     5.810699e+02 3.761800e+02
+7 3051     -1.525000e+01 5.117800e+02
+11 3051     3.446500e+02 -3.230900e+02
+13 3051     3.580699e+02 1.167700e+02
+14 3051     5.211300e+02 -3.081600e+02
+0 3052     3.643600e+02 3.380600e+02
+1 3052     7.149200e+02 2.473100e+02
+6 3052     -1.021997e+01 4.098300e+02
+7 3052     1.504200e+02 4.514200e+02
+10 3052     2.992400e+02 5.795400e+02
+0 3053     4.138600e+02 -1.053000e+02
+1 3053     5.544399e+02 -2.076000e+02
+6 3053     4.015100e+02 1.494000e+01
+7 3053     3.250100e+02 7.102002e+01
+10 3053     3.953300e+02 6.250000e+01
+15 3053     5.491000e+02 4.900000e+01
+0 3054     7.700195e-01 -1.054100e+02
+1 3054     1.301600e+02 -7.312000e+01
+6 3054     4.469971e+00 -1.024900e+02
+7 3054     -6.627002e+01 8.250000e+00
+0 3055     9.363000e+01 2.669200e+02
+1 3055     4.018000e+02 2.511000e+02
+6 3055     -2.751800e+02 2.576400e+02
+7 3055     -9.428003e+01 3.487900e+02
+9 3055     -2.425100e+02 1.071000e+02
+11 3055     2.398400e+02 -4.738000e+02
+12 3055     -1.339500e+02 2.711700e+02
+13 3055     2.943199e+02 -2.100000e+01
+14 3055     4.430400e+02 -4.803199e+02
+0 3056     6.022998e+01 2.300100e+02
+1 3056     3.540800e+02 2.242100e+02
+5 3056     5.061500e+02 -4.405601e+02
+6 3056     -2.883400e+02 2.072200e+02
+7 3056     -1.188200e+02 3.094900e+02
+10 3056     -4.656000e+01 4.186400e+02
+13 3056     2.767000e+02 -5.422998e+01
+14 3056     4.209000e+02 -5.225800e+02
+0 3057     -4.515002e+01 -5.760010e+00
+1 3057     1.203000e+02 3.522998e+01
+6 3057     -9.864001e+01 -1.058002e+01
+7 3057     -1.330800e+02 9.692001e+01
+8 3057     9.871002e+01 -5.329999e+01
+10 3057     -1.450300e+02 1.296600e+02
+12 3057     -8.273999e+01 4.542999e+01
+0 3058     -6.569000e+01 -6.632001e+01
+1 3058     8.207001e+01 -1.683002e+01
+4 3058     -3.102300e+02 -3.579800e+02
+7 3058     -1.426600e+02 3.306000e+01
+10 3058     -1.624500e+02 5.715997e+01
+13 3058     3.170500e+02 -2.871500e+02
+15 3058     -1.136800e+02 3.796997e+01
+0 3059     -7.174000e+02 -3.620500e+02
+1 3059     -5.662000e+02 -1.057200e+02
+7 3059     -7.890600e+02 -4.098200e+02
+0 3060     1.162500e+02 4.582400e+02
+1 3060     4.889600e+02 4.368900e+02
+2 3060     -1.810200e+02 2.134800e+02
+3 3060     -3.171300e+02 -1.185900e+02
+5 3060     5.184500e+02 -1.918100e+02
+6 3060     -3.428600e+02 4.913200e+02
+7 3060     -1.091800e+02 5.373500e+02
+8 3060     -6.956000e+01 1.631600e+02
+12 3060     -1.732000e+02 4.759200e+02
+14 3060     4.270900e+02 -2.751900e+02
+0 3061     -7.790002e+01 4.967800e+02
+1 3061     2.954700e+02 5.253800e+02
+5 3061     3.282100e+02 -1.537600e+02
+11 3061     7.783002e+01 -2.685200e+02
+13 3061     1.287100e+02 1.630300e+02
+0 3062     -2.526000e+02 4.166700e+02
+1 3062     9.942999e+01 4.885800e+02
+2 3062     -5.320000e+02 1.595700e+02
+7 3062     -4.672500e+02 4.541000e+02
+13 3062     -9.809998e+00 8.648999e+01
+0 3063     6.368300e+02 -2.430500e+02
+1 3063     7.736801e+02 -4.335400e+02
+7 3063     5.343500e+02 -3.784998e+01
+12 3063     6.765601e+02 -8.473999e+01
+0 3064     6.244000e+02 -2.354700e+02
+1 3064     7.632500e+02 -4.208100e+02
+12 3064     6.608000e+02 -8.053003e+01
+0 3065     -2.347100e+02 4.652800e+02
+1 3065     1.285200e+02 5.321300e+02
+2 3065     -5.155800e+02 2.193100e+02
+7 3065     -4.557400e+02 5.073600e+02
+0 3066     -3.421900e+02 8.409000e+01
+1 3066     -8.733002e+01 1.940600e+02
+8 3066     -3.502400e+02 -1.687900e+02
+10 3066     -5.040200e+02 2.049800e+02
+13 3066     -4.228003e+01 -2.028000e+02
+0 3067     2.328300e+02 -5.090027e+00
+1 3067     3.888500e+02 -4.570001e+01
+7 3067     1.453500e+02 1.460000e+02
+10 3067     1.766100e+02 1.589900e+02
+15 3067     2.830699e+02 1.620900e+02
+0 3068     -4.213100e+02 9.700012e+00
+1 3068     -1.859000e+02 1.462100e+02
+13 3068     -9.632001e+01 -2.711400e+02
+15 3068     -5.972900e+02 9.072000e+01
+0 3069     2.097200e+02 3.879700e+02
+1 3069     5.688800e+02 3.399800e+02
+0 3070     4.538500e+02 2.998300e+02
+1 3070     7.854399e+02 1.854600e+02
+7 3070     2.536400e+02 4.352100e+02
+10 3070     4.077100e+02 5.427600e+02
+0 3071     1.028900e+02 9.723001e+01
+1 3071     2.925800e+02 9.416000e+01
+4 3071     -2.160500e+02 -4.943900e+02
+7 3071     -1.099976e+00 2.250800e+02
+8 3071     2.056700e+02 7.072000e+01
+15 3071     9.240997e+01 2.838300e+02
+0 3072     -3.309998e+00 1.091200e+02
+1 3072     1.956500e+02 1.353200e+02
+6 3072     -9.845999e+01 1.322700e+02
+7 3072     -1.123000e+02 2.181400e+02
+10 3072     -1.089500e+02 2.678900e+02
+12 3072     -7.150000e+01 1.866700e+02
+15 3072     -5.273999e+01 2.855800e+02
+0 3073     1.224900e+02 7.101001e+01
+1 3073     3.012200e+02 6.315997e+01
+6 3073     7.469000e+01 1.360000e+02
+7 3073     2.503003e+01 2.042300e+02
+8 3073     2.346700e+02 5.364999e+01
+10 3073     4.128003e+01 2.361100e+02
+15 3073     1.220300e+02 2.509300e+02
+0 3074     1.224900e+02 7.101001e+01
+1 3074     3.012200e+02 6.315997e+01
+6 3074     7.469000e+01 1.360000e+02
+7 3074     2.503003e+01 2.042300e+02
+8 3074     2.346700e+02 5.364999e+01
+10 3074     4.128003e+01 2.361100e+02
+15 3074     1.220300e+02 2.509300e+02
+0 3075     1.556600e+02 6.170001e+01
+1 3075     3.313500e+02 4.414001e+01
+2 3075     2.810500e+02 1.199300e+02
+6 3075     1.133200e+02 1.362700e+02
+7 3075     5.978003e+01 2.003300e+02
+8 3075     2.639700e+02 5.160999e+01
+10 3075     8.089001e+01 2.290600e+02
+15 3075     1.685900e+02 2.429500e+02
+0 3076     2.940800e+02 -9.000244e-01
+1 3076     4.570800e+02 -6.157001e+01
+7 3076     1.997200e+02 1.572600e+02
+10 3076     2.472200e+02 1.703800e+02
+15 3076     3.683101e+02 1.761800e+02
+0 3077     5.625200e+02 -9.530029e+00
+1 3077     7.874399e+02 -1.682200e+02
+6 3077     4.106900e+02 1.077700e+02
+7 3077     4.150300e+02 1.623000e+02
+10 3077     5.598700e+02 1.895900e+02
+12 3077     4.957800e+02 1.191600e+02
+15 3077     7.560500e+02 1.999300e+02
+0 3078     2.027700e+02 7.190002e+00
+1 3078     3.611801e+02 -2.409003e+01
+6 3078     1.820800e+02 9.091998e+01
+10 3078     1.400400e+02 1.707600e+02
+0 3079     5.693101e+02 -1.829999e+01
+1 3079     7.916300e+02 -1.794100e+02
+10 3079     5.686700e+02 1.803300e+02
+13 3079     7.919301e+02 -2.207500e+02
+15 3079     7.662200e+02 1.891100e+02
+0 3080     1.225200e+02 6.969971e+00
+1 3080     2.797500e+02 2.001953e-02
+2 3080     2.769301e+02 6.638000e+01
+7 3080     3.777002e+01 1.419700e+02
+10 3080     4.790997e+01 1.616400e+02
+15 3080     1.300100e+02 1.634700e+02
+0 3081     3.109900e+02 -2.745001e+01
+1 3081     4.677100e+02 -9.391998e+01
+6 3081     2.844900e+02 7.467999e+01
+7 3081     2.191899e+02 1.326500e+02
+10 3081     2.690000e+02 1.415300e+02
+15 3081     3.952300e+02 1.419900e+02
+0 3082     5.459301e+02 -2.940002e+01
+1 3082     7.616500e+02 -1.829300e+02
+15 3082     7.352500e+02 1.703700e+02
+0 3083     3.485100e+02 -5.958002e+01
+1 3083     4.994399e+02 -1.394600e+02
+10 3083     3.157600e+02 1.085100e+02
+0 3084     1.720601e+02 -4.067999e+01
+1 3084     3.144800e+02 -6.208002e+01
+2 3084     3.404900e+02 2.791998e+01
+6 3084     1.714600e+02 3.029999e+01
+7 3084     9.422998e+01 1.027100e+02
+10 3084     1.098000e+02 1.114500e+02
+0 3085     4.124800e+02 -1.009600e+02
+1 3085     5.546500e+02 -2.025300e+02
+6 3085     3.963600e+02 1.935999e+01
+7 3085     3.228700e+02 7.496997e+01
+10 3085     3.937400e+02 6.796997e+01
+12 3085     4.430500e+02 4.989001e+01
+0 3086     3.586000e+02 -1.093200e+02
+1 3086     4.940000e+02 -1.927900e+02
+0 3087     -1.133500e+02 6.250000e+00
+1 3087     6.517999e+01 6.519000e+01
+7 3087     -2.098300e+02 9.331000e+01
+10 3087     -2.257300e+02 1.367500e+02
+12 3087     -1.814000e+02 2.723999e+01
+15 3087     -1.862400e+02 1.297000e+02
+0 3088     1.994399e+02 -1.042900e+02
+1 3088     3.245400e+02 -1.340500e+02
+6 3088     2.154700e+02 -3.516998e+01
+12 3088     2.378300e+02 7.260010e+00
+13 3088     5.589100e+02 -2.964500e+02
+15 3088     2.503900e+02 2.213000e+01
+0 3089     1.710200e+02 -1.001100e+02
+1 3089     2.967000e+02 -1.206200e+02
+6 3089     1.869900e+02 -3.778998e+01
+7 3089     1.021100e+02 4.309003e+01
+10 3089     1.147200e+02 4.297998e+01
+15 3089     2.104900e+02 2.437000e+01
+0 3090     -9.508002e+01 -2.278998e+01
+1 3090     7.113000e+01 3.273999e+01
+2 3090     2.097998e+01 -5.590002e+01
+6 3090     -1.623100e+02 -5.348999e+01
+7 3090     -1.837900e+02 6.915002e+01
+10 3090     -2.013800e+02 1.046600e+02
+15 3090     -1.583300e+02 9.317999e+01
+0 3091     -9.508002e+01 -2.278998e+01
+1 3091     7.113000e+01 3.273999e+01
+6 3091     -1.623100e+02 -5.348999e+01
+0 3092     1.186900e+02 -1.106400e+02
+1 3092     2.416200e+02 -1.147200e+02
+2 3092     3.121700e+02 -6.000000e+01
+10 3092     5.556000e+01 2.585999e+01
+15 3092     1.406400e+02 3.070007e+00
+0 3093     -3.944000e+01 -7.653998e+01
+1 3093     1.030500e+02 -3.433002e+01
+7 3093     -1.133700e+02 2.832001e+01
+15 3093     -7.688000e+01 2.795001e+01
+0 3094     3.903003e+01 -1.021100e+02
+1 3094     1.679500e+02 -8.219000e+01
+6 3094     4.415002e+01 -8.533002e+01
+7 3094     -2.851001e+01 1.783002e+01
+9 3094     8.301001e+01 3.128003e+01
+10 3094     -3.753003e+01 2.660999e+01
+15 3094     3.148999e+01 3.869995e+00
+0 3095     -1.372700e+02 -1.096600e+02
+1 3095     1.909973e+00 -3.756000e+01
+2 3095     2.253003e+01 -1.454000e+02
+6 3095     -1.646200e+02 -1.637400e+02
+10 3095     -2.410200e+02 -7.199707e-01
+12 3095     -1.611900e+02 -1.049700e+02
+13 3095     2.568199e+02 -3.314100e+02
+0 3096     -6.407001e+01 -1.359500e+02
+1 3096     6.119000e+01 -8.420001e+01
+15 3096     -1.024500e+02 -5.577002e+01
+0 3097     -7.417999e+01 -1.479800e+02
+1 3097     4.678998e+01 -9.223999e+01
+6 3097     -6.563000e+01 -1.789100e+02
+7 3097     -1.345100e+02 -4.847998e+01
+10 3097     -1.634200e+02 -3.817999e+01
+15 3097     -1.149800e+02 -7.328003e+01
+0 3098     -3.654999e+01 -1.926500e+02
+1 3098     6.464001e+01 -1.457800e+02
+6 3098     7.450012e+00 -2.090300e+02
+7 3098     -8.488000e+01 -8.378003e+01
+10 3098     -1.153700e+02 -8.602002e+01
+12 3098     2.659973e+00 -1.585600e+02
+15 3098     -5.912000e+01 -1.287100e+02
+0 3099     9.642999e+01 -2.406500e+02
+1 3099     1.742400e+02 -2.333400e+02
+7 3099     5.842999e+01 -1.053700e+02
+10 3099     4.328998e+01 -1.268000e+02
+15 3099     1.263600e+02 -1.757900e+02
+0 3100     6.074800e+02 1.189300e+02
+1 3100     8.747800e+02 -4.696997e+01
+2 3100     5.173900e+02 1.023600e+02
+6 3100     4.332900e+02 2.714400e+02
+7 3100     4.425800e+02 2.957300e+02
+8 3100     4.834301e+02 5.545999e+01
+9 3100     3.039500e+02 1.854500e+02
+10 3100     6.022700e+02 3.439100e+02
+12 3100     5.172600e+02 2.810000e+02
+13 3100     8.154000e+02 -9.184998e+01
+15 3100     8.041200e+02 3.860600e+02
+0 3101     5.992900e+02 -3.138000e+01
+1 3101     8.183700e+02 -2.027300e+02
+7 3101     4.546400e+02 1.490400e+02
+0 3102     6.601899e+02 -5.525000e+01
+1 3102     8.749600e+02 -2.487200e+02
+7 3102     5.176000e+02 1.382900e+02
+0 3103     5.605400e+02 -2.134998e+01
+1 3103     7.811801e+02 -1.795300e+02
+7 3103     4.150900e+02 1.505900e+02
+10 3103     5.586000e+02 1.759700e+02
+13 3103     7.836899e+02 -2.250300e+02
+15 3103     7.544100e+02 1.835500e+02
+0 3104     2.149100e+02 -2.978003e+01
+1 3104     3.622200e+02 -6.452002e+01
+10 3104     1.586100e+02 1.289000e+02
+15 3104     2.619500e+02 1.256800e+02
+0 3105     3.641801e+02 -1.233900e+02
+1 3105     4.936300e+02 -2.084900e+02
+7 3105     2.841200e+02 4.722998e+01
+10 3105     3.396000e+02 3.596997e+01
+15 3105     4.816801e+02 1.760999e+01
+0 3106     -3.797998e+01 -1.044000e+02
+1 3106     9.347998e+01 -6.116998e+01
+3 3106     6.442999e+01 -4.023600e+02
+7 3106     -1.050900e+02 2.140015e+00
+10 3106     -1.261300e+02 1.559998e+01
+15 3106     -7.217999e+01 -9.700012e+00
+0 3107     3.095000e+02 -2.430300e+02
+1 3107     3.969100e+02 -3.091400e+02
+6 3107     3.617500e+02 -1.595400e+02
+7 3107     2.550500e+02 -7.681000e+01
+10 3107     2.895500e+02 -1.059000e+02
+12 3107     3.919100e+02 -1.284400e+02
+15 3107     4.207300e+02 -1.520200e+02
+0 3108     -8.841998e+01 -1.476200e+02
+1 3108     3.351001e+01 -8.767999e+01
+7 3108     -1.488600e+02 -5.076001e+01
+10 3108     -1.801400e+02 -3.942999e+01
+0 3109     5.489200e+02 2.250100e+02
+1 3109     8.470400e+02 8.342999e+01
+7 3109     3.702800e+02 3.878500e+02
+10 3109     5.256899e+02 4.633900e+02
+15 3109     7.098800e+02 5.262800e+02
+0 3110     5.863900e+02 8.251999e+01
+1 3110     8.411899e+02 -7.921997e+01
+6 3110     4.164400e+02 2.223100e+02
+7 3110     4.269600e+02 2.564700e+02
+8 3110     4.720601e+02 1.660001e+01
+9 3110     2.938800e+02 1.443700e+02
+12 3110     5.016100e+02 2.324500e+02
+15 3110     7.789700e+02 3.316600e+02
+0 3111     5.746100e+02 1.802002e+01
+1 3111     8.084800e+02 -1.432500e+02
+10 3111     5.715300e+02 2.228200e+02
+15 3111     7.695200e+02 2.405500e+02
+0 3112     5.851400e+02 -3.388000e+01
+1 3112     8.030500e+02 -2.010400e+02
+10 3112     5.888800e+02 1.633300e+02
+13 3112     8.105200e+02 -2.330600e+02
+0 3113     1.227500e+02 -6.240002e+01
+1 3113     2.590400e+02 -6.833002e+01
+0 3114     -1.267800e+02 -1.350800e+02
+1 3114     2.469971e+00 -6.442999e+01
+6 3114     -1.360700e+02 -1.854600e+02
+12 3114     -1.357600e+02 -1.280100e+02
+15 3114     -1.875500e+02 -6.308002e+01
+0 3115     2.320800e+02 -5.299700e+02
+1 3115     2.296899e+02 -5.637700e+02
+0 3116     5.619500e+02 7.409003e+01
+1 3116     8.128400e+02 -8.058002e+01
+6 3116     3.874700e+02 2.027000e+02
+7 3116     4.033000e+02 2.422800e+02
+10 3116     5.525300e+02 2.860600e+02
+12 3116     4.740000e+02 2.126900e+02
+15 3116     7.455900e+02 3.153600e+02
+0 3117     5.605400e+02 5.338000e+01
+1 3117     8.051100e+02 -1.017000e+02
+6 3117     3.910000e+02 1.784700e+02
+7 3117     4.046899e+02 2.228000e+02
+10 3117     5.519900e+02 2.623500e+02
+13 3117     7.741200e+02 -1.569900e+02
+15 3117     7.455100e+02 2.869600e+02
+0 3118     -6.684003e+01 -5.377002e+01
+1 3118     8.527002e+01 -5.239990e+00
+7 3118     -1.469900e+02 4.484998e+01
+15 3118     -1.168300e+02 5.433002e+01
+0 3119     -4.620001e+01 -6.035999e+01
+1 3119     1.027300e+02 -1.689001e+01
+7 3119     -1.248700e+02 4.226001e+01
+10 3119     -1.405300e+02 6.638000e+01
+15 3119     -8.856000e+01 4.915002e+01
+0 3120     1.246997e+01 -1.187400e+02
+1 3120     1.362600e+02 -8.979999e+01
+4 3120     -3.587900e+02 -4.206900e+02
+6 3120     2.602002e+01 -1.112700e+02
+12 3120     3.190002e+01 -6.040002e+01
+15 3120     -1.890015e+00 -2.229999e+01
+0 3121     -9.203003e+01 -1.113800e+02
+1 3121     4.432001e+01 -5.281000e+01
+7 3121     -1.618200e+02 -1.731000e+01
+10 3121     -1.881200e+02 2.340027e+00
+15 3121     -1.426700e+02 -2.646002e+01
+0 3122     6.180000e+02 -3.547200e+02
+1 3122     7.046600e+02 -5.396100e+02
+0 3123     5.248199e+02 -3.555500e+02
+1 3123     6.018199e+02 -5.035500e+02
+0 3124     5.095400e+02 2.713700e+02
+1 3124     8.342800e+02 1.402000e+02
+7 3124     3.136600e+02 4.174300e+02
+10 3124     4.756100e+02 5.144100e+02
+0 3125     5.319000e+01 -1.284300e+02
+1 3125     1.718300e+02 -1.116200e+02
+7 3125     -8.469971e+00 -4.210022e+00
+15 3125     5.392999e+01 -2.979999e+01
+0 3126     5.645200e+02 -2.906200e+02
+1 3126     6.727000e+02 -4.539301e+02
+6 3126     5.692600e+02 -1.647900e+02
+0 3127     5.485800e+02 -3.862700e+02
+1 3127     6.146700e+02 -5.436000e+02
+0 3128     9.835999e+01 -1.191500e+02
+1 3128     2.194700e+02 -1.173300e+02
+3 3128     2.025699e+02 -3.777800e+02
+7 3128     3.376001e+01 1.159003e+01
+10 3128     3.215002e+01 1.356000e+01
+13 3128     4.732500e+02 -3.169600e+02
+15 3128     1.131700e+02 -1.120001e+01
+0 3129     1.178003e+01 -2.057000e+02
+1 3129     1.057500e+02 -1.727100e+02
+7 3129     -3.388000e+01 -8.771002e+01
+10 3129     -5.846002e+01 -9.537000e+01
+13 3129     4.161899e+02 -3.994700e+02
+15 3129     6.859985e+00 -1.393400e+02
+0 3130     -8.933002e+01 4.807300e+02
+1 3130     2.796899e+02 5.121200e+02
+2 3130     -3.740100e+02 2.377600e+02
+4 3130     9.969971e+00 -3.052400e+02
+5 3130     3.161801e+02 -1.706800e+02
+6 3130     -5.773300e+02 4.782200e+02
+7 3130     -3.121400e+02 5.388600e+02
+8 3130     -2.278800e+02 1.777900e+02
+13 3130     1.200800e+02 1.497900e+02
+14 3130     2.273400e+02 -2.581200e+02
+0 3131     2.266200e+02 4.707400e+02
+1 3131     6.116300e+02 4.210600e+02
+2 3131     -8.515002e+01 2.291900e+02
+5 3131     6.296400e+02 -1.756000e+02
+6 3131     -2.266600e+02 5.304700e+02
+7 3131     -5.690002e+00 5.611900e+02
+8 3131     1.009998e+01 1.776300e+02
+9 3131     -2.220400e+02 2.703900e+02
+11 3131     3.558199e+02 -2.795100e+02
+12 3131     -6.028003e+01 5.059200e+02
+14 3131     5.344800e+02 -2.570200e+02
+0 3132     3.283400e+02 4.515700e+02
+1 3132     7.204800e+02 3.739700e+02
+2 3132     5.640015e+00 2.110200e+02
+7 3132     9.228003e+01 5.522500e+02
+8 3132     8.488000e+01 1.642500e+02
+9 3132     -1.453600e+02 2.578900e+02
+11 3132     4.519399e+02 -2.914400e+02
+12 3132     4.715997e+01 4.993500e+02
+13 3132     4.521899e+02 1.487700e+02
+14 3132     6.379200e+02 -2.717200e+02
+0 3133     7.747998e+01 4.978900e+02
+1 3133     4.582000e+02 4.877800e+02
+2 3133     -2.203900e+02 2.578000e+02
+7 3133     -1.512700e+02 5.738800e+02
+9 3133     -3.378800e+02 2.910600e+02
+11 3133     2.169100e+02 -2.627900e+02
+0 3134     3.438400e+02 5.373300e+02
+1 3134     7.634600e+02 4.620000e+02
+2 3134     7.140015e+00 3.053100e+02
+3 3134     -1.371200e+02 -2.859003e+01
+6 3134     -1.169200e+02 6.382000e+02
+8 3134     8.694000e+01 2.395100e+02
+9 3134     -1.472000e+02 3.392200e+02
+12 3134     4.626001e+01 5.985400e+02
+13 3134     4.605601e+02 2.229400e+02
+14 3134     6.452600e+02 -1.813100e+02
+0 3135     -3.071900e+02 -1.314300e+02
+1 3135     -1.319500e+02 -1.558002e+01
+15 3135     -4.232100e+02 -8.440997e+01
+0 3136     5.445000e+02 6.447998e+01
+1 3136     7.918900e+02 -8.523999e+01
+7 3136     3.869301e+02 2.305800e+02
+10 3136     5.329200e+02 2.738100e+02
+12 3136     4.558101e+02 1.943600e+02
+0 3137     1.707300e+02 2.299805e-01
+1 3137     3.256801e+02 -2.089001e+01
+7 3137     8.557001e+01 1.429800e+02
+13 3137     5.241500e+02 -2.066000e+02
+15 3137     1.964200e+02 1.609500e+02
+0 3138     -2.800000e+01 -1.421900e+02
+1 3138     9.215002e+01 -1.007100e+02
+7 3138     -8.914001e+01 -3.457001e+01
+10 3138     -1.108600e+02 -2.694000e+01
+15 3138     -5.332001e+01 -5.947998e+01
+0 3139     5.479200e+02 3.176001e+01
+1 3139     7.852500e+02 -1.201400e+02
+6 3139     3.811200e+02 1.486600e+02
+7 3139     3.948700e+02 1.992700e+02
+10 3139     5.393500e+02 2.360700e+02
+12 3139     4.680400e+02 1.595900e+02
+13 3139     7.635601e+02 -1.783500e+02
+0 3140     5.545601e+02 -6.239990e+00
+1 3140     7.807100e+02 -1.625500e+02
+7 3140     4.066801e+02 1.638700e+02
+10 3140     5.500601e+02 1.928200e+02
+13 3140     7.746100e+02 -2.121600e+02
+0 3141     -4.106900e+02 2.403400e+02
+1 3141     -9.556000e+01 3.568400e+02
+7 3141     -6.047700e+02 2.472200e+02
+11 3141     -2.266300e+02 -4.995800e+02
+13 3141     -1.429800e+02 -7.567999e+01
+0 3142     5.583500e+02 -1.409003e+01
+1 3142     7.818600e+02 -1.718100e+02
+7 3142     4.115500e+02 1.569300e+02
+10 3142     5.553900e+02 1.839700e+02
+15 3142     7.508400e+02 1.932200e+02
+0 3143     -4.319000e+02 1.807001e+01
+1 3143     -1.926200e+02 1.566800e+02
+2 3143     -5.800600e+02 -2.660000e+02
+8 3143     -4.137100e+02 -2.335300e+02
+15 3143     -6.128600e+02 1.008700e+02
+0 3144     -1.870700e+02 -4.946400e+02
+1 3144     -1.541400e+02 -3.855100e+02
+6 3144     -8.253000e+01 -6.584000e+02
+7 3144     -1.902900e+02 -4.253100e+02
+0 3145     -2.188600e+02 -5.248400e+02
+1 3145     -1.939500e+02 -4.023900e+02
+6 3145     -9.904999e+01 -7.050601e+02
+7 3145     -2.152500e+02 -4.609700e+02
+10 3145     -2.889200e+02 -4.888700e+02
+0 3146     6.234399e+02 1.492999e+01
+1 3146     8.585300e+02 -1.620200e+02
+7 3146     4.721500e+02 1.985700e+02
+15 3146     8.385500e+02 2.430700e+02
+0 3147     5.986500e+02 -5.030029e+00
+1 3147     8.262200e+02 -1.751000e+02
+6 3147     4.550300e+02 1.280300e+02
+12 3147     5.374500e+02 1.385300e+02
+13 3147     8.212400e+02 -2.046800e+02
+0 3148     6.556200e+02 -1.057200e+02
+1 3148     8.542500e+02 -3.002200e+02
+8 3148     5.773900e+02 -1.178400e+02
+10 3148     6.766500e+02 8.769000e+01
+0 3149     -7.039978e+00 -8.885999e+01
+1 3149     1.294200e+02 -5.567999e+01
+6 3149     -1.688000e+01 -8.859003e+01
+7 3149     -7.947998e+01 2.215997e+01
+10 3149     -9.387000e+01 3.790002e+01
+15 3149     -3.228998e+01 1.612000e+01
+0 3150     6.726300e+02 -2.801400e+02
+1 3150     7.993300e+02 -4.856600e+02
+12 3150     7.278900e+02 -1.108000e+02
+0 3151     -2.014900e+02 -5.202900e+02
+1 3151     -1.768000e+02 -4.041400e+02
+6 3151     -8.214999e+01 -6.928800e+02
+7 3151     -1.990100e+02 -4.536300e+02
+9 3151     2.487000e+01 -4.646000e+02
+0 3152     5.078000e+02 2.850300e+02
+1 3152     8.367800e+02 1.549500e+02
+6 3152     2.272700e+02 4.056400e+02
+7 3152     3.099301e+02 4.301200e+02
+8 3152     3.270800e+02 1.237600e+02
+10 3152     4.725699e+02 5.306100e+02
+12 3152     3.342400e+02 4.020900e+02
+13 3152     6.746700e+02 3.287000e+01
+0 3153     6.113199e+02 7.048999e+01
+1 3153     8.630601e+02 -9.937000e+01
+2 3153     5.341801e+02 5.484998e+01
+3 3153     3.995800e+02 -2.550600e+02
+15 3153     8.148600e+02 3.189400e+02
+0 3154     6.316500e+02 -2.953400e+02
+1 3154     7.448199e+02 -4.849800e+02
+7 3154     5.427900e+02 -8.416998e+01
+12 3154     6.977300e+02 -1.348600e+02
+0 3155     2.987000e+01 -5.041998e+01
+1 3155     1.734900e+02 -2.853003e+01
+3 3155     1.084200e+02 -3.268900e+02
+7 3155     -4.664001e+01 6.822998e+01
+10 3155     -5.394000e+01 8.585999e+01
+15 3155     1.233002e+01 7.260999e+01
+0 3156     4.651200e+02 3.125500e+02
+1 3156     8.009301e+02 1.959600e+02
+10 3156     4.200900e+02 5.590200e+02
+0 3157     2.162200e+02 -1.194000e+01
+1 3157     3.691200e+02 -4.721002e+01
+7 3157     1.311200e+02 1.375600e+02
+10 3157     1.581600e+02 1.496600e+02
+13 3157     5.627900e+02 -2.141400e+02
+15 3157     2.609900e+02 1.505300e+02
+0 3158     5.859003e+01 6.875000e+01
+1 3158     2.383500e+02 7.935001e+01
+6 3158     4.270020e+00 1.134600e+02
+7 3158     -3.859998e+01 1.912500e+02
+10 3158     -3.266998e+01 2.270400e+02
+15 3158     3.529999e+01 2.392400e+02
+0 3159     4.677002e+01 -2.700195e-01
+1 3159     2.044100e+02 1.546002e+01
+7 3159     -3.702002e+01 1.217500e+02
+10 3159     -3.910999e+01 1.455400e+02
+15 3159     2.828003e+01 1.431900e+02
+0 3160     5.155100e+02 -3.091000e+02
+1 3160     6.113900e+02 -4.536000e+02
+0 3161     -2.517999e+01 -1.597300e+02
+1 3161     8.903998e+01 -1.186600e+02
+7 3161     -8.254999e+01 -5.071002e+01
+10 3161     -1.054000e+02 -4.675000e+01
+15 3161     -4.725000e+01 -8.289001e+01
+0 3162     5.139700e+02 2.456300e+02
+1 3162     8.305200e+02 1.116300e+02
+6 3162     2.448900e+02 3.639500e+02
+7 3162     3.215100e+02 3.931900e+02
+8 3162     3.400900e+02 9.401001e+01
+12 3162     3.501899e+02 3.628100e+02
+15 3162     6.617500e+02 5.488300e+02
+0 3163     5.476000e+02 5.669983e+00
+1 3163     7.767200e+02 -1.477700e+02
+7 3163     3.980900e+02 1.739600e+02
+0 3164     6.593101e+02 -1.004200e+02
+1 3164     8.599200e+02 -2.959200e+02
+2 3164     6.362400e+02 -9.729999e+01
+6 3164     5.549200e+02 4.776001e+01
+7 3164     5.227300e+02 9.460999e+01
+10 3164     6.802400e+02 9.459003e+01
+12 3164     6.337600e+02 5.733002e+01
+0 3165     1.131000e+01 -7.510999e+01
+1 3165     1.499399e+02 -4.756000e+01
+2 3165     1.840100e+02 -5.520001e+01
+7 3165     -6.128003e+01 3.982001e+01
+8 3165     1.781800e+02 -9.313000e+01
+9 3165     4.852002e+01 4.578998e+01
+13 3165     3.904500e+02 -2.865100e+02
+15 3165     -9.130005e+00 3.672998e+01
+0 3166     1.030600e+02 -1.125100e+02
+1 3166     2.259301e+02 -1.116400e+02
+2 3166     2.968199e+02 -6.490997e+01
+6 3166     1.203600e+02 -7.309003e+01
+7 3166     3.764001e+01 1.991998e+01
+8 3166     2.709800e+02 -1.030200e+02
+10 3166     3.784003e+01 2.197998e+01
+15 3166     1.198300e+02 -1.320007e+00
+0 3167     1.245900e+02 -7.715002e+01
+1 3167     2.563900e+02 -8.345001e+01
+7 3167     5.371997e+01 5.871002e+01
+8 3167     2.816400e+02 -6.502002e+01
+0 3168     5.528600e+02 1.107001e+01
+1 3168     7.838400e+02 -1.437300e+02
+0 3169     2.149600e+02 5.134800e+02
+1 3169     6.112400e+02 4.689800e+02
+2 3169     -9.957001e+01 2.782500e+02
+9 3169     -2.360700e+02 3.126300e+02
+11 3169     3.409000e+02 -2.435500e+02
+0 3170     2.222998e+01 5.207300e+02
+1 3170     4.054399e+02 5.253900e+02
+4 3170     2.581000e+01 -3.756700e+02
+5 3170     4.276801e+02 -1.271700e+02
+12 3170     -2.830300e+02 5.371000e+02
+13 3170     2.078900e+02 1.889500e+02
+0 3171     2.881300e+02 5.708300e+02
+1 3171     7.098900e+02 5.117600e+02
+9 3171     -1.927600e+02 3.668700e+02
+11 3171     4.008199e+02 -1.901600e+02
+13 3171     4.147600e+02 2.472600e+02
+14 3171     5.877900e+02 -1.505900e+02
+0 3172     2.560601e+02 4.786300e+02
+1 3172     6.470699e+02 4.217500e+02
+2 3172     -6.021997e+01 2.394900e+02
+6 3172     -1.970400e+02 5.466000e+02
+7 3172     2.123999e+01 5.722300e+02
+14 3172     5.634200e+02 -2.471800e+02
+0 3173     4.428600e+02 3.021700e+02
+1 3173     7.749100e+02 1.907800e+02
+6 3173     1.358900e+02 4.044200e+02
+7 3173     2.422800e+02 4.353400e+02
+10 3173     3.945000e+02 5.446600e+02
+12 3173     2.516899e+02 3.996900e+02
+0 3174     6.101500e+02 2.919000e+01
+1 3174     8.490100e+02 -1.428300e+02
+7 3174     4.570300e+02 2.096600e+02
+10 3174     6.125900e+02 2.394900e+02
+13 3174     8.287500e+02 -1.717100e+02
+15 3174     8.178000e+02 2.608500e+02
+0 3175     2.954100e+02 3.606000e+01
+1 3175     4.713700e+02 -2.540997e+01
+7 3175     1.939700e+02 1.924500e+02
+10 3175     2.452400e+02 2.131500e+02
+13 3175     6.132300e+02 -1.705700e+02
+15 3175     3.657200e+02 2.270100e+02
+0 3176     2.121899e+02 1.196002e+01
+1 3176     3.727400e+02 -2.228998e+01
+2 3176     3.523600e+02 8.203998e+01
+4 3176     -2.933800e+02 -5.835500e+02
+7 3176     1.229000e+02 1.602900e+02
+10 3176     1.513700e+02 1.771600e+02
+13 3176     5.555000e+02 -1.938300e+02
+15 3176     2.525400e+02 1.827400e+02
+0 3177     7.378003e+01 -2.275000e+01
+1 3177     2.230800e+02 -1.457001e+01
+2 3177     2.392500e+02 2.520001e+01
+3 3177     1.457700e+02 -2.827200e+02
+7 3177     -5.659973e+00 1.044300e+02
+10 3177     -5.450012e+00 1.221000e+02
+13 3177     4.438500e+02 -2.340200e+02
+15 3177     6.765002e+01 1.163200e+02
+0 3178     1.903101e+02 -8.008002e+01
+1 3178     3.217800e+02 -1.068300e+02
+6 3178     2.003400e+02 -8.250000e+00
+7 3178     1.177400e+02 6.664001e+01
+8 3178     3.329600e+02 -5.867999e+01
+10 3178     1.355300e+02 6.831000e+01
+13 3178     5.499700e+02 -2.751100e+02
+0 3179     3.108600e+02 -1.078200e+02
+1 3179     4.397000e+02 -1.742300e+02
+10 3179     2.766600e+02 4.864001e+01
+12 3179     3.526600e+02 2.773999e+01
+13 3179     6.502300e+02 -2.927700e+02
+15 3179     4.047300e+02 3.209998e+01
+0 3180     -1.610800e+02 -7.560999e+01
+1 3180     -7.280029e+00 8.200073e-01
+7 3180     -2.413000e+02 4.630005e+00
+10 3180     -2.717300e+02 3.604999e+01
+12 3180     -2.066000e+02 -7.716998e+01
+15 3180     -2.404700e+02 1.253003e+01
+0 3181     2.506400e+02 4.744900e+02
+1 3181     6.399301e+02 4.188300e+02
+2 3181     -6.423999e+01 2.346100e+02
+5 3181     6.537800e+02 -1.707500e+02
+6 3181     -2.017400e+02 5.406900e+02
+7 3181     1.681000e+01 5.679200e+02
+11 3181     3.773800e+02 -2.751600e+02
+13 3181     3.891700e+02 1.635800e+02
+14 3181     5.587800e+02 -2.513900e+02
+0 3182     4.895200e+02 2.812700e+02
+1 3182     8.162700e+02 1.564000e+02
+6 3182     2.023300e+02 3.971300e+02
+7 3182     2.921200e+02 4.236000e+02
+8 3182     3.103300e+02 1.152300e+02
+10 3182     4.511000e+02 5.243900e+02
+12 3182     3.117700e+02 3.940700e+02
+13 3182     6.563900e+02 2.796997e+01
+0 3183     -1.026500e+02 3.716100e+02
+1 3183     2.387200e+02 4.062700e+02
+2 3183     -3.799300e+02 1.055800e+02
+5 3183     2.961801e+02 -2.888700e+02
+6 3183     -5.717600e+02 3.296600e+02
+7 3183     -3.116400e+02 4.237500e+02
+10 3183     -2.546100e+02 5.726600e+02
+13 3183     1.086200e+02 5.384998e+01
+14 3183     2.109000e+02 -3.754700e+02
+0 3184     2.255200e+02 1.619000e+01
+1 3184     3.882000e+02 -2.225000e+01
+7 3184     1.344900e+02 1.660500e+02
+10 3184     1.663100e+02 1.830600e+02
+12 3184     2.287700e+02 1.512300e+02
+13 3184     5.652700e+02 -1.897600e+02
+15 3184     2.705800e+02 1.903200e+02
+0 3185     5.725000e+02 -2.271002e+01
+1 3185     7.936500e+02 -1.851800e+02
+7 3185     4.266700e+02 1.516800e+02
+10 3185     5.726000e+02 1.757000e+02
+12 3185     5.107600e+02 1.084500e+02
+13 3185     7.959100e+02 -2.245900e+02
+15 3185     7.716500e+02 1.831300e+02
+0 3186     4.416998e+01 2.081000e+01
+1 3186     2.090300e+02 3.607001e+01
+3 3186     9.628003e+01 -2.530000e+02
+7 3186     -4.372998e+01 1.419400e+02
+10 3186     -4.463000e+01 1.698900e+02
+13 3186     4.104200e+02 -1.997000e+02
+15 3186     2.203003e+01 1.715400e+02
+0 3187     2.144800e+02 -2.142999e+01
+1 3187     3.640800e+02 -5.623999e+01
+2 3187     3.684301e+02 5.026001e+01
+3 3187     2.639301e+02 -2.565300e+02
+6 3187     2.047300e+02 6.281000e+01
+7 3187     1.312700e+02 1.276400e+02
+10 3187     1.573300e+02 1.383200e+02
+13 3187     5.628700e+02 -2.229700e+02
+15 3187     2.596600e+02 1.371700e+02
+0 3188     2.789600e+02 -1.416700e+02
+1 3188     3.946801e+02 -1.968900e+02
+7 3188     2.113900e+02 1.884003e+01
+10 3188     2.435000e+02 7.929993e+00
+0 3189     6.741998e+01 -2.257900e+02
+1 3189     1.520000e+02 -2.100600e+02
+6 3189     1.374100e+02 -2.046500e+02
+12 3189     1.375800e+02 -1.609300e+02
+13 3189     4.694100e+02 -4.115000e+02
+15 3189     8.475000e+01 -1.594500e+02
+0 3190     3.411100e+02 4.628500e+02
+1 3190     7.382500e+02 3.827300e+02
+4 3190     -3.103003e+01 -5.840800e+02
+5 3190     7.475100e+02 -1.800600e+02
+6 3190     -1.041700e+02 5.454100e+02
+7 3190     1.031400e+02 5.651500e+02
+9 3190     -1.371000e+02 2.694400e+02
+12 3190     5.850000e+01 5.134500e+02
+13 3190     4.621200e+02 1.597300e+02
+14 3190     6.498800e+02 -2.586300e+02
+0 3191     1.879600e+02 1.735000e+02
+1 3191     4.136000e+02 1.430900e+02
+7 3191     5.984003e+01 3.052500e+02
+13 3191     4.882100e+02 -6.777002e+01
+14 3191     6.931200e+02 -5.518101e+02
+15 3191     2.027900e+02 4.010400e+02
+0 3192     2.153500e+02 1.632700e+02
+1 3192     4.366500e+02 1.260600e+02
+13 3192     5.160300e+02 -7.287000e+01
+14 3192     7.303199e+02 -5.605300e+02
+15 3192     2.414100e+02 3.910000e+02
+0 3193     3.070000e+02 3.359985e+00
+1 3193     4.730601e+02 -6.165997e+01
+7 3193     2.099000e+02 1.626300e+02
+10 3193     2.605100e+02 1.774200e+02
+15 3193     3.859800e+02 1.838600e+02
+0 3194     7.598999e+01 6.549988e+00
+1 3194     2.343101e+02 1.359003e+01
+2 3194     2.299600e+02 5.403998e+01
+3 3194     1.355100e+02 -2.554400e+02
+7 3194     -8.900024e+00 1.336400e+02
+9 3194     8.073999e+01 1.394500e+02
+13 3194     4.420601e+02 -2.090200e+02
+15 3194     6.660999e+01 1.565900e+02
+0 3195     2.170001e+01 5.349976e+00
+1 3195     1.829800e+02 2.789001e+01
+2 3195     1.683700e+02 3.539001e+01
+3 3195     7.831000e+01 -2.746800e+02
+7 3195     -6.389001e+01 1.224600e+02
+9 3195     3.131000e+01 1.215000e+02
+13 3195     3.920601e+02 -2.148300e+02
+15 3195     -6.260010e+00 1.478300e+02
+0 3196     1.227500e+02 -6.240002e+01
+1 3196     2.590400e+02 -6.833002e+01
+7 3196     5.017999e+01 7.292999e+01
+10 3196     5.575000e+01 8.094000e+01
+13 3196     4.921200e+02 -2.654400e+02
+15 3196     1.394900e+02 6.890997e+01
+0 3197     3.519700e+02 5.393700e+02
+1 3197     7.739200e+02 4.623400e+02
+13 3197     4.674900e+02 2.256400e+02
+14 3197     6.537400e+02 -1.783200e+02
+0 3198     1.444900e+02 5.033300e+02
+1 3198     5.292400e+02 4.770100e+02
+5 3198     5.531500e+02 -1.421700e+02
+6 3198     -3.111300e+02 5.574800e+02
+11 3198     2.756300e+02 -2.556100e+02
+12 3198     -1.470300e+02 5.369500e+02
+13 3198     3.082000e+02 1.819500e+02
+14 3198     4.584000e+02 -2.259200e+02
+0 3199     2.402200e+02 1.280400e+02
+1 3199     4.450601e+02 8.400000e+01
+7 3199     1.238600e+02 2.730800e+02
+10 3199     1.714300e+02 3.151100e+02
+13 3199     5.496400e+02 -9.796997e+01
+15 3199     2.780800e+02 3.459000e+02
+0 3200     5.498900e+02 7.506000e+01
+1 3200     8.008800e+02 -7.548999e+01
+6 3200     3.719700e+02 1.975700e+02
+7 3200     3.909700e+02 2.418200e+02
+10 3200     5.379399e+02 2.864100e+02
+12 3200     4.592500e+02 2.073700e+02
+13 3200     7.608300e+02 -1.393000e+02
+15 3200     7.282400e+02 3.156900e+02
+0 3201     5.518900e+02 1.934003e+01
+1 3201     7.854399e+02 -1.324400e+02
+6 3201     3.892000e+02 1.359900e+02
+12 3201     4.746801e+02 1.480200e+02
+0 3202     4.532900e+02 3.257700e+02
+1 3202     7.931100e+02 2.129500e+02
+6 3202     1.443900e+02 4.357600e+02
+7 3202     2.502100e+02 4.603600e+02
+10 3202     4.057200e+02 5.735700e+02
+13 3202     6.166200e+02 6.137000e+01
+14 3202     8.506899e+02 -3.881800e+02
+0 3203     -7.488000e+01 3.237000e+01
+1 3203     1.071600e+02 7.998999e+01
+3 3203     -6.556000e+01 -3.081300e+02
+7 3203     -1.731500e+02 1.272600e+02
+10 3203     -1.835500e+02 1.706000e+02
+13 3203     2.888400e+02 -2.048700e+02
+15 3203     -1.384200e+02 1.705400e+02
+0 3204     1.469200e+02 -3.771002e+01
+1 3204     2.898199e+02 -5.109998e+01
+10 3204     8.042999e+01 1.127000e+02
+13 3204     5.090100e+02 -2.409000e+02
+15 3204     1.688700e+02 1.061200e+02
+0 3205     -1.131600e+02 4.358300e+02
+1 3205     2.444399e+02 4.740400e+02
+2 3205     -3.936000e+02 1.835700e+02
+3 3205     -5.256700e+02 -1.457700e+02
+4 3205     -1.434003e+01 -2.872200e+02
+5 3205     2.896700e+02 -2.190200e+02
+7 3205     -3.299400e+02 4.895700e+02
+8 3205     -2.440200e+02 1.356100e+02
+11 3205     4.692999e+01 -3.220500e+02
+12 3205     -4.168100e+02 4.152100e+02
+13 3205     1.012400e+02 1.093300e+02
+14 3205     2.033101e+02 -3.060200e+02
+0 3206     4.943700e+02 2.734400e+02
+1 3206     8.188101e+02 1.464800e+02
+6 3206     2.115400e+02 3.880700e+02
+7 3206     2.982300e+02 4.164500e+02
+8 3206     3.164400e+02 1.094600e+02
+10 3206     4.574900e+02 5.154600e+02
+13 3206     6.621200e+02 2.144000e+01
+0 3207     5.255800e+02 1.316200e+02
+1 3207     7.935500e+02 -8.830017e+00
+7 3207     3.590200e+02 2.919100e+02
+10 3207     5.045800e+02 3.494000e+02
+13 3207     7.292000e+02 -9.276001e+01
+15 3207     6.877400e+02 3.908500e+02
+0 3208     1.220000e+02 -1.286300e+02
+1 3208     2.401801e+02 -1.337000e+02
+7 3208     5.954999e+01 6.590027e+00
+13 3208     4.967700e+02 -3.237100e+02
+15 3208     1.477100e+02 -2.090997e+01
+0 3209     -2.346700e+02 -5.170500e+02
+1 3209     -2.051000e+02 -3.900500e+02
+4 3209     -6.308200e+02 -2.004800e+02
+6 3209     -1.240300e+02 -7.053900e+02
+7 3209     -2.331800e+02 -4.570800e+02
+9 3209     -8.669983e+00 -4.746200e+02
+10 3209     -3.083200e+02 -4.818101e+02
+0 3210     1.266200e+02 4.234003e+01
+1 3210     2.957300e+02 3.367999e+01
+7 3210     3.572998e+01 1.779200e+02
+15 3210     1.312300e+02 2.116600e+02
+0 3211     6.043199e+02 5.359003e+01
+1 3211     8.504700e+02 -1.145900e+02
+7 3211     4.476899e+02 2.323500e+02
+10 3211     6.030100e+02 2.678300e+02
+13 3211     8.193101e+02 -1.496400e+02
+15 3211     8.067200e+02 2.945800e+02
+0 3212     1.065500e+02 4.203998e+01
+1 3212     2.754200e+02 3.926001e+01
+2 3212     2.448000e+02 9.465997e+01
+6 3212     7.192999e+01 1.006900e+02
+7 3212     1.540002e+01 1.736300e+02
+12 3212     9.164001e+01 1.527500e+02
+15 3212     1.039200e+02 2.092200e+02
+0 3213     7.804999e+01 -1.167200e+02
+1 3213     2.009000e+02 -1.083300e+02
+3 3213     1.821700e+02 -3.815900e+02
+15 3213     8.627002e+01 -1.062000e+01
+0 3214     8.496002e+01 -7.869000e+01
+1 3214     2.170100e+02 -7.215997e+01
+13 3214     4.588600e+02 -2.816700e+02
+15 3214     8.923999e+01 4.270001e+01
+0 3215     8.475000e+01 -1.221600e+02
+1 3215     2.053900e+02 -1.155500e+02
+3 3215     1.917200e+02 -3.841200e+02
+10 3215     1.766998e+01 8.690002e+00
+13 3215     4.625300e+02 -3.207900e+02
+0 3216     7.012000e+01 -1.642500e+02
+1 3216     1.772600e+02 -1.518400e+02
+2 3216     2.912300e+02 -1.225700e+02
+10 3216     4.809998e+00 -4.171002e+01
+0 3217     5.857000e+02 1.492500e+02
+1 3217     8.611700e+02 -8.090027e+00
+3 3217     3.476400e+02 -1.924000e+02
+12 3217     4.834301e+02 3.048100e+02
+13 3217     7.893800e+02 -6.864001e+01
+15 3217     7.699800e+02 4.250200e+02
+0 3218     2.496700e+02 4.519700e+02
+1 3218     6.326000e+02 3.954500e+02
+5 3218     6.531600e+02 -1.954700e+02
+6 3218     -1.984400e+02 5.117500e+02
+7 3218     1.852002e+01 5.447200e+02
+8 3218     2.871997e+01 1.618900e+02
+9 3218     -2.025200e+02 2.536300e+02
+11 3218     3.785699e+02 -2.953900e+02
+12 3218     -3.302002e+01 4.873800e+02
+13 3218     3.891400e+02 1.442800e+02
+0 3219     -2.308700e+02 4.658000e+02
+1 3219     1.328400e+02 5.317300e+02
+2 3219     -5.116600e+02 2.199700e+02
+7 3219     -4.518100e+02 5.083700e+02
+11 3219     -5.695001e+01 -2.973800e+02
+0 3220     5.558400e+02 1.637600e+02
+1 3220     8.345601e+02 1.623999e+01
+2 3220     4.472600e+02 1.219400e+02
+7 3220     3.852000e+02 3.294200e+02
+10 3220     5.379700e+02 3.919000e+02
+12 3220     4.447200e+02 3.106900e+02
+15 3220     7.262100e+02 4.408800e+02
+0 3221     3.916998e+01 2.421997e+01
+1 3221     2.048900e+02 4.082001e+01
+7 3221     -4.953003e+01 1.437300e+02
+13 3221     4.058500e+02 -1.981600e+02
+0 3222     1.176500e+02 -9.650024e+00
+1 3222     2.696200e+02 -1.473999e+01
+2 3222     2.789800e+02 4.996997e+01
+6 3222     1.052400e+02 4.882001e+01
+7 3222     3.558002e+01 1.251200e+02
+10 3222     4.401001e+01 1.424900e+02
+13 3222     4.804700e+02 -2.187300e+02
+15 3222     1.252100e+02 1.403500e+02
+0 3223     6.590900e+02 -1.093300e+02
+1 3223     8.569500e+02 -3.054100e+02
+2 3223     6.386200e+02 -1.070200e+02
+7 3223     5.237000e+02 8.578000e+01
+8 3223     5.815800e+02 -1.196900e+02
+10 3223     6.809600e+02 8.428003e+01
+0 3224     3.814900e+02 4.780400e+02
+1 3224     7.900800e+02 3.881500e+02
+0 3225     1.020020e+00 -4.991998e+01
+1 3225     1.474000e+02 -2.021002e+01
+3 3225     7.595001e+01 -3.389500e+02
+7 3225     -7.641998e+01 6.284003e+01
+8 3225     1.611900e+02 -7.208002e+01
+13 3225     3.781801e+02 -2.653800e+02
+15 3225     -2.687000e+01 6.954999e+01
+0 3226     7.299805e-01 -9.421997e+01
+1 3226     1.346000e+02 -6.290002e+01
+3 3226     9.290997e+01 -3.866600e+02
+6 3226     -3.090027e+00 -9.091998e+01
+7 3226     -6.915997e+01 1.810999e+01
+8 3226     1.725500e+02 -1.139500e+02
+13 3226     3.821801e+02 -3.046600e+02
+15 3226     -2.092999e+01 9.039978e+00
+0 3227     -1.498700e+02 1.722000e+02
+1 3227     1.260800e+02 2.256300e+02
+0 3228     6.587300e+02 -5.646997e+01
+1 3228     8.735200e+02 -2.496000e+02
+3 3228     4.921000e+02 -3.553800e+02
+6 3228     5.413500e+02 9.692999e+01
+7 3228     5.164200e+02 1.361900e+02
+10 3228     6.762800e+02 1.446700e+02
+0 3229     4.563000e+01 -1.126900e+02
+1 3229     1.707200e+02 -9.398999e+01
+6 3229     5.725000e+01 -9.538000e+01
+7 3229     -1.933002e+01 8.630005e+00
+10 3229     -2.813000e+01 1.526001e+01
+12 3229     6.664001e+01 -4.550000e+01
+13 3229     4.272300e+02 -3.163900e+02
+15 3229     4.207001e+01 -9.530029e+00
+0 3230     1.127400e+02 -5.625100e+02
+1 3230     1.001800e+02 -5.510100e+02
+7 3230     1.243000e+02 -4.274800e+02
+10 3230     9.669000e+01 -4.928700e+02
+0 3231     5.013000e+01 -1.079600e+02
+1 3231     1.764200e+02 -9.101001e+01
+2 3231     2.387700e+02 -7.729999e+01
+3 3231     1.495500e+02 -3.818300e+02
+7 3231     -1.665002e+01 1.429999e+01
+10 3231     -2.459003e+01 2.165002e+01
+13 3231     4.292400e+02 -3.114100e+02
+15 3231     4.703003e+01 -2.309998e+00
+0 3232     1.016500e+02 -5.490900e+02
+1 3232     9.475000e+01 -5.345699e+02
+6 3232     2.694100e+02 -5.852000e+02
+9 3232     3.009600e+02 -3.687900e+02
+10 3232     8.281000e+01 -4.784800e+02
+0 3233     3.657700e+02 4.516800e+02
+1 3233     7.640601e+02 3.641200e+02
+13 3233     4.826200e+02 1.520200e+02
+14 3233     6.755200e+02 -2.687600e+02
+0 3234     3.646200e+02 4.431100e+02
+1 3234     7.591801e+02 3.554400e+02
+2 3234     3.798999e+01 2.036900e+02
+5 3234     7.740300e+02 -2.007400e+02
+6 3234     -7.470001e+01 5.248000e+02
+8 3234     1.119700e+02 1.585500e+02
+14 3234     6.765500e+02 -2.776200e+02
+0 3235     2.707001e+01 9.822000e+01
+1 3235     2.195601e+02 1.164500e+02
+3 3235     3.039001e+01 -2.009100e+02
+5 3235     6.505601e+02 -5.589000e+02
+7 3235     -7.758002e+01 2.136400e+02
+8 3235     1.367200e+02 5.010001e+01
+10 3235     -7.258002e+01 2.582900e+02
+12 3235     -2.834003e+01 1.865800e+02
+13 3235     3.787900e+02 -1.373400e+02
+15 3235     -1.064001e+01 2.747300e+02
+0 3236     2.742300e+02 -1.178400e+02
+1 3236     3.981801e+02 -1.718700e+02
+7 3236     2.022000e+02 4.115997e+01
+12 3236     3.193900e+02 9.000000e+00
+0 3237     2.258400e+02 -2.196500e+02
+1 3237     3.113900e+02 -2.559900e+02
+7 3237     1.779600e+02 -6.353998e+01
+8 3237     4.093400e+02 -1.646200e+02
+10 3237     1.897600e+02 -8.875000e+01
+12 3237     3.109000e+02 -1.101900e+02
+15 3237     3.003000e+02 -1.308600e+02
+0 3238     -9.766998e+01 -1.997998e+01
+1 3238     6.972998e+01 3.596002e+01
+15 3238     -1.624000e+02 9.614001e+01
+0 3239     1.749600e+02 -3.291998e+01
+1 3239     3.200100e+02 -5.540997e+01
+15 3239     2.068199e+02 1.163100e+02
+0 3240     9.900000e+01 -1.771002e+01
+1 3240     2.491801e+02 -1.684998e+01
+2 3240     2.633600e+02 3.728003e+01
+4 3240     -2.979800e+02 -4.924700e+02
+8 3240     2.454900e+02 -1.770001e+01
+10 3240     2.325000e+01 1.307600e+02
+15 3240     1.010900e+02 1.266300e+02
+0 3241     8.547998e+01 -1.307001e+01
+1 3241     2.372200e+02 -8.700012e+00
+2 3241     2.477400e+02 3.826001e+01
+7 3241     4.530029e+00 1.160500e+02
+15 3241     8.251001e+01 1.311700e+02
+0 3242     5.412500e+02 -3.814800e+02
+1 3242     6.093500e+02 -5.359399e+02
+13 3242     8.786600e+02 -5.402200e+02
+0 3243     4.866998e+01 -1.426001e+01
+1 3243     2.022000e+02 1.359985e+00
+2 3243     2.077500e+02 2.537000e+01
+3 3243     1.162400e+02 -2.838000e+02
+7 3243     -3.266998e+01 1.083400e+02
+9 3243     6.463000e+01 1.140900e+02
+10 3243     -3.559003e+01 1.296000e+02
+12 3243     4.191998e+01 7.237000e+01
+15 3243     3.270001e+01 1.247200e+02
+0 3244     3.190997e+01 -2.190002e+01
+1 3244     1.844100e+02 -1.669983e+00
+3 3244     1.026400e+02 -2.973300e+02
+4 3244     -2.921900e+02 -4.379700e+02
+7 3244     -4.831000e+01 9.722000e+01
+10 3244     -5.346002e+01 1.187300e+02
+13 3244     4.055200e+02 -2.374300e+02
+15 3244     1.119000e+01 1.119400e+02
+0 3245     6.551001e+01 -2.728003e+01
+1 3245     2.140000e+02 -1.664001e+01
+2 3245     2.319100e+02 1.815002e+01
+3 3245     1.399000e+02 -2.903300e+02
+4 3245     -2.998600e+02 -4.649500e+02
+6 3245     5.354999e+01 1.165997e+01
+8 3245     2.189500e+02 -3.434000e+01
+9 3245     8.484003e+01 1.086300e+02
+12 3245     6.690997e+01 6.366998e+01
+13 3245     4.368900e+02 -2.390000e+02
+15 3245     5.696997e+01 1.088800e+02
+0 3246     1.615997e+01 -1.585999e+01
+1 3246     1.713900e+02 8.710022e+00
+2 3246     1.705800e+02 1.104999e+01
+0 3247     9.688000e+01 8.909973e+00
+1 3247     2.551500e+02 9.750000e+00
+7 3247     1.206000e+01 1.397600e+02
+13 3247     4.604100e+02 -2.048000e+02
+15 3247     9.498999e+01 1.626300e+02
+0 3248     9.688000e+01 8.909973e+00
+1 3248     2.551500e+02 9.750000e+00
+2 3248     2.503800e+02 6.235999e+01
+7 3248     1.206000e+01 1.397600e+02
+9 3248     9.717999e+01 1.459100e+02
+13 3248     4.604100e+02 -2.048000e+02
+15 3248     9.498999e+01 1.626300e+02
+0 3249     1.288000e+02 -3.289001e+01
+1 3249     2.736200e+02 -4.089001e+01
+2 3249     2.984500e+02 2.890997e+01
+3 3249     2.015000e+02 -2.781400e+02
+4 3249     -3.136200e+02 -5.169500e+02
+7 3249     5.079999e+01 1.038100e+02
+10 3249     5.914001e+01 1.158900e+02
+13 3249     4.934100e+02 -2.381700e+02
+15 3249     1.436600e+02 1.099500e+02
+0 3250     -1.213100e+02 -9.731000e+01
+1 3250     2.207001e+01 -3.082001e+01
+0 3251     1.496000e+02 -6.377002e+01
+1 3251     2.851000e+02 -7.792999e+01
+2 3251     3.288700e+02 -1.400024e+00
+3 3251     2.318400e+02 -3.049300e+02
+4 3251     -3.398100e+02 -5.332200e+02
+6 3251     1.564900e+02 -2.770020e+00
+7 3251     7.640002e+01 7.622998e+01
+8 3251     2.995100e+02 -4.970999e+01
+10 3251     8.620001e+01 8.226001e+01
+13 3251     5.146801e+02 -2.640800e+02
+15 3251     1.762200e+02 7.016998e+01
+0 3252     6.450300e+02 -7.894000e+01
+1 3252     8.518600e+02 -2.684900e+02
+7 3252     5.059301e+02 1.123000e+02
+8 3252     5.607600e+02 -9.884998e+01
+10 3252     6.621700e+02 1.178300e+02
+13 3252     8.801100e+02 -2.656000e+02
+0 3253     5.939600e+02 1.189400e+02
+1 3253     8.603199e+02 -4.310999e+01
+3 3253     3.661700e+02 -2.163100e+02
+6 3253     4.163600e+02 2.671100e+02
+8 3253     4.713400e+02 5.081000e+01
+10 3253     5.867100e+02 3.433900e+02
+12 3253     5.011000e+02 2.771100e+02
+13 3253     8.014800e+02 -9.373999e+01
+15 3253     7.852700e+02 3.842900e+02
+0 3254     1.409998e+01 -1.531000e+01
+1 3254     1.698000e+02 9.929993e+00
+9 3254     3.206000e+01 1.010500e+02
+15 3254     -1.352002e+01 1.188900e+02
+0 3255     6.932001e+01 -8.859998e+01
+1 3255     1.998101e+02 -7.807001e+01
+2 3255     2.566500e+02 -4.750000e+01
+6 3255     7.723999e+01 -5.637000e+01
+13 3255     4.463199e+02 -2.920700e+02
+0 3256     2.859500e+02 -7.299805e-01
+1 3256     4.479600e+02 -5.878998e+01
+6 3256     2.566000e+02 9.970001e+01
+7 3256     1.924200e+02 1.566500e+02
+10 3256     2.377900e+02 1.701000e+02
+12 3256     2.922300e+02 1.411400e+02
+13 3256     6.131700e+02 -2.015400e+02
+15 3256     3.567400e+02 1.753200e+02
+0 3257     1.060500e+02 5.364001e+01
+1 3257     2.786700e+02 5.107001e+01
+3 3257     1.405500e+02 -2.078500e+02
+4 3257     -2.486800e+02 -4.976200e+02
+5 3257     7.630100e+02 -6.076600e+02
+6 3257     6.607001e+01 1.132000e+02
+7 3257     1.253003e+01 1.849400e+02
+12 3257     8.585999e+01 1.653500e+02
+0 3258     1.559700e+02 5.508002e+01
+1 3258     3.289399e+02 3.758002e+01
+4 3258     -2.541500e+02 -5.369399e+02
+6 3258     1.170200e+02 1.292200e+02
+12 3258     1.416900e+02 1.797400e+02
+13 3258     5.028101e+02 -1.619100e+02
+15 3258     1.694301e+02 2.338100e+02
+0 3259     5.276400e+02 1.122500e+02
+1 3259     7.893000e+02 -2.978998e+01
+6 3259     3.339300e+02 2.321200e+02
+7 3259     3.637500e+02 2.738800e+02
+12 3259     4.234800e+02 2.420900e+02
+13 3259     7.336600e+02 -1.091200e+02
+15 3259     6.928000e+02 3.640600e+02
+0 3260     -1.803998e+01 -1.305700e+02
+1 3260     1.039500e+02 -9.222998e+01
+2 3260     1.803100e+02 -1.162300e+02
+7 3260     -7.977002e+01 -2.014001e+01
+8 3260     1.715100e+02 -1.445500e+02
+9 3260     4.897998e+01 -4.260010e+00
+10 3260     -1.005700e+02 -1.204999e+01
+13 3260     3.737100e+02 -3.369800e+02
+15 3260     -4.171002e+01 -4.232001e+01
+0 3261     5.953700e+02 2.073999e+01
+1 3261     8.309900e+02 -1.471800e+02
+6 3261     4.435500e+02 1.571400e+02
+7 3261     4.440500e+02 1.982500e+02
+8 3261     4.934200e+02 -3.250000e+01
+10 3261     5.959301e+02 2.279300e+02
+13 3261     8.148199e+02 -1.814900e+02
+15 3261     7.988700e+02 2.466900e+02
+0 3262     2.096100e+02 3.177002e+01
+1 3262     3.762800e+02 -1.179993e+00
+7 3262     1.165600e+02 1.788000e+02
+10 3262     1.465800e+02 1.991500e+02
+15 3262     2.459800e+02 2.096800e+02
+0 3263     6.183002e+01 -8.526001e+01
+1 3263     1.938500e+02 -7.221002e+01
+2 3263     2.466500e+02 -4.576001e+01
+3 3263     1.567700e+02 -3.515100e+02
+6 3263     6.739001e+01 -5.575000e+01
+7 3263     -7.369995e+00 3.978998e+01
+8 3263     2.293000e+02 -8.704999e+01
+9 3263     9.960999e+01 5.638000e+01
+10 3263     -1.258002e+01 4.882001e+01
+15 3263     6.001001e+01 2.982001e+01
+0 3264     5.802800e+02 -2.303200e+02
+1 3264     7.155300e+02 -3.987700e+02
+6 3264     5.503500e+02 -1.027300e+02
+12 3264     6.152700e+02 -8.709003e+01
+13 3264     8.660000e+02 -4.023300e+02
+0 3265     -1.105600e+02 -5.196600e+02
+1 3265     -9.337000e+01 -4.339000e+02
+4 3265     -6.645800e+02 -2.971600e+02
+6 3265     2.169000e+01 -6.487600e+02
+7 3265     -1.069500e+02 -4.332000e+02
+9 3265     1.065800e+02 -4.265500e+02
+0 3266     1.849399e+02 -8.990002e+01
+1 3266     3.141000e+02 -1.151200e+02
+3 3266     2.668800e+02 -3.271000e+02
+6 3266     1.982600e+02 -2.127002e+01
+7 3266     1.139700e+02 5.567999e+01
+8 3266     3.306700e+02 -6.853998e+01
+10 3266     1.302100e+02 5.621002e+01
+12 3266     2.193199e+02 2.271002e+01
+0 3267     -5.502002e+01 5.017100e+02
+1 3267     3.198600e+02 5.249200e+02
+2 3267     -3.428500e+02 2.623400e+02
+6 3267     -5.415600e+02 5.129900e+02
+7 3267     -2.807600e+02 5.644000e+02
+0 3268     6.640300e+02 -5.582001e+01
+1 3268     8.793199e+02 -2.506800e+02
+2 3268     6.281899e+02 -4.776001e+01
+3 3268     4.971300e+02 -3.515200e+02
+7 3268     5.215500e+02 1.384300e+02
+10 3268     6.825699e+02 1.463200e+02
+0 3269     7.035999e+01 -7.369000e+01
+1 3269     2.050699e+02 -6.362000e+01
+7 3269     -6.799927e-01 5.284998e+01
+10 3269     -4.289978e+00 6.314001e+01
+0 3270     -9.830017e+00 -5.009003e+01
+1 3270     1.379700e+02 -1.740002e+01
+3 3270     6.296002e+01 -3.451000e+02
+6 3270     -3.246002e+01 -4.484003e+01
+7 3270     -8.771997e+01 6.070001e+01
+9 3270     1.896997e+01 5.940002e+01
+10 3270     -9.981000e+01 8.212000e+01
+12 3270     -2.150000e+01 8.940002e+00
+13 3270     3.674800e+02 -2.665600e+02
+15 3270     -4.134003e+01 6.779999e+01
+0 3271     3.582001e+01 -5.765997e+01
+1 3271     1.773300e+02 -3.776001e+01
+2 3271     2.086600e+02 -2.465002e+01
+3 3271     1.197000e+02 -3.314400e+02
+7 3271     -3.852002e+01 6.226001e+01
+8 3271     1.989400e+02 -6.859003e+01
+10 3271     -4.594000e+01 7.769000e+01
+13 3271     4.125300e+02 -2.682200e+02
+15 3271     2.116998e+01 6.378003e+01
+0 3272     5.865699e+02 1.602000e+02
+1 3272     8.655000e+02 2.690002e+00
+9 3272     2.729800e+02 2.106400e+02
+13 3272     7.888700e+02 -5.877002e+01
+15 3272     7.693300e+02 4.410400e+02
+0 3273     2.946002e+01 5.114000e+02
+1 3273     4.106600e+02 5.132900e+02
+2 3273     -2.646500e+02 2.722800e+02
+6 3273     -4.484200e+02 5.423900e+02
+7 3273     -1.995600e+02 5.825400e+02
+11 3273     1.727600e+02 -2.530000e+02
+12 3273     -2.746900e+02 5.260300e+02
+0 3274     2.799000e+02 -2.886300e+02
+1 3274     3.555100e+02 -3.453900e+02
+6 3274     3.412900e+02 -2.245900e+02
+10 3274     2.591801e+02 -1.617000e+02
+12 3274     3.695200e+02 -1.949500e+02
+15 3274     3.865200e+02 -2.175600e+02
+0 3275     -1.136500e+02 4.687000e+01
+1 3275     8.096997e+01 1.034400e+02
+4 3275     -2.306200e+02 -3.165700e+02
+6 3275     -2.374600e+02 1.023999e+01
+7 3275     -2.210900e+02 1.316300e+02
+10 3275     -2.307100e+02 1.842600e+02
+13 3275     2.398300e+02 -1.984200e+02
+15 3275     -1.913500e+02 1.850500e+02
+0 3276     2.334200e+02 8.420999e+01
+1 3276     4.208300e+02 4.221002e+01
+6 3276     1.738800e+02 1.780500e+02
+7 3276     1.279700e+02 2.317700e+02
+10 3276     1.682900e+02 2.634900e+02
+12 3276     2.088900e+02 2.235700e+02
+13 3276     5.569700e+02 -1.328900e+02
+15 3276     2.735100e+02 2.845100e+02
+0 3277     8.854999e+01 4.162000e+01
+1 3277     2.582500e+02 4.378003e+01
+2 3277     2.268000e+02 9.013000e+01
+3 3277     1.312700e+02 -2.217900e+02
+4 3277     -2.542900e+02 -4.838700e+02
+6 3277     5.165997e+01 9.503998e+01
+7 3277     -2.190002e+00 1.701600e+02
+8 3277     2.175100e+02 2.685999e+01
+10 3277     4.590027e+00 1.985700e+02
+12 3277     7.028998e+01 1.478200e+02
+13 3277     4.473300e+02 -1.782400e+02
+15 3277     7.934003e+01 2.062300e+02
+0 3278     -4.976001e+01 -8.676001e+01
+1 3278     8.916998e+01 -4.096002e+01
+6 3278     -6.407001e+01 -1.006700e+02
+7 3278     -1.212400e+02 1.685999e+01
+12 3278     -5.678003e+01 -4.591998e+01
+15 3278     -8.984003e+01 1.270001e+01
+0 3279     2.321100e+02 2.385700e+02
+1 3279     5.329000e+02 1.846400e+02
+6 3279     -9.364999e+01 2.662200e+02
+7 3279     4.648999e+01 3.417700e+02
+10 3279     1.528400e+02 4.460500e+02
+11 3279     3.731600e+02 -4.975100e+02
+13 3279     4.227000e+02 -3.469000e+01
+14 3279     6.071801e+02 -5.042500e+02
+0 3280     1.718199e+02 -2.437700e+02
+1 3280     2.498800e+02 -2.617700e+02
+2 3280     4.272900e+02 -1.729000e+02
+6 3280     2.494000e+02 -1.909800e+02
+7 3280     1.305600e+02 -9.648999e+01
+8 3280     3.756700e+02 -1.954500e+02
+10 3280     1.303500e+02 -1.223500e+02
+12 3280     2.602400e+02 -1.534500e+02
+13 3280     5.615699e+02 -4.207000e+02
+15 3280     2.300800e+02 -1.703800e+02
+0 3281     5.498199e+02 8.523001e+01
+1 3281     8.036899e+02 -6.500000e+01
+6 3281     3.694300e+02 2.096700e+02
+8 3281     4.365900e+02 3.589996e+00
+10 3281     5.371100e+02 2.983600e+02
+12 3281     4.567300e+02 2.200300e+02
+13 3281     7.596100e+02 -1.300900e+02
+15 3281     7.269900e+02 3.297100e+02
+0 3282     -2.704600e+02 5.494000e+01
+1 3282     -3.104999e+01 1.476900e+02
+2 3282     -3.992000e+02 -1.952900e+02
+7 3282     -4.119500e+02 9.100000e+01
+13 3282     2.940997e+01 -2.232900e+02
+15 3282     -3.959700e+02 1.732500e+02
+0 3283     2.255200e+02 1.619000e+01
+1 3283     3.882000e+02 -2.225000e+01
+2 3283     3.599100e+02 8.559998e+01
+7 3283     1.344900e+02 1.660500e+02
+10 3283     1.663100e+02 1.830600e+02
+13 3283     5.652700e+02 -1.897600e+02
+15 3283     2.705800e+02 1.903200e+02
+0 3284     1.184003e+01 -2.085500e+02
+1 3284     1.048700e+02 -1.760100e+02
+6 3284     6.945001e+01 -2.072000e+02
+15 3284     7.559998e+00 -1.439100e+02
+0 3285     5.385999e+01 2.145700e+02
+1 3285     3.415000e+02 2.108900e+02
+6 3285     -2.855200e+02 1.882600e+02
+7 3285     -1.220500e+02 2.941100e+02
+11 3285     2.019300e+02 -5.261400e+02
+14 3285     4.183400e+02 -5.404100e+02
+0 3286     -1.271600e+02 -2.413800e+02
+1 3286     -1.734003e+01 -1.682100e+02
+6 3286     -1.405500e+02 -3.368800e+02
+7 3286     -1.828700e+02 -1.607900e+02
+13 3286     2.590000e+02 -4.575300e+02
+15 3286     -1.699000e+02 -2.069100e+02
+0 3287     -2.932200e+02 6.162000e+01
+1 3287     -5.056000e+01 1.601100e+02
+4 3287     -2.110600e+02 -1.678600e+02
+0 3288     2.121899e+02 1.196002e+01
+1 3288     3.727400e+02 -2.228998e+01
+7 3288     1.229000e+02 1.602900e+02
+15 3288     2.525400e+02 1.827400e+02
+0 3289     6.389900e+02 -2.795700e+02
+1 3289     7.602200e+02 -4.716700e+02
+10 3289     6.721300e+02 -1.143000e+02
+12 3289     6.967200e+02 -1.185300e+02
+0 3290     6.459100e+02 -1.019300e+02
+1 3290     8.448800e+02 -2.927300e+02
+7 3290     5.103700e+02 9.047000e+01
+0 3291     -2.188600e+02 -5.248400e+02
+1 3291     -1.939500e+02 -4.023900e+02
+7 3291     -2.152500e+02 -4.609700e+02
+10 3291     -2.889200e+02 -4.888700e+02
+0 3292     8.465002e+01 3.567999e+01
+1 3292     2.519700e+02 3.952002e+01
+2 3292     2.258300e+02 8.387000e+01
+7 3292     -5.570007e+00 1.639000e+02
+13 3292     4.450800e+02 -1.835500e+02
+15 3292     7.478998e+01 1.969400e+02
+0 3293     4.895699e+02 2.866900e+02
+1 3293     8.182100e+02 1.617700e+02
+6 3293     2.016500e+02 4.028400e+02
+7 3293     2.914399e+02 4.287300e+02
+8 3293     3.094600e+02 1.196600e+02
+11 3293     6.165400e+02 -4.394900e+02
+12 3293     3.111600e+02 3.994000e+02
+13 3293     6.560000e+02 3.228003e+01
+0 3294     -1.673000e+02 -5.324800e+02
+1 3294     -1.497600e+02 -4.265200e+02
+6 3294     -3.415002e+01 -6.888400e+02
+7 3294     -1.614200e+02 -4.577000e+02
+9 3294     6.583002e+01 -4.576200e+02
+0 3295     5.986500e+02 -5.030029e+00
+1 3295     8.262200e+02 -1.751000e+02
+6 3295     4.550300e+02 1.280300e+02
+7 3295     4.503600e+02 1.741200e+02
+10 3295     6.016000e+02 1.989500e+02
+12 3295     5.374500e+02 1.385300e+02
+13 3295     8.212400e+02 -2.046800e+02
+0 3296     -1.994100e+02 -5.257900e+02
+1 3296     -1.767400e+02 -4.097100e+02
+4 3296     -6.466700e+02 -2.274600e+02
+6 3296     -7.602002e+01 -6.969500e+02
+7 3296     -1.952500e+02 -4.577600e+02
+9 3296     3.058002e+01 -4.658800e+02
+0 3297     5.468101e+02 9.845001e+01
+1 3297     8.044800e+02 -4.959998e+01
+6 3297     3.619000e+02 2.241700e+02
+7 3297     3.845500e+02 2.642700e+02
+8 3297     4.313101e+02 1.417001e+01
+10 3297     5.334600e+02 3.123300e+02
+12 3297     4.491200e+02 2.344700e+02
+13 3297     7.549100e+02 -1.182900e+02
+15 3297     7.211600e+02 3.483100e+02
+0 3298     -1.907900e+02 -5.160200e+02
+1 3298     -1.654200e+02 -4.037300e+02
+4 3298     -6.410600e+02 -2.343300e+02
+6 3298     -7.210999e+01 -6.820400e+02
+7 3298     -1.893900e+02 -4.474800e+02
+9 3298     3.201001e+01 -4.557000e+02
+0 3299     -1.973400e+02 -5.125500e+02
+1 3299     -1.699700e+02 -3.982100e+02
+6 3299     -8.235999e+01 -6.824600e+02
+0 3300     -1.065100e+02 -2.186300e+02
+1 3300     3.369995e+00 -1.522900e+02
+8 3300     8.745001e+01 -2.744600e+02
+9 3300     -2.891998e+01 -1.469600e+02
+15 3300     -1.464200e+02 -1.732600e+02
+0 3301     -8.239990e+00 -1.050400e+02
+1 3301     1.213800e+02 -7.059998e+01
+4 3301     -3.454200e+02 -4.034800e+02
+6 3301     -5.809998e+00 -1.044100e+02
+7 3301     -7.540002e+01 6.770020e+00
+10 3301     -9.138000e+01 1.816998e+01
+12 3301     1.299988e+00 -5.250000e+01
+0 3302     6.183002e+01 -2.230500e+02
+1 3302     1.475601e+02 -2.054700e+02
+2 3302     3.183600e+02 -1.739400e+02
+4 3302     -4.473000e+02 -4.634700e+02
+6 3302     1.317200e+02 -2.037800e+02
+7 3302     2.071002e+01 -9.504999e+01
+8 3302     2.818500e+02 -1.962000e+02
+9 3302     1.666600e+02 -4.544000e+01
+12 3302     1.322100e+02 -1.599000e+02
+13 3302     4.646500e+02 -4.100300e+02
+15 3302     7.751001e+01 -1.566400e+02
+0 3303     -5.026001e+01 -1.713500e+02
+1 3303     6.073999e+01 -1.219500e+02
+4 3303     -3.874900e+02 -3.704300e+02
+6 3303     -2.415997e+01 -1.932500e+02
+12 3303     -2.623999e+01 -1.410000e+02
+0 3304     6.351200e+02 -7.915002e+01
+1 3304     8.410900e+02 -2.652400e+02
+3 3304     4.752300e+02 -3.933800e+02
+7 3304     4.964100e+02 1.098900e+02
+8 3304     5.525100e+02 -1.035000e+02
+10 3304     6.505500e+02 1.169100e+02
+15 3304     8.657400e+02 1.141200e+02
+0 3305     3.509998e+01 -2.861100e+02
+1 3305     1.117100e+02 -2.598200e+02
+6 3305     9.928003e+01 -3.029399e+02
+7 3305     -1.469971e+00 -1.685000e+02
+9 3305     1.422800e+02 -1.434100e+02
+15 3305     5.228998e+01 -2.454000e+02
+0 3306     3.870300e+02 -8.845001e+01
+1 3306     5.329900e+02 -1.820000e+02
+0 3307     3.309998e+00 2.016998e+01
+1 3307     1.709399e+02 4.745001e+01
+2 3307     1.388200e+02 4.079999e+01
+6 3307     -4.178998e+01 4.040997e+01
+10 3307     -9.215997e+01 1.643300e+02
+12 3307     -2.637000e+01 9.532001e+01
+13 3307     3.718101e+02 -2.047300e+02
+15 3307     -3.303003e+01 1.647800e+02
+0 3308     2.905699e+02 -1.094600e+02
+1 3308     4.184500e+02 -1.694000e+02
+7 3308     2.157600e+02 5.150000e+01
+10 3308     2.536200e+02 4.466998e+01
+12 3308     3.323000e+02 2.146002e+01
+13 3308     6.336400e+02 -2.957200e+02
+0 3309     6.116400e+02 -5.423999e+01
+1 3309     8.241899e+02 -2.311400e+02
+2 3309     5.689600e+02 -7.614001e+01
+7 3309     4.696400e+02 1.291600e+02
+8 3309     5.243300e+02 -9.144000e+01
+10 3309     6.205800e+02 1.432100e+02
+13 3309     8.407800e+02 -2.476900e+02
+15 3309     8.301000e+02 1.450900e+02
+0 3310     9.891998e+01 -2.142000e+02
+1 3310     1.874100e+02 -2.092100e+02
+4 3310     -4.471300e+02 -4.922600e+02
+7 3310     5.396002e+01 -8.046002e+01
+10 3310     4.306000e+01 -9.634998e+01
+12 3310     1.680300e+02 -1.404900e+02
+13 3310     4.920200e+02 -3.994200e+02
+15 3310     1.267600e+02 -1.398300e+02
+0 3311     5.015601e+02 3.294500e+02
+1 3311     8.445800e+02 2.044200e+02
+2 3311     3.008000e+02 2.178600e+02
+10 3311     4.633900e+02 5.832700e+02
+0 3312     6.586200e+02 -9.719000e+01
+1 3312     8.603101e+02 -2.924600e+02
+2 3312     6.341500e+02 -9.471002e+01
+6 3312     5.532000e+02 5.046002e+01
+7 3312     5.217000e+02 9.745001e+01
+8 3312     5.782500e+02 -1.094700e+02
+10 3312     6.792800e+02 9.821997e+01
+12 3312     6.318101e+02 6.014001e+01
+0 3313     6.495500e+02 -8.421997e+01
+1 3313     8.547000e+02 -2.754600e+02
+2 3313     6.204000e+02 -8.679999e+01
+3 3313     4.920900e+02 -3.898500e+02
+7 3313     5.109500e+02 1.080200e+02
+8 3313     5.668800e+02 -1.019800e+02
+0 3314     8.434003e+01 4.352002e+01
+1 3314     2.542200e+02 4.753003e+01
+6 3314     4.720001e+01 9.577002e+01
+7 3314     -7.609985e+00 1.715000e+02
+8 3314     2.138400e+02 2.737000e+01
+10 3314     -3.099976e-01 2.003200e+02
+12 3314     6.579999e+01 1.485100e+02
+15 3314     7.333002e+01 2.080600e+02
+0 3315     1.115800e+02 7.295001e+01
+1 3315     2.910900e+02 6.820001e+01
+2 3315     2.337300e+02 1.206600e+02
+4 3315     -2.361700e+02 -5.007400e+02
+5 3315     7.627800e+02 -5.858400e+02
+6 3315     6.221002e+01 1.347600e+02
+9 3315     8.070001e+01 1.944800e+02
+10 3315     2.828998e+01 2.373400e+02
+12 3315     8.485999e+01 1.868800e+02
+13 3315     4.610800e+02 -1.510100e+02
+15 3315     1.068200e+02 2.517100e+02
+0 3316     1.553400e+02 4.934998e+01
+1 3316     3.265601e+02 3.207001e+01
+2 3316     2.884399e+02 1.101500e+02
+3 3316     1.866400e+02 -2.018400e+02
+4 3316     -2.581900e+02 -5.371000e+02
+6 3316     1.198000e+02 1.231500e+02
+7 3316     6.184003e+01 1.882600e+02
+10 3316     8.131000e+01 2.140000e+02
+12 3316     1.434200e+02 1.730000e+02
+13 3316     5.032500e+02 -1.665500e+02
+15 3316     1.696600e+02 2.257700e+02
+0 3317     -5.742999e+01 6.390015e+00
+1 3317     1.135800e+02 5.046997e+01
+2 3317     6.010999e+01 -5.809998e+00
+6 3317     -1.222800e+02 -2.219971e+00
+7 3317     -1.487900e+02 1.065800e+02
+12 3317     -1.040400e+02 5.381000e+01
+13 3317     3.118101e+02 -2.235100e+02
+15 3317     -1.120300e+02 1.378500e+02
+0 3318     -1.164100e+02 9.330017e+00
+1 3318     6.342999e+01 6.879999e+01
+2 3318     -2.820001e+01 -3.988000e+01
+6 3318     -2.115100e+02 -2.819000e+01
+7 3318     -2.139100e+02 9.587000e+01
+8 3318     1.034003e+01 -7.373999e+01
+0 3319     1.523300e+02 -1.385200e+02
+1 3319     2.654301e+02 -1.524900e+02
+2 3319     3.583700e+02 -7.869000e+01
+3 3319     2.631899e+02 -3.789600e+02
+4 3319     -3.981100e+02 -5.346500e+02
+7 3319     9.104999e+01 2.820007e+00
+9 3319     1.928300e+02 3.383002e+01
+10 3319     9.723999e+01 -3.549988e+00
+13 3319     5.254600e+02 -3.292900e+02
+15 3319     1.898900e+02 -3.032001e+01
+0 3320     -6.419983e+00 4.749300e+02
+1 3320     3.643000e+02 4.853200e+02
+2 3320     -2.953700e+02 2.311900e+02
+3 3320     -4.266800e+02 -1.003000e+02
+5 3320     3.972100e+02 -1.762300e+02
+7 3320     -2.299000e+02 5.414700e+02
+0 3321     5.052300e+02 2.937700e+02
+1 3321     8.369900e+02 1.653100e+02
+6 3321     2.204800e+02 4.169100e+02
+7 3321     3.064700e+02 4.384700e+02
+8 3321     3.230700e+02 1.306400e+02
+12 3321     3.279500e+02 4.132400e+02
+13 3321     6.715100e+02 4.033002e+01
+0 3322     4.852700e+02 3.173600e+02
+1 3322     8.236100e+02 1.957000e+02
+2 3322     2.836200e+02 1.989100e+02
+6 3322     1.879900e+02 4.377200e+02
+7 3322     2.828000e+02 4.581800e+02
+10 3322     4.436200e+02 5.670900e+02
+12 3322     2.986600e+02 4.323300e+02
+0 3323     5.601801e+02 8.995999e+01
+1 3323     8.162200e+02 -6.388000e+01
+7 3323     4.002100e+02 2.576100e+02
+8 3323     4.471100e+02 1.135001e+01
+10 3323     5.490601e+02 3.051000e+02
+12 3323     4.681600e+02 2.285800e+02
+13 3323     7.696100e+02 -1.246000e+02
+15 3323     7.415000e+02 3.375200e+02
+0 3324     6.383800e+02 -2.328003e+01
+1 3324     8.622300e+02 -2.073400e+02
+2 3324     5.901600e+02 -2.759998e+01
+6 3324     5.086200e+02 1.255500e+02
+7 3324     4.915400e+02 1.648600e+02
+8 3324     5.429399e+02 -5.270999e+01
+10 3324     6.495300e+02 1.810800e+02
+12 3324     5.888500e+02 1.355700e+02
+13 3324     8.650900e+02 -2.149300e+02
+15 3324     8.633900e+02 1.919600e+02
+0 3325     -1.863600e+02 -5.011600e+02
+1 3325     -1.559100e+02 -3.915700e+02
+6 3325     -7.758002e+01 -6.642700e+02
+7 3325     -1.882600e+02 -4.310500e+02
+9 3325     2.464001e+01 -4.439000e+02
+0 3326     -4.899700e+02 1.481400e+02
+1 3326     -1.997400e+02 2.915100e+02
+7 3326     -6.661700e+02 1.445500e+02
+0 3327     2.262100e+02 -3.730700e+02
+1 3327     2.795000e+02 -4.096000e+02
+0 3328     1.618300e+02 6.766998e+01
+1 3328     3.392800e+02 4.795001e+01
+0 3329     1.406500e+02 6.794000e+01
+1 3329     3.183700e+02 5.459998e+01
+3 3329     1.623600e+02 -1.899500e+02
+4 3329     -2.423500e+02 -5.241000e+02
+7 3329     4.346002e+01 2.041400e+02
+8 3329     2.504400e+02 5.475000e+01
+9 3329     1.051400e+02 1.971300e+02
+10 3329     6.272998e+01 2.344900e+02
+0 3330     9.077002e+01 -2.020001e+01
+1 3330     2.400200e+02 -1.690002e+01
+2 3330     2.564800e+02 3.237000e+01
+3 3330     1.628400e+02 -2.764700e+02
+4 3330     -2.991700e+02 -4.861400e+02
+7 3330     1.104999e+01 1.096900e+02
+9 3330     1.032300e+02 1.215400e+02
+10 3330     1.496002e+01 1.262000e+02
+13 3330     4.593800e+02 -2.308100e+02
+15 3330     8.991998e+01 1.222400e+02
+0 3331     1.763400e+02 1.340002e+01
+1 3331     3.354800e+02 -9.580017e+00
+4 3331     -2.872200e+02 -5.550100e+02
+7 3331     8.876001e+01 1.562000e+02
+10 3331     1.093500e+02 1.747200e+02
+13 3331     5.271200e+02 -1.951700e+02
+15 3331     2.028300e+02 1.795800e+02
+0 3332     1.426899e+02 -2.359985e+00
+1 3332     2.967600e+02 -1.415997e+01
+7 3332     5.866998e+01 1.373300e+02
+10 3332     7.204999e+01 1.540200e+02
+15 3332     1.578900e+02 1.545200e+02
+0 3333     1.470200e+02 5.727002e+01
+1 3333     3.203300e+02 4.257001e+01
+7 3333     5.219000e+01 1.937800e+02
+13 3333     4.948300e+02 -1.603900e+02
+15 3333     1.571200e+02 2.353500e+02
+0 3334     -4.183100e+02 3.546300e+02
+1 3334     -7.635999e+01 4.684200e+02
+7 3334     -6.288600e+02 3.689200e+02
+15 3334     -6.458200e+02 5.678800e+02
+0 3335     -5.005100e+02 3.237300e+02
+1 3335     -1.615500e+02 4.586100e+02
+10 3335     -7.320300e+02 4.792400e+02
+15 3335     -7.561000e+02 5.140500e+02
+0 3336     -3.105400e+02 3.763300e+02
+1 3336     3.300000e+01 4.634700e+02
+7 3336     -5.205800e+02 4.047900e+02
+0 3337     -4.687200e+02 3.241800e+02
+1 3337     -1.293900e+02 4.513000e+02
+7 3337     -6.799300e+02 3.286000e+02
+10 3337     -6.923500e+02 4.825000e+02
+11 3337     -2.719700e+02 -4.197300e+02
+12 3337     -8.170800e+02 2.152700e+02
+15 3337     -7.109000e+02 5.185400e+02
+0 3338     -1.432500e+02 3.274600e+02
+1 3338     1.877700e+02 3.729500e+02
+2 3338     -4.164600e+02 4.913000e+01
+7 3338     -3.452600e+02 3.734700e+02
+8 3338     -2.626800e+02 3.026001e+01
+11 3338     2.138000e+01 -4.202000e+02
+13 3338     7.675000e+01 1.338000e+01
+14 3338     1.698800e+02 -4.248900e+02
+0 3339     9.453998e+01 5.453998e+01
+1 3339     2.684200e+02 5.481000e+01
+3 3339     1.301900e+02 -2.104900e+02
+4 3339     -2.463800e+02 -4.877400e+02
+7 3339     1.750000e+00 1.836100e+02
+8 3339     2.159400e+02 3.707999e+01
+9 3339     7.608002e+01 1.787900e+02
+10 3339     1.031000e+01 2.142000e+02
+12 3339     7.040997e+01 1.630400e+02
+15 3339     8.601001e+01 2.246100e+02
+0 3340     -8.149900e+02 1.065997e+01
+1 3340     -5.254200e+02 2.465900e+02
+0 3341     -5.508800e+02 1.377002e+01
+1 3341     -3.000800e+02 1.837900e+02
+10 3341     -7.486900e+02 9.921997e+01
+13 3341     -2.173000e+02 -2.761600e+02
+0 3342     -4.271500e+02 4.084003e+01
+1 3342     -1.803400e+02 1.763600e+02
+0 3343     -4.697300e+02 1.127300e+02
+1 3343     -1.936500e+02 2.538700e+02
+0 3344     -4.274800e+02 4.346997e+01
+1 3344     -1.796800e+02 1.789500e+02
+15 3344     -6.103900e+02 1.362300e+02
+0 3345     -2.563000e+02 2.051700e+02
+1 3345     3.615997e+01 2.851200e+02
+5 3345     1.558700e+02 -4.701000e+02
+0 3346     -2.116700e+02 2.175300e+02
+1 3346     8.319000e+01 2.853800e+02
+10 3346     -3.654600e+02 3.765800e+02
+0 3347     -6.019100e+02 1.828003e+01
+1 3347     -3.432600e+02 2.009000e+02
+0 3348     -5.949400e+02 1.906000e+01
+1 3348     -3.370200e+02 2.000700e+02
+0 3349     -4.821700e+02 1.736900e+02
+1 3349     -1.841800e+02 3.130800e+02
+7 3349     -6.656500e+02 1.710400e+02
+10 3349     -6.866500e+02 2.980300e+02
+0 3350     -6.058200e+02 4.190997e+01
+1 3350     -3.390500e+02 2.235800e+02
+7 3350     -7.669100e+02 1.946002e+01
+0 3351     -4.937100e+02 1.654700e+02
+1 3351     -1.971400e+02 3.082200e+02
+7 3351     -6.753500e+02 1.613700e+02
+0 3352     -6.019400e+02 3.235999e+01
+1 3352     -3.378600e+02 2.141400e+02
+7 3352     -7.602000e+02 1.039001e+01
+0 3353     5.007100e+02 4.392700e+02
+1 3353     8.801500e+02 3.228500e+02
+2 3353     2.721200e+02 3.247300e+02
+3 3353     1.303400e+02 -4.760010e+00
+6 3353     1.769500e+02 5.818500e+02
+0 3354     -1.145900e+02 2.421000e+02
+1 3354     1.860699e+02 2.828400e+02
+0 3355     -9.198999e+01 2.387200e+02
+1 3355     2.062000e+02 2.738600e+02
+7 3355     -2.735800e+02 2.951600e+02
+10 3355     -2.258300e+02 4.140500e+02
+0 3356     -4.461400e+02 1.384003e+01
+1 3356     -2.073500e+02 1.567600e+02
+15 3356     -6.320100e+02 9.387000e+01
+0 3357     -1.480300e+02 2.824500e+02
+1 3357     1.679100e+02 3.305800e+02
+7 3357     -3.409200e+02 3.289000e+02
+11 3357     1.610999e+01 -4.623000e+02
+0 3358     -4.540100e+02 1.309400e+02
+1 3358     -1.730800e+02 2.664600e+02
+0 3359     -4.163300e+02 3.539900e+02
+1 3359     -7.482001e+01 4.675900e+02
+7 3359     -6.270700e+02 3.683700e+02
+15 3359     -6.435400e+02 5.672800e+02
+0 3360     -3.294700e+02 2.219200e+02
+1 3360     -2.698999e+01 3.196200e+02
+7 3360     -5.153500e+02 2.425300e+02
+13 3360     -6.596997e+01 -8.633002e+01
+14 3360     -1.312000e+01 -5.440000e+02
+0 3361     -8.021800e+02 5.010999e+01
+1 3361     -5.029200e+02 2.782200e+02
+0 3362     -8.710400e+02 -3.271997e+01
+1 3362     -5.846400e+02 2.220000e+02
+0 3363     -8.249400e+02 1.634003e+01
+1 3363     -5.320800e+02 2.535100e+02
+0 3364     -2.402700e+02 2.019000e+02
+1 3364     4.991998e+01 2.775400e+02
+7 3364     -4.160400e+02 2.381700e+02
+0 3365     1.917700e+02 1.198999e+01
+1 3365     3.513000e+02 -1.592999e+01
+7 3365     1.040000e+02 1.568700e+02
+10 3365     1.278300e+02 1.739600e+02
+15 3365     2.242200e+02 1.797900e+02
+0 3366     2.126899e+02 5.544900e+02
+1 3366     6.195699e+02 5.126600e+02
+0 3367     -4.565400e+02 3.694200e+02
+1 3367     -1.103900e+02 4.921300e+02
+10 3367     -6.838600e+02 5.391100e+02
+0 3368     -3.846300e+02 3.441800e+02
+1 3368     -4.656000e+01 4.505800e+02
+11 3368     -1.966900e+02 -4.031800e+02
+12 3368     -7.132800e+02 2.597600e+02
+15 3368     -5.966000e+02 5.578500e+02
+0 3369     5.249100e+02 -2.786700e+02
+1 3369     6.337900e+02 -4.270700e+02
+2 3369     6.424399e+02 -2.489600e+02
+0 3370     1.959200e+02 4.928700e+02
+1 3370     5.857600e+02 4.526800e+02
+11 3370     3.245800e+02 -2.623500e+02
+0 3371     -4.946200e+02 1.579800e+02
+1 3371     -2.003500e+02 3.019500e+02
+7 3371     -6.747400e+02 1.557200e+02
+0 3372     -5.516200e+02 1.956000e+01
+1 3372     -2.988600e+02 1.894000e+02
+0 3373     -4.628500e+02 1.231400e+02
+1 3373     -1.840600e+02 2.615900e+02
+0 3374     1.818000e+02 4.979600e+02
+1 3374     5.699600e+02 4.616100e+02
+11 3374     3.118400e+02 -2.586600e+02
+0 3375     1.527500e+02 4.929600e+02
+1 3375     5.367300e+02 4.638700e+02
+11 3375     2.850699e+02 -2.639800e+02
+0 3376     -2.563400e+02 -5.492200e+02
+1 3376     -2.358700e+02 -4.119700e+02
+4 3376     -6.542200e+02 -1.838500e+02
+0 3377     5.476001e+01 2.263600e+02
+1 3377     3.472300e+02 2.222100e+02
+6 3377     -2.926700e+02 2.013200e+02
+0 3378     -2.256400e+02 5.112800e+02
+1 3378     1.486700e+02 5.755300e+02
+0 3379     3.039001e+01 1.241000e+02
+1 3379     2.321500e+02 1.406700e+02
+0 3380     -1.070001e+01 1.477500e+02
+1 3380     2.050400e+02 1.743000e+02
+10 3380     -1.212600e+02 3.127100e+02
+0 3381     -3.582400e+02 -5.343199e+02
+1 3381     -3.211200e+02 -3.656400e+02
+0 3382     2.576700e+02 3.519400e+02
+1 3382     6.050500e+02 2.911900e+02
+0 3383     2.177100e+02 3.439300e+02
+1 3383     5.597200e+02 2.935900e+02
+14 3383     5.525699e+02 -3.916500e+02
+0 3384     3.025300e+02 1.977500e+02
+1 3384     5.910100e+02 1.230500e+02
+0 3385     2.027700e+02 1.641500e+02
+1 3385     4.249301e+02 1.300100e+02
+10 3385     1.255700e+02 3.537800e+02
+0 3386     2.378500e+02 1.381100e+02
+1 3386     4.473199e+02 9.479001e+01
+0 3387     -5.623999e+01 9.982001e+01
+1 3387     1.463800e+02 1.398900e+02
+0 3388     3.006899e+02 -9.897998e+01
+1 3388     4.331500e+02 -1.623700e+02
+0 3389     2.071600e+02 -2.177100e+02
+1 3389     2.932400e+02 -2.476200e+02
+0 3390     2.475200e+02 -2.791600e+02
+1 3390     3.213199e+02 -3.234400e+02
+15 3390     3.400900e+02 -2.086500e+02
+0 3391     5.434399e+02 -2.755200e+02
+1 3391     6.556899e+02 -4.307200e+02
+0 3392     5.378700e+02 -2.999600e+02
+1 3392     6.387000e+02 -4.531801e+02
+0 3393     1.577400e+02 -4.230700e+02
+1 3393     1.925400e+02 -4.341700e+02
+0 3394     2.586200e+02 1.402400e+02
+1 3394     4.715400e+02 9.063000e+01
+10 3394     1.928500e+02 3.311900e+02
+0 3395     5.376000e+02 -2.790900e+02
+1 3395     6.479700e+02 -4.318700e+02
+12 3395     5.958000e+02 -1.450300e+02
+0 3396     5.262500e+02 -3.299800e+02
+1 3396     6.141700e+02 -4.786801e+02
+7 3396     4.547800e+02 -1.338700e+02
+0 3397     -2.010000e+02 -5.155000e+02
+1 3397     -1.745100e+02 -3.996100e+02
+0 3398     6.282000e+02 -3.921600e+02
+1 3398     7.004700e+02 -5.816000e+02
+0 3399     4.147900e+02 -4.719600e+02
+1 3399     4.373300e+02 -5.762800e+02
+0 3400     4.147900e+02 -4.719600e+02
+1 3400     4.373300e+02 -5.762800e+02
+0 3401     -6.163000e+01 2.863900e+02
+1 3401     2.538300e+02 3.115300e+02
+15 3401     -1.392600e+02 5.200000e+02
+0 3402     2.554500e+02 2.663400e+02
+1 3402     5.685699e+02 2.058800e+02
+0 3403     1.575000e+01 1.381400e+02
+1 3403     2.240500e+02 1.581300e+02
+0 3404     -3.723700e+02 -2.400024e+00
+1 3404     -1.455100e+02 1.219900e+02
+7 3404     -5.053800e+02 1.701001e+01
+0 3405     1.020700e+02 -1.367800e+02
+1 3405     2.167700e+02 -1.349300e+02
+0 3406     3.441000e+02 -1.496600e+02
+1 3406     4.619900e+02 -2.268300e+02
+0 3407     4.451100e+02 3.320800e+02
+1 3407     7.865500e+02 2.218900e+02
+6 3407     1.299400e+02 4.410600e+02
+7 3407     2.401600e+02 4.654700e+02
+11 3407     5.671700e+02 -3.970800e+02
+12 3407     2.459301e+02 4.345600e+02
+0 3408     2.461000e+02 1.341500e+02
+1 3408     4.542000e+02 8.807001e+01
+0 3409     -8.107001e+01 -5.223800e+02
+1 3409     -6.703998e+01 -4.464100e+02
+0 3410     3.620300e+02 3.944600e+02
+1 3410     7.359399e+02 3.056500e+02
+0 3411     3.828400e+02 3.734500e+02
+1 3411     7.503000e+02 2.782800e+02
+0 3412     2.842700e+02 -7.735999e+01
+1 3412     4.242800e+02 -1.336200e+02
+0 3413     9.996002e+01 -3.462400e+02
+1 3413     1.592500e+02 -3.398200e+02
+7 3413     6.876001e+01 -2.178000e+02
+15 3413     1.491400e+02 -3.184700e+02
+0 3414     4.148400e+02 -3.094000e+01
+1 3414     5.874000e+02 -1.337600e+02
+0 3415     -1.471100e+02 1.803800e+02
+1 3415     1.312400e+02 2.327400e+02
+0 3416     -1.397400e+02 -5.341801e+02
+1 3416     -1.257900e+02 -4.372000e+02
+0 3417     2.404600e+02 -1.434200e+02
+1 3417     3.528000e+02 -1.862700e+02
+7 3417     1.769301e+02 1.221002e+01
+0 3418     6.084800e+02 -3.943200e+02
+1 3418     6.773800e+02 -5.756200e+02
+10 3418     6.472500e+02 -2.484300e+02
+15 3418     8.609301e+02 -3.227300e+02
+0 3419     -2.782200e+02 3.416300e+02
+1 3419     5.640002e+01 4.215000e+02
+7 3419     -4.827500e+02 3.722100e+02
+0 3420     -8.280029e+00 1.438900e+02
+1 3420     2.052900e+02 1.701600e+02
+7 3420     -1.265600e+02 2.492900e+02
+10 3420     -1.181800e+02 3.086500e+02
+15 3420     -6.317999e+01 3.329300e+02
+0 3421     9.790997e+01 -2.331100e+02
+1 3421     1.786700e+02 -2.266500e+02
+10 3421     4.440002e+01 -1.181300e+02
+15 3421     1.275300e+02 -1.656200e+02
+0 3422     2.031400e+02 -3.448200e+02
+1 3422     2.613900e+02 -3.739500e+02
+7 3422     1.676300e+02 -1.975700e+02
+13 3422     5.818800e+02 -5.221801e+02
+15 3422     2.895200e+02 -3.030600e+02
+0 3423     1.741300e+02 1.909600e+02
+1 3423     4.051200e+02 1.646500e+02
+7 3423     4.259003e+01 3.207700e+02
+15 3423     1.817800e+02 4.232300e+02
+0 3424     2.206000e+02 -4.219600e+02
+1 3424     2.549900e+02 -4.552800e+02
+0 3425     2.244600e+02 -2.435800e+02
+1 3425     3.025100e+02 -2.790200e+02
+15 3425     3.017700e+02 -1.634600e+02
+0 3426     2.514000e+02 -2.686100e+02
+1 3426     3.275100e+02 -3.142400e+02
+15 3426     3.437500e+02 -1.940700e+02
+0 3427     1.550400e+02 1.770600e+02
+1 3427     3.833199e+02 1.559200e+02
+14 3427     6.536600e+02 -5.506500e+02
+15 3427     1.571899e+02 4.013900e+02
+0 3428     2.971899e+02 -2.825300e+02
+1 3428     3.751100e+02 -3.451200e+02
+10 3428     2.780601e+02 -1.531700e+02
+15 3428     4.098700e+02 -2.073500e+02
+0 3429     4.233400e+02 -1.003700e+02
+1 3429     5.666400e+02 -2.054300e+02
+7 3429     3.328900e+02 7.687000e+01
+15 3429     5.620000e+02 5.721997e+01
+0 3430     2.764600e+02 -2.946900e+02
+1 3430     3.499500e+02 -3.492100e+02
+10 3430     2.562600e+02 -1.692300e+02
+0 3431     3.840500e+02 -6.404999e+01
+1 3431     5.400601e+02 -1.564000e+02
+10 3431     3.570900e+02 1.072400e+02
+15 3431     5.035500e+02 1.013200e+02
+0 3432     -4.010999e+01 -3.477300e+02
+1 3432     3.107001e+01 -2.957000e+02
+15 3432     -3.815002e+01 -3.368100e+02
+0 3433     -7.238000e+01 -2.567800e+02
+1 3433     2.278998e+01 -1.979600e+02
+15 3433     -9.565002e+01 -2.199800e+02
+0 3434     2.091801e+02 1.704300e+02
+1 3434     4.327400e+02 1.343500e+02
+10 3434     1.322200e+02 3.611500e+02
+13 3434     5.088300e+02 -6.796997e+01
+14 3434     7.205200e+02 -5.536600e+02
+0 3435     2.724100e+02 -8.515002e+01
+1 3435     4.063101e+02 -1.403600e+02
+10 3435     2.297600e+02 7.051001e+01
+15 3435     3.485000e+02 5.656000e+01
+0 3436     2.887500e+02 -3.011700e+02
+1 3436     3.626000e+02 -3.607900e+02
+10 3436     2.704399e+02 -1.754000e+02
+15 3436     4.011000e+02 -2.336100e+02
+0 3437     2.919399e+02 -7.979999e+01
+1 3437     4.322400e+02 -1.388400e+02
+15 3437     3.751801e+02 6.737000e+01
+0 3438     3.860699e+02 -2.395300e+02
+1 3438     4.934100e+02 -3.356700e+02
+0 3439     5.331000e+01 -3.934800e+02
+1 3439     9.816998e+01 -3.696000e+02
+0 3440     3.976700e+02 -1.376100e+02
+1 3440     5.233800e+02 -2.332600e+02
+7 3440     3.185000e+02 3.934998e+01
+0 3441     -5.130200e+02 1.065600e+02
+1 3441     -2.346400e+02 2.590800e+02
+0 3442     -5.074700e+02 1.693900e+02
+1 3442     -2.081000e+02 3.154400e+02
+0 3443     3.628998e+01 4.853800e+02
+1 3443     4.113300e+02 4.862700e+02
+2 3443     -2.555800e+02 2.445900e+02
+0 3444     7.003003e+01 5.466800e+02
+1 3444     4.630601e+02 5.401500e+02
+5 3444     4.746200e+02 -9.935999e+01
+6 3444     -4.090800e+02 5.957300e+02
+9 3444     -3.487500e+02 3.396600e+02
+12 3444     -2.374100e+02 5.727600e+02
+0 3445     2.208300e+02 5.205600e+02
+1 3445     6.189301e+02 4.749800e+02
+2 3445     -9.485999e+01 2.849200e+02
+3 3445     -2.344800e+02 -4.791998e+01
+9 3445     -2.329400e+02 3.184400e+02
+0 3446     -4.501500e+02 2.212300e+02
+1 3446     -1.384600e+02 3.492700e+02
+0 3447     2.406100e+02 -1.989900e+02
+1 3447     3.348400e+02 -2.408100e+02
+7 3447     1.864399e+02 -4.185999e+01
+10 3447     2.046200e+02 -6.339001e+01
+13 3447     6.100800e+02 -3.765100e+02
+15 3447     3.184900e+02 -1.007000e+02
+0 3448     2.047700e+02 -8.503003e+01
+1 3448     3.351100e+02 -1.165200e+02
+7 3448     1.319200e+02 6.341998e+01
+10 3448     1.525300e+02 6.389001e+01
+0 3449     2.897500e+02 -1.592800e+02
+1 3449     4.014000e+02 -2.186700e+02
+10 3449     2.577200e+02 -1.272998e+01
+15 3449     3.821100e+02 -4.121997e+01
+0 3450     3.502000e+02 -1.290900e+02
+1 3450     4.769000e+02 -2.094200e+02
+7 3450     2.726300e+02 3.960999e+01
+10 3450     3.246100e+02 2.825000e+01
+0 3451     5.243800e+02 1.153003e+01
+1 3451     7.547500e+02 -1.338800e+02
+0 3452     3.696700e+02 -1.242500e+02
+1 3452     4.992500e+02 -2.115700e+02
+7 3452     2.895100e+02 4.682001e+01
+12 3452     4.120000e+02 1.796002e+01
+15 3452     4.892900e+02 1.741998e+01
+0 3453     6.585999e+01 -1.843400e+02
+1 3453     1.672700e+02 -1.702700e+02
+7 3453     1.390997e+01 -5.794000e+01
+10 3453     2.510010e+00 -6.503998e+01
+15 3453     7.854999e+01 -1.038000e+02
+0 3454     2.346300e+02 1.417600e+02
+1 3454     4.460100e+02 9.876999e+01
+7 3454     1.144800e+02 2.848300e+02
+10 3454     1.645100e+02 3.301400e+02
+13 3454     5.402500e+02 -8.725000e+01
+15 3454     2.696200e+02 3.640500e+02
+0 3455     1.444000e+01 -1.728000e+02
+1 3455     1.222600e+02 -1.428300e+02
+15 3455     8.119995e+00 -9.484003e+01
+0 3456     9.691998e+01 -1.922600e+02
+1 3456     1.943600e+02 -1.872100e+02
+0 3457     -2.460100e+02 -4.746000e+02
+1 3457     -2.003400e+02 -3.481200e+02
+4 3457     -5.920200e+02 -1.922700e+02
+6 3457     -1.664500e+02 -6.656200e+02
+9 3457     -5.106000e+01 -4.503700e+02
+0 3458     -2.696002e+01 -2.073000e+02
+1 3458     7.026001e+01 -1.643100e+02
+7 3458     -7.184998e+01 -9.491998e+01
+0 3459     2.004500e+02 3.074600e+02
+1 3459     5.270900e+02 2.619900e+02
+0 3460     1.125800e+02 -9.183002e+01
+1 3460     2.409200e+02 -9.420001e+01
+10 3460     4.642999e+01 4.627002e+01
+0 3461     -7.876600e+02 1.467999e+01
+1 3461     -5.021000e+02 2.433800e+02
+0 3462     -7.880100e+02 5.853003e+01
+1 3462     -4.884400e+02 2.823800e+02
+0 3463     -7.867900e+02 1.479980e+00
+1 3463     -5.056800e+02 2.317100e+02
+0 3464     -9.797998e+01 2.419500e+02
+1 3464     2.016899e+02 2.785700e+02
+11 3464     6.003003e+01 -5.006400e+02
+13 3464     1.352700e+02 -5.521997e+01
+14 3464     2.410100e+02 -5.161300e+02
+0 3465     6.369995e+00 5.390015e+00
+1 3465     1.689100e+02 3.217999e+01
+7 3465     -7.995001e+01 1.196400e+02
+15 3465     -2.677002e+01 1.455100e+02
+0 3466     -4.832400e+02 1.682100e+02
+1 3466     -1.875800e+02 3.085600e+02
+0 3467     6.100000e+02 -4.796002e+01
+1 3467     8.244600e+02 -2.240500e+02
+7 3467     4.678000e+02 1.346600e+02
+12 3467     5.619900e+02 9.503998e+01
+15 3467     8.275800e+02 1.535500e+02
+0 3468     6.153900e+02 -2.373300e+02
+1 3468     7.519900e+02 -4.200900e+02
+15 3468     8.541200e+02 -1.067900e+02
+0 3469     5.291801e+02 1.221200e+02
+1 3469     7.943300e+02 -1.990002e+01
+15 3469     6.939500e+02 3.784400e+02
+0 3470     -9.370001e+01 -5.274900e+02
+1 3470     -8.110999e+01 -4.463101e+02
+0 3471     3.385699e+02 -3.065200e+02
+1 3471     4.155900e+02 -3.842000e+02
+10 3471     3.278900e+02 -1.760200e+02
+0 3472     1.286200e+02 -3.324000e+02
+1 3472     1.904800e+02 -3.361200e+02
+10 3472     9.002002e+01 -2.281300e+02
+0 3473     -2.384400e+02 -5.127100e+02
+1 3473     -2.069300e+02 -3.848700e+02
+4 3473     -6.261600e+02 -1.983900e+02
+6 3473     -1.306900e+02 -7.024399e+02
+9 3473     -1.542999e+01 -4.733300e+02
+0 3474     1.921500e+02 -2.163700e+02
+1 3474     2.791200e+02 -2.416700e+02
+13 3474     5.750500e+02 -3.948900e+02
+0 3475     -8.682001e+01 -5.662100e+02
+1 3475     -8.909003e+01 -4.845200e+02
+0 3476     6.739399e+02 -3.689200e+02
+1 3476     7.620699e+02 -5.770000e+02
+7 3476     5.953199e+02 -1.440700e+02
+0 3477     7.097600e+02 -3.570300e+02
+1 3477     8.092100e+02 -5.800300e+02
+10 3477     7.609800e+02 -1.949800e+02
+0 3478     6.456899e+02 -3.358900e+02
+1 3478     7.449100e+02 -5.315800e+02
+0 3479     6.262500e+02 -2.310700e+02
+1 3479     7.665800e+02 -4.175800e+02
+0 3480     1.176200e+02 -5.656801e+02
+1 3480     1.038700e+02 -5.559900e+02
+6 3480     2.968000e+02 -5.945000e+02
+7 3480     1.292900e+02 -4.292800e+02
+9 3480     3.237600e+02 -3.734700e+02
+10 3480     1.021700e+02 -4.960300e+02
+0 3481     7.357500e+02 -3.470100e+02
+1 3481     8.444800e+02 -5.813900e+02
+0 3482     -2.185500e+02 -1.090000e+02
+1 3482     -5.067999e+01 -1.853003e+01
+0 3483     -2.879200e+02 -2.568400e+02
+1 3483     -1.589900e+02 -1.363200e+02
+15 3483     -3.816700e+02 -2.496300e+02
+0 3484     -7.885999e+01 -5.640400e+02
+1 3484     -8.069000e+01 -4.855100e+02
+0 3485     6.440400e+02 -2.656900e+02
+1 3485     7.728300e+02 -4.602200e+02
+0 3486     -6.321997e+01 -5.703800e+02
+1 3486     -6.865997e+01 -4.962500e+02
+7 3486     -4.692999e+01 -4.714000e+02
+0 3487     3.202000e+02 -2.915800e+02
+1 3487     4.006600e+02 -3.630300e+02
+0 3488     -6.888800e+02 -4.802100e+02
+1 3488     -5.807400e+02 -2.162500e+02
+0 3489     -2.686200e+02 -5.319800e+02
+1 3489     -2.410800e+02 -3.925000e+02
+0 3490     3.963700e+02 -9.503003e+01
+1 3490     5.401700e+02 -1.911400e+02
+15 3490     5.239301e+02 6.084998e+01
+0 3491     5.067600e+02 4.207700e+02
+1 3491     8.803700e+02 3.011000e+02
+12 3491     2.991500e+02 5.519800e+02
+0 3492     3.951001e+01 1.799300e+02
+1 3492     2.655800e+02 1.914400e+02
+7 3492     -8.710999e+01 2.904000e+02
+15 3492     -1.869995e+00 3.886500e+02
+0 3493     -1.787700e+02 1.547500e+02
+1 3493     9.214001e+01 2.167800e+02
+7 3493     -3.415900e+02 2.024100e+02
+15 3493     -2.832800e+02 3.224000e+02
+0 3494     1.596100e+02 6.104999e+01
+1 3494     3.347400e+02 4.250000e+01
+6 3494     1.183100e+02 1.364600e+02
+10 3494     8.529999e+01 2.285800e+02
+15 3494     1.740000e+02 2.427400e+02
+0 3495     2.349200e+02 4.616998e+01
+1 3495     4.086000e+02 4.609985e+00
+10 3495     1.741000e+02 2.187100e+02
+15 3495     2.799399e+02 2.323900e+02
+0 3496     -1.688800e+02 -6.401001e+01
+1 3496     -9.869995e+00 1.432001e+01
+7 3496     -2.522700e+02 1.428998e+01
+10 3496     -2.825100e+02 4.904999e+01
+15 3496     -2.524100e+02 2.716998e+01
+0 3497     -1.192900e+02 -1.368700e+02
+1 3497     8.409973e+00 -6.848999e+01
+15 3497     -1.772600e+02 -6.453003e+01
+0 3498     1.624500e+02 -2.443800e+02
+1 3498     2.401300e+02 -2.595600e+02
+6 3498     2.399800e+02 -1.949800e+02
+7 3498     1.215500e+02 -9.871002e+01
+15 3498     2.173700e+02 -1.727600e+02
+0 3499     -3.390997e+01 -2.652200e+02
+1 3499     5.271997e+01 -2.176400e+02
+15 3499     -4.396002e+01 -2.262400e+02
+0 3500     3.335400e+02 -2.157600e+02
+1 3500     4.286400e+02 -2.901800e+02
+15 3500     4.500300e+02 -1.120700e+02
+0 3501     -1.318400e+02 -2.076800e+02
+1 3501     -1.488000e+01 -1.340900e+02
+15 3501     -1.817700e+02 -1.619100e+02
+0 3502     2.928300e+02 -2.972700e+02
+1 3502     3.682400e+02 -3.585700e+02
+15 3502     4.065400e+02 -2.279800e+02
+0 3503     -5.623999e+01 9.982001e+01
+1 3503     1.463800e+02 1.398900e+02
+10 3503     -1.699400e+02 2.510200e+02
+15 3503     -1.227200e+02 2.645700e+02
+0 3504     -6.246002e+01 8.648999e+01
+1 3504     1.362200e+02 1.285200e+02
+7 3504     -1.717500e+02 1.829800e+02
+10 3504     -1.757800e+02 2.351300e+02
+15 3504     -1.291000e+02 2.458800e+02
+0 3505     -7.032001e+01 5.439001e+01
+1 3505     1.183100e+02 9.992999e+01
+10 3505     -1.813100e+02 1.974200e+02
+15 3505     -1.352100e+02 2.015000e+02
+0 3506     2.960022e+00 -1.155000e+02
+1 3506     1.282200e+02 -8.407001e+01
+15 3506     -1.534998e+01 -1.909998e+01
+0 3507     3.218700e+02 -2.503000e+02
+1 3507     4.089301e+02 -3.215800e+02
+12 3507     4.024600e+02 -1.364400e+02
+15 3507     4.391300e+02 -1.604400e+02
+0 3508     -8.507001e+01 4.704999e+01
+1 3508     1.044500e+02 9.589999e+01
+7 3508     -1.885100e+02 1.389900e+02
+15 3508     -1.532800e+02 1.888100e+02
+0 3509     -4.158600e+02 -1.704400e+02
+1 3509     -2.437000e+02 -2.019000e+01
+15 3509     -5.674500e+02 -1.520300e+02
+0 3510     2.655400e+02 -2.946100e+02
+1 3510     3.385699e+02 -3.464000e+02
+7 3510     2.198600e+02 -1.365700e+02
+10 3510     2.430900e+02 -1.703400e+02
+15 3510     3.673900e+02 -2.279100e+02
+0 3511     -3.069600e+02 3.052002e+01
+1 3511     -7.392999e+01 1.347600e+02
+7 3511     -4.439800e+02 6.217999e+01
+10 3511     -4.553800e+02 1.473100e+02
+15 3511     -4.422200e+02 1.371900e+02
+0 3512     5.500699e+02 8.164001e+01
+1 3512     8.030300e+02 -6.866998e+01
+15 3512     7.279600e+02 3.246900e+02
+0 3513     3.316998e+01 -1.019400e+02
+1 3513     1.627300e+02 -8.032001e+01
+10 3513     -4.372998e+01 2.603003e+01
+15 3513     2.410999e+01 3.169983e+00
+0 3514     2.742300e+02 -1.178400e+02
+1 3514     3.981801e+02 -1.718700e+02
+0 3515     -7.470001e+01 1.003003e+01
+1 3515     1.002500e+02 5.845001e+01
+7 3515     -1.692500e+02 1.061900e+02
+10 3515     -1.809500e+02 1.451400e+02
+13 3515     2.915800e+02 -2.232800e+02
+15 3515     -1.354900e+02 1.410200e+02
+0 3516     1.775300e+02 -2.396700e+02
+1 3516     2.561500e+02 -2.594700e+02
+6 3516     2.541200e+02 -1.838900e+02
+10 3516     1.365000e+02 -1.169800e+02
+15 3516     2.367100e+02 -1.641400e+02
+0 3517     9.790997e+01 -2.331100e+02
+1 3517     1.786700e+02 -2.266500e+02
+6 3517     1.751100e+02 -2.009000e+02
+10 3517     4.440002e+01 -1.181300e+02
+15 3517     1.275300e+02 -1.656200e+02
+0 3518     2.660500e+02 -2.807200e+02
+1 3518     3.419500e+02 -3.319900e+02
+15 3518     3.663500e+02 -2.089500e+02
+0 3519     2.928300e+02 -2.972700e+02
+1 3519     3.682400e+02 -3.585700e+02
+15 3519     4.065400e+02 -2.279800e+02
+0 3520     4.428003e+01 -1.384900e+02
+1 3520     1.591300e+02 -1.184100e+02
+15 3520     4.284998e+01 -4.446997e+01
+0 3521     1.231500e+02 -4.759003e+01
+1 3521     2.637200e+02 -5.390997e+01
+10 3521     5.396002e+01 9.915997e+01
+15 3521     1.378000e+02 8.914999e+01
+0 3522     -4.080400e+02 -1.746000e+02
+1 3522     -2.382600e+02 -2.632001e+01
+7 3522     -5.009600e+02 -1.589000e+02
+15 3522     -5.561800e+02 -1.571600e+02
+0 3523     -3.084800e+02 -4.711000e+02
+1 3523     -2.545100e+02 -3.248400e+02
+7 3523     -3.214100e+02 -4.283100e+02
+15 3523     -3.862300e+02 -5.429399e+02
+0 3524     -4.758002e+01 -1.488700e+02
+1 3524     7.165997e+01 -1.013200e+02
+15 3524     -7.870001e+01 -7.125000e+01
+0 3525     -1.913500e+02 -3.662000e+01
+1 3525     -2.016998e+01 4.609003e+01
+10 3525     -3.119900e+02 7.854999e+01
+15 3525     -2.859300e+02 6.095001e+01
+0 3526     3.357700e+02 4.334100e+02
+1 3526     7.232700e+02 3.529800e+02
+14 3526     6.468199e+02 -2.905400e+02
+0 3527     1.222100e+02 4.111700e+02
+1 3527     4.831200e+02 3.870700e+02
+5 3527     5.245000e+02 -2.425900e+02
+8 3527     -6.006000e+01 1.212700e+02
+14 3527     4.346000e+02 -3.248400e+02
+0 3528     2.064700e+02 3.322400e+02
+1 3528     5.432600e+02 2.848900e+02
+6 3528     -1.856200e+02 3.614200e+02
+0 3529     -3.268600e+02 2.971000e+02
+1 3529     -3.450012e+00 3.910900e+02
+0 3530     -3.236200e+02 2.894900e+02
+1 3530     -2.080017e+00 3.827900e+02
+0 3531     -3.260400e+02 2.865900e+02
+1 3531     -4.979980e+00 3.806400e+02
+8 3531     -4.085300e+02 -1.701001e+01
+0 3532     -3.315100e+02 2.846300e+02
+1 3532     -1.097998e+01 3.800500e+02
+8 3532     -4.135600e+02 -1.928000e+01
+0 3533     4.430100e+02 2.801000e+02
+1 3533     7.670800e+02 1.679300e+02
+10 3533     3.961600e+02 5.183200e+02
+0 3534     -3.456100e+02 2.795700e+02
+1 3534     -2.584998e+01 3.787900e+02
+0 3535     -3.824300e+02 2.726600e+02
+1 3535     -6.089001e+01 3.810000e+02
+7 3535     -5.800700e+02 2.862600e+02
+10 3535     -5.776900e+02 4.270200e+02
+0 3536     4.477000e+02 2.449600e+02
+1 3536     7.614301e+02 1.295100e+02
+0 3537     6.429999e+01 2.427300e+02
+1 3537     3.629200e+02 2.352700e+02
+0 3538     4.428400e+02 2.426500e+02
+1 3538     7.552000e+02 1.286700e+02
+0 3539     4.546700e+02 2.414400e+02
+1 3539     7.675200e+02 1.237400e+02
+0 3540     4.602400e+02 2.344200e+02
+1 3540     7.709200e+02 1.150200e+02
+0 3541     3.079700e+02 2.333400e+02
+1 3541     6.110500e+02 1.574000e+02
+7 3541     1.208700e+02 3.475100e+02
+10 3541     2.422600e+02 4.480000e+02
+0 3542     2.030900e+02 2.332300e+02
+1 3542     5.008199e+02 1.873100e+02
+6 3542     -1.235500e+02 2.524200e+02
+0 3543     4.714800e+02 2.310300e+02
+1 3543     7.816000e+02 1.080600e+02
+0 3544     4.541801e+02 2.233200e+02
+1 3544     7.613000e+02 1.050200e+02
+0 3545     4.564500e+02 2.211100e+02
+1 3545     7.627200e+02 1.020500e+02
+0 3546     -3.174700e+02 1.995000e+02
+1 3546     -2.315997e+01 2.955100e+02
+0 3547     -2.441700e+02 1.909100e+02
+1 3547     4.285999e+01 2.685800e+02
+0 3548     -2.341300e+02 1.907000e+02
+1 3548     5.209998e+01 2.655700e+02
+7 3548     -4.071800e+02 2.281600e+02
+0 3549     -1.988900e+02 1.821700e+02
+1 3549     8.294000e+01 2.484300e+02
+0 3550     -1.365400e+02 1.802200e+02
+1 3550     1.417200e+02 2.298300e+02
+6 3550     -4.982500e+02 9.079999e+01
+0 3551     -1.996600e+02 1.792600e+02
+1 3551     8.070001e+01 2.456700e+02
+0 3552     2.027700e+02 1.641500e+02
+1 3552     4.249301e+02 1.300100e+02
+13 3552     5.031600e+02 -7.310999e+01
+14 3552     7.133600e+02 -5.604100e+02
+0 3553     4.940100e+02 1.501800e+02
+1 3553     7.790601e+02 1.701001e+01
+0 3554     5.297800e+02 1.154800e+02
+1 3554     7.926100e+02 -2.753003e+01
+6 3554     3.363400e+02 2.362300e+02
+7 3554     3.657300e+02 2.769200e+02
+10 3554     5.114700e+02 3.318100e+02
+12 3554     4.258600e+02 2.461200e+02
+0 3555     -1.444700e+02 8.860999e+01
+1 3555     7.291998e+01 1.505500e+02
+10 3555     -2.715400e+02 2.294200e+02
+12 3555     -2.723000e+02 8.919000e+01
+0 3556     4.173999e+01 8.716000e+01
+1 3556     2.291000e+02 1.017500e+02
+5 3556     6.732600e+02 -5.705900e+02
+8 3556     1.565700e+02 4.726999e+01
+10 3556     -5.428998e+01 2.469200e+02
+15 3556     1.001001e+01 2.619900e+02
+0 3557     -3.157200e+02 6.790997e+01
+1 3557     -6.875000e+01 1.720700e+02
+0 3558     1.808600e+02 5.801001e+01
+1 3558     3.555400e+02 3.302002e+01
+0 3559     -3.183000e+02 5.342999e+01
+1 3559     -7.609003e+01 1.593500e+02
+0 3560     2.643101e+02 4.903003e+01
+1 3560     4.415500e+02 -2.049988e+00
+10 3560     2.081100e+02 2.250900e+02
+0 3561     5.320300e+02 4.750000e+00
+1 3561     7.604500e+02 -1.434800e+02
+0 3562     5.585000e+02 -2.440997e+01
+1 3562     7.777400e+02 -1.822400e+02
+0 3563     -4.069200e+02 -3.409003e+01
+1 3563     -1.883200e+02 1.020900e+02
+0 3564     -4.153300e+02 -3.967999e+01
+1 3564     -1.977900e+02 9.929001e+01
+0 3565     2.821200e+02 -1.036900e+02
+1 3565     4.119900e+02 -1.608300e+02
+10 3565     2.435500e+02 5.033002e+01
+0 3566     3.378800e+02 -1.407200e+02
+1 3566     4.591400e+02 -2.167100e+02
+0 3567     6.007900e+02 -2.325800e+02
+1 3567     7.371200e+02 -4.087600e+02
+6 3567     5.705601e+02 -9.829999e+01
+0 3568     6.366200e+02 -2.371800e+02
+1 3568     7.761600e+02 -4.277500e+02
+12 3568     6.734000e+02 -7.884003e+01
+0 3569     6.390900e+02 -2.580100e+02
+1 3569     7.698500e+02 -4.496600e+02
+10 3569     6.701700e+02 -8.883002e+01
+12 3569     6.855900e+02 -9.809003e+01
+0 3570     6.369700e+02 -2.874800e+02
+1 3570     7.549700e+02 -4.789800e+02
+7 3570     5.443600e+02 -7.754999e+01
+0 3571     -3.871997e+01 -3.773300e+02
+1 3571     1.872998e+01 -3.235900e+02
+15 3571     -3.385999e+01 -3.783000e+02
+0 3572     5.199500e+02 -3.962000e+02
+1 3572     5.797900e+02 -5.422000e+02
+7 3572     4.648900e+02 -1.953600e+02
+0 3573     5.327000e+02 -4.023900e+02
+1 3573     5.910900e+02 -5.535400e+02
+0 3574     4.912400e+02 -4.362800e+02
+1 3574     5.322400e+02 -5.706801e+02
+0 3575     -1.723900e+02 -5.386400e+02
+1 3575     -1.568600e+02 -4.306000e+02
+7 3575     -1.636400e+02 -4.654399e+02
+0 3576     -8.317999e+01 -5.398900e+02
+1 3576     -7.610999e+01 -4.618600e+02
+6 3576     6.623999e+01 -6.566500e+02
+0 3577     -1.236100e+02 -5.481100e+02
+1 3577     -1.159600e+02 -4.550900e+02
+6 3577     2.710999e+01 -6.843101e+02
+0 3578     -6.676001e+01 -5.655400e+02
+1 3578     -7.020001e+01 -4.906100e+02
+0 3579     -6.321997e+01 -5.703800e+02
+1 3579     -6.865997e+01 -4.962500e+02
+0 3580     3.463199e+02 4.355400e+02
+1 3580     7.361100e+02 3.523700e+02
+0 3581     3.395900e+02 4.344500e+02
+1 3581     7.278800e+02 3.529600e+02
+0 3582     1.822600e+02 3.957800e+02
+1 3582     5.431100e+02 3.550500e+02
+0 3583     2.102100e+02 3.834500e+02
+1 3583     5.675400e+02 3.354000e+02
+0 3584     1.928800e+02 3.411200e+02
+1 3584     5.325400e+02 2.976700e+02
+6 3584     -2.074600e+02 3.677000e+02
+0 3585     1.928800e+02 3.411200e+02
+1 3585     5.325400e+02 2.976700e+02
+6 3585     -2.074600e+02 3.677000e+02
+9 3585     -2.005900e+02 1.675300e+02
+10 3585     9.667999e+01 5.653500e+02
+14 3585     5.264301e+02 -3.959800e+02
+0 3586     2.542500e+02 3.130700e+02
+1 3586     5.863101e+02 2.523700e+02
+0 3587     -3.202400e+02 3.047700e+02
+1 3587     5.119995e+00 3.967200e+02
+0 3588     4.451500e+02 2.820000e+02
+1 3588     7.705200e+02 1.688400e+02
+0 3589     5.767999e+01 2.428300e+02
+1 3589     3.561300e+02 2.373800e+02
+6 3589     -3.013600e+02 2.204600e+02
+0 3590     4.933700e+02 2.421900e+02
+1 3590     8.069200e+02 1.146000e+02
+0 3591     -4.465700e+02 2.253100e+02
+1 3591     -1.335700e+02 3.521100e+02
+0 3592     4.802600e+02 2.237800e+02
+1 3592     7.884900e+02 9.809000e+01
+0 3593     -1.707200e+02 2.199900e+02
+1 3593     1.234600e+02 2.767200e+02
+0 3594     4.643700e+02 2.069100e+02
+1 3594     7.669700e+02 8.438000e+01
+0 3595     -2.237000e+02 2.022900e+02
+1 3595     6.610999e+01 2.739900e+02
+0 3596     4.622600e+02 1.998900e+02
+1 3596     7.622500e+02 7.802002e+01
+0 3597     4.425900e+02 1.891700e+02
+1 3597     7.385200e+02 7.291998e+01
+0 3598     -2.342400e+02 1.852300e+02
+1 3598     4.994000e+01 2.605400e+02
+0 3599     -1.470000e+02 1.773100e+02
+1 3599     1.304300e+02 2.297900e+02
+9 3599     -4.094700e+02 2.679993e+00
+0 3600     5.767500e+02 4.435999e+01
+1 3600     8.186400e+02 -1.160600e+02
+0 3601     -2.620900e+02 3.757001e+01
+1 3601     -2.950000e+01 1.290400e+02
+0 3602     6.118800e+02 -1.940002e+00
+1 3602     8.410000e+02 -1.761200e+02
+0 3603     5.712200e+02 -3.020020e+00
+1 3603     7.981600e+02 -1.639700e+02
+6 3603     4.198100e+02 1.186400e+02
+0 3604     5.132400e+02 -1.137900e+02
+1 3604     6.900601e+02 -2.568600e+02
+0 3605     -6.967999e+01 -1.243300e+02
+1 3605     6.075000e+01 -7.146002e+01
+0 3606     -3.736500e+02 -1.577200e+02
+1 3606     -2.017600e+02 -2.065997e+01
+0 3607     5.218500e+02 -1.759100e+02
+1 3607     6.732600e+02 -3.224000e+02
+0 3608     2.354100e+02 -1.765400e+02
+1 3608     3.380200e+02 -2.176200e+02
+0 3609     5.704900e+02 -2.202100e+02
+1 3609     7.083500e+02 -3.850700e+02
+0 3610     -4.565300e+02 -2.496500e+02
+1 3610     -3.078200e+02 -8.040997e+01
+0 3611     5.463101e+02 -3.691800e+02
+1 3611     6.197600e+02 -5.256899e+02
+0 3612     5.463101e+02 -3.691800e+02
+1 3612     6.197600e+02 -5.256899e+02
+0 3613     6.572300e+02 -3.770800e+02
+1 3613     7.397200e+02 -5.782800e+02
+0 3614     5.549399e+02 -3.794600e+02
+1 3614     6.244900e+02 -5.390200e+02
+0 3615     -6.645001e+01 -5.023900e+02
+1 3615     -4.607001e+01 -4.327900e+02
+0 3616     -1.168300e+02 -5.232700e+02
+1 3616     -1.003700e+02 -4.348300e+02
+0 3617     -9.972998e+01 -5.541700e+02
+1 3617     -9.645001e+01 -4.692600e+02
+6 3617     5.769000e+01 -6.793500e+02
+0 3618     1.966100e+02 4.227700e+02
+1 3618     5.661899e+02 3.791600e+02
+0 3619     1.862000e+02 3.705400e+02
+1 3619     5.370400e+02 3.286800e+02
+10 3619     8.632001e+01 5.997500e+02
+0 3620     5.057600e+02 3.472300e+02
+1 3620     8.549000e+02 2.222600e+02
+0 3621     -4.508100e+02 2.235800e+02
+1 3621     -1.380800e+02 3.517300e+02
+0 3622     -1.238700e+02 2.231900e+02
+1 3622     1.697600e+02 2.675900e+02
+0 3623     4.654000e+02 1.971300e+02
+1 3623     7.644301e+02 7.459003e+01
+0 3624     -2.168100e+02 1.699700e+02
+1 3624     6.120001e+01 2.415500e+02
+0 3625     3.642100e+02 2.028003e+01
+1 3625     5.504200e+02 -6.591998e+01
+7 3625     2.510601e+02 1.799400e+02
+0 3626     4.124900e+02 1.770001e+01
+1 3626     6.063101e+02 -8.445001e+01
+0 3627     5.451300e+02 -3.520020e+00
+1 3627     7.715100e+02 -1.562300e+02
+7 3627     3.970300e+02 1.647000e+02
+10 3627     5.392600e+02 1.949700e+02
+13 3627     7.641200e+02 -2.109200e+02
+0 3628     -3.740900e+02 -1.708800e+02
+1 3628     -2.073200e+02 -3.244000e+01
+6 3628     -5.495800e+02 -3.930000e+02
+0 3629     -3.839700e+02 -1.716800e+02
+1 3629     -2.160300e+02 -3.019000e+01
+0 3630     4.526001e+01 -1.906900e+02
+1 3630     1.445800e+02 -1.699000e+02
+10 3630     -2.081000e+01 -7.492999e+01
+0 3631     6.269800e+02 -2.220000e+02
+1 3631     7.709000e+02 -4.076400e+02
+0 3632     6.010400e+02 -2.290000e+02
+1 3632     7.389900e+02 -4.054400e+02
+0 3633     6.634900e+02 -2.845700e+02
+1 3633     7.867400e+02 -4.867200e+02
+0 3634     6.419399e+02 -2.982200e+02
+1 3634     7.561300e+02 -4.918600e+02
+0 3635     4.829900e+02 -3.849800e+02
+1 3635     5.445601e+02 -5.170000e+02
+0 3636     -1.538400e+02 -5.241200e+02
+1 3636     -1.346100e+02 -4.234300e+02
+6 3636     -2.317999e+01 -6.737100e+02
+7 3636     -1.485500e+02 -4.466500e+02
+0 3637     -1.228800e+02 -5.434600e+02
+1 3637     -1.136300e+02 -4.512500e+02
+7 3637     -1.134500e+02 -4.584500e+02
+9 3637     1.134300e+02 -4.469600e+02
+0 3638     -1.276400e+02 -5.553400e+02
+1 3638     -1.224900e+02 -4.606100e+02
+0 3639     1.192900e+02 -5.608400e+02
+1 3639     1.073100e+02 -5.518500e+02
+6 3639     2.950600e+02 -5.900100e+02
+10 3639     1.026700e+02 -4.912300e+02
+0 3640     1.947000e+02 4.025000e+02
+1 3640     5.585300e+02 3.585400e+02
+8 3640     -5.359985e+00 1.155300e+02
+11 3640     3.329100e+02 -3.428900e+02
+0 3641     1.949000e+02 3.967100e+02
+1 3641     5.567400e+02 3.527100e+02
+13 3641     3.489200e+02 9.357001e+01
+14 3641     5.101300e+02 -3.366100e+02
+0 3642     3.808300e+02 3.537500e+02
+1 3642     7.395000e+02 2.588500e+02
+0 3643     3.664000e+02 3.329800e+02
+1 3643     7.150800e+02 2.410900e+02
+0 3644     -2.945600e+02 3.269700e+02
+1 3644     3.707001e+01 4.112100e+02
+0 3645     -3.092800e+02 2.976700e+02
+1 3645     1.403998e+01 3.868200e+02
+0 3646     -1.479100e+02 1.896400e+02
+1 3646     1.340200e+02 2.419900e+02
+0 3647     -1.838500e+02 1.884100e+02
+1 3647     9.937000e+01 2.502400e+02
+0 3648     -1.430000e+02 1.738300e+02
+1 3648     1.334400e+02 2.253100e+02
+0 3649     -1.785100e+02 1.701700e+02
+1 3649     9.740997e+01 2.314000e+02
+0 3650     -1.580300e+02 1.691500e+02
+1 3650     1.170400e+02 2.248200e+02
+0 3651     1.427000e+02 -2.158500e+02
+1 3651     2.300400e+02 -2.251500e+02
+0 3652     6.038000e+02 -2.239000e+02
+1 3652     7.445300e+02 -4.017600e+02
+0 3653     7.407800e+02 -3.102100e+02
+1 3653     8.664900e+02 -5.455699e+02
+7 3653     6.403500e+02 -8.056000e+01
+0 3654     6.008800e+02 -3.207200e+02
+1 3654     7.006801e+02 -4.982900e+02
+0 3655     1.785300e+02 -3.478600e+02
+1 3655     2.364800e+02 -3.683200e+02
+0 3656     5.537900e+02 -3.749800e+02
+1 3656     6.254200e+02 -5.342800e+02
+0 3657     5.553300e+02 -3.899300e+02
+1 3657     6.203101e+02 -5.498700e+02
+0 3658     4.078199e+02 3.688300e+02
+1 3658     7.772700e+02 2.668700e+02
+0 3659     3.833600e+02 3.638200e+02
+1 3659     7.464399e+02 2.684300e+02
+0 3660     -2.037800e+02 1.715100e+02
+1 3660     7.414001e+01 2.394200e+02
+0 3661     -3.433200e+02 2.838200e+02
+1 3661     -2.183002e+01 3.824500e+02
+0 3662     -3.433200e+02 2.838200e+02
+1 3662     -2.183002e+01 3.824500e+02
+0 3663     1.019200e+02 -5.572100e+02
+1 3663     9.270001e+01 -5.418900e+02
+0 3664     -3.409600e+02 3.075100e+02
+1 3664     -1.453003e+01 4.047500e+02
+5 3664     5.226001e+01 -3.571500e+02
+0 3665     -3.355800e+02 2.975200e+02
+1 3665     -1.195001e+01 3.935800e+02
+0 3666     -4.386700e+02 2.588500e+02
+1 3666     -1.170800e+02 3.819400e+02
+0 3667     -3.196000e+02 2.951400e+02
+1 3667     3.169983e+00 3.872400e+02
+0 3668     3.103400e+02 -2.624200e+02
+1 3668     3.943000e+02 -3.292400e+02
+12 3668     3.928300e+02 -1.560000e+02
+15 3668     4.252100e+02 -1.784000e+02
+0 3669     5.854800e+02 1.832900e+02
+1 3669     8.719600e+02 2.790002e+01
+10 3669     5.714600e+02 4.180400e+02
+0 3670     3.143000e+02 -6.234003e+01
+1 3670     4.607600e+02 -1.302700e+02
+7 3670     2.275900e+02 9.903000e+01
+10 3670     2.765000e+02 1.015800e+02
+13 3670     6.419399e+02 -2.549100e+02
+15 3670     4.045300e+02 9.470999e+01
+0 3671     -1.943400e+02 -4.537700e+02
+1 3671     -1.458200e+02 -3.457000e+02
+0 3672     -2.454900e+02 -5.802400e+02
+1 3672     -2.380600e+02 -4.433700e+02
+9 3672     2.703998e+01 -5.247300e+02
+0 3673     5.297998e+01 4.916900e+02
+1 3673     4.305300e+02 4.877600e+02
+0 3674     3.541000e+02 -3.287600e+02
+1 3674     4.227100e+02 -4.118300e+02
+0 3675     3.502000e+02 5.475600e+02
+1 3675     7.744600e+02 4.714700e+02
+0 3676     -1.582000e+02 3.185800e+02
+1 3676     1.703300e+02 3.680300e+02
+11 3676     7.719971e+00 -4.285300e+02
+0 3677     1.671100e+02 5.281900e+02
+1 3677     5.623000e+02 4.964500e+02
+0 3678     3.183101e+02 5.467600e+02
+1 3678     7.374800e+02 4.785200e+02
+0 3679     3.577900e+02 -2.521002e+01
+1 3679     5.244500e+02 -1.082500e+02
+15 3679     4.616700e+02 1.516500e+02
+0 3680     2.689700e+02 8.599854e-01
+1 3680     4.301300e+02 -5.165997e+01
+15 3680     3.329301e+02 1.749700e+02
+0 3681     1.849000e+02 8.101001e+01
+1 3681     3.680300e+02 5.467999e+01
+0 3682     -6.335900e+02 -3.714000e+02
+1 3682     -5.007100e+02 -1.376600e+02
+0 3683     6.331000e+01 -7.873999e+01
+1 3683     1.970100e+02 -6.648999e+01
+0 3684     3.761500e+02 4.847100e+02
+1 3684     7.849800e+02 3.965700e+02
+0 3685     -2.557600e+02 3.261600e+02
+1 3685     7.560999e+01 4.007000e+02
+2 3685     -5.339100e+02 4.198999e+01
+15 3685     -4.130800e+02 5.491900e+02
+0 3686     3.614100e+02 5.469100e+02
+1 3686     7.874301e+02 4.681100e+02
+5 3686     7.638500e+02 -8.973999e+01
+12 3686     6.201001e+01 6.103900e+02
+0 3687     3.814200e+02 4.817700e+02
+1 3687     7.907000e+02 3.924700e+02
+0 3688     3.277300e+02 5.120100e+02
+1 3688     7.376600e+02 4.391300e+02
+0 3689     2.613000e+01 -7.321002e+01
+1 3689     1.640400e+02 -4.987000e+01
+15 3689     1.040002e+01 4.140997e+01
+0 3690     2.374700e+02 3.866998e+01
+1 3690     4.087000e+02 -3.919983e+00
+13 3690     5.704301e+02 -1.700800e+02
+0 3691     2.532000e+02 4.583600e+02
+1 3691     6.381899e+02 4.012000e+02
+14 3691     5.624200e+02 -2.684300e+02
+0 3692     1.450300e+02 4.718600e+02
+1 3692     5.237200e+02 4.435500e+02
+0 3693     -3.520700e+02 4.695000e+02
+1 3693     1.385999e+01 5.640500e+02
+0 3694     2.675500e+02 -3.130005e+00
+1 3694     4.271500e+02 -5.508002e+01
+7 3694     1.764600e+02 1.520400e+02
+10 3694     2.165900e+02 1.648200e+02
+15 3694     3.312200e+02 1.692600e+02
+0 3695     3.455400e+02 4.671100e+02
+1 3695     7.446400e+02 3.861200e+02
+7 3695     1.063500e+02 5.697900e+02
+0 3696     2.078400e+02 3.443100e+02
+1 3696     5.495800e+02 2.968200e+02
+6 3696     -1.919300e+02 3.753800e+02
+13 3696     3.734301e+02 5.048999e+01
+14 3696     5.419200e+02 -3.921900e+02
+0 3697     3.526300e+02 4.851200e+02
+1 3697     7.581200e+02 4.034600e+02
+5 3697     7.574100e+02 -1.560300e+02
+6 3697     -9.751999e+01 5.747100e+02
+12 3697     6.495001e+01 5.400400e+02
+14 3697     6.591300e+02 -2.349300e+02
+0 3698     2.837600e+02 5.317600e+02
+1 3698     6.931600e+02 4.712600e+02
+0 3699     1.603199e+02 1.140002e+01
+1 3699     3.188600e+02 -6.710022e+00
+15 3699     1.811300e+02 1.745600e+02
+0 3700     1.945500e+02 4.797200e+02
+1 3700     5.797900e+02 4.386600e+02
+0 3701     4.637000e+01 3.815997e+01
+1 3701     2.164100e+02 5.312000e+01
+7 3701     -4.359003e+01 1.589000e+02
+10 3701     -4.028998e+01 1.885700e+02
+15 3701     2.290997e+01 1.954000e+02
+0 3702     2.333101e+02 -1.993100e+02
+1 3702     3.275200e+02 -2.388200e+02
+15 3702     3.086400e+02 -1.022000e+02
+0 3703     2.222200e+02 4.131800e+02
+1 3703     5.914000e+02 3.621300e+02
+13 3703     3.682600e+02 1.087300e+02
+14 3703     5.340900e+02 -3.185000e+02
+0 3704     2.238300e+02 4.501300e+02
+1 3704     6.036000e+02 4.004800e+02
+0 3705     1.524200e+02 5.251100e+02
+1 3705     5.460100e+02 4.970100e+02
+0 3706     1.149800e+02 5.046100e+02
+1 3706     5.001100e+02 4.851100e+02
+0 3707     1.885200e+02 5.347700e+02
+1 3707     5.879200e+02 4.980300e+02
+14 3707     4.944301e+02 -1.923200e+02
+0 3708     2.206700e+02 4.455200e+02
+1 3708     5.987800e+02 3.963300e+02
+6 3708     -2.281500e+02 4.973600e+02
+11 3708     3.519700e+02 -3.027600e+02
+12 3708     -6.178998e+01 4.758300e+02
+0 3709     3.547600e+02 5.406500e+02
+1 3709     7.775000e+02 4.628600e+02
+5 3709     7.571899e+02 -9.685999e+01
+14 3709     6.559700e+02 -1.770100e+02
+0 3710     3.585300e+02 5.440700e+02
+1 3710     7.833000e+02 4.658300e+02
+2 3710     1.787000e+01 3.122800e+02
+14 3710     6.592300e+02 -1.731700e+02
+0 3711     2.460200e+02 5.123500e+02
+1 3711     6.447800e+02 4.601300e+02
+0 3712     1.125800e+02 -9.183002e+01
+1 3712     2.409200e+02 -9.420001e+01
+0 3713     4.084998e+01 -1.458900e+02
+1 3713     1.539900e+02 -1.246000e+02
+7 3713     -1.698999e+01 -2.365002e+01
+0 3714     5.196801e+02 -1.669800e+02
+1 3714     6.749800e+02 -3.127100e+02
+7 3714     4.110200e+02 1.242999e+01
+12 3714     5.235100e+02 -4.290997e+01
+0 3715     -4.696500e+02 -2.280100e+02
+1 3715     -3.117300e+02 -5.715997e+01
+0 3716     3.643600e+02 3.380600e+02
+1 3716     7.149200e+02 2.473100e+02
+6 3716     -1.021997e+01 4.098300e+02
+0 3717     1.834500e+02 4.921300e+02
+1 3717     5.700800e+02 4.547800e+02
+11 3717     3.141500e+02 -2.638300e+02
+0 3718     2.477300e+02 3.510700e+02
+1 3718     5.948400e+02 2.927000e+02
+0 3719     4.505900e+02 2.879200e+02
+1 3719     7.781600e+02 1.739500e+02
+10 3719     4.047300e+02 5.283500e+02
+0 3720     -1.261000e+02 4.587000e+02
+1 3720     2.368500e+02 4.990100e+02
+2 3720     -4.080500e+02 2.109900e+02
+12 3720     -4.351000e+02 4.417300e+02
+0 3721     -1.191200e+02 6.158002e+01
+1 3721     8.151001e+01 1.190300e+02
+0 3722     -6.123999e+01 -1.658002e+01
+1 3722     1.030600e+02 2.931000e+01
+10 3722     -1.626100e+02 1.153800e+02
+0 3723     3.506000e+01 4.793400e+02
+1 3723     4.082200e+02 4.794900e+02
+0 3724     -3.329999e+01 -1.798800e+02
+1 3724     7.348999e+01 -1.349300e+02
+0 3725     1.370001e+01 -2.167300e+02
+1 3725     1.046900e+02 -1.842100e+02
+10 3725     -5.440002e+01 -1.081100e+02
+15 3725     1.159998e+01 -1.543600e+02
+0 3726     5.119995e+00 8.357001e+01
+1 3726     1.939700e+02 1.072400e+02
+10 3726     -9.602002e+01 2.386800e+02
+15 3726     -3.875000e+01 2.519300e+02
+0 3727     -8.681400e+02 -2.117999e+01
+1 3727     -5.789200e+02 2.306400e+02
+0 3728     -8.686800e+02 -3.962000e+01
+1 3728     -5.851400e+02 2.147000e+02
+0 3729     -8.730700e+02 -2.467999e+01
+1 3729     -5.837300e+02 2.291000e+02
+0 3730     -8.664600e+02 -6.396997e+01
+1 3730     -5.908600e+02 1.930800e+02
+0 3731     -3.163200e+02 1.749900e+02
+1 3731     -3.082001e+01 2.721900e+02
+0 3732     -2.743300e+02 1.901000e+02
+1 3732     1.378003e+01 2.755500e+02
+0 3733     -7.878000e+02 4.977002e+01
+1 3733     -4.913600e+02 2.749700e+02
+0 3734     -4.585100e+02 8.787000e+01
+1 3734     -1.921600e+02 2.279700e+02
+0 3735     -8.655500e+02 -2.790002e+01
+1 3735     -5.788600e+02 2.245000e+02
+0 3736     -4.439600e+02 4.770001e+01
+1 3736     -1.930400e+02 1.872300e+02
+0 3737     -4.439600e+02 4.770001e+01
+1 3737     -1.930400e+02 1.872300e+02
+0 3738     -4.101100e+02 4.865002e+01
+1 3738     -1.622100e+02 1.792800e+02
+0 3739     -4.596500e+02 2.849000e+02
+1 3739     -1.299700e+02 4.116200e+02
+7 3739     -6.641300e+02 2.878600e+02
+0 3740     -4.505200e+02 -5.200012e+00
+1 3740     -2.174800e+02 1.403100e+02
+2 3740     -5.892300e+02 -2.918400e+02
+0 3741     5.231400e+02 -1.409700e+02
+1 3741     6.897500e+02 -2.880200e+02
+0 3742     -5.900269e-01 7.428003e+01
+1 3742     1.854900e+02 1.010100e+02
+10 3742     -1.023600e+02 2.277400e+02
+0 3743     -8.755800e+02 -1.501001e+01
+1 3743     -5.826400e+02 2.383200e+02
+0 3744     -6.650800e+02 3.969300e+02
+1 3744     -2.734200e+02 5.594400e+02
+0 3745     2.899800e+02 1.971400e+02
+1 3745     5.774700e+02 1.261400e+02
+10 3745     2.246600e+02 4.031100e+02
+0 3746     3.177700e+02 2.223100e+02
+1 3746     6.168000e+02 1.433900e+02
+7 3746     1.328200e+02 3.386900e+02
+0 3747     2.475699e+02 3.360700e+02
+1 3747     5.878400e+02 2.776100e+02
+7 3747     3.841998e+01 4.342600e+02
+0 3748     3.557500e+02 5.011500e+02
+1 3748     7.669200e+02 4.202300e+02
+6 3748     -9.720001e+01 5.956200e+02
+12 3748     6.504999e+01 5.587200e+02
+14 3748     6.606500e+02 -2.178800e+02
+0 3749     -3.124100e+02 -1.242300e+02
+1 3749     -1.343100e+02 -7.119995e+00
+0 3750     -8.152002e+01 2.263600e+02
+1 3750     2.125400e+02 2.587400e+02
+0 3751     -4.087800e+02 -7.163000e+01
+1 3751     -2.032900e+02 6.776001e+01
+15 3751     -5.697800e+02 -1.771002e+01
+0 3752     3.493700e+02 5.610800e+02
+1 3752     7.769000e+02 4.861500e+02
+14 3752     6.485400e+02 -1.564900e+02
+0 3753     -8.940002e+00 1.165000e+02
+1 3753     1.934301e+02 1.437200e+02
+12 3753     -8.203998e+01 1.909200e+02
+0 3754     2.289200e+02 -4.129100e+02
+1 3754     2.644800e+02 -4.492300e+02
+0 3755     -2.479300e+02 -5.147600e+02
+1 3755     -2.161300e+02 -3.834800e+02
+6 3755     -1.408700e+02 -7.106100e+02
+0 3756     3.508900e+02 4.895400e+02
+1 3756     7.569800e+02 4.085500e+02
+5 3756     7.555601e+02 -1.514300e+02
+14 3756     6.567200e+02 -2.302000e+02
+0 3757     -5.680300e+02 6.010010e+00
+1 3757     -3.175100e+02 1.811600e+02
+10 3757     -7.683400e+02 8.898999e+01
+0 3758     3.438900e+02 5.194500e+02
+1 3758     7.582900e+02 4.428700e+02
+11 3758     4.577800e+02 -2.307700e+02
+0 3759     -8.515800e+02 -1.647400e+02
+1 3759     -6.108700e+02 1.015900e+02
+0 3760     -4.653700e+02 2.938900e+02
+1 3760     -1.337400e+02 4.215100e+02
+0 3761     -4.490600e+02 -1.869995e+00
+1 3761     -2.145100e+02 1.427600e+02
+0 3762     -3.421900e+02 8.409000e+01
+1 3762     -8.733002e+01 1.940600e+02
+0 3763     2.042300e+02 5.116700e+02
+1 3763     5.987300e+02 4.698800e+02
+0 3764     2.753500e+02 4.797900e+02
+1 3764     6.686500e+02 4.176800e+02
+0 3765     1.915400e+02 5.187800e+02
+1 3765     5.870601e+02 4.805600e+02
+11 3765     3.185400e+02 -2.397500e+02
+0 3766     2.834600e+02 4.919400e+02
+1 3766     6.832700e+02 4.300300e+02
+0 3767     -1.470100e+02 2.441600e+02
+1 3767     1.549200e+02 2.937500e+02
+0 3768     -1.509000e+02 2.841100e+02
+1 3768     1.654301e+02 3.331500e+02
+10 3768     -3.013700e+02 4.624200e+02
+0 3769     2.524700e+02 2.782700e+02
+1 3769     5.703199e+02 2.181600e+02
+6 3769     -9.717001e+01 3.146400e+02
+13 3769     4.298700e+02 -3.400269e-01
+14 3769     6.149500e+02 -4.600100e+02
+0 3770     -2.468900e+02 -4.181600e+02
+1 3770     -1.805600e+02 -2.964600e+02
+15 3770     -3.085500e+02 -4.615100e+02
+0 3771     -1.119900e+02 2.551600e+02
+1 3771     1.932600e+02 2.949900e+02
+10 3771     -2.522800e+02 4.309200e+02
+15 3771     -2.050000e+02 4.690900e+02
+0 3772     -4.729999e+01 3.028000e+02
+1 3772     2.741400e+02 3.239700e+02
+6 3772     -4.735700e+02 2.578700e+02
+0 3773     -2.393400e+02 1.980400e+02
+1 3773     4.997998e+01 2.737400e+02
+0 3774     -1.134700e+02 2.516200e+02
+1 3774     1.903199e+02 2.921600e+02
+0 3775     2.865300e+02 -1.205600e+02
+1 3775     4.092000e+02 -1.786200e+02
+10 3775     2.493199e+02 3.220001e+01
+0 3776     -6.734998e+01 2.869800e+02
+1 3776     2.483600e+02 3.139900e+02
+6 3776     -4.878000e+02 2.334900e+02
+15 3776     -1.473700e+02 5.197200e+02
+0 3777     -2.092200e+02 -4.780500e+02
+1 3777     -1.680400e+02 -3.631200e+02
+0 3778     -2.367600e+02 1.732500e+02
+1 3778     4.353003e+01 2.497500e+02
+0 3779     -1.410400e+02 1.554700e+02
+1 3779     1.282600e+02 2.073900e+02
+0 3780     -1.991400e+02 2.368000e+02
+1 3780     1.020700e+02 3.004300e+02
+0 3781     2.571700e+02 5.645001e+01
+1 3781     4.365100e+02 7.440002e+00
+0 3782     -4.862400e+02 1.795700e+02
+1 3782     -1.855100e+02 3.195200e+02
+0 3783     6.125601e+02 1.570007e+00
+1 3783     8.428800e+02 -1.727900e+02
+0 3784     2.412200e+02 4.719200e+02
+1 3784     6.286600e+02 4.184500e+02
+6 3784     -2.116700e+02 5.349400e+02
+12 3784     -4.559998e+01 5.094900e+02
+0 3785     3.608900e+02 -5.109003e+01
+1 3785     5.163900e+02 -1.350800e+02
+6 3785     3.295500e+02 5.815002e+01
+10 3785     3.291801e+02 1.197200e+02
+12 3785     3.743101e+02 9.254999e+01
+15 3785     4.685000e+02 1.164900e+02
+0 3786     5.511100e+02 2.385600e+02
+1 3786     8.532800e+02 9.694000e+01
+7 3786     3.708300e+02 4.013400e+02
+10 3786     5.267400e+02 4.793500e+02
+11 3786     6.798700e+02 -4.842100e+02
+15 3786     7.112100e+02 5.456200e+02
+0 3787     5.412700e+02 2.246500e+02
+1 3787     8.380000e+02 8.514999e+01
+10 3787     5.161300e+02 4.619600e+02
+15 3787     6.989100e+02 5.243900e+02
+0 3788     -1.237400e+02 -5.082200e+02
+1 3788     -1.015000e+02 -4.188300e+02
+0 3789     3.143199e+02 -2.083100e+02
+1 3789     4.081899e+02 -2.756200e+02
+10 3789     2.906000e+02 -6.626001e+01
+15 3789     4.215699e+02 -1.043700e+02
+0 3790     3.534900e+02 2.365002e+01
+1 3790     5.408500e+02 -5.859998e+01
+15 3790     4.508400e+02 2.176200e+02
+0 3791     4.765997e+01 -3.970300e+02
+1 3791     9.104999e+01 -3.707700e+02
+7 3791     2.870001e+01 -2.770400e+02
+13 3791     4.551000e+02 -5.821100e+02
+0 3792     2.928700e+02 2.025500e+02
+1 3792     5.824399e+02 1.310100e+02
+0 3793     3.640200e+02 -1.176300e+02
+1 3793     4.963101e+02 -2.025800e+02
+10 3793     3.392800e+02 4.256000e+01
+0 3794     1.550300e+02 1.847300e+02
+1 3794     3.843199e+02 1.635600e+02
+10 3794     6.765997e+01 3.737800e+02
+15 3794     1.562200e+02 4.130800e+02
+0 3795     3.866600e+02 -3.631000e+01
+1 3795     5.545601e+02 -1.299000e+02
+10 3795     3.579301e+02 1.397400e+02
+15 3795     5.046000e+02 1.402500e+02
+0 3796     7.959998e+01 2.567400e+02
+1 3796     3.834301e+02 2.449400e+02
+0 3797     2.124301e+02 2.073999e+01
+1 3797     3.756600e+02 -1.341998e+01
+10 3797     1.501500e+02 1.875100e+02
+15 3797     2.516300e+02 1.947200e+02
+0 3798     -1.863900e+02 -4.899399e+02
+1 3798     -1.518900e+02 -3.815300e+02
+7 3798     -1.912300e+02 -4.192300e+02
+0 3799     -3.653998e+01 1.371100e+02
+1 3799     1.781100e+02 1.704000e+02
+15 3799     -1.002800e+02 3.190300e+02
+0 3800     -5.451001e+01 2.389500e+02
+1 3800     2.431200e+02 2.641800e+02
+0 3801     2.336000e+02 1.346800e+02
+1 3801     4.424200e+02 9.187000e+01
+10 3801     1.635800e+02 3.232300e+02
+15 3801     2.689600e+02 3.553100e+02
+0 3802     6.199301e+02 -8.979980e+00
+1 3802     8.470300e+02 -1.860100e+02
+0 3803     5.782500e+02 -1.962000e+01
+1 3803     8.005699e+02 -1.838700e+02
+0 3804     2.455200e+02 1.044900e+02
+1 3804     4.416000e+02 5.914001e+01
+15 3804     2.880500e+02 3.140900e+02
+0 3805     -6.388000e+01 1.878600e+02
+1 3805     2.154000e+02 2.173600e+02
+0 3806     6.805601e+02 -1.204000e+02
+1 3806     8.764800e+02 -3.247300e+02
+0 3807     1.080700e+02 -3.521000e+02
+1 3807     1.659600e+02 -3.485300e+02
+15 3807     1.613400e+02 -3.252500e+02
+0 3808     2.615400e+02 -3.032700e+02
+1 3808     3.330100e+02 -3.519400e+02
+0 3809     1.079999e+01 -2.801100e+02
+1 3809     9.065997e+01 -2.461700e+02
+7 3809     -2.813000e+01 -1.668800e+02
+10 3809     -5.096997e+01 -1.809000e+02
+15 3809     1.878003e+01 -2.405000e+02
+0 3810     -1.801100e+02 -4.776001e+01
+1 3810     -1.408002e+01 3.265002e+01
+12 3810     -2.453300e+02 -5.460999e+01
+15 3810     -2.692800e+02 4.735999e+01
+0 3811     2.047600e+02 3.591400e+02
+1 3811     5.523400e+02 3.123800e+02
+10 3811     1.097700e+02 5.880300e+02
+0 3812     2.599000e+02 2.961200e+02
+1 3812     5.855200e+02 2.340100e+02
+0 3813     2.029000e+02 3.214100e+02
+1 3813     5.355800e+02 2.751500e+02
+0 3814     -1.397400e+02 -5.341801e+02
+1 3814     -1.257900e+02 -4.372000e+02
+0 3815     3.255100e+02 5.779000e+02
+1 3815     7.556600e+02 5.105000e+02
+2 3815     -1.679999e+01 3.458100e+02
+14 3815     6.241000e+02 -1.413200e+02
+0 3816     2.269800e+02 5.089400e+02
+1 3816     6.227400e+02 4.613600e+02
+0 3817     2.196500e+02 5.075300e+02
+1 3817     6.142900e+02 4.618100e+02
+0 3818     2.895200e+02 5.694700e+02
+1 3818     7.109301e+02 5.102700e+02
+14 3818     5.897200e+02 -1.519700e+02
+0 3819     6.192999e+01 2.501600e+02
+1 3819     3.633700e+02 2.432500e+02
+0 3820     -4.390900e+02 9.548999e+01
+1 3820     -1.721200e+02 2.297300e+02
+0 3821     -1.164500e+02 3.539500e+02
+1 3821     2.211899e+02 3.925500e+02
+0 3822     2.360900e+02 3.458000e+02
+1 3822     5.796000e+02 2.905300e+02
+0 3823     5.486100e+02 2.326400e+02
+1 3823     8.489000e+02 9.095001e+01
+11 3823     6.789700e+02 -4.923600e+02
+15 3823     7.085699e+02 5.365600e+02
+0 3824     -2.410999e+01 -6.006000e+01
+1 3824     1.223700e+02 -2.302002e+01
+0 3825     6.463300e+02 -2.384200e+02
+1 3825     7.867500e+02 -4.328100e+02
+10 3825     6.769700e+02 -6.565002e+01
+0 3826     -4.933002e+01 1.912800e+02
+1 3826     2.305500e+02 2.166700e+02
+7 3826     -2.178900e+02 2.584000e+02
+10 3826     -1.701300e+02 3.621800e+02
+0 3827     -1.302500e+02 -4.854900e+02
+1 3827     -9.903998e+01 -3.956300e+02
+0 3828     2.366700e+02 1.629500e+02
+1 3828     4.577500e+02 1.188900e+02
+15 3828     2.703000e+02 3.936500e+02
+0 3829     2.095601e+02 -4.036600e+02
+1 3829     2.479600e+02 -4.335601e+02
+0 3830     1.259900e+02 -2.508600e+02
+1 3830     2.032500e+02 -2.537900e+02
+10 3830     7.827002e+01 -1.347700e+02
+0 3831     8.819000e+01 5.029900e+02
+1 3831     4.710100e+02 4.902100e+02
+0 3832     -3.113800e+02 5.415002e+01
+1 3832     -6.946997e+01 1.579900e+02
+0 3833     -2.798400e+02 1.832400e+02
+1 3833     6.130005e+00 2.704400e+02
+0 3834     -4.627400e+02 1.279000e+02
+1 3834     -1.820800e+02 2.658600e+02
+0 3835     -4.540100e+02 1.309400e+02
+1 3835     -1.730800e+02 2.664600e+02
+0 3836     -7.824500e+02 6.409973e+00
+1 3836     -5.010200e+02 2.348600e+02
+0 3837     3.553199e+02 5.845900e+02
+1 3837     7.918300e+02 5.108400e+02
+14 3837     6.518700e+02 -1.327200e+02
+0 3838     -9.469000e+01 2.332200e+02
+1 3838     2.019399e+02 2.692100e+02
+10 3838     -2.270400e+02 4.071000e+02
+0 3839     -1.790000e+02 2.298700e+02
+1 3839     1.191000e+02 2.885500e+02
+0 3840     3.899200e+02 -8.769000e+01
+1 3840     5.365000e+02 -1.818300e+02
+0 3841     6.964700e+02 -3.105000e+02
+1 3841     8.135300e+02 -5.271500e+02
+7 3841     6.018101e+02 -8.823999e+01
+0 3842     7.478000e+02 -3.044500e+02
+1 3842     8.775000e+02 -5.424800e+02
+0 3843     -1.206700e+02 -5.135500e+02
+1 3843     -1.005900e+02 -4.245300e+02
+0 3844     6.432200e+02 -2.826000e+02
+1 3844     7.646400e+02 -4.767200e+02
+7 3844     5.489200e+02 -7.208002e+01
+0 3845     4.174800e+02 -1.062300e+02
+1 3845     5.575699e+02 -2.098300e+02
+0 3846     3.220900e+02 5.450000e+01
+1 3846     5.091200e+02 -1.579999e+01
+15 3846     4.012800e+02 2.561600e+02
+0 3847     6.752700e+02 -3.604000e+02
+1 3847     7.675500e+02 -5.690400e+02
+7 3847     5.947200e+02 -1.362300e+02
+12 3847     7.714500e+02 -1.856300e+02
+0 3848     3.429000e+02 -1.173100e+02
+1 3848     4.734399e+02 -1.942100e+02
+7 3848     2.634000e+02 5.001001e+01
+0 3849     -2.720800e+02 6.789001e+01
+1 3849     -2.806000e+01 1.603000e+02
+0 3850     -3.051800e+02 2.200500e+02
+1 3850     -4.619995e+00 3.117400e+02
+0 3851     -2.005100e+02 1.658900e+02
+1 3851     7.510999e+01 2.331700e+02
+0 3852     6.044500e+02 -2.826600e+02
+1 3852     7.206200e+02 -4.613300e+02
+3 3852     5.970100e+02 -5.292200e+02
+15 3852     8.427200e+02 -1.701300e+02
+0 3853     -1.564000e+02 4.736200e+02
+1 3853     2.094301e+02 5.213700e+02
+3 3853     -5.662200e+02 -1.005400e+02
+0 3854     3.870300e+02 5.432600e+02
+1 3854     8.165601e+02 4.578100e+02
+3 3854     -1.054700e+02 -2.231000e+01
+0 3855     3.161899e+02 5.366400e+02
+1 3855     7.319301e+02 4.681200e+02
+2 3855     -1.660999e+01 3.030400e+02
+0 3856     1.930400e+02 4.848500e+02
+1 3856     5.792500e+02 4.445900e+02
+9 3856     -2.492600e+02 2.829400e+02
+0 3857     1.974301e+02 5.010000e+02
+1 3857     5.879700e+02 4.604200e+02
+0 3858     1.538700e+02 4.865300e+02
+1 3858     5.368700e+02 4.567400e+02
+11 3858     2.876500e+02 -2.697500e+02
+0 3859     5.460999e+01 3.270020e+00
+1 3859     2.130699e+02 1.663000e+01
+10 3859     -3.041998e+01 1.502700e+02
+15 3859     3.809003e+01 1.492200e+02
+0 3860     2.277900e+02 2.324600e+02
+1 3860     5.258700e+02 1.796800e+02
+10 3860     1.485500e+02 4.386900e+02
+13 3860     4.206100e+02 -4.023999e+01
+14 3860     6.049399e+02 -5.116801e+02
+0 3861     3.121600e+02 5.358500e+02
+1 3861     7.269800e+02 4.682500e+02
+14 3861     6.150601e+02 -1.844900e+02
+0 3862     1.631899e+02 5.141800e+02
+1 3862     5.546801e+02 4.827400e+02
+14 3862     4.707800e+02 -2.149700e+02
+0 3863     3.511700e+02 5.524300e+02
+1 3863     7.772300e+02 4.761400e+02
+6 3863     -1.120700e+02 6.557800e+02
+14 3863     6.513300e+02 -1.655300e+02
+0 3864     3.501001e+01 1.502900e+02
+1 3864     2.470300e+02 1.645000e+02
+5 3864     6.414900e+02 -5.017800e+02
+6 3864     -7.541998e+01 1.878900e+02
+15 3864     -5.570007e+00 3.469600e+02
+0 3865     -4.559300e+02 9.592001e+01
+1 3865     -1.862700e+02 2.348400e+02
+0 3866     -1.615500e+02 1.761000e+02
+1 3866     1.161800e+02 2.325100e+02
+0 3867     2.499301e+02 2.567300e+02
+1 3867     5.589100e+02 1.975900e+02
+10 3867     1.723400e+02 4.696100e+02
+14 3867     6.202400e+02 -4.831600e+02
+0 3868     5.159003e+01 1.120000e+02
+1 3868     2.473199e+02 1.231500e+02
+0 3869     -2.152700e+02 -4.819900e+02
+1 3869     -1.749800e+02 -3.646300e+02
+0 3870     4.305601e+02 2.646400e+02
+1 3870     7.505400e+02 1.546700e+02
+14 3870     8.323700e+02 -4.596300e+02
+0 3871     2.502100e+02 2.601100e+02
+1 3871     5.606700e+02 2.007400e+02
+6 3871     -8.754999e+01 2.947200e+02
+0 3872     -1.414400e+02 2.309200e+02
+1 3872     1.555300e+02 2.795900e+02
+0 3873     3.310500e+02 -2.946997e+01
+1 3873     4.905300e+02 -1.032500e+02
+7 3873     2.359301e+02 1.323000e+02
+10 3873     2.925699e+02 1.412100e+02
+0 3874     -2.582900e+02 -4.258900e+02
+1 3874     -1.937700e+02 -2.999100e+02
+0 3875     -1.265900e+02 2.347200e+02
+1 3875     1.713000e+02 2.792500e+02
+0 3876     -5.109300e+02 1.390800e+02
+1 3876     -2.215400e+02 2.882900e+02
+0 3877     1.532800e+02 -5.453199e+02
+1 3877     1.460699e+02 -5.496200e+02
+10 3877     1.411800e+02 -4.688101e+02
+0 3878     6.810999e+01 2.601600e+02
+1 3878     3.733101e+02 2.514900e+02
+0 3879     6.651801e+02 -9.409003e+01
+1 3879     8.682400e+02 -2.915100e+02
+0 3880     5.255800e+02 1.316200e+02
+1 3880     7.935500e+02 -8.830017e+00
+0 3881     -6.502002e+01 -5.657400e+02
+1 3881     -6.877002e+01 -4.915900e+02
+0 3882     4.137600e+02 4.644800e+02
+1 3882     8.232500e+02 3.648400e+02
+7 3882     1.728101e+02 5.719100e+02
+0 3883     3.590100e+02 -9.198999e+01
+1 3883     4.996300e+02 -1.750100e+02
+0 3884     1.318000e+02 -1.791800e+02
+1 3884     2.321801e+02 -1.861200e+02
+10 3884     7.772998e+01 -5.196997e+01
+15 3884     1.673000e+02 -8.745001e+01
+0 3885     2.700200e+02 -2.902900e+02
+1 3885     3.462100e+02 -3.428200e+02
+15 3885     3.738300e+02 -2.203800e+02
+0 3886     6.350000e+01 1.584600e+02
+1 3886     2.816600e+02 1.642700e+02
+10 3886     -3.632001e+01 3.326500e+02
+15 3886     3.304999e+01 3.626100e+02
+0 3887     2.931500e+02 2.755300e+02
+1 3887     6.123600e+02 2.037200e+02
+6 3887     -4.896997e+01 3.234200e+02
+0 3888     1.597800e+02 4.938600e+02
+1 3888     5.449000e+02 4.627800e+02
+11 3888     2.915601e+02 -2.632400e+02
+0 3889     -7.145600e+02 -3.606100e+02
+1 3889     -5.637800e+02 -1.054700e+02
+0 3890     4.044301e+02 -2.188900e+02
+1 3890     5.186200e+02 -3.201200e+02
+7 3890     3.270100e+02 -4.696997e+01
+15 3890     5.530200e+02 -1.066300e+02
+0 3891     2.975300e+02 5.616200e+02
+1 3891     7.181500e+02 4.997200e+02
+11 3891     4.104900e+02 -1.973300e+02
+0 3892     -1.211300e+02 2.577600e+02
+1 3892     1.855000e+02 2.998300e+02
+15 3892     -2.179100e+02 4.719800e+02
+0 3893     3.991700e+02 4.590500e+02
+1 3893     8.039301e+02 3.633300e+02
+0 3894     5.173900e+02 -3.242000e+02
+1 3894     6.071500e+02 -4.690601e+02
+7 3894     4.457500e+02 -1.307900e+02
+10 3894     5.351500e+02 -1.769800e+02
+0 3895     3.556801e+02 5.722700e+02
+1 3895     7.885500e+02 4.970800e+02
+0 3896     1.578998e+01 5.728000e+02
+1 3896     4.119900e+02 5.802800e+02
+11 3896     1.574000e+02 -2.017100e+02
+0 3897     3.345100e+02 5.665900e+02
+1 3897     7.620200e+02 4.960300e+02
+0 3898     4.184900e+02 5.518500e+02
+1 3898     8.567400e+02 4.594800e+02
+0 3899     3.491200e+02 5.688000e+02
+1 3899     7.799399e+02 4.949000e+02
+2 3899     6.010010e+00 3.377600e+02
+6 3899     -1.185000e+02 6.772900e+02
+8 3899     8.573999e+01 2.654600e+02
+0 3900     4.167700e+02 5.471100e+02
+1 3900     8.530800e+02 4.545200e+02
+0 3901     3.217400e+02 5.498100e+02
+1 3901     7.421300e+02 4.810700e+02
+2 3901     -1.382001e+01 3.169400e+02
+5 3901     7.228199e+02 -8.873999e+01
+6 3901     -1.426000e+02 6.483800e+02
+13 3901     4.423900e+02 2.317500e+02
+14 3901     6.225699e+02 -1.698800e+02
+0 3902     1.534800e+02 5.844300e+02
+1 3902     5.630300e+02 5.586200e+02
+0 3903     1.786100e+02 5.222900e+02
+1 3903     5.738900e+02 4.876800e+02
+0 3904     4.154800e+02 4.569600e+02
+1 3904     8.227000e+02 3.567400e+02
+5 3904     8.242400e+02 -1.840300e+02
+7 3904     1.723800e+02 5.666500e+02
+0 3905     2.241200e+02 4.896700e+02
+1 3905     6.148101e+02 4.415100e+02
+7 3905     -1.060999e+01 5.802200e+02
+0 3906     3.494000e+02 4.652100e+02
+1 3906     7.481700e+02 3.827700e+02
+2 3906     2.133002e+01 2.264700e+02
+7 3906     1.101400e+02 5.677800e+02
+9 3906     -1.322200e+02 2.724700e+02
+11 3906     4.698800e+02 -2.787500e+02
+0 3907     3.776700e+02 4.556900e+02
+1 3907     7.782000e+02 3.652700e+02
+0 3908     3.094500e+02 3.915100e+02
+1 3908     6.772200e+02 3.168600e+02
+6 3908     -1.064000e+02 4.542900e+02
+7 3908     8.609998e+01 4.931200e+02
+13 3908     4.487600e+02 9.748001e+01
+0 3909     8.619995e+00 4.878003e+01
+1 3909     1.849700e+02 7.440997e+01
+0 3910     -6.125000e+01 -5.581899e+02
+1 3910     -6.187000e+01 -4.862200e+02
+7 3910     -4.803003e+01 -4.595500e+02
+10 3910     -1.038400e+02 -5.081600e+02
+0 3911     -6.941998e+01 -5.573400e+02
+1 3911     -6.990002e+01 -4.824800e+02
+0 3912     2.532100e+02 -1.057800e+02
+1 3912     3.803199e+02 -1.527600e+02
+10 3912     2.100601e+02 4.459998e+01
+0 3913     2.230699e+02 2.951800e+02
+1 3913     5.459600e+02 2.433600e+02
+0 3914     -7.797900e+02 -8.690002e+00
+1 3914     -5.035700e+02 2.209000e+02
+0 3915     -5.767800e+02 -4.369995e+00
+1 3915     -3.289900e+02 1.742900e+02
+0 3916     3.417999e+01 -1.272800e+02
+1 3916     1.539600e+02 -1.045300e+02
+6 3916     5.466998e+01 -1.124500e+02
+12 3916     6.090002e+01 -6.279999e+01
+15 3916     2.803998e+01 -3.064001e+01
+0 3917     8.151001e+01 2.450400e+02
+1 3917     3.810400e+02 2.330700e+02
+0 3918     3.536400e+02 -1.771800e+02
+1 3918     4.602500e+02 -2.577800e+02
+0 3919     -5.026001e+01 -1.713500e+02
+1 3919     6.073999e+01 -1.219500e+02
+0 3920     -2.931000e+01 -3.432200e+02
+1 3920     4.189001e+01 -2.954000e+02
+0 3921     3.959900e+02 -1.115002e+01
+1 3921     5.743101e+02 -1.071900e+02
+0 3922     1.822300e+02 -3.617900e+02
+1 3922     2.386300e+02 -3.844800e+02
+0 3923     1.943500e+02 -3.792200e+02
+1 3923     2.448700e+02 -4.044000e+02
+0 3924     5.209000e+02 -2.723900e+02
+1 3924     6.323199e+02 -4.189800e+02
+0 3925     5.113101e+02 -3.692700e+02
+1 3925     5.818000e+02 -5.120699e+02
+0 3926     6.195300e+02 -3.508800e+02
+1 3926     7.083600e+02 -5.362100e+02
+15 3926     8.716400e+02 -2.618500e+02
+0 3927     5.321997e+01 2.404100e+02
+1 3927     3.508400e+02 2.365500e+02
+7 3927     -1.286400e+02 3.178700e+02
+0 3928     2.054301e+02 5.152000e+02
+1 3928     6.011700e+02 4.733200e+02
+0 3929     2.996600e+02 5.306100e+02
+1 3929     7.110000e+02 4.660500e+02
+0 3930     2.630500e+02 -1.439900e+02
+1 3930     3.763700e+02 -1.937800e+02
+7 3930     1.973101e+02 1.469000e+01
+10 3930     2.251400e+02 2.010010e+00
+0 3931     3.664000e+02 3.329800e+02
+1 3931     7.150800e+02 2.410900e+02
+6 3931     -4.510010e+00 4.049200e+02
+0 3932     1.131200e+02 1.774000e+02
+1 3932     3.393500e+02 1.670200e+02
+0 3933     -7.881700e+02 -5.370699e+02
+1 3933     -6.757700e+02 -2.351400e+02
+0 3934     -7.023400e+02 -5.800000e+02
+1 3934     -6.223300e+02 -2.975100e+02
+0 3935     -1.417500e+02 2.733000e+02
+1 3935     1.707300e+02 3.201000e+02
+11 3935     2.106000e+01 -4.710100e+02
+15 3935     -2.478800e+02 4.904900e+02
+0 3936     -1.957000e+02 2.128700e+02
+1 3936     9.690002e+01 2.765900e+02
+0 3937     5.190200e+02 -2.590400e+02
+1 3937     6.357300e+02 -4.044200e+02
+0 3938     -5.558400e+02 6.359985e+00
+1 3938     -3.070600e+02 1.783900e+02
+0 3939     -7.390997e+01 -2.766700e+02
+1 3939     1.816998e+01 -2.170200e+02
+7 3939     -1.193100e+02 -1.846000e+02
+15 3939     -9.434998e+01 -2.472100e+02
+0 3940     -1.538400e+02 -5.241200e+02
+1 3940     -1.346100e+02 -4.234300e+02
+4 3940     -6.580100e+02 -2.633700e+02
+7 3940     -1.485500e+02 -4.466500e+02
+9 3940     7.290997e+01 -4.465500e+02
+0 3941     -6.892999e+01 -1.369000e+02
+1 3941     5.648999e+01 -8.354999e+01
+10 3941     -1.583100e+02 -2.481000e+01
+0 3942     7.225000e+01 -1.502002e+01
+1 3942     2.241899e+02 -6.080017e+00
+0 3943     -2.402002e+01 -3.137200e+02
+1 3943     5.326001e+01 -2.686700e+02
+15 3943     -2.222998e+01 -2.906400e+02
+0 3944     7.436300e+02 -3.300900e+02
+1 3944     8.617400e+02 -5.673000e+02
+0 3945     5.264600e+02 1.977002e+01
+1 3945     7.597600e+02 -1.260800e+02
+6 3945     3.567300e+02 1.258400e+02
+7 3945     3.751400e+02 1.833800e+02
+10 3945     5.151200e+02 2.210100e+02
+13 3945     7.426600e+02 -1.920900e+02
+15 3945     7.022100e+02 2.357400e+02
+0 3946     2.032900e+02 2.679400e+02
+1 3946     5.145500e+02 2.218500e+02
+0 3947     1.020700e+02 -1.367800e+02
+1 3947     2.167700e+02 -1.349300e+02
+0 3948     3.889900e+02 -2.935300e+02
+1 3948     4.735400e+02 -3.898700e+02
+0 3949     -1.070300e+02 2.439400e+02
+1 3949     1.937200e+02 2.829000e+02
+0 3950     -2.940400e+02 3.206400e+02
+1 3950     3.600000e+01 4.050600e+02
+0 3951     1.206400e+02 -2.166800e+02
+1 3951     2.079301e+02 -2.185600e+02
+0 3952     7.353998e+01 2.212100e+02
+1 3952     3.639200e+02 2.118800e+02
+6 3952     -2.664800e+02 2.018800e+02
+10 3952     -3.058002e+01 4.093000e+02
+13 3952     2.904600e+02 -5.984998e+01
+14 3952     4.381100e+02 -5.308600e+02
+0 3953     3.489800e+02 4.594600e+02
+1 3953     7.467500e+02 3.768100e+02
+6 3953     -9.589001e+01 5.422900e+02
+14 3953     6.581801e+02 -2.619300e+02
+0 3954     3.433700e+02 5.143500e+02
+1 3954     7.562800e+02 4.373800e+02
+5 3954     7.470300e+02 -1.253600e+02
+6 3954     -1.123500e+02 6.089400e+02
+11 3954     4.579399e+02 -2.347000e+02
+12 3954     5.020001e+01 5.714200e+02
+13 3954     4.615000e+02 2.036200e+02
+14 3954     6.472400e+02 -2.048100e+02
+0 3955     5.679200e+02 -1.637300e+02
+1 3955     7.298101e+02 -3.268500e+02
+15 3955     7.790300e+02 -1.144000e+01
+0 3956     3.585300e+02 5.440700e+02
+1 3956     7.833000e+02 4.658300e+02
+0 3957     1.528700e+02 4.748400e+02
+1 3957     5.328900e+02 4.445300e+02
+2 3957     -1.499500e+02 2.330200e+02
+5 3957     5.553800e+02 -1.732000e+02
+6 3957     -3.058900e+02 5.201600e+02
+0 3958     3.489800e+02 4.594600e+02
+1 3958     7.467500e+02 3.768100e+02
+6 3958     -9.589001e+01 5.422900e+02
+0 3959     4.030800e+02 3.782200e+02
+1 3959     7.753400e+02 2.777600e+02
+6 3959     6.890015e+00 4.630600e+02
+0 3960     2.554100e+02 2.566100e+02
+1 3960     5.646700e+02 1.958200e+02
+6 3960     -7.957001e+01 2.923900e+02
+11 3960     3.953500e+02 -4.787900e+02
+0 3961     1.155800e+02 4.476400e+02
+1 3961     4.856500e+02 4.260700e+02
+2 3961     -1.804500e+02 2.013600e+02
+6 3961     -3.413800e+02 4.774400e+02
+7 3961     -1.084500e+02 5.262200e+02
+0 3962     3.910000e+02 5.010600e+02
+1 3962     8.075900e+02 4.110500e+02
+6 3962     -6.108002e+01 6.023700e+02
+12 3962     1.004700e+02 5.629000e+02
+0 3963     1.960000e+02 3.141200e+02
+1 3963     5.252200e+02 2.695900e+02
+10 3963     1.032900e+02 5.322500e+02
+0 3964     5.127200e+02 -1.382800e+02
+1 3964     6.794500e+02 -2.813800e+02
+0 3965     2.431200e+02 3.373800e+02
+1 3965     5.840400e+02 2.800500e+02
+0 3966     3.106700e+02 -2.140400e+02
+1 3966     4.033300e+02 -2.797500e+02
+15 3966     4.174900e+02 -1.121300e+02
+0 3967     -1.640300e+02 1.335700e+02
+1 3967     9.802002e+01 1.931200e+02
+13 3967     1.043100e+02 -1.495800e+02
+0 3968     3.963700e+02 -9.503003e+01
+1 3968     5.401700e+02 -1.911400e+02
+15 3968     5.239301e+02 6.084998e+01
+0 3969     3.104700e+02 -1.954700e+02
+1 3969     4.077600e+02 -2.608900e+02
+12 3969     3.879100e+02 -6.421997e+01
+0 3970     -6.638000e+01 1.836700e+02
+1 3970     2.108500e+02 2.138500e+02
+0 3971     5.893300e+02 -1.253998e+01
+1 3971     8.141000e+02 -1.800900e+02
+7 3971     4.421000e+02 1.647900e+02
+15 3971     7.938900e+02 2.000600e+02
+0 3972     -4.263300e+02 8.130005e+00
+1 3972     -1.908900e+02 1.459700e+02
+0 3973     2.876801e+02 1.146100e+02
+1 3973     4.939900e+02 5.532001e+01
+10 3973     2.288700e+02 3.046200e+02
+0 3974     1.261600e+02 -1.929999e+01
+1 3974     2.749700e+02 -2.673999e+01
+15 3974     1.377900e+02 1.280300e+02
+0 3975     -8.484900e+02 -4.218100e+02
+1 3975     -6.875000e+02 -1.201000e+02
+4 3975     -4.366800e+02 1.925700e+02
+0 3976     -1.910000e+02 1.736500e+02
+1 3976     8.665997e+01 2.382800e+02
+0 3977     3.154301e+02 2.353200e+02
+1 3977     6.193800e+02 1.571100e+02
+6 3977     1.380005e+00 2.862100e+02
+0 3978     2.601100e+02 5.066200e+02
+1 3978     6.592500e+02 4.501200e+02
+0 3979     3.126600e+02 2.268000e+02
+1 3979     6.129301e+02 1.498300e+02
+0 3980     2.257600e+02 5.057900e+02
+1 3980     6.212800e+02 4.581600e+02
+0 3981     1.891400e+02 4.992400e+02
+1 3981     5.784900e+02 4.610000e+02
+11 3981     3.182100e+02 -2.573800e+02
+0 3982     2.537000e+02 5.034100e+02
+1 3982     6.514800e+02 4.486800e+02
+11 3982     3.766100e+02 -2.501400e+02
+0 3983     3.861801e+02 -1.212500e+02
+1 3983     5.176600e+02 -2.137000e+02
+0 3984     2.034800e+02 -2.024500e+02
+1 3984     2.961000e+02 -2.318000e+02
+7 3984     1.520300e+02 -5.121997e+01
+0 3985     -2.913600e+02 -4.287400e+02
+1 3985     -2.242600e+02 -2.918500e+02
+4 3985     -5.437100e+02 -1.609000e+02
+0 3986     -1.522300e+02 2.070700e+02
+1 3986     1.364200e+02 2.596600e+02
+0 3987     3.535400e+02 -1.147400e+02
+1 3987     4.861500e+02 -1.966000e+02
+0 3988     -1.487700e+02 2.272900e+02
+1 3988     1.470100e+02 2.779300e+02
+7 3988     -3.288500e+02 2.758500e+02
+0 3989     -1.024800e+02 2.453200e+02
+1 3989     1.982000e+02 2.830000e+02
+0 3990     5.914100e+02 -2.441600e+02
+1 3990     7.224800e+02 -4.174600e+02
+6 3990     5.683600e+02 -1.122600e+02
+0 3991     3.772500e+02 3.334600e+02
+1 3991     7.267100e+02 2.391700e+02
+0 3992     -3.273800e+02 3.021300e+02
+1 3992     -2.849976e+00 3.961200e+02
+0 3993     2.401600e+02 5.021400e+02
+1 3993     6.355500e+02 4.507400e+02
+0 3994     2.195200e+02 4.990000e+02
+1 3994     6.118199e+02 4.526700e+02
+0 3995     1.521200e+02 4.821100e+02
+1 3995     5.340800e+02 4.523600e+02
+0 3996     3.776700e+02 4.556900e+02
+1 3996     7.782000e+02 3.652700e+02
+6 3996     -6.579999e+01 5.430200e+02
+0 3997     -1.369400e+02 4.600600e+02
+1 3997     2.259600e+02 5.028800e+02
+2 3997     -4.182500e+02 2.122600e+02
+0 3998     -5.084300e+02 2.353000e+02
+1 3998     -1.889900e+02 3.766400e+02
+0 3999     -3.008500e+02 4.894800e+02
+1 3999     6.883002e+01 5.716200e+02
+5 3999     1.104700e+02 -1.609100e+02
+12 3999     -6.391000e+02 4.545300e+02
+0 4000     1.693900e+02 5.241200e+02
+1 4000     5.645400e+02 4.919000e+02
+0 4001     -1.076200e+02 -7.999878e-01
+1 4001     6.779999e+01 5.681000e+01
+0 4002     3.575400e+02 4.514500e+02
+1 4002     7.540200e+02 3.662600e+02
+0 4003     2.279200e+02 4.679700e+02
+1 4003     6.130300e+02 4.179300e+02
+7 4003     -3.770020e+00 5.587100e+02
+0 4004     2.363700e+02 2.802000e+02
+1 4004     5.540900e+02 2.246500e+02
+0 4005     -2.400300e+02 -4.172700e+02
+1 4005     -1.741500e+02 -2.980500e+02
+0 4006     1.221300e+02 -5.630699e+02
+1 4006     1.091400e+02 -5.550900e+02
+0 4007     3.660300e+02 -2.279200e+02
+1 4007     4.685800e+02 -3.152800e+02
+0 4008     -1.257000e+02 -5.287700e+02
+1 4008     -1.107300e+02 -4.369800e+02
+6 4008     1.119000e+01 -6.646700e+02
+7 4008     -1.200600e+02 -4.447800e+02
+0 4009     -8.133002e+01 -1.369100e+02
+1 4009     4.470001e+01 -8.003998e+01
+7 4009     -1.441000e+02 -3.890002e+01
+12 4009     -7.965002e+01 -1.155500e+02
+15 4009     -1.258000e+02 -5.946997e+01
+0 4010     7.259998e+01 7.681000e+01
+1 4010     2.543900e+02 8.314999e+01
+10 4010     -1.756000e+01 2.379500e+02
+15 4010     5.352002e+01 2.515600e+02
+0 4011     -7.015997e+01 -5.421002e+01
+1 4011     8.231000e+01 -4.330017e+00
+15 4011     -1.210300e+02 5.384003e+01
+0 4012     3.006899e+02 -9.897998e+01
+1 4012     4.331500e+02 -1.623700e+02
+15 4012     3.897700e+02 4.323999e+01
+0 4013     4.956000e+01 1.770900e+02
+1 4013     2.731700e+02 1.860900e+02
+7 4013     -7.596002e+01 2.900500e+02
+0 4014     3.790200e+02 -1.741300e+02
+1 4014     4.919500e+02 -2.645700e+02
+10 4014     3.619700e+02 -1.973999e+01
+15 4014     5.082900e+02 -4.975000e+01
+0 4015     1.943101e+02 3.486600e+02
+1 4015     5.371801e+02 3.046500e+02
+0 4016     -1.371000e+02 -4.897700e+02
+1 4016     -1.071700e+02 -3.973900e+02
+0 4017     -4.209998e+01 2.936200e+02
+1 4017     2.759301e+02 3.137600e+02
+0 4018     -2.623100e+02 2.737000e+01
+1 4018     -3.432001e+01 1.195600e+02
+0 4019     1.973500e+02 2.634200e+02
+1 4019     5.067700e+02 2.189500e+02
+6 4019     -1.505900e+02 2.830600e+02
+15 4019     2.191899e+02 5.247100e+02
+0 4020     -2.752200e+02 -4.254800e+02
+1 4020     -2.085600e+02 -2.941900e+02
+0 4021     2.213400e+02 4.726900e+02
+1 4021     6.070500e+02 4.244600e+02
+0 4022     2.658800e+02 2.739100e+02
+1 4022     5.824500e+02 2.100300e+02
+11 4022     4.048300e+02 -4.620900e+02
+0 4023     -1.858800e+02 4.746002e+01
+1 4023     1.763000e+01 1.231800e+02
+7 4023     -2.991600e+02 1.168800e+02
+10 4023     -3.147100e+02 1.775500e+02
+0 4024     2.328998e+01 1.258200e+02
+1 4024     2.264301e+02 1.442700e+02
+15 4024     -1.884998e+01 3.122400e+02
+0 4025     2.177100e+02 3.439300e+02
+1 4025     5.597200e+02 2.935900e+02
+0 4026     3.875500e+02 -1.805400e+02
+1 4026     5.040400e+02 -2.747700e+02
+10 4026     3.723300e+02 -2.640997e+01
+0 4027     4.147800e+02 -4.679100e+02
+1 4027     4.393199e+02 -5.724900e+02
+0 4028     -4.219000e+01 2.884500e+02
+1 4028     2.738800e+02 3.088500e+02
+7 4028     -2.353500e+02 3.490000e+02
+0 4029     7.190900e+02 -3.067200e+02
+1 4029     8.422900e+02 -5.325601e+02
+7 4029     6.207100e+02 -8.115997e+01
+12 4029     7.870100e+02 -1.229300e+02
+0 4030     2.219000e+01 -9.821997e+01
+1 4030     1.532800e+02 -7.301001e+01
+10 4030     -5.795001e+01 2.989001e+01
+0 4031     -1.337000e+02 -1.093400e+02
+1 4031     5.659973e+00 -3.838000e+01
+10 4031     -2.363200e+02 1.599731e-01
+0 4032     6.510699e+02 -4.563000e+01
+1 4032     8.685400e+02 -2.354000e+02
+0 4033     3.703600e+02 2.052002e+01
+1 4033     5.575000e+02 -6.714001e+01
+10 4033     3.342000e+02 2.034800e+02
+0 4034     5.852200e+02 3.553003e+01
+1 4034     8.248500e+02 -1.279500e+02
+10 4034     5.826700e+02 2.445300e+02
+0 4035     -1.405100e+02 -2.390015e+00
+1 4035     4.073999e+01 6.362000e+01
+10 4035     -2.566700e+02 1.236100e+02
+0 4036     -3.588500e+02 2.095200e+02
+1 4036     -5.829999e+01 3.155700e+02
+10 4036     -5.400000e+02 3.531100e+02
+0 4037     3.749399e+02 -1.139500e+02
+1 4037     5.091100e+02 -2.025700e+02
+10 4037     3.512900e+02 4.851001e+01
+15 4037     4.952800e+02 3.229999e+01
+0 4038     2.559600e+02 -1.262200e+02
+1 4038     3.757500e+02 -1.743100e+02
+10 4038     2.159399e+02 2.165997e+01
+0 4039     4.234301e+02 -6.226001e+01
+1 4039     5.831600e+02 -1.681600e+02
+10 4039     4.024399e+02 1.130900e+02
+15 4039     5.576200e+02 1.107000e+02
+0 4040     5.793400e+02 -2.460600e+02
+1 4040     7.079301e+02 -4.143100e+02
+7 4040     4.824700e+02 -4.934003e+01
+15 4040     8.029399e+02 -1.221800e+02
+0 4041     -1.809300e+02 3.891300e+02
+1 4041     1.639800e+02 4.434400e+02
+7 4041     -3.914600e+02 4.328600e+02
+11 4041     -1.334003e+01 -3.644600e+02
+0 4042     2.113199e+02 -5.448900e+02
+1 4042     2.032200e+02 -5.704500e+02
+0 4043     -7.275000e+02 -3.005900e+02
+1 4043     -5.546900e+02 -4.940002e+01
+0 4044     3.263900e+02 5.381400e+02
+1 4044     7.442200e+02 4.672200e+02
+13 4044     4.475000e+02 2.227700e+02
+0 4045     5.767500e+02 2.173100e+02
+1 4045     8.737500e+02 6.678998e+01
+10 4045     5.584800e+02 4.570800e+02
+15 4045     7.497300e+02 5.197300e+02
+0 4046     1.946200e+02 2.534000e+02
+1 4046     5.001300e+02 2.097900e+02
+7 4046     6.640015e+00 3.498300e+02
+10 4046     1.080500e+02 4.601600e+02
+15 4046     2.164500e+02 5.102500e+02
+0 4047     2.860601e+02 -1.822700e+02
+1 4047     3.882100e+02 -2.397900e+02
+7 4047     2.258101e+02 -1.888000e+01
+0 4048     7.002900e+02 -3.545200e+02
+1 4048     7.990200e+02 -5.733000e+02
+0 4049     3.603400e+02 -1.912000e+02
+1 4049     4.610601e+02 -2.738200e+02
+0 4050     3.861899e+02 -4.227002e+01
+1 4050     5.516100e+02 -1.361700e+02
+10 4050     3.573500e+02 1.328400e+02
+15 4050     5.038500e+02 1.322100e+02
+0 4051     -4.796997e+01 2.852300e+02
+1 4051     2.670699e+02 3.070200e+02
+0 4052     9.028998e+01 3.735700e+02
+1 4052     4.393400e+02 3.572700e+02
+0 4053     -1.145900e+02 2.421000e+02
+1 4053     1.860699e+02 2.828400e+02
+0 4054     1.788199e+02 5.081700e+02
+1 4054     5.695699e+02 4.729000e+02
+0 4055     3.103500e+02 5.325000e+02
+1 4055     7.238900e+02 4.652800e+02
+0 4056     2.937700e+02 4.842000e+02
+1 4056     6.918101e+02 4.177900e+02
+0 4057     3.524500e+02 4.594900e+02
+1 4057     7.504399e+02 3.758800e+02
+0 4058     3.948199e+02 4.635400e+02
+1 4058     8.000100e+02 3.690300e+02
+0 4059     2.471000e+02 5.043400e+02
+1 4059     6.440200e+02 4.511600e+02
+0 4060     1.721500e+02 5.078800e+02
+1 4060     5.621000e+02 4.742200e+02
+0 4061     1.459301e+02 4.810000e+02
+1 4061     5.268700e+02 4.527600e+02
+0 4062     3.524500e+02 4.594900e+02
+1 4062     7.504399e+02 3.758800e+02
+0 4063     1.740200e+02 5.140800e+02
+1 4063     5.664200e+02 4.799800e+02
+0 4064     3.655601e+02 5.595500e+02
+1 4064     7.961700e+02 4.807600e+02
+2 4064     2.151001e+01 3.273500e+02
+0 4065     3.677800e+02 4.735900e+02
+1 4065     7.717800e+02 3.870600e+02
+0 4066     1.946700e+02 5.102000e+02
+1 4066     5.874900e+02 4.709500e+02
+0 4067     1.280400e+02 4.935900e+02
+1 4067     5.120800e+02 4.704700e+02
+0 4068     3.629700e+02 4.638600e+02
+1 4068     7.636100e+02 3.781900e+02
+0 4069     4.239100e+02 4.590400e+02
+1 4069     8.336300e+02 3.566100e+02
+0 4070     1.897100e+02 5.089200e+02
+1 4070     5.814800e+02 4.707000e+02
+0 4071     2.524399e+02 5.150600e+02
+1 4071     6.516899e+02 4.614500e+02
+0 4072     2.747600e+02 5.141700e+02
+1 4072     6.787300e+02 4.547700e+02
+0 4073     4.192800e+02 4.598200e+02
+1 4073     8.282800e+02 3.589000e+02
+0 4074     4.189600e+02 4.515300e+02
+1 4074     8.260500e+02 3.494800e+02
+0 4075     2.837600e+02 5.317600e+02
+1 4075     6.931600e+02 4.712600e+02
+0 4076     2.747600e+02 5.141700e+02
+1 4076     6.787300e+02 4.547700e+02
+11 4076     3.956200e+02 -2.391600e+02
+0 4077     2.424900e+02 5.276600e+02
+1 4077     6.460601e+02 4.772200e+02
+0 4078     2.531600e+02 5.054600e+02
+1 4078     6.511500e+02 4.508400e+02
+0 4079     1.898600e+02 5.275400e+02
+1 4079     5.874700e+02 4.898700e+02
+0 4080     2.488300e+02 5.157800e+02
+1 4080     6.478000e+02 4.632000e+02
+0 4081     1.580601e+02 5.103900e+02
+1 4081     5.478800e+02 4.803400e+02
+0 4082     1.280400e+02 4.935900e+02
+1 4082     5.120800e+02 4.704700e+02
+0 4083     -1.820100e+02 -5.221000e+02
+1 4083     -1.596700e+02 -4.121400e+02
+0 4084     2.166600e+02 2.304700e+02
+1 4084     5.138500e+02 1.806400e+02
+6 4084     -1.061600e+02 2.533200e+02
+0 4085     3.103600e+02 2.662600e+02
+1 4085     6.269000e+02 1.896200e+02
+6 4085     -2.346002e+01 3.177200e+02
+0 4086     2.166600e+02 2.304700e+02
+1 4086     5.138500e+02 1.806400e+02
+6 4086     -1.061600e+02 2.533200e+02
+0 4087     -2.445000e+02 -4.823199e+02
+1 4087     -2.014800e+02 -3.555800e+02
+6 4087     -1.588800e+02 -6.730300e+02
+0 4088     2.363700e+02 2.802000e+02
+1 4088     5.540900e+02 2.246500e+02
+6 4088     -1.167000e+02 3.125200e+02
+0 4089     5.819800e+02 -2.655900e+02
+1 4089     7.022100e+02 -4.352400e+02
+6 4089     5.718199e+02 -1.357700e+02
+0 4090     -6.771002e+01 -5.216500e+02
+1 4090     -5.470001e+01 -4.499301e+02
+6 4090     7.108002e+01 -6.309700e+02
+0 4091     2.039700e+02 2.636800e+02
+1 4091     5.142600e+02 2.172500e+02
+6 4091     -1.429900e+02 2.860200e+02
+0 4092     -2.089900e+02 -5.652000e+02
+1 4092     -1.998300e+02 -4.422000e+02
+6 4092     -5.952002e+01 -7.438500e+02
+0 4093     5.524399e+02 -3.213500e+02
+1 4093     6.465200e+02 -4.795500e+02
+6 4093     5.756700e+02 -1.983101e+02
+0 4094     -2.719800e+02 -4.456600e+02
+1 4094     -2.126000e+02 -3.135500e+02
+6 4094     -2.178800e+02 -6.482300e+02
+0 4095     4.306700e+02 -4.716500e+02
+1 4095     4.540000e+02 -5.819700e+02
+6 4095     5.480300e+02 -3.819800e+02
+0 4096     2.435601e+02 2.669000e+02
+1 4096     5.562200e+02 2.093800e+02
+6 4096     -9.944000e+01 3.002500e+02
+0 4097     -5.057001e+01 1.943800e+02
+1 4097     2.305601e+02 2.200400e+02
+6 4097     -3.996500e+02 1.338800e+02
+0 4098     -7.819000e+01 1.989000e+02
+1 4098     2.051000e+02 2.318700e+02
+6 4098     -4.368100e+02 1.306400e+02
+0 4099     -5.909998e+01 1.990000e+02
+1 4099     2.236100e+02 2.268700e+02
+6 4099     -4.135700e+02 1.366600e+02
+0 4100     5.864700e+02 -2.664700e+02
+1 4100     7.068700e+02 -4.378400e+02
+6 4100     5.765699e+02 -1.352100e+02
+0 4101     6.463000e+01 2.249300e+02
+1 4101     3.562600e+02 2.176400e+02
+6 4101     -2.800600e+02 2.032500e+02
+0 4102     2.381700e+02 2.566900e+02
+1 4102     5.467200e+02 2.006700e+02
+6 4102     -9.900000e+01 2.871300e+02
+0 4103     -2.381900e+02 -5.526000e+02
+1 4103     -2.210800e+02 -4.210800e+02
+6 4103     -1.029700e+02 -7.447900e+02
+0 4104     2.921801e+02 9.857001e+01
+1 4104     4.915400e+02 3.809998e+01
+7 4104     1.768800e+02 2.504500e+02
+10 4104     2.352800e+02 2.860800e+02
+15 4104     3.544399e+02 3.129100e+02
+0 4105     1.984998e+01 1.536600e+02
+1 4105     2.346000e+02 1.718600e+02
+0 4106     5.363800e+02 4.219971e+00
+1 4106     7.650900e+02 -1.455700e+02
+7 4106     3.868700e+02 1.704400e+02
+10 4106     5.281400e+02 2.030800e+02
+0 4107     -1.647900e+02 -5.143199e+02
+1 4107     -1.412200e+02 -4.105500e+02
+0 4108     5.283800e+02 -4.068300e+02
+1 4108     5.847800e+02 -5.561000e+02
+7 4108     4.760699e+02 -2.032600e+02
+0 4109     3.277500e+02 -1.283700e+02
+1 4109     4.523700e+02 -2.008000e+02
+15 4109     4.309600e+02 6.469971e+00
+0 4110     5.241400e+02 -2.727700e+02
+1 4110     6.357000e+02 -4.207900e+02
+0 4111     2.091998e+01 1.565800e+02
+1 4111     2.366700e+02 1.743400e+02
+0 4112     3.635400e+02 4.608600e+02
+1 4112     7.635100e+02 3.746400e+02
+0 4113     1.042900e+02 -2.210900e+02
+1 4113     1.901200e+02 -2.176400e+02
+12 4113     1.786800e+02 -1.457600e+02
+0 4114     7.014001e+01 2.485100e+02
+1 4114     3.706801e+02 2.394800e+02
+0 4115     2.408400e+02 2.777300e+02
+1 4115     5.578800e+02 2.208900e+02
+6 4115     -1.106200e+02 3.109400e+02
+0 4116     3.206801e+02 2.287700e+02
+1 4116     6.224100e+02 1.491800e+02
+0 4117     7.700195e-01 -1.054100e+02
+1 4117     1.301600e+02 -7.312000e+01
+0 4118     -8.462900e+02 -1.607700e+02
+1 4118     -6.053700e+02 1.037200e+02
+0 4119     2.258800e+02 -3.915000e+02
+1 4119     2.675200e+02 -4.268600e+02
+0 4120     -2.256400e+02 5.112800e+02
+1 4120     1.486700e+02 5.755300e+02
+2 4120     -5.080500e+02 2.740200e+02
+0 4121     3.167600e+02 2.385000e+02
+1 4121     6.221700e+02 1.600200e+02
+0 4122     -3.050300e+02 -1.208800e+02
+1 4122     -1.261700e+02 -6.169983e+00
+0 4123     5.504800e+02 -2.923300e+02
+1 4123     6.560200e+02 -4.501700e+02
+6 4123     5.576100e+02 -1.708700e+02
+0 4124     -4.903600e+02 1.523900e+02
+1 4124     -1.984300e+02 2.954300e+02
+0 4125     3.133101e+02 1.506000e+01
+1 4125     4.845000e+02 -5.207001e+01
+0 4126     -4.747200e+02 1.707700e+02
+1 4126     -1.779900e+02 3.085200e+02
+0 4127     -1.564800e+02 2.191800e+02
+1 4127     1.367100e+02 2.722000e+02
+0 4128     -7.744500e+02 -5.683101e+02
+1 4128     -6.746100e+02 -2.655300e+02
+0 4129     -2.284400e+02 2.041600e+02
+1 4129     6.257001e+01 2.769900e+02
+0 4130     2.665000e+02 -2.315900e+02
+1 4130     3.509000e+02 -2.817600e+02
+10 4130     2.383700e+02 -9.772998e+01
+0 4131     3.190200e+02 -2.130000e+02
+1 4131     4.133600e+02 -2.809000e+02
+0 4132     -7.792000e+02 -4.716400e+02
+1 4132     -6.491700e+02 -1.821900e+02
+0 4133     -8.292200e+02 -4.361100e+02
+1 4133     -6.771500e+02 -1.377300e+02
+0 4134     -2.022600e+02 2.300900e+02
+1 4134     9.670001e+01 2.946800e+02
+10 4134     -3.556100e+02 3.925400e+02
+0 4135     2.058600e+02 3.159800e+02
+1 4135     5.362700e+02 2.687100e+02
+0 4136     -7.550100e+02 -4.539100e+02
+1 4136     -6.250000e+02 -1.741000e+02
+0 4137     -6.648700e+02 -4.973800e+02
+1 4137     -5.667000e+02 -2.376300e+02
+0 4138     2.024000e+02 -6.526001e+01
+1 4138     3.383101e+02 -9.610999e+01
+0 4139     -8.228003e+01 2.834700e+02
+1 4139     2.322900e+02 3.145400e+02
+0 4140     8.853998e+01 -5.571899e+02
+1 4140     7.948999e+01 -5.373900e+02
+0 4141     -2.678400e+02 -4.208300e+02
+1 4141     -2.004500e+02 -2.922200e+02
+0 4142     5.683002e+01 2.485300e+02
+1 4142     3.573800e+02 2.431500e+02
+0 4143     2.815002e+01 -1.807200e+02
+1 4143     1.321400e+02 -1.547100e+02
+15 4143     2.692999e+01 -1.037600e+02
+0 4144     -7.491200e+02 -4.744200e+02
+1 4144     -6.266200e+02 -1.935700e+02
+0 4145     -2.669300e+02 -4.272100e+02
+1 4145     -2.019500e+02 -2.983900e+02
+0 4146     -1.049000e+02 -5.723400e+02
+1 4146     -1.080100e+02 -4.834500e+02
+6 4146     6.346002e+01 -7.004000e+02
+0 4147     -7.756500e+02 -5.524000e+02
+1 4147     -6.707900e+02 -2.518300e+02
+4 4147     -5.422600e+02 1.665200e+02
+0 4148     -4.747200e+02 1.707700e+02
+1 4148     -1.779900e+02 3.085200e+02
+0 4149     -2.692400e+02 -4.536600e+02
+1 4149     -2.134200e+02 -3.214400e+02
+0 4150     -7.742000e+02 -5.566700e+02
+1 4150     -6.710700e+02 -2.556600e+02
+0 4151     -7.087000e+01 2.928700e+02
+1 4151     2.472100e+02 3.206400e+02
+10 4151     -2.077000e+02 4.808100e+02
+0 4152     -2.278800e+02 1.756500e+02
+1 4152     5.251001e+01 2.498100e+02
+0 4153     3.713000e+02 6.888000e+01
+1 4153     5.843000e+02 -2.053003e+01
+0 4154     -7.925900e+02 -5.380601e+02
+1 4154     -6.795000e+02 -2.347200e+02
+0 4155     -5.664500e+02 1.126001e+01
+1 4155     -3.143800e+02 1.856000e+02
+0 4156     4.064301e+02 3.721002e+01
+1 4156     6.083600e+02 -6.362000e+01
+0 4157     -4.668800e+02 -2.366500e+02
+1 4157     -3.123100e+02 -6.598999e+01
+0 4158     -4.416700e+02 -2.672500e+02
+1 4158     -3.005300e+02 -1.004800e+02
+0 4159     2.053700e+02 -3.814800e+02
+1 4159     2.550300e+02 -4.108900e+02
+0 4160     3.957500e+02 -7.880005e+00
+1 4160     5.770100e+02 -1.049600e+02
+0 4161     -1.103000e+02 -5.101300e+02
+1 4161     -8.976001e+01 -4.252100e+02
+0 4162     -1.852000e+02 -5.230500e+02
+1 4162     -1.628200e+02 -4.115800e+02
+0 4163     -1.552300e+02 1.880900e+02
+1 4163     1.264100e+02 2.420800e+02
+0 4164     5.788600e+02 -4.021002e+01
+1 4164     7.941300e+02 -2.059100e+02
+10 4164     5.830699e+02 1.547600e+02
+15 4164     7.839000e+02 1.582500e+02
+0 4165     -2.510900e+02 1.978700e+02
+1 4165     3.850000e+01 2.766300e+02
+15 4165     -3.882300e+02 3.713700e+02
+0 4166     3.677800e+02 4.735900e+02
+1 4166     7.717800e+02 3.870600e+02
+0 4167     2.936300e+02 4.769500e+02
+1 4167     6.891600e+02 4.101900e+02
+0 4168     -2.986500e+02 -5.702400e+02
+1 4168     -2.812600e+02 -4.168700e+02
+6 4168     -1.622500e+02 -7.952200e+02
+0 4169     -6.996997e+01 1.959700e+02
+1 4169     2.120400e+02 2.268700e+02
+0 4170     -5.839700e+02 -3.000000e+00
+1 4170     -3.346600e+02 1.772800e+02
+0 4171     -1.966000e+02 -4.997300e+02
+1 4171     -1.646300e+02 -3.869200e+02
+0 4172     -4.069400e+02 2.264400e+02
+1 4172     -9.707001e+01 3.433700e+02
+0 4173     -5.312700e+02 1.730900e+02
+1 4173     -2.281500e+02 3.246200e+02
+0 4174     6.191000e+02 -2.091400e+02
+1 4174     7.682200e+02 -3.920600e+02
+0 4175     -1.939800e+02 -5.571500e+02
+1 4175     -1.831300e+02 -4.398199e+02
+0 4176     -1.221800e+02 2.507700e+02
+1 4176     1.816000e+02 2.934500e+02
+0 4177     -5.438600e+02 -5.891998e+01
+1 4177     -3.186200e+02 1.160400e+02
+0 4178     -7.815100e+02 -5.667700e+02
+1 4178     -6.797300e+02 -2.622600e+02
+0 4179     -7.582300e+02 -5.648800e+02
+1 4179     -6.614300e+02 -2.676200e+02
+4 4179     -5.551600e+02 1.573400e+02
+0 4180     6.240300e+02 -3.306500e+02
+1 4180     7.213800e+02 -5.173300e+02
+0 4181     6.823000e+02 -3.147000e+02
+1 4181     7.957800e+02 -5.251500e+02
+0 4182     -5.893600e+02 -4.792500e+02
+1 4182     -4.988100e+02 -2.451200e+02
+10 4182     -7.345300e+02 -4.864700e+02
+0 4183     -8.401001e+01 -5.201001e+01
+1 4183     7.021002e+01 2.099976e+00
+0 4184     -7.234500e+02 -4.637000e+02
+1 4184     -6.032900e+02 -1.918100e+02
+0 4185     2.310100e+02 1.601200e+02
+1 4185     4.496000e+02 1.182300e+02
+0 4186     7.458199e+02 -3.291700e+02
+1 4186     8.653400e+02 -5.674600e+02
+0 4187     2.865800e+02 -1.010500e+02
+1 4187     4.175699e+02 -1.597300e+02
+0 4188     2.345000e+02 3.236400e+02
+1 4188     5.694301e+02 2.686600e+02
+0 4189     5.122400e+02 -1.919000e+02
+1 4189     6.562800e+02 -3.351900e+02
+0 4190     6.085300e+02 -2.837300e+02
+1 4190     7.243101e+02 -4.638700e+02
+0 4191     1.010800e+02 4.426600e+02
+1 4191     4.688700e+02 4.248400e+02
+0 4192     -2.090800e+02 2.086200e+02
+1 4192     8.232001e+01 2.761900e+02
+0 4193     -2.170900e+02 -4.219500e+02
+1 4193     -1.548800e+02 -3.097300e+02
+0 4194     3.762700e+02 -9.481000e+01
+1 4194     5.190500e+02 -1.844800e+02
+10 4194     3.513300e+02 7.108002e+01
+15 4194     4.956700e+02 5.848999e+01
+0 4195     2.929600e+02 -1.914100e+02
+1 4195     3.910601e+02 -2.511900e+02
+0 4196     2.336100e+02 -1.953300e+02
+1 4196     3.295200e+02 -2.349200e+02
+0 4197     -9.904999e+01 2.639300e+02
+1 4197     2.088101e+02 2.998900e+02
+0 4198     -7.327100e+02 -4.311800e+02
+1 4198     -6.004100e+02 -1.609100e+02
+0 4199     2.138101e+02 -3.928400e+02
+1 4199     2.547100e+02 -4.241100e+02
+0 4200     -7.771900e+02 -5.243199e+02
+1 4200     -6.640000e+02 -2.277200e+02
+4 4200     -5.212600e+02 1.642900e+02
+0 4201     -9.821002e+01 -5.551600e+02
+1 4201     -9.558002e+01 -4.706300e+02
+7 4201     -8.600000e+01 -4.657500e+02
+0 4202     5.111200e+02 -3.139000e+02
+1 4202     6.043199e+02 -4.572100e+02
+0 4203     -4.363900e+02 -2.605500e+02
+1 4203     -2.937900e+02 -9.539001e+01
+0 4204     -7.804999e+01 2.078500e+02
+1 4204     2.085500e+02 2.405300e+02
+0 4205     4.026600e+02 3.534600e+02
+1 4205     7.633000e+02 2.526100e+02
+0 4206     2.745900e+02 3.115600e+02
+1 4206     6.070200e+02 2.455100e+02
+0 4207     -8.107001e+01 -5.223800e+02
+1 4207     -6.703998e+01 -4.464100e+02
+0 4208     3.462400e+02 -7.534003e+01
+1 4208     4.903000e+02 -1.539200e+02
+10 4208     3.139700e+02 8.982001e+01
+0 4209     4.959800e+02 -4.098600e+02
+1 4209     5.483199e+02 -5.466700e+02
+0 4210     3.875500e+02 -1.805400e+02
+1 4210     5.040400e+02 -2.747700e+02
+0 4211     5.062300e+02 -2.049000e+02
+1 4211     6.449000e+02 -3.458000e+02
+0 4212     2.426400e+02 1.507600e+02
+1 4212     4.579200e+02 1.053300e+02
+0 4213     7.327600e+02 -3.501200e+02
+1 4213     8.394900e+02 -5.829200e+02
+0 4214     4.665601e+02 2.642000e+02
+1 4214     7.862500e+02 1.450000e+02
+0 4215     4.707000e+02 2.610400e+02
+1 4215     7.900400e+02 1.399800e+02
+0 4216     -1.814500e+02 -5.513199e+02
+1 4216     -1.691800e+02 -4.388700e+02
+0 4217     4.707000e+02 2.610400e+02
+1 4217     7.900400e+02 1.399800e+02
+0 4218     -4.726700e+02 1.610600e+02
+1 4218     -1.798800e+02 2.990300e+02
+0 4219     4.994500e+02 3.890000e+02
+1 4219     8.622800e+02 2.688600e+02
+0 4220     1.019400e+02 -5.411000e+02
+1 4220     9.845001e+01 -5.273800e+02
+0 4221     3.516700e+02 3.279600e+02
+1 4221     6.967400e+02 2.406200e+02
+0 4222     -2.015500e+02 1.874100e+02
+1 4222     8.215997e+01 2.538900e+02
+0 4223     6.405200e+02 -9.815997e+01
+1 4223     8.407200e+02 -2.874600e+02
+10 4223     6.599100e+02 9.509998e+01
+12 4223     6.116400e+02 5.194000e+01
+0 4224     -1.512400e+02 -5.387600e+02
+1 4224     -1.378800e+02 -4.382000e+02
+0 4225     3.418500e+02 -2.701700e+02
+1 4225     4.280200e+02 -3.506900e+02
+15 4225     4.686100e+02 -1.887800e+02
+0 4226     -2.223600e+02 -4.007200e+02
+1 4226     -1.520000e+02 -2.884200e+02
+7 4226     -2.503000e+02 -3.410300e+02
+15 4226     -2.769900e+02 -4.352200e+02
+0 4227     -3.149900e+02 -1.945000e+02
+1 4227     -1.616400e+02 -7.103003e+01
+10 4227     -4.384300e+02 -1.177500e+02
+15 4227     -4.260200e+02 -1.696100e+02
+0 4228     -1.452100e+02 1.301001e+01
+1 4228     4.241998e+01 7.957999e+01
+15 4228     -2.286100e+02 1.348200e+02
+0 4229     -1.910500e+02 -3.535500e+02
+1 4229     -1.089000e+02 -2.546400e+02
+15 4229     -2.405100e+02 -3.675900e+02
+0 4230     6.307600e+02 -1.201001e+01
+1 4230     8.582000e+02 -1.932400e+02
+15 4230     8.527000e+02 2.064000e+02
+0 4231     3.852900e+02 -4.812000e+01
+1 4231     5.484399e+02 -1.406800e+02
+15 4231     5.033300e+02 1.234000e+02
+0 4232     -8.176001e+01 5.832001e+01
+1 4232     1.111600e+02 1.068600e+02
+15 4232     -1.507500e+02 2.048800e+02
+0 4233     -1.847900e+02 -1.583400e+02
+1 4233     -3.934003e+01 -7.364001e+01
+15 4233     -2.570900e+02 -1.029300e+02
+0 4234     3.344900e+02 -1.696997e+01
+1 4234     4.991000e+02 -9.171002e+01
+15 4234     4.269600e+02 1.597200e+02
+0 4235     1.151200e+02 -5.371002e+01
+1 4235     2.537100e+02 -5.716998e+01
+15 4235     1.275600e+02 8.009000e+01
+0 4236     -1.426800e+02 1.004999e+01
+1 4236     4.391998e+01 7.614001e+01
+10 4236     -2.604900e+02 1.378600e+02
+15 4236     -2.254000e+02 1.303500e+02
+0 4237     -6.335900e+02 -3.205000e+02
+1 4237     -4.840400e+02 -9.297998e+01
+15 4237     -8.480500e+02 -3.871400e+02
+0 4238     1.228600e+02 -1.279400e+02
+1 4238     2.405300e+02 -1.330500e+02
+15 4238     1.486500e+02 -1.996002e+01
+0 4239     -7.915002e+01 -2.548100e+02
+1 4239     1.598999e+01 -1.949200e+02
+10 4239     -1.584200e+02 -1.625100e+02
+15 4239     -1.060000e+02 -2.187900e+02
+0 4240     -1.412900e+02 1.787500e+02
+1 4240     1.364500e+02 2.297600e+02
+0 4241     2.119900e+02 4.681900e+02
+1 4241     5.950400e+02 4.223000e+02
+0 4242     -1.054600e+02 2.952800e+02
+1 4242     2.143700e+02 3.319300e+02
+0 4243     2.826600e+02 3.542800e+02
+1 4243     6.332400e+02 2.864500e+02
+0 4244     3.967000e+02 3.297100e+02
+1 4244     7.471600e+02 2.295300e+02
+0 4245     2.176200e+02 -2.858600e+02
+1 4245     2.879399e+02 -3.195000e+02
+15 4245     2.996200e+02 -2.216300e+02
+0 4246     6.469000e+01 -3.997700e+02
+1 4246     1.060700e+02 -3.790000e+02
+0 4247     -2.532000e+02 -5.205601e+02
+1 4247     -2.232800e+02 -3.872900e+02
+0 4248     -4.779700e+02 2.043600e+02
+1 4248     -1.695200e+02 3.402200e+02
+0 4249     -5.854999e+01 -1.389000e+02
+1 4249     6.512000e+01 -8.883002e+01
+0 4250     2.354100e+02 -1.765400e+02
+1 4250     3.380200e+02 -2.176200e+02
+0 4251     -1.303600e+02 1.783400e+02
+1 4251     1.469100e+02 2.262600e+02
+0 4252     3.554800e+02 4.903003e+01
+1 4252     5.538800e+02 -3.404999e+01
+0 4253     2.687600e+02 3.308500e+02
+1 4253     6.083000e+02 2.665900e+02
+0 4254     2.635200e+02 3.216800e+02
+1 4254     6.004700e+02 2.579100e+02
+0 4255     2.049700e+02 2.323000e+02
+1 4255     5.023000e+02 1.859100e+02
+0 4256     -2.459200e+02 4.309003e+01
+1 4256     -1.248999e+01 1.296200e+02
+0 4257     4.207800e+02 3.430500e+02
+1 4257     7.796500e+02 2.366400e+02
+7 4257     2.025900e+02 4.628400e+02
+0 4258     1.686600e+02 4.759800e+02
+1 4258     5.499600e+02 4.413300e+02
+0 4259     5.258400e+02 -3.198400e+02
+1 4259     6.173500e+02 -4.679000e+02
+7 4259     4.521500e+02 -1.247800e+02
+0 4260     1.726100e+02 -5.745699e+02
+1 4260     1.533600e+02 -5.840000e+02
+7 4260     1.846600e+02 -4.260200e+02
+0 4261     3.793600e+02 3.635300e+02
+1 4261     7.421200e+02 2.691200e+02
+0 4262     1.881100e+02 3.743600e+02
+1 4262     5.406600e+02 3.320700e+02
+0 4263     1.940300e+02 3.244700e+02
+1 4263     5.272600e+02 2.804300e+02
+0 4264     3.229500e+02 2.493700e+02
+1 4264     6.331000e+02 1.690300e+02
+0 4265     -2.556700e+02 4.194000e+01
+1 4265     -2.196997e+01 1.312800e+02
+0 4266     5.427200e+02 -2.006700e+02
+1 4266     6.856400e+02 -3.549700e+02
+0 4267     -2.569600e+02 3.878998e+01
+1 4267     -2.426001e+01 1.287800e+02
+0 4268     4.121200e+02 3.020300e+02
+1 4268     7.518900e+02 1.967800e+02
+0 4269     -7.990002e+01 1.955500e+02
+1 4269     2.022000e+02 2.290700e+02
+0 4270     5.403400e+02 -3.547700e+02
+1 4270     6.191600e+02 -5.086600e+02
+0 4271     3.106500e+02 3.855700e+02
+1 4271     6.763199e+02 3.105200e+02
+0 4272     -1.972998e+01 -1.584500e+02
+1 4272     9.512000e+01 -1.186500e+02
+0 4273     5.755601e+02 -3.707800e+02
+1 4273     6.514900e+02 -5.384600e+02
+0 4274     3.102200e+02 2.218700e+02
+1 4274     6.089399e+02 1.448500e+02
+0 4275     2.583400e+02 3.163000e+02
+1 4275     5.912800e+02 2.546600e+02
+0 4276     -7.827002e+01 1.819400e+02
+1 4276     1.987500e+02 2.157100e+02
+0 4277     -5.782600e+02 8.969971e+00
+1 4277     -3.261300e+02 1.864500e+02
+10 4277     -7.793300e+02 9.206000e+01
+0 4278     5.351700e+02 -2.813000e+02
+1 4278     6.441400e+02 -4.330699e+02
+12 4278     5.943700e+02 -1.485300e+02
+0 4279     4.906300e+02 3.145700e+02
+1 4279     8.282600e+02 1.911200e+02
+0 4280     1.773000e+02 3.517600e+02
+1 4280     5.204600e+02 3.123800e+02
+13 4280     3.450400e+02 5.433002e+01
+0 4281     1.368300e+02 -5.448300e+02
+1 4281     1.304600e+02 -5.431400e+02
+15 4281     2.254500e+02 -5.838101e+02
+0 4282     -3.076700e+02 -2.385000e+02
+1 4282     -1.706800e+02 -1.133800e+02
+7 4282     -3.789200e+02 -2.002500e+02
+10 4282     -4.246200e+02 -1.683900e+02
+15 4282     -4.107000e+02 -2.280300e+02
+0 4283     -5.601001e+01 8.616000e+01
+1 4283     1.418300e+02 1.268900e+02
+15 4283     -1.213800e+02 2.452300e+02
+0 4284     9.187000e+01 -3.454500e+02
+1 4284     1.511100e+02 -3.365400e+02
+10 4284     4.910999e+01 -2.469400e+02
+15 4284     1.376500e+02 -3.188800e+02
+0 4285     -1.395100e+02 2.632300e+02
+1 4285     1.690200e+02 3.100900e+02
+15 4285     -2.431200e+02 4.764500e+02
+0 4286     -1.530800e+02 9.130005e+00
+1 4286     3.385999e+01 7.815997e+01
+15 4286     -2.389200e+02 1.283400e+02
+0 4287     5.809800e+02 -3.804900e+02
+1 4287     6.527400e+02 -5.508600e+02
+15 4287     8.199301e+02 -3.073000e+02
+0 4288     -1.282500e+02 -2.662100e+02
+1 4288     -2.338000e+01 -1.921400e+02
+15 4288     -1.671300e+02 -2.405500e+02
+0 4289     4.567600e+02 2.503600e+02
+1 4289     7.725400e+02 1.325700e+02
+0 4290     4.465800e+02 2.122000e+02
+1 4290     7.501700e+02 9.528000e+01
+0 4291     3.237000e+02 -1.781200e+02
+1 4291     4.287100e+02 -2.486000e+02
+0 4292     -2.703900e+02 -5.110800e+02
+1 4292     -2.351600e+02 -3.731200e+02
+0 4293     -1.414500e+02 -5.441899e+02
+1 4293     -1.307600e+02 -4.458300e+02
+0 4294     4.664600e+02 2.440700e+02
+1 4294     7.803600e+02 1.233400e+02
+0 4295     -1.463600e+02 -5.429100e+02
+1 4295     -1.349700e+02 -4.427500e+02
+0 4296     4.792100e+02 2.284600e+02
+1 4296     7.887600e+02 1.037400e+02
+0 4297     4.432300e+02 1.997600e+02
+1 4297     7.419100e+02 8.453000e+01
+0 4298     4.075500e+02 3.645000e+02
+1 4298     7.735200e+02 2.623300e+02
+0 4299     7.374800e+02 -2.789000e+02
+1 4299     8.762900e+02 -5.119000e+02
+0 4300     2.565601e+02 3.070100e+02
+1 4300     5.859900e+02 2.459400e+02
+0 4301     -2.458500e+02 -5.855000e+02
+1 4301     -2.396600e+02 -4.477600e+02
+0 4302     -8.454300e+02 -1.936300e+02
+1 4302     -6.148100e+02 7.507001e+01
+0 4303     6.582001e+01 3.704400e+02
+1 4303     4.128199e+02 3.605900e+02
+0 4304     -4.431000e+02 1.264700e+02
+1 4304     -1.648800e+02 2.596300e+02
+0 4305     2.309301e+02 4.678100e+02
+1 4305     6.166500e+02 4.167800e+02
+14 4305     5.395300e+02 -2.595200e+02
+0 4306     2.885100e+02 1.827500e+02
+1 4306     5.699800e+02 1.124300e+02
+0 4307     5.767500e+02 4.435999e+01
+1 4307     8.186400e+02 -1.160600e+02
+0 4308     2.533101e+02 -1.215400e+02
+1 4308     3.749500e+02 -1.688100e+02
+0 4309     5.571100e+02 -2.452300e+02
+1 4309     6.825200e+02 -4.054900e+02
+0 4310     3.608900e+02 -5.109003e+01
+1 4310     5.163900e+02 -1.350800e+02
+0 4311     3.780699e+02 4.018700e+02
+1 4311     7.570800e+02 3.090100e+02
+0 4312     -4.979700e+02 1.337400e+02
+1 4312     -2.117300e+02 2.803400e+02
+0 4313     -4.447700e+02 5.177002e+01
+1 4313     -1.926200e+02 1.910400e+02
+0 4314     5.248900e+02 -3.653900e+02
+1 4314     5.980300e+02 -5.135200e+02
+0 4315     2.780400e+02 5.275600e+02
+1 4315     6.855500e+02 4.679900e+02
+0 4316     -4.385000e+02 1.627100e+02
+1 4316     -1.480300e+02 2.921500e+02
+0 4317     4.231899e+02 3.665400e+02
+1 4317     7.925699e+02 2.600500e+02
+0 4318     1.687300e+02 -5.732500e+02
+1 4318     1.503199e+02 -5.816100e+02
+0 4319     5.666300e+02 -2.874800e+02
+1 4319     6.764399e+02 -4.518600e+02
+0 4320     -2.790900e+02 3.064001e+01
+1 4320     -4.804999e+01 1.275400e+02
+0 4321     3.783600e+02 4.485100e+02
+1 4321     7.769100e+02 3.575700e+02
+0 4322     5.052000e+02 -4.185700e+02
+1 4322     5.542600e+02 -5.589000e+02
+0 4323     7.419000e+01 4.792100e+02
+1 4323     4.509000e+02 4.699100e+02
+0 4324     3.012500e+02 3.281100e+02
+1 4324     6.419301e+02 2.549800e+02
+0 4325     3.867900e+02 4.717700e+02
+1 4325     7.937400e+02 3.802000e+02
+0 4326     -2.922900e+02 5.609003e+01
+1 4326     -5.096997e+01 1.546600e+02
+0 4327     1.233000e+02 3.676100e+02
+1 4327     4.708700e+02 3.424800e+02
+0 4328     4.908500e+02 -2.620500e+02
+1 4328     6.041899e+02 -3.975100e+02
+0 4329     5.424900e+02 -1.201001e+01
+1 4329     7.651899e+02 -1.640700e+02
+0 4330     -1.927300e+02 1.856900e+02
+1 4330     8.976001e+01 2.498200e+02
+0 4331     -7.519000e+01 -5.005601e+02
+1 4331     -5.359003e+01 -4.283100e+02
+0 4332     -3.047900e+02 -5.846500e+02
+1 4332     -2.920000e+02 -4.279200e+02
+0 4333     7.214700e+02 -3.076800e+02
+1 4333     8.453500e+02 -5.351899e+02
+0 4334     -3.119600e+02 -4.660699e+02
+1 4334     -2.558700e+02 -3.193400e+02
+0 4335     3.958199e+02 -2.854400e+02
+1 4335     4.842400e+02 -3.842900e+02
+0 4336     -5.146997e+01 2.417100e+02
+1 4336     2.471600e+02 2.660800e+02
+0 4337     5.290900e+02 -3.877200e+02
+1 4337     5.928800e+02 -5.371300e+02
+0 4338     -1.804600e+02 1.848600e+02
+1 4338     1.013600e+02 2.459600e+02
+0 4339     3.500400e+02 3.802700e+02
+1 4339     7.172800e+02 2.944100e+02
+0 4340     -1.206700e+02 -5.135500e+02
+1 4340     -1.005900e+02 -4.245300e+02
+0 4341     2.336300e+02 2.084100e+02
+1 4341     5.226700e+02 1.541000e+02
+0 4342     3.053700e+02 2.557400e+02
+1 4342     6.172700e+02 1.806600e+02
+0 4343     -2.238100e+02 1.988500e+02
+1 4343     6.467999e+01 2.705700e+02
+0 4344     5.113400e+02 -3.762900e+02
+1 4344     5.786700e+02 -5.191400e+02
+0 4345     -5.225000e+01 1.859000e+02
+1 4345     2.256400e+02 2.123600e+02
+0 4346     -3.116200e+02 1.041600e+02
+1 4346     -5.183002e+01 2.044500e+02
+0 4347     2.579600e+02 2.929400e+02
+1 4347     5.818199e+02 2.312800e+02
+0 4348     3.022200e+02 2.146500e+02
+1 4348     5.972300e+02 1.402000e+02
+0 4349     6.575000e+01 4.635200e+02
+1 4349     4.367900e+02 4.539400e+02
+0 4350     -2.791000e+02 -4.470900e+02
+1 4350     -2.204300e+02 -3.126600e+02
+0 4351     7.033600e+02 -2.859800e+02
+1 4351     8.323400e+02 -5.046600e+02
+0 4352     -7.856100e+02 -4.898700e+02
+1 4352     -6.598300e+02 -1.956100e+02
+0 4353     6.687700e+02 -2.740100e+02
+1 4353     7.973400e+02 -4.780601e+02
+0 4354     -1.189300e+02 1.793800e+02
+1 4354     1.584100e+02 2.242300e+02
+0 4355     5.866700e+02 -2.151001e+01
+1 4355     8.087300e+02 -1.888000e+02
+0 4356     -1.477100e+02 -4.782700e+02
+1 4356     -1.124300e+02 -3.830200e+02
+0 4357     6.811100e+02 -2.808800e+02
+1 4357     8.087900e+02 -4.901700e+02
+0 4358     -1.778900e+02 1.482900e+02
+1 4358     9.026001e+01 2.105600e+02
+0 4359     4.293700e+02 1.433200e+02
+1 4359     7.036600e+02 3.145001e+01
+0 4360     -2.966400e+02 -4.837200e+02
+1 4360     -2.486900e+02 -3.399500e+02
+0 4361     -6.775200e+02 -5.347900e+02
+1 4361     -5.890400e+02 -2.662600e+02
+0 4362     5.929200e+02 -3.521200e+02
+1 4362     6.778000e+02 -5.268300e+02
+0 4363     3.858800e+02 4.567800e+02
+1 4363     7.880699e+02 3.644000e+02
+0 4364     4.912400e+02 -4.362800e+02
+1 4364     5.322400e+02 -5.706801e+02
+0 4365     3.135200e+02 2.645000e+02
+1 4365     6.295300e+02 1.870000e+02
+0 4366     -4.217500e+02 9.264001e+01
+1 4366     -1.574800e+02 2.228000e+02
+0 4367     -7.804999e+01 2.078500e+02
+1 4367     2.085500e+02 2.405300e+02
+0 4368     -3.994500e+02 8.439999e+01
+1 4368     -1.394300e+02 2.094000e+02
+0 4369     3.180800e+02 3.881000e+02
+1 4369     6.853000e+02 3.110800e+02
+0 4370     4.081000e+02 3.544000e+02
+1 4370     7.700500e+02 2.515600e+02
+0 4371     -1.551500e+02 3.937000e+01
+1 4371     4.315002e+01 1.067300e+02
+0 4372     -1.023700e+02 6.206000e+01
+1 4372     9.789001e+01 1.147000e+02
+0 4373     2.157900e+02 5.006100e+02
+1 4373     6.077900e+02 4.553600e+02
+0 4374     -4.307700e+02 3.096997e+01
+1 4374     -1.869200e+02 1.683200e+02
+0 4375     -2.968900e+02 1.707300e+02
+1 4375     -1.459003e+01 2.630600e+02
+0 4376     2.461400e+02 3.136300e+02
+1 4376     5.775800e+02 2.553500e+02
+0 4377     -5.053300e+02 1.191000e+02
+1 4377     -2.235000e+02 2.686200e+02
+0 4378     -6.749300e+02 3.944500e+02
+1 4378     -2.801500e+02 5.601800e+02
+0 4379     5.354600e+02 -2.655900e+02
+1 4379     6.510200e+02 -4.175700e+02
+0 4380     -3.281700e+02 4.897998e+01
+1 4380     -8.753003e+01 1.580800e+02
+0 4381     -4.064000e+02 5.248999e+01
+1 4381     -1.571300e+02 1.818500e+02
+0 4382     3.199500e+02 2.540800e+02
+1 4382     6.321100e+02 1.746000e+02
+0 4383     -1.428300e+02 -5.086801e+02
+1 4383     -1.192700e+02 -4.129600e+02
+0 4384     3.828400e+02 3.734500e+02
+1 4384     7.503000e+02 2.782800e+02
+0 4385     -2.111700e+02 1.946400e+02
+1 4385     7.525000e+01 2.633700e+02
+0 4386     -2.329100e+02 1.812500e+02
+1 4386     4.997998e+01 2.564900e+02
+0 4387     4.030800e+02 3.782200e+02
+1 4387     7.753400e+02 2.777600e+02
+0 4388     -5.877100e+02 -4.677500e+02
+1 4388     -4.944500e+02 -2.352100e+02
+0 4389     -2.064900e+02 -4.874700e+02
+1 4389     -1.693300e+02 -3.725400e+02
+0 4390     -3.029500e+02 5.919000e+01
+1 4390     -5.987000e+01 1.603900e+02
+0 4391     -2.093400e+02 1.816900e+02
+1 4391     7.233002e+01 2.505600e+02
+0 4392     -1.929500e+02 1.902100e+02
+1 4392     9.123999e+01 2.546800e+02
+0 4393     4.174500e+02 1.950200e+02
+1 4393     7.129301e+02 8.610001e+01
+0 4394     2.232700e+02 4.090200e+02
+1 4394     5.906899e+02 3.576300e+02
+0 4395     6.469100e+02 -3.289000e+02
+1 4395     7.486000e+02 -5.251899e+02
+0 4396     3.712400e+02 4.323000e+02
+1 4396     7.623101e+02 3.426900e+02
+0 4397     -4.893800e+02 -1.316000e+02
+1 4397     -2.954000e+02 3.533002e+01
+0 4398     -4.355600e+02 -2.929200e+02
+1 4398     -3.042400e+02 -1.255800e+02
+0 4399     7.374800e+02 -2.789000e+02
+1 4399     8.762900e+02 -5.119000e+02
+0 4400     -3.955800e+02 -6.563000e+01
+1 4400     -1.891100e+02 7.001001e+01
+0 4401     -6.496900e+02 -3.366100e+02
+1 4401     -5.026300e+02 -1.025400e+02
+0 4402     -3.230900e+02 -2.063700e+02
+1 4402     -1.734500e+02 -7.967999e+01
+0 4403     6.923400e+02 -3.177600e+02
+1 4403     8.059700e+02 -5.325500e+02
+0 4404     1.983600e+02 3.122400e+02
+1 4404     5.271000e+02 2.671500e+02
+0 4405     3.730200e+02 1.109985e+00
+1 4405     5.519000e+02 -8.712000e+01
+0 4406     -7.846100e+02 -5.197500e+02
+1 4406     -6.680000e+02 -2.214600e+02
+0 4407     8.115997e+01 4.162400e+02
+1 4407     4.417200e+02 4.032000e+02
+0 4408     7.204200e+02 -3.484200e+02
+1 4408     8.258600e+02 -5.760100e+02
+0 4409     5.095400e+02 -3.264700e+02
+1 4409     5.975699e+02 -4.686100e+02
+0 4410     5.243400e+02 -1.939700e+02
+1 4410     6.689100e+02 -3.416600e+02
+0 4411     2.322500e+02 2.805400e+02
+1 4411     5.497600e+02 2.260100e+02
+0 4412     -4.173000e+02 -1.792400e+02
+1 4412     -2.482500e+02 -2.740997e+01
+0 4413     8.870001e+01 2.656100e+02
+1 4413     3.961801e+02 2.512300e+02
+0 4414     -2.834600e+02 3.784998e+01
+1 4414     -4.906000e+01 1.352800e+02
+0 4415     5.853900e+02 -2.084900e+02
+1 4415     7.303101e+02 -3.788500e+02
+0 4416     2.150200e+02 3.848800e+02
+1 4416     5.733900e+02 3.351700e+02
+0 4417     -6.983500e+02 -4.776200e+02
+1 4417     -5.876000e+02 -2.109600e+02
+0 4418     -3.265300e+02 -2.217900e+02
+1 4418     -1.822200e+02 -9.316998e+01
+0 4419     -4.690600e+02 -1.631000e+02
+1 4419     -2.885200e+02 1.099976e+00
+0 4420     1.533600e+02 -2.473900e+02
+1 4420     2.305800e+02 -2.591600e+02
+0 4421     -4.019700e+02 -1.176900e+02
+1 4421     -2.126200e+02 2.407001e+01
+0 4422     5.674200e+02 -4.087200e+02
+1 4422     6.254500e+02 -5.731000e+02
+0 4423     4.499100e+02 2.376600e+02
+1 4423     7.612900e+02 1.214100e+02
+0 4424     6.870200e+02 -2.983700e+02
+1 4424     8.084200e+02 -5.104500e+02
+0 4425     -7.264100e+02 -4.604600e+02
+1 4425     -6.044900e+02 -1.879900e+02
+0 4426     2.510000e+02 3.641900e+02
+1 4426     6.028000e+02 3.048300e+02
+0 4427     -4.290100e+02 2.626400e+02
+1 4427     -1.071500e+02 3.828700e+02
+0 4428     6.508199e+02 -3.066600e+02
+1 4428     7.628900e+02 -5.045100e+02
+0 4429     3.678500e+02 4.496800e+02
+1 4429     7.651000e+02 3.615200e+02
+0 4430     -3.318600e+02 -1.784100e+02
+1 4430     -1.713500e+02 -5.144000e+01
+0 4431     3.048199e+02 3.370000e+02
+1 4431     6.499200e+02 2.625700e+02
+0 4432     5.248900e+02 -3.653900e+02
+1 4432     5.980300e+02 -5.135200e+02
+0 4433     1.646899e+02 -5.208900e+02
+1 4433     1.669600e+02 -5.311200e+02
+0 4434     -3.298500e+02 3.456000e+01
+1 4434     -9.358002e+01 1.445500e+02
+0 4435     5.997400e+02 -3.487800e+02
+1 4435     6.868500e+02 -5.263000e+02
+0 4436     2.746400e+02 3.053100e+02
+1 4436     6.046801e+02 2.394700e+02
+0 4437     1.601400e+02 4.968500e+02
+1 4437     5.461200e+02 4.654600e+02
+0 4438     5.402000e+02 -1.624000e+02
+1 4438     6.999399e+02 -3.158900e+02
+0 4439     1.038200e+02 4.009000e+02
+1 4439     4.610000e+02 3.814000e+02
+0 4440     4.342100e+02 1.423100e+02
+1 4440     7.091500e+02 2.908002e+01
+0 4441     5.532900e+02 -4.105900e+02
+1 4441     6.097300e+02 -5.697900e+02
+0 4442     -4.365600e+02 -2.845100e+02
+1 4442     -3.021300e+02 -1.173900e+02
+0 4443     -4.263900e+02 -2.791200e+02
+1 4443     -2.913900e+02 -1.155200e+02
+0 4444     -3.075000e+02 -2.045100e+02
+1 4444     -1.584800e+02 -8.271002e+01
+0 4445     3.033700e+02 2.256300e+02
+1 4445     6.026600e+02 1.510100e+02
+0 4446     -6.090400e+02 3.631000e+01
+1 4446     -3.433100e+02 2.190800e+02
+0 4447     6.748800e+02 -2.718500e+02
+1 4447     8.051700e+02 -4.780800e+02
+0 4448     5.820800e+02 -3.777100e+02
+1 4448     6.553000e+02 -5.485500e+02
+0 4449     3.987300e+02 4.467500e+02
+1 4449     7.993900e+02 3.500900e+02
+0 4450     3.849301e+02 3.799200e+02
+1 4450     7.553500e+02 2.844400e+02
+0 4451     2.965100e+02 2.148400e+02
+1 4451     5.915300e+02 1.423500e+02
+0 4452     1.256500e+02 4.887600e+02
+1 4452     5.073400e+02 4.657200e+02
+0 4453     1.151900e+02 4.658300e+02
+1 4453     4.901899e+02 4.451300e+02
+0 4454     7.281801e+02 -2.809000e+02
+1 4454     8.643700e+02 -5.097500e+02
+0 4455     -3.317200e+02 4.304999e+01
+1 4455     -9.220001e+01 1.530800e+02
+0 4456     5.571002e+01 2.300400e+02
+1 4456     3.492700e+02 2.254700e+02
+0 4457     -4.771700e+02 1.037100e+02
+1 4457     -2.035500e+02 2.472100e+02
+0 4458     -4.130500e+02 -4.470601e+02
+1 4458     -3.384500e+02 -2.704900e+02
+0 4459     5.508700e+02 -3.385500e+02
+1 4459     6.369900e+02 -4.965601e+02
+0 4460     2.932600e+02 -1.703998e+01
+1 4460     4.506899e+02 -7.758002e+01
+0 4461     2.127700e+02 2.780800e+02
+1 4461     5.288000e+02 2.292500e+02
+0 4462     -5.239990e+00 1.254400e+02
+1 4462     2.003700e+02 1.514100e+02
+0 4463     -3.131800e+02 -1.186400e+02
+1 4463     -1.329600e+02 -2.039978e+00
+0 4464     6.784900e+02 -3.100200e+02
+1 4464     7.934399e+02 -5.188900e+02
+0 4465     7.324700e+02 -3.207700e+02
+1 4465     8.521100e+02 -5.527200e+02
+0 4466     5.870900e+02 -3.282500e+02
+1 4466     6.813800e+02 -4.996899e+02
+0 4467     -2.767500e+02 -4.748101e+02
+1 4467     -2.277200e+02 -3.383800e+02
+0 4468     5.719100e+02 -1.807600e+02
+1 4468     7.267300e+02 -3.461300e+02
+0 4469     -1.227500e+02 2.073200e+02
+1 4469     1.649399e+02 2.518900e+02
+0 4470     -7.378400e+02 -3.250400e+02
+1 4470     -5.714600e+02 -6.776001e+01
+0 4471     -7.282100e+02 -4.471801e+02
+1 4471     -6.020800e+02 -1.762800e+02
+0 4472     4.753500e+02 2.400200e+02
+1 4472     7.882600e+02 1.167700e+02
+0 4473     5.164301e+02 -3.371400e+02
+1 4473     6.006600e+02 -4.820699e+02
+0 4474     5.446100e+02 -3.602300e+02
+1 4474     6.216200e+02 -5.158800e+02
+0 4475     5.624900e+02 -4.004900e+02
+1 4475     6.240400e+02 -5.631000e+02
+0 4476     -2.130100e+02 -4.407000e+02
+1 4476     -1.578900e+02 -3.276900e+02
+0 4477     -1.901000e+02 -3.320300e+02
+1 4477     -1.001700e+02 -2.350200e+02
+0 4478     5.724100e+02 -2.836600e+02
+1 4478     6.841200e+02 -4.499700e+02
+0 4479     4.567600e+02 2.503600e+02
+1 4479     7.725400e+02 1.325700e+02
+0 4480     7.390500e+02 -2.872300e+02
+1 4480     8.750400e+02 -5.210800e+02
+0 4481     4.931000e+02 -1.004200e+02
+1 4481     6.736300e+02 -2.366100e+02
+0 4482     -7.215800e+02 -4.693600e+02
+1 4482     -6.035400e+02 -1.970400e+02
+0 4483     6.890997e+01 4.713900e+02
+1 4483     4.419600e+02 4.610200e+02
+0 4484     5.420699e+02 -2.624700e+02
+1 4484     6.595500e+02 -4.168900e+02
+0 4485     -2.731500e+02 -4.393300e+02
+1 4485     -2.118000e+02 -3.073500e+02
+0 4486     4.305601e+02 2.646400e+02
+1 4486     7.505400e+02 1.546700e+02
+0 4487     5.483300e+02 -3.641100e+02
+1 4487     6.242400e+02 -5.212200e+02
+0 4488     5.611500e+02 -2.667100e+02
+1 4488     6.787200e+02 -4.285100e+02
+0 4489     1.143900e+02 4.734600e+02
+1 4489     4.909399e+02 4.525700e+02
+0 4490     3.145699e+02 2.555100e+02
+1 4490     6.267700e+02 1.777200e+02
+0 4491     -4.669000e+01 2.884700e+02
+1 4491     2.699900e+02 3.100200e+02
+0 4492     -6.749300e+02 3.944500e+02
+1 4492     -2.801500e+02 5.601800e+02
+0 4493     -3.011100e+02 1.438200e+02
+1 4493     -2.788000e+01 2.391000e+02
+0 4494     -7.572500e+02 -4.583600e+02
+1 4494     -6.280600e+02 -1.774900e+02
+0 4495     -2.198200e+02 1.865400e+02
+1 4495     6.408002e+01 2.578800e+02
+0 4496     -6.143600e+02 5.340997e+01
+1 4496     -3.420100e+02 2.362600e+02
+0 4497     -9.277002e+01 1.484003e+01
+1 4497     8.803998e+01 6.734998e+01
+0 4498     -2.273400e+02 3.164700e+02
+1 4498     1.013000e+02 3.840600e+02
+0 4499     6.236300e+02 -2.852000e+02
+1 4499     7.405300e+02 -4.711899e+02
+0 4500     3.087900e+02 2.434400e+02
+1 4500     6.160900e+02 1.671600e+02
+0 4501     -1.902700e+02 2.000500e+02
+1 4501     9.721002e+01 2.628600e+02
+0 4502     4.366100e+02 3.027300e+02
+1 4502     7.685500e+02 1.932400e+02
+0 4503     -1.463900e+02 3.316998e+01
+1 4503     4.965002e+01 9.875000e+01
+0 4504     -2.480700e+02 3.478000e+02
+1 4504     8.820001e+01 4.198100e+02
+0 4505     5.062800e+02 -1.215200e+02
+1 4505     6.792400e+02 -2.620300e+02
+0 4506     5.784301e+02 -3.776800e+02
+1 4506     6.512100e+02 -5.471000e+02
+0 4507     1.101400e+02 4.740500e+02
+1 4507     4.868800e+02 4.540400e+02
+0 4508     -4.263900e+02 -2.791200e+02
+1 4508     -2.913900e+02 -1.155200e+02
+0 4509     2.764200e+02 5.113600e+02
+1 4509     6.787300e+02 4.511900e+02
+0 4510     -8.228003e+01 2.834700e+02
+1 4510     2.322900e+02 3.145400e+02
+0 4511     4.064301e+02 3.721002e+01
+1 4511     6.083600e+02 -6.362000e+01
+0 4512     2.018700e+02 2.140500e+02
+1 4512     4.919399e+02 1.686800e+02
+0 4513     4.620000e+02 2.376900e+02
+1 4513     7.737300e+02 1.177500e+02
+0 4514     6.099600e+02 -2.954900e+02
+1 4514     7.209700e+02 -4.763700e+02
+0 4515     4.951001e+01 3.786500e+02
+1 4515     3.990500e+02 3.730000e+02
+0 4516     2.099000e+02 3.916900e+02
+1 4516     5.705200e+02 3.435900e+02
+0 4517     -2.984900e+02 -9.215002e+01
+1 4517     -1.102100e+02 1.802002e+01
+0 4518     1.742700e+02 3.732200e+02
+1 4518     5.258000e+02 3.345400e+02
+0 4519     3.299800e+02 4.319200e+02
+1 4519     7.161000e+02 3.528000e+02
+0 4520     2.352100e+02 2.755700e+02
+1 4520     5.510200e+02 2.204600e+02
+0 4521     -3.275300e+02 -1.987100e+02
+1 4521     -1.742400e+02 -7.120001e+01
+0 4522     -7.958900e+02 -5.043400e+02
+1 4522     -6.721500e+02 -2.052800e+02
+0 4523     5.532900e+02 -4.105900e+02
+1 4523     6.097300e+02 -5.697900e+02
+0 4524     6.261600e+02 -2.169200e+02
+1 4524     7.727200e+02 -4.029800e+02
+0 4525     4.566300e+02 2.092600e+02
+1 4525     7.594000e+02 8.957001e+01
+0 4526     -1.270000e+02 1.647000e+02
+1 4526     1.452800e+02 2.124500e+02
+0 4527     2.345601e+02 3.714300e+02
+1 4527     5.886000e+02 3.166100e+02
+0 4528     5.482400e+02 -3.138000e+01
+1 4528     7.636500e+02 -1.858400e+02
+0 4529     3.429600e+02 -5.038500e+02
+1 4529     3.508500e+02 -5.800000e+02
+0 4530     6.210000e+02 -2.746100e+02
+1 4530     7.422000e+02 -4.595800e+02
+0 4531     2.269100e+02 2.127100e+02
+1 4531     5.175400e+02 1.602900e+02
+0 4532     6.866500e+02 -2.767000e+02
+1 4532     8.169600e+02 -4.883800e+02
+0 4533     -3.019000e+02 9.932001e+01
+1 4533     -4.452002e+01 1.979300e+02
+0 4534     -2.400300e+02 -4.172700e+02
+1 4534     -1.741500e+02 -2.980500e+02
+0 4535     2.908800e+02 3.244300e+02
+1 4535     6.295300e+02 2.539500e+02
+0 4536     -5.907500e+02 -4.649600e+02
+1 4536     -4.959900e+02 -2.319600e+02
+0 4537     5.995500e+02 -3.501001e+01
+1 4537     8.179500e+02 -2.070600e+02
+0 4538     2.042600e+02 5.043100e+02
+1 4538     5.963800e+02 4.624600e+02
+0 4539     -6.845800e+02 -4.375800e+02
+1 4539     -5.638700e+02 -1.805800e+02
+0 4540     -2.156800e+02 -4.420800e+02
+1 4540     -1.610000e+02 -3.282700e+02
+0 4541     2.427600e+02 2.486900e+02
+1 4541     5.484000e+02 1.913900e+02
+0 4542     7.103000e+02 -3.424800e+02
+1 4542     8.161400e+02 -5.661500e+02
+0 4543     2.838000e+02 1.762300e+02
+1 4543     5.621200e+02 1.074800e+02
+0 4544     2.468000e+02 3.103100e+02
+1 4544     5.773300e+02 2.518200e+02
+0 4545     5.515300e+02 -2.953800e+02
+1 4545     6.561500e+02 -4.539600e+02
+0 4546     3.136400e+02 1.901001e+01
+1 4546     4.859800e+02 -4.834003e+01
+0 4547     3.037800e+02 1.899800e+02
+1 4547     5.884800e+02 1.152200e+02
+0 4548     -4.180100e+02 -4.475000e+02
+1 4548     -3.428200e+02 -2.695300e+02
+0 4549     -4.197900e+02 2.437000e+01
+1 4549     -1.797200e+02 1.591700e+02
+0 4550     6.386500e+02 -2.434998e+01
+1 4550     8.620699e+02 -2.086800e+02
+0 4551     3.110900e+02 3.947200e+02
+1 4551     6.802800e+02 3.197400e+02
+0 4552     2.979800e+02 3.995700e+02
+1 4552     6.678800e+02 3.278400e+02
+0 4553     3.280000e+02 -4.515997e+01
+1 4553     4.822000e+02 -1.172600e+02
+0 4554     5.885500e+02 -2.505800e+02
+1 4554     7.159000e+02 -4.228400e+02
+0 4555     5.213700e+02 -3.723500e+02
+1 4555     5.914000e+02 -5.189100e+02
+0 4556     2.657400e+02 3.152000e+02
+1 4556     5.989800e+02 2.516000e+02
+0 4557     6.326300e+02 -3.184700e+02
+1 4557     7.374000e+02 -5.093300e+02
+0 4558     -1.499400e+02 2.112200e+02
+1 4558     1.401500e+02 2.629200e+02
+0 4559     3.907900e+02 -2.436100e+02
+1 4559     4.961700e+02 -3.416800e+02
+0 4560     -1.458500e+02 -8.500000e+00
+1 4560     3.353998e+01 5.956000e+01
+0 4561     2.260200e+02 -5.331899e+02
+1 4561     2.226500e+02 -5.647600e+02
+0 4562     -9.690997e+01 2.166800e+02
+1 4562     1.935200e+02 2.540600e+02
+0 4563     5.983300e+02 -2.458900e+02
+1 4563     7.291600e+02 -4.215400e+02
+0 4564     4.276500e+02 1.261500e+02
+1 4564     6.959200e+02 1.325000e+01
+0 4565     -3.675400e+02 -1.575400e+02
+1 4565     -1.961200e+02 -2.223999e+01
+0 4566     6.687700e+02 -2.740100e+02
+1 4566     7.973400e+02 -4.780601e+02
+0 4567     -7.819000e+01 1.989000e+02
+1 4567     2.051000e+02 2.318700e+02
+0 4568     -6.664600e+02 -5.467500e+02
+1 4568     -5.839800e+02 -2.801400e+02
+0 4569     4.696500e+02 2.282900e+02
+1 4569     7.790800e+02 1.058600e+02
+0 4570     -1.235500e+02 1.732200e+02
+1 4570     1.518101e+02 2.195700e+02
+0 4571     4.867500e+02 2.169600e+02
+1 4571     7.928300e+02 8.919000e+01
+0 4572     2.307300e+02 2.701500e+02
+1 4572     5.444200e+02 2.159800e+02
+0 4573     6.274399e+02 -1.171000e+02
+1 4573     8.167000e+02 -3.012400e+02
+0 4574     -2.775000e+01 -1.513600e+02
+1 4574     9.015997e+01 -1.096100e+02
+0 4575     1.683800e+02 -5.697500e+02
+1 4575     1.510900e+02 -5.780000e+02
+0 4576     -1.627200e+02 -4.764700e+02
+1 4576     -1.254800e+02 -3.769600e+02
+0 4577     1.392900e+02 4.728500e+02
+1 4577     5.177500e+02 4.463100e+02
+0 4578     3.073900e+02 3.504700e+02
+1 4578     6.578000e+02 2.755700e+02
+0 4579     5.283500e+02 -2.416300e+02
+1 4579     6.533700e+02 -3.909000e+02
+0 4580     2.206400e+02 1.983000e+02
+1 4580     5.051100e+02 1.477700e+02
+0 4581     1.075300e+02 4.987400e+02
+1 4581     4.904000e+02 4.807600e+02
+0 4582     5.952900e+02 -3.600700e+02
+1 4582     6.774900e+02 -5.355900e+02
+0 4583     5.303600e+02 -2.571400e+02
+1 4583     6.489600e+02 -4.078300e+02
+0 4584     -4.683800e+02 1.026600e+02
+1 4584     -1.954600e+02 2.440700e+02
+0 4585     -9.337000e+01 -2.217500e+02
+1 4585     1.331000e+01 -1.584500e+02
+0 4586     5.879999e+01 2.459900e+02
+1 4586     3.586700e+02 2.400400e+02
+0 4587     1.891200e+02 3.976700e+02
+1 4587     5.509200e+02 3.552800e+02
+0 4588     -4.872998e+01 1.966100e+02
+1 4588     2.330699e+02 2.219400e+02
+0 4589     6.429999e+01 2.427300e+02
+1 4589     3.629200e+02 2.352700e+02
+0 4590     2.369800e+02 3.290300e+02
+1 4590     5.742800e+02 2.733500e+02
+0 4591     1.679600e+02 3.393800e+02
+1 4591     5.060300e+02 3.025600e+02
+0 4592     1.255700e+02 -5.058900e+02
+1 4592     1.332400e+02 -5.023400e+02
+0 4593     1.867700e+02 3.539100e+02
+1 4593     5.315100e+02 3.121000e+02
+0 4594     2.312200e+02 -2.028500e+02
+1 4594     3.240699e+02 -2.416700e+02
+0 4595     -3.428900e+02 4.483002e+01
+1 4595     -1.017500e+02 1.576400e+02
+0 4596     -3.966700e+02 -9.440997e+01
+1 4596     -2.001200e+02 4.366998e+01
+0 4597     -4.256300e+02 2.606400e+02
+1 4597     -1.045600e+02 3.804700e+02
+0 4598     3.594700e+02 4.388300e+02
+1 4598     7.518700e+02 3.520700e+02
+0 4599     2.540699e+02 2.681700e+02
+1 4599     5.682800e+02 2.071000e+02
+0 4600     6.928900e+02 -2.954700e+02
+1 4600     8.161801e+02 -5.099301e+02
+0 4601     3.942900e+02 3.734900e+02
+1 4601     7.633800e+02 2.755300e+02
+0 4602     4.545900e+02 2.139500e+02
+1 4602     7.587700e+02 9.492001e+01
+0 4603     4.879301e+02 -4.136900e+02
+1 4603     5.381700e+02 -5.472600e+02
+0 4604     5.725100e+02 -3.360000e+02
+1 4604     6.621600e+02 -5.024900e+02
+0 4605     5.252100e+02 -3.879600e+02
+1 4605     5.889100e+02 -5.361000e+02
+0 4606     2.106899e+02 2.740300e+02
+1 4606     5.251000e+02 2.260300e+02
+0 4607     -1.673200e+02 1.311800e+02
+1 4607     9.426001e+01 1.914000e+02
+0 4608     4.514800e+02 1.948100e+02
+1 4608     7.496801e+02 7.626001e+01
+0 4609     -8.028200e+02 -4.399000e+02
+1 4609     -6.579800e+02 -1.484900e+02
+0 4610     5.508900e+02 -3.119000e+02
+1 4610     6.484700e+02 -4.698400e+02
+0 4611     -1.290100e+02 2.054100e+02
+1 4611     1.585800e+02 2.519000e+02
+0 4612     6.061801e+02 -3.453600e+02
+1 4612     6.957000e+02 -5.254600e+02
+0 4613     -4.865200e+02 1.143600e+02
+1 4613     -2.083300e+02 2.593700e+02
+0 4614     5.664000e+02 -2.556600e+02
+1 4614     6.887900e+02 -4.192700e+02
+0 4615     5.830800e+02 -3.239300e+02
+1 4615     6.791000e+02 -4.945800e+02
+0 4616     5.324800e+02 -2.256000e+01
+1 4616     7.499200e+02 -1.719400e+02
+0 4617     -7.625500e+02 -5.332100e+02
+1 4617     -6.546900e+02 -2.395200e+02
+0 4618     4.502000e+02 2.121800e+02
+1 4618     7.538000e+02 9.434000e+01
+0 4619     5.291000e+02 -3.514900e+02
+1 4619     6.081801e+02 -5.011700e+02
+0 4620     4.635601e+02 2.107100e+02
+1 4620     7.667300e+02 8.922000e+01
+0 4621     -3.397000e+02 -1.876300e+02
+1 4621     -1.815000e+02 -5.762000e+01
+0 4622     4.753500e+02 2.400200e+02
+1 4622     7.882600e+02 1.167700e+02
+0 4623     4.843800e+02 2.222100e+02
+1 4623     7.921300e+02 9.548999e+01
+0 4624     3.925601e+02 -2.277002e+01
+1 4624     5.665699e+02 -1.181700e+02
+0 4625     5.767400e+02 -3.616700e+02
+1 4625     6.556100e+02 -5.302300e+02
+0 4626     -7.378400e+02 -3.250400e+02
+1 4626     -5.714600e+02 -6.776001e+01
+0 4627     4.407000e+02 -2.495001e+01
+1 4627     6.182500e+02 -1.365500e+02
+0 4628     5.275100e+02 -2.672700e+02
+1 4628     6.415200e+02 -4.167400e+02
+0 4629     4.955500e+02 -4.241100e+02
+1 4629     5.420200e+02 -5.606700e+02
+0 4630     6.035400e+02 -3.415600e+02
+1 4630     6.937900e+02 -5.207000e+02
+0 4631     4.921600e+02 -1.397700e+02
+1 4631     6.564600e+02 -2.757300e+02
+0 4632     4.094000e+01 2.205800e+02
+1 4632     3.307400e+02 2.203100e+02
+0 4633     -3.275300e+02 -1.987100e+02
+1 4633     -1.742400e+02 -7.120001e+01
+0 4634     -7.413700e+02 -3.429100e+02
+1 4634     -5.795900e+02 -8.226001e+01
+0 4635     9.284998e+01 4.808300e+02
+1 4635     4.694399e+02 4.665500e+02
+0 4636     9.708002e+01 4.779800e+02
+1 4636     4.725900e+02 4.626800e+02
+0 4637     3.290400e+02 5.390300e+02
+1 4637     7.473101e+02 4.674500e+02
+0 4638     5.612700e+02 -3.130700e+02
+1 4638     6.593600e+02 -4.755601e+02
+0 4639     -2.132000e+02 -5.036801e+02
+1 4639     -1.810100e+02 -3.850500e+02
+0 4640     -2.963700e+02 3.953003e+01
+1 4640     -6.073999e+01 1.404100e+02
+0 4641     -1.589900e+02 -5.088600e+02
+1 4641     -1.338800e+02 -4.078100e+02
+0 4642     5.503600e+02 -8.530029e+00
+1 4642     7.752900e+02 -1.632700e+02
+0 4643     3.736000e+02 3.966000e+02
+1 4643     7.502000e+02 3.046200e+02
+0 4644     2.363900e+02 3.759700e+02
+1 4644     5.923199e+02 3.207800e+02
+0 4645     -2.873300e+02 1.820800e+02
+1 4645     -1.380005e+00 2.715000e+02
+0 4646     -3.448300e+02 2.133700e+02
+1 4646     -4.391998e+01 3.156400e+02
+0 4647     4.075900e+02 -4.109985e+00
+1 4647     5.912200e+02 -1.048400e+02
+0 4648     1.789399e+02 -2.035500e+02
+1 4648     2.710800e+02 -2.249200e+02
+0 4649     3.171100e+02 2.126800e+02
+1 4649     6.123199e+02 1.339800e+02
+0 4650     -6.881000e+01 2.963000e+02
+1 4650     2.503300e+02 3.233800e+02
+0 4651     5.051300e+02 -3.334700e+02
+1 4651     5.896801e+02 -4.741300e+02
+0 4652     -6.258100e+02 -2.367200e+02
+1 4652     -4.497700e+02 -2.112000e+01
+0 4653     5.693600e+02 -3.661400e+02
+1 4653     6.459700e+02 -5.315000e+02
+0 4654     5.606000e+02 -3.288000e+02
+1 4654     6.520601e+02 -4.905500e+02
+0 4655     7.074399e+02 -2.962000e+02
+1 4655     8.334399e+02 -5.166200e+02
+0 4656     4.630000e+02 4.010600e+02
+1 4656     8.270699e+02 2.909400e+02
+0 4657     -1.290100e+02 2.054100e+02
+1 4657     1.585800e+02 2.519000e+02
+0 4658     -7.148200e+02 -4.067400e+02
+1 4658     -5.783800e+02 -1.452200e+02
+0 4659     2.000100e+02 2.036700e+02
+1 4659     4.862200e+02 1.591100e+02
+0 4660     -2.632600e+02 4.292999e+01
+1 4660     -2.858002e+01 1.345200e+02
+0 4661     3.714700e+02 2.958200e+02
+1 4661     7.048600e+02 2.023800e+02
+0 4662     -3.176000e+02 -1.452100e+02
+1 4662     -1.466400e+02 -2.514001e+01
+0 4663     2.894600e+02 1.861600e+02
+1 4663     5.723700e+02 1.156300e+02
+0 4664     5.827900e+02 1.881200e+02
+1 4664     8.710601e+02 3.367999e+01
+0 4665     -1.029000e+02 -5.258300e+02
+1 4665     -8.870001e+01 -4.420400e+02
+0 4666     -1.227500e+02 2.073200e+02
+1 4666     1.649399e+02 2.518900e+02
+0 4667     -8.385800e+02 -8.929999e+01
+1 4667     -5.770200e+02 1.642600e+02
+0 4668     -3.747700e+02 -1.473400e+02
+1 4668     -1.989500e+02 -1.087000e+01
+0 4669     -9.590997e+01 2.047100e+02
+1 4669     1.903300e+02 2.421200e+02
+0 4670     4.902900e+02 -9.781000e+01
+1 4670     6.716600e+02 -2.328300e+02
+0 4671     -1.354100e+02 2.906500e+02
+1 4671     1.832700e+02 3.351700e+02
+0 4672     5.307100e+02 -3.903300e+02
+1 4672     5.938101e+02 -5.404800e+02
+0 4673     1.002500e+02 4.577700e+02
+1 4673     4.720000e+02 4.407100e+02
+0 4674     -7.678800e+02 -4.615300e+02
+1 4674     -6.371400e+02 -1.769400e+02
+0 4675     3.603400e+02 -1.912000e+02
+1 4675     4.610601e+02 -2.738200e+02
+0 4676     -1.206000e+02 2.344700e+02
+1 4676     1.767300e+02 2.773100e+02
+0 4677     -3.137800e+02 1.202800e+02
+1 4677     -4.816998e+01 2.203100e+02
+0 4678     4.882100e+02 2.209200e+02
+1 4678     7.957300e+02 9.295999e+01
+0 4679     4.218000e+02 3.748900e+02
+1 4679     7.942700e+02 2.694100e+02
+0 4680     2.025601e+02 4.914700e+02
+1 4680     5.914200e+02 4.491900e+02
+0 4681     -2.251900e+02 -3.793700e+02
+1 4681     -1.466500e+02 -2.679100e+02
+0 4682     3.598800e+02 3.588700e+02
+1 4682     7.183101e+02 2.695900e+02
+0 4683     1.986000e+02 2.228000e+02
+1 4683     4.921200e+02 1.781300e+02
+0 4684     5.018800e+02 -1.216000e+02
+1 4684     6.745601e+02 -2.609600e+02
+0 4685     4.828600e+02 1.474900e+02
+1 4685     7.658500e+02 1.758002e+01
+0 4686     6.417600e+02 -3.061100e+02
+1 4686     7.530900e+02 -5.003400e+02
+0 4687     -1.902500e+02 1.698900e+02
+1 4687     8.662000e+01 2.339700e+02
+0 4688     4.029700e+02 3.740000e+02
+1 4688     7.732400e+02 2.732900e+02
+0 4689     -2.927500e+02 -5.722900e+02
+1 4689     -2.767500e+02 -4.207800e+02
+0 4690     -2.834700e+02 -1.089300e+02
+1 4690     -1.019400e+02 -1.460022e+00
+0 4691     -8.633400e+02 -2.078998e+01
+1 4691     -5.748600e+02 2.305900e+02
+0 4692     -2.052200e+02 1.997800e+02
+1 4692     8.281000e+01 2.667200e+02
+0 4693     6.403998e+01 4.553600e+02
+1 4693     4.332200e+02 4.472400e+02
+0 4694     -3.212900e+02 5.141998e+01
+1 4694     -7.975000e+01 1.581000e+02
+0 4695     -1.683100e+02 2.001200e+02
+1 4695     1.182600e+02 2.570400e+02
+0 4696     -1.188600e+02 2.638400e+02
+1 4696     1.897100e+02 3.048600e+02
+0 4697     5.469800e+02 -2.982100e+02
+1 4697     6.497100e+02 -4.545300e+02
+0 4698     -1.163100e+02 -5.281400e+02
+1 4698     -1.018200e+02 -4.397200e+02
+0 4699     5.820800e+02 -3.777100e+02
+1 4699     6.553000e+02 -5.485500e+02
+0 4700     -2.691200e+02 -5.352200e+02
+1 4700     -2.425000e+02 -3.953300e+02
+0 4701     6.090997e+01 4.806400e+02
+1 4701     4.367400e+02 4.741300e+02
+0 4702     -3.343500e+02 2.350200e+02
+1 4702     -2.687000e+01 3.330900e+02
+0 4703     -2.790600e+02 -4.308300e+02
+1 4703     -2.141800e+02 -2.978300e+02
+0 4704     -2.238900e+02 1.801000e+02
+1 4704     5.796002e+01 2.529600e+02
+0 4705     3.908000e+02 -4.733000e+02
+1 4705     4.121000e+02 -5.682900e+02
+0 4706     -1.278500e+02 2.032100e+02
+1 4706     1.585601e+02 2.493100e+02
+0 4707     3.217300e+02 3.907600e+02
+1 4707     6.900800e+02 3.127700e+02
+0 4708     6.261200e+02 -4.359985e+00
+1 4708     8.552400e+02 -1.835500e+02
+0 4709     -4.180100e+02 -4.475000e+02
+1 4709     -3.428200e+02 -2.695300e+02
+0 4710     1.983600e+02 3.122400e+02
+1 4710     5.271000e+02 2.671500e+02
+0 4711     -1.988400e+02 -4.866899e+02
+1 4711     -1.618400e+02 -3.744400e+02
+0 4712     -7.221200e+02 -4.582400e+02
+1 4712     -6.005300e+02 -1.875300e+02
+0 4713     -1.347800e+02 1.562600e+02
+1 4713     1.344000e+02 2.063400e+02
+0 4714     -7.279800e+02 -3.909700e+02
+1 4714     -5.838400e+02 -1.276800e+02
+0 4715     -4.599100e+02 -2.436200e+02
+1 4715     -3.086500e+02 -7.423999e+01
+0 4716     -3.710300e+02 -3.460700e+02
+1 4716     -2.658000e+02 -1.926900e+02
+0 4717     6.874500e+02 -2.939000e+02
+1 4717     8.107600e+02 -5.061100e+02
+0 4718     5.283400e+02 -3.461900e+02
+1 4718     6.097300e+02 -4.953900e+02
+0 4719     3.780200e+02 -2.966000e+02
+1 4719     4.606700e+02 -3.888000e+02
+0 4720     6.516899e+02 -2.576400e+02
+1 4720     7.842000e+02 -4.545900e+02
+0 4721     5.485300e+02 -3.502900e+02
+1 4721     6.293300e+02 -5.078600e+02
+0 4722     5.786100e+02 -3.252900e+02
+1 4722     6.733500e+02 -4.941400e+02
+0 4723     5.247900e+02 -3.537700e+02
+1 4723     6.026600e+02 -5.020100e+02
+0 4724     7.076801e+02 -3.146500e+02
+1 4724     8.249200e+02 -5.358900e+02
+0 4725     5.349399e+02 -3.803200e+02
+1 4725     6.026400e+02 -5.322900e+02
+0 4726     -7.543200e+02 -4.680601e+02
+1 4726     -6.287300e+02 -1.864400e+02
+0 4727     6.597998e+01 3.524600e+02
+1 4727     4.064100e+02 3.427600e+02
+0 4728     5.091899e+02 -2.883100e+02
+1 4728     6.131899e+02 -4.301300e+02
+0 4729     -1.497000e+02 -5.046100e+02
+1 4729     -1.236200e+02 -4.068200e+02
+0 4730     3.995699e+02 4.400100e+02
+1 4730     7.976300e+02 3.429900e+02
+0 4731     -3.643800e+02 2.725100e+02
+1 4731     -4.664001e+01 3.769200e+02
+0 4732     4.878600e+02 1.658800e+02
+1 4732     7.780300e+02 3.510999e+01
+0 4733     5.292300e+02 -3.787900e+02
+1 4733     5.977700e+02 -5.283800e+02
+0 4734     3.727400e+02 4.026400e+02
+1 4734     7.515300e+02 3.114400e+02
+0 4735     1.209200e+02 -5.751899e+02
+1 4735     1.035200e+02 -5.659800e+02
+0 4736     8.373999e+01 4.532200e+02
+1 4736     4.538500e+02 4.401600e+02
+0 4737     3.826500e+02 3.529000e+02
+1 4737     7.413700e+02 2.572900e+02
+0 4738     -4.490600e+02 9.573001e+01
+1 4738     -1.809900e+02 2.328000e+02
+0 4739     -3.743100e+02 -1.763900e+02
+1 4739     -2.089100e+02 -3.751001e+01
+0 4740     7.276400e+02 -2.939700e+02
+1 4740     8.581200e+02 -5.231100e+02
+0 4741     4.158199e+02 -5.821997e+01
+1 4741     5.769399e+02 -1.612600e+02
+0 4742     -3.544900e+02 6.427002e+01
+1 4742     -1.059000e+02 1.791300e+02
+0 4743     4.683300e+02 1.990100e+02
+1 4743     7.668700e+02 7.464001e+01
+0 4744     3.344900e+02 -1.696997e+01
+1 4744     4.991000e+02 -9.171002e+01
+0 4745     7.210300e+02 -2.978500e+02
+1 4745     8.470100e+02 -5.232200e+02
+0 4746     -1.612700e+02 -5.721600e+02
+1 4746     -1.593000e+02 -4.645800e+02
+0 4747     -3.099900e+02 3.090200e+02
+1 4747     1.613000e+01 3.978200e+02
+0 4748     -4.071500e+02 -5.678400e+02
+1 4748     -3.751900e+02 -3.793300e+02
+0 4749     -2.622400e+02 -3.020020e+00
+1 4749     -4.435999e+01 9.110999e+01
+0 4750     -1.463500e+02 1.965000e+02
+1 4750     1.376100e+02 2.475600e+02
+0 4751     -1.064600e+02 2.401600e+02
+1 4751     1.927800e+02 2.791300e+02
+0 4752     5.524399e+02 -3.213500e+02
+1 4752     6.465200e+02 -4.795500e+02
+0 4753     -1.312100e+02 2.098200e+02
+1 4753     1.577400e+02 2.567900e+02
+0 4754     5.400000e+02 -1.502200e+02
+1 4754     7.042300e+02 -3.033700e+02
+0 4755     5.402000e+02 -1.624000e+02
+1 4755     6.999399e+02 -3.158900e+02
+0 4756     -1.526200e+02 -5.650024e+00
+1 4756     2.819000e+01 6.396997e+01
+0 4757     2.030200e+02 4.848000e+02
+1 4757     5.903199e+02 4.420100e+02
+0 4758     6.798500e+02 -2.968000e+02
+1 4758     8.004000e+02 -5.060300e+02
+0 4759     -9.581000e+01 1.141998e+01
+1 4759     8.390002e+01 6.504999e+01
+0 4760     -1.574900e+02 1.766600e+02
+1 4760     1.200900e+02 2.318700e+02
+0 4761     2.570500e+02 2.604600e+02
+1 4761     5.679600e+02 1.992800e+02
+0 4762     6.052300e+02 -2.331500e+02
+1 4762     7.421100e+02 -4.117400e+02
+0 4763     6.748101e+02 -3.056100e+02
+1 4763     7.906899e+02 -5.128700e+02
+0 4764     -2.155500e+02 2.253400e+02
+1 4764     8.248999e+01 2.937300e+02
+0 4765     2.709700e+02 5.320300e+02
+1 4765     6.791899e+02 4.746500e+02
+0 4766     -8.541500e+02 -4.293500e+02
+1 4766     -6.941400e+02 -1.252800e+02
+0 4767     2.421200e+02 4.055600e+02
+1 4767     6.102900e+02 3.491600e+02
+0 4768     -6.978998e+01 -5.856600e+02
+1 4768     -8.059998e+01 -5.081500e+02
+0 4769     -1.487800e+02 -1.003998e+01
+1 4769     3.002002e+01 5.914001e+01
+0 4770     3.627400e+02 3.414400e+02
+1 4770     7.143199e+02 2.512900e+02
+0 4771     5.320800e+02 -3.652200e+02
+1 4771     6.055800e+02 -5.163500e+02
+0 4772     7.096200e+02 -3.000500e+02
+1 4772     8.344500e+02 -5.213800e+02
+0 4773     -3.769800e+02 -1.759200e+02
+1 4773     -2.116900e+02 -3.631000e+01
+0 4774     3.022200e+02 2.146500e+02
+1 4774     5.972300e+02 1.402000e+02
+0 4775     3.099399e+02 2.173700e+02
+1 4775     6.067200e+02 1.408400e+02
+0 4776     -2.834700e+02 -1.089300e+02
+1 4776     -1.019400e+02 -1.460022e+00
+0 4777     -4.780800e+02 -1.423100e+02
+1 4777     -2.893400e+02 2.271997e+01
+0 4778     -4.605400e+02 -2.489400e+02
+1 4778     -3.110300e+02 -7.856000e+01
+0 4779     -2.598300e+02 -4.969000e+02
+1 4779     -2.207600e+02 -3.636900e+02
+0 4780     7.437500e+02 -2.886800e+02
+1 4780     8.795400e+02 -5.242500e+02
+0 4781     4.108500e+02 4.377600e+02
+1 4781     8.099100e+02 3.372300e+02
+0 4782     -8.265997e+01 2.071400e+02
+1 4782     2.039500e+02 2.409600e+02
+0 4783     3.462400e+02 -7.534003e+01
+1 4783     4.903000e+02 -1.539200e+02
+0 4784     7.541500e+02 -3.298900e+02
+1 4784     8.743199e+02 -5.716801e+02
+0 4785     -1.009700e+02 4.391300e+02
+1 4785     2.565800e+02 4.731500e+02
+0 4786     5.882800e+02 -3.548500e+02
+1 4786     6.717900e+02 -5.277500e+02
+0 4787     -6.637000e+01 -3.997200e+02
+1 4787     -1.073999e+01 -3.367100e+02
+0 4788     -6.078800e+02 1.373999e+01
+1 4788     -3.497900e+02 1.982200e+02
+0 4789     2.887700e+02 3.557800e+02
+1 4789     6.401100e+02 2.861000e+02
+0 4790     -3.098200e+02 2.952500e+02
+1 4790     1.298999e+01 3.849400e+02
+0 4791     4.946997e+01 2.140300e+02
+1 4791     3.370100e+02 2.114300e+02
+0 4792     -5.181100e+02 1.307400e+02
+1 4792     -2.309500e+02 2.825200e+02
+0 4793     7.005800e+02 -2.638700e+02
+1 4793     8.388500e+02 -4.806000e+02
+0 4794     -2.154400e+02 -4.374700e+02
+1 4794     -1.591600e+02 -3.239900e+02
+0 4795     3.899200e+02 -8.769000e+01
+1 4795     5.365000e+02 -1.818300e+02
+0 4796     -7.530700e+02 -4.743400e+02
+1 4796     -6.299100e+02 -1.925200e+02
+0 4797     -1.213000e+02 3.111000e+02
+1 4797     2.044900e+02 3.513000e+02
+0 4798     2.228199e+02 2.262700e+02
+1 4798     5.187700e+02 1.742400e+02
+0 4799     5.341200e+02 -3.588700e+02
+1 4799     6.108300e+02 -5.103199e+02
+0 4800     -2.683100e+02 3.057500e+02
+1 4800     5.834003e+01 3.840000e+02
+0 4801     -3.174400e+02 -2.135800e+02
+1 4801     -1.703700e+02 -8.800000e+01
+0 4802     -1.676500e+02 1.280900e+02
+1 4802     9.257001e+01 1.887500e+02
+0 4803     -2.971300e+02 3.216400e+02
+1 4803     3.359003e+01 4.067100e+02
+0 4804     -4.355600e+02 -2.929200e+02
+1 4804     -3.042400e+02 -1.255800e+02
+0 4805     -3.107300e+02 3.136300e+02
+1 4805     1.790002e+01 4.031100e+02
+0 4806     6.832600e+02 -3.008300e+02
+1 4806     8.023800e+02 -5.114000e+02
+0 4807     -4.613500e+02 8.545999e+01
+1 4807     -1.955900e+02 2.264200e+02
+0 4808     -4.378700e+02 1.440002e+00
+1 4808     -2.036100e+02 1.430700e+02
+0 4809     -2.961200e+02 3.018000e+02
+1 4809     2.838000e+01 3.861200e+02
+0 4810     2.206400e+02 1.983000e+02
+1 4810     5.051100e+02 1.477700e+02
+0 4811     -4.421997e+01 -1.335700e+02
+1 4811     8.047998e+01 -8.764001e+01
+0 4812     -7.580017e+00 2.829800e+02
+1 4812     3.062200e+02 2.940900e+02
+0 4813     6.307001e+01 2.328900e+02
+1 4813     3.577700e+02 2.260400e+02
+0 4814     -1.097500e+02 2.978400e+02
+1 4814     2.108900e+02 3.355100e+02
+0 4815     -2.551400e+02 -4.979700e+02
+1 4815     -2.169700e+02 -3.660900e+02
+0 4816     -2.790600e+02 -4.308300e+02
+1 4816     -2.141800e+02 -2.978300e+02
+0 4817     5.537000e+02 -3.818500e+02
+1 4817     6.221500e+02 -5.410300e+02
+0 4818     6.813000e+01 3.641400e+02
+1 4818     4.131500e+02 3.537000e+02
+0 4819     -7.556400e+02 -4.644000e+02
+1 4819     -6.287900e+02 -1.830200e+02
+0 4820     -2.864600e+02 -7.809998e+00
+1 4820     -7.700000e+01 9.529001e+01
+0 4821     2.752600e+02 2.850400e+02
+1 4821     5.971100e+02 2.185500e+02
+0 4822     -1.269000e+02 3.090200e+02
+1 4822     1.983600e+02 3.510100e+02
+0 4823     -4.897200e+02 1.247700e+02
+1 4823     -2.073500e+02 2.697600e+02
+0 4824     -7.606700e+02 -5.675900e+02
+1 4824     -6.639400e+02 -2.691400e+02
+0 4825     5.630000e+02 1.099976e+00
+1 4825     7.911200e+02 -1.572100e+02
+0 4826     2.167100e+02 2.265700e+02
+1 4826     5.122300e+02 1.768800e+02
+0 4827     6.929700e+02 -2.916000e+02
+1 4827     8.175400e+02 -5.063700e+02
+0 4828     2.375699e+02 1.065100e+02
+1 4828     4.338300e+02 6.346997e+01
+0 4829     -4.479200e+02 1.354300e+02
+1 4829     -1.664500e+02 2.687000e+02
+0 4830     -1.893500e+02 1.887200e+02
+1 4830     9.400000e+01 2.518400e+02
+0 4831     5.276000e+02 -3.928600e+02
+1 4831     5.895100e+02 -5.419000e+02
+0 4832     -8.033002e+01 -4.950800e+02
+1 4832     -5.603003e+01 -4.212900e+02
+0 4833     5.640800e+02 1.432001e+01
+1 4833     7.962500e+02 -1.438900e+02
+0 4834     3.055000e+02 2.067200e+02
+1 4834     5.975200e+02 1.310800e+02
+0 4835     6.679399e+02 -3.097600e+02
+1 4835     7.813700e+02 -5.141000e+02
+0 4836     3.033700e+02 2.256300e+02
+1 4836     6.026600e+02 1.510100e+02
+0 4837     2.258500e+02 3.034700e+02
+1 4837     5.519500e+02 2.510300e+02
+0 4838     -1.663700e+02 1.670000e+02
+1 4838     1.076800e+02 2.250300e+02
+0 4839     -1.308700e+02 -4.915500e+02
+1 4839     -1.016700e+02 -4.014800e+02
+0 4840     -1.076700e+02 3.093300e+02
+1 4840     2.173600e+02 3.460500e+02
+0 4841     -4.348900e+02 -2.878500e+02
+1 4841     -3.017400e+02 -1.213000e+02
+0 4842     2.968400e+02 2.313800e+02
+1 4842     5.982600e+02 1.586700e+02
+0 4843     2.374301e+02 2.620400e+02
+1 4843     5.482200e+02 2.062800e+02
+0 4844     -2.051300e+02 -3.876000e+02
+1 4844     -1.317100e+02 -2.819000e+02
+0 4845     -7.540700e+02 -4.242000e+02
+1 4845     -6.151400e+02 -1.488800e+02
+0 4846     -8.157500e+02 -4.341500e+02
+1 4846     -6.661300e+02 -1.397700e+02
+0 4847     3.462300e+02 4.850200e+02
+1 4847     7.507600e+02 4.050700e+02
+0 4848     5.913600e+02 -5.281000e+01
+1 4848     8.027100e+02 -2.220900e+02
+0 4849     4.035500e+02 -6.590027e+00
+1 4849     5.858800e+02 -1.056600e+02
+0 4850     6.004100e+02 -3.266300e+02
+1 4850     6.971100e+02 -5.044600e+02
+0 4851     -2.366000e+02 -4.243300e+02
+1 4851     -1.735100e+02 -3.054000e+02
+0 4852     -1.150600e+02 2.370900e+02
+1 4852     1.835200e+02 2.784200e+02
+0 4853     5.268700e+02 -3.569300e+02
+1 4853     6.035100e+02 -5.058700e+02
+0 4854     3.700300e+02 2.959500e+02
+1 4854     7.035400e+02 2.028400e+02
+0 4855     -1.358600e+02 3.046000e+02
+1 4855     1.879600e+02 3.487900e+02
+0 4856     -7.676100e+02 -2.635400e+02
+1 4856     -5.751200e+02 -6.280029e+00
+0 4857     4.878600e+02 1.658800e+02
+1 4857     7.780300e+02 3.510999e+01
+0 4858     6.501300e+02 -1.063100e+02
+1 4858     8.479600e+02 -2.989700e+02
+0 4859     3.561200e+02 3.679800e+02
+1 4859     7.179399e+02 2.803700e+02
+0 4860     -1.092400e+02 3.018400e+02
+1 4860     2.128400e+02 3.390100e+02
+0 4861     -1.797200e+02 -3.355400e+02
+1 4861     -9.213000e+01 -2.416000e+02
+0 4862     -3.124800e+02 4.640997e+01
+1 4862     -7.303998e+01 1.512400e+02
+0 4863     2.425500e+02 3.045600e+02
+1 4863     5.704600e+02 2.473200e+02
+0 4864     -2.241400e+02 -4.630400e+02
+1 4864     -1.761500e+02 -3.441900e+02
+0 4865     2.064700e+02 3.322400e+02
+1 4865     5.432600e+02 2.848900e+02
+0 4866     -1.783000e+02 1.284900e+02
+1 4866     8.263000e+01 1.917900e+02
+0 4867     -8.284998e+01 2.101900e+02
+1 4867     2.045900e+02 2.441300e+02
+0 4868     2.905699e+02 5.733800e+02
+1 4868     7.137600e+02 5.141000e+02
+0 4869     2.244500e+02 2.242300e+02
+1 4869     5.193000e+02 1.725100e+02
+0 4870     2.676400e+02 5.020900e+02
+1 4870     6.666100e+02 4.435000e+02
+0 4871     -2.842400e+02 -4.431100e+02
+1 4871     -2.230800e+02 -3.071900e+02
+0 4872     2.244301e+02 -5.428000e+02
+1 4872     2.164800e+02 -5.733300e+02
+0 4873     -5.026001e+01 -1.713500e+02
+1 4873     6.073999e+01 -1.219500e+02
+0 4874     -3.046600e+02 8.866000e+01
+1 4874     -5.071997e+01 1.884600e+02
+0 4875     8.865997e+01 3.973400e+02
+1 4875     4.438500e+02 3.814900e+02
+0 4876     5.030601e+02 -1.967400e+02
+1 4876     6.448000e+02 -3.369600e+02
+0 4877     3.649000e+02 4.179300e+02
+1 4877     7.496200e+02 3.290800e+02
+0 4878     8.635999e+01 3.610100e+02
+1 4878     4.307900e+02 3.457200e+02
+0 4879     -3.099900e+02 3.090200e+02
+1 4879     1.613000e+01 3.978200e+02
+0 4880     5.999000e+02 -3.570800e+02
+1 4880     6.837800e+02 -5.350500e+02
+0 4881     4.867500e+02 2.169600e+02
+1 4881     7.928300e+02 8.919000e+01
+0 4882     -3.230900e+02 -2.063700e+02
+1 4882     -1.734500e+02 -7.967999e+01
+0 4883     -1.247600e+02 2.402500e+02
+1 4883     1.751500e+02 2.840400e+02
+0 4884     7.059000e+02 -3.238800e+02
+1 4884     8.189500e+02 -5.448000e+02
+0 4885     -2.834600e+02 3.784998e+01
+1 4885     -4.906000e+01 1.352800e+02
+0 4886     5.466998e+01 2.551500e+02
+1 4886     3.581600e+02 2.503100e+02
+0 4887     1.240000e+02 4.680400e+02
+1 4887     4.999100e+02 4.451400e+02
+0 4888     -4.435900e+02 2.663300e+02
+1 4888     -1.192600e+02 3.899100e+02
+0 4889     4.701899e+02 2.497400e+02
+1 4889     7.857900e+02 1.276700e+02
+0 4890     4.892300e+02 2.287800e+02
+1 4890     7.992100e+02 1.009200e+02
+0 4891     2.936300e+02 4.769500e+02
+1 4891     6.891600e+02 4.101900e+02
+0 4892     -6.613500e+02 2.099800e+02
+1 4892     -3.300500e+02 3.890900e+02
+0 4893     2.613500e+02 3.031700e+02
+1 4893     5.896100e+02 2.407500e+02
+0 4894     6.043300e+02 -3.188100e+02
+1 4894     7.047300e+02 -4.978101e+02
+0 4895     -2.620400e+02 1.866700e+02
+1 4895     2.421997e+01 2.691900e+02
+0 4896     -4.550300e+02 1.100100e+02
+1 4896     -1.815200e+02 2.476500e+02
+0 4897     6.679399e+02 -3.097600e+02
+1 4897     7.813700e+02 -5.141000e+02
+0 4898     2.871100e+02 1.787000e+02
+1 4898     5.667000e+02 1.087900e+02
+0 4899     2.502100e+02 2.601100e+02
+1 4899     5.606700e+02 2.007400e+02
+0 4900     -3.518200e+02 2.825700e+02
+1 4900     -3.112000e+01 3.826900e+02
+0 4901     -6.208500e+02 1.178998e+01
+1 4901     -3.616800e+02 2.000300e+02
+0 4902     4.121200e+02 3.020300e+02
+1 4902     7.518900e+02 1.967800e+02
+0 4903     6.088400e+02 -2.363400e+02
+1 4903     7.450300e+02 -4.163800e+02
+0 4904     -1.690500e+02 2.149100e+02
+1 4904     1.231700e+02 2.713900e+02
+0 4905     -2.989600e+02 2.992000e+02
+1 4905     2.416998e+01 3.857300e+02
+0 4906     2.529000e+02 3.483800e+02
+1 4906     5.984000e+02 2.884800e+02
+0 4907     4.231899e+02 3.665400e+02
+1 4907     7.925699e+02 2.600500e+02
+0 4908     -3.251100e+02 3.114001e+01
+1 4908     -9.037000e+01 1.404300e+02
+0 4909     2.108900e+02 2.744300e+02
+1 4909     5.251000e+02 2.260300e+02
+0 4910     5.599301e+02 -3.973900e+02
+1 4910     6.223000e+02 -5.592000e+02
+0 4911     -1.611500e+02 -5.182100e+02
+1 4911     -1.393500e+02 -4.154400e+02
+0 4912     -1.745400e+02 -5.184500e+02
+1 4912     -1.516600e+02 -4.114400e+02
+0 4913     -3.880500e+02 -4.648500e+02
+1 4913     -3.230100e+02 -2.943100e+02
+0 4914     -4.499300e+02 3.845300e+02
+1 4914     -9.978998e+01 5.048700e+02
+0 4915     5.196100e+02 -3.101600e+02
+1 4915     6.153900e+02 -4.561899e+02
+0 4916     -4.061700e+02 -4.417100e+02
+1 4916     -3.306300e+02 -2.677900e+02
+0 4917     -7.708100e+02 -5.574399e+02
+1 4917     -6.685700e+02 -2.576300e+02
+0 4918     -1.007300e+02 2.369700e+02
+1 4918     1.973600e+02 2.742800e+02
+0 4919     3.429600e+02 -5.038500e+02
+1 4919     3.508500e+02 -5.800000e+02
+0 4920     5.144301e+02 -3.485200e+02
+1 4920     5.936300e+02 -4.927800e+02
+0 4921     5.695900e+02 -3.899900e+02
+1 4921     6.362000e+02 -5.555500e+02
+0 4922     -5.212200e+02 1.256600e+02
+1 4922     -2.355600e+02 2.786500e+02
+0 4923     5.560100e+02 2.534200e+02
+1 4923     8.635000e+02 1.113800e+02
+0 4924     2.205400e+02 2.517100e+02
+1 4924     5.264301e+02 2.007100e+02
+0 4925     6.271997e+01 4.605200e+02
+1 4925     4.330100e+02 4.520500e+02
+0 4926     -2.828700e+02 2.522998e+01
+1 4926     -5.371997e+01 1.234900e+02
+0 4927     1.138800e+02 4.525100e+02
+1 4927     4.852700e+02 4.314700e+02
+0 4928     -7.625500e+02 -5.332100e+02
+1 4928     -6.546900e+02 -2.395200e+02
+0 4929     3.070400e+02 3.706600e+02
+1 4929     6.657700e+02 2.964900e+02
+0 4930     -4.108002e+01 2.448900e+02
+1 4930     2.587000e+02 2.662000e+02
+0 4931     5.349800e+02 -3.979200e+02
+1 4931     5.953900e+02 -5.497500e+02
+0 4932     5.132400e+02 -1.137900e+02
+1 4932     6.900601e+02 -2.568600e+02
+0 4933     2.849800e+02 2.963600e+02
+1 4933     6.113500e+02 2.275800e+02
+0 4934     2.270800e+02 2.179100e+02
+1 4934     5.198400e+02 1.651900e+02
+0 4935     4.073800e+02 3.489300e+02
+1 4935     7.667900e+02 2.465600e+02
+0 4936     -2.156800e+02 -4.420800e+02
+1 4936     -1.610000e+02 -3.282700e+02
+0 4937     -2.532800e+02 -4.051600e+02
+1 4937     -1.819600e+02 -2.826800e+02
+0 4938     4.217700e+02 -2.181000e+01
+1 4938     5.991899e+02 -1.269600e+02
+0 4939     1.986300e+02 2.733800e+02
+1 4939     5.121000e+02 2.284200e+02
+0 4940     4.620300e+02 2.284300e+02
+1 4940     7.710699e+02 1.078000e+02
+0 4941     -6.262000e+01 1.612000e+02
+1 4941     1.804600e+02 1.968900e+02
+0 4942     6.843600e+02 -3.045400e+02
+1 4942     8.018300e+02 -5.154800e+02
+0 4943     4.064600e+02 4.186500e+02
+1 4943     7.960699e+02 3.189800e+02
+0 4944     -5.087000e+01 2.368700e+02
+1 4944     2.462500e+02 2.613100e+02
+0 4945     -3.396500e+02 7.378003e+01
+1 4945     -8.884003e+01 1.837000e+02
+0 4946     -3.674200e+02 2.351700e+02
+1 4946     -5.722998e+01 3.417000e+02
+0 4947     3.039001e+01 1.241000e+02
+1 4947     2.321500e+02 1.406700e+02
+0 4948     2.228199e+02 2.262700e+02
+1 4948     5.187700e+02 1.742400e+02
+0 4949     5.065500e+02 -2.651100e+02
+1 4949     6.197200e+02 -4.063300e+02
+0 4950     1.301600e+02 4.727500e+02
+1 4950     5.075900e+02 4.473600e+02
+0 4951     2.820699e+02 5.461500e+02
+1 4951     6.960400e+02 4.867100e+02
+0 4952     4.513900e+02 2.253800e+02
+1 4952     7.590601e+02 1.077900e+02
+0 4953     4.654600e+02 2.014300e+02
+1 4953     7.658000e+02 7.903000e+01
+0 4954     -4.156000e+01 2.490800e+02
+1 4954     2.595400e+02 2.705700e+02
+0 4955     5.524399e+02 -3.213500e+02
+1 4955     6.465200e+02 -4.795500e+02
+0 4956     -3.216400e+02 -2.152500e+02
+1 4956     -1.752200e+02 -8.841998e+01
+0 4957     -3.710300e+02 -3.460700e+02
+1 4957     -2.658000e+02 -1.926900e+02
+0 4958     -8.811400e+02 7.659973e+00
+1 4958     -5.798700e+02 2.591400e+02
+0 4959     7.137400e+02 -3.165400e+02
+1 4959     8.313900e+02 -5.400900e+02
+0 4960     4.906500e+02 1.695400e+02
+1 4960     7.821000e+02 3.816998e+01
+0 4961     4.803900e+02 -3.905500e+02
+1 4961     5.401300e+02 -5.217700e+02
+0 4962     -6.092600e+02 5.864001e+01
+1 4962     -3.361600e+02 2.391100e+02
+0 4963     5.093101e+02 -4.335900e+02
+1 4963     5.528101e+02 -5.752400e+02
+0 4964     2.275000e+02 5.219500e+02
+1 4964     6.277200e+02 4.750300e+02
+0 4965     -7.353500e+02 -3.904100e+02
+1 4965     -5.894200e+02 -1.252900e+02
+0 4966     -1.339400e+02 2.234400e+02
+1 4966     1.600400e+02 2.704300e+02
+0 4967     2.037500e+02 -4.142900e+02
+1 4967     2.402900e+02 -4.415900e+02
+0 4968     -2.735400e+02 -2.794900e+02
+1 4968     -1.544600e+02 -1.613500e+02
+0 4969     3.675601e+02 3.469300e+02
+1 4969     7.219800e+02 2.553200e+02
+0 4970     5.359900e+02 -2.032001e+01
+1 4970     7.545300e+02 -1.704800e+02
+0 4971     5.040699e+02 -3.761100e+02
+1 4971     5.712000e+02 -5.162300e+02
+0 4972     1.206400e+02 -2.166800e+02
+1 4972     2.079301e+02 -2.185600e+02
+0 4973     -7.594300e+02 -4.541500e+02
+1 4973     -6.284700e+02 -1.732000e+02
+0 4974     -7.767300e+02 3.354999e+01
+1 4974     -4.869900e+02 2.577900e+02
+0 4975     -2.620400e+02 1.866700e+02
+1 4975     2.421997e+01 2.691900e+02
+0 4976     -6.573300e+02 -5.494500e+02
+1 4976     -5.778700e+02 -2.853600e+02
+0 4977     -3.068300e+02 -2.341500e+02
+1 4977     -1.682600e+02 -1.095400e+02
+0 4978     -2.965100e+02 -1.149000e+02
+1 4978     -1.163000e+02 -3.520020e+00
+0 4979     3.490100e+02 -3.877300e+02
+1 4979     4.011100e+02 -4.685900e+02
+0 4980     -1.513600e+02 1.682900e+02
+1 4980     1.232700e+02 2.222100e+02
+0 4981     5.116200e+02 -2.635000e+02
+1 4981     6.259700e+02 -4.063800e+02
+0 4982     -1.673200e+02 1.311800e+02
+1 4982     9.426001e+01 1.914000e+02
+0 4983     2.431100e+02 -5.300000e+02
+1 4983     2.404301e+02 -5.680100e+02
+0 4984     -4.551200e+02 2.676900e+02
+1 4984     -1.296200e+02 3.942600e+02
+0 4985     4.092900e+02 1.974700e+02
+1 4985     7.051600e+02 9.112000e+01
+0 4986     3.590400e+02 3.869100e+02
+1 4986     7.289500e+02 2.998600e+02
+0 4987     1.947100e+02 2.215700e+02
+1 4987     4.879600e+02 1.778300e+02
+0 4988     -6.626800e+02 -5.059500e+02
+1 4988     -5.679500e+02 -2.459400e+02
+0 4989     8.664001e+01 3.664000e+02
+1 4989     4.328600e+02 3.510300e+02
+0 4990     2.018400e+02 2.476500e+02
+1 4990     5.056100e+02 2.018400e+02
+0 4991     -7.674300e+02 -4.820601e+02
+1 4991     -6.432000e+02 -1.946800e+02
+0 4992     4.868700e+02 2.424500e+02
+1 4992     8.000200e+02 1.166100e+02
+0 4993     5.653003e+01 2.363100e+02
+1 4993     3.523900e+02 2.313400e+02
+0 4994     3.973700e+02 3.859300e+02
+1 4994     7.716700e+02 2.874000e+02
+0 4995     -2.612700e+02 -5.543199e+02
+1 4995     -2.422600e+02 -4.153800e+02
+0 4996     7.085200e+02 -3.400900e+02
+1 4996     8.152800e+02 -5.622700e+02
+0 4997     -4.593900e+02 2.791800e+02
+1 4997     -1.310600e+02 4.060500e+02
+0 4998     4.006700e+02 -4.604100e+02
+1 4998     4.275900e+02 -5.596700e+02
+0 4999     4.202000e+02 -7.096997e+01
+1 4999     5.764700e+02 -1.749900e+02
+0 5000     5.106300e+02 -9.037000e+01
+1 5000     6.969600e+02 -2.326300e+02
+0 5001     -2.472600e+02 -4.914100e+02
+1 5001     -2.074600e+02 -3.627800e+02
+0 5002     -1.759600e+02 -5.546899e+02
+1 5002     -1.659800e+02 -4.436500e+02
+6 5002     -2.871002e+01 -7.157300e+02
+0 5003     -1.152300e+02 -4.971801e+02
+1 5003     -8.898999e+01 -4.119400e+02
+0 5004     7.009000e+02 -2.944100e+02
+1 5004     8.264800e+02 -5.120400e+02
+0 5005     2.137700e+02 -5.388800e+02
+1 5005     2.091801e+02 -5.653600e+02
+0 5006     6.602600e+02 -3.143400e+02
+1 5006     7.701899e+02 -5.157000e+02
+0 5007     6.073400e+02 -4.025700e+02
+1 5007     6.724600e+02 -5.838900e+02
+0 5008     -1.431800e+02 -5.329500e+02
+1 5008     -1.282100e+02 -4.349200e+02
+0 5009     -1.479300e+02 -5.186700e+02
+1 5009     -1.274000e+02 -4.203600e+02
+0 5010     7.263000e+01 3.457700e+02
+1 5010     4.106801e+02 3.343700e+02
+11 5010     2.200500e+02 -3.997100e+02
+0 5011     7.263000e+01 3.457700e+02
+1 5011     4.106801e+02 3.343700e+02
+11 5011     2.200500e+02 -3.997100e+02
+0 5012     7.156300e+02 -3.564900e+02
+1 5012     8.164700e+02 -5.823000e+02
+0 5013     5.395400e+02 -2.815500e+02
+1 5013     6.486000e+02 -4.353400e+02
+0 5014     -2.826600e+02 -3.959500e+02
+1 5014     -2.047900e+02 -2.651400e+02
+0 5015     -1.689300e+02 1.349700e+02
+1 5015     9.388000e+01 1.954500e+02
+0 5016     2.357800e+02 -5.259700e+02
+1 5016     2.346400e+02 -5.613101e+02
+0 5017     3.323500e+02 5.485900e+02
+1 5017     7.541801e+02 4.770100e+02
+0 5018     5.255699e+02 -3.500300e+02
+1 5018     6.051100e+02 -4.984800e+02
+0 5019     1.676700e+02 -5.657400e+02
+1 5019     1.524100e+02 -5.741400e+02
+0 5020     -2.604600e+02 -4.155400e+02
+1 5020     -1.919300e+02 -2.898200e+02
+0 5021     5.346801e+02 -3.425400e+02
+1 5021     6.180200e+02 -4.943101e+02
+0 5022     5.219399e+02 -3.792300e+02
+1 5022     5.892700e+02 -5.261300e+02
+0 5023     -1.022900e+02 1.961400e+02
+1 5023     1.810400e+02 2.358800e+02
+0 5024     5.402600e+02 -3.459500e+02
+1 5024     6.229301e+02 -5.000500e+02
+0 5025     4.935800e+02 5.884000e+02
+2 5025     1.198600e+02 3.585100e+02
+6 5025     2.440002e+01 7.282800e+02
+9 5025     -5.375000e+01 3.890400e+02
+0 5026     -5.098500e+02 5.860500e+02
+2 5026     -8.053000e+02 3.710600e+02
+0 5027     -5.098500e+02 5.860500e+02
+2 5027     -8.053000e+02 3.710600e+02
+0 5028     -1.006900e+02 5.848300e+02
+3 5028     -5.163800e+02 2.598999e+01
+12 5028     -4.286400e+02 5.964200e+02
+0 5029     3.836400e+02 5.850200e+02
+6 5029     -8.562000e+01 7.033700e+02
+14 5029     6.796400e+02 -1.306300e+02
+0 5030     4.395300e+02 5.839200e+02
+14 5030     7.344900e+02 -1.281300e+02
+0 5031     -3.764500e+02 5.836600e+02
+2 5031     -6.624800e+02 3.629700e+02
+13 5031     -1.034300e+02 2.222600e+02
+14 5031     -3.906000e+01 -1.587300e+02
+0 5032     3.233000e+02 5.837300e+02
+14 5032     6.198900e+02 -1.361600e+02
+0 5033     -1.105900e+02 5.830400e+02
+2 5033     -4.000800e+02 3.551200e+02
+0 5034     -6.054800e+02 5.817200e+02
+14 5034     -2.518700e+02 -1.620400e+02
+0 5035     4.570300e+02 5.814200e+02
+6 5035     -9.909973e+00 7.133300e+02
+14 5035     7.516801e+02 -1.294200e+02
+0 5036     -5.429900e+02 5.808700e+02
+14 5036     -1.947200e+02 -1.624400e+02
+0 5037     -4.753900e+02 5.808400e+02
+2 5037     -7.673100e+02 3.630800e+02
+8 5037     -5.501100e+02 2.697000e+02
+11 5037     -2.613700e+02 -2.026600e+02
+14 5037     -1.315200e+02 -1.622000e+02
+0 5038     -1.484700e+02 5.806800e+02
+2 5038     -4.359600e+02 3.534300e+02
+14 5038     1.741500e+02 -1.586300e+02
+0 5039     4.377400e+02 5.805300e+02
+2 5039     7.657001e+01 3.501000e+02
+3 5039     -7.300000e+01 1.515997e+01
+8 5039     1.440100e+02 2.764700e+02
+9 5039     -9.027002e+01 3.805700e+02
+11 5039     5.346899e+02 -1.726600e+02
+14 5039     7.325800e+02 -1.315900e+02
+0 5040     -1.073600e+02 5.790100e+02
+2 5040     -3.968900e+02 3.508000e+02
+0 5041     -1.073600e+02 5.790100e+02
+2 5041     -3.968900e+02 3.508000e+02
+0 5042     5.977100e+02 5.784700e+02
+6 5042     2.648800e+02 7.628800e+02
+0 5043     5.977100e+02 5.784700e+02
+6 5043     2.648800e+02 7.628800e+02
+0 5044     -2.224000e+02 5.770700e+02
+2 5044     -5.072100e+02 3.506700e+02
+3 5044     -6.298300e+02 2.160999e+01
+5 5044     1.938500e+02 -7.123999e+01
+12 5044     -5.635200e+02 5.721200e+02
+14 5044     1.043900e+02 -1.631900e+02
+0 5045     -1.196700e+02 5.767300e+02
+12 5045     -4.482900e+02 5.838500e+02
+0 5046     -5.212500e+02 5.752200e+02
+2 5046     -8.182400e+02 3.584400e+02
+8 5046     -5.899500e+02 2.646600e+02
+0 5047     -3.164900e+02 5.749900e+02
+5 5047     1.035300e+02 -7.288000e+01
+14 5047     1.597998e+01 -1.665700e+02
+0 5048     -3.164900e+02 5.749900e+02
+5 5048     1.035300e+02 -7.288000e+01
+14 5048     1.597998e+01 -1.665700e+02
+0 5049     -2.442300e+02 5.746700e+02
+14 5049     8.408002e+01 -1.659800e+02
+0 5050     3.701700e+02 5.744000e+02
+5 5050     7.704301e+02 -6.034998e+01
+6 5050     -9.714999e+01 6.890000e+02
+14 5050     6.678400e+02 -1.419600e+02
+0 5051     4.405300e+02 5.744000e+02
+9 5051     -8.690997e+01 3.754600e+02
+11 5051     5.391100e+02 -1.777300e+02
+14 5051     7.364100e+02 -1.376600e+02
+0 5052     5.722100e+02 5.739200e+02
+2 5052     3.185601e+02 4.733400e+02
+3 5052     1.736300e+02 1.369400e+02
+9 5052     1.233400e+02 4.955100e+02
+13 5052     7.072600e+02 2.798100e+02
+0 5053     1.491000e+02 5.720600e+02
+12 5053     -1.596000e+02 6.125200e+02
+0 5054     2.942700e+02 5.719900e+02
+14 5054     5.944200e+02 -1.488600e+02
+0 5055     3.713700e+02 5.720000e+02
+2 5055     2.416998e+01 3.414100e+02
+5 5055     7.719000e+02 -6.298999e+01
+6 5055     -9.579999e+01 6.857800e+02
+9 5055     -1.343300e+02 3.711900e+02
+0 5056     1.891600e+02 5.705200e+02
+6 5056     -2.857000e+02 6.493400e+02
+14 5056     4.935400e+02 -1.556500e+02
+0 5057     -4.676900e+02 5.701300e+02
+2 5057     -7.591300e+02 3.503800e+02
+5 5057     -4.040002e+01 -7.642999e+01
+8 5057     -5.429800e+02 2.595800e+02
+14 5057     -1.256200e+02 -1.724600e+02
+0 5058     3.685300e+02 5.688400e+02
+14 5058     6.664100e+02 -1.472100e+02
+0 5059     5.715601e+02 5.690900e+02
+2 5059     3.192400e+02 4.687600e+02
+3 5059     1.738800e+02 1.337100e+02
+6 5059     2.351700e+02 7.468500e+02
+0 5060     4.284000e+02 5.686500e+02
+13 5060     5.260800e+02 2.551300e+02
+14 5060     7.250100e+02 -1.439500e+02
+0 5061     5.443700e+02 5.680000e+02
+2 5061     2.905601e+02 4.590100e+02
+6 5061     2.010400e+02 7.386400e+02
+8 5061     3.070600e+02 3.543600e+02
+13 5061     6.812100e+02 2.723800e+02
+0 5062     5.443700e+02 5.680000e+02
+2 5062     2.905601e+02 4.590100e+02
+6 5062     2.010400e+02 7.386400e+02
+13 5062     6.812100e+02 2.723800e+02
+0 5063     -3.592200e+02 5.676100e+02
+11 5063     -1.649100e+02 -2.129600e+02
+14 5063     -2.435999e+01 -1.744700e+02
+0 5064     5.887400e+02 5.675100e+02
+2 5064     3.377700e+02 4.725700e+02
+3 5064     1.916801e+02 1.365400e+02
+6 5064     2.568300e+02 7.481500e+02
+0 5065     -3.703300e+02 5.670300e+02
+2 5065     -6.560500e+02 3.429400e+02
+14 5065     -3.495001e+01 -1.750500e+02
+0 5066     -1.160900e+02 5.667800e+02
+12 5066     -4.424200e+02 5.724900e+02
+0 5067     -4.737900e+02 5.665700e+02
+5 5067     -4.645001e+01 -8.013000e+01
+0 5068     -4.737900e+02 5.665700e+02
+2 5068     -7.657600e+02 3.461100e+02
+5 5068     -4.645001e+01 -8.013000e+01
+14 5068     -1.313600e+02 -1.761400e+02
+0 5069     -3.667900e+02 5.663700e+02
+2 5069     -6.524800e+02 3.418000e+02
+5 5069     5.476001e+01 -8.188000e+01
+12 5069     -7.302200e+02 5.413300e+02
+14 5069     -3.171997e+01 -1.756900e+02
+0 5070     5.985999e+01 5.662000e+02
+2 5070     -2.421000e+02 3.343200e+02
+0 5071     5.129100e+02 5.663300e+02
+6 5071     1.605900e+02 7.289000e+02
+9 5071     6.921002e+01 4.708000e+02
+13 5071     6.512600e+02 2.678200e+02
+14 5071     8.794800e+02 -1.328900e+02
+0 5072     -4.847700e+02 5.651100e+02
+8 5072     -5.572300e+02 2.547600e+02
+11 5072     -2.689300e+02 -2.154900e+02
+13 5072     -1.879900e+02 2.021400e+02
+0 5073     -3.792900e+02 5.641800e+02
+5 5073     4.258002e+01 -8.357001e+01
+0 5074     -3.225600e+02 5.639900e+02
+2 5074     -6.066300e+02 3.381800e+02
+0 5075     -3.225600e+02 5.639900e+02
+2 5075     -6.066300e+02 3.381800e+02
+12 5075     -6.776000e+02 5.443400e+02
+0 5076     6.172900e+02 5.637300e+02
+2 5076     3.690500e+02 4.782000e+02
+3 5076     2.212900e+02 1.422200e+02
+6 5076     2.929300e+02 7.510700e+02
+9 5076     1.663600e+02 5.011900e+02
+13 5076     7.512100e+02 2.757400e+02
+0 5077     4.357900e+02 5.632500e+02
+2 5077     7.846997e+01 3.328400e+02
+14 5077     7.328600e+02 -1.492800e+02
+0 5078     -4.722600e+02 5.628000e+02
+2 5078     -7.642900e+02 3.417300e+02
+0 5079     4.651400e+02 5.629000e+02
+14 5079     7.616801e+02 -1.474200e+02
+0 5080     -1.430300e+02 5.625600e+02
+2 5080     -4.298400e+02 3.327500e+02
+11 5080     1.903003e+01 -2.140200e+02
+0 5081     8.298999e+01 5.624600e+02
+6 5081     -3.995800e+02 6.189400e+02
+0 5082     3.034500e+02 5.623600e+02
+2 5082     -3.113000e+01 3.307500e+02
+6 5082     -1.647400e+02 6.607600e+02
+9 5082     -1.805700e+02 3.603400e+02
+0 5083     3.034500e+02 5.623600e+02
+2 5083     -3.113000e+01 3.307500e+02
+6 5083     -1.647400e+02 6.607600e+02
+9 5083     -1.805700e+02 3.603400e+02
+0 5084     4.187800e+02 5.625600e+02
+14 5084     7.165000e+02 -1.505600e+02
+0 5085     -4.984500e+02 5.621900e+02
+2 5085     -7.928700e+02 3.425800e+02
+7 5085     -7.466400e+02 5.857100e+02
+8 5085     -5.705100e+02 2.520700e+02
+14 5085     -1.548700e+02 -1.802400e+02
+0 5086     5.665900e+02 5.620200e+02
+3 5086     1.703800e+02 1.260600e+02
+0 5087     1.086500e+02 5.612900e+02
+3 5087     -3.293900e+02 -5.380005e+00
+0 5088     2.313700e+02 5.616700e+02
+14 5088     5.341400e+02 -1.629100e+02
+0 5089     -4.820100e+02 5.597400e+02
+7 5089     -7.283400e+02 5.844000e+02
+8 5089     -5.553700e+02 2.491900e+02
+11 5089     -2.674600e+02 -2.194300e+02
+14 5089     -1.400900e+02 -1.828900e+02
+0 5090     5.638800e+02 5.596100e+02
+3 5090     1.683600e+02 1.221400e+02
+0 5091     5.638800e+02 5.596100e+02
+3 5091     1.683600e+02 1.221400e+02
+0 5092     1.534800e+02 5.590200e+02
+14 5092     4.596100e+02 -1.694000e+02
+0 5093     -4.146400e+02 5.582800e+02
+2 5093     -7.026800e+02 3.338400e+02
+0 5094     -3.662200e+02 5.586400e+02
+5 5094     5.448999e+01 -8.965002e+01
+8 5094     -4.555500e+02 2.476400e+02
+11 5094     -1.711300e+02 -2.204300e+02
+12 5094     -7.279600e+02 5.312400e+02
+13 5094     -9.617999e+01 2.021500e+02
+14 5094     -3.172998e+01 -1.833500e+02
+0 5095     -3.662200e+02 5.586400e+02
+2 5095     -6.518900e+02 3.330100e+02
+13 5095     -9.617999e+01 2.021500e+02
+0 5096     -2.994100e+02 5.585800e+02
+8 5096     -4.000000e+02 2.476200e+02
+11 5096     -1.148800e+02 -2.202900e+02
+13 5096     -4.402002e+01 2.045700e+02
+14 5096     3.109003e+01 -1.826300e+02
+0 5097     -2.186300e+02 5.585700e+02
+2 5097     -5.030100e+02 3.295000e+02
+12 5097     -5.562300e+02 5.500800e+02
+0 5098     3.216600e+02 5.587100e+02
+3 5098     -1.585600e+02 -7.320007e+00
+9 5098     -1.671000e+02 3.575500e+02
+14 5098     6.219900e+02 -1.603700e+02
+0 5099     6.107400e+02 5.576700e+02
+2 5099     3.632300e+02 4.712800e+02
+3 5099     2.161400e+02 1.356000e+02
+6 5099     2.862500e+02 7.430400e+02
+8 5099     3.662800e+02 3.630700e+02
+9 5099     1.618400e+02 4.947700e+02
+11 5099     6.768000e+02 -1.835100e+02
+13 5099     7.456700e+02 2.705800e+02
+0 5100     -3.776700e+02 5.576100e+02
+2 5100     -6.639200e+02 3.314100e+02
+5 5100     4.359003e+01 -9.088000e+01
+8 5100     -4.647300e+02 2.464600e+02
+11 5100     -1.811600e+02 -2.211900e+02
+12 5100     -7.411300e+02 5.280500e+02
+14 5100     -4.253998e+01 -1.845200e+02
+0 5101     -3.776700e+02 5.576100e+02
+2 5101     -6.639200e+02 3.314100e+02
+5 5101     4.359003e+01 -9.088000e+01
+8 5101     -4.647300e+02 2.464600e+02
+12 5101     -7.411300e+02 5.280500e+02
+14 5101     -4.253998e+01 -1.845200e+02
+0 5102     6.440997e+01 5.573600e+02
+9 5102     -3.560200e+02 3.492200e+02
+0 5103     4.605000e+02 5.575500e+02
+14 5103     7.580500e+02 -1.533000e+02
+0 5104     -3.097800e+02 5.567500e+02
+2 5104     -5.935400e+02 3.291000e+02
+8 5104     -4.087300e+02 2.465700e+02
+11 5104     -1.234500e+02 -2.213600e+02
+14 5104     2.142999e+01 -1.846000e+02
+0 5105     1.557800e+02 5.563700e+02
+2 5105     -1.564700e+02 3.232200e+02
+9 5105     -2.870000e+02 3.500000e+02
+13 5105     3.110800e+02 2.266100e+02
+0 5106     -1.744000e+02 5.558400e+02
+2 5106     -4.599200e+02 3.251500e+02
+0 5107     5.734998e+01 5.561600e+02
+2 5107     -2.434100e+02 3.236100e+02
+6 5107     -4.255600e+02 6.057200e+02
+9 5107     -3.605500e+02 3.480200e+02
+0 5108     -5.009600e+02 5.551700e+02
+5 5108     -7.434998e+01 -9.190997e+01
+0 5109     4.373300e+02 5.551600e+02
+11 5109     5.390300e+02 -1.940900e+02
+14 5109     7.354700e+02 -1.575700e+02
+0 5110     5.909700e+02 5.551300e+02
+2 5110     3.430800e+02 4.635000e+02
+3 5110     1.968400e+02 1.284800e+02
+6 5110     2.623900e+02 7.370100e+02
+8 5110     3.494300e+02 3.577300e+02
+9 5110     1.439600e+02 4.884200e+02
+13 5110     7.272300e+02 2.670800e+02
+0 5111     -3.904900e+02 5.541100e+02
+2 5111     -6.770500e+02 3.286200e+02
+7 5111     -6.294100e+02 5.864900e+02
+12 5111     -7.568700e+02 5.238400e+02
+14 5111     -5.488000e+01 -1.875700e+02
+0 5112     -3.033200e+02 5.523500e+02
+2 5112     -5.883200e+02 3.234700e+02
+12 5112     -6.529200e+02 5.317200e+02
+0 5113     3.511700e+02 5.524300e+02
+14 5113     6.513300e+02 -1.655300e+02
+0 5114     -5.220400e+02 5.513300e+02
+8 5114     -5.918200e+02 2.418800e+02
+0 5115     -2.985400e+02 5.517000e+02
+2 5115     -5.824600e+02 3.239900e+02
+5 5115     1.185500e+02 -9.635999e+01
+12 5115     -6.472800e+02 5.317300e+02
+0 5116     5.396899e+02 5.503400e+02
+3 5116     1.456400e+02 1.065400e+02
+8 5116     3.064900e+02 3.394500e+02
+0 5117     -5.628200e+02 5.497400e+02
+14 5117     -2.169700e+02 -1.929000e+02
+0 5118     -3.057700e+02 5.482500e+02
+2 5118     -5.892700e+02 3.190400e+02
+12 5118     -6.547200e+02 5.265800e+02
+0 5119     -4.440600e+02 5.478200e+02
+14 5119     -1.044200e+02 -1.940800e+02
+0 5120     5.741100e+02 5.472900e+02
+2 5120     3.272200e+02 4.505000e+02
+3 5120     1.818400e+02 1.157500e+02
+6 5120     2.434300e+02 7.232000e+02
+0 5121     -3.221200e+02 5.470800e+02
+12 5121     -6.738200e+02 5.229900e+02
+14 5121     8.770020e+00 -1.943700e+02
+0 5122     -3.129300e+02 5.471000e+02
+5 5122     1.038700e+02 -1.016600e+02
+7 5122     -5.475100e+02 5.859200e+02
+12 5122     -6.635700e+02 5.234700e+02
+0 5123     6.023500e+02 5.472500e+02
+2 5123     3.572700e+02 4.598900e+02
+6 5123     2.786200e+02 7.301800e+02
+8 5123     3.611800e+02 3.542500e+02
+9 5123     1.566801e+02 4.849500e+02
+11 5123     6.705900e+02 -1.923600e+02
+13 5123     7.391700e+02 2.615900e+02
+0 5124     -4.497300e+02 5.466400e+02
+14 5124     -1.097500e+02 -1.955600e+02
+0 5125     -4.185100e+02 5.464000e+02
+2 5125     -7.058500e+02 3.190900e+02
+0 5126     2.988000e+02 5.462700e+02
+2 5126     -3.250000e+01 3.131300e+02
+3 5126     -1.756200e+02 -2.082001e+01
+5 5126     6.997600e+02 -9.321997e+01
+6 5126     -1.656000e+02 6.394200e+02
+11 5126     4.129600e+02 -2.104100e+02
+12 5126     -5.300293e-01 6.018500e+02
+14 5126     6.004399e+02 -1.746700e+02
+0 5127     -2.278100e+02 5.459200e+02
+2 5127     -5.114600e+02 3.150400e+02
+12 5127     -5.648000e+02 5.340300e+02
+0 5128     -2.278100e+02 5.459200e+02
+12 5128     -5.648000e+02 5.340300e+02
+0 5129     6.015601e+02 5.445300e+02
+3 5129     2.110000e+02 1.215300e+02
+0 5130     4.020200e+02 5.440500e+02
+6 5130     -5.862000e+01 6.571000e+02
+12 5130     1.027400e+02 6.125900e+02
+14 5130     7.019301e+02 -1.705100e+02
+0 5131     3.279100e+02 5.415400e+02
+14 5131     6.293500e+02 -1.777500e+02
+0 5132     3.454100e+02 5.416400e+02
+5 5132     7.473000e+02 -9.615002e+01
+9 5132     -1.476600e+02 3.424900e+02
+0 5133     -3.525300e+02 5.408000e+02
+5 5133     6.547998e+01 -1.073100e+02
+12 5133     -7.088900e+02 5.115700e+02
+0 5134     3.547600e+02 5.406500e+02
+14 5134     6.559700e+02 -1.770100e+02
+0 5135     -6.498000e+02 5.398600e+02
+5 5135     -2.346200e+02 -1.061900e+02
+13 5135     -3.327900e+02 1.725700e+02
+0 5136     -6.191000e+02 5.401100e+02
+5 5136     -1.873300e+02 -1.046300e+02
+11 5136     -3.809200e+02 -2.345600e+02
+14 5136     -2.707800e+02 -2.026400e+02
+0 5137     -6.191000e+02 5.401100e+02
+14 5137     -2.707800e+02 -2.026400e+02
+0 5138     -4.570300e+02 5.398800e+02
+5 5138     -3.403003e+01 -1.069400e+02
+8 5138     -5.344000e+02 2.307600e+02
+0 5139     3.194301e+02 5.400400e+02
+14 5139     6.212800e+02 -1.798000e+02
+0 5140     4.457700e+02 5.400100e+02
+14 5140     7.457800e+02 -1.719300e+02
+0 5141     5.942200e+02 5.399600e+02
+2 5141     3.504399e+02 4.509900e+02
+3 5141     2.040300e+02 1.163400e+02
+6 5141     2.707400e+02 7.208500e+02
+9 5141     1.512400e+02 4.770000e+02
+13 5141     7.319900e+02 2.552400e+02
+0 5142     -4.133000e+02 5.397100e+02
+2 5142     -7.018000e+02 3.115100e+02
+5 5142     7.159973e+00 -1.077700e+02
+7 5142     -6.518300e+02 5.687600e+02
+11 5142     -2.120500e+02 -2.357200e+02
+14 5142     -7.815002e+01 -2.022300e+02
+0 5143     -2.158300e+02 5.391400e+02
+2 5143     -4.996000e+02 3.066900e+02
+3 5143     -6.243600e+02 -2.178003e+01
+5 5143     1.968900e+02 -1.101400e+02
+7 5143     -4.468000e+02 5.871300e+02
+8 5143     -3.312600e+02 2.309900e+02
+12 5143     -5.498700e+02 5.266100e+02
+0 5144     -3.091700e+02 5.379500e+02
+7 5144     -5.423100e+02 5.769900e+02
+0 5145     2.523600e+02 5.382400e+02
+14 5145     5.568800e+02 -1.851500e+02
+0 5146     -1.451300e+02 5.369800e+02
+14 5146     1.758500e+02 -2.014300e+02
+0 5147     6.170100e+02 5.370400e+02
+2 5147     3.752500e+02 4.552800e+02
+3 5147     2.278101e+02 1.211000e+02
+6 5147     2.994500e+02 7.219300e+02
+9 5147     1.723700e+02 4.813300e+02
+13 5147     7.541600e+02 2.547300e+02
+0 5148     -3.256200e+02 5.351800e+02
+2 5148     -6.097300e+02 3.040200e+02
+7 5148     -5.588000e+02 5.723900e+02
+8 5148     -4.213700e+02 2.269600e+02
+11 5148     -1.378400e+02 -2.384700e+02
+12 5148     -6.762700e+02 5.083600e+02
+0 5149     2.726001e+01 5.348000e+02
+2 5149     -2.691000e+02 2.998500e+02
+6 5149     -4.552900e+02 5.722500e+02
+12 5149     -2.814000e+02 5.532700e+02
+0 5150     6.041200e+02 5.350400e+02
+2 5150     3.622900e+02 4.494600e+02
+0 5151     -5.371100e+02 5.346000e+02
+5 5151     -1.110100e+02 -1.109000e+02
+14 5151     -1.949400e+02 -2.076100e+02
+0 5152     -3.835200e+02 5.347500e+02
+7 5152     -6.194800e+02 5.657300e+02
+0 5153     -4.564000e+02 5.341900e+02
+2 5153     -7.475800e+02 3.065300e+02
+5 5153     -3.469000e+01 -1.134600e+02
+7 5153     -6.965900e+02 5.588600e+02
+8 5153     -5.328500e+02 2.251300e+02
+0 5154     3.905900e+02 5.339400e+02
+2 5154     4.565002e+01 3.015400e+02
+6 5154     -6.812000e+01 6.421200e+02
+0 5155     2.070800e+02 5.332800e+02
+5 5155     6.086500e+02 -1.098000e+02
+6 5155     -2.596300e+02 6.055200e+02
+12 5155     -9.216998e+01 5.750100e+02
+14 5155     5.123500e+02 -1.929700e+02
+0 5156     6.440000e+02 5.335700e+02
+6 5156     3.747000e+02 7.340900e+02
+0 5157     -3.082400e+02 5.325000e+02
+2 5157     -5.920200e+02 3.001800e+02
+7 5157     -5.402700e+02 5.707400e+02
+0 5158     -2.163100e+02 5.327800e+02
+7 5158     -4.464300e+02 5.802900e+02
+12 5158     -5.493400e+02 5.191100e+02
+0 5159     -6.104800e+02 5.317800e+02
+5 5159     -1.813100e+02 -1.132100e+02
+11 5159     -3.760600e+02 -2.416100e+02
+13 5159     -2.883900e+02 1.699500e+02
+14 5159     -2.640500e+02 -2.107400e+02
+0 5160     -5.592300e+02 5.318000e+02
+14 5160     -2.161500e+02 -2.105500e+02
+0 5161     -5.256200e+02 5.321300e+02
+5 5161     -9.921997e+01 -1.138600e+02
+14 5161     -1.830400e+02 -2.103500e+02
+0 5162     -1.232900e+02 5.320500e+02
+12 5162     -4.445400e+02 5.295400e+02
+0 5163     -1.232900e+02 5.320500e+02
+12 5163     -4.445400e+02 5.295400e+02
+0 5164     3.928199e+02 5.318100e+02
+14 5164     6.943800e+02 -1.835400e+02
+0 5165     1.614600e+02 5.305200e+02
+2 5165     -1.478600e+02 2.953200e+02
+5 5165     5.639500e+02 -1.134700e+02
+6 5165     -3.071600e+02 5.937100e+02
+0 5166     1.983900e+02 5.306900e+02
+9 5166     -2.521300e+02 3.271300e+02
+0 5167     -2.086100e+02 5.302100e+02
+5 5167     2.035699e+02 -1.190400e+02
+7 5167     -4.380500e+02 5.785700e+02
+12 5167     -5.399800e+02 5.171300e+02
+0 5168     1.531600e+02 5.299100e+02
+5 5168     5.554600e+02 -1.151200e+02
+0 5169     -6.990600e+02 5.296100e+02
+5 5169     -3.426800e+02 -1.213700e+02
+13 5169     -4.184000e+02 1.539200e+02
+0 5170     -1.044000e+01 5.294400e+02
+2 5170     -3.029200e+02 2.932100e+02
+5 5170     3.956400e+02 -1.187900e+02
+0 5171     3.945200e+02 5.295500e+02
+5 5171     7.985601e+02 -1.067200e+02
+6 5171     -6.334998e+01 6.378600e+02
+12 5171     9.808002e+01 5.952000e+02
+14 5171     6.962800e+02 -1.857700e+02
+0 5172     -3.181300e+02 5.289700e+02
+7 5172     -5.501900e+02 5.666300e+02
+8 5172     -4.148400e+02 2.209700e+02
+12 5172     -6.664700e+02 5.016000e+02
+0 5173     -3.181300e+02 5.289700e+02
+5 5173     9.747998e+01 -1.195500e+02
+7 5173     -5.501900e+02 5.666300e+02
+8 5173     -4.148400e+02 2.209700e+02
+0 5174     -2.238200e+02 5.288900e+02
+7 5174     -4.534700e+02 5.756500e+02
+11 5174     -5.059003e+01 -2.435400e+02
+12 5174     -5.573000e+02 5.134400e+02
+0 5175     4.458500e+02 5.279100e+02
+6 5175     -1.115002e+01 6.463600e+02
+13 5175     5.425200e+02 2.230900e+02
+14 5175     7.469000e+02 -1.840000e+02
+0 5176     -3.312400e+02 5.277200e+02
+2 5176     -6.153200e+02 2.953900e+02
+5 5176     8.478998e+01 -1.210900e+02
+14 5176     -1.369995e+00 -2.139600e+02
+0 5177     -9.821997e+01 5.264100e+02
+2 5177     -3.850700e+02 2.904600e+02
+5 5177     3.098199e+02 -1.226300e+02
+7 5177     -3.266700e+02 5.854000e+02
+12 5177     -4.157700e+02 5.270600e+02
+0 5178     -9.821997e+01 5.264100e+02
+2 5178     -3.850700e+02 2.904600e+02
+5 5178     3.098199e+02 -1.226300e+02
+12 5178     -4.157700e+02 5.270600e+02
+0 5179     -9.821997e+01 5.264100e+02
+2 5179     -3.850700e+02 2.904600e+02
+5 5179     3.098199e+02 -1.226300e+02
+7 5179     -3.266700e+02 5.854000e+02
+12 5179     -4.157700e+02 5.270600e+02
+0 5180     -5.376900e+02 5.262400e+02
+5 5180     -1.130100e+02 -1.203700e+02
+13 5180     -2.316500e+02 1.681300e+02
+14 5180     -1.965000e+02 -2.165100e+02
+0 5181     6.090300e+02 5.262000e+02
+6 5181     2.926700e+02 7.084300e+02
+0 5182     6.221400e+02 5.250200e+02
+3 5182     2.361500e+02 1.131200e+02
+9 5182     1.800800e+02 4.743800e+02
+0 5183     6.981000e+02 5.245800e+02
+6 5183     4.409600e+02 7.377000e+02
+0 5184     -4.390200e+02 5.238300e+02
+11 5184     -2.345000e+02 -2.482300e+02
+14 5184     -1.037800e+02 -2.187200e+02
+0 5185     -2.269900e+02 5.236600e+02
+7 5185     -4.559500e+02 5.701700e+02
+0 5186     9.133002e+01 5.236800e+02
+6 5186     -3.816800e+02 5.704200e+02
+0 5187     3.964500e+02 5.229200e+02
+5 5187     8.009301e+02 -1.133700e+02
+6 5187     -5.985999e+01 6.304400e+02
+14 5187     6.988101e+02 -1.925200e+02
+0 5188     -5.515300e+02 5.226200e+02
+5 5188     -1.267100e+02 -1.232300e+02
+7 5188     -7.983700e+02 5.373300e+02
+11 5188     -3.278000e+02 -2.486400e+02
+14 5188     -2.102900e+02 -2.199400e+02
+0 5189     6.113400e+02 5.224400e+02
+6 5189     2.965500e+02 7.048500e+02
+0 5190     -2.173800e+02 5.221300e+02
+2 5190     -5.006200e+02 2.867000e+02
+3 5190     -6.259500e+02 -4.217999e+01
+7 5190     -4.460100e+02 5.689300e+02
+8 5190     -3.318100e+02 2.150100e+02
+12 5190     -5.486000e+02 5.055600e+02
+0 5191     6.187600e+02 5.218200e+02
+2 5191     3.811000e+02 4.428000e+02
+6 5191     3.055500e+02 7.061300e+02
+0 5192     6.987600e+02 5.214200e+02
+6 5192     4.419800e+02 7.342000e+02
+9 5192     2.868700e+02 5.333700e+02
+0 5193     -3.168300e+02 5.212400e+02
+2 5193     -6.003700e+02 2.875300e+02
+0 5194     -3.168300e+02 5.212400e+02
+2 5194     -6.003700e+02 2.875300e+02
+7 5194     -5.476600e+02 5.583100e+02
+0 5195     2.978003e+01 5.208300e+02
+2 5195     -2.653400e+02 2.840500e+02
+6 5195     -4.497100e+02 5.549500e+02
+12 5195     -2.760100e+02 5.373100e+02
+0 5196     6.461300e+02 5.184900e+02
+2 5196     4.546899e+02 4.930000e+02
+11 5196     7.082600e+02 -2.155000e+02
+0 5197     2.687000e+01 5.175000e+02
+5 5197     4.314000e+02 -1.299600e+02
+6 5197     -4.523800e+02 5.503900e+02
+11 5197     1.704100e+02 -2.473500e+02
+0 5198     -5.270800e+02 5.168400e+02
+2 5198     -8.265800e+02 2.864000e+02
+5 5198     -1.041300e+02 -1.300100e+02
+7 5198     -7.697200e+02 5.320900e+02
+11 5198     -3.078100e+02 -2.548100e+02
+13 5198     -2.237400e+02 1.607100e+02
+14 5198     -1.876700e+02 -2.260800e+02
+0 5199     -4.024000e+02 5.157200e+02
+2 5199     -6.898700e+02 2.802200e+02
+7 5199     -6.357900e+02 5.434900e+02
+8 5199     -4.864100e+02 2.056100e+02
+11 5199     -2.034800e+02 -2.563900e+02
+12 5199     -7.643000e+02 4.708300e+02
+0 5200     -3.097600e+02 5.157000e+02
+2 5200     -5.931100e+02 2.802700e+02
+5 5200     1.046100e+02 -1.333200e+02
+7 5200     -5.394300e+02 5.531800e+02
+0 5201     1.525000e+01 5.155700e+02
+2 5201     -2.779900e+02 2.781800e+02
+5 5201     4.202400e+02 -1.326100e+02
+0 5202     1.065997e+01 5.148000e+02
+3 5202     -4.141600e+02 -5.469000e+01
+6 5202     -4.697100e+02 5.428500e+02
+0 5203     7.960999e+01 5.152400e+02
+5 5203     4.832700e+02 -1.321100e+02
+6 5203     -3.931800e+02 5.569700e+02
+8 5203     -1.016900e+02 2.137400e+02
+9 5203     -3.390100e+02 3.085400e+02
+12 5203     -2.217200e+02 5.374700e+02
+0 5204     7.573999e+01 5.147000e+02
+14 5204     3.870100e+02 -2.178600e+02
+0 5205     7.209003e+01 5.140300e+02
+2 5205     -2.259500e+02 2.768600e+02
+3 5205     -3.586800e+02 -5.535999e+01
+6 5205     -3.998900e+02 5.554700e+02
+7 5205     -1.582500e+02 5.899900e+02
+9 5205     -3.432900e+02 3.077000e+02
+14 5205     3.832900e+02 -2.187300e+02
+0 5206     -1.596000e+02 5.136100e+02
+12 5206     -4.820100e+02 5.036900e+02
+0 5207     -1.596000e+02 5.136100e+02
+12 5207     -4.820100e+02 5.036900e+02
+0 5208     -5.548800e+02 5.128500e+02
+5 5208     -1.317500e+02 -1.332700e+02
+0 5209     1.291998e+01 5.123900e+02
+5 5209     4.174399e+02 -1.354100e+02
+7 5209     -2.157200e+02 5.823300e+02
+11 5209     1.577800e+02 -2.527600e+02
+14 5209     3.259800e+02 -2.218700e+02
+0 5210     7.852002e+01 5.124100e+02
+2 5210     -2.204200e+02 2.749300e+02
+5 5210     4.819000e+02 -1.349200e+02
+6 5210     -3.940600e+02 5.534800e+02
+14 5210     3.891400e+02 -2.201200e+02
+0 5211     -3.188800e+02 5.118100e+02
+7 5211     -5.487900e+02 5.481200e+02
+0 5212     7.264001e+01 5.114000e+02
+2 5212     -2.251000e+02 2.739000e+02
+3 5212     -3.580800e+02 -5.890997e+01
+5 5212     4.765500e+02 -1.360900e+02
+6 5212     -3.998500e+02 5.510200e+02
+7 5212     -1.575800e+02 5.872200e+02
+8 5212     -1.050500e+02 2.105100e+02
+9 5212     -3.430000e+02 3.047700e+02
+14 5212     3.834900e+02 -2.214000e+02
+0 5213     6.330500e+02 5.115700e+02
+2 5213     4.427600e+02 4.820400e+02
+3 5213     2.959200e+02 1.470300e+02
+8 5213     4.272300e+02 3.684200e+02
+9 5213     2.326500e+02 5.064700e+02
+11 5213     6.983600e+02 -2.228800e+02
+0 5214     -9.803998e+01 5.112500e+02
+2 5214     -3.840800e+02 2.728500e+02
+0 5215     -3.347200e+02 5.106500e+02
+2 5215     -6.189700e+02 2.746300e+02
+7 5215     -5.646300e+02 5.450000e+02
+8 5215     -4.284900e+02 2.028200e+02
+12 5215     -6.829200e+02 4.759800e+02
+0 5216     5.244000e+01 5.103000e+02
+2 5216     -2.433600e+02 2.725800e+02
+3 5216     -3.758500e+02 -5.990997e+01
+5 5216     4.565500e+02 -1.373200e+02
+6 5216     -4.219600e+02 5.462700e+02
+7 5216     -1.770300e+02 5.839800e+02
+8 5216     -1.206600e+02 2.091900e+02
+9 5216     -3.586000e+02 3.031800e+02
+11 5216     1.935400e+02 -2.530400e+02
+0 5217     7.595001e+01 5.093400e+02
+2 5217     -2.220600e+02 2.715400e+02
+5 5217     4.791400e+02 -1.385700e+02
+7 5217     -1.540800e+02 5.854700e+02
+0 5218     6.116500e+02 5.094200e+02
+6 5218     3.026000e+02 6.912800e+02
+0 5219     5.666400e+02 5.065100e+02
+2 5219     3.296300e+02 4.117800e+02
+3 5219     1.849200e+02 7.909998e+01
+13 5219     7.094900e+02 2.250900e+02
+0 5220     6.637000e+01 5.052800e+02
+2 5220     -2.310400e+02 2.666900e+02
+3 5220     -3.642800e+02 -6.615997e+01
+5 5220     4.697600e+02 -1.429400e+02
+6 5220     -4.063700e+02 5.415900e+02
+8 5220     -1.107700e+02 2.041900e+02
+9 5220     -3.483600e+02 2.975900e+02
+12 5220     -2.342900e+02 5.240700e+02
+0 5221     1.099000e+02 5.053300e+02
+13 5221     2.765400e+02 1.805000e+02
+0 5222     4.620000e+02 5.056100e+02
+14 5222     7.659600e+02 -2.062500e+02
+0 5223     -4.085200e+02 5.048600e+02
+2 5223     -6.963000e+02 2.687800e+02
+5 5223     7.359985e+00 -1.435800e+02
+7 5223     -6.407100e+02 5.312400e+02
+8 5223     -4.916800e+02 1.968700e+02
+12 5223     -7.700400e+02 4.589900e+02
+0 5224     6.284998e+01 5.042400e+02
+7 5224     -1.663400e+02 5.788400e+02
+14 5224     3.741500e+02 -2.286600e+02
+0 5225     6.996100e+02 5.044000e+02
+2 5225     5.115300e+02 4.977400e+02
+6 5225     4.469301e+02 7.168600e+02
+8 5225     4.841200e+02 3.800900e+02
+0 5226     -1.860100e+02 5.034900e+02
+12 5226     -5.102000e+02 4.871900e+02
+0 5227     9.446002e+01 5.033800e+02
+6 5227     -3.749500e+02 5.448700e+02
+12 5227     -2.040400e+02 5.255600e+02
+0 5228     -3.665002e+01 5.029400e+02
+7 5228     -2.628800e+02 5.674600e+02
+0 5229     5.677600e+02 5.032200e+02
+2 5229     3.315300e+02 4.089800e+02
+3 5229     1.865500e+02 7.635999e+01
+6 5229     2.468400e+02 6.722000e+02
+8 5229     3.396700e+02 3.125900e+02
+0 5230     2.883002e+01 5.023300e+02
+6 5230     -4.474200e+02 5.305100e+02
+7 5230     -1.991400e+02 5.733600e+02
+0 5231     -6.885800e+02 5.018100e+02
+5 5231     -3.343700e+02 -1.481600e+02
+11 5231     -4.321800e+02 -2.639300e+02
+13 5231     -4.091900e+02 1.322900e+02
+14 5231     -4.127500e+02 -2.474400e+02
+0 5232     -9.401001e+01 5.015700e+02
+3 5232     -5.072000e+02 -6.814001e+01
+0 5233     -4.560999e+01 5.013100e+02
+6 5233     -5.311000e+02 5.149000e+02
+7 5233     -2.718100e+02 5.648700e+02
+0 5234     -6.257001e+01 5.003400e+02
+7 5234     -2.881200e+02 5.620900e+02
+0 5235     -2.138000e+01 5.005500e+02
+2 5235     -3.112900e+02 2.603600e+02
+6 5235     -5.030400e+02 5.173500e+02
+7 5235     -2.477900e+02 5.665100e+02
+12 5235     -3.275100e+02 5.061900e+02
+0 5236     6.633002e+01 5.002600e+02
+2 5236     -2.302900e+02 2.602700e+02
+5 5236     4.696801e+02 -1.482500e+02
+6 5236     -4.053400e+02 5.352200e+02
+7 5236     -1.625000e+02 5.748200e+02
+13 5236     2.422800e+02 1.735300e+02
+14 5236     3.774600e+02 -2.337300e+02
+0 5237     6.453900e+02 4.998200e+02
+3 5237     3.112800e+02 1.420600e+02
+6 5237     3.843400e+02 6.991900e+02
+0 5238     6.949100e+02 4.999800e+02
+2 5238     5.080800e+02 4.917700e+02
+3 5238     3.572200e+02 1.575300e+02
+6 5238     4.421801e+02 7.104600e+02
+8 5238     4.809399e+02 3.752800e+02
+9 5238     2.880500e+02 5.162700e+02
+0 5239     5.119500e+02 4.979000e+02
+2 5239     2.717200e+02 3.836700e+02
+3 5239     1.290600e+02 5.144000e+01
+6 5239     1.774200e+02 6.506800e+02
+8 5239     2.914200e+02 2.930100e+02
+9 5239     8.439001e+01 4.159900e+02
+0 5240     7.160500e+02 4.977700e+02
+6 5240     4.676801e+02 7.144500e+02
+0 5241     -6.421997e+01 4.973100e+02
+2 5241     -3.516900e+02 2.572300e+02
+7 5241     -2.900000e+02 5.589000e+02
+14 5241     2.517900e+02 -2.404800e+02
+0 5242     6.073999e+01 4.972100e+02
+7 5242     -1.671400e+02 5.712400e+02
+14 5242     3.726300e+02 -2.367500e+02
+0 5243     6.075601e+02 4.960300e+02
+6 5243     2.992200e+02 6.749900e+02
+8 5243     3.757500e+02 3.188100e+02
+0 5244     6.075601e+02 4.960300e+02
+6 5244     2.992200e+02 6.749900e+02
+8 5244     3.757500e+02 3.188100e+02
+0 5245     -6.902900e+02 4.953800e+02
+14 5245     -4.151900e+02 -2.542300e+02
+0 5246     -2.153600e+02 4.951600e+02
+2 5246     -4.975600e+02 2.547800e+02
+7 5246     -4.400300e+02 5.407800e+02
+0 5247     -3.339000e+02 4.918100e+02
+5 5247     7.846997e+01 -1.582100e+02
+7 5247     -5.611400e+02 5.249900e+02
+12 5247     -6.786600e+02 4.526400e+02
+0 5248     -3.339000e+02 4.918100e+02
+7 5248     -5.611400e+02 5.249900e+02
+12 5248     -6.786600e+02 4.526400e+02
+0 5249     -1.980500e+02 4.910800e+02
+7 5249     -4.220200e+02 5.383100e+02
+0 5250     -1.980500e+02 4.910800e+02
+7 5250     -4.220200e+02 5.383100e+02
+0 5251     7.643400e+02 4.904500e+02
+2 5251     5.778199e+02 5.074900e+02
+0 5252     -3.627500e+02 4.898600e+02
+14 5252     -3.458002e+01 -2.524200e+02
+0 5253     -3.627500e+02 4.898600e+02
+12 5253     -7.125900e+02 4.473400e+02
+14 5253     -3.458002e+01 -2.524200e+02
+0 5254     -1.085800e+02 4.895700e+02
+2 5254     -3.922900e+02 2.484300e+02
+0 5255     -3.959600e+02 4.886700e+02
+5 5255     1.739001e+01 -1.607000e+02
+7 5255     -6.257600e+02 5.151400e+02
+12 5255     -7.526000e+02 4.402600e+02
+0 5256     6.693700e+02 4.886000e+02
+3 5256     3.365500e+02 1.409600e+02
+6 5256     4.149800e+02 6.931800e+02
+9 5256     2.691700e+02 5.011700e+02
+11 5256     7.361600e+02 -2.407500e+02
+0 5257     6.651801e+02 4.879000e+02
+6 5257     4.099900e+02 6.910400e+02
+0 5258     -5.518500e+02 4.875500e+02
+7 5258     -7.928300e+02 4.984000e+02
+11 5258     -3.310700e+02 -2.779000e+02
+0 5259     -5.518500e+02 4.875500e+02
+7 5259     -7.928300e+02 4.984000e+02
+11 5259     -3.310700e+02 -2.779000e+02
+0 5260     -3.130700e+02 4.875700e+02
+7 5260     -5.390700e+02 5.224000e+02
+8 5260     -4.096600e+02 1.815200e+02
+0 5261     7.662700e+02 4.874100e+02
+2 5261     5.806300e+02 5.051700e+02
+6 5261     5.267500e+02 7.150800e+02
+0 5262     6.996000e+02 4.871400e+02
+2 5262     5.160000e+02 4.832300e+02
+6 5262     4.509399e+02 6.988500e+02
+8 5262     4.878500e+02 3.682500e+02
+11 5262     7.636500e+02 -2.404800e+02
+0 5263     -7.827002e+01 4.860300e+02
+2 5263     -3.637800e+02 2.433600e+02
+6 5263     -5.654000e+02 4.868600e+02
+0 5264     -4.153003e+01 4.853600e+02
+2 5264     -3.288400e+02 2.431200e+02
+7 5264     -2.655400e+02 5.486700e+02
+0 5265     5.955900e+02 4.850900e+02
+2 5265     3.635699e+02 4.025600e+02
+6 5265     2.840500e+02 6.602100e+02
+8 5265     3.670700e+02 3.061100e+02
+9 5265     1.636300e+02 4.349500e+02
+0 5266     7.038700e+02 4.847100e+02
+2 5266     5.208800e+02 4.826300e+02
+8 5266     4.917800e+02 3.676600e+02
+9 5266     2.998500e+02 5.087100e+02
+0 5267     4.984301e+02 4.839900e+02
+2 5267     2.591600e+02 3.661100e+02
+13 5267     6.452800e+02 1.995200e+02
+0 5268     -1.498600e+02 4.836300e+02
+12 5268     -4.662900e+02 4.686500e+02
+0 5269     3.377700e+02 4.841900e+02
+11 5269     4.565699e+02 -2.617200e+02
+14 5269     6.445200e+02 -2.363100e+02
+0 5270     -4.210200e+02 4.823300e+02
+2 5270     -7.098400e+02 2.410800e+02
+14 5270     -9.112000e+01 -2.607400e+02
+0 5271     -4.210200e+02 4.823300e+02
+2 5271     -7.098400e+02 2.410800e+02
+14 5271     -9.112000e+01 -2.607400e+02
+0 5272     -2.331000e+01 4.825200e+02
+14 5272     2.908800e+02 -2.546500e+02
+0 5273     6.399301e+02 4.827300e+02
+3 5273     3.100699e+02 1.264900e+02
+6 5273     3.816300e+02 6.788000e+02
+0 5274     6.685500e+02 4.825100e+02
+2 5274     4.861000e+02 4.688600e+02
+3 5274     3.375601e+02 1.361500e+02
+0 5275     6.685500e+02 4.825100e+02
+2 5275     4.861000e+02 4.688600e+02
+3 5275     3.375601e+02 1.361500e+02
+0 5276     -6.426001e+01 4.820100e+02
+2 5276     -3.499200e+02 2.387500e+02
+3 5276     -4.795400e+02 -9.207001e+01
+5 5276     3.409700e+02 -1.691900e+02
+6 5276     -5.482900e+02 4.847400e+02
+7 5276     -2.875500e+02 5.428500e+02
+12 5276     -3.709900e+02 4.784100e+02
+0 5277     -6.426001e+01 4.820100e+02
+2 5277     -3.499200e+02 2.387500e+02
+7 5277     -2.875500e+02 5.428500e+02
+12 5277     -3.709900e+02 4.784100e+02
+0 5278     6.919100e+02 4.818600e+02
+2 5278     5.096700e+02 4.765300e+02
+6 5278     4.430200e+02 6.917600e+02
+8 5278     4.821500e+02 3.623100e+02
+9 5278     2.896700e+02 5.028900e+02
+11 5278     7.576899e+02 -2.456400e+02
+0 5279     -1.042600e+02 4.815500e+02
+2 5279     -3.885000e+02 2.383700e+02
+3 5279     -5.171700e+02 -9.198999e+01
+7 5279     -3.271900e+02 5.381300e+02
+12 5279     -4.150500e+02 4.720900e+02
+0 5280     -5.817999e+01 4.814500e+02
+2 5280     -3.445600e+02 2.383300e+02
+6 5280     -5.415200e+02 4.854400e+02
+0 5281     -5.817999e+01 4.814500e+02
+2 5281     -3.445600e+02 2.383300e+02
+0 5282     -1.998999e+01 4.817100e+02
+2 5282     -3.090900e+02 2.390100e+02
+5 5282     3.841100e+02 -1.691600e+02
+6 5282     -4.982500e+02 4.933000e+02
+7 5282     -2.439500e+02 5.469500e+02
+9 5282     -4.136400e+02 2.715000e+02
+11 5282     1.301200e+02 -2.800100e+02
+12 5282     -3.224900e+02 4.839300e+02
+14 5282     2.941700e+02 -2.555400e+02
+0 5283     -4.315800e+02 4.810000e+02
+2 5283     -7.215000e+02 2.397100e+02
+5 5283     -1.753998e+01 -1.680300e+02
+7 5283     -6.620400e+02 5.032100e+02
+12 5283     -7.939900e+02 4.262000e+02
+14 5283     -1.015700e+02 -2.621300e+02
+0 5284     5.190800e+02 4.804100e+02
+2 5284     2.831700e+02 3.705800e+02
+6 5284     1.905200e+02 6.337500e+02
+12 5284     2.995200e+02 6.196400e+02
+0 5285     5.190800e+02 4.804100e+02
+6 5285     1.905200e+02 6.337500e+02
+12 5285     2.995200e+02 6.196400e+02
+0 5286     1.946002e+01 4.792500e+02
+7 5286     -2.051500e+02 5.487500e+02
+11 5286     1.652200e+02 -2.809700e+02
+14 5286     3.325699e+02 -2.564300e+02
+0 5287     -6.304300e+02 4.790900e+02
+5 5287     -2.241700e+02 -1.671700e+02
+0 5288     -6.304300e+02 4.790900e+02
+5 5288     -2.241700e+02 -1.671700e+02
+0 5289     -9.140997e+01 4.782000e+02
+7 5289     -3.138000e+02 5.359300e+02
+0 5290     7.069000e+02 4.779700e+02
+2 5290     5.256000e+02 4.779100e+02
+6 5290     4.616400e+02 6.910100e+02
+8 5290     4.953800e+02 3.632600e+02
+9 5290     3.032600e+02 5.047500e+02
+11 5290     7.725100e+02 -2.480200e+02
+0 5291     3.694000e+02 4.773600e+02
+2 5291     3.610999e+01 2.405600e+02
+8 5291     1.105000e+02 1.886100e+02
+14 5291     6.764100e+02 -2.416200e+02
+0 5292     -3.227002e+01 4.769000e+02
+2 5292     -3.196700e+02 2.331300e+02
+0 5293     -7.671997e+01 4.763500e+02
+7 5293     -2.980800e+02 5.370700e+02
+12 5293     -3.825900e+02 4.715100e+02
+14 5293     2.406100e+02 -2.612600e+02
+0 5294     -5.017999e+01 4.766100e+02
+6 5294     -5.311000e+02 4.805300e+02
+7 5294     -2.730100e+02 5.386500e+02
+12 5294     -3.547200e+02 4.738000e+02
+14 5294     2.651300e+02 -2.615800e+02
+0 5295     6.925800e+02 4.766300e+02
+2 5295     5.119000e+02 4.727100e+02
+8 5295     4.846801e+02 3.601400e+02
+9 5295     2.920500e+02 5.003700e+02
+11 5295     7.601100e+02 -2.489900e+02
+0 5296     -5.256200e+02 4.760900e+02
+5 5296     -1.087500e+02 -1.712600e+02
+7 5296     -7.622000e+02 4.882900e+02
+11 5296     -3.103800e+02 -2.872900e+02
+0 5297     -6.008002e+01 4.760900e+02
+6 5297     -5.430200e+02 4.785600e+02
+7 5297     -2.827600e+02 5.373500e+02
+9 5297     -4.456000e+02 2.639900e+02
+0 5298     3.480400e+02 4.760000e+02
+6 5298     -1.000500e+02 5.624000e+02
+12 5298     6.247998e+01 5.285900e+02
+0 5299     8.004800e+02 4.759600e+02
+6 5299     5.678700e+02 7.111600e+02
+0 5300     1.495800e+02 4.742500e+02
+2 5300     -1.528400e+02 2.322000e+02
+5 5300     5.521801e+02 -1.740300e+02
+11 5300     2.839500e+02 -2.801900e+02
+14 5300     4.592900e+02 -2.569800e+02
+0 5301     -9.950000e+01 4.735000e+02
+3 5301     -5.125100e+02 -1.018300e+02
+7 5301     -3.214900e+02 5.302200e+02
+14 5301     2.172000e+02 -2.661800e+02
+0 5302     3.306000e+02 4.736100e+02
+14 5302     6.381000e+02 -2.480700e+02
+0 5303     -5.448700e+02 4.707200e+02
+5 5303     -1.283200e+02 -1.765800e+02
+7 5303     -7.821300e+02 4.804600e+02
+14 5303     -2.111900e+02 -2.725400e+02
+0 5304     -3.393200e+02 4.702200e+02
+7 5304     -5.640000e+02 5.012600e+02
+0 5305     -7.604999e+01 4.705000e+02
+2 5305     -3.606400e+02 2.247700e+02
+6 5305     -5.600000e+02 4.667700e+02
+0 5306     -3.994000e+02 4.694100e+02
+2 5306     -6.865200e+02 2.249600e+02
+5 5306     1.212000e+01 -1.805600e+02
+0 5307     1.554399e+02 4.695500e+02
+3 5307     -2.809500e+02 -1.004200e+02
+0 5308     6.977700e+02 4.693800e+02
+6 5308     4.530800e+02 6.796600e+02
+0 5309     7.846899e+02 4.688200e+02
+2 5309     6.021801e+02 4.948900e+02
+6 5309     5.513101e+02 7.001100e+02
+0 5310     -5.147100e+02 4.681800e+02
+14 5310     -1.827800e+02 -2.751900e+02
+0 5311     -3.454999e+01 4.675400e+02
+7 5311     -2.567800e+02 5.308900e+02
+0 5312     -3.454999e+01 4.675400e+02
+5 5312     3.693700e+02 -1.842200e+02
+7 5312     -2.567800e+02 5.308900e+02
+13 5312     1.628800e+02 1.404500e+02
+14 5312     2.796801e+02 -2.707200e+02
+0 5313     -3.193000e+02 4.670400e+02
+2 5313     -6.019700e+02 2.213500e+02
+5 5313     9.046997e+01 -1.840200e+02
+7 5313     -5.424900e+02 5.003100e+02
+12 5313     -6.567600e+02 4.244800e+02
+0 5314     3.455400e+02 4.671100e+02
+6 5314     -1.010200e+02 5.507600e+02
+0 5315     -2.475300e+02 4.667400e+02
+2 5315     -5.277700e+02 2.209700e+02
+12 5315     -5.970800e+02 4.255800e+02
+0 5316     6.618300e+02 4.649800e+02
+2 5316     4.836899e+02 4.513300e+02
+0 5317     -4.150000e+02 4.645900e+02
+2 5317     -7.042700e+02 2.177700e+02
+12 5317     -7.715100e+02 4.078800e+02
+0 5318     -3.646600e+02 4.637200e+02
+2 5318     -6.494300e+02 2.174800e+02
+12 5318     -7.103200e+02 4.138400e+02
+0 5319     -3.646600e+02 4.637200e+02
+7 5319     -5.891900e+02 4.922400e+02
+0 5320     -5.329800e+02 4.634400e+02
+7 5320     -7.678000e+02 4.736800e+02
+14 5320     -2.006200e+02 -2.801000e+02
+0 5321     3.249100e+02 4.633700e+02
+14 5321     6.333600e+02 -2.591500e+02
+0 5322     6.771100e+02 4.636200e+02
+3 5322     3.503199e+02 1.230100e+02
+6 5322     4.300800e+02 6.674000e+02
+9 5322     2.816400e+02 4.844800e+02
+0 5323     -1.501500e+02 4.624900e+02
+2 5323     -4.315200e+02 2.153300e+02
+7 5323     -3.701200e+02 5.131800e+02
+0 5324     6.906100e+02 4.626900e+02
+3 5324     3.634600e+02 1.273600e+02
+0 5325     -2.518000e+02 4.618200e+02
+7 5325     -4.726800e+02 5.018500e+02
+0 5326     5.537100e+02 4.620700e+02
+2 5326     3.265300e+02 3.668100e+02
+3 5326     1.827800e+02 3.676001e+01
+6 5326     2.401200e+02 6.229400e+02
+12 5326     3.449700e+02 6.111500e+02
+0 5327     -4.261700e+02 4.606300e+02
+2 5327     -7.155700e+02 2.142400e+02
+8 5327     -5.064000e+02 1.532700e+02
+0 5328     -4.261700e+02 4.606300e+02
+2 5328     -7.155700e+02 2.142400e+02
+8 5328     -5.064000e+02 1.532700e+02
+0 5329     -2.469300e+02 4.600400e+02
+2 5329     -5.280200e+02 2.132100e+02
+5 5329     1.601200e+02 -1.922100e+02
+12 5329     -5.720800e+02 4.257200e+02
+14 5329     7.444000e+01 -2.821200e+02
+0 5330     -2.643800e+02 4.595400e+02
+2 5330     -5.455800e+02 2.120600e+02
+5 5330     1.428300e+02 -1.927900e+02
+8 5330     -3.688300e+02 1.553900e+02
+0 5331     6.896200e+02 4.597900e+02
+6 5331     4.460601e+02 6.679100e+02
+0 5332     8.189500e+02 4.588500e+02
+2 5332     6.369200e+02 4.977900e+02
+0 5333     2.044000e+02 4.575500e+02
+2 5333     -1.024700e+02 2.142900e+02
+6 5333     -2.483300e+02 5.092000e+02
+7 5333     -2.507001e+01 5.456700e+02
+12 5333     -8.145001e+01 4.877700e+02
+14 5333     5.139500e+02 -2.718300e+02
+0 5334     3.441899e+02 4.572000e+02
+14 5334     6.537100e+02 -2.645500e+02
+0 5335     -4.244600e+02 4.563400e+02
+5 5335     -1.378998e+01 -1.939400e+02
+8 5335     -5.050000e+02 1.494000e+02
+12 5335     -7.804700e+02 3.953300e+02
+14 5335     -9.726001e+01 -2.875500e+02
+0 5336     -5.409973e+00 4.560600e+02
+5 5336     3.977300e+02 -1.962800e+02
+14 5336     3.082400e+02 -2.818500e+02
+0 5337     6.295200e+02 4.556600e+02
+2 5337     4.528800e+02 4.318600e+02
+6 5337     3.754200e+02 6.471100e+02
+0 5338     8.270400e+02 4.549200e+02
+3 5338     4.854100e+02 1.636400e+02
+0 5339     3.514500e+02 4.524200e+02
+14 5339     6.605800e+02 -2.693600e+02
+0 5340     6.902100e+02 4.527200e+02
+2 5340     5.153300e+02 4.505600e+02
+3 5340     3.659000e+02 1.190400e+02
+6 5340     4.482900e+02 6.593800e+02
+0 5341     2.042300e+02 4.527000e+02
+6 5341     -2.470200e+02 5.029100e+02
+12 5341     -8.014001e+01 4.819200e+02
+14 5341     5.139500e+02 -2.771800e+02
+0 5342     6.157200e+02 4.513500e+02
+2 5342     4.396200e+02 4.228900e+02
+3 5342     2.945400e+02 9.226001e+01
+0 5343     -5.528100e+02 4.492700e+02
+5 5343     -1.396300e+02 -1.987500e+02
+14 5343     -2.220000e+02 -2.947900e+02
+0 5344     -3.107100e+02 4.494400e+02
+2 5344     -5.930600e+02 1.998600e+02
+0 5345     -3.107100e+02 4.494400e+02
+2 5345     -5.930600e+02 1.998600e+02
+0 5346     -2.730400e+02 4.495400e+02
+7 5346     -4.932400e+02 4.863900e+02
+0 5347     6.691000e+02 4.488900e+02
+2 5347     4.956300e+02 4.394500e+02
+0 5348     -6.128998e+01 4.481800e+02
+14 5348     2.571000e+02 -2.908200e+02
+0 5349     6.422300e+02 4.479300e+02
+2 5349     4.676500e+02 4.297700e+02
+3 5349     3.209700e+02 9.896002e+01
+6 5349     3.924900e+02 6.422700e+02
+8 5349     4.473000e+02 3.243000e+02
+9 5349     2.542900e+02 4.615000e+02
+0 5350     6.845300e+02 4.476700e+02
+2 5350     5.112100e+02 4.440700e+02
+6 5350     4.429700e+02 6.533800e+02
+9 5350     2.915800e+02 4.752200e+02
+13 5350     8.515900e+02 1.943900e+02
+0 5351     -4.258800e+02 4.471200e+02
+2 5351     -7.153200e+02 1.966600e+02
+11 5351     -2.273000e+02 -3.124500e+02
+0 5352     5.172800e+02 4.466600e+02
+6 5352     1.967000e+02 5.955700e+02
+9 5352     1.009900e+02 3.779400e+02
+0 5353     6.457900e+02 4.467200e+02
+2 5353     4.723800e+02 4.301500e+02
+3 5353     3.256000e+02 9.950000e+01
+6 5353     3.975900e+02 6.424300e+02
+9 5353     2.586000e+02 4.623800e+02
+13 5353     8.147200e+02 1.895500e+02
+0 5354     -4.224800e+02 4.455100e+02
+2 5354     -7.114100e+02 1.956800e+02
+5 5354     -1.350000e+01 -2.054200e+02
+12 5354     -7.768800e+02 3.822300e+02
+14 5354     -9.631000e+01 -2.986500e+02
+0 5355     5.353800e+02 4.453400e+02
+2 5355     3.106200e+02 3.430600e+02
+3 5355     1.676700e+02 1.265997e+01
+6 5355     2.207500e+02 5.978900e+02
+8 5355     3.223000e+02 2.591500e+02
+9 5355     1.189100e+02 3.819300e+02
+12 5355     3.274800e+02 5.851600e+02
+13 5355     6.856700e+02 1.714100e+02
+0 5356     3.353998e+01 4.440100e+02
+7 5356     -1.875200e+02 5.137700e+02
+14 5356     3.460100e+02 -2.933000e+02
+0 5357     5.180100e+02 4.439100e+02
+2 5357     2.913300e+02 3.358700e+02
+3 5357     1.487300e+02 6.239990e+00
+6 5357     1.989200e+02 5.920400e+02
+7 5357     2.991899e+02 5.869200e+02
+9 5357     1.025400e+02 3.756700e+02
+11 5357     6.153700e+02 -2.890100e+02
+13 5357     6.688700e+02 1.686700e+02
+0 5358     -2.971100e+02 4.434100e+02
+14 5358     2.485999e+01 -3.007800e+02
+0 5359     -2.536800e+02 4.428100e+02
+2 5359     -5.340800e+02 1.910900e+02
+7 5359     -4.718300e+02 4.815800e+02
+12 5359     -5.765100e+02 4.036000e+02
+0 5360     -2.536800e+02 4.428100e+02
+2 5360     -5.340800e+02 1.910900e+02
+7 5360     -4.718300e+02 4.815800e+02
+12 5360     -5.765100e+02 4.036000e+02
+0 5361     -3.058600e+02 4.413500e+02
+7 5361     -5.250000e+02 4.741900e+02
+8 5361     -4.022300e+02 1.375600e+02
+11 5361     -1.237200e+02 -3.184600e+02
+12 5361     -6.367800e+02 3.939800e+02
+14 5361     1.628998e+01 -3.028800e+02
+0 5362     2.084000e+02 4.416500e+02
+14 5362     5.196100e+02 -2.885700e+02
+0 5363     -1.824200e+02 4.405100e+02
+2 5363     -4.620800e+02 1.887700e+02
+7 5363     -3.993700e+02 4.868800e+02
+0 5364     -5.216998e+01 4.399500e+02
+2 5364     -3.255200e+02 1.992300e+02
+6 5364     -5.163200e+02 4.343200e+02
+7 5364     -2.683700e+02 5.020500e+02
+0 5365     -2.181000e+02 4.389000e+02
+2 5365     -4.980300e+02 1.869400e+02
+7 5365     -4.353200e+02 4.813000e+02
+11 5365     -4.617999e+01 -3.205800e+02
+0 5366     -3.074300e+02 4.380100e+02
+2 5366     -5.886700e+02 1.854500e+02
+0 5367     2.478300e+02 4.379700e+02
+12 5367     -3.203003e+01 4.716400e+02
+0 5368     7.362400e+02 4.361900e+02
+2 5368     5.652900e+02 4.520400e+02
+6 5368     5.055100e+02 6.546900e+02
+9 5368     3.376600e+02 4.833500e+02
+0 5369     7.362400e+02 4.361900e+02
+2 5369     5.652900e+02 4.520400e+02
+6 5369     5.055100e+02 6.546900e+02
+9 5369     3.376600e+02 4.833500e+02
+0 5370     -5.263800e+02 4.349400e+02
+7 5370     -7.564600e+02 4.432500e+02
+8 5370     -5.969100e+02 1.265600e+02
+10 5370     -7.838100e+02 6.164300e+02
+11 5370     -3.141800e+02 -3.220100e+02
+14 5370     -1.985200e+02 -3.096600e+02
+0 5371     -1.324200e+02 4.352000e+02
+3 5371     -5.430400e+02 -1.477900e+02
+0 5372     -3.914800e+02 4.345500e+02
+7 5372     -6.125400e+02 4.575100e+02
+0 5373     3.235300e+02 4.344700e+02
+14 5373     6.345100e+02 -2.901100e+02
+0 5374     -2.120400e+02 4.341900e+02
+2 5374     -4.915900e+02 1.807000e+02
+5 5374     1.921300e+02 -2.201700e+02
+7 5374     -4.288100e+02 4.770200e+02
+0 5375     -3.744000e+02 4.333800e+02
+2 5375     -6.595300e+02 1.802700e+02
+7 5375     -5.949000e+02 4.585600e+02
+12 5375     -7.171000e+02 3.749300e+02
+0 5376     5.453199e+02 4.333100e+02
+2 5376     3.244100e+02 3.383600e+02
+11 5376     6.417700e+02 -2.976700e+02
+12 5376     3.422500e+02 5.759900e+02
+0 5377     -1.379900e+02 4.298300e+02
+2 5377     -4.180600e+02 1.763000e+02
+7 5377     -3.540100e+02 4.804600e+02
+0 5378     5.442100e+02 4.293200e+02
+3 5378     1.810000e+02 3.469971e+00
+0 5379     -5.508100e+02 4.296300e+02
+7 5379     -7.820200e+02 4.345800e+02
+10 5379     -8.148600e+02 6.085400e+02
+14 5379     -2.229600e+02 -3.152700e+02
+0 5380     5.219000e+02 4.295700e+02
+2 5380     2.987400e+02 3.237100e+02
+6 5380     2.073400e+02 5.767900e+02
+7 5380     3.048000e+02 5.739700e+02
+13 5380     6.740500e+02 1.572500e+02
+0 5381     1.224000e+02 4.275200e+02
+14 5381     4.343101e+02 -3.081900e+02
+0 5382     6.053101e+02 4.272100e+02
+3 5382     2.905300e+02 6.804999e+01
+8 5382     4.197800e+02 2.991700e+02
+9 5382     2.272300e+02 4.331800e+02
+0 5383     6.079900e+02 4.271000e+02
+6 5383     3.559300e+02 6.109500e+02
+0 5384     -2.064100e+02 4.267000e+02
+7 5384     -4.219300e+02 4.697400e+02
+0 5385     -3.519800e+02 4.257800e+02
+7 5385     -5.706000e+02 4.526900e+02
+0 5386     -3.519800e+02 4.257800e+02
+7 5386     -5.706000e+02 4.526900e+02
+0 5387     -6.414100e+02 4.246600e+02
+13 5387     -3.527600e+02 7.246002e+01
+14 5387     -3.520500e+02 -3.246300e+02
+0 5388     -1.963700e+02 4.251400e+02
+7 5388     -4.116200e+02 4.692700e+02
+0 5389     -1.963700e+02 4.251400e+02
+7 5389     -4.116200e+02 4.692700e+02
+0 5390     2.989001e+01 4.250300e+02
+2 5390     -2.562400e+02 1.741500e+02
+6 5390     -4.298400e+02 4.297300e+02
+0 5391     -3.472000e+02 4.238800e+02
+2 5391     -6.312200e+02 1.676700e+02
+8 5391     -4.378900e+02 1.189400e+02
+0 5392     -2.302600e+02 4.231600e+02
+2 5392     -5.094500e+02 1.672500e+02
+7 5392     -4.455500e+02 4.634400e+02
+0 5393     -2.993900e+02 4.208000e+02
+5 5393     1.047900e+02 -2.336000e+02
+0 5394     -2.993900e+02 4.208000e+02
+5 5394     1.047900e+02 -2.336000e+02
+7 5394     -5.155200e+02 4.530800e+02
+0 5395     -3.558800e+02 4.206100e+02
+2 5395     -6.398200e+02 1.629700e+02
+7 5395     -5.736800e+02 4.465000e+02
+10 5395     -5.673800e+02 6.103300e+02
+0 5396     -3.558800e+02 4.206100e+02
+2 5396     -6.398200e+02 1.629700e+02
+7 5396     -5.736800e+02 4.465000e+02
+10 5396     -5.673800e+02 6.103300e+02
+0 5397     -3.558800e+02 4.206100e+02
+7 5397     -5.736800e+02 4.465000e+02
+10 5397     -5.673800e+02 6.103300e+02
+0 5398     -2.367400e+02 4.199300e+02
+10 5398     -4.217000e+02 6.189600e+02
+14 5398     8.184998e+01 -3.250900e+02
+0 5399     2.009301e+02 4.201100e+02
+7 5399     -2.367999e+01 5.074400e+02
+0 5400     4.841000e+02 4.192900e+02
+8 5400     2.797000e+02 2.246100e+02
+0 5401     7.601000e+02 4.193200e+02
+2 5401     5.925000e+02 4.453300e+02
+6 5401     5.364399e+02 6.427900e+02
+0 5402     -4.649500e+02 4.181100e+02
+5 5402     -5.788000e+01 -2.340700e+02
+8 5402     -5.403600e+02 1.105600e+02
+10 5402     -7.033300e+02 5.992600e+02
+14 5402     -1.405700e+02 -3.279400e+02
+0 5403     1.246400e+02 4.177500e+02
+2 5403     -1.686700e+02 1.673300e+02
+3 5403     -3.053200e+02 -1.642300e+02
+5 5403     5.275400e+02 -2.354100e+02
+6 5403     -3.244400e+02 4.415000e+02
+7 5403     -9.588000e+01 4.969000e+02
+8 5403     -5.832001e+01 1.269400e+02
+9 5403     -2.902000e+02 2.140800e+02
+12 5403     -1.558100e+02 4.303900e+02
+0 5404     -4.063100e+02 4.165200e+02
+5 5404     -6.400146e-01 -2.369400e+02
+8 5404     -4.883800e+02 1.100400e+02
+10 5404     -6.285100e+02 6.018000e+02
+0 5405     -3.268800e+02 4.149500e+02
+7 5405     -5.431600e+02 4.439700e+02
+0 5406     7.383500e+02 4.148400e+02
+2 5406     5.731000e+02 4.343600e+02
+0 5407     4.923000e+02 4.146700e+02
+2 5407     2.684800e+02 2.972300e+02
+6 5407     1.726100e+02 5.510000e+02
+8 5407     2.875100e+02 2.237600e+02
+9 5407     8.378998e+01 3.421400e+02
+11 5407     5.966400e+02 -3.167100e+02
+0 5408     -2.654900e+02 4.136800e+02
+2 5408     -5.454200e+02 1.551900e+02
+7 5408     -4.798600e+02 4.492800e+02
+0 5409     7.100100e+02 4.135000e+02
+3 5409     3.951500e+02 9.477002e+01
+6 5409     4.808900e+02 6.238800e+02
+0 5410     7.100100e+02 4.135000e+02
+3 5410     3.951500e+02 9.477002e+01
+6 5410     4.808900e+02 6.238800e+02
+0 5411     -3.004500e+02 4.130300e+02
+2 5411     -5.813300e+02 1.539800e+02
+5 5411     1.032600e+02 -2.421500e+02
+7 5411     -5.152900e+02 4.448200e+02
+12 5411     -6.250200e+02 3.594700e+02
+0 5412     7.129800e+02 4.124200e+02
+6 5412     4.847900e+02 6.236600e+02
+0 5413     7.129800e+02 4.124200e+02
+6 5413     4.847900e+02 6.236600e+02
+9 5413     3.240400e+02 4.589300e+02
+0 5414     -4.444400e+02 4.115200e+02
+7 5414     -6.651200e+02 4.271100e+02
+8 5414     -5.212100e+02 1.050400e+02
+10 5414     -6.761700e+02 5.925800e+02
+12 5414     -7.981800e+02 3.358300e+02
+0 5415     -2.071300e+02 4.098600e+02
+5 5415     1.950200e+02 -2.458800e+02
+7 5415     -4.206200e+02 4.524100e+02
+12 5415     -5.184200e+02 3.712600e+02
+14 5415     1.099400e+02 -3.351000e+02
+0 5416     -3.053400e+02 4.095500e+02
+2 5416     -5.862500e+02 1.498900e+02
+7 5416     -5.205200e+02 4.407600e+02
+10 5416     -5.033600e+02 6.008600e+02
+11 5416     -1.233800e+02 -3.464200e+02
+14 5416     1.421997e+01 -3.366600e+02
+0 5417     -3.053400e+02 4.095500e+02
+2 5417     -5.862500e+02 1.498900e+02
+5 5417     9.795001e+01 -2.457500e+02
+7 5417     -5.205200e+02 4.407600e+02
+11 5417     -1.233800e+02 -3.464200e+02
+12 5417     -6.311300e+02 3.549300e+02
+14 5417     1.421997e+01 -3.366600e+02
+0 5418     -4.492200e+02 4.080300e+02
+2 5418     -7.408100e+02 1.474800e+02
+5 5418     -4.404999e+01 -2.445900e+02
+7 5418     -6.696900e+02 4.228200e+02
+12 5418     -8.032200e+02 3.306700e+02
+0 5419     -3.132700e+02 4.082400e+02
+7 5419     -5.277900e+02 4.379100e+02
+10 5419     -5.127800e+02 5.987100e+02
+12 5419     -6.398500e+02 3.514100e+02
+14 5419     6.409973e+00 -3.385200e+02
+0 5420     7.025800e+02 4.071400e+02
+3 5420     3.898800e+02 8.688000e+01
+6 5420     4.735400e+02 6.138600e+02
+9 5420     3.162400e+02 4.505800e+02
+13 5420     8.738000e+02 1.635200e+02
+0 5421     6.680000e+02 4.060600e+02
+2 5421     5.054700e+02 4.019200e+02
+3 5421     3.577100e+02 7.387000e+01
+6 5421     4.341000e+02 6.052900e+02
+7 5421     4.641600e+02 5.839000e+02
+0 5422     7.145900e+02 4.059700e+02
+6 5422     4.892600e+02 6.172800e+02
+0 5423     5.428600e+02 4.048800e+02
+7 5423     3.288199e+02 5.533100e+02
+0 5424     -4.172100e+02 4.045900e+02
+2 5424     -7.064600e+02 1.426500e+02
+12 5424     -7.638000e+02 3.309400e+02
+14 5424     -9.665997e+01 -3.426100e+02
+0 5425     6.415800e+02 4.043000e+02
+2 5425     4.785400e+02 3.904400e+02
+6 5425     4.025500e+02 5.953200e+02
+7 5425     4.385100e+02 5.778000e+02
+11 5425     7.296500e+02 -3.191200e+02
+12 5425     4.863300e+02 6.021300e+02
+0 5426     6.599301e+02 4.046800e+02
+2 5426     4.972300e+02 3.977700e+02
+6 5426     4.242100e+02 6.012400e+02
+7 5426     4.563800e+02 5.815200e+02
+11 5426     7.462800e+02 -3.183700e+02
+12 5426     5.072000e+02 6.088000e+02
+0 5427     6.703700e+02 4.046500e+02
+2 5427     5.080800e+02 4.013700e+02
+6 5427     4.367600e+02 6.038200e+02
+11 5427     7.564399e+02 -3.178100e+02
+12 5427     5.190400e+02 6.125800e+02
+0 5428     -2.820000e+02 4.024500e+02
+10 5428     -4.737800e+02 5.944000e+02
+14 5428     3.779999e+01 -3.441500e+02
+0 5429     -3.918800e+02 4.020300e+02
+2 5429     -6.789400e+02 1.389500e+02
+7 5429     -6.087200e+02 4.225800e+02
+10 5429     -6.085900e+02 5.846200e+02
+12 5429     -7.325900e+02 3.314300e+02
+0 5430     7.001200e+02 4.016800e+02
+2 5430     5.387100e+02 4.098600e+02
+3 5430     3.893900e+02 8.160999e+01
+6 5430     4.723600e+02 6.091700e+02
+7 5430     4.960300e+02 5.849500e+02
+8 5430     5.055800e+02 3.067300e+02
+9 5430     3.158300e+02 4.464700e+02
+12 5430     5.534200e+02 6.186400e+02
+13 5430     8.722600e+02 1.592100e+02
+0 5431     -2.793400e+02 4.010300e+02
+7 5431     -4.917100e+02 4.351500e+02
+10 5431     -4.706700e+02 5.925500e+02
+0 5432     -3.019900e+02 4.004100e+02
+7 5432     -5.151400e+02 4.315500e+02
+0 5433     3.402002e+01 3.995000e+02
+7 5433     -1.809500e+02 4.683100e+02
+10 5433     -9.551001e+01 6.203000e+02
+0 5434     5.304900e+02 3.994700e+02
+7 5434     3.179000e+02 5.462700e+02
+0 5435     -2.648100e+02 3.987500e+02
+5 5435     1.378100e+02 -2.579900e+02
+7 5435     -4.765700e+02 4.339900e+02
+10 5435     -4.520300e+02 5.910200e+02
+14 5435     5.360999e+01 -3.478700e+02
+0 5436     -1.947800e+02 3.987500e+02
+2 5436     -4.722500e+02 1.378500e+02
+12 5436     -5.017800e+02 3.586300e+02
+0 5437     -1.947800e+02 3.987500e+02
+2 5437     -4.722500e+02 1.378500e+02
+5 5437     2.067500e+02 -2.584000e+02
+7 5437     -4.064500e+02 4.419500e+02
+8 5437     -3.077700e+02 9.864999e+01
+10 5437     -3.682500e+02 5.973400e+02
+12 5437     -5.017800e+02 3.586300e+02
+0 5438     -6.045500e+02 3.981200e+02
+5 5438     -2.050800e+02 -2.508400e+02
+7 5438     -8.382300e+02 3.929600e+02
+13 5438     -2.975800e+02 5.621997e+01
+14 5438     -2.866500e+02 -3.485700e+02
+0 5439     -3.528900e+02 3.979100e+02
+2 5439     -6.364400e+02 1.345900e+02
+0 5440     -3.579600e+02 3.974400e+02
+2 5440     -6.417200e+02 1.339300e+02
+7 5440     -5.725400e+02 4.217300e+02
+0 5441     -2.975400e+02 3.973800e+02
+2 5441     -5.781900e+02 1.365300e+02
+5 5441     1.044500e+02 -2.582900e+02
+7 5441     -5.105200e+02 4.291100e+02
+8 5441     -3.938900e+02 9.489999e+01
+14 5441     2.071997e+01 -3.485800e+02
+0 5442     -2.975400e+02 3.973800e+02
+14 5442     2.071997e+01 -3.485800e+02
+0 5443     -5.302100e+02 3.954800e+02
+7 5443     -7.544300e+02 3.997700e+02
+10 5443     -7.818600e+02 5.670200e+02
+14 5443     -2.077700e+02 -3.517200e+02
+0 5444     6.389900e+02 3.948800e+02
+2 5444     4.779301e+02 3.808900e+02
+6 5444     4.015600e+02 5.841500e+02
+8 5444     4.548800e+02 2.841200e+02
+11 5444     7.290601e+02 -3.281600e+02
+12 5444     4.854301e+02 5.908500e+02
+0 5445     -3.327500e+02 3.944500e+02
+2 5445     -6.149200e+02 1.305900e+02
+7 5445     -5.462700e+02 4.216100e+02
+10 5445     -5.347100e+02 5.802100e+02
+0 5446     -3.327500e+02 3.944500e+02
+2 5446     -6.149200e+02 1.305900e+02
+7 5446     -5.462700e+02 4.216100e+02
+0 5447     -3.327500e+02 3.944500e+02
+2 5447     -6.149200e+02 1.305900e+02
+7 5447     -5.462700e+02 4.216100e+02
+0 5448     -2.869800e+02 3.941700e+02
+2 5448     -5.661800e+02 1.321300e+02
+10 5448     -4.789800e+02 5.834300e+02
+11 5448     -1.080500e+02 -3.600100e+02
+12 5448     -6.065800e+02 3.389100e+02
+0 5449     -2.718400e+02 3.939400e+02
+13 5449     -2.490997e+01 6.617999e+01
+14 5449     4.656000e+01 -3.529700e+02
+0 5450     -2.603600e+02 3.938900e+02
+2 5450     -5.385100e+02 1.312900e+02
+7 5450     -4.718800e+02 4.294000e+02
+12 5450     -5.760000e+02 3.428300e+02
+0 5451     6.259301e+02 3.935500e+02
+2 5451     4.649500e+02 3.745500e+02
+7 5451     4.245500e+02 5.648700e+02
+0 5452     -4.956800e+02 3.932500e+02
+7 5452     -7.166100e+02 4.007500e+02
+8 5452     -5.687000e+02 8.456000e+01
+10 5452     -7.373700e+02 5.660400e+02
+0 5453     -4.706200e+02 3.931800e+02
+5 5453     -6.765997e+01 -2.600100e+02
+8 5453     -5.458200e+02 8.529001e+01
+10 5453     -7.057000e+02 5.677000e+02
+12 5453     -8.270800e+02 3.080700e+02
+0 5454     -3.021800e+02 3.928900e+02
+7 5454     -5.143700e+02 4.234100e+02
+0 5455     -3.021800e+02 3.928900e+02
+7 5455     -5.143700e+02 4.234100e+02
+10 5455     -4.974900e+02 5.808700e+02
+14 5455     1.627002e+01 -3.544000e+02
+0 5456     -4.322400e+02 3.914500e+02
+2 5456     -7.226100e+02 1.256300e+02
+5 5456     -3.013000e+01 -2.624200e+02
+7 5456     -6.495400e+02 4.069700e+02
+14 5456     -1.120000e+02 -3.561500e+02
+0 5457     -4.287900e+02 3.913700e+02
+2 5457     -7.182500e+02 1.253500e+02
+7 5457     -6.451500e+02 4.070500e+02
+8 5457     -5.076400e+02 8.406000e+01
+10 5457     -6.523700e+02 5.687800e+02
+11 5457     -2.323900e+02 -3.613500e+02
+14 5457     -1.086400e+02 -3.565800e+02
+0 5458     -4.287900e+02 3.913700e+02
+2 5458     -7.182500e+02 1.253500e+02
+7 5458     -6.451500e+02 4.070500e+02
+8 5458     -5.076400e+02 8.406000e+01
+10 5458     -6.523700e+02 5.687800e+02
+14 5458     -1.086400e+02 -3.565800e+02
+0 5459     5.635900e+02 3.915600e+02
+7 5459     3.510699e+02 5.435900e+02
+0 5460     -2.538700e+02 3.902700e+02
+2 5460     -5.321200e+02 1.264700e+02
+7 5460     -4.647300e+02 4.262800e+02
+14 5460     6.359998e+01 -3.573300e+02
+0 5461     -2.599800e+02 3.900700e+02
+7 5461     -4.709500e+02 4.254800e+02
+10 5461     -4.455700e+02 5.804600e+02
+14 5461     5.747998e+01 -3.571300e+02
+0 5462     2.329999e+01 3.893800e+02
+8 5462     -1.339100e+02 9.629001e+01
+14 5462     3.365000e+02 -3.524500e+02
+0 5463     2.329999e+01 3.893800e+02
+2 5463     -2.598100e+02 1.303100e+02
+6 5463     -4.318000e+02 3.820300e+02
+7 5463     -1.902900e+02 4.568800e+02
+8 5463     -1.339100e+02 9.629001e+01
+9 5463     -3.667300e+02 1.784000e+02
+10 5463     -1.074800e+02 6.065100e+02
+12 5463     -2.594300e+02 3.807400e+02
+14 5463     3.365000e+02 -3.524500e+02
+0 5464     7.172800e+02 3.893800e+02
+2 5464     5.590000e+02 4.048400e+02
+6 5464     4.951300e+02 6.003500e+02
+7 5464     5.141200e+02 5.758500e+02
+8 5464     5.222900e+02 3.023100e+02
+0 5465     -3.108700e+02 3.875800e+02
+2 5465     -5.913200e+02 1.222100e+02
+7 5465     -5.226700e+02 4.167500e+02
+10 5465     -5.064800e+02 5.726000e+02
+0 5466     -3.057500e+02 3.869400e+02
+2 5466     -5.856800e+02 1.214200e+02
+7 5466     -5.168700e+02 4.165300e+02
+10 5466     -5.004200e+02 5.728800e+02
+14 5466     1.215997e+01 -3.611000e+02
+0 5467     -1.323700e+02 3.867400e+02
+11 5467     3.125000e+01 -3.663500e+02
+12 5467     -4.282700e+02 3.525100e+02
+0 5468     -4.721300e+02 3.861700e+02
+8 5468     -5.467500e+02 7.829999e+01
+0 5469     -3.372800e+02 3.853600e+02
+5 5469     6.428998e+01 -2.708200e+02
+7 5469     -5.491800e+02 4.115900e+02
+0 5470     -3.372800e+02 3.853600e+02
+5 5470     6.428998e+01 -2.708200e+02
+7 5470     -5.491800e+02 4.115900e+02
+8 5470     -4.269600e+02 8.154999e+01
+0 5471     6.253800e+02 3.855500e+02
+2 5471     4.662300e+02 3.675900e+02
+0 5472     -2.741900e+02 3.840800e+02
+7 5472     -4.845700e+02 4.171800e+02
+10 5472     -4.616200e+02 5.714000e+02
+14 5472     4.310999e+01 -3.639300e+02
+0 5473     -5.169500e+02 3.842200e+02
+13 5473     -2.224500e+02 4.813000e+01
+0 5474     5.465400e+02 3.845200e+02
+2 5474     3.374301e+02 2.909500e+02
+3 5474     1.950400e+02 -3.571997e+01
+6 5474     2.504800e+02 5.335500e+02
+7 5474     3.354500e+02 5.339700e+02
+8 5474     3.436400e+02 2.166400e+02
+9 5474     1.435100e+02 3.387200e+02
+12 5474     3.547800e+02 5.259500e+02
+0 5475     -1.949800e+02 3.840000e+02
+2 5475     -4.718200e+02 1.190100e+02
+7 5475     -4.042600e+02 4.265700e+02
+8 5475     -3.073600e+02 8.356000e+01
+14 5475     1.208500e+02 -3.634300e+02
+0 5476     -1.949800e+02 3.840000e+02
+2 5476     -4.718200e+02 1.190100e+02
+14 5476     1.208500e+02 -3.634300e+02
+0 5477     2.746002e+01 3.841500e+02
+5 5477     4.279800e+02 -2.742700e+02
+6 5477     -4.263000e+02 3.763700e+02
+9 5477     -3.625800e+02 1.735200e+02
+10 5477     -1.021300e+02 6.011600e+02
+12 5477     -2.539700e+02 3.752100e+02
+0 5478     2.746002e+01 3.841500e+02
+5 5478     4.279800e+02 -2.742700e+02
+10 5478     -1.021300e+02 6.011600e+02
+12 5478     -2.539700e+02 3.752100e+02
+0 5479     -3.038800e+02 3.834300e+02
+2 5479     -5.845000e+02 1.171100e+02
+10 5479     -4.976300e+02 5.688900e+02
+11 5479     -1.224500e+02 -3.687200e+02
+0 5480     -3.569500e+02 3.825600e+02
+2 5480     -6.400500e+02 1.141900e+02
+7 5480     -5.692000e+02 4.057300e+02
+10 5480     -5.627900e+02 5.630700e+02
+14 5480     -3.894000e+01 -3.666300e+02
+0 5481     6.867700e+02 3.806800e+02
+2 5481     5.310300e+02 3.859800e+02
+0 5482     7.030400e+02 3.805600e+02
+2 5482     5.469301e+02 3.922200e+02
+3 5482     3.976400e+02 6.577002e+01
+6 5482     4.806801e+02 5.873800e+02
+7 5482     5.015100e+02 5.651900e+02
+9 5482     3.232200e+02 4.313900e+02
+12 5482     5.618700e+02 5.972000e+02
+13 5482     8.777000e+02 1.422700e+02
+0 5483     -2.691500e+02 3.801000e+02
+2 5483     -5.453800e+02 1.129500e+02
+11 5483     -9.245001e+01 -3.728400e+02
+0 5484     2.656000e+01 3.797300e+02
+2 5484     -2.558300e+02 1.194700e+02
+5 5484     4.269200e+02 -2.791100e+02
+6 5484     -4.263700e+02 3.694200e+02
+7 5484     -1.857000e+02 4.475200e+02
+9 5484     -3.628000e+02 1.685800e+02
+10 5484     -1.022800e+02 5.949800e+02
+11 5484     1.764000e+02 -3.695000e+02
+12 5484     -2.539900e+02 3.700700e+02
+14 5484     3.401100e+02 -3.626300e+02
+0 5485     5.531100e+02 3.797800e+02
+2 5485     3.458400e+02 2.890600e+02
+3 5485     2.032600e+02 -3.753003e+01
+6 5485     2.598300e+02 5.303700e+02
+7 5485     3.424600e+02 5.304900e+02
+8 5485     3.503700e+02 2.151200e+02
+9 5485     1.509200e+02 3.374500e+02
+11 5485     6.596801e+02 -3.465900e+02
+12 5485     3.634900e+02 5.230000e+02
+13 5485     7.097800e+02 1.193400e+02
+0 5486     6.292500e+02 3.796700e+02
+2 5486     4.716200e+02 3.631000e+02
+8 5486     4.494200e+02 2.694200e+02
+9 5486     2.595500e+02 4.051200e+02
+0 5487     7.130601e+02 3.789600e+02
+2 5487     5.577900e+02 3.942700e+02
+9 5487     3.323500e+02 4.337200e+02
+0 5488     5.586400e+02 3.762600e+02
+2 5488     3.527900e+02 2.881200e+02
+3 5488     2.101000e+02 -3.803998e+01
+6 5488     2.677100e+02 5.282800e+02
+7 5488     3.481300e+02 5.284000e+02
+12 5488     3.707600e+02 5.213000e+02
+0 5489     -4.771000e+02 3.760400e+02
+5 5489     -7.569000e+01 -2.784300e+02
+7 5489     -6.942600e+02 3.847800e+02
+14 5489     -1.578500e+02 -3.729000e+02
+0 5490     -5.828400e+02 3.742800e+02
+14 5490     -2.624600e+02 -3.740300e+02
+0 5491     -2.068100e+02 3.745300e+02
+7 5491     -4.150500e+02 4.149600e+02
+10 5491     -3.794400e+02 5.666900e+02
+0 5492     7.189200e+02 3.738700e+02
+2 5492     5.647500e+02 3.917500e+02
+6 5492     5.010300e+02 5.845700e+02
+7 5492     5.177600e+02 5.613500e+02
+8 5492     5.271899e+02 2.915100e+02
+9 5492     3.382700e+02 4.318100e+02
+12 5492     5.812400e+02 5.953300e+02
+0 5493     -2.151800e+02 3.734200e+02
+7 5493     -4.234900e+02 4.125000e+02
+10 5493     -3.911200e+02 5.727900e+02
+0 5494     6.963700e+02 3.734600e+02
+3 5494     3.937500e+02 5.735999e+01
+6 5494     4.752200e+02 5.780400e+02
+8 5494     5.085601e+02 2.849000e+02
+9 5494     3.196000e+02 4.240300e+02
+11 5494     7.892300e+02 -3.455100e+02
+0 5495     6.963700e+02 3.734600e+02
+2 5495     5.427200e+02 3.833100e+02
+3 5495     3.937500e+02 5.735999e+01
+6 5495     4.752200e+02 5.780400e+02
+7 5495     4.962100e+02 5.572500e+02
+8 5495     5.085601e+02 2.849000e+02
+9 5495     3.196000e+02 4.240300e+02
+12 5495     5.560601e+02 5.876300e+02
+0 5496     -3.687100e+02 3.730700e+02
+2 5496     -6.525600e+02 1.028000e+02
+7 5496     -5.802000e+02 3.945500e+02
+8 5496     -4.546700e+02 6.767001e+01
+10 5496     -5.757800e+02 5.505500e+02
+0 5497     -3.444400e+02 3.730800e+02
+2 5497     -6.267500e+02 1.035800e+02
+5 5497     5.492999e+01 -2.841600e+02
+7 5497     -5.553000e+02 3.978500e+02
+10 5497     -5.462500e+02 5.527300e+02
+14 5497     -2.751001e+01 -3.761700e+02
+0 5498     5.618600e+02 3.713400e+02
+2 5498     3.578199e+02 2.841900e+02
+3 5498     2.150500e+02 -4.194000e+01
+6 5498     2.730600e+02 5.235700e+02
+7 5498     3.521899e+02 5.237300e+02
+8 5498     3.600900e+02 2.106800e+02
+9 5498     1.614399e+02 3.330800e+02
+11 5498     6.694399e+02 -3.539400e+02
+12 5498     3.756899e+02 5.169200e+02
+13 5498     7.194301e+02 1.129900e+02
+0 5499     6.707600e+02 3.699600e+02
+2 5499     5.184301e+02 3.709000e+02
+3 5499     3.714399e+02 4.521997e+01
+8 5499     4.883300e+02 2.749700e+02
+9 5499     2.991899e+02 4.127400e+02
+12 5499     5.283400e+02 5.753500e+02
+0 5500     -1.983000e+02 3.662200e+02
+2 5500     -4.743900e+02 9.682001e+01
+10 5500     -3.684800e+02 5.572000e+02
+0 5501     -1.080017e+00 3.660600e+02
+14 5501     3.124800e+02 -3.789500e+02
+0 5502     7.885601e+02 3.658000e+02
+6 5502     5.813400e+02 5.950400e+02
+9 5502     3.965000e+02 4.484200e+02
+12 5502     6.606100e+02 6.093000e+02
+0 5503     -5.663000e+02 3.658400e+02
+7 5503     -7.891900e+02 3.637700e+02
+10 5503     -8.232700e+02 5.266900e+02
+13 5503     -2.634000e+02 3.010999e+01
+15 5503     -8.570900e+02 5.649100e+02
+0 5504     5.599800e+02 3.654000e+02
+11 5504     6.686300e+02 -3.596600e+02
+12 5504     3.753900e+02 5.092400e+02
+0 5505     6.784800e+02 3.650800e+02
+2 5505     5.265601e+02 3.691900e+02
+6 5505     4.562500e+02 5.639000e+02
+7 5505     4.798700e+02 5.461600e+02
+8 5505     4.949399e+02 2.736000e+02
+9 5505     3.061700e+02 4.115900e+02
+12 5505     5.379399e+02 5.729400e+02
+0 5506     6.100300e+02 3.645200e+02
+6 5506     3.738400e+02 5.428800e+02
+7 5506     4.125200e+02 5.341800e+02
+9 5506     2.456400e+02 3.860900e+02
+0 5507     6.100300e+02 3.645200e+02
+2 5507     4.553000e+02 3.419700e+02
+6 5507     3.738400e+02 5.428800e+02
+7 5507     4.125200e+02 5.341800e+02
+12 5507     4.596000e+02 5.492600e+02
+0 5508     6.870000e+02 3.641500e+02
+2 5508     5.360000e+02 3.711000e+02
+3 5508     3.881300e+02 4.652002e+01
+6 5508     4.670000e+02 5.660500e+02
+7 5508     4.888700e+02 5.474500e+02
+9 5508     3.142600e+02 4.144200e+02
+12 5508     5.483300e+02 5.752700e+02
+13 5508     8.644100e+02 1.272000e+02
+0 5509     -3.072100e+02 3.623300e+02
+2 5509     -5.864600e+02 8.981000e+01
+5 5509     9.164001e+01 -2.967500e+02
+7 5509     -5.152700e+02 3.905900e+02
+10 5509     -4.985000e+02 5.425800e+02
+0 5510     -3.938600e+02 3.614800e+02
+2 5510     -6.800700e+02 8.753003e+01
+15 5510     -6.129800e+02 5.811500e+02
+0 5511     7.694500e+02 3.611600e+02
+3 5511     4.633900e+02 7.322998e+01
+7 5511     5.673700e+02 5.570500e+02
+0 5512     -4.132500e+02 3.604300e+02
+7 5512     -6.249700e+02 3.759900e+02
+10 5512     -6.288500e+02 5.318100e+02
+11 5512     -2.213900e+02 -3.881300e+02
+13 5512     -1.401500e+02 3.152002e+01
+15 5512     -6.401300e+02 5.771800e+02
+0 5513     5.683700e+02 3.605800e+02
+3 5513     2.251700e+02 -4.837000e+01
+6 5513     2.842600e+02 5.137100e+02
+0 5514     4.871300e+02 3.595500e+02
+6 5514     1.801600e+02 4.861900e+02
+13 5514     6.466000e+02 9.445999e+01
+0 5515     6.884900e+02 3.590700e+02
+2 5515     5.383199e+02 3.673200e+02
+6 5515     4.693300e+02 5.603300e+02
+7 5515     4.902900e+02 5.420500e+02
+8 5515     5.043199e+02 2.721800e+02
+9 5515     3.159301e+02 4.105600e+02
+11 5515     7.852200e+02 -3.593200e+02
+12 5515     5.506801e+02 5.696400e+02
+0 5516     -3.020700e+02 3.581600e+02
+5 5516     9.682001e+01 -3.012400e+02
+7 5516     -5.095900e+02 3.867100e+02
+8 5516     -3.953900e+02 5.557001e+01
+0 5517     -2.890400e+02 3.581700e+02
+5 5517     1.089900e+02 -3.016800e+02
+14 5517     2.638000e+01 -3.918600e+02
+0 5518     9.429993e+00 3.578400e+02
+2 5518     -2.699100e+02 9.229999e+01
+5 5518     4.089100e+02 -3.032100e+02
+6 5518     -4.411500e+02 3.371600e+02
+7 5518     -1.994600e+02 4.229300e+02
+9 5518     -3.733300e+02 1.445800e+02
+10 5518     -1.203000e+02 5.666400e+02
+11 5518     1.619600e+02 -3.902400e+02
+14 5518     3.228900e+02 -3.875600e+02
+0 5519     -3.812800e+02 3.571100e+02
+2 5519     -6.662300e+02 8.128003e+01
+7 5519     -5.909300e+02 3.759400e+02
+0 5520     5.507100e+02 3.567100e+02
+2 5520     3.491100e+02 2.655600e+02
+3 5520     2.070699e+02 -5.959998e+01
+6 5520     2.629400e+02 5.033600e+02
+7 5520     3.431600e+02 5.078200e+02
+9 5520     1.541100e+02 3.171400e+02
+11 5520     6.614800e+02 -3.679300e+02
+0 5521     -3.905000e+02 3.567000e+02
+2 5521     -6.760000e+02 8.163000e+01
+5 5521     7.070007e+00 -3.010700e+02
+0 5522     -1.521600e+02 3.562500e+02
+7 5522     -3.580000e+02 4.024500e+02
+14 5522     1.620400e+02 -3.929600e+02
+0 5523     -3.783900e+02 3.561500e+02
+2 5523     -6.629100e+02 8.048999e+01
+7 5523     -5.878500e+02 3.752300e+02
+10 5523     -5.858500e+02 5.286000e+02
+14 5523     -6.334003e+01 -3.949900e+02
+15 5523     -5.903100e+02 5.750100e+02
+0 5524     -3.144100e+02 3.554700e+02
+7 5524     -5.216300e+02 3.824100e+02
+10 5524     -5.066000e+02 5.338200e+02
+12 5524     -6.320000e+02 2.849900e+02
+15 5524     -5.005000e+02 5.826800e+02
+0 5525     -1.943300e+02 3.531100e+02
+2 5525     -4.699900e+02 7.979999e+01
+7 5525     -3.992600e+02 3.938200e+02
+14 5525     1.199300e+02 -3.970500e+02
+0 5526     -1.943300e+02 3.531100e+02
+7 5526     -3.992600e+02 3.938200e+02
+14 5526     1.199300e+02 -3.970500e+02
+0 5527     6.296400e+02 3.525700e+02
+2 5527     4.790200e+02 3.386000e+02
+6 5527     4.007700e+02 5.357900e+02
+7 5527     4.335699e+02 5.257400e+02
+13 5527     8.100100e+02 1.105600e+02
+0 5528     6.326600e+02 3.527600e+02
+6 5528     4.045800e+02 5.369500e+02
+7 5528     4.364399e+02 5.266100e+02
+0 5529     6.266400e+02 3.517000e+02
+2 5529     4.760300e+02 3.363500e+02
+6 5529     3.972600e+02 5.338600e+02
+11 5529     7.273199e+02 -3.700700e+02
+12 5529     4.815601e+02 5.413100e+02
+0 5530     6.266400e+02 3.517000e+02
+2 5530     4.760300e+02 3.363500e+02
+7 5530     4.306600e+02 5.245400e+02
+0 5531     -3.210500e+02 3.504600e+02
+7 5531     -5.280500e+02 3.762500e+02
+12 5531     -6.393200e+02 2.779300e+02
+15 5531     -5.087100e+02 5.745400e+02
+0 5532     -2.853200e+02 3.507000e+02
+2 5532     -5.634300e+02 7.559998e+01
+7 5532     -4.915100e+02 3.806600e+02
+10 5532     -4.704000e+02 5.299300e+02
+15 5532     -4.593600e+02 5.796000e+02
+0 5533     -1.720100e+02 3.506900e+02
+2 5533     -4.467900e+02 7.778998e+01
+7 5533     -3.773600e+02 3.942800e+02
+14 5533     1.424700e+02 -3.993800e+02
+0 5534     -1.158800e+02 3.496400e+02
+6 5534     -5.832100e+02 2.974600e+02
+10 5534     -2.672000e+02 5.446400e+02
+0 5535     6.039700e+02 3.494100e+02
+2 5535     4.527600e+02 3.253700e+02
+3 5535     3.098700e+02 5.800171e-01
+6 5535     3.700100e+02 5.241500e+02
+7 5535     4.085699e+02 5.185100e+02
+9 5535     2.441100e+02 3.718600e+02
+10 5535     5.824000e+02 6.190200e+02
+11 5535     7.060900e+02 -3.729600e+02
+13 5535     7.853300e+02 1.050400e+02
+0 5536     -1.119100e+02 3.464700e+02
+2 5536     -3.863300e+02 7.428998e+01
+0 5537     5.414700e+02 3.457800e+02
+2 5537     3.414500e+02 2.511000e+02
+6 5537     2.533700e+02 4.879100e+02
+7 5537     3.350400e+02 4.956300e+02
+9 5537     1.478600e+02 3.043600e+02
+10 5537     5.071700e+02 6.084900e+02
+11 5537     6.552300e+02 -3.795500e+02
+0 5538     -5.457200e+02 3.455000e+02
+7 5538     -7.635800e+02 3.439900e+02
+10 5538     -7.930600e+02 5.029600e+02
+14 5538     -2.307500e+02 -4.053600e+02
+15 5538     -8.242000e+02 5.388400e+02
+0 5539     6.709500e+02 3.438300e+02
+2 5539     5.242600e+02 3.468200e+02
+6 5539     4.522200e+02 5.388700e+02
+7 5539     4.752600e+02 5.245800e+02
+8 5539     4.924900e+02 2.553300e+02
+12 5539     5.344600e+02 5.477100e+02
+0 5540     7.144200e+02 3.438700e+02
+2 5540     5.684399e+02 3.634100e+02
+3 5540     4.191700e+02 3.960999e+01
+6 5540     5.033500e+02 5.514700e+02
+7 5540     5.174500e+02 5.317800e+02
+8 5540     5.296801e+02 2.678000e+02
+12 5540     5.838700e+02 5.619800e+02
+0 5541     -5.474500e+02 3.435800e+02
+5 5541     -1.515700e+02 -3.114200e+02
+10 5541     -7.944500e+02 5.002000e+02
+0 5542     6.267300e+02 3.432100e+02
+2 5542     4.782900e+02 3.287500e+02
+3 5542     3.341300e+02 4.760010e+00
+0 5543     6.267300e+02 3.432100e+02
+2 5543     4.782900e+02 3.287500e+02
+3 5543     3.341300e+02 4.760010e+00
+6 5543     3.995400e+02 5.248400e+02
+7 5543     4.319900e+02 5.163800e+02
+8 5543     4.545400e+02 2.413100e+02
+9 5543     2.657300e+02 3.757500e+02
+10 5543     6.099700e+02 6.140700e+02
+11 5543     7.294301e+02 -3.776600e+02
+12 5543     4.839900e+02 5.321600e+02
+0 5544     1.876500e+02 3.427300e+02
+6 5544     -2.141500e+02 3.682900e+02
+10 5544     9.127002e+01 5.662700e+02
+0 5545     -5.173400e+02 3.421500e+02
+13 5545     -2.229300e+02 1.147998e+01
+15 5545     -7.836400e+02 5.378500e+02
+0 5546     -1.467800e+02 3.421100e+02
+2 5546     -4.215800e+02 6.766998e+01
+5 5546     2.500000e+02 -3.212200e+02
+7 5546     -3.507100e+02 3.881700e+02
+9 5546     -5.022800e+02 1.168900e+02
+0 5547     2.418400e+02 3.421400e+02
+11 5547     3.785300e+02 -3.974300e+02
+14 5547     5.795699e+02 -3.921300e+02
+0 5548     6.215300e+02 3.395000e+02
+2 5548     4.740500e+02 3.233200e+02
+6 5548     3.944300e+02 5.191600e+02
+7 5548     4.273500e+02 5.119800e+02
+9 5548     2.626000e+02 3.709500e+02
+10 5548     6.042600e+02 6.094100e+02
+0 5549     7.890200e+02 3.396000e+02
+2 5549     6.419100e+02 3.870000e+02
+0 5550     2.025200e+02 3.390300e+02
+5 5550     6.284500e+02 -3.183800e+02
+0 5551     -1.676000e+02 3.379600e+02
+7 5551     -3.710600e+02 3.813000e+02
+15 5551     -2.927000e+02 5.774700e+02
+0 5552     -8.788000e+02 3.375400e+02
+5 5552     -5.636000e+02 -3.157000e+02
+14 5552     -6.463000e+02 -4.216600e+02
+0 5553     6.074301e+02 3.371500e+02
+9 5553     2.501899e+02 3.637800e+02
+10 5553     5.870400e+02 6.046200e+02
+0 5554     5.816801e+02 3.364200e+02
+7 5554     3.879800e+02 5.017900e+02
+0 5555     6.363300e+02 3.360500e+02
+7 5555     4.422100e+02 5.110100e+02
+0 5556     6.363300e+02 3.360500e+02
+2 5556     4.902600e+02 3.258800e+02
+3 5556     3.459000e+02 2.460022e+00
+7 5556     4.422100e+02 5.110100e+02
+0 5557     -5.661300e+02 3.356800e+02
+5 5557     -1.720100e+02 -3.203900e+02
+0 5558     4.436400e+02 3.348100e+02
+2 5558     2.298500e+02 1.976700e+02
+7 5558     2.387000e+02 4.674900e+02
+0 5559     6.153300e+02 3.345700e+02
+6 5559     3.879500e+02 5.115500e+02
+8 5559     4.467800e+02 2.310500e+02
+9 5559     2.573000e+02 3.649100e+02
+10 5559     5.968400e+02 6.021800e+02
+0 5560     7.143199e+02 3.343200e+02
+7 5560     5.189700e+02 5.224200e+02
+0 5561     -1.631300e+02 3.338400e+02
+7 5561     -3.659800e+02 3.781700e+02
+11 5561     3.270020e+00 -4.146500e+02
+0 5562     6.436300e+02 3.335900e+02
+6 5562     4.222300e+02 5.188900e+02
+8 5562     4.712900e+02 2.384900e+02
+9 5562     2.829399e+02 3.742100e+02
+13 5562     8.258800e+02 9.637000e+01
+0 5563     -4.769000e+02 3.325900e+02
+7 5563     -6.880000e+02 3.375800e+02
+11 5563     -2.786200e+02 -4.116300e+02
+0 5564     -3.296100e+02 3.325700e+02
+2 5564     -6.090100e+02 5.089001e+01
+0 5565     6.370400e+02 3.326900e+02
+2 5565     4.923101e+02 3.234000e+02
+3 5565     3.477900e+02 -7.000732e-02
+7 5565     4.437200e+02 5.079600e+02
+13 5565     8.195900e+02 9.516000e+01
+0 5566     7.124600e+02 3.325600e+02
+2 5566     5.694800e+02 3.523800e+02
+6 5566     5.037500e+02 5.385500e+02
+7 5566     5.168900e+02 5.205500e+02
+8 5566     5.303300e+02 2.585700e+02
+9 5566     3.426801e+02 3.983500e+02
+10 5566     7.132100e+02 6.111700e+02
+0 5567     -3.824200e+02 3.315400e+02
+7 5567     -5.885400e+02 3.488600e+02
+10 5567     -5.864400e+02 4.988900e+02
+15 5567     -5.914500e+02 5.402100e+02
+0 5568     -5.296200e+02 3.295500e+02
+5 5568     -1.357000e+02 -3.271400e+02
+8 5568     -6.003900e+02 1.734000e+01
+10 5568     -7.692600e+02 4.833000e+02
+11 5568     -3.254500e+02 -4.133700e+02
+15 5568     -7.981700e+02 5.180500e+02
+0 5569     -5.107700e+02 3.290500e+02
+7 5569     -7.231000e+02 3.304700e+02
+0 5570     -4.003000e+02 3.289700e+02
+5 5570     -6.239990e+00 -3.316600e+02
+7 5570     -6.066000e+02 3.437600e+02
+8 5570     -4.819600e+02 2.123001e+01
+10 5570     -6.078400e+02 4.939400e+02
+11 5570     -2.118700e+02 -4.177200e+02
+12 5570     -7.303400e+02 2.370700e+02
+14 5570     -8.758002e+01 -4.247600e+02
+0 5571     -2.997300e+02 3.281900e+02
+2 5571     -5.781000e+02 4.581000e+01
+7 5571     -5.030000e+02 3.554000e+02
+15 5571     -4.750000e+02 5.462900e+02
+0 5572     -2.997300e+02 3.281900e+02
+7 5572     -5.030000e+02 3.554000e+02
+10 5572     -4.851600e+02 5.017500e+02
+15 5572     -4.750000e+02 5.462900e+02
+0 5573     -2.997300e+02 3.281900e+02
+2 5573     -5.781000e+02 4.581000e+01
+7 5573     -5.030000e+02 3.554000e+02
+15 5573     -4.750000e+02 5.462900e+02
+0 5574     -3.826600e+02 3.276700e+02
+7 5574     -5.881000e+02 3.447300e+02
+10 5574     -5.855300e+02 4.939500e+02
+0 5575     -5.054800e+02 3.269800e+02
+7 5575     -7.170200e+02 3.288400e+02
+14 5575     -1.932400e+02 -4.263900e+02
+15 5575     -7.635500e+02 5.178000e+02
+0 5576     -3.705100e+02 3.271000e+02
+5 5576     2.346997e+01 -3.346800e+02
+7 5576     -5.754700e+02 3.454500e+02
+8 5576     -4.551500e+02 2.050000e+01
+10 5576     -5.711700e+02 4.937700e+02
+11 5576     -1.851900e+02 -4.192400e+02
+0 5577     7.197700e+02 3.268900e+02
+2 5577     5.784399e+02 3.500900e+02
+3 5577     4.288400e+02 2.748999e+01
+6 5577     5.135500e+02 5.348400e+02
+7 5577     5.247400e+02 5.163100e+02
+8 5577     5.375200e+02 2.566000e+02
+9 5577     3.502000e+02 3.966600e+02
+10 5577     7.221200e+02 6.052400e+02
+12 5577     5.936899e+02 5.453300e+02
+0 5578     7.799600e+02 3.268100e+02
+7 5578     5.839500e+02 5.265900e+02
+10 5578     7.955601e+02 6.125100e+02
+0 5579     -4.548500e+02 3.261300e+02
+7 5579     -6.654700e+02 3.317900e+02
+12 5579     -8.001700e+02 2.199400e+02
+15 5579     -6.917500e+02 5.225800e+02
+0 5580     -4.574300e+02 3.239400e+02
+7 5580     -6.681400e+02 3.298100e+02
+10 5580     -6.783300e+02 4.831400e+02
+12 5580     -8.031800e+02 2.170300e+02
+15 5580     -6.948700e+02 5.197600e+02
+0 5581     2.042700e+02 3.239500e+02
+6 5581     -1.829100e+02 3.518500e+02
+0 5582     6.393600e+02 3.237200e+02
+2 5582     4.975000e+02 3.153400e+02
+6 5582     4.198900e+02 5.073700e+02
+7 5582     4.468700e+02 4.996400e+02
+9 5582     2.822400e+02 3.652800e+02
+0 5583     -3.139900e+02 3.232400e+02
+14 5583     -1.510010e+00 -4.313200e+02
+15 5583     -4.939600e+02 5.377600e+02
+0 5584     6.243800e+02 3.219000e+02
+2 5584     4.816600e+02 3.081100e+02
+7 5584     4.323800e+02 4.952900e+02
+10 5584     6.084200e+02 5.879900e+02
+11 5584     7.326400e+02 -3.983500e+02
+0 5585     6.243800e+02 3.219000e+02
+2 5585     4.816600e+02 3.081100e+02
+6 5585     4.021100e+02 5.009500e+02
+7 5585     4.323800e+02 4.952900e+02
+10 5585     6.084200e+02 5.879900e+02
+11 5585     7.326400e+02 -3.983500e+02
+12 5585     4.865300e+02 5.089400e+02
+0 5586     -4.591400e+02 3.213900e+02
+10 5586     -6.801500e+02 4.796900e+02
+12 5586     -8.044800e+02 2.133400e+02
+0 5587     4.978700e+02 3.212200e+02
+7 5587     2.949900e+02 4.639000e+02
+10 5587     4.581400e+02 5.731100e+02
+0 5588     -5.268400e+02 3.202300e+02
+7 5588     -7.389800e+02 3.186500e+02
+14 5588     -2.155300e+02 -4.335800e+02
+15 5588     -7.923500e+02 5.055500e+02
+0 5589     -5.711600e+02 3.197000e+02
+13 5589     -2.701100e+02 -1.058002e+01
+14 5589     -2.601100e+02 -4.337600e+02
+0 5590     -5.233900e+02 3.187000e+02
+5 5590     -1.314800e+02 -3.392300e+02
+7 5590     -7.354900e+02 3.175500e+02
+14 5590     -2.124400e+02 -4.351500e+02
+15 5590     -7.875600e+02 5.039300e+02
+0 5591     7.589800e+02 3.184400e+02
+3 5591     4.675400e+02 3.542999e+01
+6 5591     5.602600e+02 5.377200e+02
+7 5591     5.634600e+02 5.150200e+02
+8 5591     5.720601e+02 2.622100e+02
+9 5591     3.846200e+02 4.042300e+02
+10 5591     7.701899e+02 5.999500e+02
+12 5591     6.396400e+02 5.501600e+02
+0 5592     8.351300e+02 3.180300e+02
+3 5592     5.332300e+02 6.250000e+01
+12 5592     7.236200e+02 5.749200e+02
+0 5593     -5.031400e+02 3.169700e+02
+5 5593     -1.112400e+02 -3.416200e+02
+7 5593     -7.133900e+02 3.183200e+02
+8 5593     -5.754300e+02 5.570007e+00
+14 5593     -1.924800e+02 -4.372900e+02
+15 5593     -7.586800e+02 5.041800e+02
+0 5594     -4.555200e+02 3.169000e+02
+7 5594     -6.641000e+02 3.226900e+02
+10 5594     -6.746000e+02 4.744500e+02
+15 5594     -6.908800e+02 5.098700e+02
+0 5595     2.985999e+01 3.170000e+02
+14 5595     3.576100e+02 -4.300000e+02
+15 5595     -1.690997e+01 5.752400e+02
+0 5596     5.553300e+02 3.172300e+02
+2 5596     3.645100e+02 2.292800e+02
+6 5596     2.798500e+02 4.603900e+02
+9 5596     1.688600e+02 2.873000e+02
+10 5596     5.272100e+02 5.751300e+02
+12 5596     3.827600e+02 4.564300e+02
+0 5597     6.198900e+02 3.153200e+02
+6 5597     3.984700e+02 4.920000e+02
+7 5597     4.289500e+02 4.881000e+02
+9 5597     2.664200e+02 3.507600e+02
+0 5598     -5.103300e+02 3.136700e+02
+5 5598     -1.188500e+02 -3.451700e+02
+7 5598     -7.205000e+02 3.137800e+02
+10 5598     -7.424800e+02 4.658900e+02
+11 5598     -3.102800e+02 -4.283800e+02
+15 5598     -7.679500e+02 4.987000e+02
+0 5599     -5.103300e+02 3.136700e+02
+5 5599     -1.188500e+02 -3.451700e+02
+10 5599     -7.424800e+02 4.658900e+02
+15 5599     -7.679500e+02 4.987000e+02
+0 5600     8.358002e+01 3.108900e+02
+14 5600     4.179301e+02 -4.340400e+02
+15 5600     5.721002e+01 5.743400e+02
+0 5601     5.691500e+02 3.109200e+02
+2 5601     4.240800e+02 2.742100e+02
+6 5601     3.362800e+02 4.713000e+02
+7 5601     3.789000e+02 4.750500e+02
+9 5601     2.205400e+02 3.274300e+02
+10 5601     5.432600e+02 5.682600e+02
+11 5601     6.814100e+02 -4.122400e+02
+12 5601     4.241801e+02 4.775900e+02
+13 5601     7.545800e+02 6.840002e+01
+0 5602     -1.937600e+02 3.095900e+02
+2 5602     -4.666200e+02 2.460999e+01
+0 5603     -3.548000e+02 3.090100e+02
+7 5603     -5.566300e+02 3.285500e+02
+10 5603     -5.499700e+02 4.734900e+02
+0 5604     -2.100900e+02 3.067300e+02
+2 5604     -4.826200e+02 2.119000e+01
+7 5604     -4.091600e+02 3.439500e+02
+15 5604     -3.461900e+02 5.280200e+02
+0 5605     -2.100900e+02 3.067300e+02
+2 5605     -4.826200e+02 2.119000e+01
+5 5605     1.837900e+02 -3.602800e+02
+7 5605     -4.091600e+02 3.439500e+02
+13 5605     2.353998e+01 -7.950012e+00
+14 5605     1.027700e+02 -4.488800e+02
+0 5606     3.480200e+02 3.066600e+02
+6 5606     -8.020020e+00 3.715400e+02
+0 5607     -4.026200e+02 3.060000e+02
+7 5607     -6.054500e+02 3.193200e+02
+10 5607     -6.075000e+02 4.657600e+02
+15 5607     -6.148400e+02 5.020400e+02
+0 5608     6.218000e+02 3.060200e+02
+3 5608     3.399301e+02 -2.967999e+01
+8 5608     4.581801e+02 2.112000e+02
+9 5608     2.712200e+02 3.444200e+02
+10 5608     6.055900e+02 5.683500e+02
+11 5608     7.349500e+02 -4.140400e+02
+12 5608     4.870300e+02 4.904400e+02
+0 5609     3.653199e+02 3.046800e+02
+6 5609     1.321002e+01 3.743200e+02
+0 5610     -5.652700e+02 3.039200e+02
+10 5610     -8.105200e+02 4.497300e+02
+14 5610     -2.568300e+02 -4.510100e+02
+0 5611     4.669100e+02 3.042500e+02
+7 5611     2.662500e+02 4.419400e+02
+0 5612     -2.093500e+02 3.034800e+02
+5 5612     1.841100e+02 -3.636700e+02
+15 5612     -3.448400e+02 5.233800e+02
+0 5613     5.991700e+02 3.014000e+02
+6 5613     3.762400e+02 4.701300e+02
+0 5614     -5.364700e+02 2.998900e+02
+5 5614     -1.476300e+02 -3.594100e+02
+7 5614     -7.464500e+02 2.956500e+02
+10 5614     -7.733400e+02 4.472400e+02
+14 5614     -2.285700e+02 -4.559301e+02
+15 5614     -8.020200e+02 4.757800e+02
+0 5615     -2.195400e+02 2.992800e+02
+14 5615     9.078003e+01 -4.574700e+02
+0 5616     5.674200e+02 2.991700e+02
+2 5616     4.253400e+02 2.618800e+02
+3 5616     2.848800e+02 -6.017999e+01
+7 5616     3.787600e+02 4.631600e+02
+9 5616     2.214399e+02 3.169600e+02
+10 5616     5.417800e+02 5.538500e+02
+12 5616     4.252300e+02 4.635400e+02
+0 5617     6.046600e+02 2.990500e+02
+2 5617     4.664900e+02 2.783000e+02
+3 5617     3.246801e+02 -4.332001e+01
+6 5617     3.836700e+02 4.695000e+02
+9 5617     2.566700e+02 3.323500e+02
+10 5617     5.863000e+02 5.580000e+02
+0 5618     6.046600e+02 2.990500e+02
+2 5618     4.664900e+02 2.783000e+02
+3 5618     3.246801e+02 -4.332001e+01
+6 5618     3.836700e+02 4.695000e+02
+7 5618     4.160100e+02 4.697700e+02
+9 5618     2.566700e+02 3.323500e+02
+10 5618     5.863000e+02 5.580000e+02
+12 5618     4.692300e+02 4.769700e+02
+0 5619     7.788199e+02 2.986600e+02
+10 5619     7.952800e+02 5.783400e+02
+12 5619     6.668400e+02 5.363500e+02
+0 5620     -4.449300e+02 2.975900e+02
+7 5620     -6.508200e+02 3.032400e+02
+0 5621     5.898300e+02 2.963600e+02
+2 5621     4.512100e+02 2.694300e+02
+6 5621     3.658300e+02 4.611800e+02
+7 5621     4.016300e+02 4.644400e+02
+10 5621     5.689301e+02 5.529400e+02
+12 5621     4.521801e+02 4.680400e+02
+0 5622     6.761200e+02 2.966100e+02
+2 5622     5.422600e+02 3.055500e+02
+3 5622     3.961100e+02 -1.558002e+01
+6 5622     4.700400e+02 4.892000e+02
+7 5622     4.864600e+02 4.798900e+02
+9 5622     3.202400e+02 3.571000e+02
+10 5622     6.718199e+02 5.635300e+02
+11 5622     7.896801e+02 -4.220800e+02
+0 5623     6.517500e+02 2.948700e+02
+2 5623     5.177600e+02 2.938800e+02
+7 5623     4.628700e+02 4.739200e+02
+10 5623     6.427800e+02 5.585800e+02
+0 5624     -5.113800e+02 2.940500e+02
+5 5624     -1.231900e+02 -3.667900e+02
+7 5624     -7.186400e+02 2.923700e+02
+8 5624     -5.837800e+02 -1.964999e+01
+10 5624     -7.407400e+02 4.417400e+02
+14 5624     -2.039600e+02 -4.630500e+02
+15 5624     -7.657200e+02 4.707500e+02
+0 5625     7.032700e+02 2.919000e+02
+2 5625     5.711200e+02 3.120800e+02
+0 5626     -3.122800e+02 2.916900e+02
+12 5626     -6.299400e+02 1.865200e+02
+0 5627     -3.122800e+02 2.916900e+02
+2 5627     -5.526800e+02 1.070001e+01
+10 5627     -4.923900e+02 4.519200e+02
+15 5627     -4.932200e+02 4.896900e+02
+0 5628     3.838400e+02 2.915000e+02
+7 5628     1.797600e+02 4.112500e+02
+0 5629     -1.409000e+02 2.905100e+02
+7 5629     -3.354400e+02 3.375200e+02
+10 5629     -2.903300e+02 4.709600e+02
+0 5630     5.650400e+02 2.906200e+02
+2 5630     4.248900e+02 2.523800e+02
+6 5630     3.359800e+02 4.469400e+02
+7 5630     3.774700e+02 4.543600e+02
+12 5630     4.246600e+02 4.528700e+02
+13 5630     7.524000e+02 5.090997e+01
+0 5631     6.633900e+02 2.900300e+02
+2 5631     5.308700e+02 2.942600e+02
+6 5631     4.570200e+02 4.785500e+02
+7 5631     4.748500e+02 4.714300e+02
+11 5631     7.789100e+02 -4.288800e+02
+12 5631     5.392000e+02 4.877600e+02
+0 5632     6.633900e+02 2.900300e+02
+2 5632     5.308700e+02 2.942600e+02
+6 5632     4.570200e+02 4.785500e+02
+10 5632     6.564200e+02 5.540900e+02
+11 5632     7.789100e+02 -4.288800e+02
+12 5632     5.392000e+02 4.877600e+02
+0 5633     7.686899e+02 2.884500e+02
+6 5633     5.793300e+02 5.092600e+02
+0 5634     9.737000e+01 2.878200e+02
+6 5634     -2.844300e+02 2.818000e+02
+7 5634     -9.608002e+01 3.689100e+02
+11 5634     2.432800e+02 -4.537400e+02
+15 5634     7.866998e+01 5.445300e+02
+0 5635     7.546997e+01 2.875700e+02
+2 5635     -1.557000e+02 5.264001e+01
+5 5635     5.036100e+02 -3.771800e+02
+6 5635     -3.104000e+02 2.757500e+02
+13 5635     2.744399e+02 -5.619995e+00
+14 5635     4.174800e+02 -4.593300e+02
+15 5635     4.885999e+01 5.410500e+02
+0 5636     3.303998e+01 2.870300e+02
+7 5636     -1.594500e+02 3.592500e+02
+10 5636     -8.451001e+01 4.841600e+02
+11 5636     1.833900e+02 -4.561300e+02
+14 5636     3.707800e+02 -4.620800e+02
+15 5636     -9.380005e+00 5.339100e+02
+0 5637     4.808400e+02 2.865600e+02
+12 5637     3.007600e+02 3.963000e+02
+13 5637     6.474700e+02 3.114001e+01
+0 5638     6.689600e+02 2.861800e+02
+2 5638     5.375800e+02 2.927900e+02
+3 5638     3.921700e+02 -2.748999e+01
+6 5638     4.642500e+02 4.759900e+02
+7 5638     4.808101e+02 4.686000e+02
+9 5638     3.167900e+02 3.468600e+02
+10 5638     6.638400e+02 5.500300e+02
+11 5638     7.855300e+02 -4.326800e+02
+12 5638     5.461400e+02 4.854300e+02
+13 5638     8.562700e+02 6.001001e+01
+0 5639     -5.240700e+02 2.854700e+02
+7 5639     -7.307600e+02 2.817000e+02
+15 5639     -7.819200e+02 4.572700e+02
+0 5640     6.903998e+01 2.856700e+02
+6 5640     -3.168500e+02 2.717300e+02
+11 5640     2.169100e+02 -4.567900e+02
+0 5641     6.464600e+02 2.848900e+02
+7 5641     4.590000e+02 4.634900e+02
+0 5642     6.464600e+02 2.848900e+02
+2 5642     5.145500e+02 2.824100e+02
+6 5642     4.377200e+02 4.674200e+02
+7 5642     4.590000e+02 4.634900e+02
+8 5642     4.842000e+02 2.019100e+02
+0 5643     -5.482900e+02 2.845100e+02
+7 5643     -7.568100e+02 2.774400e+02
+15 5643     -8.158900e+02 4.527300e+02
+0 5644     8.922998e+01 2.822800e+02
+2 5644     -1.374600e+02 5.123999e+01
+6 5644     -2.903600e+02 2.736100e+02
+7 5644     -1.028200e+02 3.626900e+02
+11 5644     2.359200e+02 -4.595400e+02
+12 5644     -1.447400e+02 2.848000e+02
+0 5645     -5.805800e+02 2.787600e+02
+7 5645     -7.944200e+02 2.639600e+02
+13 5645     -2.906300e+02 -4.923999e+01
+0 5646     -5.128900e+02 2.780100e+02
+7 5646     -7.177100e+02 2.749600e+02
+8 5646     -5.849800e+02 -3.695001e+01
+10 5646     -7.398500e+02 4.218300e+02
+11 5646     -3.154700e+02 -4.607900e+02
+0 5647     -5.128900e+02 2.780100e+02
+7 5647     -7.177100e+02 2.749600e+02
+0 5648     6.776300e+02 2.745800e+02
+7 5648     4.909600e+02 4.594500e+02
+0 5649     -2.091300e+02 2.728200e+02
+14 5649     1.089100e+02 -4.858500e+02
+0 5650     6.336300e+02 2.722800e+02
+6 5650     4.256400e+02 4.496200e+02
+9 5650     2.892800e+02 3.220200e+02
+10 5650     6.226400e+02 5.294300e+02
+0 5651     6.336300e+02 2.722800e+02
+6 5651     4.256400e+02 4.496200e+02
+9 5651     2.892800e+02 3.220200e+02
+10 5651     6.226400e+02 5.294300e+02
+0 5652     3.326300e+02 2.713600e+02
+6 5652     -2.580017e+00 3.295300e+02
+0 5653     6.650699e+02 2.714500e+02
+6 5653     4.641400e+02 4.589400e+02
+0 5654     -3.854000e+02 2.709300e+02
+7 5654     -5.827600e+02 2.839100e+02
+11 5654     -2.010000e+02 -4.706200e+02
+13 5654     -1.204500e+02 -4.712000e+01
+14 5654     -7.871002e+01 -4.899800e+02
+15 5654     -5.843300e+02 4.548100e+02
+0 5655     -5.394700e+02 2.698600e+02
+5 5655     -1.554900e+02 -3.928600e+02
+7 5655     -7.449600e+02 2.628200e+02
+15 5655     -8.006900e+02 4.331900e+02
+0 5656     -5.394700e+02 2.698600e+02
+7 5656     -7.449600e+02 2.628200e+02
+15 5656     -8.006900e+02 4.331900e+02
+0 5657     3.400500e+02 2.702700e+02
+6 5657     7.070007e+00 3.306500e+02
+0 5658     6.464000e+02 2.698000e+02
+2 5658     5.187900e+02 2.683800e+02
+3 5658     3.753400e+02 -5.109998e+01
+6 5658     4.416300e+02 4.512800e+02
+7 5658     4.609800e+02 4.489700e+02
+8 5658     4.870500e+02 1.908600e+02
+9 5658     3.012800e+02 3.255000e+02
+10 5658     6.381400e+02 5.275900e+02
+11 5658     7.671600e+02 -4.500800e+02
+12 5658     5.245601e+02 4.602400e+02
+13 5658     8.362400e+02 4.351001e+01
+0 5659     -9.190002e+00 2.683300e+02
+6 5659     -4.010200e+02 2.296300e+02
+10 5659     -1.327600e+02 4.574900e+02
+15 5659     -6.534998e+01 5.020200e+02
+0 5660     -1.922500e+02 2.674800e+02
+11 5660     -2.544000e+01 -4.757400e+02
+14 5660     1.290200e+02 -4.911100e+02
+15 5660     -3.168100e+02 4.757000e+02
+0 5661     6.095400e+02 2.677300e+02
+2 5661     4.797700e+02 2.504200e+02
+6 5661     3.975500e+02 4.369000e+02
+7 5661     4.249399e+02 4.404900e+02
+8 5661     4.549900e+02 1.771800e+02
+9 5661     2.686200e+02 3.093000e+02
+10 5661     5.940300e+02 5.208800e+02
+13 5661     7.997400e+02 3.701001e+01
+0 5662     2.971200e+02 2.660100e+02
+6 5662     -3.864001e+01 3.140800e+02
+0 5663     -4.993600e+02 2.616600e+02
+7 5663     -7.008200e+02 2.591800e+02
+10 5663     -7.204300e+02 4.029400e+02
+14 5663     -1.965900e+02 -5.000000e+02
+0 5664     6.204399e+02 2.610800e+02
+2 5664     4.932200e+02 2.488100e+02
+3 5664     3.514000e+02 -7.062000e+01
+6 5664     4.124300e+02 4.330900e+02
+7 5664     4.365400e+02 4.358900e+02
+9 5664     2.802300e+02 3.081100e+02
+10 5664     6.074700e+02 5.142200e+02
+11 5664     7.433300e+02 -4.598100e+02
+12 5664     4.966100e+02 4.415700e+02
+13 5664     8.110300e+02 3.314001e+01
+15 5664     8.064800e+02 5.888400e+02
+0 5665     6.607400e+02 2.601200e+02
+8 5665     5.010601e+02 1.871900e+02
+0 5666     2.000400e+02 2.596400e+02
+6 5666     -1.445200e+02 2.796500e+02
+0 5667     6.059301e+02 2.592500e+02
+2 5667     4.780500e+02 2.408000e+02
+6 5667     3.950100e+02 4.266800e+02
+7 5667     4.223400e+02 4.317300e+02
+8 5667     4.530100e+02 1.692000e+02
+9 5667     2.673101e+02 3.006700e+02
+10 5667     5.903300e+02 5.104100e+02
+11 5667     7.291500e+02 -4.623100e+02
+13 5667     7.971801e+02 2.969000e+01
+15 5667     7.861801e+02 5.844000e+02
+0 5668     6.433700e+02 2.589700e+02
+2 5668     5.183101e+02 2.566700e+02
+3 5668     3.754399e+02 -6.217999e+01
+6 5668     4.406700e+02 4.383000e+02
+7 5668     4.594200e+02 4.381900e+02
+8 5668     4.858300e+02 1.811200e+02
+9 5668     3.010100e+02 3.155600e+02
+10 5668     6.347600e+02 5.146800e+02
+12 5668     5.235200e+02 4.469700e+02
+13 5668     8.346000e+02 3.389001e+01
+0 5669     -5.550000e+01 2.586800e+02
+5 5669     3.662800e+02 -4.114301e+02
+7 5669     -2.407800e+02 3.195700e+02
+14 5669     2.836801e+02 -4.960900e+02
+15 5669     -1.274500e+02 4.821200e+02
+0 5670     6.907300e+02 2.582700e+02
+2 5670     5.677800e+02 2.761200e+02
+6 5670     4.972800e+02 4.532300e+02
+8 5670     5.277400e+02 1.960000e+02
+9 5670     3.427100e+02 3.335800e+02
+10 5670     6.917300e+02 5.188600e+02
+12 5670     5.783700e+02 4.632500e+02
+0 5671     -7.068100e+02 2.567600e+02
+5 5671     -3.674600e+02 -4.049200e+02
+0 5672     -3.769000e+02 2.559000e+02
+5 5672     8.380005e+00 -4.140300e+02
+7 5672     -5.713500e+02 2.692700e+02
+14 5672     -7.164001e+01 -5.072800e+02
+0 5673     -1.984800e+02 2.560300e+02
+7 5673     -3.859700e+02 2.959100e+02
+10 5673     -3.542500e+02 4.239800e+02
+15 5673     -3.238100e+02 4.583900e+02
+0 5674     3.145699e+02 2.555100e+02
+6 5674     -1.202002e+01 3.077100e+02
+0 5675     5.835000e+02 2.553200e+02
+2 5675     4.544700e+02 2.268800e+02
+6 5675     3.682800e+02 4.145000e+02
+9 5675     2.475900e+02 2.880600e+02
+11 5675     7.078300e+02 -4.671400e+02
+12 5675     4.550000e+02 4.221800e+02
+13 5675     7.751300e+02 2.335999e+01
+15 5675     7.549500e+02 5.747800e+02
+0 5676     6.064100e+02 2.554900e+02
+2 5676     4.798000e+02 2.375800e+02
+3 5676     3.384100e+02 -8.157001e+01
+6 5676     3.959200e+02 4.217400e+02
+7 5676     4.233700e+02 4.279600e+02
+10 5676     5.913800e+02 5.062300e+02
+15 5676     7.874399e+02 5.788700e+02
+0 5677     6.183000e+02 2.545500e+02
+3 5677     3.511200e+02 -7.665002e+01
+15 5677     8.044399e+02 5.804400e+02
+0 5678     -3.739600e+02 2.539600e+02
+14 5678     -6.910999e+01 -5.096600e+02
+0 5679     -2.928998e+01 2.535000e+02
+14 5679     3.136600e+02 -5.011200e+02
+15 5679     -9.084003e+01 4.785000e+02
+0 5680     8.665300e+02 2.526300e+02
+2 5680     7.397500e+02 3.407700e+02
+0 5681     5.893700e+02 2.519500e+02
+2 5681     4.617500e+02 2.262500e+02
+6 5681     3.763700e+02 4.127500e+02
+10 5681     5.712500e+02 4.992700e+02
+0 5682     5.945800e+02 2.519800e+02
+2 5682     4.675400e+02 2.283400e+02
+6 5682     3.828000e+02 4.142300e+02
+7 5682     4.121400e+02 4.224300e+02
+8 5682     4.441600e+02 1.594600e+02
+10 5682     5.774100e+02 5.004000e+02
+12 5682     4.687700e+02 4.221500e+02
+15 5682     7.710100e+02 5.717300e+02
+0 5683     -2.108900e+02 2.507300e+02
+7 5683     -3.976400e+02 2.891600e+02
+0 5684     -1.982900e+02 2.502800e+02
+7 5684     -3.842500e+02 2.903200e+02
+10 5684     -3.532900e+02 4.167100e+02
+11 5684     -3.216998e+01 -4.922600e+02
+15 5684     -3.222700e+02 4.505900e+02
+0 5685     8.582900e+02 2.502400e+02
+3 5685     5.737800e+02 1.723999e+01
+7 5685     6.660400e+02 4.664800e+02
+9 5685     4.796200e+02 3.881200e+02
+12 5685     7.664399e+02 5.121200e+02
+0 5686     8.507800e+02 2.486600e+02
+3 5686     5.678800e+02 1.360999e+01
+7 5686     6.590900e+02 4.638700e+02
+9 5686     4.736100e+02 3.845200e+02
+0 5687     -5.554800e+02 2.486500e+02
+5 5687     -1.751800e+02 -4.160000e+02
+0 5688     7.564200e+02 2.479900e+02
+3 5688     4.866500e+02 -2.365002e+01
+8 5688     5.855400e+02 2.091600e+02
+12 5688     6.576400e+02 4.968500e+02
+0 5689     7.564200e+02 2.479900e+02
+3 5689     4.866500e+02 -2.365002e+01
+6 5689     5.755699e+02 4.629700e+02
+7 5689     5.704399e+02 4.472500e+02
+8 5689     5.855400e+02 2.091600e+02
+0 5690     8.481300e+02 2.478400e+02
+2 5690     7.233900e+02 3.286800e+02
+3 5690     5.660000e+02 1.119000e+01
+0 5691     6.035300e+02 2.472100e+02
+7 5691     4.215400e+02 4.194400e+02
+9 5691     2.675400e+02 2.902200e+02
+13 5691     7.961700e+02 1.890997e+01
+15 5691     7.838900e+02 5.669100e+02
+0 5692     8.759399e+02 2.469300e+02
+7 5692     6.826500e+02 4.662500e+02
+9 5692     4.936200e+02 3.912600e+02
+0 5693     5.821300e+02 2.464200e+02
+3 5693     3.159600e+02 -1.016500e+02
+6 5693     3.687300e+02 4.036300e+02
+12 5693     4.557400e+02 4.114600e+02
+15 5693     7.543199e+02 5.619700e+02
+0 5694     6.371100e+02 2.463200e+02
+3 5694     3.724301e+02 -7.647998e+01
+6 5694     4.363700e+02 4.223900e+02
+9 5694     2.991801e+02 3.027400e+02
+15 5694     8.317600e+02 5.705300e+02
+0 5695     6.343400e+02 2.450300e+02
+2 5695     5.122900e+02 2.395300e+02
+6 5695     4.332500e+02 4.202800e+02
+7 5695     4.524399e+02 4.229000e+02
+11 5695     7.614900e+02 -4.757200e+02
+0 5696     5.442800e+02 2.441300e+02
+2 5696     4.133500e+02 1.972600e+02
+3 5696     2.755900e+02 -1.217600e+02
+6 5696     3.216900e+02 3.882500e+02
+7 5696     3.629301e+02 4.055500e+02
+10 5696     5.184200e+02 4.858300e+02
+0 5697     6.500100e+02 2.428400e+02
+2 5697     5.297800e+02 2.442600e+02
+3 5697     3.865200e+02 -7.404999e+01
+6 5697     4.527300e+02 4.228000e+02
+7 5697     4.680500e+02 4.235300e+02
+9 5697     3.110000e+02 3.052700e+02
+10 5697     6.440601e+02 4.954400e+02
+12 5697     5.354000e+02 4.318300e+02
+15 5697     8.502300e+02 5.680400e+02
+0 5698     -4.114001e+01 2.415500e+02
+6 5698     -4.214300e+02 1.896900e+02
+0 5699     6.356600e+02 2.414700e+02
+6 5699     4.358400e+02 4.167900e+02
+7 5699     4.540300e+02 4.195600e+02
+8 5699     4.836000e+02 1.650900e+02
+10 5699     6.264100e+02 4.920000e+02
+11 5699     7.640699e+02 -4.788800e+02
+12 5699     5.191600e+02 4.256100e+02
+15 5699     8.296500e+02 5.631200e+02
+0 5700     4.740002e+01 2.400300e+02
+6 5700     -3.110800e+02 2.148500e+02
+0 5701     6.558800e+02 2.400300e+02
+7 5701     4.741000e+02 4.218100e+02
+10 5701     6.514399e+02 4.929000e+02
+0 5702     8.570200e+02 2.382100e+02
+2 5702     7.349500e+02 3.244600e+02
+0 5703     -1.427002e+01 2.375700e+02
+6 5703     -3.850400e+02 1.935200e+02
+0 5704     6.328800e+02 2.376400e+02
+9 5704     2.970100e+02 2.933300e+02
+0 5705     8.707300e+02 2.376700e+02
+2 5705     7.480200e+02 3.290200e+02
+3 5705     5.887800e+02 1.220001e+01
+7 5705     6.792900e+02 4.566500e+02
+12 5705     7.829800e+02 5.032800e+02
+0 5706     8.707300e+02 2.376700e+02
+3 5706     5.887800e+02 1.220001e+01
+0 5707     -6.968400e+02 2.370000e+02
+14 5707     -4.334000e+02 -5.297000e+02
+0 5708     -6.968400e+02 2.370000e+02
+14 5708     -4.334000e+02 -5.297000e+02
+0 5709     -4.860600e+02 2.350200e+02
+7 5709     -6.828500e+02 2.323700e+02
+10 5709     -6.997500e+02 3.719600e+02
+13 5709     -2.049000e+02 -8.307001e+01
+14 5709     -1.870000e+02 -5.305699e+02
+0 5710     -2.180000e+02 2.346700e+02
+7 5710     -4.010800e+02 2.725300e+02
+15 5710     -3.476700e+02 4.269600e+02
+0 5711     -5.909998e+01 2.340600e+02
+6 5711     -4.385000e+02 1.761300e+02
+7 5711     -2.387500e+02 2.957300e+02
+0 5712     5.438300e+02 2.324000e+02
+7 5712     3.639900e+02 3.936100e+02
+15 5712     7.021300e+02 5.364500e+02
+0 5713     6.630300e+02 2.317900e+02
+3 5713     4.030800e+02 -7.790002e+01
+15 5713     8.700100e+02 5.540400e+02
+0 5714     6.630300e+02 2.317900e+02
+2 5714     5.463800e+02 2.392700e+02
+3 5714     4.030800e+02 -7.790002e+01
+6 5714     4.711801e+02 4.153700e+02
+7 5714     4.824900e+02 4.151600e+02
+10 5714     6.607000e+02 4.839100e+02
+15 5714     8.700100e+02 5.540400e+02
+0 5715     6.072300e+02 2.310100e+02
+2 5715     4.874200e+02 2.137300e+02
+15 5715     7.911801e+02 5.440800e+02
+0 5716     5.220300e+02 2.306200e+02
+6 5716     2.593200e+02 3.500800e+02
+10 5716     4.936000e+02 4.677400e+02
+15 5716     6.746899e+02 5.289500e+02
+0 5717     6.314700e+02 2.297700e+02
+2 5717     5.130200e+02 2.232500e+02
+6 5717     4.336899e+02 4.021100e+02
+13 5717     8.262400e+02 7.250000e+00
+15 5717     8.253199e+02 5.458300e+02
+0 5718     -5.880005e+00 2.280800e+02
+5 5718     4.317300e+02 -4.439200e+02
+10 5718     -1.243500e+02 4.094800e+02
+11 5718     1.459700e+02 -5.135000e+02
+15 5718     -5.625000e+01 4.465100e+02
+0 5719     6.295601e+02 2.265600e+02
+3 5719     3.703500e+02 -9.796002e+01
+6 5719     4.319600e+02 3.979100e+02
+7 5719     4.499900e+02 4.043000e+02
+8 5719     4.809200e+02 1.509300e+02
+9 5719     2.964399e+02 2.838000e+02
+10 5719     6.206200e+02 4.739700e+02
+12 5719     5.154399e+02 4.063100e+02
+15 5719     8.233101e+02 5.413700e+02
+0 5720     6.295601e+02 2.265600e+02
+2 5720     5.115699e+02 2.192000e+02
+3 5720     3.703500e+02 -9.796002e+01
+6 5720     4.319600e+02 3.979100e+02
+10 5720     6.206200e+02 4.739700e+02
+13 5720     8.241801e+02 4.460022e+00
+0 5721     6.295601e+02 2.265600e+02
+2 5721     5.115699e+02 2.192000e+02
+3 5721     3.703500e+02 -9.796002e+01
+6 5721     4.319600e+02 3.979100e+02
+7 5721     4.499900e+02 4.043000e+02
+8 5721     4.809200e+02 1.509300e+02
+9 5721     2.964399e+02 2.838000e+02
+10 5721     6.206200e+02 4.739700e+02
+13 5721     8.241801e+02 4.460022e+00
+15 5721     8.233101e+02 5.413700e+02
+0 5722     4.998779e-02 2.244500e+02
+6 5722     -3.583000e+02 1.829800e+02
+10 5722     -1.162900e+02 4.062000e+02
+0 5723     -4.975700e+02 2.235900e+02
+7 5723     -6.932800e+02 2.185900e+02
+10 5723     -7.120000e+02 3.573000e+02
+11 5723     -3.068200e+02 -5.114900e+02
+0 5724     -1.133700e+02 2.224500e+02
+6 5724     -4.996500e+02 1.458700e+02
+0 5725     -6.840027e+00 2.220200e+02
+5 5725     4.323300e+02 -4.505300e+02
+6 5725     -3.652000e+02 1.783900e+02
+10 5725     -1.246400e+02 4.022800e+02
+13 5725     2.196200e+02 -6.578998e+01
+14 5725     3.478800e+02 -5.346000e+02
+15 5725     -5.673999e+01 4.380700e+02
+0 5726     -6.840027e+00 2.220200e+02
+6 5726     -3.652000e+02 1.783900e+02
+9 5726     -3.036100e+02 6.078003e+01
+10 5726     -1.246400e+02 4.022800e+02
+11 5726     1.448400e+02 -5.196400e+02
+14 5726     3.478800e+02 -5.346000e+02
+15 5726     -5.673999e+01 4.380700e+02
+0 5727     6.581200e+02 2.219600e+02
+2 5727     5.433600e+02 2.275600e+02
+7 5727     4.786100e+02 4.049100e+02
+10 5727     6.550000e+02 4.715600e+02
+0 5728     7.982800e+02 2.210800e+02
+7 5728     6.136500e+02 4.289900e+02
+10 5728     8.225800e+02 4.868900e+02
+0 5729     7.445000e+02 2.204000e+02
+2 5729     6.328101e+02 2.637900e+02
+6 5729     5.692600e+02 4.302600e+02
+7 5729     5.628800e+02 4.188300e+02
+8 5729     5.817300e+02 1.843100e+02
+0 5730     6.195699e+02 2.194300e+02
+2 5730     5.034100e+02 2.081100e+02
+3 5730     3.629200e+02 -1.086200e+02
+6 5730     4.218800e+02 3.866700e+02
+7 5730     4.411600e+02 3.954500e+02
+8 5730     4.736801e+02 1.417400e+02
+9 5730     2.894200e+02 2.741000e+02
+10 5730     6.093101e+02 4.641300e+02
+11 5730     7.536100e+02 -5.037600e+02
+12 5730     5.062600e+02 3.954900e+02
+15 5730     8.098800e+02 5.296100e+02
+0 5731     7.025400e+02 2.193600e+02
+2 5731     5.902500e+02 2.443700e+02
+6 5731     5.210200e+02 4.146900e+02
+0 5732     6.265699e+02 2.183100e+02
+2 5732     5.111899e+02 2.098800e+02
+6 5732     4.305900e+02 3.880300e+02
+7 5732     4.482200e+02 3.956600e+02
+9 5732     2.961700e+02 2.759000e+02
+10 5732     6.176100e+02 4.636500e+02
+12 5732     5.142900e+02 3.967100e+02
+13 5732     8.225699e+02 -3.099976e+00
+15 5732     8.197200e+02 5.292800e+02
+0 5733     -2.971002e+01 2.166300e+02
+6 5733     -3.891300e+02 1.653900e+02
+11 5733     1.222800e+02 -5.242400e+02
+0 5734     7.294100e+02 2.153000e+02
+2 5734     6.188300e+02 2.526300e+02
+3 5734     4.718500e+02 -6.287000e+01
+6 5734     5.531200e+02 4.202500e+02
+7 5734     5.489800e+02 4.114300e+02
+0 5735     6.033900e+02 2.112300e+02
+2 5735     4.877100e+02 1.925100e+02
+3 5735     3.480699e+02 -1.241000e+02
+6 5735     4.043800e+02 3.730000e+02
+7 5735     4.263500e+02 3.844400e+02
+8 5735     4.609000e+02 1.299500e+02
+12 5735     4.895699e+02 3.814100e+02
+15 5735     7.876400e+02 5.154400e+02
+0 5736     6.033900e+02 2.112300e+02
+7 5736     4.263500e+02 3.844400e+02
+0 5737     7.113000e+02 2.107600e+02
+2 5737     6.014800e+02 2.401700e+02
+3 5737     4.559301e+02 -7.506000e+01
+6 5737     5.334100e+02 4.088000e+02
+7 5737     5.319900e+02 4.036900e+02
+8 5737     5.557000e+02 1.657300e+02
+9 5737     3.723300e+02 3.043900e+02
+10 5737     7.190300e+02 4.644200e+02
+0 5738     3.584998e+01 2.095800e+02
+6 5738     -3.039000e+02 1.773600e+02
+0 5739     -2.439800e+02 2.078500e+02
+7 5739     -4.216600e+02 2.424600e+02
+0 5740     2.875000e+01 2.079700e+02
+6 5740     -3.117500e+02 1.732600e+02
+7 5740     -1.455300e+02 2.840200e+02
+10 5740     -8.121002e+01 3.893400e+02
+14 5740     3.924900e+02 -5.482600e+02
+0 5741     6.833500e+02 2.077000e+02
+3 5741     4.302400e+02 -9.045001e+01
+7 5741     5.051801e+02 3.955300e+02
+8 5741     5.320800e+02 1.548000e+02
+10 5741     6.861200e+02 4.573400e+02
+0 5742     -2.110200e+02 2.055600e+02
+14 5742     1.255800e+02 -5.597100e+02
+0 5743     5.884301e+02 2.051100e+02
+3 5743     3.342700e+02 -1.370200e+02
+6 5743     3.870200e+02 3.605100e+02
+7 5743     4.123199e+02 3.758500e+02
+8 5743     4.487400e+02 1.195600e+02
+9 5743     2.644800e+02 2.490500e+02
+12 5743     4.727800e+02 3.693500e+02
+15 5743     7.676000e+02 5.043600e+02
+0 5744     6.848400e+02 2.045200e+02
+6 5744     5.038400e+02 3.933100e+02
+0 5745     6.848400e+02 2.045200e+02
+6 5745     5.038400e+02 3.933100e+02
+8 5745     5.344301e+02 1.521100e+02
+0 5746     6.488500e+02 2.032300e+02
+2 5746     5.390400e+02 2.059100e+02
+8 5746     5.025200e+02 1.387300e+02
+12 5746     5.438700e+02 3.878100e+02
+0 5747     6.141801e+02 2.031900e+02
+3 5747     3.612700e+02 -1.268300e+02
+6 5747     4.195200e+02 3.671100e+02
+9 5747     2.883199e+02 2.584000e+02
+11 5747     7.518900e+02 -5.208600e+02
+15 5747     8.039800e+02 5.060700e+02
+0 5748     -1.634600e+02 2.025200e+02
+7 5748     -3.381300e+02 2.500900e+02
+10 5748     -3.070200e+02 3.636300e+02
+15 5748     -2.688900e+02 3.899800e+02
+0 5749     6.285699e+02 2.014800e+02
+2 5749     5.176801e+02 1.946300e+02
+15 5749     8.241500e+02 5.056700e+02
+0 5750     -1.777002e+01 2.006100e+02
+6 5750     -3.637100e+02 1.506300e+02
+10 5750     -1.349200e+02 3.757400e+02
+14 5750     3.429200e+02 -5.586899e+02
+0 5751     1.690002e+01 2.000300e+02
+6 5751     -3.203100e+02 1.608100e+02
+0 5752     -4.538300e+02 1.996000e+02
+7 5752     -6.400400e+02 2.013900e+02
+10 5752     -6.543000e+02 3.320500e+02
+14 5752     -1.473500e+02 -5.708800e+02
+0 5753     -1.672998e+01 1.978400e+02
+6 5753     -3.597400e+02 1.485200e+02
+10 5753     -1.336100e+02 3.728000e+02
+13 5753     2.172400e+02 -8.629999e+01
+14 5753     3.447000e+02 -5.614600e+02
+0 5754     5.522400e+02 1.980600e+02
+7 5754     3.769800e+02 3.620000e+02
+9 5754     2.323101e+02 2.270400e+02
+10 5754     5.302300e+02 4.314000e+02
+15 5754     7.172800e+02 4.885800e+02
+0 5755     -3.205300e+02 1.972600e+02
+7 5755     -4.986100e+02 2.205100e+02
+0 5756     -4.266998e+01 1.973500e+02
+14 5756     3.165100e+02 -5.631500e+02
+0 5757     -3.831000e+01 1.969800e+02
+7 5757     -2.099300e+02 2.640000e+02
+10 5757     -1.590700e+02 3.700200e+02
+12 5757     -2.535800e+02 1.713800e+02
+14 5757     3.209301e+02 -5.631700e+02
+0 5758     5.306801e+02 1.958100e+02
+2 5758     4.099301e+02 1.420700e+02
+3 5758     2.743300e+02 -1.757800e+02
+7 5758     3.557100e+02 3.557400e+02
+9 5758     2.118300e+02 2.149300e+02
+10 5758     5.060400e+02 4.267600e+02
+13 5758     7.278600e+02 -3.502002e+01
+15 5758     6.874100e+02 4.819000e+02
+0 5759     6.009800e+02 1.926400e+02
+3 5759     3.489700e+02 -1.435400e+02
+6 5759     4.059000e+02 3.514200e+02
+8 5759     4.627100e+02 1.139200e+02
+9 5759     2.774900e+02 2.442200e+02
+0 5760     5.907600e+02 1.913000e+02
+3 5760     3.410699e+02 -1.494500e+02
+6 5760     3.938200e+02 3.450600e+02
+7 5760     4.168500e+02 3.624900e+02
+8 5760     4.537400e+02 1.081100e+02
+9 5760     2.705100e+02 2.380200e+02
+10 5760     5.777500e+02 4.267500e+02
+12 5760     4.796899e+02 3.535900e+02
+15 5760     7.728000e+02 4.845400e+02
+0 5761     6.155000e+02 1.910900e+02
+7 5761     4.411500e+02 3.673200e+02
+12 5761     5.084200e+02 3.623900e+02
+0 5762     -6.078003e+01 1.903000e+02
+6 5762     -4.091300e+02 1.264400e+02
+0 5763     6.115000e+02 1.870900e+02
+6 5763     4.195000e+02 3.495900e+02
+7 5763     4.375699e+02 3.626200e+02
+9 5763     2.901300e+02 2.446400e+02
+10 5763     6.022800e+02 4.252900e+02
+0 5764     8.467400e+02 1.863700e+02
+7 5764     6.638600e+02 4.040000e+02
+0 5765     6.250800e+02 1.839700e+02
+3 5765     3.794301e+02 -1.385600e+02
+6 5765     4.379900e+02 3.500200e+02
+7 5765     4.511801e+02 3.621200e+02
+8 5765     4.860500e+02 1.151900e+02
+9 5765     3.036200e+02 2.476600e+02
+10 5765     6.182900e+02 4.227400e+02
+12 5765     5.217500e+02 3.593100e+02
+13 5765     8.250601e+02 -3.284998e+01
+15 5765     8.216000e+02 4.804500e+02
+0 5766     7.165800e+02 1.829900e+02
+6 5766     5.471100e+02 3.809300e+02
+7 5766     5.409900e+02 3.779700e+02
+0 5767     -1.023800e+02 1.815300e+02
+5 5767     3.369000e+02 -4.963300e+02
+14 5767     2.549900e+02 -5.828400e+02
+0 5768     -1.472800e+02 1.810200e+02
+5 5768     2.862500e+02 -4.975500e+02
+0 5769     6.085699e+02 1.807200e+02
+2 5769     5.021000e+02 1.649100e+02
+6 5769     4.187700e+02 3.402900e+02
+7 5769     4.359800e+02 3.562200e+02
+8 5769     4.721899e+02 1.067500e+02
+9 5769     2.895500e+02 2.376000e+02
+10 5769     5.991100e+02 4.172400e+02
+12 5769     5.031400e+02 3.491100e+02
+15 5769     7.987000e+02 4.731600e+02
+0 5770     2.063400e+02 1.785500e+02
+7 5770     7.753998e+01 3.140700e+02
+10 5770     1.281600e+02 3.709800e+02
+15 5770     2.273400e+02 4.105000e+02
+0 5771     8.379100e+02 1.785400e+02
+2 5771     7.343000e+02 2.631100e+02
+3 5771     5.804900e+02 -4.891998e+01
+7 5771     6.563700e+02 3.951300e+02
+0 5772     -2.613800e+02 1.778500e+02
+7 5772     -4.324400e+02 2.113100e+02
+10 5772     -4.189400e+02 3.253000e+02
+0 5773     7.109900e+02 1.780200e+02
+6 5773     5.423000e+02 3.742900e+02
+7 5773     5.363101e+02 3.727600e+02
+0 5774     9.656000e+01 1.769800e+02
+6 5774     -3.889001e+01 2.271300e+02
+10 5774     4.699707e-01 3.574100e+02
+15 5774     7.665002e+01 3.927800e+02
+0 5775     7.392200e+02 1.753200e+02
+7 5775     5.633900e+02 3.744500e+02
+10 5775     7.547800e+02 4.252400e+02
+0 5776     6.268500e+02 1.717800e+02
+3 5776     3.834800e+02 -1.494700e+02
+6 5776     4.427800e+02 3.374600e+02
+7 5776     4.545500e+02 3.510900e+02
+9 5776     3.075400e+02 2.383000e+02
+10 5776     6.209000e+02 4.091300e+02
+15 5776     8.251000e+02 4.635200e+02
+0 5777     7.130800e+02 1.697400e+02
+3 5777     4.705400e+02 -1.104100e+02
+6 5777     5.461000e+02 3.653200e+02
+8 5777     5.661100e+02 1.343100e+02
+9 5777     3.829800e+02 2.733600e+02
+10 5777     7.240400e+02 4.159700e+02
+12 5777     6.259200e+02 3.757400e+02
+0 5778     -1.413900e+02 1.685300e+02
+6 5778     -4.961100e+02 7.589001e+01
+0 5779     7.103000e+02 1.685300e+02
+2 5779     6.125601e+02 2.000700e+02
+6 5779     5.430699e+02 3.630100e+02
+7 5779     5.364600e+02 3.628600e+02
+8 5779     5.642200e+02 1.318900e+02
+10 5779     7.208600e+02 4.137800e+02
+12 5779     6.227300e+02 3.735700e+02
+0 5780     -8.200400e+02 1.674500e+02
+5 5780     -4.778900e+02 -4.994301e+02
+0 5781     6.270200e+02 1.674900e+02
+2 5781     5.254800e+02 1.608200e+02
+9 5781     3.095100e+02 2.349000e+02
+15 5781     8.259800e+02 4.572300e+02
+0 5782     7.390200e+02 1.676200e+02
+2 5782     6.416899e+02 2.119500e+02
+6 5782     5.761400e+02 3.718900e+02
+7 5782     5.644500e+02 3.673500e+02
+10 5782     7.549800e+02 4.160000e+02
+0 5783     6.936801e+02 1.665900e+02
+6 5783     5.236100e+02 3.549100e+02
+7 5783     5.203900e+02 3.581200e+02
+9 5783     3.676400e+02 2.620900e+02
+10 5783     7.002800e+02 4.100200e+02
+0 5784     6.090200e+02 1.653900e+02
+6 5784     4.232600e+02 3.235600e+02
+8 5784     4.750000e+02 9.392001e+01
+9 5784     2.929700e+02 2.243300e+02
+10 5784     6.011100e+02 3.991100e+02
+12 5784     5.067100e+02 3.322800e+02
+15 5784     8.009200e+02 4.515000e+02
+0 5785     6.090200e+02 1.653900e+02
+6 5785     4.232600e+02 3.235600e+02
+8 5785     4.750000e+02 9.392001e+01
+10 5785     6.011100e+02 3.991100e+02
+15 5785     8.009200e+02 4.515000e+02
+0 5786     7.229200e+02 1.649600e+02
+2 5786     6.265200e+02 2.025500e+02
+6 5786     5.583900e+02 3.639200e+02
+12 5786     6.377600e+02 3.747000e+02
+0 5787     -8.203900e+02 1.635600e+02
+5 5787     -4.756600e+02 -5.028199e+02
+0 5788     8.265900e+02 1.629900e+02
+7 5788     6.482200e+02 3.785000e+02
+0 5789     7.236899e+02 1.616900e+02
+2 5789     6.279800e+02 1.996100e+02
+3 5789     4.830300e+02 -1.127100e+02
+6 5789     5.602500e+02 3.604500e+02
+7 5789     5.500601e+02 3.590200e+02
+8 5789     5.767300e+02 1.315500e+02
+9 5789     3.950500e+02 2.710500e+02
+10 5789     7.369399e+02 4.075400e+02
+12 5789     6.397400e+02 3.710800e+02
+0 5790     5.599100e+02 1.606400e+02
+2 5790     4.537000e+02 1.212800e+02
+6 5790     3.638900e+02 2.999900e+02
+7 5790     3.906000e+02 3.271700e+02
+9 5790     2.501100e+02 1.989700e+02
+12 5790     4.477900e+02 3.088300e+02
+15 5790     7.333600e+02 4.371800e+02
+0 5791     -4.833700e+02 1.598600e+02
+7 5791     -6.624600e+02 1.577900e+02
+10 5791     -6.844200e+02 2.814000e+02
+0 5792     5.814600e+02 1.593400e+02
+6 5792     3.899500e+02 3.062600e+02
+9 5792     2.694900e+02 2.075400e+02
+12 5792     4.758600e+02 3.159200e+02
+13 5792     7.838900e+02 -6.048999e+01
+15 5792     7.627400e+02 4.382900e+02
+0 5793     6.441200e+02 1.594100e+02
+12 5793     5.489700e+02 3.398500e+02
+0 5794     8.485400e+02 1.588800e+02
+7 5794     6.689200e+02 3.783100e+02
+0 5795     6.487000e+02 1.584900e+02
+2 5795     5.515601e+02 1.622800e+02
+3 5795     4.112000e+02 -1.509300e+02
+6 5795     4.731300e+02 3.304600e+02
+7 5795     4.781899e+02 3.419700e+02
+8 5795     5.128700e+02 1.030300e+02
+9 5795     3.315000e+02 2.369200e+02
+10 5795     6.485100e+02 3.951800e+02
+12 5795     5.550300e+02 3.404500e+02
+15 5795     8.580300e+02 4.478600e+02
+0 5796     6.938500e+02 1.586200e+02
+7 5796     5.220800e+02 3.508600e+02
+0 5797     6.550699e+02 1.567800e+02
+6 5797     4.809900e+02 3.310300e+02
+10 5797     6.558400e+02 3.937600e+02
+0 5798     6.389800e+02 1.550000e+02
+7 5798     4.689301e+02 3.368900e+02
+10 5798     6.374800e+02 3.898600e+02
+15 5798     8.440900e+02 4.414400e+02
+0 5799     7.342300e+02 1.549400e+02
+2 5799     6.409399e+02 1.979700e+02
+3 5799     4.957900e+02 -1.135100e+02
+7 5799     5.616300e+02 3.545200e+02
+9 5799     4.065200e+02 2.702000e+02
+0 5800     6.587700e+02 1.541400e+02
+10 5800     6.607500e+02 3.911600e+02
+12 5800     5.685200e+02 3.384600e+02
+15 5800     8.724600e+02 4.435100e+02
+0 5801     6.552700e+02 1.537000e+02
+2 5801     5.595200e+02 1.607800e+02
+6 5801     4.817800e+02 3.277400e+02
+7 5801     4.848600e+02 3.389600e+02
+8 5801     5.194800e+02 1.018000e+02
+9 5801     3.377600e+02 2.360800e+02
+10 5801     6.560500e+02 3.906900e+02
+15 5801     8.672700e+02 4.425800e+02
+0 5802     6.552700e+02 1.537000e+02
+2 5802     5.595200e+02 1.607800e+02
+7 5802     4.848600e+02 3.389600e+02
+9 5802     3.377600e+02 2.360800e+02
+10 5802     6.560500e+02 3.906900e+02
+0 5803     7.150400e+02 1.522900e+02
+2 5803     6.218300e+02 1.865800e+02
+6 5803     5.526400e+02 3.473500e+02
+7 5803     5.431600e+02 3.483500e+02
+10 5803     7.273600e+02 3.953600e+02
+12 5803     6.324200e+02 3.579400e+02
+0 5804     7.282500e+02 1.527300e+02
+3 5804     4.904600e+02 -1.184200e+02
+9 5804     4.017800e+02 2.652000e+02
+10 5804     7.430100e+02 3.975500e+02
+0 5805     8.371801e+02 1.514800e+02
+7 5805     6.596600e+02 3.694700e+02
+0 5806     8.813900e+02 1.517600e+02
+2 5806     7.827900e+02 2.570800e+02
+7 5806     7.002600e+02 3.774800e+02
+0 5807     5.981801e+02 1.510800e+02
+2 5807     4.987300e+02 1.299600e+02
+3 5807     3.611200e+02 -1.839000e+02
+6 5807     4.135900e+02 3.033600e+02
+9 5807     2.876300e+02 2.080000e+02
+15 5807     7.879200e+02 4.293700e+02
+0 5808     7.490601e+02 1.512900e+02
+2 5808     6.582700e+02 2.032300e+02
+3 5808     5.122500e+02 -1.079700e+02
+7 5808     5.769000e+02 3.539900e+02
+9 5808     4.211700e+02 2.749100e+02
+0 5809     6.561400e+02 1.498200e+02
+3 5809     4.210500e+02 -1.555100e+02
+10 5809     6.579500e+02 3.860800e+02
+15 5809     8.694900e+02 4.367300e+02
+0 5810     6.645100e+02 1.499900e+02
+6 5810     4.939500e+02 3.271100e+02
+7 5810     4.945800e+02 3.367600e+02
+8 5810     5.293199e+02 1.019000e+02
+10 5810     6.675400e+02 3.870900e+02
+0 5811     6.891600e+02 1.489800e+02
+2 5811     5.964399e+02 1.720600e+02
+7 5811     5.186200e+02 3.405400e+02
+10 5811     6.962300e+02 3.883800e+02
+0 5812     6.516100e+02 1.484600e+02
+7 5812     4.815400e+02 3.329500e+02
+0 5813     7.181000e+02 1.484400e+02
+2 5813     6.261100e+02 1.843500e+02
+6 5813     5.576300e+02 3.440800e+02
+7 5813     5.471000e+02 3.450400e+02
+10 5813     7.310500e+02 3.914400e+02
+12 5813     6.372600e+02 3.545500e+02
+0 5814     7.422600e+02 1.482200e+02
+2 5814     6.504399e+02 1.951700e+02
+3 5814     5.048600e+02 -1.161100e+02
+6 5814     5.849500e+02 3.526300e+02
+7 5814     5.700300e+02 3.494600e+02
+8 5814     5.950800e+02 1.275100e+02
+9 5814     4.138600e+02 2.680600e+02
+10 5814     7.600800e+02 3.934200e+02
+12 5814     6.640200e+02 3.634700e+02
+0 5815     8.664600e+02 1.484200e+02
+2 5815     7.706000e+02 2.480800e+02
+0 5816     -1.102400e+02 1.459200e+02
+3 5816     -3.850700e+02 -4.165500e+02
+6 5816     -4.387700e+02 6.117999e+01
+0 5817     -1.102400e+02 1.459200e+02
+6 5817     -4.387700e+02 6.117999e+01
+0 5818     6.701000e+02 1.459500e+02
+6 5818     5.015900e+02 3.245400e+02
+7 5818     4.998000e+02 3.341900e+02
+0 5819     2.232100e+02 1.455000e+02
+7 5819     1.014100e+02 2.853700e+02
+10 5819     1.512000e+02 3.336000e+02
+15 5819     2.541801e+02 3.671400e+02
+0 5820     7.504900e+02 1.455100e+02
+2 5820     6.596899e+02 1.964100e+02
+3 5820     5.140900e+02 -1.145700e+02
+7 5820     5.788000e+02 3.482300e+02
+9 5820     4.220000e+02 2.693600e+02
+10 5820     7.697000e+02 3.913200e+02
+12 5820     6.743900e+02 3.636700e+02
+0 5821     1.458000e+02 1.450500e+02
+12 5821     8.332001e+01 2.596000e+02
+14 5821     6.654600e+02 -5.831000e+02
+15 5821     1.470100e+02 3.558500e+02
+0 5822     7.198900e+02 1.446000e+02
+2 5822     6.285900e+02 1.816300e+02
+6 5822     5.601200e+02 3.405900e+02
+7 5822     5.488400e+02 3.419200e+02
+8 5822     5.776801e+02 1.163200e+02
+9 5822     3.964900e+02 2.555500e+02
+10 5822     7.332600e+02 3.870400e+02
+12 5822     6.388400e+02 3.517500e+02
+0 5823     5.892100e+02 1.446600e+02
+2 5823     4.897300e+02 1.189900e+02
+0 5824     6.452400e+02 1.449100e+02
+2 5824     5.510100e+02 1.467500e+02
+6 5824     4.721801e+02 3.141000e+02
+7 5824     4.762600e+02 3.281000e+02
+12 5824     5.543900e+02 3.237500e+02
+13 5824     8.504000e+02 -6.410999e+01
+15 5824     8.546600e+02 4.283200e+02
+0 5825     8.579500e+02 1.445300e+02
+3 5825     6.087200e+02 -6.894000e+01
+7 5825     6.794800e+02 3.666300e+02
+9 5825     5.072400e+02 3.099200e+02
+12 5825     7.926801e+02 4.008100e+02
+0 5826     1.417900e+02 1.438400e+02
+2 5826     2.046801e+02 1.631400e+02
+3 5826     1.000600e+02 -1.545300e+02
+6 5826     4.091998e+01 2.114700e+02
+9 5826     5.717999e+01 2.234100e+02
+10 5826     5.653003e+01 3.234200e+02
+0 5827     8.213199e+02 1.436900e+02
+2 5827     7.294500e+02 2.254000e+02
+3 5827     5.782500e+02 -8.473999e+01
+9 5827     4.795400e+02 2.959100e+02
+0 5828     8.213199e+02 1.436900e+02
+2 5828     7.294500e+02 2.254000e+02
+3 5828     5.782500e+02 -8.473999e+01
+7 5828     6.459800e+02 3.594300e+02
+0 5829     5.340200e+02 1.423500e+02
+7 5829     3.662700e+02 3.050800e+02
+15 5829     6.982800e+02 4.078900e+02
+0 5830     -4.520400e+02 1.405000e+02
+7 5830     -6.243500e+02 1.436700e+02
+0 5831     8.489100e+02 1.402900e+02
+3 5831     6.026899e+02 -7.651001e+01
+7 5831     6.719700e+02 3.609300e+02
+0 5832     -4.542000e+02 1.386400e+02
+5 5832     -5.481000e+01 -5.418101e+02
+0 5833     6.759900e+02 1.383500e+02
+2 5833     5.857100e+02 1.554300e+02
+6 5833     5.108700e+02 3.184300e+02
+7 5833     5.074500e+02 3.277400e+02
+8 5833     5.412600e+02 9.659000e+01
+9 5833     3.609100e+02 2.323400e+02
+10 5833     6.820699e+02 3.746100e+02
+12 5833     5.916600e+02 3.286000e+02
+0 5834     8.695000e+02 1.385300e+02
+9 5834     5.174399e+02 3.101800e+02
+0 5835     -4.004999e+01 1.372700e+02
+5 5835     5.435500e+02 -5.210300e+02
+6 5835     -1.760000e+02 1.428200e+02
+7 5835     -1.602600e+02 2.355900e+02
+9 5835     -1.144200e+02 1.703900e+02
+10 5835     -1.547700e+02 2.970000e+02
+12 5835     -1.376000e+02 1.955400e+02
+13 5835     2.989600e+02 -1.146300e+02
+15 5835     -1.048200e+02 3.185800e+02
+0 5836     -8.840027e+00 1.377300e+02
+7 5836     -1.253900e+02 2.434200e+02
+10 5836     -1.184600e+02 3.006400e+02
+15 5836     -6.337000e+01 3.239500e+02
+0 5837     7.030500e+02 1.373300e+02
+6 5837     5.426700e+02 3.266800e+02
+12 5837     6.225100e+02 3.375500e+02
+0 5838     5.432800e+02 1.356200e+02
+7 5838     3.763900e+02 2.997400e+02
+0 5839     8.033700e+02 1.357100e+02
+2 5839     7.154200e+02 2.113000e+02
+3 5839     5.656700e+02 -9.851001e+01
+7 5839     6.300601e+02 3.487500e+02
+0 5840     7.045400e+02 1.344500e+02
+2 5840     6.163300e+02 1.645800e+02
+3 5840     4.736700e+02 -1.463200e+02
+6 5840     5.453500e+02 3.243100e+02
+0 5841     7.045400e+02 1.344500e+02
+3 5841     4.736700e+02 -1.463200e+02
+6 5841     5.453500e+02 3.243100e+02
+8 5841     5.666000e+02 1.031700e+02
+9 5841     3.861600e+02 2.410700e+02
+0 5842     7.075601e+02 1.342300e+02
+2 5842     6.194900e+02 1.657100e+02
+3 5842     4.765400e+02 -1.453400e+02
+6 5842     5.488400e+02 3.250300e+02
+10 5842     7.195100e+02 3.726400e+02
+12 5842     6.285200e+02 3.346500e+02
+0 5843     2.097998e+01 1.341400e+02
+5 5843     6.305601e+02 -5.200800e+02
+6 5843     -8.151999e+01 1.668000e+02
+10 5843     -8.325000e+01 2.996100e+02
+12 5843     -5.115002e+01 2.199200e+02
+15 5843     -2.288000e+01 3.231700e+02
+0 5844     8.018300e+02 1.333600e+02
+2 5844     7.150300e+02 2.085700e+02
+7 5844     6.291700e+02 3.462200e+02
+0 5845     5.422400e+02 1.329800e+02
+2 5845     4.396899e+02 8.328998e+01
+6 5845     3.475500e+02 2.615900e+02
+10 5845     5.247100e+02 3.540700e+02
+15 5845     7.107800e+02 3.956300e+02
+0 5846     7.231100e+02 1.322700e+02
+2 5846     6.359301e+02 1.711100e+02
+7 5846     5.537300e+02 3.305300e+02
+8 5846     5.831899e+02 1.079700e+02
+9 5846     4.025601e+02 2.474300e+02
+10 5846     7.382600e+02 3.725600e+02
+0 5847     -4.580000e+02 1.314800e+02
+7 5847     -6.280700e+02 1.338700e+02
+0 5848     7.696200e+02 1.316400e+02
+2 5848     6.826200e+02 1.919000e+02
+3 5848     5.357600e+02 -1.180400e+02
+7 5848     5.983000e+02 3.386400e+02
+9 5848     4.412400e+02 2.662800e+02
+10 5848     7.936700e+02 3.768000e+02
+12 5848     6.991600e+02 3.557400e+02
+0 5849     7.171801e+02 1.312500e+02
+7 5849     5.481600e+02 3.285300e+02
+10 5849     7.310601e+02 3.703900e+02
+0 5850     7.374900e+02 1.311700e+02
+2 5850     6.507700e+02 1.768200e+02
+6 5850     5.842400e+02 3.324800e+02
+7 5850     5.677500e+02 3.322900e+02
+10 5850     7.556600e+02 3.729000e+02
+12 5850     6.632000e+02 3.436500e+02
+0 5851     7.374900e+02 1.311700e+02
+7 5851     5.677500e+02 3.322900e+02
+10 5851     7.556600e+02 3.729000e+02
+0 5852     7.793400e+02 1.295500e+02
+2 5852     6.940601e+02 1.969200e+02
+9 5852     4.508300e+02 2.704900e+02
+10 5852     8.049500e+02 3.760800e+02
+0 5853     -3.369995e+00 1.295600e+02
+6 5853     -1.123300e+02 1.527000e+02
+12 5853     -8.154999e+01 2.060400e+02
+0 5854     7.082000e+02 1.289500e+02
+7 5854     5.396300e+02 3.245900e+02
+0 5855     7.082000e+02 1.289500e+02
+7 5855     5.396300e+02 3.245900e+02
+0 5856     7.738400e+02 1.290400e+02
+2 5856     6.877300e+02 1.913000e+02
+3 5856     5.405400e+02 -1.183400e+02
+9 5856     4.453000e+02 2.658800e+02
+10 5856     7.990800e+02 3.742200e+02
+12 5856     7.045900e+02 3.545000e+02
+0 5857     8.684301e+02 1.289500e+02
+2 5857     7.780601e+02 2.316300e+02
+12 5857     8.086801e+02 3.882000e+02
+0 5858     8.684301e+02 1.289500e+02
+2 5858     7.780601e+02 2.316300e+02
+12 5858     8.086801e+02 3.882000e+02
+0 5859     -4.389300e+02 1.286700e+02
+7 5859     -6.076400e+02 1.343700e+02
+0 5860     -5.127002e+01 1.284200e+02
+7 5860     -1.703500e+02 2.244500e+02
+8 5860     3.300000e+01 3.438000e+01
+9 5860     -1.226000e+02 1.581600e+02
+12 5860     -1.489900e+02 1.813900e+02
+15 5860     -1.186700e+02 3.049800e+02
+0 5861     -5.127002e+01 1.284200e+02
+7 5861     -1.703500e+02 2.244500e+02
+10 5861     -1.670000e+02 2.860800e+02
+12 5861     -1.489900e+02 1.813900e+02
+15 5861     -1.186700e+02 3.049800e+02
+0 5862     6.927300e+02 1.284700e+02
+6 5862     5.325100e+02 3.135200e+02
+0 5863     8.307200e+02 1.285800e+02
+7 5863     6.563700e+02 3.465600e+02
+0 5864     7.459900e+02 1.281800e+02
+2 5864     6.601700e+02 1.776600e+02
+3 5864     5.154399e+02 -1.321900e+02
+9 5864     4.231300e+02 2.535700e+02
+10 5864     7.656801e+02 3.703000e+02
+12 5864     6.734100e+02 3.434100e+02
+0 5865     7.109600e+02 1.276800e+02
+2 5865     6.246700e+02 1.610900e+02
+6 5865     5.544700e+02 3.193600e+02
+7 5865     5.426400e+02 3.240200e+02
+10 5865     7.239100e+02 3.657800e+02
+12 5865     6.338400e+02 3.297900e+02
+0 5866     -4.958800e+02 1.268700e+02
+7 5866     -6.679100e+02 1.228700e+02
+0 5867     8.055000e+02 1.260400e+02
+2 5867     7.201100e+02 2.024200e+02
+0 5868     -2.255600e+02 1.255100e+02
+6 5868     -5.743000e+02 -9.500122e-01
+7 5868     -3.826100e+02 1.664200e+02
+10 5868     -3.707000e+02 2.661100e+02
+15 5868     -3.436200e+02 2.756100e+02
+0 5869     8.520020e+00 1.239800e+02
+6 5869     -9.226999e+01 1.518000e+02
+7 5869     -1.032900e+02 2.343000e+02
+12 5869     -6.308002e+01 2.056100e+02
+15 5869     -3.873999e+01 3.073300e+02
+0 5870     8.520020e+00 1.239800e+02
+6 5870     -9.226999e+01 1.518000e+02
+7 5870     -1.032900e+02 2.343000e+02
+12 5870     -6.308002e+01 2.056100e+02
+15 5870     -3.873999e+01 3.073300e+02
+0 5871     7.973600e+02 1.240500e+02
+7 5871     6.261801e+02 3.366900e+02
+10 5871     8.272100e+02 3.709900e+02
+0 5872     8.594000e+02 1.231600e+02
+3 5872     6.175100e+02 -8.639001e+01
+7 5872     6.837600e+02 3.465800e+02
+9 5872     5.136700e+02 2.942500e+02
+0 5873     6.338300e+02 1.226600e+02
+2 5873     5.449700e+02 1.200700e+02
+7 5873     4.678700e+02 3.049100e+02
+9 5873     3.265601e+02 2.007100e+02
+10 5873     6.331500e+02 3.507200e+02
+13 5873     8.415400e+02 -8.496002e+01
+0 5874     7.778000e+02 1.222700e+02
+2 5874     6.936600e+02 1.864700e+02
+3 5874     5.464100e+02 -1.226500e+02
+7 5874     6.073900e+02 3.311200e+02
+10 5874     8.039900e+02 3.667900e+02
+12 5874     7.104600e+02 3.484700e+02
+0 5875     7.019900e+02 1.217300e+02
+6 5875     5.455500e+02 3.095900e+02
+7 5875     5.348600e+02 3.165500e+02
+12 5875     6.255100e+02 3.196200e+02
+0 5876     5.715200e+02 1.209600e+02
+3 5876     3.412600e+02 -2.269100e+02
+6 5876     3.873100e+02 2.587100e+02
+9 5876     2.697300e+02 1.701000e+02
+12 5876     4.736000e+02 2.680000e+02
+15 5876     7.530601e+02 3.830700e+02
+0 5877     6.533700e+02 1.205600e+02
+6 5877     4.887200e+02 2.905100e+02
+7 5877     4.875500e+02 3.063500e+02
+0 5878     8.223900e+02 1.200500e+02
+7 5878     6.500800e+02 3.369400e+02
+0 5879     8.313101e+02 1.199200e+02
+9 5879     4.935601e+02 2.808700e+02
+0 5880     8.313101e+02 1.199200e+02
+2 5880     7.460300e+02 2.067500e+02
+3 5880     5.946500e+02 -1.015200e+02
+7 5880     6.582700e+02 3.381500e+02
+9 5880     4.935601e+02 2.808700e+02
+0 5881     6.516300e+02 1.185000e+02
+2 5881     5.647500e+02 1.238400e+02
+3 5881     4.261600e+02 -1.873900e+02
+6 5881     4.867400e+02 2.875100e+02
+7 5881     4.859399e+02 3.040300e+02
+12 5881     5.683500e+02 2.973900e+02
+15 5881     8.663199e+02 3.920700e+02
+0 5882     6.516300e+02 1.185000e+02
+2 5882     5.647500e+02 1.238400e+02
+3 5882     4.261600e+02 -1.873900e+02
+6 5882     4.867400e+02 2.875100e+02
+7 5882     4.859399e+02 3.040300e+02
+12 5882     5.683500e+02 2.973900e+02
+15 5882     8.663199e+02 3.920700e+02
+0 5883     6.630000e+02 1.184100e+02
+2 5883     5.773400e+02 1.294100e+02
+6 5883     5.006200e+02 2.922300e+02
+7 5883     4.971801e+02 3.059200e+02
+9 5883     3.542900e+02 2.106700e+02
+10 5883     6.679600e+02 3.495500e+02
+12 5883     5.820601e+02 3.023100e+02
+13 5883     8.720000e+02 -8.484003e+01
+0 5884     7.396600e+02 1.177200e+02
+3 5884     5.126700e+02 -1.444100e+02
+7 5884     5.717000e+02 3.197400e+02
+0 5885     6.486801e+02 1.172900e+02
+2 5885     5.624600e+02 1.219400e+02
+6 5885     4.834399e+02 2.849600e+02
+7 5885     4.833800e+02 3.023300e+02
+9 5885     3.418199e+02 2.028200e+02
+10 5885     6.511100e+02 3.468300e+02
+12 5885     5.651300e+02 2.948400e+02
+13 5885     8.574000e+02 -8.759003e+01
+15 5885     8.621700e+02 3.897400e+02
+0 5886     2.493500e+02 1.162200e+02
+7 5886     1.350800e+02 2.634500e+02
+10 5886     1.836400e+02 3.014100e+02
+15 5886     2.922200e+02 3.307700e+02
+0 5887     6.921700e+02 1.157200e+02
+6 5887     5.355900e+02 2.992500e+02
+7 5887     5.259700e+02 3.089900e+02
+8 5887     5.599700e+02 8.334000e+01
+9 5887     3.802600e+02 2.206400e+02
+12 5887     6.153300e+02 3.091800e+02
+0 5888     8.228700e+02 1.157000e+02
+2 5888     7.391400e+02 1.996500e+02
+7 5888     6.508700e+02 3.327700e+02
+0 5889     7.839301e+02 1.147600e+02
+2 5889     7.016801e+02 1.820200e+02
+3 5889     5.544500e+02 -1.266400e+02
+7 5889     6.143500e+02 3.250600e+02
+9 5889     4.573500e+02 2.585500e+02
+10 5889     8.117500e+02 3.586700e+02
+12 5889     7.193700e+02 3.426400e+02
+0 5890     -8.106000e+01 1.143500e+02
+6 5890     -2.531000e+02 8.821002e+01
+15 5890     -1.546000e+02 2.809700e+02
+0 5891     7.105000e+02 1.146500e+02
+6 5891     5.571500e+02 3.052000e+02
+10 5891     7.242900e+02 3.504500e+02
+12 5891     6.368000e+02 3.155000e+02
+0 5892     8.776300e+02 1.128300e+02
+9 5892     5.307800e+02 2.937700e+02
+12 5892     8.231100e+02 3.742400e+02
+0 5893     7.203500e+02 1.118000e+02
+3 5893     4.966500e+02 -1.591200e+02
+9 5893     4.075400e+02 2.295800e+02
+10 5893     7.366600e+02 3.481400e+02
+0 5894     6.465800e+02 1.117600e+02
+2 5894     5.611600e+02 1.140100e+02
+3 5894     4.231000e+02 -1.965100e+02
+6 5894     4.821500e+02 2.776300e+02
+7 5894     4.820300e+02 2.962500e+02
+8 5894     5.208300e+02 6.362000e+01
+10 5894     6.487000e+02 3.398600e+02
+12 5894     5.640100e+02 2.875100e+02
+15 5894     8.598600e+02 3.816200e+02
+0 5895     7.899200e+02 1.115000e+02
+2 5895     7.083199e+02 1.837500e+02
+7 5895     6.202600e+02 3.230000e+02
+9 5895     4.631801e+02 2.587400e+02
+10 5895     8.191600e+02 3.551800e+02
+0 5896     7.463700e+02 1.107900e+02
+2 5896     6.659200e+02 1.617200e+02
+3 5896     5.212600e+02 -1.474500e+02
+7 5896     5.790400e+02 3.144000e+02
+9 5896     4.275500e+02 2.399700e+02
+10 5896     7.674000e+02 3.497800e+02
+12 5896     6.785800e+02 3.248100e+02
+0 5897     7.790300e+02 1.111800e+02
+3 5897     5.513199e+02 -1.322600e+02
+10 5897     8.060100e+02 3.535900e+02
+12 5897     7.148800e+02 3.367400e+02
+0 5898     7.790300e+02 1.111800e+02
+3 5898     5.513199e+02 -1.322600e+02
+10 5898     8.060100e+02 3.535900e+02
+12 5898     7.148800e+02 3.367400e+02
+0 5899     8.427000e+02 1.106900e+02
+3 5899     6.077000e+02 -1.037900e+02
+9 5899     5.047300e+02 2.790200e+02
+0 5900     -2.649400e+02 1.080000e+02
+5 5900     1.725400e+02 -5.783000e+02
+15 5900     -3.951700e+02 2.465500e+02
+0 5901     7.154700e+02 1.079200e+02
+6 5901     5.652400e+02 2.998500e+02
+10 5901     7.307300e+02 3.433400e+02
+0 5902     8.107200e+02 1.078700e+02
+7 5902     6.405900e+02 3.234500e+02
+0 5903     -1.180200e+02 1.073900e+02
+2 5903     -1.294200e+02 7.999878e-01
+5 5903     4.213700e+02 -5.638199e+02
+6 5903     -3.088300e+02 6.263000e+01
+7 5903     -2.452000e+02 1.844900e+02
+8 5903     -6.063000e+01 -3.185001e+01
+10 5903     -2.421900e+02 2.546900e+02
+12 5903     -2.495100e+02 1.147000e+02
+15 5903     -2.025500e+02 2.664800e+02
+0 5904     -1.180200e+02 1.073900e+02
+3 5904     -2.235200e+02 -3.190100e+02
+5 5904     4.213700e+02 -5.638199e+02
+6 5904     -3.088300e+02 6.263000e+01
+7 5904     -2.452000e+02 1.844900e+02
+8 5904     -6.063000e+01 -3.185001e+01
+10 5904     -2.421900e+02 2.546900e+02
+12 5904     -2.495100e+02 1.147000e+02
+15 5904     -2.025500e+02 2.664800e+02
+0 5905     6.671000e+02 1.069500e+02
+2 5905     5.851899e+02 1.199000e+02
+6 5905     5.078300e+02 2.814500e+02
+9 5905     3.603101e+02 2.029200e+02
+10 5905     6.733900e+02 3.367100e+02
+12 5905     5.889000e+02 2.914200e+02
+13 5905     8.776200e+02 -9.396002e+01
+0 5906     7.800500e+02 1.065600e+02
+7 5906     6.119600e+02 3.166200e+02
+10 5906     8.074900e+02 3.482400e+02
+12 5906     7.171100e+02 3.323900e+02
+0 5907     7.800500e+02 1.065600e+02
+7 5907     6.119600e+02 3.166200e+02
+10 5907     8.074900e+02 3.482400e+02
+12 5907     7.171100e+02 3.323900e+02
+0 5908     6.492400e+02 1.059300e+02
+3 5908     4.272900e+02 -1.999700e+02
+6 5908     4.869301e+02 2.727900e+02
+9 5908     3.446200e+02 1.937600e+02
+10 5908     6.526600e+02 3.334400e+02
+12 5908     5.686899e+02 2.825200e+02
+15 5908     8.640100e+02 3.740600e+02
+0 5909     6.394200e+02 1.056300e+02
+2 5909     5.554200e+02 1.040800e+02
+3 5909     4.178400e+02 -2.064900e+02
+0 5910     7.363400e+02 1.057500e+02
+2 5910     6.568300e+02 1.518900e+02
+0 5911     8.246500e+02 1.054600e+02
+2 5911     7.437800e+02 1.912100e+02
+3 5911     5.939399e+02 -1.155700e+02
+7 5911     6.538101e+02 3.237500e+02
+0 5912     7.753101e+02 1.047700e+02
+2 5912     6.963800e+02 1.688800e+02
+7 5912     6.075100e+02 3.140200e+02
+0 5913     7.302000e+02 1.046200e+02
+2 5913     6.510000e+02 1.479000e+02
+3 5913     5.080000e+02 -1.612400e+02
+7 5913     5.644600e+02 3.059000e+02
+9 5913     4.157800e+02 2.287500e+02
+10 5913     7.485500e+02 3.409200e+02
+0 5914     -2.930100e+02 1.020500e+02
+2 5914     -4.574500e+02 -1.615200e+02
+5 5914     1.414900e+02 -5.846300e+02
+7 5914     -4.469400e+02 1.328200e+02
+10 5914     -4.480700e+02 2.313600e+02
+15 5914     -4.332200e+02 2.344400e+02
+0 5915     3.815997e+01 1.021400e+02
+10 5915     -5.934003e+01 2.643200e+02
+12 5915     -1.534998e+01 1.946300e+02
+15 5915     3.919983e+00 2.818800e+02
+0 5916     3.815997e+01 1.021400e+02
+10 5916     -5.934003e+01 2.643200e+02
+12 5916     -1.534998e+01 1.946300e+02
+15 5916     3.919983e+00 2.818800e+02
+0 5917     6.391700e+02 1.014000e+02
+2 5917     5.566600e+02 1.006300e+02
+3 5917     4.189500e+02 -2.097500e+02
+6 5917     4.761500e+02 2.639300e+02
+7 5917     4.761801e+02 2.850900e+02
+8 5917     5.160900e+02 5.257999e+01
+9 5917     3.373400e+02 1.854400e+02
+10 5917     6.407800e+02 3.270800e+02
+13 5917     8.499399e+02 -1.030500e+02
+15 5917     8.506400e+02 3.661100e+02
+0 5918     -1.219600e+02 1.009600e+02
+6 5918     -3.085700e+02 5.414001e+01
+12 5918     -2.509400e+02 1.069000e+02
+0 5919     8.509000e+02 1.011800e+02
+2 5919     7.701600e+02 1.986100e+02
+3 5919     6.180400e+02 -1.083100e+02
+7 5919     6.788500e+02 3.243000e+02
+9 5919     5.131200e+02 2.744400e+02
+12 5919     7.967500e+02 3.519100e+02
+0 5920     6.489900e+02 9.754999e+01
+2 5920     5.681700e+02 1.012300e+02
+6 5920     4.891100e+02 2.628900e+02
+10 5920     6.525000e+02 3.232100e+02
+12 5920     5.702700e+02 2.725800e+02
+0 5921     8.804800e+02 9.773001e+01
+7 5921     7.068600e+02 3.267100e+02
+0 5922     -6.382001e+01 9.664999e+01
+3 5922     -9.146997e+01 -2.510300e+02
+5 5922     5.267500e+02 -5.658600e+02
+6 5922     -1.814500e+02 9.212000e+01
+7 5922     -1.753600e+02 1.926100e+02
+13 5922     2.863900e+02 -1.496700e+02
+15 5922     -1.314900e+02 2.599000e+02
+0 5923     7.407400e+02 9.675000e+01
+3 5923     5.199100e+02 -1.635000e+02
+0 5924     7.348900e+02 9.601999e+01
+7 5924     5.701000e+02 2.981800e+02
+10 5924     7.543000e+02 3.315000e+02
+0 5925     7.695800e+02 9.612000e+01
+3 5925     5.477400e+02 -1.498500e+02
+7 5925     6.029200e+02 3.048000e+02
+9 5925     4.508199e+02 2.379800e+02
+10 5925     7.963300e+02 3.346100e+02
+12 5925     7.085500e+02 3.170800e+02
+0 5926     8.414900e+02 9.439999e+01
+7 5926     6.711700e+02 3.166100e+02
+0 5927     4.487700e+02 9.357999e+01
+7 5927     2.859800e+02 2.384500e+02
+15 5927     5.864800e+02 3.255800e+02
+0 5928     7.448101e+02 9.370999e+01
+3 5928     5.253700e+02 -1.638300e+02
+7 5928     5.794700e+02 2.977500e+02
+9 5928     4.303500e+02 2.260400e+02
+10 5928     7.663400e+02 3.297400e+02
+0 5929     6.493500e+02 9.300000e+01
+2 5929     5.699700e+02 9.721002e+01
+3 5929     4.317300e+02 -2.127500e+02
+6 5929     4.908700e+02 2.586300e+02
+7 5929     4.872300e+02 2.788900e+02
+8 5929     5.273101e+02 4.939999e+01
+9 5929     3.485699e+02 1.832000e+02
+10 5929     6.534301e+02 3.180700e+02
+12 5929     5.723199e+02 2.683800e+02
+13 5929     8.613101e+02 -1.089900e+02
+15 5929     8.660400e+02 3.559700e+02
+0 5930     7.716000e+02 9.229001e+01
+7 5930     6.053000e+02 3.010500e+02
+10 5930     7.974900e+02 3.308200e+02
+12 5930     7.107100e+02 3.138700e+02
+0 5931     7.939399e+02 9.044000e+01
+2 5931     7.186801e+02 1.634600e+02
+9 5931     4.718500e+02 2.429600e+02
+10 5931     8.252100e+02 3.311500e+02
+0 5932     8.556400e+02 9.039001e+01
+2 5932     7.779200e+02 1.911000e+02
+0 5933     5.484301e+02 9.019000e+01
+6 5933     3.666200e+02 2.163000e+02
+7 5933     3.874600e+02 2.562800e+02
+12 5933     4.541500e+02 2.265900e+02
+13 5933     7.578700e+02 -1.254500e+02
+15 5933     7.244900e+02 3.367500e+02
+0 5934     6.549800e+02 9.017999e+01
+7 5934     4.931400e+02 2.772000e+02
+10 5934     6.602700e+02 3.154500e+02
+15 5934     8.740200e+02 3.527400e+02
+0 5935     6.549800e+02 9.017999e+01
+6 5935     4.980699e+02 2.573200e+02
+7 5935     4.931400e+02 2.772000e+02
+9 5935     3.541801e+02 1.831300e+02
+10 5935     6.602700e+02 3.154500e+02
+12 5935     5.791300e+02 2.672300e+02
+15 5935     8.740200e+02 3.527400e+02
+0 5936     1.070001e+01 8.919000e+01
+2 5936     1.122500e+02 1.027000e+02
+3 5936     1.942999e+01 -2.127000e+02
+5 5936     6.334301e+02 -5.696000e+02
+7 5936     -9.271997e+01 2.019800e+02
+12 5936     -4.375000e+01 1.719800e+02
+0 5937     1.070001e+01 8.919000e+01
+2 5937     1.122500e+02 1.027000e+02
+3 5937     1.942999e+01 -2.127000e+02
+6 5937     -6.660999e+01 1.168800e+02
+7 5937     -9.271997e+01 2.019800e+02
+10 5937     -9.052002e+01 2.459600e+02
+12 5937     -4.375000e+01 1.719800e+02
+15 5937     -3.165002e+01 2.602400e+02
+0 5938     -3.175000e+01 8.895999e+01
+2 5938     5.559003e+01 8.222998e+01
+3 5938     -3.473999e+01 -2.340100e+02
+4 5938     -2.102900e+02 -3.852800e+02
+5 5938     5.766899e+02 -5.722800e+02
+6 5938     -1.250200e+02 9.934003e+01
+7 5938     -1.379100e+02 1.929700e+02
+8 5938     8.015997e+01 2.422000e+01
+10 5938     -1.399200e+02 2.411100e+02
+12 5938     -9.965002e+01 1.546900e+02
+13 5938     3.237400e+02 -1.514700e+02
+15 5938     -8.846997e+01 2.537200e+02
+0 5939     6.008900e+02 8.842001e+01
+6 5939     4.329800e+02 2.343600e+02
+9 5939     3.056700e+02 1.564300e+02
+12 5939     5.168500e+02 2.443300e+02
+15 5939     7.984200e+02 3.417900e+02
+0 5940     7.450400e+02 8.831000e+01
+2 5940     6.708400e+02 1.393800e+02
+7 5940     5.807000e+02 2.927200e+02
+10 5940     7.673300e+02 3.230100e+02
+0 5941     7.450400e+02 8.831000e+01
+2 5941     6.708400e+02 1.393800e+02
+7 5941     5.807000e+02 2.927200e+02
+10 5941     7.673300e+02 3.230100e+02
+12 5941     6.827200e+02 2.998500e+02
+0 5942     7.400601e+02 8.629999e+01
+7 5942     5.763000e+02 2.899700e+02
+10 5942     7.624399e+02 3.205400e+02
+0 5943     6.178998e+01 8.612000e+01
+6 5943     -8.800049e-01 1.313800e+02
+7 5943     -3.896002e+01 2.081800e+02
+10 5943     -3.064001e+01 2.468900e+02
+13 5943     4.146300e+02 -1.442400e+02
+0 5944     6.763300e+02 8.632999e+01
+2 5944     6.008300e+02 1.045400e+02
+7 5944     5.147300e+02 2.779700e+02
+9 5944     3.744800e+02 1.897700e+02
+0 5945     5.406400e+02 8.529999e+01
+7 5945     3.802400e+02 2.499000e+02
+0 5946     -4.777100e+02 8.482001e+01
+7 5946     -6.385600e+02 8.487000e+01
+0 5947     4.552002e+01 8.501999e+01
+3 5947     6.226001e+01 -2.021200e+02
+5 5947     6.792900e+02 -5.724700e+02
+10 5947     -4.953003e+01 2.449500e+02
+13 5947     3.997700e+02 -1.462000e+02
+15 5947     1.577002e+01 2.598100e+02
+0 5948     6.052400e+02 8.512000e+01
+7 5948     4.448800e+02 2.623300e+02
+0 5949     7.612500e+02 8.372000e+01
+2 5949     6.884700e+02 1.415200e+02
+7 5949     5.966000e+02 2.911000e+02
+9 5949     4.467500e+02 2.243700e+02
+0 5950     2.262000e+02 8.284000e+01
+6 5950     1.689800e+02 1.743300e+02
+7 5950     1.215800e+02 2.296200e+02
+10 5950     1.608300e+02 2.608800e+02
+12 5950     2.029900e+02 2.205200e+02
+0 5951     6.776500e+02 8.307999e+01
+2 5951     6.029000e+02 1.015500e+02
+3 5951     4.639500e+02 -2.070900e+02
+6 5951     5.272500e+02 2.583700e+02
+7 5951     5.162800e+02 2.748700e+02
+8 5951     5.546400e+02 5.173999e+01
+9 5951     3.764200e+02 1.875800e+02
+10 5951     6.876300e+02 3.096900e+02
+12 5951     6.073900e+02 2.684900e+02
+0 5952     8.294000e+02 8.289001e+01
+2 5952     7.550900e+02 1.723300e+02
+7 5952     6.609900e+02 3.034500e+02
+12 5952     7.781700e+02 3.246500e+02
+0 5953     -1.278400e+02 8.157999e+01
+7 5953     -2.489000e+02 1.585800e+02
+0 5954     5.896002e+01 8.167001e+01
+2 5954     1.738100e+02 1.154900e+02
+0 5955     6.542999e+01 8.106000e+01
+3 5955     8.503003e+01 -1.986300e+02
+4 5955     -2.248900e+02 -4.635900e+02
+5 5955     7.049301e+02 -5.767800e+02
+6 5955     5.880005e+00 1.285500e+02
+7 5955     -3.441998e+01 2.042600e+02
+9 5955     3.700000e+01 1.881700e+02
+10 5955     -2.627002e+01 2.422400e+02
+13 5955     4.185000e+02 -1.476200e+02
+15 5955     4.282001e+01 2.568000e+02
+0 5956     7.169100e+02 8.112000e+01
+7 5956     5.544000e+02 2.801700e+02
+9 5956     4.109200e+02 2.033000e+02
+0 5957     7.480000e+02 8.042001e+01
+7 5957     5.847400e+02 2.857700e+02
+10 5957     7.715300e+02 3.139800e+02
+0 5958     7.480000e+02 8.042001e+01
+2 5958     6.761000e+02 1.338800e+02
+7 5958     5.847400e+02 2.857700e+02
+10 5958     7.715300e+02 3.139800e+02
+0 5959     5.984003e+01 7.884998e+01
+2 5959     1.767000e+02 1.133100e+02
+3 5959     8.133002e+01 -2.014900e+02
+4 5959     -2.255000e+02 -4.597500e+02
+5 5959     6.989301e+02 -5.787100e+02
+6 5959     8.300171e-01 1.249100e+02
+7 5959     -3.934998e+01 2.012000e+02
+8 5959     1.781000e+02 4.710999e+01
+9 5959     3.398999e+01 1.859300e+02
+12 5959     2.210999e+01 1.786600e+02
+0 5960     7.450000e+02 7.920999e+01
+2 5960     6.736000e+02 1.305400e+02
+3 5960     5.305900e+02 -1.770500e+02
+7 5960     5.819301e+02 2.839600e+02
+9 5960     4.349600e+02 2.149800e+02
+10 5960     7.679900e+02 3.123300e+02
+12 5960     6.851000e+02 2.902200e+02
+0 5961     7.450000e+02 7.920999e+01
+2 5961     6.736000e+02 1.305400e+02
+3 5961     5.305900e+02 -1.770500e+02
+7 5961     5.819301e+02 2.839600e+02
+9 5961     4.349600e+02 2.149800e+02
+10 5961     7.679900e+02 3.123300e+02
+12 5961     6.851000e+02 2.902200e+02
+0 5962     7.587600e+02 7.821002e+01
+7 5962     5.955400e+02 2.855200e+02
+10 5962     7.843800e+02 3.126100e+02
+12 5962     7.013000e+02 2.938700e+02
+0 5963     1.270000e+02 7.678998e+01
+8 5963     2.367700e+02 5.563000e+01
+0 5964     -5.358002e+01 7.621997e+01
+6 5964     -1.501500e+02 7.546997e+01
+8 5964     6.033002e+01 5.450012e+00
+15 5964     -1.158500e+02 2.334400e+02
+0 5965     4.340002e+01 7.587000e+01
+5 5965     6.794000e+02 -5.831400e+02
+6 5965     -1.782001e+01 1.153600e+02
+7 5965     -5.573999e+01 1.954900e+02
+15 5965     1.396997e+01 2.466900e+02
+0 5966     8.178800e+02 7.595001e+01
+2 5966     7.463800e+02 1.607200e+02
+3 5966     5.984200e+02 -1.452700e+02
+7 5966     6.513400e+02 2.944600e+02
+12 5966     7.671801e+02 3.130700e+02
+0 5967     -9.883002e+01 7.525000e+01
+5 5967     4.684500e+02 -5.954900e+02
+6 5967     -2.423000e+02 4.354999e+01
+7 5967     -2.136200e+02 1.606200e+02
+10 5967     -2.164100e+02 2.188100e+02
+12 5967     -2.002400e+02 9.814001e+01
+15 5967     -1.743900e+02 2.254300e+02
+0 5968     6.236801e+02 7.576001e+01
+2 5968     5.464301e+02 6.707001e+01
+12 5968     5.461200e+02 2.405000e+02
+15 5968     8.316600e+02 3.276600e+02
+0 5969     7.848000e+02 7.463000e+01
+7 5969     6.205601e+02 2.869800e+02
+0 5970     3.833002e+01 7.420001e+01
+6 5970     -2.331000e+01 1.120400e+02
+10 5970     -5.688000e+01 2.313500e+02
+12 5970     -3.000000e+00 1.664200e+02
+15 5970     7.500000e+00 2.435000e+02
+0 5971     7.611000e+02 7.354999e+01
+3 5971     5.480400e+02 -1.737700e+02
+7 5971     5.980601e+02 2.816900e+02
+10 5971     7.869600e+02 3.078700e+02
+12 5971     7.049800e+02 2.902600e+02
+0 5972     7.611000e+02 7.354999e+01
+3 5972     5.480400e+02 -1.737700e+02
+7 5972     5.980601e+02 2.816900e+02
+12 5972     7.049800e+02 2.902600e+02
+0 5973     5.192200e+02 7.313000e+01
+6 5973     3.335500e+02 1.838300e+02
+10 5973     5.025400e+02 2.813800e+02
+12 5973     4.231500e+02 1.946300e+02
+0 5974     7.745000e+02 7.215002e+01
+2 5974     7.048700e+02 1.371900e+02
+7 5974     6.109100e+02 2.827000e+02
+10 5974     8.029399e+02 3.072300e+02
+0 5975     2.192600e+02 7.134998e+01
+7 5975     1.178300e+02 2.180600e+02
+15 5975     2.554700e+02 2.651100e+02
+0 5976     -3.946900e+02 7.096002e+01
+7 5976     -5.463600e+02 8.539001e+01
+0 5977     -3.946900e+02 7.096002e+01
+7 5977     -5.463600e+02 8.539001e+01
+0 5978     8.464301e+02 7.088000e+01
+2 5978     7.750200e+02 1.688100e+02
+7 5978     6.786300e+02 2.948200e+02
+9 5978     5.180900e+02 2.497500e+02
+12 5978     7.998300e+02 3.178800e+02
+0 5979     -2.494900e+02 7.047998e+01
+7 5979     -3.939000e+02 1.096700e+02
+13 5979     4.447998e+01 -2.084300e+02
+15 5979     -3.692000e+02 1.974800e+02
+0 5980     5.938101e+02 6.996997e+01
+9 5980     3.034500e+02 1.373700e+02
+15 5980     7.904200e+02 3.153600e+02
+0 5981     7.015800e+02 7.010999e+01
+2 5981     6.309800e+02 1.000700e+02
+3 5981     4.920800e+02 -2.074400e+02
+6 5981     5.580800e+02 2.530800e+02
+9 5981     3.996600e+02 1.878400e+02
+10 5981     7.165500e+02 2.971200e+02
+0 5982     7.639000e+02 6.845001e+01
+2 5982     6.959200e+02 1.299200e+02
+3 5982     5.519399e+02 -1.766000e+02
+9 5982     4.534500e+02 2.139400e+02
+0 5983     7.680300e+02 6.845001e+01
+2 5983     7.000800e+02 1.311200e+02
+3 5983     5.557100e+02 -1.748800e+02
+7 5983     6.054399e+02 2.780000e+02
+9 5983     4.568700e+02 2.158000e+02
+10 5983     7.959600e+02 3.023000e+02
+12 5983     7.138600e+02 2.873700e+02
+0 5984     8.129100e+02 6.765002e+01
+2 5984     7.439700e+02 1.506300e+02
+12 5984     7.633400e+02 3.031400e+02
+0 5985     5.158199e+02 6.707001e+01
+6 5985     3.306200e+02 1.753400e+02
+7 5985     3.578900e+02 2.274300e+02
+10 5985     4.988500e+02 2.740800e+02
+12 5985     4.200900e+02 1.863100e+02
+13 5985     7.262600e+02 -1.511500e+02
+15 5985     6.815900e+02 2.996300e+02
+0 5986     1.367500e+02 6.644000e+01
+6 5986     9.304999e+01 1.355800e+02
+15 5986     1.427100e+02 2.469000e+02
+0 5987     5.127200e+02 6.608002e+01
+7 5987     3.551700e+02 2.257800e+02
+13 5987     7.234399e+02 -1.524500e+02
+15 5987     6.773300e+02 2.979300e+02
+0 5988     6.809800e+02 6.619000e+01
+10 5988     6.930601e+02 2.906500e+02
+12 5988     6.160400e+02 2.515200e+02
+0 5989     -2.902300e+02 6.537000e+01
+7 5989     -4.349900e+02 9.832001e+01
+0 5990     6.865601e+02 6.539001e+01
+2 5990     6.172600e+02 8.814001e+01
+6 5990     5.424100e+02 2.424600e+02
+7 5990     5.273800e+02 2.596800e+02
+8 5990     5.663600e+02 4.059000e+01
+9 5990     3.888800e+02 1.771500e+02
+10 5990     6.993600e+02 2.898000e+02
+12 5990     6.222600e+02 2.525600e+02
+0 5991     -2.590200e+02 6.492999e+01
+7 5991     -4.028500e+02 1.032500e+02
+15 5991     -3.822000e+02 1.891600e+02
+0 5992     -2.590200e+02 6.492999e+01
+7 5992     -4.028500e+02 1.032500e+02
+15 5992     -3.822000e+02 1.891600e+02
+0 5993     8.734301e+02 6.431000e+01
+2 5993     8.029700e+02 1.746900e+02
+0 5994     7.060000e+02 6.345001e+01
+2 5994     6.381700e+02 9.590002e+01
+6 5994     5.657600e+02 2.478900e+02
+7 5994     5.464500e+02 2.614100e+02
+9 5994     4.063199e+02 1.843900e+02
+10 5994     7.226100e+02 2.898800e+02
+12 5994     6.451600e+02 2.577500e+02
+0 5995     8.803199e+02 6.339001e+01
+2 5995     8.086400e+02 1.767400e+02
+0 5996     1.251200e+02 6.250000e+01
+6 5996     8.185999e+01 1.279900e+02
+10 5996     4.539001e+01 2.269200e+02
+15 5996     1.265300e+02 2.394300e+02
+0 5997     6.679100e+02 6.195001e+01
+6 5997     5.208300e+02 2.310700e+02
+0 5998     2.124301e+02 6.160999e+01
+6 5998     1.676500e+02 1.500700e+02
+7 5998     1.139100e+02 2.075900e+02
+10 5998     1.466300e+02 2.344500e+02
+12 5998     1.983000e+02 1.971900e+02
+15 5998     2.469700e+02 2.502300e+02
+0 5999     7.040300e+02 6.140997e+01
+2 5999     6.369500e+02 9.334998e+01
+3 5999     4.974301e+02 -2.141200e+02
+6 5999     5.649301e+02 2.443800e+02
+7 5999     5.447400e+02 2.592100e+02
+8 5999     5.833300e+02 4.344000e+01
+9 5999     4.055100e+02 1.817800e+02
+12 5999     6.433000e+02 2.548200e+02
+0 6000     8.588600e+02 6.085999e+01
+2 6000     7.899600e+02 1.652200e+02
+0 6001     -4.734600e+02 6.040997e+01
+2 6001     -6.642900e+02 -2.408700e+02
+13 6001     -1.562400e+02 -2.315700e+02
+15 6001     -6.758000e+02 1.528500e+02
+0 6002     1.022100e+02 5.903998e+01
+2 6002     2.322400e+02 1.082400e+02
+7 6002     7.500000e+00 1.893900e+02
+10 6002     1.917999e+01 2.201200e+02
+0 6003     6.798000e+02 5.829999e+01
+3 6003     4.743800e+02 -2.296600e+02
+7 6003     5.217200e+02 2.515000e+02
+9 6003     3.849399e+02 1.680900e+02
+10 6003     6.919399e+02 2.808800e+02
+0 6004     5.319700e+02 5.813000e+01
+6 6004     3.538500e+02 1.722000e+02
+7 6004     3.756700e+02 2.219200e+02
+13 6004     7.445900e+02 -1.568500e+02
+15 6004     7.055000e+02 2.896000e+02
+0 6005     5.476500e+02 5.741998e+01
+7 6005     3.916000e+02 2.241500e+02
+0 6006     7.834800e+02 5.683002e+01
+7 6006     6.217300e+02 2.698600e+02
+10 6006     8.148199e+02 2.905300e+02
+0 6007     7.834800e+02 5.683002e+01
+3 6007     5.739399e+02 -1.778200e+02
+7 6007     6.217300e+02 2.698600e+02
+9 6007     4.736400e+02 2.131700e+02
+10 6007     8.148199e+02 2.905300e+02
+12 6007     7.345900e+02 2.805900e+02
+0 6008     6.984301e+02 5.669000e+01
+6 6008     5.579000e+02 2.370400e+02
+7 6008     5.398199e+02 2.535100e+02
+10 6008     7.143500e+02 2.808900e+02
+0 6009     6.984301e+02 5.669000e+01
+7 6009     5.398199e+02 2.535100e+02
+10 6009     7.143500e+02 2.808900e+02
+0 6010     4.916600e+02 5.603003e+01
+7 6010     3.352400e+02 2.116300e+02
+10 6010     4.719100e+02 2.585400e+02
+13 6010     7.022100e+02 -1.645400e+02
+15 6010     6.494500e+02 2.806100e+02
+0 6011     -1.508300e+02 5.582001e+01
+7 6011     -2.657500e+02 1.303600e+02
+0 6012     7.865800e+02 5.440997e+01
+7 6012     6.250900e+02 2.682500e+02
+10 6012     8.199500e+02 2.875500e+02
+0 6013     6.668101e+02 5.383002e+01
+2 6013     6.000699e+02 6.646997e+01
+6 6013     5.222200e+02 2.219300e+02
+7 6013     5.096000e+02 2.445300e+02
+8 6013     5.514100e+02 2.335999e+01
+9 6013     3.747500e+02 1.582000e+02
+10 6013     6.767900e+02 2.742800e+02
+0 6014     6.668101e+02 5.383002e+01
+6 6014     5.222200e+02 2.219300e+02
+8 6014     5.514100e+02 2.335999e+01
+10 6014     6.767900e+02 2.742800e+02
+0 6015     6.668101e+02 5.383002e+01
+6 6015     5.222200e+02 2.219300e+02
+7 6015     5.096000e+02 2.445300e+02
+8 6015     5.514100e+02 2.335999e+01
+9 6015     3.747500e+02 1.582000e+02
+10 6015     6.767900e+02 2.742800e+02
+13 6015     8.845699e+02 -1.414200e+02
+0 6016     7.200900e+02 5.382001e+01
+6 6016     5.860100e+02 2.429700e+02
+8 6016     5.995000e+02 4.404001e+01
+9 6016     4.210500e+02 1.829600e+02
+12 6016     6.646500e+02 2.528500e+02
+0 6017     8.021997e+01 5.176001e+01
+12 6017     5.684003e+01 1.558600e+02
+0 6018     6.854800e+02 5.189001e+01
+6 6018     5.446400e+02 2.273600e+02
+8 6018     5.686400e+02 2.889001e+01
+9 6018     3.913199e+02 1.655200e+02
+12 6018     6.242200e+02 2.371500e+02
+0 6019     7.014301e+02 5.146997e+01
+2 6019     6.371899e+02 8.201001e+01
+3 6019     4.982600e+02 -2.246800e+02
+6 6019     5.636801e+02 2.329500e+02
+7 6019     5.436500e+02 2.490700e+02
+8 6019     5.825800e+02 3.447000e+01
+9 6019     4.053600e+02 1.725800e+02
+10 6019     7.181899e+02 2.750500e+02
+12 6019     6.426200e+02 2.427400e+02
+0 6020     7.014301e+02 5.146997e+01
+12 6020     6.426200e+02 2.427400e+02
+0 6021     7.014301e+02 5.146997e+01
+2 6021     6.371899e+02 8.201001e+01
+3 6021     4.982600e+02 -2.246800e+02
+6 6021     5.636801e+02 2.329500e+02
+7 6021     5.436500e+02 2.490700e+02
+9 6021     4.053600e+02 1.725800e+02
+10 6021     7.181899e+02 2.750500e+02
+0 6022     -2.480700e+02 5.071997e+01
+6 6022     -5.473400e+02 -9.357001e+01
+0 6023     7.934900e+02 4.951001e+01
+3 6023     5.862800e+02 -1.795300e+02
+7 6023     6.328700e+02 2.645100e+02
+0 6024     7.125699e+02 4.903998e+01
+2 6024     6.490800e+02 8.415997e+01
+3 6024     5.092400e+02 -2.220800e+02
+0 6025     8.064500e+02 4.915997e+01
+3 6025     5.974700e+02 -1.738900e+02
+0 6026     8.064500e+02 4.915997e+01
+3 6026     5.974700e+02 -1.738900e+02
+0 6027     7.989900e+02 4.844000e+01
+7 6027     6.373101e+02 2.649700e+02
+9 6027     4.879600e+02 2.136200e+02
+12 6027     7.548199e+02 2.781500e+02
+0 6028     7.267000e+02 4.656000e+01
+2 6028     6.647700e+02 8.954999e+01
+7 6028     5.687300e+02 2.492200e+02
+9 6028     4.285000e+02 1.799100e+02
+10 6028     7.481899e+02 2.724100e+02
+12 6028     6.726500e+02 2.473700e+02
+0 6029     8.043000e+02 4.441998e+01
+7 6029     6.429100e+02 2.619500e+02
+0 6030     7.098700e+02 4.326001e+01
+2 6030     6.432700e+02 7.597998e+01
+8 6030     5.889399e+02 2.945001e+01
+10 6030     7.291801e+02 2.666000e+02
+12 6030     6.525601e+02 2.354900e+02
+0 6031     7.098700e+02 4.326001e+01
+6 6031     5.752600e+02 2.265600e+02
+7 6031     5.528700e+02 2.428200e+02
+8 6031     5.916100e+02 2.979001e+01
+10 6031     7.291801e+02 2.666000e+02
+0 6032     6.808199e+02 4.284003e+01
+2 6032     6.177300e+02 6.228003e+01
+6 6032     5.422900e+02 2.151800e+02
+10 6032     6.950400e+02 2.629300e+02
+12 6032     6.218900e+02 2.250400e+02
+0 6033     6.808199e+02 4.284003e+01
+2 6033     6.177300e+02 6.228003e+01
+3 6033     4.811600e+02 -2.438700e+02
+6 6033     5.422900e+02 2.151800e+02
+7 6033     5.248600e+02 2.367600e+02
+8 6033     5.667800e+02 1.941000e+01
+9 6033     3.903000e+02 1.558600e+02
+10 6033     6.950400e+02 2.629300e+02
+12 6033     6.218900e+02 2.250400e+02
+0 6034     7.275200e+02 4.215997e+01
+2 6034     6.671700e+02 8.623999e+01
+9 6034     4.299500e+02 1.768600e+02
+0 6035     -6.478003e+01 4.150000e+01
+3 6035     -5.456000e+01 -2.933600e+02
+4 6035     -2.382600e+02 -3.583900e+02
+6 6035     -1.499000e+02 3.194000e+01
+7 6035     -1.640800e+02 1.391900e+02
+8 6035     5.966998e+01 -2.576999e+01
+9 6035     -8.329999e+01 1.029200e+02
+10 6035     -1.732200e+02 1.829400e+02
+12 6035     -1.270500e+02 8.853998e+01
+15 6035     -1.264800e+02 1.845100e+02
+0 6036     6.253003e+01 4.162000e+01
+2 6036     1.991300e+02 8.290002e+01
+6 6036     2.221997e+01 8.628998e+01
+12 6036     3.989001e+01 1.397100e+02
+15 6036     4.417999e+01 2.027600e+02
+0 6037     7.303600e+02 4.154999e+01
+7 6037     5.728900e+02 2.453600e+02
+9 6037     4.327200e+02 1.772600e+02
+10 6037     7.531100e+02 2.667700e+02
+12 6037     6.783000e+02 2.434600e+02
+0 6038     7.303600e+02 4.154999e+01
+3 6038     5.294800e+02 -2.186300e+02
+7 6038     5.728900e+02 2.453600e+02
+9 6038     4.327200e+02 1.772600e+02
+10 6038     7.531100e+02 2.667700e+02
+12 6038     6.783000e+02 2.434600e+02
+0 6039     8.040200e+02 4.166998e+01
+7 6039     6.430000e+02 2.593400e+02
+0 6040     5.208400e+02 4.053998e+01
+10 6040     5.071801e+02 2.440800e+02
+13 6040     7.345100e+02 -1.743500e+02
+15 6040     6.919500e+02 2.636400e+02
+0 6041     -4.791500e+02 3.996997e+01
+7 6041     -6.288600e+02 3.988000e+01
+15 6041     -6.812500e+02 1.242700e+02
+0 6042     -4.791500e+02 3.996997e+01
+7 6042     -6.288600e+02 3.988000e+01
+13 6042     -1.568700e+02 -2.493100e+02
+15 6042     -6.812500e+02 1.242700e+02
+0 6043     8.447998e+01 4.016998e+01
+7 6043     -6.289978e+00 1.680000e+02
+10 6043     1.699829e-01 1.964500e+02
+15 6043     7.397998e+01 2.036800e+02
+0 6044     8.447998e+01 4.016998e+01
+2 6044     2.234399e+02 8.764001e+01
+6 6044     4.770001e+01 9.213000e+01
+7 6044     -6.289978e+00 1.680000e+02
+10 6044     1.699829e-01 1.964500e+02
+15 6044     7.397998e+01 2.036800e+02
+0 6045     5.019800e+02 4.015002e+01
+7 6045     3.478101e+02 1.982400e+02
+10 6045     4.854000e+02 2.414100e+02
+13 6045     7.145300e+02 -1.775300e+02
+15 6045     6.658400e+02 2.600300e+02
+0 6046     7.121000e+02 4.012000e+01
+2 6046     6.513800e+02 7.613000e+01
+3 6046     5.121899e+02 -2.300500e+02
+6 6046     5.791500e+02 2.246500e+02
+7 6046     5.554700e+02 2.403400e+02
+8 6046     5.946100e+02 2.950000e+01
+9 6046     4.175601e+02 1.684400e+02
+12 6046     6.576100e+02 2.335600e+02
+0 6047     7.121000e+02 4.012000e+01
+3 6047     5.121899e+02 -2.300500e+02
+6 6047     5.791500e+02 2.246500e+02
+7 6047     5.554700e+02 2.403400e+02
+8 6047     5.946100e+02 2.950000e+01
+9 6047     4.175601e+02 1.684400e+02
+12 6047     6.576100e+02 2.335600e+02
+0 6048     -7.550000e+01 3.885999e+01
+3 6048     -7.083002e+01 -3.041100e+02
+7 6048     -1.755800e+02 1.337300e+02
+13 6048     2.864800e+02 -1.994800e+02
+15 6048     -1.404000e+02 1.787700e+02
+0 6049     5.342100e+02 3.873999e+01
+6 6049     3.622800e+02 1.507000e+02
+0 6050     6.594700e+02 3.865997e+01
+6 6050     5.179900e+02 2.017800e+02
+0 6051     7.340800e+02 3.863000e+01
+3 6051     5.340699e+02 -2.200600e+02
+9 6051     4.367700e+02 1.764400e+02
+10 6051     7.576600e+02 2.635200e+02
+12 6051     6.830800e+02 2.418700e+02
+0 6052     -4.284998e+01 3.632001e+01
+6 6052     -1.132000e+02 3.784003e+01
+7 6052     -1.386800e+02 1.389800e+02
+8 6052     8.832001e+01 -1.870999e+01
+15 6052     -9.650000e+01 1.807400e+02
+0 6053     6.575900e+02 3.671997e+01
+2 6053     5.942400e+02 4.412000e+01
+3 6053     4.589200e+02 -2.629500e+02
+6 6053     5.153300e+02 1.993300e+02
+7 6053     5.028700e+02 2.262000e+02
+8 6053     5.465699e+02 4.959991e+00
+9 6053     3.706000e+02 1.393300e+02
+10 6053     6.675900e+02 2.532000e+02
+0 6054     1.154800e+02 3.552002e+01
+2 6054     2.569301e+02 9.133002e+01
+10 6054     3.690997e+01 1.942900e+02
+12 6054     1.041000e+02 1.487600e+02
+15 6054     1.167700e+02 2.015900e+02
+0 6055     5.852200e+02 3.553003e+01
+6 6055     4.272400e+02 1.685500e+02
+10 6055     5.826700e+02 2.445300e+02
+12 6055     5.116400e+02 1.790900e+02
+13 6055     8.021600e+02 -1.694100e+02
+15 6055     7.824000e+02 2.660200e+02
+0 6056     1.080000e+02 3.529999e+01
+6 6056     7.677002e+01 9.401001e+01
+10 6056     2.801001e+01 1.933400e+02
+12 6056     9.594000e+01 1.460500e+02
+15 6056     1.065700e+02 2.000900e+02
+0 6057     8.129800e+02 3.509998e+01
+7 6057     6.521801e+02 2.548200e+02
+0 6058     8.129800e+02 3.509998e+01
+7 6058     6.521801e+02 2.548200e+02
+0 6059     5.224800e+02 3.467999e+01
+6 6059     3.475400e+02 1.416300e+02
+0 6060     6.536300e+02 3.472998e+01
+3 6060     4.551100e+02 -2.671500e+02
+6 6060     5.107600e+02 1.972200e+02
+8 6060     5.431400e+02 2.350006e+00
+9 6060     3.673900e+02 1.362100e+02
+12 6060     5.916100e+02 2.076000e+02
+0 6061     7.633800e+02 3.471002e+01
+3 6061     5.633400e+02 -2.082900e+02
+7 6061     6.054399e+02 2.450800e+02
+9 6061     4.622400e+02 1.871500e+02
+10 6061     7.933700e+02 2.622900e+02
+12 6061     7.183900e+02 2.486900e+02
+0 6062     8.089600e+02 3.458002e+01
+9 6062     4.988700e+02 2.061100e+02
+0 6063     7.439100e+02 3.414001e+01
+2 6063     6.860100e+02 8.559003e+01
+9 6063     4.458101e+02 1.778900e+02
+10 6063     7.699900e+02 2.590700e+02
+0 6064     8.786000e+02 3.403998e+01
+2 6064     8.167400e+02 1.491000e+02
+7 6064     7.134000e+02 2.660100e+02
+9 6064     5.523199e+02 2.349500e+02
+0 6065     6.749399e+02 3.363000e+01
+2 6065     6.137200e+02 5.010999e+01
+3 6065     4.771700e+02 -2.562700e+02
+6 6065     5.367500e+02 2.027800e+02
+7 6065     5.201200e+02 2.267200e+02
+9 6065     3.865699e+02 1.452200e+02
+10 6065     6.881801e+02 2.515500e+02
+12 6065     6.169900e+02 2.127000e+02
+0 6066     3.909973e+00 3.290997e+01
+3 6066     4.434003e+01 -2.594100e+02
+7 6066     -8.784998e+01 1.457600e+02
+10 6066     -9.315002e+01 1.802500e+02
+15 6066     -3.369000e+01 1.824200e+02
+0 6067     7.125000e+02 3.309998e+01
+2 6067     6.534500e+02 6.901001e+01
+6 6067     5.817900e+02 2.175300e+02
+7 6067     5.567500e+02 2.336500e+02
+8 6067     5.970300e+02 2.420001e+01
+10 6067     7.325500e+02 2.546600e+02
+12 6067     6.605601e+02 2.275100e+02
+0 6068     7.125000e+02 3.309998e+01
+3 6068     5.148300e+02 -2.362100e+02
+6 6068     5.817900e+02 2.175300e+02
+7 6068     5.567500e+02 2.336500e+02
+8 6068     5.970300e+02 2.420001e+01
+12 6068     6.605601e+02 2.275100e+02
+0 6069     7.212400e+02 3.302002e+01
+10 6069     7.428600e+02 2.557100e+02
+12 6069     6.699800e+02 2.302800e+02
+0 6070     1.228000e+02 3.271997e+01
+2 6070     2.649301e+02 9.007001e+01
+7 6070     3.347998e+01 1.674400e+02
+10 6070     4.597998e+01 1.916800e+02
+13 6070     4.794600e+02 -1.827500e+02
+15 6070     1.267400e+02 1.988800e+02
+0 6071     6.522100e+02 3.190997e+01
+2 6071     5.899399e+02 3.638000e+01
+3 6071     4.549100e+02 -2.704700e+02
+6 6071     5.100100e+02 1.918700e+02
+7 6071     4.981100e+02 2.206200e+02
+9 6071     3.666100e+02 1.328700e+02
+10 6071     6.618101e+02 2.467200e+02
+12 6071     5.905400e+02 2.017700e+02
+0 6072     7.531500e+02 3.206000e+01
+2 6072     6.961100e+02 8.841998e+01
+3 6072     5.546000e+02 -2.162600e+02
+10 6072     7.806400e+02 2.575600e+02
+12 6072     7.067700e+02 2.411900e+02
+0 6073     7.645200e+02 3.178998e+01
+2 6073     7.077800e+02 9.365002e+01
+0 6074     7.645200e+02 3.178998e+01
+2 6074     7.077800e+02 9.365002e+01
+3 6074     5.657800e+02 -2.103700e+02
+7 6074     6.068600e+02 2.425200e+02
+9 6074     4.642000e+02 1.848900e+02
+10 6074     7.944200e+02 2.593800e+02
+0 6075     7.300200e+02 3.144000e+01
+2 6075     6.724100e+02 7.632001e+01
+3 6075     5.328600e+02 -2.290200e+02
+7 6075     5.737800e+02 2.352700e+02
+10 6075     7.536300e+02 2.548600e+02
+0 6076     6.547000e+02 3.132001e+01
+2 6076     5.927900e+02 3.722998e+01
+6 6076     5.133700e+02 1.923100e+02
+12 6076     5.939000e+02 2.025100e+02
+15 6076     8.803400e+02 2.704300e+02
+0 6077     6.758700e+02 3.096002e+01
+3 6077     4.796100e+02 -2.580700e+02
+6 6077     5.392100e+02 1.998700e+02
+7 6077     5.218101e+02 2.243900e+02
+9 6077     3.885100e+02 1.432800e+02
+10 6077     6.892300e+02 2.489400e+02
+0 6078     7.559500e+02 2.984998e+01
+3 6078     5.584200e+02 -2.163600e+02
+7 6078     5.992800e+02 2.390500e+02
+9 6078     4.579700e+02 1.796900e+02
+12 6078     7.106700e+02 2.403400e+02
+0 6079     -8.295001e+01 2.935999e+01
+7 6079     -1.826000e+02 1.222500e+02
+15 6079     -1.487900e+02 1.655000e+02
+0 6080     5.141400e+02 2.952002e+01
+7 6080     3.614800e+02 1.907800e+02
+10 6080     5.001400e+02 2.298800e+02
+12 6080     4.278900e+02 1.439000e+02
+13 6080     7.286100e+02 -1.850100e+02
+15 6080     6.838600e+02 2.472200e+02
+0 6081     1.825000e+01 2.870001e+01
+2 6081     1.546200e+02 5.487000e+01
+6 6081     -2.566998e+01 5.522998e+01
+7 6081     -7.201001e+01 1.446700e+02
+10 6081     -7.544000e+01 1.762300e+02
+12 6081     -1.007001e+01 1.101400e+02
+15 6081     -1.406000e+01 1.789600e+02
+0 6082     1.728300e+02 2.777002e+01
+13 6082     5.215000e+02 -1.831700e+02
+0 6083     1.728300e+02 2.777002e+01
+13 6083     5.215000e+02 -1.831700e+02
+0 6084     5.233400e+02 2.716998e+01
+6 6084     3.506100e+02 1.323900e+02
+7 6084     3.709301e+02 1.895900e+02
+10 6084     5.110100e+02 2.286600e+02
+12 6084     4.392700e+02 1.441000e+02
+15 6084     6.970300e+02 2.454800e+02
+0 6085     -3.767400e+02 2.637000e+01
+7 6085     -5.163900e+02 4.498999e+01
+10 6085     -5.385400e+02 1.333000e+02
+0 6086     -3.767400e+02 2.637000e+01
+7 6086     -5.163900e+02 4.498999e+01
+10 6086     -5.385400e+02 1.333000e+02
+0 6087     7.390500e+02 2.606000e+01
+7 6087     5.833199e+02 2.319900e+02
+0 6088     7.390500e+02 2.606000e+01
+3 6088     5.431400e+02 -2.286700e+02
+0 6089     7.424500e+02 2.596002e+01
+7 6089     5.864900e+02 2.325700e+02
+10 6089     7.689200e+02 2.499600e+02
+0 6090     7.091000e+02 2.506000e+01
+2 6090     6.524600e+02 5.902002e+01
+3 6090     5.142300e+02 -2.462200e+02
+6 6090     5.797400e+02 2.067600e+02
+7 6090     5.544800e+02 2.252000e+02
+8 6090     5.955200e+02 1.532999e+01
+9 6090     4.188700e+02 1.537500e+02
+10 6090     7.291500e+02 2.450900e+02
+12 6090     6.584700e+02 2.163600e+02
+0 6091     -3.261900e+02 2.446997e+01
+7 6091     -4.627200e+02 5.179999e+01
+10 6091     -4.777800e+02 1.364300e+02
+15 6091     -4.687300e+02 1.241100e+02
+0 6092     -1.106400e+02 2.419000e+01
+2 6092     -3.451001e+01 -2.913000e+01
+6 6092     -2.167700e+02 -1.153998e+01
+7 6092     -2.120600e+02 1.113600e+02
+8 6092     6.489990e+00 -6.398999e+01
+10 6092     -2.246000e+02 1.580200e+02
+12 6092     -1.878400e+02 4.604999e+01
+13 6092     2.496000e+02 -2.163700e+02
+0 6093     -5.421997e+01 2.435999e+01
+2 6093     5.809003e+01 1.354999e+01
+3 6093     -2.945001e+01 -3.002800e+02
+8 6093     7.903998e+01 -3.295001e+01
+9 6093     -6.198999e+01 9.735999e+01
+10 6093     -1.591700e+02 1.638200e+02
+15 6093     -1.104800e+02 1.626700e+02
+0 6094     7.064100e+02 2.429999e+01
+12 6094     6.556300e+02 2.142800e+02
+0 6095     7.064100e+02 2.429999e+01
+7 6095     5.509800e+02 2.244500e+02
+12 6095     6.556300e+02 2.142800e+02
+0 6096     8.313199e+02 2.465997e+01
+2 6096     7.749100e+02 1.188200e+02
+0 6097     8.165997e+01 2.396997e+01
+7 6097     -6.239990e+00 1.521100e+02
+0 6098     6.661700e+02 2.150000e+01
+8 6098     5.574399e+02 -3.950012e+00
+0 6099     1.003100e+02 2.044000e+01
+2 6099     2.489301e+02 7.395001e+01
+7 6099     1.316998e+01 1.516000e+02
+10 6099     2.073999e+01 1.750000e+02
+12 6099     9.223999e+01 1.276400e+02
+15 6099     9.801001e+01 1.788000e+02
+0 6100     7.007500e+02 2.059003e+01
+6 6100     5.709700e+02 1.991400e+02
+7 6100     5.470699e+02 2.193100e+02
+8 6100     5.887400e+02 8.329987e+00
+10 6100     7.194900e+02 2.390100e+02
+12 6100     6.501100e+02 2.092800e+02
+0 6101     7.085500e+02 2.072998e+01
+2 6101     6.531400e+02 5.440002e+01
+3 6101     5.155000e+02 -2.502100e+02
+6 6101     5.800400e+02 2.021000e+02
+8 6101     5.953900e+02 1.154001e+01
+10 6101     7.288600e+02 2.400500e+02
+12 6101     6.584100e+02 2.116300e+02
+0 6102     8.186801e+02 2.059998e+01
+2 6102     7.640400e+02 1.087100e+02
+3 6102     6.183900e+02 -1.938700e+02
+7 6102     6.595601e+02 2.421600e+02
+9 6102     5.103199e+02 1.993500e+02
+12 6102     7.831200e+02 2.541600e+02
+0 6103     6.526899e+02 2.010999e+01
+2 6103     5.938800e+02 2.484998e+01
+3 6103     4.592500e+02 -2.811300e+02
+7 6103     5.002100e+02 2.091100e+02
+9 6103     3.706500e+02 1.233000e+02
+13 6103     8.739700e+02 -1.739500e+02
+15 6103     8.788400e+02 2.546800e+02
+0 6104     -1.049800e+02 1.881000e+01
+6 6104     -2.051500e+02 -1.485999e+01
+7 6104     -2.047300e+02 1.067500e+02
+10 6104     -2.171300e+02 1.520200e+02
+12 6104     -1.779600e+02 4.220001e+01
+0 6105     7.298199e+02 1.821997e+01
+2 6105     6.761100e+02 6.307001e+01
+7 6105     5.753700e+02 2.227200e+02
+9 6105     4.383500e+02 1.580300e+02
+10 6105     7.542700e+02 2.394900e+02
+0 6106     7.505300e+02 1.866998e+01
+2 6106     6.971801e+02 7.404999e+01
+7 6106     5.953500e+02 2.274700e+02
+10 6106     7.786000e+02 2.419400e+02
+12 6106     7.070500e+02 2.260900e+02
+0 6107     1.631100e+02 1.803998e+01
+12 6107     1.635600e+02 1.410500e+02
+0 6108     7.420900e+02 1.797998e+01
+2 6108     6.880699e+02 6.940997e+01
+7 6108     5.872800e+02 2.250100e+02
+12 6108     6.985699e+02 2.219800e+02
+0 6109     6.990400e+02 1.654999e+01
+3 6109     5.077400e+02 -2.595900e+02
+6 6109     5.701500e+02 1.938500e+02
+7 6109     5.459000e+02 2.151500e+02
+9 6109     4.122100e+02 1.425400e+02
+10 6109     7.178400e+02 2.344200e+02
+0 6110     6.990400e+02 1.654999e+01
+3 6110     5.077400e+02 -2.595900e+02
+6 6110     5.701500e+02 1.938500e+02
+7 6110     5.459000e+02 2.151500e+02
+9 6110     4.122100e+02 1.425400e+02
+10 6110     7.178400e+02 2.344200e+02
+0 6111     6.047998e+01 1.572998e+01
+7 6111     -2.608002e+01 1.403500e+02
+0 6112     -5.991200e+02 1.579999e+01
+7 6112     -7.532600e+02 -5.599976e+00
+0 6113     -3.034003e+01 1.477002e+01
+2 6113     9.689001e+01 1.883002e+01
+7 6113     -1.212900e+02 1.211400e+02
+10 6113     -1.304600e+02 1.551100e+02
+13 6113     3.391400e+02 -2.132300e+02
+15 6113     -7.708002e+01 1.530300e+02
+0 6114     3.133101e+02 1.506000e+01
+7 6114     2.136200e+02 1.741300e+02
+0 6115     8.398800e+02 1.521997e+01
+3 6115     6.390699e+02 -1.880000e+02
+9 6115     5.282500e+02 2.044700e+02
+0 6116     8.398800e+02 1.521997e+01
+3 6116     6.390699e+02 -1.880000e+02
+0 6117     6.728700e+02 1.429999e+01
+2 6117     6.174200e+02 2.900000e+01
+3 6117     4.818900e+02 -2.763900e+02
+6 6117     5.399500e+02 1.806600e+02
+8 6117     5.655601e+02 -7.630005e+00
+9 6117     3.901899e+02 1.276900e+02
+10 6117     6.871400e+02 2.288900e+02
+0 6118     6.728700e+02 1.429999e+01
+3 6118     4.818900e+02 -2.763900e+02
+6 6118     5.399500e+02 1.806600e+02
+8 6118     5.655601e+02 -7.630005e+00
+10 6118     6.871400e+02 2.288900e+02
+0 6119     8.368800e+02 1.460999e+01
+7 6119     6.771899e+02 2.400800e+02
+0 6120     -3.175400e+02 1.391998e+01
+7 6120     -4.513000e+02 4.308002e+01
+10 6120     -4.655700e+02 1.250200e+02
+15 6120     -4.553400e+02 1.110800e+02
+0 6121     -3.175400e+02 1.391998e+01
+7 6121     -4.513000e+02 4.308002e+01
+10 6121     -4.655700e+02 1.250200e+02
+15 6121     -4.553400e+02 1.110800e+02
+0 6122     1.912200e+02 1.404999e+01
+6 6122     1.697900e+02 9.520001e+01
+10 6122     1.268200e+02 1.774800e+02
+0 6123     7.378199e+02 1.404999e+01
+7 6123     5.830400e+02 2.209600e+02
+12 6123     6.931200e+02 2.166800e+02
+0 6124     7.842800e+02 1.395001e+01
+7 6124     6.277100e+02 2.293700e+02
+0 6125     7.345500e+02 1.373999e+01
+2 6125     6.818600e+02 6.085999e+01
+0 6126     7.515601e+02 1.352002e+01
+2 6126     6.998000e+02 6.921997e+01
+7 6126     5.974000e+02 2.222600e+02
+12 6126     7.089301e+02 2.207300e+02
+0 6127     5.839001e+01 1.294000e+01
+7 6127     -2.752002e+01 1.367700e+02
+10 6127     -2.696997e+01 1.619500e+02
+15 6127     4.209998e+01 1.629700e+02
+0 6128     6.462100e+02 1.275000e+01
+8 6128     5.415000e+02 -1.891000e+01
+9 6128     3.658700e+02 1.138700e+02
+0 6129     -3.205100e+02 1.246002e+01
+7 6129     -4.532600e+02 4.156000e+01
+10 6129     -4.694100e+02 1.224000e+02
+0 6130     -3.669000e+02 1.178003e+01
+7 6130     -5.020400e+02 3.220001e+01
+15 6130     -5.225700e+02 1.011300e+02
+0 6131     -3.669000e+02 1.178003e+01
+7 6131     -5.020400e+02 3.220001e+01
+15 6131     -5.225700e+02 1.011300e+02
+0 6132     -3.289200e+02 1.132001e+01
+7 6132     -4.619600e+02 3.856000e+01
+13 6132     -1.226001e+01 -2.639500e+02
+15 6132     -4.704700e+02 1.057400e+02
+0 6133     -3.151300e+02 1.146997e+01
+7 6133     -4.477100e+02 4.152002e+01
+15 6133     -4.514800e+02 1.081500e+02
+0 6134     5.400100e+02 1.135999e+01
+6 6134     3.767700e+02 1.217400e+02
+10 6134     5.320601e+02 2.117800e+02
+13 6134     7.577700e+02 -1.982300e+02
+0 6135     7.129200e+02 1.164001e+01
+2 6135     6.602900e+02 4.778003e+01
+7 6135     5.599100e+02 2.130500e+02
+9 6135     4.256100e+02 1.443500e+02
+10 6135     7.344200e+02 2.292500e+02
+12 6135     6.659900e+02 2.020600e+02
+0 6136     7.543900e+02 1.037000e+01
+2 6136     7.032000e+02 6.783002e+01
+3 6136     5.629200e+02 -2.356400e+02
+7 6136     5.999700e+02 2.199300e+02
+9 6136     4.609399e+02 1.630500e+02
+10 6136     7.838101e+02 2.325800e+02
+12 6136     7.136100e+02 2.182700e+02
+0 6137     1.246500e+02 8.590027e+00
+7 6137     3.962000e+01 1.438900e+02
+0 6138     2.394000e+02 8.409973e+00
+2 6138     3.739399e+02 7.865002e+01
+6 6138     2.147500e+02 9.991998e+01
+7 6138     1.489100e+02 1.602600e+02
+10 6138     1.829700e+02 1.755500e+02
+12 6138     2.450200e+02 1.450800e+02
+15 6138     2.905400e+02 1.814200e+02
+0 6139     4.053000e+02 7.840027e+00
+7 6139     2.885900e+02 1.720500e+02
+15 6139     5.262500e+02 2.031500e+02
+0 6140     4.053000e+02 7.840027e+00
+7 6140     2.885900e+02 1.720500e+02
+15 6140     5.262500e+02 2.031500e+02
+0 6141     6.408400e+02 7.489990e+00
+7 6141     4.901500e+02 1.947000e+02
+0 6142     5.554399e+02 7.119995e+00
+6 6142     3.974900e+02 1.241400e+02
+7 6142     4.057100e+02 1.771500e+02
+12 6142     4.834100e+02 1.355400e+02
+13 6142     7.747600e+02 -1.996000e+02
+0 6143     8.511100e+02 7.119995e+00
+2 6143     7.993500e+02 1.115200e+02
+3 6143     6.517000e+02 -1.899400e+02
+7 6143     6.914301e+02 2.354200e+02
+0 6144     8.511100e+02 7.119995e+00
+2 6144     7.993500e+02 1.115200e+02
+3 6144     6.517000e+02 -1.899400e+02
+7 6144     6.914301e+02 2.354200e+02
+12 6144     8.221600e+02 2.524400e+02
+0 6145     8.480300e+02 6.309998e+00
+3 6145     6.495300e+02 -1.920700e+02
+7 6145     6.887400e+02 2.342800e+02
+0 6146     7.113700e+02 5.900024e+00
+2 6146     6.604900e+02 4.065997e+01
+3 6146     5.233900e+02 -2.634900e+02
+7 6146     5.592300e+02 2.069200e+02
+9 6146     4.260500e+02 1.388100e+02
+10 6146     7.335300e+02 2.230600e+02
+0 6147     6.953500e+02 5.630005e+00
+2 6147     6.433101e+02 3.244000e+01
+3 6147     5.072600e+02 -2.721900e+02
+6 6147     5.685400e+02 1.801400e+02
+7 6147     5.437100e+02 2.037400e+02
+8 6147     5.875200e+02 -6.079987e+00
+9 6147     4.119700e+02 1.313700e+02
+10 6147     7.146200e+02 2.208300e+02
+12 6147     6.471200e+02 1.894600e+02
+0 6148     6.814399e+02 4.700012e+00
+3 6148     4.935900e+02 -2.811000e+02
+8 6148     5.754200e+02 -1.241000e+01
+0 6149     7.285601e+02 2.520020e+00
+2 6149     6.791801e+02 4.656000e+01
+3 6149     5.413800e+02 -2.570200e+02
+7 6149     5.762400e+02 2.073700e+02
+10 6149     7.535800e+02 2.209100e+02
+0 6150     7.285601e+02 2.520020e+00
+2 6150     6.791801e+02 4.656000e+01
+3 6150     5.413800e+02 -2.570200e+02
+7 6150     5.762400e+02 2.073700e+02
+9 6150     4.418500e+02 1.445200e+02
+0 6151     7.501899e+02 2.020020e+00
+2 6151     7.015300e+02 5.728003e+01
+7 6151     5.970100e+02 2.115400e+02
+12 6151     7.111100e+02 2.081100e+02
+0 6152     -3.547100e+02 7.100220e-01
+2 6152     -4.673000e+02 -2.612000e+02
+15 6152     -5.039700e+02 8.817001e+01
+0 6153     6.764700e+02 2.999878e-01
+7 6153     5.256600e+02 1.951300e+02
+10 6153     6.924600e+02 2.129200e+02
+0 6154     7.269700e+02 -2.190002e+00
+12 6154     6.854000e+02 1.930900e+02
+0 6155     6.516600e+02 -3.539978e+00
+2 6155     5.998400e+02 -7.899780e-01
+6 6155     5.199100e+02 1.515300e+02
+7 6155     5.027700e+02 1.859700e+02
+8 6155     5.508000e+02 -3.173001e+01
+10 6155     6.638400e+02 2.057100e+02
+12 6155     6.000200e+02 1.617500e+02
+13 6155     8.767200e+02 -1.956700e+02
+0 6156     7.387900e+02 -4.650024e+00
+10 6156     7.669500e+02 2.133100e+02
+12 6156     6.994399e+02 1.959000e+02
+0 6157     7.275300e+02 -5.460022e+00
+3 6157     5.433000e+02 -2.650300e+02
+7 6157     5.764200e+02 1.994800e+02
+12 6157     6.875400e+02 1.899900e+02
+0 6158     6.935500e+02 -6.299988e+00
+2 6158     6.450200e+02 1.937000e+01
+6 6158     5.695900e+02 1.663700e+02
+7 6158     5.435500e+02 1.921100e+02
+10 6158     7.132400e+02 2.068900e+02
+12 6158     6.481500e+02 1.760200e+02
+0 6159     6.935500e+02 -6.299988e+00
+2 6159     6.450200e+02 1.937000e+01
+6 6159     5.695900e+02 1.663700e+02
+7 6159     5.435500e+02 1.921100e+02
+9 6159     4.137500e+02 1.205800e+02
+10 6159     7.132400e+02 2.068900e+02
+12 6159     6.481500e+02 1.760200e+02
+0 6160     7.249700e+02 -6.030029e+00
+2 6160     6.780900e+02 3.634003e+01
+7 6160     5.739399e+02 1.985200e+02
+12 6160     6.842000e+02 1.889000e+02
+0 6161     7.249700e+02 -6.030029e+00
+2 6161     6.780900e+02 3.634003e+01
+7 6161     5.739399e+02 1.985200e+02
+12 6161     6.842000e+02 1.889000e+02
+0 6162     1.824700e+02 -7.179993e+00
+12 6162     1.924900e+02 1.177600e+02
+15 6162     2.139399e+02 1.527400e+02
+0 6163     3.378003e+01 -7.570007e+00
+7 6163     -4.915002e+01 1.120800e+02
+0 6164     3.055300e+02 -8.359985e+00
+7 6164     2.109700e+02 1.508900e+02
+10 6164     2.608700e+02 1.632300e+02
+15 6164     3.847200e+02 1.672600e+02
+0 6165     6.564301e+02 -9.719971e+00
+6 6165     5.269600e+02 1.478400e+02
+0 6166     8.483500e+02 -1.014001e+01
+7 6166     6.908800e+02 2.186900e+02
+0 6167     4.171899e+02 -1.103998e+01
+6 6167     3.444800e+02 1.039000e+02
+7 6167     3.046500e+02 1.567000e+02
+10 6167     3.911100e+02 1.722600e+02
+15 6167     5.448800e+02 1.789600e+02
+0 6168     -6.638000e+01 -1.175000e+01
+2 6168     5.428998e+01 -3.176001e+01
+3 6168     -3.088000e+01 -3.434000e+02
+6 6168     -1.282800e+02 -2.825000e+01
+8 6168     7.491998e+01 -6.933002e+01
+12 6168     -1.102500e+02 2.784003e+01
+0 6169     9.544000e+01 -1.157001e+01
+7 6169     1.413000e+01 1.194800e+02
+0 6170     9.544000e+01 -1.157001e+01
+3 6170     1.623300e+02 -2.661900e+02
+7 6170     1.413000e+01 1.194800e+02
+9 6170     1.049800e+02 1.302600e+02
+15 6170     9.741998e+01 1.328900e+02
+0 6171     6.550699e+02 -1.215997e+01
+3 6171     4.703700e+02 -3.103900e+02
+6 6171     5.228300e+02 1.470500e+02
+8 6171     5.557600e+02 -3.757001e+01
+9 6171     3.810100e+02 9.685001e+01
+10 6171     6.684800e+02 1.962900e+02
+12 6171     6.028101e+02 1.567600e+02
+0 6172     9.990997e+01 -1.253003e+01
+2 6172     2.622200e+02 4.190002e+01
+4 6172     -2.940100e+02 -4.932000e+02
+7 6172     1.853998e+01 1.187100e+02
+9 6172     1.083500e+02 1.304500e+02
+13 6172     4.654000e+02 -2.232700e+02
+15 6172     1.009800e+02 1.334700e+02
+0 6173     7.285200e+02 -1.245001e+01
+7 6173     5.781000e+02 1.928400e+02
+12 6173     6.911899e+02 1.823000e+02
+0 6174     7.250500e+02 -1.337000e+01
+3 6174     5.434399e+02 -2.744100e+02
+7 6174     5.750400e+02 1.916700e+02
+9 6174     4.432500e+02 1.294800e+02
+0 6175     7.250500e+02 -1.337000e+01
+3 6175     5.434399e+02 -2.744100e+02
+7 6175     5.750400e+02 1.916700e+02
+9 6175     4.432500e+02 1.294800e+02
+0 6176     8.761100e+02 -1.365997e+01
+3 6176     6.805000e+02 -1.965700e+02
+0 6177     -3.869800e+02 -1.456000e+01
+7 6177     -5.173900e+02 3.489990e+00
+15 6177     -5.469200e+02 6.328998e+01
+0 6178     4.866998e+01 -1.426001e+01
+2 6178     2.077500e+02 2.537000e+01
+7 6178     -3.266998e+01 1.083400e+02
+9 6178     6.463000e+01 1.140900e+02
+15 6178     3.270001e+01 1.247200e+02
+0 6179     7.072100e+02 -1.759998e+01
+2 6179     6.621100e+02 1.540997e+01
+7 6179     5.585601e+02 1.837900e+02
+0 6180     -3.784400e+02 -2.038000e+01
+7 6180     -5.066600e+02 -1.039978e+00
+15 6180     -5.343700e+02 5.622998e+01
+0 6181     7.344200e+02 -2.322998e+01
+2 6181     6.929600e+02 2.359998e+01
+3 6181     5.555601e+02 -2.785400e+02
+7 6181     5.852100e+02 1.839100e+02
+10 6181     7.623000e+02 1.915100e+02
+0 6182     4.406000e+01 -2.425000e+01
+2 6182     2.068600e+02 1.389001e+01
+3 6182     1.158200e+02 -2.946400e+02
+7 6182     -3.566998e+01 9.731000e+01
+10 6182     -4.009998e+01 1.175200e+02
+15 6182     2.784003e+01 1.102300e+02
+0 6183     5.166998e+01 -2.425000e+01
+12 6183     4.909003e+01 6.213000e+01
+0 6184     2.300000e+02 -2.400000e+01
+7 6184     1.462300e+02 1.273600e+02
+10 6184     1.755000e+02 1.370000e+02
+0 6185     7.068101e+02 -2.387000e+01
+9 6185     4.306500e+02 1.123100e+02
+0 6186     6.663000e+02 -2.459003e+01
+2 6186     6.214100e+02 -1.371002e+01
+3 6186     4.882400e+02 -3.183200e+02
+6 6186     5.426500e+02 1.340600e+02
+7 6186     5.195100e+02 1.688400e+02
+8 6186     5.683800e+02 -4.339001e+01
+10 6186     6.825100e+02 1.828500e+02
+0 6187     6.992700e+02 -2.433002e+01
+6 6187     5.814399e+02 1.487800e+02
+7 6187     5.515100e+02 1.758800e+02
+9 6187     4.236200e+02 1.082000e+02
+12 6187     6.598700e+02 1.579800e+02
+0 6188     6.992700e+02 -2.433002e+01
+2 6188     6.567700e+02 4.030029e+00
+3 6188     5.221200e+02 -2.992200e+02
+6 6188     5.814399e+02 1.487800e+02
+7 6188     5.515100e+02 1.758800e+02
+9 6188     4.236200e+02 1.082000e+02
+10 6188     7.219900e+02 1.865100e+02
+12 6188     6.598700e+02 1.579800e+02
+0 6189     -1.118300e+02 -2.528003e+01
+3 6189     -7.827002e+01 -3.732000e+02
+7 6189     -2.005000e+02 6.389001e+01
+15 6189     -1.807600e+02 8.742999e+01
+0 6190     7.186200e+02 -2.675000e+01
+3 6190     5.417900e+02 -2.906500e+02
+9 6190     4.408700e+02 1.154000e+02
+10 6190     7.442000e+02 1.856200e+02
+0 6191     7.186200e+02 -2.675000e+01
+2 6191     6.776400e+02 1.190997e+01
+3 6191     5.417900e+02 -2.906500e+02
+7 6191     5.706300e+02 1.772400e+02
+9 6191     4.408700e+02 1.154000e+02
+10 6191     7.442000e+02 1.856200e+02
+12 6191     6.823800e+02 1.631600e+02
+0 6192     7.794700e+02 -2.654999e+01
+2 6192     7.403600e+02 4.365002e+01
+12 6192     7.513400e+02 1.875800e+02
+0 6193     -1.100000e+02 -2.796997e+01
+7 6193     -1.978100e+02 6.178003e+01
+13 6193     2.658800e+02 -2.590400e+02
+0 6194     6.740800e+02 -2.776001e+01
+2 6194     6.314399e+02 -1.317999e+01
+6 6194     5.527200e+02 1.343100e+02
+8 6194     5.758900e+02 -4.301999e+01
+9 6194     4.026400e+02 9.295001e+01
+10 6194     6.916899e+02 1.798700e+02
+12 6194     6.313700e+02 1.437600e+02
+0 6195     7.837700e+02 -2.773999e+01
+7 6195     6.326100e+02 1.895500e+02
+0 6196     -2.446997e+01 -2.846997e+01
+2 6196     1.224200e+02 -2.156000e+01
+6 6196     -5.981000e+01 -2.620001e+01
+7 6196     -1.065200e+02 7.913000e+01
+12 6196     -4.696002e+01 2.848999e+01
+0 6197     2.185100e+02 -2.837000e+01
+7 6197     1.359600e+02 1.215100e+02
+0 6198     7.065100e+02 -2.846002e+01
+2 6198     6.655900e+02 3.729980e+00
+10 6198     7.299700e+02 1.827800e+02
+12 6198     6.685800e+02 1.566300e+02
+0 6199     7.335200e+02 -2.831000e+01
+2 6199     6.936700e+02 1.752002e+01
+0 6200     7.725800e+02 -2.909003e+01
+3 6200     5.944600e+02 -2.633200e+02
+7 6200     6.225100e+02 1.859000e+02
+10 6200     8.082800e+02 1.883200e+02
+0 6201     7.725800e+02 -2.909003e+01
+3 6201     5.944600e+02 -2.633200e+02
+10 6201     8.082800e+02 1.883200e+02
+0 6202     7.877200e+02 -2.889001e+01
+2 6202     7.494600e+02 4.573999e+01
+3 6202     6.091500e+02 -2.551700e+02
+7 6202     6.370300e+02 1.889800e+02
+10 6202     8.266500e+02 1.905200e+02
+0 6203     7.110500e+02 -3.031000e+01
+9 6203     4.354000e+02 1.091400e+02
+0 6204     6.276100e+02 -3.115002e+01
+7 6204     4.824200e+02 1.549300e+02
+0 6205     8.469500e+02 -3.083002e+01
+2 6205     8.078600e+02 7.345001e+01
+0 6206     8.469500e+02 -3.083002e+01
+2 6206     8.078600e+02 7.345001e+01
+0 6207     -1.109100e+02 -3.158002e+01
+7 6207     -1.980000e+02 5.790997e+01
+15 6207     -1.787700e+02 7.900000e+01
+0 6208     2.360000e+02 -3.145001e+01
+6 6208     2.267500e+02 5.671997e+01
+15 6208     2.908000e+02 1.264600e+02
+0 6209     2.775300e+02 -3.156000e+01
+7 6209     1.894200e+02 1.243500e+02
+0 6210     7.257500e+02 -3.232001e+01
+3 6210     5.502200e+02 -2.919900e+02
+7 6210     5.781300e+02 1.733900e+02
+9 6210     4.489399e+02 1.138600e+02
+12 6210     6.921400e+02 1.595600e+02
+0 6211     7.870699e+02 -3.177002e+01
+2 6211     7.493400e+02 4.288000e+01
+0 6212     2.377300e+02 -3.340002e+01
+7 6212     1.544500e+02 1.192000e+02
+10 6212     1.847400e+02 1.269500e+02
+0 6213     7.538000e+02 -3.340997e+01
+2 6213     7.158600e+02 2.409998e+01
+3 6213     5.778500e+02 -2.775500e+02
+7 6213     6.050699e+02 1.781700e+02
+9 6213     4.728500e+02 1.269300e+02
+10 6213     7.862100e+02 1.821600e+02
+12 6213     7.246600e+02 1.704600e+02
+0 6214     7.148101e+02 -3.384003e+01
+2 6214     6.760200e+02 2.530029e+00
+7 6214     5.678400e+02 1.698000e+02
+9 6214     4.399600e+02 1.078000e+02
+10 6214     7.403600e+02 1.770500e+02
+12 6214     6.804301e+02 1.541600e+02
+0 6215     -1.088200e+02 -3.512000e+01
+7 6215     -1.950200e+02 5.490997e+01
+0 6216     6.714700e+02 -3.509998e+01
+2 6216     6.302800e+02 -2.195001e+01
+3 6216     4.984200e+02 -3.262500e+02
+0 6217     6.702500e+02 -3.729999e+01
+3 6217     4.967800e+02 -3.290300e+02
+7 6217     5.250400e+02 1.576100e+02
+8 6217     5.747000e+02 -5.239999e+01
+9 6217     4.013600e+02 8.297000e+01
+12 6217     6.297900e+02 1.320000e+02
+0 6218     7.524200e+02 -3.722998e+01
+7 6218     6.042300e+02 1.739500e+02
+10 6218     7.846700e+02 1.768500e+02
+0 6219     -1.933100e+02 -3.906000e+01
+7 6219     -2.838800e+02 3.367999e+01
+10 6219     -3.141000e+02 7.547998e+01
+15 6219     -2.882600e+02 5.744000e+01
+0 6220     8.799200e+02 -3.901001e+01
+7 6220     7.238400e+02 1.973000e+02
+0 6221     2.935000e+02 -3.952002e+01
+7 6221     2.061000e+02 1.194600e+02
+0 6222     2.384600e+02 -4.013000e+01
+7 6222     1.565100e+02 1.125200e+02
+10 6222     1.866700e+02 1.191500e+02
+15 6222     2.955900e+02 1.145400e+02
+0 6223     6.997400e+02 -4.000000e+01
+6 6223     5.863101e+02 1.314900e+02
+7 6223     5.540100e+02 1.608400e+02
+9 6223     4.279600e+02 9.489001e+01
+10 6223     7.229399e+02 1.685600e+02
+0 6224     8.380800e+02 -3.996997e+01
+2 6224     8.026100e+02 6.004999e+01
+3 6224     6.584800e+02 -2.390700e+02
+12 6224     8.204700e+02 1.964900e+02
+0 6225     8.707600e+02 -4.009003e+01
+7 6225     7.155800e+02 1.943700e+02
+0 6226     1.048200e+02 -4.140997e+01
+2 6226     2.780500e+02 1.446002e+01
+6 6226     1.023200e+02 9.530029e+00
+7 6226     2.865997e+01 9.123001e+01
+8 6226     2.569800e+02 -3.685999e+01
+15 6226     1.122800e+02 9.509000e+01
+0 6227     2.399900e+02 -4.241998e+01
+6 6227     2.342700e+02 4.585999e+01
+7 6227     1.578700e+02 1.103800e+02
+10 6227     1.891000e+02 1.168800e+02
+0 6228     8.341200e+02 -4.323999e+01
+3 6228     6.556400e+02 -2.439700e+02
+7 6228     6.823199e+02 1.844400e+02
+12 6228     8.166600e+02 1.910600e+02
+0 6229     2.380500e+02 -4.322998e+01
+7 6229     1.566300e+02 1.096000e+02
+0 6230     2.380500e+02 -4.322998e+01
+7 6230     1.566300e+02 1.096000e+02
+0 6231     -1.804000e+02 -4.471002e+01
+6 6231     -2.636400e+02 -1.135700e+02
+7 6231     -2.691800e+02 3.096002e+01
+12 6231     -2.460900e+02 -5.163000e+01
+13 6231     1.999500e+02 -2.807400e+02
+0 6232     1.942100e+02 -4.572998e+01
+7 6232     1.162600e+02 1.009900e+02
+0 6233     6.927900e+02 -4.577002e+01
+2 6233     6.559700e+02 -2.102002e+01
+3 6233     5.228700e+02 -3.238600e+02
+6 6233     5.798300e+02 1.226200e+02
+8 6233     5.970100e+02 -5.051001e+01
+9 6233     4.236801e+02 8.704001e+01
+10 6233     7.152800e+02 1.611300e+02
+12 6233     6.578400e+02 1.319300e+02
+0 6234     -3.280800e+02 -4.587000e+01
+2 6234     -4.011600e+02 -2.936300e+02
+7 6234     -4.474000e+02 -1.684003e+01
+15 6234     -4.618600e+02 2.870001e+01
+0 6235     8.344200e+02 -4.619000e+01
+3 6235     6.570699e+02 -2.471700e+02
+9 6235     5.416200e+02 1.534000e+02
+0 6236     4.199829e-01 -4.627002e+01
+7 6236     -7.753998e+01 6.653003e+01
+0 6237     6.037600e+02 -4.922998e+01
+8 6237     5.162600e+02 -9.032001e+01
+10 6237     6.114900e+02 1.480200e+02
+15 6237     8.185200e+02 1.510300e+02
+0 6238     6.037600e+02 -4.922998e+01
+8 6238     5.162600e+02 -9.032001e+01
+15 6238     8.185200e+02 1.510300e+02
+0 6239     7.190699e+02 -4.884998e+01
+3 6239     5.495699e+02 -3.127600e+02
+9 6239     4.471801e+02 9.664001e+01
+0 6240     1.077600e+02 -4.989001e+01
+6 6240     1.084000e+02 5.999756e-01
+10 6240     3.676001e+01 9.408002e+01
+12 6240     1.235200e+02 4.997998e+01
+15 6240     1.174000e+02 8.401999e+01
+0 6241     6.765200e+02 -5.025000e+01
+2 6241     6.394100e+02 -3.546002e+01
+6 6241     5.610601e+02 1.105800e+02
+9 6241     4.100900e+02 7.465997e+01
+10 6241     6.964500e+02 1.540900e+02
+12 6241     6.398600e+02 1.199700e+02
+0 6242     -1.001300e+02 -5.047998e+01
+7 6242     -1.821000e+02 4.190997e+01
+0 6243     -3.925000e+01 -5.092999e+01
+8 6243     1.183000e+02 -9.064001e+01
+10 6243     -1.335500e+02 7.796997e+01
+0 6244     3.656899e+02 -5.134003e+01
+7 6244     2.711300e+02 1.157400e+02
+0 6245     8.342500e+02 -5.212000e+01
+9 6245     5.432700e+02 1.485300e+02
+0 6246     8.342500e+02 -5.212000e+01
+12 6246     8.192100e+02 1.818500e+02
+0 6247     -1.952700e+02 -5.292999e+01
+7 6247     -2.836400e+02 1.915002e+01
+10 6247     -3.150500e+02 5.821997e+01
+15 6247     -2.893700e+02 3.796997e+01
+0 6248     6.770800e+02 -5.295001e+01
+2 6248     6.418000e+02 -3.806000e+01
+3 6248     5.097200e+02 -3.410000e+02
+6 6248     5.633800e+02 1.072700e+02
+8 6248     5.848300e+02 -6.371002e+01
+12 6248     6.416500e+02 1.164400e+02
+0 6249     6.770800e+02 -5.295001e+01
+10 6249     6.976200e+02 1.510900e+02
+12 6249     6.416500e+02 1.164400e+02
+0 6250     3.360200e+02 -5.444000e+01
+7 6250     2.442900e+02 1.084800e+02
+15 6250     4.343000e+02 1.084400e+02
+0 6251     -3.787400e+02 -5.540997e+01
+2 6251     -4.602800e+02 -3.156100e+02
+7 6251     -4.983600e+02 -3.497998e+01
+12 6251     -5.554500e+02 -1.834400e+02
+15 6251     -5.302300e+02 8.799988e+00
+0 6252     -3.600100e+02 -5.496002e+01
+7 6252     -4.790100e+02 -3.162000e+01
+15 6252     -5.048000e+02 1.165997e+01
+0 6253     7.985100e+02 -5.578998e+01
+2 6253     7.678600e+02 2.453998e+01
+7 6253     6.504500e+02 1.656700e+02
+9 6253     5.153800e+02 1.292800e+02
+12 6253     7.807600e+02 1.630100e+02
+0 6254     3.510800e+02 -5.694000e+01
+7 6254     2.589000e+02 1.085000e+02
+12 6254     3.674600e+02 8.467999e+01
+15 6254     4.551801e+02 1.069800e+02
+0 6255     1.664000e+02 -5.765002e+01
+6 6255     1.710400e+02 9.950012e+00
+10 6255     1.052800e+02 9.164001e+01
+15 6255     1.980900e+02 8.176999e+01
+0 6256     7.043900e+02 -5.776001e+01
+7 6256     5.608900e+02 1.446100e+02
+0 6257     8.637400e+02 -5.904999e+01
+7 6257     7.118700e+02 1.754400e+02
+0 6258     -1.776100e+02 -5.928003e+01
+6 6258     -2.497100e+02 -1.271700e+02
+7 6258     -2.627200e+02 1.732001e+01
+10 6258     -2.935200e+02 5.358002e+01
+12 6258     -2.355900e+02 -6.541998e+01
+13 6258     2.066700e+02 -2.925900e+02
+15 6258     -2.651000e+02 3.217999e+01
+0 6259     7.911200e+02 -5.997998e+01
+3 6259     6.221600e+02 -2.826400e+02
+0 6260     -1.637000e+01 -6.119000e+01
+2 6260     1.450300e+02 -5.340002e+01
+7 6260     -9.266998e+01 4.790997e+01
+10 6260     -1.056100e+02 6.820001e+01
+15 6260     -4.803998e+01 5.157001e+01
+0 6261     -1.637000e+01 -6.119000e+01
+2 6261     1.450300e+02 -5.340002e+01
+7 6261     -9.266998e+01 4.790997e+01
+13 6261     3.618300e+02 -2.775700e+02
+0 6262     7.149700e+02 -6.082001e+01
+3 6262     5.500500e+02 -3.265500e+02
+7 6262     5.716300e+02 1.439500e+02
+9 6262     4.476500e+02 8.510001e+01
+0 6263     7.149700e+02 -6.082001e+01
+3 6263     5.500500e+02 -3.265500e+02
+7 6263     5.716300e+02 1.439500e+02
+12 6263     6.871801e+02 1.241100e+02
+0 6264     -1.788800e+02 -6.212000e+01
+2 6264     -6.588000e+01 -1.244700e+02
+3 6264     -1.429100e+02 -4.366200e+02
+6 6264     -2.514100e+02 -1.312200e+02
+7 6264     -2.636500e+02 1.414001e+01
+8 6264     -2.410999e+01 -1.439800e+02
+12 6264     -2.370100e+02 -6.934998e+01
+15 6264     -2.661100e+02 2.812000e+01
+0 6265     7.025900e+02 -6.188000e+01
+2 6265     6.715601e+02 -3.257001e+01
+7 6265     5.602900e+02 1.406200e+02
+9 6265     4.375100e+02 7.796002e+01
+12 6265     6.735699e+02 1.182500e+02
+0 6266     -2.290002e+01 -6.300000e+01
+2 6266     1.359200e+02 -5.933002e+01
+3 6266     5.087000e+01 -3.672000e+02
+7 6266     -9.927002e+01 4.453998e+01
+8 6266     1.393200e+02 -9.492999e+01
+10 6266     -1.131000e+02 6.554999e+01
+13 6266     3.556500e+02 -2.800400e+02
+15 6266     -5.648999e+01 4.840997e+01
+0 6267     7.136801e+02 -6.387000e+01
+7 6267     5.708199e+02 1.408200e+02
+10 6267     7.413700e+02 1.423300e+02
+0 6268     7.136801e+02 -6.387000e+01
+7 6268     5.708199e+02 1.408200e+02
+9 6268     4.471000e+02 8.194000e+01
+10 6268     7.413700e+02 1.423300e+02
+0 6269     7.136801e+02 -6.387000e+01
+2 6269     6.833400e+02 -2.815997e+01
+7 6269     5.708199e+02 1.408200e+02
+9 6269     4.471000e+02 8.194000e+01
+10 6269     7.413700e+02 1.423300e+02
+12 6269     6.864600e+02 1.207700e+02
+0 6270     7.095900e+02 -6.697998e+01
+2 6270     6.800699e+02 -3.401001e+01
+7 6270     5.671500e+02 1.370900e+02
+0 6271     -7.109985e+00 -6.790002e+01
+2 6271     1.589000e+02 -5.642999e+01
+10 6271     -9.397998e+01 6.175000e+01
+0 6272     -1.233002e+01 -7.135999e+01
+2 6272     1.522800e+02 -6.281000e+01
+3 6272     6.665997e+01 -3.704500e+02
+6 6272     -2.937000e+01 -7.165997e+01
+7 6272     -8.691998e+01 3.851001e+01
+10 6272     -9.979999e+01 5.672998e+01
+15 6272     -4.142999e+01 3.854999e+01
+0 6273     6.719200e+02 -7.135999e+01
+9 6273     4.132000e+02 5.404999e+01
+10 6273     6.927900e+02 1.288100e+02
+0 6274     2.908101e+02 -7.182001e+01
+6 6274     2.804800e+02 2.157001e+01
+10 6274     2.507200e+02 8.800000e+01
+12 6274     3.160100e+02 5.978998e+01
+13 6274     6.245601e+02 -2.637700e+02
+15 6274     3.730900e+02 7.859003e+01
+0 6275     7.760000e+02 -7.228998e+01
+7 6275     6.313900e+02 1.452300e+02
+0 6276     1.970100e+02 -7.359998e+01
+7 6276     1.230100e+02 7.367999e+01
+0 6277     4.153600e+02 -7.460999e+01
+7 6277     3.190699e+02 9.889001e+01
+15 6277     5.480900e+02 9.129001e+01
+0 6278     -1.680600e+02 -7.515997e+01
+7 6278     -2.486000e+02 3.809998e+00
+15 6278     -2.502200e+02 1.203003e+01
+0 6279     6.981899e+02 -7.559998e+01
+2 6279     6.702800e+02 -4.954999e+01
+3 6279     5.386801e+02 -3.511000e+02
+0 6280     9.012000e+01 -7.598999e+01
+8 6280     2.529800e+02 -7.102002e+01
+10 6280     1.860999e+01 6.233002e+01
+15 6280     9.708002e+01 4.609998e+01
+0 6281     -4.208200e+02 -7.790002e+01
+2 6281     -5.009100e+02 -3.479700e+02
+7 6281     -5.372000e+02 -6.519000e+01
+10 6281     -5.778000e+02 6.289978e+00
+13 6281     -7.510999e+01 -3.470000e+02
+0 6282     7.133400e+02 -7.809998e+01
+2 6282     6.870800e+02 -4.363000e+01
+7 6282     5.721801e+02 1.271500e+02
+9 6282     4.501000e+02 6.985999e+01
+10 6282     7.418800e+02 1.257500e+02
+0 6283     -1.750900e+02 -8.009998e+01
+2 6283     -5.858002e+01 -1.481000e+02
+3 6283     -1.360200e+02 -4.598300e+02
+4 6283     -3.057500e+02 -2.724300e+02
+6 6283     -2.433200e+02 -1.534600e+02
+8 6283     -1.846997e+01 -1.622100e+02
+9 6283     -1.497500e+02 -4.217999e+01
+12 6283     -2.284900e+02 -9.148999e+01
+15 6283     -2.583200e+02 4.799988e+00
+0 6284     7.772900e+02 -8.184998e+01
+2 6284     7.547400e+02 -1.196002e+01
+7 6284     6.341400e+02 1.370700e+02
+12 6284     7.638000e+02 1.273500e+02
+0 6285     7.480200e+02 -8.248999e+01
+7 6285     6.061000e+02 1.301200e+02
+9 6285     4.814100e+02 8.354001e+01
+0 6286     3.883002e+01 -8.396002e+01
+2 6286     2.205800e+02 -5.356000e+01
+3 6286     1.318500e+02 -3.589100e+02
+6 6286     4.000000e+01 -6.353998e+01
+7 6286     -3.121002e+01 3.621002e+01
+8 6286     2.073000e+02 -9.139001e+01
+10 6286     -3.925000e+01 4.770001e+01
+12 6286     5.077002e+01 -1.259003e+01
+13 6286     4.177400e+02 -2.910800e+02
+0 6287     3.883002e+01 -8.396002e+01
+4 6287     -3.359300e+02 -4.410000e+02
+7 6287     -3.121002e+01 3.621002e+01
+8 6287     2.073000e+02 -9.139001e+01
+9 6287     7.796997e+01 4.969000e+01
+0 6288     2.613800e+02 -8.452002e+01
+7 6288     1.848800e+02 7.328998e+01
+0 6289     6.458400e+02 -8.440002e+01
+7 6289     5.074100e+02 1.070800e+02
+0 6290     -8.679999e+01 -8.515997e+01
+2 6290     7.117999e+01 -1.023900e+02
+13 6290     3.000900e+02 -3.051500e+02
+15 6290     -1.396800e+02 9.859985e+00
+0 6291     5.875000e+01 -8.664001e+01
+9 6291     9.740002e+01 5.378998e+01
+0 6292     -4.131100e+02 -8.846997e+01
+7 6292     -5.265100e+02 -7.400000e+01
+10 6292     -5.672600e+02 -5.599976e+00
+15 6292     -5.731400e+02 -4.070001e+01
+0 6293     -4.131100e+02 -8.846997e+01
+7 6293     -5.265100e+02 -7.400000e+01
+10 6293     -5.672600e+02 -5.599976e+00
+15 6293     -5.731400e+02 -4.070001e+01
+0 6294     -1.535700e+02 -8.916998e+01
+6 6294     -1.990500e+02 -1.487100e+02
+7 6294     -2.302400e+02 -6.890015e+00
+12 6294     -1.911400e+02 -8.865997e+01
+0 6295     6.598800e+02 -8.965002e+01
+2 6295     6.334200e+02 -8.566998e+01
+6 6295     5.528199e+02 5.942999e+01
+9 6295     4.072300e+02 3.227002e+01
+0 6296     1.056700e+02 -9.014001e+01
+3 6296     2.005800e+02 -3.430000e+02
+6 6296     1.173900e+02 -4.646002e+01
+8 6296     2.684900e+02 -8.133002e+01
+10 6296     3.808002e+01 4.759998e+01
+15 6296     1.199600e+02 2.897998e+01
+0 6297     1.849399e+02 -8.990002e+01
+3 6297     2.668800e+02 -3.271000e+02
+6 6297     1.982600e+02 -2.127002e+01
+7 6297     1.139700e+02 5.567999e+01
+8 6297     3.306700e+02 -6.853998e+01
+12 6297     2.193199e+02 2.271002e+01
+0 6298     6.964600e+02 -9.003998e+01
+2 6298     6.732500e+02 -6.501001e+01
+12 6298     6.736600e+02 8.391998e+01
+0 6299     1.613400e+02 -9.319000e+01
+6 6299     1.755800e+02 -3.167999e+01
+10 6299     1.028200e+02 5.045001e+01
+15 6299     1.963000e+02 3.246997e+01
+0 6300     -6.484998e+01 -9.364001e+01
+2 6300     1.058000e+02 -9.908002e+01
+7 6300     -1.353800e+02 6.950012e+00
+10 6300     -1.585700e+02 2.532001e+01
+13 6300     3.239100e+02 -3.097100e+02
+15 6300     -1.092600e+02 1.020020e+00
+0 6301     3.803800e+02 -9.346997e+01
+7 6301     2.912500e+02 7.671997e+01
+0 6302     -2.709998e+01 -9.514001e+01
+10 6302     -1.152200e+02 2.827002e+01
+12 6302     -2.659998e+01 -4.782001e+01
+0 6303     -2.709998e+01 -9.514001e+01
+12 6303     -2.659998e+01 -4.782001e+01
+0 6304     8.289800e+02 -9.507001e+01
+7 6304     6.838101e+02 1.348600e+02
+0 6305     -6.198999e+01 -9.559003e+01
+7 6305     -1.320800e+02 5.739990e+00
+15 6305     -1.051200e+02 -9.500122e-01
+0 6306     1.565601e+02 -9.689001e+01
+6 6306     1.718900e+02 -3.771002e+01
+7 6306     8.777002e+01 4.423999e+01
+12 6306     1.899301e+02 6.859985e+00
+15 6306     1.905500e+02 2.671997e+01
+0 6307     6.623800e+02 -9.689001e+01
+7 6307     5.253800e+02 9.839001e+01
+10 6307     6.838600e+02 9.863000e+01
+12 6307     6.358800e+02 6.192999e+01
+0 6308     6.650300e+02 -9.726001e+01
+6 6308     5.608900e+02 5.320001e+01
+7 6308     5.278600e+02 9.894000e+01
+0 6309     -1.411600e+02 -9.759998e+01
+7 6309     -2.153200e+02 -1.277002e+01
+0 6310     -1.685700e+02 -9.853998e+01
+4 6310     -3.195800e+02 -2.755400e+02
+10 6310     -2.782800e+02 8.840027e+00
+15 6310     -2.466900e+02 -1.985999e+01
+0 6311     3.824600e+02 -9.862000e+01
+7 6311     2.945000e+02 7.244000e+01
+15 6311     5.041899e+02 5.432001e+01
+0 6312     6.926000e+02 -9.962000e+01
+2 6312     6.716700e+02 -7.720001e+01
+0 6313     4.233400e+02 -1.003700e+02
+7 6313     3.328900e+02 7.687000e+01
+0 6314     8.354100e+02 -1.032700e+02
+2 6314     8.190699e+02 -3.489990e+00
+9 6314     5.576801e+02 1.079800e+02
+0 6315     -1.486100e+02 -1.045600e+02
+6 6315     -1.809500e+02 -1.624600e+02
+7 6315     -2.210200e+02 -2.050000e+01
+0 6316     3.144301e+02 -1.052400e+02
+6 6316     3.200000e+02 -5.489990e+00
+0 6317     1.383199e+02 -1.053700e+02
+3 6317     2.342200e+02 -3.519800e+02
+10 6317     7.792999e+01 3.347998e+01
+0 6318     -4.759998e+01 -1.061100e+02
+2 6318     1.331200e+02 -1.041600e+02
+3 6318     5.187000e+01 -4.101000e+02
+7 6318     -1.151200e+02 -1.890015e+00
+10 6318     -1.372400e+02 1.314001e+01
+15 6318     -8.465997e+01 -1.323999e+01
+0 6319     -4.759998e+01 -1.061100e+02
+2 6319     1.331200e+02 -1.041600e+02
+3 6319     5.187000e+01 -4.101000e+02
+6 6319     -5.217999e+01 -1.213200e+02
+7 6319     -1.151200e+02 -1.890015e+00
+8 6319     1.342500e+02 -1.333600e+02
+12 6319     -4.732001e+01 -6.738000e+01
+15 6319     -8.465997e+01 -1.323999e+01
+0 6320     2.373700e+02 -1.061200e+02
+7 6320     1.652700e+02 4.690997e+01
+10 6320     1.923500e+02 4.331000e+01
+15 6320     3.029700e+02 2.497998e+01
+0 6321     1.107001e+01 -1.079600e+02
+7 6321     -5.515002e+01 7.570007e+00
+0 6322     -3.201001e+01 -1.085700e+02
+7 6322     -9.804999e+01 -8.200073e-01
+15 6322     -6.402002e+01 -1.471997e+01
+0 6323     7.009800e+02 -1.096800e+02
+2 6323     6.839500e+02 -8.351001e+01
+9 6323     4.485699e+02 3.646997e+01
+0 6324     7.319200e+02 -1.113700e+02
+2 6324     7.172000e+02 -6.790002e+01
+0 6325     7.319200e+02 -1.113700e+02
+2 6325     7.172000e+02 -6.790002e+01
+9 6325     4.765400e+02 5.035999e+01
+10 6325     7.663700e+02 8.947998e+01
+12 6325     7.204700e+02 7.425000e+01
+0 6326     1.834700e+02 -1.120600e+02
+2 6326     3.704900e+02 -5.017999e+01
+6 6326     2.017000e+02 -4.776001e+01
+7 6326     1.155000e+02 3.296997e+01
+8 6326     3.337600e+02 -9.015997e+01
+0 6327     -4.795001e+01 -1.125400e+02
+3 6327     5.276001e+01 -4.182500e+02
+6 6327     -5.122998e+01 -1.292900e+02
+7 6327     -1.146500e+02 -8.479980e+00
+10 6327     -1.369800e+02 5.549988e+00
+12 6327     -4.622998e+01 -7.563000e+01
+13 6327     3.417000e+02 -3.245900e+02
+15 6327     -8.414001e+01 -2.197998e+01
+0 6328     3.423199e+02 -1.123800e+02
+7 6328     2.620100e+02 5.478003e+01
+0 6329     8.517200e+02 -1.138600e+02
+7 6329     7.076600e+02 1.212400e+02
+0 6330     8.801200e+02 -1.146700e+02
+7 6330     7.372800e+02 1.310300e+02
+9 6330     6.085500e+02 1.378200e+02
+0 6331     7.165997e+01 -1.152000e+02
+2 6331     2.653199e+02 -7.872998e+01
+7 6331     6.849976e+00 1.071997e+01
+13 6331     4.502800e+02 -3.163900e+02
+15 6331     7.770001e+01 -9.559998e+00
+0 6332     -1.266600e+02 -1.168200e+02
+7 6332     -1.954000e+02 -2.857001e+01
+10 6332     -2.274600e+02 -7.989990e+00
+0 6333     -1.587000e+01 -1.184600e+02
+7 6333     -7.935999e+01 -7.219971e+00
+15 6333     -4.071002e+01 -2.597998e+01
+0 6334     -1.587000e+01 -1.184600e+02
+7 6334     -7.935999e+01 -7.219971e+00
+15 6334     -4.071002e+01 -2.597998e+01
+0 6335     4.067700e+02 -1.194000e+02
+7 6335     3.225601e+02 5.728003e+01
+0 6336     -1.164500e+02 -1.206700e+02
+7 6336     -1.839700e+02 -3.025000e+01
+10 6336     -2.153200e+02 -1.121997e+01
+12 6336     -1.299300e+02 -1.096300e+02
+15 6336     -1.750400e+02 -4.220001e+01
+0 6337     -1.132000e+02 -1.213500e+02
+7 6337     -1.810300e+02 -3.046002e+01
+10 6337     -2.115900e+02 -1.175000e+01
+15 6337     -1.708300e+02 -4.279999e+01
+0 6338     2.234800e+02 -1.218200e+02
+7 6338     1.550000e+02 2.933002e+01
+15 6338     2.853900e+02 1.460022e+00
+0 6339     7.484800e+02 -1.221400e+02
+2 6339     7.371300e+02 -6.948999e+01
+7 6339     6.119399e+02 9.226999e+01
+0 6340     -2.962100e+02 -1.232600e+02
+2 6340     -3.064600e+02 -3.509800e+02
+8 6340     -2.068100e+02 -3.103100e+02
+0 6341     8.179399e+02 -1.241800e+02
+2 6341     8.085601e+02 -3.357001e+01
+7 6341     6.776400e+02 1.045500e+02
+0 6342     -4.064100e+02 -1.259500e+02
+7 6342     -5.102600e+02 -1.092000e+02
+15 6342     -5.592100e+02 -9.040997e+01
+0 6343     -1.515900e+02 -1.258400e+02
+7 6343     -2.181900e+02 -4.162000e+01
+10 6343     -2.554500e+02 -2.139001e+01
+15 6343     -2.218200e+02 -5.416998e+01
+0 6344     7.272400e+02 -1.267000e+02
+7 6344     5.919800e+02 8.334000e+01
+0 6345     4.081899e+02 -1.275400e+02
+7 6345     3.256500e+02 5.001001e+01
+0 6346     1.502300e+02 -1.279700e+02
+7 6346     8.603003e+01 1.182001e+01
+10 6346     9.348999e+01 8.669983e+00
+15 6346     1.854600e+02 -1.633002e+01
+0 6347     8.761400e+02 -1.292400e+02
+9 6347     6.094200e+02 1.222200e+02
+0 6348     8.794500e+02 -1.290400e+02
+7 6348     7.380200e+02 1.167500e+02
+0 6349     7.644301e+02 -1.305000e+02
+2 6349     7.569301e+02 -6.920001e+01
+12 6349     7.617500e+02 6.687000e+01
+0 6350     -7.735999e+01 -1.308800e+02
+7 6350     -1.422400e+02 -3.306000e+01
+10 6350     -1.690600e+02 -1.871002e+01
+12 6350     -7.844000e+01 -1.089200e+02
+15 6350     -1.211100e+02 -5.072998e+01
+0 6351     7.371997e+01 -1.309000e+02
+6 6351     9.854999e+01 -1.024900e+02
+7 6351     1.266998e+01 -3.460022e+00
+12 6351     1.079400e+02 -5.496002e+01
+15 6351     8.201001e+01 -3.035999e+01
+0 6352     7.493800e+02 -1.336300e+02
+2 6352     7.422400e+02 -8.076001e+01
+9 6352     4.968900e+02 4.076001e+01
+12 6352     7.455000e+02 5.734998e+01
+0 6353     3.841801e+02 -1.341500e+02
+6 6353     3.914300e+02 -1.957001e+01
+12 6353     4.323400e+02 1.203998e+01
+0 6354     -1.229100e+02 -1.371400e+02
+7 6354     -1.861500e+02 -4.712000e+01
+15 6354     -1.818700e+02 -6.545001e+01
+0 6355     -4.690002e+00 -1.368100e+02
+2 6355     1.996500e+02 -1.164200e+02
+6 6355     1.479999e+01 -1.372600e+02
+7 6355     -6.491998e+01 -2.356000e+01
+12 6355     1.803998e+01 -8.684003e+01
+0 6356     -4.690002e+00 -1.368100e+02
+2 6356     1.996500e+02 -1.164200e+02
+6 6356     1.479999e+01 -1.372600e+02
+10 6356     -8.434998e+01 -1.812000e+01
+12 6356     1.803998e+01 -8.684003e+01
+15 6356     -2.307001e+01 -4.910999e+01
+0 6357     6.993800e+02 -1.367300e+02
+2 6357     6.903800e+02 -1.127200e+02
+3 6357     5.628900e+02 -4.129100e+02
+7 6357     5.667600e+02 6.796997e+01
+12 6357     6.892900e+02 3.290002e+01
+0 6358     8.354900e+02 -1.372000e+02
+7 6358     6.954000e+02 9.612000e+01
+0 6359     7.376700e+02 -1.391500e+02
+2 6359     7.313900e+02 -9.292999e+01
+7 6359     6.034700e+02 7.404999e+01
+0 6360     1.878400e+02 -1.394300e+02
+10 6360     1.382600e+02 -3.800049e-01
+12 6360     2.387400e+02 -3.284003e+01
+0 6361     -2.502002e+01 -1.403600e+02
+2 6361     1.722000e+02 -1.338300e+02
+3 6361     9.069000e+01 -4.375300e+02
+6 6361     -1.234998e+01 -1.521300e+02
+7 6361     -8.596002e+01 -3.191998e+01
+8 6361     1.655900e+02 -1.580900e+02
+10 6361     -1.075800e+02 -2.446997e+01
+12 6361     -8.789978e+00 -1.003400e+02
+0 6362     8.276300e+02 -1.407600e+02
+2 6362     8.234200e+02 -4.522998e+01
+7 6362     6.885800e+02 9.089001e+01
+9 6362     5.624100e+02 7.379999e+01
+0 6363     -1.042900e+02 -1.425500e+02
+2 6363     8.535999e+01 -1.592100e+02
+3 6363     9.429993e+00 -4.646600e+02
+6 6363     -1.029000e+02 -1.842300e+02
+7 6363     -1.660000e+02 -4.871997e+01
+10 6363     -1.987200e+02 -3.509003e+01
+0 6364     1.174400e+02 -1.436300e+02
+12 6364     1.635800e+02 -5.553998e+01
+0 6365     8.264500e+02 -1.441800e+02
+2 6365     8.234000e+02 -4.919000e+01
+3 6365     6.874700e+02 -3.441200e+02
+7 6365     6.880200e+02 8.735001e+01
+9 6365     5.628400e+02 7.023999e+01
+0 6366     5.221801e+02 -1.441400e+02
+6 6366     4.443900e+02 -3.771997e+01
+7 6366     4.080100e+02 3.346997e+01
+0 6367     -3.025300e+02 -1.446200e+02
+7 6367     -3.963800e+02 -1.081900e+02
+12 6367     -4.173900e+02 -2.568900e+02
+0 6368     -3.145200e+02 -1.474600e+02
+7 6368     -4.084800e+02 -1.131800e+02
+15 6368     -4.305700e+02 -1.062200e+02
+0 6369     -1.073300e+02 -1.482300e+02
+7 6369     -1.676500e+02 -5.494000e+01
+13 6369     2.946600e+02 -3.612500e+02
+0 6370     7.509700e+02 -1.481800e+02
+7 6370     6.177100e+02 6.809003e+01
+0 6371     7.509700e+02 -1.481800e+02
+7 6371     6.177100e+02 6.809003e+01
+10 6371     7.911899e+02 4.840002e+01
+12 6371     7.511400e+02 4.160999e+01
+0 6372     -1.177600e+02 -1.524600e+02
+2 6372     6.640997e+01 -1.818500e+02
+6 6372     -1.211700e+02 -2.035500e+02
+7 6372     -1.795100e+02 -6.232001e+01
+8 6372     7.756000e+01 -1.957300e+02
+10 6372     -2.137200e+02 -4.789001e+01
+12 6372     -1.210700e+02 -1.467700e+02
+0 6373     -1.146100e+02 -1.524600e+02
+2 6373     7.182001e+01 -1.788900e+02
+3 6373     -3.020020e+00 -4.848300e+02
+4 6373     -3.632200e+02 -3.195900e+02
+7 6373     -1.758700e+02 -6.159998e+01
+8 6373     8.184998e+01 -1.937000e+02
+10 6373     -2.099600e+02 -4.813000e+01
+13 6373     2.850601e+02 -3.664700e+02
+15 6373     -1.684500e+02 -8.508002e+01
+0 6374     3.802002e+01 -1.525300e+02
+2 6374     2.520000e+02 -1.201400e+02
+6 6374     6.862000e+01 -1.390400e+02
+7 6374     -1.879999e+01 -3.121002e+01
+10 6374     -3.334003e+01 -3.121997e+01
+12 6374     7.396002e+01 -9.073999e+01
+15 6374     3.678998e+01 -6.438000e+01
+0 6375     7.215800e+02 -1.532400e+02
+2 6375     7.196500e+02 -1.174800e+02
+7 6375     5.901899e+02 5.687000e+01
+9 6375     4.794100e+02 9.570007e+00
+0 6376     8.048300e+02 -1.533400e+02
+7 6376     6.689500e+02 7.427002e+01
+0 6377     8.740100e+02 -1.532600e+02
+3 6377     7.333700e+02 -3.263900e+02
+7 6377     7.330100e+02 8.850000e+01
+0 6378     8.774700e+02 -1.539100e+02
+7 6378     7.360800e+02 8.845999e+01
+9 6378     6.047400e+02 8.616000e+01
+0 6379     8.636801e+02 -1.542600e+02
+7 6379     7.237800e+02 8.560999e+01
+0 6380     7.903998e+01 -1.553600e+02
+2 6380     2.983101e+02 -1.076400e+02
+7 6380     2.320001e+01 -2.598999e+01
+15 6380     9.216998e+01 -6.262000e+01
+0 6381     8.425300e+02 -1.553400e+02
+9 6381     5.781801e+02 6.867999e+01
+0 6382     -8.090002e+01 -1.564300e+02
+12 6382     -6.914001e+01 -1.349200e+02
+0 6383     3.900000e+01 -1.570800e+02
+2 6383     2.537000e+02 -1.255900e+02
+3 6383     1.687100e+02 -4.280601e+02
+6 6383     7.066998e+01 -1.444100e+02
+7 6383     -1.717999e+01 -3.581000e+01
+8 6383     2.319400e+02 -1.531800e+02
+10 6383     -3.146997e+01 -3.664001e+01
+12 6383     7.614001e+01 -9.656000e+01
+15 6383     3.857001e+01 -7.040997e+01
+0 6384     8.105699e+02 -1.568900e+02
+7 6384     6.748500e+02 7.210999e+01
+9 6384     5.540200e+02 5.190002e+01
+0 6385     7.689600e+02 -1.591400e+02
+7 6385     6.361700e+02 6.135999e+01
+10 6385     8.139301e+02 3.744000e+01
+0 6386     7.286200e+02 -1.607200e+02
+2 6386     7.279399e+02 -1.210200e+02
+9 6386     4.865800e+02 6.950012e+00
+12 6386     7.288800e+02 1.829999e+01
+0 6387     2.903998e+01 -1.609000e+02
+2 6387     2.429100e+02 -1.348700e+02
+6 6387     5.956000e+01 -1.532700e+02
+8 6387     2.226700e+02 -1.602200e+02
+0 6388     7.291300e+02 -1.633700e+02
+2 6388     7.302700e+02 -1.233800e+02
+0 6389     2.071899e+02 -1.639600e+02
+6 6389     2.497600e+02 -9.460999e+01
+7 6389     1.488700e+02 -1.270001e+01
+10 6389     1.632400e+02 -2.673999e+01
+12 6389     2.688000e+02 -5.427002e+01
+15 6389     2.681700e+02 -5.748999e+01
+0 6390     2.094399e+02 -1.655900e+02
+6 6390     2.522100e+02 -9.603003e+01
+10 6390     1.657900e+02 -2.835999e+01
+12 6390     2.716200e+02 -5.646997e+01
+15 6390     2.708800e+02 -5.990997e+01
+0 6391     8.515699e+02 -1.665900e+02
+7 6391     7.137600e+02 7.115997e+01
+0 6392     8.515699e+02 -1.665900e+02
+7 6392     7.137600e+02 7.115997e+01
+0 6393     8.643900e+02 -1.700900e+02
+7 6393     7.267500e+02 7.115997e+01
+9 6393     5.994700e+02 6.748999e+01
+0 6394     7.350000e+02 -1.712100e+02
+2 6394     7.388300e+02 -1.287300e+02
+7 6394     6.051899e+02 4.247998e+01
+0 6395     3.275100e+02 -1.723700e+02
+7 6395     2.624500e+02 -3.260010e+00
+0 6396     8.657900e+02 -1.730300e+02
+3 6396     7.344600e+02 -3.501900e+02
+9 6396     6.015601e+02 6.526001e+01
+0 6397     3.661899e+02 -1.730900e+02
+7 6397     2.983800e+02 2.099976e+00
+15 6397     4.894399e+02 -4.941998e+01
+0 6398     8.630200e+02 -1.733700e+02
+3 6398     7.317600e+02 -3.517500e+02
+7 6398     7.252700e+02 6.740997e+01
+9 6398     5.990900e+02 6.359003e+01
+0 6399     -1.613300e+02 -1.750200e+02
+6 6399     -2.054900e+02 -2.727000e+02
+7 6399     -2.299900e+02 -1.008600e+02
+8 6399     7.200012e+00 -2.641400e+02
+10 6399     -2.614400e+02 -7.854999e+01
+13 6399     2.211700e+02 -4.000700e+02
+15 6399     -2.251300e+02 -1.221700e+02
+0 6400     1.270900e+02 -1.752600e+02
+7 6400     7.340997e+01 -3.896997e+01
+15 6400     1.601300e+02 -8.397998e+01
+0 6401     7.899200e+02 -1.756600e+02
+2 6401     7.972600e+02 -1.016200e+02
+3 6401     6.662300e+02 -3.970200e+02
+7 6401     6.579600e+02 5.007001e+01
+9 6401     5.422600e+02 2.613000e+01
+0 6402     7.389001e+01 -1.769100e+02
+6 6402     1.150300e+02 -1.547600e+02
+10 6402     1.065997e+01 -5.600000e+01
+15 6402     8.827002e+01 -9.265997e+01
+0 6403     7.927500e+02 -1.772900e+02
+2 6403     8.005100e+02 -1.015000e+02
+3 6403     6.695900e+02 -3.965700e+02
+0 6404     8.704700e+02 -1.806100e+02
+7 6404     7.335300e+02 6.191998e+01
+9 6404     6.066500e+02 6.103998e+01
+0 6405     8.137100e+02 -1.829600e+02
+2 6405     8.237400e+02 -9.541998e+01
+0 6406     3.654399e+02 -1.833500e+02
+7 6406     3.003500e+02 -6.950012e+00
+0 6407     8.253400e+02 -1.844900e+02
+3 6407     7.027800e+02 -3.842100e+02
+7 6407     6.921300e+02 4.903998e+01
+9 6407     5.735200e+02 3.626001e+01
+0 6408     8.684500e+02 -1.844700e+02
+7 6408     7.316899e+02 5.787000e+01
+9 6408     6.064100e+02 5.710999e+01
+0 6409     8.684500e+02 -1.844700e+02
+3 6409     7.410000e+02 -3.593300e+02
+7 6409     7.316899e+02 5.787000e+01
+9 6409     6.064100e+02 5.710999e+01
+0 6410     3.486200e+02 -1.885500e+02
+2 6410     5.446801e+02 -9.379999e+01
+6 6410     3.910300e+02 -8.010999e+01
+8 6410     4.812400e+02 -1.276800e+02
+0 6411     1.451700e+02 -1.887500e+02
+2 6411     3.692000e+02 -1.334700e+02
+7 6411     9.240997e+01 -4.856000e+01
+15 6411     1.867900e+02 -9.933002e+01
+0 6412     8.180900e+02 -1.888000e+02
+2 6412     8.297300e+02 -9.920001e+01
+7 6412     6.858900e+02 4.342999e+01
+0 6413     9.830017e+00 -1.921500e+02
+12 6413     5.546997e+01 -1.436500e+02
+0 6414     2.651500e+02 -1.930700e+02
+12 6414     3.388101e+02 -7.369000e+01
+0 6415     8.407200e+02 -1.930400e+02
+3 6415     7.198700e+02 -3.832100e+02
+9 6415     5.876000e+02 3.712000e+01
+0 6416     3.352000e+02 -1.937300e+02
+10 6416     3.129500e+02 -4.765997e+01
+12 6416     4.119800e+02 -5.701001e+01
+15 6416     4.488700e+02 -8.156000e+01
+0 6417     2.841100e+02 -1.942500e+02
+6 6417     3.333600e+02 -1.051700e+02
+10 6417     2.547300e+02 -5.314001e+01
+12 6417     3.591000e+02 -7.040002e+01
+15 6417     3.779800e+02 -8.872998e+01
+0 6418     1.067999e+01 -1.965200e+02
+7 6418     -3.759003e+01 -7.941998e+01
+15 6418     5.219971e+00 -1.277100e+02
+0 6419     7.744600e+02 -1.980800e+02
+7 6419     6.460300e+02 2.570001e+01
+12 6419     7.897500e+02 -2.429993e+00
+0 6420     3.279900e+02 -2.002400e+02
+7 6420     2.685699e+02 -2.953003e+01
+15 6420     4.393500e+02 -9.214001e+01
+0 6421     7.728300e+02 -2.001000e+02
+12 6421     7.897100e+02 -6.859985e+00
+0 6422     8.329800e+02 -2.010700e+02
+7 6422     7.014900e+02 3.497998e+01
+0 6423     -1.315000e+02 -2.015700e+02
+4 6423     -3.995200e+02 -2.958900e+02
+15 6423     -1.824300e+02 -1.535000e+02
+0 6424     -1.315000e+02 -2.015700e+02
+3 6424     -3.771002e+01 -5.859301e+02
+6 6424     -1.460400e+02 -2.827800e+02
+8 6424     5.564001e+01 -2.695800e+02
+9 6424     -6.377002e+01 -1.444900e+02
+12 6424     -1.382000e+02 -2.262300e+02
+13 6424     2.591300e+02 -4.181600e+02
+15 6424     -1.824300e+02 -1.535000e+02
+0 6425     1.637000e+01 -2.014100e+02
+10 6425     -5.291998e+01 -9.042999e+01
+12 6425     6.815997e+01 -1.520200e+02
+0 6426     8.322998e+01 -2.020000e+02
+7 6426     3.596002e+01 -7.166998e+01
+12 6426     1.438900e+02 -1.328200e+02
+0 6427     3.334600e+02 -2.018300e+02
+7 6427     2.732600e+02 -3.052002e+01
+10 6427     3.119500e+02 -5.679999e+01
+12 6427     4.107700e+02 -6.841998e+01
+15 6427     4.472900e+02 -9.303998e+01
+0 6428     9.960022e+00 -2.027000e+02
+6 6428     6.323999e+01 -2.026300e+02
+7 6428     -3.665002e+01 -8.553003e+01
+10 6428     -6.042999e+01 -9.254999e+01
+12 6428     6.140997e+01 -1.550200e+02
+15 6428     4.669983e+00 -1.361400e+02
+0 6429     -3.398100e+02 -2.030300e+02
+7 6429     -4.214900e+02 -1.726200e+02
+0 6430     -4.043100e+02 -2.045600e+02
+2 6430     -3.887800e+02 -4.572300e+02
+7 6430     -4.885700e+02 -1.865200e+02
+12 6430     -5.206400e+02 -3.568000e+02
+15 6430     -5.470600e+02 -1.967600e+02
+0 6431     1.687000e+01 -2.047300e+02
+6 6431     7.203003e+01 -2.019500e+02
+10 6431     -5.215997e+01 -9.381000e+01
+12 6431     7.053998e+01 -1.551000e+02
+15 6431     1.427002e+01 -1.374200e+02
+0 6432     7.852600e+02 -2.060300e+02
+2 6432     8.024700e+02 -1.363500e+02
+0 6433     8.686300e+02 -2.062200e+02
+3 6433     7.501200e+02 -3.813200e+02
+7 6433     7.345699e+02 3.728003e+01
+9 6433     6.126801e+02 3.910999e+01
+0 6434     7.823500e+02 -2.071200e+02
+2 6434     7.996899e+02 -1.387500e+02
+3 6434     6.730500e+02 -4.338800e+02
+12 6434     8.026100e+02 -1.071997e+01
+0 6435     -1.340997e+01 -2.081000e+02
+3 6435     1.488900e+02 -4.871600e+02
+6 6435     3.858002e+01 -2.180300e+02
+8 6435     2.066500e+02 -2.050200e+02
+12 6435     3.517999e+01 -1.696500e+02
+0 6436     2.930100e+02 -2.097200e+02
+7 6436     2.389800e+02 -4.300000e+01
+15 6436     3.920699e+02 -1.088900e+02
+0 6437     7.819600e+02 -2.095900e+02
+2 6437     8.000699e+02 -1.416300e+02
+7 6437     6.549500e+02 1.587000e+01
+12 6437     8.031300e+02 -1.407001e+01
+0 6438     8.438199e+02 -2.111900e+02
+3 6438     7.305601e+02 -4.007400e+02
+7 6438     7.126200e+02 2.759003e+01
+9 6438     5.956400e+02 2.315002e+01
+0 6439     2.168199e+02 -2.115200e+02
+7 6439     1.671500e+02 -5.763000e+01
+10 6439     1.787000e+02 -8.067999e+01
+15 6439     2.871300e+02 -1.209400e+02
+0 6440     -2.071997e+01 -2.121100e+02
+3 6440     1.406900e+02 -4.973700e+02
+4 6440     -4.232800e+02 -3.940400e+02
+6 6440     2.934998e+01 -2.268700e+02
+7 6440     -6.651001e+01 -1.011900e+02
+10 6440     -9.551001e+01 -1.059500e+02
+12 6440     2.579999e+01 -1.782800e+02
+15 6440     -3.470001e+01 -1.526400e+02
+0 6441     2.809800e+02 -2.116700e+02
+2 6441     5.070400e+02 -1.197600e+02
+6 6441     3.419600e+02 -1.215800e+02
+10 6441     2.530800e+02 -7.354999e+01
+12 6441     3.654100e+02 -8.721002e+01
+13 6441     6.497700e+02 -3.838000e+02
+15 6441     3.755000e+02 -1.128300e+02
+0 6442     -3.494900e+02 -2.151700e+02
+7 6442     -4.280600e+02 -1.860200e+02
+0 6443     -3.494900e+02 -2.151700e+02
+7 6443     -4.280600e+02 -1.860200e+02
+0 6444     8.505699e+02 -2.156500e+02
+3 6444     7.381700e+02 -4.003500e+02
+0 6445     9.176001e+01 -2.170300e+02
+7 6445     4.771997e+01 -8.390997e+01
+0 6446     9.176001e+01 -2.170300e+02
+7 6446     4.771997e+01 -8.390997e+01
+0 6447     -1.144000e+01 -2.182000e+02
+3 6447     1.512700e+02 -5.022700e+02
+6 6447     4.138000e+01 -2.311899e+02
+7 6447     -5.628003e+01 -1.057500e+02
+8 6447     2.089200e+02 -2.173000e+02
+10 6447     -8.271997e+01 -1.126200e+02
+12 6447     3.838000e+01 -1.831600e+02
+13 6447     3.933101e+02 -4.137700e+02
+15 6447     -2.148999e+01 -1.597000e+02
+0 6448     7.810400e+02 -2.201300e+02
+2 6448     8.026300e+02 -1.530600e+02
+12 6448     8.042700e+02 -2.571002e+01
+0 6449     2.009000e+02 -2.209100e+02
+6 6449     2.693800e+02 -1.555699e+02
+13 6449     5.835400e+02 -3.974900e+02
+0 6450     1.179300e+02 -2.241000e+02
+6 6450     1.889200e+02 -1.859301e+02
+12 6450     1.944100e+02 -1.448000e+02
+0 6451     -3.446100e+02 -2.259900e+02
+2 6451     -2.942400e+02 -4.569100e+02
+6 6451     -4.692000e+02 -4.417200e+02
+7 6451     -4.202800e+02 -1.955200e+02
+9 6451     -3.356000e+02 -3.169500e+02
+0 6452     1.491200e+02 -2.269200e+02
+7 6452     1.061600e+02 -8.303998e+01
+10 6452     1.022900e+02 -1.050400e+02
+15 6452     1.960900e+02 -1.501500e+02
+0 6453     2.324700e+02 -2.269800e+02
+7 6453     1.860699e+02 -6.910999e+01
+10 6453     1.983800e+02 -9.678003e+01
+15 6453     3.103000e+02 -1.394400e+02
+0 6454     1.863300e+02 -2.314400e+02
+6 6454     2.624000e+02 -1.701700e+02
+10 6454     1.454300e+02 -1.063900e+02
+12 6454     2.746200e+02 -1.324400e+02
+13 6454     5.742500e+02 -4.074400e+02
+15 6454     2.480601e+02 -1.519100e+02
+0 6455     1.395800e+02 -2.329600e+02
+6 6455     2.171100e+02 -1.871200e+02
+10 6455     9.237000e+01 -1.135000e+02
+12 6455     2.237200e+02 -1.473300e+02
+15 6455     1.841000e+02 -1.600500e+02
+0 6456     1.878101e+02 -2.339500e+02
+2 6456     4.414000e+02 -1.549200e+02
+3 6456     3.495200e+02 -4.494000e+02
+6 6456     2.649500e+02 -1.728600e+02
+8 6456     3.872300e+02 -1.810300e+02
+9 6456     2.648300e+02 -2.594000e+01
+12 6456     2.767200e+02 -1.353700e+02
+13 6456     5.749399e+02 -4.103800e+02
+15 6456     2.502300e+02 -1.547800e+02
+0 6457     -1.333500e+02 -2.343200e+02
+7 6457     -1.899000e+02 -1.552000e+02
+10 6457     -2.224600e+02 -1.436100e+02
+15 6457     -1.793400e+02 -1.979900e+02
+0 6458     2.940400e+02 -2.362000e+02
+7 6458     2.410100e+02 -7.134003e+01
+0 6459     1.930300e+02 -2.373200e+02
+2 6459     4.450100e+02 -1.585300e+02
+6 6459     2.693500e+02 -1.754399e+02
+10 6459     1.538000e+02 -1.124000e+02
+12 6459     2.824900e+02 -1.383700e+02
+0 6460     -2.840027e+00 -2.378700e+02
+6 6460     5.119000e+01 -2.541200e+02
+7 6460     -4.571002e+01 -1.248500e+02
+15 6460     -6.760010e+00 -1.852300e+02
+0 6461     2.886801e+02 -2.377900e+02
+12 6461     3.743800e+02 -1.220100e+02
+0 6462     3.353800e+02 -2.384700e+02
+6 6462     3.799300e+02 -1.490699e+02
+8 6462     4.715300e+02 -1.900800e+02
+10 6462     3.180500e+02 -9.862000e+01
+12 6462     4.136100e+02 -1.199700e+02
+15 6462     4.564100e+02 -1.425500e+02
+0 6463     1.442800e+02 -2.431700e+02
+3 6463     3.144900e+02 -4.718600e+02
+6 6463     2.223200e+02 -1.987500e+02
+7 6463     1.040200e+02 -1.002700e+02
+10 6463     9.871002e+01 -1.244300e+02
+12 6463     2.301100e+02 -1.598200e+02
+15 6463     1.923600e+02 -1.732300e+02
+0 6464     -1.821997e+01 -2.439700e+02
+4 6464     -4.498100e+02 -3.901700e+02
+13 6464     3.834500e+02 -4.407100e+02
+15 6464     -2.621997e+01 -1.954300e+02
+0 6465     1.838400e+02 -2.441300e+02
+2 6465     4.373199e+02 -1.724400e+02
+7 6465     1.419100e+02 -9.484998e+01
+15 6465     2.464399e+02 -1.695000e+02
+0 6466     2.982001e+01 -2.491500e+02
+2 6466     2.783700e+02 -2.328900e+02
+6 6466     9.254999e+01 -2.549900e+02
+7 6466     -1.071002e+01 -1.300600e+02
+10 6466     -3.214001e+01 -1.440300e+02
+13 6466     4.308700e+02 -4.401400e+02
+0 6467     -1.149600e+02 -2.495200e+02
+6 6467     -1.198800e+02 -3.401000e+02
+15 6467     -1.524300e+02 -2.161300e+02
+0 6468     1.569200e+02 -2.560000e+02
+2 6468     4.132800e+02 -1.969000e+02
+4 6468     -4.950600e+02 -5.407600e+02
+6 6468     2.343600e+02 -2.125000e+02
+9 6468     2.436500e+02 -6.153003e+01
+12 6468     2.445300e+02 -1.749900e+02
+0 6469     2.293600e+02 -2.583700e+02
+2 6469     4.773700e+02 -1.845400e+02
+3 6469     3.839100e+02 -4.781300e+02
+7 6469     1.865100e+02 -1.022800e+02
+0 6470     1.579200e+02 -2.644900e+02
+6 6470     2.353300e+02 -2.228700e+02
+10 6470     1.164800e+02 -1.473500e+02
+0 6471     5.819800e+02 -2.655900e+02
+6 6471     5.718199e+02 -1.357700e+02
+0 6472     6.157300e+02 -2.661000e+02
+7 6472     5.207500e+02 -6.139001e+01
+15 6472     8.568600e+02 -1.457800e+02
+0 6473     5.864700e+02 -2.664700e+02
+6 6473     5.765699e+02 -1.352100e+02
+0 6474     5.650900e+02 -2.718600e+02
+6 6474     5.596700e+02 -1.469399e+02
+0 6475     2.214500e+02 -2.727400e+02
+2 6475     4.680699e+02 -2.096600e+02
+6 6475     2.963900e+02 -2.144700e+02
+7 6475     1.792400e+02 -1.188400e+02
+10 6475     1.906500e+02 -1.500400e+02
+15 6475     3.026100e+02 -2.033700e+02
+0 6476     1.658002e+01 -2.784000e+02
+3 6476     1.813900e+02 -5.882000e+02
+6 6476     7.520001e+01 -3.012800e+02
+7 6476     -2.217999e+01 -1.641200e+02
+8 6476     2.333900e+02 -2.845600e+02
+9 6476     1.214600e+02 -1.423300e+02
+10 6476     -4.428003e+01 -1.780600e+02
+13 6476     4.144301e+02 -4.715500e+02
+15 6476     2.614001e+01 -2.375200e+02
+0 6477     -6.024100e+02 -2.802800e+02
+7 6477     -6.824100e+02 -3.019200e+02
+10 6477     -7.740400e+02 -2.544500e+02
+0 6478     2.784900e+02 -2.829700e+02
+2 6478     4.993199e+02 -2.348800e+02
+3 6478     4.043600e+02 -5.306000e+02
+6 6478     3.381000e+02 -2.187400e+02
+10 6478     2.566400e+02 -1.556700e+02
+12 6478     3.662500e+02 -1.884600e+02
+15 6478     3.839500e+02 -2.104800e+02
+0 6479     2.026600e+02 -2.865300e+02
+2 6479     4.519000e+02 -2.355800e+02
+3 6479     3.621400e+02 -5.303199e+02
+6 6479     2.784700e+02 -2.386100e+02
+7 6479     1.623500e+02 -1.365900e+02
+8 6479     3.966500e+02 -2.449200e+02
+12 6479     2.956899e+02 -2.049600e+02
+15 6479     2.793900e+02 -2.245100e+02
+0 6480     2.672400e+02 -3.047500e+02
+7 6480     2.223101e+02 -1.467700e+02
+10 6480     2.463600e+02 -1.814500e+02
+15 6480     3.717400e+02 -2.412500e+02
+0 6481     7.933000e+02 -3.047500e+02
+7 6481     6.840900e+02 -6.703998e+01
+0 6482     2.599200e+02 -3.086000e+02
+7 6482     2.155900e+02 -1.520100e+02
+10 6482     2.382900e+02 -1.867200e+02
+13 6482     6.269399e+02 -4.837600e+02
+15 6482     3.624301e+02 -2.476500e+02
+0 6483     1.284600e+02 -3.142300e+02
+7 6483     9.387000e+01 -1.789600e+02
+9 6483     2.242100e+02 -1.452800e+02
+10 6483     8.796002e+01 -2.070200e+02
+13 6483     5.183600e+02 -4.957800e+02
+15 6483     1.825699e+02 -2.712900e+02
+0 6484     7.768300e+02 -3.143200e+02
+7 6484     6.723300e+02 -7.808002e+01
+0 6485     -4.513000e+01 -3.150200e+02
+7 6485     -8.171997e+01 -2.154900e+02
+8 6485     1.735300e+02 -3.510000e+02
+9 6485     6.613000e+01 -2.160800e+02
+10 6485     -1.116300e+02 -2.272300e+02
+13 6485     3.535601e+02 -5.150500e+02
+15 6485     -5.109003e+01 -2.951400e+02
+0 6486     -1.728998e+01 -3.164300e+02
+2 6486     2.159000e+02 -3.681400e+02
+6 6486     3.408002e+01 -3.709600e+02
+7 6486     -5.394000e+01 -2.120600e+02
+8 6486     1.981800e+02 -3.473500e+02
+9 6486     8.922998e+01 -2.114200e+02
+10 6486     -7.931000e+01 -2.256300e+02
+12 6486     3.906000e+01 -3.257900e+02
+13 6486     3.778800e+02 -5.147100e+02
+15 6486     -1.297998e+01 -2.934300e+02
+0 6487     -1.997998e+01 -3.182400e+02
+7 6487     -5.656000e+01 -2.142200e+02
+9 6487     8.701001e+01 -2.141000e+02
+10 6487     -8.195001e+01 -2.280200e+02
+15 6487     -1.659998e+01 -2.961000e+02
+0 6488     1.642200e+02 -3.240000e+02
+7 6488     1.291300e+02 -1.823000e+02
+15 6488     2.325601e+02 -2.800400e+02
+0 6489     6.845699e+02 -3.250000e+02
+7 6489     5.948700e+02 -1.025900e+02
+0 6490     6.796400e+02 -3.502500e+02
+7 6490     5.970900e+02 -1.261500e+02
+0 6491     7.887200e+02 -3.576300e+02
+7 6491     6.916400e+02 -1.144500e+02
+0 6492     7.887200e+02 -3.576300e+02
+7 6492     6.916400e+02 -1.144500e+02
+0 6493     8.373999e+01 -3.641200e+02
+7 6493     5.637000e+01 -2.383300e+02
+15 6493     1.292500e+02 -3.446900e+02
+0 6494     7.391000e+02 -3.787100e+02
+7 6494     6.542700e+02 -1.416000e+02
+0 6495     -6.402002e+01 -3.854000e+02
+9 6495     7.197998e+01 -2.988500e+02
+0 6496     4.721000e+02 -3.929400e+02
+6 6496     5.408000e+02 -2.931500e+02
+0 6497     -2.826600e+02 -3.959500e+02
+6 6497     -2.671800e+02 -5.994600e+02
+0 6498     -2.556800e+02 -3.974600e+02
+7 6498     -2.852700e+02 -3.447800e+02
+15 6498     -3.225400e+02 -4.354301e+02
+0 6499     3.428101e+02 -3.985000e+02
+7 6499     3.050300e+02 -2.277900e+02
+0 6500     8.265997e+01 -4.121600e+02
+7 6500     6.528998e+01 -2.857200e+02
+0 6501     8.682600e+02 -4.124400e+02
+7 6501     7.690699e+02 -1.482700e+02
+0 6502     7.550200e+02 -4.131800e+02
+7 6502     6.753000e+02 -1.688900e+02
+0 6503     4.817800e+02 -4.166000e+02
+6 6503     5.640400e+02 -3.119399e+02
+0 6504     7.807000e+02 -4.166600e+02
+7 6504     6.979500e+02 -1.676700e+02
+0 6505     7.950699e+02 -4.167300e+02
+7 6505     7.097500e+02 -1.652900e+02
+0 6506     1.260010e+00 -4.220600e+02
+7 6506     -1.764001e+01 -3.148500e+02
+15 6506     2.658002e+01 -4.339800e+02
+0 6507     4.749900e+02 -4.221700e+02
+6 6507     5.607600e+02 -3.195200e+02
+0 6508     4.749900e+02 -4.221700e+02
+6 6508     5.607600e+02 -3.195200e+02
+0 6509     -2.115200e+02 -4.231900e+02
+7 6509     -2.334100e+02 -3.609200e+02
+0 6510     8.429800e+02 -4.355500e+02
+7 6510     7.532700e+02 -1.733000e+02
+0 6511     4.417900e+02 -4.385200e+02
+7 6511     4.034399e+02 -2.479800e+02
+15 6511     6.322300e+02 -4.027700e+02
+0 6512     4.377900e+02 -4.404800e+02
+6 6512     5.363101e+02 -3.495900e+02
+15 6512     6.267100e+02 -4.063300e+02
+0 6513     4.456600e+02 -4.513101e+02
+6 6513     5.502500e+02 -3.569100e+02
+0 6514     4.414900e+02 -4.536500e+02
+7 6514     4.068101e+02 -2.619400e+02
+0 6515     4.414900e+02 -4.536500e+02
+6 6515     5.474700e+02 -3.611300e+02
+0 6516     -1.765400e+02 -4.599000e+02
+7 6516     -1.887400e+02 -3.890400e+02
+15 6516     -2.085300e+02 -5.085200e+02
+0 6517     -2.006300e+02 -4.627000e+02
+7 6517     -2.123400e+02 -3.970800e+02
+9 6517     -1.678998e+01 -4.237400e+02
+0 6518     7.961700e+02 -4.660601e+02
+7 6518     7.209900e+02 -2.082700e+02
+0 6519     4.839399e+02 -4.672000e+02
+7 6519     4.488900e+02 -2.664700e+02
+0 6520     -3.074200e+02 -4.759200e+02
+7 6520     -3.191100e+02 -4.329399e+02
+0 6521     -1.350900e+02 -4.774301e+02
+7 6521     -1.419800e+02 -3.975800e+02
+0 6522     -2.929500e+02 -4.783300e+02
+6 6522     -2.204200e+02 -6.929900e+02
+7 6522     -3.034200e+02 -4.320900e+02
+0 6523     7.361300e+02 -4.788300e+02
+7 6523     6.738800e+02 -2.303600e+02
+0 6524     -2.481100e+02 -4.822300e+02
+6 6524     -1.635900e+02 -6.745400e+02
+0 6525     -1.555700e+02 -4.857300e+02
+4 6525     -6.232400e+02 -2.614500e+02
+6 6525     -5.196997e+01 -6.342100e+02
+7 6525     -1.606400e+02 -4.102500e+02
+12 6525     -6.896997e+01 -5.824700e+02
+0 6526     4.245500e+02 -4.892300e+02
+6 6526     5.525100e+02 -4.006801e+02
+12 6526     5.844800e+02 -3.858100e+02
+0 6527     7.376801e+02 -4.896100e+02
+7 6527     6.768600e+02 -2.398500e+02
+0 6528     -1.954700e+02 -4.933400e+02
+6 6528     -9.316000e+01 -6.609500e+02
+0 6529     4.225200e+02 -4.946700e+02
+6 6529     5.540200e+02 -4.066400e+02
+7 6529     3.993400e+02 -3.029600e+02
+0 6530     -2.772500e+02 -4.962900e+02
+6 6530     -1.903400e+02 -7.040400e+02
+0 6531     7.064500e+02 -4.961000e+02
+7 6531     6.522900e+02 -2.510300e+02
+10 6531     7.705400e+02 -3.546700e+02
+0 6532     -1.264500e+02 -5.005100e+02
+9 6532     7.916998e+01 -4.195100e+02
+0 6533     4.317600e+02 -5.027300e+02
+7 6533     4.097500e+02 -3.083000e+02
+0 6534     5.183000e+02 -5.097800e+02
+7 6534     4.898101e+02 -2.984300e+02
+10 6534     5.545900e+02 -3.895900e+02
+0 6535     -3.231800e+02 -5.107300e+02
+6 6535     -2.350700e+02 -7.436600e+02
+7 6535     -3.263900e+02 -4.705400e+02
+10 6535     -4.124100e+02 -4.859100e+02
+0 6536     -1.879700e+02 -5.124500e+02
+7 6536     -1.870000e+02 -4.425200e+02
+0 6537     -3.685999e+01 -5.168400e+02
+7 6537     -3.409998e+01 -4.148200e+02
+15 6537     -1.314001e+01 -5.675000e+02
+0 6538     5.332200e+02 -5.180800e+02
+10 6538     5.725100e+02 -3.969400e+02
+12 6538     7.101400e+02 -3.801600e+02
+0 6539     7.591300e+02 -5.225601e+02
+7 6539     7.020900e+02 -2.647000e+02
+0 6540     -1.993200e+02 -5.288600e+02
+7 6540     -1.943500e+02 -4.612800e+02
+10 6540     -2.661200e+02 -4.914500e+02
+0 6541     8.295900e+02 -5.307600e+02
+7 6541     7.617900e+02 -2.585500e+02
+0 6542     -1.384000e+02 -5.309301e+02
+6 6542     -1.429993e+00 -6.734200e+02
+0 6543     -4.566400e+02 -5.323400e+02
+7 6543     -4.608100e+02 -5.218000e+02
+0 6544     -9.317999e+01 -5.339399e+02
+6 6544     5.096002e+01 -6.549500e+02
+7 6544     -8.594000e+01 -4.427800e+02
+0 6545     3.645900e+02 -5.340800e+02
+12 6545     5.449200e+02 -4.507600e+02
+0 6546     -1.259100e+02 -5.377500e+02
+4 6546     -6.771800e+02 -2.851500e+02
+9 6546     1.060500e+02 -4.445400e+02
+0 6547     1.082200e+02 -5.405100e+02
+6 6547     2.709100e+02 -5.735400e+02
+10 6547     8.903998e+01 -4.683300e+02
+15 6547     1.859700e+02 -5.812200e+02
+0 6548     -8.076001e+01 -5.422100e+02
+6 6548     7.053003e+01 -6.580000e+02
+0 6549     7.011600e+02 -5.439399e+02
+7 6549     6.577800e+02 -2.942200e+02
+10 6549     7.685900e+02 -4.100000e+02
+0 6550     6.140002e+01 -5.459399e+02
+2 6550     4.178600e+02 -5.879200e+02
+6 6550     2.262800e+02 -5.985500e+02
+0 6551     3.604399e+02 -5.458400e+02
+12 6551     5.466600e+02 -4.644000e+02
+0 6552     -2.041000e+02 -5.464000e+02
+7 6552     -1.948200e+02 -4.793900e+02
+0 6553     3.443300e+02 -5.464900e+02
+7 6553     3.393300e+02 -3.656700e+02
+10 6553     3.588400e+02 -4.494301e+02
+0 6554     -1.489001e+01 -5.471400e+02
+7 6554     -5.049988e+00 -4.390500e+02
+0 6555     6.117999e+01 -5.487300e+02
+4 6555     -7.397900e+02 -4.436899e+02
+6 6555     2.272500e+02 -6.015900e+02
+7 6555     7.028003e+01 -4.248700e+02
+10 6555     3.565997e+01 -4.829200e+02
+0 6556     1.454800e+02 -5.496200e+02
+7 6556     1.521500e+02 -4.084800e+02
+10 6556     1.333400e+02 -4.740300e+02
+0 6557     -2.514300e+02 -5.498199e+02
+7 6557     -2.421200e+02 -4.930900e+02
+10 6557     -3.243400e+02 -5.220300e+02
+0 6558     1.591000e+02 -5.500800e+02
+6 6558     3.289400e+02 -5.620400e+02
+10 6558     1.479500e+02 -4.734000e+02
+0 6559     -7.452002e+01 -5.507500e+02
+4 6559     -7.027300e+02 -3.282700e+02
+9 6559     1.603500e+02 -4.321000e+02
+0 6560     1.111000e+02 -5.511300e+02
+7 6560     1.194500e+02 -4.165500e+02
+0 6561     3.295000e+02 -5.509000e+02
+12 6561     5.158800e+02 -4.796300e+02
+0 6562     2.389000e+02 -5.517700e+02
+6 6562     4.105600e+02 -5.312100e+02
+7 6562     2.418400e+02 -3.916300e+02
+10 6562     2.393800e+02 -4.667800e+02
+0 6563     2.535999e+01 -5.531899e+02
+2 6563     3.871500e+02 -6.072700e+02
+0 6564     6.512900e+02 -5.558101e+02
+7 6564     6.172500e+02 -3.139400e+02
+0 6565     5.790200e+02 -5.563500e+02
+7 6565     5.546500e+02 -3.283600e+02
+10 6565     6.291200e+02 -4.363900e+02
+0 6566     4.189001e+01 -5.591600e+02
+2 6566     4.087300e+02 -6.058900e+02
+7 6566     5.387000e+01 -4.386000e+02
+12 6566     2.028700e+02 -5.897300e+02
+0 6567     4.189001e+01 -5.591600e+02
+2 6567     4.087300e+02 -6.058900e+02
+7 6567     5.387000e+01 -4.386000e+02
+9 6567     2.612900e+02 -3.953200e+02
+12 6567     2.028700e+02 -5.897300e+02
+0 6568     1.920900e+02 -5.619500e+02
+7 6568     2.001000e+02 -4.103200e+02
+10 6568     1.871800e+02 -4.835601e+02
+0 6569     4.395200e+02 -5.620000e+02
+7 6569     4.309800e+02 -3.613200e+02
+0 6570     4.165300e+02 -5.624000e+02
+7 6570     4.099600e+02 -3.658900e+02
+0 6571     3.284998e+01 -5.628600e+02
+2 6571     4.026700e+02 -6.126899e+02
+12 6571     1.944600e+02 -5.979100e+02
+0 6572     1.294800e+02 -5.631600e+02
+6 6572     3.071900e+02 -5.868300e+02
+7 6572     1.400800e+02 -4.242400e+02
+10 6572     1.155500e+02 -4.914500e+02
+0 6573     2.425000e+02 -5.636600e+02
+7 6573     2.480699e+02 -4.016000e+02
+0 6574     2.425000e+02 -5.636600e+02
+6 6574     4.214200e+02 -5.409700e+02
+7 6574     2.480699e+02 -4.016000e+02
+12 6574     4.297900e+02 -5.231200e+02
+0 6575     2.425000e+02 -5.636600e+02
+6 6575     4.214200e+02 -5.409700e+02
+7 6575     2.480699e+02 -4.016000e+02
+12 6575     4.297900e+02 -5.231200e+02
+0 6576     -2.059003e+01 -5.640100e+02
+4 6576     -7.310200e+02 -3.733000e+02
+6 6576     1.506600e+02 -6.528900e+02
+7 6576     -6.099976e+00 -4.561400e+02
+9 6576     2.146000e+02 -4.211100e+02
+10 6576     -5.587000e+01 -5.100100e+02
+12 6576     1.321800e+02 -6.184200e+02
+0 6577     6.414200e+02 -5.646600e+02
+7 6577     6.109200e+02 -3.241200e+02
+10 6577     7.016700e+02 -4.397800e+02
+0 6578     1.414301e+02 -5.656600e+02
+6 6578     3.201800e+02 -5.851801e+02
+0 6579     7.461200e+02 -5.660100e+02
+7 6579     7.001200e+02 -3.049900e+02
+0 6580     -2.326001e+01 -5.674500e+02
+6 6580     1.500400e+02 -6.574600e+02
+10 6580     -5.853998e+01 -5.138900e+02
+0 6581     1.169400e+02 -5.690699e+02
+6 6581     2.981500e+02 -5.983300e+02
+0 6582     -2.151001e+01 -5.696300e+02
+7 6582     -5.719971e+00 -4.620400e+02
+10 6582     -5.622998e+01 -5.160000e+02
+0 6583     -2.151001e+01 -5.696300e+02
+6 6583     1.532200e+02 -6.585200e+02
+7 6583     -5.719971e+00 -4.620400e+02
+10 6583     -5.622998e+01 -5.160000e+02
+0 6584     3.813700e+02 -5.783400e+02
+7 6584     3.813900e+02 -3.873600e+02
+0 6585     6.638000e+01 -5.814301e+02
+7 6585     8.365002e+01 -4.547200e+02
+10 6585     4.528003e+01 -5.197700e+02
+0 6586     3.992100e+02 -5.812300e+02
+7 6586     3.986600e+02 -3.865500e+02
+10 6586     4.255900e+02 -4.837800e+02
+12 6586     6.065100e+02 -4.878400e+02
+0 6587     6.232001e+01 -5.842600e+02
+7 6587     8.039001e+01 -4.582800e+02
+10 6587     4.152002e+01 -5.234700e+02
+12 6587     2.395100e+02 -6.095200e+02
+0 6588     6.642700e+02 -5.854301e+02
+7 6588     6.351700e+02 -3.380700e+02
+10 6588     7.299600e+02 -4.611300e+02
+0 6589     6.642700e+02 -5.854301e+02
+7 6589     6.351700e+02 -3.380700e+02
+10 6589     7.299600e+02 -4.611300e+02
+0 6590     -5.850900e+02 5.859000e+02
+5 6590     -1.484300e+02 -5.990997e+01
+13 6590     -2.657700e+02 2.152800e+02
+14 6590     -2.329000e+02 -1.581000e+02
+0 6591     2.479500e+02 5.854900e+02
+2 6591     -8.077002e+01 3.547300e+02
+14 6591     5.482700e+02 -1.380900e+02
+0 6592     -5.220400e+02 5.850200e+02
+2 6592     -8.185600e+02 3.706600e+02
+5 6592     -8.931000e+01 -6.138000e+01
+8 6592     -5.912800e+02 2.736200e+02
+11 6592     -2.989000e+02 -1.990400e+02
+13 6592     -2.166500e+02 2.174400e+02
+0 6593     -5.285500e+02 5.832000e+02
+2 6593     -8.246900e+02 3.677000e+02
+5 6593     -9.444000e+01 -6.394000e+01
+8 6593     -5.952500e+02 2.711900e+02
+0 6594     3.718900e+02 5.831500e+02
+2 6594     2.300000e+01 3.527100e+02
+3 6594     -1.226300e+02 1.751001e+01
+6 6594     -9.760001e+01 6.989200e+02
+8 6594     9.970001e+01 2.775600e+02
+9 6594     -1.354300e+02 3.809600e+02
+11 6594     4.745800e+02 -1.744800e+02
+13 6594     4.805699e+02 2.632800e+02
+14 6594     6.685100e+02 -1.331500e+02
+0 6595     -3.304100e+02 5.822500e+02
+2 6595     -6.150600e+02 3.596400e+02
+5 6595     9.082001e+01 -6.604999e+01
+11 6595     -1.407400e+02 -2.009100e+02
+12 6595     -6.900300e+02 5.649700e+02
+13 6595     -6.778998e+01 2.230400e+02
+14 6595     3.669983e+00 -1.597000e+02
+0 6596     -3.304100e+02 5.822500e+02
+5 6596     9.082001e+01 -6.604999e+01
+11 6596     -1.407400e+02 -2.009100e+02
+12 6596     -6.900300e+02 5.649700e+02
+13 6596     -6.778998e+01 2.230400e+02
+14 6596     3.669983e+00 -1.597000e+02
+0 6597     -1.819300e+02 5.820100e+02
+2 6597     -4.679500e+02 3.550700e+02
+5 6597     2.324900e+02 -6.634003e+01
+13 6597     4.770001e+01 2.293700e+02
+14 6597     1.423700e+02 -1.578300e+02
+0 6598     4.443800e+02 5.820000e+02
+2 6598     8.172998e+01 3.515700e+02
+3 6598     -6.804999e+01 1.656000e+01
+6 6598     -2.362000e+01 7.112600e+02
+8 6598     1.492400e+02 2.779800e+02
+9 6598     -8.596997e+01 3.819800e+02
+11 6598     5.403600e+02 -1.711800e+02
+14 6598     7.388199e+02 -1.298500e+02
+0 6599     4.443800e+02 5.820000e+02
+2 6599     8.172998e+01 3.515700e+02
+6 6599     -2.362000e+01 7.112600e+02
+8 6599     1.492400e+02 2.779800e+02
+9 6599     -8.596997e+01 3.819800e+02
+14 6599     7.388199e+02 -1.298500e+02
+0 6600     -3.479300e+02 5.816400e+02
+2 6600     -6.326500e+02 3.596900e+02
+13 6600     -8.135999e+01 2.218600e+02
+14 6600     -1.269000e+01 -1.604800e+02
+0 6601     -4.694200e+02 5.806100e+02
+2 6601     -7.609300e+02 3.626500e+02
+8 6601     -5.445800e+02 2.689400e+02
+14 6601     -1.257300e+02 -1.621400e+02
+0 6602     -4.837800e+02 5.800200e+02
+2 6602     -7.768600e+02 3.621800e+02
+5 6602     -5.420001e+01 -6.667999e+01
+11 6602     -2.687900e+02 -2.038500e+02
+0 6603     -4.837800e+02 5.800200e+02
+5 6603     -5.420001e+01 -6.667999e+01
+0 6604     8.128003e+01 5.801000e+02
+2 6604     -2.243300e+02 3.495700e+02
+0 6605     8.128003e+01 5.801000e+02
+2 6605     -2.243300e+02 3.495700e+02
+0 6606     2.626899e+02 5.797400e+02
+2 6606     -6.744000e+01 3.481900e+02
+3 6606     -2.083300e+02 1.379999e+01
+5 6606     6.624399e+02 -5.985999e+01
+9 6606     -2.124000e+02 3.740700e+02
+0 6607     -3.099600e+02 5.784300e+02
+2 6607     -5.944800e+02 3.546000e+02
+5 6607     1.100900e+02 -6.981000e+01
+8 6607     -4.097300e+02 2.664000e+02
+12 6607     -6.651900e+02 5.627200e+02
+13 6607     -5.190997e+01 2.209000e+02
+14 6607     2.246997e+01 -1.631000e+02
+0 6608     -2.418300e+02 5.784000e+02
+5 6608     1.757100e+02 -6.992999e+01
+11 6608     -6.534003e+01 -2.026800e+02
+12 6608     -5.855200e+02 5.718100e+02
+0 6609     -5.672800e+02 5.771900e+02
+14 6609     -2.171000e+02 -1.664000e+02
+0 6610     -1.847600e+02 5.755200e+02
+2 6610     -4.705800e+02 3.483400e+02
+0 6611     -1.847600e+02 5.755200e+02
+2 6611     -4.705800e+02 3.483400e+02
+3 6611     -5.941400e+02 1.804999e+01
+5 6611     2.295400e+02 -7.314001e+01
+12 6611     -5.207400e+02 5.742600e+02
+13 6611     4.556000e+01 2.237300e+02
+14 6611     1.396000e+02 -1.643100e+02
+0 6612     2.736300e+02 5.754300e+02
+6 6612     -1.973900e+02 6.710900e+02
+0 6613     -4.390100e+02 5.732500e+02
+2 6613     -7.283000e+02 3.526500e+02
+11 6613     -2.314900e+02 -2.083400e+02
+14 6613     -9.821997e+01 -1.697400e+02
+0 6614     2.771300e+02 5.729000e+02
+2 6614     -5.409998e+01 3.411700e+02
+5 6614     6.775200e+02 -6.619000e+01
+13 6614     4.058800e+02 2.481900e+02
+14 6614     5.774600e+02 -1.490400e+02
+0 6615     -5.036200e+02 5.715200e+02
+2 6615     -7.985300e+02 3.532200e+02
+5 6615     -7.402002e+01 -7.534998e+01
+8 6615     -5.744400e+02 2.602800e+02
+14 6615     -1.589300e+02 -1.714200e+02
+0 6616     3.909100e+02 5.715500e+02
+2 6616     4.027002e+01 3.412600e+02
+5 6616     7.916899e+02 -6.314001e+01
+6 6616     -7.577002e+01 6.885000e+02
+8 6616     1.146400e+02 2.687400e+02
+9 6616     -1.205400e+02 3.715800e+02
+11 6616     4.938700e+02 -1.830600e+02
+13 6616     4.961200e+02 2.551400e+02
+14 6616     6.877900e+02 -1.433100e+02
+0 6617     4.225000e+02 5.712500e+02
+2 6617     6.608002e+01 3.406200e+02
+6 6617     -4.350000e+01 6.938900e+02
+9 6617     -9.875000e+01 3.715800e+02
+11 6617     5.225300e+02 -1.814900e+02
+0 6618     4.395800e+02 5.710000e+02
+2 6618     7.978998e+01 3.405400e+02
+11 6618     5.384399e+02 -1.808200e+02
+14 6618     7.359000e+02 -1.406700e+02
+0 6619     3.745300e+02 5.694400e+02
+2 6619     2.709998e+01 3.390800e+02
+5 6619     7.753900e+02 -6.571997e+01
+6 6619     -9.226001e+01 6.830700e+02
+8 6619     1.037300e+02 2.666500e+02
+9 6619     -1.314900e+02 3.692600e+02
+11 6619     4.787600e+02 -1.858800e+02
+13 6619     4.833800e+02 2.524800e+02
+14 6619     6.720200e+02 -1.464200e+02
+0 6620     -2.258200e+02 5.681900e+02
+5 6620     1.896300e+02 -8.059003e+01
+12 6620     -5.659700e+02 5.601700e+02
+0 6621     5.688000e+02 5.677000e+02
+2 6621     3.168600e+02 4.669800e+02
+3 6621     1.716200e+02 1.309000e+02
+6 6621     2.320700e+02 7.443300e+02
+8 6621     3.285800e+02 3.604900e+02
+9 6621     1.216700e+02 4.899900e+02
+13 6621     7.048300e+02 2.746200e+02
+0 6622     -1.460200e+02 5.671100e+02
+2 6622     -4.329500e+02 3.379700e+02
+3 6622     -5.577000e+02 7.539978e+00
+12 6622     -4.760300e+02 5.694500e+02
+14 6622     1.754000e+02 -1.714800e+02
+0 6623     2.684600e+02 5.668800e+02
+4 6623     3.889001e+01 -5.388700e+02
+6 6623     -1.998800e+02 6.603500e+02
+8 6623     3.128003e+01 2.625200e+02
+9 6623     -2.045500e+02 3.642700e+02
+11 6623     3.847600e+02 -1.932200e+02
+13 6623     3.995699e+02 2.425700e+02
+14 6623     5.694600e+02 -1.555400e+02
+0 6624     2.554200e+02 5.665400e+02
+2 6624     -7.215002e+01 3.341900e+02
+9 6624     -2.160000e+02 3.621500e+02
+11 6624     3.704500e+02 -1.957400e+02
+14 6624     5.566000e+02 -1.566600e+02
+0 6625     -4.456600e+02 5.654500e+02
+2 6625     -7.358200e+02 3.435300e+02
+13 6625     -1.580100e+02 2.043700e+02
+0 6626     4.295000e+02 5.647400e+02
+9 6626     -9.256000e+01 3.665400e+02
+0 6627     -4.489400e+02 5.641800e+02
+2 6627     -7.386800e+02 3.417800e+02
+8 6627     -5.268700e+02 2.538800e+02
+11 6627     -2.404800e+02 -2.159100e+02
+0 6628     1.274700e+02 5.637000e+02
+2 6628     -1.813900e+02 3.321500e+02
+3 6628     -3.167700e+02 -2.039978e+00
+5 6628     5.307300e+02 -8.000000e+01
+6 6628     -3.506100e+02 6.290000e+02
+9 6628     -3.084700e+02 3.570400e+02
+11 6628     2.565300e+02 -2.044200e+02
+12 6628     -1.802600e+02 6.004300e+02
+14 6628     4.352100e+02 -1.652100e+02
+0 6629     -9.821997e+01 5.612400e+02
+5 6629     3.117900e+02 -8.720001e+01
+0 6630     5.076100e+02 5.614900e+02
+2 6630     2.513101e+02 4.410100e+02
+3 6630     1.088400e+02 1.056200e+02
+6 6630     1.552800e+02 7.221800e+02
+9 6630     6.538000e+01 4.656000e+02
+11 6630     5.855800e+02 -1.867000e+02
+13 6630     6.465200e+02 2.635300e+02
+14 6630     8.741000e+02 -1.382800e+02
+0 6631     2.569200e+02 5.600700e+02
+2 6631     -6.921997e+01 3.274700e+02
+3 6631     -2.101000e+02 -6.650024e+00
+4 6631     3.537000e+01 -5.299700e+02
+5 6631     6.585500e+02 -7.957001e+01
+6 6631     -2.120900e+02 6.491300e+02
+8 6631     2.316998e+01 2.560900e+02
+9 6631     -2.127900e+02 3.564800e+02
+11 6631     3.739900e+02 -2.006900e+02
+12 6631     -4.634003e+01 6.118000e+02
+13 6631     3.905200e+02 2.360100e+02
+14 6631     5.589000e+02 -1.630800e+02
+0 6632     2.517100e+02 5.590300e+02
+2 6632     -7.439001e+01 3.262100e+02
+5 6632     6.522600e+02 -8.126001e+01
+6 6632     -2.180800e+02 6.464800e+02
+8 6632     1.885999e+01 2.548400e+02
+9 6632     -2.172800e+02 3.551600e+02
+11 6632     3.685200e+02 -2.020700e+02
+13 6632     3.863101e+02 2.349200e+02
+14 6632     5.536400e+02 -1.643200e+02
+0 6633     6.065100e+02 5.574100e+02
+8 6633     3.625300e+02 3.615500e+02
+9 6633     1.579900e+02 4.928800e+02
+11 6633     6.722200e+02 -1.840400e+02
+13 6633     7.416600e+02 2.699700e+02
+0 6634     2.665699e+02 5.571800e+02
+2 6634     -6.115997e+01 3.249600e+02
+8 6634     3.017999e+01 2.542500e+02
+0 6635     2.297100e+02 5.563700e+02
+2 6635     -9.240997e+01 3.233300e+02
+5 6635     6.307700e+02 -8.469000e+01
+8 6635     3.650024e+00 2.524800e+02
+12 6635     -7.309998e+01 6.045600e+02
+13 6635     3.698600e+02 2.314200e+02
+14 6635     5.333700e+02 -1.680200e+02
+0 6636     2.569200e+02 5.563800e+02
+12 6636     -4.437000e+01 6.087700e+02
+0 6637     5.626600e+02 5.566900e+02
+2 6637     3.130100e+02 4.552500e+02
+3 6637     1.681000e+02 1.200200e+02
+6 6637     2.272600e+02 7.312000e+02
+8 6637     3.253300e+02 3.510600e+02
+13 6637     7.001400e+02 2.653600e+02
+0 6638     4.269100e+02 5.554700e+02
+11 6638     5.293500e+02 -1.944400e+02
+13 6638     5.256600e+02 2.437100e+02
+14 6638     7.251899e+02 -1.577400e+02
+0 6639     -4.528300e+02 5.547900e+02
+2 6639     -7.439400e+02 3.319300e+02
+14 6639     -1.134200e+02 -1.874200e+02
+0 6640     -4.410500e+02 5.543000e+02
+7 6640     -6.829600e+02 5.822100e+02
+11 6640     -2.341400e+02 -2.235000e+02
+13 6640     -1.547300e+02 1.955600e+02
+14 6640     -1.023300e+02 -1.880300e+02
+0 6641     2.683400e+02 5.542900e+02
+2 6641     -5.881000e+01 3.215500e+02
+4 6641     3.071002e+01 -5.379500e+02
+5 6641     6.698600e+02 -8.591998e+01
+6 6641     -1.979000e+02 6.439000e+02
+8 6641     3.238000e+01 2.514500e+02
+9 6641     -2.035100e+02 3.513300e+02
+11 6641     3.859301e+02 -2.051500e+02
+12 6641     -3.231000e+01 6.069100e+02
+13 6641     4.008800e+02 2.319600e+02
+0 6642     -4.337200e+02 5.541800e+02
+5 6642     -1.040997e+01 -9.321997e+01
+7 6642     -6.752300e+02 5.822800e+02
+11 6642     -2.281600e+02 -2.238800e+02
+12 6642     -8.096100e+02 5.176800e+02
+13 6642     -1.492100e+02 1.956200e+02
+14 6642     -9.547998e+01 -1.882700e+02
+0 6643     3.513000e+01 5.537300e+02
+2 6643     -2.635300e+02 3.213100e+02
+3 6643     -3.949000e+02 -1.201001e+01
+5 6643     4.397300e+02 -9.247998e+01
+6 6643     -4.494300e+02 5.987900e+02
+8 6643     -1.370900e+02 2.471800e+02
+9 6643     -3.779600e+02 3.449400e+02
+0 6644     3.088300e+02 5.534000e+02
+11 6644     4.213900e+02 -2.037600e+02
+13 6644     4.318500e+02 2.339500e+02
+14 6644     6.095300e+02 -1.668700e+02
+0 6645     -4.299500e+02 5.531300e+02
+2 6645     -7.193300e+02 3.281900e+02
+5 6645     -6.989990e+00 -9.417999e+01
+0 6646     3.183500e+02 5.529400e+02
+12 6646     1.740997e+01 6.134500e+02
+13 6646     4.397400e+02 2.342000e+02
+0 6647     3.183500e+02 5.529400e+02
+2 6647     -1.709998e+01 3.200700e+02
+0 6648     5.026600e+02 5.527300e+02
+2 6648     2.480500e+02 4.317100e+02
+6 6648     1.508700e+02 7.116500e+02
+9 6648     6.259998e+01 4.574400e+02
+13 6648     6.429100e+02 2.560400e+02
+14 6648     8.700100e+02 -1.467900e+02
+0 6649     4.372900e+02 5.517200e+02
+9 6649     -8.567999e+01 3.550900e+02
+13 6649     5.335400e+02 2.416200e+02
+14 6649     7.348800e+02 -1.608300e+02
+0 6650     4.679399e+02 5.512000e+02
+14 6650     7.663700e+02 -1.588200e+02
+0 6651     -4.452800e+02 5.508900e+02
+14 6651     -1.060000e+02 -1.913900e+02
+0 6652     -6.175100e+02 5.502900e+02
+11 6652     -3.790000e+02 -2.265000e+02
+13 6652     -2.924300e+02 1.850400e+02
+14 6652     -2.673700e+02 -1.925700e+02
+0 6653     -6.175100e+02 5.502900e+02
+11 6653     -3.790000e+02 -2.265000e+02
+13 6653     -2.924300e+02 1.850400e+02
+14 6653     -2.673700e+02 -1.925700e+02
+0 6654     3.704999e+01 5.504600e+02
+9 6654     -3.746200e+02 3.425800e+02
+12 6654     -2.730200e+02 5.746800e+02
+0 6655     2.293600e+02 5.503800e+02
+4 6655     3.042999e+01 -5.100699e+02
+14 6655     5.332400e+02 -1.734200e+02
+0 6656     3.217400e+02 5.498100e+02
+2 6656     -1.382001e+01 3.169400e+02
+5 6656     7.228199e+02 -8.873999e+01
+6 6656     -1.426000e+02 6.483800e+02
+8 6656     6.923999e+01 2.483500e+02
+9 6656     -1.654100e+02 3.491400e+02
+11 6656     4.333400e+02 -2.061300e+02
+12 6656     2.134998e+01 6.084400e+02
+13 6656     4.423900e+02 2.317500e+02
+14 6656     6.225699e+02 -1.698800e+02
+0 6657     4.625300e+02 5.498300e+02
+13 6657     5.544600e+02 2.421200e+02
+14 6657     7.608900e+02 -1.608500e+02
+0 6658     2.065100e+02 5.494400e+02
+2 6658     -1.116900e+02 3.161000e+02
+5 6658     6.078900e+02 -9.265997e+01
+6 6658     -2.635700e+02 6.253600e+02
+12 6658     -9.622998e+01 5.929500e+02
+14 6658     5.108700e+02 -1.761300e+02
+0 6659     5.704000e+02 5.488100e+02
+6 6659     2.384400e+02 7.237000e+02
+0 6660     -7.284600e+02 5.483600e+02
+4 6660     7.520001e+01 4.651001e+01
+5 6660     -3.968600e+02 -1.037500e+02
+13 6660     -4.624500e+02 1.641900e+02
+14 6660     -4.727300e+02 -2.050400e+02
+0 6661     -3.254100e+02 5.484800e+02
+2 6661     -6.096500e+02 3.199000e+02
+5 6661     9.251001e+01 -9.964001e+01
+7 6661     -5.605900e+02 5.863000e+02
+13 6661     -6.459998e+01 1.952200e+02
+14 6661     5.640015e+00 -1.930300e+02
+0 6662     -3.254100e+02 5.484800e+02
+7 6662     -5.605900e+02 5.863000e+02
+0 6663     6.672700e+02 5.480800e+02
+2 6663     4.718101e+02 5.274200e+02
+3 6663     3.224200e+02 1.893400e+02
+6 6663     4.013400e+02 7.555700e+02
+0 6664     6.672700e+02 5.480800e+02
+2 6664     4.718101e+02 5.274200e+02
+3 6664     3.224200e+02 1.893400e+02
+6 6664     4.013400e+02 7.555700e+02
+13 6664     8.244800e+02 2.722000e+02
+0 6665     5.488101e+02 5.470600e+02
+2 6665     2.998400e+02 4.417900e+02
+6 6665     2.119200e+02 7.164800e+02
+8 6665     3.145300e+02 3.400300e+02
+9 6665     1.082500e+02 4.676700e+02
+13 6665     6.876300e+02 2.561900e+02
+0 6666     5.522998e+01 5.465200e+02
+2 6666     -2.440300e+02 3.138800e+02
+8 6666     -1.213200e+02 2.419300e+02
+9 6666     -3.612600e+02 3.393800e+02
+11 6666     1.934500e+02 -2.216500e+02
+12 6666     -2.534500e+02 5.724700e+02
+13 6666     2.327600e+02 2.125200e+02
+0 6667     5.522998e+01 5.465200e+02
+2 6667     -2.440300e+02 3.138800e+02
+8 6667     -1.213200e+02 2.419300e+02
+9 6667     -3.612600e+02 3.393800e+02
+11 6667     1.934500e+02 -2.216500e+02
+13 6667     2.327600e+02 2.125200e+02
+0 6668     5.295300e+02 5.432800e+02
+2 6668     2.799399e+02 4.320400e+02
+3 6668     1.366200e+02 9.771997e+01
+6 6668     1.880200e+02 7.081100e+02
+9 6668     9.075000e+01 4.579700e+02
+13 6668     6.697200e+02 2.514700e+02
+0 6669     6.541300e+02 5.425300e+02
+3 6669     3.072000e+02 1.785300e+02
+6 6669     3.841900e+02 7.458400e+02
+8 6669     4.387000e+02 3.953700e+02
+9 6669     2.437900e+02 5.355000e+02
+11 6669     7.106801e+02 -1.954500e+02
+0 6670     6.541300e+02 5.425300e+02
+6 6670     3.841900e+02 7.458400e+02
+0 6671     6.644700e+02 5.416800e+02
+2 6671     4.681400e+02 5.189000e+02
+3 6671     3.190000e+02 1.814200e+02
+6 6671     3.974400e+02 7.476900e+02
+8 6671     4.482800e+02 3.978400e+02
+9 6671     2.538600e+02 5.385400e+02
+13 6671     8.217200e+02 2.667900e+02
+0 6672     -5.940200e+02 5.412500e+02
+5 6672     -1.643400e+02 -1.041600e+02
+13 6672     -2.751700e+02 1.785800e+02
+14 6672     -2.471100e+02 -2.013300e+02
+0 6673     4.597200e+02 5.367000e+02
+14 6673     7.598700e+02 -1.740900e+02
+0 6674     4.516400e+02 5.358700e+02
+2 6674     9.490002e+01 3.052500e+02
+13 6674     5.466801e+02 2.298800e+02
+14 6674     7.521000e+02 -1.762500e+02
+0 6675     1.594600e+02 5.351600e+02
+12 6675     -1.414800e+02 5.712400e+02
+0 6676     6.692200e+02 5.349500e+02
+2 6676     4.732400e+02 5.140200e+02
+6 6676     4.037600e+02 7.415700e+02
+11 6676     7.260500e+02 -2.011900e+02
+0 6677     6.692200e+02 5.349500e+02
+2 6677     4.732400e+02 5.140200e+02
+6 6677     4.037600e+02 7.415700e+02
+8 6677     4.530300e+02 3.938100e+02
+11 6677     7.260500e+02 -2.011900e+02
+0 6678     1.561000e+02 5.324900e+02
+11 6678     2.853700e+02 -2.296200e+02
+12 6678     -1.447800e+02 5.677600e+02
+13 6678     3.123199e+02 2.066500e+02
+14 6678     4.629600e+02 -1.963300e+02
+0 6679     3.054600e+02 5.315000e+02
+14 6679     6.281899e+02 -1.844100e+02
+0 6680     -4.449200e+02 5.307200e+02
+5 6680     -2.384003e+01 -1.167700e+02
+0 6681     4.580500e+02 5.306100e+02
+2 6681     1.012500e+02 2.991400e+02
+13 6681     5.515000e+02 2.250900e+02
+14 6681     7.582500e+02 -1.811300e+02
+0 6682     -2.327002e+01 5.291400e+02
+3 6682     -4.445200e+02 -3.852002e+01
+0 6683     -4.445800e+02 5.269500e+02
+2 6683     -7.349800e+02 2.969500e+02
+12 6683     -8.181800e+02 4.827300e+02
+14 6683     -1.088600e+02 -2.154900e+02
+0 6684     6.056200e+02 5.269100e+02
+8 6684     3.681300e+02 3.402300e+02
+13 6684     7.445400e+02 2.454700e+02
+0 6685     -6.115000e+02 5.261600e+02
+13 6685     -2.895300e+02 1.651800e+02
+14 6685     -2.659300e+02 -2.166600e+02
+0 6686     7.179200e+02 5.238300e+02
+2 6686     5.278900e+02 5.230100e+02
+3 6686     3.750000e+02 1.859200e+02
+6 6686     4.662000e+02 7.420500e+02
+8 6686     4.977500e+02 4.006200e+02
+9 6686     3.048199e+02 5.435400e+02
+13 6686     8.749000e+02 2.583500e+02
+0 6687     -5.576600e+02 5.224700e+02
+5 6687     -1.324000e+02 -1.229300e+02
+7 6687     -8.053000e+02 5.366200e+02
+13 6687     -2.477100e+02 1.644800e+02
+14 6687     -2.160200e+02 -2.201200e+02
+0 6688     4.342700e+02 5.222100e+02
+2 6688     7.912000e+01 2.862400e+02
+3 6688     -7.040997e+01 -4.628003e+01
+12 6688     1.363700e+02 5.906900e+02
+0 6689     -2.933100e+02 5.189500e+02
+2 6689     -5.763800e+02 2.839000e+02
+12 6689     -6.353600e+02 4.916000e+02
+0 6690     3.657800e+02 5.180000e+02
+2 6690     2.762000e+01 2.834400e+02
+6 6690     -9.044000e+01 6.172400e+02
+12 6690     7.142999e+01 5.771100e+02
+13 6690     4.790000e+02 2.078600e+02
+0 6691     3.943700e+02 5.175900e+02
+2 6691     5.015002e+01 2.839400e+02
+6 6691     -6.353003e+01 6.221100e+02
+0 6692     7.169983e+00 5.138600e+02
+2 6692     -2.860500e+02 2.760800e+02
+5 6692     4.122900e+02 -1.345400e+02
+6 6692     -4.737700e+02 5.408100e+02
+7 6692     -2.216200e+02 5.830000e+02
+8 6692     -1.555800e+02 2.110900e+02
+9 6692     -3.957900e+02 3.045300e+02
+11 6692     1.528500e+02 -2.516500e+02
+14 6692     3.204100e+02 -2.209900e+02
+0 6693     7.169983e+00 5.138600e+02
+2 6693     -2.860500e+02 2.760800e+02
+5 6693     4.122900e+02 -1.345400e+02
+7 6693     -2.216200e+02 5.830000e+02
+8 6693     -1.555800e+02 2.110900e+02
+9 6693     -3.957900e+02 3.045300e+02
+14 6693     3.204100e+02 -2.209900e+02
+0 6694     -2.036300e+02 5.136900e+02
+3 6694     -6.126800e+02 -5.227002e+01
+0 6695     -1.720800e+02 5.126700e+02
+5 6695     2.377000e+02 -1.375700e+02
+7 6695     -3.987300e+02 5.635600e+02
+11 6695     -5.520020e+00 -2.567800e+02
+13 6695     5.498999e+01 1.719400e+02
+14 6695     1.488101e+02 -2.268900e+02
+0 6696     -1.720800e+02 5.126700e+02
+2 6696     -4.558900e+02 2.754000e+02
+7 6696     -3.987300e+02 5.635600e+02
+13 6696     5.498999e+01 1.719400e+02
+14 6696     1.488101e+02 -2.268900e+02
+0 6697     6.646100e+02 5.126200e+02
+2 6697     4.743000e+02 4.931100e+02
+3 6697     3.256300e+02 1.580900e+02
+6 6697     4.033700e+02 7.165900e+02
+8 6697     4.532900e+02 3.765700e+02
+9 6697     2.591700e+02 5.166800e+02
+11 6697     7.258300e+02 -2.200100e+02
+13 6697     8.243700e+02 2.438800e+02
+0 6698     -1.326001e+01 5.096800e+02
+2 6698     -3.041200e+02 2.716900e+02
+6 6698     -4.957700e+02 5.316700e+02
+7 6698     -2.411100e+02 5.765800e+02
+8 6698     -1.708200e+02 2.072300e+02
+9 6698     -4.109400e+02 2.998900e+02
+12 6698     -3.203200e+02 5.186100e+02
+0 6699     -1.326001e+01 5.096800e+02
+2 6699     -3.041200e+02 2.716900e+02
+6 6699     -4.957700e+02 5.316700e+02
+7 6699     -2.411100e+02 5.765800e+02
+8 6699     -1.708200e+02 2.072300e+02
+9 6699     -4.109400e+02 2.998900e+02
+12 6699     -3.203200e+02 5.186100e+02
+0 6700     -3.036300e+02 5.091200e+02
+2 6700     -5.867500e+02 2.721900e+02
+5 6700     1.098600e+02 -1.405800e+02
+7 6700     -5.322300e+02 5.465900e+02
+8 6700     -4.022400e+02 2.017600e+02
+11 6700     -1.199400e+02 -2.609500e+02
+12 6700     -6.457900e+02 4.781700e+02
+0 6701     -3.036300e+02 5.091200e+02
+2 6701     -5.867500e+02 2.721900e+02
+5 6701     1.098600e+02 -1.405800e+02
+7 6701     -5.322300e+02 5.465900e+02
+8 6701     -4.022400e+02 2.017600e+02
+11 6701     -1.199400e+02 -2.609500e+02
+12 6701     -6.457900e+02 4.781700e+02
+0 6702     -5.282200e+02 5.084400e+02
+2 6702     -8.279600e+02 2.765500e+02
+5 6702     -1.065000e+02 -1.380300e+02
+7 6702     -7.702400e+02 5.237300e+02
+8 6702     -5.973200e+02 1.996100e+02
+13 6702     -2.254100e+02 1.536400e+02
+14 6702     -1.902600e+02 -2.342300e+02
+0 6703     -5.213200e+02 5.083800e+02
+2 6703     -8.198000e+02 2.743800e+02
+5 6703     -9.971997e+01 -1.397800e+02
+7 6703     -7.618300e+02 5.238900e+02
+11 6703     -3.036700e+02 -2.608600e+02
+13 6703     -2.198200e+02 1.538000e+02
+14 6703     -1.833900e+02 -2.345400e+02
+0 6704     6.587700e+02 5.085400e+02
+2 6704     4.695000e+02 4.878800e+02
+3 6704     3.212400e+02 1.527200e+02
+6 6704     3.977400e+02 7.107500e+02
+8 6704     4.491400e+02 3.721800e+02
+9 6704     2.554100e+02 5.114900e+02
+11 6704     7.217100e+02 -2.246700e+02
+13 6704     8.194500e+02 2.399300e+02
+0 6705     3.569399e+02 5.068100e+02
+2 6705     2.159998e+01 2.722600e+02
+9 6705     -1.340400e+02 3.110600e+02
+13 6705     4.726801e+02 1.984100e+02
+14 6705     6.610300e+02 -2.118100e+02
+0 6706     3.569399e+02 5.068100e+02
+2 6706     2.159998e+01 2.722600e+02
+8 6706     9.883002e+01 2.135100e+02
+9 6706     -1.340400e+02 3.110600e+02
+13 6706     4.726801e+02 1.984100e+02
+14 6706     6.610300e+02 -2.118100e+02
+0 6707     -5.240600e+02 5.059200e+02
+2 6707     -8.231300e+02 2.734800e+02
+5 6707     -1.029400e+02 -1.407300e+02
+7 6707     -7.649600e+02 5.207000e+02
+11 6707     -3.061900e+02 -2.634800e+02
+14 6707     -1.862900e+02 -2.360400e+02
+0 6708     -6.940700e+02 5.057400e+02
+5 6708     -3.413400e+02 -1.434500e+02
+11 6708     -4.358600e+02 -2.605300e+02
+0 6709     2.108002e+01 5.054400e+02
+14 6709     3.338900e+02 -2.290300e+02
+0 6710     7.099900e+02 5.024300e+02
+2 6710     5.218500e+02 4.994300e+02
+6 6710     4.595400e+02 7.178200e+02
+9 6710     3.001200e+02 5.233900e+02
+0 6711     -6.774800e+02 5.004400e+02
+4 6711     5.347998e+01 1.750000e+01
+5 6711     -3.111300e+02 -1.501400e+02
+0 6712     5.696000e+02 4.994200e+02
+2 6712     3.336300e+02 4.065900e+02
+6 6712     2.495200e+02 6.689000e+02
+0 6713     3.452300e+02 4.973800e+02
+6 6713     -1.072000e+02 5.882000e+02
+11 6713     4.617700e+02 -2.496500e+02
+13 6713     4.639800e+02 1.897700e+02
+14 6713     6.508400e+02 -2.218300e+02
+0 6714     -6.858600e+02 4.959700e+02
+4 6714     5.140002e+01 2.528998e+01
+5 6714     -3.320000e+02 -1.542400e+02
+11 6714     -4.310900e+02 -2.686800e+02
+13 6714     -4.064100e+02 1.278800e+02
+14 6714     -4.097300e+02 -2.531500e+02
+0 6715     6.903101e+02 4.950500e+02
+2 6715     5.048500e+02 4.867700e+02
+6 6715     4.378400e+02 7.042800e+02
+8 6715     4.784900e+02 3.711000e+02
+9 6715     2.850900e+02 5.114100e+02
+13 6715     8.515100e+02 2.325600e+02
+0 6716     7.617900e+02 4.918000e+02
+2 6716     5.778199e+02 5.074900e+02
+3 6716     4.201000e+02 1.723900e+02
+6 6716     5.234200e+02 7.178500e+02
+8 6716     5.398101e+02 3.873700e+02
+9 6716     3.451100e+02 5.310100e+02
+0 6717     -6.183100e+02 4.905300e+02
+13 6717     -2.976000e+02 1.352900e+02
+14 6717     -2.782400e+02 -2.520400e+02
+0 6718     -3.162000e+01 4.905700e+02
+2 6718     -3.199100e+02 2.491300e+02
+7 6718     -2.564800e+02 5.550100e+02
+9 6718     -4.235300e+02 2.799200e+02
+0 6719     -3.162000e+01 4.905700e+02
+2 6719     -3.199100e+02 2.491300e+02
+7 6719     -2.564800e+02 5.550100e+02
+9 6719     -4.235300e+02 2.799200e+02
+0 6720     7.788900e+02 4.906400e+02
+6 6720     5.416899e+02 7.213600e+02
+0 6721     5.282600e+02 4.899400e+02
+3 6721     1.465600e+02 5.296002e+01
+6 6721     1.982200e+02 6.501000e+02
+8 6721     3.050600e+02 2.938500e+02
+9 6721     1.020500e+02 4.159200e+02
+0 6722     5.227200e+02 4.895900e+02
+2 6722     2.843199e+02 3.798500e+02
+6 6722     1.922200e+02 6.446500e+02
+9 6722     9.571997e+01 4.136000e+02
+0 6723     -3.038900e+02 4.874200e+02
+2 6723     -5.867000e+02 2.467700e+02
+7 6723     -5.296300e+02 5.236900e+02
+11 6723     -1.204600e+02 -2.788300e+02
+12 6723     -6.424900e+02 4.525900e+02
+0 6724     -2.243500e+02 4.869800e+02
+2 6724     -5.057700e+02 2.445600e+02
+5 6724     1.848900e+02 -1.642600e+02
+7 6724     -4.477100e+02 5.310500e+02
+8 6724     -3.360200e+02 1.817400e+02
+11 6724     -5.170001e+01 -2.791400e+02
+12 6724     -5.506600e+02 4.620900e+02
+0 6725     -1.751100e+02 4.870300e+02
+2 6725     -4.571400e+02 2.455700e+02
+7 6725     -3.989200e+02 5.366700e+02
+0 6726     -4.077600e+02 4.856900e+02
+14 6726     -7.834998e+01 -2.572300e+02
+0 6727     -3.539400e+02 4.855900e+02
+11 6727     -1.637700e+02 -2.804600e+02
+12 6727     -7.016200e+02 4.430400e+02
+14 6727     -2.726001e+01 -2.568400e+02
+0 6728     6.691000e+02 4.853600e+02
+2 6728     4.859500e+02 4.711400e+02
+3 6728     3.369600e+02 1.378900e+02
+6 6728     4.158100e+02 6.890800e+02
+8 6728     4.625300e+02 3.586800e+02
+9 6728     2.696600e+02 4.981100e+02
+11 6728     7.364600e+02 -2.437600e+02
+13 6728     8.321600e+02 2.225600e+02
+0 6729     6.655300e+02 4.814900e+02
+2 6729     4.831899e+02 4.697400e+02
+3 6729     3.345400e+02 1.363600e+02
+6 6729     4.124900e+02 6.873400e+02
+13 6729     8.293800e+02 2.193000e+02
+0 6730     7.043500e+02 4.799300e+02
+6 6730     4.581600e+02 6.923500e+02
+9 6730     3.005400e+02 5.054900e+02
+0 6731     7.559900e+02 4.799200e+02
+6 6731     5.166400e+02 7.047200e+02
+9 6731     3.422200e+02 5.204200e+02
+0 6732     -4.121997e+01 4.787800e+02
+2 6732     -3.280700e+02 2.351300e+02
+7 6732     -2.645600e+02 5.416000e+02
+0 6733     -4.121997e+01 4.787800e+02
+2 6733     -3.280700e+02 2.351300e+02
+6 6733     -5.216000e+02 4.850500e+02
+7 6733     -2.645600e+02 5.416000e+02
+12 6733     -3.452700e+02 4.776300e+02
+0 6734     2.317999e+01 4.778200e+02
+7 6734     -2.010900e+02 5.475200e+02
+0 6735     2.317999e+01 4.778200e+02
+7 6735     -2.010900e+02 5.475200e+02
+0 6736     -6.574500e+02 4.765100e+02
+5 6736     -2.812100e+02 -1.727300e+02
+0 6737     -5.509900e+02 4.763500e+02
+14 6737     -2.166600e+02 -2.664000e+02
+0 6738     -2.898500e+02 4.741900e+02
+2 6738     -5.719300e+02 2.298700e+02
+8 6738     -3.897600e+02 1.695800e+02
+12 6738     -6.237200e+02 4.368700e+02
+0 6739     4.982100e+02 4.728000e+02
+3 6739     1.201200e+02 2.520001e+01
+8 6739     2.831200e+02 2.708000e+02
+0 6740     2.610601e+02 4.695500e+02
+2 6740     -5.460999e+01 2.287100e+02
+5 6740     6.641000e+02 -1.763200e+02
+6 6740     -1.904500e+02 5.351900e+02
+7 6740     2.684998e+01 5.632500e+02
+8 6740     3.491998e+01 1.777600e+02
+9 6740     -1.969100e+02 2.708800e+02
+11 6740     3.870200e+02 -2.792300e+02
+12 6740     -2.519000e+01 5.084000e+02
+0 6741     6.363900e+02 4.693500e+02
+2 6741     4.566700e+02 4.466300e+02
+3 6741     3.101700e+02 1.144900e+02
+6 6741     3.805700e+02 6.641800e+02
+8 6741     4.379000e+02 3.385300e+02
+9 6741     2.450500e+02 4.759600e+02
+11 6741     7.101400e+02 -2.596700e+02
+13 6741     8.029900e+02 2.067900e+02
+0 6742     -3.825000e+01 4.682700e+02
+7 6742     -2.603100e+02 5.314700e+02
+14 6742     2.762600e+02 -2.698400e+02
+0 6743     6.919500e+02 4.667800e+02
+2 6743     5.138500e+02 4.640600e+02
+6 6743     4.469100e+02 6.753500e+02
+8 6743     4.848700e+02 3.491100e+02
+9 6743     2.928600e+02 4.896800e+02
+11 6743     7.611300e+02 -2.599800e+02
+0 6744     6.919500e+02 4.667800e+02
+2 6744     5.138500e+02 4.640600e+02
+6 6744     4.469100e+02 6.753500e+02
+8 6744     4.848700e+02 3.491100e+02
+9 6744     2.928600e+02 4.896800e+02
+11 6744     7.611300e+02 -2.599800e+02
+0 6745     7.703600e+02 4.671800e+02
+2 6745     5.893000e+02 4.891200e+02
+0 6746     5.513700e+02 4.652800e+02
+8 6746     3.330500e+02 2.802800e+02
+11 6746     6.414000e+02 -2.670600e+02
+13 6746     6.996801e+02 1.894400e+02
+0 6747     2.195500e+02 4.652100e+02
+2 6747     -9.065002e+01 2.233000e+02
+14 6747     5.282300e+02 -2.627800e+02
+0 6748     2.052600e+02 4.635100e+02
+6 6748     -2.491400e+02 5.155000e+02
+7 6748     -2.510999e+01 5.519000e+02
+8 6748     -4.760010e+00 1.703500e+02
+9 6748     -2.371400e+02 2.626300e+02
+12 6748     -8.225000e+01 4.935500e+02
+14 6748     5.145500e+02 -2.649800e+02
+0 6749     -1.833300e+02 4.623300e+02
+5 6749     2.234301e+02 -1.916700e+02
+8 6749     -3.005500e+02 1.583400e+02
+0 6750     8.306600e+02 4.616400e+02
+2 6750     6.484000e+02 5.047300e+02
+3 6750     4.872200e+02 1.707400e+02
+8 6750     5.989600e+02 3.841400e+02
+9 6750     4.065200e+02 5.298000e+02
+0 6751     1.084998e+01 4.584800e+02
+2 6751     -2.775200e+02 2.135400e+02
+6 6751     -4.593800e+02 4.697400e+02
+8 6751     -1.487000e+02 1.612300e+02
+12 6751     -2.856100e+02 4.612900e+02
+14 6751     3.240601e+02 -2.785100e+02
+0 6752     8.460699e+02 4.577100e+02
+2 6752     6.641500e+02 5.060500e+02
+3 6752     5.011100e+02 1.720500e+02
+9 6752     4.189399e+02 5.311100e+02
+0 6753     2.253998e+01 4.569500e+02
+2 6753     -2.655300e+02 2.111300e+02
+6 6753     -4.445100e+02 4.704300e+02
+7 6753     -1.990800e+02 5.261400e+02
+11 6753     1.695500e+02 -3.000400e+02
+12 6753     -2.717700e+02 4.615000e+02
+0 6754     8.412100e+02 4.565200e+02
+2 6754     6.585699e+02 5.035600e+02
+3 6754     4.968800e+02 1.697800e+02
+9 6754     4.147300e+02 5.291200e+02
+0 6755     3.575300e+02 4.546400e+02
+9 6755     -1.251700e+02 2.622400e+02
+0 6756     3.575300e+02 4.546400e+02
+9 6756     -1.251700e+02 2.622400e+02
+11 6756     4.795200e+02 -2.869400e+02
+0 6757     8.474100e+02 4.537700e+02
+2 6757     6.655800e+02 5.031500e+02
+9 6757     4.209100e+02 5.289000e+02
+0 6758     8.474100e+02 4.537700e+02
+2 6758     6.655800e+02 5.031500e+02
+3 6758     5.032000e+02 1.695900e+02
+9 6758     4.209100e+02 5.289000e+02
+0 6759     5.541600e+02 4.538900e+02
+8 6759     3.370800e+02 2.714700e+02
+13 6759     7.029301e+02 1.809200e+02
+0 6760     6.868199e+02 4.522600e+02
+2 6760     5.122200e+02 4.488500e+02
+3 6760     3.628000e+02 1.177700e+02
+6 6760     4.443600e+02 6.588800e+02
+8 6760     4.840200e+02 3.395600e+02
+9 6760     2.923900e+02 4.796000e+02
+13 6760     8.531899e+02 1.982800e+02
+0 6761     8.400400e+02 4.483400e+02
+9 6761     4.158600e+02 5.219100e+02
+0 6762     2.270300e+02 4.472700e+02
+3 6762     -2.223200e+02 -1.279400e+02
+7 6762     -2.309998e+00 5.370100e+02
+14 6762     5.367100e+02 -2.824000e+02
+0 6763     8.629800e+02 4.463800e+02
+3 6763     5.183000e+02 1.687300e+02
+0 6764     -2.260300e+02 4.413200e+02
+7 6764     -4.435800e+02 4.829000e+02
+0 6765     -1.212000e+02 4.404700e+02
+2 6765     -4.016400e+02 1.893700e+02
+3 6765     -5.316000e+02 -1.408800e+02
+7 6765     -3.380400e+02 4.936600e+02
+8 6765     -2.503300e+02 1.404700e+02
+12 6765     -4.264300e+02 4.200200e+02
+13 6765     9.528998e+01 1.130200e+02
+14 6765     1.962600e+02 -3.010700e+02
+0 6766     6.357300e+02 4.404100e+02
+9 6766     2.505200e+02 4.538200e+02
+0 6767     -4.335800e+02 4.384800e+02
+14 6767     -1.077600e+02 -3.067100e+02
+0 6768     6.323800e+02 4.375000e+02
+2 6768     4.604399e+02 4.169500e+02
+3 6768     3.145900e+02 8.683002e+01
+6 6768     3.834000e+02 6.286900e+02
+8 6768     4.408800e+02 3.139400e+02
+9 6768     2.485900e+02 4.505900e+02
+13 6768     8.024600e+02 1.808800e+02
+0 6769     6.380000e+02 4.364800e+02
+2 6769     4.662500e+02 4.179500e+02
+3 6769     3.204399e+02 8.817999e+01
+6 6769     3.900800e+02 6.292800e+02
+8 6769     4.455400e+02 3.152800e+02
+9 6769     2.533300e+02 4.515900e+02
+0 6770     7.416600e+02 4.361500e+02
+2 6770     5.716700e+02 4.536700e+02
+9 6770     3.400900e+02 4.859800e+02
+0 6771     8.422000e+02 4.332900e+02
+9 6771     4.207800e+02 5.121200e+02
+0 6772     8.513800e+02 4.333900e+02
+3 6772     5.122000e+02 1.551600e+02
+0 6773     7.410300e+02 4.321400e+02
+2 6773     5.708500e+02 4.502700e+02
+3 6773     4.182200e+02 1.199900e+02
+6 6773     5.115601e+02 6.519100e+02
+8 6773     5.325200e+02 3.401800e+02
+9 6773     3.421899e+02 4.819700e+02
+0 6774     7.410300e+02 4.321400e+02
+2 6774     5.708500e+02 4.502700e+02
+3 6774     4.182200e+02 1.199900e+02
+6 6774     5.115601e+02 6.519100e+02
+8 6774     5.325200e+02 3.401800e+02
+9 6774     3.421899e+02 4.819700e+02
+0 6775     -6.490200e+02 4.305500e+02
+13 6775     -3.645000e+02 7.646997e+01
+0 6776     -2.799500e+02 4.306900e+02
+7 6776     -4.968700e+02 4.657300e+02
+0 6777     6.871100e+02 4.294600e+02
+8 6777     4.888800e+02 3.236700e+02
+0 6778     -1.088300e+02 4.288900e+02
+2 6778     -3.895300e+02 1.754000e+02
+7 6778     -3.248600e+02 4.830000e+02
+8 6778     -2.401700e+02 1.298000e+02
+11 6778     5.128998e+01 -3.279800e+02
+13 6778     1.045000e+02 1.038300e+02
+0 6779     1.966400e+02 4.289300e+02
+2 6779     -1.055800e+02 1.810700e+02
+5 6779     5.998400e+02 -2.222200e+02
+7 6779     -2.876001e+01 5.159900e+02
+0 6780     7.491400e+02 4.262600e+02
+3 6780     4.268600e+02 1.180700e+02
+0 6781     -1.071700e+02 4.258500e+02
+2 6781     -3.871700e+02 1.719200e+02
+0 6782     -1.838300e+02 4.253100e+02
+2 6782     -4.626400e+02 1.707300e+02
+7 6782     -3.993600e+02 4.715100e+02
+0 6783     6.863101e+02 4.256300e+02
+6 6783     4.500200e+02 6.303100e+02
+8 6783     4.886600e+02 3.199800e+02
+11 6783     7.661899e+02 -2.967800e+02
+0 6784     6.950699e+02 4.242200e+02
+2 6784     5.277600e+02 4.271500e+02
+3 6784     3.780601e+02 9.841998e+01
+8 6784     4.963101e+02 3.223200e+02
+9 6784     3.058800e+02 4.616900e+02
+13 6784     8.644700e+02 1.765500e+02
+0 6785     -1.935800e+02 4.228500e+02
+7 6785     -4.084700e+02 4.670800e+02
+0 6786     -3.638900e+02 4.209100e+02
+5 6786     4.119000e+01 -2.331800e+02
+7 6786     -5.818500e+02 4.451000e+02
+11 6786     -1.742200e+02 -3.365800e+02
+0 6787     -4.035700e+02 4.194600e+02
+2 6787     -6.913100e+02 1.616800e+02
+5 6787     1.840027e+00 -2.339700e+02
+10 6787     -6.261300e+02 6.060000e+02
+0 6788     -4.035700e+02 4.194600e+02
+2 6788     -6.913100e+02 1.616800e+02
+5 6788     1.840027e+00 -2.339700e+02
+7 6788     -6.234100e+02 4.399400e+02
+10 6788     -6.262200e+02 6.061300e+02
+12 6788     -7.496700e+02 3.512500e+02
+13 6788     -1.297700e+02 8.339001e+01
+0 6789     -2.701800e+02 4.191800e+02
+5 6789     1.336700e+02 -2.355800e+02
+7 6789     -4.856000e+02 4.548800e+02
+13 6789     -2.381000e+01 8.810999e+01
+14 6789     4.915002e+01 -3.258700e+02
+0 6790     8.688199e+02 4.175300e+02
+3 6790     5.304301e+02 1.480400e+02
+0 6791     6.411600e+02 4.165900e+02
+2 6791     4.750601e+02 4.014700e+02
+6 6791     4.004800e+02 6.075900e+02
+12 6791     4.842400e+02 6.142600e+02
+13 6791     8.134900e+02 1.645500e+02
+0 6792     7.045100e+02 4.144800e+02
+2 6792     5.396801e+02 4.219700e+02
+3 6792     3.895900e+02 9.332001e+01
+6 6792     4.743199e+02 6.235000e+02
+8 6792     5.065699e+02 3.172100e+02
+9 6792     3.163300e+02 4.572500e+02
+11 6792     7.862900e+02 -3.062900e+02
+0 6793     4.928900e+02 4.115100e+02
+2 6793     2.705601e+02 2.949700e+02
+6 6793     1.750500e+02 5.482500e+02
+7 6793     2.781700e+02 5.512900e+02
+9 6793     8.496002e+01 3.395600e+02
+11 6793     5.979100e+02 -3.197600e+02
+0 6794     5.102200e+02 4.110500e+02
+7 6794     2.953900e+02 5.538800e+02
+9 6794     1.024300e+02 3.460800e+02
+0 6795     5.377000e+02 4.080000e+02
+2 6795     3.224200e+02 3.095900e+02
+3 6795     1.802800e+02 -1.800000e+01
+7 6795     3.234100e+02 5.554800e+02
+8 6795     3.315000e+02 2.318000e+02
+11 6795     6.392400e+02 -3.206300e+02
+13 6795     6.921100e+02 1.410500e+02
+0 6796     -3.480100e+02 4.070700e+02
+5 6796     5.571997e+01 -2.472600e+02
+13 6796     -8.615997e+01 7.410999e+01
+14 6796     -2.778998e+01 -3.394100e+02
+0 6797     7.909100e+02 4.045500e+02
+3 6797     4.695100e+02 1.148600e+02
+0 6798     -7.316400e+02 4.035700e+02
+13 6798     -4.692900e+02 4.341998e+01
+14 6798     -4.969100e+02 -3.517900e+02
+0 6799     5.402600e+02 4.039600e+02
+7 6799     3.264000e+02 5.517000e+02
+0 6800     5.402600e+02 4.039600e+02
+7 6800     3.264000e+02 5.517000e+02
+0 6801     -6.265900e+02 4.014300e+02
+5 6801     -2.514300e+02 -2.481700e+02
+7 6801     -8.703200e+02 3.890500e+02
+13 6801     -3.343300e+02 5.548999e+01
+14 6801     -3.314800e+02 -3.470700e+02
+0 6802     4.742300e+02 3.987700e+02
+2 6802     2.514900e+02 2.751400e+02
+7 6802     2.609600e+02 5.356100e+02
+13 6802     6.297400e+02 1.262500e+02
+14 6802     8.635400e+02 -3.066500e+02
+0 6803     5.982500e+02 3.978800e+02
+2 6803     4.340601e+02 3.680400e+02
+8 6803     4.191100e+02 2.742000e+02
+9 6803     2.273500e+02 4.077100e+02
+12 6803     4.379100e+02 5.805800e+02
+13 6803     7.737400e+02 1.444900e+02
+0 6804     -2.690400e+02 3.975900e+02
+5 6804     1.330200e+02 -2.593900e+02
+0 6805     -2.690400e+02 3.975900e+02
+5 6805     1.330200e+02 -2.593900e+02
+7 6805     -4.811500e+02 4.320500e+02
+10 6805     -4.572800e+02 5.889400e+02
+14 6805     4.945001e+01 -3.490300e+02
+0 6806     2.557001e+01 3.965900e+02
+5 6806     4.266100e+02 -2.622200e+02
+6 6806     -4.306200e+02 3.920200e+02
+7 6806     -1.892600e+02 4.646200e+02
+12 6806     -2.580200e+02 3.898300e+02
+14 6806     3.387100e+02 -3.441800e+02
+0 6807     -3.008200e+02 3.960600e+02
+7 6807     -5.141300e+02 4.267800e+02
+8 6807     -3.965000e+02 9.337000e+01
+10 6807     -4.952200e+02 5.852700e+02
+12 6807     -6.237200e+02 3.386900e+02
+0 6808     6.100200e+02 3.956700e+02
+2 6808     4.473500e+02 3.704400e+02
+3 6808     3.033800e+02 4.297998e+01
+6 6808     3.660300e+02 5.759000e+02
+7 6808     4.083900e+02 5.639400e+02
+8 6808     4.289700e+02 2.753400e+02
+9 6808     2.382600e+02 4.096600e+02
+13 6808     7.855100e+02 1.436200e+02
+0 6809     -4.066500e+02 3.947900e+02
+2 6809     -6.940400e+02 1.300800e+02
+5 6809     -3.849976e+00 -2.599000e+02
+7 6809     -6.228300e+02 4.133000e+02
+8 6809     -4.880300e+02 8.885999e+01
+10 6809     -6.261500e+02 5.744100e+02
+11 6809     -2.137800e+02 -3.584900e+02
+13 6809     -1.334900e+02 6.113000e+01
+14 6809     -8.651001e+01 -3.528500e+02
+0 6810     -4.066500e+02 3.947900e+02
+2 6810     -6.940400e+02 1.300800e+02
+10 6810     -6.261500e+02 5.744100e+02
+0 6811     -4.014200e+02 3.949400e+02
+7 6811     -6.163800e+02 4.138800e+02
+13 6811     -1.284800e+02 6.152002e+01
+0 6812     -2.742700e+02 3.922900e+02
+5 6812     1.276000e+02 -2.643300e+02
+7 6812     -4.855200e+02 4.262100e+02
+8 6812     -3.736400e+02 9.009000e+01
+10 6812     -4.628200e+02 5.825500e+02
+12 6812     -5.915800e+02 3.384200e+02
+0 6813     5.334800e+02 3.896300e+02
+2 6813     3.215900e+02 2.905300e+02
+3 6813     1.796900e+02 -3.648999e+01
+6 6813     2.323200e+02 5.352600e+02
+7 6813     3.215601e+02 5.367700e+02
+8 6813     3.308500e+02 2.168500e+02
+9 6813     1.299100e+02 3.377600e+02
+11 6813     6.391801e+02 -3.378900e+02
+12 6813     3.383400e+02 5.269200e+02
+13 6813     6.895100e+02 1.253100e+02
+0 6814     -5.529600e+02 3.879300e+02
+5 6814     -1.494200e+02 -2.638700e+02
+0 6815     5.965300e+02 3.880100e+02
+6 6815     3.514600e+02 5.640500e+02
+9 6815     2.278400e+02 3.991300e+02
+11 6815     6.911200e+02 -3.366900e+02
+12 6815     4.380100e+02 5.692300e+02
+13 6815     7.732400e+02 1.358200e+02
+0 6816     6.458600e+02 3.883500e+02
+2 6816     4.873199e+02 3.781800e+02
+3 6816     3.408500e+02 4.976001e+01
+7 6816     4.447000e+02 5.632800e+02
+8 6816     4.621899e+02 2.815900e+02
+12 6816     4.954200e+02 5.872700e+02
+13 6816     8.217300e+02 1.424300e+02
+0 6817     -5.416500e+02 3.840000e+02
+5 6817     -1.387900e+02 -2.675100e+02
+11 6817     -3.311900e+02 -3.658300e+02
+13 6817     -2.427600e+02 4.613000e+01
+14 6817     -2.209600e+02 -3.642200e+02
+0 6818     -9.573999e+01 3.841300e+02
+2 6818     -3.730600e+02 1.214400e+02
+5 6818     3.047700e+02 -2.750200e+02
+6 6818     -5.658700e+02 3.480800e+02
+7 6818     -3.054800e+02 4.378900e+02
+8 6818     -2.269700e+02 8.728000e+01
+9 6818     -4.632900e+02 1.662500e+02
+10 6818     -2.477900e+02 5.885700e+02
+12 6818     -3.880100e+02 3.552800e+02
+13 6818     1.151900e+02 6.540002e+01
+14 6818     2.192900e+02 -3.610800e+02
+0 6819     6.478300e+02 3.841900e+02
+2 6819     4.900500e+02 3.747200e+02
+3 6819     3.441400e+02 4.770001e+01
+6 6819     4.149300e+02 5.754600e+02
+7 6819     4.472100e+02 5.597100e+02
+8 6819     4.647700e+02 2.788000e+02
+9 6819     2.748300e+02 4.151500e+02
+11 6819     7.400500e+02 -3.375300e+02
+12 6819     4.981801e+02 5.829600e+02
+13 6819     8.238101e+02 1.388800e+02
+0 6820     -4.982000e+02 3.835000e+02
+5 6820     -9.604999e+01 -2.696000e+02
+8 6820     -5.709600e+02 7.414001e+01
+13 6820     -2.075800e+02 4.826001e+01
+14 6820     -1.780800e+02 -3.642700e+02
+0 6821     -5.414100e+02 3.801500e+02
+5 6821     -1.389800e+02 -2.719400e+02
+14 6821     -2.210400e+02 -3.680300e+02
+0 6822     -5.414100e+02 3.801500e+02
+14 6822     -2.210400e+02 -3.680300e+02
+0 6823     -5.043400e+02 3.792900e+02
+8 6823     -5.770300e+02 7.056000e+01
+10 6823     -7.454600e+02 5.478100e+02
+11 6823     -2.994200e+02 -3.702100e+02
+13 6823     -2.126700e+02 4.414001e+01
+14 6823     -1.842700e+02 -3.690800e+02
+0 6824     -4.916000e+02 3.743400e+02
+14 6824     -1.725700e+02 -3.742800e+02
+0 6825     5.510400e+02 3.743700e+02
+2 6825     3.451500e+02 2.824200e+02
+7 6825     3.410601e+02 5.246400e+02
+8 6825     3.497300e+02 2.096300e+02
+9 6825     1.505000e+02 3.313700e+02
+11 6825     6.584700e+02 -3.515300e+02
+0 6826     8.462200e+02 3.728600e+02
+2 6826     6.862300e+02 4.352100e+02
+3 6826     5.255900e+02 1.080700e+02
+0 6827     8.462200e+02 3.728600e+02
+2 6827     6.862300e+02 4.352100e+02
+3 6827     5.255900e+02 1.080700e+02
+7 6827     6.385000e+02 5.804000e+02
+9 6827     4.391500e+02 4.715300e+02
+0 6828     6.259301e+02 3.716000e+02
+2 6828     4.701500e+02 3.549300e+02
+3 6828     3.258000e+02 2.919000e+01
+6 6828     3.918400e+02 5.553700e+02
+7 6828     4.272000e+02 5.438400e+02
+12 6828     4.761400e+02 5.622600e+02
+0 6829     5.657600e+02 3.708600e+02
+2 6829     3.620900e+02 2.854600e+02
+3 6829     2.192300e+02 -4.007001e+01
+7 6829     3.562500e+02 5.240200e+02
+8 6829     3.634700e+02 2.120100e+02
+12 6829     3.805400e+02 5.177200e+02
+0 6830     -1.427400e+02 3.699100e+02
+13 6830     7.766998e+01 5.087000e+01
+0 6831     -5.405300e+02 3.694100e+02
+5 6831     -1.399300e+02 -2.832700e+02
+7 6831     -7.614300e+02 3.700700e+02
+10 6831     -7.900100e+02 5.328600e+02
+15 6831     -8.212900e+02 5.729800e+02
+0 6832     -1.088500e+02 3.697100e+02
+5 6832     2.895699e+02 -2.904700e+02
+8 6832     -2.374100e+02 7.345001e+01
+0 6833     5.096100e+02 3.696000e+02
+2 6833     2.990500e+02 2.608700e+02
+7 6833     2.999100e+02 5.124700e+02
+9 6833     1.117800e+02 3.098200e+02
+0 6834     5.585300e+02 3.690600e+02
+3 6834     2.122100e+02 -4.478003e+01
+7 6834     3.491801e+02 5.209800e+02
+8 6834     3.575300e+02 2.082400e+02
+11 6834     6.666400e+02 -3.561900e+02
+13 6834     7.166700e+02 1.109700e+02
+0 6835     5.674900e+02 3.677000e+02
+2 6835     3.648000e+02 2.831400e+02
+3 6835     2.217100e+02 -4.227002e+01
+6 6835     2.810900e+02 5.211900e+02
+8 6835     3.659300e+02 2.098300e+02
+9 6835     1.671801e+02 3.328000e+02
+13 6835     7.251899e+02 1.108600e+02
+0 6836     -4.073800e+02 3.658400e+02
+7 6836     -6.175700e+02 3.833800e+02
+0 6837     -4.109400e+02 3.640200e+02
+2 6837     -6.838500e+02 9.785999e+01
+10 6837     -6.269800e+02 5.360600e+02
+0 6838     5.671801e+02 3.637500e+02
+2 6838     3.654301e+02 2.791400e+02
+3 6838     2.224600e+02 -4.614001e+01
+6 6838     2.818000e+02 5.166100e+02
+7 6838     3.582800e+02 5.175000e+02
+8 6838     3.662000e+02 2.067100e+02
+9 6838     1.679800e+02 3.295000e+02
+12 6838     3.838700e+02 5.104100e+02
+13 6838     7.255400e+02 1.074900e+02
+0 6839     -1.965000e+02 3.636300e+02
+12 6839     -4.975400e+02 3.149500e+02
+0 6840     -1.965000e+02 3.636300e+02
+12 6840     -4.975400e+02 3.149500e+02
+14 6840     1.184600e+02 -3.853100e+02
+0 6841     -7.310200e+02 3.612600e+02
+13 6841     -4.601600e+02 8.289978e+00
+14 6841     -4.904900e+02 -3.961800e+02
+0 6842     -1.511700e+02 3.610000e+02
+2 6842     -4.269900e+02 9.106000e+01
+7 6842     -3.576300e+02 4.078800e+02
+13 6842     7.059998e+01 4.258002e+01
+14 6842     1.630200e+02 -3.876200e+02
+0 6843     6.780029e+00 3.605600e+02
+2 6843     -2.726600e+02 9.519000e+01
+5 6843     4.062200e+02 -3.006000e+02
+6 6843     -4.447100e+02 3.405200e+02
+7 6843     -2.023700e+02 4.250800e+02
+8 6843     -1.447400e+02 6.856000e+01
+9 6843     -3.758100e+02 1.475800e+02
+13 6843     1.966500e+02 4.981000e+01
+14 6843     3.201500e+02 -3.849500e+02
+0 6844     7.811400e+02 3.579200e+02
+2 6844     6.298500e+02 4.003800e+02
+3 6844     4.750200e+02 7.602002e+01
+7 6844     5.794301e+02 5.561200e+02
+9 6844     3.926300e+02 4.405800e+02
+0 6845     2.619995e+00 3.555100e+02
+5 6845     4.020800e+02 -3.059400e+02
+10 6845     -1.279900e+02 5.631800e+02
+0 6846     -5.636500e+02 3.529300e+02
+5 6846     -1.655100e+02 -3.001200e+02
+7 6846     -7.839500e+02 3.500300e+02
+10 6846     -8.168800e+02 5.107900e+02
+14 6846     -2.473400e+02 -3.968900e+02
+15 6846     -8.509400e+02 5.470200e+02
+0 6847     6.740100e+02 3.530200e+02
+2 6847     5.254000e+02 3.566700e+02
+7 6847     4.772300e+02 5.339300e+02
+9 6847     3.054000e+02 4.010000e+02
+13 6847     8.530699e+02 1.162300e+02
+0 6848     6.740100e+02 3.530200e+02
+2 6848     5.254000e+02 3.566700e+02
+6 6848     4.541899e+02 5.499500e+02
+7 6848     4.772300e+02 5.339300e+02
+8 6848     4.938800e+02 2.634800e+02
+9 6848     3.054000e+02 4.010000e+02
+0 6849     6.740100e+02 3.530200e+02
+2 6849     5.254000e+02 3.566700e+02
+6 6849     4.541899e+02 5.499500e+02
+7 6849     4.772300e+02 5.339300e+02
+8 6849     4.938800e+02 2.634800e+02
+9 6849     3.054000e+02 4.010000e+02
+12 6849     5.362300e+02 5.592600e+02
+0 6850     -3.839100e+02 3.517000e+02
+2 6850     -6.683300e+02 7.528998e+01
+5 6850     1.339001e+01 -3.064300e+02
+7 6850     -5.929100e+02 3.703800e+02
+8 6850     -4.672700e+02 4.617001e+01
+10 6850     -5.908300e+02 5.228900e+02
+11 6850     -1.955200e+02 -3.962500e+02
+14 6850     -6.846997e+01 -3.992100e+02
+15 6850     -5.970400e+02 5.685800e+02
+0 6851     -2.707900e+02 3.507700e+02
+7 6851     -4.772100e+02 3.817000e+02
+0 6852     -3.652100e+02 3.485300e+02
+11 6852     -1.791700e+02 -3.996300e+02
+13 6852     -1.016400e+02 2.267999e+01
+0 6853     1.893700e+02 3.485700e+02
+6 6853     -2.165300e+02 3.753800e+02
+0 6854     -4.090100e+02 3.469200e+02
+10 6854     -6.210300e+02 5.152300e+02
+11 6854     -2.175400e+02 -4.001100e+02
+13 6854     -1.372700e+02 1.971002e+01
+0 6855     2.184998e+01 3.469000e+02
+13 6855     2.115800e+02 3.953998e+01
+14 6855     3.397300e+02 -3.988100e+02
+0 6856     7.840300e+02 3.468200e+02
+2 6856     6.354301e+02 3.915300e+02
+3 6856     4.808900e+02 6.728998e+01
+6 6856     5.809800e+02 5.747100e+02
+7 6856     5.835000e+02 5.462000e+02
+8 6856     5.863400e+02 2.897000e+02
+9 6856     3.971600e+02 4.340500e+02
+12 6856     6.608900e+02 5.879500e+02
+0 6857     6.850800e+02 3.465300e+02
+2 6857     5.382200e+02 3.548200e+02
+3 6857     3.908400e+02 3.072998e+01
+6 6857     4.686200e+02 5.460200e+02
+7 6857     4.886500e+02 5.295600e+02
+8 6857     5.044000e+02 2.615900e+02
+9 6857     3.163500e+02 3.996900e+02
+12 6857     5.501600e+02 5.554000e+02
+13 6857     8.647200e+02 1.122400e+02
+0 6858     7.471700e+02 3.460200e+02
+3 6858     4.478600e+02 5.338000e+01
+7 6858     5.485200e+02 5.393200e+02
+0 6859     7.999301e+02 3.441600e+02
+2 6859     6.509800e+02 3.949800e+02
+0 6860     7.999301e+02 3.441600e+02
+2 6860     6.509800e+02 3.949800e+02
+3 6860     4.955300e+02 7.079999e+01
+7 6860     5.990500e+02 5.460100e+02
+9 6860     4.110400e+02 4.366200e+02
+12 6860     6.787900e+02 5.905900e+02
+0 6861     6.174000e+02 3.420100e+02
+7 6861     4.229900e+02 5.139600e+02
+0 6862     6.174000e+02 3.420100e+02
+3 6862     3.250699e+02 -3.599854e-01
+0 6863     7.822200e+02 3.413400e+02
+2 6863     6.352500e+02 3.860600e+02
+3 6863     4.810400e+02 6.253003e+01
+0 6864     7.469700e+02 3.412400e+02
+2 6864     6.014600e+02 3.737700e+02
+3 6864     4.494600e+02 4.994000e+01
+6 6864     5.412400e+02 5.586900e+02
+7 6864     5.491801e+02 5.351400e+02
+9 6864     3.694500e+02 4.170800e+02
+0 6865     6.141700e+02 3.407300e+02
+2 6865     4.656400e+02 3.213800e+02
+6 6865     3.847500e+02 5.183900e+02
+8 6865     4.442400e+02 2.354600e+02
+9 6865     2.550699e+02 3.696300e+02
+0 6866     -1.413400e+02 3.345900e+02
+2 6866     -4.146900e+02 5.798999e+01
+11 6866     2.326001e+01 -4.142600e+02
+0 6867     3.266998e+01 3.347400e+02
+7 6867     -1.708700e+02 4.037400e+02
+0 6868     -3.325700e+02 3.342300e+02
+2 6868     -6.119900e+02 5.241998e+01
+7 6868     -5.381000e+02 3.583200e+02
+14 6868     -2.026001e+01 -4.178000e+02
+0 6869     6.026000e+02 3.339700e+02
+2 6869     4.549600e+02 3.092700e+02
+3 6869     3.124800e+02 -1.364001e+01
+6 6869     3.723300e+02 5.070000e+02
+8 6869     4.352800e+02 2.263500e+02
+9 6869     2.463600e+02 3.591500e+02
+11 6869     7.085400e+02 -3.878900e+02
+0 6870     6.874200e+02 3.334200e+02
+7 6870     4.924900e+02 5.183500e+02
+9 6870     3.214200e+02 3.908500e+02
+0 6871     -5.044400e+02 3.330700e+02
+5 6871     -1.100300e+02 -3.237900e+02
+7 6871     -7.171000e+02 3.349000e+02
+8 6871     -5.770300e+02 2.210999e+01
+10 6871     -7.381500e+02 4.900900e+02
+14 6871     -1.913200e+02 -4.186800e+02
+15 6871     -7.633900e+02 5.258700e+02
+0 6872     8.152500e+02 3.327500e+02
+2 6872     6.683700e+02 3.906200e+02
+9 6872     4.255699e+02 4.328000e+02
+0 6873     8.152500e+02 3.327500e+02
+2 6873     6.683700e+02 3.906200e+02
+7 6873     6.149399e+02 5.375200e+02
+9 6873     4.255699e+02 4.328000e+02
+0 6874     6.597800e+02 3.318500e+02
+6 6874     4.420699e+02 5.226100e+02
+7 6874     4.657700e+02 5.110500e+02
+8 6874     4.862600e+02 2.429300e+02
+9 6874     2.974500e+02 3.786700e+02
+12 6874     5.246500e+02 5.312000e+02
+13 6874     8.419700e+02 9.726001e+01
+0 6875     8.237400e+02 3.315200e+02
+2 6875     6.772200e+02 3.924500e+02
+3 6875     5.193199e+02 6.894000e+01
+7 6875     6.231100e+02 5.378000e+02
+9 6875     4.329100e+02 4.352300e+02
+12 6875     7.079900e+02 5.851700e+02
+0 6876     8.237400e+02 3.315200e+02
+2 6876     6.772200e+02 3.924500e+02
+3 6876     5.193199e+02 6.894000e+01
+7 6876     6.231100e+02 5.378000e+02
+9 6876     4.329100e+02 4.352300e+02
+12 6876     7.079900e+02 5.851700e+02
+0 6877     5.730500e+02 3.296300e+02
+3 6877     2.834500e+02 -3.009003e+01
+10 6877     5.468900e+02 5.913400e+02
+13 6877     7.568900e+02 8.454999e+01
+0 6878     8.070000e+02 3.284800e+02
+3 6878     5.061801e+02 6.085999e+01
+7 6878     6.076200e+02 5.324800e+02
+10 6878     8.283700e+02 6.184200e+02
+0 6879     -4.694600e+02 3.278700e+02
+10 6879     -6.934400e+02 4.864500e+02
+11 6879     -2.724200e+02 -4.164200e+02
+12 6879     -8.184200e+02 2.197900e+02
+0 6880     6.535000e+02 3.280400e+02
+2 6880     5.104000e+02 3.251300e+02
+3 6880     3.651801e+02 2.059998e+00
+6 6880     4.353199e+02 5.161400e+02
+7 6880     4.600699e+02 5.064100e+02
+8 6880     4.809600e+02 2.375500e+02
+9 6880     2.928500e+02 3.735200e+02
+10 6880     6.427700e+02 5.986600e+02
+11 6880     7.593199e+02 -3.915900e+02
+12 6880     5.183900e+02 5.241400e+02
+13 6880     8.360800e+02 9.295999e+01
+0 6881     -4.659200e+02 3.271500e+02
+7 6881     -6.774500e+02 3.321800e+02
+10 6881     -6.893900e+02 4.863100e+02
+12 6881     -8.141300e+02 2.197300e+02
+15 6881     -7.076400e+02 5.229900e+02
+0 6882     -3.151300e+02 3.263200e+02
+7 6882     -5.183300e+02 3.513400e+02
+10 6882     -5.039800e+02 4.977100e+02
+13 6882     -6.190002e+01 4.859985e+00
+14 6882     -2.700012e+00 -4.275700e+02
+15 6882     -4.961200e+02 5.415400e+02
+0 6883     -2.431100e+02 3.259800e+02
+7 6883     -4.457100e+02 3.599400e+02
+15 6883     -3.958500e+02 5.510700e+02
+0 6884     -1.495100e+02 3.260000e+02
+7 6884     -3.513500e+02 3.712600e+02
+11 6884     1.598999e+01 -4.214600e+02
+14 6884     1.634100e+02 -4.265100e+02
+0 6885     7.522300e+02 3.246600e+02
+2 6885     6.108101e+02 3.600900e+02
+3 6885     4.591500e+02 3.850000e+01
+6 6885     5.513600e+02 5.426700e+02
+7 6885     5.562700e+02 5.197700e+02
+8 6885     5.650699e+02 2.652500e+02
+9 6885     3.774600e+02 4.067400e+02
+10 6885     7.616300e+02 6.067500e+02
+12 6885     6.306200e+02 5.539600e+02
+0 6886     7.522300e+02 3.246600e+02
+3 6886     4.591500e+02 3.850000e+01
+6 6886     5.513600e+02 5.426700e+02
+7 6886     5.562700e+02 5.197700e+02
+8 6886     5.650699e+02 2.652500e+02
+10 6886     7.616300e+02 6.067500e+02
+12 6886     6.306200e+02 5.539600e+02
+0 6887     -4.687200e+02 3.241800e+02
+7 6887     -6.799300e+02 3.286000e+02
+10 6887     -6.923500e+02 4.825000e+02
+11 6887     -2.719700e+02 -4.197300e+02
+12 6887     -8.170800e+02 2.152700e+02
+15 6887     -7.109000e+02 5.185400e+02
+0 6888     5.789100e+02 3.210500e+02
+2 6888     4.331700e+02 2.882900e+02
+3 6888     2.941300e+02 -3.360999e+01
+6 6888     3.492200e+02 4.864100e+02
+7 6888     3.899000e+02 4.875500e+02
+8 6888     4.187700e+02 2.097600e+02
+9 6888     2.294600e+02 3.402900e+02
+12 6888     4.362200e+02 4.920300e+02
+0 6889     -5.179100e+02 3.196500e+02
+7 6889     -7.295500e+02 3.193100e+02
+10 6889     -7.531800e+02 4.726500e+02
+14 6889     -2.066300e+02 -4.340900e+02
+15 6889     -7.801400e+02 5.059100e+02
+0 6890     -5.681000e+02 3.180100e+02
+5 6890     -1.759100e+02 -3.380700e+02
+10 6890     -8.166300e+02 4.670000e+02
+11 6890     -3.603700e+02 -4.226200e+02
+14 6890     -2.575800e+02 -4.357000e+02
+15 6890     -8.503400e+02 4.972600e+02
+0 6891     -3.990100e+02 3.177900e+02
+5 6891     -6.359985e+00 -3.443900e+02
+8 6891     -4.802000e+02 9.869995e+00
+12 6891     -7.255000e+02 2.214400e+02
+15 6891     -6.119300e+02 5.187100e+02
+0 6892     8.440800e+02 3.168400e+02
+2 6892     6.999800e+02 3.870100e+02
+3 6892     5.411899e+02 6.441998e+01
+7 6892     6.438700e+02 5.271600e+02
+0 6893     7.107400e+02 3.155600e+02
+2 6893     5.724399e+02 3.370100e+02
+6 6893     5.057400e+02 5.203800e+02
+7 6893     5.172900e+02 5.045900e+02
+0 6894     7.107400e+02 3.155600e+02
+2 6894     5.724399e+02 3.370100e+02
+0 6895     -1.985600e+02 3.131800e+02
+2 6895     -4.716900e+02 2.901001e+01
+7 6895     -3.983200e+02 3.517000e+02
+14 6895     1.136800e+02 -4.417100e+02
+15 6895     -3.315400e+02 5.385400e+02
+0 6896     7.503998e+01 3.137000e+02
+7 6896     -1.242200e+02 3.899000e+02
+15 6896     4.506000e+01 5.768300e+02
+0 6897     6.557800e+02 3.136300e+02
+3 6897     3.710800e+02 -9.280029e+00
+6 6897     4.423300e+02 5.019600e+02
+7 6897     4.643800e+02 4.929100e+02
+0 6898     6.178199e+02 3.094300e+02
+2 6898     4.781100e+02 2.932200e+02
+3 6898     3.354399e+02 -2.906000e+01
+6 6898     3.974400e+02 4.849800e+02
+7 6898     4.275900e+02 4.821100e+02
+8 6898     4.536801e+02 2.125900e+02
+9 6898     2.661700e+02 3.458800e+02
+10 6898     6.012900e+02 5.724800e+02
+11 6898     7.293800e+02 -4.118800e+02
+12 6898     4.825000e+02 4.920000e+02
+13 6898     8.034700e+02 7.303998e+01
+0 6899     -1.817100e+02 3.083300e+02
+7 6899     -3.810900e+02 3.487700e+02
+15 6899     -3.079100e+02 5.335600e+02
+0 6900     -5.725700e+02 3.007100e+02
+10 6900     -8.191200e+02 4.448200e+02
+13 6900     -2.711200e+02 -2.851001e+01
+0 6901     3.624000e+02 2.992900e+02
+6 6901     1.284998e+01 3.677300e+02
+14 6901     7.280100e+02 -4.292200e+02
+0 6902     4.494000e+02 2.980600e+02
+10 6902     4.024800e+02 5.397200e+02
+11 6902     5.767500e+02 -4.284800e+02
+12 6902     2.602200e+02 3.973000e+02
+0 6903     6.092600e+02 2.971400e+02
+2 6903     4.719500e+02 2.783900e+02
+3 6903     3.301300e+02 -4.315002e+01
+6 6903     3.900100e+02 4.689900e+02
+7 6903     4.206899e+02 4.688700e+02
+8 6903     4.487200e+02 2.001600e+02
+9 6903     2.615500e+02 3.326900e+02
+10 6903     5.918400e+02 5.565100e+02
+11 6903     7.229301e+02 -4.235400e+02
+12 6903     4.753300e+02 4.764800e+02
+13 6903     7.961000e+02 6.191998e+01
+0 6904     6.578101e+02 2.968900e+02
+2 6904     5.229600e+02 2.987200e+02
+3 6904     3.782800e+02 -2.253998e+01
+6 6904     4.485000e+02 4.843200e+02
+9 6904     3.045500e+02 3.510400e+02
+0 6905     -3.698700e+02 2.960300e+02
+7 6905     -5.701100e+02 3.125100e+02
+10 6905     -5.655600e+02 4.559200e+02
+11 6905     -1.858900e+02 -4.475600e+02
+0 6906     -4.479500e+02 2.954800e+02
+7 6906     -6.536000e+02 3.005400e+02
+10 6906     -6.621600e+02 4.489000e+02
+11 6906     -2.556300e+02 -4.463200e+02
+12 6906     -7.860100e+02 1.820200e+02
+15 6906     -6.763700e+02 4.809100e+02
+0 6907     8.781000e+01 2.943600e+02
+2 6907     -1.470300e+02 5.935999e+01
+7 6907     -1.070500e+02 3.737400e+02
+9 6907     -2.634700e+02 1.219400e+02
+0 6908     7.720601e+02 2.943900e+02
+7 6908     5.790500e+02 4.937600e+02
+8 6908     5.886200e+02 2.484000e+02
+12 6908     6.613900e+02 5.288500e+02
+0 6909     7.720601e+02 2.943900e+02
+3 6909     4.863600e+02 2.151001e+01
+6 6909     5.820500e+02 5.160900e+02
+8 6909     5.886200e+02 2.484000e+02
+9 6909     4.009800e+02 3.908400e+02
+10 6909     7.870601e+02 5.728100e+02
+0 6910     8.722000e+02 2.930700e+02
+2 6910     7.326000e+02 3.765600e+02
+3 6910     5.718199e+02 5.591998e+01
+0 6911     7.821000e+02 2.908900e+02
+7 6911     5.890601e+02 4.924300e+02
+10 6911     7.994399e+02 5.691400e+02
+0 6912     4.576400e+02 2.897600e+02
+6 6912     1.590700e+02 3.940500e+02
+7 6912     2.586200e+02 4.263200e+02
+12 6912     2.726100e+02 3.902900e+02
+14 6912     8.629600e+02 -4.288700e+02
+0 6913     4.576400e+02 2.897600e+02
+7 6913     2.586200e+02 4.263200e+02
+0 6914     -5.199400e+02 2.898500e+02
+7 6914     -7.275800e+02 2.873200e+02
+10 6914     -7.518400e+02 4.368600e+02
+15 6914     -7.770800e+02 4.640700e+02
+0 6915     -2.176900e+02 2.886500e+02
+7 6915     -4.135800e+02 3.248000e+02
+10 6915     -3.800800e+02 4.615100e+02
+14 6915     9.475000e+01 -4.683199e+02
+15 6915     -3.538300e+02 5.017700e+02
+0 6916     -5.129900e+02 2.882300e+02
+7 6916     -7.199000e+02 2.862500e+02
+0 6917     7.827100e+02 2.871800e+02
+2 6917     6.509100e+02 3.391300e+02
+3 6917     4.979301e+02 1.883002e+01
+7 6917     5.902800e+02 4.890700e+02
+10 6917     8.005100e+02 5.651100e+02
+0 6918     7.784600e+02 2.863700e+02
+2 6918     6.473700e+02 3.371300e+02
+3 6918     4.948500e+02 1.685999e+01
+7 6918     5.864600e+02 4.876100e+02
+8 6918     5.952900e+02 2.447900e+02
+10 6918     7.953400e+02 5.628800e+02
+12 6918     6.697800e+02 5.228800e+02
+0 6919     -4.596500e+02 2.849000e+02
+7 6919     -6.641300e+02 2.878600e+02
+0 6920     7.846600e+02 2.834700e+02
+3 6920     5.006600e+02 1.585999e+01
+7 6920     5.923800e+02 4.857700e+02
+10 6920     8.024700e+02 5.612700e+02
+0 6921     2.714500e+02 2.824700e+02
+13 6921     4.437300e+02 4.599976e+00
+0 6922     -4.022000e+02 2.820500e+02
+7 6922     -6.018900e+02 2.934800e+02
+0 6923     4.895200e+02 2.812700e+02
+6 6923     2.023300e+02 3.971300e+02
+7 6923     2.921200e+02 4.236000e+02
+8 6923     3.103300e+02 1.152300e+02
+10 6923     4.511000e+02 5.243900e+02
+12 6923     3.117700e+02 3.940700e+02
+13 6923     6.563900e+02 2.796997e+01
+0 6924     -5.544700e+02 2.807300e+02
+13 6924     -2.588600e+02 -4.437000e+01
+0 6925     6.622900e+02 2.800500e+02
+2 6925     5.324800e+02 2.842400e+02
+3 6925     3.876500e+02 -3.527002e+01
+6 6925     4.580500e+02 4.677700e+02
+7 6925     4.752900e+02 4.615100e+02
+8 6925     4.983900e+02 2.039200e+02
+10 6925     6.560400e+02 5.416600e+02
+12 6925     5.402900e+02 4.765300e+02
+13 6925     8.509000e+02 5.388000e+01
+0 6926     -5.227700e+02 2.777700e+02
+5 6926     -1.369700e+02 -3.847900e+02
+8 6926     -5.947800e+02 -3.810999e+01
+14 6926     -2.173500e+02 -4.814000e+02
+0 6927     5.800500e+02 2.758600e+02
+2 6927     4.445400e+02 2.453800e+02
+6 6927     3.587800e+02 4.362400e+02
+9 6927     2.394399e+02 3.036600e+02
+10 6927     5.582600e+02 5.274900e+02
+12 6927     4.454399e+02 4.440000e+02
+0 6928     5.837900e+02 2.747400e+02
+2 6928     4.491100e+02 2.457600e+02
+3 6928     3.090400e+02 -7.503998e+01
+6 6928     3.620900e+02 4.365200e+02
+0 6929     5.837900e+02 2.747400e+02
+3 6929     3.090400e+02 -7.503998e+01
+0 6930     6.662700e+02 2.742900e+02
+2 6930     5.384200e+02 2.807600e+02
+3 6930     3.938800e+02 -3.871997e+01
+7 6930     4.799600e+02 4.568800e+02
+13 6930     8.554399e+02 4.984003e+01
+0 6931     6.662700e+02 2.742900e+02
+2 6931     5.384200e+02 2.807600e+02
+6 6931     4.661899e+02 4.631100e+02
+8 6931     5.044800e+02 2.012700e+02
+9 6931     3.189900e+02 3.373800e+02
+12 6931     5.470500e+02 4.721200e+02
+13 6931     8.554399e+02 4.984003e+01
+0 6932     5.812800e+02 2.716500e+02
+2 6932     4.480400e+02 2.411600e+02
+3 6932     3.078700e+02 -7.879999e+01
+6 6932     3.611700e+02 4.312300e+02
+8 6932     4.286500e+02 1.705200e+02
+9 6932     2.414900e+02 3.004800e+02
+13 6932     7.710900e+02 3.665997e+01
+0 6933     7.717300e+02 2.707500e+02
+8 6933     5.931300e+02 2.302700e+02
+10 6933     7.881500e+02 5.434900e+02
+12 6933     6.662200e+02 5.052000e+02
+0 6934     8.472998e+01 2.668400e+02
+3 6934     -2.611200e+02 -2.893700e+02
+6 6934     -2.852700e+02 2.552900e+02
+7 6934     -1.037000e+02 3.478300e+02
+12 6934     -1.435700e+02 2.693500e+02
+13 6934     2.874500e+02 -2.201001e+01
+14 6934     4.343800e+02 -4.811100e+02
+0 6935     6.796400e+02 2.669400e+02
+7 6935     4.937000e+02 4.520200e+02
+12 6935     5.636500e+02 4.694100e+02
+0 6936     -1.803600e+02 2.659900e+02
+7 6936     -3.701100e+02 3.079800e+02
+11 6936     -1.471997e+01 -4.776500e+02
+13 6936     5.688000e+01 -4.035999e+01
+14 6936     1.427900e+02 -4.923400e+02
+15 6936     -3.003000e+02 4.748700e+02
+0 6937     8.129301e+02 2.637700e+02
+2 6937     6.859200e+02 3.297200e+02
+3 6937     5.313400e+02 1.094000e+01
+0 6938     -1.645500e+02 2.635000e+02
+7 6938     -3.531700e+02 3.082400e+02
+15 6938     -2.784000e+02 4.742500e+02
+0 6939     7.683199e+02 2.626000e+02
+3 6939     4.930100e+02 -6.830017e+00
+6 6939     5.851801e+02 4.815100e+02
+7 6939     5.798900e+02 4.630900e+02
+9 6939     4.063300e+02 3.657100e+02
+10 6939     7.843300e+02 5.331400e+02
+12 6939     6.642200e+02 4.934700e+02
+0 6940     8.568800e+02 2.604300e+02
+9 6940     4.765200e+02 3.955700e+02
+0 6941     8.631200e+02 2.604700e+02
+3 6941     5.762800e+02 2.783002e+01
+7 6941     6.693400e+02 4.770600e+02
+0 6942     6.628000e+02 2.574600e+02
+2 6942     5.384700e+02 2.633900e+02
+3 6942     3.954900e+02 -5.560999e+01
+9 6942     3.191500e+02 3.214800e+02
+0 6943     8.621500e+02 2.574700e+02
+9 6943     4.809800e+02 3.952100e+02
+0 6944     6.228800e+02 2.572000e+02
+3 6944     3.552100e+02 -7.285999e+01
+7 6944     4.394600e+02 4.323500e+02
+8 6944     4.689500e+02 1.730600e+02
+9 6944     2.833700e+02 3.059800e+02
+10 6944     6.108000e+02 5.102800e+02
+0 6945     -3.777002e+01 2.548700e+02
+7 6945     -2.226900e+02 3.182800e+02
+10 6945     -1.644100e+02 4.380500e+02
+13 6945     1.844900e+02 -4.103003e+01
+15 6945     -1.029700e+02 4.789200e+02
+0 6946     7.648000e+02 2.551200e+02
+2 6946     6.428400e+02 3.038200e+02
+3 6946     4.920300e+02 -1.485999e+01
+6 6946     5.832800e+02 4.731300e+02
+7 6946     5.775100e+02 4.553500e+02
+8 6946     5.910300e+02 2.170400e+02
+10 6946     7.803600e+02 5.233200e+02
+0 6947     2.984301e+02 2.518600e+02
+6 6947     -2.796997e+01 2.988500e+02
+0 6948     -5.547400e+02 2.517600e+02
+13 6948     -2.592100e+02 -7.046002e+01
+14 6948     -2.532800e+02 -5.105100e+02
+0 6949     7.630400e+02 2.508300e+02
+2 6949     6.420100e+02 2.953600e+02
+3 6949     4.916200e+02 -2.058002e+01
+6 6949     5.823800e+02 4.679700e+02
+9 6949     4.049600e+02 3.520800e+02
+10 6949     7.773700e+02 5.148600e+02
+0 6950     -1.465002e+01 2.503500e+02
+6 6950     -3.947100e+02 2.075800e+02
+10 6950     -1.367600e+02 4.353800e+02
+0 6951     -5.337400e+02 2.496000e+02
+5 6951     -1.505400e+02 -4.154100e+02
+14 6951     -2.307100e+02 -5.125500e+02
+0 6952     -5.197998e+01 2.492900e+02
+7 6952     -2.359800e+02 3.113700e+02
+10 6952     -1.808000e+02 4.306700e+02
+0 6953     4.763000e+01 2.496400e+02
+7 6953     -1.356100e+02 3.259900e+02
+10 6953     -6.359003e+01 4.406100e+02
+0 6954     6.096000e+02 2.481400e+02
+7 6954     4.278700e+02 4.217000e+02
+10 6954     5.956400e+02 4.977000e+02
+0 6955     -2.245700e+02 2.472800e+02
+7 6955     -4.108300e+02 2.839400e+02
+11 6955     -5.650000e+01 -4.951400e+02
+15 6955     -3.581600e+02 4.434700e+02
+0 6956     5.234200e+02 2.462000e+02
+7 6956     3.311000e+02 3.950600e+02
+10 6956     4.940500e+02 4.859400e+02
+15 6956     6.748000e+02 5.511800e+02
+0 6957     6.315400e+02 2.455800e+02
+6 6957     4.304100e+02 4.182700e+02
+7 6957     4.495200e+02 4.228200e+02
+9 6957     2.936600e+02 3.003700e+02
+11 6957     7.589301e+02 -4.761400e+02
+12 6957     5.141400e+02 4.267400e+02
+15 6957     8.238199e+02 5.690000e+02
+0 6958     3.335400e+02 2.423100e+02
+6 6958     1.707001e+01 2.983000e+02
+7 6958     1.434700e+02 3.590900e+02
+11 6958     4.734301e+02 -4.905000e+02
+0 6959     6.327700e+02 2.413000e+02
+3 6959     3.701300e+02 -8.297998e+01
+7 6959     4.513199e+02 4.190800e+02
+10 6959     6.236100e+02 4.922400e+02
+13 6959     8.260100e+02 1.735999e+01
+0 6960     -3.967999e+01 2.383300e+02
+6 6960     -4.173800e+02 1.867200e+02
+7 6960     -2.206100e+02 3.027500e+02
+10 6960     -1.646200e+02 4.188900e+02
+12 6960     -2.726100e+02 2.120700e+02
+14 6960     3.065100e+02 -5.178101e+02
+0 6961     8.789000e+02 2.379700e+02
+2 6961     7.546100e+02 3.319500e+02
+7 6961     6.866899e+02 4.586000e+02
+9 6961     4.980699e+02 3.856300e+02
+0 6962     -4.139300e+02 2.361500e+02
+13 6962     -1.445800e+02 -7.870001e+01
+14 6962     -1.110800e+02 -5.290900e+02
+0 6963     -6.938000e+01 2.313600e+02
+7 6963     -2.482700e+02 2.918700e+02
+0 6964     -4.563000e+01 2.310200e+02
+6 6964     -4.198500e+02 1.765200e+02
+0 6965     -3.719971e+00 2.308600e+02
+6 6965     -3.673900e+02 1.889300e+02
+10 6965     -1.217000e+02 4.136000e+02
+13 6965     2.203800e+02 -5.783002e+01
+0 6966     -1.685999e+01 2.304200e+02
+6 6966     -3.832600e+02 1.843500e+02
+0 6967     8.014399e+02 2.306000e+02
+3 6967     5.320400e+02 -2.075000e+01
+9 6967     4.420500e+02 3.543400e+02
+0 6968     5.139399e+02 2.291800e+02
+7 6968     3.246400e+02 3.773900e+02
+10 6968     4.853800e+02 4.651800e+02
+15 6968     6.634700e+02 5.258500e+02
+0 6969     6.615300e+02 2.289700e+02
+7 6969     4.810900e+02 4.123400e+02
+8 6969     5.083800e+02 1.636300e+02
+9 6969     3.244000e+02 2.988900e+02
+10 6969     6.587400e+02 4.806000e+02
+15 6969     8.679301e+02 5.500900e+02
+0 6970     7.279301e+02 2.292500e+02
+2 6970     6.132500e+02 2.646100e+02
+3 6970     4.657400e+02 -5.138000e+01
+6 6970     5.477300e+02 4.342400e+02
+7 6970     5.456200e+02 4.243800e+02
+8 6970     5.655800e+02 1.856600e+02
+9 6970     3.815000e+02 3.254800e+02
+10 6970     7.375400e+02 4.883900e+02
+0 6971     7.279301e+02 2.292500e+02
+2 6971     6.132500e+02 2.646100e+02
+6 6971     5.477300e+02 4.342400e+02
+7 6971     5.456200e+02 4.243800e+02
+9 6971     3.815000e+02 3.254800e+02
+0 6972     7.115601e+02 2.265900e+02
+2 6972     5.975699e+02 2.552700e+02
+3 6972     4.512800e+02 -6.095001e+01
+7 6972     5.301400e+02 4.189500e+02
+10 6972     7.183400e+02 4.832500e+02
+0 6973     7.115601e+02 2.265900e+02
+2 6973     5.975699e+02 2.552700e+02
+3 6973     4.512800e+02 -6.095001e+01
+6 6973     5.294399e+02 4.259400e+02
+7 6973     5.301400e+02 4.189500e+02
+8 6973     5.522100e+02 1.781900e+02
+9 6973     3.683900e+02 3.168700e+02
+10 6973     7.183400e+02 4.832500e+02
+0 6974     -3.509600e+02 2.260900e+02
+14 6974     -3.714001e+01 -5.396500e+02
+0 6975     -4.873600e+02 2.253900e+02
+10 6975     -6.995100e+02 3.605900e+02
+14 6975     -1.896900e+02 -5.417200e+02
+0 6976     5.644800e+02 2.201700e+02
+8 6976     4.234301e+02 1.239000e+02
+10 6976     5.445300e+02 4.595700e+02
+0 6977     -6.070007e+00 2.158300e+02
+6 6977     -3.592900e+02 1.717300e+02
+13 6977     2.221000e+02 -7.072998e+01
+14 6977     3.511899e+02 -5.412200e+02
+0 6978     6.052400e+02 2.156500e+02
+6 6978     4.051200e+02 3.774700e+02
+7 6978     4.274500e+02 3.893400e+02
+9 6978     2.772700e+02 2.648100e+02
+10 6978     5.924600e+02 4.590300e+02
+11 6978     7.395400e+02 -5.087000e+02
+15 6978     7.898700e+02 5.219500e+02
+0 6979     6.207900e+02 2.158500e+02
+2 6979     5.054700e+02 2.049700e+02
+6 6979     4.239500e+02 3.825000e+02
+13 6979     8.171000e+02 -5.760010e+00
+0 6980     -2.707001e+01 2.145500e+02
+6 6980     -3.849200e+02 1.634100e+02
+0 6981     -3.324200e+02 2.079700e+02
+7 6981     -5.136800e+02 2.290100e+02
+10 6981     -5.081200e+02 3.535100e+02
+13 6981     -6.390997e+01 -9.778998e+01
+14 6981     -1.185999e+01 -5.592400e+02
+0 6982     6.221400e+02 2.069200e+02
+7 6982     4.452300e+02 3.839900e+02
+0 6983     -4.310999e+01 2.067300e+02
+7 6983     -2.163000e+02 2.721900e+02
+10 6983     -1.655800e+02 3.813600e+02
+12 6983     -2.622600e+02 1.795800e+02
+13 6983     1.925900e+02 -8.087000e+01
+14 6983     3.135400e+02 -5.531300e+02
+0 6984     6.808700e+02 2.025900e+02
+6 6984     5.000300e+02 3.898900e+02
+7 6984     5.035601e+02 3.905900e+02
+8 6984     5.310699e+02 1.488100e+02
+9 6984     3.483800e+02 2.858900e+02
+0 6985     -1.607200e+02 2.002600e+02
+7 6985     -3.348700e+02 2.476800e+02
+10 6985     -3.034800e+02 3.609100e+02
+15 6985     -2.645400e+02 3.867400e+02
+0 6986     8.530200e+02 1.984600e+02
+2 6986     7.425900e+02 2.871900e+02
+0 6987     7.364200e+02 1.968800e+02
+2 6987     6.317300e+02 2.389500e+02
+3 6987     4.846700e+02 -7.601001e+01
+6 6987     5.660800e+02 4.018100e+02
+7 6987     5.582100e+02 3.945900e+02
+10 6987     7.497800e+02 4.509000e+02
+0 6988     -1.596997e+01 1.949100e+02
+5 6988     4.313000e+02 -4.798400e+02
+6 6988     -3.567200e+02 1.454600e+02
+9 6988     -2.946400e+02 4.339001e+01
+10 6988     -1.311000e+02 3.705300e+02
+13 6988     2.191400e+02 -8.834003e+01
+14 6988     3.474500e+02 -5.638600e+02
+0 6989     7.389900e+02 1.926000e+02
+7 6989     5.609900e+02 3.910100e+02
+8 6989     5.831300e+02 1.615400e+02
+10 6989     7.531200e+02 4.455600e+02
+0 6990     -2.194000e+01 1.916600e+02
+10 6990     -1.393900e+02 3.645200e+02
+13 6990     2.149800e+02 -9.187000e+01
+14 6990     3.417700e+02 -5.686000e+02
+0 6991     8.071997e+01 1.890500e+02
+13 6991     3.974800e+02 -6.178003e+01
+14 6991     5.758700e+02 -5.397900e+02
+15 6991     5.290997e+01 4.073000e+02
+0 6992     1.139300e+02 1.855700e+02
+7 6992     -1.559998e+01 3.065000e+02
+10 6992     1.989001e+01 3.698500e+02
+15 6992     9.972998e+01 4.072300e+02
+0 6993     -4.499000e+02 1.843600e+02
+5 6993     -6.012000e+01 -4.911600e+02
+7 6993     -6.328000e+02 1.872600e+02
+0 6994     6.174100e+02 1.829100e+02
+2 6994     5.113500e+02 1.713900e+02
+6 6994     4.287500e+02 3.460700e+02
+7 6994     4.442700e+02 3.596600e+02
+8 6994     4.790000e+02 1.119700e+02
+9 6994     2.968000e+02 2.433800e+02
+10 6994     6.095300e+02 4.207800e+02
+12 6994     5.125200e+02 3.554800e+02
+15 6994     8.113300e+02 4.775200e+02
+0 6995     6.241801e+02 1.806200e+02
+2 6995     5.184301e+02 1.722400e+02
+3 6995     3.789399e+02 -1.427800e+02
+6 6995     4.374600e+02 3.458400e+02
+7 6995     4.507900e+02 3.588700e+02
+9 6995     3.032400e+02 2.443900e+02
+10 6995     6.171300e+02 4.190100e+02
+15 6995     8.204301e+02 4.757200e+02
+0 6996     5.870100e+02 1.799200e+02
+3 6996     3.406400e+02 -1.628300e+02
+7 6996     4.139800e+02 3.506500e+02
+13 6996     7.875601e+02 -4.201001e+01
+0 6997     2.064001e+01 1.777000e+02
+7 6997     -1.068400e+02 2.845700e+02
+15 6997     -2.735999e+01 3.827900e+02
+0 6998     6.020800e+02 1.753400e+02
+3 6998     3.574301e+02 -1.580000e+02
+7 6998     4.299800e+02 3.493600e+02
+10 6998     5.917800e+02 4.099000e+02
+15 6998     7.898700e+02 4.654500e+02
+0 6999     6.875800e+02 1.736000e+02
+6 6999     5.150000e+02 3.604100e+02
+7 6999     5.138101e+02 3.637300e+02
+9 6999     3.612900e+02 2.652200e+02
+0 7000     6.875800e+02 1.736000e+02
+6 7000     5.150000e+02 3.604100e+02
+7 7000     5.138101e+02 3.637300e+02
+8 7000     5.430800e+02 1.281400e+02
+9 7000     3.612900e+02 2.652200e+02
+12 7000     5.952900e+02 3.703000e+02
+0 7001     6.035200e+02 1.720100e+02
+2 7001     4.986700e+02 1.533600e+02
+3 7001     3.602000e+02 -1.613500e+02
+7 7001     4.317800e+02 3.463700e+02
+8 7001     4.692400e+02 9.712000e+01
+9 7001     2.869000e+02 2.275700e+02
+10 7001     5.936200e+02 4.063700e+02
+12 7001     4.990699e+02 3.373000e+02
+13 7001     8.047000e+02 -4.620001e+01
+15 7001     7.923500e+02 4.600500e+02
+0 7002     7.394200e+02 1.711900e+02
+7 7002     5.641100e+02 3.708400e+02
+10 7002     7.548199e+02 4.204700e+02
+0 7003     -3.238800e+02 1.704500e+02
+7 7003     -4.962100e+02 1.941600e+02
+10 7003     -4.925300e+02 3.096300e+02
+12 7003     -5.867600e+02 7.158002e+01
+15 7003     -4.847000e+02 3.243400e+02
+0 7004     8.299600e+02 1.703600e+02
+2 7004     7.299500e+02 2.525600e+02
+7 7004     6.505300e+02 3.860600e+02
+9 7004     4.796400e+02 3.191100e+02
+0 7005     6.389700e+02 1.694400e+02
+3 7005     3.978900e+02 -1.459300e+02
+6 7005     4.581600e+02 3.390200e+02
+7 7005     4.668500e+02 3.508600e+02
+9 7005     3.195200e+02 2.415300e+02
+10 7005     6.352400e+02 4.073300e+02
+12 7005     5.407000e+02 3.486600e+02
+15 7005     8.426400e+02 4.620400e+02
+0 7006     5.430000e+02 1.691300e+02
+7 7006     3.715800e+02 3.318900e+02
+9 7006     2.301000e+02 1.977300e+02
+10 7006     5.224000e+02 3.963400e+02
+13 7006     7.433000e+02 -5.713000e+01
+0 7007     6.302100e+02 1.688000e+02
+7 7007     4.584700e+02 3.487000e+02
+9 7007     3.115300e+02 2.380500e+02
+15 7007     8.303600e+02 4.604800e+02
+0 7008     -9.501001e+01 1.663700e+02
+5 7008     3.494200e+02 -5.134800e+02
+0 7009     7.143101e+02 1.640200e+02
+2 7009     6.179600e+02 1.973700e+02
+3 7009     4.735699e+02 -1.151800e+02
+6 7009     5.489500e+02 3.597700e+02
+7 7009     5.410699e+02 3.592700e+02
+8 7009     5.685100e+02 1.301800e+02
+9 7009     3.867800e+02 2.688300e+02
+10 7009     7.257600e+02 4.089700e+02
+12 7009     6.286300e+02 3.702700e+02
+0 7010     7.129000e+02 1.603000e+02
+2 7010     6.175500e+02 1.929700e+02
+3 7010     4.734500e+02 -1.191200e+02
+6 7010     5.483300e+02 3.552400e+02
+7 7010     5.403101e+02 3.559900e+02
+8 7010     5.681500e+02 1.265200e+02
+9 7010     3.865601e+02 2.651900e+02
+12 7010     6.280100e+02 3.659000e+02
+0 7011     7.001801e+02 1.591700e+02
+2 7011     6.046600e+02 1.858000e+02
+3 7011     4.616899e+02 -1.261400e+02
+9 7011     3.758199e+02 2.591600e+02
+0 7012     8.699700e+02 1.587100e+02
+2 7012     7.703600e+02 2.583800e+02
+7 7012     6.887100e+02 3.821000e+02
+9 7012     5.124900e+02 3.246300e+02
+12 7012     8.023600e+02 4.192700e+02
+0 7013     7.045400e+02 1.583900e+02
+7 7013     5.320200e+02 3.523600e+02
+10 7013     7.142600e+02 4.015000e+02
+0 7014     7.045400e+02 1.583900e+02
+2 7014     6.093700e+02 1.875000e+02
+3 7014     4.657700e+02 -1.247400e+02
+6 7014     5.387100e+02 3.498700e+02
+7 7014     5.320200e+02 3.523600e+02
+8 7014     5.611000e+02 1.220800e+02
+9 7014     3.794900e+02 2.601300e+02
+10 7014     7.142600e+02 4.015000e+02
+12 7014     6.184301e+02 3.599600e+02
+0 7015     7.255100e+02 1.582300e+02
+2 7015     6.312400e+02 1.969300e+02
+6 7015     5.635200e+02 3.572700e+02
+10 7015     7.391700e+02 4.036400e+02
+12 7015     6.429600e+02 3.677800e+02
+0 7016     7.143600e+02 1.560600e+02
+2 7016     6.200699e+02 1.895400e+02
+3 7016     4.759100e+02 -1.223000e+02
+6 7016     5.509100e+02 3.509200e+02
+7 7016     5.422300e+02 3.518000e+02
+8 7016     5.703199e+02 1.234900e+02
+9 7016     3.889100e+02 2.626300e+02
+10 7016     7.261300e+02 3.994000e+02
+12 7016     6.305400e+02 3.612900e+02
+0 7017     7.143600e+02 1.560600e+02
+2 7017     6.200699e+02 1.895400e+02
+3 7017     4.759100e+02 -1.223000e+02
+6 7017     5.509100e+02 3.509200e+02
+7 7017     5.422300e+02 3.518000e+02
+8 7017     5.703199e+02 1.234900e+02
+9 7017     3.889100e+02 2.626300e+02
+10 7017     7.261300e+02 3.994000e+02
+12 7017     6.305400e+02 3.612900e+02
+0 7018     7.684900e+02 1.549300e+02
+7 7018     5.939100e+02 3.603800e+02
+10 7018     7.906100e+02 4.042300e+02
+0 7019     7.684900e+02 1.549300e+02
+7 7019     5.939100e+02 3.603800e+02
+0 7020     8.227400e+02 1.550400e+02
+3 7020     5.757200e+02 -7.503003e+01
+7 7020     6.456000e+02 3.703400e+02
+0 7021     8.227400e+02 1.550400e+02
+3 7021     5.757200e+02 -7.503003e+01
+7 7021     6.456000e+02 3.703400e+02
+0 7022     8.634399e+02 1.544100e+02
+7 7022     6.836000e+02 3.769900e+02
+9 7022     5.087100e+02 3.194600e+02
+0 7023     8.210500e+02 1.514000e+02
+7 7023     6.445300e+02 3.664800e+02
+0 7024     8.210500e+02 1.514000e+02
+2 7024     7.271700e+02 2.327200e+02
+7 7024     6.445300e+02 3.664800e+02
+0 7025     -5.794000e+01 1.504600e+02
+7 7025     -1.964500e+02 2.339700e+02
+8 7025     -3.151001e+01 4.599915e-01
+0 7026     6.465300e+02 1.474100e+02
+2 7026     5.514500e+02 1.510800e+02
+3 7026     4.120500e+02 -1.624700e+02
+9 7026     3.319200e+02 2.277500e+02
+13 7026     8.513500e+02 -6.087000e+01
+0 7027     7.090800e+02 1.466300e+02
+2 7027     6.173800e+02 1.789300e+02
+3 7027     4.746300e+02 -1.331000e+02
+6 7027     5.477300e+02 3.392500e+02
+7 7027     5.385200e+02 3.417600e+02
+8 7027     5.675300e+02 1.146000e+02
+9 7027     3.866100e+02 2.532900e+02
+0 7028     8.182400e+02 1.462600e+02
+2 7028     7.261801e+02 2.267600e+02
+7 7028     6.426200e+02 3.612900e+02
+0 7029     -2.129500e+02 1.442300e+02
+7 7029     -3.739500e+02 1.866300e+02
+8 7029     -2.504800e+02 -1.046700e+02
+10 7029     -3.580300e+02 2.896600e+02
+13 7029     5.928003e+01 -1.442600e+02
+15 7029     -3.287100e+02 3.029100e+02
+0 7030     8.290800e+02 1.446400e+02
+2 7030     7.369800e+02 2.294900e+02
+7 7030     6.532300e+02 3.619100e+02
+9 7030     4.855900e+02 2.993800e+02
+0 7031     6.733500e+02 1.442100e+02
+6 7031     5.073800e+02 3.243000e+02
+7 7031     5.038400e+02 3.328100e+02
+9 7031     3.574500e+02 2.364300e+02
+12 7031     5.891100e+02 3.343000e+02
+0 7032     -6.826001e+01 1.429300e+02
+7 7032     -2.049400e+02 2.253500e+02
+10 7032     -1.883600e+02 3.017400e+02
+0 7033     8.168500e+02 1.430700e+02
+2 7033     7.257800e+02 2.232200e+02
+3 7033     5.746899e+02 -8.691998e+01
+7 7033     6.417700e+02 3.581100e+02
+0 7034     6.701100e+02 1.425300e+02
+3 7034     4.378800e+02 -1.553600e+02
+7 7034     5.009301e+02 3.308300e+02
+8 7034     5.347500e+02 9.813000e+01
+0 7035     6.701100e+02 1.425300e+02
+3 7035     4.378800e+02 -1.553600e+02
+7 7035     5.009301e+02 3.308300e+02
+8 7035     5.347500e+02 9.813000e+01
+0 7036     1.431600e+02 1.416600e+02
+4 7036     -1.953100e+02 -5.160500e+02
+6 7036     4.407001e+01 2.085900e+02
+8 7036     2.094200e+02 9.041000e+01
+13 7036     4.645800e+02 -9.441998e+01
+0 7037     7.497800e+02 1.422400e+02
+2 7037     6.601500e+02 1.929100e+02
+3 7037     5.144500e+02 -1.179800e+02
+7 7037     5.781899e+02 3.450200e+02
+9 7037     4.224301e+02 2.662900e+02
+10 7037     7.692800e+02 3.873800e+02
+12 7037     6.744000e+02 3.599000e+02
+0 7038     7.270200e+02 1.412200e+02
+2 7038     6.374000e+02 1.816700e+02
+3 7038     4.929800e+02 -1.291800e+02
+6 7038     5.696200e+02 3.397800e+02
+7 7038     5.564500e+02 3.399500e+02
+8 7038     5.844900e+02 1.164600e+02
+9 7038     4.034800e+02 2.561200e+02
+10 7038     7.423400e+02 3.836700e+02
+12 7038     6.487500e+02 3.504500e+02
+0 7039     8.358300e+02 1.412400e+02
+2 7039     7.436400e+02 2.286700e+02
+7 7039     6.596500e+02 3.596400e+02
+9 7039     4.912900e+02 2.991200e+02
+0 7040     8.018800e+02 1.408200e+02
+2 7040     7.122100e+02 2.150700e+02
+7 7040     6.277400e+02 3.532700e+02
+0 7041     7.968800e+02 1.400000e+02
+2 7041     7.074000e+02 2.112200e+02
+3 7041     5.589200e+02 -9.785999e+01
+7 7041     6.234399e+02 3.517800e+02
+10 7041     8.255900e+02 3.904800e+02
+0 7042     8.189800e+02 1.395600e+02
+2 7042     7.284600e+02 2.204200e+02
+7 7042     6.441300e+02 3.552000e+02
+9 7042     4.789600e+02 2.914900e+02
+0 7043     8.189800e+02 1.395600e+02
+2 7043     7.284600e+02 2.204200e+02
+3 7043     5.776000e+02 -8.925000e+01
+7 7043     6.441300e+02 3.552000e+02
+0 7044     7.545800e+02 1.388100e+02
+2 7044     6.660300e+02 1.918700e+02
+3 7044     5.196400e+02 -1.187900e+02
+7 7044     5.830300e+02 3.428200e+02
+9 7044     4.270500e+02 2.657900e+02
+10 7044     7.754399e+02 3.837200e+02
+12 7044     6.805200e+02 3.578400e+02
+0 7045     -7.247000e+02 1.383000e+02
+5 7045     -3.647800e+02 -5.338199e+02
+0 7046     7.384100e+02 1.371000e+02
+2 7046     6.502600e+02 1.825600e+02
+7 7046     5.679301e+02 3.381100e+02
+10 7046     7.564100e+02 3.795600e+02
+12 7046     6.624700e+02 3.504600e+02
+0 7047     7.384100e+02 1.371000e+02
+2 7047     6.502600e+02 1.825600e+02
+7 7047     5.679301e+02 3.381100e+02
+10 7047     7.564100e+02 3.795600e+02
+12 7047     6.624700e+02 3.504600e+02
+0 7048     5.199399e+02 1.366400e+02
+7 7048     3.527200e+02 2.961000e+02
+8 7048     3.984100e+02 3.567999e+01
+13 7048     7.229100e+02 -8.846002e+01
+15 7048     6.791600e+02 3.973500e+02
+0 7049     8.210400e+02 1.355100e+02
+2 7049     7.317500e+02 2.176200e+02
+3 7049     5.807200e+02 -9.165997e+01
+7 7049     6.465601e+02 3.514300e+02
+9 7049     4.814700e+02 2.893900e+02
+0 7050     7.616801e+02 1.344200e+02
+2 7050     6.740300e+02 1.907200e+02
+3 7050     5.281500e+02 -1.195900e+02
+9 7050     4.346000e+02 2.647900e+02
+10 7050     7.837600e+02 3.795400e+02
+12 7050     6.897100e+02 3.555900e+02
+0 7051     -8.252002e+01 1.342100e+02
+7 7051     -2.168000e+02 2.148400e+02
+15 7051     -1.577700e+02 3.079700e+02
+0 7052     6.770300e+02 1.332100e+02
+3 7052     4.468400e+02 -1.607100e+02
+6 7052     5.130400e+02 3.135600e+02
+7 7052     5.087200e+02 3.230200e+02
+8 7052     5.427900e+02 9.323001e+01
+9 7052     3.624399e+02 2.289400e+02
+10 7052     6.837900e+02 3.688800e+02
+12 7052     5.942200e+02 3.240000e+02
+0 7053     8.115500e+02 1.327900e+02
+2 7053     7.236600e+02 2.115900e+02
+3 7053     5.734900e+02 -9.804999e+01
+7 7053     6.380300e+02 3.472500e+02
+9 7053     4.751600e+02 2.837200e+02
+0 7054     8.211700e+02 1.307400e+02
+7 7054     6.474000e+02 3.468200e+02
+0 7055     6.048500e+02 1.290800e+02
+3 7055     3.741400e+02 -2.004800e+02
+7 7055     4.384200e+02 3.054400e+02
+9 7055     2.991300e+02 1.932100e+02
+15 7055     7.987500e+02 4.009200e+02
+0 7056     8.100699e+02 1.286500e+02
+2 7056     7.233800e+02 2.072800e+02
+3 7056     5.733500e+02 -1.023200e+02
+7 7056     6.371600e+02 3.429000e+02
+9 7056     4.749301e+02 2.796400e+02
+0 7057     7.424200e+02 1.278200e+02
+8 7057     6.004100e+02 1.115100e+02
+9 7057     4.200601e+02 2.518100e+02
+10 7057     7.615699e+02 3.704500e+02
+12 7057     6.698300e+02 3.415700e+02
+0 7058     7.424200e+02 1.278200e+02
+7 7058     5.730500e+02 3.297700e+02
+9 7058     4.200601e+02 2.518100e+02
+12 7058     6.698300e+02 3.415700e+02
+0 7059     7.597700e+02 1.258200e+02
+7 7059     5.896899e+02 3.292500e+02
+0 7060     7.317100e+02 1.251900e+02
+3 7060     5.017300e+02 -1.409300e+02
+6 7060     5.789301e+02 3.242500e+02
+7 7060     5.624900e+02 3.260400e+02
+8 7060     5.915300e+02 1.056200e+02
+9 7060     4.109900e+02 2.456700e+02
+12 7060     6.579301e+02 3.347600e+02
+0 7061     7.317100e+02 1.251900e+02
+2 7061     6.469600e+02 1.681300e+02
+3 7061     5.017300e+02 -1.409300e+02
+6 7061     5.789301e+02 3.242500e+02
+7 7061     5.624900e+02 3.260400e+02
+8 7061     5.915300e+02 1.056200e+02
+9 7061     4.109900e+02 2.456700e+02
+10 7061     7.497700e+02 3.646800e+02
+12 7061     6.579301e+02 3.347600e+02
+0 7062     -2.578000e+02 1.237400e+02
+13 7062     2.403998e+01 -1.643600e+02
+0 7063     7.808800e+02 1.239800e+02
+2 7063     6.961200e+02 1.894100e+02
+3 7063     5.485300e+02 -1.198500e+02
+7 7063     6.100000e+02 3.333800e+02
+9 7063     4.524200e+02 2.647300e+02
+10 7063     8.075900e+02 3.691200e+02
+12 7063     7.138199e+02 3.514400e+02
+0 7064     8.030800e+02 1.237100e+02
+2 7064     7.189399e+02 1.995300e+02
+7 7064     6.314399e+02 3.371900e+02
+9 7064     4.710800e+02 2.745500e+02
+0 7065     7.453500e+02 1.219400e+02
+2 7065     6.614399e+02 1.713600e+02
+10 7065     7.654301e+02 3.630900e+02
+12 7065     6.744500e+02 3.364600e+02
+0 7066     -1.116700e+02 1.216600e+02
+5 7066     4.227800e+02 -5.485601e+02
+0 7067     7.977200e+02 1.209700e+02
+7 7067     6.265300e+02 3.341600e+02
+0 7068     6.366100e+02 1.199500e+02
+2 7068     5.484900e+02 1.177400e+02
+3 7068     4.102800e+02 -1.930700e+02
+6 7068     4.681000e+02 2.825800e+02
+8 7068     5.094700e+02 6.645001e+01
+9 7068     3.298900e+02 1.994700e+02
+15 7068     8.446400e+02 3.920500e+02
+0 7069     7.886801e+02 1.185300e+02
+3 7069     5.576899e+02 -1.209100e+02
+7 7069     6.183000e+02 3.296400e+02
+10 7069     8.175500e+02 3.635500e+02
+0 7070     7.886801e+02 1.185300e+02
+2 7070     7.054100e+02 1.880400e+02
+3 7070     5.576899e+02 -1.209100e+02
+7 7070     6.183000e+02 3.296400e+02
+9 7070     4.603500e+02 2.636700e+02
+12 7070     7.242100e+02 3.486800e+02
+0 7071     7.967600e+02 1.179200e+02
+7 7071     6.264600e+02 3.311300e+02
+0 7072     7.601300e+02 1.171100e+02
+2 7072     6.773000e+02 1.734400e+02
+3 7072     5.316899e+02 -1.356200e+02
+7 7072     5.912800e+02 3.229800e+02
+9 7072     4.371300e+02 2.505800e+02
+10 7072     7.832500e+02 3.588500e+02
+12 7072     6.922100e+02 3.365800e+02
+0 7073     7.601300e+02 1.171100e+02
+2 7073     6.773000e+02 1.734400e+02
+7 7073     5.912800e+02 3.229800e+02
+9 7073     4.371300e+02 2.505800e+02
+10 7073     7.832500e+02 3.588500e+02
+12 7073     6.922100e+02 3.365800e+02
+0 7074     8.200400e+02 1.171600e+02
+2 7074     7.362300e+02 2.004300e+02
+3 7074     5.857300e+02 -1.081300e+02
+7 7074     6.479900e+02 3.338800e+02
+0 7075     8.200400e+02 1.171600e+02
+2 7075     7.362300e+02 2.004300e+02
+3 7075     5.857300e+02 -1.081300e+02
+7 7075     6.479900e+02 3.338800e+02
+0 7076     -4.760800e+02 1.148800e+02
+7 7076     -6.428300e+02 1.153400e+02
+0 7077     -1.098400e+02 1.142000e+02
+5 7077     4.272100e+02 -5.560900e+02
+6 7077     -3.050100e+02 7.154999e+01
+7 7077     -2.391700e+02 1.921500e+02
+10 7077     -2.337800e+02 2.637800e+02
+13 7077     2.124399e+02 -1.471700e+02
+15 7077     -1.923500e+02 2.770900e+02
+0 7078     6.398300e+02 1.141100e+02
+2 7078     5.538199e+02 1.139400e+02
+3 7078     4.154399e+02 -1.971500e+02
+6 7078     4.736000e+02 2.782100e+02
+7 7078     4.751200e+02 2.974500e+02
+9 7078     3.346000e+02 1.962200e+02
+10 7078     6.408500e+02 3.418300e+02
+12 7078     5.555000e+02 2.882600e+02
+13 7078     8.488000e+02 -9.160999e+01
+15 7078     8.501200e+02 3.839400e+02
+0 7079     4.366100e+02 1.130500e+02
+13 7079     6.354100e+02 -1.221600e+02
+0 7080     6.436200e+02 1.126400e+02
+2 7080     5.582300e+02 1.137300e+02
+3 7080     4.201700e+02 -1.970600e+02
+6 7080     4.785601e+02 2.779600e+02
+7 7080     4.790000e+02 2.967500e+02
+8 7080     5.178300e+02 6.384000e+01
+9 7080     3.382800e+02 1.967000e+02
+10 7080     6.453400e+02 3.407100e+02
+12 7080     5.605100e+02 2.877200e+02
+13 7080     8.527900e+02 -9.264001e+01
+15 7080     8.554600e+02 3.827800e+02
+0 7081     8.715699e+02 1.118100e+02
+2 7081     7.862000e+02 2.174000e+02
+7 7081     6.966100e+02 3.381000e+02
+0 7082     7.497700e+02 1.103000e+02
+2 7082     6.692000e+02 1.623000e+02
+3 7082     5.245699e+02 -1.464300e+02
+7 7082     5.826100e+02 3.145600e+02
+9 7082     4.311200e+02 2.409600e+02
+10 7082     7.715200e+02 3.496000e+02
+12 7082     6.824100e+02 3.255200e+02
+0 7083     -2.826600e+02 1.094700e+02
+7 7083     -4.382900e+02 1.417800e+02
+10 7083     -4.369900e+02 2.413900e+02
+0 7084     6.413900e+02 1.098900e+02
+7 7084     4.774100e+02 2.937200e+02
+9 7084     3.370800e+02 1.937900e+02
+13 7084     8.507100e+02 -9.478998e+01
+15 7084     8.530400e+02 3.783000e+02
+0 7085     1.016998e+01 1.088900e+02
+2 7085     9.728003e+01 1.159800e+02
+4 7085     -2.011000e+02 -4.176500e+02
+5 7085     6.259700e+02 -5.479100e+02
+6 7085     -8.019000e+01 1.372900e+02
+7 7085     -9.783002e+01 2.203900e+02
+8 7085     1.149000e+02 5.172000e+01
+10 7085     -9.319000e+01 2.689500e+02
+12 7085     -5.396997e+01 1.914800e+02
+15 7085     -3.454999e+01 2.872100e+02
+0 7086     5.865000e+02 1.091000e+02
+9 7086     2.867400e+02 1.671300e+02
+0 7087     8.156300e+02 1.084200e+02
+7 7087     6.448800e+02 3.248700e+02
+9 7087     4.842400e+02 2.670900e+02
+0 7088     8.000200e+02 1.066500e+02
+7 7088     6.306899e+02 3.205900e+02
+9 7088     4.725200e+02 2.588600e+02
+12 7088     7.398600e+02 3.403100e+02
+0 7089     6.458101e+02 1.045400e+02
+3 7089     4.245300e+02 -2.035300e+02
+8 7089     5.211801e+02 5.762000e+01
+9 7089     3.419399e+02 1.906200e+02
+15 7089     8.591100e+02 3.713100e+02
+0 7090     8.154399e+02 1.038400e+02
+7 7090     6.452800e+02 3.205300e+02
+9 7090     4.854200e+02 2.628700e+02
+0 7091     8.154399e+02 1.038400e+02
+2 7091     7.358300e+02 1.858800e+02
+7 7091     6.452800e+02 3.205300e+02
+0 7092     7.608002e+01 1.025700e+02
+2 7092     1.802300e+02 1.338100e+02
+6 7092     6.840027e+00 1.538000e+02
+8 7092     1.819700e+02 6.500000e+01
+9 7092     3.564001e+01 2.029300e+02
+10 7092     -1.525000e+01 2.684600e+02
+12 7092     3.190002e+01 2.066200e+02
+15 7092     5.646002e+01 2.875800e+02
+0 7093     8.622000e+02 1.027000e+02
+7 7093     6.890800e+02 3.280100e+02
+0 7094     6.505800e+02 1.019700e+02
+6 7094     4.896000e+02 2.687500e+02
+7 7094     4.872100e+02 2.877400e+02
+9 7094     3.470800e+02 1.910300e+02
+10 7094     6.541300e+02 3.289300e+02
+12 7094     5.708800e+02 2.788000e+02
+0 7095     7.696600e+02 9.989999e+01
+2 7095     6.920100e+02 1.614500e+02
+3 7095     5.465300e+02 -1.464300e+02
+7 7095     6.025699e+02 3.082200e+02
+9 7095     4.500900e+02 2.413400e+02
+10 7095     7.956300e+02 3.394300e+02
+0 7096     6.447400e+02 9.779001e+01
+2 7096     5.635100e+02 9.959998e+01
+6 7096     4.837800e+02 2.619600e+02
+7 7096     4.821899e+02 2.824900e+02
+9 7096     3.430699e+02 1.850200e+02
+12 7096     5.654301e+02 2.718900e+02
+13 7096     8.556801e+02 -1.054800e+02
+15 7096     8.587100e+02 3.621600e+02
+0 7097     7.967200e+02 9.589999e+01
+2 7097     7.193900e+02 1.697400e+02
+7 7097     6.292200e+02 3.092200e+02
+9 7097     4.725601e+02 2.493700e+02
+12 7097     7.385900e+02 3.268000e+02
+0 7098     5.569800e+02 9.432001e+01
+6 7098     3.762500e+02 2.233200e+02
+8 7098     4.418500e+02 1.442001e+01
+0 7099     -8.246002e+01 9.414999e+01
+6 7099     -2.387300e+02 6.744000e+01
+7 7099     -2.021200e+02 1.806300e+02
+10 7099     -1.993300e+02 2.425400e+02
+12 7099     -1.914400e+02 1.202200e+02
+13 7099     2.516600e+02 -1.586300e+02
+15 7099     -1.544200e+02 2.535900e+02
+0 7100     7.940300e+02 9.379999e+01
+2 7100     7.189200e+02 1.665200e+02
+3 7100     5.707400e+02 -1.403400e+02
+7 7100     6.265500e+02 3.069700e+02
+9 7100     4.710900e+02 2.463400e+02
+10 7100     8.253000e+02 3.349900e+02
+0 7101     -4.471300e+02 9.244000e+01
+7 7101     -6.074500e+02 9.738000e+01
+0 7102     5.200100e+02 8.891000e+01
+6 7102     3.308100e+02 2.022700e+02
+7 7102     3.594500e+02 2.494100e+02
+10 7102     5.019700e+02 2.998600e+02
+12 7102     4.205300e+02 2.127300e+02
+13 7102     7.287000e+02 -1.310100e+02
+15 7102     6.845601e+02 3.305000e+02
+0 7103     8.478000e+02 8.929001e+01
+2 7103     7.712300e+02 1.864800e+02
+3 7103     6.194700e+02 -1.196700e+02
+7 7103     6.775800e+02 3.126600e+02
+9 7103     5.144800e+02 2.649300e+02
+12 7103     7.968000e+02 3.395600e+02
+0 7104     -8.502002e+01 8.864001e+01
+7 7104     -2.031900e+02 1.751400e+02
+10 7104     -2.016800e+02 2.359700e+02
+15 7104     -1.572000e+02 2.456700e+02
+0 7105     7.247200e+02 8.807999e+01
+3 7105     5.080800e+02 -1.787300e+02
+6 7105     5.805601e+02 2.797700e+02
+7 7105     5.613700e+02 2.883000e+02
+8 7105     5.947000e+02 7.107999e+01
+9 7105     4.154700e+02 2.121500e+02
+12 7105     6.597500e+02 2.889300e+02
+0 7106     7.483300e+02 8.741000e+01
+2 7106     6.744000e+02 1.400400e+02
+7 7106     5.839399e+02 2.925100e+02
+0 7107     7.884200e+02 8.364001e+01
+2 7107     7.153300e+02 1.548200e+02
+3 7107     5.690100e+02 -1.518900e+02
+7 7107     6.225601e+02 2.962700e+02
+9 7107     4.691400e+02 2.361400e+02
+10 7107     8.192000e+02 3.221100e+02
+12 7107     7.323800e+02 3.111000e+02
+0 7108     7.884200e+02 8.364001e+01
+2 7108     7.153300e+02 1.548200e+02
+12 7108     7.323800e+02 3.111000e+02
+0 7109     2.195000e+02 8.257999e+01
+7 7109     1.156900e+02 2.285500e+02
+0 7110     5.286300e+02 7.982999e+01
+6 7110     3.437000e+02 1.955800e+02
+7 7110     3.691500e+02 2.424000e+02
+0 7111     6.483900e+02 7.867999e+01
+2 7111     5.724900e+02 8.296997e+01
+7 7111     4.881600e+02 2.652900e+02
+0 7112     7.247200e+02 7.784998e+01
+7 7112     5.623101e+02 2.786800e+02
+8 7112     5.962100e+02 6.467999e+01
+9 7112     4.181000e+02 2.039600e+02
+0 7113     8.428900e+02 7.478003e+01
+3 7113     6.211801e+02 -1.339200e+02
+7 7113     6.752600e+02 2.978400e+02
+9 7113     5.148500e+02 2.515900e+02
+0 7114     6.899399e+02 7.363000e+01
+2 7114     6.184301e+02 9.810999e+01
+3 7114     4.793199e+02 -2.097900e+02
+6 7114     5.441801e+02 2.526600e+02
+7 7114     5.296600e+02 2.680800e+02
+8 7114     5.674900e+02 4.850000e+01
+9 7114     3.894100e+02 1.854000e+02
+10 7114     7.028900e+02 2.999400e+02
+12 7114     6.238500e+02 2.627200e+02
+0 7115     7.133600e+02 7.344000e+01
+2 7115     6.429100e+02 1.099300e+02
+3 7115     5.021700e+02 -1.980700e+02
+6 7115     5.718199e+02 2.616900e+02
+7 7115     5.522000e+02 2.724000e+02
+8 7115     5.878300e+02 5.707001e+01
+9 7115     4.097500e+02 1.957400e+02
+10 7115     7.308400e+02 3.022000e+02
+12 7115     6.509700e+02 2.717400e+02
+0 7116     8.800500e+02 7.269000e+01
+7 7116     7.094600e+02 3.027000e+02
+0 7117     -1.351500e+02 7.251001e+01
+7 7117     -2.536000e+02 1.490800e+02
+0 7118     1.758500e+02 7.234998e+01
+6 7118     1.280900e+02 1.527400e+02
+10 7118     1.027300e+02 2.432100e+02
+12 7118     1.556800e+02 2.019500e+02
+0 7119     7.489301e+02 7.202002e+01
+2 7119     6.793900e+02 1.252900e+02
+3 7119     5.364900e+02 -1.815100e+02
+7 7119     5.865200e+02 2.779300e+02
+10 7119     7.732500e+02 3.044500e+02
+0 7120     7.489301e+02 7.202002e+01
+2 7120     6.793900e+02 1.252900e+02
+3 7120     5.364900e+02 -1.815100e+02
+7 7120     5.865200e+02 2.779300e+02
+9 7120     4.401700e+02 2.101300e+02
+10 7120     7.732500e+02 3.044500e+02
+12 7120     6.914000e+02 2.835000e+02
+0 7121     -6.266998e+01 7.023999e+01
+7 7121     -1.680800e+02 1.672200e+02
+13 7121     2.943000e+02 -1.713800e+02
+0 7122     7.850601e+02 7.064001e+01
+7 7122     6.212100e+02 2.834200e+02
+10 7122     8.157800e+02 3.070200e+02
+0 7123     8.781899e+02 6.795001e+01
+2 7123     8.057200e+02 1.798500e+02
+7 7123     7.082000e+02 2.977900e+02
+9 7123     5.426100e+02 2.595400e+02
+0 7124     1.023800e+02 6.703003e+01
+2 7124     2.282700e+02 1.142800e+02
+6 7124     5.541998e+01 1.259900e+02
+9 7124     7.637000e+01 1.887000e+02
+15 7124     9.520001e+01 2.428500e+02
+0 7125     7.079500e+02 6.678003e+01
+2 7125     6.383600e+02 9.846997e+01
+6 7125     5.666600e+02 2.505300e+02
+7 7125     5.477000e+02 2.647900e+02
+8 7125     5.843600e+02 4.931000e+01
+9 7125     4.062300e+02 1.876400e+02
+10 7125     7.242700e+02 2.934100e+02
+12 7125     6.457000e+02 2.605500e+02
+0 7126     1.211100e+02 6.653003e+01
+13 7126     4.706899e+02 -1.547800e+02
+15 7126     1.209400e+02 2.444100e+02
+0 7127     1.723600e+02 6.462000e+01
+7 7127     7.552002e+01 2.051800e+02
+10 7127     1.002500e+02 2.339700e+02
+15 7127     1.916100e+02 2.488400e+02
+0 7128     6.708300e+02 6.296002e+01
+2 7128     6.008600e+02 7.788000e+01
+3 7128     4.633700e+02 -2.300600e+02
+6 7128     5.241600e+02 2.335600e+02
+7 7128     5.123500e+02 2.540600e+02
+8 7128     5.529301e+02 3.253000e+01
+9 7128     3.752800e+02 1.677800e+02
+10 7128     6.811801e+02 2.852500e+02
+12 7128     6.043300e+02 2.434200e+02
+0 7129     -2.869900e+02 6.264001e+01
+4 7129     -2.111600e+02 -1.712600e+02
+0 7130     -4.819500e+02 6.194000e+01
+7 7130     -6.375000e+02 6.097998e+01
+0 7131     7.948400e+02 6.147998e+01
+2 7131     7.284500e+02 1.369700e+02
+3 7131     5.827400e+02 -1.683100e+02
+7 7131     6.317200e+02 2.765500e+02
+9 7131     4.806000e+02 2.218200e+02
+12 7131     7.456400e+02 2.899700e+02
+0 7132     -3.027002e+01 5.992999e+01
+3 7132     -1.408002e+01 -2.550000e+02
+5 7132     5.871300e+02 -6.050900e+02
+6 7132     -1.080000e+02 6.954999e+01
+7 7132     -1.296700e+02 1.650300e+02
+8 7132     9.334003e+01 4.980011e+00
+13 7132     3.316100e+02 -1.754100e+02
+15 7132     -8.279999e+01 2.144300e+02
+0 7133     1.246500e+02 5.877002e+01
+7 7133     3.000000e+01 1.923900e+02
+15 7133     1.263000e+02 2.344100e+02
+0 7134     1.246500e+02 5.877002e+01
+7 7134     3.000000e+01 1.923900e+02
+8 7134     2.416500e+02 4.570001e+01
+10 7134     4.491998e+01 2.224300e+02
+15 7134     1.263000e+02 2.344100e+02
+0 7135     4.642999e+01 5.582001e+01
+2 7135     1.741300e+02 8.998999e+01
+3 7135     8.032001e+01 -2.236500e+02
+6 7135     -3.770020e+00 9.534998e+01
+7 7135     -4.801001e+01 1.768100e+02
+8 7135     1.742800e+02 2.710001e+01
+10 7135     -4.567999e+01 2.106700e+02
+0 7136     2.615300e+02 5.514001e+01
+7 7136     1.594399e+02 2.075400e+02
+10 7136     2.041000e+02 2.325600e+02
+15 7136     3.160699e+02 2.486800e+02
+0 7137     5.006100e+02 5.495001e+01
+7 7137     3.442600e+02 2.125900e+02
+0 7138     -3.723700e+02 5.152002e+01
+4 7138     -2.083500e+02 -1.197700e+02
+0 7139     7.619200e+02 5.117999e+01
+3 7139     5.564100e+02 -1.942300e+02
+7 7139     6.019100e+02 2.603600e+02
+10 7139     7.901500e+02 2.812800e+02
+0 7140     2.018300e+02 4.887000e+01
+8 7140     3.032000e+02 4.617001e+01
+10 7140     1.353900e+02 2.184500e+02
+13 7140     5.403800e+02 -1.640200e+02
+15 7140     2.330800e+02 2.314100e+02
+0 7141     5.310100e+02 4.860999e+01
+7 7141     3.759800e+02 2.128400e+02
+10 7141     5.183300e+02 2.550100e+02
+13 7141     7.443500e+02 -1.651200e+02
+15 7141     7.051700e+02 2.761200e+02
+0 7142     1.845400e+02 4.728003e+01
+13 7142     5.270900e+02 -1.662300e+02
+15 7142     2.101400e+02 2.270600e+02
+0 7143     4.999399e+02 4.372998e+01
+7 7143     3.444900e+02 2.017700e+02
+10 7143     4.824800e+02 2.450600e+02
+13 7143     7.119700e+02 -1.745100e+02
+15 7143     6.620900e+02 2.651700e+02
+0 7144     6.638400e+02 4.259003e+01
+2 7144     5.994399e+02 5.376001e+01
+3 7144     4.630800e+02 -2.535000e+02
+6 7144     5.213400e+02 2.086800e+02
+7 7144     5.081600e+02 2.332000e+02
+8 7144     5.512600e+02 1.276001e+01
+9 7144     3.745300e+02 1.476900e+02
+10 7144     6.747900e+02 2.609600e+02
+0 7145     7.192800e+02 4.252002e+01
+7 7145     5.621100e+02 2.441500e+02
+0 7146     3.874100e+02 4.192999e+01
+7 7146     2.636600e+02 1.997700e+02
+15 7146     4.980300e+02 2.471300e+02
+0 7147     7.345500e+02 4.197998e+01
+10 7147     7.547800e+02 2.691200e+02
+12 7147     6.830800e+02 2.452100e+02
+0 7148     6.956000e+02 4.108002e+01
+3 7148     4.959700e+02 -2.377400e+02
+6 7148     5.593199e+02 2.185100e+02
+7 7148     5.393500e+02 2.378100e+02
+8 7148     5.798199e+02 2.301999e+01
+10 7148     7.119399e+02 2.626700e+02
+12 7148     6.383000e+02 2.284200e+02
+0 7149     6.992800e+02 4.071997e+01
+2 7149     6.376300e+02 7.003003e+01
+3 7149     4.994800e+02 -2.360600e+02
+6 7149     5.640400e+02 2.201100e+02
+7 7149     5.430200e+02 2.382800e+02
+8 7149     5.829800e+02 2.497000e+01
+9 7149     4.063101e+02 1.623900e+02
+10 7149     7.165300e+02 2.623800e+02
+0 7150     5.068000e+02 3.960999e+01
+10 7150     4.893300e+02 2.415000e+02
+13 7150     7.177400e+02 -1.770100e+02
+15 7150     6.719200e+02 2.602800e+02
+0 7151     5.068000e+02 3.960999e+01
+7 7151     3.529900e+02 1.985700e+02
+12 7151     4.157300e+02 1.519000e+02
+15 7151     6.719200e+02 2.602800e+02
+0 7152     6.655699e+02 3.857001e+01
+2 7152     6.025601e+02 5.029999e+01
+3 7152     4.666600e+02 -2.570500e+02
+7 7152     5.104900e+02 2.291500e+02
+8 7152     5.534399e+02 1.006000e+01
+10 7152     6.767200e+02 2.562900e+02
+0 7153     7.149600e+02 3.828998e+01
+2 7153     6.547100e+02 7.646002e+01
+6 7153     5.831600e+02 2.238200e+02
+7 7153     5.584800e+02 2.390800e+02
+10 7153     7.353400e+02 2.619000e+02
+12 7153     6.617500e+02 2.335700e+02
+0 7154     -1.722700e+02 3.806000e+01
+12 7154     -2.800500e+02 3.266998e+01
+0 7155     7.039100e+02 3.825000e+01
+6 7155     5.701801e+02 2.193600e+02
+7 7155     5.476500e+02 2.369200e+02
+8 7155     5.872500e+02 2.470999e+01
+9 7155     4.114900e+02 1.624700e+02
+10 7155     7.218800e+02 2.603100e+02
+12 7155     6.487800e+02 2.293600e+02
+0 7156     8.648400e+02 3.784998e+01
+2 7156     8.020200e+02 1.463800e+02
+3 7156     6.525100e+02 -1.570100e+02
+7 7156     6.999301e+02 2.669300e+02
+9 7156     5.412800e+02 2.316200e+02
+12 7156     8.283400e+02 2.902900e+02
+0 7157     -1.907001e+01 3.750000e+01
+3 7157     1.307001e+01 -2.667600e+02
+4 7157     -2.444500e+02 -3.972900e+02
+6 7157     -7.951001e+01 5.015997e+01
+7 7157     -1.137300e+02 1.455100e+02
+13 7157     3.468700e+02 -1.926500e+02
+15 7157     -6.488000e+01 1.856800e+02
+0 7158     -4.839200e+02 3.719000e+01
+13 7158     -1.607400e+02 -2.519000e+02
+0 7159     6.911400e+02 3.522998e+01
+7 7159     5.357400e+02 2.313900e+02
+10 7159     7.078300e+02 2.549100e+02
+0 7160     7.039301e+02 3.396002e+01
+2 7160     6.448199e+02 6.538000e+01
+6 7160     5.712800e+02 2.147600e+02
+10 7160     7.228400e+02 2.545700e+02
+12 7160     6.502400e+02 2.240500e+02
+0 7161     7.094500e+02 3.420001e+01
+2 7161     6.502900e+02 6.848999e+01
+3 7161     5.119700e+02 -2.371000e+02
+6 7161     5.778700e+02 2.173600e+02
+7 7161     5.537400e+02 2.340500e+02
+9 7161     4.167100e+02 1.617900e+02
+10 7161     7.289399e+02 2.558200e+02
+0 7162     8.220400e+02 3.210999e+01
+2 7162     7.635000e+02 1.214500e+02
+3 7162     6.174200e+02 -1.815800e+02
+7 7162     6.611899e+02 2.536900e+02
+9 7162     5.100000e+02 2.100600e+02
+12 7162     7.838300e+02 2.682100e+02
+0 7163     8.778000e+02 3.131000e+01
+2 7163     8.168199e+02 1.459900e+02
+3 7163     6.654301e+02 -1.565800e+02
+7 7163     7.127900e+02 2.631300e+02
+9 7163     5.525500e+02 2.317000e+02
+0 7164     6.962200e+02 3.109998e+01
+2 7164     6.371600e+02 5.841998e+01
+3 7164     4.994900e+02 -2.472100e+02
+6 7164     5.628500e+02 2.085800e+02
+7 7164     5.411600e+02 2.284500e+02
+8 7164     5.824200e+02 1.526001e+01
+9 7164     4.063000e+02 1.526800e+02
+10 7164     7.133500e+02 2.509200e+02
+12 7164     6.419301e+02 2.176400e+02
+0 7165     7.175800e+02 3.096002e+01
+3 7165     5.205100e+02 -2.356700e+02
+7 7165     5.618000e+02 2.325100e+02
+10 7165     7.388800e+02 2.524700e+02
+12 7165     6.664800e+02 2.256100e+02
+0 7166     5.089399e+02 3.065997e+01
+7 7166     3.558101e+02 1.907700e+02
+10 7166     4.939600e+02 2.314800e+02
+13 7166     7.228101e+02 -1.848100e+02
+15 7166     6.764500e+02 2.482500e+02
+0 7167     7.450300e+02 3.064001e+01
+2 7167     6.877300e+02 8.292999e+01
+3 7167     5.471400e+02 -2.215800e+02
+7 7167     5.883900e+02 2.376300e+02
+9 7167     4.479700e+02 1.751500e+02
+10 7167     7.714800e+02 2.556500e+02
+12 7167     6.978000e+02 2.369300e+02
+0 7168     8.651700e+02 3.064001e+01
+2 7168     8.054600e+02 1.395500e+02
+7 7168     7.013300e+02 2.602500e+02
+0 7169     6.657300e+02 2.975000e+01
+2 7169     6.051899e+02 4.140997e+01
+3 7169     4.689800e+02 -2.649700e+02
+6 7169     5.269000e+02 1.949300e+02
+7 7169     5.116000e+02 2.212300e+02
+8 7169     5.557400e+02 2.690002e+00
+9 7169     3.795200e+02 1.375200e+02
+10 7169     6.777400e+02 2.459300e+02
+12 7169     6.070400e+02 2.045900e+02
+0 7170     7.120400e+02 3.004999e+01
+2 7170     6.538300e+02 6.566998e+01
+3 7170     5.151400e+02 -2.395700e+02
+6 7170     5.816500e+02 2.136200e+02
+7 7170     5.570000e+02 2.305900e+02
+8 7170     5.968900e+02 2.095001e+01
+9 7170     4.200100e+02 1.595900e+02
+0 7171     8.197400e+02 3.002002e+01
+2 7171     7.620601e+02 1.188400e+02
+3 7171     6.167300e+02 -1.847700e+02
+7 7171     6.589800e+02 2.514200e+02
+9 7171     5.092400e+02 2.074500e+02
+0 7172     8.197400e+02 3.002002e+01
+2 7172     7.620601e+02 1.188400e+02
+3 7172     6.167300e+02 -1.847700e+02
+7 7172     6.589800e+02 2.514200e+02
+9 7172     5.092400e+02 2.074500e+02
+0 7173     7.342800e+02 2.603003e+01
+2 7173     6.780000e+02 7.306000e+01
+3 7173     5.384100e+02 -2.315700e+02
+7 7173     5.789301e+02 2.307200e+02
+9 7173     4.397600e+02 1.665200e+02
+12 7173     6.865300e+02 2.274600e+02
+0 7174     7.736200e+02 2.489001e+01
+7 7174     6.163700e+02 2.377200e+02
+0 7175     -1.547500e+02 2.448999e+01
+7 7175     -2.611500e+02 9.994000e+01
+10 7175     -2.760900e+02 1.529700e+02
+15 7175     -2.434700e+02 1.477600e+02
+0 7176     6.625300e+02 2.366998e+01
+3 7176     4.682100e+02 -2.731600e+02
+7 7176     5.093199e+02 2.146500e+02
+0 7177     6.625300e+02 2.366998e+01
+2 7177     6.033000e+02 3.307001e+01
+3 7177     4.682100e+02 -2.731600e+02
+6 7177     5.246300e+02 1.865300e+02
+7 7177     5.093199e+02 2.146500e+02
+8 7177     5.538800e+02 -3.920013e+00
+9 7177     3.783600e+02 1.306300e+02
+12 7177     6.046200e+02 1.962100e+02
+0 7178     7.026000e+02 2.338000e+01
+2 7178     6.465699e+02 5.433002e+01
+3 7178     5.080900e+02 -2.511700e+02
+7 7178     5.484600e+02 2.223800e+02
+10 7178     7.217600e+02 2.427700e+02
+0 7179     8.711600e+02 2.240997e+01
+2 7179     8.130100e+02 1.348000e+02
+3 7179     6.631000e+02 -1.675000e+02
+7 7179     7.078600e+02 2.536300e+02
+9 7179     5.499301e+02 2.224100e+02
+0 7180     5.622800e+02 2.207001e+01
+6 7180     4.022900e+02 1.444200e+02
+7 7180     4.109700e+02 1.930300e+02
+10 7180     5.571400e+02 2.263100e+02
+13 7180     7.804600e+02 -1.847600e+02
+15 7180     7.519800e+02 2.435700e+02
+0 7181     -3.193400e+02 2.092999e+01
+7 7181     -4.545600e+02 4.984998e+01
+10 7181     -4.696200e+02 1.330900e+02
+13 7181     -6.169983e+00 -2.550400e+02
+15 7181     -4.584300e+02 1.203300e+02
+0 7182     4.416998e+01 2.081000e+01
+3 7182     9.628003e+01 -2.530000e+02
+8 7182     1.845500e+02 4.200134e-01
+0 7183     7.251400e+02 1.969000e+01
+7 7183     5.706500e+02 2.233200e+02
+10 7183     7.484100e+02 2.407100e+02
+0 7184     -3.438600e+02 1.891998e+01
+13 7184     -2.784998e+01 -2.583300e+02
+15 7184     -4.921700e+02 1.141500e+02
+0 7185     7.146801e+02 1.921002e+01
+7 7185     5.606400e+02 2.206200e+02
+10 7185     7.365699e+02 2.386500e+02
+0 7186     -3.667300e+02 1.771002e+01
+7 7186     -5.030500e+02 3.783002e+01
+13 7186     -4.833002e+01 -2.609900e+02
+15 7186     -5.234300e+02 1.091900e+02
+0 7187     7.330699e+02 1.790997e+01
+3 7187     5.403000e+02 -2.401000e+02
+9 7187     4.415699e+02 1.591600e+02
+10 7187     7.576400e+02 2.390400e+02
+0 7188     7.330699e+02 1.790997e+01
+3 7188     5.403000e+02 -2.401000e+02
+7 7188     5.784301e+02 2.230500e+02
+9 7188     4.415699e+02 1.591600e+02
+10 7188     7.576400e+02 2.390400e+02
+0 7189     -3.479600e+02 1.770001e+01
+7 7189     -4.838700e+02 4.140002e+01
+15 7189     -4.976500e+02 1.118300e+02
+0 7190     1.055500e+02 1.739001e+01
+4 7190     -2.740100e+02 -4.977800e+02
+8 7190     2.403300e+02 1.135001e+01
+12 7190     9.825000e+01 1.254300e+02
+13 7190     4.663900e+02 -1.970300e+02
+0 7191     7.961300e+02 1.731000e+01
+7 7191     6.385900e+02 2.344300e+02
+0 7192     6.432400e+02 1.384998e+01
+2 7192     5.851899e+02 1.357001e+01
+9 7192     3.636899e+02 1.132200e+02
+12 7192     5.847800e+02 1.787900e+02
+0 7193     -3.480100e+02 1.378003e+01
+2 7193     -4.665400e+02 -2.479500e+02
+7 7193     -4.824300e+02 3.803003e+01
+13 7193     -3.003003e+01 -2.629200e+02
+0 7194     -3.480100e+02 1.378003e+01
+4 7194     -2.331100e+02 -1.341400e+02
+7 7194     -4.824300e+02 3.803003e+01
+13 7194     -3.003003e+01 -2.629200e+02
+15 7194     -4.967900e+02 1.069600e+02
+0 7195     5.305000e+02 1.357001e+01
+7 7195     3.798300e+02 1.781200e+02
+10 7195     5.204200e+02 2.129200e+02
+13 7195     7.475200e+02 -1.978500e+02
+0 7196     6.795500e+02 1.175000e+01
+8 7196     5.723000e+02 -7.679993e+00
+0 7197     7.345699e+02 9.940002e+00
+2 7197     6.834600e+02 5.754999e+01
+7 7197     5.810900e+02 2.156500e+02
+12 7197     6.917300e+02 2.107800e+02
+0 7198     8.477200e+02 9.780029e+00
+9 7198     5.360601e+02 2.034900e+02
+0 7199     -8.258002e+01 9.250000e+00
+3 7199     -6.951001e+01 -3.371800e+02
+7 7199     -1.780400e+02 1.025400e+02
+10 7199     -1.902600e+02 1.434600e+02
+13 7199     2.825500e+02 -2.260200e+02
+15 7199     -1.454200e+02 1.377200e+02
+0 7200     6.830601e+02 7.619995e+00
+3 7200     4.941000e+02 -2.770600e+02
+6 7200     5.542300e+02 1.784100e+02
+8 7200     5.764200e+02 -8.320007e+00
+10 7200     7.001899e+02 2.225200e+02
+0 7201     -8.912000e+01 6.669983e+00
+7 7201     -1.853400e+02 9.759000e+01
+0 7202     -3.164500e+02 5.849976e+00
+7 7202     -4.476100e+02 3.545001e+01
+13 7202     7.800293e-01 -2.679600e+02
+15 7202     -4.529000e+02 1.000300e+02
+0 7203     -3.237900e+02 3.869995e+00
+7 7203     -4.545900e+02 3.275000e+01
+8 7203     -2.960300e+02 -2.230100e+02
+9 7203     -4.748400e+02 -1.534400e+02
+13 7203     -5.929993e+00 -2.700900e+02
+0 7204     -3.537000e+02 3.359985e+00
+8 7204     -3.252900e+02 -2.286800e+02
+15 7204     -5.032200e+02 9.178000e+01
+0 7205     8.570200e+02 3.580017e+00
+2 7205     8.064100e+02 1.108900e+02
+3 7205     6.584600e+02 -1.905000e+02
+0 7206     8.570200e+02 3.580017e+00
+2 7206     8.064100e+02 1.108900e+02
+3 7206     6.584600e+02 -1.905000e+02
+7 7206     6.971500e+02 2.334500e+02
+9 7206     5.449700e+02 2.024600e+02
+12 7206     8.299800e+02 2.507500e+02
+0 7207     5.974800e+02 2.419983e+00
+7 7207     4.492700e+02 1.808400e+02
+8 7207     5.003700e+02 -4.757999e+01
+10 7207     6.001100e+02 2.071400e+02
+12 7207     5.351899e+02 1.470600e+02
+13 7207     8.197000e+02 -1.978300e+02
+15 7207     8.043600e+02 2.216900e+02
+0 7208     8.529000e+02 2.760010e+00
+2 7208     8.024399e+02 1.084400e+02
+3 7208     6.550000e+02 -1.928200e+02
+7 7208     6.935699e+02 2.317100e+02
+9 7208     5.418600e+02 2.001000e+02
+12 7208     8.250000e+02 2.484500e+02
+0 7209     8.147800e+02 1.539978e+00
+2 7209     7.666100e+02 8.928003e+01
+7 7209     6.583199e+02 2.235100e+02
+0 7210     -9.681000e+01 1.229980e+00
+7 7210     -1.919700e+02 9.148001e+01
+0 7211     6.829301e+02 1.239990e+00
+2 7211     6.315601e+02 2.181000e+01
+6 7211     5.554500e+02 1.700300e+02
+7 7211     5.324100e+02 1.971100e+02
+9 7211     4.028800e+02 1.214300e+02
+10 7211     6.996500e+02 2.155200e+02
+0 7212     6.829301e+02 1.239990e+00
+7 7212     5.324100e+02 1.971100e+02
+12 7212     6.342200e+02 1.797500e+02
+0 7213     8.706801e+02 -8.200073e-01
+2 7213     8.190300e+02 1.135200e+02
+7 7213     7.100900e+02 2.321000e+02
+9 7213     5.557400e+02 2.047700e+02
+0 7214     1.674000e+02 -1.750000e+00
+3 7214     2.205601e+02 -2.431300e+02
+6 7214     1.520100e+02 7.253998e+01
+7 7214     8.341998e+01 1.396200e+02
+8 7214     2.952200e+02 6.459991e+00
+10 7214     1.007200e+02 1.565400e+02
+13 7214     5.218600e+02 -2.086500e+02
+15 7214     1.925100e+02 1.576700e+02
+0 7215     5.673101e+02 -2.020020e+00
+6 7215     4.152700e+02 1.176100e+02
+7 7215     4.190000e+02 1.703900e+02
+0 7216     3.600500e+02 -3.929993e+00
+12 7216     3.490900e+02 1.348600e+02
+0 7217     7.124200e+02 -4.070007e+00
+3 7217     5.274200e+02 -2.719700e+02
+7 7217     5.616400e+02 1.974600e+02
+10 7217     7.347300e+02 2.134500e+02
+0 7218     -4.505200e+02 -5.200012e+00
+2 7218     -5.892300e+02 -2.918400e+02
+0 7219     6.763300e+02 -5.469971e+00
+7 7219     5.267200e+02 1.892400e+02
+9 7219     3.988199e+02 1.130400e+02
+12 7219     6.285100e+02 1.698400e+02
+0 7220     1.000600e+02 -7.309998e+00
+6 7220     8.419000e+01 4.506000e+01
+8 7220     2.436000e+02 -9.440002e+00
+10 7220     2.502002e+01 1.433800e+02
+15 7220     1.007800e+02 1.408500e+02
+0 7221     6.882100e+02 -8.750000e+00
+2 7221     6.403700e+02 1.354999e+01
+3 7221     5.053199e+02 -2.906200e+02
+8 7221     5.843300e+02 -2.042001e+01
+10 7221     7.067700e+02 2.032700e+02
+0 7222     -1.788000e+02 -9.059998e+00
+2 7222     -1.051800e+02 -8.681000e+01
+3 7222     -1.868100e+02 -4.021500e+02
+6 7222     -2.898900e+02 -7.687000e+01
+10 7222     -3.003800e+02 1.118200e+02
+12 7222     -2.627100e+02 -1.548999e+01
+15 7222     -2.721000e+02 1.000700e+02
+0 7223     -3.808500e+02 -9.919983e+00
+7 7223     -5.119700e+02 8.719971e+00
+13 7223     -5.494000e+01 -2.858900e+02
+15 7223     -5.386300e+02 7.042999e+01
+0 7224     -1.139900e+02 -1.052002e+01
+6 7224     -1.934900e+02 -4.728998e+01
+7 7224     -2.062000e+02 7.745001e+01
+10 7224     -2.245800e+02 1.170000e+02
+12 7224     -1.736300e+02 1.083002e+01
+15 7224     -1.854100e+02 1.067800e+02
+0 7225     6.737300e+02 -1.128998e+01
+3 7225     4.909301e+02 -3.003400e+02
+6 7225     5.483199e+02 1.517600e+02
+9 7225     3.976100e+02 1.069800e+02
+0 7226     2.790500e+02 -1.502002e+01
+12 7226     2.903900e+02 1.252100e+02
+13 7226     6.103900e+02 -2.143300e+02
+0 7227     6.789399e+02 -1.497998e+01
+2 7227     6.326200e+02 2.400024e+00
+6 7227     5.553500e+02 1.505000e+02
+8 7227     5.780699e+02 -3.023001e+01
+9 7227     4.039301e+02 1.059000e+02
+10 7227     6.965699e+02 1.954000e+02
+12 7227     6.341700e+02 1.598700e+02
+0 7228     -3.799700e+02 -1.617999e+01
+2 7228     -4.885500e+02 -2.820500e+02
+7 7228     -5.093300e+02 2.900024e+00
+8 7228     -3.436500e+02 -2.485100e+02
+13 7228     -5.197998e+01 -2.908100e+02
+15 7228     -5.368700e+02 6.181000e+01
+0 7229     -6.517999e+01 -1.690002e+01
+2 7229     5.720001e+01 -3.603998e+01
+4 7229     -2.767700e+02 -3.570500e+02
+7 7229     -1.534700e+02 8.129001e+01
+8 7229     7.723999e+01 -7.340002e+01
+12 7229     -1.080700e+02 2.244000e+01
+15 7229     -1.191400e+02 1.051400e+02
+0 7230     -6.517999e+01 -1.690002e+01
+7 7230     -1.534700e+02 8.129001e+01
+10 7230     -1.668500e+02 1.143600e+02
+15 7230     -1.191400e+02 1.051400e+02
+0 7231     8.554100e+02 -1.792999e+01
+2 7231     8.114700e+02 8.984003e+01
+7 7231     6.992500e+02 2.123900e+02
+9 7231     5.495300e+02 1.850400e+02
+0 7232     6.441998e+01 -2.206000e+01
+3 7232     1.358900e+02 -2.858400e+02
+4 7232     -2.965100e+02 -4.640500e+02
+6 7232     4.997998e+01 1.635999e+01
+8 7232     2.157400e+02 -3.004001e+01
+15 7232     5.494000e+01 1.159800e+02
+0 7233     6.183400e+02 -2.188000e+01
+12 7233     5.636200e+02 1.271300e+02
+0 7234     -9.887000e+01 -2.287000e+01
+7 7234     -1.875900e+02 6.845001e+01
+12 7234     -1.486300e+02 2.479980e+00
+0 7235     2.418700e+02 -2.603998e+01
+7 7235     1.573300e+02 1.265300e+02
+15 7235     2.986600e+02 1.340200e+02
+0 7236     7.039900e+02 -2.590002e+01
+2 7236     6.628199e+02 4.619995e+00
+3 7236     5.274399e+02 -2.982500e+02
+7 7236     5.564100e+02 1.752200e+02
+9 7236     4.287200e+02 1.091000e+02
+10 7236     7.269200e+02 1.852200e+02
+12 7236     6.659500e+02 1.578500e+02
+0 7237     1.105100e+02 -2.696002e+01
+4 7237     -3.056500e+02 -5.022000e+02
+8 7237     2.577400e+02 -2.309000e+01
+9 7237     1.228500e+02 1.210600e+02
+15 7237     1.180800e+02 1.158800e+02
+0 7238     7.152100e+02 -2.714001e+01
+2 7238     6.743800e+02 1.001001e+01
+3 7238     5.384301e+02 -2.929200e+02
+7 7238     5.672400e+02 1.763700e+02
+10 7238     7.410000e+02 1.845200e+02
+12 7238     6.790800e+02 1.610600e+02
+0 7239     7.001100e+02 -2.785999e+01
+6 7239     5.834100e+02 1.447300e+02
+0 7240     6.699500e+02 -2.937000e+01
+2 7240     6.270000e+02 -1.651001e+01
+6 7240     5.482700e+02 1.320200e+02
+8 7240     5.732400e+02 -4.528000e+01
+10 7240     6.874301e+02 1.779000e+02
+12 7240     6.275100e+02 1.418600e+02
+0 7241     6.699500e+02 -2.937000e+01
+6 7241     5.482700e+02 1.320200e+02
+8 7241     5.732400e+02 -4.528000e+01
+10 7241     6.874301e+02 1.779000e+02
+12 7241     6.275100e+02 1.418600e+02
+0 7242     7.269800e+02 -2.934998e+01
+2 7242     6.868600e+02 1.317999e+01
+3 7242     5.508500e+02 -2.886100e+02
+7 7242     5.790200e+02 1.764600e+02
+9 7242     4.486400e+02 1.171400e+02
+10 7242     7.540800e+02 1.833300e+02
+12 7242     6.925000e+02 1.628700e+02
+0 7243     8.640601e+02 -3.066998e+01
+2 7243     8.239700e+02 8.170001e+01
+3 7243     6.773101e+02 -2.174600e+02
+7 7243     7.083199e+02 2.022800e+02
+9 7243     5.597700e+02 1.785100e+02
+0 7244     8.548600e+02 -3.153998e+01
+2 7244     8.154301e+02 7.688000e+01
+7 7244     6.998199e+02 1.995800e+02
+0 7245     8.584600e+02 -3.269000e+01
+2 7245     8.191899e+02 7.751001e+01
+3 7245     6.730800e+02 -2.221400e+02
+7 7245     7.035000e+02 1.992900e+02
+9 7245     5.562300e+02 1.748600e+02
+0 7246     8.584600e+02 -3.269000e+01
+2 7246     8.191899e+02 7.751001e+01
+7 7246     7.035000e+02 1.992900e+02
+0 7247     6.562400e+02 -3.442999e+01
+6 7247     5.333500e+02 1.191100e+02
+12 7247     6.127500e+02 1.287900e+02
+0 7248     -7.694000e+01 -3.503003e+01
+7 7248     -1.617800e+02 6.092999e+01
+10 7248     -1.786700e+02 9.207001e+01
+0 7249     7.750200e+02 -3.517999e+01
+2 7249     7.394600e+02 3.316998e+01
+3 7249     5.989301e+02 -2.674900e+02
+7 7249     6.255900e+02 1.806500e+02
+9 7249     4.906700e+02 1.353100e+02
+10 7249     8.117100e+02 1.822000e+02
+12 7249     7.483900e+02 1.768400e+02
+0 7250     7.750200e+02 -3.517999e+01
+2 7250     7.394600e+02 3.316998e+01
+3 7250     5.989301e+02 -2.674900e+02
+7 7250     6.255900e+02 1.806500e+02
+9 7250     4.906700e+02 1.353100e+02
+10 7250     8.117100e+02 1.822000e+02
+0 7251     -2.575300e+02 -3.546997e+01
+7 7251     -3.767000e+02 6.080017e+00
+12 7251     -4.113600e+02 -1.257300e+02
+13 7251     6.410999e+01 -2.990700e+02
+15 7251     -3.671100e+02 5.265002e+01
+0 7252     -2.575300e+02 -3.546997e+01
+7 7252     -3.767000e+02 6.080017e+00
+15 7252     -3.671100e+02 5.265002e+01
+0 7253     6.564001e+01 -3.604999e+01
+3 7253     1.430900e+02 -2.985900e+02
+9 7253     8.825000e+01 1.013300e+02
+0 7254     4.338600e+02 -3.722998e+01
+7 7254     3.265500e+02 1.354900e+02
+0 7255     6.900200e+02 -3.947998e+01
+2 7255     6.510900e+02 -1.642999e+01
+3 7255     5.178800e+02 -3.192200e+02
+6 7255     5.750100e+02 1.283900e+02
+7 7255     5.446899e+02 1.595400e+02
+9 7255     4.202200e+02 9.110999e+01
+12 7255     6.528199e+02 1.371200e+02
+0 7256     -4.794400e+02 -3.990997e+01
+7 7256     -6.094000e+02 -3.915997e+01
+0 7257     -4.056200e+02 -4.015002e+01
+7 7257     -5.307300e+02 -2.491998e+01
+13 7257     -7.050000e+01 -3.130800e+02
+15 7257     -5.695300e+02 2.570001e+01
+0 7258     8.420400e+02 -4.071997e+01
+3 7258     6.617000e+02 -2.376400e+02
+7 7258     6.891300e+02 1.885600e+02
+0 7259     1.355500e+02 -4.151001e+01
+2 7259     3.081500e+02 2.112000e+01
+7 7259     5.895001e+01 9.609000e+01
+10 7259     6.821997e+01 1.064600e+02
+13 7259     5.001100e+02 -2.449800e+02
+15 7259     1.541100e+02 9.919000e+01
+0 7260     6.668600e+02 -4.342999e+01
+8 7260     5.733800e+02 -5.959003e+01
+0 7261     7.233600e+02 -4.421997e+01
+2 7261     6.878600e+02 -2.549988e+00
+3 7261     5.524600e+02 -3.051500e+02
+7 7261     5.775000e+02 1.619300e+02
+9 7261     4.499800e+02 1.035900e+02
+10 7261     7.512700e+02 1.660600e+02
+12 7261     6.928600e+02 1.466600e+02
+0 7262     7.622800e+02 -4.377002e+01
+2 7262     7.275800e+02 1.728003e+01
+3 7262     5.899600e+02 -2.830400e+02
+7 7262     6.146000e+02 1.697400e+02
+9 7262     4.826600e+02 1.219200e+02
+10 7262     7.974000e+02 1.706000e+02
+12 7262     7.363800e+02 1.616000e+02
+0 7263     -4.809998e+00 -4.459003e+01
+7 7263     -8.316998e+01 6.726001e+01
+15 7263     -3.495001e+01 7.571997e+01
+0 7264     -4.715600e+02 -4.560999e+01
+7 7264     -5.993900e+02 -4.248999e+01
+0 7265     -1.852800e+02 -4.571997e+01
+2 7265     -8.252002e+01 -1.124400e+02
+4 7265     -2.811800e+02 -2.675500e+02
+6 7265     -2.685400e+02 -1.160900e+02
+7 7265     -2.742400e+02 2.890002e+01
+8 7265     -3.725000e+01 -1.335000e+02
+10 7265     -3.018700e+02 6.659998e+01
+12 7265     -2.510900e+02 -5.403003e+01
+15 7265     -2.748000e+02 4.753003e+01
+0 7266     -4.770001e+01 -4.532001e+01
+13 7266     3.278500e+02 -2.674600e+02
+15 7266     -9.175000e+01 6.908002e+01
+0 7267     -3.736900e+02 -5.283002e+01
+2 7267     -4.556700e+02 -3.126700e+02
+7 7267     -4.936200e+02 -3.195001e+01
+8 7267     -3.201500e+02 -2.744800e+02
+9 7267     -4.910900e+02 -2.073600e+02
+12 7267     -5.500700e+02 -1.800600e+02
+15 7267     -5.237500e+02 1.289001e+01
+0 7268     8.700800e+02 -5.253003e+01
+7 7268     7.167400e+02 1.828000e+02
+9 7268     5.705400e+02 1.640800e+02
+0 7269     7.026400e+02 -5.391998e+01
+2 7269     6.689900e+02 -2.484998e+01
+3 7269     5.361899e+02 -3.267500e+02
+7 7269     5.587100e+02 1.479500e+02
+9 7269     4.350100e+02 8.463000e+01
+10 7269     7.275200e+02 1.523100e+02
+12 7269     6.713700e+02 1.258700e+02
+0 7270     -1.748900e+02 -5.435999e+01
+6 7270     -2.511200e+02 -1.213100e+02
+7 7270     -2.611900e+02 2.252002e+01
+15 7270     -2.619500e+02 3.942999e+01
+0 7271     -4.682600e+02 -5.490997e+01
+2 7271     -5.805200e+02 -3.413700e+02
+7 7271     -5.934400e+02 -5.134998e+01
+12 7271     -6.724800e+02 -2.116200e+02
+13 7271     -1.244900e+02 -3.303400e+02
+0 7272     -3.718700e+02 -5.873999e+01
+2 7272     -4.488400e+02 -3.164300e+02
+7 7272     -4.898900e+02 -3.689001e+01
+8 7272     -3.155400e+02 -2.785300e+02
+9 7272     -4.845800e+02 -2.109600e+02
+12 7272     -5.451300e+02 -1.853700e+02
+0 7273     -4.402100e+02 -5.906000e+01
+2 7273     -5.389200e+02 -3.362000e+02
+8 7273     -3.866700e+02 -2.934500e+02
+10 7273     -5.999500e+02 2.669000e+01
+13 7273     -9.640997e+01 -3.314100e+02
+0 7274     2.700195e-01 -5.896997e+01
+2 7274     1.658800e+02 -4.191998e+01
+15 7274     -2.616998e+01 5.709003e+01
+0 7275     -4.035999e+01 -5.938000e+01
+7 7275     -1.187300e+02 4.417999e+01
+0 7276     6.710500e+02 -5.971002e+01
+6 7276     5.579301e+02 9.726001e+01
+8 7276     5.807600e+02 -7.179999e+01
+9 7276     4.086700e+02 6.394000e+01
+12 7276     6.363500e+02 1.066200e+02
+0 7277     6.956100e+02 -5.978998e+01
+2 7277     6.632500e+02 -3.427002e+01
+3 7277     5.307800e+02 -3.366800e+02
+7 7277     5.525601e+02 1.411100e+02
+9 7277     4.302000e+02 7.628003e+01
+10 7277     7.202300e+02 1.447900e+02
+12 7277     6.647700e+02 1.170600e+02
+0 7278     -6.581400e+02 -6.137000e+01
+13 7278     -2.991300e+02 -3.476200e+02
+0 7279     -4.148500e+02 -6.200000e+01
+2 7279     -5.021100e+02 -3.322200e+02
+7 7279     -5.348200e+02 -4.932001e+01
+8 7279     -3.595600e+02 -2.909300e+02
+10 7279     -5.728600e+02 2.398999e+01
+0 7280     -1.561800e+02 -6.240997e+01
+6 7280     -2.220900e+02 -1.225800e+02
+7 7280     -2.399000e+02 1.778003e+01
+10 7280     -2.681400e+02 5.178998e+01
+12 7280     -2.080200e+02 -6.234998e+01
+13 7280     2.259399e+02 -2.935300e+02
+15 7280     -2.355500e+02 3.065002e+01
+0 7281     -9.881000e+01 -6.283002e+01
+7 7281     -1.784300e+02 2.991998e+01
+10 7281     -2.013900e+02 5.772998e+01
+15 7281     -1.586700e+02 3.834998e+01
+0 7282     7.574800e+02 -6.259998e+01
+3 7282     5.930699e+02 -3.041200e+02
+7 7282     6.128700e+02 1.505500e+02
+10 7282     7.930699e+02 1.481100e+02
+12 7282     7.371000e+02 1.387200e+02
+0 7283     7.574800e+02 -6.259998e+01
+2 7283     7.288101e+02 -3.270020e+00
+3 7283     5.930699e+02 -3.041200e+02
+7 7283     6.128700e+02 1.505500e+02
+10 7283     7.930699e+02 1.481100e+02
+12 7283     7.371000e+02 1.387200e+02
+0 7284     2.975900e+02 -6.284998e+01
+8 7284     3.966700e+02 -4.187000e+01
+0 7285     7.914500e+02 -6.392999e+01
+2 7285     7.634900e+02 1.251001e+01
+3 7285     6.247900e+02 -2.865200e+02
+7 7285     6.448900e+02 1.564900e+02
+0 7286     2.044000e+01 -6.641998e+01
+7 7286     -5.321997e+01 5.009998e+01
+10 7286     -6.298999e+01 6.590002e+01
+0 7287     8.118600e+02 -6.721997e+01
+7 7287     6.644700e+02 1.575300e+02
+0 7288     -4.188100e+02 -6.800000e+01
+2 7288     -5.053400e+02 -3.389600e+02
+8 7288     -3.612800e+02 -2.962100e+02
+9 7288     -5.311300e+02 -2.332400e+02
+10 7288     -5.769700e+02 1.751001e+01
+13 7288     -7.554999e+01 -3.385800e+02
+15 7288     -5.831800e+02 -1.482001e+01
+0 7289     1.015800e+02 -6.897998e+01
+6 7289     1.075800e+02 -2.278998e+01
+0 7290     8.694600e+02 -6.903003e+01
+7 7290     7.183900e+02 1.669000e+02
+9 7290     5.754500e+02 1.505700e+02
+0 7291     -3.844200e+02 -6.948999e+01
+7 7291     -5.007600e+02 -4.990997e+01
+0 7292     -3.844200e+02 -6.948999e+01
+7 7292     -5.007600e+02 -4.990997e+01
+0 7293     3.824100e+02 -6.959998e+01
+7 7293     2.876200e+02 9.832001e+01
+0 7294     6.821801e+02 -7.006000e+01
+2 7294     6.494301e+02 -5.282001e+01
+3 7294     5.209200e+02 -3.549300e+02
+8 7294     5.924399e+02 -7.602002e+01
+9 7294     4.198500e+02 6.031000e+01
+10 7294     7.024900e+02 1.321700e+02
+12 7294     6.498101e+02 1.004000e+02
+0 7295     7.662200e+02 -7.062000e+01
+7 7295     6.218500e+02 1.447500e+02
+10 7295     8.041000e+02 1.405300e+02
+0 7296     2.944301e+02 -7.095001e+01
+7 7296     2.106801e+02 8.801001e+01
+13 7296     6.275200e+02 -2.630000e+02
+15 7296     3.780100e+02 8.035001e+01
+0 7297     7.627300e+02 -7.087000e+01
+2 7297     7.369200e+02 -8.919983e+00
+9 7297     4.903500e+02 1.002200e+02
+10 7297     7.997600e+02 1.387800e+02
+12 7297     7.445500e+02 1.328800e+02
+0 7298     -4.275000e+02 -7.171002e+01
+7 7298     -5.461700e+02 -6.046002e+01
+13 7298     -8.301001e+01 -3.419000e+02
+0 7299     8.578600e+02 -7.140997e+01
+7 7299     7.080500e+02 1.624300e+02
+9 7299     5.666899e+02 1.438700e+02
+0 7300     1.067800e+02 -7.239001e+01
+2 7300     2.906600e+02 -1.778003e+01
+13 7300     4.786100e+02 -2.748600e+02
+15 7300     1.190000e+02 5.331000e+01
+0 7301     6.814301e+02 -7.367999e+01
+6 7301     5.752200e+02 8.708002e+01
+9 7301     4.215500e+02 5.714001e+01
+12 7301     6.519500e+02 9.570001e+01
+0 7302     8.476700e+02 -7.971002e+01
+2 7302     8.227900e+02 2.696997e+01
+7 7302     6.992300e+02 1.531100e+02
+9 7302     5.604301e+02 1.330400e+02
+0 7303     -1.877200e+02 -8.026001e+01
+7 7303     -2.740300e+02 -9.760010e+00
+0 7304     3.357300e+02 -8.122998e+01
+7 7304     2.507200e+02 8.379999e+01
+0 7305     8.753600e+02 -8.150000e+01
+9 7305     5.827200e+02 1.435700e+02
+0 7306     2.202002e+01 -8.845001e+01
+3 7306     1.128300e+02 -3.720700e+02
+7 7306     -4.844000e+01 2.834998e+01
+0 7307     -4.154400e+02 -8.978003e+01
+7 7307     -5.290100e+02 -7.577002e+01
+8 7307     -3.474000e+02 -3.120700e+02
+10 7307     -5.703500e+02 -7.510010e+00
+13 7307     -6.742999e+01 -3.570000e+02
+15 7307     -5.765600e+02 -4.289001e+01
+0 7308     6.700900e+02 -9.071002e+01
+6 7308     5.658700e+02 6.323999e+01
+7 7308     5.318400e+02 1.063500e+02
+9 7308     4.168700e+02 3.696997e+01
+0 7309     6.910900e+02 -9.089001e+01
+2 7309     6.673300e+02 -6.952002e+01
+3 7309     5.372600e+02 -3.710800e+02
+7 7309     5.524399e+02 1.101300e+02
+9 7309     4.351700e+02 4.722998e+01
+0 7310     -3.320300e+02 -9.240002e+01
+7 7310     -4.399800e+02 -6.240997e+01
+13 7310     1.014001e+01 -3.532500e+02
+0 7311     6.986400e+02 -9.253998e+01
+2 7311     6.765000e+02 -6.675000e+01
+3 7311     5.461700e+02 -3.677200e+02
+7 7311     5.600000e+02 1.101600e+02
+9 7311     4.425500e+02 5.016998e+01
+10 7311     7.258700e+02 1.075700e+02
+12 7311     6.770200e+02 8.233002e+01
+0 7312     1.094700e+02 -9.326001e+01
+2 7312     2.985500e+02 -4.134003e+01
+6 7312     1.224200e+02 -4.871997e+01
+8 7312     2.725200e+02 -8.358002e+01
+10 7312     4.376001e+01 4.514001e+01
+12 7312     1.368500e+02 -9.500122e-01
+0 7313     1.684900e+02 -9.381000e+01
+2 7313     3.536400e+02 -3.010999e+01
+6 7313     1.830300e+02 -3.034003e+01
+8 7313     3.195300e+02 -7.401001e+01
+13 7313     5.328800e+02 -2.889800e+02
+15 7313     2.062800e+02 3.321002e+01
+0 7314     2.283101e+02 -9.534003e+01
+10 7314     1.810000e+02 5.434998e+01
+13 7314     5.813300e+02 -2.868900e+02
+0 7315     -4.181400e+02 -9.583002e+01
+2 7315     -4.843600e+02 -3.629800e+02
+7 7315     -5.296900e+02 -8.206000e+01
+8 7315     -3.480800e+02 -3.175700e+02
+10 7315     -5.716900e+02 -1.460999e+01
+12 7315     -5.885400e+02 -2.405100e+02
+15 7315     -5.785600e+02 -5.116998e+01
+0 7316     -4.647300e+02 -9.767999e+01
+7 7316     -5.795000e+02 -9.320001e+01
+8 7316     -3.969000e+02 -3.296400e+02
+0 7317     -4.704600e+02 -9.859998e+01
+7 7317     -5.851400e+02 -9.515997e+01
+13 7317     -1.162900e+02 -3.685700e+02
+0 7318     7.646500e+02 -9.958002e+01
+7 7318     6.241899e+02 1.170200e+02
+0 7319     1.389399e+02 -1.006700e+02
+2 7319     3.285699e+02 -4.448999e+01
+3 7319     2.334399e+02 -3.467100e+02
+6 7319     1.549400e+02 -4.838000e+01
+8 7319     2.982700e+02 -8.544000e+01
+15 7319     1.662800e+02 1.859998e+01
+0 7320     -3.911000e+02 -1.014000e+02
+7 7320     -4.999800e+02 -8.244000e+01
+9 7320     -4.754100e+02 -2.459400e+02
+13 7320     -4.154999e+01 -3.651200e+02
+15 7320     -5.411800e+02 -5.520001e+01
+0 7321     5.960999e+01 -1.022100e+02
+6 7321     6.915002e+01 -7.703998e+01
+7 7321     -7.440002e+00 2.194000e+01
+8 7321     2.306800e+02 -1.040800e+02
+13 7321     4.386100e+02 -3.055300e+02
+15 7321     6.021002e+01 6.690002e+00
+0 7322     4.090699e+02 -1.038600e+02
+6 7322     3.949700e+02 1.512000e+01
+10 7322     3.896700e+02 6.371002e+01
+12 7322     4.410900e+02 4.583002e+01
+0 7323     6.890800e+02 -1.038000e+02
+2 7323     6.686700e+02 -8.337000e+01
+3 7323     5.397800e+02 -3.850100e+02
+7 7323     5.523199e+02 9.754999e+01
+9 7323     4.361801e+02 3.559998e+01
+12 7323     6.679700e+02 6.627002e+01
+0 7324     -4.355000e+02 -1.051600e+02
+7 7324     -5.467900e+02 -9.489001e+01
+15 7324     -6.027100e+02 -6.751001e+01
+0 7325     2.418400e+02 -1.049100e+02
+2 7325     4.144301e+02 -3.697998e+01
+3 7325     3.123800e+02 -3.391200e+02
+6 7325     2.529900e+02 -2.454999e+01
+7 7325     1.692300e+02 4.890002e+01
+10 7325     1.972800e+02 4.497998e+01
+12 7325     2.801500e+02 1.616998e+01
+13 7325     5.929800e+02 -2.945900e+02
+15 7325     3.086200e+02 2.698999e+01
+0 7326     7.308300e+02 -1.054500e+02
+2 7326     7.140601e+02 -6.225000e+01
+7 7326     5.926300e+02 1.047600e+02
+9 7326     4.733900e+02 5.547998e+01
+10 7326     7.644800e+02 9.629999e+01
+12 7326     7.169700e+02 8.112000e+01
+0 7327     4.074600e+02 -1.076300e+02
+6 7327     3.966100e+02 1.131000e+01
+10 7327     3.883199e+02 5.925000e+01
+12 7327     4.423300e+02 4.190002e+01
+0 7328     3.108600e+02 -1.078200e+02
+6 7328     3.182600e+02 -8.780029e+00
+7 7328     2.343900e+02 5.633002e+01
+12 7328     3.526600e+02 2.773999e+01
+13 7328     6.502300e+02 -2.927700e+02
+15 7328     4.047300e+02 3.209998e+01
+0 7329     3.204900e+02 -1.081700e+02
+10 7329     2.879500e+02 4.945001e+01
+13 7329     6.583400e+02 -2.925100e+02
+15 7329     4.181600e+02 3.323999e+01
+0 7330     1.385699e+02 -1.116100e+02
+3 7330     2.362100e+02 -3.593400e+02
+7 7330     7.239001e+01 2.615997e+01
+0 7331     2.876899e+02 -1.117300e+02
+7 7331     2.134100e+02 4.865002e+01
+15 7331     3.728000e+02 2.401001e+01
+0 7332     4.075200e+02 -1.120200e+02
+7 7332     3.212200e+02 6.406000e+01
+12 7332     4.437300e+02 3.812000e+01
+0 7333     2.435699e+02 -1.155200e+02
+13 7333     5.960200e+02 -3.035800e+02
+0 7334     7.772300e+02 -1.167900e+02
+2 7334     7.654900e+02 -4.857001e+01
+3 7334     6.314500e+02 -3.458600e+02
+7 7334     6.381899e+02 1.031600e+02
+9 7334     5.156300e+02 6.878003e+01
+10 7334     8.205200e+02 8.719000e+01
+12 7334     7.726500e+02 8.757001e+01
+0 7335     -2.672998e+01 -1.174800e+02
+3 7335     8.212000e+01 -4.105601e+02
+7 7335     -9.106000e+01 -8.460022e+00
+15 7335     -5.534998e+01 -2.534003e+01
+0 7336     -1.450000e+01 -1.232500e+02
+7 7336     -7.759003e+01 -1.165002e+01
+0 7337     1.045000e+02 -1.284900e+02
+13 7337     4.815900e+02 -3.246700e+02
+0 7338     -3.001800e+02 -1.298200e+02
+2 7338     -3.060800e+02 -3.581100e+02
+6 7338     -4.816700e+02 -3.159100e+02
+13 7338     4.895001e+01 -3.834200e+02
+0 7339     -1.095700e+02 -1.310900e+02
+7 7339     -1.747500e+02 -3.951001e+01
+15 7339     -1.651600e+02 -5.562000e+01
+0 7340     -1.477400e+02 -1.345200e+02
+7 7340     -2.127400e+02 -4.928998e+01
+10 7340     -2.508900e+02 -3.090997e+01
+15 7340     -2.161500e+02 -6.537000e+01
+0 7341     2.477800e+02 -1.375900e+02
+7 7341     1.823700e+02 1.878003e+01
+10 7341     2.071801e+02 8.030029e+00
+15 7341     3.210699e+02 -1.609003e+01
+0 7342     6.888000e+02 -1.377100e+02
+7 7342     5.564600e+02 6.490002e+01
+9 7342     4.464600e+02 5.989990e+00
+0 7343     2.541100e+02 -1.426400e+02
+10 7343     2.155200e+02 2.169983e+00
+13 7343     6.134100e+02 -3.256300e+02
+0 7344     8.756400e+02 -1.447400e+02
+7 7344     7.332700e+02 9.679001e+01
+9 7344     5.997700e+02 9.220001e+01
+0 7345     1.133100e+02 -1.481500e+02
+7 7345     5.584998e+01 -1.284003e+01
+10 7345     5.279999e+01 -1.869000e+01
+0 7346     1.095000e+02 -1.510700e+02
+6 7346     1.488200e+02 -1.098300e+02
+12 7346     1.579600e+02 -6.467999e+01
+0 7347     8.240900e+02 -1.508300e+02
+2 7347     8.237900e+02 -5.742999e+01
+7 7347     6.866899e+02 8.056000e+01
+9 7347     5.631200e+02 6.327002e+01
+0 7348     -1.030000e+02 -1.513800e+02
+6 7348     -9.678000e+01 -1.932900e+02
+7 7348     -1.628600e+02 -5.712000e+01
+13 7348     2.987000e+02 -3.631900e+02
+15 7348     -1.536100e+02 -8.195001e+01
+0 7349     1.594700e+02 -1.532100e+02
+13 7349     5.358300e+02 -3.409400e+02
+15 7349     2.013500e+02 -4.914001e+01
+0 7350     7.596000e+02 -1.529200e+02
+2 7350     7.590601e+02 -9.507001e+01
+9 7350     5.115699e+02 2.966998e+01
+12 7350     7.623300e+02 3.991998e+01
+0 7351     7.196100e+02 -1.556500e+02
+2 7351     7.177000e+02 -1.209300e+02
+7 7351     5.883199e+02 5.440997e+01
+0 7352     -6.457001e+01 -1.566300e+02
+10 7352     -1.511000e+02 -4.716998e+01
+12 7352     -4.981000e+01 -1.302500e+02
+13 7352     3.342900e+02 -3.643400e+02
+0 7353     -1.350300e+02 -1.575100e+02
+4 7353     -3.648800e+02 -3.009900e+02
+7 7353     -1.986400e+02 -7.235999e+01
+12 7353     -1.470200e+02 -1.641700e+02
+15 7353     -1.950500e+02 -9.362000e+01
+0 7354     3.831700e+02 -1.591300e+02
+7 7354     3.098500e+02 1.682001e+01
+10 7354     3.646600e+02 -2.950012e+00
+15 7354     5.116700e+02 -2.835999e+01
+0 7355     7.953700e+02 -1.589500e+02
+2 7355     7.970100e+02 -8.148999e+01
+9 7355     5.421000e+02 4.233002e+01
+12 7355     8.041899e+02 4.802002e+01
+0 7356     3.790997e+01 -1.609000e+02
+2 7356     2.532900e+02 -1.308300e+02
+3 7356     1.687700e+02 -4.323800e+02
+6 7356     7.035999e+01 -1.492400e+02
+8 7356     2.317800e+02 -1.572400e+02
+10 7356     -3.234998e+01 -4.103003e+01
+12 7356     7.577002e+01 -1.015600e+02
+13 7356     4.283199e+02 -3.587600e+02
+15 7356     3.802002e+01 -7.567999e+01
+0 7357     -1.431000e+01 -1.607800e+02
+7 7357     -7.096997e+01 -4.970001e+01
+10 7357     -9.283002e+01 -4.675000e+01
+15 7357     -3.242999e+01 -8.221002e+01
+0 7358     7.344301e+02 -1.618900e+02
+7 7358     6.035800e+02 5.119000e+01
+0 7359     8.744900e+02 -1.618800e+02
+7 7359     7.344600e+02 8.029001e+01
+0 7360     8.744900e+02 -1.618800e+02
+7 7360     7.344600e+02 8.029001e+01
+0 7361     8.348600e+02 -1.688400e+02
+7 7361     6.987700e+02 6.572998e+01
+0 7362     7.695601e+02 -1.706700e+02
+7 7362     6.382800e+02 5.028003e+01
+0 7363     8.026899e+02 -1.718400e+02
+2 7363     8.090200e+02 -9.029999e+01
+7 7363     6.696400e+02 5.621997e+01
+12 7363     8.161801e+02 3.728998e+01
+0 7364     8.026899e+02 -1.718400e+02
+2 7364     8.090200e+02 -9.029999e+01
+7 7364     6.696400e+02 5.621997e+01
+12 7364     8.161801e+02 3.728998e+01
+0 7365     -6.364001e+01 -1.747400e+02
+6 7365     -3.478003e+01 -2.015800e+02
+10 7365     -1.482600e+02 -6.821002e+01
+12 7365     -3.841998e+01 -1.488600e+02
+13 7365     3.411300e+02 -3.795800e+02
+15 7365     -9.834998e+01 -1.073300e+02
+0 7366     7.493400e+02 -1.750100e+02
+2 7366     7.549500e+02 -1.242800e+02
+3 7366     6.279500e+02 -4.211300e+02
+7 7366     6.192000e+02 4.203998e+01
+10 7366     7.921801e+02 1.731000e+01
+0 7367     7.826500e+02 -1.751900e+02
+2 7367     7.893000e+02 -1.048000e+02
+7 7367     6.508199e+02 4.898999e+01
+9 7367     5.363800e+02 2.253003e+01
+0 7368     3.202002e+01 -1.753400e+02
+7 7368     -2.190997e+01 -5.557001e+01
+10 7368     -3.788000e+01 -5.820001e+01
+15 7368     3.153003e+01 -9.590997e+01
+0 7369     7.531100e+02 -1.754600e+02
+3 7369     6.313101e+02 -4.192700e+02
+7 7369     6.229399e+02 4.240002e+01
+0 7370     9.957001e+01 -1.784300e+02
+2 7370     3.252500e+02 -1.296700e+02
+3 7370     2.364900e+02 -4.290900e+02
+6 7370     1.452000e+02 -1.461400e+02
+8 7370     2.914700e+02 -1.576600e+02
+12 7370     1.536500e+02 -1.019100e+02
+0 7371     2.099600e+02 -1.784100e+02
+6 7371     2.549700e+02 -1.109700e+02
+7 7371     1.530000e+02 -2.697998e+01
+12 7371     2.744500e+02 -7.202002e+01
+15 7371     2.734500e+02 -7.676001e+01
+0 7372     7.543700e+02 -1.792900e+02
+2 7372     7.616600e+02 -1.260100e+02
+7 7372     6.249100e+02 3.887000e+01
+9 7372     5.143500e+02 4.190002e+00
+10 7372     7.987200e+02 1.279999e+01
+0 7373     7.543700e+02 -1.792900e+02
+2 7373     7.616600e+02 -1.260100e+02
+7 7373     6.249100e+02 3.887000e+01
+9 7373     5.143500e+02 4.190002e+00
+0 7374     7.543700e+02 -1.792900e+02
+2 7374     7.616600e+02 -1.260100e+02
+7 7374     6.249100e+02 3.887000e+01
+9 7374     5.143500e+02 4.190002e+00
+10 7374     7.987200e+02 1.279999e+01
+12 7374     7.637500e+02 8.080017e+00
+0 7375     5.896997e+01 -1.819800e+02
+7 7375     7.359985e+00 -5.710999e+01
+0 7376     8.427500e+02 -1.838500e+02
+7 7376     7.079700e+02 5.291998e+01
+0 7377     -9.187000e+01 -1.846800e+02
+2 7377     1.067300e+02 -2.117700e+02
+4 7377     -3.907500e+02 -3.338600e+02
+6 7377     -8.035999e+01 -2.318300e+02
+7 7377     -1.473000e+02 -9.019000e+01
+12 7377     -7.991998e+01 -1.779700e+02
+15 7377     -1.329100e+02 -1.255100e+02
+0 7378     2.125400e+02 -1.846700e+02
+6 7378     2.590900e+02 -1.175700e+02
+0 7379     -4.280200e+02 -1.852400e+02
+7 7379     -5.187000e+02 -1.718400e+02
+15 7379     -5.817900e+02 -1.735800e+02
+0 7380     3.317600e+02 -1.880500e+02
+6 7380     3.751200e+02 -8.459998e+01
+12 7380     4.059500e+02 -5.188000e+01
+0 7381     8.434900e+02 -1.879300e+02
+3 7381     7.203400e+02 -3.768200e+02
+7 7381     7.094399e+02 4.957001e+01
+9 7381     5.885400e+02 4.235999e+01
+0 7382     3.330699e+02 -1.914800e+02
+3 7382     4.297100e+02 -3.940900e+02
+10 7382     3.100400e+02 -4.528003e+01
+15 7382     4.451200e+02 -7.885999e+01
+0 7383     3.330699e+02 -1.914800e+02
+6 7383     3.783000e+02 -8.759003e+01
+10 7383     3.100400e+02 -4.528003e+01
+12 7383     4.090100e+02 -5.475000e+01
+15 7383     4.451200e+02 -7.885999e+01
+0 7384     -8.221002e+01 -1.924400e+02
+2 7384     1.230600e+02 -2.155100e+02
+3 7384     4.741998e+01 -5.199700e+02
+6 7384     -6.297998e+01 -2.366600e+02
+7 7384     -1.359700e+02 -9.559003e+01
+8 7384     1.229000e+02 -2.240900e+02
+9 7384     7.059998e+00 -8.876001e+01
+12 7384     -6.345001e+01 -1.837400e+02
+15 7384     -1.189000e+02 -1.342700e+02
+0 7385     7.932200e+02 -1.940000e+02
+7 7385     6.634600e+02 3.323999e+01
+0 7386     -8.933002e+01 -1.945800e+02
+6 7386     -7.596002e+01 -2.451899e+02
+10 7386     -1.764400e+02 -9.394000e+01
+15 7386     -1.280000e+02 -1.382800e+02
+0 7387     -4.972998e+01 -1.954700e+02
+2 7387     1.767900e+02 -1.902800e+02
+3 7387     1.005800e+02 -4.921300e+02
+4 7387     -4.051300e+02 -3.704900e+02
+6 7387     -1.163000e+01 -2.198000e+02
+7 7387     -9.871002e+01 -9.042999e+01
+8 7387     1.650700e+02 -2.059000e+02
+12 7387     -1.534003e+01 -1.692300e+02
+0 7388     3.196500e+02 -1.961600e+02
+6 7388     3.685700e+02 -9.609003e+01
+10 7388     2.953500e+02 -5.207001e+01
+12 7388     3.972400e+02 -6.296002e+01
+15 7388     4.272900e+02 -8.694000e+01
+0 7389     3.605300e+02 -1.995400e+02
+7 7389     2.994200e+02 -2.265997e+01
+15 7389     4.842100e+02 -8.640002e+01
+0 7390     2.250000e+01 -2.000100e+02
+6 7390     7.494000e+01 -1.960300e+02
+7 7390     -2.492999e+01 -8.090997e+01
+10 7390     -4.628998e+01 -8.867999e+01
+12 7390     7.453998e+01 -1.493300e+02
+15 7390     2.127002e+01 -1.312200e+02
+0 7391     3.242600e+02 -2.013300e+02
+7 7391     2.654000e+02 -3.062000e+01
+10 7391     3.014399e+02 -5.701001e+01
+15 7391     4.344700e+02 -9.328003e+01
+0 7392     7.809100e+02 -2.029100e+02
+12 7392     7.998500e+02 -6.710022e+00
+0 7393     7.705500e+02 -2.032500e+02
+2 7393     7.860300e+02 -1.411600e+02
+0 7394     7.705500e+02 -2.032500e+02
+2 7394     7.860300e+02 -1.411600e+02
+12 7394     7.884000e+02 -1.144000e+01
+0 7395     6.508002e+01 -2.038900e+02
+7 7395     1.808002e+01 -7.617999e+01
+10 7395     3.130005e+00 -8.773999e+01
+15 7395     7.971002e+01 -1.302700e+02
+0 7396     7.870000e+02 -2.074100e+02
+3 7396     6.763900e+02 -4.310500e+02
+12 7396     8.085900e+02 -8.859985e+00
+0 7397     8.559000e+02 -2.092800e+02
+7 7397     7.235300e+02 3.196997e+01
+9 7397     6.040900e+02 3.051001e+01
+0 7398     1.169700e+02 -2.101000e+02
+7 7398     7.084998e+01 -7.309003e+01
+10 7398     6.396997e+01 -8.928998e+01
+15 7398     1.510100e+02 -1.317800e+02
+0 7399     2.622700e+02 -2.100800e+02
+7 7399     2.102700e+02 -4.816998e+01
+10 7399     2.318900e+02 -7.391998e+01
+15 7399     3.497800e+02 -1.133200e+02
+0 7400     1.082500e+02 -2.104500e+02
+4 7400     -4.467000e+02 -5.000601e+02
+7 7400     6.207001e+01 -7.475000e+01
+10 7400     5.371002e+01 -9.023999e+01
+13 7400     5.001000e+02 -3.955900e+02
+15 7400     1.389200e+02 -1.331900e+02
+0 7401     2.545699e+02 -2.117400e+02
+2 7401     4.835800e+02 -1.252900e+02
+3 7401     3.854100e+02 -4.208000e+02
+6 7401     3.159000e+02 -1.300800e+02
+8 7401     4.259301e+02 -1.553500e+02
+12 7401     3.369500e+02 -9.442999e+01
+13 7401     6.266899e+02 -3.859500e+02
+0 7402     8.628900e+02 -2.146700e+02
+7 7402     7.305100e+02 2.854999e+01
+9 7402     6.108300e+02 2.967999e+01
+0 7403     2.717400e+02 -2.149500e+02
+6 7403     3.349900e+02 -1.278300e+02
+7 7403     2.198700e+02 -5.159003e+01
+8 7403     4.405500e+02 -1.546800e+02
+10 7403     2.417500e+02 -7.896997e+01
+12 7403     3.570800e+02 -9.321002e+01
+13 7403     6.421899e+02 -3.874500e+02
+15 7403     3.628300e+02 -1.187600e+02
+0 7404     2.403003e+01 -2.158300e+02
+7 7404     -1.889001e+01 -9.471002e+01
+13 7404     4.287800e+02 -4.070200e+02
+0 7405     -1.739990e+00 -2.185200e+02
+2 7405     2.409301e+02 -1.980700e+02
+3 7405     1.624200e+02 -4.974200e+02
+6 7405     5.350000e+01 -2.265601e+02
+7 7405     -4.509998e+01 -1.040100e+02
+8 7405     2.183000e+02 -2.139400e+02
+10 7405     -7.137000e+01 -1.122800e+02
+12 7405     5.063000e+01 -1.795300e+02
+13 7405     4.021300e+02 -4.129000e+02
+15 7405     -8.500000e+00 -1.589300e+02
+0 7406     8.416998e+01 -2.191500e+02
+3 7406     2.508500e+02 -4.634000e+02
+4 7406     -4.486900e+02 -4.812600e+02
+6 7406     1.519600e+02 -1.928900e+02
+8 7406     2.977100e+02 -1.896800e+02
+12 7406     1.548000e+02 -1.499400e+02
+0 7407     6.202002e+01 -2.192700e+02
+2 7407     3.162700e+02 -1.712000e+02
+4 7407     -4.441600e+02 -4.635400e+02
+13 7407     4.636500e+02 -4.070300e+02
+15 7407     7.729999e+01 -1.510200e+02
+0 7408     1.240600e+02 -2.197200e+02
+7 7408     8.028998e+01 -8.096997e+01
+10 7408     7.308002e+01 -9.979999e+01
+15 7408     1.615100e+02 -1.440100e+02
+0 7409     1.240600e+02 -2.197200e+02
+3 7409     2.861100e+02 -4.543101e+02
+4 7409     -4.572800e+02 -5.147600e+02
+6 7409     1.923300e+02 -1.799000e+02
+12 7409     1.991600e+02 -1.390000e+02
+13 7409     5.169200e+02 -4.022800e+02
+0 7410     7.062000e+01 -2.296600e+02
+7 7410     2.994000e+01 -9.954999e+01
+13 7410     4.735300e+02 -4.150400e+02
+0 7411     -4.236600e+02 -2.313700e+02
+6 7411     -5.721100e+02 -4.847100e+02
+7 7411     -5.024600e+02 -2.166700e+02
+8 7411     -2.882900e+02 -4.250100e+02
+10 7411     -5.630400e+02 -1.741000e+02
+15 7411     -5.704700e+02 -2.355700e+02
+0 7412     1.712400e+02 -2.352300e+02
+7 7412     1.294000e+02 -8.741998e+01
+10 7412     1.296800e+02 -1.121900e+02
+13 7412     5.617400e+02 -4.118700e+02
+15 7412     2.275300e+02 -1.588300e+02
+0 7413     1.341300e+02 -2.364900e+02
+10 7413     8.584998e+01 -1.177200e+02
+13 7413     5.298700e+02 -4.158100e+02
+15 7413     1.778500e+02 -1.651700e+02
+0 7414     1.775300e+02 -2.396700e+02
+3 7414     3.415200e+02 -4.592700e+02
+6 7414     2.541200e+02 -1.838900e+02
+7 7414     1.355300e+02 -9.119000e+01
+10 7414     1.365000e+02 -1.169800e+02
+13 7414     5.664800e+02 -4.160000e+02
+15 7414     2.367100e+02 -1.641400e+02
+0 7415     2.096000e+02 -2.421300e+02
+7 7415     1.661000e+02 -8.853003e+01
+10 7415     1.735600e+02 -1.166100e+02
+15 7415     2.811700e+02 -1.635300e+02
+0 7416     -1.319000e+01 -2.422800e+02
+3 7416     1.483000e+02 -5.445500e+02
+6 7416     3.890997e+01 -2.652100e+02
+12 7416     3.783002e+01 -2.184400e+02
+15 7416     -1.959003e+01 -1.928700e+02
+0 7417     1.065002e+01 -2.442300e+02
+4 7417     -4.554100e+02 -4.148700e+02
+6 7417     6.859003e+01 -2.569600e+02
+7 7417     -3.078003e+01 -1.294000e+02
+8 7417     2.293400e+02 -2.425000e+02
+9 7417     1.162400e+02 -9.802002e+01
+13 7417     4.120900e+02 -4.374000e+02
+0 7418     1.639900e+02 -2.470800e+02
+2 7418     4.194900e+02 -1.799300e+02
+4 7418     -4.889100e+02 -5.485800e+02
+6 7418     2.412400e+02 -1.978300e+02
+7 7418     1.229500e+02 -1.015600e+02
+9 7418     2.484100e+02 -4.673999e+01
+10 7418     1.220100e+02 -1.270300e+02
+12 7418     2.515100e+02 -1.600100e+02
+15 7418     2.201801e+02 -1.762800e+02
+0 7419     8.402500e+02 -2.479400e+02
+3 7419     7.424800e+02 -4.400900e+02
+0 7420     1.385300e+02 -2.477500e+02
+4 7420     -4.837300e+02 -5.266600e+02
+0 7421     -9.838000e+01 -2.497300e+02
+2 7421     9.544000e+01 -3.196400e+02
+7 7421     -1.480700e+02 -1.610800e+02
+8 7421     1.009700e+02 -3.055000e+02
+9 7421     -1.165997e+01 -1.772800e+02
+10 7421     -1.804900e+02 -1.581000e+02
+13 7421     2.949100e+02 -4.596700e+02
+15 7421     -1.312800e+02 -2.143100e+02
+0 7422     -1.322700e+02 -2.511600e+02
+7 7422     -1.860200e+02 -1.717800e+02
+15 7422     -1.750800e+02 -2.208700e+02
+0 7423     4.859985e+00 -2.510700e+02
+2 7423     2.444200e+02 -2.484800e+02
+3 7423     1.675200e+02 -5.480300e+02
+6 7423     5.946997e+01 -2.688101e+02
+8 7423     2.209500e+02 -2.537100e+02
+9 7423     1.099800e+02 -1.102100e+02
+10 7423     -6.058002e+01 -1.485200e+02
+12 7423     5.928998e+01 -2.232500e+02
+15 7423     6.950012e+00 -2.024400e+02
+0 7424     7.438400e+02 -2.688700e+02
+7 7424     6.340400e+02 -4.354999e+01
+0 7425     1.703998e+01 -2.898300e+02
+3 7425     1.823300e+02 -6.071600e+02
+7 7425     -2.115002e+01 -1.763900e+02
+9 7425     1.221900e+02 -1.579200e+02
+10 7425     -4.278003e+01 -1.915900e+02
+15 7425     2.871997e+01 -2.531500e+02
+0 7426     -3.164100e+02 -2.963500e+02
+7 7426     -3.736800e+02 -2.588300e+02
+10 7426     -4.280100e+02 -2.365700e+02
+0 7427     6.131700e+02 -3.002800e+02
+2 7427     7.264301e+02 -2.437400e+02
+15 7427     8.562900e+02 -1.931300e+02
+0 7428     3.245699e+02 -3.011300e+02
+7 7428     2.723900e+02 -1.352200e+02
+10 7428     3.124100e+02 -1.715700e+02
+15 7428     4.516400e+02 -2.294400e+02
+0 7429     3.245699e+02 -3.011300e+02
+7 7429     2.723900e+02 -1.352200e+02
+0 7430     2.644399e+02 -3.083400e+02
+10 7430     2.424500e+02 -1.860700e+02
+13 7430     6.310699e+02 -4.831200e+02
+15 7430     3.676200e+02 -2.465900e+02
+0 7431     2.605500e+02 -3.129600e+02
+3 7431     4.003300e+02 -5.717500e+02
+7 7431     2.170300e+02 -1.559000e+02
+9 7431     3.078900e+02 -1.245800e+02
+10 7431     2.393900e+02 -1.916500e+02
+13 7431     6.284000e+02 -4.877100e+02
+15 7431     3.637100e+02 -2.533300e+02
+0 7432     8.036300e+02 -3.150900e+02
+7 7432     6.953199e+02 -7.438000e+01
+0 7433     5.259900e+02 -3.263500e+02
+6 7433     5.532100e+02 -2.117900e+02
+7 7433     4.537700e+02 -1.312500e+02
+0 7434     5.175900e+02 -3.342900e+02
+7 7434     4.490800e+02 -1.396300e+02
+0 7435     1.641899e+02 -3.349200e+02
+7 7435     1.303800e+02 -1.936900e+02
+0 7436     1.689800e+02 -3.378400e+02
+7 7436     1.344600e+02 -1.965300e+02
+0 7437     1.843400e+02 -3.419300e+02
+7 7437     1.493000e+02 -1.983900e+02
+9 7437     2.644399e+02 -1.698500e+02
+10 7437     1.548500e+02 -2.330200e+02
+15 7437     2.631500e+02 -3.020700e+02
+0 7438     3.520601e+02 -3.488900e+02
+9 7438     3.774500e+02 -1.441000e+02
+10 7438     3.482700e+02 -2.222600e+02
+0 7439     1.873700e+02 -3.495800e+02
+9 7439     2.666000e+02 -1.780700e+02
+0 7440     7.425000e+02 -3.532100e+02
+7 7440     6.515300e+02 -1.183800e+02
+0 7441     8.426001e+01 -3.570500e+02
+7 7441     5.639001e+01 -2.310500e+02
+10 7441     4.190997e+01 -2.611000e+02
+15 7441     1.290100e+02 -3.352200e+02
+0 7442     7.182500e+02 -3.670000e+02
+7 7442     6.336100e+02 -1.348100e+02
+0 7443     8.716899e+02 -3.734000e+02
+7 7443     7.638400e+02 -1.139300e+02
+0 7444     7.159399e+02 -3.740900e+02
+7 7444     6.331700e+02 -1.413400e+02
+0 7445     7.159399e+02 -3.740900e+02
+7 7445     6.331700e+02 -1.413400e+02
+12 7445     8.174600e+02 -1.871200e+02
+0 7446     4.859700e+02 -3.779700e+02
+6 7446     5.453500e+02 -2.739600e+02
+0 7447     7.812900e+02 -3.815300e+02
+7 7447     6.908600e+02 -1.365300e+02
+0 7448     7.998600e+02 -3.822000e+02
+7 7448     7.067500e+02 -1.340600e+02
+0 7449     7.342100e+02 -3.834500e+02
+7 7449     6.511100e+02 -1.466800e+02
+0 7450     6.911000e+02 -3.854300e+02
+7 7450     6.145300e+02 -1.554800e+02
+0 7451     -3.974500e+02 -3.921700e+02
+7 7451     -4.350400e+02 -3.697600e+02
+10 7451     -5.129100e+02 -3.582700e+02
+15 7451     -5.152900e+02 -4.495900e+02
+0 7452     7.659200e+02 -3.954700e+02
+7 7452     6.809000e+02 -1.516400e+02
+0 7453     -3.949800e+02 -3.968500e+02
+6 7453     -4.089300e+02 -6.559100e+02
+7 7453     -4.304200e+02 -3.740800e+02
+15 7453     -5.118800e+02 -4.558000e+02
+0 7454     7.145900e+02 -3.981600e+02
+7 7454     6.373900e+02 -1.627800e+02
+0 7455     3.116700e+02 -4.027800e+02
+7 7455     2.766100e+02 -2.378100e+02
+0 7456     -1.458002e+01 -4.049400e+02
+7 7456     -3.587000e+01 -3.006100e+02
+15 7456     2.780029e+00 -4.128700e+02
+0 7457     7.115699e+02 -4.064000e+02
+7 7457     6.366500e+02 -1.707200e+02
+0 7458     4.879301e+02 -4.136900e+02
+6 7458     5.680601e+02 -3.072300e+02
+0 7459     1.453003e+01 -4.172300e+02
+7 7459     -5.690002e+00 -3.063200e+02
+0 7460     6.930200e+02 -4.181100e+02
+7 7460     6.229399e+02 -1.839700e+02
+0 7461     1.348900e+02 -4.240100e+02
+7 7461     1.161200e+02 -2.889900e+02
+0 7462     1.547800e+02 -4.331100e+02
+9 7462     2.758101e+02 -2.646400e+02
+0 7463     -2.034600e+02 -4.375200e+02
+4 7463     -5.701000e+02 -2.247200e+02
+6 7463     -1.409900e+02 -6.054301e+02
+7 7463     -2.215200e+02 -3.724400e+02
+9 7463     -3.763000e+01 -4.071400e+02
+10 7463     -2.806400e+02 -3.855100e+02
+15 7463     -2.470700e+02 -4.812700e+02
+0 7464     6.346200e+02 -4.373900e+02
+7 7464     5.769600e+02 -2.120200e+02
+0 7465     6.157100e+02 -4.396600e+02
+7 7465     5.609900e+02 -2.174300e+02
+10 7465     6.604700e+02 -2.996300e+02
+12 7465     7.535000e+02 -2.785300e+02
+0 7466     8.495601e+02 -4.418500e+02
+7 7466     7.600100e+02 -1.776700e+02
+0 7467     6.257900e+02 -4.430100e+02
+10 7467     6.719399e+02 -3.025900e+02
+12 7467     7.641100e+02 -2.787100e+02
+0 7468     7.667800e+02 -4.439301e+02
+7 7468     6.920100e+02 -1.943400e+02
+0 7469     4.168300e+02 -4.523101e+02
+6 7469     5.230200e+02 -3.689100e+02
+0 7470     4.168300e+02 -4.523101e+02
+2 7470     6.738000e+02 -3.995900e+02
+6 7470     5.230200e+02 -3.689100e+02
+0 7471     -1.954000e+02 -4.595900e+02
+2 7471     7.085999e+01 -6.120000e+02
+6 7471     -1.161100e+02 -6.252500e+02
+9 7471     -1.403998e+01 -4.199500e+02
+15 7471     -2.339400e+02 -5.117100e+02
+0 7472     -2.800400e+02 -4.605300e+02
+6 7472     -2.177600e+02 -6.669600e+02
+0 7473     -2.035700e+02 -4.645699e+02
+4 7473     -5.931900e+02 -2.244500e+02
+7 7473     -2.148600e+02 -3.993100e+02
+9 7473     -1.840997e+01 -4.263000e+02
+0 7474     -1.432200e+02 -4.752600e+02
+6 7474     -4.491998e+01 -6.167400e+02
+0 7475     -1.236200e+02 -4.800300e+02
+7 7475     -1.297600e+02 -3.972900e+02
+0 7476     5.532600e+02 -4.909200e+02
+10 7476     5.937200e+02 -3.647200e+02
+12 7476     7.169000e+02 -3.474400e+02
+15 7476     7.944500e+02 -4.617600e+02
+0 7477     7.132600e+02 -4.918101e+02
+7 7477     6.568400e+02 -2.467400e+02
+0 7478     8.009399e+02 -4.928700e+02
+7 7478     7.305100e+02 -2.311800e+02
+0 7479     7.012000e+02 -4.950800e+02
+7 7479     6.471600e+02 -2.512000e+02
+10 7479     7.636100e+02 -3.542000e+02
+0 7480     5.067900e+02 -4.970900e+02
+2 7480     7.818700e+02 -4.057000e+02
+12 7480     6.734600e+02 -3.681200e+02
+0 7481     8.572600e+02 -4.997500e+02
+7 7481     7.782500e+02 -2.269000e+02
+0 7482     -1.142900e+02 -5.007800e+02
+2 7482     1.966100e+02 -6.162100e+02
+4 7482     -6.466700e+02 -2.941400e+02
+9 7482     8.992999e+01 -4.156500e+02
+0 7483     7.398800e+02 -5.035300e+02
+7 7483     6.819500e+02 -2.515000e+02
+0 7484     7.398800e+02 -5.035300e+02
+7 7484     6.819500e+02 -2.515000e+02
+0 7485     -2.422300e+02 -5.052700e+02
+9 7485     -2.470001e+01 -4.694399e+02
+0 7486     -5.990002e+01 -5.090100e+02
+7 7486     -5.867999e+01 -4.119000e+02
+15 7486     -4.470001e+01 -5.599900e+02
+0 7487     -1.674600e+02 -5.184500e+02
+7 7487     -1.641900e+02 -4.443800e+02
+0 7488     5.283700e+02 -5.220100e+02
+10 7488     5.677200e+02 -4.020500e+02
+12 7488     7.068500e+02 -3.862500e+02
+0 7489     7.619399e+02 -5.257700e+02
+7 7489     7.049301e+02 -2.666100e+02
+0 7490     -3.227300e+02 -5.279399e+02
+7 7490     -3.216800e+02 -4.874800e+02
+0 7491     -1.066900e+02 -5.285400e+02
+4 7491     -6.738900e+02 -3.005600e+02
+6 7491     3.272998e+01 -6.557600e+02
+7 7491     -1.005000e+02 -4.406600e+02
+0 7492     -3.180500e+02 -5.299301e+02
+6 7492     -2.146300e+02 -7.617400e+02
+7 7492     -3.164200e+02 -4.882900e+02
+0 7493     -2.757100e+02 -5.309301e+02
+7 7493     -2.725500e+02 -4.797100e+02
+10 7493     -3.543100e+02 -5.036400e+02
+0 7494     -7.996997e+01 -5.318500e+02
+7 7494     -7.365997e+01 -4.381300e+02
+0 7495     4.013900e+02 -5.319000e+02
+6 7495     5.561899e+02 -4.492100e+02
+0 7496     -1.205700e+02 -5.401100e+02
+6 7496     2.484998e+01 -6.748600e+02
+0 7497     4.541998e+01 -5.445300e+02
+2 7497     4.012300e+02 -5.931500e+02
+7 7497     5.427002e+01 -4.241200e+02
+12 7497     1.997000e+02 -5.728000e+02
+0 7498     7.453600e+02 -5.447800e+02
+7 7498     6.953600e+02 -2.868600e+02
+0 7499     4.937000e+01 -5.462000e+02
+7 7499     5.747998e+01 -4.245800e+02
+0 7500     5.870699e+02 -5.479000e+02
+12 7500     7.794000e+02 -3.935400e+02
+0 7501     7.406000e+01 -5.483800e+02
+6 7501     2.409200e+02 -5.958000e+02
+10 7501     4.938000e+01 -4.800300e+02
+0 7502     1.373000e+02 -5.511500e+02
+7 7502     1.447500e+02 -4.111500e+02
+10 7502     1.233000e+02 -4.772400e+02
+0 7503     -3.413000e+01 -5.520200e+02
+7 7503     -2.233002e+01 -4.479000e+02
+9 7503     1.952500e+02 -4.183200e+02
+0 7504     1.538800e+02 -5.522000e+02
+2 7504     5.126200e+02 -5.596500e+02
+6 7504     3.253700e+02 -5.657900e+02
+0 7505     2.105500e+02 -5.536500e+02
+7 7505     2.154200e+02 -3.988000e+02
+0 7506     6.407800e+02 -5.545699e+02
+7 7506     6.080200e+02 -3.150900e+02
+0 7507     4.852002e+01 -5.554800e+02
+7 7507     6.050000e+01 -4.338800e+02
+0 7508     1.312600e+02 -5.561600e+02
+7 7508     1.397000e+02 -4.175200e+02
+10 7508     1.168100e+02 -4.837900e+02
+0 7509     -1.692999e+01 -5.575500e+02
+7 7509     -3.710022e+00 -4.496100e+02
+10 7509     -5.234998e+01 -5.022400e+02
+0 7510     -1.692999e+01 -5.575500e+02
+4 7510     -7.258100e+02 -3.761500e+02
+7 7510     -3.710022e+00 -4.496100e+02
+9 7510     2.133199e+02 -4.155300e+02
+10 7510     -5.234998e+01 -5.022400e+02
+0 7511     2.410900e+02 -5.579200e+02
+6 7511     4.165000e+02 -5.363500e+02
+7 7511     2.457000e+02 -3.968300e+02
+10 7511     2.422600e+02 -4.736500e+02
+0 7512     2.410900e+02 -5.579200e+02
+6 7512     4.165000e+02 -5.363500e+02
+7 7512     2.457000e+02 -3.968300e+02
+9 7512     4.083900e+02 -3.283500e+02
+10 7512     2.422600e+02 -4.736500e+02
+0 7513     7.184600e+02 -5.589200e+02
+7 7513     6.754800e+02 -3.036000e+02
+0 7514     1.979399e+02 -5.594600e+02
+2 7514     5.602900e+02 -5.501100e+02
+4 7514     -7.908900e+02 -5.691300e+02
+6 7514     3.741300e+02 -5.553400e+02
+7 7514     2.049301e+02 -4.068300e+02
+9 7514     3.787300e+02 -3.434700e+02
+10 7514     1.934800e+02 -4.799700e+02
+0 7515     8.059003e+01 -5.616500e+02
+7 7515     9.260999e+01 -4.323101e+02
+10 7515     5.926001e+01 -4.957700e+02
+12 7515     2.479700e+02 -5.783700e+02
+0 7516     1.846400e+02 -5.623101e+02
+7 7516     1.929000e+02 -4.122100e+02
+10 7516     1.786100e+02 -4.847600e+02
+0 7517     1.732400e+02 -5.636801e+02
+6 7517     3.513400e+02 -5.698800e+02
+0 7518     3.871002e+01 -5.650200e+02
+6 7518     2.144700e+02 -6.277000e+02
+7 7518     5.226001e+01 -4.447700e+02
+9 7518     2.629399e+02 -3.999100e+02
+0 7519     7.638000e+02 -5.677700e+02
+7 7519     7.153900e+02 -3.033000e+02
+0 7520     -5.201001e+01 -5.681801e+02
+7 7520     -3.622998e+01 -4.673000e+02
+10 7520     -9.197998e+01 -5.185300e+02
+0 7521     -5.201001e+01 -5.681801e+02
+7 7521     -3.622998e+01 -4.673000e+02
+10 7521     -9.197998e+01 -5.185300e+02
+0 7522     5.211500e+02 -5.684399e+02
+7 7522     5.060699e+02 -3.510100e+02
+0 7523     6.596500e+02 -5.736200e+02
+7 7523     6.284200e+02 -3.282400e+02
+0 7524     5.393400e+02 -5.774800e+02
+7 7524     5.243400e+02 -3.553100e+02
+0 7525     7.526899e+02 -5.781300e+02
+7 7525     7.082900e+02 -3.144000e+02
+0 7526     7.526899e+02 -5.781300e+02
+7 7526     7.082900e+02 -3.144000e+02
+0 7527     -5.946997e+01 -5.809800e+02
+7 7527     -4.035999e+01 -4.812400e+02
+0 7528     -5.946997e+01 -5.809800e+02
+4 7528     -7.360400e+02 -3.411200e+02
+7 7528     -4.035999e+01 -4.812400e+02
+0 7529     -4.220001e+01 -5.812800e+02
+4 7529     -7.412300e+02 -3.555600e+02
+7 7529     -2.315997e+01 -4.774600e+02
+9 7529     2.094500e+02 -4.403300e+02
+10 7529     -7.917999e+01 -5.323199e+02
+0 7530     -4.220001e+01 -5.812800e+02
+7 7530     -2.315997e+01 -4.774600e+02
+10 7530     -7.917999e+01 -5.323199e+02
+0 7531     6.854900e+02 -5.824800e+02
+7 7531     6.523700e+02 -3.311000e+02
+10 7531     7.535400e+02 -4.553400e+02
+0 7532     4.379200e+02 -5.833101e+02
+7 7532     4.344399e+02 -3.805100e+02
+10 7532     4.694399e+02 -4.815699e+02
+0 7533     7.415200e+02 -5.838400e+02
+7 7533     7.002200e+02 -3.217100e+02
+0 7534     9.138000e+01 -5.845699e+02
+7 7534     1.086100e+02 -4.524000e+02
+0 7535     -4.365002e+01 -5.849200e+02
+4 7535     -7.445500e+02 -3.547300e+02
+7 7535     -2.369000e+01 -4.813900e+02
+9 7535     2.109301e+02 -4.431200e+02
+10 7535     -8.045001e+01 -5.366200e+02
+0 7536     3.749301e+02 5.866700e+02
+2 7536     2.469000e+01 3.563600e+02
+11 7536     4.766400e+02 -1.713100e+02
+13 7536     4.824100e+02 2.664500e+02
+14 7536     6.706400e+02 -1.293900e+02
+0 7537     -5.551500e+02 5.843800e+02
+5 7537     -1.203700e+02 -6.346002e+01
+11 7537     -3.251000e+02 -2.007300e+02
+13 7537     -2.421700e+02 2.151100e+02
+14 7537     -2.047300e+02 -1.598800e+02
+0 7538     9.420001e+01 5.843900e+02
+5 7538     4.979399e+02 -6.091998e+01
+6 7538     -3.906200e+02 6.475900e+02
+8 7538     -9.573999e+01 2.742400e+02
+12 7538     -2.188200e+02 6.183200e+02
+13 7538     2.624700e+02 2.459000e+02
+14 7538     4.022200e+02 -1.469000e+02
+0 7539     9.420001e+01 5.843900e+02
+5 7539     4.979399e+02 -6.091998e+01
+6 7539     -3.906200e+02 6.475900e+02
+8 7539     -9.573999e+01 2.742400e+02
+11 7539     2.263300e+02 -1.891000e+02
+12 7539     -2.188200e+02 6.183200e+02
+13 7539     2.624700e+02 2.459000e+02
+14 7539     4.022200e+02 -1.469000e+02
+0 7540     4.216200e+02 5.833900e+02
+2 7540     6.375000e+01 3.529800e+02
+3 7540     -8.453998e+01 1.803998e+01
+5 7540     8.221600e+02 -4.934998e+01
+8 7540     1.336900e+02 2.785100e+02
+9 7540     -1.009600e+02 3.827800e+02
+11 7540     5.203900e+02 -1.712100e+02
+13 7540     5.201400e+02 2.669700e+02
+14 7540     7.170000e+02 -1.297800e+02
+0 7541     8.516998e+01 5.829600e+02
+3 7541     -3.526700e+02 1.922998e+01
+5 7541     4.902200e+02 -6.160999e+01
+6 7541     -3.997300e+02 6.451300e+02
+8 7541     -1.018300e+02 2.729500e+02
+9 7541     -3.427100e+02 3.745200e+02
+11 7541     2.185700e+02 -1.901900e+02
+12 7541     -2.278900e+02 6.166400e+02
+14 7541     3.936400e+02 -1.484100e+02
+0 7542     -4.516900e+02 5.812100e+02
+2 7542     -7.417400e+02 3.627600e+02
+5 7542     -2.357001e+01 -6.579999e+01
+0 7543     2.894500e+02 5.801500e+02
+2 7543     -4.492999e+01 3.464900e+02
+3 7543     -1.867200e+02 1.203998e+01
+4 7543     4.478003e+01 -5.531000e+02
+6 7543     -1.820400e+02 6.774400e+02
+8 7543     4.356000e+01 2.714500e+02
+9 7543     -1.927500e+02 3.740300e+02
+11 7543     4.008300e+02 -1.822800e+02
+13 7543     4.150900e+02 2.531200e+02
+14 7543     5.884600e+02 -1.424400e+02
+0 7544     6.296002e+01 5.794200e+02
+2 7544     -2.402100e+02 3.494200e+02
+3 7544     -3.718700e+02 1.571997e+01
+4 7544     5.715002e+01 -4.046800e+02
+5 7544     4.677700e+02 -6.600000e+01
+8 7544     -1.186800e+02 2.692400e+02
+12 7544     -2.511800e+02 6.093600e+02
+14 7544     3.730100e+02 -1.526000e+02
+0 7545     -7.678100e+02 5.745000e+02
+5 7545     -4.583300e+02 -7.941998e+01
+11 7545     -4.774400e+02 -2.061300e+02
+0 7546     1.550000e+01 5.720400e+02
+12 7546     -3.002500e+02 5.948400e+02
+14 7546     3.281000e+02 -1.624300e+02
+0 7547     5.658300e+02 5.717000e+02
+6 7547     2.270600e+02 7.480100e+02
+8 7547     3.252400e+02 3.624700e+02
+9 7547     1.182900e+02 4.918300e+02
+11 7547     6.339500e+02 -1.745400e+02
+0 7548     3.845100e+02 5.703700e+02
+2 7548     3.479999e+01 3.398200e+02
+3 7548     -1.118900e+02 4.690002e+00
+5 7548     7.846300e+02 -6.445001e+01
+6 7548     -8.294000e+01 6.860500e+02
+8 7548     1.093800e+02 2.674400e+02
+9 7548     -1.251400e+02 3.701500e+02
+11 7548     4.885100e+02 -1.844200e+02
+13 7548     4.911100e+02 2.537000e+02
+14 7548     6.818199e+02 -1.449800e+02
+0 7549     -3.304500e+02 5.701200e+02
+8 7549     -4.259100e+02 2.567100e+02
+11 7549     -1.413800e+02 -2.135500e+02
+12 7549     -6.871600e+02 5.473600e+02
+13 7549     -6.790997e+01 2.128500e+02
+14 7549     2.929993e+00 -1.718900e+02
+0 7550     4.673101e+02 5.693400e+02
+8 7550     1.654700e+02 2.680900e+02
+9 7550     -6.810999e+01 3.716700e+02
+0 7551     1.654600e+02 5.659000e+02
+4 7551     4.335999e+01 -4.692900e+02
+5 7551     5.673500e+02 -7.679999e+01
+6 7551     -3.096000e+02 6.388100e+02
+8 7551     -4.248999e+01 2.598700e+02
+9 7551     -2.800300e+02 3.597500e+02
+11 7551     2.910200e+02 -2.010200e+02
+0 7552     4.466500e+02 5.663400e+02
+3 7552     -6.337000e+01 9.699707e-01
+13 7552     5.409500e+02 2.546400e+02
+0 7553     5.636500e+02 5.640600e+02
+3 7553     1.674100e+02 1.262100e+02
+6 7553     2.267800e+02 7.389400e+02
+13 7553     7.004200e+02 2.710200e+02
+0 7554     -2.665997e+01 5.635700e+02
+5 7554     3.810000e+02 -8.326001e+01
+8 7554     -1.845700e+02 2.547700e+02
+11 7554     1.211000e+02 -2.102000e+02
+12 7554     -3.440600e+02 5.806700e+02
+0 7555     -2.665997e+01 5.635700e+02
+2 7555     -3.204700e+02 3.309800e+02
+3 7555     -4.487600e+02 -1.270020e+00
+8 7555     -1.845700e+02 2.547700e+02
+12 7555     -3.440600e+02 5.806700e+02
+0 7556     -3.516998e+01 5.625200e+02
+2 7556     -3.281400e+02 3.313000e+02
+5 7556     3.728800e+02 -8.458002e+01
+6 7556     -5.300700e+02 5.968700e+02
+8 7556     -1.904600e+02 2.541000e+02
+0 7557     4.261400e+02 5.620000e+02
+2 7557     7.016998e+01 3.306000e+02
+9 7557     -9.483002e+01 3.636900e+02
+13 7557     5.245400e+02 2.492000e+02
+14 7557     7.229900e+02 -1.516200e+02
+0 7558     4.654399e+02 5.612600e+02
+14 7558     7.623900e+02 -1.488500e+02
+0 7559     -3.553100e+02 5.609200e+02
+2 7559     -6.404300e+02 3.346100e+02
+4 7559     7.208002e+01 -1.659100e+02
+5 7559     6.525000e+01 -8.725000e+01
+8 7559     -4.467900e+02 2.498100e+02
+11 7559     -1.620100e+02 -2.186300e+02
+12 7559     -7.158500e+02 5.353500e+02
+13 7559     -8.767999e+01 2.043200e+02
+0 7560     5.795100e+02 5.563700e+02
+2 7560     3.309000e+02 4.598500e+02
+13 7560     7.161700e+02 2.662400e+02
+0 7561     4.195900e+02 5.538000e+02
+9 7561     -9.790997e+01 3.561000e+02
+11 7561     5.227500e+02 -1.965400e+02
+13 7561     5.203101e+02 2.422000e+02
+14 7561     7.183000e+02 -1.597700e+02
+0 7562     2.530100e+02 5.521800e+02
+2 7562     -7.208002e+01 3.197700e+02
+4 7562     3.038000e+01 -5.264301e+02
+5 7562     6.539800e+02 -8.863000e+01
+8 7562     2.103998e+01 2.499100e+02
+9 7562     -2.149000e+02 3.490200e+02
+11 7562     3.710400e+02 -2.080500e+02
+12 7562     -4.882001e+01 6.025900e+02
+13 7562     3.877900e+02 2.293100e+02
+14 7562     5.555800e+02 -1.708300e+02
+0 7563     4.134100e+02 5.526300e+02
+9 7563     -1.019200e+02 3.550900e+02
+11 7563     5.177900e+02 -1.976700e+02
+13 7563     5.152200e+02 2.407500e+02
+14 7563     7.122700e+02 -1.611700e+02
+0 7564     5.984600e+02 5.526000e+02
+2 7564     3.505699e+02 4.643400e+02
+3 7564     2.040800e+02 1.293900e+02
+6 7564     2.708500e+02 7.371600e+02
+8 7564     3.558900e+02 3.581300e+02
+9 7564     1.507600e+02 4.884100e+02
+11 7564     6.667200e+02 -1.887300e+02
+13 7564     7.339700e+02 2.662500e+02
+0 7565     4.069301e+02 5.508800e+02
+5 7565     8.095300e+02 -8.378998e+01
+6 7565     -5.509003e+01 6.662400e+02
+8 7565     1.281000e+02 2.512800e+02
+9 7565     -1.060300e+02 3.531200e+02
+11 7565     5.116000e+02 -1.997200e+02
+12 7565     1.063200e+02 6.199900e+02
+13 7565     5.102900e+02 2.389600e+02
+14 7565     7.060800e+02 -1.633200e+02
+0 7566     -4.520600e+02 5.499900e+02
+13 7566     -1.624000e+02 1.914100e+02
+14 7566     -1.111900e+02 -1.927600e+02
+0 7567     7.322998e+01 5.498800e+02
+2 7567     -2.277600e+02 3.174800e+02
+5 7567     4.780400e+02 -9.564001e+01
+11 7567     2.103000e+02 -2.179000e+02
+0 7568     6.052300e+02 5.500000e+02
+3 7568     2.127100e+02 1.282300e+02
+6 7568     2.818000e+02 7.343400e+02
+8 7568     3.633000e+02 3.565900e+02
+9 7568     1.582800e+02 4.884100e+02
+11 7568     6.729100e+02 -1.903300e+02
+0 7569     2.234600e+02 5.491300e+02
+5 7569     6.250500e+02 -9.248999e+01
+13 7569     3.646899e+02 2.255100e+02
+14 7569     5.271400e+02 -1.750100e+02
+0 7570     5.146600e+02 5.489000e+02
+2 7570     2.624700e+02 4.318600e+02
+3 7570     1.188600e+02 9.717999e+01
+6 7570     1.669600e+02 7.102800e+02
+8 7570     2.835000e+02 3.329700e+02
+9 7570     7.478998e+01 4.578900e+02
+11 7570     5.939800e+02 -1.967100e+02
+13 7570     6.546700e+02 2.542500e+02
+0 7571     6.412500e+02 5.482000e+02
+2 7571     4.417000e+02 5.161900e+02
+3 7571     2.937100e+02 1.787200e+02
+6 7571     3.673000e+02 7.494700e+02
+8 7571     4.264800e+02 3.963200e+02
+9 7571     2.315699e+02 5.358300e+02
+11 7571     6.978400e+02 -1.908700e+02
+13 7571     7.976899e+02 2.696100e+02
+0 7572     2.549500e+02 5.435000e+02
+4 7572     2.565997e+01 -5.275000e+02
+5 7572     6.564301e+02 -9.704999e+01
+11 7572     3.737900e+02 -2.152500e+02
+0 7573     4.056100e+02 5.428200e+02
+11 7573     5.110800e+02 -2.063800e+02
+14 7573     7.052500e+02 -1.716200e+02
+0 7574     -6.458000e+02 5.401400e+02
+4 7574     7.779999e+01 -1.388000e+01
+5 7574     -2.264200e+02 -1.063200e+02
+14 7574     -3.085600e+02 -2.048900e+02
+0 7575     6.436600e+02 5.403200e+02
+2 7575     4.463400e+02 5.107000e+02
+3 7575     2.986500e+02 1.734400e+02
+6 7575     3.721200e+02 7.418600e+02
+8 7575     4.305000e+02 3.918100e+02
+9 7575     2.353700e+02 5.309400e+02
+11 7575     7.015400e+02 -1.972200e+02
+13 7575     8.014301e+02 2.639900e+02
+0 7576     5.539001e+01 5.372200e+02
+2 7576     -2.430100e+02 3.032400e+02
+6 7576     -4.238600e+02 5.820300e+02
+9 7576     -3.597800e+02 3.301300e+02
+0 7577     6.645800e+02 5.339900e+02
+6 7577     3.987300e+02 7.395000e+02
+0 7578     -3.219100e+02 5.331000e+02
+2 7578     -6.059900e+02 3.012500e+02
+5 7578     9.447998e+01 -1.155600e+02
+8 7578     -4.187000e+02 2.239400e+02
+11 7578     -1.348000e+02 -2.408800e+02
+12 7578     -6.713800e+02 5.054300e+02
+0 7579     -1.833700e+02 5.308800e+02
+13 7579     4.703003e+01 1.872800e+02
+0 7580     -1.833700e+02 5.308800e+02
+4 7580     4.501001e+01 -2.567900e+02
+5 7580     2.287700e+02 -1.176300e+02
+7 7580     -4.118800e+02 5.824700e+02
+8 7580     -3.038500e+02 2.243500e+02
+11 7580     -1.406000e+01 -2.407000e+02
+12 7580     -5.104900e+02 5.222700e+02
+13 7580     4.703003e+01 1.872800e+02
+0 7581     -1.010800e+02 5.311900e+02
+4 7581     3.935999e+01 -3.029200e+02
+0 7582     -1.100700e+02 5.291800e+02
+8 7582     -2.470900e+02 2.227000e+02
+0 7583     4.388700e+02 5.240400e+02
+2 7583     8.419000e+01 2.901100e+02
+0 7584     -4.469200e+02 5.232500e+02
+2 7584     -7.373000e+02 2.931200e+02
+4 7584     5.872998e+01 -1.146700e+02
+7 7584     -6.842700e+02 5.479900e+02
+11 7584     -2.407000e+02 -2.485700e+02
+12 7584     -8.203500e+02 4.779800e+02
+13 7584     -1.601300e+02 1.700500e+02
+0 7585     7.156300e+02 5.167400e+02
+6 7585     4.628199e+02 7.333600e+02
+8 7585     4.955601e+02 3.929000e+02
+11 7585     7.710699e+02 -2.138500e+02
+0 7586     5.634900e+02 5.163900e+02
+2 7586     3.236600e+02 4.198900e+02
+9 7586     1.282900e+02 4.490200e+02
+13 7586     7.051700e+02 2.329900e+02
+0 7587     1.662800e+02 5.156000e+02
+11 7587     2.956000e+02 -2.441200e+02
+14 7587     4.735699e+02 -2.129500e+02
+0 7588     -1.571997e+01 5.130100e+02
+5 7588     3.898199e+02 -1.354600e+02
+6 7588     -4.993100e+02 5.363400e+02
+7 7588     -2.440600e+02 5.799200e+02
+11 7588     1.319400e+02 -2.531300e+02
+12 7588     -3.236800e+02 5.224800e+02
+0 7589     -6.972400e+02 5.115600e+02
+4 7589     5.927002e+01 2.998999e+01
+5 7589     -3.454800e+02 -1.375600e+02
+11 7589     -4.374300e+02 -2.559500e+02
+13 7589     -4.185800e+02 1.391300e+02
+14 7589     -4.230300e+02 -2.388100e+02
+0 7590     -2.172998e+01 5.083900e+02
+2 7590     -3.123600e+02 2.698600e+02
+4 7590     2.132001e+01 -3.473400e+02
+6 7590     -5.052200e+02 5.278700e+02
+8 7590     -1.777800e+02 2.054000e+02
+9 7590     -4.179900e+02 2.981500e+02
+11 7590     1.273400e+02 -2.574900e+02
+0 7591     -2.172998e+01 5.083900e+02
+2 7591     -3.123600e+02 2.698600e+02
+8 7591     -1.777800e+02 2.054000e+02
+9 7591     -4.179900e+02 2.981500e+02
+0 7592     -8.727002e+01 5.054900e+02
+2 7592     -3.731300e+02 2.659000e+02
+3 7592     -5.014700e+02 -6.484003e+01
+0 7593     -1.732001e+01 5.051800e+02
+2 7593     -3.077800e+02 2.673500e+02
+4 7593     1.912000e+01 -3.499100e+02
+6 7593     -4.997600e+02 5.253400e+02
+7 7593     -2.444600e+02 5.717700e+02
+8 7593     -1.739000e+02 2.028200e+02
+9 7593     -4.139300e+02 2.953500e+02
+12 7593     -3.241100e+02 5.135100e+02
+0 7594     -3.423400e+02 5.041300e+02
+5 7594     7.187000e+01 -1.459900e+02
+8 7594     -4.348000e+02 1.961400e+02
+11 7594     -1.532200e+02 -2.653400e+02
+0 7595     5.894500e+02 5.020800e+02
+2 7595     3.550000e+02 4.159700e+02
+3 7595     2.100699e+02 8.342999e+01
+6 7595     2.750300e+02 6.765100e+02
+8 7595     3.594500e+02 3.177800e+02
+13 7595     7.316400e+02 2.241500e+02
+0 7596     4.153700e+02 4.998700e+02
+12 7596     1.199400e+02 5.573100e+02
+0 7597     4.694000e+01 4.991400e+02
+6 7597     -4.272700e+02 5.292700e+02
+8 7597     -1.250200e+02 1.980900e+02
+12 7597     -2.542900e+02 5.138100e+02
+0 7598     7.117900e+02 4.979900e+02
+2 7598     5.264500e+02 4.964600e+02
+6 7598     4.620300e+02 7.130500e+02
+9 7598     3.018000e+02 5.201400e+02
+0 7599     -6.022998e+01 4.966600e+02
+7 7599     -2.856900e+02 5.583800e+02
+11 7599     9.304999e+01 -2.685800e+02
+0 7600     6.777002e+01 4.961700e+02
+2 7600     -2.288200e+02 2.560700e+02
+3 7600     -3.623600e+02 -7.600000e+01
+4 7600     8.090027e+00 -4.010100e+02
+5 7600     4.709600e+02 -1.525100e+02
+6 7600     -4.030900e+02 5.302200e+02
+7 7600     -1.605700e+02 5.709500e+02
+8 7600     -1.085000e+02 1.958100e+02
+9 7600     -3.457200e+02 2.888100e+02
+11 7600     2.082800e+02 -2.645700e+02
+12 7600     -2.311300e+02 5.131300e+02
+13 7600     2.435100e+02 1.705200e+02
+14 7600     3.789100e+02 -2.373000e+02
+0 7601     7.663199e+02 4.931800e+02
+2 7601     5.803300e+02 5.103100e+02
+3 7601     4.240400e+02 1.751200e+02
+6 7601     5.263101e+02 7.208000e+02
+8 7601     5.411801e+02 3.899800e+02
+9 7601     3.492200e+02 5.336700e+02
+0 7602     4.917999e+01 4.920200e+02
+4 7602     6.940002e+00 -3.892300e+02
+6 7602     -4.228000e+02 5.208500e+02
+7 7602     -1.781200e+02 5.647900e+02
+9 7602     -3.596500e+02 2.838600e+02
+11 7602     1.913400e+02 -2.694900e+02
+12 7602     -2.504100e+02 5.061600e+02
+0 7603     6.000300e+02 4.921300e+02
+2 7603     3.690000e+02 4.104900e+02
+3 7603     2.228400e+02 7.845001e+01
+6 7603     2.903000e+02 6.687100e+02
+8 7603     3.704800e+02 3.136400e+02
+9 7603     1.678800e+02 4.422900e+02
+13 7603     7.433600e+02 2.170500e+02
+0 7604     -4.927002e+01 4.908900e+02
+2 7604     -3.367100e+02 2.500000e+02
+4 7604     1.217999e+01 -3.295300e+02
+5 7604     3.558700e+02 -1.595500e+02
+6 7604     -5.328400e+02 4.990800e+02
+7 7604     -2.741200e+02 5.537200e+02
+8 7604     -1.971000e+02 1.873400e+02
+12 7604     -3.556600e+02 4.890200e+02
+13 7604     1.513199e+02 1.598300e+02
+14 7604     2.659500e+02 -2.465100e+02
+0 7605     -4.927002e+01 4.908900e+02
+2 7605     -3.367100e+02 2.500000e+02
+4 7605     1.217999e+01 -3.295300e+02
+5 7605     3.558700e+02 -1.595500e+02
+6 7605     -5.328400e+02 4.990800e+02
+7 7605     -2.741200e+02 5.537200e+02
+11 7605     1.034700e+02 -2.732600e+02
+12 7605     -3.556600e+02 4.890200e+02
+13 7605     1.513199e+02 1.598300e+02
+14 7605     2.659500e+02 -2.465100e+02
+0 7606     6.611899e+02 4.883900e+02
+3 7606     3.292500e+02 1.377800e+02
+6 7606     4.058300e+02 6.902800e+02
+9 7606     2.625500e+02 4.977200e+02
+0 7607     7.696700e+02 4.879200e+02
+2 7607     5.839500e+02 5.068500e+02
+3 7607     4.277800e+02 1.716800e+02
+6 7607     5.306300e+02 7.161900e+02
+8 7607     5.449500e+02 3.866800e+02
+9 7607     3.523101e+02 5.303600e+02
+0 7608     7.108700e+02 4.876600e+02
+2 7608     5.268199e+02 4.871300e+02
+3 7608     3.752700e+02 1.534700e+02
+6 7608     4.637800e+02 7.013900e+02
+8 7608     4.976801e+02 3.711200e+02
+9 7608     3.039800e+02 5.122300e+02
+13 7608     8.714700e+02 2.289300e+02
+0 7609     2.085400e+02 4.865000e+02
+7 7609     -2.427002e+01 5.763100e+02
+8 7609     -3.789978e+00 1.917500e+02
+11 7609     3.370699e+02 -2.671600e+02
+14 7609     5.166300e+02 -2.405200e+02
+0 7610     2.796700e+02 4.858900e+02
+14 7610     5.869100e+02 -2.382600e+02
+0 7611     7.839500e+02 4.843700e+02
+6 7611     5.471000e+02 7.151600e+02
+8 7611     5.569100e+02 3.873000e+02
+9 7611     3.645400e+02 5.319900e+02
+0 7612     1.183002e+01 4.838900e+02
+4 7612     4.330017e+00 -3.653800e+02
+5 7612     4.153900e+02 -1.667900e+02
+6 7612     -4.632700e+02 5.019000e+02
+7 7612     -2.135700e+02 5.522600e+02
+8 7612     -1.500200e+02 1.832800e+02
+9 7612     -3.882900e+02 2.740400e+02
+11 7612     1.578100e+02 -2.775300e+02
+12 7612     -2.890600e+02 4.897600e+02
+13 7612     1.995900e+02 1.570300e+02
+0 7613     -3.790997e+01 4.827600e+02
+4 7613     7.239990e+00 -3.357800e+02
+6 7613     -5.185400e+02 4.906500e+02
+7 7613     -2.616700e+02 5.458600e+02
+11 7613     1.139400e+02 -2.797100e+02
+12 7613     -3.423700e+02 4.810900e+02
+0 7614     3.669000e+02 4.830000e+02
+2 7614     3.385999e+01 2.467500e+02
+9 7614     -1.227700e+02 2.892600e+02
+11 7614     4.836700e+02 -2.611600e+02
+14 7614     6.741500e+02 -2.360700e+02
+0 7615     7.738101e+02 4.830400e+02
+2 7615     5.887700e+02 5.032300e+02
+3 7615     4.321700e+02 1.688300e+02
+6 7615     5.360100e+02 7.118500e+02
+8 7615     5.492600e+02 3.838700e+02
+9 7615     3.563900e+02 5.275700e+02
+0 7616     8.051300e+02 4.825900e+02
+3 7616     4.622600e+02 1.810000e+02
+6 7616     5.734900e+02 7.196500e+02
+8 7616     5.768000e+02 3.940900e+02
+9 7616     3.858500e+02 5.390100e+02
+0 7617     7.922200e+02 4.801700e+02
+2 7617     6.087400e+02 5.071900e+02
+3 7617     4.505699e+02 1.726800e+02
+6 7617     5.591200e+02 7.122800e+02
+8 7617     5.660500e+02 3.863600e+02
+9 7617     3.733600e+02 5.310800e+02
+0 7618     8.096100e+02 4.793000e+02
+2 7618     6.266600e+02 5.149800e+02
+3 7618     4.669000e+02 1.797200e+02
+0 7619     8.096100e+02 4.793000e+02
+2 7619     6.266600e+02 5.149800e+02
+3 7619     4.669000e+02 1.797200e+02
+0 7620     7.497500e+02 4.778700e+02
+3 7620     4.125900e+02 1.574900e+02
+0 7621     8.026801e+02 4.728100e+02
+2 7621     6.193000e+02 5.048300e+02
+3 7621     4.606100e+02 1.705300e+02
+6 7621     5.713500e+02 7.090400e+02
+8 7621     5.747800e+02 3.851300e+02
+9 7621     3.820699e+02 5.296400e+02
+0 7622     5.621600e+02 4.719000e+02
+2 7622     3.320100e+02 3.775600e+02
+6 7622     2.478600e+02 6.364200e+02
+13 7622     7.077200e+02 1.960800e+02
+0 7623     8.077600e+02 4.721100e+02
+2 7623     6.244200e+02 5.058600e+02
+3 7623     4.656100e+02 1.715300e+02
+6 7623     5.772000e+02 7.086100e+02
+8 7623     5.794600e+02 3.854200e+02
+9 7623     3.868000e+02 5.303900e+02
+0 7624     -4.282500e+02 4.692300e+02
+2 7624     -7.185300e+02 2.245500e+02
+4 7624     2.812000e+01 -1.177900e+02
+5 7624     -1.590997e+01 -1.805600e+02
+7 7624     -6.566600e+02 4.904800e+02
+8 7624     -5.090700e+02 1.616600e+02
+12 7624     -7.882100e+02 4.110400e+02
+0 7625     8.322100e+02 4.688500e+02
+3 7625     4.887100e+02 1.785300e+02
+0 7626     3.283900e+02 4.677800e+02
+3 7626     -1.417200e+02 -1.035700e+02
+5 7626     7.332900e+02 -1.754500e+02
+6 7626     -1.192600e+02 5.482100e+02
+7 7626     8.988000e+01 5.683900e+02
+8 7626     8.339001e+01 1.783800e+02
+9 7626     -1.482700e+02 2.728000e+02
+11 7626     4.490900e+02 -2.773700e+02
+12 7626     4.423999e+01 5.172000e+02
+13 7626     4.513700e+02 1.627300e+02
+14 7626     6.362700e+02 -2.545700e+02
+0 7627     7.575200e+02 4.665200e+02
+3 7627     4.229600e+02 1.511300e+02
+6 7627     5.223000e+02 6.906500e+02
+0 7628     8.393900e+02 4.653700e+02
+2 7628     6.578900e+02 5.126000e+02
+3 7628     4.958199e+02 1.779400e+02
+0 7629     7.674100e+02 4.650700e+02
+9 7629     3.550601e+02 5.128900e+02
+0 7630     8.251200e+02 4.646500e+02
+2 7630     6.427800e+02 5.048900e+02
+3 7630     4.818300e+02 1.711000e+02
+8 7630     5.949301e+02 3.840700e+02
+9 7630     4.021700e+02 5.293700e+02
+0 7631     6.357600e+02 4.641200e+02
+3 7631     3.110300e+02 1.094600e+02
+6 7631     3.805600e+02 6.580600e+02
+11 7631     7.097200e+02 -2.637500e+02
+0 7632     8.359500e+02 4.621700e+02
+2 7632     6.540000e+02 5.076000e+02
+3 7632     4.920900e+02 1.736000e+02
+9 7632     4.104900e+02 5.320600e+02
+0 7633     -5.563800e+02 4.613300e+02
+5 7633     -1.407900e+02 -1.863600e+02
+7 7633     -7.926700e+02 4.680900e+02
+11 7633     -3.365400e+02 -2.998200e+02
+13 7633     -2.501800e+02 1.131100e+02
+14 7633     -2.232700e+02 -2.827600e+02
+0 7634     7.760000e+02 4.561600e+02
+3 7634     4.413101e+02 1.493900e+02
+6 7634     5.438800e+02 6.846900e+02
+0 7635     5.146200e+02 4.552600e+02
+12 7635     3.003900e+02 5.917300e+02
+0 7636     8.235500e+02 4.549900e+02
+2 7636     6.423500e+02 4.960400e+02
+8 7636     5.941600e+02 3.772400e+02
+9 7636     4.016801e+02 5.220100e+02
+0 7637     5.067000e+02 4.550300e+02
+2 7637     2.755900e+02 3.422800e+02
+3 7637     1.337800e+02 1.204999e+01
+6 7637     1.814600e+02 6.019300e+02
+8 7637     2.943800e+02 2.596500e+02
+9 7637     8.882001e+01 3.805400e+02
+12 7637     2.913300e+02 5.884000e+02
+13 7637     6.566400e+02 1.765600e+02
+0 7638     5.067000e+02 4.550300e+02
+6 7638     1.814600e+02 6.019300e+02
+13 7638     6.566400e+02 1.765600e+02
+0 7639     5.067000e+02 4.550300e+02
+2 7639     2.755900e+02 3.422800e+02
+3 7639     1.337800e+02 1.204999e+01
+8 7639     2.943800e+02 2.596500e+02
+9 7639     8.882001e+01 3.805400e+02
+12 7639     2.913300e+02 5.884000e+02
+13 7639     6.566400e+02 1.765600e+02
+0 7640     -6.754300e+02 4.519100e+02
+5 7640     -3.334300e+02 -1.995700e+02
+0 7641     8.625400e+02 4.509000e+02
+3 7641     5.171899e+02 1.728000e+02
+0 7642     9.400024e+00 4.490800e+02
+2 7642     -2.785300e+02 1.987700e+02
+3 7642     -4.113700e+02 -1.327300e+02
+4 7642     -1.596002e+01 -3.611600e+02
+5 7642     4.119500e+02 -2.042900e+02
+9 7642     -3.854900e+02 2.367800e+02
+12 7642     -2.853000e+02 4.472700e+02
+13 7642     1.980100e+02 1.268800e+02
+0 7643     -3.024600e+02 4.478400e+02
+2 7643     -5.848600e+02 1.986200e+02
+7 7643     -5.227100e+02 4.818200e+02
+11 7643     -1.202400e+02 -3.125800e+02
+12 7643     -6.343200e+02 4.028900e+02
+0 7644     8.592500e+02 4.477400e+02
+2 7644     6.786899e+02 5.017900e+02
+3 7644     5.151400e+02 1.684300e+02
+9 7644     4.309700e+02 5.280300e+02
+0 7645     8.679200e+02 4.482100e+02
+2 7645     6.866200e+02 5.053900e+02
+3 7645     5.213300e+02 1.718300e+02
+0 7646     -3.152300e+02 4.447300e+02
+5 7646     9.334998e+01 -2.083000e+02
+12 7646     -6.468500e+02 3.971000e+02
+0 7647     5.311600e+02 4.444500e+02
+6 7647     2.149100e+02 5.950400e+02
+11 7647     6.265300e+02 -2.886900e+02
+12 7647     3.220699e+02 5.835200e+02
+0 7648     8.491500e+02 4.424900e+02
+2 7648     6.693300e+02 4.935700e+02
+0 7649     8.789301e+02 4.393000e+02
+2 7649     6.982400e+02 5.012000e+02
+3 7649     5.323700e+02 1.681200e+02
+9 7649     4.479500e+02 5.274200e+02
+0 7650     4.848000e+02 4.383100e+02
+2 7650     2.536300e+02 3.174600e+02
+3 7650     1.132200e+02 -1.228003e+01
+0 7651     6.210022e+00 4.377900e+02
+2 7651     -2.792300e+02 1.893500e+02
+4 7651     -2.157001e+01 -3.590300e+02
+6 7651     -4.596400e+02 4.421400e+02
+0 7652     6.901899e+02 4.369100e+02
+3 7652     3.701200e+02 1.065400e+02
+6 7652     4.519301e+02 6.431500e+02
+8 7652     4.895601e+02 3.296400e+02
+9 7652     2.986500e+02 4.688200e+02
+11 7652     7.670900e+02 -2.862100e+02
+0 7653     -3.972000e+02 4.340500e+02
+4 7653     7.320007e+00 -1.306200e+02
+7 7653     -6.185900e+02 4.571900e+02
+8 7653     -4.803400e+02 1.291000e+02
+11 7653     -2.031500e+02 -3.237600e+02
+0 7654     5.063700e+02 4.338400e+02
+6 7654     1.866500e+02 5.773000e+02
+7 7654     2.887800e+02 5.753100e+02
+8 7654     2.966100e+02 2.434200e+02
+9 7654     9.345001e+01 3.634400e+02
+11 7654     6.074399e+02 -2.996500e+02
+12 7654     2.961100e+02 5.657200e+02
+13 7654     6.587100e+02 1.591500e+02
+0 7655     5.063700e+02 4.338400e+02
+2 7655     2.800699e+02 3.219100e+02
+3 7655     1.386600e+02 -7.169983e+00
+6 7655     1.866500e+02 5.773000e+02
+7 7655     2.887800e+02 5.753100e+02
+8 7655     2.966100e+02 2.434200e+02
+9 7655     9.345001e+01 3.634400e+02
+11 7655     6.074399e+02 -2.996500e+02
+12 7655     2.961100e+02 5.657200e+02
+13 7655     6.587100e+02 1.591500e+02
+0 7656     -1.053900e+02 4.330800e+02
+2 7656     -3.854500e+02 1.807000e+02
+3 7656     -5.158700e+02 -1.499700e+02
+4 7656     -1.613000e+01 -2.921300e+02
+8 7656     -2.368700e+02 1.344300e+02
+11 7656     5.363000e+01 -3.252900e+02
+12 7656     -4.067400e+02 4.145400e+02
+13 7656     1.076000e+02 1.075000e+02
+14 7656     2.113500e+02 -3.082100e+02
+0 7657     -1.407800e+02 4.326900e+02
+5 7657     2.622600e+02 -2.226500e+02
+7 7657     -3.569400e+02 4.827900e+02
+0 7658     5.117100e+02 4.305900e+02
+6 7658     1.935100e+02 5.748700e+02
+7 7658     2.940100e+02 5.728900e+02
+12 7658     3.025100e+02 5.634100e+02
+13 7658     6.637300e+02 1.569300e+02
+0 7659     6.260200e+02 4.304500e+02
+6 7659     3.777800e+02 6.191400e+02
+0 7660     6.260200e+02 4.304500e+02
+6 7660     3.777800e+02 6.191400e+02
+8 7660     4.369500e+02 3.070400e+02
+9 7660     2.446700e+02 4.427200e+02
+11 7660     7.092100e+02 -2.958000e+02
+0 7661     -2.103300e+02 4.291300e+02
+2 7661     -4.893500e+02 1.744100e+02
+7 7661     -4.260700e+02 4.716300e+02
+11 7661     -3.926001e+01 -3.295000e+02
+0 7662     4.749600e+02 4.284900e+02
+2 7662     2.453700e+02 3.040700e+02
+3 7662     1.049600e+02 -2.507001e+01
+6 7662     1.458800e+02 5.627400e+02
+7 7662     2.577800e+02 5.646900e+02
+8 7662     2.702700e+02 2.290900e+02
+9 7662     6.371997e+01 3.474200e+02
+13 7662     6.276200e+02 1.509000e+02
+14 7662     8.586300e+02 -2.754800e+02
+0 7663     5.365300e+02 4.279900e+02
+7 7663     3.193700e+02 5.747400e+02
+9 7663     1.235800e+02 3.692500e+02
+11 7663     6.347600e+02 -3.022600e+02
+0 7664     6.286200e+02 4.268400e+02
+2 7664     4.593800e+02 4.056000e+02
+3 7664     3.139900e+02 7.642999e+01
+8 7664     4.403000e+02 3.045900e+02
+9 7664     2.481100e+02 4.408000e+02
+11 7664     7.121899e+02 -2.990400e+02
+12 7664     4.663300e+02 6.207400e+02
+13 7664     8.003800e+02 1.712600e+02
+0 7665     -2.249000e+02 4.260200e+02
+2 7665     -5.042000e+02 1.702600e+02
+5 7665     1.790200e+02 -2.284700e+02
+7 7665     -4.403800e+02 4.673200e+02
+8 7665     -3.339300e+02 1.239300e+02
+11 7665     -5.213000e+01 -3.314800e+02
+12 7665     -5.411200e+02 3.880400e+02
+13 7665     1.248999e+01 9.545999e+01
+0 7666     6.238800e+02 4.233600e+02
+6 7666     3.757700e+02 6.113300e+02
+0 7667     1.966100e+02 4.227700e+02
+2 7667     -1.048300e+02 1.737700e+02
+3 7667     -2.446700e+02 -1.579500e+02
+7 7667     -2.778998e+01 5.091900e+02
+11 7667     3.315000e+02 -3.248800e+02
+0 7668     6.357300e+02 4.208800e+02
+2 7668     4.679800e+02 4.032900e+02
+3 7668     3.223900e+02 7.427002e+01
+6 7668     3.913400e+02 6.115100e+02
+8 7668     4.471899e+02 3.024900e+02
+9 7668     2.555100e+02 4.388200e+02
+11 7668     7.202200e+02 -3.039100e+02
+12 7668     4.754800e+02 6.180400e+02
+13 7668     8.079500e+02 1.674600e+02
+0 7669     7.035601e+02 4.200800e+02
+6 7669     4.718700e+02 6.298700e+02
+9 7669     3.143600e+02 4.610600e+02
+0 7670     6.692700e+02 4.178500e+02
+2 7670     5.042000e+02 4.126700e+02
+3 7670     3.562800e+02 8.441998e+01
+6 7670     4.326200e+02 6.181000e+02
+8 7670     4.765900e+02 3.100400e+02
+9 7670     2.858700e+02 4.481700e+02
+0 7671     1.030500e+02 4.150000e+02
+2 7671     -1.890100e+02 1.628700e+02
+7 7671     -1.164800e+02 4.915500e+02
+0 7672     -4.865700e+02 4.095600e+02
+5 7672     -8.095001e+01 -2.421200e+02
+8 7672     -5.611500e+02 1.017100e+02
+10 7672     -7.286000e+02 5.868800e+02
+0 7673     -4.948800e+02 4.077200e+02
+5 7673     -8.909998e+01 -2.436100e+02
+8 7673     -5.677200e+02 9.976001e+01
+13 7673     -2.036700e+02 6.942999e+01
+14 7673     -1.713300e+02 -3.382700e+02
+0 7674     6.809600e+02 4.072700e+02
+3 7674     3.696801e+02 7.934998e+01
+6 7674     4.488600e+02 6.095900e+02
+7 7674     4.764700e+02 5.872600e+02
+8 7674     4.881400e+02 3.053700e+02
+0 7675     -3.266300e+02 4.056200e+02
+5 7675     7.625000e+01 -2.496600e+02
+10 7675     -5.265800e+02 5.957800e+02
+0 7676     8.710601e+02 4.042900e+02
+3 7676     5.362700e+02 1.399900e+02
+0 7677     -5.387800e+02 3.989800e+02
+4 7677     -6.300049e-01 -5.346997e+01
+0 7678     5.238600e+02 3.963900e+02
+2 7678     3.092500e+02 2.929100e+02
+3 7678     1.674800e+02 -3.440002e+01
+7 7678     3.110300e+02 5.417500e+02
+8 7678     3.209200e+02 2.192200e+02
+9 7678     1.192500e+02 3.392400e+02
+11 7678     6.291500e+02 -3.324200e+02
+12 7678     3.253400e+02 5.306700e+02
+13 7678     6.794301e+02 1.297400e+02
+0 7679     1.941998e+01 3.940300e+02
+2 7679     -2.641800e+02 1.365500e+02
+4 7679     -4.978003e+01 -3.629900e+02
+6 7679     -4.372600e+02 3.867200e+02
+7 7679     -1.944000e+02 4.609000e+02
+9 7679     -3.704300e+02 1.828800e+02
+10 7679     -1.120300e+02 6.104900e+02
+11 7679     1.696400e+02 -3.569400e+02
+13 7679     2.064000e+02 7.978000e+01
+0 7680     -2.596000e+02 3.922800e+02
+2 7680     -5.378300e+02 1.290500e+02
+4 7680     -2.745001e+01 -2.005200e+02
+5 7680     1.420400e+02 -2.652600e+02
+11 7680     -8.353003e+01 -3.619000e+02
+12 7680     -5.747200e+02 3.405300e+02
+13 7680     -1.559998e+01 6.490002e+01
+14 7680     5.808002e+01 -3.551100e+02
+0 7681     5.290400e+02 3.925200e+02
+3 7681     1.737200e+02 -3.576001e+01
+7 7681     3.167300e+02 5.389100e+02
+8 7681     3.260800e+02 2.175100e+02
+11 7681     6.341600e+02 -3.356400e+02
+0 7682     7.749399e+02 3.926100e+02
+2 7682     6.140800e+02 4.278800e+02
+7 7682     5.688000e+02 5.881100e+02
+9 7682     3.784301e+02 4.633200e+02
+0 7683     7.947900e+02 3.917100e+02
+2 7683     6.332200e+02 4.337100e+02
+6 7683     5.815900e+02 6.239400e+02
+9 7683     3.949399e+02 4.690900e+02
+0 7684     -5.629800e+02 3.885400e+02
+4 7684     -4.869995e+00 -3.937000e+01
+5 7684     -1.588400e+02 -2.633300e+02
+10 7684     -8.217700e+02 5.544200e+02
+11 7684     -3.487800e+02 -3.616500e+02
+0 7685     -5.629800e+02 3.885400e+02
+4 7685     -4.869995e+00 -3.937000e+01
+5 7685     -1.588400e+02 -2.633300e+02
+10 7685     -8.217700e+02 5.544200e+02
+0 7686     6.728300e+02 3.877800e+02
+6 7686     4.439301e+02 5.864300e+02
+7 7686     4.712400e+02 5.672700e+02
+8 7686     4.850900e+02 2.885000e+02
+11 7686     7.629800e+02 -3.329200e+02
+0 7687     3.317999e+01 3.868000e+02
+2 7687     -2.501300e+02 1.272200e+02
+5 7687     4.336899e+02 -2.715500e+02
+6 7687     -4.202700e+02 3.808700e+02
+7 7687     -1.802200e+02 4.551700e+02
+10 7687     -9.527002e+01 6.040700e+02
+11 7687     1.825000e+02 -3.625000e+02
+12 7687     -2.482500e+02 3.788000e+02
+13 7687     2.174800e+02 7.407001e+01
+14 7687     3.462900e+02 -3.556600e+02
+0 7688     4.308199e+02 3.867300e+02
+12 7688     1.792500e+02 4.553900e+02
+13 7688     5.542500e+02 1.038600e+02
+14 7688     7.684600e+02 -3.319200e+02
+0 7689     -6.978998e+01 3.836600e+02
+11 7689     8.773999e+01 -3.688600e+02
+12 7689     -3.557300e+02 3.705200e+02
+0 7690     1.003998e+01 3.830600e+02
+2 7690     -2.715300e+02 1.229300e+02
+6 7690     -4.455700e+02 3.704800e+02
+7 7690     -2.019700e+02 4.486000e+02
+11 7690     1.616100e+02 -3.672100e+02
+13 7690     1.993800e+02 7.026001e+01
+0 7691     5.421200e+02 3.833000e+02
+2 7691     3.336200e+02 2.877100e+02
+3 7691     1.912500e+02 -3.866998e+01
+6 7691     2.461400e+02 5.306300e+02
+7 7691     3.311300e+02 5.322000e+02
+8 7691     3.403400e+02 2.143400e+02
+9 7691     1.394600e+02 3.359700e+02
+11 7691     6.488000e+02 -3.436000e+02
+13 7691     6.993000e+02 1.208100e+02
+0 7692     -5.346100e+02 3.821800e+02
+5 7692     -1.321400e+02 -2.699100e+02
+13 7692     -2.370000e+02 4.542999e+01
+0 7693     -5.346100e+02 3.821800e+02
+5 7693     -1.321400e+02 -2.699100e+02
+11 7693     -3.260900e+02 -3.671000e+02
+13 7693     -2.370000e+02 4.542999e+01
+14 7693     -2.143600e+02 -3.657200e+02
+0 7694     -7.136500e+02 3.815100e+02
+13 7694     -4.489000e+02 2.598999e+01
+0 7695     3.038000e+01 3.812700e+02
+5 7695     4.307700e+02 -2.773500e+02
+7 7695     -1.823300e+02 4.489200e+02
+11 7695     1.802900e+02 -3.683300e+02
+13 7695     2.153199e+02 6.945001e+01
+14 7695     3.435000e+02 -3.612200e+02
+0 7696     -2.047600e+02 3.808100e+02
+2 7696     -4.815600e+02 1.150400e+02
+4 7696     -3.833002e+01 -2.299300e+02
+7 7696     -4.140900e+02 4.218000e+02
+10 7696     -3.782100e+02 5.746600e+02
+13 7696     2.823999e+01 5.751001e+01
+14 7696     1.114600e+02 -3.667200e+02
+0 7697     5.490601e+02 3.795600e+02
+2 7697     3.416100e+02 2.870200e+02
+3 7697     1.988600e+02 -3.917999e+01
+7 7697     3.385000e+02 5.295600e+02
+8 7697     3.468100e+02 2.134300e+02
+9 7697     1.473000e+02 3.354300e+02
+11 7697     6.555800e+02 -3.465900e+02
+12 7697     3.589800e+02 5.212000e+02
+13 7697     7.060699e+02 1.185700e+02
+0 7698     6.627400e+02 3.796600e+02
+6 7698     4.337200e+02 5.748400e+02
+8 7698     4.785100e+02 2.792000e+02
+9 7698     2.892200e+02 4.167000e+02
+0 7699     4.744900e+02 3.788100e+02
+7 7699     2.637000e+02 5.161400e+02
+11 7699     5.863800e+02 -3.506600e+02
+0 7700     6.110400e+02 3.783200e+02
+2 7700     4.539399e+02 3.550600e+02
+3 7700     3.091500e+02 2.872998e+01
+6 7700     3.718200e+02 5.583400e+02
+7 7700     4.115300e+02 5.475700e+02
+8 7700     4.341300e+02 2.633300e+02
+9 7700     2.433800e+02 3.973400e+02
+12 7700     4.572100e+02 5.643200e+02
+13 7700     7.894600e+02 1.296100e+02
+0 7701     6.110400e+02 3.783200e+02
+2 7701     4.539399e+02 3.550600e+02
+3 7701     3.091500e+02 2.872998e+01
+6 7701     3.718200e+02 5.583400e+02
+7 7701     4.115300e+02 5.475700e+02
+8 7701     4.341300e+02 2.633300e+02
+9 7701     2.433800e+02 3.973400e+02
+11 7701     7.062600e+02 -3.451100e+02
+12 7701     4.572100e+02 5.643200e+02
+13 7701     7.894600e+02 1.296100e+02
+0 7702     5.259100e+02 3.768000e+02
+2 7702     3.160000e+02 2.711500e+02
+6 7702     2.256900e+02 5.151300e+02
+8 7702     3.262200e+02 2.013900e+02
+12 7702     3.322900e+02 5.065500e+02
+0 7703     1.787000e+01 3.753900e+02
+7 7703     -1.934200e+02 4.419200e+02
+9 7703     -3.690000e+02 1.633900e+02
+10 7703     -1.121100e+02 5.891400e+02
+11 7703     1.695100e+02 -3.734500e+02
+13 7703     2.055400e+02 6.360999e+01
+14 7703     3.312500e+02 -3.684800e+02
+0 7704     5.557400e+02 3.745500e+02
+2 7704     3.501801e+02 2.849500e+02
+7 7704     3.457800e+02 5.258600e+02
+8 7704     3.532600e+02 2.118900e+02
+9 7704     1.548101e+02 3.338000e+02
+11 7704     6.626300e+02 -3.508800e+02
+12 7704     3.671600e+02 5.187100e+02
+13 7704     7.128600e+02 1.154000e+02
+0 7705     3.117999e+01 3.723800e+02
+2 7705     -2.513800e+02 1.109300e+02
+7 7705     -1.804700e+02 4.399800e+02
+8 7705     -1.271000e+02 8.075000e+01
+10 7705     -9.619000e+01 5.862700e+02
+11 7705     1.814500e+02 -3.762600e+02
+12 7705     -2.479000e+02 3.613600e+02
+13 7705     2.157500e+02 6.189001e+01
+14 7705     3.440699e+02 -3.707800e+02
+0 7706     1.000000e+00 3.715200e+02
+2 7706     -2.795800e+02 1.081300e+02
+7 7706     -2.096600e+02 4.356500e+02
+9 7706     -3.824600e+02 1.580100e+02
+10 7706     -1.320200e+02 5.820600e+02
+11 7706     1.539500e+02 -3.777400e+02
+13 7706     1.919000e+02 5.938000e+01
+14 7706     3.139800e+02 -3.727600e+02
+0 7707     6.825300e+02 3.711000e+02
+2 7707     5.297800e+02 3.761600e+02
+9 7707     3.082300e+02 4.177400e+02
+13 7707     8.598400e+02 1.323000e+02
+0 7708     7.213600e+02 3.694800e+02
+3 7708     4.190200e+02 6.177002e+01
+7 7708     5.204900e+02 5.590100e+02
+9 7708     3.411100e+02 4.301800e+02
+12 7708     5.910400e+02 5.858900e+02
+0 7709     7.848199e+02 3.671900e+02
+2 7709     6.304800e+02 4.092700e+02
+9 7709     3.930800e+02 4.486000e+02
+12 7709     6.562000e+02 6.101700e+02
+0 7710     7.848199e+02 3.671900e+02
+2 7710     6.304800e+02 4.092700e+02
+9 7710     3.930800e+02 4.486000e+02
+0 7711     4.010010e+00 3.661200e+02
+2 7711     -2.759500e+02 1.024000e+02
+4 7711     -6.485999e+01 -3.508400e+02
+6 7711     -4.491800e+02 3.468400e+02
+7 7711     -2.059100e+02 4.307200e+02
+9 7711     -3.791400e+02 1.529600e+02
+10 7711     -1.272100e+02 5.763300e+02
+11 7711     1.565800e+02 -3.829100e+02
+12 7711     -2.759700e+02 3.495500e+02
+13 7711     1.947900e+02 5.501001e+01
+14 7711     3.175699e+02 -3.783700e+02
+0 7712     -2.122900e+02 3.634200e+02
+4 7712     -4.785999e+01 -2.236300e+02
+7 7712     -4.191700e+02 4.027500e+02
+11 7712     -4.184998e+01 -3.875800e+02
+0 7713     -2.015200e+02 3.631100e+02
+2 7713     -4.770300e+02 9.310999e+01
+7 7713     -4.082500e+02 4.038000e+02
+8 7713     -3.117900e+02 6.406000e+01
+10 7713     -3.714500e+02 5.525300e+02
+13 7713     3.041998e+01 4.213000e+01
+0 7714     -2.015200e+02 3.631100e+02
+7 7714     -4.082500e+02 4.038000e+02
+8 7714     -3.117900e+02 6.406000e+01
+10 7714     -3.714500e+02 5.525300e+02
+0 7715     -7.061300e+02 3.586600e+02
+5 7715     -3.842100e+02 -2.971500e+02
+13 7715     -4.374400e+02 7.390015e+00
+14 7715     -4.631300e+02 -3.987200e+02
+0 7716     -3.971400e+02 3.590800e+02
+2 7716     -6.835600e+02 8.428998e+01
+7 7716     -6.078700e+02 3.763000e+02
+10 7716     -6.091700e+02 5.311200e+02
+13 7716     -1.269600e+02 3.054999e+01
+14 7716     -8.064001e+01 -3.913300e+02
+15 7716     -6.175700e+02 5.771300e+02
+0 7717     -1.626900e+02 3.575600e+02
+2 7717     -4.389700e+02 8.664001e+01
+7 7717     -3.687100e+02 4.026300e+02
+11 7717     3.530029e+00 -3.927700e+02
+14 7717     1.513400e+02 -3.917100e+02
+0 7718     -1.626900e+02 3.575600e+02
+2 7718     -4.389700e+02 8.664001e+01
+5 7718     2.349900e+02 -3.040600e+02
+14 7718     1.513400e+02 -3.917100e+02
+0 7719     -3.451400e+02 3.563700e+02
+2 7719     -6.262200e+02 8.208002e+01
+5 7719     5.278998e+01 -3.025900e+02
+7 7719     -5.534500e+02 3.797000e+02
+8 7719     -4.338300e+02 5.195999e+01
+10 7719     -5.455000e+02 5.320200e+02
+11 7719     -1.612800e+02 -3.931900e+02
+12 7719     -6.683800e+02 2.819700e+02
+15 7719     -5.437700e+02 5.800600e+02
+0 7720     -2.104900e+02 3.535100e+02
+5 7720     1.871900e+02 -3.079000e+02
+7 7720     -4.156900e+02 3.924300e+02
+8 7720     -3.185200e+02 5.392999e+01
+10 7720     -3.809000e+02 5.409400e+02
+0 7721     -4.392300e+02 3.478500e+02
+4 7721     -3.698999e+01 -9.794000e+01
+10 7721     -6.624600e+02 5.123500e+02
+15 7721     -6.771400e+02 5.536500e+02
+0 7722     5.860601e+02 3.481500e+02
+2 7722     4.329000e+02 3.165000e+02
+3 7722     2.913000e+02 -7.719971e+00
+6 7722     3.482800e+02 5.177100e+02
+7 7722     3.910200e+02 5.138900e+02
+8 7722     4.179800e+02 2.320900e+02
+9 7722     2.277900e+02 3.639200e+02
+12 7722     4.349200e+02 5.232000e+02
+13 7722     7.668400e+02 1.016900e+02
+0 7723     -4.014300e+02 3.474300e+02
+5 7723     -5.010010e+00 -3.112500e+02
+7 7723     -6.103300e+02 3.635100e+02
+11 7723     -2.117100e+02 -4.000200e+02
+14 7723     -8.634003e+01 -4.038800e+02
+0 7724     -1.202800e+02 3.416400e+02
+2 7724     -3.948700e+02 6.725000e+01
+7 7724     -3.247700e+02 3.905100e+02
+8 7724     -2.441100e+02 4.531000e+01
+9 7724     -4.789400e+02 1.187700e+02
+11 7724     4.264001e+01 -4.071100e+02
+13 7724     9.485999e+01 2.670001e+01
+0 7725     -2.999600e+02 3.409600e+02
+2 7725     -5.784200e+02 6.215002e+01
+4 7725     -5.306000e+01 -1.728800e+02
+15 7725     -4.777700e+02 5.644500e+02
+0 7726     8.128101e+02 3.398900e+02
+3 7726     5.084800e+02 7.107001e+01
+7 7726     6.117500e+02 5.441400e+02
+9 7726     4.218300e+02 4.379300e+02
+0 7727     -5.561600e+02 3.396700e+02
+5 7727     -1.602200e+02 -3.156900e+02
+7 7727     -7.738400e+02 3.359300e+02
+11 7727     -3.481400e+02 -4.040000e+02
+15 7727     -8.379600e+02 5.293800e+02
+0 7728     -5.627800e+02 3.374100e+02
+4 7728     -3.177002e+01 -3.290997e+01
+5 7728     -1.675600e+02 -3.173700e+02
+7 7728     -7.805900e+02 3.330000e+02
+10 7728     -8.130800e+02 4.915400e+02
+13 7728     -2.621700e+02 5.500000e+00
+14 7728     -2.489600e+02 -4.141100e+02
+15 7728     -8.468900e+02 5.253200e+02
+0 7729     6.169000e+02 3.376200e+02
+2 7729     4.692900e+02 3.195900e+02
+3 7729     3.263101e+02 -4.599976e+00
+6 7729     3.886500e+02 5.159600e+02
+7 7729     4.228700e+02 5.093500e+02
+9 7729     2.584500e+02 3.675700e+02
+10 7729     5.986500e+02 6.056000e+02
+11 7729     7.213500e+02 -3.835400e+02
+12 7729     4.730400e+02 5.230100e+02
+13 7729     7.992000e+02 9.645999e+01
+0 7730     6.169000e+02 3.376200e+02
+3 7730     3.263101e+02 -4.599976e+00
+6 7730     3.886500e+02 5.159600e+02
+7 7730     4.228700e+02 5.093500e+02
+8 7730     4.470000e+02 2.340800e+02
+9 7730     2.584500e+02 3.675700e+02
+10 7730     5.986500e+02 6.056000e+02
+11 7730     7.213500e+02 -3.835400e+02
+12 7730     4.730400e+02 5.230100e+02
+13 7730     7.992000e+02 9.645999e+01
+0 7731     6.117200e+02 3.372100e+02
+2 7731     4.641300e+02 3.174800e+02
+3 7731     3.211200e+02 -6.520020e+00
+7 7731     4.179399e+02 5.081700e+02
+8 7731     4.430000e+02 2.322400e+02
+9 7731     2.542800e+02 3.653300e+02
+10 7731     5.921899e+02 6.056300e+02
+11 7731     7.162300e+02 -3.837200e+02
+12 7731     4.678199e+02 5.210600e+02
+13 7731     7.940000e+02 9.592999e+01
+0 7732     8.262100e+02 3.349000e+02
+2 7732     6.782000e+02 3.962300e+02
+3 7732     5.203800e+02 7.253003e+01
+7 7732     6.249200e+02 5.414700e+02
+9 7732     4.340200e+02 4.382300e+02
+0 7733     -4.340500e+02 3.349500e+02
+10 7733     -6.505200e+02 4.985400e+02
+11 7733     -2.412300e+02 -4.111600e+02
+12 7733     -7.732600e+02 2.376700e+02
+15 7733     -6.645700e+02 5.381100e+02
+0 7734     7.263000e+01 3.332700e+02
+7 7734     -1.312400e+02 4.081200e+02
+11 7734     2.202300e+02 -4.116000e+02
+13 7734     2.590400e+02 3.179999e+01
+14 7734     3.980500e+02 -4.105200e+02
+0 7735     6.191000e+02 3.337600e+02
+2 7735     4.710400e+02 3.154200e+02
+3 7735     3.289200e+02 -7.440002e+00
+6 7735     3.914700e+02 5.111300e+02
+7 7735     4.255000e+02 5.056700e+02
+9 7735     2.609900e+02 3.646700e+02
+12 7735     4.754200e+02 5.178000e+02
+13 7735     8.010800e+02 9.329999e+01
+0 7736     -3.860900e+02 3.326100e+02
+5 7736     8.590027e+00 -3.277400e+02
+7 7736     -5.923100e+02 3.495500e+02
+8 7736     -4.695100e+02 2.551999e+01
+10 7736     -5.909300e+02 4.994900e+02
+12 7736     -7.135600e+02 2.447100e+02
+13 7736     -1.190100e+02 7.679993e+00
+14 7736     -7.273999e+01 -4.203400e+02
+15 7736     -5.968200e+02 5.413800e+02
+0 7737     6.699700e+02 3.321900e+02
+2 7737     5.264700e+02 3.358200e+02
+3 7737     3.801700e+02 1.267999e+01
+6 7737     4.542400e+02 5.262100e+02
+7 7737     4.758800e+02 5.132800e+02
+9 7737     3.068800e+02 3.828400e+02
+12 7737     5.360699e+02 5.352200e+02
+0 7738     6.699700e+02 3.321900e+02
+2 7738     5.264700e+02 3.358200e+02
+3 7738     3.801700e+02 1.267999e+01
+7 7738     4.758800e+02 5.132800e+02
+0 7739     -2.016400e+02 3.308300e+02
+7 7739     -4.042000e+02 3.698900e+02
+13 7739     2.959998e+01 1.409003e+01
+15 7739     -3.391900e+02 5.636000e+02
+0 7740     5.998300e+02 3.314100e+02
+2 7740     4.528500e+02 3.070000e+02
+6 7740     3.698200e+02 5.033700e+02
+8 7740     4.334399e+02 2.239600e+02
+9 7740     2.446700e+02 3.560100e+02
+0 7741     4.193900e+02 3.305000e+02
+6 7741     5.581000e+01 4.161900e+02
+0 7742     -5.149600e+02 3.289400e+02
+5 7742     -1.211800e+02 -3.285100e+02
+10 7742     -7.506200e+02 4.843000e+02
+15 7742     -7.774900e+02 5.195800e+02
+0 7743     8.138900e+02 3.274900e+02
+3 7743     5.120300e+02 6.210999e+01
+7 7743     6.143101e+02 5.322600e+02
+0 7744     4.755300e+02 3.267800e+02
+6 7744     1.732800e+02 4.442900e+02
+7 7744     2.718800e+02 4.654300e+02
+8 7744     2.877800e+02 1.474100e+02
+12 7744     2.841801e+02 4.379700e+02
+0 7745     -4.514200e+02 3.248300e+02
+7 7745     -6.620600e+02 3.311200e+02
+12 7745     -7.959300e+02 2.189900e+02
+0 7746     6.293000e+02 3.230500e+02
+3 7746     3.428199e+02 -1.196997e+01
+6 7746     4.076500e+02 5.032100e+02
+7 7746     4.371100e+02 4.972400e+02
+8 7746     4.607700e+02 2.264700e+02
+9 7746     2.729399e+02 3.601400e+02
+10 7746     6.141400e+02 5.899300e+02
+11 7746     7.370500e+02 -3.974200e+02
+12 7746     4.916899e+02 5.115500e+02
+0 7747     -1.859800e+02 3.192500e+02
+7 7747     -3.866400e+02 3.599200e+02
+15 7747     -3.150200e+02 5.488800e+02
+0 7748     4.826400e+02 3.144300e+02
+7 7748     2.806801e+02 4.547700e+02
+10 7748     4.409399e+02 5.631200e+02
+0 7749     5.347800e+02 3.134500e+02
+7 7749     3.328101e+02 4.626000e+02
+9 7749     1.487900e+02 2.737900e+02
+10 7749     5.026801e+02 5.684700e+02
+0 7750     5.347800e+02 3.134500e+02
+7 7750     3.328101e+02 4.626000e+02
+10 7750     5.026801e+02 5.684700e+02
+0 7751     7.808800e+02 3.110500e+02
+8 7751     5.924800e+02 2.634700e+02
+9 7751     4.053101e+02 4.073700e+02
+0 7752     6.090027e+00 3.090600e+02
+6 7752     -4.114300e+02 2.803400e+02
+0 7753     -5.740100e+02 3.080500e+02
+13 7753     -2.730000e+02 -2.109998e+01
+14 7753     -2.647300e+02 -4.467400e+02
+0 7754     8.356000e+01 3.071500e+02
+6 7754     -3.145400e+02 2.997100e+02
+11 7754     2.302400e+02 -4.356500e+02
+0 7755     7.622300e+02 3.041200e+02
+2 7755     6.251400e+02 3.456100e+02
+3 7755     4.735200e+02 2.469000e+01
+6 7755     5.669500e+02 5.234800e+02
+7 7755     5.681300e+02 5.017400e+02
+10 7755     7.737700e+02 5.831000e+02
+0 7756     -4.502800e+02 3.025200e+02
+7 7756     -6.569300e+02 3.075800e+02
+15 7756     -6.805800e+02 4.901800e+02
+0 7757     6.294399e+02 3.022300e+02
+2 7757     4.918900e+02 2.920600e+02
+6 7757     4.129300e+02 4.814600e+02
+7 7757     4.398700e+02 4.774400e+02
+9 7757     2.781600e+02 3.448800e+02
+10 7757     6.158300e+02 5.649000e+02
+12 7757     4.971500e+02 4.889300e+02
+13 7757     8.156200e+02 6.895001e+01
+0 7758     4.747100e+02 3.002200e+02
+6 7758     1.809700e+02 4.119600e+02
+8 7758     2.949400e+02 1.246600e+02
+12 7758     2.932500e+02 4.074000e+02
+13 7758     6.413900e+02 4.096997e+01
+0 7759     6.896997e+01 2.939100e+02
+6 7759     -3.229200e+02 2.810200e+02
+0 7760     -3.820200e+02 2.931800e+02
+11 7760     -1.970000e+02 -4.497200e+02
+13 7760     -1.172700e+02 -2.728998e+01
+14 7760     -7.237000e+01 -4.646700e+02
+0 7761     8.190200e+02 2.931000e+02
+2 7761     6.849800e+02 3.594900e+02
+0 7762     8.676500e+02 2.924100e+02
+2 7762     7.285300e+02 3.747300e+02
+3 7762     5.685699e+02 5.390997e+01
+7 7762     6.690699e+02 5.078800e+02
+0 7763     5.425000e+02 2.898500e+02
+2 7763     3.572900e+02 1.956900e+02
+8 7763     3.585200e+02 1.388700e+02
+9 7763     1.635300e+02 2.575500e+02
+10 7763     5.135000e+02 5.397800e+02
+0 7764     -5.401500e+02 2.888500e+02
+4 7764     -6.025000e+01 -3.829999e+01
+5 7764     -1.528700e+02 -3.716800e+02
+11 7764     -3.385700e+02 -4.503300e+02
+13 7764     -2.465900e+02 -3.690997e+01
+14 7764     -2.337400e+02 -4.683700e+02
+0 7765     5.317000e+02 2.884400e+02
+2 7765     3.449900e+02 1.905700e+02
+9 7765     1.525300e+02 2.528700e+02
+10 7765     5.001500e+02 5.373900e+02
+0 7766     5.317000e+02 2.884400e+02
+2 7766     3.449900e+02 1.905700e+02
+9 7766     1.525300e+02 2.528700e+02
+0 7767     8.739399e+02 2.885700e+02
+2 7767     7.357400e+02 3.738100e+02
+3 7767     5.748300e+02 5.306000e+01
+7 7767     6.756899e+02 5.052400e+02
+0 7768     -3.856900e+02 2.863600e+02
+5 7768     2.929993e+00 -3.792700e+02
+7 7768     -5.852500e+02 3.003000e+02
+8 7768     -4.677600e+02 -2.201001e+01
+10 7768     -5.835700e+02 4.430800e+02
+11 7768     -2.002100e+02 -4.556800e+02
+13 7768     -1.201200e+02 -3.332001e+01
+14 7768     -7.734003e+01 -4.722800e+02
+15 7768     -5.875200e+02 4.764700e+02
+0 7769     -5.393600e+02 2.839400e+02
+5 7769     -1.558300e+02 -3.781000e+02
+7 7769     -7.472700e+02 2.777400e+02
+10 7769     -7.738700e+02 4.263800e+02
+11 7769     -3.383000e+02 -4.548000e+02
+15 7769     -8.036500e+02 4.530600e+02
+0 7770     6.033500e+02 2.814400e+02
+3 7770     3.274399e+02 -5.964001e+01
+7 7770     4.168900e+02 4.524800e+02
+9 7770     2.589000e+02 3.180200e+02
+10 7770     5.849100e+02 5.379400e+02
+0 7771     7.624600e+02 2.812300e+02
+2 7771     6.335601e+02 3.266000e+02
+3 7771     4.823600e+02 7.210022e+00
+6 7771     5.741899e+02 5.000000e+02
+8 7771     5.834800e+02 2.360600e+02
+12 7771     6.533101e+02 5.125500e+02
+0 7772     5.146200e+02 2.810500e+02
+8 7772     3.346500e+02 1.237800e+02
+10 7772     4.810601e+02 5.269700e+02
+0 7773     -3.873500e+02 2.806600e+02
+7 7773     -5.862700e+02 2.941700e+02
+10 7773     -5.849200e+02 4.363900e+02
+15 7773     -5.889500e+02 4.682900e+02
+0 7774     -3.827300e+02 2.798000e+02
+5 7774     4.700012e+00 -3.870100e+02
+8 7774     -4.650500e+02 -2.910001e+01
+10 7774     -5.791000e+02 4.357600e+02
+0 7775     2.280300e+02 2.791600e+02
+6 7775     -1.261000e+02 3.086900e+02
+0 7776     7.752300e+02 2.794300e+02
+3 7776     4.940400e+02 1.044000e+01
+0 7777     -5.196800e+02 2.729400e+02
+7 7777     -7.246800e+02 2.679400e+02
+13 7777     -2.301700e+02 -5.064001e+01
+14 7777     -2.152500e+02 -4.872500e+02
+0 7778     6.746000e+02 2.697500e+02
+8 7778     5.113101e+02 1.995500e+02
+9 7778     3.257800e+02 3.355900e+02
+0 7779     6.693500e+02 2.681800e+02
+2 7779     5.427400e+02 2.762800e+02
+3 7779     3.976600e+02 -4.320001e+01
+6 7779     4.696600e+02 4.567600e+02
+8 7779     5.066000e+02 1.967800e+02
+9 7779     3.219600e+02 3.329900e+02
+10 7779     6.657300e+02 5.283700e+02
+12 7779     5.516899e+02 4.660300e+02
+13 7779     8.593300e+02 4.478003e+01
+0 7780     9.363000e+01 2.669200e+02
+7 7780     -9.428003e+01 3.487900e+02
+11 7780     2.398400e+02 -4.738000e+02
+0 7781     6.302600e+02 2.669600e+02
+7 7781     4.457500e+02 4.433600e+02
+10 7781     6.189301e+02 5.225100e+02
+0 7782     6.302600e+02 2.669600e+02
+2 7782     5.025900e+02 2.586700e+02
+6 7782     4.230700e+02 4.428300e+02
+7 7782     4.457500e+02 4.433600e+02
+9 7782     2.877500e+02 3.168100e+02
+10 7782     6.189301e+02 5.225100e+02
+0 7783     6.302600e+02 2.669600e+02
+6 7783     4.230700e+02 4.428300e+02
+7 7783     4.457500e+02 4.433600e+02
+9 7783     2.877500e+02 3.168100e+02
+10 7783     6.189301e+02 5.225100e+02
+11 7783     7.518300e+02 -4.529300e+02
+0 7784     8.095001e+01 2.646400e+02
+5 7784     5.175601e+02 -4.024200e+02
+7 7784     -1.068900e+02 3.448700e+02
+9 7784     -2.503800e+02 1.033500e+02
+12 7784     -1.460100e+02 2.657000e+02
+13 7784     2.852900e+02 -2.503998e+01
+14 7784     4.314600e+02 -4.849100e+02
+0 7785     6.035400e+02 2.641600e+02
+7 7785     4.191100e+02 4.361600e+02
+8 7785     4.496700e+02 1.718900e+02
+9 7785     2.635400e+02 3.029600e+02
+0 7786     -1.781400e+02 2.621000e+02
+7 7786     -3.667500e+02 3.048900e+02
+11 7786     -1.256000e+01 -4.825700e+02
+15 7786     -2.964100e+02 4.699600e+02
+0 7787     5.779800e+02 2.620800e+02
+2 7787     4.473101e+02 2.307700e+02
+3 7787     3.080000e+02 -8.976001e+01
+0 7788     5.779800e+02 2.620800e+02
+3 7788     3.080000e+02 -8.976001e+01
+6 7788     3.620400e+02 4.196900e+02
+8 7788     4.292000e+02 1.620400e+02
+9 7788     2.428300e+02 2.915600e+02
+12 7788     4.496600e+02 4.276900e+02
+0 7789     -4.204500e+02 2.617000e+02
+7 7789     -6.178200e+02 2.692100e+02
+0 7790     7.595699e+02 2.610900e+02
+2 7790     6.365100e+02 3.064700e+02
+3 7790     4.862100e+02 -1.195001e+01
+7 7790     5.715900e+02 4.602200e+02
+8 7790     5.854800e+02 2.200800e+02
+9 7790     3.993199e+02 3.622300e+02
+10 7790     7.736400e+02 5.303800e+02
+12 7790     6.576400e+02 4.968500e+02
+0 7791     -5.220400e+02 2.601700e+02
+5 7791     -1.372300e+02 -4.041200e+02
+10 7791     -7.483900e+02 3.992100e+02
+0 7792     6.310500e+02 2.554800e+02
+2 7792     5.066400e+02 2.476400e+02
+6 7792     4.267300e+02 4.305900e+02
+7 7792     4.474700e+02 4.325900e+02
+8 7792     4.765500e+02 1.742700e+02
+9 7792     2.911200e+02 3.078500e+02
+12 7792     5.104100e+02 4.392100e+02
+15 7792     8.221500e+02 5.826700e+02
+0 7793     -5.014600e+02 2.548400e+02
+7 7793     -7.017400e+02 2.519900e+02
+0 7794     7.566200e+02 2.549500e+02
+2 7794     6.351400e+02 2.999600e+02
+3 7794     4.854399e+02 -1.800000e+01
+6 7794     5.744301e+02 4.703900e+02
+7 7794     5.695800e+02 4.540100e+02
+8 7794     5.842700e+02 2.140900e+02
+9 7794     3.980800e+02 3.557700e+02
+10 7794     7.702900e+02 5.229900e+02
+0 7795     2.309301e+02 2.537800e+02
+6 7795     -1.052400e+02 2.815200e+02
+0 7796     -2.018300e+02 2.498600e+02
+7 7796     -3.875600e+02 2.889700e+02
+10 7796     -3.571400e+02 4.158600e+02
+11 7796     -3.489001e+01 -4.932400e+02
+13 7796     4.256000e+01 -5.565997e+01
+14 7796     1.241400e+02 -5.112900e+02
+0 7797     -4.984900e+02 2.493900e+02
+7 7797     -6.981800e+02 2.461300e+02
+11 7797     -3.053500e+02 -4.877300e+02
+0 7798     -4.984900e+02 2.493900e+02
+7 7798     -6.981800e+02 2.461300e+02
+0 7799     -4.077300e+02 2.483700e+02
+7 7799     -6.027600e+02 2.570500e+02
+8 7799     -4.876500e+02 -6.481000e+01
+14 7799     -1.057400e+02 -5.159000e+02
+0 7800     6.466998e+01 2.471100e+02
+6 7800     -2.960500e+02 2.271000e+02
+0 7801     -2.508002e+01 2.432800e+02
+3 7801     -3.618700e+02 -3.275500e+02
+8 7801     -1.222100e+02 -1.032999e+01
+9 7801     -3.349600e+02 6.984003e+01
+0 7802     -2.508002e+01 2.432800e+02
+4 7802     -1.327400e+02 -3.352100e+02
+9 7802     -3.349600e+02 6.984003e+01
+14 7802     3.208101e+02 -5.110400e+02
+0 7803     -1.640000e+02 2.383700e+02
+7 7803     -3.467600e+02 2.841400e+02
+8 7803     -2.463500e+02 -3.407001e+01
+11 7803     -1.320007e+00 -5.035300e+02
+13 7803     7.792999e+01 -6.228003e+01
+14 7803     1.686700e+02 -5.220000e+02
+15 7803     -2.740200e+02 4.390100e+02
+0 7804     8.732200e+02 2.355200e+02
+3 7804     5.918400e+02 1.208002e+01
+7 7804     6.824500e+02 4.557600e+02
+12 7804     7.871000e+02 5.034300e+02
+0 7805     7.070007e+00 2.226200e+02
+6 7805     -3.483800e+02 1.832100e+02
+0 7806     -1.380005e+00 2.203800e+02
+6 7806     -3.571300e+02 1.781200e+02
+0 7807     5.781000e+01 2.179500e+02
+4 7807     -1.558200e+02 -3.917700e+02
+6 7807     -2.830200e+02 1.928600e+02
+11 7807     2.060500e+02 -5.223800e+02
+0 7808     6.460601e+02 2.177700e+02
+2 7808     5.321801e+02 2.184000e+02
+3 7808     3.901400e+02 -9.823999e+01
+7 7808     4.671000e+02 3.982700e+02
+8 7808     4.974301e+02 1.494600e+02
+9 7808     3.138800e+02 2.839100e+02
+10 7808     6.402400e+02 4.647500e+02
+12 7808     5.371500e+02 4.038700e+02
+15 7808     8.477300e+02 5.319300e+02
+0 7809     -3.439001e+01 2.149300e+02
+5 7809     4.030400e+02 -4.581300e+02
+7 7809     -2.099500e+02 2.817800e+02
+10 7809     -1.549700e+02 3.919700e+02
+12 7809     -2.574000e+02 1.897400e+02
+13 7809     1.978500e+02 -7.275000e+01
+14 7809     3.199200e+02 -5.427900e+02
+0 7810     6.476700e+02 2.112200e+02
+2 7810     5.358400e+02 2.131200e+02
+9 7810     3.173400e+02 2.794000e+02
+13 7810     8.447000e+02 -5.950012e+00
+15 7810     8.511500e+02 5.222800e+02
+0 7811     -1.173999e+01 2.095700e+02
+5 7811     4.309200e+02 -4.641200e+02
+6 7811     -3.623100e+02 1.629700e+02
+0 7812     -1.173999e+01 2.095700e+02
+6 7812     -3.623100e+02 1.629700e+02
+0 7813     -1.692999e+01 2.085100e+02
+6 7813     -3.676500e+02 1.600600e+02
+0 7814     5.936200e+02 2.019400e+02
+2 7814     4.795601e+02 1.791100e+02
+3 7814     3.410100e+02 -1.375900e+02
+6 7814     3.943900e+02 3.588500e+02
+7 7814     4.177700e+02 3.737900e+02
+8 7814     4.537100e+02 1.190800e+02
+9 7814     2.701200e+02 2.486200e+02
+10 7814     5.795300e+02 4.414000e+02
+11 7814     7.312100e+02 -5.221300e+02
+12 7814     4.799301e+02 3.676400e+02
+13 7814     7.912000e+02 -2.101001e+01
+15 7814     7.752700e+02 5.008300e+02
+0 7815     5.936200e+02 2.019400e+02
+2 7815     4.795601e+02 1.791100e+02
+3 7815     3.410100e+02 -1.375900e+02
+6 7815     3.943900e+02 3.588500e+02
+7 7815     4.177700e+02 3.737900e+02
+8 7815     4.537100e+02 1.190800e+02
+9 7815     2.701200e+02 2.486200e+02
+10 7815     5.795300e+02 4.414000e+02
+11 7815     7.312100e+02 -5.221300e+02
+12 7815     4.799301e+02 3.676400e+02
+13 7815     7.912000e+02 -2.101001e+01
+0 7816     6.226801e+02 1.977900e+02
+2 7816     5.125400e+02 1.884500e+02
+3 7816     3.719800e+02 -1.269800e+02
+6 7816     4.309800e+02 3.646900e+02
+7 7816     4.469700e+02 3.752800e+02
+8 7816     4.808199e+02 1.256400e+02
+9 7816     2.971899e+02 2.582800e+02
+10 7816     6.139200e+02 4.393600e+02
+12 7816     5.147400e+02 3.735300e+02
+13 7816     8.207800e+02 -2.062000e+01
+15 7816     8.161600e+02 5.004800e+02
+0 7817     1.444399e+02 1.952800e+02
+10 7817     5.490002e+01 3.849100e+02
+13 7817     4.478101e+02 -5.248999e+01
+14 7817     6.402100e+02 -5.301801e+02
+15 7817     1.402700e+02 4.250900e+02
+0 7818     6.024500e+02 1.948500e+02
+3 7818     3.526100e+02 -1.398100e+02
+6 7818     4.075600e+02 3.541200e+02
+7 7818     4.278400e+02 3.686900e+02
+8 7818     4.634301e+02 1.165600e+02
+9 7818     2.804301e+02 2.467300e+02
+10 7818     5.912300e+02 4.333800e+02
+12 7818     4.926100e+02 3.630600e+02
+15 7818     7.888400e+02 4.922000e+02
+0 7819     8.679900e+02 1.891400e+02
+2 7819     7.599399e+02 2.848700e+02
+3 7819     6.017900e+02 -2.828998e+01
+7 7819     6.829301e+02 4.104400e+02
+9 7819     5.029399e+02 3.464800e+02
+0 7820     6.211000e+02 1.856500e+02
+2 7820     5.138199e+02 1.759900e+02
+3 7820     3.741600e+02 -1.392100e+02
+6 7820     4.322500e+02 3.510300e+02
+8 7820     4.818700e+02 1.155500e+02
+9 7820     2.992800e+02 2.474600e+02
+10 7820     6.133700e+02 4.243100e+02
+12 7820     5.160900e+02 3.600800e+02
+13 7820     8.209700e+02 -3.177002e+01
+15 7820     8.156000e+02 4.827300e+02
+0 7821     8.318600e+02 1.822500e+02
+2 7821     7.282000e+02 2.670600e+02
+3 7821     5.742200e+02 -4.515997e+01
+0 7822     -3.214200e+02 1.806000e+02
+7 7822     -4.955900e+02 2.044300e+02
+13 7822     -4.726001e+01 -1.205200e+02
+0 7823     7.151700e+02 1.790300e+02
+7 7823     5.404900e+02 3.742500e+02
+10 7823     7.263000e+02 4.264800e+02
+0 7824     -4.410999e+01 1.786400e+02
+5 7824     4.040900e+02 -4.990699e+02
+8 7824     -1.095200e+02 -5.442001e+01
+9 7824     -3.105500e+02 2.723999e+01
+10 7824     -1.634000e+02 3.470900e+02
+13 7824     1.987200e+02 -1.041900e+02
+14 7824     3.209200e+02 -5.839200e+02
+0 7825     -4.410999e+01 1.786400e+02
+5 7825     4.040900e+02 -4.990699e+02
+9 7825     -3.105500e+02 2.723999e+01
+10 7825     -1.634000e+02 3.470900e+02
+13 7825     1.987200e+02 -1.041900e+02
+14 7825     3.209200e+02 -5.839200e+02
+0 7826     7.218300e+02 1.741700e+02
+7 7826     5.475400e+02 3.710400e+02
+10 7826     7.337100e+02 4.221000e+02
+0 7827     -8.640997e+01 1.727400e+02
+7 7827     -2.518900e+02 2.335500e+02
+0 7828     -1.039400e+02 1.719500e+02
+7 7828     -2.691000e+02 2.299700e+02
+0 7829     2.021500e+02 1.689800e+02
+2 7829     2.341200e+02 1.765400e+02
+10 7829     1.246300e+02 3.593400e+02
+15 7829     2.228300e+02 3.971000e+02
+0 7830     4.200100e+02 1.688800e+02
+7 7830     2.415000e+02 3.037600e+02
+10 7830     3.787400e+02 3.834700e+02
+0 7831     5.269100e+02 1.683800e+02
+7 7831     3.557200e+02 3.281900e+02
+10 7831     5.036300e+02 3.940500e+02
+15 7831     6.861300e+02 4.431000e+02
+0 7832     8.190000e+02 1.685800e+02
+2 7832     7.197600e+02 2.470900e+02
+7 7832     6.402300e+02 3.825800e+02
+0 7833     8.190000e+02 1.685800e+02
+2 7833     7.197600e+02 2.470900e+02
+3 7833     5.678700e+02 -6.458002e+01
+7 7833     6.402300e+02 3.825800e+02
+0 7834     -2.316600e+02 1.659200e+02
+7 7834     -3.987000e+02 2.041100e+02
+13 7834     3.654999e+01 -1.271600e+02
+15 7834     -3.574800e+02 3.300100e+02
+0 7835     8.820200e+02 1.646200e+02
+2 7835     7.797100e+02 2.690400e+02
+3 7835     6.225900e+02 -4.264001e+01
+7 7835     6.994600e+02 3.895800e+02
+9 7835     5.201700e+02 3.331600e+02
+12 7835     8.144301e+02 4.300600e+02
+0 7836     8.228101e+02 1.639800e+02
+9 7836     4.750400e+02 3.119100e+02
+0 7837     7.375200e+02 1.633700e+02
+7 7837     5.643500e+02 3.634300e+02
+10 7837     7.534200e+02 4.107600e+02
+0 7838     -1.086800e+02 1.632000e+02
+5 7838     3.358600e+02 -5.167600e+02
+13 7838     1.461100e+02 -1.217400e+02
+0 7839     -1.086800e+02 1.632000e+02
+5 7839     3.358600e+02 -5.167600e+02
+7 7839     -2.719700e+02 2.212800e+02
+8 7839     -1.597100e+02 -7.485999e+01
+9 7839     -3.612700e+02 3.169983e+00
+13 7839     1.461100e+02 -1.217400e+02
+0 7840     7.091300e+02 1.614900e+02
+2 7840     6.134500e+02 1.916500e+02
+3 7840     4.696899e+02 -1.205800e+02
+6 7840     5.437900e+02 3.561800e+02
+7 7840     5.364100e+02 3.559500e+02
+8 7840     5.648199e+02 1.272000e+02
+9 7840     3.830800e+02 2.655300e+02
+10 7840     7.194500e+02 4.042100e+02
+12 7840     6.237000e+02 3.671000e+02
+0 7841     6.714000e+02 1.594500e+02
+6 7841     5.001700e+02 3.396900e+02
+7 7841     5.001400e+02 3.471100e+02
+8 7841     5.333101e+02 1.116100e+02
+9 7841     3.516200e+02 2.474000e+02
+13 7841     8.749301e+02 -4.785999e+01
+0 7842     6.445300e+02 1.574600e+02
+3 7842     4.067100e+02 -1.540300e+02
+6 7842     4.679000e+02 3.279300e+02
+7 7842     4.739000e+02 3.403400e+02
+8 7842     5.088700e+02 1.008700e+02
+9 7842     3.274100e+02 2.344000e+02
+10 7842     6.433300e+02 3.937300e+02
+12 7842     5.503300e+02 3.376100e+02
+13 7842     8.481400e+02 -5.279999e+01
+15 7842     8.518300e+02 4.460100e+02
+0 7843     2.111000e+02 1.559900e+02
+7 7843     8.584003e+01 2.924100e+02
+0 7844     -1.743100e+02 1.555600e+02
+5 7844     2.613500e+02 -5.248900e+02
+7 7844     -3.377400e+02 2.040200e+02
+0 7845     -1.138700e+02 1.557700e+02
+2 7845     -2.776200e+02 -8.057001e+01
+5 7845     3.322800e+02 -5.253101e+02
+7 7845     -2.761400e+02 2.136300e+02
+8 7845     -1.622500e+02 -8.059998e+01
+13 7845     1.430400e+02 -1.277600e+02
+0 7846     -1.216700e+02 1.531700e+02
+7 7846     -2.831600e+02 2.095800e+02
+8 7846     -1.684500e+02 -8.321997e+01
+13 7846     1.372500e+02 -1.304300e+02
+0 7847     7.058400e+02 1.510000e+02
+2 7847     6.131600e+02 1.813000e+02
+3 7847     4.699200e+02 -1.300700e+02
+6 7847     5.417000e+02 3.430300e+02
+7 7847     5.344100e+02 3.454200e+02
+8 7847     5.640400e+02 1.169300e+02
+9 7847     3.819900e+02 2.550500e+02
+10 7847     7.167900e+02 3.923200e+02
+12 7847     6.211899e+02 3.534000e+02
+0 7848     7.341500e+02 1.509100e+02
+2 7848     6.417300e+02 1.940200e+02
+3 7848     4.967800e+02 -1.173200e+02
+6 7848     5.753600e+02 3.526900e+02
+7 7848     5.618700e+02 3.504600e+02
+8 7848     5.886100e+02 1.266900e+02
+9 7848     4.068199e+02 2.667700e+02
+10 7848     7.502600e+02 3.958600e+02
+12 7848     6.542300e+02 3.636400e+02
+0 7849     -1.152500e+02 1.502500e+02
+9 7849     -3.597100e+02 -6.250000e+00
+0 7850     -1.152500e+02 1.502500e+02
+7 7850     -2.765800e+02 2.080100e+02
+9 7850     -3.597100e+02 -6.250000e+00
+13 7850     1.436000e+02 -1.325700e+02
+0 7851     -2.177700e+02 1.498500e+02
+7 7851     -3.805100e+02 1.910900e+02
+13 7851     5.304999e+01 -1.394300e+02
+0 7852     7.010800e+02 1.482000e+02
+2 7852     6.084301e+02 1.761100e+02
+6 7852     5.369500e+02 3.381400e+02
+7 7852     5.301899e+02 3.418900e+02
+8 7852     5.598500e+02 1.129300e+02
+10 7852     7.107400e+02 3.887400e+02
+12 7852     6.169100e+02 3.482300e+02
+0 7853     -2.793600e+02 1.458200e+02
+10 7853     -4.371600e+02 2.842200e+02
+13 7853     -9.299927e-01 -1.473700e+02
+0 7854     8.337600e+02 1.453300e+02
+2 7854     7.413500e+02 2.310000e+02
+3 7854     5.881300e+02 -7.800000e+01
+7 7854     6.570200e+02 3.632300e+02
+9 7854     4.884700e+02 3.014700e+02
+0 7855     7.127400e+02 1.446100e+02
+3 7855     4.782400e+02 -1.327800e+02
+7 7855     5.419500e+02 3.401900e+02
+8 7855     5.711500e+02 1.135700e+02
+12 7855     6.314100e+02 3.476500e+02
+0 7856     8.066200e+02 1.436600e+02
+2 7856     7.151500e+02 2.189200e+02
+3 7856     5.649800e+02 -9.131000e+01
+7 7856     6.318400e+02 3.568100e+02
+0 7857     6.624500e+02 1.433400e+02
+3 7857     4.295300e+02 -1.573000e+02
+6 7857     4.934500e+02 3.199300e+02
+7 7857     4.934000e+02 3.301900e+02
+9 7857     3.468800e+02 2.313600e+02
+10 7857     6.659399e+02 3.794500e+02
+12 7857     5.747900e+02 3.298700e+02
+0 7858     7.449600e+02 1.420600e+02
+2 7858     6.553300e+02 1.906300e+02
+9 7858     4.177200e+02 2.654300e+02
+10 7858     7.637300e+02 3.863000e+02
+12 7858     6.683700e+02 3.608100e+02
+0 7859     -2.105000e+02 1.402600e+02
+3 7859     -5.021200e+02 -4.454399e+02
+7 7859     -3.712100e+02 1.828100e+02
+8 7859     -2.467300e+02 -1.067300e+02
+10 7859     -3.548500e+02 2.849700e+02
+15 7859     -3.252900e+02 2.972700e+02
+0 7860     4.450012e+00 1.397400e+02
+10 7860     -1.039900e+02 3.047400e+02
+13 7860     3.454000e+02 -1.066900e+02
+0 7861     4.450012e+00 1.397400e+02
+7 7861     -1.127100e+02 2.481800e+02
+0 7862     7.133800e+02 1.397600e+02
+2 7862     6.234399e+02 1.735900e+02
+6 7862     5.538400e+02 3.330200e+02
+7 7862     5.435000e+02 3.359600e+02
+8 7862     5.726300e+02 1.102700e+02
+9 7862     3.919900e+02 2.488900e+02
+10 7862     7.262100e+02 3.803000e+02
+12 7862     6.335699e+02 3.434300e+02
+0 7863     -1.173700e+02 1.395700e+02
+5 7863     3.328400e+02 -5.431400e+02
+8 7863     -1.580700e+02 -9.159998e+01
+9 7863     -3.548700e+02 -1.306000e+01
+0 7864     -1.173700e+02 1.395700e+02
+5 7864     3.328400e+02 -5.431400e+02
+6 7864     -4.438900e+02 5.164001e+01
+8 7864     -1.580700e+02 -9.159998e+01
+9 7864     -3.548700e+02 -1.306000e+01
+0 7865     7.432000e+02 1.381300e+02
+2 7865     6.545400e+02 1.856900e+02
+7 7865     5.720300e+02 3.396400e+02
+9 7865     4.178199e+02 2.603000e+02
+10 7865     7.621700e+02 3.819300e+02
+0 7866     1.575000e+01 1.381400e+02
+6 7866     -9.185001e+01 1.691500e+02
+15 7866     -3.044000e+01 3.280200e+02
+0 7867     7.593900e+02 1.378600e+02
+2 7867     6.710000e+02 1.933200e+02
+3 7867     5.242600e+02 -1.172300e+02
+7 7867     5.878101e+02 3.425100e+02
+9 7867     4.311300e+02 2.669400e+02
+10 7867     7.822000e+02 3.830500e+02
+12 7867     6.866000e+02 3.587600e+02
+0 7868     -4.639700e+02 1.373000e+02
+13 7868     -1.672200e+02 -1.651300e+02
+0 7869     7.286899e+02 1.366600e+02
+2 7869     6.414100e+02 1.788600e+02
+3 7869     4.970500e+02 -1.316200e+02
+6 7869     5.725800e+02 3.347300e+02
+7 7869     5.585300e+02 3.358900e+02
+8 7869     5.869600e+02 1.133400e+02
+9 7869     4.060699e+02 2.533200e+02
+10 7869     7.450100e+02 3.788100e+02
+12 7869     6.515900e+02 3.454400e+02
+0 7870     7.906600e+02 1.357300e+02
+7 7870     6.179200e+02 3.463600e+02
+10 7870     8.185000e+02 3.840000e+02
+0 7871     6.809301e+02 1.343900e+02
+3 7871     4.505800e+02 -1.573900e+02
+6 7871     5.177700e+02 3.160800e+02
+7 7871     5.127400e+02 3.249400e+02
+8 7871     5.464100e+02 9.539001e+01
+9 7871     3.654800e+02 2.314900e+02
+10 7871     6.881400e+02 3.704700e+02
+0 7872     7.173900e+02 1.335000e+02
+2 7872     6.297700e+02 1.696000e+02
+3 7872     4.865000e+02 -1.412500e+02
+6 7872     5.605601e+02 3.276700e+02
+7 7872     5.480900e+02 3.306200e+02
+8 7872     5.781100e+02 1.063800e+02
+9 7872     3.972800e+02 2.457600e+02
+10 7872     7.315300e+02 3.735900e+02
+12 7872     6.400000e+02 3.379000e+02
+0 7873     7.173900e+02 1.335000e+02
+2 7873     6.297700e+02 1.696000e+02
+3 7873     4.865000e+02 -1.412500e+02
+6 7873     5.605601e+02 3.276700e+02
+7 7873     5.480900e+02 3.306200e+02
+8 7873     5.781100e+02 1.063800e+02
+9 7873     3.972800e+02 2.457600e+02
+10 7873     7.315300e+02 3.735900e+02
+12 7873     6.400000e+02 3.379000e+02
+0 7874     7.410300e+02 1.323600e+02
+2 7874     6.540100e+02 1.795100e+02
+3 7874     5.090800e+02 -1.307300e+02
+7 7874     5.707300e+02 3.342500e+02
+8 7874     5.984000e+02 1.142000e+02
+9 7874     4.174000e+02 2.549900e+02
+12 7874     6.668000e+02 3.461300e+02
+0 7875     -2.145500e+02 1.315200e+02
+10 7875     -3.581600e+02 2.743100e+02
+13 7875     6.097998e+01 -1.545300e+02
+0 7876     -2.228400e+02 1.308100e+02
+7 7876     -3.807600e+02 1.718700e+02
+8 7876     -2.537700e+02 -1.155000e+02
+10 7876     -3.675200e+02 2.729500e+02
+13 7876     5.356000e+01 -1.557700e+02
+15 7876     -3.399900e+02 2.834500e+02
+0 7877     -1.187000e+01 1.287800e+02
+7 7877     -1.263300e+02 2.344900e+02
+10 7877     -1.216100e+02 2.897100e+02
+12 7877     -9.222998e+01 2.027600e+02
+13 7877     3.330699e+02 -1.173100e+02
+15 7877     -6.692999e+01 3.108700e+02
+0 7878     7.555200e+02 1.262200e+02
+7 7878     5.856200e+02 3.307400e+02
+10 7878     7.786300e+02 3.674600e+02
+0 7879     7.555200e+02 1.262200e+02
+2 7879     6.702900e+02 1.801600e+02
+7 7879     5.856200e+02 3.307400e+02
+9 7879     4.298400e+02 2.580800e+02
+0 7880     7.148300e+02 1.256000e+02
+2 7880     6.294900e+02 1.608800e+02
+3 7880     4.864700e+02 -1.492600e+02
+6 7880     5.596100e+02 3.187600e+02
+7 7880     5.465900e+02 3.228300e+02
+8 7880     5.774399e+02 9.962000e+01
+9 7880     3.971100e+02 2.385600e+02
+10 7880     7.288500e+02 3.638400e+02
+12 7880     6.388700e+02 3.292300e+02
+0 7881     7.148300e+02 1.256000e+02
+2 7881     6.294900e+02 1.608800e+02
+3 7881     4.864700e+02 -1.492600e+02
+7 7881     5.465900e+02 3.228300e+02
+8 7881     5.774399e+02 9.962000e+01
+9 7881     3.971100e+02 2.385600e+02
+10 7881     7.288500e+02 3.638400e+02
+0 7882     8.630500e+02 1.253300e+02
+2 7882     7.740000e+02 2.259900e+02
+3 7882     6.198900e+02 -8.275000e+01
+7 7882     6.869700e+02 3.494000e+02
+9 7882     5.160601e+02 2.974600e+02
+12 7882     8.037300e+02 3.820800e+02
+0 7883     7.750800e+02 1.247900e+02
+7 7883     6.044200e+02 3.331300e+02
+9 7883     4.479000e+02 2.627900e+02
+12 7883     7.072300e+02 3.499400e+02
+0 7884     -4.687100e+02 1.246100e+02
+4 7884     -1.569300e+02 -6.431000e+01
+7 7884     -6.382600e+02 1.253400e+02
+10 7884     -6.620500e+02 2.402900e+02
+13 7884     -1.670900e+02 -1.766100e+02
+0 7885     7.534600e+02 1.223200e+02
+2 7885     6.692200e+02 1.756000e+02
+3 7885     5.238300e+02 -1.339300e+02
+7 7885     5.839301e+02 3.269700e+02
+9 7885     4.303800e+02 2.522300e+02
+10 7885     7.751801e+02 3.641300e+02
+12 7885     6.834700e+02 3.396600e+02
+0 7886     8.053900e+02 1.208400e+02
+2 7886     7.216801e+02 1.980900e+02
+3 7886     5.720400e+02 -1.109000e+02
+7 7886     6.335000e+02 3.346900e+02
+0 7887     8.053900e+02 1.208400e+02
+2 7887     7.216801e+02 1.980900e+02
+3 7887     5.720400e+02 -1.109000e+02
+7 7887     6.335000e+02 3.346900e+02
+0 7888     7.497200e+02 1.202100e+02
+3 7888     5.212800e+02 -1.376100e+02
+7 7888     5.809500e+02 3.240600e+02
+10 7888     7.708101e+02 3.611900e+02
+0 7889     7.497200e+02 1.202100e+02
+3 7889     5.212800e+02 -1.376100e+02
+7 7889     5.809500e+02 3.240600e+02
+10 7889     7.708101e+02 3.611900e+02
+0 7890     -2.765300e+02 1.200200e+02
+4 7890     -1.790100e+02 -1.785500e+02
+0 7891     6.932600e+02 1.199800e+02
+2 7891     6.083600e+02 1.456800e+02
+3 7891     4.668101e+02 -1.646800e+02
+6 7891     5.356801e+02 3.048300e+02
+7 7891     5.264600e+02 3.134600e+02
+8 7891     5.594800e+02 8.776001e+01
+9 7891     3.794500e+02 2.250700e+02
+10 7891     7.036899e+02 3.550700e+02
+12 7891     6.153900e+02 3.150100e+02
+0 7892     -2.260300e+02 1.197300e+02
+7 7892     -3.813900e+02 1.613000e+02
+15 7892     -3.429600e+02 2.677100e+02
+0 7893     7.450601e+02 1.179000e+02
+2 7893     6.622500e+02 1.672200e+02
+3 7893     5.174500e+02 -1.412900e+02
+7 7893     5.766700e+02 3.212200e+02
+9 7893     4.245601e+02 2.451300e+02
+10 7893     7.652900e+02 3.580900e+02
+12 7893     6.751300e+02 3.313500e+02
+0 7894     8.755900e+02 1.166500e+02
+2 7894     7.885300e+02 2.234700e+02
+3 7894     6.335400e+02 -8.484003e+01
+7 7894     6.995400e+02 3.434900e+02
+9 7894     5.277800e+02 2.958900e+02
+0 7895     6.994301e+02 1.157300e+02
+2 7895     6.167300e+02 1.449300e+02
+3 7895     4.749200e+02 -1.652700e+02
+6 7895     5.442400e+02 3.022200e+02
+7 7895     5.332600e+02 3.104100e+02
+8 7895     5.665300e+02 8.662000e+01
+9 7895     3.864900e+02 2.241100e+02
+10 7895     7.112800e+02 3.505100e+02
+12 7895     6.241899e+02 3.126000e+02
+0 7896     8.272800e+02 1.150300e+02
+3 7896     5.933300e+02 -1.070400e+02
+7 7896     6.549800e+02 3.331900e+02
+9 7896     4.915100e+02 2.754500e+02
+0 7897     8.386100e+02 1.155300e+02
+2 7897     7.537000e+02 2.059700e+02
+12 7897     7.797600e+02 3.622600e+02
+0 7898     8.142300e+02 1.145100e+02
+2 7898     7.311300e+02 1.946700e+02
+3 7898     5.818600e+02 -1.133700e+02
+0 7899     7.664700e+02 1.130500e+02
+3 7899     5.394301e+02 -1.358800e+02
+7 7899     5.976899e+02 3.203800e+02
+9 7899     4.436300e+02 2.502100e+02
+10 7899     7.909800e+02 3.546300e+02
+12 7899     7.002000e+02 3.345400e+02
+0 7900     -3.565002e+01 1.122100e+02
+4 7900     -1.947300e+02 -3.807200e+02
+5 7900     5.636899e+02 -5.466400e+02
+6 7900     -1.454900e+02 1.225300e+02
+7 7900     -1.477400e+02 2.140900e+02
+9 7900     -8.596002e+01 1.664600e+02
+12 7900     -1.157400e+02 1.761900e+02
+15 7900     -9.651001e+01 2.855000e+02
+0 7901     6.253400e+02 1.127300e+02
+2 7901     5.384500e+02 1.051400e+02
+3 7901     4.013000e+02 -2.064500e+02
+6 7901     4.568199e+02 2.710100e+02
+7 7901     4.612000e+02 2.934900e+02
+8 7901     5.012000e+02 5.703000e+01
+9 7901     3.219600e+02 1.886400e+02
+10 7901     6.239399e+02 3.387600e+02
+13 7901     8.343800e+02 -9.488000e+01
+15 7901     8.298101e+02 3.801700e+02
+0 7902     8.031000e+02 1.117400e+02
+7 7902     6.329000e+02 3.261100e+02
+0 7903     6.227600e+02 1.082800e+02
+2 7903     5.371899e+02 9.984998e+01
+7 7903     4.592400e+02 2.890300e+02
+8 7903     5.003900e+02 5.276999e+01
+10 7903     6.214900e+02 3.333700e+02
+15 7903     8.268199e+02 3.735400e+02
+0 7904     6.227600e+02 1.082800e+02
+2 7904     5.371899e+02 9.984998e+01
+7 7904     4.592400e+02 2.890300e+02
+8 7904     5.003900e+02 5.276999e+01
+9 7904     3.205000e+02 1.839100e+02
+10 7904     6.214900e+02 3.333700e+02
+15 7904     8.268199e+02 3.735400e+02
+0 7905     7.770500e+02 1.078700e+02
+2 7905     6.970300e+02 1.725300e+02
+3 7905     5.507200e+02 -1.358500e+02
+7 7905     6.086801e+02 3.173800e+02
+9 7905     4.536100e+02 2.505000e+02
+10 7905     8.040900e+02 3.495600e+02
+0 7906     7.770500e+02 1.078700e+02
+3 7906     5.507200e+02 -1.358500e+02
+0 7907     7.942400e+02 1.071100e+02
+3 7907     5.665500e+02 -1.285400e+02
+7 7907     6.249000e+02 3.196400e+02
+0 7908     7.616998e+01 1.064800e+02
+7 7908     -2.951001e+01 2.291300e+02
+10 7908     -1.638000e+01 2.726400e+02
+15 7908     5.492999e+01 2.930500e+02
+0 7909     2.792900e+02 1.046900e+02
+7 7909     1.645400e+02 2.554900e+02
+10 7909     2.195300e+02 2.912100e+02
+13 7909     5.848900e+02 -1.150200e+02
+15 7909     3.357000e+02 3.192200e+02
+0 7910     7.602500e+02 1.046300e+02
+2 7910     6.811200e+02 1.618400e+02
+3 7910     5.362200e+02 -1.465300e+02
+7 7910     5.934100e+02 3.108800e+02
+10 7910     7.844100e+02 3.438200e+02
+12 7910     6.955300e+02 3.228900e+02
+0 7911     7.683101e+02 1.043200e+02
+2 7911     6.893800e+02 1.651900e+02
+3 7911     5.439900e+02 -1.427700e+02
+7 7911     6.007400e+02 3.123900e+02
+9 7911     4.474000e+02 2.442000e+02
+0 7912     7.901899e+02 1.032000e+02
+2 7912     7.116000e+02 1.722600e+02
+3 7912     5.643400e+02 -1.341000e+02
+7 7912     6.217100e+02 3.148600e+02
+9 7912     4.655100e+02 2.522900e+02
+10 7912     8.198600e+02 3.454100e+02
+12 7912     7.294800e+02 3.322300e+02
+0 7913     7.150000e+02 1.031700e+02
+2 7913     6.354399e+02 1.395900e+02
+3 7913     4.932800e+02 -1.695000e+02
+6 7913     5.648101e+02 2.945400e+02
+7 7913     5.493300e+02 3.014800e+02
+9 7913     4.022400e+02 2.207700e+02
+10 7913     7.306300e+02 3.373800e+02
+12 7913     6.439600e+02 3.048400e+02
+0 7914     8.739301e+02 1.015300e+02
+3 7914     6.375300e+02 -9.878003e+01
+0 7915     7.837200e+02 9.985999e+01
+2 7915     7.067100e+02 1.680900e+02
+3 7915     5.589301e+02 -1.395700e+02
+9 7915     4.613600e+02 2.469900e+02
+0 7916     -9.979980e+00 9.578000e+01
+3 7916     -9.640015e+00 -2.189700e+02
+4 7916     -2.084100e+02 -4.027000e+02
+5 7916     6.042200e+02 -5.647500e+02
+6 7916     -9.891000e+01 1.149400e+02
+12 7916     -7.433002e+01 1.700100e+02
+0 7917     6.541600e+02 9.504001e+01
+3 7917     4.360300e+02 -2.089300e+02
+6 7917     4.958000e+02 2.623000e+02
+7 7917     4.916200e+02 2.817700e+02
+8 7917     5.304800e+02 5.164001e+01
+9 7917     3.518199e+02 1.858000e+02
+15 7917     8.725300e+02 3.596200e+02
+0 7918     7.561899e+02 9.503000e+01
+2 7918     6.798800e+02 1.507200e+02
+7 7918     5.904000e+02 3.012100e+02
+9 7918     4.396200e+02 2.316900e+02
+10 7918     7.800400e+02 3.322400e+02
+12 7918     6.934700e+02 3.111800e+02
+0 7919     8.399399e+02 9.395999e+01
+2 7919     7.614301e+02 1.866900e+02
+7 7919     6.699500e+02 3.159800e+02
+0 7920     8.399399e+02 9.395999e+01
+7 7920     6.699500e+02 3.159800e+02
+12 7920     7.869500e+02 3.416000e+02
+0 7921     7.175900e+02 9.323001e+01
+7 7921     5.540100e+02 2.922600e+02
+10 7921     7.339700e+02 3.250100e+02
+0 7922     7.900000e+02 9.098999e+01
+2 7922     7.146899e+02 1.620600e+02
+3 7922     5.680500e+02 -1.450000e+02
+7 7922     6.231400e+02 3.034200e+02
+9 7922     4.683500e+02 2.423800e+02
+10 7922     8.205100e+02 3.312600e+02
+12 7922     7.325200e+02 3.189300e+02
+0 7923     7.900000e+02 9.098999e+01
+2 7923     7.146899e+02 1.620600e+02
+3 7923     5.680500e+02 -1.450000e+02
+7 7923     6.231400e+02 3.034200e+02
+9 7923     4.683500e+02 2.423800e+02
+10 7923     8.205100e+02 3.312600e+02
+12 7923     7.325200e+02 3.189300e+02
+0 7924     7.336100e+02 8.963000e+01
+2 7924     6.585300e+02 1.355900e+02
+3 7924     5.162400e+02 -1.725200e+02
+7 7924     5.695000e+02 2.918700e+02
+9 7924     4.222500e+02 2.181800e+02
+12 7924     6.687600e+02 2.972800e+02
+0 7925     -1.560999e+01 8.862000e+01
+2 7925     7.827002e+01 9.032001e+01
+4 7925     -2.116900e+02 -3.985500e+02
+6 7925     -1.019000e+02 1.062900e+02
+7 7925     -1.202500e+02 1.953300e+02
+8 7925     9.828003e+01 3.051999e+01
+12 7925     -7.787000e+01 1.613500e+02
+15 7925     -6.687000e+01 2.552000e+02
+0 7926     -6.246002e+01 8.648999e+01
+7 7926     -1.717500e+02 1.829800e+02
+10 7926     -1.757800e+02 2.351300e+02
+15 7926     -1.291000e+02 2.458800e+02
+0 7927     7.468800e+02 8.401001e+01
+2 7927     6.742200e+02 1.366100e+02
+7 7927     5.831100e+02 2.891600e+02
+9 7927     4.353800e+02 2.196200e+02
+10 7927     7.697900e+02 3.183000e+02
+12 7927     6.862500e+02 2.966700e+02
+0 7928     7.468800e+02 8.401001e+01
+2 7928     6.742200e+02 1.366100e+02
+3 7928     5.309500e+02 -1.706000e+02
+7 7928     5.831100e+02 2.891600e+02
+9 7928     4.353800e+02 2.196200e+02
+10 7928     7.697900e+02 3.183000e+02
+12 7928     6.862500e+02 2.966700e+02
+0 7929     5.248101e+02 8.345001e+01
+6 7929     3.382800e+02 1.986000e+02
+0 7930     5.248101e+02 8.345001e+01
+6 7930     3.382800e+02 1.986000e+02
+7 7930     3.657000e+02 2.451100e+02
+10 7930     5.091700e+02 2.940600e+02
+15 7930     6.929900e+02 3.237500e+02
+0 7931     -2.633000e+02 8.301999e+01
+2 7931     -4.081700e+02 -1.701200e+02
+7 7931     -4.116500e+02 1.194600e+02
+13 7931     2.909003e+01 -1.991600e+02
+15 7931     -3.898500e+02 2.112800e+02
+0 7932     7.726200e+02 8.163000e+01
+2 7932     7.002500e+02 1.450200e+02
+7 7932     6.078199e+02 2.913700e+02
+10 7932     8.004301e+02 3.180600e+02
+12 7932     7.149900e+02 3.017900e+02
+0 7933     7.726200e+02 8.163000e+01
+2 7933     7.002500e+02 1.450200e+02
+7 7933     6.078199e+02 2.913700e+02
+10 7933     8.004301e+02 3.180600e+02
+12 7933     7.149900e+02 3.017900e+02
+0 7934     5.180200e+02 7.970001e+01
+6 7934     3.300500e+02 1.906800e+02
+7 7934     3.579301e+02 2.399300e+02
+12 7934     4.196801e+02 2.015800e+02
+13 7934     7.270300e+02 -1.391900e+02
+15 7934     6.830000e+02 3.169300e+02
+0 7935     6.268900e+02 7.873999e+01
+2 7935     5.485100e+02 7.123999e+01
+3 7935     4.130200e+02 -2.383700e+02
+6 7935     4.658300e+02 2.338700e+02
+7 7935     4.663800e+02 2.614500e+02
+9 7935     3.312800e+02 1.599900e+02
+10 7935     6.279900e+02 2.990800e+02
+12 7935     5.480000e+02 2.438100e+02
+13 7935     8.395800e+02 -1.244100e+02
+15 7935     8.356600e+02 3.328100e+02
+0 7936     7.716200e+02 7.377002e+01
+2 7936     7.014000e+02 1.374600e+02
+3 7936     5.569600e+02 -1.690200e+02
+7 7936     6.079200e+02 2.839500e+02
+10 7936     7.995900e+02 3.083700e+02
+12 7936     7.160900e+02 2.945000e+02
+0 7937     7.716200e+02 7.377002e+01
+2 7937     7.014000e+02 1.374600e+02
+3 7937     5.569600e+02 -1.690200e+02
+7 7937     6.079200e+02 2.839500e+02
+12 7937     7.160900e+02 2.945000e+02
+0 7938     -3.939001e+01 7.344000e+01
+3 7938     -3.508002e+01 -2.498500e+02
+10 7938     -1.469300e+02 2.230400e+02
+13 7938     3.192700e+02 -1.645300e+02
+0 7939     -3.112000e+01 7.253998e+01
+7 7939     -1.336900e+02 1.768400e+02
+13 7939     3.274900e+02 -1.652200e+02
+15 7939     -8.559003e+01 2.312300e+02
+0 7940     -1.215997e+01 7.133002e+01
+8 7940     1.091200e+02 2.017999e+01
+10 7940     -1.151200e+02 2.231700e+02
+15 7940     -5.997998e+01 2.325200e+02
+0 7941     -4.500200e+02 6.973999e+01
+10 7941     -6.315300e+02 1.767700e+02
+13 7941     -1.373200e+02 -2.223600e+02
+15 7941     -6.447400e+02 1.687600e+02
+0 7942     8.782200e+02 6.390002e+01
+3 7942     6.540100e+02 -1.283700e+02
+7 7942     7.087100e+02 2.940200e+02
+0 7943     5.619200e+02 6.340002e+01
+6 7943     3.900300e+02 1.900000e+02
+7 7943     4.043300e+02 2.330300e+02
+8 7943     4.520100e+02 -9.700012e+00
+10 7943     5.525699e+02 2.746200e+02
+12 7943     4.760699e+02 2.003000e+02
+13 7943     7.745601e+02 -1.478000e+02
+15 7943     7.459500e+02 3.014500e+02
+0 7944     7.684600e+02 6.340002e+01
+7 7944     6.068900e+02 2.732500e+02
+0 7945     1.430100e+02 6.221002e+01
+12 7945     1.251800e+02 1.834000e+02
+0 7946     -4.505200e+02 6.077002e+01
+10 7946     -6.318100e+02 1.661500e+02
+13 7946     -1.356500e+02 -2.298300e+02
+15 7946     -6.442200e+02 1.570800e+02
+0 7947     7.734900e+02 6.020001e+01
+3 7947     5.630300e+02 -1.800700e+02
+7 7947     6.113199e+02 2.714600e+02
+10 7947     8.037200e+02 2.936000e+02
+12 7947     7.227900e+02 2.804100e+02
+0 7948     8.042700e+02 5.856000e+01
+2 7948     7.386200e+02 1.390000e+02
+3 7948     5.916700e+02 -1.666500e+02
+7 7948     6.410200e+02 2.760400e+02
+9 7948     4.891100e+02 2.241300e+02
+12 7948     7.570500e+02 2.926700e+02
+0 7949     4.947600e+02 5.807001e+01
+7 7949     3.379900e+02 2.140800e+02
+10 7949     4.751100e+02 2.611900e+02
+13 7949     7.052800e+02 -1.625800e+02
+15 7949     6.535300e+02 2.838500e+02
+0 7950     7.786100e+02 5.535999e+01
+2 7950     7.150400e+02 1.231900e+02
+3 7950     5.707400e+02 -1.822300e+02
+7 7950     6.172300e+02 2.674900e+02
+9 7950     4.695500e+02 2.095800e+02
+10 7950     8.099200e+02 2.880700e+02
+12 7950     7.303101e+02 2.757800e+02
+0 7951     8.042200e+02 5.332001e+01
+9 7951     4.898199e+02 2.196100e+02
+0 7952     7.959500e+02 5.240997e+01
+2 7952     7.320200e+02 1.283100e+02
+3 7952     5.870300e+02 -1.759400e+02
+7 7952     6.342200e+02 2.679900e+02
+9 7952     4.844000e+02 2.151200e+02
+12 7952     7.497900e+02 2.812400e+02
+0 7953     -1.637700e+02 5.069000e+01
+2 7953     -1.370700e+02 -4.528003e+01
+3 7953     -2.238600e+02 -3.629200e+02
+4 7953     -2.240000e+02 -2.777100e+02
+6 7953     -3.190300e+02 -1.120001e+01
+7 7953     -2.772400e+02 1.238200e+02
+8 7953     -7.156000e+01 -7.253003e+01
+9 7953     -2.262500e+02 3.932001e+01
+10 7953     -2.896300e+02 1.832900e+02
+12 7953     -2.757000e+02 4.712000e+01
+13 7953     1.853101e+02 -2.024900e+02
+15 7953     -2.584500e+02 1.830200e+02
+0 7954     -4.709998e+01 5.058002e+01
+2 7954     5.529999e+01 4.216998e+01
+4 7954     -2.330800e+02 -3.736700e+02
+5 7954     5.659800e+02 -6.168600e+02
+6 7954     -1.261600e+02 5.122998e+01
+7 7954     -1.462500e+02 1.523000e+02
+8 7954     7.847998e+01 -9.529999e+00
+10 7954     -1.533400e+02 1.948900e+02
+12 7954     -1.048000e+02 1.072300e+02
+13 7954     3.157300e+02 -1.850900e+02
+15 7954     -1.040900e+02 1.995300e+02
+0 7955     7.146000e+02 5.028998e+01
+2 7955     6.506500e+02 8.672998e+01
+3 7955     5.115800e+02 -2.188300e+02
+6 7955     5.789600e+02 2.360500e+02
+7 7955     5.563199e+02 2.504400e+02
+8 7955     5.941100e+02 3.801001e+01
+9 7955     4.166000e+02 1.769400e+02
+0 7956     -4.775200e+02 4.922998e+01
+13 7956     -1.579500e+02 -2.415500e+02
+0 7957     5.674500e+02 4.823999e+01
+7 7957     4.118500e+02 2.192900e+02
+0 7958     7.091200e+02 4.779999e+01
+2 7958     6.461500e+02 8.189001e+01
+3 7958     5.068199e+02 -2.244500e+02
+6 7958     5.738101e+02 2.319900e+02
+7 7958     5.515300e+02 2.469500e+02
+8 7958     5.902200e+02 3.445999e+01
+9 7958     4.130300e+02 1.730300e+02
+10 7958     7.273199e+02 2.717100e+02
+12 7958     6.523900e+02 2.417900e+02
+0 7959     8.380300e+02 4.826001e+01
+3 7959     6.250500e+02 -1.604600e+02
+7 7959     6.737700e+02 2.717300e+02
+9 7959     5.173700e+02 2.287800e+02
+0 7960     5.082000e+02 4.745001e+01
+7 7960     3.534900e+02 2.065700e+02
+10 7960     4.923101e+02 2.502800e+02
+12 7960     4.156899e+02 1.615300e+02
+13 7960     7.205000e+02 -1.700000e+02
+15 7960     6.737700e+02 2.711800e+02
+0 7961     -4.683800e+02 4.678998e+01
+2 7961     -6.480700e+02 -2.513100e+02
+13 7961     -1.480000e+02 -2.428600e+02
+15 7961     -6.668500e+02 1.352300e+02
+0 7962     -8.507001e+01 4.704999e+01
+2 7962     -5.510010e+00 6.710022e+00
+3 7962     -9.472998e+01 -3.071500e+02
+6 7962     -1.880800e+02 2.607001e+01
+7 7962     -1.885100e+02 1.389900e+02
+8 7962     2.969000e+01 -3.526001e+01
+9 7962     -1.155800e+02 8.987000e+01
+12 7962     -1.600700e+02 8.204999e+01
+13 7962     2.728199e+02 -1.937700e+02
+0 7963     2.092900e+02 4.625000e+01
+4 7963     -2.680500e+02 -5.795200e+02
+7 7963     1.134800e+02 1.926600e+02
+13 7963     5.467200e+02 -1.654400e+02
+15 7963     2.443199e+02 2.289600e+02
+0 7964     7.940200e+02 4.353998e+01
+2 7964     7.324399e+02 1.195400e+02
+3 7964     5.872100e+02 -1.849700e+02
+7 7964     6.331400e+02 2.593300e+02
+9 7964     4.834800e+02 2.074200e+02
+12 7964     7.491801e+02 2.702000e+02
+0 7965     8.085601e+02 4.331000e+01
+3 7965     6.015300e+02 -1.781700e+02
+9 7965     4.992400e+02 2.135700e+02
+12 7965     7.704500e+02 2.754000e+02
+0 7966     8.631801e+02 4.119000e+01
+2 7966     8.003000e+02 1.490000e+02
+3 7966     6.497900e+02 -1.543500e+02
+7 7966     6.980400e+02 2.699000e+02
+9 7966     5.390200e+02 2.337500e+02
+0 7967     8.631801e+02 4.119000e+01
+2 7967     8.003000e+02 1.490000e+02
+3 7967     6.497900e+02 -1.543500e+02
+7 7967     6.980400e+02 2.699000e+02
+9 7967     5.390200e+02 2.337500e+02
+12 7967     8.258500e+02 2.930700e+02
+0 7968     6.785100e+02 4.037000e+01
+8 7968     5.652700e+02 1.576001e+01
+0 7969     7.622400e+02 4.012000e+01
+2 7969     7.027600e+02 1.010800e+02
+9 7969     4.597400e+02 1.909100e+02
+10 7969     7.914500e+02 2.687800e+02
+0 7970     7.995699e+02 3.978998e+01
+7 7970     6.389500e+02 2.567800e+02
+9 7970     4.896000e+02 2.080800e+02
+0 7971     -6.053800e+02 3.817999e+01
+7 7971     -7.663200e+02 1.557001e+01
+15 7971     -8.574000e+02 1.045800e+02
+0 7972     -6.053800e+02 3.817999e+01
+7 7972     -7.663200e+02 1.557001e+01
+0 7973     4.924800e+02 3.801001e+01
+7 7973     3.383400e+02 1.948600e+02
+10 7973     4.736500e+02 2.381700e+02
+15 7973     6.520200e+02 2.561700e+02
+0 7974     6.948300e+02 3.720001e+01
+3 7974     4.963000e+02 -2.426800e+02
+7 7974     5.390500e+02 2.339800e+02
+10 7974     7.114301e+02 2.574000e+02
+0 7975     8.254301e+02 3.657001e+01
+7 7975     6.637400e+02 2.588800e+02
+9 7975     5.115000e+02 2.153900e+02
+12 7975     7.861300e+02 2.757400e+02
+0 7976     -1.897500e+02 3.553998e+01
+7 7976     -3.002000e+02 1.042700e+02
+10 7976     -3.182900e+02 1.627100e+02
+12 7976     -3.002300e+02 2.246002e+01
+15 7976     -2.922700e+02 1.587800e+02
+0 7977     7.219900e+02 3.541998e+01
+2 7977     6.628500e+02 7.621997e+01
+7 7977     5.656500e+02 2.375000e+02
+0 7978     5.925400e+02 3.406000e+01
+6 7978     4.365500e+02 1.698300e+02
+7 7978     4.387300e+02 2.110500e+02
+10 7978     5.914000e+02 2.436600e+02
+15 7978     7.926500e+02 2.651900e+02
+0 7979     5.925400e+02 3.406000e+01
+6 7979     4.365500e+02 1.698300e+02
+7 7979     4.387300e+02 2.110500e+02
+10 7979     5.914000e+02 2.436600e+02
+15 7979     7.926500e+02 2.651900e+02
+0 7980     -1.122200e+02 3.278998e+01
+6 7980     -2.247400e+02 -3.789978e+00
+7 7980     -2.162000e+02 1.185300e+02
+10 7980     -2.273600e+02 1.678400e+02
+12 7980     -1.940600e+02 5.339001e+01
+13 7980     2.455800e+02 -2.100400e+02
+15 7980     -1.878600e+02 1.661700e+02
+0 7981     2.339100e+02 3.121002e+01
+13 7981     5.689500e+02 -1.765700e+02
+15 7981     2.804200e+02 2.118000e+02
+0 7982     8.272100e+02 3.046002e+01
+2 7982     7.690100e+02 1.220600e+02
+7 7982     6.659600e+02 2.533600e+02
+9 7982     5.142700e+02 2.109500e+02
+12 7982     7.892500e+02 2.688600e+02
+0 7983     5.128800e+02 2.726001e+01
+7 7983     3.603101e+02 1.878600e+02
+13 7983     7.273700e+02 -1.877900e+02
+15 7983     6.823000e+02 2.439500e+02
+0 7984     -8.380300e+02 2.585999e+01
+13 7984     -4.860100e+02 -2.824200e+02
+0 7985     8.188101e+02 2.571002e+01
+2 7985     7.623900e+02 1.142700e+02
+3 7985     6.168800e+02 -1.888700e+02
+7 7985     6.589100e+02 2.470700e+02
+9 7985     5.086700e+02 2.036100e+02
+0 7986     1.314600e+02 2.528003e+01
+7 7986     4.331000e+01 1.617300e+02
+13 7986     4.873600e+02 -1.881100e+02
+15 7986     1.399000e+02 1.898500e+02
+0 7987     1.314600e+02 2.528003e+01
+7 7987     4.331000e+01 1.617300e+02
+13 7987     4.873600e+02 -1.881100e+02
+0 7988     8.488400e+02 2.384998e+01
+2 7988     7.920800e+02 1.265000e+02
+9 7988     5.331600e+02 2.151400e+02
+12 7988     8.155601e+02 2.714000e+02
+0 7989     8.353900e+02 2.347998e+01
+2 7989     7.781500e+02 1.204200e+02
+3 7989     6.310900e+02 -1.823900e+02
+7 7989     6.737300e+02 2.488300e+02
+9 7989     5.217100e+02 2.094700e+02
+0 7990     5.579100e+02 2.253003e+01
+6 7990     3.964100e+02 1.420500e+02
+7 7990     4.064600e+02 1.921700e+02
+10 7990     5.519700e+02 2.256900e+02
+12 7990     4.823500e+02 1.529100e+02
+13 7990     7.754800e+02 -1.855000e+02
+0 7991     8.239700e+02 2.192999e+01
+2 7991     7.689900e+02 1.127000e+02
+3 7991     6.232900e+02 -1.895600e+02
+7 7991     6.641600e+02 2.443100e+02
+9 7991     5.138400e+02 2.023900e+02
+0 7992     5.861300e+02 1.897998e+01
+6 7992     4.325300e+02 1.504300e+02
+12 7992     5.159500e+02 1.613900e+02
+0 7993     6.711801e+02 1.848999e+01
+6 7993     5.362500e+02 1.849400e+02
+7 7993     5.182600e+02 2.114100e+02
+9 7993     3.873600e+02 1.302100e+02
+0 7994     2.298000e+02 1.496997e+01
+7 7994     1.385500e+02 1.656800e+02
+12 7994     2.330200e+02 1.511700e+02
+13 7994     5.687800e+02 -1.896100e+02
+0 7995     7.248500e+02 1.252002e+01
+2 7995     6.727700e+02 5.488000e+01
+7 7995     5.712400e+02 2.163900e+02
+9 7995     4.359200e+02 1.512000e+02
+10 7995     7.486700e+02 2.322900e+02
+0 7996     -1.211400e+02 1.073999e+01
+6 7996     -2.183100e+02 -2.923999e+01
+12 7996     -1.939100e+02 2.878003e+01
+0 7997     6.447300e+02 9.789978e+00
+2 7997     5.881000e+02 9.880005e+00
+3 7997     4.541899e+02 -2.969500e+02
+6 7997     5.081600e+02 1.641900e+02
+7 7997     4.938199e+02 1.977900e+02
+8 7997     5.410900e+02 -2.247000e+01
+9 7997     3.661100e+02 1.104200e+02
+10 7997     6.544100e+02 2.210000e+02
+12 7997     5.894399e+02 1.743200e+02
+15 7997     8.702200e+02 2.384900e+02
+0 7998     8.422000e+02 9.380005e+00
+3 7998     6.444000e+02 -1.920200e+02
+7 7998     6.831200e+02 2.359500e+02
+9 7998     5.319500e+02 2.008900e+02
+0 7999     6.389000e+02 5.520020e+00
+6 7999     5.001801e+02 1.571100e+02
+7 7999     4.882300e+02 1.927800e+02
+8 7999     5.362500e+02 -2.895001e+01
+9 7999     3.614000e+02 1.032300e+02
+12 7999     5.810300e+02 1.662400e+02
+0 8000     6.646300e+02 5.719971e+00
+2 8000     6.107000e+02 1.640997e+01
+6 8000     5.321400e+02 1.682600e+02
+8 8000     5.598400e+02 -1.823999e+01
+9 8000     3.853000e+02 1.171300e+02
+12 8000     6.118400e+02 1.779100e+02
+0 8001     6.646300e+02 5.719971e+00
+2 8001     6.107000e+02 1.640997e+01
+6 8001     5.321400e+02 1.682600e+02
+7 8001     5.137700e+02 1.978600e+02
+8 8001     5.598400e+02 -1.823999e+01
+9 8001     3.853000e+02 1.171300e+02
+10 8001     6.783600e+02 2.182200e+02
+12 8001     6.118400e+02 1.779100e+02
+0 8002     8.648101e+02 2.830017e+00
+2 8002     8.140800e+02 1.140200e+02
+3 8002     6.652700e+02 -1.871100e+02
+7 8002     7.047700e+02 2.340700e+02
+9 8002     5.514800e+02 2.051800e+02
+0 8003     5.420601e+02 1.599976e+00
+7 8003     3.931500e+02 1.689800e+02
+0 8004     5.420601e+02 1.599976e+00
+7 8004     3.931500e+02 1.689800e+02
+0 8005     6.660100e+02 1.479980e+00
+2 8005     6.129700e+02 1.321997e+01
+6 8005     5.347000e+02 1.645400e+02
+7 8005     5.156100e+02 1.945000e+02
+9 8005     3.874200e+02 1.141000e+02
+10 8005     6.799301e+02 2.138000e+02
+12 8005     6.140100e+02 1.752600e+02
+0 8006     -3.600700e+02 1.460022e+00
+4 8006     -2.387800e+02 -1.255300e+02
+13 8006     -3.854999e+01 -2.741400e+02
+15 8006     -5.130900e+02 8.889999e+01
+0 8007     6.784399e+02 -2.330017e+00
+2 8007     6.280300e+02 1.496002e+01
+7 8007     5.283600e+02 1.927700e+02
+8 8007     5.742800e+02 -1.942001e+01
+9 8007     3.995900e+02 1.164000e+02
+10 8007     6.949100e+02 2.100100e+02
+12 8007     6.297500e+02 1.743500e+02
+0 8008     6.784399e+02 -2.330017e+00
+2 8008     6.280300e+02 1.496002e+01
+6 8008     5.507300e+02 1.646300e+02
+7 8008     5.283600e+02 1.927700e+02
+8 8008     5.742800e+02 -1.942001e+01
+9 8008     3.995900e+02 1.164000e+02
+10 8008     6.949100e+02 2.100100e+02
+12 8008     6.297500e+02 1.743500e+02
+0 8009     6.319900e+02 -2.989990e+00
+7 8009     4.828300e+02 1.829300e+02
+15 8009     8.524500e+02 2.193000e+02
+0 8010     4.973999e+01 -3.250000e+00
+7 8010     -3.266998e+01 1.191300e+02
+0 8011     8.742900e+02 -3.510010e+00
+2 8011     8.244399e+02 1.122400e+02
+3 8011     6.747700e+02 -1.885200e+02
+7 8011     7.142300e+02 2.300500e+02
+9 8011     5.606100e+02 2.041400e+02
+0 8012     4.429993e+00 -4.650024e+00
+2 8012     1.516300e+02 1.678003e+01
+7 8012     -8.002002e+01 1.088900e+02
+10 8012     -8.797998e+01 1.359200e+02
+13 8012     3.766200e+02 -2.258200e+02
+15 8012     -2.802002e+01 1.312200e+02
+0 8013     8.691300e+02 -4.510010e+00
+2 8013     8.201300e+02 1.091500e+02
+3 8013     6.712800e+02 -1.914900e+02
+7 8013     7.094301e+02 2.281000e+02
+9 8013     5.561100e+02 2.012700e+02
+0 8014     5.913300e+02 -6.440002e+00
+7 8014     4.432800e+02 1.714300e+02
+10 8014     5.934000e+02 1.964900e+02
+15 8014     7.960699e+02 2.084900e+02
+0 8015     7.180601e+02 -6.859985e+00
+3 8015     5.371200e+02 -2.725100e+02
+7 8015     5.673500e+02 1.965600e+02
+9 8015     4.372000e+02 1.312500e+02
+12 8015     6.800400e+02 1.835800e+02
+0 8016     8.653500e+02 -7.210022e+00
+2 8016     8.176600e+02 1.046900e+02
+3 8016     6.692500e+02 -1.960300e+02
+7 8016     7.064000e+02 2.246500e+02
+9 8016     5.544100e+02 1.975000e+02
+0 8017     -5.520800e+02 -8.530029e+00
+4 8017     -2.223400e+02 -1.151001e+01
+10 8017     -7.465400e+02 7.314001e+01
+0 8018     8.570900e+02 -8.469971e+00
+7 8018     6.989000e+02 2.221100e+02
+9 8018     5.482300e+02 1.929800e+02
+0 8019     -5.565800e+02 -9.169983e+00
+4 8019     -2.221600e+02 -8.489990e+00
+0 8020     4.737000e+01 -9.700012e+00
+2 8020     2.052500e+02 2.946997e+01
+7 8020     -3.458002e+01 1.122000e+02
+10 8020     -3.721997e+01 1.343900e+02
+0 8021     -1.014000e+02 -1.110999e+01
+7 8021     -1.927600e+02 7.926001e+01
+10 8021     -2.098600e+02 1.178700e+02
+0 8022     7.025800e+02 -1.178003e+01
+3 8022     5.211899e+02 -2.853800e+02
+8 8022     5.983101e+02 -1.797000e+01
+9 8022     4.233300e+02 1.201800e+02
+0 8023     7.025800e+02 -1.178003e+01
+3 8023     5.211899e+02 -2.853800e+02
+6 8023     5.825100e+02 1.638800e+02
+7 8023     5.533600e+02 1.884000e+02
+9 8023     4.233300e+02 1.201800e+02
+0 8024     8.712400e+02 -1.214001e+01
+7 8024     7.127800e+02 2.210100e+02
+0 8025     5.967300e+02 -1.203003e+01
+7 8025     4.492900e+02 1.674800e+02
+10 8025     5.997000e+02 1.915600e+02
+12 8025     5.371200e+02 1.299700e+02
+15 8025     8.036500e+02 2.028800e+02
+0 8026     5.530200e+02 -1.512000e+01
+7 8026     4.071700e+02 1.548000e+02
+10 8026     5.492800e+02 1.824300e+02
+12 8026     4.862800e+02 1.091200e+02
+13 8026     7.750100e+02 -2.202000e+02
+0 8027     -2.608100e+02 -1.542999e+01
+3 8027     -4.431800e+02 -5.835000e+02
+4 8027     -2.612700e+02 -1.872200e+02
+8 8027     -2.234300e+02 -2.241100e+02
+13 8027     5.591998e+01 -2.821500e+02
+0 8028     2.360800e+02 -1.763000e+01
+10 8028     1.822700e+02 1.448300e+02
+13 8028     5.792800e+02 -2.181600e+02
+15 8028     2.895900e+02 1.455300e+02
+0 8029     -2.527002e+01 -1.945001e+01
+3 8029     3.144000e+01 -3.220200e+02
+0 8030     -3.846200e+02 -2.037000e+01
+2 8030     -4.915200e+02 -2.868100e+02
+7 8030     -5.131100e+02 -2.109985e+00
+8 8030     -3.463300e+02 -2.526600e+02
+13 8030     -5.478998e+01 -2.945400e+02
+15 8030     -5.426700e+02 5.510999e+01
+0 8031     7.158900e+02 -2.290997e+01
+2 8031     6.736100e+02 1.392999e+01
+3 8031     5.379600e+02 -2.886000e+02
+7 8031     5.674500e+02 1.803900e+02
+9 8031     4.380100e+02 1.173000e+02
+10 8031     7.407400e+02 1.898500e+02
+12 8031     6.782000e+02 1.660400e+02
+0 8032     5.642900e+02 -2.609998e+01
+7 8032     4.192300e+02 1.469800e+02
+15 8032     7.606600e+02 1.772100e+02
+0 8033     -3.692300e+02 -2.634998e+01
+8 8033     -3.280700e+02 -2.540500e+02
+0 8034     2.896700e+02 -2.697998e+01
+12 8034     3.043300e+02 1.140300e+02
+15 8034     3.651700e+02 1.396600e+02
+0 8035     -5.478003e+01 -3.122998e+01
+2 8035     7.840002e+01 -4.375000e+01
+3 8035     -5.640015e+00 -3.545800e+02
+4 8035     -2.877100e+02 -3.653400e+02
+7 8035     -1.393800e+02 6.925000e+01
+13 8035     3.192200e+02 -2.568100e+02
+15 8035     -1.034500e+02 8.698999e+01
+0 8036     6.792500e+02 -3.313000e+01
+3 8036     5.049700e+02 -3.195300e+02
+6 8036     5.602600e+02 1.306000e+02
+7 8036     5.333000e+02 1.632500e+02
+8 8036     5.819000e+02 -4.545001e+01
+9 8036     4.086000e+02 9.092001e+01
+10 8036     6.986600e+02 1.742200e+02
+12 8036     6.387100e+02 1.400500e+02
+0 8037     7.101200e+02 -3.308002e+01
+2 8037     6.701000e+02 9.400024e-01
+3 8037     5.353199e+02 -3.017700e+02
+7 8037     5.630100e+02 1.696500e+02
+9 8037     4.350300e+02 1.060400e+02
+12 8037     6.739200e+02 1.526700e+02
+0 8038     7.101200e+02 -3.308002e+01
+2 8038     6.701000e+02 9.400024e-01
+3 8038     5.353199e+02 -3.017700e+02
+7 8038     5.630100e+02 1.696500e+02
+9 8038     4.350300e+02 1.060400e+02
+12 8038     6.739200e+02 1.526700e+02
+0 8039     6.851200e+02 -3.414001e+01
+6 8039     5.681200e+02 1.313200e+02
+8 8039     5.874600e+02 -4.348001e+01
+9 8039     4.142400e+02 9.248001e+01
+0 8040     1.608900e+02 -3.459998e+01
+2 8040     3.289301e+02 3.321002e+01
+4 8040     -3.196200e+02 -5.426801e+02
+6 8040     1.588800e+02 3.422998e+01
+8 8040     3.010100e+02 -2.160999e+01
+13 8040     5.202800e+02 -2.370600e+02
+0 8041     -3.734000e+02 -3.585999e+01
+7 8041     -4.975100e+02 -1.528003e+01
+9 8041     -5.022300e+02 -1.949800e+02
+13 8041     -4.140997e+01 -3.073000e+02
+15 8041     -5.255900e+02 3.603998e+01
+0 8042     -3.734000e+02 -3.585999e+01
+7 8042     -4.975100e+02 -1.528003e+01
+15 8042     -5.255900e+02 3.603998e+01
+0 8043     6.660500e+02 -3.853003e+01
+2 8043     6.194500e+02 -2.778998e+01
+3 8043     4.907700e+02 -3.322400e+02
+6 8043     5.392500e+02 1.213000e+02
+7 8043     5.163101e+02 1.573200e+02
+8 8043     5.664399e+02 -5.423999e+01
+9 8043     3.930400e+02 8.012000e+01
+10 8043     6.775699e+02 1.699300e+02
+12 8043     6.184600e+02 1.310900e+02
+0 8044     -1.140500e+02 -3.959998e+01
+2 8044     5.809998e+00 -7.815997e+01
+7 8044     -2.000900e+02 4.859003e+01
+8 8044     3.429999e+01 -1.086800e+02
+13 8044     2.626700e+02 -2.698100e+02
+15 8044     -1.818100e+02 6.709998e+01
+0 8045     -4.712400e+02 -4.079999e+01
+2 8045     -5.942000e+02 -3.295800e+02
+7 8045     -6.002700e+02 -3.840997e+01
+8 8045     -4.295300e+02 -2.869500e+02
+0 8046     2.229999e+01 -4.344000e+01
+6 8046     6.820007e+00 -2.313000e+01
+7 8046     -5.464001e+01 7.407001e+01
+8 8046     1.821400e+02 -5.958002e+01
+10 8046     -6.259003e+01 9.297998e+01
+15 8046     1.049988e+00 8.110999e+01
+0 8047     -1.400100e+02 -4.612000e+01
+7 8047     -2.276200e+02 3.639001e+01
+0 8048     -3.355900e+02 -5.026001e+01
+2 8048     -4.080600e+02 -2.994500e+02
+7 8048     -4.541600e+02 -2.240002e+01
+9 8048     -4.509400e+02 -1.933600e+02
+13 8048     -3.549988e+00 -3.171100e+02
+0 8049     -1.360500e+02 -5.058002e+01
+7 8049     -2.221100e+02 3.266998e+01
+10 8049     -2.458700e+02 6.762000e+01
+15 8049     -2.089700e+02 4.910999e+01
+0 8050     -4.675100e+02 -5.075000e+01
+7 8050     -5.942000e+02 -4.629999e+01
+13 8050     -1.244500e+02 -3.267800e+02
+0 8051     2.886899e+02 -5.122998e+01
+2 8051     4.259800e+02 1.409998e+01
+6 8051     2.732300e+02 4.431000e+01
+7 8051     2.026600e+02 1.072600e+02
+8 8051     3.863000e+02 -3.426999e+01
+10 8051     2.453500e+02 1.111500e+02
+12 8051     3.091100e+02 8.384003e+01
+13 8051     6.205900e+02 -2.458600e+02
+15 8051     3.673700e+02 1.065700e+02
+0 8052     6.983500e+02 -5.690997e+01
+2 8052     6.650699e+02 -3.065002e+01
+3 8052     5.324700e+02 -3.323700e+02
+9 8052     4.313500e+02 8.076999e+01
+12 8052     6.672000e+02 1.205400e+02
+0 8053     7.269000e+02 -5.812000e+01
+2 8053     6.953500e+02 -1.578003e+01
+3 8053     5.614399e+02 -3.168000e+02
+7 8053     5.823500e+02 1.491300e+02
+9 8053     4.569301e+02 9.323999e+01
+12 8053     7.000601e+02 1.319600e+02
+0 8054     1.731200e+02 -5.882001e+01
+6 8054     1.780900e+02 1.076001e+01
+0 8055     -4.391300e+02 -6.659998e+01
+7 8055     -5.597500e+02 -5.771002e+01
+8 8055     -3.836200e+02 -2.998000e+02
+13 8055     -9.478003e+01 -3.385300e+02
+15 8055     -6.119600e+02 -1.559003e+01
+0 8056     7.107100e+02 -7.103998e+01
+7 8056     5.687400e+02 1.332900e+02
+9 8056     4.466801e+02 7.434003e+01
+10 8056     7.379301e+02 1.337900e+02
+12 8056     6.850900e+02 1.106700e+02
+0 8057     8.624000e+02 -7.256000e+01
+7 8057     7.122200e+02 1.622800e+02
+0 8058     1.109800e+02 -7.403003e+01
+2 8058     2.948700e+02 -1.852002e+01
+13 8058     4.822500e+02 -2.757200e+02
+15 8058     1.249600e+02 5.152002e+01
+0 8059     -4.531800e+02 -7.626001e+01
+8 8059     -3.939800e+02 -3.098300e+02
+0 8060     2.422700e+02 -7.672998e+01
+6 8060     2.470100e+02 8.780029e+00
+7 8060     1.655200e+02 7.698999e+01
+12 8060     2.741899e+02 5.015997e+01
+13 8060     5.909900e+02 -2.694100e+02
+0 8061     1.245900e+02 -7.715002e+01
+2 8061     3.088500e+02 -2.001001e+01
+7 8061     5.371997e+01 5.871002e+01
+13 8061     4.940699e+02 -2.772700e+02
+15 8061     1.440601e+02 4.976001e+01
+0 8062     -7.940002e+01 -7.765997e+01
+7 8062     -1.540400e+02 2.031000e+01
+15 8062     -1.312800e+02 2.075000e+01
+0 8063     2.469500e+02 -7.894000e+01
+2 8063     4.118400e+02 -6.750000e+00
+3 8063     3.074800e+02 -3.103100e+02
+6 8063     2.510000e+02 7.229980e+00
+7 8063     1.701500e+02 7.559003e+01
+8 8063     3.709300e+02 -5.389001e+01
+10 8063     2.005000e+02 7.539001e+01
+12 8063     2.789000e+02 4.847998e+01
+13 8063     5.946700e+02 -2.710000e+02
+15 8063     3.125601e+02 6.303998e+01
+0 8064     6.969600e+02 -8.098999e+01
+7 8064     5.568900e+02 1.209400e+02
+10 8064     7.227800e+02 1.201800e+02
+0 8065     6.969600e+02 -8.098999e+01
+3 8065     5.397900e+02 -3.575200e+02
+7 8065     5.568900e+02 1.209400e+02
+9 8065     4.374200e+02 5.901001e+01
+10 8065     7.227800e+02 1.201800e+02
+0 8066     6.926001e+01 -8.892999e+01
+2 8066     2.556899e+02 -4.845001e+01
+4 8066     -3.459600e+02 -4.659301e+02
+7 8066     4.400024e-01 3.708002e+01
+8 8066     2.369600e+02 -8.878003e+01
+10 8066     -4.090027e+00 4.523999e+01
+13 8066     4.460000e+02 -2.928100e+02
+15 8066     7.054999e+01 2.566998e+01
+0 8067     3.998400e+02 -8.966998e+01
+6 8067     3.778600e+02 2.535999e+01
+7 8067     3.088300e+02 8.289001e+01
+10 8067     3.784000e+02 7.903998e+01
+12 8067     4.246801e+02 5.646997e+01
+13 8067     7.129399e+02 -2.749200e+02
+15 8067     5.285699e+02 6.865997e+01
+0 8068     3.957001e+01 -9.128003e+01
+2 8068     2.226899e+02 -6.179999e+01
+3 8068     1.347200e+02 -3.671100e+02
+6 8068     4.233002e+01 -7.196997e+01
+7 8068     -2.952002e+01 2.909998e+01
+8 8068     2.095000e+02 -9.896002e+01
+10 8068     -3.801001e+01 3.941998e+01
+12 8068     5.246997e+01 -2.135999e+01
+13 8068     4.187500e+02 -2.978500e+02
+15 8068     3.091998e+01 1.852002e+01
+0 8069     3.957001e+01 -9.128003e+01
+4 8069     -3.429800e+02 -4.413000e+02
+6 8069     4.233002e+01 -7.196997e+01
+7 8069     -2.952002e+01 2.909998e+01
+8 8069     2.095000e+02 -9.896002e+01
+10 8069     -3.801001e+01 3.941998e+01
+13 8069     4.187500e+02 -2.978500e+02
+15 8069     3.091998e+01 1.852002e+01
+0 8070     -3.196997e+01 -9.309003e+01
+7 8070     -1.019000e+02 1.384998e+01
+15 8070     -6.532001e+01 6.400024e+00
+0 8071     -3.196997e+01 -9.309003e+01
+7 8071     -1.019000e+02 1.384998e+01
+15 8071     -6.532001e+01 6.400024e+00
+0 8072     6.945500e+02 -9.298999e+01
+2 8072     6.723000e+02 -6.995001e+01
+12 8072     6.728400e+02 7.910999e+01
+0 8073     5.358800e+02 -9.753003e+01
+7 8073     4.099000e+02 7.764001e+01
+12 8073     5.073800e+02 2.698999e+01
+0 8074     -3.023999e+01 -9.801001e+01
+7 8074     -9.884003e+01 9.559998e+00
+0 8075     7.373600e+02 -9.958002e+01
+2 8075     7.181700e+02 -5.201001e+01
+7 8075     5.975500e+02 1.117700e+02
+9 8075     4.768101e+02 6.366998e+01
+10 8075     7.714301e+02 1.041800e+02
+0 8076     7.315300e+02 -1.008900e+02
+2 8076     7.144399e+02 -5.677002e+01
+3 8076     5.823800e+02 -3.561900e+02
+7 8076     5.927700e+02 1.090400e+02
+9 8076     4.733700e+02 5.965997e+01
+12 8076     7.174100e+02 8.638000e+01
+0 8077     7.315300e+02 -1.008900e+02
+2 8077     7.144399e+02 -5.677002e+01
+7 8077     5.927700e+02 1.090400e+02
+9 8077     4.733700e+02 5.965997e+01
+12 8077     7.174100e+02 8.638000e+01
+0 8078     6.987500e+02 -1.022500e+02
+7 8078     5.613101e+02 1.009700e+02
+0 8079     5.602200e+02 -1.052400e+02
+12 8079     5.357800e+02 2.622998e+01
+0 8080     -9.021002e+01 -1.060200e+02
+7 8080     -1.605600e+02 -1.159003e+01
+15 8080     -1.402800e+02 -1.920001e+01
+0 8081     5.324100e+02 -1.071200e+02
+12 8081     5.075300e+02 1.689001e+01
+0 8082     2.954500e+02 -1.132800e+02
+7 8082     2.212700e+02 4.896997e+01
+15 8082     3.838600e+02 2.306000e+01
+0 8083     6.572800e+02 -1.135200e+02
+7 8083     5.227800e+02 8.142001e+01
+0 8084     -7.996997e+01 -1.158600e+02
+7 8084     -1.483700e+02 -1.928998e+01
+0 8085     7.272200e+02 -1.175600e+02
+7 8085     5.906801e+02 9.192001e+01
+0 8086     -3.228300e+02 -1.205500e+02
+2 8086     -3.418300e+02 -3.561700e+02
+6 8086     -5.184200e+02 -3.153300e+02
+13 8086     2.607001e+01 -3.773200e+02
+0 8087     6.539001e+01 -1.228500e+02
+10 8087     -4.969971e+00 5.789978e+00
+13 8087     4.457800e+02 -3.232500e+02
+0 8088     5.454100e+02 -1.252700e+02
+6 8088     4.567700e+02 -1.258002e+01
+7 8088     4.249100e+02 5.422998e+01
+12 8088     5.299500e+02 3.380005e+00
+0 8089     5.454100e+02 -1.252700e+02
+6 8089     4.567700e+02 -1.258002e+01
+8 8089     5.095400e+02 -1.476800e+02
+12 8089     5.299500e+02 3.380005e+00
+13 8089     8.012000e+02 -3.151200e+02
+0 8090     -1.087100e+02 -1.306600e+02
+3 8090     -5.150024e+00 -4.588600e+02
+6 8090     -1.164500e+02 -1.737400e+02
+7 8090     -1.719800e+02 -3.791998e+01
+10 8090     -2.035100e+02 -2.137000e+01
+15 8090     -1.612100e+02 -5.426001e+01
+0 8091     5.515900e+02 -1.321800e+02
+12 8091     5.387500e+02 -1.549988e+00
+0 8092     5.515900e+02 -1.321800e+02
+12 8092     5.387500e+02 -1.549988e+00
+0 8093     7.572200e+02 -1.322600e+02
+2 8093     7.493101e+02 -7.532001e+01
+7 8093     6.218900e+02 8.419000e+01
+9 8093     5.027400e+02 4.566998e+01
+0 8094     7.572200e+02 -1.322600e+02
+2 8094     7.493101e+02 -7.532001e+01
+7 8094     6.218900e+02 8.419000e+01
+9 8094     5.027400e+02 4.566998e+01
+10 8094     7.979500e+02 6.765002e+01
+12 8094     7.542000e+02 6.203003e+01
+0 8095     6.834003e+01 -1.396200e+02
+7 8095     9.510010e+00 -1.247998e+01
+10 8095     -4.099731e-01 -1.357001e+01
+15 8095     7.542999e+01 -4.290002e+01
+0 8096     -1.246300e+02 -1.449400e+02
+2 8096     5.726001e+01 -1.757100e+02
+3 8096     -1.727002e+01 -4.825200e+02
+6 8096     -1.309100e+02 -1.979200e+02
+8 8096     6.996997e+01 -1.901900e+02
+10 8096     -2.222300e+02 -4.013000e+01
+15 8096     -1.826300e+02 -7.613000e+01
+0 8097     2.680699e+02 -1.449900e+02
+7 8097     2.020400e+02 1.425000e+01
+13 8097     6.232300e+02 -3.276100e+02
+0 8098     8.236300e+02 -1.465500e+02
+2 8098     8.217900e+02 -5.291998e+01
+3 8098     6.861899e+02 -3.482400e+02
+7 8098     6.858400e+02 8.441000e+01
+9 8098     5.614700e+02 6.670001e+01
+0 8099     -1.241998e+01 -1.536300e+02
+2 8099     1.922200e+02 -1.429000e+02
+7 8099     -7.048999e+01 -4.260999e+01
+10 8099     -9.142999e+01 -3.832001e+01
+15 8099     -3.103003e+01 -7.275000e+01
+0 8100     -1.241998e+01 -1.536300e+02
+2 8100     1.922200e+02 -1.429000e+02
+7 8100     -7.048999e+01 -4.260999e+01
+10 8100     -9.142999e+01 -3.832001e+01
+15 8100     -3.103003e+01 -7.275000e+01
+0 8101     -8.634003e+01 -1.587700e+02
+2 8101     1.148300e+02 -1.657100e+02
+3 8101     3.891998e+01 -4.702300e+02
+4 8101     -3.719500e+02 -3.432300e+02
+6 8101     -7.188000e+01 -1.931500e+02
+7 8101     -1.436300e+02 -6.096997e+01
+8 8101     1.162000e+02 -1.847500e+02
+10 8101     -1.761400e+02 -5.233002e+01
+12 8101     -7.438000e+01 -1.387200e+02
+13 8101     3.158400e+02 -3.675000e+02
+15 8101     -1.298900e+02 -8.978003e+01
+0 8102     -1.381600e+02 -1.612000e+02
+4 8102     -3.669700e+02 -2.978000e+02
+10 8102     -2.361300e+02 -5.971002e+01
+15 8102     -1.980600e+02 -9.977002e+01
+0 8103     8.348900e+02 -1.632400e+02
+7 8103     6.981100e+02 7.109003e+01
+9 8103     5.744301e+02 5.867999e+01
+0 8104     8.687200e+02 -1.644600e+02
+3 8104     7.345900e+02 -3.399500e+02
+9 8104     6.017700e+02 7.359003e+01
+0 8105     3.520000e+02 -1.670500e+02
+6 8105     3.811600e+02 -5.939001e+01
+12 8105     4.163800e+02 -2.654999e+01
+0 8106     3.655000e+02 -1.676900e+02
+6 8106     3.959600e+02 -5.528998e+01
+10 8106     3.466600e+02 -1.456000e+01
+15 8106     4.887900e+02 -4.226001e+01
+0 8107     5.340027e+00 -1.691700e+02
+7 8107     -4.929999e+01 -5.423999e+01
+15 8107     -4.969971e+00 -9.133002e+01
+0 8108     -1.984003e+01 -1.724200e+02
+7 8108     -7.353003e+01 -6.191998e+01
+10 8108     -9.791998e+01 -6.103003e+01
+0 8109     2.633002e+01 -1.739600e+02
+7 8109     -2.758002e+01 -5.515002e+01
+10 8109     -4.440997e+01 -5.747998e+01
+0 8110     6.548900e+02 -1.790000e+02
+7 8110     5.352900e+02 2.290002e+01
+0 8111     2.791899e+02 -1.807800e+02
+10 8111     2.475400e+02 -3.871997e+01
+13 8111     6.382100e+02 -3.587400e+02
+0 8112     8.221600e+02 -1.817200e+02
+7 8112     6.888900e+02 5.071002e+01
+9 8112     5.702100e+02 3.790002e+01
+0 8113     8.221600e+02 -1.817200e+02
+7 8113     6.888900e+02 5.071002e+01
+0 8114     -2.096002e+01 -1.822600e+02
+6 8114     1.513000e+01 -1.937700e+02
+12 8114     1.438000e+01 -1.437500e+02
+0 8115     8.643600e+02 -1.880600e+02
+3 8115     7.386500e+02 -3.658800e+02
+7 8115     7.279399e+02 5.309998e+01
+9 8115     6.038500e+02 5.169000e+01
+0 8116     8.694000e+02 -1.888200e+02
+7 8116     7.332500e+02 5.410999e+01
+0 8117     3.676001e+01 -1.934300e+02
+2 8117     2.707200e+02 -1.607100e+02
+3 8117     1.880900e+02 -4.606500e+02
+4 8117     -4.197300e+02 -4.401300e+02
+6 8117     8.544000e+01 -1.848700e+02
+7 8117     -1.195001e+01 -7.156000e+01
+8 8117     2.441500e+02 -1.832700e+02
+10 8117     -3.032001e+01 -7.892999e+01
+12 8117     8.765002e+01 -1.382500e+02
+13 8117     4.334100e+02 -3.870500e+02
+15 8117     4.020001e+01 -1.199900e+02
+0 8118     -8.521002e+01 -1.990300e+02
+2 8118     1.171500e+02 -2.293900e+02
+3 8118     4.178998e+01 -5.344700e+02
+6 8118     -6.945001e+01 -2.492700e+02
+8 8118     1.178200e+02 -2.354200e+02
+9 8118     2.070007e+00 -1.008200e+02
+12 8118     -6.863000e+01 -1.962400e+02
+15 8118     -1.219700e+02 -1.443500e+02
+0 8119     3.119500e+02 -1.990100e+02
+2 8119     5.223101e+02 -1.068500e+02
+3 8119     4.192700e+02 -4.022100e+02
+6 8119     3.632600e+02 -1.006000e+02
+10 8119     2.873600e+02 -5.572998e+01
+12 8119     3.911500e+02 -6.714001e+01
+13 8119     6.719399e+02 -3.711100e+02
+15 8119     4.170000e+02 -9.171002e+01
+0 8120     2.085601e+02 -2.008900e+02
+7 8120     1.564500e+02 -4.890002e+01
+13 8120     5.836300e+02 -3.801700e+02
+15 8120     2.749500e+02 -1.071700e+02
+0 8121     -4.584998e+01 -2.068900e+02
+12 8121     -1.179993e+00 -1.759900e+02
+15 8121     -6.995001e+01 -1.491700e+02
+0 8122     8.512000e+01 -2.118700e+02
+6 8122     1.478800e+02 -1.852200e+02
+13 8122     4.808400e+02 -3.986400e+02
+15 8122     1.080100e+02 -1.387300e+02
+0 8123     8.512000e+01 -2.118700e+02
+6 8123     1.478800e+02 -1.852200e+02
+0 8124     6.546500e+02 -2.168300e+02
+12 8124     6.817200e+02 -5.535999e+01
+0 8125     -4.693600e+02 -2.189300e+02
+4 8125     -3.617000e+02 -5.058002e+01
+7 8125     -5.547100e+02 -2.138200e+02
+15 8125     -6.338500e+02 -2.256000e+02
+0 8126     -3.305900e+02 -2.199500e+02
+7 8126     -4.073900e+02 -1.870600e+02
+0 8127     2.615601e+02 -2.197400e+02
+2 8127     4.967100e+02 -1.286200e+02
+3 8127     3.979200e+02 -4.232100e+02
+6 8127     3.282100e+02 -1.352000e+02
+8 8127     4.364200e+02 -1.585100e+02
+10 8127     2.313900e+02 -8.504999e+01
+12 8127     3.488900e+02 -1.002800e+02
+13 8127     6.355300e+02 -3.920900e+02
+15 8127     3.495400e+02 -1.263300e+02
+0 8128     -3.222800e+02 -2.241000e+02
+7 8128     -3.973400e+02 -1.893600e+02
+0 8129     3.331000e+01 -2.300600e+02
+2 8129     2.842700e+02 -1.980400e+02
+3 8129     2.039700e+02 -4.967900e+02
+6 8129     9.763000e+01 -2.259301e+02
+8 8129     2.536500e+02 -2.147900e+02
+10 8129     -3.028003e+01 -1.220000e+02
+12 8129     9.684998e+01 -1.811300e+02
+13 8129     4.364100e+02 -4.208500e+02
+15 8129     4.065002e+01 -1.708200e+02
+0 8130     2.454301e+02 -2.316000e+02
+6 8130     3.203200e+02 -1.508800e+02
+8 8130     4.307100e+02 -1.680500e+02
+10 8130     2.137000e+02 -1.007200e+02
+12 8130     3.384800e+02 -1.156100e+02
+15 8130     3.285900e+02 -1.447000e+02
+0 8131     2.454301e+02 -2.316000e+02
+7 8131     1.997000e+02 -7.100000e+01
+10 8131     2.137000e+02 -1.007200e+02
+15 8131     3.285900e+02 -1.447000e+02
+0 8132     -4.719100e+02 -2.321000e+02
+4 8132     -3.695900e+02 -4.813000e+01
+0 8133     -3.184600e+02 -2.327600e+02
+7 8133     -3.919500e+02 -1.969100e+02
+10 8133     -4.384900e+02 -1.622800e+02
+0 8134     -3.366200e+02 -2.352100e+02
+7 8134     -4.099700e+02 -2.030700e+02
+0 8135     1.440000e+02 -2.364300e+02
+7 8135     1.031500e+02 -9.339001e+01
+10 8135     9.769000e+01 -1.166500e+02
+15 8135     1.905800e+02 -1.640100e+02
+0 8136     5.658700e+02 -2.382700e+02
+6 8136     5.414800e+02 -1.141600e+02
+7 8136     4.702800e+02 -4.335999e+01
+12 8136     6.039399e+02 -9.808002e+01
+0 8137     1.466998e+01 -2.433300e+02
+2 8137     2.597000e+02 -2.298800e+02
+3 8137     1.811300e+02 -5.286500e+02
+4 8137     -4.547600e+02 -4.186100e+02
+6 8137     7.353998e+01 -2.531300e+02
+7 8137     -2.698999e+01 -1.269500e+02
+8 8137     2.334800e+02 -2.395800e+02
+9 8137     1.205900e+02 -9.402002e+01
+10 8137     -5.087000e+01 -1.372000e+02
+12 8137     7.348999e+01 -2.074400e+02
+15 8137     1.747998e+01 -1.902800e+02
+0 8138     -8.870001e+01 -2.480700e+02
+7 8138     -1.376800e+02 -1.572700e+02
+9 8138     0.000000e+00 -1.691100e+02
+15 8138     -1.188300e+02 -2.111000e+02
+0 8139     1.611200e+02 -2.573600e+02
+2 8139     4.171801e+02 -1.971400e+02
+3 8139     3.285300e+02 -4.924301e+02
+6 8139     2.387300e+02 -2.127100e+02
+7 8139     1.210300e+02 -1.127800e+02
+8 8139     3.662000e+02 -2.153500e+02
+9 8139     2.471300e+02 -6.116998e+01
+10 8139     1.193200e+02 -1.388300e+02
+12 8139     2.493600e+02 -1.755500e+02
+15 8139     2.174600e+02 -1.901700e+02
+0 8140     3.265800e+02 -2.623900e+02
+7 8140     2.699900e+02 -9.576001e+01
+0 8141     -2.974800e+02 -2.635800e+02
+8 8141     -1.352100e+02 -4.185700e+02
+10 8141     -4.100800e+02 -1.968300e+02
+13 8141     8.398999e+01 -5.009600e+02
+15 8141     -3.936200e+02 -2.610600e+02
+0 8142     -8.832001e+01 -2.646200e+02
+2 8142     1.118700e+02 -3.349000e+02
+7 8142     -1.352800e+02 -1.741300e+02
+8 8142     1.142100e+02 -3.181200e+02
+9 8142     2.320007e+00 -1.890000e+02
+10 8142     -1.666900e+02 -1.738400e+02
+15 8142     -1.152500e+02 -2.327500e+02
+0 8143     6.301200e+02 -2.647100e+02
+2 8143     7.167000e+02 -2.156300e+02
+12 8143     6.804600e+02 -1.071600e+02
+0 8144     2.861801e+02 -2.769400e+02
+7 8144     2.359500e+02 -1.157700e+02
+10 8144     2.641801e+02 -1.483400e+02
+15 8144     3.933800e+02 -2.014800e+02
+0 8145     2.009399e+02 -2.833000e+02
+4 8145     -5.295600e+02 -5.746400e+02
+0 8146     -2.532900e+02 -2.865900e+02
+13 8146     1.336800e+02 -5.162300e+02
+0 8147     7.613400e+02 -2.899100e+02
+7 8147     6.538500e+02 -5.941998e+01
+0 8148     1.646000e+02 -3.142800e+02
+7 8148     1.292400e+02 -1.725100e+02
+0 8149     1.694100e+02 -3.166200e+02
+7 8149     1.337100e+02 -1.739000e+02
+15 8149     2.384200e+02 -2.693900e+02
+0 8150     1.694100e+02 -3.166200e+02
+7 8150     1.337100e+02 -1.739000e+02
+10 8150     1.347000e+02 -2.058900e+02
+15 8150     2.384200e+02 -2.693900e+02
+0 8151     1.619600e+02 -3.213700e+02
+13 8151     5.483300e+02 -5.009900e+02
+15 8151     2.287900e+02 -2.768500e+02
+0 8152     1.619600e+02 -3.213700e+02
+7 8152     1.270900e+02 -1.800800e+02
+10 8152     1.270700e+02 -2.116200e+02
+15 8152     2.287900e+02 -2.768500e+02
+0 8153     -3.901001e+01 -3.230100e+02
+4 8153     -5.110700e+02 -3.616800e+02
+6 8153     1.322998e+01 -3.872600e+02
+7 8153     -7.378998e+01 -2.225500e+02
+10 8153     -1.038100e+02 -2.357100e+02
+12 8153     1.623999e+01 -3.410400e+02
+13 8153     3.598300e+02 -5.225601e+02
+15 8153     -4.190002e+01 -3.051000e+02
+0 8154     2.075601e+02 -3.244400e+02
+2 8154     4.543900e+02 -2.959200e+02
+3 8154     3.668700e+02 -5.915800e+02
+4 8154     -5.686800e+02 -5.734700e+02
+6 8154     2.837500e+02 -2.886400e+02
+8 8154     3.992600e+02 -2.927900e+02
+12 8154     3.035400e+02 -2.569500e+02
+15 8154     2.928300e+02 -2.753700e+02
+0 8155     2.080400e+02 -3.351900e+02
+2 8155     4.551700e+02 -3.136400e+02
+7 8155     1.711400e+02 -1.871700e+02
+10 8155     1.815800e+02 -2.225400e+02
+12 8155     3.061801e+02 -2.721900e+02
+13 8155     5.859900e+02 -5.128000e+02
+15 8155     2.948800e+02 -2.899900e+02
+0 8156     6.139001e+01 -3.387300e+02
+2 8156     3.129900e+02 -3.607700e+02
+7 8156     2.922998e+01 -2.181700e+02
+8 8156     2.782100e+02 -3.439800e+02
+9 8156     1.687500e+02 -2.013200e+02
+10 8156     1.409998e+01 -2.425200e+02
+13 8156     4.544200e+02 -5.275500e+02
+15 8156     9.621002e+01 -3.133700e+02
+0 8157     7.245100e+02 -3.770100e+02
+7 8157     6.414700e+02 -1.425900e+02
+12 8157     8.268700e+02 -1.874600e+02
+0 8158     -1.484998e+01 -3.773400e+02
+7 8158     -3.797998e+01 -2.706200e+02
+15 8158     -2.460022e+00 -3.751700e+02
+0 8159     4.918000e+02 -3.837900e+02
+6 8159     5.539100e+02 -2.774301e+02
+0 8160     4.754900e+02 -3.905100e+02
+6 8160     5.425800e+02 -2.892000e+02
+7 8160     4.227100e+02 -1.980500e+02
+0 8161     4.754900e+02 -3.905100e+02
+7 8161     4.227100e+02 -1.980500e+02
+0 8162     4.803900e+02 -3.905500e+02
+6 8162     5.470699e+02 -2.880300e+02
+0 8163     6.253800e+02 -3.959400e+02
+7 8163     5.591300e+02 -1.767100e+02
+12 8163     7.407900e+02 -2.342600e+02
+0 8164     -2.577900e+02 -4.028600e+02
+6 8164     -2.310900e+02 -5.938101e+02
+7 8164     -2.856200e+02 -3.510900e+02
+9 8164     -1.159700e+02 -4.064700e+02
+0 8165     -1.842999e+01 -4.076700e+02
+7 8165     -3.954999e+01 -3.040700e+02
+15 8165     -2.270020e+00 -4.168200e+02
+0 8166     6.127400e+02 -4.086600e+02
+7 8166     5.508600e+02 -1.902800e+02
+15 8166     8.684900e+02 -3.421700e+02
+0 8167     4.451300e+02 -4.098300e+02
+6 8167     5.245800e+02 -3.184200e+02
+0 8168     7.888800e+02 -4.100000e+02
+7 8168     7.030000e+02 -1.604600e+02
+0 8169     -1.427400e+02 -4.175800e+02
+7 8169     -1.638500e+02 -3.402300e+02
+15 8169     -1.678300e+02 -4.463500e+02
+0 8170     5.531801e+02 -4.183500e+02
+10 8170     5.857400e+02 -2.817900e+02
+12 8170     6.793300e+02 -2.763000e+02
+15 8170     7.855200e+02 -3.625400e+02
+0 8171     4.685000e+02 -4.252200e+02
+6 8171     5.566801e+02 -3.246400e+02
+7 8171     4.250200e+02 -2.309900e+02
+0 8172     6.364600e+02 -4.262500e+02
+7 8172     5.756600e+02 -2.014100e+02
+12 8172     7.657700e+02 -2.591500e+02
+0 8173     8.707001e+01 -4.343000e+02
+7 8173     7.084998e+01 -3.085800e+02
+0 8174     8.363900e+02 -4.391801e+02
+7 8174     7.489500e+02 -1.774700e+02
+0 8175     4.448500e+02 -4.465400e+02
+7 8175     4.087500e+02 -2.548000e+02
+0 8176     7.566500e+02 -4.466000e+02
+7 8176     6.841000e+02 -1.982100e+02
+0 8177     5.584900e+02 -4.914399e+02
+10 8177     5.989399e+02 -3.645500e+02
+12 8177     7.215601e+02 -3.460100e+02
+0 8178     4.491899e+02 -4.968600e+02
+6 8178     5.800200e+02 -3.986500e+02
+0 8179     -1.762200e+02 -4.997200e+02
+6 8179     -6.653003e+01 -6.580601e+02
+0 8180     3.974000e+02 -5.090300e+02
+2 8180     6.997700e+02 -4.465601e+02
+0 8181     1.211000e+02 -5.207200e+02
+2 8181     4.575699e+02 -5.462800e+02
+0 8182     -3.100100e+02 -5.259000e+02
+7 8182     -3.091300e+02 -4.826200e+02
+0 8183     4.059998e+00 -5.358600e+02
+7 8183     1.141998e+01 -4.245300e+02
+0 8184     7.337000e+02 -5.367300e+02
+7 8184     6.838101e+02 -2.820500e+02
+0 8185     1.703003e+01 -5.399500e+02
+9 8185     2.272500e+02 -3.922100e+02
+0 8186     -6.926001e+01 -5.427000e+02
+4 8186     -6.973600e+02 -3.316900e+02
+7 8186     -5.963000e+01 -4.467400e+02
+9 8186     1.594399e+02 -4.256100e+02
+10 8186     -1.141300e+02 -4.916801e+02
+0 8187     2.316998e+01 -5.484100e+02
+2 8187     3.809900e+02 -6.041899e+02
+7 8187     3.265002e+01 -4.321700e+02
+9 8187     2.382600e+02 -3.951900e+02
+12 8187     1.749600e+02 -5.848800e+02
+0 8188     -7.789900e+02 -5.496300e+02
+4 8188     -5.396900e+02 1.681800e+02
+0 8189     5.079399e+02 -5.519200e+02
+7 8189     4.903000e+02 -3.379500e+02
+12 8189     7.018500e+02 -4.215900e+02
+0 8190     -1.462000e+01 -5.540400e+02
+4 8190     -7.225600e+02 -3.777100e+02
+7 8190     -2.830017e+00 -4.454301e+02
+9 8190     2.121500e+02 -4.122800e+02
+0 8191     5.840500e+02 -5.596700e+02
+7 8191     5.599700e+02 -3.307500e+02
+0 8192     -1.706000e+01 -5.618700e+02
+4 8192     -7.307900e+02 -3.766700e+02
+7 8192     -3.140015e+00 -4.537200e+02
+9 8192     2.168101e+02 -4.184600e+02
+12 8192     1.361600e+02 -6.147800e+02
+0 8193     9.625000e+01 -5.786899e+02
+7 8193     1.116000e+02 -4.460699e+02
+10 8193     7.879999e+01 -5.135900e+02
+0 8194     3.953800e+02 -5.785000e+02
+7 8194     3.944000e+02 -3.848300e+02
+0 8195     -2.902800e+02 -5.793101e+02
+6 8195     -1.458300e+02 -8.007900e+02
+7 8195     -2.749600e+02 -5.310699e+02
+0 8196     5.113000e+01 -5.800100e+02
+4 8196     -7.676700e+02 -4.369600e+02
+7 8196     6.826001e+01 -4.565300e+02
+9 8196     2.835699e+02 -4.046500e+02
+12 8196     2.233000e+02 -6.101700e+02
+0 8197     5.113000e+01 -5.800100e+02
+7 8197     6.826001e+01 -4.565300e+02
+0 8198     5.844600e+02 5.842200e+02
+2 8198     3.291600e+02 4.858500e+02
+3 8198     1.829900e+02 1.490700e+02
+6 8198     2.473700e+02 7.658200e+02
+11 8198     6.486000e+02 -1.628800e+02
+0 8199     -3.157900e+02 5.799700e+02
+2 8199     -6.001100e+02 3.569900e+02
+4 8199     8.027002e+01 -1.890700e+02
+5 8199     1.050400e+02 -6.722998e+01
+8 8199     -4.138200e+02 2.686500e+02
+12 8199     -6.719500e+02 5.657900e+02
+13 8199     -5.647998e+01 2.219400e+02
+0 8200     -2.322200e+02 5.789200e+02
+4 8200     7.429999e+01 -2.339200e+02
+11 8200     -5.744000e+01 -2.023300e+02
+13 8200     9.030029e+00 2.250700e+02
+0 8201     3.804399e+02 5.781400e+02
+2 8201     3.072998e+01 3.471500e+02
+5 8201     7.807900e+02 -5.644000e+01
+6 8201     -8.767001e+01 6.948300e+02
+9 8201     -1.283500e+02 3.768100e+02
+11 8201     4.839200e+02 -1.778900e+02
+13 8201     4.877800e+02 2.597600e+02
+14 8201     6.775900e+02 -1.375200e+02
+0 8202     -4.515500e+02 5.756100e+02
+2 8202     -7.419000e+02 3.558500e+02
+8 8202     -5.289600e+02 2.642600e+02
+11 8202     -2.417900e+02 -2.057300e+02
+13 8202     -1.622400e+02 2.126200e+02
+14 8202     -1.096600e+02 -1.671900e+02
+0 8203     -4.515500e+02 5.756100e+02
+2 8203     -7.419000e+02 3.558500e+02
+8 8203     -5.289600e+02 2.642600e+02
+13 8203     -1.622400e+02 2.126200e+02
+14 8203     -1.096600e+02 -1.671900e+02
+0 8204     9.291998e+01 5.758700e+02
+2 8204     -2.131700e+02 3.447200e+02
+3 8204     -3.460400e+02 1.128003e+01
+4 8204     5.329999e+01 -4.227600e+02
+5 8204     4.968500e+02 -6.883002e+01
+6 8204     -3.906000e+02 6.370900e+02
+9 8204     -3.361200e+02 3.673400e+02
+0 8205     5.939100e+02 5.744700e+02
+6 8205     2.617800e+02 7.576200e+02
+8 8205     3.489300e+02 3.716800e+02
+9 8205     1.430100e+02 5.021600e+02
+0 8206     3.287000e+02 5.698400e+02
+5 8206     7.290100e+02 -6.754999e+01
+8 8206     6.915002e+01 2.655300e+02
+13 8206     4.435300e+02 2.486100e+02
+0 8207     -5.894200e+02 5.691400e+02
+13 8207     -2.697400e+02 2.017300e+02
+14 8207     -2.387800e+02 -1.740500e+02
+0 8208     -5.894200e+02 5.691400e+02
+4 8208     8.903003e+01 -4.831000e+01
+5 8208     -1.547100e+02 -7.988000e+01
+11 8208     -3.541100e+02 -2.123700e+02
+13 8208     -2.697400e+02 2.017300e+02
+14 8208     -2.387800e+02 -1.740500e+02
+0 8209     -4.017400e+02 5.662000e+02
+2 8209     -6.890600e+02 3.424600e+02
+4 8209     7.765002e+01 -1.421000e+02
+5 8209     2.140002e+01 -8.178003e+01
+12 8209     -7.724300e+02 5.363400e+02
+13 8209     -1.238400e+02 2.069800e+02
+14 8209     -6.452002e+01 -1.763500e+02
+0 8210     -1.635600e+02 5.636400e+02
+2 8210     -4.496100e+02 3.346000e+02
+3 8210     -5.742500e+02 4.969971e+00
+4 8210     6.134998e+01 -2.703200e+02
+5 8210     2.492400e+02 -8.527002e+01
+12 8210     -4.947100e+02 5.624100e+02
+13 8210     6.228003e+01 2.151000e+02
+14 8210     1.593000e+02 -1.754300e+02
+0 8211     1.414001e+01 5.629700e+02
+6 8211     -4.756700e+02 6.064100e+02
+8 8211     -1.540300e+02 2.538300e+02
+11 8211     1.562900e+02 -2.093100e+02
+12 8211     -3.003800e+02 5.835400e+02
+0 8212     2.350500e+02 5.621200e+02
+8 8212     7.000000e+00 2.555500e+02
+13 8212     3.734900e+02 2.372800e+02
+0 8213     2.350500e+02 5.621200e+02
+8 8213     7.000000e+00 2.555500e+02
+13 8213     3.734900e+02 2.372800e+02
+0 8214     -4.870000e+02 5.610500e+02
+2 8214     -7.801600e+02 3.388500e+02
+4 8214     8.047998e+01 -9.821002e+01
+11 8214     -2.721500e+02 -2.185200e+02
+0 8215     4.125000e+02 5.601300e+02
+2 8215     5.953003e+01 3.287600e+02
+13 8215     5.140300e+02 2.469000e+02
+14 8215     7.103700e+02 -1.540400e+02
+0 8216     -3.447700e+02 5.576700e+02
+2 8216     -6.290100e+02 3.307900e+02
+0 8217     4.379600e+02 5.571900e+02
+6 8217     -2.428003e+01 6.807100e+02
+9 8217     -8.633002e+01 3.600500e+02
+11 8217     5.393700e+02 -1.923700e+02
+13 8217     5.346600e+02 2.460000e+02
+14 8217     7.358400e+02 -1.555400e+02
+0 8218     5.702100e+02 5.538300e+02
+2 8218     3.214301e+02 4.550200e+02
+3 8218     1.767800e+02 1.200900e+02
+6 8218     2.370500e+02 7.301100e+02
+8 8218     3.321500e+02 3.513400e+02
+11 8218     6.416400e+02 -1.886600e+02
+0 8219     -4.387500e+02 5.498700e+02
+13 8219     -1.530200e+02 1.924700e+02
+0 8220     -5.604300e+02 5.483100e+02
+4 8220     7.848999e+01 -5.996002e+01
+5 8220     -1.310600e+02 -9.815002e+01
+13 8220     -2.485000e+02 1.853800e+02
+14 8220     -2.149300e+02 -1.946300e+02
+0 8221     2.644800e+02 5.474600e+02
+11 8221     3.820100e+02 -2.115600e+02
+14 8221     5.669200e+02 -1.755700e+02
+0 8222     5.200699e+02 5.482500e+02
+6 8222     1.778200e+02 7.085000e+02
+9 8222     8.204999e+01 4.580600e+02
+11 8222     6.004500e+02 -1.982600e+02
+13 8222     6.591600e+02 2.538100e+02
+0 8223     2.139800e+02 5.474400e+02
+4 8223     2.979999e+01 -4.996300e+02
+5 8223     6.155300e+02 -9.433002e+01
+6 8223     -2.552900e+02 6.257800e+02
+8 8223     -6.349976e+00 2.458800e+02
+9 8223     -2.427100e+02 3.441500e+02
+11 8223     3.358600e+02 -2.135500e+02
+12 8223     -8.798999e+01 5.932400e+02
+13 8223     3.574200e+02 2.228900e+02
+0 8224     6.127200e+02 5.471100e+02
+2 8224     3.682100e+02 4.630500e+02
+9 8224     1.662200e+02 4.880600e+02
+11 8224     6.800200e+02 -1.927600e+02
+13 8224     7.489100e+02 2.624700e+02
+0 8225     -3.092500e+02 5.432800e+02
+4 8225     5.956000e+01 -1.887100e+02
+7 8225     -5.428700e+02 5.821100e+02
+11 8225     -1.236500e+02 -2.326800e+02
+12 8225     -6.581200e+02 5.192900e+02
+0 8226     -3.092500e+02 5.432800e+02
+2 8226     -5.932500e+02 3.124800e+02
+4 8226     5.956000e+01 -1.887100e+02
+5 8226     1.076700e+02 -1.057600e+02
+8 8226     -4.075800e+02 2.339400e+02
+12 8226     -6.581200e+02 5.192900e+02
+0 8227     2.122100e+02 5.384900e+02
+2 8227     -1.052400e+02 3.041000e+02
+4 8227     2.435999e+01 -4.977000e+02
+5 8227     6.137300e+02 -1.042800e+02
+6 8227     -2.552800e+02 6.130600e+02
+8 8227     -6.609985e+00 2.359900e+02
+9 8227     -2.425900e+02 3.353400e+02
+11 8227     3.347600e+02 -2.220200e+02
+14 8227     5.174301e+02 -1.873300e+02
+0 8228     -4.453500e+02 5.375400e+02
+2 8228     -7.359200e+02 3.102500e+02
+4 8228     6.570001e+01 -1.167700e+02
+5 8228     -2.334003e+01 -1.095000e+02
+7 8228     -6.855200e+02 5.635400e+02
+8 8228     -5.236100e+02 2.288300e+02
+11 8228     -2.388900e+02 -2.372400e+02
+12 8228     -8.209200e+02 4.963200e+02
+13 8228     -1.590200e+02 1.814500e+02
+14 8228     -1.082800e+02 -2.046000e+02
+0 8229     -1.093600e+02 5.373600e+02
+2 8229     -3.964200e+02 3.028900e+02
+5 8229     2.998600e+02 -1.116200e+02
+0 8230     -1.093600e+02 5.373600e+02
+2 8230     -3.964200e+02 3.028900e+02
+3 8230     -5.234300e+02 -2.703998e+01
+4 8230     4.334003e+01 -2.988100e+02
+5 8230     2.998600e+02 -1.116200e+02
+8 8230     -2.464900e+02 2.301300e+02
+11 8230     4.908002e+01 -2.350700e+02
+12 8230     -4.300100e+02 5.381500e+02
+0 8231     6.726600e+02 5.380800e+02
+9 8231     2.618000e+02 5.379800e+02
+0 8232     6.390200e+02 5.355100e+02
+2 8232     4.433400e+02 5.053000e+02
+3 8232     2.959100e+02 1.687500e+02
+8 8232     4.280200e+02 3.874900e+02
+9 8232     2.327900e+02 5.262300e+02
+11 8232     6.996300e+02 -2.012500e+02
+13 8232     7.978101e+02 2.597900e+02
+0 8233     2.532900e+02 5.354700e+02
+13 8233     3.899700e+02 2.157300e+02
+14 8233     5.588800e+02 -1.878400e+02
+0 8234     6.812600e+02 5.340100e+02
+2 8234     4.867300e+02 5.175300e+02
+3 8234     3.370000e+02 1.806900e+02
+6 8234     4.194400e+02 7.430000e+02
+8 8234     4.635800e+02 3.963200e+02
+9 8234     2.701100e+02 5.376500e+02
+13 8234     8.378400e+02 2.624200e+02
+0 8235     2.374900e+02 5.312500e+02
+3 8235     -2.227300e+02 -3.733002e+01
+9 8235     -2.227600e+02 3.283700e+02
+0 8236     -3.217100e+02 5.245300e+02
+2 8236     -6.054800e+02 2.904600e+02
+4 8236     5.034003e+01 -1.802200e+02
+5 8236     9.353998e+01 -1.246600e+02
+7 8236     -5.531600e+02 5.611200e+02
+8 8236     -4.178800e+02 2.161100e+02
+12 8236     -6.698300e+02 4.946400e+02
+0 8237     -3.217100e+02 5.245300e+02
+5 8237     9.353998e+01 -1.246600e+02
+0 8238     -4.340700e+02 5.215200e+02
+2 8238     -7.236900e+02 2.898900e+02
+4 8238     5.662000e+01 -1.209600e+02
+5 8238     -1.442999e+01 -1.258200e+02
+8 8238     -5.138700e+02 2.126000e+02
+13 8238     -1.504600e+02 1.690800e+02
+14 8238     -9.907001e+01 -2.201400e+02
+0 8239     -3.045200e+02 5.196600e+02
+2 8239     -5.879700e+02 2.849100e+02
+4 8239     4.660999e+01 -1.890100e+02
+7 8239     -5.344100e+02 5.578300e+02
+0 8240     -3.045200e+02 5.196600e+02
+2 8240     -5.879700e+02 2.849100e+02
+4 8240     4.660999e+01 -1.890100e+02
+5 8240     1.097300e+02 -1.297200e+02
+7 8240     -5.344100e+02 5.578300e+02
+8 8240     -4.026500e+02 2.124100e+02
+12 8240     -6.481200e+02 4.916800e+02
+0 8241     -4.428900e+02 5.194700e+02
+2 8241     -7.332600e+02 2.878700e+02
+4 8241     5.616998e+01 -1.160600e+02
+5 8241     -2.334003e+01 -1.280700e+02
+0 8242     -2.093200e+02 5.179400e+02
+2 8242     -4.922200e+02 2.807100e+02
+4 8242     3.915002e+01 -2.405800e+02
+5 8242     2.016400e+02 -1.320400e+02
+7 8242     -4.371800e+02 5.652800e+02
+8 8242     -3.254400e+02 2.109800e+02
+11 8242     -3.796997e+01 -2.529600e+02
+12 8242     -5.388200e+02 5.019700e+02
+0 8243     2.233002e+01 5.118200e+02
+14 8243     3.350800e+02 -2.223600e+02
+0 8244     7.546100e+02 5.115800e+02
+2 8244     5.670900e+02 5.252900e+02
+6 8244     5.112300e+02 7.389700e+02
+8 8244     5.306801e+02 4.023000e+02
+0 8245     -3.214700e+02 5.085300e+02
+2 8245     -6.052800e+02 2.718800e+02
+5 8245     9.208002e+01 -1.410300e+02
+7 8245     -5.504300e+02 5.440100e+02
+0 8246     4.514500e+02 5.093100e+02
+3 8246     -5.160999e+01 -5.521002e+01
+6 8246     -1.570007e+00 6.248900e+02
+9 8246     -6.904999e+01 3.180000e+02
+11 8246     5.592000e+02 -2.331300e+02
+0 8247     -9.799805e-01 5.069800e+02
+2 8247     -2.925500e+02 2.684500e+02
+3 8247     -4.228500e+02 -6.337000e+01
+4 8247     1.914001e+01 -3.601400e+02
+5 8247     4.040200e+02 -1.419700e+02
+6 8247     -4.815200e+02 5.307700e+02
+7 8247     -2.286600e+02 5.752200e+02
+8 8247     -1.606000e+02 2.050400e+02
+9 8247     -4.005000e+02 2.978800e+02
+12 8247     -3.065300e+02 5.170900e+02
+13 8247     1.894399e+02 1.760600e+02
+14 8247     3.126500e+02 -2.282300e+02
+0 8248     5.486300e+02 5.049500e+02
+2 8248     3.103300e+02 4.042000e+02
+3 8248     1.662800e+02 7.151001e+01
+6 8248     2.222400e+02 6.705100e+02
+9 8248     1.172500e+02 4.349000e+02
+11 8248     6.315500e+02 -2.328000e+02
+13 8248     6.922100e+02 2.223100e+02
+0 8249     6.924000e+02 5.050000e+02
+2 8249     5.039900e+02 4.958800e+02
+6 8249     4.379500e+02 7.157000e+02
+9 8249     2.839200e+02 5.196000e+02
+0 8250     7.233300e+02 5.049000e+02
+2 8250     5.347500e+02 5.060300e+02
+3 8250     3.819800e+02 1.700800e+02
+6 8250     4.741400e+02 7.226900e+02
+8 8250     5.043800e+02 3.860700e+02
+9 8250     3.113600e+02 5.285000e+02
+11 8250     7.804600e+02 -2.241000e+02
+0 8251     1.088300e+02 5.042000e+02
+2 8251     -1.923200e+02 2.657500e+02
+6 8251     -3.586600e+02 5.500800e+02
+7 8251     -1.218300e+02 5.837300e+02
+8 8251     -7.917999e+01 2.051700e+02
+9 8251     -3.149300e+02 2.986400e+02
+0 8252     4.523000e+02 5.007700e+02
+13 8252     5.492400e+02 1.999400e+02
+14 8252     7.568600e+02 -2.117700e+02
+0 8253     -6.929300e+02 4.989200e+02
+4 8253     5.340002e+01 2.923999e+01
+5 8253     -3.404700e+02 -1.505500e+02
+0 8254     3.525000e+01 4.969900e+02
+2 8254     -2.579400e+02 2.569600e+02
+3 8254     -3.900900e+02 -7.491998e+01
+4 8254     1.078998e+01 -3.814800e+02
+5 8254     4.395699e+02 -1.522200e+02
+6 8254     -4.386100e+02 5.249300e+02
+7 8254     -1.918700e+02 5.685100e+02
+9 8254     -3.704300e+02 2.884700e+02
+13 8254     2.180699e+02 1.693200e+02
+0 8255     7.367200e+02 4.967000e+02
+2 8255     5.498800e+02 5.021000e+02
+3 8255     3.962300e+02 1.675700e+02
+0 8256     -6.956700e+02 4.939800e+02
+4 8256     5.121997e+01 3.229999e+01
+11 8256     -4.378000e+02 -2.704000e+02
+0 8257     6.519200e+02 4.925100e+02
+2 8257     4.669600e+02 4.711700e+02
+3 8257     3.192500e+02 1.377400e+02
+6 8257     3.938100e+02 6.916400e+02
+9 8257     2.534800e+02 4.967700e+02
+0 8258     1.687000e+01 4.898100e+02
+4 8258     8.059998e+00 -3.692900e+02
+7 8258     -2.094900e+02 5.594700e+02
+11 8258     1.619000e+02 -2.721400e+02
+0 8259     1.687000e+01 4.898100e+02
+2 8259     -2.745500e+02 2.515000e+02
+7 8259     -2.094900e+02 5.594700e+02
+8 8259     -1.465800e+02 1.924600e+02
+11 8259     1.619000e+02 -2.721400e+02
+0 8260     -5.867999e+01 4.872100e+02
+4 8260     1.146002e+01 -3.237900e+02
+5 8260     3.458500e+02 -1.647900e+02
+6 8260     -5.432300e+02 4.920400e+02
+7 8260     -2.832300e+02 5.478400e+02
+8 8260     -2.053200e+02 1.833900e+02
+11 8260     9.521997e+01 -2.762400e+02
+0 8261     1.180300e+02 4.866400e+02
+2 8261     -1.799100e+02 2.494100e+02
+0 8262     8.101500e+02 4.856400e+02
+9 8262     3.874500e+02 5.440700e+02
+0 8263     -3.044100e+02 4.851700e+02
+2 8263     -5.889000e+02 2.424700e+02
+4 8263     2.770001e+01 -1.846600e+02
+5 8263     1.051100e+02 -1.659300e+02
+7 8263     -5.305700e+02 5.205200e+02
+8 8263     -4.037900e+02 1.786500e+02
+12 8263     -6.446900e+02 4.476100e+02
+0 8264     -2.960999e+01 4.845800e+02
+2 8264     -3.180100e+02 2.417700e+02
+3 8264     -4.488700e+02 -8.942999e+01
+6 8264     -5.093700e+02 4.951800e+02
+9 8264     -4.216900e+02 2.734700e+02
+13 8264     1.665300e+02 1.550800e+02
+0 8265     -2.960999e+01 4.845800e+02
+2 8265     -3.180100e+02 2.417700e+02
+4 8265     7.900024e+00 -3.408900e+02
+5 8265     3.754800e+02 -1.660700e+02
+6 8265     -5.093700e+02 4.951800e+02
+8 8265     -1.818500e+02 1.831100e+02
+9 8265     -4.216900e+02 2.734700e+02
+0 8266     1.970100e+02 4.843800e+02
+9 8266     -2.466400e+02 2.826700e+02
+11 8266     3.261200e+02 -2.694100e+02
+0 8267     5.065400e+02 4.842100e+02
+6 8267     1.749100e+02 6.331800e+02
+0 8268     5.065400e+02 4.842100e+02
+2 8268     2.683000e+02 3.689700e+02
+3 8268     1.262300e+02 3.746002e+01
+6 8268     1.749100e+02 6.331800e+02
+8 8268     2.890500e+02 2.811200e+02
+13 8268     6.532200e+02 2.007300e+02
+0 8269     6.868900e+02 4.835000e+02
+2 8269     5.044800e+02 4.767000e+02
+3 8269     3.545800e+02 1.429000e+02
+6 8269     4.370400e+02 6.923200e+02
+8 8269     4.779301e+02 3.648900e+02
+9 8269     2.850200e+02 5.027600e+02
+13 8269     8.493600e+02 2.239200e+02
+0 8270     5.284600e+02 4.809400e+02
+6 8270     2.022100e+02 6.370300e+02
+9 8270     1.035900e+02 4.083100e+02
+0 8271     5.284600e+02 4.809400e+02
+6 8271     2.022100e+02 6.370300e+02
+9 8271     1.035900e+02 4.083100e+02
+0 8272     -9.908002e+01 4.802400e+02
+2 8272     -3.833500e+02 2.373000e+02
+3 8272     -5.116200e+02 -9.320001e+01
+4 8272     9.849976e+00 -2.995400e+02
+5 8272     3.064700e+02 -1.722600e+02
+7 8272     -3.214600e+02 5.369800e+02
+8 8272     -2.355400e+02 1.783300e+02
+11 8272     5.959998e+01 -2.832900e+02
+13 8272     1.125200e+02 1.478300e+02
+14 8272     2.181000e+02 -2.596600e+02
+0 8273     -5.433002e+01 4.789200e+02
+4 8273     6.440002e+00 -3.256800e+02
+5 8273     3.503600e+02 -1.732100e+02
+6 8273     -5.366200e+02 4.815000e+02
+11 8273     9.946997e+01 -2.832800e+02
+0 8274     7.865900e+02 4.789600e+02
+2 8274     6.027300e+02 5.049200e+02
+3 8274     4.452100e+02 1.703300e+02
+6 8274     5.516700e+02 7.110600e+02
+8 8274     5.606400e+02 3.849200e+02
+0 8275     -5.560100e+02 4.769200e+02
+5 8275     -1.382200e+02 -1.702100e+02
+7 8275     -7.953300e+02 4.858100e+02
+11 8275     -3.356000e+02 -2.867200e+02
+13 8275     -2.485700e+02 1.259500e+02
+14 8275     -2.203900e+02 -2.662600e+02
+0 8276     2.404000e+02 4.759100e+02
+2 8276     -7.346002e+01 2.355200e+02
+5 8276     6.437200e+02 -1.695100e+02
+6 8276     -2.130000e+02 5.397300e+02
+7 8276     6.719971e+00 5.678800e+02
+9 8276     -2.126500e+02 2.762900e+02
+11 8276     3.667100e+02 -2.749600e+02
+13 8276     3.805300e+02 1.636700e+02
+14 8276     5.486300e+02 -2.505000e+02
+0 8277     -3.542100e+02 4.753200e+02
+2 8277     -6.384600e+02 2.310700e+02
+5 8277     5.722998e+01 -1.750700e+02
+0 8278     -3.542100e+02 4.753200e+02
+2 8278     -6.384600e+02 2.310700e+02
+5 8278     5.722998e+01 -1.750700e+02
+0 8279     2.039600e+02 4.751400e+02
+3 8279     -2.450100e+02 -9.798999e+01
+4 8279     -1.350000e+01 -4.874100e+02
+5 8279     6.057200e+02 -1.713600e+02
+6 8279     -2.527000e+02 5.316400e+02
+7 8279     -2.834003e+01 5.638300e+02
+8 8279     -7.159973e+00 1.812800e+02
+11 8279     3.327400e+02 -2.769200e+02
+13 8279     3.509800e+02 1.610700e+02
+0 8280     1.003003e+01 4.743400e+02
+4 8280     -7.999878e-01 -3.636900e+02
+5 8280     4.133900e+02 -1.765500e+02
+6 8280     -4.633000e+02 4.902500e+02
+7 8280     -2.139500e+02 5.426000e+02
+8 8280     -1.508400e+02 1.748900e+02
+11 8280     1.568700e+02 -2.855300e+02
+13 8280     1.982400e+02 1.487500e+02
+14 8280     3.234301e+02 -2.618100e+02
+0 8281     -9.460999e+01 4.719600e+02
+2 8281     -3.784300e+02 2.271800e+02
+3 8281     -5.076200e+02 -1.029400e+02
+4 8281     5.380005e+00 -3.016500e+02
+5 8281     3.104399e+02 -1.805300e+02
+6 8281     -5.814600e+02 4.656500e+02
+7 8281     -3.161600e+02 5.292400e+02
+8 8281     -2.317800e+02 1.703800e+02
+11 8281     6.366998e+01 -2.902800e+02
+12 8281     -4.022800e+02 4.620600e+02
+13 8281     1.158300e+02 1.411600e+02
+14 8281     2.221600e+02 -2.675100e+02
+0 8282     -4.205700e+02 4.709400e+02
+4 8282     2.889001e+01 -1.251600e+02
+5 8282     -6.059998e+00 -1.787300e+02
+8 8282     -4.998700e+02 1.641900e+02
+0 8283     -1.871300e+02 4.704400e+02
+2 8283     -4.677800e+02 2.255300e+02
+4 8283     1.096002e+01 -2.485500e+02
+5 8283     2.200300e+02 -1.819400e+02
+7 8283     -4.079500e+02 5.179700e+02
+11 8283     -1.820001e+01 -2.931600e+02
+12 8283     -5.053700e+02 4.472500e+02
+13 8283     4.303003e+01 1.354200e+02
+14 8283     1.331000e+02 -2.710400e+02
+0 8284     -1.039500e+02 4.694600e+02
+2 8284     -3.870600e+02 2.241400e+02
+3 8284     -5.158300e+02 -1.060100e+02
+5 8284     3.014301e+02 -1.829200e+02
+7 8284     -3.248300e+02 5.256300e+02
+0 8285     -1.039500e+02 4.694600e+02
+2 8285     -3.870600e+02 2.241400e+02
+3 8285     -5.158300e+02 -1.060100e+02
+7 8285     -3.248300e+02 5.256300e+02
+0 8286     -1.039500e+02 4.694600e+02
+4 8286     4.320007e+00 -2.958300e+02
+5 8286     3.014301e+02 -1.829200e+02
+7 8286     -3.248300e+02 5.256300e+02
+8 8286     -2.387400e+02 1.671600e+02
+0 8287     -5.339600e+02 4.680400e+02
+4 8287     3.515002e+01 -6.388000e+01
+0 8288     -8.840997e+01 4.635400e+02
+2 8288     -3.724400e+02 2.167900e+02
+3 8288     -5.018200e+02 -1.132800e+02
+7 8288     -3.099900e+02 5.204500e+02
+11 8288     6.895001e+01 -2.976000e+02
+0 8289     1.478998e+01 4.635300e+02
+2 8289     -2.743900e+02 2.178800e+02
+4 8289     -7.700012e+00 -3.654400e+02
+5 8289     4.175300e+02 -1.881100e+02
+6 8289     -4.559800e+02 4.761500e+02
+7 8289     -2.082300e+02 5.319700e+02
+8 8289     -1.464100e+02 1.649300e+02
+9 8289     -3.830000e+02 2.545700e+02
+12 8289     -2.826500e+02 4.672300e+02
+13 8289     2.020200e+02 1.393100e+02
+14 8289     3.277800e+02 -2.737500e+02
+0 8290     -2.265700e+02 4.619100e+02
+4 8290     9.150024e+00 -2.258000e+02
+5 8290     1.807300e+02 -1.908800e+02
+7 8290     -4.468500e+02 5.043900e+02
+8 8290     -3.372700e+02 1.601600e+02
+11 8290     -5.356000e+01 -3.005900e+02
+12 8290     -5.486800e+02 4.306200e+02
+0 8291     -5.270900e+02 4.607000e+02
+4 8291     3.075000e+01 -6.597998e+01
+5 8291     -1.126000e+02 -1.873000e+02
+7 8291     -7.607500e+02 4.707200e+02
+13 8291     -2.267700e+02 1.131300e+02
+14 8291     -1.955900e+02 -2.830600e+02
+0 8292     7.849900e+02 4.610200e+02
+9 8292     3.698400e+02 5.153400e+02
+0 8293     4.989500e+02 4.593400e+02
+2 8293     2.656200e+02 3.444000e+02
+3 8293     1.239600e+02 1.400000e+01
+6 8293     1.700700e+02 6.053400e+02
+8 8293     2.861300e+02 2.620200e+02
+9 8293     8.022998e+01 3.807100e+02
+11 8293     5.953700e+02 -2.747700e+02
+12 8293     2.812900e+02 5.921600e+02
+13 8293     6.484100e+02 1.802200e+02
+0 8294     -5.054999e+01 4.556200e+02
+13 8294     1.549800e+02 1.301300e+02
+14 8294     2.696899e+02 -2.829300e+02
+0 8295     1.421002e+01 4.531000e+02
+2 8295     -2.741200e+02 2.051400e+02
+4 8295     -1.378003e+01 -3.641300e+02
+5 8295     4.168101e+02 -1.989100e+02
+6 8295     -4.545100e+02 4.628700e+02
+7 8295     -2.073400e+02 5.206200e+02
+8 8295     -1.460400e+02 1.547600e+02
+9 8295     -3.821900e+02 2.435100e+02
+11 8295     1.612500e+02 -3.042300e+02
+13 8295     2.016000e+02 1.294800e+02
+14 8295     3.272400e+02 -2.851700e+02
+0 8296     7.919900e+02 4.531900e+02
+2 8296     6.136899e+02 4.843900e+02
+6 8296     5.636200e+02 6.858700e+02
+0 8297     8.426300e+02 4.518500e+02
+2 8297     6.616400e+02 4.996000e+02
+3 8297     4.996899e+02 1.661300e+02
+9 8297     4.175699e+02 5.255600e+02
+0 8298     8.705601e+02 4.518000e+02
+2 8298     6.895500e+02 5.112100e+02
+3 8298     5.245300e+02 1.768200e+02
+9 8298     4.402800e+02 5.358000e+02
+0 8299     -6.833500e+02 4.497000e+02
+4 8299     2.650000e+01 3.364001e+01
+5 8299     -3.547600e+02 -2.027600e+02
+13 8299     -4.205400e+02 8.617999e+01
+14 8299     -4.319900e+02 -3.027600e+02
+0 8300     5.021000e+02 4.474000e+02
+2 8300     2.719900e+02 3.327300e+02
+3 8300     1.304700e+02 3.049988e+00
+8 8300     2.910300e+02 2.518800e+02
+9 8300     8.609998e+01 3.723100e+02
+11 8300     6.000800e+02 -2.867200e+02
+12 8300     2.876600e+02 5.779700e+02
+13 8300     6.526100e+02 1.697700e+02
+0 8301     5.021000e+02 4.474000e+02
+2 8301     2.719900e+02 3.327300e+02
+3 8301     1.304700e+02 3.049988e+00
+6 8301     1.764600e+02 5.925400e+02
+8 8301     2.910300e+02 2.518800e+02
+9 8301     8.609998e+01 3.723100e+02
+11 8301     6.000800e+02 -2.867200e+02
+12 8301     2.876600e+02 5.779700e+02
+13 8301     6.526100e+02 1.697700e+02
+0 8302     5.237400e+02 4.469900e+02
+2 8302     2.965900e+02 3.409900e+02
+3 8302     1.541800e+02 1.146002e+01
+8 8302     3.110200e+02 2.579600e+02
+9 8302     1.070400e+02 3.804700e+02
+0 8303     3.499756e-01 4.453000e+02
+2 8303     -2.861300e+02 1.965200e+02
+4 8303     -1.684003e+01 -3.556100e+02
+5 8303     4.034900e+02 -2.071900e+02
+6 8303     -4.680100e+02 4.510300e+02
+7 8303     -2.194800e+02 5.118400e+02
+9 8303     -3.918500e+02 2.351000e+02
+11 8303     1.494800e+02 -3.118700e+02
+12 8303     -2.937500e+02 4.450600e+02
+13 8303     1.909301e+02 1.230200e+02
+14 8303     3.140000e+02 -2.932100e+02
+0 8304     1.358002e+01 4.450400e+02
+2 8304     -2.741200e+02 1.972100e+02
+3 8304     -4.071500e+02 -1.332400e+02
+4 8304     -1.803003e+01 -3.633400e+02
+5 8304     4.158400e+02 -2.074000e+02
+6 8304     -4.536400e+02 4.532100e+02
+7 8304     -2.068900e+02 5.129300e+02
+8 8304     -1.460100e+02 1.487100e+02
+11 8304     1.611700e+02 -3.115500e+02
+12 8304     -2.805600e+02 4.462300e+02
+13 8304     2.012200e+02 1.240300e+02
+14 8304     3.266600e+02 -2.925300e+02
+0 8305     -3.155000e+02 4.390100e+02
+7 8305     -5.348000e+02 4.705000e+02
+11 8305     -1.314500e+02 -3.205200e+02
+12 8305     -6.482700e+02 3.891700e+02
+13 8305     -5.938000e+01 1.030700e+02
+0 8306     -2.017400e+02 4.392600e+02
+4 8306     -5.710022e+00 -2.373100e+02
+5 8306     2.030800e+02 -2.151400e+02
+7 8306     -4.188300e+02 4.832800e+02
+11 8306     -3.159003e+01 -3.210500e+02
+0 8307     -2.054800e+02 4.331000e+02
+7 8307     -4.214700e+02 4.763100e+02
+11 8307     -3.464001e+01 -3.259900e+02
+0 8308     -2.274300e+02 4.323200e+02
+2 8308     -5.066200e+02 1.786200e+02
+4 8308     -7.330017e+00 -2.224600e+02
+5 8308     1.773700e+02 -2.221000e+02
+7 8308     -4.437700e+02 4.733700e+02
+8 8308     -3.360100e+02 1.301100e+02
+11 8308     -5.419000e+01 -3.265000e+02
+12 8308     -5.448700e+02 3.944000e+02
+14 8308     9.246002e+01 -3.115200e+02
+0 8309     -3.135500e+02 4.244500e+02
+2 8309     -5.949000e+02 1.682100e+02
+4 8309     -5.049988e+00 -1.744800e+02
+5 8309     9.198999e+01 -2.300400e+02
+7 8309     -5.304100e+02 4.552500e+02
+8 8309     -4.076900e+02 1.205500e+02
+12 8309     -6.421400e+02 3.716000e+02
+14 8309     7.539978e+00 -3.213000e+02
+0 8310     -4.150600e+02 4.214000e+02
+5 8310     -8.919983e+00 -2.308400e+02
+0 8311     -2.260500e+02 4.200200e+02
+2 8311     -5.055200e+02 1.640400e+02
+5 8311     1.772300e+02 -2.348800e+02
+7 8311     -4.414400e+02 4.612500e+02
+8 8311     -3.354300e+02 1.190100e+02
+11 8311     -5.383002e+01 -3.365700e+02
+12 8311     -5.420700e+02 3.811200e+02
+13 8311     1.096997e+01 9.054999e+01
+14 8311     9.171002e+01 -3.247000e+02
+0 8312     -4.428400e+02 4.191200e+02
+2 8312     -7.311700e+02 1.624600e+02
+5 8312     -3.459003e+01 -2.323700e+02
+8 8312     -5.203500e+02 1.129100e+02
+10 8312     -6.751100e+02 6.021800e+02
+12 8312     -7.945400e+02 3.466500e+02
+13 8312     -1.620000e+02 8.123001e+01
+0 8313     -2.481200e+02 4.186800e+02
+7 8313     -4.630900e+02 4.567900e+02
+10 8313     -4.354600e+02 6.169400e+02
+11 8313     -7.335999e+01 -3.384300e+02
+13 8313     -6.210022e+00 8.801001e+01
+14 8313     7.040997e+01 -3.267200e+02
+0 8314     -1.135900e+02 4.193100e+02
+2 8314     -3.938000e+02 1.636700e+02
+4 8314     -2.360999e+01 -2.854000e+02
+5 8314     2.884600e+02 -2.364300e+02
+7 8314     -3.281400e+02 4.726000e+02
+8 8314     -2.436700e+02 1.207200e+02
+13 8314     1.005700e+02 9.522000e+01
+14 8314     2.019900e+02 -3.234100e+02
+0 8315     -3.940600e+02 4.158200e+02
+2 8315     -6.809700e+02 1.576200e+02
+5 8315     1.090002e+01 -2.368800e+02
+12 8315     -7.373600e+02 3.487000e+02
+0 8316     -3.940600e+02 4.158200e+02
+2 8316     -6.809700e+02 1.576200e+02
+5 8316     1.090002e+01 -2.368800e+02
+12 8316     -7.373600e+02 3.487000e+02
+0 8317     -2.384300e+02 4.162500e+02
+2 8317     -5.162800e+02 1.608100e+02
+0 8318     -2.384300e+02 4.162500e+02
+2 8318     -5.162800e+02 1.608100e+02
+7 8318     -4.521200e+02 4.568400e+02
+8 8318     -3.438000e+02 1.167200e+02
+11 8318     -6.365002e+01 -3.391000e+02
+12 8318     -5.536000e+02 3.773100e+02
+0 8319     -3.550700e+02 4.155500e+02
+2 8319     -6.387000e+02 1.561200e+02
+4 8319     -6.840027e+00 -1.508800e+02
+5 8319     4.953003e+01 -2.391600e+02
+7 8319     -5.718800e+02 4.409800e+02
+11 8319     -1.672300e+02 -3.412300e+02
+12 8319     -6.901900e+02 3.532800e+02
+13 8319     -9.145001e+01 8.048999e+01
+0 8320     6.661700e+02 4.126200e+02
+2 8320     5.016500e+02 4.064100e+02
+3 8320     3.541899e+02 7.792999e+01
+6 8320     4.298900e+02 6.103700e+02
+8 8320     4.747600e+02 3.042700e+02
+9 8320     2.840699e+02 4.423400e+02
+11 8320     7.505000e+02 -3.098600e+02
+12 8320     5.123000e+02 6.175300e+02
+13 8320     8.381000e+02 1.636700e+02
+0 8321     -2.917500e+02 4.095200e+02
+2 8321     -5.702200e+02 1.522300e+02
+5 8321     1.128500e+02 -2.477900e+02
+8 8321     -3.879500e+02 1.064700e+02
+0 8322     -2.434300e+02 4.015100e+02
+13 8322     -2.630005e+00 7.359003e+01
+0 8323     6.104900e+02 4.009400e+02
+2 8323     4.464301e+02 3.753500e+02
+3 8323     3.025300e+02 4.778003e+01
+6 8323     3.654400e+02 5.824900e+02
+7 8323     4.081600e+02 5.692600e+02
+8 8323     4.286600e+02 2.800100e+02
+11 8323     7.011700e+02 -3.240700e+02
+12 8323     4.510400e+02 5.875400e+02
+13 8323     7.854600e+02 1.482200e+02
+0 8324     6.044600e+02 3.990900e+02
+2 8324     4.408000e+02 3.717900e+02
+3 8324     2.973199e+02 4.403003e+01
+6 8324     3.588300e+02 5.792100e+02
+7 8324     4.026100e+02 5.671900e+02
+8 8324     4.242700e+02 2.778100e+02
+9 8324     2.329100e+02 4.114200e+02
+11 8324     6.956600e+02 -3.258400e+02
+12 8324     4.448800e+02 5.849000e+02
+13 8324     7.799700e+02 1.464700e+02
+0 8325     -1.005800e+02 3.954000e+02
+2 8325     -3.790500e+02 1.351800e+02
+3 8325     -5.110000e+02 -1.961200e+02
+4 8325     -3.854999e+01 -2.908600e+02
+5 8325     3.000400e+02 -2.626100e+02
+6 8325     -5.739900e+02 3.625800e+02
+7 8325     -3.121500e+02 4.491300e+02
+8 8325     -2.319300e+02 9.807001e+01
+9 8325     -4.690500e+02 1.781700e+02
+12 8325     -3.958800e+02 3.687500e+02
+14 8325     2.144200e+02 -3.487400e+02
+0 8326     -3.092900e+02 3.920100e+02
+2 8326     -5.895700e+02 1.274100e+02
+5 8326     9.226001e+01 -2.647400e+02
+8 8326     -4.042100e+02 8.835001e+01
+12 8326     -6.316700e+02 3.316300e+02
+0 8327     -3.092900e+02 3.920100e+02
+2 8327     -5.895700e+02 1.274100e+02
+4 8327     -2.388000e+01 -1.737700e+02
+5 8327     9.226001e+01 -2.647400e+02
+7 8327     -5.204800e+02 4.210400e+02
+12 8327     -6.316700e+02 3.316300e+02
+13 8327     -5.397998e+01 6.201001e+01
+14 8327     1.045001e+01 -3.562800e+02
+0 8328     -3.111500e+02 3.861000e+02
+2 8328     -5.923200e+02 1.199900e+02
+7 8328     -5.234400e+02 4.150600e+02
+10 8328     -5.068500e+02 5.721000e+02
+0 8329     -3.111500e+02 3.861000e+02
+2 8329     -5.923200e+02 1.199900e+02
+4 8329     -2.647998e+01 -1.707800e+02
+7 8329     -5.234400e+02 4.150600e+02
+10 8329     -5.068500e+02 5.721000e+02
+11 8329     -1.302300e+02 -3.671100e+02
+0 8330     1.965997e+01 3.851000e+02
+2 8330     -2.630400e+02 1.253100e+02
+5 8330     4.204800e+02 -2.730400e+02
+8 8330     -1.370600e+02 9.185999e+01
+12 8330     -2.629100e+02 3.747400e+02
+13 8330     2.067300e+02 7.209998e+01
+14 8330     3.327100e+02 -3.575300e+02
+0 8331     1.965997e+01 3.851000e+02
+2 8331     -2.630400e+02 1.253100e+02
+4 8331     -5.463000e+01 -3.623000e+02
+5 8331     4.204800e+02 -2.730400e+02
+6 8331     -4.352900e+02 3.751900e+02
+7 8331     -1.929100e+02 4.519600e+02
+9 8331     -3.690200e+02 1.733900e+02
+10 8331     -1.100900e+02 6.012900e+02
+11 8331     1.708800e+02 -3.647300e+02
+12 8331     -2.629100e+02 3.747400e+02
+13 8331     2.067300e+02 7.209998e+01
+14 8331     3.327100e+02 -3.575300e+02
+0 8332     -5.495000e+02 3.840800e+02
+7 8332     -7.732600e+02 3.850000e+02
+14 8332     -2.275800e+02 -3.630200e+02
+0 8333     -3.219600e+02 3.834900e+02
+4 8333     -2.690997e+01 -1.653200e+02
+5 8333     7.873999e+01 -2.735400e+02
+7 8333     -5.333100e+02 4.113400e+02
+10 8333     -5.196600e+02 5.674200e+02
+11 8333     -1.392300e+02 -3.685300e+02
+12 8333     -6.459800e+02 3.193700e+02
+13 8333     -6.575000e+01 5.507001e+01
+0 8334     5.326500e+02 3.812100e+02
+2 8334     3.226801e+02 2.819500e+02
+3 8334     1.808600e+02 -4.457001e+01
+6 8334     2.334400e+02 5.252900e+02
+7 8334     3.218199e+02 5.283200e+02
+8 8334     3.317000e+02 2.095100e+02
+9 8334     1.307800e+02 3.303900e+02
+11 8334     6.400900e+02 -3.462700e+02
+12 8334     3.393500e+02 5.173300e+02
+13 8334     6.894399e+02 1.182200e+02
+0 8335     -4.870600e+02 3.793500e+02
+5 8335     -8.620001e+01 -2.747100e+02
+8 8335     -5.599700e+02 7.244000e+01
+11 8335     -2.843800e+02 -3.709800e+02
+0 8336     -4.870600e+02 3.793500e+02
+8 8336     -5.599700e+02 7.244000e+01
+11 8336     -2.843800e+02 -3.709800e+02
+0 8337     5.455000e+02 3.728900e+02
+2 8337     3.424600e+02 2.790600e+02
+6 8337     2.535000e+02 5.190700e+02
+7 8337     3.359399e+02 5.223600e+02
+8 8337     3.466600e+02 2.066900e+02
+9 8337     1.451400e+02 3.282700e+02
+13 8337     7.054000e+02 1.118300e+02
+0 8338     -2.176300e+02 3.683400e+02
+2 8338     -4.940700e+02 9.772998e+01
+4 8338     -4.454999e+01 -2.213800e+02
+5 8338     1.811000e+02 -2.924000e+02
+7 8338     -4.249900e+02 4.063000e+02
+8 8338     -3.251700e+02 6.762000e+01
+11 8338     -4.632001e+01 -3.835300e+02
+12 8338     -5.221700e+02 3.157600e+02
+0 8339     5.537000e+02 3.676700e+02
+6 8339     2.638200e+02 5.161700e+02
+7 8339     3.446300e+02 5.189500e+02
+11 8339     6.620100e+02 -3.578600e+02
+0 8340     6.726100e+02 3.643600e+02
+2 8340     5.214600e+02 3.647200e+02
+3 8340     3.744399e+02 3.919000e+01
+7 8340     4.743300e+02 5.431200e+02
+11 8340     7.685400e+02 -3.566700e+02
+0 8341     5.614000e+02 3.623000e+02
+3 8341     2.172700e+02 -4.982001e+01
+6 8341     2.757000e+02 5.128900e+02
+7 8341     3.529800e+02 5.150600e+02
+9 8341     1.630500e+02 3.260400e+02
+12 8341     3.780100e+02 5.066000e+02
+0 8342     5.477700e+02 3.612900e+02
+3 8342     2.023900e+02 -5.650000e+01
+6 8342     2.575600e+02 5.069000e+02
+7 8342     3.394500e+02 5.118300e+02
+8 8342     3.491700e+02 1.986900e+02
+9 8342     1.500800e+02 3.196700e+02
+11 8342     6.578000e+02 -3.643300e+02
+12 8342     3.613700e+02 4.998900e+02
+13 8342     7.065000e+02 1.028700e+02
+0 8343     -4.602100e+02 3.582700e+02
+10 8343     -6.865000e+02 5.249800e+02
+13 8343     -1.760100e+02 2.770001e+01
+15 8343     -7.060200e+02 5.680100e+02
+0 8344     4.934000e+02 3.566500e+02
+2 8344     2.810100e+02 2.422600e+02
+3 8344     1.432500e+02 -8.483002e+01
+6 8344     1.887300e+02 4.842200e+02
+9 8344     9.812000e+01 2.938600e+02
+10 8344     4.477200e+02 6.177300e+02
+11 8344     6.079200e+02 -3.712900e+02
+12 8344     2.987700e+02 4.764800e+02
+0 8345     8.403600e+02 3.565800e+02
+2 8345     6.850800e+02 4.198600e+02
+0 8346     -6.951500e+02 3.559300e+02
+13 8346     -4.274700e+02 4.820007e+00
+14 8346     -4.512300e+02 -4.028800e+02
+0 8347     5.539100e+02 3.530600e+02
+2 8347     3.536500e+02 2.636900e+02
+3 8347     2.113700e+02 -6.070001e+01
+6 8347     2.682900e+02 5.018900e+02
+7 8347     3.468101e+02 5.049400e+02
+9 8347     1.578400e+02 3.157400e+02
+12 8347     3.713500e+02 4.957400e+02
+13 8347     7.135699e+02 9.698999e+01
+0 8348     5.539100e+02 3.530600e+02
+2 8348     3.536500e+02 2.636900e+02
+3 8348     2.113700e+02 -6.070001e+01
+7 8348     3.468101e+02 5.049400e+02
+9 8348     1.578400e+02 3.157400e+02
+11 8348     6.653800e+02 -3.699800e+02
+12 8348     3.713500e+02 4.957400e+02
+13 8348     7.135699e+02 9.698999e+01
+0 8349     6.652800e+02 3.527900e+02
+2 8349     5.167300e+02 3.526800e+02
+3 8349     3.703500e+02 2.814001e+01
+6 8349     4.438800e+02 5.465900e+02
+7 8349     4.689200e+02 5.319400e+02
+8 8349     4.867800e+02 2.600900e+02
+9 8349     2.981000e+02 3.971100e+02
+11 8349     7.643900e+02 -3.668800e+02
+12 8349     5.261500e+02 5.549800e+02
+13 8349     8.450200e+02 1.148000e+02
+0 8350     -5.630000e+02 3.475200e+02
+4 8350     -2.648999e+01 -3.392999e+01
+5 8350     -1.658700e+02 -3.064500e+02
+11 8350     -3.533800e+02 -3.973500e+02
+0 8351     -5.630000e+02 3.475200e+02
+4 8351     -2.648999e+01 -3.392999e+01
+5 8351     -1.658700e+02 -3.064500e+02
+11 8351     -3.533800e+02 -3.973500e+02
+13 8351     -2.628100e+02 1.200000e+01
+0 8352     -4.115200e+02 3.466400e+02
+4 8352     -4.006000e+01 -1.127100e+02
+7 8352     -6.204700e+02 3.617200e+02
+8 8352     -4.913700e+02 3.954001e+01
+11 8352     -2.198100e+02 -4.004700e+02
+15 8352     -6.345100e+02 5.577700e+02
+0 8353     -3.600400e+02 3.467400e+02
+2 8353     -6.422700e+02 6.757001e+01
+4 8353     -4.459998e+01 -1.406200e+02
+8 8353     -4.459700e+02 4.070001e+01
+10 8353     -5.606900e+02 5.184200e+02
+12 8353     -6.846500e+02 2.668700e+02
+15 8353     -5.627400e+02 5.646900e+02
+0 8354     7.784500e+02 3.469900e+02
+6 8354     5.752500e+02 5.734700e+02
+7 8354     5.783000e+02 5.453800e+02
+8 8354     5.816600e+02 2.890500e+02
+9 8354     3.933900e+02 4.319700e+02
+12 8354     6.542700e+02 5.870300e+02
+0 8355     -5.533100e+02 3.444600e+02
+4 8355     -2.895001e+01 -3.865997e+01
+5 8355     -1.570800e+02 -3.101700e+02
+7 8355     -7.712200e+02 3.413400e+02
+10 8355     -8.016800e+02 5.008200e+02
+11 8355     -3.449000e+02 -3.998200e+02
+13 8355     -2.539100e+02 1.179999e+01
+15 8355     -8.345400e+02 5.364500e+02
+0 8356     8.242000e+02 3.419200e+02
+3 8356     5.167000e+02 7.734003e+01
+7 8356     6.221700e+02 5.476800e+02
+12 8356     7.059000e+02 5.965500e+02
+0 8357     8.242000e+02 3.419200e+02
+2 8357     6.746801e+02 4.015600e+02
+3 8357     5.167000e+02 7.734003e+01
+7 8357     6.221700e+02 5.476800e+02
+9 8357     4.303600e+02 4.429000e+02
+12 8357     7.059000e+02 5.965500e+02
+0 8358     8.579900e+02 3.414000e+02
+2 8358     7.060400e+02 4.125700e+02
+7 8358     6.533199e+02 5.521000e+02
+9 8358     4.564399e+02 4.517200e+02
+0 8359     3.695900e+02 3.310400e+02
+6 8359     1.150024e+00 4.034600e+02
+0 8360     -3.484100e+02 3.274000e+02
+7 8360     -5.529500e+02 3.483500e+02
+10 8360     -5.440400e+02 4.963500e+02
+11 8360     -1.658200e+02 -4.193200e+02
+13 8360     -8.869000e+01 4.619995e+00
+14 8360     -3.514001e+01 -4.266800e+02
+15 8360     -5.438300e+02 5.389900e+02
+0 8361     -1.738900e+02 3.214000e+02
+2 8361     -4.471900e+02 4.069000e+01
+7 8361     -3.747600e+02 3.634500e+02
+15 8361     -2.985800e+02 5.531000e+02
+0 8362     -5.491900e+02 3.195800e+02
+4 8362     -4.216998e+01 -3.788000e+01
+11 8362     -3.435200e+02 -4.220000e+02
+13 8362     -2.519400e+02 -8.770020e+00
+15 8362     -8.244400e+02 5.024500e+02
+0 8363     -5.015200e+02 3.187600e+02
+7 8363     -7.118500e+02 3.204100e+02
+10 8363     -7.320700e+02 4.730500e+02
+13 8363     -2.132700e+02 -8.539978e+00
+14 8363     -1.901200e+02 -4.349100e+02
+15 8363     -7.565400e+02 5.070400e+02
+0 8364     -4.609800e+02 3.141800e+02
+7 8364     -6.699900e+02 3.187100e+02
+10 8364     -6.804100e+02 4.708200e+02
+12 8364     -8.055000e+02 2.034500e+02
+15 8364     -6.977800e+02 5.051700e+02
+0 8365     -4.513900e+02 3.144700e+02
+7 8365     -6.601200e+02 3.201100e+02
+11 8365     -2.576400e+02 -4.292100e+02
+12 8365     -7.936800e+02 2.059500e+02
+15 8365     -6.847400e+02 5.068800e+02
+0 8366     -6.684500e+02 3.111900e+02
+13 8366     -3.934700e+02 -3.037000e+01
+14 8366     -4.142000e+02 -4.497300e+02
+0 8367     6.136500e+02 3.062500e+02
+2 8367     4.744000e+02 2.890800e+02
+3 8367     3.317600e+02 -3.294000e+01
+6 8367     3.930900e+02 4.806700e+02
+7 8367     4.241300e+02 4.785400e+02
+8 8367     4.508600e+02 2.088800e+02
+9 8367     2.631400e+02 3.417500e+02
+10 8367     5.966300e+02 5.679100e+02
+13 8367     7.996500e+02 7.025000e+01
+0 8368     6.136500e+02 3.062500e+02
+2 8368     4.744000e+02 2.890800e+02
+3 8368     3.317600e+02 -3.294000e+01
+6 8368     3.930900e+02 4.806700e+02
+7 8368     4.241300e+02 4.785400e+02
+8 8368     4.508600e+02 2.088800e+02
+9 8368     2.631400e+02 3.417500e+02
+10 8368     5.966300e+02 5.679100e+02
+11 8368     7.255300e+02 -4.147500e+02
+12 8368     4.780601e+02 4.882400e+02
+13 8368     7.996500e+02 7.025000e+01
+0 8369     6.709800e+02 3.054900e+02
+7 8369     4.802900e+02 4.875000e+02
+9 8369     3.141400e+02 3.630100e+02
+10 8369     6.648700e+02 5.728400e+02
+12 8369     5.440699e+02 5.071900e+02
+0 8370     7.767300e+02 3.037800e+02
+2 8370     6.411801e+02 3.518600e+02
+3 8370     4.883101e+02 3.096997e+01
+6 8370     5.848199e+02 5.273400e+02
+7 8370     5.824700e+02 5.037800e+02
+8 8370     5.903700e+02 2.569200e+02
+9 8370     4.029301e+02 3.999100e+02
+10 8370     7.923500e+02 5.844400e+02
+12 8370     6.633900e+02 5.404400e+02
+0 8371     6.148400e+02 3.004100e+02
+2 8371     4.771500e+02 2.833400e+02
+6 8371     3.955200e+02 4.740000e+02
+7 8371     4.258700e+02 4.722400e+02
+8 8371     4.530200e+02 2.040100e+02
+9 8371     2.658000e+02 3.367800e+02
+10 8371     5.983400e+02 5.605700e+02
+11 8371     7.274500e+02 -4.200600e+02
+12 8371     4.801899e+02 4.814500e+02
+13 8371     8.009301e+02 6.506000e+01
+0 8372     7.825400e+02 3.010500e+02
+8 8372     5.954900e+02 2.562900e+02
+0 8373     3.120001e+01 2.986800e+02
+4 8373     -1.057100e+02 -3.696800e+02
+7 8373     -1.651100e+02 3.695200e+02
+10 8373     -8.887000e+01 4.971000e+02
+11 8373     1.806100e+02 -4.453300e+02
+15 8373     -1.450000e+01 5.495600e+02
+0 8374     8.610800e+02 2.976300e+02
+2 8374     7.209000e+02 3.772400e+02
+3 8374     5.614399e+02 5.552002e+01
+12 8374     7.572000e+02 5.620700e+02
+0 8375     8.671801e+02 2.977200e+02
+2 8375     7.260800e+02 3.781700e+02
+7 8375     6.680100e+02 5.127800e+02
+9 8375     4.739800e+02 4.248600e+02
+12 8375     7.634200e+02 5.642500e+02
+0 8376     8.440002e+01 2.899500e+02
+4 8376     -1.152300e+02 -4.061800e+02
+6 8376     -3.012900e+02 2.807600e+02
+7 8376     -1.099400e+02 3.688400e+02
+11 8376     2.320300e+02 -4.521800e+02
+12 8376     -1.539000e+02 2.907900e+02
+15 8376     6.038000e+01 5.454100e+02
+0 8377     6.979800e+02 2.904000e+02
+2 8377     5.660000e+02 3.091300e+02
+3 8377     4.203199e+02 -1.151001e+01
+6 8377     4.976700e+02 4.904300e+02
+7 8377     5.087700e+02 4.778200e+02
+8 8377     5.269500e+02 2.232800e+02
+9 8377     3.410300e+02 3.615700e+02
+10 8377     6.986500e+02 5.584100e+02
+0 8378     6.635999e+01 2.889700e+02
+6 8378     -3.231000e+02 2.740200e+02
+0 8379     6.012200e+02 2.878700e+02
+2 8379     4.659000e+02 2.661200e+02
+3 8379     3.245200e+02 -5.495001e+01
+6 8379     3.818200e+02 4.560200e+02
+7 8379     4.142700e+02 4.583100e+02
+9 8379     2.560800e+02 3.217800e+02
+11 8379     7.171899e+02 -4.332600e+02
+13 8379     7.890400e+02 5.309003e+01
+0 8380     -5.614400e+02 2.828300e+02
+7 8380     -7.707100e+02 2.739200e+02
+10 8380     -8.019600e+02 4.238700e+02
+13 8380     -2.640300e+02 -4.287000e+01
+14 8380     -2.562400e+02 -4.749301e+02
+15 8380     -8.339400e+02 4.485000e+02
+0 8381     8.289001e+01 2.807300e+02
+2 8381     -1.436300e+02 4.838000e+01
+4 8381     -1.208200e+02 -4.055700e+02
+6 8381     -2.966900e+02 2.702800e+02
+7 8381     -1.084500e+02 3.598800e+02
+9 8381     -2.587100e+02 1.130200e+02
+11 8381     2.296300e+02 -4.614100e+02
+12 8381     -1.513100e+02 2.816000e+02
+13 8381     2.819100e+02 -1.125000e+01
+14 8381     4.272400e+02 -4.669900e+02
+15 8381     6.002002e+01 5.314800e+02
+0 8382     -2.459100e+02 2.799600e+02
+13 8382     -4.919983e+00 -3.275000e+01
+14 8382     6.602002e+01 -4.785601e+02
+0 8383     5.847500e+02 2.789600e+02
+2 8383     4.504301e+02 2.499000e+02
+10 8383     5.643600e+02 5.319200e+02
+13 8383     7.739800e+02 4.316998e+01
+0 8384     7.956000e+01 2.759700e+02
+7 8384     -1.108200e+02 3.548100e+02
+11 8384     2.267800e+02 -4.657900e+02
+12 8384     -1.505200e+02 2.764400e+02
+13 8384     2.818500e+02 -1.546002e+01
+0 8385     8.812000e+01 2.763900e+02
+4 8385     -1.240200e+02 -4.098800e+02
+7 8385     -1.026500e+02 3.571100e+02
+11 8385     2.344700e+02 -4.646800e+02
+15 8385     6.698999e+01 5.273400e+02
+0 8386     8.812000e+01 2.763900e+02
+4 8386     -1.240200e+02 -4.098800e+02
+6 8386     -2.865200e+02 2.655200e+02
+8 8386     -3.862000e+01 2.645001e+01
+9 8386     -2.515100e+02 1.119700e+02
+11 8386     2.344700e+02 -4.646800e+02
+12 8386     -1.434200e+02 2.787800e+02
+13 8386     2.878800e+02 -1.377002e+01
+14 8386     4.344900e+02 -4.704800e+02
+15 8386     6.698999e+01 5.273400e+02
+0 8387     7.656000e+02 2.763100e+02
+2 8387     6.380400e+02 3.228900e+02
+3 8387     4.869700e+02 3.619995e+00
+7 8387     5.754301e+02 4.757200e+02
+8 8387     5.873000e+02 2.329900e+02
+10 8387     7.798600e+02 5.491800e+02
+12 8387     6.584000e+02 5.078900e+02
+0 8388     -2.032100e+02 2.749200e+02
+7 8388     -3.953300e+02 3.136700e+02
+10 8388     -3.607500e+02 4.472700e+02
+15 8388     -3.312000e+02 4.851500e+02
+0 8389     -5.210022e+00 2.718900e+02
+9 8389     -3.334400e+02 9.072000e+01
+0 8390     -5.210022e+00 2.718900e+02
+4 8390     -1.179800e+02 -3.470300e+02
+6 8390     -3.988600e+02 2.347700e+02
+10 8390     -1.281500e+02 4.620800e+02
+15 8390     -5.979999e+01 5.074600e+02
+0 8391     9.398999e+01 2.718100e+02
+6 8391     -2.773300e+02 2.632500e+02
+7 8391     -9.578998e+01 3.533000e+02
+11 8391     2.409301e+02 -4.695200e+02
+12 8391     -1.355300e+02 2.759900e+02
+15 8391     7.608002e+01 5.212200e+02
+0 8392     -2.733002e+01 2.711700e+02
+7 8392     -2.159500e+02 3.360700e+02
+10 8392     -1.536800e+02 4.597400e+02
+15 8392     -8.990002e+01 5.041400e+02
+0 8393     -6.667500e+02 2.679500e+02
+13 8393     -3.808900e+02 -6.521997e+01
+14 8393     -4.030300e+02 -4.949700e+02
+0 8394     -5.240900e+02 2.656000e+02
+4 8394     -7.413000e+01 -4.408002e+01
+5 8394     -1.396200e+02 -3.968000e+02
+7 8394     -7.274000e+02 2.609400e+02
+8 8394     -5.946100e+02 -4.882001e+01
+10 8394     -7.517400e+02 4.060900e+02
+0 8395     3.069100e+02 2.613000e+02
+6 8395     -2.395001e+01 3.118800e+02
+0 8396     -1.842400e+02 2.590600e+02
+7 8396     -3.729300e+02 3.016000e+02
+10 8396     -3.379600e+02 4.297500e+02
+11 8396     -1.956000e+01 -4.832800e+02
+15 8396     -3.048000e+02 4.661200e+02
+0 8397     -5.480800e+02 2.536600e+02
+14 8397     -2.455900e+02 -5.090300e+02
+0 8398     -6.634500e+02 2.529600e+02
+13 8398     -3.746500e+02 -7.813000e+01
+14 8398     -3.971800e+02 -5.121600e+02
+0 8399     8.625900e+02 2.525400e+02
+3 8399     5.762800e+02 2.114001e+01
+7 8399     6.696000e+02 4.694700e+02
+0 8400     -5.421300e+02 2.505800e+02
+14 8400     -2.387200e+02 -5.119200e+02
+0 8401     6.482000e+02 2.495400e+02
+7 8401     4.648101e+02 4.298000e+02
+9 8401     3.066700e+02 3.095600e+02
+0 8402     8.794900e+02 2.476200e+02
+2 8402     7.528400e+02 3.405700e+02
+3 8402     5.925601e+02 2.290002e+01
+7 8402     6.861100e+02 4.674400e+02
+9 8402     4.962200e+02 3.929200e+02
+12 8402     7.895900e+02 5.160900e+02
+0 8403     -7.099976e+00 2.462300e+02
+4 8403     -1.326600e+02 -3.467000e+02
+6 8403     -3.824800e+02 2.054300e+02
+8 8403     -1.080100e+02 -5.670013e+00
+10 8403     -1.274200e+02 4.313900e+02
+11 8403     1.453700e+02 -4.957800e+02
+13 8403     2.127000e+02 -4.498999e+01
+14 8403     3.394100e+02 -5.070400e+02
+15 8403     -6.006000e+01 4.721400e+02
+0 8404     2.374700e+02 2.451700e+02
+5 8404     7.002300e+02 -4.197700e+02
+6 8404     -9.209000e+01 2.750100e+02
+7 8404     5.009003e+01 3.483600e+02
+10 8404     1.582800e+02 4.548600e+02
+11 8404     3.780400e+02 -4.911600e+02
+14 8404     6.107000e+02 -4.963199e+02
+15 8404     2.758600e+02 5.051600e+02
+0 8405     -5.502500e+02 2.406500e+02
+10 8405     -7.801900e+02 3.714600e+02
+13 8405     -2.564400e+02 -8.112000e+01
+14 8405     -2.509600e+02 -5.245900e+02
+0 8406     8.528800e+02 2.367800e+02
+2 8406     7.315400e+02 3.216300e+02
+3 8406     5.743500e+02 5.330017e+00
+7 8406     6.626801e+02 4.531300e+02
+12 8406     7.636600e+02 4.967600e+02
+0 8407     8.655300e+02 2.370300e+02
+2 8407     7.430800e+02 3.263500e+02
+3 8407     5.857200e+02 9.849976e+00
+7 8407     6.745601e+02 4.552300e+02
+9 8407     4.886899e+02 3.809200e+02
+12 8407     7.786100e+02 5.010800e+02
+0 8408     -7.028003e+01 2.356400e+02
+7 8408     -2.516300e+02 2.955100e+02
+0 8409     8.587200e+02 2.361200e+02
+2 8409     7.373400e+02 3.237100e+02
+7 8409     6.683700e+02 4.537300e+02
+9 8409     4.835100e+02 3.782800e+02
+0 8410     8.587200e+02 2.361200e+02
+7 8410     6.683700e+02 4.537300e+02
+9 8410     4.835100e+02 3.782800e+02
+0 8411     8.554700e+02 2.307900e+02
+2 8411     7.362700e+02 3.176300e+02
+3 8411     5.789301e+02 1.409973e+00
+7 8411     6.659900e+02 4.476400e+02
+9 8411     4.827300e+02 3.729600e+02
+0 8412     8.670800e+02 2.314800e+02
+3 8412     5.883500e+02 4.950012e+00
+7 8412     6.771899e+02 4.498600e+02
+9 8412     4.933101e+02 3.760700e+02
+0 8413     8.587600e+02 2.271800e+02
+2 8413     7.399000e+02 3.141400e+02
+0 8414     8.587600e+02 2.271800e+02
+2 8414     7.399000e+02 3.141400e+02
+0 8415     -3.392500e+02 2.222900e+02
+7 8415     -5.239300e+02 2.418900e+02
+0 8416     5.540699e+02 2.161700e+02
+7 8416     3.765800e+02 3.811900e+02
+15 8416     7.180601e+02 5.141300e+02
+0 8417     6.142000e+02 2.173200e+02
+9 8417     2.843101e+02 2.690400e+02
+15 8417     8.025200e+02 5.257300e+02
+0 8418     7.267400e+02 2.167500e+02
+2 8418     6.152200e+02 2.522200e+02
+6 8418     5.491300e+02 4.202400e+02
+7 8418     5.457000e+02 4.121400e+02
+8 8418     5.670100e+02 1.752800e+02
+9 8418     3.835100e+02 3.148000e+02
+10 8418     7.364301e+02 4.730300e+02
+0 8419     8.415200e+02 2.157700e+02
+2 8419     7.275400e+02 2.994200e+02
+0 8420     8.520800e+02 2.137700e+02
+2 8420     7.379800e+02 3.014700e+02
+3 8420     5.814301e+02 -1.384998e+01
+7 8420     6.654200e+02 4.311000e+02
+9 8420     4.849800e+02 3.596100e+02
+12 8420     7.698700e+02 4.730400e+02
+0 8421     -1.207001e+01 2.044200e+02
+5 8421     4.318300e+02 -4.706899e+02
+6 8421     -3.584900e+02 1.569400e+02
+9 8421     -2.972400e+02 4.890997e+01
+10 8421     -1.290800e+02 3.802200e+02
+0 8422     6.043300e+02 2.008900e+02
+3 8422     3.523300e+02 -1.337400e+02
+6 8422     4.073200e+02 3.606600e+02
+7 8422     4.283900e+02 3.744200e+02
+8 8422     4.634301e+02 1.214000e+02
+9 8422     2.799700e+02 2.518900e+02
+12 8422     4.924000e+02 3.696000e+02
+15 8422     7.901801e+02 5.005100e+02
+0 8423     6.086100e+02 1.962500e+02
+2 8423     4.976899e+02 1.799600e+02
+3 8423     3.566700e+02 -1.345400e+02
+6 8423     4.139800e+02 3.581400e+02
+7 8423     4.335400e+02 3.710900e+02
+9 8423     2.847000e+02 2.508700e+02
+10 8423     5.978400e+02 4.350600e+02
+12 8423     4.987400e+02 3.668500e+02
+13 8423     8.071200e+02 -2.383002e+01
+15 8423     7.967600e+02 4.957800e+02
+0 8424     7.304700e+02 1.914500e+02
+7 8424     5.531400e+02 3.888000e+02
+10 8424     7.432600e+02 4.432300e+02
+0 8425     6.070100e+02 1.859200e+02
+2 8425     4.983300e+02 1.697900e+02
+3 8425     3.592100e+02 -1.457600e+02
+6 8425     4.147800e+02 3.459100e+02
+7 8425     4.330000e+02 3.609700e+02
+8 8425     4.689900e+02 1.109300e+02
+9 8425     2.860000e+02 2.415200e+02
+10 8425     5.964900e+02 4.237000e+02
+12 8425     4.991700e+02 3.551300e+02
+13 8425     8.067600e+02 -3.316998e+01
+15 8425     7.957500e+02 4.805900e+02
+0 8426     -5.262000e+01 1.851000e+02
+8 8426     -1.203900e+02 -5.179001e+01
+9 8426     -3.224600e+02 2.919000e+01
+13 8426     1.894200e+02 -9.942999e+01
+14 8426     3.090300e+02 -5.771700e+02
+0 8427     7.334200e+02 1.853000e+02
+2 8427     6.323000e+02 2.257600e+02
+7 8427     5.572700e+02 3.836800e+02
+8 8427     5.810800e+02 1.535700e+02
+0 8428     7.334200e+02 1.853000e+02
+2 8428     6.323000e+02 2.257600e+02
+3 8428     4.857000e+02 -8.752002e+01
+6 8428     5.665699e+02 3.890000e+02
+7 8428     5.572700e+02 3.836800e+02
+8 8428     5.810800e+02 1.535700e+02
+0 8429     8.864001e+01 1.810700e+02
+10 8429     -9.210022e+00 3.615600e+02
+13 8429     4.038101e+02 -6.865997e+01
+0 8430     8.341500e+02 1.769200e+02
+3 8430     5.783300e+02 -5.108002e+01
+7 8430     6.534000e+02 3.930100e+02
+0 8431     8.341500e+02 1.769200e+02
+2 8431     7.319000e+02 2.607500e+02
+3 8431     5.783300e+02 -5.108002e+01
+7 8431     6.534000e+02 3.930100e+02
+9 8431     4.807600e+02 3.257900e+02
+0 8432     -3.217200e+02 1.750800e+02
+7 8432     -4.952000e+02 1.988900e+02
+10 8432     -4.914300e+02 3.150800e+02
+15 8432     -4.831400e+02 3.308700e+02
+0 8433     6.934399e+02 1.752000e+02
+3 8433     4.496899e+02 -1.145100e+02
+0 8434     6.934399e+02 1.752000e+02
+3 8434     4.496899e+02 -1.145100e+02
+6 8434     5.217900e+02 3.637900e+02
+7 8434     5.194900e+02 3.662400e+02
+8 8434     5.479200e+02 1.321300e+02
+9 8434     3.664000e+02 2.685700e+02
+0 8435     -2.410400e+02 1.688200e+02
+7 8435     -4.091400e+02 2.051900e+02
+15 8435     -3.705200e+02 3.324200e+02
+0 8436     7.306600e+02 1.688000e+02
+2 8436     6.360800e+02 2.106700e+02
+3 8436     4.909900e+02 -1.015600e+02
+7 8436     5.576300e+02 3.669600e+02
+10 8436     7.454800e+02 4.161500e+02
+0 8437     -1.038500e+02 1.671800e+02
+2 8437     -2.736800e+02 -6.952002e+01
+5 8437     3.397800e+02 -5.122000e+02
+7 8437     -2.681500e+02 2.252300e+02
+8 8437     -1.579900e+02 -7.104999e+01
+9 8437     -3.592300e+02 7.140015e+00
+13 8437     1.493199e+02 -1.177900e+02
+0 8438     -5.532600e+02 1.649600e+02
+7 8438     -7.394900e+02 1.510700e+02
+0 8439     -2.690900e+02 1.637700e+02
+8 8439     -3.130000e+02 -1.005700e+02
+0 8440     6.029500e+02 1.642500e+02
+2 8440     4.971100e+02 1.462800e+02
+3 8440     3.590601e+02 -1.680000e+02
+8 8440     4.676801e+02 9.164001e+01
+13 8440     8.057600e+02 -5.307001e+01
+0 8441     -2.434600e+02 1.590000e+02
+7 8441     -4.099200e+02 1.953600e+02
+15 8441     -3.711200e+02 3.204500e+02
+0 8442     -2.176500e+02 1.554900e+02
+5 8442     2.164600e+02 -5.249600e+02
+0 8443     -2.647700e+02 1.530000e+02
+7 8443     -4.298300e+02 1.868100e+02
+0 8444     8.390699e+02 1.531600e+02
+9 8444     4.899301e+02 3.095900e+02
+0 8445     6.372200e+02 1.481000e+02
+2 8445     5.419600e+02 1.455800e+02
+3 8445     4.026200e+02 -1.663200e+02
+6 8445     4.615200e+02 3.140500e+02
+7 8445     4.680500e+02 3.297000e+02
+8 8445     5.041899e+02 8.944000e+01
+9 8445     3.235100e+02 2.228200e+02
+10 8445     6.351300e+02 3.812700e+02
+12 8445     5.445500e+02 3.231700e+02
+13 8445     8.419200e+02 -6.246002e+01
+15 8445     8.424700e+02 4.314800e+02
+0 8446     -8.174500e+02 1.464700e+02
+4 8446     -1.123300e+02 1.230400e+02
+5 8446     -4.701100e+02 -5.221300e+02
+0 8447     -2.884003e+01 1.426300e+02
+4 8447     -1.776000e+02 -3.832900e+02
+5 8447     5.592100e+02 -5.153300e+02
+6 8447     -1.604700e+02 1.534100e+02
+7 8447     -1.487300e+02 2.434100e+02
+10 8447     -1.421600e+02 3.052200e+02
+13 8447     3.101801e+02 -1.090200e+02
+15 8447     -9.054999e+01 3.278600e+02
+0 8448     6.798700e+02 1.409200e+02
+2 8448     5.883199e+02 1.587200e+02
+3 8448     4.467600e+02 -1.527100e+02
+7 8448     5.107400e+02 3.312100e+02
+8 8448     5.419000e+02 9.959000e+01
+12 8448     5.927100e+02 3.353000e+02
+0 8449     -1.532800e+02 1.397500e+02
+7 8449     -3.110400e+02 1.905700e+02
+0 8450     7.048900e+02 1.395900e+02
+2 8450     6.151500e+02 1.696500e+02
+3 8450     4.721500e+02 -1.415600e+02
+6 8450     5.441300e+02 3.298600e+02
+8 8450     5.655699e+02 1.072300e+02
+9 8450     3.853000e+02 2.453600e+02
+10 8450     7.162300e+02 3.791200e+02
+12 8450     6.234301e+02 3.399900e+02
+0 8451     7.048900e+02 1.395900e+02
+6 8451     5.441300e+02 3.298600e+02
+8 8451     5.655699e+02 1.072300e+02
+9 8451     3.853000e+02 2.453600e+02
+10 8451     7.162300e+02 3.791200e+02
+12 8451     6.234301e+02 3.399900e+02
+0 8452     -4.493000e+02 1.387400e+02
+4 8452     -1.512400e+02 -7.678003e+01
+7 8452     -6.209200e+02 1.427800e+02
+0 8453     -3.017300e+02 1.375700e+02
+7 8453     -4.633600e+02 1.657700e+02
+15 8453     -4.480000e+02 2.813400e+02
+0 8454     7.098101e+02 1.357100e+02
+2 8454     6.204600e+02 1.686900e+02
+0 8455     7.338199e+02 1.342700e+02
+3 8455     5.017000e+02 -1.322700e+02
+6 8455     5.793300e+02 3.346700e+02
+7 8455     5.638300e+02 3.345000e+02
+9 8455     4.109000e+02 2.534700e+02
+10 8455     7.510699e+02 3.762000e+02
+12 8455     6.583199e+02 3.454500e+02
+0 8456     7.338199e+02 1.342700e+02
+2 8456     6.463700e+02 1.782400e+02
+3 8456     5.017000e+02 -1.322700e+02
+6 8456     5.793300e+02 3.346700e+02
+7 8456     5.638300e+02 3.345000e+02
+8 8456     5.919700e+02 1.134000e+02
+9 8456     4.109000e+02 2.534700e+02
+10 8456     7.510699e+02 3.762000e+02
+12 8456     6.583199e+02 3.454500e+02
+0 8457     7.833800e+02 1.314400e+02
+3 8457     5.504200e+02 -1.100700e+02
+7 8457     6.122600e+02 3.411300e+02
+0 8458     7.203700e+02 1.276200e+02
+3 8458     4.913900e+02 -1.451500e+02
+7 8458     5.520400e+02 3.253500e+02
+9 8458     4.018600e+02 2.419600e+02
+12 8458     6.451600e+02 3.325900e+02
+0 8459     7.548300e+02 1.290400e+02
+3 8459     5.235300e+02 -1.277700e+02
+9 8459     4.298400e+02 2.580800e+02
+12 8459     6.835900e+02 3.470700e+02
+0 8460     7.473199e+02 1.261800e+02
+3 8460     5.170800e+02 -1.334900e+02
+7 8460     5.782500e+02 3.290600e+02
+0 8461     -6.646002e+01 1.248100e+02
+7 8461     -1.935400e+02 2.124100e+02
+10 8461     -1.841000e+02 2.804500e+02
+15 8461     -1.363500e+02 2.976800e+02
+0 8462     7.036100e+02 1.175000e+02
+3 8462     4.788000e+02 -1.616500e+02
+6 8462     5.490601e+02 3.061700e+02
+7 8462     5.370400e+02 3.131000e+02
+8 8462     5.700800e+02 9.010001e+01
+9 8462     3.901600e+02 2.276300e+02
+12 8462     6.285601e+02 3.166800e+02
+0 8463     7.036100e+02 1.175000e+02
+3 8463     4.788000e+02 -1.616500e+02
+6 8463     5.490601e+02 3.061700e+02
+7 8463     5.370400e+02 3.131000e+02
+8 8463     5.700800e+02 9.010001e+01
+9 8463     3.901600e+02 2.276300e+02
+12 8463     6.285601e+02 3.166800e+02
+0 8464     -7.725000e+01 1.161700e+02
+4 8464     -1.926400e+02 -3.374200e+02
+5 8464     4.771400e+02 -5.509100e+02
+6 8464     -2.490500e+02 9.196002e+01
+7 8464     -2.027400e+02 2.019600e+02
+10 8464     -1.962800e+02 2.685000e+02
+12 8464     -1.962500e+02 1.424200e+02
+15 8464     -1.498700e+02 2.837800e+02
+0 8465     8.323800e+02 1.137200e+02
+2 8465     7.486500e+02 2.025800e+02
+3 8465     5.982400e+02 -1.059400e+02
+7 8465     6.599900e+02 3.331600e+02
+9 8465     4.955800e+02 2.770400e+02
+0 8466     8.323800e+02 1.137200e+02
+2 8466     7.486500e+02 2.025800e+02
+7 8466     6.599900e+02 3.331600e+02
+9 8466     4.955800e+02 2.770400e+02
+0 8467     8.323800e+02 1.137200e+02
+2 8467     7.486500e+02 2.025800e+02
+7 8467     6.599900e+02 3.331600e+02
+9 8467     4.955800e+02 2.770400e+02
+0 8468     7.186500e+02 1.118500e+02
+3 8468     4.962500e+02 -1.596700e+02
+7 8468     5.527000e+02 3.101700e+02
+12 8468     6.481600e+02 3.149200e+02
+0 8469     7.065300e+02 1.092600e+02
+2 8469     6.259000e+02 1.415600e+02
+3 8469     4.834700e+02 -1.679400e+02
+6 8469     5.539000e+02 2.981300e+02
+7 8469     5.405800e+02 3.058000e+02
+8 8469     5.739800e+02 8.401001e+01
+9 8469     3.937900e+02 2.221900e+02
+10 8469     7.197300e+02 3.439500e+02
+12 8469     6.334700e+02 3.085800e+02
+0 8470     7.634301e+02 1.084600e+02
+2 8470     6.830400e+02 1.667800e+02
+3 8470     5.376700e+02 -1.416400e+02
+7 8470     5.954399e+02 3.153100e+02
+10 8470     7.877800e+02 3.487700e+02
+0 8471     7.634301e+02 1.084600e+02
+2 8471     6.830400e+02 1.667800e+02
+3 8471     5.376700e+02 -1.416400e+02
+7 8471     5.954399e+02 3.153100e+02
+9 8471     4.419399e+02 2.452900e+02
+10 8471     7.877800e+02 3.487700e+02
+12 8471     6.976801e+02 3.283400e+02
+0 8472     5.027002e+01 1.064700e+02
+4 8472     -2.068800e+02 -4.498000e+02
+5 8472     6.778400e+02 -5.487000e+02
+6 8472     -2.752002e+01 1.500100e+02
+8 8472     1.560400e+02 6.237000e+01
+12 8472     -1.979980e+00 2.032300e+02
+13 8472     3.986300e+02 -1.286100e+02
+15 8472     1.956000e+01 2.893700e+02
+0 8473     6.321200e+02 1.059000e+02
+2 8473     5.481400e+02 9.828998e+01
+6 8473     4.663500e+02 2.623300e+02
+7 8473     4.684000e+02 2.877300e+02
+8 8473     5.093000e+02 5.017999e+01
+9 8473     3.304399e+02 1.824500e+02
+10 8473     6.315200e+02 3.305200e+02
+12 8473     5.484301e+02 2.719700e+02
+13 8473     8.416400e+02 -1.012400e+02
+15 8473     8.400100e+02 3.714500e+02
+0 8474     -7.760999e+01 1.051900e+02
+7 8474     -2.001900e+02 1.916000e+02
+10 8474     -1.944400e+02 2.564100e+02
+0 8475     5.842400e+02 1.035200e+02
+9 8475     2.859800e+02 1.610000e+02
+10 8475     5.758101e+02 3.230100e+02
+0 8476     5.842400e+02 1.035200e+02
+6 8476     4.068900e+02 2.433100e+02
+10 8476     5.758101e+02 3.230100e+02
+0 8477     7.545200e+02 1.021000e+02
+3 8477     5.313600e+02 -1.515700e+02
+7 8477     5.875601e+02 3.077600e+02
+10 8477     7.770900e+02 3.407500e+02
+0 8478     7.801300e+02 1.017500e+02
+2 8478     7.017900e+02 1.680600e+02
+3 8478     5.557200e+02 -1.396700e+02
+7 8478     6.123300e+02 3.120100e+02
+9 8478     4.575300e+02 2.468900e+02
+10 8478     8.079600e+02 3.428700e+02
+12 8478     7.184800e+02 3.271300e+02
+0 8479     8.070100e+02 1.019100e+02
+3 8479     5.795300e+02 -1.270800e+02
+7 8479     6.377400e+02 3.170200e+02
+9 8479     4.790400e+02 2.579700e+02
+12 8479     7.484700e+02 3.373400e+02
+0 8480     2.744700e+02 9.657001e+01
+7 8480     1.615400e+02 2.485700e+02
+10 8480     2.150400e+02 2.820400e+02
+13 8480     5.832800e+02 -1.207200e+02
+15 8480     3.298199e+02 3.078000e+02
+0 8481     7.845601e+02 9.356000e+01
+7 8481     6.175699e+02 3.050100e+02
+9 8481     4.628000e+02 2.420100e+02
+10 8481     8.139000e+02 3.339300e+02
+12 8481     7.250200e+02 3.193700e+02
+0 8482     7.097300e+02 9.248001e+01
+7 8482     5.455200e+02 2.895800e+02
+9 8482     4.010800e+02 2.086000e+02
+0 8483     -2.755800e+02 9.151001e+01
+7 8483     -4.268800e+02 1.251400e+02
+15 8483     -4.083900e+02 2.220500e+02
+0 8484     7.515300e+02 9.157999e+01
+2 8484     6.762900e+02 1.455700e+02
+7 8484     5.865100e+02 2.970400e+02
+9 8484     4.373000e+02 2.267900e+02
+10 8484     7.749600e+02 3.275000e+02
+12 8484     6.890500e+02 3.060700e+02
+0 8485     7.515300e+02 9.157999e+01
+2 8485     6.762900e+02 1.455700e+02
+3 8485     5.324500e+02 -1.625200e+02
+7 8485     5.865100e+02 2.970400e+02
+9 8485     4.373000e+02 2.267900e+02
+10 8485     7.749600e+02 3.275000e+02
+12 8485     6.890500e+02 3.060700e+02
+0 8486     -2.759300e+02 8.585001e+01
+5 8486     1.654300e+02 -6.031200e+02
+7 8486     -4.249600e+02 1.196600e+02
+15 8486     -4.075400e+02 2.145900e+02
+0 8487     5.498199e+02 8.523001e+01
+6 8487     3.694300e+02 2.096700e+02
+10 8487     5.371100e+02 2.983600e+02
+12 8487     4.567300e+02 2.200300e+02
+13 8487     7.596100e+02 -1.300900e+02
+15 8487     7.269900e+02 3.297100e+02
+0 8488     7.411300e+02 8.326001e+01
+2 8488     6.681600e+02 1.332400e+02
+9 8488     4.302100e+02 2.164800e+02
+10 8488     7.630601e+02 3.170700e+02
+12 8488     6.795601e+02 2.933300e+02
+0 8489     7.779800e+02 8.304999e+01
+2 8489     7.050601e+02 1.485900e+02
+3 8489     5.595500e+02 -1.573600e+02
+7 8489     6.128000e+02 2.936700e+02
+9 8489     4.608800e+02 2.310100e+02
+10 8489     8.068101e+02 3.203400e+02
+12 8489     7.202700e+02 3.056500e+02
+0 8490     5.563000e+02 8.032999e+01
+6 8490     3.788400e+02 2.069300e+02
+7 8490     3.971300e+02 2.473900e+02
+8 8490     4.441000e+02 1.980011e+00
+10 8490     5.459900e+02 2.925700e+02
+12 8490     4.659100e+02 2.171000e+02
+13 8490     7.669000e+02 -1.336500e+02
+15 8490     7.372000e+02 3.232200e+02
+0 8491     -2.537500e+02 7.923999e+01
+7 8491     -4.013200e+02 1.174200e+02
+15 8491     -3.769700e+02 2.089600e+02
+0 8492     9.134003e+01 7.904999e+01
+4 8492     -2.294600e+02 -4.848199e+02
+5 8492     7.378700e+02 -5.783300e+02
+6 8492     3.744000e+01 1.349200e+02
+10 8492     4.099976e+00 2.415300e+02
+12 8492     5.953003e+01 1.875600e+02
+15 8492     7.856000e+01 2.575000e+02
+0 8493     6.790100e+02 7.709003e+01
+2 8493     6.070400e+02 9.577002e+01
+3 8493     4.672500e+02 -2.126900e+02
+6 8493     5.311200e+02 2.521300e+02
+7 8493     5.186500e+02 2.691200e+02
+8 8493     5.584700e+02 4.707001e+01
+9 8493     3.800200e+02 1.830800e+02
+12 8493     6.113900e+02 2.620800e+02
+0 8494     7.494700e+02 7.722998e+01
+2 8494     6.786100e+02 1.311200e+02
+3 8494     5.357600e+02 -1.761600e+02
+7 8494     5.866700e+02 2.829000e+02
+9 8494     4.392000e+02 2.150900e+02
+12 8494     6.911500e+02 2.895300e+02
+0 8495     5.371200e+02 7.506000e+01
+6 8495     3.545400e+02 1.937600e+02
+7 8495     3.781100e+02 2.394400e+02
+10 8495     5.233000e+02 2.854800e+02
+13 8495     7.476500e+02 -1.408200e+02
+15 8495     7.107200e+02 3.137800e+02
+0 8496     6.850900e+02 7.133002e+01
+2 8496     6.134399e+02 9.404999e+01
+3 8496     4.743199e+02 -2.139600e+02
+6 8496     5.388800e+02 2.490100e+02
+7 8496     5.249600e+02 2.652700e+02
+9 8496     3.856600e+02 1.818700e+02
+12 8496     6.179500e+02 2.594000e+02
+0 8497     6.850900e+02 7.133002e+01
+2 8497     6.134399e+02 9.404999e+01
+3 8497     4.743199e+02 -2.139600e+02
+6 8497     5.388800e+02 2.490100e+02
+9 8497     3.856600e+02 1.818700e+02
+0 8498     4.060999e+01 6.467999e+01
+6 8498     -1.482001e+01 1.029100e+02
+7 8498     -5.604999e+01 1.840400e+02
+12 8498     4.919983e+00 1.571400e+02
+13 8498     3.998600e+02 -1.635000e+02
+15 8498     1.112000e+01 2.310800e+02
+0 8499     -2.859200e+02 5.776001e+01
+2 8499     -4.180400e+02 -1.963900e+02
+4 8499     -2.146100e+02 -1.721800e+02
+13 8499     1.526001e+01 -2.219500e+02
+0 8500     6.722700e+02 5.706000e+01
+2 8500     6.049399e+02 7.245001e+01
+6 8500     5.280601e+02 2.267900e+02
+7 8500     5.143900e+02 2.485600e+02
+0 8501     6.722700e+02 5.706000e+01
+7 8501     5.143900e+02 2.485600e+02
+0 8502     -4.748100e+02 5.521997e+01
+4 8502     -1.948300e+02 -5.896002e+01
+13 8502     -1.563200e+02 -2.355500e+02
+15 8502     -6.772600e+02 1.456400e+02
+0 8503     7.078000e+02 5.445001e+01
+3 8503     5.017600e+02 -2.182900e+02
+6 8503     5.703000e+02 2.389600e+02
+8 8503     5.868000e+02 3.985999e+01
+9 8503     4.094500e+02 1.780400e+02
+10 8503     7.259600e+02 2.791800e+02
+12 8503     6.486801e+02 2.489300e+02
+0 8504     1.259800e+02 5.322998e+01
+2 8504     2.590300e+02 1.090500e+02
+5 8504     7.866100e+02 -6.067400e+02
+8 8504     2.453400e+02 4.237000e+01
+10 8504     4.752002e+01 2.159900e+02
+15 8504     1.288500e+02 2.272900e+02
+0 8505     6.951000e+02 4.975000e+01
+2 8505     6.306700e+02 7.609998e+01
+6 8505     5.568300e+02 2.287300e+02
+7 8505     5.377100e+02 2.462900e+02
+9 8505     4.002000e+02 1.676300e+02
+10 8505     7.106801e+02 2.720100e+02
+0 8506     1.553400e+02 4.934998e+01
+4 8506     -2.581900e+02 -5.371000e+02
+10 8506     8.131000e+01 2.140000e+02
+0 8507     8.193300e+02 4.860999e+01
+2 8507     7.559600e+02 1.360000e+02
+3 8507     6.090200e+02 -1.683000e+02
+9 8507     5.034700e+02 2.216100e+02
+12 8507     7.760900e+02 2.858100e+02
+0 8508     -4.423400e+02 4.790002e+01
+2 8508     -6.142100e+02 -2.432000e+02
+0 8509     6.802100e+02 4.834998e+01
+3 8509     4.773800e+02 -2.380800e+02
+6 8509     5.395100e+02 2.190200e+02
+9 8509     3.877100e+02 1.582000e+02
+0 8510     7.143600e+02 4.285999e+01
+2 8510     6.526500e+02 7.978003e+01
+7 8510     5.572300e+02 2.433200e+02
+8 8510     5.958199e+02 3.239001e+01
+9 8510     4.182600e+02 1.714400e+02
+10 8510     7.342200e+02 2.665800e+02
+12 8510     6.596801e+02 2.383100e+02
+0 8511     8.201899e+02 3.502002e+01
+2 8511     7.611600e+02 1.243000e+02
+3 8511     6.145200e+02 -1.795500e+02
+7 8511     6.590400e+02 2.563700e+02
+9 8511     5.080601e+02 2.117000e+02
+12 8511     7.805500e+02 2.720200e+02
+0 8512     6.689600e+02 3.353998e+01
+2 8512     6.056600e+02 4.748999e+01
+3 8512     4.691801e+02 -2.589900e+02
+6 8512     5.292000e+02 2.005800e+02
+7 8512     5.138800e+02 2.256700e+02
+8 8512     5.583000e+02 5.200012e+00
+9 8512     3.801100e+02 1.425400e+02
+12 8512     6.084200e+02 2.107000e+02
+0 8513     8.382700e+02 3.257001e+01
+2 8513     7.801200e+02 1.312800e+02
+7 8513     6.768800e+02 2.580100e+02
+9 8513     5.232600e+02 2.183100e+02
+12 8513     8.019301e+02 2.778400e+02
+0 8514     7.349700e+02 3.215002e+01
+2 8514     6.781899e+02 7.908002e+01
+3 8514     5.390000e+02 -2.256300e+02
+9 8514     4.399399e+02 1.716000e+02
+12 8514     6.864200e+02 2.342600e+02
+0 8515     6.603700e+02 2.934003e+01
+2 8515     5.994200e+02 3.785999e+01
+7 8515     5.064399e+02 2.197700e+02
+8 8515     5.506600e+02 7.000732e-02
+9 8515     3.747600e+02 1.344600e+02
+10 8515     6.711300e+02 2.447200e+02
+0 8516     5.187900e+02 2.609003e+01
+7 8516     3.661600e+02 1.882000e+02
+0 8517     7.470100e+02 2.373999e+01
+2 8517     6.920900e+02 7.726001e+01
+3 8517     5.516700e+02 -2.269000e+02
+7 8517     5.911400e+02 2.314500e+02
+10 8517     7.739600e+02 2.477900e+02
+12 8517     7.018199e+02 2.303800e+02
+0 8518     7.470100e+02 2.373999e+01
+2 8518     6.920900e+02 7.726001e+01
+3 8518     5.516700e+02 -2.269000e+02
+7 8518     5.911400e+02 2.314500e+02
+10 8518     7.739600e+02 2.477900e+02
+12 8518     7.018199e+02 2.303800e+02
+0 8519     -7.788600e+02 2.295001e+01
+13 8519     -4.294100e+02 -2.812900e+02
+0 8520     -3.017700e+02 2.310999e+01
+4 8520     -2.327100e+02 -1.620300e+02
+7 8520     -4.367700e+02 5.491998e+01
+10 8520     -4.490600e+02 1.378800e+02
+15 8520     -4.347000e+02 1.256100e+02
+0 8521     -5.839001e+01 2.173999e+01
+3 8521     -3.484003e+01 -3.063500e+02
+7 8521     -1.530800e+02 1.209400e+02
+15 8521     -1.151300e+02 1.587600e+02
+0 8522     2.216000e+02 2.065997e+01
+10 8522     1.605700e+02 1.875200e+02
+13 8522     5.614900e+02 -1.867200e+02
+15 8522     2.642300e+02 1.961300e+02
+0 8523     7.039500e+02 1.770001e+01
+2 8523     6.498700e+02 4.879999e+01
+3 8523     5.129700e+02 -2.563600e+02
+6 8523     5.760699e+02 1.967300e+02
+7 8523     5.506899e+02 2.168400e+02
+8 8523     5.922500e+02 7.220001e+00
+9 8523     4.170601e+02 1.453200e+02
+10 8523     7.232900e+02 2.361700e+02
+12 8523     6.547500e+02 2.063500e+02
+0 8524     8.288199e+02 1.765002e+01
+2 8524     7.754200e+02 1.117300e+02
+3 8524     6.280300e+02 -1.917600e+02
+7 8524     6.697300e+02 2.413000e+02
+9 8524     5.198900e+02 2.021800e+02
+12 8524     7.940800e+02 2.578500e+02
+0 8525     7.496300e+02 1.631000e+01
+9 8525     4.561899e+02 1.652500e+02
+0 8526     4.753700e+02 1.403998e+01
+7 8526     3.292200e+02 1.708700e+02
+0 8527     5.588400e+02 1.134998e+01
+6 8527     4.013100e+02 1.294900e+02
+0 8528     6.051300e+02 1.059003e+01
+6 8528     4.583000e+02 1.485300e+02
+12 8528     5.413700e+02 1.586200e+02
+13 8528     8.254000e+02 -1.898000e+02
+15 8528     8.131700e+02 2.341900e+02
+0 8529     6.973300e+02 1.067999e+01
+2 8529     6.450900e+02 3.852002e+01
+3 8529     5.081600e+02 -2.661000e+02
+6 8529     5.701801e+02 1.867100e+02
+7 8529     5.452500e+02 2.089900e+02
+8 8529     5.886801e+02 -1.089996e+00
+9 8529     4.132000e+02 1.366100e+02
+10 8529     7.165601e+02 2.270000e+02
+12 8529     6.491200e+02 1.963100e+02
+0 8530     6.973300e+02 1.067999e+01
+2 8530     6.450900e+02 3.852002e+01
+3 8530     5.081600e+02 -2.661000e+02
+6 8530     5.701801e+02 1.867100e+02
+7 8530     5.452500e+02 2.089900e+02
+8 8530     5.886801e+02 -1.089996e+00
+9 8530     4.132000e+02 1.366100e+02
+10 8530     7.165601e+02 2.270000e+02
+12 8530     6.491200e+02 1.963100e+02
+0 8531     2.856600e+02 1.089001e+01
+7 8531     1.900200e+02 1.692200e+02
+15 8531     3.550400e+02 1.915700e+02
+0 8532     7.484900e+02 8.669983e+00
+2 8532     6.972200e+02 6.370001e+01
+3 8532     5.576500e+02 -2.400000e+02
+7 8532     5.946500e+02 2.172600e+02
+9 8532     4.563700e+02 1.594700e+02
+10 8532     7.772200e+02 2.301400e+02
+0 8533     -3.489200e+02 7.750000e+00
+4 8533     -2.367200e+02 -1.329300e+02
+15 8533     -4.973800e+02 9.904001e+01
+0 8534     7.166500e+02 7.960022e+00
+3 8534     5.283900e+02 -2.589200e+02
+7 8534     5.643500e+02 2.102200e+02
+9 8534     4.312400e+02 1.427800e+02
+10 8534     7.394600e+02 2.263300e+02
+0 8535     -4.023600e+02 6.789978e+00
+2 8535     -5.331200e+02 -2.681100e+02
+15 8535     -5.705200e+02 9.057999e+01
+0 8536     -4.180000e+02 4.130005e+00
+2 8536     -5.524000e+02 -2.749100e+02
+15 8536     -5.921500e+02 8.376001e+01
+0 8537     -8.388000e+01 4.349976e+00
+7 8537     -1.786500e+02 9.750000e+01
+15 8537     -1.464900e+02 1.310700e+02
+0 8538     -3.333900e+02 2.890015e+00
+13 8538     -1.331000e+01 -2.718700e+02
+0 8539     3.013400e+02 3.090027e+00
+12 8539     3.045800e+02 1.455900e+02
+0 8540     7.070800e+02 2.729980e+00
+2 8540     6.570500e+02 3.528998e+01
+3 8540     5.205699e+02 -2.689100e+02
+9 8540     4.229200e+02 1.344700e+02
+12 8540     6.616899e+02 1.908600e+02
+0 8541     7.070800e+02 2.729980e+00
+2 8541     6.570500e+02 3.528998e+01
+3 8541     5.205699e+02 -2.689100e+02
+9 8541     4.229200e+02 1.344700e+02
+12 8541     6.616899e+02 1.908600e+02
+0 8542     8.475400e+02 3.309998e+00
+2 8542     7.973000e+02 1.062400e+02
+3 8542     6.501600e+02 -1.951100e+02
+7 8542     6.885900e+02 2.310800e+02
+12 8542     8.187300e+02 2.467400e+02
+0 8543     8.475400e+02 3.309998e+00
+2 8543     7.973000e+02 1.062400e+02
+3 8543     6.501600e+02 -1.951100e+02
+7 8543     6.885900e+02 2.310800e+02
+9 8543     5.377200e+02 1.980600e+02
+12 8543     8.187300e+02 2.467400e+02
+0 8544     6.465699e+02 2.090027e+00
+2 8544     5.925300e+02 2.840027e+00
+3 8544     4.585300e+02 -3.037700e+02
+6 8544     5.115300e+02 1.565900e+02
+7 8544     4.968199e+02 1.906000e+02
+8 8544     5.449399e+02 -2.834000e+01
+9 8544     3.688600e+02 1.036300e+02
+10 8544     6.565200e+02 2.115700e+02
+13 8544     8.699399e+02 -1.908000e+02
+15 8544     8.725699e+02 2.282500e+02
+0 8545     6.465699e+02 2.090027e+00
+2 8545     5.925300e+02 2.840027e+00
+3 8545     4.585300e+02 -3.037700e+02
+6 8545     5.115300e+02 1.565900e+02
+7 8545     4.968199e+02 1.906000e+02
+8 8545     5.449399e+02 -2.834000e+01
+9 8545     3.688600e+02 1.036300e+02
+12 8545     5.921200e+02 1.661600e+02
+13 8545     8.699399e+02 -1.908000e+02
+15 8545     8.725699e+02 2.282500e+02
+0 8546     7.486100e+02 2.309998e+00
+7 8546     5.954200e+02 2.112200e+02
+10 8546     7.774600e+02 2.229300e+02
+12 8546     7.087700e+02 2.070300e+02
+0 8547     7.486100e+02 2.309998e+00
+3 8547     5.599100e+02 -2.464900e+02
+7 8547     5.954200e+02 2.112200e+02
+10 8547     7.774600e+02 2.229300e+02
+12 8547     7.087700e+02 2.070300e+02
+0 8548     7.486100e+02 2.309998e+00
+3 8548     5.599100e+02 -2.464900e+02
+7 8548     5.954200e+02 2.112200e+02
+9 8548     4.582200e+02 1.536200e+02
+10 8548     7.774600e+02 2.229300e+02
+12 8548     7.087700e+02 2.070300e+02
+0 8549     -4.131000e+02 4.899902e-01
+2 8549     -5.432000e+02 -2.767500e+02
+13 8549     -8.646997e+01 -2.786800e+02
+15 8549     -5.848100e+02 7.966998e+01
+0 8550     5.171000e+02 6.300049e-01
+7 8550     3.708400e+02 1.643800e+02
+10 8550     5.067100e+02 1.968200e+02
+0 8551     -4.213100e+02 -1.989990e+00
+13 8551     -9.363000e+01 -2.812700e+02
+0 8552     6.562400e+02 -1.809998e+00
+6 8552     5.239399e+02 1.561800e+02
+9 8552     3.792100e+02 1.064300e+02
+12 8552     6.040200e+02 1.661900e+02
+0 8553     6.562400e+02 -1.809998e+00
+3 8553     4.702900e+02 -3.008800e+02
+6 8553     5.239399e+02 1.561800e+02
+12 8553     6.040200e+02 1.661900e+02
+0 8554     -4.583300e+02 -3.289978e+00
+10 8554     -6.329200e+02 8.933002e+01
+13 8554     -1.280100e+02 -2.848300e+02
+15 8554     -6.469600e+02 6.883002e+01
+0 8555     8.481899e+02 -2.750000e+00
+3 8555     6.531400e+02 -2.004900e+02
+9 8555     5.400300e+02 1.930700e+02
+12 8555     8.212000e+02 2.400100e+02
+0 8556     -3.971300e+02 -6.239990e+00
+13 8556     -7.066998e+01 -2.829800e+02
+15 8556     -5.620300e+02 7.344000e+01
+0 8557     5.756400e+02 -8.530029e+00
+6 8557     4.277700e+02 1.139700e+02
+7 8557     4.282300e+02 1.657100e+02
+12 8557     5.116600e+02 1.251200e+02
+13 8557     7.970100e+02 -2.107200e+02
+0 8558     -3.343900e+02 -1.384998e+01
+4 8558     -2.521700e+02 -1.417600e+02
+13 8558     -1.025000e+01 -2.865600e+02
+0 8559     6.378000e+02 -1.397998e+01
+6 8559     5.055400e+02 1.344500e+02
+12 8559     5.859399e+02 1.445400e+02
+0 8560     8.752100e+02 -1.550000e+01
+3 8560     6.799100e+02 -1.983900e+02
+7 8560     7.163900e+02 2.187200e+02
+9 8560     5.636100e+02 1.954300e+02
+0 8561     -3.381700e+02 -1.808002e+01
+4 8561     -2.534300e+02 -1.391100e+02
+0 8562     6.095699e+02 -2.127002e+01
+7 8562     4.634600e+02 1.608700e+02
+15 8562     8.235100e+02 1.901800e+02
+0 8563     6.095699e+02 -2.127002e+01
+7 8563     4.634600e+02 1.608700e+02
+0 8564     7.216400e+02 -2.171997e+01
+2 8564     6.801200e+02 1.825000e+01
+3 8564     5.435500e+02 -2.842800e+02
+7 8564     5.728900e+02 1.827300e+02
+9 8564     4.428600e+02 1.211900e+02
+10 8564     7.473400e+02 1.920900e+02
+12 8564     6.852800e+02 1.706800e+02
+0 8565     7.487900e+02 -2.214001e+01
+2 8565     7.076100e+02 3.241998e+01
+7 8565     5.988500e+02 1.878000e+02
+9 8565     4.658500e+02 1.337500e+02
+10 8565     7.802400e+02 1.941200e+02
+0 8566     6.316200e+02 -2.251001e+01
+8 8566     5.358101e+02 -5.454001e+01
+10 8566     6.416801e+02 1.819100e+02
+12 8566     5.798900e+02 1.339800e+02
+0 8567     -4.917000e+02 -2.362000e+01
+13 8567     -1.532200e+02 -3.048500e+02
+0 8568     6.931100e+02 -2.540002e+01
+2 8568     6.503101e+02 -8.900146e-01
+3 8568     5.161100e+02 -3.046800e+02
+6 8568     5.744700e+02 1.450800e+02
+8 8568     5.928101e+02 -3.319000e+01
+9 8568     4.187300e+02 1.036500e+02
+10 8568     7.141899e+02 1.849200e+02
+12 8568     6.528000e+02 1.545300e+02
+0 8569     7.202600e+02 -3.328998e+01
+2 8569     6.812800e+02 6.489990e+00
+3 8569     5.458199e+02 -2.962400e+02
+7 8569     5.730100e+02 1.712700e+02
+9 8569     4.443800e+02 1.109600e+02
+10 8569     7.470000e+02 1.782000e+02
+12 8569     6.862500e+02 1.565600e+02
+0 8570     7.202600e+02 -3.328998e+01
+2 8570     6.812800e+02 6.489990e+00
+3 8570     5.458199e+02 -2.962400e+02
+7 8570     5.730100e+02 1.712700e+02
+9 8570     4.443800e+02 1.109600e+02
+10 8570     7.470000e+02 1.782000e+02
+0 8571     7.202600e+02 -3.328998e+01
+2 8571     6.812800e+02 6.489990e+00
+3 8571     5.458199e+02 -2.962400e+02
+9 8571     4.443800e+02 1.109600e+02
+10 8571     7.470000e+02 1.782000e+02
+0 8572     6.730699e+02 -3.400000e+01
+2 8572     6.309200e+02 -1.966998e+01
+3 8572     4.981400e+02 -3.234200e+02
+6 8572     5.529200e+02 1.276400e+02
+7 8572     5.271899e+02 1.615300e+02
+8 8572     5.766801e+02 -4.831000e+01
+9 8572     4.030601e+02 8.737000e+01
+12 8572     6.318000e+02 1.373000e+02
+0 8573     1.969800e+02 -3.446002e+01
+7 8573     1.157200e+02 1.122300e+02
+13 8573     5.493600e+02 -2.349500e+02
+15 8573     2.363500e+02 1.168800e+02
+0 8574     3.531500e+02 -3.808002e+01
+10 8574     3.184700e+02 1.343600e+02
+13 8574     6.636100e+02 -2.324100e+02
+15 8574     4.561400e+02 1.330700e+02
+0 8575     2.860601e+02 -4.152002e+01
+7 8575     1.986500e+02 1.164300e+02
+10 8575     2.418300e+02 1.230200e+02
+12 8575     3.039800e+02 9.475000e+01
+13 8575     6.182600e+02 -2.372700e+02
+15 8575     3.627400e+02 1.191800e+02
+0 8576     -3.670300e+02 -4.423999e+01
+4 8576     -2.657500e+02 -1.204600e+02
+7 8576     -4.887900e+02 -2.212000e+01
+8 8576     -3.179900e+02 -2.672500e+02
+9 8576     -4.897200e+02 -1.998200e+02
+15 8576     -5.154200e+02 2.588000e+01
+0 8577     -3.670300e+02 -4.423999e+01
+2 8577     -4.522300e+02 -3.031000e+02
+4 8577     -2.657500e+02 -1.204600e+02
+7 8577     -4.887900e+02 -2.212000e+01
+8 8577     -3.179900e+02 -2.672500e+02
+9 8577     -4.897200e+02 -1.998200e+02
+13 8577     -3.362000e+01 -3.143400e+02
+15 8577     -5.154200e+02 2.588000e+01
+0 8578     -4.203998e+01 -4.378998e+01
+3 8578     1.933002e+01 -3.581300e+02
+4 8578     -2.978800e+02 -3.761700e+02
+7 8578     -1.224700e+02 5.947998e+01
+10 8578     -1.369300e+02 8.566998e+01
+13 8578     3.346200e+02 -2.655600e+02
+15 8578     -8.458002e+01 7.190002e+01
+0 8579     -4.290100e+02 -4.527002e+01
+2 8579     -5.335500e+02 -3.213300e+02
+8 8579     -3.827000e+02 -2.808000e+02
+13 8579     -9.060999e+01 -3.193500e+02
+15 8579     -6.021900e+02 1.491998e+01
+0 8580     -1.732200e+02 -4.759998e+01
+2 8580     -6.482001e+01 -1.109400e+02
+4 8580     -2.835900e+02 -2.754600e+02
+6 8580     -2.518800e+02 -1.140600e+02
+7 8580     -2.608900e+02 2.895001e+01
+12 8580     -2.383100e+02 -5.191998e+01
+15 8580     -2.606500e+02 4.867999e+01
+0 8581     -5.988000e+01 -5.003998e+01
+7 8581     -1.412800e+02 4.969000e+01
+10 8581     -1.573900e+02 7.677002e+01
+13 8581     3.169600e+02 -2.732000e+02
+15 8581     -1.080700e+02 6.071997e+01
+0 8582     2.149800e+02 -5.028003e+01
+3 8582     2.763900e+02 -2.829100e+02
+4 8582     -3.408900e+02 -5.868900e+02
+15 8582     2.638199e+02 9.792001e+01
+0 8583     -4.208400e+02 -5.112000e+01
+7 8583     -5.442900e+02 -3.894000e+01
+15 8583     -5.895100e+02 8.440002e+00
+0 8584     -3.657500e+02 -5.077002e+01
+2 8584     -4.461700e+02 -3.069200e+02
+4 8584     -2.696500e+02 -1.213500e+02
+7 8584     -4.849900e+02 -2.753998e+01
+8 8584     -3.128000e+02 -2.699700e+02
+9 8584     -4.836700e+02 -2.025400e+02
+15 8584     -5.122100e+02 1.795001e+01
+0 8585     7.250900e+02 -5.301001e+01
+7 8585     5.801700e+02 1.534500e+02
+10 8585     7.536600e+02 1.563500e+02
+12 8585     6.965300e+02 1.373900e+02
+0 8586     7.250900e+02 -5.301001e+01
+2 8586     6.921300e+02 -1.075000e+01
+3 8586     5.575800e+02 -3.127900e+02
+7 8586     5.801700e+02 1.534500e+02
+9 8586     4.535699e+02 9.679999e+01
+10 8586     7.536600e+02 1.563500e+02
+12 8586     6.965300e+02 1.373900e+02
+0 8587     -4.370400e+02 -5.391998e+01
+2 8587     -5.397000e+02 -3.312800e+02
+7 8587     -5.604600e+02 -4.460999e+01
+8 8587     -3.874300e+02 -2.895900e+02
+10 8587     -6.006900e+02 3.216998e+01
+13 8587     -9.589001e+01 -3.273400e+02
+15 8587     -6.105400e+02 2.750000e+00
+0 8588     2.927300e+02 -6.303003e+01
+2 8588     4.332500e+02 2.739990e+00
+6 8588     2.805900e+02 3.273999e+01
+7 8588     2.080000e+02 9.582999e+01
+8 8588     3.911400e+02 -4.219000e+01
+10 8588     2.518300e+02 9.828003e+01
+12 8588     3.163400e+02 7.148999e+01
+13 8588     6.256600e+02 -2.560700e+02
+15 8588     3.745500e+02 9.107999e+01
+0 8589     -3.370500e+02 -6.694000e+01
+2 8589     -3.980700e+02 -3.139400e+02
+8 8589     -2.756200e+02 -2.768600e+02
+0 8590     7.846000e+02 -6.678998e+01
+2 8590     7.592800e+02 6.609985e+00
+0 8591     -3.311000e+02 -6.740002e+01
+2 8591     -3.901800e+02 -3.125900e+02
+7 8591     -4.450700e+02 -3.785999e+01
+8 8591     -2.696000e+02 -2.760700e+02
+9 8591     -4.332400e+02 -2.036000e+02
+0 8592     -1.707800e+02 -6.796002e+01
+7 8592     -2.532000e+02 1.006000e+01
+13 8592     2.153800e+02 -2.992200e+02
+15 8592     -2.538500e+02 2.109003e+01
+0 8593     -1.707800e+02 -6.796002e+01
+2 8593     -4.459998e+01 -1.247300e+02
+4 8593     -2.977100e+02 -2.782800e+02
+6 8593     -2.347500e+02 -1.337800e+02
+7 8593     -2.532000e+02 1.006000e+01
+8 8593     -1.050000e+01 -1.449100e+02
+10 8593     -2.839900e+02 4.402002e+01
+12 8593     -2.227900e+02 -7.246002e+01
+13 8593     2.153800e+02 -2.992200e+02
+15 8593     -2.538500e+02 2.109003e+01
+0 8594     1.280500e+02 -6.903003e+01
+4 8594     -3.403900e+02 -5.155699e+02
+12 8594     1.518300e+02 3.400000e+01
+15 8594     1.476200e+02 6.053003e+01
+0 8595     1.280500e+02 -6.903003e+01
+4 8595     -3.403900e+02 -5.155699e+02
+8 8595     2.833800e+02 -5.722000e+01
+15 8595     1.476200e+02 6.053003e+01
+0 8596     6.959900e+02 -6.853003e+01
+7 8596     5.540699e+02 1.324800e+02
+10 8596     7.212200e+02 1.346200e+02
+0 8597     6.748900e+02 -7.177002e+01
+2 8597     6.466700e+02 -5.835999e+01
+9 8597     4.169100e+02 5.582001e+01
+10 8597     6.967900e+02 1.292600e+02
+0 8598     8.235000e+02 -7.550000e+01
+2 8598     7.984100e+02 1.798999e+01
+7 8598     6.763199e+02 1.519000e+02
+9 8598     5.406500e+02 1.249400e+02
+12 8598     8.136801e+02 1.516700e+02
+0 8599     -4.695300e+02 -8.714001e+01
+7 8599     -5.874000e+02 -8.340997e+01
+8 8599     -4.073800e+02 -3.222300e+02
+13 8599     -1.179600e+02 -3.582400e+02
+0 8600     6.933199e+02 -9.177002e+01
+2 8600     6.700400e+02 -6.898999e+01
+7 8600     5.542700e+02 1.102400e+02
+9 8600     4.368300e+02 4.794000e+01
+0 8601     -4.017300e+02 -1.084200e+02
+2 8601     -4.535600e+02 -3.697700e+02
+7 8601     -5.097900e+02 -9.169000e+01
+8 8601     -3.230500e+02 -3.238100e+02
+15 8601     -5.552300e+02 -6.659003e+01
+0 8602     3.073900e+02 -1.112500e+02
+7 8602     2.322600e+02 5.241998e+01
+10 8602     2.738600e+02 4.453998e+01
+15 8602     4.001500e+02 2.717999e+01
+0 8603     5.384600e+02 -1.148100e+02
+7 8603     4.164500e+02 6.229999e+01
+0 8604     7.685300e+02 -1.172500e+02
+2 8604     7.566899e+02 -5.309998e+01
+7 8604     6.302300e+02 1.012200e+02
+9 8604     5.078199e+02 6.446002e+01
+10 8604     8.097400e+02 8.587000e+01
+12 8604     7.626700e+02 8.384003e+01
+0 8605     -2.677002e+01 -1.238100e+02
+2 8605     1.658700e+02 -1.136600e+02
+10 8605     -1.104900e+02 -5.409973e+00
+15 8605     -5.409003e+01 -3.421997e+01
+0 8606     -4.255300e+02 -1.261700e+02
+7 8606     -5.308900e+02 -1.136200e+02
+0 8607     6.882100e+02 -1.289100e+02
+2 8607     6.763400e+02 -1.115600e+02
+3 8607     5.491600e+02 -4.119200e+02
+7 8607     5.546200e+02 7.309998e+01
+9 8607     4.424600e+02 1.263000e+01
+0 8608     -4.032100e+02 -1.298200e+02
+7 8608     -5.061000e+02 -1.122100e+02
+15 8608     -5.541900e+02 -9.409003e+01
+0 8609     7.963900e+02 -1.418700e+02
+3 8609     6.589200e+02 -3.591500e+02
+9 8609     5.380601e+02 5.778003e+01
+0 8610     7.963900e+02 -1.418700e+02
+3 8610     6.589200e+02 -3.591500e+02
+0 8611     1.360100e+02 -1.450500e+02
+7 8611     7.665002e+01 -5.479980e+00
+10 8611     7.939001e+01 -1.231000e+01
+15 8611     1.684301e+02 -4.065002e+01
+0 8612     2.089700e+02 -1.479500e+02
+10 8612     1.644600e+02 -7.570007e+00
+13 8612     5.758101e+02 -3.330400e+02
+15 8612     2.690000e+02 -3.498999e+01
+0 8613     1.575200e+02 -1.488100e+02
+4 8613     -4.071600e+02 -5.411200e+02
+10 8613     1.036500e+02 -1.446997e+01
+12 8613     2.102100e+02 -4.964001e+01
+13 8613     5.328300e+02 -3.375100e+02
+15 8613     1.983700e+02 -4.347998e+01
+0 8614     -1.745400e+02 -1.522600e+02
+7 8614     -2.510200e+02 -8.332001e+01
+15 8614     -2.450900e+02 -9.277002e+01
+0 8615     6.159003e+01 -1.530000e+02
+2 8615     2.784000e+02 -1.108400e+02
+3 8615     1.915601e+02 -4.124301e+02
+4 8615     -3.931600e+02 -4.605900e+02
+6 8615     9.639001e+01 -1.302100e+02
+7 8615     5.210022e+00 -2.695001e+01
+8 8615     2.528400e+02 -1.417200e+02
+10 8615     -5.900024e+00 -2.963000e+01
+12 8615     1.026300e+02 -8.329999e+01
+15 8615     6.832001e+01 -6.196002e+01
+0 8616     2.868700e+02 -1.527800e+02
+2 8616     4.714700e+02 -7.792999e+01
+3 8616     3.676500e+02 -3.763200e+02
+6 8616     3.132700e+02 -6.366998e+01
+7 8616     2.199600e+02 8.940002e+00
+8 8616     4.199500e+02 -1.131300e+02
+10 8616     2.538900e+02 -5.369995e+00
+12 8616     3.431801e+02 -2.732001e+01
+13 8616     6.378101e+02 -3.342500e+02
+15 8616     3.771400e+02 -3.214001e+01
+0 8617     8.327300e+02 -1.526100e+02
+7 8617     6.950300e+02 8.113000e+01
+9 8617     5.688700e+02 6.627002e+01
+0 8618     1.727600e+02 -1.573100e+02
+13 8618     5.469800e+02 -3.439700e+02
+15 8618     2.198800e+02 -5.358002e+01
+0 8619     7.883900e+02 -1.580900e+02
+7 8619     6.545601e+02 6.652002e+01
+0 8620     8.763700e+02 -1.581700e+02
+3 8620     7.365900e+02 -3.295200e+02
+9 8620     6.048199e+02 8.220001e+01
+0 8621     7.202400e+02 -1.652800e+02
+2 8621     7.215100e+02 -1.305400e+02
+7 8621     5.902600e+02 4.523999e+01
+9 8621     4.814301e+02 -1.369995e+00
+0 8622     -1.522998e+01 -1.660300e+02
+7 8622     -7.056000e+01 -5.537000e+01
+10 8622     -9.346997e+01 -5.272998e+01
+0 8623     -4.270400e+02 -1.717700e+02
+7 8623     -5.205000e+02 -1.591300e+02
+9 8623     -4.666400e+02 -3.087500e+02
+13 8623     -5.884998e+01 -4.295300e+02
+15 8623     -5.818400e+02 -1.556800e+02
+0 8624     -1.334003e+01 -1.776100e+02
+6 8624     2.133002e+01 -1.868300e+02
+12 8624     2.121002e+01 -1.369900e+02
+0 8625     8.385800e+02 -1.777900e+02
+7 8625     7.033400e+02 5.778003e+01
+9 8625     5.819900e+02 4.848999e+01
+0 8626     2.651500e+02 -1.831900e+02
+7 8626     2.055800e+02 -2.266998e+01
+0 8627     -4.536700e+02 -1.871900e+02
+7 8627     -5.451100e+02 -1.791000e+02
+15 8627     -6.167300e+02 -1.803200e+02
+0 8628     -4.571997e+01 -1.922300e+02
+2 8628     1.870600e+02 -1.805700e+02
+4 8628     -4.036700e+02 -3.749400e+02
+6 8628     -4.390015e+00 -2.132600e+02
+7 8628     -9.504999e+01 -8.564001e+01
+8 8628     1.730500e+02 -1.992700e+02
+9 8628     5.972998e+01 -5.672998e+01
+10 8628     -1.256000e+02 -8.637000e+01
+12 8628     -9.559998e+00 -1.620300e+02
+0 8629     -1.354600e+02 -1.955000e+02
+2 8629     3.297998e+01 -2.713700e+02
+3 8629     -4.103998e+01 -5.810601e+02
+7 8629     -1.955800e+02 -1.136400e+02
+8 8629     5.154999e+01 -2.642000e+02
+9 8629     -6.603003e+01 -1.408500e+02
+10 8629     -2.289800e+02 -9.950000e+01
+12 8629     -1.435200e+02 -2.199700e+02
+13 8629     2.562100e+02 -4.131800e+02
+15 8629     -1.884400e+02 -1.460200e+02
+0 8630     -1.085999e+01 -2.006800e+02
+7 8630     -5.721002e+01 -8.690002e+01
+10 8630     -8.477002e+01 -9.265997e+01
+13 8630     3.940400e+02 -3.969900e+02
+0 8631     3.056500e+02 -2.014200e+02
+6 8631     3.583000e+02 -1.053000e+02
+7 8631     2.482000e+02 -3.378998e+01
+8 8631     4.571801e+02 -1.419200e+02
+10 8631     2.802800e+02 -5.938000e+01
+0 8632     -4.696002e+01 -2.020800e+02
+4 8632     -4.095800e+02 -3.756100e+02
+6 8632     2.260010e+00 -2.211200e+02
+7 8632     -9.315997e+01 -9.463000e+01
+10 8632     -1.257600e+02 -9.796002e+01
+12 8632     -4.830017e+00 -1.704200e+02
+15 8632     -7.210999e+01 -1.427700e+02
+0 8633     -4.696002e+01 -2.020800e+02
+6 8633     2.260010e+00 -2.211200e+02
+7 8633     -9.315997e+01 -9.463000e+01
+10 8633     -1.257600e+02 -9.796002e+01
+12 8633     -4.830017e+00 -1.704200e+02
+15 8633     -7.210999e+01 -1.427700e+02
+0 8634     8.512600e+02 -2.016100e+02
+3 8634     7.327500e+02 -3.868000e+02
+7 8634     7.181200e+02 3.776001e+01
+9 8634     5.977900e+02 3.508002e+01
+0 8635     -4.434900e+02 -2.061600e+02
+7 8635     -5.294800e+02 -1.957400e+02
+0 8636     2.895300e+02 -2.066400e+02
+7 8636     2.348700e+02 -4.083002e+01
+10 8636     2.618800e+02 -6.728003e+01
+15 8636     3.867100e+02 -1.050600e+02
+0 8637     7.750500e+02 -2.074100e+02
+2 8637     7.920300e+02 -1.435600e+02
+12 8637     7.946899e+02 -1.412000e+01
+0 8638     8.565800e+02 -2.160600e+02
+3 8638     7.434399e+02 -3.982000e+02
+7 8638     7.245800e+02 2.542999e+01
+9 8638     6.063199e+02 2.504999e+01
+0 8639     9.710022e+00 -2.267600e+02
+4 8639     -4.412200e+02 -4.172400e+02
+0 8640     1.698800e+02 -2.308300e+02
+10 8640     1.281600e+02 -1.080100e+02
+13 8640     5.599100e+02 -4.084900e+02
+15 8640     2.258400e+02 -1.531800e+02
+0 8641     2.329700e+02 -2.339000e+02
+6 8641     3.087600e+02 -1.573500e+02
+12 8641     3.250000e+02 -1.220600e+02
+15 8641     3.133300e+02 -1.477300e+02
+0 8642     1.553800e+02 -2.428900e+02
+2 8642     4.125900e+02 -1.769900e+02
+6 8642     2.329500e+02 -1.959000e+02
+7 8642     1.145500e+02 -9.895001e+01
+9 8642     2.411000e+02 -4.398999e+01
+12 8642     2.423800e+02 -1.577900e+02
+15 8642     2.066700e+02 -1.712700e+02
+0 8643     2.753000e+02 -2.723900e+02
+6 8643     3.371400e+02 -2.025000e+02
+7 8643     2.265000e+02 -1.107200e+02
+12 8643     3.631200e+02 -1.712300e+02
+13 8643     6.404900e+02 -4.449100e+02
+15 8643     3.775601e+02 -1.963600e+02
+0 8644     -1.366998e+01 -2.784900e+02
+6 8644     3.665002e+01 -3.165400e+02
+9 8644     9.031000e+01 -1.601200e+02
+10 8644     -7.914001e+01 -1.820600e+02
+12 8644     3.922998e+01 -2.711500e+02
+13 8644     3.845300e+02 -4.749399e+02
+15 8644     -1.421997e+01 -2.417600e+02
+0 8645     5.079999e+01 -2.960900e+02
+2 8645     3.007900e+02 -2.974600e+02
+3 8645     2.217500e+02 -5.965100e+02
+4 8645     -5.074300e+02 -4.416100e+02
+6 8645     1.183400e+02 -3.088600e+02
+8 8645     2.681100e+02 -2.937000e+02
+9 8645     1.560900e+02 -1.486200e+02
+10 8645     -2.719971e+00 -1.950500e+02
+13 8645     4.467300e+02 -4.852900e+02
+15 8645     7.477002e+01 -2.568900e+02
+0 8646     2.952600e+02 -3.018100e+02
+7 8646     2.458000e+02 -1.403100e+02
+10 8646     2.780800e+02 -1.746800e+02
+15 8646     4.108600e+02 -2.337000e+02
+0 8647     3.229600e+02 -3.115200e+02
+7 8647     2.725900e+02 -1.453100e+02
+10 8647     3.110900e+02 -1.829200e+02
+15 8647     4.506801e+02 -2.437400e+02
+0 8648     3.490200e+02 -3.287600e+02
+12 8648     4.457000e+02 -2.295800e+02
+0 8649     7.352900e+02 -3.496500e+02
+7 8649     6.447500e+02 -1.162900e+02
+0 8650     3.781200e+02 -3.648600e+02
+6 8650     4.415200e+02 -2.934000e+02
+10 8650     3.800601e+02 -2.382400e+02
+0 8651     3.781200e+02 -3.648600e+02
+2 8651     5.879900e+02 -3.356100e+02
+6 8651     4.415200e+02 -2.934000e+02
+8 8651     5.187900e+02 -3.226000e+02
+9 8651     3.868900e+02 -1.711500e+02
+10 8651     3.800601e+02 -2.382400e+02
+0 8652     6.069000e+01 -4.007700e+02
+7 8652     4.215002e+01 -2.779100e+02
+0 8653     4.660100e+02 -4.124600e+02
+7 8653     4.191600e+02 -2.199400e+02
+0 8654     4.497300e+02 -4.217700e+02
+6 8654     5.361100e+02 -3.282600e+02
+0 8655     7.659000e+02 -4.296200e+02
+7 8655     6.882500e+02 -1.817700e+02
+0 8656     -2.640400e+02 -4.333700e+02
+6 8656     -2.173800e+02 -6.305100e+02
+7 8656     -2.847700e+02 -3.819300e+02
+0 8657     7.387600e+02 -4.620000e+02
+7 8657     6.727700e+02 -2.153600e+02
+0 8658     -2.404700e+02 -4.731300e+02
+4 8658     -5.917500e+02 -1.965400e+02
+6 8658     -1.611700e+02 -6.609800e+02
+9 8658     -4.762000e+01 -4.468800e+02
+0 8659     7.290300e+02 -4.849800e+02
+7 8659     6.686100e+02 -2.369400e+02
+0 8660     -1.220400e+02 -5.043700e+02
+4 8660     -6.479400e+02 -2.877100e+02
+6 8660     -1.320007e+00 -6.374900e+02
+9 8660     8.519000e+01 -4.205000e+02
+0 8661     -1.220400e+02 -5.043700e+02
+6 8661     -1.320007e+00 -6.374900e+02
+9 8661     8.519000e+01 -4.205000e+02
+0 8662     -1.887200e+02 -5.090300e+02
+4 8662     -6.358400e+02 -2.357100e+02
+6 8662     -7.465002e+01 -6.742700e+02
+9 8662     2.884998e+01 -4.509600e+02
+0 8663     4.131801e+02 -5.131899e+02
+6 8663     5.561100e+02 -4.275100e+02
+0 8664     -8.703998e+01 -5.321600e+02
+6 8664     5.684003e+01 -6.501300e+02
+9 8664     1.360700e+02 -4.256900e+02
+0 8665     -5.278998e+01 -5.379700e+02
+9 8665     1.689100e+02 -4.155200e+02
+0 8666     -3.100500e+02 -5.421600e+02
+7 8666     -3.055800e+02 -4.978700e+02
+0 8667     1.482500e+02 -5.450000e+02
+2 8667     5.016500e+02 -5.560601e+02
+9 8667     3.327800e+02 -3.508500e+02
+12 8667     3.156300e+02 -5.368500e+02
+0 8668     1.178998e+01 -5.465300e+02
+2 8668     3.714700e+02 -6.051300e+02
+7 8668     2.175000e+01 -4.327800e+02
+9 8668     2.286400e+02 -3.994000e+02
+0 8669     -7.810999e+01 -5.504600e+02
+4 8669     -7.012800e+02 -3.248700e+02
+9 8669     1.571000e+02 -4.335800e+02
+0 8670     1.617800e+02 -5.545900e+02
+6 8670     3.344400e+02 -5.654600e+02
+0 8671     4.665002e+01 -5.559800e+02
+2 8671     4.117400e+02 -6.021200e+02
+7 8671     5.766998e+01 -4.346899e+02
+0 8672     7.635999e+01 -5.571300e+02
+2 8672     4.409800e+02 -5.909700e+02
+4 8672     -7.518000e+02 -4.573500e+02
+9 8672     2.860300e+02 -3.818900e+02
+10 8672     5.396002e+01 -4.903800e+02
+12 8672     2.414100e+02 -5.751899e+02
+0 8673     -1.137000e+01 -5.588800e+02
+9 8673     2.176300e+02 -4.158400e+02
+0 8674     1.127400e+02 -5.625100e+02
+2 8674     4.837500e+02 -5.827700e+02
+7 8674     1.243000e+02 -4.274800e+02
+9 8674     3.195000e+02 -3.728600e+02
+10 8674     9.669000e+01 -4.928700e+02
+0 8675     7.812800e+02 -5.644100e+02
+7 8675     7.295300e+02 -2.970400e+02
+0 8676     5.164100e+02 -5.765200e+02
+7 8676     5.037300e+02 -3.587600e+02
+0 8677     5.709100e+02 5.825100e+02
+2 8677     3.153900e+02 4.802900e+02
+3 8677     1.700800e+02 1.435900e+02
+6 8677     2.309000e+02 7.619600e+02
+8 8677     3.274000e+02 3.717000e+02
+9 8677     1.203300e+02 5.017600e+02
+11 8677     6.367800e+02 -1.648900e+02
+13 8677     7.051000e+02 2.869100e+02
+0 8678     -5.064300e+02 5.795300e+02
+2 8678     -8.016200e+02 3.630600e+02
+4 8678     9.139001e+01 -9.056000e+01
+5 8678     -7.553998e+01 -6.688000e+01
+8 8678     -5.774300e+02 2.683200e+02
+11 8678     -2.864000e+02 -2.034600e+02
+13 8678     -2.045600e+02 2.138100e+02
+14 8678     -1.602400e+02 -1.632700e+02
+0 8679     2.704200e+02 5.783700e+02
+2 8679     -6.034998e+01 3.461500e+02
+3 8679     -2.014900e+02 1.166998e+01
+4 8679     4.523999e+01 -5.400699e+02
+5 8679     6.705400e+02 -6.128003e+01
+6 8679     -2.011700e+02 6.734100e+02
+8 8679     3.071997e+01 2.710600e+02
+9 8679     -2.059200e+02 3.730300e+02
+11 8679     3.841899e+02 -1.848800e+02
+13 8679     4.008300e+02 2.522900e+02
+14 8679     5.704500e+02 -1.438800e+02
+0 8680     4.591100e+02 5.779900e+02
+3 8680     -5.679999e+01 1.290002e+01
+11 8680     5.551600e+02 -1.737100e+02
+13 8680     5.497600e+02 2.649800e+02
+14 8680     7.536000e+02 -1.331500e+02
+0 8681     4.662000e+02 5.785500e+02
+3 8681     -5.014001e+01 1.379999e+01
+0 8682     1.988101e+02 5.700300e+02
+2 8682     -1.204000e+02 3.392200e+02
+4 8682     4.377002e+01 -4.904900e+02
+5 8682     6.000300e+02 -7.182001e+01
+6 8682     -2.754300e+02 6.507800e+02
+8 8682     -1.884998e+01 2.650200e+02
+11 8682     3.197100e+02 -1.969200e+02
+13 8682     3.451801e+02 2.413400e+02
+0 8683     2.630699e+02 5.697100e+02
+2 8683     -6.520001e+01 3.383200e+02
+4 8683     4.094000e+01 -5.350400e+02
+5 8683     6.631400e+02 -7.021997e+01
+6 8683     -2.079300e+02 6.617900e+02
+9 8683     -2.103400e+02 3.656000e+02
+11 8683     3.787900e+02 -1.922800e+02
+13 8683     3.958101e+02 2.451300e+02
+14 8683     5.640900e+02 -1.529700e+02
+0 8684     -7.203700e+02 5.672700e+02
+4 8684     8.498999e+01 3.676001e+01
+0 8685     -3.498500e+02 5.666800e+02
+5 8685     7.092999e+01 -8.157001e+01
+0 8686     6.083300e+02 5.666500e+02
+2 8686     3.585699e+02 4.780700e+02
+3 8686     2.116801e+02 1.421100e+02
+6 8686     2.810600e+02 7.521000e+02
+8 8686     3.624000e+02 3.690400e+02
+9 8686     1.577400e+02 5.004900e+02
+13 8686     7.420100e+02 2.772200e+02
+0 8687     6.083300e+02 5.666500e+02
+3 8687     2.116801e+02 1.421100e+02
+6 8687     2.810600e+02 7.521000e+02
+9 8687     1.577400e+02 5.004900e+02
+13 8687     7.420100e+02 2.772200e+02
+0 8688     -5.954600e+02 5.662600e+02
+5 8688     -1.610900e+02 -7.807001e+01
+0 8689     -1.445000e+02 5.642000e+02
+2 8689     -4.316800e+02 3.364400e+02
+0 8690     -1.445000e+02 5.642000e+02
+2 8690     -4.316800e+02 3.364400e+02
+0 8691     3.847400e+02 5.638300e+02
+2 8691     3.640997e+01 3.340900e+02
+5 8691     7.863199e+02 -7.126001e+01
+6 8691     -8.050000e+01 6.794300e+02
+9 8691     -1.233800e+02 3.652400e+02
+11 8691     4.892200e+02 -1.901800e+02
+13 8691     4.916400e+02 2.487000e+02
+14 8691     6.826000e+02 -1.512400e+02
+0 8692     -1.570000e+02 5.621200e+02
+3 8692     -5.689200e+02 3.997803e-02
+0 8693     -1.570000e+02 5.621200e+02
+2 8693     -4.436000e+02 3.311900e+02
+3 8693     -5.689200e+02 3.997803e-02
+4 8693     6.089001e+01 -2.740200e+02
+5 8693     2.543300e+02 -8.856000e+01
+11 8693     6.809998e+00 -2.149000e+02
+13 8693     6.635999e+01 2.131500e+02
+14 8693     1.641300e+02 -1.783600e+02
+0 8694     2.562000e+01 5.478600e+02
+2 8694     -2.715100e+02 3.149300e+02
+3 8694     -4.020000e+02 -1.746002e+01
+4 8694     4.146002e+01 -3.794100e+02
+5 8694     4.310100e+02 -9.840997e+01
+6 8694     -4.594200e+02 5.894900e+02
+8 8694     -1.440500e+02 2.421000e+02
+12 8694     -2.853500e+02 5.689000e+02
+13 8694     2.095601e+02 2.125400e+02
+14 8694     3.377400e+02 -1.854000e+02
+0 8695     2.256200e+02 5.472700e+02
+2 8695     -9.446002e+01 3.149700e+02
+4 8695     2.877002e+01 -5.075601e+02
+5 8695     6.275900e+02 -9.379999e+01
+6 8695     -2.425900e+02 6.279400e+02
+9 8695     -2.338800e+02 3.447000e+02
+12 8695     -7.576001e+01 5.943600e+02
+0 8696     2.256200e+02 5.472700e+02
+2 8696     -9.446002e+01 3.149700e+02
+4 8696     2.877002e+01 -5.075601e+02
+5 8696     6.275900e+02 -9.379999e+01
+6 8696     -2.425900e+02 6.279400e+02
+8 8696     2.150024e+00 2.453400e+02
+9 8696     -2.338800e+02 3.447000e+02
+12 8696     -7.576001e+01 5.943600e+02
+0 8697     -4.124100e+02 5.449700e+02
+2 8697     -7.007500e+02 3.175300e+02
+4 8697     6.731000e+01 -1.347400e+02
+5 8697     8.880005e+00 -1.027000e+02
+7 8697     -6.509700e+02 5.741000e+02
+8 8697     -4.954700e+02 2.351900e+02
+11 8697     -2.110600e+02 -2.316600e+02
+12 8697     -7.813300e+02 5.089800e+02
+13 8697     -1.324200e+02 1.888500e+02
+14 8697     -7.640002e+01 -1.972400e+02
+0 8698     2.382100e+02 5.426000e+02
+2 8698     -8.342999e+01 3.088700e+02
+3 8698     -2.236600e+02 -2.554999e+01
+4 8698     2.528003e+01 -5.156801e+02
+5 8698     6.398000e+02 -9.912000e+01
+8 8698     1.148999e+01 2.406200e+02
+9 8698     -2.240300e+02 3.397600e+02
+11 8698     3.581300e+02 -2.171400e+02
+12 8698     -6.217999e+01 5.894900e+02
+13 8698     3.764301e+02 2.203300e+02
+14 8698     5.418800e+02 -1.815900e+02
+0 8699     2.319900e+02 5.396300e+02
+2 8699     -8.848999e+01 3.055100e+02
+14 8699     5.361801e+02 -1.854500e+02
+0 8700     2.319900e+02 5.396300e+02
+2 8700     -8.848999e+01 3.055100e+02
+14 8700     5.361801e+02 -1.854500e+02
+0 8701     1.091998e+01 5.373700e+02
+2 8701     -2.840800e+02 3.023100e+02
+4 8701     3.575000e+01 -3.694300e+02
+5 8701     4.163700e+02 -1.105500e+02
+6 8701     -4.738500e+02 5.719100e+02
+9 8701     -3.950100e+02 3.274600e+02
+11 8701     1.553700e+02 -2.314800e+02
+12 8701     -2.990200e+02 5.535100e+02
+13 8701     1.984301e+02 2.017300e+02
+14 8701     3.239399e+02 -1.972200e+02
+0 8702     2.655601e+02 5.367900e+02
+6 8702     -1.911300e+02 6.228600e+02
+11 8702     3.846300e+02 -2.199000e+02
+0 8703     2.530699e+02 5.354800e+02
+4 8703     2.060999e+01 -5.268199e+02
+5 8703     6.562200e+02 -1.054800e+02
+0 8704     6.064800e+02 5.351600e+02
+2 8704     3.650400e+02 4.503500e+02
+3 8704     2.183400e+02 1.163400e+02
+6 8704     2.875300e+02 7.180200e+02
+8 8704     3.673000e+02 3.466500e+02
+11 8704     6.777200e+02 -2.032200e+02
+13 8704     7.444700e+02 2.522700e+02
+0 8705     5.945000e+02 5.338100e+02
+2 8705     3.525900e+02 4.450700e+02
+3 8705     2.064800e+02 1.110800e+02
+6 8705     2.727600e+02 7.128600e+02
+8 8705     3.570000e+02 3.418400e+02
+9 8705     1.531400e+02 4.714400e+02
+11 8705     6.669100e+02 -2.052200e+02
+13 8705     7.330400e+02 2.497000e+02
+0 8706     1.333300e+02 5.320100e+02
+4 8706     2.551001e+01 -4.460601e+02
+11 8706     2.651400e+02 -2.306900e+02
+0 8707     1.643000e+02 5.323900e+02
+12 8707     -1.367800e+02 5.681900e+02
+0 8708     -5.962200e+02 5.312400e+02
+4 8708     7.196997e+01 -3.995001e+01
+5 8708     -1.679800e+02 -1.144700e+02
+11 8708     -3.625700e+02 -2.433600e+02
+13 8708     -2.787800e+02 1.696100e+02
+14 8708     -2.527400e+02 -2.117000e+02
+0 8709     -5.962200e+02 5.312400e+02
+4 8709     7.196997e+01 -3.995001e+01
+5 8709     -1.679800e+02 -1.144700e+02
+13 8709     -2.787800e+02 1.696100e+02
+14 8709     -2.527400e+02 -2.117000e+02
+0 8710     -6.116800e+02 5.286000e+02
+14 8710     -2.657700e+02 -2.138700e+02
+0 8711     4.454800e+02 5.269800e+02
+2 8711     9.067999e+01 2.948500e+02
+11 8711     5.520699e+02 -2.179800e+02
+12 8711     1.494500e+02 5.981300e+02
+13 8711     5.420200e+02 2.213500e+02
+14 8711     7.461801e+02 -1.857400e+02
+0 8712     6.047000e+02 5.274700e+02
+6 8712     2.866300e+02 7.080800e+02
+8 8712     3.668000e+02 3.397900e+02
+13 8712     7.433300e+02 2.452400e+02
+0 8713     6.667300e+02 5.205700e+02
+2 8713     4.740900e+02 5.004900e+02
+3 8713     3.251500e+02 1.642600e+02
+6 8713     4.037500e+02 7.255300e+02
+8 8713     4.533700e+02 3.830500e+02
+9 8713     2.591300e+02 5.224500e+02
+13 8713     8.255900e+02 2.501800e+02
+0 8714     6.667300e+02 5.205700e+02
+2 8714     4.740900e+02 5.004900e+02
+3 8714     3.251500e+02 1.642600e+02
+6 8714     4.037500e+02 7.255300e+02
+8 8714     4.533700e+02 3.830500e+02
+9 8714     2.591300e+02 5.224500e+02
+13 8714     8.255900e+02 2.501800e+02
+0 8715     -1.025700e+02 5.146300e+02
+4 8715     3.015997e+01 -3.005400e+02
+5 8715     3.050900e+02 -1.352400e+02
+8 8715     -2.401200e+02 2.098000e+02
+0 8716     5.345400e+02 5.143700e+02
+2 8716     2.925900e+02 4.076800e+02
+3 8716     1.490500e+02 7.462000e+01
+8 8716     3.080800e+02 3.126200e+02
+9 8716     1.027800e+02 4.377000e+02
+0 8717     2.342200e+02 5.074100e+02
+9 8717     -2.225400e+02 3.073700e+02
+0 8718     6.381400e+02 5.073800e+02
+2 8718     4.487000e+02 4.803100e+02
+6 8718     3.738300e+02 7.060300e+02
+8 8718     4.316200e+02 3.665600e+02
+9 8718     2.374800e+02 5.046900e+02
+13 8718     8.002100e+02 2.372500e+02
+0 8719     6.534700e+02 5.030400e+02
+2 8719     4.654700e+02 4.818100e+02
+3 8719     3.176801e+02 1.466100e+02
+6 8719     3.933500e+02 7.046200e+02
+8 8719     4.462600e+02 3.675700e+02
+9 8719     2.526200e+02 5.064200e+02
+11 8719     7.183800e+02 -2.289000e+02
+13 8719     8.151400e+02 2.351400e+02
+0 8720     1.675000e+01 5.003900e+02
+2 8720     -2.754600e+02 2.613700e+02
+3 8720     -4.072000e+02 -7.045001e+01
+5 8720     4.211500e+02 -1.483900e+02
+6 8720     -4.603400e+02 5.252500e+02
+7 8720     -2.108200e+02 5.698500e+02
+13 8720     2.033700e+02 1.711600e+02
+14 8720     3.298000e+02 -2.350300e+02
+0 8721     1.675000e+01 5.003900e+02
+2 8721     -2.754600e+02 2.613700e+02
+3 8721     -4.072000e+02 -7.045001e+01
+4 8721     1.464001e+01 -3.700500e+02
+5 8721     4.211500e+02 -1.483900e+02
+7 8721     -2.108200e+02 5.698500e+02
+13 8721     2.033700e+02 1.711600e+02
+14 8721     3.298000e+02 -2.350300e+02
+0 8722     -6.085400e+02 4.965900e+02
+4 8722     5.523999e+01 -2.990997e+01
+5 8722     -1.847800e+02 -1.492700e+02
+7 8722     -8.571200e+02 5.017600e+02
+14 8722     -2.677700e+02 -2.468200e+02
+0 8723     -5.759800e+02 4.939800e+02
+4 8723     5.078003e+01 -4.553998e+01
+5 8723     -1.546100e+02 -1.539000e+02
+0 8724     1.065997e+01 4.924800e+02
+2 8724     -2.809100e+02 2.512900e+02
+4 8724     1.077002e+01 -3.645400e+02
+6 8724     -4.678100e+02 5.141700e+02
+7 8724     -2.157000e+02 5.611300e+02
+8 8724     -1.515800e+02 1.913200e+02
+9 8724     -3.918200e+02 2.835100e+02
+13 8724     1.986200e+02 1.640000e+02
+14 8724     3.239000e+02 -2.431600e+02
+0 8725     -7.012300e+02 4.914900e+02
+4 8725     4.992999e+01 3.767999e+01
+5 8725     -3.688000e+02 -1.535100e+02
+11 8725     -4.409100e+02 -2.732000e+02
+0 8726     -4.123700e+02 4.784600e+02
+2 8726     -7.001800e+02 2.375100e+02
+8 8726     -4.944200e+02 1.724300e+02
+11 8726     -2.144400e+02 -2.860800e+02
+12 8726     -7.693900e+02 4.277300e+02
+14 8726     -8.348999e+01 -2.644500e+02
+0 8727     -6.630200e+02 4.762500e+02
+4 8727     4.187000e+01 1.228998e+01
+11 8727     -4.174300e+02 -2.854100e+02
+0 8728     -5.474800e+02 4.758000e+02
+4 8728     4.019000e+01 -5.821002e+01
+5 8728     -1.290100e+02 -1.713500e+02
+0 8729     -6.125600e+02 4.737000e+02
+11 8729     -3.828700e+02 -2.884100e+02
+13 8729     -2.940000e+02 1.211300e+02
+14 8729     -2.755900e+02 -2.693600e+02
+0 8730     7.835699e+02 4.720300e+02
+2 8730     6.015400e+02 4.974700e+02
+3 8730     4.437900e+02 1.636000e+02
+6 8730     5.497100e+02 7.029200e+02
+0 8731     6.426899e+02 4.705000e+02
+2 8731     4.626801e+02 4.499600e+02
+3 8731     3.160800e+02 1.183200e+02
+9 8731     2.502900e+02 4.794700e+02
+13 8731     8.089700e+02 2.090400e+02
+0 8732     7.326000e+02 4.691000e+02
+2 8732     5.529500e+02 4.780200e+02
+6 8732     4.926300e+02 6.866400e+02
+9 8732     3.259900e+02 5.051700e+02
+0 8733     8.299988e+00 4.648000e+02
+2 8733     -2.806500e+02 2.196200e+02
+4 8733     -6.080017e+00 -3.618200e+02
+5 8733     4.112900e+02 -1.866000e+02
+6 8733     -4.632700e+02 4.775900e+02
+7 8733     -2.143600e+02 5.327200e+02
+8 8733     -1.513600e+02 1.663400e+02
+9 8733     -3.885000e+02 2.550800e+02
+11 8733     1.566100e+02 -2.934300e+02
+12 8733     -2.891100e+02 4.686300e+02
+14 8733     3.216700e+02 -2.719400e+02
+0 8734     5.223700e+02 4.614900e+02
+2 8734     2.910400e+02 3.538900e+02
+3 8734     1.487200e+02 2.353003e+01
+6 8734     1.992300e+02 6.133400e+02
+9 8734     1.021200e+02 3.909300e+02
+11 8734     6.156500e+02 -2.719600e+02
+12 8734     3.079200e+02 6.000200e+02
+0 8735     5.223700e+02 4.614900e+02
+2 8735     2.910400e+02 3.538900e+02
+3 8735     1.487200e+02 2.353003e+01
+6 8735     1.992300e+02 6.133400e+02
+9 8735     1.021200e+02 3.909300e+02
+11 8735     6.156500e+02 -2.719600e+02
+12 8735     3.079200e+02 6.000200e+02
+0 8736     3.991700e+02 4.590500e+02
+5 8736     8.088600e+02 -1.816300e+02
+6 8736     -4.322998e+01 5.534400e+02
+0 8737     -2.457200e+02 4.578200e+02
+4 8737     8.559998e+00 -2.147500e+02
+5 8737     1.613400e+02 -1.946900e+02
+7 8737     -4.658200e+02 4.983500e+02
+8 8737     -3.524600e+02 1.543300e+02
+11 8737     -7.092999e+01 -3.042700e+02
+0 8738     7.809200e+02 4.516300e+02
+3 8738     4.472200e+02 1.477400e+02
+0 8739     -1.483900e+02 4.506400e+02
+2 8739     -4.297500e+02 2.011100e+02
+4 8739     -3.070007e+00 -2.685600e+02
+5 8739     2.559399e+02 -2.030300e+02
+7 8739     -3.668200e+02 5.011600e+02
+8 8739     -2.732500e+02 1.490800e+02
+12 8739     -4.589500e+02 4.283400e+02
+13 8739     7.365002e+01 1.203300e+02
+14 8739     1.695000e+02 -2.911100e+02
+0 8740     5.151200e+02 4.511900e+02
+3 8740     1.436800e+02 1.152002e+01
+6 8740     1.929300e+02 5.998400e+02
+8 8740     3.026000e+02 2.588100e+02
+9 8740     9.769000e+01 3.803100e+02
+11 8740     6.112400e+02 -2.827900e+02
+0 8741     -2.587400e+02 4.458300e+02
+2 8741     -5.396200e+02 1.944300e+02
+5 8741     1.472700e+02 -2.075700e+02
+7 8741     -4.774600e+02 4.844100e+02
+0 8742     -2.222100e+02 4.443900e+02
+2 8742     -5.019900e+02 1.931600e+02
+4 8742     -1.070007e+00 -2.262600e+02
+5 8742     1.833900e+02 -2.093400e+02
+7 8742     -4.399200e+02 4.866400e+02
+8 8742     -3.328900e+02 1.411800e+02
+11 8742     -5.052002e+01 -3.167900e+02
+12 8742     -5.411200e+02 4.095800e+02
+13 8742     1.520001e+01 1.115300e+02
+14 8742     9.817999e+01 -2.988300e+02
+0 8743     -1.795100e+02 4.432500e+02
+4 8743     -5.250000e+00 -2.497200e+02
+5 8743     2.248300e+02 -2.110700e+02
+8 8743     -2.981900e+02 1.408800e+02
+11 8743     -1.192999e+01 -3.166600e+02
+13 8743     4.844000e+01 1.121100e+02
+0 8744     -4.277600e+02 4.390000e+02
+2 8744     -7.171000e+02 1.868000e+02
+4 8744     1.197998e+01 -1.150600e+02
+5 8744     -1.885999e+01 -2.121900e+02
+8 8744     -5.072100e+02 1.321500e+02
+11 8744     -2.295500e+02 -3.199800e+02
+12 8744     -7.822000e+02 3.727800e+02
+13 8744     -1.484300e+02 9.854001e+01
+14 8744     -1.019800e+02 -3.056200e+02
+0 8745     -5.330300e+02 4.381000e+02
+4 8745     1.941998e+01 -6.056000e+01
+5 8745     -1.217400e+02 -2.109100e+02
+11 8745     -3.192500e+02 -3.194000e+02
+13 8745     -2.327800e+02 9.375000e+01
+14 8745     -2.044600e+02 -3.065200e+02
+0 8746     -6.023400e+02 4.350300e+02
+14 8746     -2.721300e+02 -3.082800e+02
+0 8747     -2.390700e+02 4.294100e+02
+2 8747     -5.188600e+02 1.748600e+02
+4 8747     -8.000000e+00 -2.156200e+02
+5 8747     1.657600e+02 -2.250000e+02
+7 8747     -4.550200e+02 4.692400e+02
+8 8747     -3.459500e+02 1.271400e+02
+11 8747     -6.445001e+01 -3.291000e+02
+12 8747     -5.573000e+02 3.895200e+02
+13 8747     1.119995e+00 9.762000e+01
+14 8747     8.022998e+01 -3.151400e+02
+0 8748     6.287600e+02 4.192300e+02
+2 8748     4.616200e+02 3.983900e+02
+3 8748     3.159000e+02 6.991998e+01
+7 8748     4.258700e+02 5.851500e+02
+13 8748     8.011000e+02 1.645500e+02
+0 8749     -3.050700e+02 4.161400e+02
+2 8749     -5.862500e+02 1.581000e+02
+4 8749     -1.031000e+01 -1.778800e+02
+5 8749     9.857001e+01 -2.387500e+02
+8 8749     -4.008500e+02 1.123100e+02
+10 8749     -5.039700e+02 6.093500e+02
+12 8749     -6.316700e+02 3.626600e+02
+14 8749     1.553998e+01 -3.295200e+02
+0 8750     6.867100e+02 4.137700e+02
+8 8750     4.918101e+02 3.125800e+02
+9 8750     3.013500e+02 4.513000e+02
+0 8751     -3.725500e+02 4.107300e+02
+2 8751     -6.574700e+02 1.508800e+02
+4 8751     -7.729980e+00 -1.408700e+02
+5 8751     3.137000e+01 -2.430800e+02
+7 8751     -5.896500e+02 4.340900e+02
+8 8751     -4.592800e+02 1.051300e+02
+10 8751     -5.865000e+02 5.978000e+02
+11 8751     -1.828600e+02 -3.446700e+02
+12 8751     -7.111400e+02 3.455000e+02
+13 8751     -1.054700e+02 7.662000e+01
+14 8751     -5.134003e+01 -3.351600e+02
+0 8752     -2.154700e+02 4.075600e+02
+4 8752     -2.215002e+01 -2.264600e+02
+5 8752     1.871400e+02 -2.489900e+02
+7 8752     -4.285100e+02 4.485700e+02
+10 8752     -3.940100e+02 6.060300e+02
+11 8752     -4.415997e+01 -3.484500e+02
+12 8752     -5.262200e+02 3.654800e+02
+14 8752     1.021100e+02 -3.381000e+02
+0 8753     2.121997e+01 4.075000e+02
+2 8753     -2.633000e+02 1.518400e+02
+3 8753     -3.972500e+02 -1.793800e+02
+5 8753     4.226700e+02 -2.484400e+02
+6 8753     -4.376700e+02 4.047900e+02
+7 8753     -1.942400e+02 4.748800e+02
+8 8753     -1.372100e+02 1.132100e+02
+12 8753     -2.650100e+02 4.014700e+02
+13 8753     2.077900e+02 9.151001e+01
+14 8753     3.345400e+02 -3.328000e+02
+0 8754     8.692999e+01 4.030700e+02
+7 8754     -1.301400e+02 4.779600e+02
+0 8755     -3.211900e+02 3.938900e+02
+2 8755     -6.025600e+02 1.301600e+02
+4 8755     -2.115997e+01 -1.669500e+02
+5 8755     8.046997e+01 -2.622300e+02
+7 8755     -5.340400e+02 4.223400e+02
+8 8755     -4.136700e+02 9.032999e+01
+10 8755     -5.203300e+02 5.803800e+02
+11 8755     -1.372500e+02 -3.596900e+02
+12 8755     -6.469500e+02 3.328000e+02
+13 8755     -6.472998e+01 6.407001e+01
+14 8755     -2.440002e+00 -3.532500e+02
+0 8756     -7.103500e+02 3.870000e+02
+13 8756     -4.471300e+02 3.033002e+01
+0 8757     6.937300e+02 3.814000e+02
+3 8757     3.889600e+02 6.292999e+01
+6 8757     4.701300e+02 5.854300e+02
+7 8757     4.921400e+02 5.642100e+02
+8 8757     5.040800e+02 2.896900e+02
+9 8757     3.149500e+02 4.285000e+02
+12 8757     5.511700e+02 5.952700e+02
+13 8757     8.686899e+02 1.416600e+02
+0 8758     -6.678500e+02 3.800900e+02
+13 8758     -4.069600e+02 2.751001e+01
+14 8758     -4.229500e+02 -3.759100e+02
+0 8759     -1.309600e+02 3.790300e+02
+7 8759     -3.397500e+02 4.282400e+02
+11 8759     3.226001e+01 -3.734000e+02
+0 8760     4.618000e+02 3.792900e+02
+2 8760     2.408900e+02 2.508100e+02
+6 8760     1.412000e+02 5.007300e+02
+7 8760     2.503900e+02 5.149500e+02
+8 8760     2.660100e+02 1.861100e+02
+9 8760     6.228003e+01 3.002500e+02
+12 8760     2.560300e+02 4.915400e+02
+0 8761     5.608600e+02 3.767300e+02
+6 8761     2.704400e+02 5.296000e+02
+7 8761     3.509700e+02 5.289800e+02
+13 8761     7.175200e+02 1.180300e+02
+0 8762     9.789978e+00 3.631600e+02
+2 8762     -2.696400e+02 9.791998e+01
+5 8762     4.100000e+02 -2.979300e+02
+6 8762     -4.410700e+02 3.435300e+02
+7 8762     -1.995300e+02 4.282500e+02
+8 8762     -1.414500e+02 7.098001e+01
+9 8762     -3.728000e+02 1.494000e+02
+10 8762     -1.198300e+02 5.729400e+02
+11 8762     1.626400e+02 -3.854500e+02
+0 8763     -3.036600e+02 3.506700e+02
+7 8763     -5.098800e+02 3.786100e+02
+8 8763     -3.972300e+02 4.738000e+01
+10 8763     -4.936000e+02 5.281700e+02
+11 8763     -1.235500e+02 -3.985800e+02
+13 8763     -5.152002e+01 2.698999e+01
+14 8763     1.163000e+01 -4.004000e+02
+15 8763     -4.844500e+02 5.774800e+02
+0 8764     -3.036600e+02 3.506700e+02
+2 8764     -5.828300e+02 7.460999e+01
+4 8764     -4.715002e+01 -1.717600e+02
+5 8764     9.359998e+01 -3.097700e+02
+8 8764     -3.972300e+02 4.738000e+01
+10 8764     -4.936000e+02 5.281700e+02
+11 8764     -1.235500e+02 -3.985800e+02
+15 8764     -4.844500e+02 5.774800e+02
+0 8765     2.028400e+02 3.488300e+02
+2 8765     -6.516998e+01 1.152300e+02
+6 8765     -2.012900e+02 3.782000e+02
+9 8765     -1.976700e+02 1.729800e+02
+12 8765     -4.897998e+01 3.723700e+02
+0 8766     2.028400e+02 3.488300e+02
+6 8766     -2.012900e+02 3.782000e+02
+0 8767     -7.024800e+02 3.481600e+02
+4 8767     -2.231000e+01 5.257001e+01
+13 8767     -4.321600e+02 -1.090027e+00
+14 8767     -4.572500e+02 -4.099200e+02
+0 8768     -6.529400e+02 3.483200e+02
+13 8768     -3.865800e+02 1.960022e+00
+14 8768     -4.016100e+02 -4.094200e+02
+0 8769     5.324200e+02 3.477400e+02
+3 8769     1.894000e+02 -7.540997e+01
+6 8769     2.418400e+02 4.875000e+02
+7 8769     3.262100e+02 4.960200e+02
+8 8769     3.375700e+02 1.835200e+02
+9 8769     1.385300e+02 3.030900e+02
+10 8769     4.965800e+02 6.095700e+02
+12 8769     3.471500e+02 4.815100e+02
+13 8769     6.928900e+02 9.031000e+01
+0 8770     -3.286800e+02 3.441000e+02
+4 8770     -4.822998e+01 -1.575700e+02
+5 8770     6.787000e+01 -3.161000e+02
+7 8770     -5.347600e+02 3.687500e+02
+8 8770     -4.189200e+02 3.919000e+01
+15 8770     -5.178200e+02 5.662300e+02
+0 8771     7.951700e+02 3.394500e+02
+2 8771     6.481801e+02 3.889500e+02
+3 8771     4.928800e+02 6.547998e+01
+7 8771     5.948600e+02 5.408000e+02
+9 8771     4.082800e+02 4.315600e+02
+12 8771     6.740500e+02 5.840700e+02
+0 8772     -1.806900e+02 3.367000e+02
+2 8772     -4.553300e+02 5.909998e+01
+7 8772     -3.838000e+02 3.783600e+02
+8 8772     -2.935100e+02 3.692001e+01
+13 8772     4.671002e+01 1.971002e+01
+15 8772     -3.110100e+02 5.736500e+02
+0 8773     -3.281800e+02 3.358600e+02
+4 8773     -5.332001e+01 -1.566300e+02
+7 8773     -5.330500e+02 3.595000e+02
+11 8773     -1.469500e+02 -4.118800e+02
+15 8773     -5.160400e+02 5.531400e+02
+0 8774     7.177400e+02 3.333100e+02
+6 8774     5.094900e+02 5.424800e+02
+7 8774     5.220800e+02 5.211200e+02
+8 8774     5.341200e+02 2.621500e+02
+9 8774     3.460800e+02 4.021300e+02
+10 8774     7.194500e+02 6.113000e+02
+12 8774     5.897900e+02 5.528400e+02
+0 8775     5.302600e+02 3.288700e+02
+7 8775     3.263199e+02 4.772900e+02
+10 8775     4.956000e+02 5.856600e+02
+13 8775     6.929000e+02 7.371997e+01
+0 8776     5.302600e+02 3.288700e+02
+7 8776     3.263199e+02 4.772900e+02
+10 8776     4.956000e+02 5.856600e+02
+0 8777     6.388700e+02 3.286400e+02
+2 8777     4.939700e+02 3.200000e+02
+3 8777     3.503900e+02 -3.229980e+00
+6 8777     4.163500e+02 5.132400e+02
+7 8777     4.456700e+02 5.044300e+02
+9 8777     2.793700e+02 3.683900e+02
+10 8777     6.249700e+02 5.977300e+02
+11 8777     7.435900e+02 -3.906400e+02
+13 8777     8.204700e+02 9.198999e+01
+0 8778     6.606200e+02 3.277600e+02
+2 8778     5.177200e+02 3.279700e+02
+3 8778     3.725601e+02 4.979980e+00
+6 8778     4.440699e+02 5.184200e+02
+7 8778     4.671500e+02 5.072000e+02
+8 8778     4.872700e+02 2.398600e+02
+9 8778     2.994000e+02 3.762300e+02
+10 8778     6.511200e+02 5.992500e+02
+11 8778     7.660601e+02 -3.915200e+02
+12 8778     5.266300e+02 5.269000e+02
+13 8778     8.430900e+02 9.382001e+01
+0 8779     -1.218800e+02 3.262200e+02
+2 8779     -3.946000e+02 4.888000e+01
+7 8779     -3.244200e+02 3.742100e+02
+9 8779     -4.775700e+02 1.020800e+02
+11 8779     4.081000e+01 -4.210600e+02
+14 8779     1.910100e+02 -4.251900e+02
+0 8780     2.095400e+02 3.241900e+02
+6 8780     -1.775200e+02 3.532300e+02
+9 8780     -1.767900e+02 1.607800e+02
+0 8781     5.821002e+01 3.229600e+02
+7 8781     -1.435600e+02 3.959100e+02
+10 8781     -5.916998e+01 5.290400e+02
+11 8781     2.066200e+02 -4.219000e+02
+0 8782     6.368500e+02 3.162000e+02
+3 8782     3.526200e+02 -1.501001e+01
+6 8782     4.188000e+02 4.980900e+02
+7 8782     4.454800e+02 4.919600e+02
+8 8782     4.693300e+02 2.228200e+02
+9 8782     2.815800e+02 3.579000e+02
+10 8782     6.233600e+02 5.835900e+02
+11 8782     7.457700e+02 -4.041600e+02
+12 8782     5.022900e+02 5.059700e+02
+13 8782     8.213400e+02 8.078000e+01
+0 8783     -1.666000e+02 3.143800e+02
+2 8783     -4.400400e+02 3.122998e+01
+7 8783     -3.668100e+02 3.568000e+02
+8 8783     -2.800800e+02 1.623999e+01
+13 8783     5.760999e+01 7.600098e-01
+14 8783     1.455100e+02 -4.397700e+02
+0 8784     -5.399300e+02 3.125900e+02
+4 8784     -4.723999e+01 -4.153003e+01
+10 8784     -7.795500e+02 4.627400e+02
+11 8784     -3.362400e+02 -4.283900e+02
+15 8784     -8.098400e+02 4.935900e+02
+0 8785     -5.399300e+02 3.125900e+02
+4 8785     -4.723999e+01 -4.153003e+01
+10 8785     -7.795500e+02 4.627400e+02
+11 8785     -3.362400e+02 -4.283900e+02
+15 8785     -8.098400e+02 4.935900e+02
+0 8786     -5.621300e+02 3.069300e+02
+10 8786     -8.060800e+02 4.534600e+02
+11 8786     -3.558600e+02 -4.328900e+02
+13 8786     -2.632600e+02 -2.140997e+01
+14 8786     -2.530100e+02 -4.479800e+02
+0 8787     -4.264500e+02 3.047700e+02
+7 8787     -6.307900e+02 3.142100e+02
+10 8787     -6.383000e+02 4.612800e+02
+11 8787     -2.359400e+02 -4.385200e+02
+15 8787     -6.486600e+02 4.969700e+02
+0 8788     5.351899e+02 3.027600e+02
+7 8788     3.345699e+02 4.529200e+02
+10 8788     5.028101e+02 5.552700e+02
+0 8789     -3.887100e+02 3.011400e+02
+7 8789     -5.921000e+02 3.167800e+02
+11 8789     -2.027400e+02 -4.419200e+02
+0 8790     -2.473000e+02 2.972400e+02
+7 8790     -4.455400e+02 3.285100e+02
+11 8790     -7.413000e+01 -4.480400e+02
+13 8790     -8.530029e+00 -1.864001e+01
+14 8790     6.214001e+01 -4.603900e+02
+15 8790     -3.962200e+02 5.095500e+02
+0 8791     -4.880005e+00 2.948900e+02
+5 8791     4.114200e+02 -3.719200e+02
+7 8791     -1.993900e+02 3.611400e+02
+9 8791     -3.480900e+02 1.040800e+02
+10 8791     -1.298000e+02 4.895500e+02
+11 8791     1.482800e+02 -4.488600e+02
+13 8791     2.025900e+02 -5.619995e+00
+14 8791     3.266700e+02 -4.556801e+02
+15 8791     -6.315997e+01 5.391200e+02
+0 8792     -4.880005e+00 2.948900e+02
+5 8792     4.114200e+02 -3.719200e+02
+7 8792     -1.993900e+02 3.611400e+02
+10 8792     -1.298000e+02 4.895500e+02
+11 8792     1.482800e+02 -4.488600e+02
+13 8792     2.025900e+02 -5.619995e+00
+14 8792     3.266700e+02 -4.556801e+02
+15 8792     -6.315997e+01 5.391200e+02
+0 8793     7.609800e+02 2.944300e+02
+3 8793     4.759700e+02 1.678998e+01
+6 8793     5.682200e+02 5.136500e+02
+7 8793     5.687500e+02 4.922000e+02
+8 8793     5.786100e+02 2.452100e+02
+9 8793     3.926600e+02 3.868000e+02
+10 8793     7.752900e+02 5.699800e+02
+12 8793     6.471700e+02 5.255800e+02
+0 8794     7.854999e+01 2.928600e+02
+7 8794     -1.165300e+02 3.711400e+02
+0 8795     -5.163700e+02 2.893400e+02
+5 8795     -1.293300e+02 -3.718300e+02
+0 8796     -5.653400e+02 2.764500e+02
+7 8796     -7.741600e+02 2.668000e+02
+10 8796     -8.062300e+02 4.157600e+02
+11 8796     -3.619500e+02 -4.607000e+02
+13 8796     -2.678700e+02 -4.889001e+01
+14 8796     -2.613600e+02 -4.822500e+02
+15 8796     -8.385900e+02 4.393100e+02
+0 8797     -5.345100e+02 2.752300e+02
+4 8797     -6.860999e+01 -3.965002e+01
+5 8797     -1.495400e+02 -3.875200e+02
+7 8797     -7.405100e+02 2.689500e+02
+10 8797     -7.666600e+02 4.165500e+02
+13 8797     -2.423400e+02 -4.898999e+01
+14 8797     -2.300900e+02 -4.844600e+02
+0 8798     -5.454900e+02 2.719500e+02
+5 8798     -1.633200e+02 -3.912800e+02
+15 8798     -8.096000e+02 4.355200e+02
+0 8799     7.456000e+01 2.688000e+02
+4 8799     -1.276800e+02 -4.010900e+02
+6 8799     -2.982400e+02 2.545800e+02
+7 8799     -1.138800e+02 3.466900e+02
+9 8799     -2.577600e+02 1.043800e+02
+11 8799     2.225200e+02 -4.747000e+02
+12 8799     -1.546600e+02 2.677100e+02
+13 8799     2.790800e+02 -2.252002e+01
+0 8800     5.820400e+02 2.680700e+02
+8 8800     4.293500e+02 1.685100e+02
+9 8800     2.424900e+02 2.971800e+02
+10 8800     5.616899e+02 5.180000e+02
+12 8800     4.492800e+02 4.364200e+02
+13 8800     7.717800e+02 3.410999e+01
+0 8801     2.421200e+02 2.604500e+02
+6 8801     -9.610001e+01 2.921800e+02
+7 8801     5.206000e+01 3.633000e+02
+10 8801     1.630100e+02 4.741000e+02
+11 8801     3.837400e+02 -4.765000e+02
+13 8801     4.267400e+02 -1.646002e+01
+0 8802     -6.791000e+02 2.567500e+02
+13 8802     -3.903300e+02 -7.687000e+01
+14 8802     -4.162100e+02 -5.090900e+02
+0 8803     2.135000e+02 2.553700e+02
+5 8803     6.695100e+02 -4.093199e+02
+6 8803     -1.266300e+02 2.792500e+02
+7 8803     2.500000e+01 3.544300e+02
+10 8803     1.297000e+02 4.640000e+02
+0 8804     6.019900e+02 2.543100e+02
+2 8804     4.749900e+02 2.332500e+02
+3 8804     3.344100e+02 -8.521002e+01
+6 8804     3.909000e+02 4.182400e+02
+7 8804     4.192700e+02 4.258600e+02
+8 8804     4.504700e+02 1.626300e+02
+9 8804     2.643400e+02 2.942100e+02
+10 8804     5.857600e+02 5.039900e+02
+12 8804     4.763900e+02 4.254500e+02
+13 8804     7.934301e+02 2.450000e+01
+0 8805     6.243000e+02 2.534600e+02
+6 8805     4.193500e+02 4.256400e+02
+7 8805     4.412100e+02 4.292200e+02
+0 8806     6.243000e+02 2.534600e+02
+3 8806     3.572200e+02 -7.617999e+01
+6 8806     4.193500e+02 4.256400e+02
+7 8806     4.412100e+02 4.292200e+02
+8 8806     4.706801e+02 1.701500e+02
+9 8806     2.861100e+02 3.030900e+02
+13 8806     8.159700e+02 2.664001e+01
+15 8806     8.130100e+02 5.787800e+02
+0 8807     -7.051300e+02 2.521700e+02
+13 8807     -4.126600e+02 -8.092999e+01
+14 8807     -4.443800e+02 -5.125500e+02
+0 8808     5.870100e+02 2.443000e+02
+7 8808     4.051200e+02 4.135800e+02
+9 8808     2.535900e+02 2.799000e+02
+10 8808     5.686000e+02 4.906200e+02
+15 8808     7.609399e+02 5.600300e+02
+0 8809     -8.539001e+01 2.406600e+02
+7 8809     -2.673600e+02 2.978700e+02
+8 8809     -1.744800e+02 -2.139999e+01
+9 8809     -3.902000e+02 5.490002e+01
+11 8809     7.052002e+01 -5.024700e+02
+0 8810     6.586100e+02 2.401900e+02
+2 8810     5.398900e+02 2.480700e+02
+7 8810     4.770800e+02 4.227200e+02
+8 8810     5.042800e+02 1.744600e+02
+9 8810     3.200100e+02 3.092400e+02
+10 8810     6.549500e+02 4.935900e+02
+13 8810     8.521600e+02 2.083002e+01
+0 8811     -5.434600e+02 2.388500e+02
+5 8811     -1.622400e+02 -4.265200e+02
+13 8811     -2.498900e+02 -8.066998e+01
+14 8811     -2.427100e+02 -5.246100e+02
+0 8812     6.518800e+02 2.369400e+02
+3 8812     3.903101e+02 -7.847998e+01
+7 8812     4.704399e+02 4.178600e+02
+10 8812     6.463900e+02 4.895600e+02
+13 8812     8.456700e+02 1.547998e+01
+15 8812     8.534100e+02 5.603100e+02
+0 8813     6.653199e+02 2.372400e+02
+2 8813     5.471700e+02 2.453600e+02
+3 8813     4.033400e+02 -7.156000e+01
+6 8813     4.721600e+02 4.222500e+02
+7 8813     4.841000e+02 4.206000e+02
+8 8813     5.097500e+02 1.713400e+02
+10 8813     6.627600e+02 4.906500e+02
+12 8813     5.536200e+02 4.317900e+02
+15 8813     8.728900e+02 5.624700e+02
+0 8814     6.947300e+02 2.368900e+02
+2 8814     5.792500e+02 2.582100e+02
+6 8814     5.088101e+02 4.314800e+02
+7 8814     5.131801e+02 4.262100e+02
+8 8814     5.368101e+02 1.808400e+02
+9 8814     3.527200e+02 3.188500e+02
+0 8815     6.130800e+02 2.329100e+02
+2 8815     4.926000e+02 2.181100e+02
+3 8815     3.519000e+02 -1.001000e+02
+8 8815     4.649900e+02 1.502200e+02
+0 8816     5.858199e+02 2.256800e+02
+2 8816     4.640400e+02 1.979200e+02
+3 8816     3.252300e+02 -1.193000e+02
+6 8816     3.780900e+02 3.810900e+02
+7 8816     4.065699e+02 3.952800e+02
+10 8816     5.682600e+02 4.681600e+02
+13 8816     7.802400e+02 -2.549988e+00
+15 8816     7.613600e+02 5.334000e+02
+0 8817     5.858199e+02 2.256800e+02
+2 8817     4.640400e+02 1.979200e+02
+6 8817     3.780900e+02 3.810900e+02
+7 8817     4.065699e+02 3.952800e+02
+8 8817     4.412800e+02 1.344000e+02
+9 8817     2.561100e+02 2.640800e+02
+10 8817     5.682600e+02 4.681600e+02
+12 8817     4.646400e+02 3.891500e+02
+13 8817     7.802400e+02 -2.549988e+00
+0 8818     6.225500e+02 2.248100e+02
+3 8818     3.640200e+02 -1.024500e+02
+6 8818     4.240300e+02 3.938500e+02
+7 8818     4.431899e+02 4.012900e+02
+8 8818     4.749900e+02 1.470000e+02
+9 8818     2.901100e+02 2.797100e+02
+10 8818     6.127000e+02 4.710000e+02
+12 8818     5.083400e+02 4.021200e+02
+13 8818     8.177800e+02 2.109985e+00
+15 8818     8.133900e+02 5.381100e+02
+0 8819     -3.203998e+01 2.197800e+02
+6 8819     -3.958500e+02 1.683300e+02
+0 8820     5.475000e+02 2.152500e+02
+3 8820     2.869200e+02 -1.493700e+02
+7 8820     3.703900e+02 3.780900e+02
+8 8820     4.088600e+02 1.119200e+02
+9 8820     2.248000e+02 2.411600e+02
+0 8821     -8.548999e+01 2.113800e+02
+7 8821     -2.594400e+02 2.722700e+02
+0 8822     6.845200e+02 2.112000e+02
+2 8822     5.736899e+02 2.291000e+02
+3 8822     4.305100e+02 -8.621997e+01
+6 8822     5.013600e+02 4.005500e+02
+7 8822     5.055000e+02 3.993100e+02
+8 8822     5.318300e+02 1.573000e+02
+9 8822     3.479399e+02 2.940100e+02
+10 8822     6.865800e+02 4.616600e+02
+12 8822     5.824000e+02 4.105000e+02
+0 8823     6.922300e+02 2.087700e+02
+2 8823     5.835500e+02 2.303700e+02
+3 8823     4.386801e+02 -8.496997e+01
+6 8823     5.127600e+02 4.009300e+02
+7 8823     5.140300e+02 3.986500e+02
+8 8823     5.404500e+02 1.585400e+02
+9 8823     3.576400e+02 2.961100e+02
+10 8823     6.968600e+02 4.599800e+02
+12 8823     5.938000e+02 4.114300e+02
+0 8824     -3.397900e+02 2.076300e+02
+13 8824     -7.120001e+01 -9.876001e+01
+0 8825     -3.397900e+02 2.076300e+02
+7 8825     -5.213800e+02 2.272200e+02
+10 8825     -5.160800e+02 3.518500e+02
+0 8826     6.130000e+02 2.068600e+02
+2 8826     4.997100e+02 1.924800e+02
+3 8826     3.594100e+02 -1.234900e+02
+6 8826     4.173800e+02 3.709900e+02
+7 8826     4.365000e+02 3.819800e+02
+8 8826     4.705300e+02 1.294600e+02
+9 8826     2.864301e+02 2.609300e+02
+10 8826     6.025601e+02 4.486100e+02
+13 8826     8.108600e+02 -1.453998e+01
+15 8826     8.019800e+02 5.110000e+02
+0 8827     5.880100e+02 1.993300e+02
+2 8827     4.742100e+02 1.738500e+02
+3 8827     3.356200e+02 -1.427100e+02
+6 8827     3.883800e+02 3.535900e+02
+8 8827     4.491200e+02 1.146900e+02
+10 8827     5.736400e+02 4.371700e+02
+12 8827     4.744700e+02 3.625400e+02
+13 8827     7.861700e+02 -2.437000e+01
+15 8827     7.676500e+02 4.963700e+02
+0 8828     9.875000e+01 1.897600e+02
+10 8828     1.450012e+00 3.732200e+02
+13 8828     4.102400e+02 -6.072998e+01
+14 8828     5.927200e+02 -5.389399e+02
+0 8829     -3.179400e+02 1.861500e+02
+4 8829     -1.371000e+02 -1.535600e+02
+0 8830     -3.179400e+02 1.861500e+02
+4 8830     -1.371000e+02 -1.535600e+02
+0 8831     5.975500e+02 1.821000e+02
+3 8831     3.515601e+02 -1.546200e+02
+6 8831     4.061400e+02 3.371800e+02
+7 8831     4.263300e+02 3.542500e+02
+8 8831     4.622700e+02 1.035500e+02
+9 8831     2.799800e+02 2.333400e+02
+10 8831     5.881000e+02 4.165100e+02
+12 8831     4.917000e+02 3.457700e+02
+13 8831     7.970601e+02 -3.796997e+01
+15 8831     7.861200e+02 4.724600e+02
+0 8832     7.590002e+01 1.794700e+02
+10 8832     -2.365997e+01 3.587000e+02
+13 8832     3.952000e+02 -7.034003e+01
+14 8832     5.726000e+02 -5.512500e+02
+15 8832     4.738000e+01 3.933600e+02
+0 8833     7.172800e+02 1.577700e+02
+6 8833     5.542500e+02 3.537500e+02
+7 8833     5.449200e+02 3.537600e+02
+0 8834     7.103199e+02 1.551800e+02
+7 8834     5.383900e+02 3.500400e+02
+10 8834     7.215800e+02 3.980900e+02
+0 8835     7.103199e+02 1.551800e+02
+2 8835     6.163000e+02 1.869500e+02
+3 8835     4.725900e+02 -1.248700e+02
+6 8835     5.465400e+02 3.486300e+02
+7 8835     5.383900e+02 3.500400e+02
+8 8835     5.670699e+02 1.215000e+02
+9 8835     3.855699e+02 2.600200e+02
+10 8835     7.215800e+02 3.980900e+02
+12 8835     6.261500e+02 3.589900e+02
+0 8836     7.103199e+02 1.551800e+02
+2 8836     6.163000e+02 1.869500e+02
+3 8836     4.725900e+02 -1.248700e+02
+6 8836     5.465400e+02 3.486300e+02
+7 8836     5.383900e+02 3.500400e+02
+8 8836     5.670699e+02 1.215000e+02
+9 8836     3.855699e+02 2.600200e+02
+10 8836     7.215800e+02 3.980900e+02
+12 8836     6.261500e+02 3.589900e+02
+0 8837     2.301700e+02 1.524900e+02
+2 8837     2.760699e+02 1.769100e+02
+3 8837     1.660400e+02 -1.404000e+02
+7 8837     1.075500e+02 2.935700e+02
+9 8837     1.114800e+02 2.416000e+02
+10 8837     1.583800e+02 3.425100e+02
+13 8837     5.333700e+02 -7.937000e+01
+0 8838     6.487600e+02 1.497100e+02
+6 8838     4.755800e+02 3.211400e+02
+9 8838     3.336300e+02 2.300600e+02
+15 8838     8.591801e+02 4.355900e+02
+0 8839     5.924900e+02 1.460200e+02
+3 8839     3.563600e+02 -1.915600e+02
+6 8839     4.069100e+02 2.951800e+02
+7 8839     4.238700e+02 3.192500e+02
+8 8839     4.638000e+02 7.163000e+01
+12 8839     4.919600e+02 3.041400e+02
+15 8839     7.801600e+02 4.214900e+02
+0 8840     7.068600e+02 1.460800e+02
+3 8840     4.678500e+02 -1.361400e+02
+6 8840     5.406600e+02 3.364300e+02
+8 8840     5.620900e+02 1.118900e+02
+9 8840     3.814399e+02 2.499600e+02
+12 8840     6.206100e+02 3.464600e+02
+0 8841     7.305601e+02 1.458000e+02
+2 8841     6.396300e+02 1.874600e+02
+3 8841     4.948101e+02 -1.235900e+02
+6 8841     5.723300e+02 3.460000e+02
+7 8841     5.592200e+02 3.448300e+02
+8 8841     5.864900e+02 1.214000e+02
+9 8841     4.044100e+02 2.614900e+02
+10 8841     7.464000e+02 3.891600e+02
+12 8841     6.513101e+02 3.568100e+02
+0 8842     6.964900e+02 1.451000e+02
+2 8842     6.052000e+02 1.711600e+02
+7 8842     5.260500e+02 3.380800e+02
+9 8842     3.757600e+02 2.464100e+02
+12 8842     6.131200e+02 3.428900e+02
+0 8843     3.952002e+01 1.426700e+02
+7 8843     -7.492999e+01 2.580100e+02
+15 8843     1.190002e+00 3.375900e+02
+0 8844     -8.149000e+02 1.402900e+02
+4 8844     -1.157500e+02 1.222000e+02
+0 8845     -8.149000e+02 1.402900e+02
+4 8845     -1.157500e+02 1.222000e+02
+0 8846     7.201300e+02 1.401800e+02
+2 8846     6.305300e+02 1.774700e+02
+3 8846     4.867600e+02 -1.336600e+02
+7 8846     5.498101e+02 3.376100e+02
+8 8846     5.788300e+02 1.132100e+02
+9 8846     3.977700e+02 2.525100e+02
+10 8846     7.341899e+02 3.815800e+02
+0 8847     7.382300e+02 1.405900e+02
+2 8847     6.490800e+02 1.865100e+02
+3 8847     5.039700e+02 -1.245800e+02
+6 8847     5.829500e+02 3.430700e+02
+7 8847     5.671801e+02 3.412300e+02
+8 8847     5.943000e+02 1.198400e+02
+9 8847     4.129399e+02 2.605200e+02
+10 8847     7.558800e+02 3.839000e+02
+12 8847     6.616801e+02 3.537900e+02
+0 8848     -2.205300e+02 1.371300e+02
+3 8848     -5.115700e+02 -4.500699e+02
+7 8848     -3.801500e+02 1.786600e+02
+8 8848     -2.548400e+02 -1.105800e+02
+13 8848     5.387000e+01 -1.504800e+02
+15 8848     -3.378800e+02 2.917500e+02
+0 8849     6.989100e+02 1.373300e+02
+2 8849     6.098300e+02 1.646700e+02
+3 8849     4.673199e+02 -1.463700e+02
+6 8849     5.379399e+02 3.254200e+02
+7 8849     5.296300e+02 3.310000e+02
+8 8849     5.610699e+02 1.034900e+02
+9 8849     3.805800e+02 2.411400e+02
+10 8849     7.092400e+02 3.757000e+02
+12 8849     6.177200e+02 3.356300e+02
+0 8850     -2.804500e+02 1.344900e+02
+7 8850     -4.421100e+02 1.663100e+02
+0 8851     6.501200e+02 1.305000e+02
+2 8851     5.601000e+02 1.348100e+02
+3 8851     4.214900e+02 -1.771600e+02
+7 8851     4.830200e+02 3.150600e+02
+8 8851     5.200601e+02 7.981000e+01
+9 8851     3.392800e+02 2.144900e+02
+10 8851     6.518000e+02 3.625300e+02
+13 8851     8.561300e+02 -7.540002e+01
+0 8852     -2.314300e+02 1.293700e+02
+7 8852     -3.918100e+02 1.683000e+02
+15 8852     -3.554100e+02 2.789900e+02
+0 8853     6.975699e+02 1.299400e+02
+3 8853     4.677500e+02 -1.544600e+02
+6 8853     5.387100e+02 3.164100e+02
+7 8853     5.295900e+02 3.230600e+02
+9 8853     3.811100e+02 2.343000e+02
+12 8853     6.197000e+02 3.266800e+02
+0 8854     6.319000e+02 1.264100e+02
+2 8854     5.402600e+02 1.230700e+02
+3 8854     4.023400e+02 -1.892200e+02
+6 8854     4.587500e+02 2.902200e+02
+7 8854     4.656100e+02 3.076200e+02
+8 8854     5.025900e+02 7.150000e+01
+9 8854     3.224500e+02 2.039100e+02
+10 8854     6.279200e+02 3.583500e+02
+12 8854     5.407200e+02 3.005800e+02
+13 8854     8.388300e+02 -8.164001e+01
+0 8855     6.319000e+02 1.264100e+02
+2 8855     5.402600e+02 1.230700e+02
+3 8855     4.023400e+02 -1.892200e+02
+6 8855     4.587500e+02 2.902200e+02
+7 8855     4.656100e+02 3.076200e+02
+8 8855     5.025900e+02 7.150000e+01
+9 8855     3.224500e+02 2.039100e+02
+10 8855     6.279200e+02 3.583500e+02
+12 8855     5.407200e+02 3.005800e+02
+13 8855     8.388300e+02 -8.164001e+01
+0 8856     7.808900e+02 1.263800e+02
+3 8856     5.472700e+02 -1.152300e+02
+7 8856     6.094500e+02 3.365400e+02
+9 8856     4.513900e+02 2.690700e+02
+10 8856     8.067400e+02 3.727200e+02
+0 8857     7.061700e+02 1.250700e+02
+2 8857     6.211000e+02 1.564900e+02
+3 8857     4.787000e+02 -1.538000e+02
+7 8857     5.385699e+02 3.207100e+02
+9 8857     3.904700e+02 2.343400e+02
+0 8858     7.569000e+02 1.223300e+02
+7 8858     5.874600e+02 3.273500e+02
+9 8858     4.333000e+02 2.533500e+02
+10 8858     7.786801e+02 3.645200e+02
+0 8859     7.646100e+02 1.218100e+02
+3 8859     5.346300e+02 -1.293500e+02
+7 8859     5.949000e+02 3.281700e+02
+10 8859     7.882600e+02 3.648800e+02
+12 8859     6.961600e+02 3.429900e+02
+0 8860     -4.115997e+01 1.206700e+02
+4 8860     -1.892900e+02 -3.756800e+02
+5 8860     5.516801e+02 -5.381600e+02
+6 8860     -1.621100e+02 1.279000e+02
+10 8860     -1.542200e+02 2.768500e+02
+12 8860     -1.287000e+02 1.822200e+02
+15 8860     -1.046100e+02 2.957100e+02
+0 8861     8.075000e+02 1.215200e+02
+7 8861     6.362400e+02 3.358900e+02
+9 8861     4.753101e+02 2.738600e+02
+0 8862     8.162000e+02 1.183400e+02
+2 8862     7.319900e+02 1.997600e+02
+3 8862     5.823800e+02 -1.089800e+02
+7 8862     6.442700e+02 3.342300e+02
+9 8862     4.819000e+02 2.745000e+02
+0 8863     -2.876600e+02 1.162200e+02
+4 8863     -1.804200e+02 -1.714800e+02
+7 8863     -4.450000e+02 1.465800e+02
+10 8863     -4.436000e+02 2.477800e+02
+15 8863     -4.280200e+02 2.531600e+02
+0 8864     2.673999e+01 1.172400e+02
+3 8864     1.873999e+01 -1.879200e+02
+4 8864     -1.972600e+02 -4.315700e+02
+5 8864     6.447500e+02 -5.379100e+02
+6 8864     -6.284003e+01 1.521200e+02
+7 8864     -8.258002e+01 2.323000e+02
+8 8864     1.279500e+02 6.248001e+01
+10 8864     -7.589001e+01 2.815000e+02
+12 8864     -3.521997e+01 2.061800e+02
+13 8864     3.746500e+02 -1.216500e+02
+0 8865     7.337900e+02 1.167400e+02
+2 8865     6.514301e+02 1.612400e+02
+3 8865     5.077300e+02 -1.482400e+02
+7 8865     5.661200e+02 3.178200e+02
+8 8865     5.958199e+02 9.920001e+01
+9 8865     4.155200e+02 2.395100e+02
+10 8865     7.520500e+02 3.554200e+02
+12 8865     6.630900e+02 3.259900e+02
+0 8866     6.325300e+02 1.158600e+02
+2 8866     5.455200e+02 1.114600e+02
+7 8866     4.675500e+02 2.976000e+02
+15 8866     8.393600e+02 3.856800e+02
+0 8867     7.523199e+02 1.162100e+02
+2 8867     6.696899e+02 1.691500e+02
+3 8867     5.245601e+02 -1.399100e+02
+7 8867     5.837000e+02 3.207500e+02
+9 8867     4.305800e+02 2.467700e+02
+10 8867     7.739200e+02 3.568800e+02
+12 8867     6.831600e+02 3.325700e+02
+0 8868     7.734399e+02 1.147800e+02
+2 8868     6.914301e+02 1.775000e+02
+3 8868     5.451700e+02 -1.312100e+02
+7 8868     6.043000e+02 3.231200e+02
+9 8868     4.488800e+02 2.545100e+02
+10 8868     7.993400e+02 3.573400e+02
+12 8868     7.078900e+02 3.387300e+02
+0 8869     6.491300e+02 1.114900e+02
+2 8869     5.649800e+02 1.158800e+02
+6 8869     4.857900e+02 2.791400e+02
+7 8869     4.852000e+02 2.965600e+02
+8 8869     5.232100e+02 6.498999e+01
+9 8869     3.440300e+02 1.984100e+02
+12 8869     5.675500e+02 2.891700e+02
+13 8869     8.590200e+02 -9.257001e+01
+15 8869     8.639100e+02 3.815900e+02
+0 8870     6.491300e+02 1.114900e+02
+2 8870     5.649800e+02 1.158800e+02
+6 8870     4.857900e+02 2.791400e+02
+7 8870     4.852000e+02 2.965600e+02
+13 8870     8.590200e+02 -9.257001e+01
+15 8870     8.639100e+02 3.815900e+02
+0 8871     6.659600e+02 1.107500e+02
+6 8871     5.064200e+02 2.829600e+02
+7 8871     5.013300e+02 2.994800e+02
+8 8871     5.380601e+02 6.916000e+01
+13 8871     8.759000e+02 -9.103998e+01
+0 8872     7.431600e+02 1.103500e+02
+2 8872     6.630601e+02 1.594000e+02
+3 8872     5.185500e+02 -1.494900e+02
+7 8872     5.759800e+02 3.134200e+02
+9 8872     4.253800e+02 2.382200e+02
+10 8872     7.636200e+02 3.490300e+02
+12 8872     6.754700e+02 3.222800e+02
+0 8873     7.236600e+02 1.094000e+02
+2 8873     6.428400e+02 1.488400e+02
+3 8873     5.005100e+02 -1.597300e+02
+6 8873     5.741700e+02 3.039500e+02
+7 8873     5.573300e+02 3.087800e+02
+9 8873     4.086700e+02 2.291500e+02
+10 8873     7.404900e+02 3.456000e+02
+12 8873     6.535300e+02 3.140400e+02
+0 8874     7.556200e+02 1.085400e+02
+2 8874     6.758400e+02 1.634200e+02
+3 8874     5.308199e+02 -1.451700e+02
+7 8874     5.877700e+02 3.139700e+02
+9 8874     4.361400e+02 2.421700e+02
+10 8874     7.785200e+02 3.481900e+02
+12 8874     6.896000e+02 3.254800e+02
+0 8875     -8.441998e+01 1.071600e+02
+2 8875     -7.240997e+01 2.678003e+01
+4 8875     -1.974400e+02 -3.327000e+02
+5 8875     4.722500e+02 -5.616000e+02
+6 8875     -2.507100e+02 7.973999e+01
+7 8875     -2.075000e+02 1.926400e+02
+9 8875     -1.773800e+02 1.024600e+02
+10 8875     -2.030000e+02 2.578400e+02
+12 8875     -2.001700e+02 1.316600e+02
+13 8875     2.461500e+02 -1.485200e+02
+15 8875     -1.581300e+02 2.713400e+02
+0 8876     7.317900e+02 1.044900e+02
+3 8876     5.093700e+02 -1.604000e+02
+8 8876     5.958800e+02 8.723001e+01
+9 8876     4.169399e+02 2.283600e+02
+12 8876     6.627100e+02 3.107700e+02
+0 8877     3.571002e+01 9.951001e+01
+4 8877     -2.095800e+02 -4.397500e+02
+8 8877     1.456100e+02 5.385001e+01
+0 8878     7.439900e+02 9.714001e+01
+2 8878     6.671200e+02 1.467900e+02
+3 8878     5.232700e+02 -1.610900e+02
+7 8878     5.783500e+02 3.009500e+02
+9 8878     4.286600e+02 2.280800e+02
+10 8878     7.656200e+02 3.331900e+02
+12 8878     6.787200e+02 3.084600e+02
+0 8879     7.915200e+02 9.326001e+01
+2 8879     7.155500e+02 1.654800e+02
+3 8879     5.684900e+02 -1.418800e+02
+7 8879     6.242100e+02 3.059300e+02
+9 8879     4.686600e+02 2.448500e+02
+10 8879     8.222600e+02 3.341300e+02
+0 8880     7.915200e+02 9.326001e+01
+2 8880     7.155500e+02 1.654800e+02
+3 8880     5.684900e+02 -1.418800e+02
+7 8880     6.242100e+02 3.059300e+02
+9 8880     4.686600e+02 2.448500e+02
+10 8880     8.222600e+02 3.341300e+02
+0 8881     7.398101e+02 9.073999e+01
+2 8881     6.653000e+02 1.394500e+02
+3 8881     5.221500e+02 -1.686400e+02
+7 8881     5.752700e+02 2.948900e+02
+9 8881     4.272100e+02 2.216100e+02
+10 8881     7.608900e+02 3.255200e+02
+12 8881     6.765699e+02 3.005900e+02
+0 8882     -2.877600e+02 8.916000e+01
+2 8882     -4.424300e+02 -1.706900e+02
+4 8882     -1.951200e+02 -1.720600e+02
+7 8882     -4.387500e+02 1.213800e+02
+15 8882     -4.235500e+02 2.187300e+02
+0 8883     7.736400e+02 8.869000e+01
+2 8883     6.994700e+02 1.522600e+02
+3 8883     5.545200e+02 -1.547100e+02
+7 8883     6.074900e+02 2.984900e+02
+9 8883     4.556200e+02 2.334900e+02
+10 8883     8.003300e+02 3.268800e+02
+12 8883     7.137800e+02 3.100100e+02
+0 8884     -7.961700e+02 8.164001e+01
+13 8884     -4.587900e+02 -2.312900e+02
+0 8885     -6.289001e+01 8.212000e+01
+4 8885     -2.106600e+02 -3.590100e+02
+5 8885     5.323900e+02 -5.812700e+02
+6 8885     -1.725200e+02 8.010999e+01
+8 8885     4.341998e+01 5.709991e+00
+9 8885     -1.049500e+02 1.318400e+02
+10 8885     -1.756600e+02 2.298000e+02
+12 8885     -1.427200e+02 1.346800e+02
+13 8885     2.907900e+02 -1.605800e+02
+15 8885     -1.290100e+02 2.394200e+02
+0 8886     7.664600e+02 7.872998e+01
+2 8886     6.955000e+02 1.393200e+02
+3 8886     5.509800e+02 -1.666600e+02
+7 8886     6.026801e+02 2.882800e+02
+9 8886     4.529500e+02 2.232200e+02
+10 8886     7.940100e+02 3.152200e+02
+12 8886     7.095500e+02 2.954600e+02
+0 8887     6.160699e+02 7.648999e+01
+12 8887     5.389000e+02 2.359100e+02
+0 8888     7.866500e+02 7.717999e+01
+2 8888     7.152400e+02 1.479400e+02
+3 8888     5.695500e+02 -1.584100e+02
+7 8888     6.216899e+02 2.898800e+02
+9 8888     4.687600e+02 2.304700e+02
+10 8888     8.173800e+02 3.145700e+02
+12 8888     7.315800e+02 3.037800e+02
+0 8889     7.426400e+02 7.356000e+01
+2 8889     6.728101e+02 1.233500e+02
+3 8889     5.306200e+02 -1.833900e+02
+7 8889     5.799600e+02 2.778900e+02
+9 8889     4.341100e+02 2.079400e+02
+10 8889     7.651300e+02 3.053500e+02
+12 8889     6.834600e+02 2.803900e+02
+0 8890     -2.806900e+02 6.997998e+01
+7 8890     -4.269400e+02 1.042000e+02
+0 8891     2.129399e+02 7.051001e+01
+4 8891     -2.513700e+02 -5.813000e+02
+10 8891     1.460600e+02 2.450600e+02
+13 8891     5.449600e+02 -1.453300e+02
+15 8891     2.463400e+02 2.631500e+02
+0 8892     7.762700e+02 7.009003e+01
+2 8892     7.077600e+02 1.365800e+02
+3 8892     5.632800e+02 -1.696200e+02
+7 8892     6.134200e+02 2.813400e+02
+9 8892     4.636400e+02 2.208000e+02
+10 8892     8.058199e+02 3.054100e+02
+12 8892     7.231000e+02 2.921700e+02
+0 8893     8.430100e+02 6.481000e+01
+2 8893     7.740400e+02 1.610400e+02
+3 8893     6.243900e+02 -1.434300e+02
+7 8893     6.764500e+02 2.881400e+02
+9 8893     5.168400e+02 2.433100e+02
+12 8893     7.961801e+02 3.102900e+02
+0 8894     1.258002e+01 6.407001e+01
+3 8894     3.757001e+01 -2.291300e+02
+5 8894     6.438700e+02 -5.971100e+02
+10 8894     -8.542999e+01 2.157900e+02
+0 8895     7.156500e+02 6.246997e+01
+2 8895     6.473300e+02 9.935999e+01
+3 8895     5.078199e+02 -2.070400e+02
+6 8895     5.760000e+02 2.503400e+02
+7 8895     5.555400e+02 2.623500e+02
+8 8895     5.917100e+02 4.891000e+01
+9 8895     4.130500e+02 1.880200e+02
+10 8895     7.336700e+02 2.889800e+02
+12 8895     6.547000e+02 2.603300e+02
+0 8896     7.700601e+02 6.096997e+01
+2 8896     7.039000e+02 1.249700e+02
+3 8896     5.608900e+02 -1.808800e+02
+7 8896     6.082800e+02 2.714800e+02
+9 8896     4.605699e+02 2.108700e+02
+10 8896     7.992200e+02 2.938100e+02
+12 8896     7.189900e+02 2.791500e+02
+0 8897     7.902100e+02 5.904999e+01
+2 8897     7.241600e+02 1.326100e+02
+3 8897     5.790000e+02 -1.727100e+02
+7 8897     6.277100e+02 2.734100e+02
+9 8897     4.766899e+02 2.179200e+02
+10 8897     8.228500e+02 2.938800e+02
+12 8897     7.397300e+02 2.862300e+02
+0 8898     6.875800e+02 5.700000e+01
+2 8898     6.203900e+02 8.071997e+01
+3 8898     4.819700e+02 -2.266200e+02
+6 8898     5.455601e+02 2.339600e+02
+7 8898     5.291899e+02 2.518900e+02
+8 8898     5.685800e+02 3.437000e+01
+9 8898     3.914399e+02 1.709100e+02
+10 8898     7.010900e+02 2.798900e+02
+12 8898     6.249200e+02 2.441800e+02
+0 8899     2.034000e+02 5.508002e+01
+7 8899     1.069900e+02 2.005300e+02
+10 8899     1.374800e+02 2.264600e+02
+12 8899     1.930200e+02 1.895000e+02
+13 8899     5.415200e+02 -1.583000e+02
+15 8899     2.360200e+02 2.407200e+02
+0 8900     3.289978e+00 5.370001e+01
+4 8900     -2.365900e+02 -4.148500e+02
+6 8900     -5.820001e+01 7.633002e+01
+7 8900     -9.077002e+01 1.645900e+02
+13 8900     3.662300e+02 -1.770000e+02
+0 8901     1.472800e+02 5.319000e+01
+4 8901     -2.543900e+02 -5.313300e+02
+5 8901     8.125900e+02 -6.072300e+02
+6 8901     1.108700e+02 1.250400e+02
+8 8901     2.624300e+02 4.503000e+01
+12 8901     1.340900e+02 1.756500e+02
+13 8901     4.966200e+02 -1.635100e+02
+15 8901     1.589900e+02 2.301800e+02
+0 8902     1.472800e+02 5.319000e+01
+3 8902     1.774400e+02 -2.000800e+02
+5 8902     8.125900e+02 -6.072300e+02
+8 8902     2.624300e+02 4.503000e+01
+13 8902     4.966200e+02 -1.635100e+02
+0 8903     6.172400e+02 5.231000e+01
+2 8903     5.463600e+02 3.948999e+01
+3 8903     4.116100e+02 -2.698600e+02
+7 8903     4.611700e+02 2.333800e+02
+9 8903     3.298199e+02 1.332600e+02
+10 8903     6.190100e+02 2.674100e+02
+0 8904     8.114800e+02 4.921002e+01
+2 8904     7.471300e+02 1.341800e+02
+7 8904     6.489800e+02 2.685300e+02
+9 8904     4.965500e+02 2.197600e+02
+0 8905     2.178900e+02 4.765997e+01
+7 8905     1.215700e+02 1.950100e+02
+15 8905     2.564100e+02 2.318400e+02
+0 8906     6.691801e+02 4.556000e+01
+3 8906     4.676899e+02 -2.479600e+02
+6 8906     5.268400e+02 2.137900e+02
+8 8906     5.551801e+02 1.729001e+01
+9 8906     3.785601e+02 1.523500e+02
+10 8906     6.810000e+02 2.642100e+02
+0 8907     8.686500e+02 4.577002e+01
+3 8907     6.532000e+02 -1.480300e+02
+7 8907     7.028700e+02 2.752700e+02
+9 8907     5.422100e+02 2.394800e+02
+0 8908     5.317900e+02 4.540002e+01
+6 8908     3.573000e+02 1.570400e+02
+7 8908     3.774301e+02 2.094500e+02
+10 8908     5.196300e+02 2.509000e+02
+12 8908     4.460900e+02 1.678600e+02
+15 8908     7.068000e+02 2.722200e+02
+0 8909     5.317900e+02 4.540002e+01
+7 8909     3.774301e+02 2.094500e+02
+12 8909     4.460900e+02 1.678600e+02
+0 8910     5.684900e+02 4.547998e+01
+6 8910     4.030800e+02 1.721200e+02
+10 8910     5.625200e+02 2.540100e+02
+13 8910     7.833400e+02 -1.627600e+02
+15 8910     7.581300e+02 2.774300e+02
+0 8911     7.034700e+02 4.496997e+01
+2 8911     6.432700e+02 7.597998e+01
+3 8911     5.045000e+02 -2.301800e+02
+7 8911     5.468199e+02 2.431000e+02
+9 8911     4.115100e+02 1.678300e+02
+0 8912     5.143500e+02 4.060999e+01
+7 8912     3.605200e+02 2.011900e+02
+10 8912     4.996899e+02 2.428000e+02
+13 8912     7.278900e+02 -1.755200e+02
+15 8912     6.834301e+02 2.624000e+02
+0 8913     5.143500e+02 4.060999e+01
+7 8913     3.605200e+02 2.011900e+02
+10 8913     4.996899e+02 2.428000e+02
+15 8913     6.834301e+02 2.624000e+02
+0 8914     -1.115200e+02 4.034998e+01
+7 8914     -2.170400e+02 1.255500e+02
+10 8914     -2.273200e+02 1.766300e+02
+13 8914     2.438000e+02 -2.039500e+02
+15 8914     -1.878200e+02 1.760500e+02
+0 8915     4.637000e+01 3.815997e+01
+9 8915     4.107001e+01 1.537300e+02
+13 8915     4.101200e+02 -1.851800e+02
+15 8915     2.290997e+01 1.954000e+02
+0 8916     7.156000e+02 3.497998e+01
+2 8916     6.566000e+02 7.214001e+01
+3 8916     5.175500e+02 -2.329100e+02
+7 8916     5.594800e+02 2.360000e+02
+9 8916     4.220400e+02 1.653400e+02
+10 8916     7.360900e+02 2.576800e+02
+12 8916     6.634800e+02 2.300600e+02
+0 8917     -1.841300e+02 3.397998e+01
+3 8917     -2.312900e+02 -3.772700e+02
+4 8917     -2.321200e+02 -2.646700e+02
+6 8917     -3.311800e+02 -3.576001e+01
+7 8917     -2.939200e+02 1.042300e+02
+12 8917     -2.923000e+02 2.456000e+01
+15 8917     -2.845200e+02 1.575500e+02
+0 8918     7.057000e+02 2.892999e+01
+2 8918     6.454600e+02 6.215997e+01
+3 8918     5.091500e+02 -2.436000e+02
+6 8918     5.742900e+02 2.105600e+02
+8 8918     5.916100e+02 1.784000e+01
+9 8918     4.151700e+02 1.564100e+02
+12 8918     6.504600e+02 2.212000e+02
+0 8919     6.770200e+02 2.758002e+01
+2 8919     6.175800e+02 4.470001e+01
+3 8919     4.817500e+02 -2.612900e+02
+6 8919     5.412700e+02 1.967400e+02
+7 8919     5.228199e+02 2.210900e+02
+8 8919     5.665500e+02 4.959991e+00
+9 8919     3.906000e+02 1.409600e+02
+10 8919     6.904100e+02 2.448500e+02
+12 8919     6.209000e+02 2.063400e+02
+0 8920     6.770200e+02 2.758002e+01
+2 8920     6.175800e+02 4.470001e+01
+3 8920     4.817500e+02 -2.612900e+02
+6 8920     5.412700e+02 1.967400e+02
+7 8920     5.228199e+02 2.210900e+02
+8 8920     5.665500e+02 4.959991e+00
+9 8920     3.906000e+02 1.409600e+02
+10 8920     6.904100e+02 2.448500e+02
+0 8921     -1.199500e+02 2.700000e+01
+4 8921     -2.422700e+02 -3.136000e+02
+7 8921     -2.223900e+02 1.117100e+02
+10 8921     -2.357600e+02 1.600300e+02
+12 8921     -2.001700e+02 4.566998e+01
+15 8921     -1.978200e+02 1.570600e+02
+0 8922     -1.058700e+02 2.583002e+01
+7 8922     -2.077200e+02 1.128900e+02
+10 8922     -2.190900e+02 1.602000e+02
+15 8922     -1.787300e+02 1.575600e+02
+0 8923     8.808002e+01 2.638000e+01
+2 8923     2.332300e+02 7.665002e+01
+4 8923     -2.642900e+02 -4.832600e+02
+7 8923     -3.300171e-01 1.552100e+02
+8 8923     2.226800e+02 1.582999e+01
+12 8923     7.540997e+01 1.320200e+02
+15 8923     8.016998e+01 1.859800e+02
+0 8924     2.285900e+02 2.459003e+01
+3 8924     2.510601e+02 -2.174900e+02
+7 8924     1.355400e+02 1.743100e+02
+10 8924     1.686600e+02 1.930400e+02
+13 8924     5.652100e+02 -1.830600e+02
+0 8925     2.285900e+02 2.459003e+01
+2 8925     3.578199e+02 9.223999e+01
+3 8925     2.510601e+02 -2.174900e+02
+6 8925     1.980600e+02 1.142800e+02
+7 8925     1.355400e+02 1.743100e+02
+8 8925     3.290400e+02 2.962000e+01
+10 8925     1.686600e+02 1.930400e+02
+12 8925     2.277900e+02 1.602800e+02
+13 8925     5.652100e+02 -1.830600e+02
+15 8925     2.732300e+02 2.020800e+02
+0 8926     -4.342300e+02 2.407001e+01
+8 8926     -4.200500e+02 -2.304400e+02
+0 8927     7.190400e+02 1.909003e+01
+3 8927     5.260699e+02 -2.461700e+02
+7 8927     5.649000e+02 2.211800e+02
+9 8927     4.283400e+02 1.537200e+02
+10 8927     7.413000e+02 2.390700e+02
+0 8928     -1.771200e+02 1.802002e+01
+4 8928     -2.423100e+02 -2.703400e+02
+6 8928     -3.093300e+02 -4.842999e+01
+15 8928     -2.726300e+02 1.363000e+02
+0 8929     6.897200e+02 1.781000e+01
+2 8929     6.342500e+02 4.184998e+01
+3 8929     4.977800e+02 -2.638200e+02
+6 8929     5.588800e+02 1.912500e+02
+7 8929     5.365200e+02 2.143800e+02
+8 8929     5.797800e+02 1.750000e+00
+9 8929     4.039700e+02 1.388100e+02
+10 8929     7.067400e+02 2.347300e+02
+0 8930     8.681300e+02 1.734998e+01
+2 8930     8.131300e+02 1.275400e+02
+3 8930     6.630400e+02 -1.734200e+02
+7 8930     7.059600e+02 2.479700e+02
+9 8930     5.492200e+02 2.167500e+02
+0 8931     -7.628998e+01 1.622998e+01
+7 8931     -1.720500e+02 1.111600e+02
+15 8931     -1.382100e+02 1.485100e+02
+0 8932     8.103199e+02 1.535999e+01
+2 8932     7.577000e+02 9.990997e+01
+7 8932     6.519700e+02 2.356100e+02
+9 8932     5.045300e+02 1.917400e+02
+12 8932     7.750900e+02 2.456100e+02
+0 8933     8.103199e+02 1.535999e+01
+7 8933     6.519700e+02 2.356100e+02
+9 8933     5.045300e+02 1.917400e+02
+0 8934     -1.544500e+02 1.377002e+01
+7 8934     -2.583200e+02 9.029999e+01
+10 8934     -2.744600e+02 1.413800e+02
+15 8934     -2.415800e+02 1.344200e+02
+0 8935     7.308400e+02 8.429993e+00
+2 8935     6.804800e+02 5.397998e+01
+3 8935     5.414399e+02 -2.504000e+02
+7 8935     5.776200e+02 2.135800e+02
+9 8935     4.421100e+02 1.505900e+02
+10 8935     7.563199e+02 2.280400e+02
+12 8935     6.874399e+02 2.068800e+02
+0 8936     6.970601e+02 -1.130005e+00
+2 8936     6.482000e+02 2.588000e+01
+3 8936     5.128600e+02 -2.783700e+02
+6 8936     5.723101e+02 1.732100e+02
+9 8936     4.162800e+02 1.261100e+02
+12 8936     6.502800e+02 1.829200e+02
+0 8937     -1.138100e+02 -2.359985e+00
+7 8937     -2.079800e+02 8.512000e+01
+10 8937     -2.253900e+02 1.270000e+02
+15 8937     -1.858400e+02 1.184100e+02
+0 8938     -4.837800e+02 -6.859985e+00
+2 8938     -6.354300e+02 -3.024100e+02
+13 8938     -1.500800e+02 -2.897000e+02
+0 8939     7.329700e+02 -6.159973e+00
+2 8939     6.868000e+02 3.972998e+01
+3 8939     5.486000e+02 -2.632300e+02
+7 8939     5.817800e+02 1.996300e+02
+9 8939     4.478900e+02 1.390800e+02
+10 8939     7.597300e+02 2.113100e+02
+12 8939     6.942300e+02 1.909400e+02
+0 8940     -3.722200e+02 -8.159973e+00
+2 8940     -4.843100e+02 -2.730700e+02
+7 8940     -5.028300e+02 1.246002e+01
+13 8940     -4.691998e+01 -2.830000e+02
+15 8940     -5.269400e+02 7.388000e+01
+0 8941     -3.722200e+02 -8.159973e+00
+13 8941     -4.691998e+01 -2.830000e+02
+15 8941     -5.269400e+02 7.388000e+01
+0 8942     6.737200e+02 -7.590027e+00
+2 8942     6.239700e+02 7.969971e+00
+3 8942     4.898900e+02 -2.969100e+02
+6 8942     5.465500e+02 1.573600e+02
+7 8942     5.245100e+02 1.870600e+02
+8 8942     5.707500e+02 -2.513000e+01
+9 8942     3.962200e+02 1.103300e+02
+10 8942     6.899000e+02 2.034200e+02
+12 8942     6.255699e+02 1.672700e+02
+0 8943     6.481200e+02 -1.083002e+01
+2 8943     5.973199e+02 -1.008002e+01
+6 8943     5.164700e+02 1.421700e+02
+7 8943     4.999200e+02 1.784400e+02
+8 8943     5.486700e+02 -3.913000e+01
+9 8943     3.744301e+02 9.429001e+01
+10 8943     6.594900e+02 1.974900e+02
+12 8943     5.966200e+02 1.519700e+02
+13 8943     8.739600e+02 -2.028300e+02
+0 8944     7.086899e+02 -1.077002e+01
+2 8944     6.623400e+02 2.278003e+01
+3 8944     5.263500e+02 -2.809200e+02
+7 8944     5.588300e+02 1.906600e+02
+9 8944     4.282700e+02 1.239800e+02
+10 8944     7.309100e+02 2.031400e+02
+12 8944     6.666899e+02 1.774000e+02
+0 8945     -3.647500e+02 -1.298999e+01
+2 8945     -4.694700e+02 -2.756500e+02
+7 8945     -4.923900e+02 8.859985e+00
+8 8945     -3.287700e+02 -2.436800e+02
+13 8945     -3.746002e+01 -2.871700e+02
+0 8946     -3.701400e+02 -1.485999e+01
+2 8946     -4.778700e+02 -2.791800e+02
+7 8946     -5.000400e+02 5.159973e+00
+8 8946     -3.348200e+02 -2.461800e+02
+13 8946     -4.331000e+01 -2.893100e+02
+15 8946     -5.245200e+02 6.414001e+01
+0 8947     6.854301e+02 -1.721997e+01
+2 8947     6.397700e+02 3.809998e+00
+3 8947     5.056400e+02 -3.001100e+02
+6 8947     5.631400e+02 1.507900e+02
+7 8947     5.370300e+02 1.798300e+02
+8 8947     5.839301e+02 -2.945001e+01
+9 8947     4.096801e+02 1.072800e+02
+10 8947     7.042000e+02 1.936800e+02
+12 8947     6.416200e+02 1.601400e+02
+0 8948     6.994600e+02 -1.695001e+01
+2 8948     6.565601e+02 1.078998e+01
+9 8948     4.233300e+02 1.141800e+02
+10 8948     7.223700e+02 1.944800e+02
+0 8949     -8.183002e+01 -2.338000e+01
+7 8949     -1.701600e+02 7.106000e+01
+10 8949     -1.860600e+02 1.054600e+02
+15 8949     -1.410900e+02 9.414001e+01
+0 8950     -4.427800e+02 -2.392999e+01
+10 8950     -6.097400e+02 6.741998e+01
+13 8950     -1.073100e+02 -3.007200e+02
+15 8950     -6.204700e+02 4.353998e+01
+0 8951     7.109200e+02 -2.606000e+01
+3 8951     5.334100e+02 -2.939000e+02
+7 8951     5.631700e+02 1.764000e+02
+10 8951     7.352500e+02 1.856400e+02
+12 8951     6.730400e+02 1.609800e+02
+0 8952     7.109200e+02 -2.606000e+01
+2 8952     6.690900e+02 8.500000e+00
+3 8952     5.334100e+02 -2.939000e+02
+7 8952     5.631700e+02 1.764000e+02
+9 8952     4.340500e+02 1.123900e+02
+10 8952     7.352500e+02 1.856400e+02
+12 8952     6.730400e+02 1.609800e+02
+0 8953     -3.952700e+02 -2.913000e+01
+2 8953     -4.998500e+02 -2.975000e+02
+8 8953     -3.535700e+02 -2.609100e+02
+13 8953     -6.295001e+01 -3.033000e+02
+15 8953     -5.566200e+02 4.284998e+01
+0 8954     -4.279600e+02 -3.053003e+01
+2 8954     -5.426400e+02 -3.074300e+02
+13 8954     -9.296002e+01 -3.062700e+02
+15 8954     -6.008400e+02 3.584998e+01
+0 8955     6.857900e+02 -3.108002e+01
+3 8955     5.105900e+02 -3.142100e+02
+7 8955     5.393700e+02 1.665300e+02
+8 8955     5.871300e+02 -4.070999e+01
+0 8956     6.857900e+02 -3.108002e+01
+3 8956     5.105900e+02 -3.142100e+02
+7 8956     5.393700e+02 1.665300e+02
+0 8957     -7.296002e+01 -3.458002e+01
+7 8957     -1.588300e+02 6.172998e+01
+10 8957     -1.743200e+02 9.334998e+01
+15 8957     -1.276700e+02 7.969000e+01
+0 8958     -3.227002e+01 -3.610999e+01
+2 8958     1.133700e+02 -3.453003e+01
+3 8958     2.809003e+01 -3.440700e+02
+4 8958     -2.936700e+02 -3.839700e+02
+7 8958     -1.139200e+02 6.940002e+01
+10 8958     -1.272600e+02 9.572998e+01
+13 8958     3.437400e+02 -2.576700e+02
+15 8958     -7.342999e+01 8.397000e+01
+0 8959     8.675500e+02 -3.632001e+01
+9 8959     5.627000e+02 1.738900e+02
+0 8960     3.462000e+01 -4.004999e+01
+4 8960     -3.038300e+02 -4.393000e+02
+7 8960     -4.392999e+01 8.064001e+01
+10 8960     -4.965002e+01 9.896002e+01
+13 8960     4.090000e+02 -2.524600e+02
+0 8961     -4.531300e+02 -4.131000e+01
+7 8961     -5.795700e+02 -3.548999e+01
+13 8961     -1.135000e+02 -3.168100e+02
+0 8962     6.964700e+02 -4.101001e+01
+2 8962     6.574399e+02 -1.409003e+01
+3 8962     5.235900e+02 -3.169500e+02
+7 8962     5.505500e+02 1.596000e+02
+9 8962     4.250200e+02 9.316000e+01
+10 8962     7.192900e+02 1.668900e+02
+12 8962     6.595900e+02 1.390900e+02
+0 8963     8.363300e+02 -4.159998e+01
+2 8963     8.008101e+02 5.773999e+01
+3 8963     6.570100e+02 -2.413000e+02
+7 8963     6.839399e+02 1.866500e+02
+9 8963     5.416801e+02 1.580000e+02
+12 8963     8.189900e+02 1.939400e+02
+0 8964     7.042700e+02 -4.175000e+01
+2 8964     6.666200e+02 -1.083002e+01
+3 8964     5.319600e+02 -3.128800e+02
+7 8964     5.585800e+02 1.597000e+02
+9 8964     4.325900e+02 9.614001e+01
+10 8964     7.285400e+02 1.665300e+02
+12 8964     6.695699e+02 1.410200e+02
+0 8965     7.042700e+02 -4.175000e+01
+9 8965     4.325900e+02 9.614001e+01
+12 8965     6.695699e+02 1.410200e+02
+0 8966     6.734900e+02 -4.628003e+01
+2 8966     6.354700e+02 -3.251001e+01
+3 8966     5.039800e+02 -3.362300e+02
+6 8966     5.568300e+02 1.137700e+02
+7 8966     5.297000e+02 1.493400e+02
+8 8966     5.799900e+02 -5.908002e+01
+9 8966     4.067500e+02 7.678998e+01
+12 8966     6.355699e+02 1.231800e+02
+0 8967     1.557800e+02 -4.984998e+01
+2 8967     3.289600e+02 1.800000e+01
+7 8967     8.003998e+01 9.112000e+01
+8 8967     3.007400e+02 -3.644000e+01
+15 8967     1.829600e+02 9.101001e+01
+0 8968     6.969301e+02 -5.339001e+01
+3 8968     5.303700e+02 -3.296400e+02
+7 8968     5.531600e+02 1.475100e+02
+9 8968     4.301000e+02 8.214001e+01
+0 8969     6.969301e+02 -5.339001e+01
+3 8969     5.303700e+02 -3.296400e+02
+9 8969     4.301000e+02 8.214001e+01
+0 8970     -4.719700e+02 -5.420001e+01
+2 8970     -5.870700e+02 -3.420000e+02
+8 8970     -4.257800e+02 -2.979800e+02
+0 8971     -4.504900e+02 -5.509998e+01
+2 8971     -5.571500e+02 -3.365100e+02
+0 8972     1.857000e+02 -6.013000e+01
+10 8972     1.280500e+02 9.059003e+01
+13 8972     5.430100e+02 -2.577900e+02
+0 8973     1.745000e+02 -6.134003e+01
+12 8973     2.003000e+02 5.306000e+01
+15 8973     2.096200e+02 7.750000e+01
+0 8974     6.764900e+02 -6.003998e+01
+3 8974     5.129700e+02 -3.488200e+02
+6 8974     5.633900e+02 9.960999e+01
+8 8974     5.854399e+02 -6.954999e+01
+9 8974     4.135699e+02 6.613000e+01
+12 8974     6.419500e+02 1.095500e+02
+0 8975     8.090699e+02 -6.742999e+01
+2 8975     7.814600e+02 1.758002e+01
+7 8975     6.618700e+02 1.566400e+02
+9 8975     5.267000e+02 1.241000e+02
+12 8975     7.944900e+02 1.536100e+02
+0 8976     8.090699e+02 -6.742999e+01
+7 8976     6.618700e+02 1.566400e+02
+0 8977     -4.054400e+02 -6.789001e+01
+2 8977     -4.874300e+02 -3.340900e+02
+7 8977     -5.230200e+02 -5.197998e+01
+13 8977     -6.340002e+01 -3.368200e+02
+15 8977     -5.652400e+02 -1.078998e+01
+0 8978     1.922100e+02 -6.983002e+01
+6 8978     1.996900e+02 2.960022e+00
+7 8978     1.185900e+02 7.685999e+01
+13 8978     5.505900e+02 -2.662400e+02
+0 8979     1.922100e+02 -6.983002e+01
+2 8979     3.669500e+02 3.400269e-01
+6 8979     1.996900e+02 2.960022e+00
+7 8979     1.185900e+02 7.685999e+01
+10 8979     1.370000e+02 8.022998e+01
+15 8979     2.360400e+02 6.821997e+01
+0 8980     7.175400e+02 -7.152002e+01
+2 8980     6.899399e+02 -3.483002e+01
+3 8980     5.572600e+02 -3.359200e+02
+7 8980     5.753700e+02 1.342100e+02
+9 8980     4.525300e+02 7.715997e+01
+10 8980     7.465601e+02 1.336000e+02
+12 8980     6.930400e+02 1.126300e+02
+0 8981     6.904800e+02 -7.228003e+01
+2 8981     6.632900e+02 -5.085999e+01
+3 8981     5.324399e+02 -3.526900e+02
+7 8981     5.500300e+02 1.277800e+02
+9 8981     4.306801e+02 6.288000e+01
+10 8981     7.153000e+02 1.297600e+02
+12 8981     6.641300e+02 9.995001e+01
+0 8982     8.639399e+02 -7.184003e+01
+3 8982     6.944700e+02 -2.556500e+02
+7 8982     7.141100e+02 1.629100e+02
+9 8982     5.722800e+02 1.459600e+02
+0 8983     8.328900e+02 -7.414001e+01
+2 8983     8.082100e+02 2.470001e+01
+7 8983     6.853600e+02 1.550400e+02
+0 8984     -4.167200e+02 -8.106000e+01
+2 8984     -4.939900e+02 -3.499100e+02
+7 8984     -5.318600e+02 -6.757001e+01
+8 8984     -3.539700e+02 -3.054200e+02
+10 8984     -5.732000e+02 3.250000e+00
+13 8984     -7.016998e+01 -3.497200e+02
+15 8984     -5.779200e+02 -3.204999e+01
+0 8985     5.059998e+00 -8.241998e+01
+3 8985     9.237000e+01 -3.736500e+02
+4 8985     -3.316100e+02 -4.131300e+02
+6 8985     -5.320007e+00 -7.602002e+01
+7 8985     -6.658002e+01 3.040997e+01
+8 8985     1.730800e+02 -1.018700e+02
+10 8985     -7.847998e+01 4.535999e+01
+13 8985     3.845400e+02 -2.933200e+02
+15 8985     -1.651001e+01 2.571997e+01
+0 8986     1.062000e+01 -8.826001e+01
+3 8986     1.014200e+02 -3.780500e+02
+10 8986     -7.202002e+01 3.922998e+01
+15 8986     -8.520020e+00 1.897998e+01
+0 8987     -4.037400e+02 -9.257001e+01
+2 8987     -4.673500e+02 -3.549800e+02
+7 8987     -5.158500e+02 -7.622998e+01
+9 8987     -4.970400e+02 -2.443000e+02
+10 8987     -5.566800e+02 -9.909973e+00
+13 8987     -5.625000e+01 -3.583900e+02
+15 8987     -5.600400e+02 -4.484003e+01
+0 8988     2.009900e+02 -9.335999e+01
+2 8988     3.795500e+02 -2.659003e+01
+3 8988     2.796200e+02 -3.293000e+02
+7 8988     1.294700e+02 5.453998e+01
+10 8988     1.484000e+02 5.383002e+01
+13 8988     5.592500e+02 -2.866600e+02
+15 8988     2.503400e+02 3.747998e+01
+0 8989     9.350000e+01 -9.385999e+01
+2 8989     2.825000e+02 -4.648999e+01
+3 8989     1.914800e+02 -3.504600e+02
+4 8989     -3.535600e+02 -4.855601e+02
+6 8989     1.053200e+02 -5.519000e+01
+7 8989     2.548999e+01 3.653003e+01
+8 8989     2.589600e+02 -8.754999e+01
+9 8989     1.298100e+02 5.733002e+01
+10 8989     2.488000e+01 4.202002e+01
+12 8989     1.179400e+02 -7.159973e+00
+13 8989     4.681700e+02 -2.949200e+02
+15 8989     1.047100e+02 2.229999e+01
+0 8990     -6.890997e+01 -1.005100e+02
+7 8990     -1.394000e+02 -9.199829e-01
+10 8990     -1.630200e+02 1.697998e+01
+13 8990     3.199900e+02 -3.168600e+02
+15 8990     -1.142100e+02 -8.270020e+00
+0 8991     -2.129999e+01 -1.041800e+02
+7 8991     -8.762000e+01 5.530029e+00
+10 8991     -1.065200e+02 1.803998e+01
+0 8992     7.584800e+02 -1.039900e+02
+2 8992     7.418400e+02 -4.677002e+01
+7 8992     6.191300e+02 1.120600e+02
+9 8992     4.963400e+02 6.823999e+01
+10 8992     7.970200e+02 9.970001e+01
+12 8992     7.476400e+02 9.202002e+01
+0 8993     7.584800e+02 -1.039900e+02
+7 8993     6.191300e+02 1.120600e+02
+0 8994     7.067200e+02 -1.080700e+02
+2 8994     6.895800e+02 -7.846997e+01
+3 8994     5.603900e+02 -3.789900e+02
+7 8994     5.699399e+02 9.698999e+01
+9 8994     4.536700e+02 4.085999e+01
+12 8994     6.908700e+02 6.815002e+01
+0 8995     8.441300e+02 -1.094400e+02
+3 8995     6.903600e+02 -3.011500e+02
+7 8995     7.004500e+02 1.234300e+02
+9 8995     5.669900e+02 1.062700e+02
+0 8996     2.499900e+02 -1.149200e+02
+13 8996     6.008400e+02 -3.035600e+02
+15 8996     3.209800e+02 1.423999e+01
+0 8997     2.388600e+02 -1.192400e+02
+10 8997     1.941899e+02 2.769000e+01
+13 8997     5.915601e+02 -3.080400e+02
+0 8998     2.145900e+02 -1.218800e+02
+10 8998     1.668800e+02 2.237000e+01
+13 8998     5.729900e+02 -3.116000e+02
+15 8998     2.738700e+02 9.400024e-01
+0 8999     7.745500e+02 -1.216200e+02
+2 8999     7.647400e+02 -5.495001e+01
+3 8999     6.314200e+02 -3.520500e+02
+7 8999     6.361700e+02 9.826001e+01
+9 8999     5.152900e+02 6.331000e+01
+10 8999     8.172700e+02 8.203003e+01
+12 8999     7.714700e+02 8.128003e+01
+0 9000     1.962600e+02 -1.238600e+02
+13 9000     5.586899e+02 -3.142200e+02
+0 9001     -1.031600e+02 -1.279100e+02
+10 9001     -1.992400e+02 -1.766998e+01
+12 9001     -1.105200e+02 -1.125300e+02
+15 9001     -1.563400e+02 -5.029999e+01
+0 9002     1.186400e+02 -1.459800e+02
+13 9002     4.998400e+02 -3.380700e+02
+15 9002     1.453199e+02 -4.484998e+01
+0 9003     2.937000e+02 -1.533800e+02
+10 9003     2.616400e+02 -5.130005e+00
+13 9003     6.431000e+02 -3.350100e+02
+15 9003     3.865800e+02 -3.256000e+01
+0 9004     8.540200e+02 -1.542800e+02
+9 9004     5.877100e+02 7.503998e+01
+0 9005     7.654600e+02 -1.586300e+02
+2 9005     7.660601e+02 -9.728003e+01
+7 9005     6.324200e+02 6.115997e+01
+9 9005     5.172000e+02 2.800000e+01
+0 9006     -4.229300e+02 -1.653300e+02
+7 9006     -5.187400e+02 -1.512900e+02
+15 9006     -5.774400e+02 -1.459600e+02
+0 9007     -4.491800e+02 -1.945800e+02
+7 9007     -5.392200e+02 -1.849600e+02
+15 9007     -6.101300e+02 -1.891000e+02
+0 9008     -4.124200e+02 -2.098600e+02
+7 9008     -4.958800e+02 -1.927300e+02
+8 9008     -2.860500e+02 -4.053900e+02
+15 9008     -5.576200e+02 -2.043200e+02
+0 9009     -9.428998e+01 -2.145700e+02
+4 9009     -4.150700e+02 -3.258400e+02
+7 9009     -1.481700e+02 -1.243300e+02
+10 9009     -1.795800e+02 -1.187400e+02
+12 9009     -8.201001e+01 -2.263800e+02
+15 9009     -1.317000e+02 -1.672100e+02
+0 9010     7.879999e+01 -2.194900e+02
+3 9010     2.453900e+02 -4.652500e+02
+4 9010     -4.473000e+02 -4.762400e+02
+8 9010     2.925400e+02 -1.909300e+02
+12 9010     1.478600e+02 -1.512500e+02
+13 9010     4.774100e+02 -4.055900e+02
+15 9010     1.001100e+02 -1.496900e+02
+0 9011     -8.409973e+00 -2.207400e+02
+2 9011     2.326300e+02 -2.050200e+02
+3 9011     1.568100e+02 -5.044600e+02
+7 9011     -5.313000e+01 -1.075700e+02
+8 9011     2.094600e+02 -2.184600e+02
+0 9012     1.464200e+02 -2.222000e+02
+4 9012     -4.637300e+02 -5.336500e+02
+6 9012     2.173600e+02 -1.746899e+02
+12 9012     2.269800e+02 -1.342700e+02
+13 9012     5.367500e+02 -4.027100e+02
+15 9012     1.919500e+02 -1.443600e+02
+0 9013     -1.064500e+02 -2.224300e+02
+2 9013     7.865997e+01 -2.881300e+02
+3 9013     3.450012e+00 -5.953900e+02
+4 9013     -4.180300e+02 -3.141800e+02
+6 9013     -1.039500e+02 -2.949600e+02
+7 9013     -1.606600e+02 -1.345400e+02
+8 9013     8.785999e+01 -2.796900e+02
+9 9013     -2.871997e+01 -1.515300e+02
+10 9013     -1.920300e+02 -1.275800e+02
+12 9013     -9.798999e+01 -2.411400e+02
+15 9013     -1.459500e+02 -1.782400e+02
+0 9014     1.340700e+02 -2.244000e+02
+3 9014     2.977600e+02 -4.550400e+02
+4 9014     -4.631500e+02 -5.233700e+02
+6 9014     2.052000e+02 -1.812200e+02
+8 9014     3.403400e+02 -1.840100e+02
+10 9014     8.525000e+01 -1.040300e+02
+12 9014     2.121801e+02 -1.408200e+02
+0 9015     -4.327600e+02 -2.273100e+02
+10 9015     -5.744300e+02 -1.699500e+02
+12 9015     -5.455600e+02 -3.935700e+02
+15 9015     -5.829100e+02 -2.315400e+02
+0 9016     1.042200e+02 -2.333700e+02
+4 9016     -4.644000e+02 -4.991300e+02
+6 9016     1.815600e+02 -2.002200e+02
+7 9016     6.362000e+01 -9.803998e+01
+8 9016     3.217700e+02 -1.957000e+02
+10 9016     5.225000e+01 -1.171600e+02
+12 9016     1.841800e+02 -1.581300e+02
+15 9016     1.358400e+02 -1.645700e+02
+0 9017     8.603003e+01 -2.359200e+02
+4 9017     -4.631000e+02 -4.843400e+02
+6 9017     1.646500e+02 -2.078900e+02
+7 9017     4.722998e+01 -1.031800e+02
+9 9017     1.938101e+02 -4.784998e+01
+12 9017     1.656200e+02 -1.660800e+02
+0 9018     1.002600e+02 -2.463500e+02
+3 9018     2.872700e+02 -4.757600e+02
+4 9018     -4.736700e+02 -4.980500e+02
+6 9018     1.855800e+02 -2.126300e+02
+7 9018     6.383002e+01 -1.100900e+02
+8 9018     3.254200e+02 -2.031300e+02
+9 9018     2.109500e+02 -4.864001e+01
+10 9018     4.944000e+01 -1.333100e+02
+12 9018     1.867700e+02 -1.714300e+02
+15 9018     1.326100e+02 -1.831400e+02
+0 9019     3.378998e+01 -2.523300e+02
+2 9019     2.835000e+02 -2.339000e+02
+3 9019     2.029600e+02 -5.320900e+02
+4 9019     -4.666700e+02 -4.338500e+02
+6 9019     9.764001e+01 -2.560300e+02
+7 9019     -6.229980e+00 -1.322200e+02
+8 9019     2.529900e+02 -2.441800e+02
+9 9019     1.397200e+02 -9.662000e+01
+10 9019     -2.728003e+01 -1.467900e+02
+12 9019     9.914001e+01 -2.123700e+02
+13 9019     4.347200e+02 -4.424301e+02
+15 9019     4.469000e+01 -1.998800e+02
+0 9020     9.640997e+01 -2.529200e+02
+3 9020     2.866600e+02 -4.834800e+02
+4 9020     -4.781900e+02 -4.931899e+02
+6 9020     1.829100e+02 -2.225300e+02
+7 9020     6.160999e+01 -1.172100e+02
+8 9020     3.239900e+02 -2.106200e+02
+9 9020     2.106801e+02 -5.596002e+01
+10 9020     4.458002e+01 -1.408200e+02
+12 9020     1.834000e+02 -1.815500e+02
+15 9020     1.265900e+02 -1.926300e+02
+0 9021     -9.659003e+01 -2.566900e+02
+2 9021     9.553003e+01 -3.327500e+02
+6 9021     -8.626999e+01 -3.361000e+02
+7 9021     -1.468100e+02 -1.687100e+02
+9 9021     -1.187000e+01 -1.886500e+02
+10 9021     -1.769800e+02 -1.657600e+02
+12 9021     -8.021002e+01 -2.823500e+02
+13 9021     2.951500e+02 -4.667700e+02
+15 9021     -1.271800e+02 -2.234700e+02
+0 9022     3.717999e+01 -2.601100e+02
+2 9022     2.871500e+02 -2.465300e+02
+3 9022     2.072900e+02 -5.444700e+02
+4 9022     -4.739400e+02 -4.356500e+02
+6 9022     1.015300e+02 -2.661600e+02
+8 9022     2.561700e+02 -2.533300e+02
+9 9022     1.428199e+02 -1.068100e+02
+12 9022     1.036900e+02 -2.232500e+02
+15 9022     5.134998e+01 -2.101700e+02
+0 9023     -8.377100e+02 -2.841200e+02
+4 9023     -3.494200e+02 1.713600e+02
+0 9024     6.524301e+02 -2.906800e+02
+7 9024     5.586801e+02 -7.829999e+01
+0 9025     7.943000e+02 -3.126200e+02
+7 9025     6.869301e+02 -7.400000e+01
+0 9026     7.605100e+02 -3.245000e+02
+7 9026     6.605000e+02 -9.028998e+01
+0 9027     1.593199e+02 -3.288100e+02
+7 9027     1.253900e+02 -1.880600e+02
+10 9027     1.248700e+02 -2.207900e+02
+15 9027     2.266300e+02 -2.876200e+02
+0 9028     7.524000e+02 -3.435800e+02
+7 9028     6.582100e+02 -1.081400e+02
+0 9029     7.285200e+02 -3.590000e+02
+7 9029     6.399301e+02 -1.257800e+02
+0 9030     2.976801e+02 -3.742200e+02
+7 9030     2.622700e+02 -2.096400e+02
+0 9031     6.829100e+02 -3.806800e+02
+7 9031     6.059100e+02 -1.529800e+02
+0 9032     -2.086300e+02 -4.358500e+02
+7 9032     -2.269400e+02 -3.725800e+02
+10 9032     -2.866300e+02 -3.846500e+02
+15 9032     -2.542400e+02 -4.810000e+02
+0 9033     -1.673300e+02 -4.561700e+02
+6 9033     -8.500000e+01 -6.081100e+02
+0 9034     7.416500e+02 -4.746600e+02
+7 9034     6.769600e+02 -2.259400e+02
+0 9035     5.660800e+02 -4.774600e+02
+2 9035     8.144301e+02 -3.753100e+02
+10 9035     6.066899e+02 -3.473300e+02
+12 9035     7.212100e+02 -3.299200e+02
+15 9035     8.104399e+02 -4.409900e+02
+0 9036     4.739200e+02 -4.815900e+02
+7 9036     4.441600e+02 -2.822100e+02
+0 9037     1.312100e+02 -5.101899e+02
+2 9037     4.607600e+02 -5.304399e+02
+10 9037     1.123400e+02 -4.310900e+02
+0 9038     1.221300e+02 -5.193500e+02
+7 9038     1.215600e+02 -3.850700e+02
+9 9038     2.949900e+02 -3.441300e+02
+0 9039     -9.452002e+01 -5.352300e+02
+6 9039     5.022998e+01 -6.576899e+02
+0 9040     4.511200e+02 -5.363600e+02
+7 9040     4.351600e+02 -3.352400e+02
+0 9041     1.332001e+01 -5.372200e+02
+2 9041     3.610300e+02 -5.981400e+02
+7 9041     2.013000e+01 -4.235200e+02
+9 9041     2.223600e+02 -3.917300e+02
+0 9042     -3.228600e+02 -5.392500e+02
+4 9042     -6.299800e+02 -1.347200e+02
+6 9042     -2.132000e+02 -7.748800e+02
+9 9042     -7.626001e+01 -5.289100e+02
+0 9043     7.084900e+02 -5.384500e+02
+7 9043     6.626801e+02 -2.876400e+02
+0 9044     4.688600e+02 -5.411200e+02
+2 9044     7.842300e+02 -4.484301e+02
+7 9044     4.529301e+02 -3.362800e+02
+0 9045     5.215002e+01 -5.483800e+02
+2 9045     4.134500e+02 -5.933900e+02
+7 9045     6.189001e+01 -4.265300e+02
+0 9046     6.433002e+01 -5.505900e+02
+2 9046     4.237900e+02 -5.907200e+02
+7 9046     7.333002e+01 -4.258500e+02
+0 9047     2.890015e+00 -5.507500e+02
+7 9047     1.302002e+01 -4.390300e+02
+9 9047     2.244700e+02 -4.039300e+02
+0 9048     7.644000e+01 -5.504000e+02
+2 9048     4.434000e+02 -5.839800e+02
+9 9048     2.870200e+02 -3.765600e+02
+10 9048     5.821997e+01 -4.834700e+02
+0 9049     1.225800e+02 -5.585400e+02
+2 9049     4.888900e+02 -5.761500e+02
+6 9049     2.979200e+02 -5.855601e+02
+0 9050     5.597100e+02 -5.600300e+02
+7 9050     5.387500e+02 -3.364800e+02
+0 9051     3.437000e+01 -5.611801e+02
+2 9051     4.025400e+02 -6.099000e+02
+12 9051     1.945800e+02 -5.942100e+02
+0 9052     4.227002e+01 -5.707400e+02
+2 9052     4.178300e+02 -6.160800e+02
+4 9052     -7.553500e+02 -4.284300e+02
+7 9052     5.707001e+01 -4.496100e+02
+9 9052     2.695500e+02 -4.023400e+02
+0 9053     -1.515600e+02 5.830800e+02
+2 9053     -4.391600e+02 3.558500e+02
+3 9053     -5.631100e+02 2.551001e+01
+4 9053     7.128998e+01 -2.789100e+02
+5 9053     2.616100e+02 -6.509998e+01
+8 9053     -2.825300e+02 2.706500e+02
+11 9053     1.203003e+01 -1.977100e+02
+12 9053     -4.848700e+02 5.873700e+02
+13 9053     7.160999e+01 2.316000e+02
+0 9054     7.778998e+01 5.818400e+02
+4 9054     5.776001e+01 -4.142200e+02
+11 9054     2.119400e+02 -1.915900e+02
+0 9055     -5.182300e+02 5.786300e+02
+2 9055     -8.148000e+02 3.619800e+02
+4 9055     9.128998e+01 -8.444000e+01
+5 9055     -8.678998e+01 -6.803003e+01
+8 9055     -5.877800e+02 2.667300e+02
+11 9055     -2.963200e+02 -2.045900e+02
+13 9055     -2.138900e+02 2.123400e+02
+14 9055     -1.715000e+02 -1.648000e+02
+0 9056     2.821000e+02 5.773400e+02
+2 9056     -5.131000e+01 3.432800e+02
+4 9056     4.338000e+01 -5.470200e+02
+5 9056     6.823000e+02 -6.352002e+01
+9 9056     -1.981000e+02 3.714900e+02
+11 9056     3.940699e+02 -1.849500e+02
+13 9056     4.098199e+02 2.522900e+02
+14 9056     5.815200e+02 -1.444100e+02
+0 9057     -5.300100e+02 5.768300e+02
+2 9057     -8.283400e+02 3.606500e+02
+5 9057     -9.840997e+01 -6.959003e+01
+8 9057     -5.987300e+02 2.655400e+02
+0 9058     -4.625600e+02 5.758400e+02
+2 9058     -7.536500e+02 3.557700e+02
+4 9058     8.632001e+01 -1.121100e+02
+5 9058     -3.475000e+01 -7.171997e+01
+8 9058     -5.383700e+02 2.640400e+02
+13 9058     -1.707300e+02 2.121900e+02
+14 9058     -1.199900e+02 -1.676000e+02
+0 9059     -4.625600e+02 5.758400e+02
+2 9059     -7.536500e+02 3.557700e+02
+13 9059     -1.707300e+02 2.121900e+02
+0 9060     -2.526700e+02 5.744100e+02
+2 9060     -5.384800e+02 3.490400e+02
+11 9060     -7.467999e+01 -2.063600e+02
+13 9060     -6.460022e+00 2.198900e+02
+14 9060     7.616998e+01 -1.663400e+02
+0 9061     5.128101e+02 5.733600e+02
+6 9061     1.585800e+02 7.379900e+02
+13 9061     6.504100e+02 2.740400e+02
+0 9062     -3.565600e+02 5.724900e+02
+13 9062     -8.878003e+01 2.144100e+02
+0 9063     -3.565600e+02 5.724900e+02
+2 9063     -6.422300e+02 3.499300e+02
+4 9063     7.881000e+01 -1.665200e+02
+5 9063     6.541998e+01 -7.452002e+01
+11 9063     -1.635800e+02 -2.084500e+02
+13 9063     -8.878003e+01 2.144100e+02
+0 9064     1.189001e+01 5.716300e+02
+2 9064     -2.859000e+02 3.395800e+02
+4 9064     5.771002e+01 -3.715600e+02
+8 9064     -1.556300e+02 2.611700e+02
+12 9064     -3.037600e+02 5.931200e+02
+13 9064     1.986700e+02 2.303800e+02
+0 9065     3.685800e+02 5.637900e+02
+2 9065     2.423999e+01 3.326100e+02
+3 9065     -1.225100e+02 -1.880005e+00
+5 9065     7.708700e+02 -7.288000e+01
+6 9065     -9.566000e+01 6.746600e+02
+8 9065     1.007900e+02 2.613000e+02
+9 9065     -1.342000e+02 3.636000e+02
+11 9065     4.747000e+02 -1.909600e+02
+13 9065     4.789301e+02 2.468100e+02
+14 9065     6.669900e+02 -1.525900e+02
+0 9066     5.905900e+02 5.621900e+02
+2 9066     3.411700e+02 4.686800e+02
+3 9066     1.950800e+02 1.329900e+02
+6 9066     2.604100e+02 7.433600e+02
+8 9066     3.482600e+02 3.615800e+02
+9 9066     1.425200e+02 4.919800e+02
+13 9066     7.261400e+02 2.721500e+02
+0 9067     1.372500e+02 5.619700e+02
+3 9067     -3.082500e+02 -3.900024e+00
+4 9067     4.227002e+01 -4.503000e+02
+5 9067     5.407900e+02 -8.246002e+01
+8 9067     -6.220001e+01 2.556800e+02
+12 9067     -1.695300e+02 5.998800e+02
+0 9068     5.161500e+02 5.594500e+02
+3 9068     1.182400e+02 1.069300e+02
+6 9068     1.667200e+02 7.229500e+02
+8 9068     2.832600e+02 3.409900e+02
+9 9068     7.369000e+01 4.669600e+02
+11 9068     5.934700e+02 -1.876100e+02
+13 9068     6.547600e+02 2.630200e+02
+0 9069     5.395200e+02 5.590700e+02
+2 9069     2.876600e+02 4.497800e+02
+3 9069     1.437900e+02 1.141600e+02
+6 9069     1.977700e+02 7.275500e+02
+8 9069     3.045300e+02 3.467600e+02
+9 9069     9.690997e+01 4.739700e+02
+11 9069     6.141100e+02 -1.864900e+02
+13 9069     6.779700e+02 2.648000e+02
+0 9070     -5.168100e+02 5.569600e+02
+2 9070     -8.142100e+02 3.358800e+02
+4 9070     8.033002e+01 -8.266998e+01
+5 9070     -8.865002e+01 -8.944000e+01
+8 9070     -5.871400e+02 2.466400e+02
+11 9070     -2.966400e+02 -2.214600e+02
+13 9070     -2.139900e+02 1.946200e+02
+14 9070     -1.730500e+02 -1.857900e+02
+0 9071     2.037400e+02 5.565800e+02
+2 9071     -1.143600e+02 3.233700e+02
+4 9071     3.642999e+01 -4.937500e+02
+5 9071     6.054000e+02 -8.538000e+01
+6 9071     -2.673500e+02 6.347000e+02
+8 9071     -1.451001e+01 2.520000e+02
+9 9071     -2.511300e+02 3.516800e+02
+11 9071     3.262500e+02 -2.066400e+02
+12 9071     -9.978998e+01 6.016000e+02
+13 9071     3.492000e+02 2.300300e+02
+14 9071     5.079301e+02 -1.692200e+02
+0 9072     3.170200e+02 5.564700e+02
+2 9072     -1.629999e+01 3.239900e+02
+3 9072     -1.601200e+02 -9.609985e+00
+9 9072     -1.679100e+02 3.552100e+02
+13 9072     4.392400e+02 2.371100e+02
+0 9073     3.439001e+01 5.496700e+02
+4 9073     4.148999e+01 -3.848200e+02
+12 9073     -2.762300e+02 5.712700e+02
+13 9073     2.157300e+02 2.125600e+02
+0 9074     5.704000e+02 5.458900e+02
+2 9074     3.244301e+02 4.483700e+02
+3 9074     1.796100e+02 1.135300e+02
+6 9074     2.395300e+02 7.201100e+02
+8 9074     3.343400e+02 3.448100e+02
+13 9074     7.088500e+02 2.565900e+02
+0 9075     5.973500e+02 5.424000e+02
+2 9075     3.529000e+02 4.535500e+02
+3 9075     2.066700e+02 1.192000e+02
+6 9075     2.738300e+02 7.233500e+02
+8 9075     3.579000e+02 3.492800e+02
+9 9075     1.531600e+02 4.791100e+02
+11 9075     6.673500e+02 -1.972800e+02
+13 9075     7.344800e+02 2.570500e+02
+0 9076     -7.142800e+02 5.408200e+02
+4 9076     7.447998e+01 3.715002e+01
+5 9076     -3.690300e+02 -1.050100e+02
+0 9077     4.206801e+02 5.360200e+02
+2 9077     6.891998e+01 3.044300e+02
+3 9077     -7.867999e+01 -2.953003e+01
+6 9077     -3.825000e+01 6.521300e+02
+8 9077     1.392100e+02 2.403000e+02
+9 9077     -9.431000e+01 3.410700e+02
+11 9077     5.258199e+02 -2.112500e+02
+12 9077     1.221700e+02 6.067800e+02
+13 9077     5.214600e+02 2.273100e+02
+14 9077     7.208600e+02 -1.777200e+02
+0 9078     2.245000e+02 5.331700e+02
+2 9078     -9.370001e+01 2.987200e+02
+3 9078     -2.337900e+02 -3.376001e+01
+9 9078     -2.324200e+02 3.304500e+02
+13 9078     3.667300e+02 2.122600e+02
+14 9078     5.296600e+02 -1.912500e+02
+0 9079     -7.039800e+02 5.314000e+02
+4 9079     6.754999e+01 3.234998e+01
+5 9079     -3.532700e+02 -1.163600e+02
+13 9079     -4.260100e+02 1.584400e+02
+14 9079     -4.294800e+02 -2.150400e+02
+0 9080     3.475699e+02 5.305300e+02
+2 9080     1.141998e+01 3.005300e+02
+5 9080     7.502100e+02 -1.071600e+02
+8 9080     8.959003e+01 2.356400e+02
+9 9080     -1.437000e+02 3.347900e+02
+13 9080     4.608300e+02 2.160600e+02
+14 9080     6.457300e+02 -1.897700e+02
+0 9081     6.651200e+02 5.285900e+02
+2 9081     4.714900e+02 5.072100e+02
+3 9081     3.218500e+02 1.710200e+02
+6 9081     3.998200e+02 7.343700e+02
+8 9081     4.500900e+02 3.885900e+02
+9 9081     2.556600e+02 5.286000e+02
+11 9081     7.228500e+02 -2.064400e+02
+13 9081     8.231500e+02 2.565400e+02
+0 9082     2.233900e+02 5.264500e+02
+2 9082     -9.409003e+01 2.909100e+02
+9 9082     -2.326800e+02 3.243700e+02
+0 9083     6.778003e+01 5.114200e+02
+4 9083     1.634998e+01 -4.022900e+02
+5 9083     4.714200e+02 -1.370400e+02
+6 9083     -4.048500e+02 5.478400e+02
+8 9083     -1.092100e+02 2.080000e+02
+9 9083     -3.465100e+02 3.015800e+02
+11 9083     2.071800e+02 -2.519700e+02
+12 9083     -2.331100e+02 5.293000e+02
+13 9083     2.432400e+02 1.831600e+02
+14 9083     3.786100e+02 -2.215500e+02
+0 9084     -6.791900e+02 4.969600e+02
+4 9084     5.258002e+01 1.992999e+01
+11 9084     -4.268000e+02 -2.681800e+02
+0 9085     -6.791900e+02 4.969600e+02
+4 9085     5.258002e+01 1.992999e+01
+11 9085     -4.268000e+02 -2.681800e+02
+0 9086     -1.516800e+02 4.912200e+02
+3 9086     -5.607800e+02 -8.015997e+01
+0 9087     4.988900e+02 4.818800e+02
+6 9087     1.655300e+02 6.300600e+02
+8 9087     2.820600e+02 2.782400e+02
+9 9087     7.604999e+01 3.995900e+02
+11 9087     5.914399e+02 -2.559100e+02
+12 9087     2.761400e+02 6.147400e+02
+13 9087     6.466500e+02 1.984700e+02
+0 9088     4.988900e+02 4.818800e+02
+8 9088     2.820600e+02 2.782400e+02
+9 9088     7.604999e+01 3.995900e+02
+12 9088     2.761400e+02 6.147400e+02
+13 9088     6.466500e+02 1.984700e+02
+0 9089     6.324600e+02 4.793100e+02
+3 9089     3.040200e+02 1.206400e+02
+6 9089     3.733400e+02 6.728200e+02
+8 9089     4.329800e+02 3.436800e+02
+9 9089     2.389600e+02 4.814400e+02
+13 9089     7.978500e+02 2.138300e+02
+0 9090     5.134399e+02 4.659700e+02
+2 9090     2.801500e+02 3.547000e+02
+3 9090     1.382400e+02 2.413000e+01
+8 9090     2.983800e+02 2.695800e+02
+9 9090     9.287000e+01 3.914900e+02
+11 9090     6.078800e+02 -2.697900e+02
+12 9090     2.968300e+02 6.017200e+02
+13 9090     6.618400e+02 1.863400e+02
+0 9091     5.887100e+02 4.614500e+02
+2 9091     3.618600e+02 3.766200e+02
+3 9091     2.176600e+02 4.739001e+01
+8 9091     3.663700e+02 2.875500e+02
+13 9091     7.343101e+02 1.910700e+02
+0 9092     5.352000e+02 4.546000e+02
+2 9092     3.070200e+02 3.504500e+02
+3 9092     1.646500e+02 2.202002e+01
+8 9092     3.195700e+02 2.654900e+02
+9 9092     1.164400e+02 3.893200e+02
+13 9092     6.841400e+02 1.782500e+02
+0 9093     -6.067100e+02 4.540200e+02
+13 9093     -2.904800e+02 1.049800e+02
+14 9093     -2.729900e+02 -2.888100e+02
+0 9094     6.798000e+02 4.536000e+02
+2 9094     5.047700e+02 4.473200e+02
+3 9094     3.559900e+02 1.166400e+02
+6 9094     4.357100e+02 6.574800e+02
+8 9094     4.778300e+02 3.381000e+02
+9 9094     2.859700e+02 4.770600e+02
+13 9094     8.461300e+02 1.984700e+02
+0 9095     -8.290002e+01 4.488400e+02
+2 9095     -3.645200e+02 1.997900e+02
+5 9095     3.203500e+02 -2.063500e+02
+7 9095     -3.021000e+02 5.055700e+02
+11 9095     7.384003e+01 -3.111000e+02
+13 9095     1.253100e+02 1.212500e+02
+14 9095     2.331000e+02 -2.919300e+02
+0 9096     -6.542200e+02 4.443000e+02
+4 9096     2.592999e+01 1.196997e+01
+5 9096     -2.921800e+02 -2.031900e+02
+11 9096     -4.134400e+02 -3.121900e+02
+0 9097     -5.627000e+02 4.419500e+02
+4 9097     2.422998e+01 -4.615997e+01
+5 9097     -1.500700e+02 -2.054500e+02
+7 9097     -7.975200e+02 4.475300e+02
+13 9097     -2.562600e+02 9.639999e+01
+14 9097     -2.327800e+02 -3.019000e+02
+0 9098     8.432000e+02 4.420900e+02
+2 9098     6.639399e+02 4.914000e+02
+3 9098     5.020000e+02 1.588000e+02
+9 9098     4.190200e+02 5.187200e+02
+0 9099     8.572900e+02 4.357700e+02
+2 9099     6.787800e+02 4.905800e+02
+3 9099     5.153400e+02 1.582400e+02
+9 9099     4.316200e+02 5.180600e+02
+0 9100     7.214301e+02 4.244100e+02
+2 9100     5.538400e+02 4.367400e+02
+3 9100     4.026899e+02 1.072900e+02
+6 9100     4.926100e+02 6.387700e+02
+8 9100     5.185900e+02 3.291100e+02
+0 9101     6.783800e+02 4.049800e+02
+2 9101     5.160699e+02 4.045700e+02
+3 9101     3.677500e+02 7.667999e+01
+6 9101     4.461500e+02 6.066000e+02
+7 9101     4.743600e+02 5.847200e+02
+8 9101     4.866200e+02 3.029700e+02
+12 9101     5.282800e+02 6.146400e+02
+13 9101     8.515000e+02 1.589900e+02
+0 9102     6.783800e+02 4.049800e+02
+2 9102     5.160699e+02 4.045700e+02
+3 9102     3.677500e+02 7.667999e+01
+6 9102     4.461500e+02 6.066000e+02
+7 9102     4.743600e+02 5.847200e+02
+8 9102     4.866200e+02 3.029700e+02
+9 9102     2.966100e+02 4.415200e+02
+12 9102     5.282800e+02 6.146400e+02
+13 9102     8.515000e+02 1.589900e+02
+0 9103     7.088900e+02 4.044400e+02
+3 9103     3.967200e+02 8.703003e+01
+6 9103     4.821200e+02 6.138500e+02
+8 9103     5.119700e+02 3.110500e+02
+9 9103     3.226400e+02 4.509400e+02
+0 9104     7.088900e+02 4.044400e+02
+2 9104     5.467000e+02 4.149500e+02
+3 9104     3.967200e+02 8.703003e+01
+6 9104     4.821200e+02 6.138500e+02
+8 9104     5.119700e+02 3.110500e+02
+9 9104     3.226400e+02 4.509400e+02
+0 9105     -2.753200e+02 3.933400e+02
+7 9105     -4.864800e+02 4.267600e+02
+10 9105     -4.639100e+02 5.830300e+02
+0 9106     6.997700e+02 3.934900e+02
+2 9106     5.412100e+02 4.019200e+02
+3 9106     3.915500e+02 7.485999e+01
+6 9106     4.746500e+02 5.999200e+02
+7 9106     4.970200e+02 5.765800e+02
+8 9106     5.073400e+02 3.006400e+02
+9 9106     3.176600e+02 4.399000e+02
+12 9106     5.553101e+02 6.094800e+02
+13 9106     8.734000e+02 1.522000e+02
+0 9107     6.438000e+02 3.901900e+02
+2 9107     4.844399e+02 3.790300e+02
+3 9107     3.385000e+02 5.196997e+01
+6 9107     4.087800e+02 5.811800e+02
+7 9107     4.423600e+02 5.644000e+02
+8 9107     4.602900e+02 2.831900e+02
+9 9107     2.698199e+02 4.186600e+02
+11 9107     7.345200e+02 -3.319400e+02
+12 9107     4.923500e+02 5.880200e+02
+13 9107     8.192600e+02 1.434100e+02
+0 9108     6.285601e+02 3.889100e+02
+2 9108     4.687100e+02 3.713600e+02
+3 9108     3.240100e+02 4.471997e+01
+7 9108     4.275800e+02 5.608300e+02
+8 9108     4.472700e+02 2.764700e+02
+9 9108     2.569301e+02 4.117000e+02
+11 9108     7.206700e+02 -3.339700e+02
+12 9108     4.748000e+02 5.807000e+02
+13 9108     8.043800e+02 1.407300e+02
+0 9109     6.285601e+02 3.889100e+02
+2 9109     4.687100e+02 3.713600e+02
+3 9109     3.240100e+02 4.471997e+01
+7 9109     4.275800e+02 5.608300e+02
+8 9109     4.472700e+02 2.764700e+02
+9 9109     2.569301e+02 4.117000e+02
+11 9109     7.206700e+02 -3.339700e+02
+12 9109     4.748000e+02 5.807000e+02
+13 9109     8.043800e+02 1.407300e+02
+0 9110     6.673600e+02 3.820900e+02
+2 9110     5.113600e+02 3.768700e+02
+6 9110     4.390601e+02 5.741100e+02
+7 9110     4.668300e+02 5.604600e+02
+8 9110     4.820601e+02 2.792000e+02
+9 9110     2.925100e+02 4.166200e+02
+12 9110     5.208101e+02 5.815400e+02
+0 9111     7.926300e+02 3.768900e+02
+2 9111     6.350300e+02 4.197400e+02
+3 9111     4.800200e+02 9.340002e+01
+7 9111     5.877900e+02 5.757700e+02
+9 9111     3.961200e+02 4.568600e+02
+0 9112     -5.171800e+02 3.672300e+02
+4 9112     -2.210999e+01 -5.419000e+01
+13 9112     -2.234800e+02 3.157001e+01
+14 9112     -1.992300e+02 -3.838800e+02
+15 9112     -7.881300e+02 5.730000e+02
+0 9113     7.807000e+02 3.626100e+02
+2 9113     6.278199e+02 4.040000e+02
+3 9113     4.733300e+02 7.864001e+01
+6 9113     5.734600e+02 5.894700e+02
+7 9113     5.783101e+02 5.600200e+02
+8 9113     5.798000e+02 3.003900e+02
+9 9113     3.907600e+02 4.429900e+02
+12 9113     6.526801e+02 6.030900e+02
+0 9114     6.819100e+02 3.563400e+02
+2 9114     5.326000e+02 3.622600e+02
+3 9114     3.851801e+02 3.747998e+01
+6 9114     4.625699e+02 5.549200e+02
+7 9114     4.842900e+02 5.381800e+02
+8 9114     4.998300e+02 2.677000e+02
+11 9114     7.792200e+02 -3.624500e+02
+12 9114     5.438900e+02 5.645500e+02
+0 9115     -5.480500e+02 3.510000e+02
+5 9115     -1.505300e+02 -3.031600e+02
+10 9115     -7.933800e+02 5.097800e+02
+13 9115     -2.490300e+02 1.802002e+01
+14 9115     -2.320200e+02 -3.992500e+02
+15 9115     -8.290100e+02 5.462600e+02
+0 9116     5.424900e+02 3.416400e+02
+2 9116     3.440100e+02 2.476500e+02
+3 9116     2.023300e+02 -7.682001e+01
+6 9116     2.572600e+02 4.838200e+02
+7 9116     3.369301e+02 4.914400e+02
+8 9116     3.485000e+02 1.814600e+02
+9 9116     1.503101e+02 3.017500e+02
+10 9116     5.097000e+02 6.032100e+02
+11 9116     6.567900e+02 -3.825900e+02
+12 9116     3.609200e+02 4.778600e+02
+13 9116     7.037200e+02 8.592999e+01
+0 9117     7.803600e+02 3.408600e+02
+7 9117     5.807600e+02 5.397000e+02
+8 9117     5.846500e+02 2.848000e+02
+9 9117     3.962800e+02 4.277500e+02
+12 9117     6.572000e+02 5.793300e+02
+0 9118     8.496300e+02 3.414200e+02
+2 9118     6.982700e+02 4.102600e+02
+3 9118     5.381600e+02 8.542999e+01
+7 9118     6.457900e+02 5.510700e+02
+9 9118     4.497600e+02 4.505100e+02
+12 9118     7.334700e+02 6.047200e+02
+0 9119     8.496300e+02 3.414200e+02
+2 9119     6.982700e+02 4.102600e+02
+3 9119     5.381600e+02 8.542999e+01
+7 9119     6.457900e+02 5.510700e+02
+9 9119     4.497600e+02 4.505100e+02
+12 9119     7.334700e+02 6.047200e+02
+0 9120     5.228700e+02 3.374500e+02
+3 9120     1.823800e+02 -8.960999e+01
+6 9120     2.332200e+02 4.712900e+02
+7 9120     3.183101e+02 4.838400e+02
+8 9120     3.319300e+02 1.713900e+02
+9 9120     1.326100e+02 2.900900e+02
+10 9120     4.871801e+02 5.947900e+02
+12 9120     3.398000e+02 4.658100e+02
+13 9120     6.852600e+02 7.947000e+01
+0 9121     6.693101e+02 3.369700e+02
+2 9121     5.247000e+02 3.396500e+02
+3 9121     3.784800e+02 1.634003e+01
+6 9121     4.524200e+02 5.307500e+02
+7 9121     4.745500e+02 5.173800e+02
+8 9121     4.930000e+02 2.493900e+02
+9 9121     3.048700e+02 3.862200e+02
+10 9121     6.611600e+02 6.112800e+02
+12 9121     5.343700e+02 5.397000e+02
+13 9121     8.507000e+02 1.023900e+02
+0 9122     6.693101e+02 3.369700e+02
+3 9122     3.784800e+02 1.634003e+01
+6 9122     4.524200e+02 5.307500e+02
+7 9122     4.745500e+02 5.173800e+02
+0 9123     4.462000e+01 3.348600e+02
+7 9123     -1.584800e+02 4.059900e+02
+13 9123     2.346700e+02 3.103998e+01
+14 9123     3.679200e+02 -4.102400e+02
+0 9124     8.162000e+02 3.283600e+02
+2 9124     6.710601e+02 3.869700e+02
+3 9124     5.138600e+02 6.396997e+01
+7 9124     6.170100e+02 5.333600e+02
+9 9124     4.285800e+02 4.305400e+02
+12 9124     7.009500e+02 5.795400e+02
+0 9125     6.051500e+02 3.233700e+02
+2 9125     4.602600e+02 3.008700e+02
+3 9125     3.183800e+02 -2.191998e+01
+6 9125     3.776200e+02 4.954600e+02
+7 9125     4.130900e+02 4.932700e+02
+9 9125     2.506400e+02 3.510100e+02
+12 9125     4.640400e+02 5.015900e+02
+13 9125     7.886000e+02 8.317001e+01
+0 9126     4.840002e+01 3.207300e+02
+7 9126     -1.525000e+02 3.928500e+02
+10 9126     -7.082001e+01 5.253400e+02
+11 9126     1.977300e+02 -4.239600e+02
+0 9127     4.620601e+02 3.171800e+02
+10 9127     4.155601e+02 5.649700e+02
+11 9127     5.846500e+02 -4.099600e+02
+13 9127     6.255800e+02 5.540002e+01
+0 9128     6.612600e+02 3.139600e+02
+3 9128     3.769800e+02 -6.510010e+00
+6 9128     4.480300e+02 5.039100e+02
+7 9128     4.694900e+02 4.941400e+02
+9 9128     3.030601e+02 3.657800e+02
+10 9128     6.528800e+02 5.825800e+02
+11 9128     7.699700e+02 -4.047400e+02
+12 9128     5.300500e+02 5.128700e+02
+13 9128     8.457400e+02 8.223001e+01
+0 9129     7.373800e+02 3.086200e+02
+2 9129     6.000200e+02 3.404000e+02
+3 9129     4.502900e+02 1.928003e+01
+7 9129     5.432400e+02 5.023100e+02
+9 9129     3.684399e+02 3.891100e+02
+10 9129     7.428199e+02 5.862700e+02
+0 9130     6.561500e+02 3.013100e+02
+3 9130     3.756700e+02 -1.963000e+01
+7 9130     4.663400e+02 4.808600e+02
+10 9130     6.474399e+02 5.669500e+02
+12 9130     5.279399e+02 4.972600e+02
+0 9131     6.561500e+02 3.013100e+02
+2 9131     5.203101e+02 3.016800e+02
+3 9131     3.756700e+02 -1.963000e+01
+6 9131     4.455000e+02 4.887000e+02
+7 9131     4.663400e+02 4.808600e+02
+9 9131     3.019800e+02 3.541000e+02
+12 9131     5.279399e+02 4.972600e+02
+0 9132     5.966700e+02 2.971400e+02
+2 9132     4.586899e+02 2.725900e+02
+3 9132     3.173500e+02 -4.871002e+01
+6 9132     3.743700e+02 4.644600e+02
+7 9132     4.081300e+02 4.665000e+02
+8 9132     4.377100e+02 1.954800e+02
+9 9132     2.496600e+02 3.271900e+02
+10 9132     5.768500e+02 5.544600e+02
+11 9132     7.115200e+02 -4.248600e+02
+12 9132     4.606700e+02 4.714100e+02
+13 9132     7.837300e+02 6.009003e+01
+0 9133     6.689200e+02 2.947200e+02
+7 9133     4.795500e+02 4.771800e+02
+10 9133     6.622800e+02 5.608400e+02
+0 9134     6.095100e+02 2.889500e+02
+7 9134     4.220000e+02 4.608600e+02
+0 9135     -3.775500e+02 2.870700e+02
+5 9135     1.281000e+01 -3.787000e+02
+0 9136     7.056899e+02 2.847000e+02
+2 9136     5.754100e+02 3.063100e+02
+3 9136     4.279800e+02 -1.346002e+01
+6 9136     5.077300e+02 4.860300e+02
+7 9136     5.166700e+02 4.735300e+02
+8 9136     5.343500e+02 2.205400e+02
+9 9136     3.487000e+02 3.594900e+02
+10 9136     7.071600e+02 5.527300e+02
+12 9136     5.880400e+02 4.962000e+02
+0 9137     -1.351000e+02 2.810500e+02
+7 9137     -3.265100e+02 3.300000e+02
+0 9138     6.152002e+01 2.608000e+02
+4 9138     -1.306100e+02 -3.914100e+02
+7 9138     -1.253600e+02 3.388800e+02
+11 9138     2.099300e+02 -4.809000e+02
+0 9139     6.132100e+02 2.609200e+02
+2 9139     4.853400e+02 2.445100e+02
+3 9139     3.440400e+02 -7.459998e+01
+6 9139     4.034900e+02 4.295300e+02
+7 9139     4.292700e+02 4.341600e+02
+10 9139     5.989301e+02 5.124800e+02
+11 9139     7.362000e+02 -4.604500e+02
+13 9139     8.041100e+02 3.133002e+01
+0 9140     6.515000e+02 2.592200e+02
+2 9140     5.265400e+02 2.601100e+02
+3 9140     3.832600e+02 -5.875000e+01
+6 9140     4.503199e+02 4.410100e+02
+7 9140     4.670601e+02 4.397600e+02
+8 9140     4.933700e+02 1.837600e+02
+9 9140     3.078900e+02 3.188500e+02
+10 9140     6.444200e+02 5.161400e+02
+11 9140     7.744301e+02 -4.603900e+02
+12 9140     5.327600e+02 4.499900e+02
+13 9140     8.424500e+02 3.483002e+01
+0 9141     -4.164400e+02 2.557600e+02
+7 9141     -6.149600e+02 2.618600e+02
+11 9141     -2.304600e+02 -4.839600e+02
+0 9142     -3.999200e+02 2.516200e+02
+5 9142     -1.665997e+01 -4.174900e+02
+7 9142     -5.942500e+02 2.614500e+02
+0 9143     -6.244000e+01 2.305000e+02
+7 9143     -2.420200e+02 2.920900e+02
+10 9143     -1.905200e+02 4.067100e+02
+13 9143     1.691500e+02 -6.278998e+01
+14 9143     2.840200e+02 -5.278400e+02
+0 9144     7.216100e+02 2.255000e+02
+2 9144     6.085000e+02 2.588500e+02
+3 9144     4.612600e+02 -5.725000e+01
+6 9144     5.420100e+02 4.284800e+02
+7 9144     5.396899e+02 4.200300e+02
+8 9144     5.614700e+02 1.810200e+02
+9 9144     3.773700e+02 3.203200e+02
+10 9144     7.302100e+02 4.836000e+02
+0 9145     -7.039001e+01 2.200200e+02
+7 9145     -2.466300e+02 2.819200e+02
+10 9145     -1.985100e+02 3.936400e+02
+0 9146     6.338000e+02 2.183600e+02
+2 9146     5.182100e+02 2.131000e+02
+3 9146     3.770900e+02 -1.033000e+02
+6 9146     4.387300e+02 3.902300e+02
+7 9146     4.550900e+02 3.969900e+02
+8 9146     4.854900e+02 1.452800e+02
+9 9146     3.015200e+02 2.786600e+02
+10 9146     6.258800e+02 4.646200e+02
+13 9146     8.292500e+02 -1.989990e+00
+15 9146     8.302400e+02 5.306400e+02
+0 9147     7.195601e+02 2.115200e+02
+2 9147     6.099100e+02 2.445900e+02
+3 9147     4.637700e+02 -7.069000e+01
+6 9147     5.426200e+02 4.124900e+02
+7 9147     5.398800e+02 4.060900e+02
+8 9147     5.623800e+02 1.690100e+02
+9 9147     3.786400e+02 3.085000e+02
+0 9148     7.709600e+02 2.119800e+02
+7 9148     5.882700e+02 4.157500e+02
+10 9148     7.895100e+02 4.731400e+02
+0 9149     7.042100e+02 1.964200e+02
+2 9149     5.984399e+02 2.227000e+02
+3 9149     4.541200e+02 -9.095001e+01
+6 9149     5.287500e+02 3.895600e+02
+7 9149     5.269500e+02 3.884000e+02
+8 9149     5.529200e+02 1.504900e+02
+9 9149     3.692700e+02 2.893400e+02
+10 9149     7.111400e+02 4.463500e+02
+0 9150     -5.330700e+02 1.926500e+02
+13 9150     -2.423900e+02 -1.217000e+02
+0 9151     8.012700e+02 1.921500e+02
+7 9151     6.199700e+02 4.019000e+02
+0 9152     8.797998e+01 1.842200e+02
+10 9152     -1.048999e+01 3.658500e+02
+13 9152     4.031600e+02 -6.622998e+01
+14 9152     5.833400e+02 -5.456899e+02
+0 9153     -2.827600e+02 1.758500e+02
+7 9153     -4.539600e+02 2.070000e+02
+0 9154     -2.600900e+02 1.744400e+02
+7 9154     -4.298300e+02 2.086400e+02
+0 9155     6.978600e+02 1.564900e+02
+2 9155     6.032800e+02 1.828800e+02
+3 9155     4.602300e+02 -1.294100e+02
+6 9155     5.316899e+02 3.459700e+02
+7 9155     5.258300e+02 3.492000e+02
+8 9155     5.564800e+02 1.185800e+02
+9 9155     3.743500e+02 2.561200e+02
+12 9155     6.119900e+02 3.567300e+02
+0 9156     8.065601e+02 1.387600e+02
+2 9156     7.189800e+02 2.151600e+02
+7 9156     6.323500e+02 3.521900e+02
+9 9156     4.722200e+02 2.887200e+02
+0 9157     6.905100e+02 1.357600e+02
+2 9157     6.010100e+02 1.596700e+02
+3 9157     4.596500e+02 -1.516000e+02
+7 9157     5.217700e+02 3.280400e+02
+8 9157     5.538700e+02 9.947000e+01
+9 9157     3.731200e+02 2.365800e+02
+10 9157     6.989900e+02 3.734500e+02
+12 9157     6.088101e+02 3.307900e+02
+0 9158     6.905100e+02 1.357600e+02
+2 9158     6.010100e+02 1.596700e+02
+3 9158     4.596500e+02 -1.516000e+02
+7 9158     5.217700e+02 3.280400e+02
+8 9158     5.538700e+02 9.947000e+01
+9 9158     3.731200e+02 2.365800e+02
+10 9158     6.989900e+02 3.734500e+02
+12 9158     6.088101e+02 3.307900e+02
+0 9159     7.719000e+02 1.316500e+02
+2 9159     6.849900e+02 1.939100e+02
+3 9159     5.381000e+02 -1.157600e+02
+7 9159     6.009700e+02 3.394100e+02
+10 9159     7.965100e+02 3.772700e+02
+0 9160     8.209700e+02 1.270500e+02
+2 9160     7.346600e+02 2.102400e+02
+3 9160     5.843900e+02 -9.900000e+01
+7 9160     6.479000e+02 3.436700e+02
+9 9160     4.832700e+02 2.829800e+02
+0 9161     7.230200e+02 1.257700e+02
+3 9161     4.946300e+02 -1.458300e+02
+8 9161     5.848300e+02 1.019200e+02
+12 9161     6.483700e+02 3.308900e+02
+0 9162     7.388500e+02 1.263000e+02
+3 9162     5.089500e+02 -1.374200e+02
+0 9163     7.847300e+02 1.074100e+02
+2 9163     7.048400e+02 1.754700e+02
+3 9163     5.579200e+02 -1.327200e+02
+7 9163     6.158000e+02 3.181400e+02
+9 9163     4.599900e+02 2.531700e+02
+10 9163     8.131400e+02 3.497400e+02
+12 9163     7.221700e+02 3.347200e+02
+0 9164     8.740000e+02 1.055100e+02
+7 9164     6.998000e+02 3.297600e+02
+9 9164     5.295300e+02 2.853200e+02
+12 9164     8.212900e+02 3.621900e+02
+0 9165     8.346200e+02 1.039500e+02
+2 9165     7.534200e+02 1.941500e+02
+3 9165     6.031000e+02 -1.132700e+02
+7 9165     6.630000e+02 3.240600e+02
+9 9165     4.997100e+02 2.702200e+02
+0 9166     -4.808200e+02 9.864001e+01
+7 9166     -6.453300e+02 9.863000e+01
+0 9167     5.538199e+02 9.189999e+01
+10 9167     5.411801e+02 3.064200e+02
+12 9167     4.599600e+02 2.316000e+02
+15 9167     7.319600e+02 3.406000e+02
+0 9168     7.544000e+02 8.710999e+01
+2 9168     6.801400e+02 1.422600e+02
+3 9168     5.365100e+02 -1.650400e+02
+7 9168     5.897000e+02 2.932700e+02
+0 9169     8.355300e+02 8.767001e+01
+7 9169     6.659301e+02 3.086800e+02
+0 9170     8.355300e+02 8.767001e+01
+7 9170     6.659301e+02 3.086800e+02
+0 9171     7.120699e+02 8.112000e+01
+2 9171     6.391500e+02 1.161000e+02
+3 9171     4.982300e+02 -1.916700e+02
+6 9171     5.675900e+02 2.688500e+02
+7 9171     5.496300e+02 2.794100e+02
+8 9171     5.851700e+02 6.254001e+01
+9 9171     4.059500e+02 2.011800e+02
+12 9171     6.464800e+02 2.785900e+02
+0 9172     7.735500e+02 7.766998e+01
+2 9172     7.024700e+02 1.425800e+02
+3 9172     5.577400e+02 -1.642200e+02
+7 9172     6.093199e+02 2.879700e+02
+9 9172     4.587000e+02 2.253100e+02
+10 9172     8.019200e+02 3.139500e+02
+12 9172     7.172700e+02 2.995000e+02
+0 9173     7.735500e+02 7.766998e+01
+2 9173     7.024700e+02 1.425800e+02
+3 9173     5.577400e+02 -1.642200e+02
+7 9173     6.093199e+02 2.879700e+02
+9 9173     4.587000e+02 2.253100e+02
+10 9173     8.019200e+02 3.139500e+02
+12 9173     7.172700e+02 2.995000e+02
+0 9174     8.114700e+02 7.453003e+01
+3 9174     5.933199e+02 -1.494200e+02
+7 9174     6.452800e+02 2.916600e+02
+9 9174     4.893000e+02 2.373200e+02
+12 9174     7.592400e+02 3.078600e+02
+0 9175     8.694200e+02 6.523999e+01
+2 9175     7.990900e+02 1.744200e+02
+3 9175     6.466000e+02 -1.296100e+02
+7 9175     7.007900e+02 2.946000e+02
+9 9175     5.372600e+02 2.547100e+02
+0 9176     -4.385900e+02 5.647998e+01
+10 9176     -6.143100e+02 1.629000e+02
+13 9176     -1.231400e+02 -2.321800e+02
+15 9176     -6.251800e+02 1.534600e+02
+0 9177     -3.893100e+02 5.328998e+01
+2 9177     -5.498900e+02 -2.262300e+02
+7 9177     -5.374300e+02 6.840997e+01
+8 9177     -3.870100e+02 -2.005300e+02
+10 9177     -5.592400e+02 1.629700e+02
+13 9177     -7.876001e+01 -2.331900e+02
+15 9177     -5.607600e+02 1.540900e+02
+0 9178     5.514600e+02 5.021002e+01
+6 9178     3.803000e+02 1.710500e+02
+10 9178     5.420800e+02 2.585400e+02
+0 9179     5.514600e+02 5.021002e+01
+6 9179     3.803000e+02 1.710500e+02
+7 9179     3.979800e+02 2.177300e+02
+10 9179     5.420800e+02 2.585400e+02
+13 9179     7.648199e+02 -1.608700e+02
+15 9179     7.341100e+02 2.819500e+02
+0 9180     -4.689000e+02 4.942999e+01
+13 9180     -1.497600e+02 -2.398000e+02
+0 9181     -4.689000e+02 4.942999e+01
+2 9181     -6.509900e+02 -2.485000e+02
+13 9181     -1.497600e+02 -2.398000e+02
+0 9182     -3.389400e+02 4.859003e+01
+4 9182     -2.129500e+02 -1.393800e+02
+0 9183     5.158199e+02 4.847998e+01
+10 9183     5.000699e+02 2.527700e+02
+13 9183     7.280000e+02 -1.673000e+02
+15 9183     6.838800e+02 2.742500e+02
+0 9184     -4.185400e+02 4.403003e+01
+2 9184     -5.808100e+02 -2.404500e+02
+13 9184     -1.016100e+02 -2.414300e+02
+0 9185     -4.714400e+02 4.146997e+01
+2 9185     -6.514500e+02 -2.576600e+02
+13 9185     -1.496100e+02 -2.475600e+02
+0 9186     -5.746997e+01 3.532001e+01
+7 9186     -1.545200e+02 1.349100e+02
+13 9186     3.071899e+02 -1.990600e+02
+15 9186     -1.154900e+02 1.766400e+02
+0 9187     -8.625200e+02 3.031000e+01
+13 9187     -5.079100e+02 -2.796100e+02
+0 9188     6.446899e+02 1.831000e+01
+2 9188     5.850100e+02 1.866998e+01
+3 9188     4.509500e+02 -2.881200e+02
+6 9188     5.044800e+02 1.737600e+02
+7 9188     4.925000e+02 2.059400e+02
+8 9188     5.389200e+02 -1.537000e+01
+10 9188     6.533101e+02 2.309100e+02
+12 9188     5.852700e+02 1.834400e+02
+13 9188     8.660000e+02 -1.765000e+02
+0 9189     -8.014200e+02 3.659973e+00
+13 9189     -4.464200e+02 -2.997800e+02
+0 9190     -1.821997e+01 -8.539978e+00
+3 9190     3.771002e+01 -3.073300e+02
+4 9190     -2.757400e+02 -3.983900e+02
+6 9190     -5.875000e+01 4.699707e-01
+8 9190     1.302500e+02 -4.347000e+01
+12 9190     -4.504999e+01 5.535999e+01
+13 9190     3.553300e+02 -2.321300e+02
+0 9191     -2.148999e+01 -1.817999e+01
+2 9191     1.213600e+02 -8.750000e+00
+7 9191     -1.057900e+02 9.051999e+01
+10 9191     -1.164800e+02 1.178400e+02
+15 9191     -6.126001e+01 1.099700e+02
+0 9192     -2.148999e+01 -1.817999e+01
+2 9192     1.213600e+02 -8.750000e+00
+3 9192     3.573999e+01 -3.191200e+02
+7 9192     -1.057900e+02 9.051999e+01
+10 9192     -1.164800e+02 1.178400e+02
+13 9192     3.526200e+02 -2.397100e+02
+15 9192     -6.126001e+01 1.099700e+02
+0 9193     2.105000e+02 -1.900000e+01
+7 9193     1.269200e+02 1.296700e+02
+8 9193     3.299000e+02 -4.579987e+00
+9 9193     1.906400e+02 1.418900e+02
+10 9193     1.520300e+02 1.407500e+02
+12 9193     2.231200e+02 1.100100e+02
+13 9193     5.587900e+02 -2.208800e+02
+15 9193     2.537000e+02 1.400900e+02
+0 9194     8.191500e+02 -1.931000e+01
+2 9194     7.767400e+02 7.066998e+01
+7 9194     6.649600e+02 2.045400e+02
+9 9194     5.216200e+02 1.685400e+02
+12 9194     7.935100e+02 2.100000e+02
+0 9195     1.855900e+02 -2.277002e+01
+2 9195     3.393199e+02 4.641998e+01
+3 9195     2.412400e+02 -2.599000e+02
+9 9195     1.751200e+02 1.370500e+02
+0 9196     -3.363800e+02 -2.613000e+01
+13 9196     -1.009003e+01 -2.965100e+02
+0 9197     8.506700e+02 -2.696002e+01
+2 9197     8.101500e+02 7.914001e+01
+3 9197     6.647100e+02 -2.206700e+02
+7 9197     6.954399e+02 2.034100e+02
+9 9197     5.487400e+02 1.758100e+02
+0 9198     8.506700e+02 -2.696002e+01
+2 9198     8.101500e+02 7.914001e+01
+3 9198     6.647100e+02 -2.206700e+02
+7 9198     6.954399e+02 2.034100e+02
+9 9198     5.487400e+02 1.758100e+02
+0 9199     -3.509700e+02 -3.110999e+01
+4 9199     -2.602600e+02 -1.303300e+02
+7 9199     -4.749400e+02 -5.429993e+00
+9 9199     -4.815600e+02 -1.864200e+02
+15 9199     -4.962900e+02 4.565002e+01
+0 9200     -1.456200e+02 -3.142999e+01
+7 9200     -2.363500e+02 4.915997e+01
+15 9200     -2.241800e+02 7.396002e+01
+0 9201     7.486700e+02 -3.177002e+01
+3 9201     5.724600e+02 -2.788600e+02
+0 9202     8.425300e+02 -3.500000e+01
+2 9202     8.048800e+02 6.740997e+01
+3 9202     6.604200e+02 -2.319900e+02
+7 9202     6.887900e+02 1.940800e+02
+9 9202     5.438000e+02 1.669600e+02
+0 9203     8.425300e+02 -3.500000e+01
+2 9203     8.048800e+02 6.740997e+01
+3 9203     6.604200e+02 -2.319900e+02
+7 9203     6.887900e+02 1.940800e+02
+9 9203     5.438000e+02 1.669600e+02
+0 9204     7.566700e+02 -3.816998e+01
+2 9204     7.199600e+02 2.120001e+01
+3 9204     5.826000e+02 -2.805000e+02
+7 9204     6.085699e+02 1.740600e+02
+9 9204     4.762800e+02 1.246700e+02
+10 9204     7.904800e+02 1.766600e+02
+12 9204     7.284800e+02 1.673000e+02
+0 9205     7.130900e+02 -4.009998e+01
+2 9205     6.758500e+02 -4.789978e+00
+3 9205     5.414500e+02 -3.072600e+02
+9 9205     4.401500e+02 1.014600e+02
+10 9205     7.386899e+02 1.691600e+02
+0 9206     -4.676300e+02 -4.721997e+01
+2 9206     -5.848100e+02 -3.335100e+02
+7 9206     -5.947300e+02 -4.382001e+01
+13 9206     -1.255100e+02 -3.232600e+02
+0 9207     3.295699e+02 -5.501001e+01
+7 9207     2.389100e+02 1.071200e+02
+10 9207     2.928500e+02 1.116800e+02
+15 9207     4.253700e+02 1.072000e+02
+0 9208     -3.974400e+02 -6.895001e+01
+2 9208     -4.759300e+02 -3.334700e+02
+7 9208     -5.140400e+02 -5.097998e+01
+8 9208     -3.377300e+02 -2.916100e+02
+9 9208     -5.068400e+02 -2.267600e+02
+13 9208     -5.446002e+01 -3.367100e+02
+15 9208     -5.522200e+02 -1.017999e+01
+0 9209     2.135999e+01 -7.044000e+01
+13 9209     3.986700e+02 -2.808500e+02
+15 9209     3.200012e+00 4.509003e+01
+0 9210     -4.129700e+02 -7.359998e+01
+7 9210     -5.296500e+02 -6.206000e+01
+13 9210     -6.878003e+01 -3.431100e+02
+0 9211     3.308900e+02 -8.217999e+01
+13 9211     6.587600e+02 -2.704300e+02
+15 9211     4.298101e+02 7.013000e+01
+0 9212     7.050400e+02 -8.302002e+01
+2 9212     6.796700e+02 -5.329999e+01
+3 9212     5.485400e+02 -3.548900e+02
+7 9212     5.651600e+02 1.209700e+02
+9 9212     4.456000e+02 6.190002e+01
+10 9212     7.330601e+02 1.195600e+02
+12 9212     6.812000e+02 9.526001e+01
+0 9213     2.547300e+02 -1.052200e+02
+13 9213     6.040200e+02 -2.942500e+02
+15 9213     3.266100e+02 2.820001e+01
+0 9214     2.740400e+02 -1.139600e+02
+7 9214     2.009200e+02 4.459003e+01
+10 9214     2.346400e+02 3.800000e+01
+13 9214     6.190800e+02 -3.000800e+02
+15 9214     3.535500e+02 1.892999e+01
+0 9215     3.385601e+02 -1.142800e+02
+7 9215     2.584301e+02 5.360999e+01
+0 9216     1.697600e+02 -1.181100e+02
+3 9216     2.638900e+02 -3.605200e+02
+10 9216     1.148300e+02 2.219000e+01
+13 9216     5.355100e+02 -3.115400e+02
+15 9216     2.114700e+02 -5.200195e-01
+0 9217     8.276100e+02 -1.230200e+02
+9 9217     5.578300e+02 8.831000e+01
+0 9218     9.490997e+01 -1.266100e+02
+7 9218     3.288000e+01 3.349976e+00
+15 9218     1.109300e+02 -2.221002e+01
+0 9219     2.215601e+02 -1.318500e+02
+2 9219     4.150400e+02 -6.045001e+01
+0 9220     7.878900e+02 -1.317300e+02
+2 9220     7.806200e+02 -5.746997e+01
+9 9220     5.274700e+02 6.153003e+01
+0 9221     -2.423999e+01 -1.437000e+02
+7 9221     -8.456000e+01 -3.564001e+01
+10 9221     -1.064000e+02 -2.832001e+01
+15 9221     -4.834003e+01 -6.109998e+01
+0 9222     -1.918500e+02 -1.480700e+02
+4 9222     -3.519600e+02 -2.456100e+02
+13 9222     1.772800e+02 -3.814800e+02
+15 9222     -2.684900e+02 -9.091998e+01
+0 9223     2.870100e+02 -1.579200e+02
+3 9223     3.703600e+02 -3.848000e+02
+7 9223     2.214700e+02 2.340027e+00
+10 9223     2.541700e+02 -1.123999e+01
+13 9223     6.384100e+02 -3.392800e+02
+15 9223     3.783600e+02 -3.941998e+01
+0 9224     7.744399e+02 -1.663100e+02
+2 9224     7.790601e+02 -1.008800e+02
+7 9224     6.424399e+02 5.545001e+01
+12 9224     7.837000e+02 3.090997e+01
+0 9225     -4.347500e+02 -1.719200e+02
+7 9225     -5.296700e+02 -1.597900e+02
+15 9225     -5.932700e+02 -1.562300e+02
+0 9226     3.026700e+02 -1.737200e+02
+7 9226     2.392100e+02 -8.530029e+00
+10 9226     2.740900e+02 -2.759998e+01
+13 9226     6.558900e+02 -3.506900e+02
+15 9226     4.017300e+02 -5.873999e+01
+0 9227     8.283700e+02 -1.783200e+02
+7 9227     6.945800e+02 5.519000e+01
+0 9228     2.070500e+02 -1.802300e+02
+7 9228     1.517000e+02 -2.832001e+01
+13 9228     5.790699e+02 -3.624100e+02
+0 9229     1.068600e+02 -2.245500e+02
+10 9229     5.332001e+01 -1.067400e+02
+12 9229     1.840500e+02 -1.484000e+02
+15 9229     1.377700e+02 -1.522000e+02
+0 9230     1.571300e+02 -2.293400e+02
+13 9230     5.484200e+02 -4.081300e+02
+0 9231     1.571300e+02 -2.293400e+02
+6 9231     2.320000e+02 -1.776100e+02
+10 9231     1.120200e+02 -1.071200e+02
+15 9231     2.079100e+02 -1.524900e+02
+0 9232     5.735999e+01 -2.864000e+02
+3 9232     2.279800e+02 -5.762900e+02
+8 9232     2.732800e+02 -2.786400e+02
+0 9233     9.820007e+00 -2.885200e+02
+3 9233     1.732600e+02 -6.079500e+02
+4 9233     -4.909200e+02 -4.081800e+02
+6 9233     6.734998e+01 -3.156600e+02
+7 9233     -2.859003e+01 -1.762300e+02
+9 9233     1.149000e+02 -1.589900e+02
+10 9233     -5.050000e+01 -1.904700e+02
+12 9233     7.138000e+01 -2.713500e+02
+15 9233     1.870001e+01 -2.517700e+02
+0 9234     5.529999e+01 -3.069000e+02
+2 9234     3.061700e+02 -3.131200e+02
+8 9234     2.726400e+02 -3.056100e+02
+10 9234     2.909973e+00 -2.069300e+02
+12 9234     1.300600e+02 -2.811000e+02
+15 9234     8.221002e+01 -2.709000e+02
+0 9235     1.086800e+02 -3.095200e+02
+4 9235     -5.313600e+02 -4.909800e+02
+10 9235     6.440002e+01 -2.043900e+02
+15 9235     1.547300e+02 -2.678600e+02
+0 9236     1.222400e+02 -3.168600e+02
+7 9236     8.775000e+01 -1.826900e+02
+13 9236     5.124600e+02 -4.991700e+02
+0 9237     6.120900e+02 -3.498500e+02
+7 9237     5.363900e+02 -1.376300e+02
+15 9237     8.609399e+02 -2.615300e+02
+0 9238     7.636700e+02 -3.561100e+02
+7 9238     6.703600e+02 -1.176100e+02
+0 9239     7.783199e+02 -3.581000e+02
+7 9239     6.830601e+02 -1.165800e+02
+0 9240     -2.720900e+02 -4.327800e+02
+6 9240     -2.289300e+02 -6.339600e+02
+7 9240     -2.948000e+02 -3.834400e+02
+0 9241     7.839100e+02 -4.352300e+02
+7 9241     7.050100e+02 -1.834000e+02
+0 9242     4.605300e+02 -4.360300e+02
+6 9242     5.551801e+02 -3.379000e+02
+7 9242     4.194900e+02 -2.425200e+02
+0 9243     4.512100e+02 -4.516801e+02
+6 9243     5.554600e+02 -3.554399e+02
+7 9243     4.153500e+02 -2.582100e+02
+0 9244     4.397600e+02 -4.595699e+02
+2 9244     6.968000e+02 -3.976100e+02
+6 9244     5.487000e+02 -3.665100e+02
+7 9244     4.068300e+02 -2.675500e+02
+0 9245     7.483500e+02 -4.666100e+02
+7 9245     6.810800e+02 -2.174100e+02
+0 9246     -1.442000e+02 -4.773400e+02
+6 9246     -4.603003e+01 -6.192000e+02
+9 9246     4.689001e+01 -4.113600e+02
+12 9246     -5.977002e+01 -5.688400e+02
+0 9247     5.286400e+02 -5.053400e+02
+12 9247     6.972100e+02 -3.689600e+02
+0 9248     -7.807800e+02 -5.380800e+02
+4 9248     -5.303400e+02 1.679000e+02
+0 9249     4.688800e+02 -5.542000e+02
+7 9249     4.551500e+02 -3.483900e+02
+0 9250     7.383500e+02 -5.648199e+02
+7 9250     6.932400e+02 -3.058300e+02
+0 9251     -5.044200e+02 5.573600e+02
+11 9251     -2.867300e+02 -2.208900e+02
+13 9251     -2.048400e+02 1.957500e+02
+0 9252     -5.044200e+02 5.573600e+02
+2 9252     -8.006400e+02 3.372100e+02
+4 9252     8.034998e+01 -8.866998e+01
+5 9252     -7.732001e+01 -8.784003e+01
+8 9252     -5.760300e+02 2.486400e+02
+11 9252     -2.867300e+02 -2.208900e+02
+13 9252     -2.048400e+02 1.957500e+02
+0 9253     2.998700e+02 5.527900e+02
+3 9253     -1.761000e+02 -1.352002e+01
+13 9253     4.249100e+02 2.334100e+02
+0 9254     5.521700e+02 5.531700e+02
+2 9254     3.029700e+02 4.487700e+02
+3 9254     1.585400e+02 1.135600e+02
+6 9254     2.151200e+02 7.243200e+02
+8 9254     3.171200e+02 3.458700e+02
+9 9254     1.109600e+02 4.740600e+02
+11 9254     6.262000e+02 -1.908900e+02
+0 9255     5.804800e+02 5.491800e+02
+2 9255     3.334100e+02 4.543000e+02
+6 9255     2.510600e+02 7.271900e+02
+8 9255     3.418400e+02 3.503300e+02
+9 9255     1.365900e+02 4.797900e+02
+11 9255     6.517500e+02 -1.923000e+02
+13 9255     7.178300e+02 2.609400e+02
+0 9256     3.949500e+02 5.410000e+02
+2 9256     4.794000e+01 3.087800e+02
+3 9256     -9.894000e+01 -2.444000e+01
+5 9256     7.976500e+02 -9.552002e+01
+6 9256     -6.578003e+01 6.510300e+02
+8 9256     1.205300e+02 2.424500e+02
+9 9256     -1.128800e+02 3.433700e+02
+11 9256     5.016400e+02 -2.093500e+02
+12 9256     9.578003e+01 6.070100e+02
+13 9256     5.006200e+02 2.296100e+02
+14 9256     6.946700e+02 -1.740700e+02
+0 9257     7.217700e+02 5.125200e+02
+2 9257     5.329800e+02 5.130500e+02
+3 9257     3.800300e+02 1.770000e+02
+6 9257     4.717500e+02 7.313800e+02
+8 9257     5.023000e+02 3.927300e+02
+9 9257     3.086899e+02 5.346900e+02
+11 9257     7.772000e+02 -2.167700e+02
+0 9258     3.556300e+02 5.025500e+02
+2 9258     1.990997e+01 2.647200e+02
+3 9258     -1.261100e+02 -6.808002e+01
+5 9258     7.590500e+02 -1.388400e+02
+8 9258     9.734003e+01 2.078800e+02
+9 9258     -1.350600e+02 3.047400e+02
+11 9258     4.695400e+02 -2.471900e+02
+14 9258     6.602600e+02 -2.166600e+02
+0 9259     7.173400e+02 4.898500e+02
+2 9259     5.331000e+02 4.908900e+02
+3 9259     3.810200e+02 1.569000e+02
+6 9259     4.709800e+02 7.051600e+02
+8 9259     5.018900e+02 3.738600e+02
+9 9259     3.090601e+02 5.156500e+02
+0 9260     -1.848300e+02 4.849900e+02
+7 9260     -4.078400e+02 5.343200e+02
+0 9261     1.174800e+02 4.833300e+02
+7 9261     -1.113800e+02 5.628400e+02
+0 9262     7.623101e+02 4.804300e+02
+2 9262     5.816400e+02 4.988500e+02
+6 9262     5.246200e+02 7.064200e+02
+8 9262     5.410200e+02 3.790600e+02
+9 9262     3.482300e+02 5.228000e+02
+0 9263     7.492700e+02 4.745300e+02
+2 9263     5.682400e+02 4.882700e+02
+3 9263     4.137300e+02 1.544900e+02
+6 9263     5.114200e+02 6.972900e+02
+9 9263     3.389301e+02 5.153700e+02
+0 9264     8.242600e+02 4.750800e+02
+9 9264     3.962500e+02 5.385200e+02
+0 9265     3.007001e+01 4.731000e+02
+4 9265     -2.510010e+00 -3.792400e+02
+8 9265     -1.329100e+02 1.776400e+02
+12 9265     -2.631800e+02 4.863500e+02
+0 9266     6.301899e+02 4.630000e+02
+2 9266     4.513400e+02 4.392400e+02
+3 9266     3.057100e+02 1.072200e+02
+6 9266     3.745300e+02 6.555400e+02
+8 9266     4.344700e+02 3.318500e+02
+9 9266     2.406100e+02 4.690700e+02
+11 9266     7.058400e+02 -2.662500e+02
+13 9266     7.973500e+02 2.011700e+02
+0 9267     7.715100e+02 4.614500e+02
+2 9267     5.927300e+02 4.840000e+02
+6 9267     5.387500e+02 6.877900e+02
+0 9268     7.379200e+02 4.590200e+02
+2 9268     5.606700e+02 4.717900e+02
+3 9268     4.076801e+02 1.396700e+02
+6 9268     5.016200e+02 6.792800e+02
+9 9268     3.335500e+02 5.005600e+02
+0 9269     7.379200e+02 4.590200e+02
+2 9269     5.606700e+02 4.717900e+02
+3 9269     4.076801e+02 1.396700e+02
+6 9269     5.016200e+02 6.792800e+02
+9 9269     3.335500e+02 5.005600e+02
+0 9270     7.069600e+02 4.387600e+02
+2 9270     5.358700e+02 4.441700e+02
+3 9270     3.854500e+02 1.135100e+02
+6 9270     4.714500e+02 6.496300e+02
+8 9270     5.035300e+02 3.356300e+02
+9 9270     3.123700e+02 4.758200e+02
+13 9270     8.741500e+02 1.895800e+02
+0 9271     7.335500e+02 4.253100e+02
+2 9271     5.650200e+02 4.414900e+02
+3 9271     4.131600e+02 1.120700e+02
+6 9271     5.039301e+02 6.429500e+02
+8 9271     5.279000e+02 3.330100e+02
+9 9271     3.369700e+02 4.742700e+02
+0 9272     6.586100e+02 4.155300e+02
+2 9272     4.931801e+02 4.070600e+02
+3 9272     3.457600e+02 7.821002e+01
+6 9272     4.205000e+02 6.130800e+02
+8 9272     4.675900e+02 3.054000e+02
+9 9272     2.771200e+02 4.431900e+02
+11 9272     7.433000e+02 -3.077200e+02
+12 9272     5.026899e+02 6.208200e+02
+13 9272     8.306300e+02 1.658900e+02
+0 9273     6.498700e+02 4.058300e+02
+3 9273     3.405900e+02 6.590002e+01
+0 9274     5.464800e+02 3.967500e+02
+7 9274     3.339800e+02 5.461400e+02
+8 9274     3.432300e+02 2.259900e+02
+13 9274     7.036600e+02 1.325200e+02
+0 9275     5.688600e+02 3.827500e+02
+7 9275     3.578199e+02 5.365800e+02
+0 9276     -6.196700e+02 3.782400e+02
+4 9276     -9.840027e+00 -9.699707e-01
+11 9276     -3.952900e+02 -3.695800e+02
+0 9277     -6.999400e+02 3.635600e+02
+13 9277     -4.328600e+02 1.221002e+01
+14 9277     -4.566000e+02 -3.935000e+02
+0 9278     8.138199e+02 3.616700e+02
+3 9278     5.017500e+02 8.938000e+01
+7 9278     6.099800e+02 5.645100e+02
+9 9278     4.173000e+02 4.537400e+02
+12 9278     6.893101e+02 6.138500e+02
+0 9279     -7.082900e+02 3.555700e+02
+13 9279     -4.380100e+02 5.169983e+00
+14 9279     -4.639500e+02 -4.017800e+02
+0 9280     -7.082900e+02 3.555700e+02
+13 9280     -4.380100e+02 5.169983e+00
+14 9280     -4.639500e+02 -4.017800e+02
+0 9281     -5.770100e+02 3.558000e+02
+4 9281     -2.026001e+01 -2.828998e+01
+5 9281     -1.734000e+02 -2.967500e+02
+13 9281     -2.722000e+02 2.225000e+01
+14 9281     -2.593100e+02 -3.922900e+02
+0 9282     7.162100e+02 3.528100e+02
+3 9282     4.182900e+02 4.706000e+01
+7 9282     5.178199e+02 5.394000e+02
+0 9283     8.098300e+02 3.468500e+02
+2 9283     6.598900e+02 4.005800e+02
+7 9283     6.080200e+02 5.499800e+02
+9 9283     4.176200e+02 4.415500e+02
+12 9283     6.886100e+02 5.965100e+02
+0 9284     8.406000e+02 3.330400e+02
+7 9284     6.397600e+02 5.411200e+02
+9 9284     4.457400e+02 4.409400e+02
+0 9285     7.681700e+02 3.204700e+02
+2 9285     6.318700e+02 3.666800e+02
+6 9285     5.709200e+02 5.435900e+02
+9 9285     3.925000e+02 4.097200e+02
+12 9285     6.500200e+02 5.564500e+02
+0 9286     6.852000e+02 3.163600e+02
+2 9286     5.453800e+02 3.272400e+02
+3 9286     3.990699e+02 5.049988e+00
+7 9286     4.926600e+02 5.003800e+02
+9 9286     3.227900e+02 3.757200e+02
+10 9286     6.810100e+02 5.884600e+02
+0 9287     6.272000e+02 3.070400e+02
+2 9287     4.882600e+02 2.951400e+02
+6 9287     4.085800e+02 4.850000e+02
+7 9287     4.369200e+02 4.813500e+02
+8 9287     4.621100e+02 2.133400e+02
+9 9287     2.746500e+02 3.472100e+02
+10 9287     6.123300e+02 5.700800e+02
+13 9287     8.124500e+02 7.234998e+01
+0 9288     -4.520200e+02 3.031200e+02
+7 9288     -6.589300e+02 3.095600e+02
+0 9289     -1.938400e+02 3.009900e+02
+13 9289     3.777002e+01 -1.147998e+01
+14 9289     1.206600e+02 -4.543199e+02
+0 9290     -1.938400e+02 3.009900e+02
+13 9290     3.777002e+01 -1.147998e+01
+14 9290     1.206600e+02 -4.543199e+02
+0 9291     6.297500e+02 2.888700e+02
+2 9291     4.961100e+02 2.794500e+02
+3 9291     3.533400e+02 -4.128998e+01
+6 9291     4.169400e+02 4.670700e+02
+8 9291     4.685601e+02 2.004200e+02
+9 9291     2.815400e+02 3.345100e+02
+10 9291     6.167900e+02 5.491300e+02
+11 9291     7.454500e+02 -4.306900e+02
+12 9291     5.010500e+02 4.754200e+02
+13 9291     8.175200e+02 5.771997e+01
+0 9292     6.443199e+02 2.882900e+02
+2 9292     5.088500e+02 2.840900e+02
+3 9292     3.662000e+02 -3.665002e+01
+6 9292     4.313900e+02 4.700200e+02
+7 9292     4.547900e+02 4.666100e+02
+8 9292     4.801000e+02 2.040900e+02
+10 9292     6.318400e+02 5.493400e+02
+12 9292     5.157100e+02 4.787200e+02
+13 9292     8.295000e+02 5.870001e+01
+0 9293     5.729700e+02 2.885800e+02
+2 9293     4.341300e+02 2.554000e+02
+3 9293     2.941300e+02 -6.653003e+01
+6 9293     3.466900e+02 4.490300e+02
+7 9293     3.855300e+02 4.545200e+02
+8 9293     4.176300e+02 1.824500e+02
+9 9293     2.289900e+02 3.118300e+02
+10 9293     5.494399e+02 5.420700e+02
+13 9293     7.612200e+02 5.087000e+01
+0 9294     6.516400e+02 2.758400e+02
+2 9294     5.222500e+02 2.764800e+02
+3 9294     3.781400e+02 -4.347998e+01
+6 9294     4.460000e+02 4.599000e+02
+7 9294     4.647300e+02 4.560800e+02
+8 9294     4.898400e+02 1.973400e+02
+9 9294     3.040800e+02 3.325200e+02
+10 9294     6.433900e+02 5.359000e+02
+11 9294     7.719800e+02 -4.444400e+02
+13 9294     8.426801e+02 4.856000e+01
+0 9295     7.289000e+02 2.705900e+02
+2 9295     6.024100e+02 3.022000e+02
+6 9295     5.382500e+02 4.764500e+02
+7 9295     5.408300e+02 4.639600e+02
+8 9295     5.575200e+02 2.156900e+02
+9 9295     3.711801e+02 3.567500e+02
+10 9295     7.362400e+02 5.380700e+02
+0 9296     -5.260600e+02 2.550600e+02
+13 9296     -2.350900e+02 -6.584003e+01
+14 9296     -2.227500e+02 -5.062900e+02
+0 9297     6.587000e+01 2.513700e+02
+6 9297     -2.970600e+02 2.320300e+02
+11 9297     2.140800e+02 -4.903000e+02
+13 9297     2.770400e+02 -3.558002e+01
+14 9297     4.209800e+02 -4.983000e+02
+0 9298     6.164600e+02 1.819100e+02
+6 9298     4.275500e+02 3.450700e+02
+7 9298     4.424200e+02 3.588200e+02
+10 9298     6.081899e+02 4.193800e+02
+12 9298     5.114800e+02 3.544300e+02
+15 9298     8.092500e+02 4.761200e+02
+0 9299     6.164600e+02 1.819100e+02
+6 9299     4.275500e+02 3.450700e+02
+10 9299     6.081899e+02 4.193800e+02
+12 9299     5.114800e+02 3.544300e+02
+0 9300     6.001899e+02 1.814300e+02
+7 9300     4.263300e+02 3.542500e+02
+10 9300     5.881000e+02 4.165100e+02
+15 9300     7.861200e+02 4.724600e+02
+0 9301     8.459000e+02 1.798900e+02
+2 9301     7.421801e+02 2.680700e+02
+3 9301     5.872700e+02 -4.483002e+01
+7 9301     6.640300e+02 3.977100e+02
+9 9301     4.889700e+02 3.318100e+02
+0 9302     7.057700e+02 1.663600e+02
+3 9302     4.631000e+02 -1.166400e+02
+7 9302     5.324399e+02 3.603200e+02
+10 9302     7.156400e+02 4.113300e+02
+12 9302     6.141700e+02 3.691600e+02
+0 9303     7.200100e+02 1.675700e+02
+3 9303     4.781700e+02 -1.073000e+02
+7 9303     5.458900e+02 3.646800e+02
+8 9303     5.753800e+02 1.363800e+02
+9 9303     3.947200e+02 2.758600e+02
+10 9303     7.324000e+02 4.139200e+02
+0 9304     -2.649700e+02 1.631700e+02
+7 9304     -4.316100e+02 1.967400e+02
+0 9305     7.300300e+02 1.606000e+02
+2 9305     6.352200e+02 2.032800e+02
+3 9305     4.898101e+02 -1.090800e+02
+7 9305     5.570900e+02 3.592700e+02
+10 9305     7.448700e+02 4.067500e+02
+0 9306     8.609500e+02 1.339900e+02
+2 9306     7.688600e+02 2.320500e+02
+7 9306     6.833000e+02 3.567200e+02
+0 9307     6.704800e+02 1.272800e+02
+2 9307     5.829900e+02 1.408200e+02
+3 9307     4.429200e+02 -1.700600e+02
+6 9307     5.070300e+02 3.030900e+02
+7 9307     5.033800e+02 3.155300e+02
+8 9307     5.384100e+02 8.410001e+01
+9 9307     3.583600e+02 2.196400e+02
+10 9307     6.760900e+02 3.600800e+02
+12 9307     5.882200e+02 3.122400e+02
+0 9308     8.411200e+02 1.265700e+02
+2 9308     7.530300e+02 2.184200e+02
+3 9308     6.005100e+02 -9.094000e+01
+7 9308     6.663900e+02 3.466400e+02
+9 9308     4.989700e+02 2.904700e+02
+0 9309     6.955601e+02 1.107200e+02
+2 9309     6.129700e+02 1.366200e+02
+0 9310     8.036700e+02 9.263000e+01
+7 9310     6.356801e+02 3.081400e+02
+9 9310     4.790601e+02 2.496700e+02
+12 9310     7.475400e+02 3.265500e+02
+0 9311     -9.760010e+00 8.404999e+01
+2 9311     8.801001e+01 8.963000e+01
+3 9311     -2.580017e+00 -2.260500e+02
+5 9311     6.081500e+02 -5.767100e+02
+6 9311     -9.160999e+01 1.037400e+02
+7 9311     -1.129100e+02 1.929200e+02
+8 9311     1.060600e+02 2.942999e+01
+10 9311     -1.137100e+02 2.380300e+02
+12 9311     -6.840002e+01 1.590600e+02
+13 9311     3.465000e+02 -1.528900e+02
+15 9311     -5.826001e+01 2.505100e+02
+0 9312     -9.760010e+00 8.404999e+01
+2 9312     8.801001e+01 8.963000e+01
+4 9312     -2.151700e+02 -4.032200e+02
+5 9312     6.081500e+02 -5.767100e+02
+6 9312     -9.160999e+01 1.037400e+02
+7 9312     -1.129100e+02 1.929200e+02
+8 9312     1.060600e+02 2.942999e+01
+10 9312     -1.137100e+02 2.380300e+02
+12 9312     -6.840002e+01 1.590600e+02
+13 9312     3.465000e+02 -1.528900e+02
+15 9312     -5.826001e+01 2.505100e+02
+0 9313     8.398700e+02 8.100000e+01
+2 9313     7.654399e+02 1.759000e+02
+7 9313     6.711700e+02 3.035400e+02
+12 9313     7.911400e+02 3.260900e+02
+0 9314     8.561100e+02 7.166998e+01
+2 9314     7.844399e+02 1.733500e+02
+3 9314     6.328900e+02 -1.316400e+02
+7 9314     6.878000e+02 2.969200e+02
+9 9314     5.256500e+02 2.537400e+02
+12 9314     8.106300e+02 3.218500e+02
+0 9315     -3.952400e+02 6.115002e+01
+13 9315     -8.484003e+01 -2.262200e+02
+0 9316     8.580100e+02 5.098999e+01
+2 9316     7.912400e+02 1.551900e+02
+3 9316     6.413900e+02 -1.483600e+02
+9 9316     5.315601e+02 2.391700e+02
+12 9316     8.172200e+02 3.013100e+02
+0 9317     6.871000e+02 4.546002e+01
+3 9317     4.864600e+02 -2.409800e+02
+6 9317     5.483600e+02 2.198100e+02
+9 9317     3.949800e+02 1.580600e+02
+12 9317     6.271700e+02 2.278800e+02
+0 9318     6.871000e+02 4.546002e+01
+9 9318     3.949800e+02 1.580600e+02
+0 9319     8.297000e+02 4.337000e+01
+2 9319     7.672500e+02 1.364400e+02
+3 9319     6.195100e+02 -1.674000e+02
+9 9319     5.123800e+02 2.221100e+02
+12 9319     7.881700e+02 2.842900e+02
+0 9320     6.501000e+02 3.765002e+01
+2 9320     5.860800e+02 4.104999e+01
+3 9320     4.510400e+02 -2.662800e+02
+6 9320     5.062000e+02 1.972900e+02
+7 9320     4.953000e+02 2.255300e+02
+8 9320     5.403600e+02 2.959991e+00
+10 9320     6.590000e+02 2.529400e+02
+12 9320     5.872100e+02 2.070400e+02
+0 9321     -3.556300e+02 1.095001e+01
+7 9321     -4.909500e+02 3.282001e+01
+0 9322     -1.654000e+02 6.900024e+00
+7 9322     -2.685000e+02 8.134000e+01
+10 9322     -2.876500e+02 1.310400e+02
+12 9322     -2.558200e+02 3.530029e+00
+13 9322     1.955300e+02 -2.386800e+02
+0 9323     7.913700e+02 3.510010e+00
+2 9323     7.432700e+02 7.944000e+01
+7 9323     6.362200e+02 2.208100e+02
+12 9323     7.574301e+02 2.255000e+02
+0 9324     -4.235500e+02 -5.070007e+00
+13 9324     -9.472998e+01 -2.843500e+02
+0 9325     -3.542100e+02 -7.789978e+00
+7 9325     -4.854000e+02 1.467999e+01
+15 9325     -5.054000e+02 7.514001e+01
+0 9326     -4.252300e+02 -1.901001e+01
+2 9326     -5.468700e+02 -2.971800e+02
+13 9326     -9.265997e+01 -2.964000e+02
+15 9326     -5.991300e+02 5.173999e+01
+0 9327     2.102600e+02 -1.906000e+01
+2 9327     3.629000e+02 5.254999e+01
+3 9327     2.590800e+02 -2.545000e+02
+7 9327     1.269200e+02 1.296700e+02
+8 9327     3.299000e+02 -4.579987e+00
+9 9327     1.906400e+02 1.418900e+02
+10 9327     1.520300e+02 1.407500e+02
+12 9327     2.231200e+02 1.100100e+02
+13 9327     5.587900e+02 -2.208800e+02
+15 9327     2.537000e+02 1.400900e+02
+0 9328     8.611200e+02 -2.171997e+01
+2 9328     8.182400e+02 8.876001e+01
+3 9328     6.712600e+02 -2.109600e+02
+7 9328     7.045500e+02 2.100900e+02
+9 9328     5.551500e+02 1.843200e+02
+0 9329     7.120699e+02 -5.356000e+01
+7 9329     5.673800e+02 1.505600e+02
+10 9329     7.381899e+02 1.543000e+02
+0 9330     7.120699e+02 -5.356000e+01
+2 9330     6.750500e+02 -1.856000e+01
+3 9330     5.428500e+02 -3.210100e+02
+7 9330     5.673800e+02 1.505600e+02
+10 9330     7.381899e+02 1.543000e+02
+0 9331     6.962100e+02 -6.484998e+01
+2 9331     6.655900e+02 -3.952002e+01
+3 9331     5.336500e+02 -3.421100e+02
+7 9331     5.538800e+02 1.364300e+02
+0 9332     7.476300e+02 -7.002002e+01
+2 9332     7.218199e+02 -1.678998e+01
+7 9332     6.043500e+02 1.418000e+02
+0 9333     7.476300e+02 -7.002002e+01
+2 9333     7.218199e+02 -1.678998e+01
+7 9333     6.043500e+02 1.418000e+02
+10 9333     7.821200e+02 1.392900e+02
+12 9333     7.295800e+02 1.266600e+02
+0 9334     -4.531700e+02 -7.204999e+01
+7 9334     -5.736400e+02 -6.584998e+01
+13 9334     -1.064400e+02 -3.437000e+02
+0 9335     -3.998400e+02 -8.198999e+01
+7 9335     -5.152600e+02 -6.578998e+01
+8 9335     -3.366000e+02 -3.029300e+02
+15 9335     -5.585500e+02 -3.065997e+01
+0 9336     -4.222800e+02 -9.059003e+01
+13 9336     -7.250000e+01 -3.593200e+02
+0 9337     2.304200e+02 -9.751001e+01
+2 9337     4.043000e+02 -2.996997e+01
+3 9337     3.023900e+02 -3.317500e+02
+6 9337     2.407400e+02 -1.977002e+01
+7 9337     1.574900e+02 5.428998e+01
+8 9337     3.637200e+02 -7.314001e+01
+10 9337     1.838100e+02 5.233002e+01
+13 9337     5.831100e+02 -2.889100e+02
+15 9337     2.918700e+02 3.566998e+01
+0 9338     -5.598999e+01 -1.041100e+02
+7 9338     -1.240100e+02 -1.140015e+00
+15 9338     -9.571002e+01 -1.173999e+01
+0 9339     -4.335300e+02 -1.108600e+02
+2 9339     -4.931900e+02 -3.803700e+02
+13 9339     -7.776001e+01 -3.751100e+02
+0 9340     -4.034003e+01 -1.147800e+02
+7 9340     -1.058200e+02 -8.770020e+00
+0 9341     -4.497200e+02 -1.146100e+02
+2 9341     -5.132300e+02 -3.893700e+02
+7 9341     -5.591100e+02 -1.072300e+02
+8 9341     -3.723200e+02 -3.397300e+02
+13 9341     -9.275000e+01 -3.812800e+02
+0 9342     7.548101e+02 -1.181400e+02
+2 9342     7.428101e+02 -6.160999e+01
+3 9342     6.106801e+02 -3.596400e+02
+7 9342     6.171801e+02 9.779001e+01
+9 9342     4.970601e+02 5.728998e+01
+10 9342     7.939100e+02 8.370001e+01
+12 9342     7.478500e+02 7.667999e+01
+0 9343     7.398800e+02 -1.222900e+02
+7 9343     6.025900e+02 9.007001e+01
+0 9344     1.829700e+02 -1.280200e+02
+10 9344     1.312800e+02 1.184998e+01
+13 9344     5.476400e+02 -3.184300e+02
+15 9344     2.308500e+02 -1.212000e+01
+0 9345     8.369600e+02 -1.291400e+02
+7 9345     6.958000e+02 1.031800e+02
+9 9345     5.664000e+02 8.642999e+01
+0 9346     -5.112000e+01 -1.406900e+02
+7 9346     -1.134000e+02 -3.778003e+01
+15 9346     -8.408002e+01 -6.015997e+01
+0 9347     -9.246997e+01 -1.501100e+02
+6 9347     -8.378000e+01 -1.876700e+02
+7 9347     -1.520800e+02 -5.390997e+01
+10 9347     -1.845400e+02 -4.282001e+01
+12 9347     -8.490997e+01 -1.326100e+02
+15 9347     -1.399500e+02 -7.860999e+01
+0 9348     -4.542100e+02 -1.638000e+02
+7 9348     -5.517300e+02 -1.560300e+02
+15 9348     -6.198000e+02 -1.485100e+02
+0 9349     1.326600e+02 -1.645100e+02
+10 9349     7.738000e+01 -3.553003e+01
+13 9349     5.139399e+02 -3.525000e+02
+15 9349     1.665900e+02 -6.884998e+01
+0 9350     1.326600e+02 -1.645100e+02
+10 9350     7.738000e+01 -3.553003e+01
+13 9350     5.139399e+02 -3.525000e+02
+15 9350     1.665900e+02 -6.884998e+01
+0 9351     5.097600e+02 -1.650300e+02
+7 9351     4.008900e+02 1.253998e+01
+0 9352     8.526899e+02 -1.962600e+02
+3 9352     7.329399e+02 -3.782400e+02
+9 9352     5.978000e+02 3.983002e+01
+0 9353     1.622700e+02 -2.179200e+02
+10 9353     1.166300e+02 -9.421997e+01
+13 9353     5.488400e+02 -3.980800e+02
+15 9353     2.133500e+02 -1.366200e+02
+0 9354     1.940100e+02 -2.269100e+02
+10 9354     1.541500e+02 -1.004900e+02
+13 9354     5.781300e+02 -4.036800e+02
+15 9354     2.582100e+02 -1.446100e+02
+0 9355     3.221700e+02 -2.406900e+02
+2 9355     5.260699e+02 -1.718600e+02
+6 9355     3.706900e+02 -1.524900e+02
+7 9355     2.654200e+02 -7.306000e+01
+8 9355     4.650200e+02 -1.909800e+02
+9 9355     3.326100e+02 -3.533002e+01
+10 9355     3.030900e+02 -1.019900e+02
+12 9355     4.026300e+02 -1.224900e+02
+15 9355     4.383101e+02 -1.472000e+02
+0 9356     -7.188000e+01 -2.726500e+02
+7 9356     -1.167800e+02 -1.773800e+02
+10 9356     -1.465000e+02 -1.800600e+02
+15 9356     -9.189001e+01 -2.398100e+02
+0 9357     3.156000e+02 -2.748700e+02
+7 9357     2.614900e+02 -1.096900e+02
+10 9357     2.986500e+02 -1.417200e+02
+12 9357     3.979800e+02 -1.731000e+02
+13 9357     6.690100e+02 -4.488900e+02
+15 9357     4.348199e+02 -1.946900e+02
+0 9358     3.426200e+02 -2.913100e+02
+6 9358     3.889600e+02 -2.209301e+02
+8 9358     4.781000e+02 -2.563500e+02
+9 9358     3.455300e+02 -1.067800e+02
+15 9358     4.746300e+02 -2.147000e+02
+0 9359     -1.882001e+01 -2.961900e+02
+2 9359     2.122600e+02 -3.388200e+02
+4 9359     -4.936000e+02 -3.809000e+02
+6 9359     3.009003e+01 -3.458400e+02
+7 9359     -5.763000e+01 -1.911900e+02
+8 9359     1.958300e+02 -3.248000e+02
+9 9359     8.534003e+01 -1.867300e+02
+10 9359     -8.314001e+01 -2.022200e+02
+12 9359     3.437000e+01 -3.001500e+02
+13 9359     3.774399e+02 -4.952800e+02
+15 9359     -1.813000e+01 -2.660700e+02
+0 9360     -3.301001e+01 -3.304900e+02
+4 9360     -5.189600e+02 -3.626700e+02
+7 9360     -6.758002e+01 -2.285900e+02
+10 9360     -9.603003e+01 -2.428100e+02
+12 9360     1.928998e+01 -3.560100e+02
+13 9360     3.619000e+02 -5.306801e+02
+15 9360     -3.248999e+01 -3.130800e+02
+0 9361     7.146400e+02 -3.453200e+02
+12 9361     8.011700e+02 -1.609300e+02
+0 9362     7.516600e+02 -3.533100e+02
+7 9362     6.596200e+02 -1.168200e+02
+0 9363     2.035200e+02 -3.569700e+02
+2 9363     4.574100e+02 -3.391300e+02
+8 9363     4.015400e+02 -3.301900e+02
+9 9363     2.807800e+02 -1.776900e+02
+10 9363     1.797300e+02 -2.512500e+02
+13 9363     5.823500e+02 -5.307900e+02
+0 9364     4.877600e+02 -4.210200e+02
+7 9364     4.409200e+02 -2.246300e+02
+0 9365     4.444200e+02 -4.449600e+02
+6 9365     5.452000e+02 -3.515800e+02
+0 9366     4.674500e+02 -4.442400e+02
+7 9366     4.290699e+02 -2.483200e+02
+0 9367     5.436000e+02 -4.492100e+02
+12 9367     6.849000e+02 -3.091000e+02
+0 9368     5.573101e+02 -4.525699e+02
+12 9368     7.010900e+02 -3.078500e+02
+0 9369     8.415400e+02 -4.606200e+02
+7 9369     7.576600e+02 -1.955400e+02
+0 9370     8.415400e+02 -4.606200e+02
+7 9370     7.576600e+02 -1.955400e+02
+0 9371     7.608500e+02 -4.691500e+02
+7 9371     6.925900e+02 -2.168000e+02
+0 9372     -1.850300e+02 -4.696200e+02
+7 9372     -1.943300e+02 -3.997500e+02
+0 9373     -1.395600e+02 -4.812400e+02
+7 9373     -1.446200e+02 -4.018200e+02
+9 9373     4.689001e+01 -4.113600e+02
+0 9374     -1.420000e+02 -5.171200e+02
+4 9374     -6.533100e+02 -2.721800e+02
+6 9374     -1.740997e+01 -6.595601e+02
+9 9374     7.507001e+01 -4.366500e+02
+0 9375     7.523101e+02 -5.411801e+02
+7 9375     7.001000e+02 -2.817400e+02
+9 9375     7.102400e+02 -1.802300e+02
+0 9376     1.697998e+01 -5.527100e+02
+7 9376     2.765997e+01 -4.387000e+02
+0 9377     1.697998e+01 -5.527100e+02
+7 9377     2.765997e+01 -4.387000e+02
+0 9378     4.227900e+02 -5.566200e+02
+2 9378     7.559600e+02 -4.742700e+02
+7 9378     4.129301e+02 -3.593600e+02
+0 9379     7.275500e+02 -5.672200e+02
+7 9379     6.850000e+02 -3.106400e+02
+0 9380     7.610601e+02 5.036300e+02
+2 9380     5.723000e+02 5.186000e+02
+3 9380     4.167400e+02 1.830100e+02
+6 9380     5.198600e+02 7.293400e+02
+0 9381     7.935100e+02 4.664400e+02
+2 9381     6.119200e+02 4.962700e+02
+3 9381     4.540601e+02 1.625400e+02
+8 9381     5.684000e+02 3.776400e+02
+9 9381     3.757600e+02 5.222700e+02
+0 9382     5.876300e+02 4.388100e+02
+2 9382     3.684700e+02 3.563300e+02
+3 9382     2.239399e+02 2.725000e+01
+13 9382     7.370400e+02 1.716200e+02
+0 9383     -5.279500e+02 4.138900e+02
+10 9383     -7.822500e+02 5.907000e+02
+14 9383     -2.027800e+02 -3.311100e+02
+0 9384     6.375800e+02 4.153600e+02
+2 9384     4.720100e+02 3.948400e+02
+3 9384     3.262900e+02 6.684003e+01
+6 9384     3.951600e+02 6.017400e+02
+8 9384     4.501000e+02 2.960800e+02
+9 9384     2.587000e+02 4.331100e+02
+12 9384     4.793300e+02 6.076100e+02
+13 9384     8.101600e+02 1.594500e+02
+0 9385     -5.916700e+02 4.023800e+02
+13 9385     -2.811100e+02 6.196002e+01
+14 9385     -2.664200e+02 -3.429400e+02
+0 9386     5.750000e+02 3.945700e+02
+2 9386     3.653101e+02 3.102800e+02
+3 9386     2.215601e+02 -1.590002e+01
+7 9386     3.619301e+02 5.484000e+02
+8 9386     3.666800e+02 2.317800e+02
+13 9386     7.293600e+02 1.340600e+02
+0 9387     7.915900e+02 3.906100e+02
+2 9387     6.306400e+02 4.341500e+02
+3 9387     4.743800e+02 1.057600e+02
+6 9387     5.785500e+02 6.252800e+02
+8 9387     5.827700e+02 3.269800e+02
+9 9387     3.929500e+02 4.696300e+02
+0 9388     -5.294200e+02 3.873800e+02
+4 9388     -8.260010e+00 -5.614001e+01
+5 9388     -1.258300e+02 -2.655100e+02
+10 9388     -7.787700e+02 5.560900e+02
+11 9388     -3.213800e+02 -3.630600e+02
+0 9389     6.552700e+02 3.873000e+02
+2 9389     4.973700e+02 3.804600e+02
+3 9389     3.509000e+02 5.362000e+01
+6 9389     4.235900e+02 5.810800e+02
+7 9389     4.544600e+02 5.638500e+02
+8 9389     4.710000e+02 2.830000e+02
+9 9389     2.811600e+02 4.202000e+02
+12 9389     5.062900e+02 5.886200e+02
+13 9389     8.311100e+02 1.421900e+02
+0 9390     6.552700e+02 3.873000e+02
+2 9390     4.973700e+02 3.804600e+02
+3 9390     3.509000e+02 5.362000e+01
+6 9390     4.235900e+02 5.810800e+02
+7 9390     4.544600e+02 5.638500e+02
+8 9390     4.710000e+02 2.830000e+02
+11 9390     7.460400e+02 -3.342400e+02
+12 9390     5.062900e+02 5.886200e+02
+13 9390     8.311100e+02 1.421900e+02
+0 9391     -4.632300e+02 3.532100e+02
+7 9391     -6.776500e+02 3.627600e+02
+15 9391     -7.105100e+02 5.592700e+02
+0 9392     5.824100e+02 3.046500e+02
+2 9392     4.406000e+02 2.747600e+02
+7 9392     3.931300e+02 4.708300e+02
+8 9392     4.231500e+02 1.976200e+02
+9 9392     2.356400e+02 3.298500e+02
+10 9392     5.599700e+02 5.625900e+02
+0 9393     7.837400e+02 2.890500e+02
+2 9393     6.529600e+02 3.398100e+02
+3 9393     4.973300e+02 2.044000e+01
+10 9393     8.033400e+02 5.661200e+02
+0 9394     6.818300e+02 2.855500e+02
+2 9394     5.509500e+02 2.977400e+02
+3 9394     4.050000e+02 -2.245001e+01
+6 9394     4.795601e+02 4.794500e+02
+7 9394     4.937100e+02 4.707500e+02
+8 9394     5.138500e+02 2.144800e+02
+9 9394     3.278101e+02 3.516200e+02
+10 9394     6.796400e+02 5.507100e+02
+12 9394     5.610800e+02 4.888200e+02
+0 9395     6.623800e+02 2.672700e+02
+2 9395     5.359000e+02 2.725000e+02
+3 9395     3.914800e+02 -4.659998e+01
+6 9395     4.611100e+02 4.537500e+02
+7 9395     4.768101e+02 4.492500e+02
+8 9395     5.011801e+02 1.937900e+02
+9 9395     3.158500e+02 3.295500e+02
+10 9395     6.569700e+02 5.265000e+02
+12 9395     5.429800e+02 4.627100e+02
+13 9395     8.519500e+02 4.339001e+01
+0 9396     6.901100e+02 2.489400e+02
+2 9396     5.701500e+02 2.672200e+02
+3 9396     4.250400e+02 -5.057001e+01
+6 9396     4.992000e+02 4.430200e+02
+7 9396     5.071600e+02 4.365600e+02
+8 9396     5.295500e+02 1.886000e+02
+9 9396     3.451100e+02 3.262200e+02
+10 9396     6.912700e+02 5.081400e+02
+12 9396     5.805100e+02 4.529700e+02
+0 9397     -7.901001e+01 2.293000e+02
+7 9397     -2.572500e+02 2.878700e+02
+0 9398     -5.478000e+02 2.212100e+02
+13 9398     -2.569300e+02 -9.658002e+01
+14 9398     -2.530200e+02 -5.440000e+02
+0 9399     6.494600e+02 2.212500e+02
+2 9399     5.349900e+02 2.233800e+02
+3 9399     3.928700e+02 -9.358002e+01
+6 9399     4.579200e+02 3.999900e+02
+7 9399     4.706801e+02 4.024200e+02
+8 9399     5.000900e+02 1.541900e+02
+9 9399     3.164600e+02 2.881700e+02
+10 9399     6.448900e+02 4.692100e+02
+12 9399     5.403700e+02 4.100800e+02
+13 9399     8.454600e+02 2.750000e+00
+15 9399     8.523900e+02 5.369900e+02
+0 9400     6.494600e+02 2.212500e+02
+2 9400     5.349900e+02 2.233800e+02
+6 9400     4.579200e+02 3.999900e+02
+7 9400     4.706801e+02 4.024200e+02
+8 9400     5.000900e+02 1.541900e+02
+9 9400     3.164600e+02 2.881700e+02
+10 9400     6.448900e+02 4.692100e+02
+13 9400     8.454600e+02 2.750000e+00
+15 9400     8.523900e+02 5.369900e+02
+0 9401     5.446500e+02 2.169500e+02
+7 9401     3.667100e+02 3.802800e+02
+0 9402     7.706600e+02 1.975000e+02
+2 9402     6.610300e+02 2.525200e+02
+3 9402     5.143300e+02 -6.232001e+01
+10 9402     7.903900e+02 4.555800e+02
+0 9403     -1.758100e+02 1.749300e+02
+7 9403     -3.435500e+02 2.225700e+02
+0 9404     7.602800e+02 1.739300e+02
+7 9404     5.792500e+02 3.787000e+02
+10 9404     7.741300e+02 4.295600e+02
+0 9405     -2.517600e+02 1.651000e+02
+7 9405     -4.198400e+02 2.008400e+02
+0 9406     6.257300e+02 1.626100e+02
+2 9406     5.246600e+02 1.561700e+02
+3 9406     3.853800e+02 -1.577600e+02
+6 9406     4.430200e+02 3.273500e+02
+7 9406     4.547500e+02 3.418600e+02
+8 9406     4.902300e+02 9.864001e+01
+9 9406     3.084301e+02 2.309600e+02
+10 9406     6.207400e+02 3.980300e+02
+12 9406     5.267500e+02 3.367900e+02
+13 9406     8.287300e+02 -5.107001e+01
+15 9406     8.250800e+02 4.504200e+02
+0 9407     7.477100e+02 1.628700e+02
+7 9407     5.729800e+02 3.648500e+02
+10 9407     7.654100e+02 4.119700e+02
+0 9408     8.199000e+02 1.411000e+02
+2 9408     7.291300e+02 2.229500e+02
+3 9408     5.785100e+02 -8.759998e+01
+7 9408     6.449000e+02 3.569600e+02
+9 9408     4.788101e+02 2.940000e+02
+0 9409     7.433600e+02 1.028000e+02
+2 9409     6.640000e+02 1.534300e+02
+3 9409     5.193000e+02 -1.550000e+02
+7 9409     5.768000e+02 3.069900e+02
+9 9409     4.267300e+02 2.332000e+02
+10 9409     7.644700e+02 3.400500e+02
+12 9409     6.757600e+02 3.163200e+02
+0 9410     5.477002e+01 7.323999e+01
+2 9410     1.793400e+02 1.069800e+02
+3 9410     8.453998e+01 -2.073900e+02
+4 9410     -2.301000e+02 -4.571801e+02
+5 9410     6.999301e+02 -5.871300e+02
+6 9410     2.600098e-01 1.160900e+02
+7 9410     -4.357001e+01 1.948500e+02
+8 9410     1.799900e+02 4.175000e+01
+12 9410     1.934003e+01 1.703900e+02
+0 9411     5.994900e+02 3.588000e+01
+6 9411     4.453900e+02 1.742200e+02
+7 9411     4.465300e+02 2.156600e+02
+10 9411     6.005900e+02 2.480300e+02
+13 9411     8.165500e+02 -1.668100e+02
+15 9411     8.028500e+02 2.691100e+02
+0 9412     1.734998e+01 2.738000e+01
+4 9412     -2.512300e+02 -4.219200e+02
+8 9412     1.564400e+02 -2.429993e+00
+13 9412     3.816899e+02 -1.959500e+02
+15 9412     -1.504999e+01 1.768700e+02
+0 9413     8.038800e+02 2.814001e+01
+2 9413     7.472300e+02 1.093000e+02
+3 9413     6.031300e+02 -1.941800e+02
+7 9413     6.441600e+02 2.466300e+02
+9 9413     4.964800e+02 1.989700e+02
+12 9413     7.639000e+02 2.565300e+02
+0 9414     -8.105500e+02 2.342999e+01
+13 9414     -4.593000e+02 -2.825800e+02
+0 9415     6.569800e+02 2.282001e+01
+3 9415     4.597100e+02 -2.781500e+02
+7 9415     5.022500e+02 2.125500e+02
+10 9415     6.649900e+02 2.371300e+02
+0 9416     -3.360600e+02 -4.159973e+00
+4 9416     -2.446700e+02 -1.404400e+02
+7 9416     -4.661600e+02 2.292999e+01
+15 9416     -4.795400e+02 8.501999e+01
+0 9417     -6.634003e+01 -1.648999e+01
+7 9417     -1.543800e+02 8.050000e+01
+10 9417     -1.689100e+02 1.148200e+02
+0 9418     -6.634003e+01 -1.648999e+01
+7 9418     -1.543800e+02 8.050000e+01
+10 9418     -1.689100e+02 1.148200e+02
+0 9419     -3.590200e+02 -2.370001e+01
+7 9419     -4.860700e+02 -1.280029e+00
+13 9419     -3.162000e+01 -2.969100e+02
+15 9419     -5.079800e+02 5.406000e+01
+0 9420     2.919399e+02 -7.979999e+01
+10 9420     2.520800e+02 7.846002e+01
+13 9420     6.263000e+02 -2.719700e+02
+15 9420     3.751801e+02 6.737000e+01
+0 9421     -4.066100e+02 -9.709003e+01
+7 9421     -5.176900e+02 -8.158002e+01
+15 9421     -5.619400e+02 -4.940997e+01
+0 9422     -1.471800e+02 -1.049100e+02
+7 9422     -2.187300e+02 -2.153003e+01
+10 9422     -2.532600e+02 4.419983e+00
+15 9422     -2.190700e+02 -2.457001e+01
+0 9423     -4.304600e+02 -1.255600e+02
+7 9423     -5.362200e+02 -1.136100e+02
+0 9424     3.497100e+02 -1.992500e+02
+10 9424     3.299500e+02 -5.214001e+01
+12 9424     4.279100e+02 -5.751001e+01
+15 9424     4.683400e+02 -8.845001e+01
+0 9425     2.293300e+02 -2.251400e+02
+2 9425     4.738700e+02 -1.386700e+02
+3 9425     3.781700e+02 -4.334301e+02
+6 9425     3.005700e+02 -1.501600e+02
+7 9425     1.835900e+02 -6.840002e+01
+8 9425     4.159800e+02 -1.673200e+02
+10 9425     1.944200e+02 -9.471997e+01
+12 9425     3.179399e+02 -1.138800e+02
+15 9425     3.056000e+02 -1.375800e+02
+0 9426     1.213900e+02 -2.304900e+02
+6 9426     1.969600e+02 -1.908101e+02
+7 9426     8.145001e+01 -9.159998e+01
+12 9426     2.010800e+02 -1.503400e+02
+15 9426     1.599500e+02 -1.589100e+02
+0 9427     -2.963500e+02 -2.493200e+02
+13 9427     8.209003e+01 -4.884800e+02
+15 9427     -3.943800e+02 -2.421200e+02
+0 9428     -1.440002e+00 -2.506500e+02
+4 9428     -4.583900e+02 -4.031100e+02
+9 9428     1.038100e+02 -1.133100e+02
+15 9428     -3.169983e+00 -2.022100e+02
+0 9429     2.627002e+01 -2.754200e+02
+2 9429     2.709800e+02 -2.780700e+02
+4 9429     -4.832300e+02 -4.233900e+02
+7 9429     -1.222998e+01 -1.590900e+02
+8 9429     2.446400e+02 -2.729400e+02
+9 9429     1.317600e+02 -1.340400e+02
+10 9429     -3.340002e+01 -1.738800e+02
+13 9429     4.243300e+02 -4.669301e+02
+15 9429     3.869000e+01 -2.325800e+02
+0 9430     2.627002e+01 -2.754200e+02
+4 9430     -4.832300e+02 -4.233900e+02
+6 9430     8.778003e+01 -2.917000e+02
+8 9430     2.446400e+02 -2.729400e+02
+10 9430     -3.340002e+01 -1.738800e+02
+12 9430     9.057001e+01 -2.483100e+02
+15 9430     3.869000e+01 -2.325800e+02
+0 9431     3.326700e+02 -2.996500e+02
+9 9431     3.428199e+02 -1.128500e+02
+10 9431     3.208199e+02 -1.681200e+02
+13 9431     6.837200e+02 -4.729500e+02
+15 9431     4.619301e+02 -2.255300e+02
+0 9432     -4.771997e+01 -3.302400e+02
+4 9432     -5.138200e+02 -3.538300e+02
+6 9432     2.289978e+00 -3.986600e+02
+7 9432     -8.258002e+01 -2.318000e+02
+10 9432     -1.126600e+02 -2.451000e+02
+12 9432     5.580017e+00 -3.514600e+02
+13 9432     3.504700e+02 -5.300601e+02
+15 9432     -5.195001e+01 -3.159300e+02
+0 9433     7.577800e+02 -3.341500e+02
+7 9433     6.609301e+02 -9.907001e+01
+0 9434     -3.095001e+01 -3.522800e+02
+7 9434     -6.238000e+01 -2.487300e+02
+10 9434     -9.150000e+01 -2.653600e+02
+0 9435     8.485300e+02 -4.100100e+02
+7 9435     7.528600e+02 -1.502800e+02
+0 9436     -1.528500e+02 -4.840500e+02
+6 9436     -4.865002e+01 -6.318101e+02
+7 9436     -1.580100e+02 -4.079600e+02
+9 9436     4.517999e+01 -4.206400e+02
+0 9437     -3.066998e+01 -5.586200e+02
+7 9437     -1.678003e+01 -4.527500e+02
+0 9438     -3.066998e+01 -5.586200e+02
+7 9438     -1.678003e+01 -4.527500e+02
+0 9439     -9.859998e+01 -5.671899e+02
+7 9439     -8.290002e+01 -4.764700e+02
+0 9440     -1.433100e+02 5.719100e+02
+2 9440     -4.304900e+02 3.427100e+02
+4 9440     6.472998e+01 -2.825600e+02
+5 9440     2.694301e+02 -7.644000e+01
+8 9440     -2.746100e+02 2.612300e+02
+11 9440     1.934998e+01 -2.064500e+02
+12 9440     -4.738000e+02 5.752500e+02
+0 9441     -1.433100e+02 5.719100e+02
+2 9441     -4.304900e+02 3.427100e+02
+4 9441     6.472998e+01 -2.825600e+02
+5 9441     2.694301e+02 -7.644000e+01
+8 9441     -2.746100e+02 2.612300e+02
+11 9441     1.934998e+01 -2.064500e+02
+12 9441     -4.738000e+02 5.752500e+02
+0 9442     1.552100e+02 5.541200e+02
+2 9442     -1.613300e+02 3.194100e+02
+4 9442     3.184003e+01 -4.548101e+02
+6 9442     -3.235200e+02 6.210500e+02
+8 9442     -5.185999e+01 2.490000e+02
+11 9442     2.796801e+02 -2.112900e+02
+12 9442     -1.549200e+02 5.904600e+02
+13 9442     3.077200e+02 2.242500e+02
+14 9442     4.567300e+02 -1.753200e+02
+0 9443     4.355400e+02 5.532600e+02
+2 9443     7.909998e+01 3.209900e+02
+3 9443     -6.696997e+01 -1.270001e+01
+6 9443     -2.607001e+01 6.744200e+02
+8 9443     1.472800e+02 2.537100e+02
+9 9443     -8.647998e+01 3.553500e+02
+13 9443     5.326200e+02 2.423500e+02
+14 9443     7.335200e+02 -1.598500e+02
+0 9444     6.568800e+02 5.320900e+02
+2 9444     4.619000e+02 5.087500e+02
+3 9444     3.130699e+02 1.721700e+02
+9 9444     2.493300e+02 5.325000e+02
+13 9444     8.156200e+02 2.606200e+02
+0 9445     1.250400e+02 5.075100e+02
+2 9445     -1.729400e+02 2.730100e+02
+14 9445     4.362700e+02 -2.231700e+02
+0 9446     9.192999e+01 5.035700e+02
+2 9446     -2.065900e+02 2.666900e+02
+3 9446     -3.406300e+02 -6.852002e+01
+6 9446     -3.760200e+02 5.487700e+02
+8 9446     -9.002002e+01 2.058400e+02
+12 9446     -2.040500e+02 5.313200e+02
+13 9446     2.633400e+02 1.778400e+02
+0 9447     7.477300e+02 4.901400e+02
+3 9447     4.074399e+02 1.672000e+02
+8 9447     5.264200e+02 3.841500e+02
+9 9447     3.331700e+02 5.274200e+02
+0 9448     8.094301e+02 4.053100e+02
+2 9448     6.435400e+02 4.500500e+02
+9 9448     4.036300e+02 4.830100e+02
+0 9449     5.292000e+02 3.793300e+02
+2 9449     3.210100e+02 2.792500e+02
+7 9449     3.190200e+02 5.257500e+02
+8 9449     3.294300e+02 2.064300e+02
+9 9449     1.297400e+02 3.282300e+02
+11 9449     6.370000e+02 -3.511100e+02
+13 9449     6.867000e+02 1.164700e+02
+0 9450     5.185200e+02 3.320600e+02
+3 9450     1.783200e+02 -9.623999e+01
+7 9450     3.143700e+02 4.780700e+02
+9 9450     1.289200e+02 2.841200e+02
+13 9450     6.808101e+02 7.539001e+01
+0 9451     7.758600e+02 9.169000e+01
+2 9451     7.010200e+02 1.571500e+02
+3 9451     5.552700e+02 -1.505100e+02
+7 9451     6.097400e+02 3.014300e+02
+9 9451     4.570400e+02 2.372400e+02
+10 9451     8.033700e+02 3.305400e+02
+12 9451     7.169399e+02 3.160200e+02
+0 9452     6.443500e+02 7.939999e+01
+2 9452     5.681300e+02 8.097998e+01
+6 9452     4.883800e+02 2.416000e+02
+7 9452     4.839600e+02 2.646100e+02
+8 9452     5.248700e+02 3.609000e+01
+10 9452     6.488900e+02 3.018700e+02
+12 9452     5.719000e+02 2.510800e+02
+0 9453     8.382000e+02 5.423999e+01
+2 9453     7.712900e+02 1.493700e+02
+3 9453     6.241400e+02 -1.544100e+02
+7 9453     6.719500e+02 2.773900e+02
+12 9453     7.942200e+02 2.973600e+02
+0 9454     -3.195001e+01 4.551001e+01
+7 9454     -1.287000e+02 1.501700e+02
+0 9455     -6.402002e+01 2.719000e+01
+2 9455     3.979999e+01 8.049988e+00
+3 9455     -4.792999e+01 -3.037700e+02
+6 9455     -1.432600e+02 1.709998e+01
+7 9455     -1.606700e+02 1.257000e+02
+8 9455     6.459998e+01 -3.564999e+01
+10 9455     -1.703600e+02 1.658600e+02
+12 9455     -1.218000e+02 7.333002e+01
+13 9455     3.003600e+02 -2.075600e+02
+15 9455     -1.229700e+02 1.651600e+02
+0 9456     -3.798999e+01 -2.210022e+00
+3 9456     6.440002e+00 -3.142900e+02
+4 9456     -2.700000e+02 -3.809500e+02
+6 9456     -8.832001e+01 -3.880005e+00
+7 9456     -1.260900e+02 1.020300e+02
+8 9456     1.071200e+02 -4.787000e+01
+13 9456     3.333300e+02 -2.283800e+02
+15 9456     -8.495001e+01 1.288200e+02
+0 9457     3.008101e+02 -3.688000e+01
+7 9457     2.117700e+02 1.229300e+02
+10 9457     2.576899e+02 1.293600e+02
+13 9457     6.284800e+02 -2.323800e+02
+15 9457     3.815000e+02 1.276400e+02
+0 9458     2.222000e+02 -8.471002e+01
+3 9458     2.906200e+02 -3.281400e+02
+7 9458     1.493700e+02 6.545001e+01
+10 9458     1.750900e+02 6.592999e+01
+13 9458     5.763000e+02 -2.780300e+02
+15 9458     2.794000e+02 5.190997e+01
+0 9459     -4.252002e+01 -2.284500e+02
+3 9459     1.208200e+02 -5.207900e+02
+4 9459     -4.319900e+02 -3.724000e+02
+10 9459     -1.190100e+02 -1.269600e+02
+12 9459     6.500244e-01 -2.016000e+02
+15 9459     -6.481000e+01 -1.772300e+02
+0 9460     2.831000e+02 -2.696900e+02
+7 9460     2.348300e+02 -1.098900e+02
+0 9461     6.073600e+02 -2.703600e+02
+7 9461     5.132800e+02 -6.628998e+01
+12 9461     6.590699e+02 -1.182000e+02
+0 9462     1.067100e+02 -3.989600e+02
+7 9462     7.884998e+01 -2.701900e+02
+0 9463     6.496400e+02 -4.262600e+02
+12 9463     7.783199e+02 -2.558500e+02
+0 9464     -9.920001e+01 -5.228400e+02
+7 9464     -9.429999e+01 -4.329399e+02
+0 9465     3.417300e+02 5.261000e+02
+5 9465     7.437300e+02 -1.106300e+02
+6 9465     -1.183300e+02 6.308000e+02
+0 9466     1.610699e+02 5.158800e+02
+2 9466     -1.434900e+02 2.803100e+02
+3 9466     -2.776400e+02 -5.529999e+01
+4 9466     1.625000e+01 -4.615900e+02
+5 9466     5.640100e+02 -1.265700e+02
+6 9466     -3.041200e+02 5.769900e+02
+8 9466     -3.887000e+01 2.184900e+02
+11 9466     2.897500e+02 -2.429200e+02
+12 9466     -1.370000e+02 5.523100e+02
+13 9466     3.189200e+02 1.920400e+02
+0 9467     7.707100e+02 4.710600e+02
+2 9467     5.881000e+02 4.932700e+02
+3 9467     4.329100e+02 1.587100e+02
+6 9467     5.350500e+02 7.002900e+02
+8 9467     5.481600e+02 3.757100e+02
+0 9468     7.107700e+02 3.821800e+02
+2 9468     5.546801e+02 3.956500e+02
+3 9468     4.054399e+02 7.022998e+01
+6 9468     4.896801e+02 5.913600e+02
+8 9468     5.187300e+02 2.954300e+02
+9 9468     3.292300e+02 4.347300e+02
+0 9469     -2.267100e+02 3.143600e+02
+5 9469     1.669100e+02 -3.551700e+02
+15 9469     -3.690600e+02 5.334900e+02
+0 9470     6.506100e+02 9.950000e+01
+3 9470     4.282200e+02 -2.051200e+02
+6 9470     4.887000e+02 2.675000e+02
+8 9470     5.248000e+02 5.685999e+01
+10 9470     6.571000e+02 3.274000e+02
+12 9470     5.701500e+02 2.777900e+02
+0 9471     7.936500e+02 4.969000e+01
+2 9471     7.323000e+02 1.251500e+02
+3 9471     5.872800e+02 -1.795800e+02
+7 9471     6.331899e+02 2.645000e+02
+9 9471     4.836200e+02 2.118100e+02
+12 9471     7.491000e+02 2.757400e+02
+0 9472     2.964001e+01 -1.329999e+01
+10 9472     -5.653003e+01 1.278100e+02
+13 9472     4.039500e+02 -2.294500e+02
+15 9472     7.489990e+00 1.229900e+02
+0 9473     -3.617999e+01 -1.914100e+02
+7 9473     -8.464001e+01 -8.370001e+01
+10 9473     -1.143500e+02 -8.457001e+01
+0 9474     9.609998e+01 -2.348600e+02
+4 9474     -4.652900e+02 -4.943700e+02
+10 9474     4.213000e+01 -1.189400e+02
+15 9474     1.243100e+02 -1.667800e+02
+0 9475     -2.591998e+01 -2.383600e+02
+7 9475     -6.713000e+01 -1.305600e+02
+15 9475     -3.912000e+01 -1.898700e+02
+0 9476     7.784998e+01 -2.487200e+02
+6 9476     1.597600e+02 -2.264200e+02
+8 9476     3.067800e+02 -2.155500e+02
+10 9476     2.232001e+01 -1.363600e+02
+12 9476     1.595600e+02 -1.854100e+02
+15 9476     1.009200e+02 -1.878200e+02
+0 9477     5.363000e+01 -2.854100e+02
+2 9477     3.045400e+02 -2.792000e+02
+4 9477     -4.987500e+02 -4.466500e+02
+6 9477     1.234100e+02 -2.953700e+02
+8 9477     2.723600e+02 -2.799200e+02
+9 9477     1.569600e+02 -1.329400e+02
+10 9477     -5.200195e-01 -1.833300e+02
+12 9477     1.271600e+02 -2.533800e+02
+15 9477     7.667999e+01 -2.421100e+02
+0 9478     4.615002e+01 -3.400600e+02
+7 9478     1.404999e+01 -2.214500e+02
+10 9478     -1.679993e+00 -2.450400e+02
+15 9478     7.654999e+01 -3.159200e+02
+0 9479     8.332001e+01 -3.583900e+02
+4 9479     -5.701800e+02 -4.629800e+02
+6 9479     1.643700e+02 -3.853900e+02
+12 9479     1.717300e+02 -3.477600e+02
+15 9479     1.270800e+02 -3.365300e+02
+0 9480     9.876001e+01 -3.815800e+02
+6 9480     1.867000e+02 -3.978101e+02
+7 9480     7.252002e+01 -2.514300e+02
+9 9480     2.096000e+02 -2.298700e+02
+0 9481     -2.215200e+02 -4.706500e+02
+7 9481     -2.316500e+02 -4.087600e+02
+0 9482     4.210999e+01 5.000400e+02
+5 9482     4.466801e+02 -1.474100e+02
+0 9483     4.210999e+01 5.000400e+02
+2 9483     -2.510400e+02 2.585000e+02
+3 9483     -3.837700e+02 -7.765997e+01
+5 9483     4.466801e+02 -1.474100e+02
+6 9483     -4.299400e+02 5.301900e+02
+8 9483     -1.265700e+02 1.983900e+02
+12 9483     -2.572000e+02 5.155100e+02
+13 9483     2.241400e+02 1.702000e+02
+14 9483     3.549000e+02 -2.367400e+02
+0 9484     7.307400e+02 1.163300e+02
+2 9484     6.501000e+02 1.593600e+02
+3 9484     5.060100e+02 -1.492800e+02
+7 9484     5.635400e+02 3.164600e+02
+9 9484     4.135500e+02 2.384100e+02
+10 9484     7.486600e+02 3.548900e+02
+0 9485     7.964301e+02 1.117000e+02
+2 9485     7.150400e+02 1.869700e+02
+3 9485     5.661899e+02 -1.214300e+02
+0 9486     6.914399e+02 9.219000e+01
+7 9486     5.281700e+02 2.858600e+02
+10 9486     7.037100e+02 3.200100e+02
+0 9487     8.024399e+02 7.631000e+01
+2 9487     7.335900e+02 1.549200e+02
+3 9487     5.852900e+02 -1.511600e+02
+7 9487     6.376400e+02 2.917600e+02
+9 9487     4.843700e+02 2.371600e+02
+12 9487     7.530500e+02 3.089900e+02
+0 9488     8.024399e+02 7.631000e+01
+3 9488     5.852900e+02 -1.511600e+02
+7 9488     6.376400e+02 2.917600e+02
+9 9488     4.843700e+02 2.371600e+02
+0 9489     2.306300e+02 -2.677002e+01
+2 9489     3.793400e+02 4.601001e+01
+3 9489     2.755900e+02 -2.615700e+02
+7 9489     1.450000e+02 1.254100e+02
+10 9489     1.766500e+02 1.328400e+02
+13 9489     5.757900e+02 -2.268500e+02
+15 9489     2.827200e+02 1.316400e+02
+0 9490     -7.919000e+01 -1.328300e+02
+3 9490     3.023999e+01 -4.423300e+02
+7 9490     -1.415100e+02 -3.309998e+01
+15 9490     -1.188300e+02 -5.114001e+01
+0 9491     3.559003e+01 -1.855100e+02
+7 9491     -1.637000e+01 -6.487000e+01
+10 9491     -3.106000e+01 -6.683002e+01
+15 9491     3.971997e+01 -1.083600e+02
+0 9492     1.789100e+02 5.503200e+02
+2 9492     -1.351800e+02 3.180900e+02
+3 9492     -2.733700e+02 -1.865002e+01
+5 9492     5.813600e+02 -9.194000e+01
+6 9492     -2.925700e+02 6.223600e+02
+8 9492     -3.121997e+01 2.472800e+02
+9 9492     -2.683400e+02 3.446900e+02
+13 9492     3.292000e+02 2.232100e+02
+14 9492     4.837800e+02 -1.765900e+02
+0 9493     7.288000e+01 5.325700e+02
+2 9493     -2.269800e+02 2.965200e+02
+3 9493     -3.607900e+02 -3.753998e+01
+4 9493     3.067999e+01 -4.068600e+02
+5 9493     4.776600e+02 -1.115900e+02
+6 9493     -4.038500e+02 5.801500e+02
+8 9493     -1.073400e+02 2.305200e+02
+12 9493     -2.316100e+02 5.588300e+02
+13 9493     2.467300e+02 2.028400e+02
+14 9493     3.831300e+02 -1.999600e+02
+0 9494     7.288000e+01 5.325700e+02
+4 9494     3.067999e+01 -4.068600e+02
+5 9494     4.776600e+02 -1.115900e+02
+11 9494     2.102100e+02 -2.325400e+02
+12 9494     -2.316100e+02 5.588300e+02
+13 9494     2.467300e+02 2.028400e+02
+14 9494     3.831300e+02 -1.999600e+02
+0 9495     1.063800e+02 5.140500e+02
+5 9495     5.072800e+02 -1.325600e+02
+0 9496     1.063800e+02 5.140500e+02
+5 9496     5.072800e+02 -1.325600e+02
+13 9496     2.725800e+02 1.850900e+02
+14 9496     4.147400e+02 -2.208100e+02
+0 9497     3.018600e+02 4.925500e+02
+13 9497     4.285200e+02 1.819700e+02
+14 9497     6.081300e+02 -2.282900e+02
+0 9498     7.225200e+02 4.869400e+02
+2 9498     5.362000e+02 4.906400e+02
+3 9498     3.838500e+02 1.551400e+02
+8 9498     5.052700e+02 3.735300e+02
+9 9498     3.141700e+02 5.169100e+02
+0 9499     7.391899e+02 5.934003e+01
+2 9499     6.718300e+02 1.080600e+02
+3 9499     5.306801e+02 -1.980500e+02
+7 9499     5.776400e+02 2.642800e+02
+9 9499     4.350900e+02 1.954600e+02
+12 9499     6.818500e+02 2.657400e+02
+0 9500     2.358700e+02 -6.192999e+01
+2 9500     3.988199e+02 1.165002e+01
+7 9500     1.565900e+02 8.942001e+01
+13 9500     5.851200e+02 -2.550600e+02
+15 9500     2.929000e+02 8.420001e+01
+0 9501     1.039200e+02 -1.378300e+02
+13 9501     4.842800e+02 -3.351500e+02
+0 9502     -2.321000e+02 4.416500e+02
+4 9502     2.600098e-01 -2.186200e+02
+5 9502     1.741400e+02 -2.098200e+02
+0 9503     -2.321000e+02 4.416500e+02
+2 9503     -5.086800e+02 1.927000e+02
+4 9503     2.600098e-01 -2.186200e+02
+5 9503     1.741400e+02 -2.098200e+02
+7 9503     -4.547600e+02 4.821600e+02
+8 9503     -3.376500e+02 1.426800e+02
+11 9503     -5.935999e+01 -3.173400e+02
+12 9503     -5.504700e+02 4.103000e+02
+0 9504     7.844600e+02 1.901000e+02
+3 9504     5.267800e+02 -6.932001e+01
+7 9504     6.010400e+02 3.967500e+02
+0 9505     7.290000e+02 8.301001e+01
+7 9505     5.668800e+02 2.834500e+02
+1 9506     2.632600e+02 5.856400e+02
+2 9506     -4.080600e+02 3.136300e+02
+5 9506     2.886801e+02 -1.026800e+02
+8 9506     -2.560400e+02 2.386200e+02
+12 9506     -4.445600e+02 5.474300e+02
+1 9507     5.008400e+02 5.857200e+02
+2 9507     -2.153700e+02 3.668600e+02
+3 9507     -3.476900e+02 3.248999e+01
+6 9507     -3.940600e+02 6.631800e+02
+8 9507     -9.750000e+01 2.845100e+02
+9 9507     -3.389300e+02 3.868100e+02
+1 9508     6.144800e+02 5.855700e+02
+6 9508     -2.929900e+02 7.084300e+02
+1 9509     -5.626001e+01 5.838100e+02
+2 9509     -7.145300e+02 2.290200e+02
+7 9509     -6.540600e+02 4.948900e+02
+8 9509     -5.057800e+02 1.653500e+02
+1 9510     -5.626001e+01 5.838100e+02
+2 9510     -7.145300e+02 2.290200e+02
+7 9510     -6.540600e+02 4.948900e+02
+1 9511     -3.419983e+00 5.840600e+02
+8 9511     -4.608400e+02 1.785100e+02
+14 9511     -4.546997e+01 -2.573500e+02
+1 9512     6.113600e+02 5.836300e+02
+5 9512     5.898600e+02 -2.603998e+01
+6 9512     -2.946400e+02 7.052600e+02
+1 9513     5.079399e+02 5.832000e+02
+6 9513     -3.865000e+02 6.629600e+02
+1 9514     6.296997e+01 5.824700e+02
+2 9514     -5.920300e+02 2.595000e+02
+7 9514     -5.360800e+02 5.346400e+02
+12 9514     -6.500600e+02 4.646600e+02
+1 9515     6.296997e+01 5.824700e+02
+12 9515     -6.500600e+02 4.646600e+02
+1 9516     6.296997e+01 5.824700e+02
+7 9516     -5.360800e+02 5.346400e+02
+12 9516     -6.500600e+02 4.646600e+02
+1 9517     5.945601e+02 5.807600e+02
+6 9517     -3.081500e+02 6.952900e+02
+1 9518     6.027800e+02 5.801300e+02
+5 9518     5.842200e+02 -3.047998e+01
+1 9519     6.027800e+02 5.801300e+02
+5 9519     5.842200e+02 -3.047998e+01
+9 9519     -2.734900e+02 4.020300e+02
+1 9520     2.612700e+02 5.797100e+02
+2 9520     -4.079900e+02 3.064700e+02
+5 9520     2.883700e+02 -1.085900e+02
+12 9520     -4.437100e+02 5.400100e+02
+1 9521     2.612700e+02 5.797100e+02
+5 9521     2.883700e+02 -1.085900e+02
+1 9522     2.612700e+02 5.797100e+02
+2 9522     -4.079900e+02 3.064700e+02
+12 9522     -4.437100e+02 5.400100e+02
+1 9523     5.988199e+02 5.793400e+02
+2 9523     -1.410700e+02 3.800200e+02
+3 9523     -2.776800e+02 4.498999e+01
+1 9524     5.988199e+02 5.793400e+02
+2 9524     -1.410700e+02 3.800200e+02
+1 9525     -6.763000e+01 5.784900e+02
+2 9525     -7.255800e+02 2.192400e+02
+5 9525     -2.339001e+01 -1.849000e+02
+7 9525     -6.631500e+02 4.850400e+02
+8 9525     -5.145500e+02 1.579700e+02
+14 9525     -1.068300e+02 -2.789500e+02
+1 9526     -5.928003e+01 5.755600e+02
+7 9526     -6.538800e+02 4.855200e+02
+1 9527     6.971700e+02 5.693200e+02
+2 9527     -7.060999e+01 3.888700e+02
+6 9527     -2.160200e+02 7.228700e+02
+1 9528     -1.554500e+02 5.684400e+02
+8 9528     -5.911200e+02 1.260700e+02
+10 9528     -7.769200e+02 6.162700e+02
+11 9528     -3.091200e+02 -3.224800e+02
+1 9529     8.070007e+00 5.662300e+02
+2 9529     -6.428400e+02 2.253900e+02
+5 9529     5.272998e+01 -1.805200e+02
+7 9529     -5.831600e+02 4.993800e+02
+12 9529     -7.034400e+02 4.223900e+02
+14 9529     -3.196002e+01 -2.729600e+02
+1 9530     8.070007e+00 5.662300e+02
+2 9530     -6.428400e+02 2.253900e+02
+5 9530     5.272998e+01 -1.805200e+02
+7 9530     -5.831600e+02 4.993800e+02
+12 9530     -7.034400e+02 4.223900e+02
+14 9530     -3.196002e+01 -2.729600e+02
+1 9531     -6.595001e+01 5.618800e+02
+2 9531     -7.196100e+02 1.992500e+02
+8 9531     -5.094000e+02 1.421500e+02
+14 9531     -1.031900e+02 -2.957700e+02
+1 9532     2.192100e+02 5.615100e+02
+2 9532     -4.404200e+02 2.761600e+02
+7 9532     -3.833300e+02 5.666200e+02
+1 9533     -1.727400e+02 5.590200e+02
+5 9533     -1.275300e+02 -2.288800e+02
+11 9533     -3.233700e+02 -3.336700e+02
+14 9533     -2.097300e+02 -3.243900e+02
+1 9534     -1.727400e+02 5.590200e+02
+10 9534     -7.936500e+02 5.983200e+02
+1 9535     -1.727400e+02 5.590200e+02
+5 9535     -1.275300e+02 -2.288800e+02
+7 9535     -7.645600e+02 4.269200e+02
+10 9535     -7.936500e+02 5.983200e+02
+14 9535     -2.097300e+02 -3.243900e+02
+1 9536     6.351700e+02 5.587900e+02
+5 9536     6.149100e+02 -4.297998e+01
+6 9536     -2.639600e+02 6.880200e+02
+1 9537     -6.541998e+01 5.575700e+02
+2 9537     -7.176400e+02 1.939600e+02
+5 9537     -1.891998e+01 -2.060400e+02
+12 9537     -7.837800e+02 3.806400e+02
+1 9538     6.721700e+02 5.528400e+02
+2 9538     -8.283002e+01 3.691800e+02
+4 9538     5.928003e+01 -5.253800e+02
+6 9538     -2.301200e+02 6.958100e+02
+8 9538     1.213000e+01 2.885900e+02
+11 9538     3.609600e+02 -1.683600e+02
+1 9539     4.302100e+02 5.486300e+02
+11 9539     1.793100e+02 -2.216700e+02
+12 9539     -2.708300e+02 5.700200e+02
+14 9539     3.504800e+02 -1.852000e+02
+1 9540     1.649800e+02 5.461200e+02
+7 9540     -4.272100e+02 5.334700e+02
+1 9541     6.777200e+02 5.448400e+02
+11 9541     3.675500e+02 -1.732500e+02
+14 9541     5.535500e+02 -1.298400e+02
+1 9542     6.284399e+02 5.418400e+02
+2 9542     -1.097000e+02 3.507400e+02
+6 9542     -2.623700e+02 6.673100e+02
+9 9542     -2.480600e+02 3.755100e+02
+11 9542     3.320100e+02 -1.853800e+02
+13 9542     3.555000e+02 2.510900e+02
+14 9542     5.153300e+02 -1.436900e+02
+1 9543     3.921300e+02 5.409100e+02
+12 9543     -3.029300e+02 5.477500e+02
+1 9544     -8.815002e+01 5.398600e+02
+5 9544     -3.917999e+01 -2.303000e+02
+10 9544     -6.801500e+02 6.051800e+02
+12 9544     -8.008800e+02 3.484300e+02
+14 9544     -1.216400e+02 -3.239500e+02
+1 9545     -8.106000e+01 5.399100e+02
+2 9545     -7.287500e+02 1.678300e+02
+1 9546     -1.948300e+02 5.396600e+02
+10 9546     -8.113100e+02 5.660200e+02
+14 9546     -2.300400e+02 -3.502000e+02
+1 9547     -1.285999e+01 5.389700e+02
+7 9547     -5.928000e+02 4.641600e+02
+1 9548     4.275300e+02 5.389200e+02
+5 9548     4.424900e+02 -1.101700e+02
+1 9549     6.798800e+02 5.384800e+02
+2 9549     -7.350000e+01 3.574600e+02
+1 9550     4.178400e+02 5.368500e+02
+6 9550     -4.516000e+02 5.710900e+02
+9 9550     -3.795100e+02 3.250100e+02
+1 9551     -1.489001e+01 5.365200e+02
+2 9551     -6.590500e+02 1.830500e+02
+1 9552     3.085601e+02 5.338400e+02
+7 9552     -2.940200e+02 5.689200e+02
+12 9552     -3.781300e+02 5.085500e+02
+1 9553     7.238000e+01 5.324100e+02
+8 9553     -3.881400e+02 1.473600e+02
+1 9554     1.946700e+02 5.303800e+02
+3 9554     -5.821600e+02 -9.465002e+01
+1 9555     -1.396100e+02 5.297600e+02
+5 9555     -9.082001e+01 -2.523600e+02
+10 9555     -7.383200e+02 5.737600e+02
+1 9556     2.952200e+02 5.282700e+02
+2 9556     -3.636100e+02 2.599300e+02
+1 9557     -1.505200e+02 5.265400e+02
+5 9557     -1.015100e+02 -2.584100e+02
+8 9557     -5.777900e+02 8.510001e+01
+14 9557     -1.835600e+02 -3.534900e+02
+1 9558     3.357300e+02 5.264800e+02
+2 9558     -3.302300e+02 2.679600e+02
+7 9558     -2.679800e+02 5.708500e+02
+1 9559     3.001000e+02 5.260300e+02
+2 9559     -3.599800e+02 2.585100e+02
+1 9560     -1.534800e+02 5.253800e+02
+7 9560     -7.301700e+02 3.985100e+02
+10 9560     -7.530300e+02 5.632900e+02
+1 9561     -3.696997e+01 5.251100e+02
+10 9561     -6.124200e+02 6.067700e+02
+1 9562     3.198600e+02 5.249200e+02
+2 9562     -3.428500e+02 2.623400e+02
+7 9562     -2.807600e+02 5.644000e+02
+1 9563     7.785000e+02 5.239000e+02
+5 9563     7.404800e+02 -4.134998e+01
+6 9563     -1.308600e+02 7.065700e+02
+14 9563     6.376899e+02 -1.243600e+02
+1 9564     -2.020900e+02 5.229200e+02
+10 9564     -8.127400e+02 5.421100e+02
+15 9564     -8.462500e+02 5.826600e+02
+1 9565     7.856000e+01 5.222500e+02
+2 9565     -5.613500e+02 1.927400e+02
+5 9565     1.258700e+02 -2.090500e+02
+11 9565     -1.006100e+02 -3.164600e+02
+12 9565     -6.075500e+02 4.014800e+02
+1 9566     3.350100e+02 5.220300e+02
+6 9566     -5.257700e+02 5.168600e+02
+1 9567     -1.164200e+02 5.209300e+02
+10 9567     -7.058500e+02 5.717300e+02
+1 9568     1.078900e+02 5.207700e+02
+7 9568     -4.710500e+02 4.889600e+02
+1 9569     8.103998e+01 5.196100e+02
+5 9569     1.288300e+02 -2.113400e+02
+12 9569     -6.036200e+02 3.992700e+02
+1 9570     4.294800e+02 5.190500e+02
+12 9570     -2.599400e+02 5.386800e+02
+1 9571     -3.046002e+01 5.178000e+02
+7 9571     -6.028200e+02 4.363300e+02
+1 9572     -3.046002e+01 5.178000e+02
+2 9572     -6.705600e+02 1.548700e+02
+7 9572     -6.028200e+02 4.363300e+02
+12 9572     -7.257400e+02 3.477400e+02
+1 9573     2.901899e+02 5.167300e+02
+6 9573     -5.681000e+02 4.895800e+02
+7 9573     -3.044400e+02 5.469500e+02
+11 9573     7.565002e+01 -2.763800e+02
+12 9573     -3.897000e+02 4.833600e+02
+1 9574     4.271002e+01 5.162500e+02
+5 9574     9.254999e+01 -2.238300e+02
+1 9575     1.071500e+02 5.161700e+02
+12 9575     -5.745800e+02 4.062100e+02
+1 9576     2.757600e+02 5.157800e+02
+2 9576     -3.785300e+02 2.411000e+02
+5 9576     3.119500e+02 -1.681000e+02
+6 9576     -5.827100e+02 4.804600e+02
+8 9576     -2.312700e+02 1.809300e+02
+1 9577     3.924399e+02 5.145900e+02
+7 9577     -2.155500e+02 5.778300e+02
+1 9578     3.295400e+02 5.140000e+02
+5 9578     3.610699e+02 -1.565400e+02
+6 9578     -5.280600e+02 5.038200e+02
+7 9578     -2.693600e+02 5.570300e+02
+9 9578     -4.341900e+02 2.826000e+02
+12 9578     -3.510200e+02 4.948300e+02
+1 9579     7.433002e+01 5.136000e+02
+2 9579     -5.630100e+02 1.813800e+02
+7 9579     -4.999200e+02 4.698800e+02
+12 9579     -6.084300e+02 3.894300e+02
+1 9580     4.304900e+02 5.137500e+02
+2 9580     -2.493900e+02 2.780300e+02
+5 9580     4.506899e+02 -1.327100e+02
+6 9580     -4.295700e+02 5.511700e+02
+12 9580     -2.567900e+02 5.331800e+02
+1 9581     9.389001e+01 5.122700e+02
+2 9581     -5.434600e+02 1.856800e+02
+7 9581     -4.810400e+02 4.756600e+02
+1 9582     1.011200e+02 5.116400e+02
+2 9582     -5.361200e+02 1.870100e+02
+5 9582     1.498300e+02 -2.141600e+02
+7 9582     -4.738400e+02 4.776100e+02
+12 9582     -5.789100e+02 3.988400e+02
+14 9582     6.434998e+01 -3.047500e+02
+1 9583     -1.610000e+02 5.109800e+02
+5 9583     -1.112100e+02 -2.774700e+02
+7 9583     -7.319600e+02 3.804600e+02
+8 9583     -5.844100e+02 6.585999e+01
+10 9583     -7.556000e+02 5.429200e+02
+14 9583     -1.932400e+02 -3.727900e+02
+15 9583     -7.829100e+02 5.858900e+02
+1 9584     6.245400e+02 5.097700e+02
+2 9584     -1.023300e+02 3.194800e+02
+8 9584     -4.510010e+00 2.489400e+02
+1 9585     8.439500e+02 5.094400e+02
+5 9585     7.964600e+02 -4.094000e+01
+6 9585     -7.365997e+01 7.154700e+02
+8 9585     1.151000e+02 2.857600e+02
+9 9585     -1.194800e+02 3.904000e+02
+1 9586     2.834500e+02 5.082400e+02
+5 9586     3.207000e+02 -1.734700e+02
+6 9586     -5.712400e+02 4.753800e+02
+1 9587     -1.092100e+02 5.074000e+02
+7 9587     -6.773500e+02 3.966200e+02
+10 9587     -6.915100e+02 5.581000e+02
+12 9587     -8.121100e+02 2.992800e+02
+1 9588     2.577100e+02 5.072900e+02
+2 9588     -3.917800e+02 2.260100e+02
+7 9588     -3.301000e+02 5.272500e+02
+1 9589     6.410500e+02 5.073500e+02
+2 9589     -9.041998e+01 3.205400e+02
+8 9589     5.580017e+00 2.501500e+02
+9 9589     -2.305300e+02 3.495300e+02
+12 9589     -7.064001e+01 6.018200e+02
+1 9590     -1.696400e+02 5.069400e+02
+7 9590     -7.391700e+02 3.729500e+02
+8 9590     -5.920400e+02 5.951999e+01
+11 9590     -3.149100e+02 -3.783000e+02
+13 9590     -2.261500e+02 3.513000e+01
+15 9590     -7.927900e+02 5.759000e+02
+1 9591     8.439800e+02 5.070200e+02
+14 9591     6.917400e+02 -1.248500e+02
+1 9592     -1.255100e+02 5.061600e+02
+10 9592     -7.097400e+02 5.505100e+02
+12 9592     -8.307900e+02 2.903300e+02
+1 9593     3.259301e+02 5.062000e+02
+2 9593     -3.330400e+02 2.432100e+02
+5 9593     3.593101e+02 -1.651000e+02
+6 9593     -5.280500e+02 4.933000e+02
+7 9593     -2.698300e+02 5.487000e+02
+9 9593     -4.344100e+02 2.743100e+02
+11 9593     1.067400e+02 -2.774200e+02
+1 9594     4.731899e+02 5.050100e+02
+14 9594     3.973500e+02 -2.153000e+02
+1 9595     -1.029400e+02 5.046900e+02
+7 9595     -6.698100e+02 3.960000e+02
+8 9595     -5.294100e+02 7.609000e+01
+11 9595     -2.544100e+02 -3.673400e+02
+14 9595     -1.332400e+02 -3.645800e+02
+1 9596     -1.029400e+02 5.046900e+02
+7 9596     -6.698100e+02 3.960000e+02
+8 9596     -5.294100e+02 7.609000e+01
+11 9596     -2.544100e+02 -3.673400e+02
+14 9596     -1.332400e+02 -3.645800e+02
+1 9597     3.720800e+02 5.032100e+02
+6 9597     -4.813700e+02 5.118200e+02
+12 9597     -3.064400e+02 4.999500e+02
+1 9598     1.794000e+02 5.023600e+02
+12 9598     -4.938200e+02 4.213000e+02
+1 9599     6.192000e+02 5.027700e+02
+2 9599     -1.041400e+02 3.113800e+02
+12 9599     -8.708002e+01 5.895200e+02
+1 9600     4.262500e+02 5.011500e+02
+6 9600     -4.288300e+02 5.351500e+02
+9 9600     -3.632900e+02 2.952500e+02
+11 9600     1.879400e+02 -2.592200e+02
+12 9600     -2.561700e+02 5.187300e+02
+1 9601     7.099600e+02 5.005100e+02
+6 9601     -1.772600e+02 6.563700e+02
+11 9601     4.041600e+02 -1.984700e+02
+1 9602     7.367000e+02 5.006300e+02
+2 9602     -2.285999e+01 3.346800e+02
+13 9602     4.350200e+02 2.454600e+02
+14 9602     6.131700e+02 -1.532900e+02
+1 9603     4.091998e+01 4.999500e+02
+10 9603     -5.114200e+02 6.063700e+02
+1 9604     9.000244e-01 4.996900e+02
+7 9604     -5.651900e+02 4.291300e+02
+10 9604     -5.579600e+02 5.901500e+02
+14 9604     -2.978998e+01 -3.430300e+02
+1 9605     7.468300e+02 4.973100e+02
+6 9605     -1.455000e+02 6.675500e+02
+9 9605     -1.675300e+02 3.632200e+02
+1 9606     7.468300e+02 4.973100e+02
+6 9606     -1.455000e+02 6.675500e+02
+1 9607     5.821700e+02 4.958100e+02
+14 9607     4.902400e+02 -1.958900e+02
+1 9608     6.789301e+02 4.960700e+02
+14 9608     5.679600e+02 -1.715200e+02
+1 9609     7.983400e+02 4.960900e+02
+6 9609     -1.024200e+02 6.869000e+02
+11 9609     4.700699e+02 -1.830200e+02
+1 9610     3.800800e+02 4.952100e+02
+7 9610     -2.194600e+02 5.559200e+02
+1 9611     3.740400e+02 4.944500e+02
+2 9611     -2.898000e+02 2.433800e+02
+5 9611     4.042800e+02 -1.645500e+02
+6 9611     -4.758700e+02 5.026000e+02
+1 9612     4.309900e+02 4.941300e+02
+2 9612     -2.427800e+02 2.581400e+02
+6 9612     -4.190900e+02 5.300600e+02
+8 9612     -1.197600e+02 1.974800e+02
+9 9612     -3.572400e+02 2.905000e+02
+12 9612     -2.464300e+02 5.140800e+02
+1 9613     7.073800e+02 4.942400e+02
+12 9613     -1.129999e+01 6.098700e+02
+1 9614     1.409900e+02 4.937000e+02
+7 9614     -4.307300e+02 4.737500e+02
+1 9615     8.597998e+01 4.929800e+02
+2 9615     -5.462000e+02 1.602000e+02
+8 9615     -3.682400e+02 1.144000e+02
+10 9615     -4.568600e+02 6.139400e+02
+1 9616     1.340300e+02 4.907600e+02
+2 9616     -4.997100e+02 1.722200e+02
+7 9616     -4.358300e+02 4.684400e+02
+1 9617     2.753998e+01 4.898900e+02
+2 9617     -6.032500e+02 1.389400e+02
+5 9617     8.073999e+01 -2.550100e+02
+12 9617     -6.484900e+02 3.408400e+02
+1 9618     2.254999e+01 4.891700e+02
+2 9618     -6.084000e+02 1.353700e+02
+10 9618     -5.282800e+02 5.866000e+02
+11 9618     -1.430000e+02 -3.555200e+02
+12 9618     -6.542000e+02 3.373000e+02
+1 9619     5.995500e+02 4.887900e+02
+14 9619     5.060200e+02 -1.979800e+02
+1 9620     8.627400e+02 4.890300e+02
+3 9620     -8.823999e+01 1.141998e+01
+5 9620     8.174200e+02 -5.645001e+01
+6 9620     -5.114001e+01 6.999400e+02
+8 9620     1.301600e+02 2.722600e+02
+9 9620     -1.041700e+02 3.770200e+02
+11 9620     5.154500e+02 -1.768100e+02
+1 9621     5.546500e+02 4.885400e+02
+14 9621     4.688101e+02 -2.098400e+02
+1 9622     1.590601e+02 4.871000e+02
+2 9622     -4.753900e+02 1.755700e+02
+1 9623     6.303003e+01 4.860000e+02
+7 9623     -5.004700e+02 4.382300e+02
+10 9623     -4.802700e+02 5.971900e+02
+1 9624     3.643000e+02 4.853200e+02
+3 9624     -4.266800e+02 -1.003000e+02
+5 9624     3.972100e+02 -1.762300e+02
+6 9624     -4.814500e+02 4.871600e+02
+7 9624     -2.299000e+02 5.414700e+02
+9 9624     -4.013200e+02 2.646900e+02
+11 9624     1.426700e+02 -2.856600e+02
+12 9624     -3.064500e+02 4.779300e+02
+1 9625     1.066600e+02 4.851400e+02
+10 9625     -4.304000e+02 6.128900e+02
+1 9626     1.066600e+02 4.851400e+02
+7 9626     -4.587000e+02 4.534500e+02
+10 9626     -4.304000e+02 6.128900e+02
+1 9627     4.552400e+02 4.849200e+02
+7 9627     -1.528200e+02 5.703300e+02
+1 9628     4.552400e+02 4.849200e+02
+2 9628     -2.219600e+02 2.545300e+02
+7 9628     -1.528200e+02 5.703300e+02
+1 9629     -7.396002e+01 4.845600e+02
+7 9629     -6.312300e+02 3.869900e+02
+1 9630     8.554600e+02 4.820500e+02
+6 9630     -5.394000e+01 6.915200e+02
+1 9631     3.428003e+01 4.818600e+02
+2 9631     -5.941900e+02 1.306500e+02
+5 9631     8.848999e+01 -2.618800e+02
+7 9631     -5.262600e+02 4.237300e+02
+10 9631     -5.109200e+02 5.813600e+02
+14 9631     5.030029e+00 -3.528600e+02
+1 9632     7.241998e+01 4.774200e+02
+4 9632     -2.157001e+01 -1.921600e+02
+8 9632     -3.745900e+02 9.838000e+01
+10 9632     -4.646200e+02 5.906000e+02
+12 9632     -5.947500e+02 3.479000e+02
+1 9633     3.429200e+02 4.776200e+02
+7 9633     -2.449800e+02 5.276600e+02
+1 9634     7.660999e+01 4.769900e+02
+5 9634     1.324000e+02 -2.565100e+02
+12 9634     -5.888200e+02 3.485300e+02
+14 9634     4.837000e+01 -3.466600e+02
+1 9635     3.041998e+01 4.763600e+02
+2 9635     -5.966200e+02 1.225800e+02
+7 9635     -5.277900e+02 4.167800e+02
+10 9635     -5.132200e+02 5.737900e+02
+14 9635     2.159973e+00 -3.597000e+02
+1 9636     9.496997e+01 4.764600e+02
+7 9636     -4.660300e+02 4.407600e+02
+14 9636     6.585999e+01 -3.424100e+02
+1 9637     9.847998e+01 4.763800e+02
+7 9637     -4.626600e+02 4.420000e+02
+1 9638     1.655699e+02 4.724200e+02
+10 9638     -3.608200e+02 6.196200e+02
+1 9639     7.620200e+02 4.719800e+02
+14 9639     6.409600e+02 -1.728900e+02
+1 9640     9.963000e+01 4.702500e+02
+14 9640     6.820001e+01 -3.479200e+02
+1 9641     1.032000e+02 4.701900e+02
+8 9641     -3.492000e+02 9.851001e+01
+12 9641     -5.592700e+02 3.521200e+02
+14 9641     7.327002e+01 -3.466700e+02
+1 9642     -7.635999e+01 4.684200e+02
+10 9642     -6.332900e+02 5.234300e+02
+12 9642     -7.560500e+02 2.670300e+02
+15 9642     -6.458200e+02 5.678800e+02
+1 9643     -2.034200e+02 4.625400e+02
+5 9643     -1.515200e+02 -3.404100e+02
+10 9643     -7.846400e+02 4.671700e+02
+14 9643     -2.327500e+02 -4.370601e+02
+15 9643     -8.154800e+02 4.987400e+02
+1 9644     -2.034200e+02 4.625400e+02
+5 9644     -1.515200e+02 -3.404100e+02
+15 9644     -8.154800e+02 4.987400e+02
+1 9645     -1.619800e+02 4.625400e+02
+7 9645     -7.136500e+02 3.295000e+02
+10 9645     -7.346000e+02 4.831100e+02
+15 9645     -7.586100e+02 5.189300e+02
+1 9646     3.084700e+02 4.608700e+02
+5 9646     3.609000e+02 -2.136300e+02
+14 9646     2.724800e+02 -2.998300e+02
+1 9647     -1.969900e+02 4.590800e+02
+10 9647     -7.754700e+02 4.658900e+02
+15 9647     -8.048100e+02 4.974900e+02
+1 9648     7.665997e+01 4.590500e+02
+2 9648     -5.452800e+02 1.165100e+02
+7 9648     -4.776800e+02 4.164900e+02
+12 9648     -5.818600e+02 3.268600e+02
+1 9649     1.310100e+02 4.583800e+02
+2 9649     -4.928900e+02 1.333200e+02
+7 9649     -4.268900e+02 4.356300e+02
+10 9649     -3.930500e+02 5.906200e+02
+12 9649     -5.246700e+02 3.505300e+02
+14 9649     1.012700e+02 -3.513600e+02
+1 9650     9.247998e+01 4.574900e+02
+10 9650     -4.352300e+02 5.758000e+02
+1 9651     3.560500e+02 4.539300e+02
+7 9651     -2.260300e+02 5.094000e+02
+1 9652     1.539700e+02 4.537700e+02
+10 9652     -3.655900e+02 5.939800e+02
+1 9653     4.744000e+01 4.513800e+02
+2 9653     -5.726400e+02 9.695001e+01
+7 9653     -5.023800e+02 3.982400e+02
+10 9653     -4.833200e+02 5.510200e+02
+12 9653     -6.104300e+02 3.047600e+02
+14 9653     2.219000e+01 -3.812200e+02
+1 9654     1.422700e+02 4.510300e+02
+5 9654     1.966600e+02 -2.652000e+02
+7 9654     -4.140800e+02 4.324300e+02
+12 9654     -5.102300e+02 3.468000e+02
+1 9655     3.900400e+02 4.444800e+02
+2 9655     -2.619100e+02 1.942600e+02
+3 9655     -3.949800e+02 -1.369400e+02
+5 9655     4.286899e+02 -2.094600e+02
+6 9655     -4.389300e+02 4.524200e+02
+9 9655     -3.716200e+02 2.340300e+02
+13 9655     2.115100e+02 1.228200e+02
+1 9656     5.328900e+02 4.445300e+02
+2 9656     -1.499500e+02 2.330200e+02
+5 9656     5.553800e+02 -1.732000e+02
+6 9656     -3.058900e+02 5.201600e+02
+7 9656     -7.596997e+01 5.580000e+02
+8 9656     -4.367999e+01 1.788700e+02
+14 9656     4.623500e+02 -2.560500e+02
+1 9657     4.782001e+01 4.432500e+02
+2 9657     -5.702600e+02 8.775000e+01
+5 9657     1.065500e+02 -2.992200e+02
+11 9657     -1.132900e+02 -3.898900e+02
+14 9657     2.419000e+01 -3.896900e+02
+1 9658     8.618700e+02 4.423600e+02
+14 9658     7.264500e+02 -1.756100e+02
+1 9659     5.203101e+02 4.419400e+02
+7 9659     -8.520001e+01 5.516700e+02
+1 9660     5.294600e+02 4.417900e+02
+2 9660     -1.532400e+02 2.284400e+02
+6 9660     -3.078900e+02 5.155400e+02
+7 9660     -7.791998e+01 5.544500e+02
+8 9660     -4.604999e+01 1.756800e+02
+12 9660     -1.395600e+02 4.960200e+02
+14 9660     4.598800e+02 -2.599800e+02
+1 9661     -5.964001e+01 4.414100e+02
+10 9661     -6.026200e+02 4.986100e+02
+15 9661     -6.097800e+02 5.397900e+02
+1 9662     -5.964001e+01 4.414100e+02
+10 9662     -6.026200e+02 4.986100e+02
+15 9662     -6.097800e+02 5.397900e+02
+1 9663     3.643199e+02 4.396100e+02
+3 9663     -4.146600e+02 -1.501500e+02
+6 9663     -4.613000e+02 4.335600e+02
+7 9663     -2.140100e+02 4.983700e+02
+12 9663     -2.876700e+02 4.284900e+02
+1 9664     2.368000e+02 4.371700e+02
+5 9664     2.890900e+02 -2.573700e+02
+12 9664     -4.092400e+02 3.721600e+02
+1 9665     5.836200e+02 4.372000e+02
+6 9665     -2.582900e+02 5.352400e+02
+14 9665     5.065699e+02 -2.493800e+02
+1 9666     3.726600e+02 4.367200e+02
+6 9666     -4.523600e+02 4.346600e+02
+7 9666     -2.065500e+02 4.987600e+02
+1 9667     4.491998e+01 4.356700e+02
+2 9667     -5.708800e+02 7.679999e+01
+7 9667     -4.988500e+02 3.814800e+02
+10 9667     -4.797500e+02 5.318500e+02
+15 9667     -4.692600e+02 5.811200e+02
+1 9668     6.271700e+02 4.332900e+02
+5 9668     6.393000e+02 -1.600800e+02
+14 9668     5.440500e+02 -2.415000e+02
+1 9669     6.241000e+02 4.323800e+02
+5 9669     6.366899e+02 -1.614800e+02
+6 9669     -2.210800e+02 5.483100e+02
+12 9669     -5.495001e+01 5.220000e+02
+14 9669     5.416400e+02 -2.431300e+02
+1 9670     5.815900e+02 4.322900e+02
+6 9670     -2.579300e+02 5.292700e+02
+1 9671     3.220001e+01 4.314100e+02
+10 9671     -4.930500e+02 5.219200e+02
+11 9671     -1.241100e+02 -4.035100e+02
+14 9671     1.046997e+01 -4.064900e+02
+15 9671     -4.843900e+02 5.695100e+02
+1 9672     5.817300e+02 4.302300e+02
+6 9672     -2.567100e+02 5.268100e+02
+12 9672     -8.947998e+01 5.039400e+02
+1 9673     3.610800e+02 4.285000e+02
+2 9673     -2.812000e+02 1.681800e+02
+7 9673     -2.132500e+02 4.872200e+02
+14 9673     3.171600e+02 -3.186900e+02
+1 9674     -2.037900e+02 4.261600e+02
+5 9674     -1.494700e+02 -3.810700e+02
+7 9674     -7.422000e+02 2.748200e+02
+10 9674     -7.682700e+02 4.232300e+02
+14 9674     -2.300900e+02 -4.778101e+02
+15 9674     -7.969400e+02 4.488700e+02
+1 9675     5.144900e+02 4.257200e+02
+12 9675     -1.457400e+02 4.739500e+02
+1 9676     3.946899e+02 4.253400e+02
+14 9676     3.474000e+02 -3.108300e+02
+1 9677     2.358199e+02 4.244700e+02
+5 9677     2.900699e+02 -2.707400e+02
+6 9677     -5.836700e+02 3.496600e+02
+7 9677     -3.204700e+02 4.402900e+02
+12 9677     -4.050700e+02 3.578900e+02
+14 9677     2.048300e+02 -3.573800e+02
+1 9678     -5.640997e+01 4.233100e+02
+7 9678     -5.921400e+02 3.308900e+02
+8 9678     -4.710600e+02 8.250000e+00
+1 9679     1.433000e+02 4.227900e+02
+2 9679     -4.719800e+02 9.446997e+01
+7 9679     -4.030900e+02 4.052800e+02
+10 9679     -3.653300e+02 5.546000e+02
+1 9680     -4.009998e+01 4.227700e+02
+10 9680     -5.717100e+02 4.840700e+02
+15 9680     -5.751500e+02 5.230000e+02
+1 9681     4.378003e+01 4.222700e+02
+2 9681     -5.684400e+02 6.052002e+01
+7 9681     -4.952000e+02 3.680800e+02
+11 9681     -1.126700e+02 -4.091300e+02
+15 9681     -4.642900e+02 5.628400e+02
+1 9682     6.286600e+02 4.211600e+02
+14 9682     5.486000e+02 -2.524400e+02
+1 9683     -1.177002e+01 4.206800e+02
+7 9683     -5.466800e+02 3.456500e+02
+10 9683     -5.372100e+02 4.926700e+02
+14 9683     -3.056000e+01 -4.302000e+02
+1 9684     -1.196900e+02 4.192700e+02
+7 9684     -6.570100e+02 2.996800e+02
+15 9684     -6.809600e+02 4.797900e+02
+1 9685     6.226899e+02 4.196600e+02
+6 9685     -2.169900e+02 5.335900e+02
+7 9685     3.250000e+00 5.632200e+02
+1 9686     7.273600e+02 4.193600e+02
+5 9686     7.273900e+02 -1.486200e+02
+6 9686     -1.288100e+02 5.782700e+02
+14 9686     6.295601e+02 -2.282800e+02
+1 9687     6.354200e+02 4.188800e+02
+2 9687     -6.798999e+01 2.330200e+02
+7 9687     1.279999e+01 5.659900e+02
+13 9687     3.857900e+02 1.621900e+02
+14 9687     5.549100e+02 -2.528400e+02
+1 9688     6.354200e+02 4.188800e+02
+2 9688     -6.798999e+01 2.330200e+02
+7 9688     1.279999e+01 5.659900e+02
+13 9688     3.857900e+02 1.621900e+02
+14 9688     5.549100e+02 -2.528400e+02
+1 9689     6.197800e+02 4.165700e+02
+5 9689     6.366000e+02 -1.773700e+02
+1 9690     3.490200e+02 4.148100e+02
+2 9690     -2.870400e+02 1.491400e+02
+5 9690     3.970300e+02 -2.507600e+02
+6 9690     -4.656600e+02 3.969900e+02
+7 9690     -2.187800e+02 4.704000e+02
+14 9690     3.095300e+02 -3.357000e+02
+1 9691     7.558500e+02 4.127500e+02
+14 9691     6.542300e+02 -2.267400e+02
+1 9692     7.558500e+02 4.127500e+02
+6 9692     -1.033300e+02 5.836600e+02
+14 9692     6.542300e+02 -2.267400e+02
+1 9693     3.207100e+02 4.108100e+02
+7 9693     -2.418300e+02 4.572500e+02
+1 9694     6.176500e+02 4.100300e+02
+3 9694     -2.183400e+02 -1.120500e+02
+6 9694     -2.171800e+02 5.208500e+02
+12 9694     -5.147998e+01 4.967300e+02
+1 9695     6.176500e+02 4.100300e+02
+6 9695     -2.171800e+02 5.208500e+02
+12 9695     -5.147998e+01 4.967300e+02
+1 9696     6.251200e+02 4.098700e+02
+6 9696     -2.107100e+02 5.240100e+02
+12 9696     -4.503003e+01 4.993100e+02
+1 9697     6.301400e+02 4.096400e+02
+6 9697     -2.061000e+02 5.261500e+02
+12 9697     -4.026001e+01 5.013700e+02
+1 9698     7.524900e+02 4.086400e+02
+14 9698     6.527900e+02 -2.313500e+02
+1 9699     7.612700e+02 4.086700e+02
+5 9699     7.588400e+02 -1.500100e+02
+6 9699     -9.695001e+01 5.815600e+02
+14 9699     6.599100e+02 -2.290300e+02
+1 9700     7.866200e+02 4.073400e+02
+14 9700     6.800000e+02 -2.240200e+02
+1 9701     4.864000e+02 4.067400e+02
+12 9701     -1.628100e+02 4.434800e+02
+1 9702     6.178400e+02 4.068500e+02
+6 9702     -2.166100e+02 5.170400e+02
+9 9702     -2.155600e+02 2.594100e+02
+1 9703     1.904600e+02 4.062100e+02
+2 9703     -4.234500e+02 8.989001e+01
+12 9703     -4.424800e+02 3.175400e+02
+1 9704     8.143900e+02 4.054200e+02
+14 9704     7.024900e+02 -2.182500e+02
+1 9705     -6.251001e+01 4.035500e+02
+5 9705     3.200073e-01 -3.704200e+02
+7 9705     -5.902900e+02 3.081700e+02
+10 9705     -5.894400e+02 4.522600e+02
+15 9705     -5.940900e+02 4.868300e+02
+1 9706     1.753900e+02 4.031500e+02
+5 9706     2.360699e+02 -3.086200e+02
+1 9707     7.316801e+02 4.012400e+02
+14 9707     6.386100e+02 -2.435100e+02
+1 9708     4.788700e+02 3.995700e+02
+3 9708     -3.143100e+02 -1.597800e+02
+7 9708     -1.050800e+02 5.000600e+02
+12 9708     -1.668800e+02 4.331800e+02
+1 9709     4.788700e+02 3.995700e+02
+3 9709     -3.143100e+02 -1.597800e+02
+5 9709     5.178000e+02 -2.310600e+02
+6 9709     -3.359800e+02 4.452500e+02
+7 9709     -1.050800e+02 5.000600e+02
+8 9709     -6.623999e+01 1.309200e+02
+9 9709     -2.984400e+02 2.174300e+02
+11 9709     2.563500e+02 -3.286300e+02
+12 9709     -1.668800e+02 4.331800e+02
+14 9709     4.279399e+02 -3.133700e+02
+1 9710     6.367400e+02 3.979100e+02
+5 9710     6.561700e+02 -1.916400e+02
+6 9710     -1.972300e+02 5.170600e+02
+9 9710     -2.017400e+02 2.575100e+02
+11 9710     3.794000e+02 -2.915400e+02
+12 9710     -3.233002e+01 4.926800e+02
+13 9710     3.899500e+02 1.477300e+02
+14 9710     5.616300e+02 -2.718300e+02
+1 9711     6.125900e+02 3.969600e+02
+7 9711     2.809998e+00 5.403900e+02
+1 9712     2.334900e+02 3.929000e+02
+2 9712     -3.807700e+02 8.865002e+01
+7 9712     -3.116400e+02 4.093300e+02
+14 9712     2.089399e+02 -3.905000e+02
+1 9713     1.477700e+02 3.889200e+02
+7 9713     -3.866200e+02 3.740300e+02
+1 9714     8.023199e+02 3.890000e+02
+6 9714     -5.676001e+01 5.778600e+02
+1 9715     1.675200e+02 3.876100e+02
+7 9715     -3.684000e+02 3.803600e+02
+11 9715     1.590027e+00 -4.120600e+02
+14 9715     1.480000e+02 -4.147900e+02
+15 9715     -2.894700e+02 5.759100e+02
+1 9716     7.666300e+02 3.854900e+02
+6 9716     -8.326001e+01 5.591700e+02
+1 9717     7.666300e+02 3.854900e+02
+6 9717     -8.326001e+01 5.591700e+02
+12 9717     7.877002e+01 5.252500e+02
+1 9718     7.355699e+02 3.841000e+02
+5 9718     7.450601e+02 -1.794200e+02
+6 9718     -1.067300e+02 5.457300e+02
+12 9718     5.589001e+01 5.141900e+02
+14 9718     6.474200e+02 -2.579900e+02
+1 9719     1.513000e+01 3.820500e+02
+10 9719     -4.873700e+02 4.539000e+02
+1 9720     1.513000e+01 3.820500e+02
+10 9720     -4.873700e+02 4.539000e+02
+1 9721     6.090601e+02 3.811900e+02
+6 9721     -2.127100e+02 4.855900e+02
+1 9722     6.781899e+02 3.808800e+02
+2 9722     -2.556000e+01 2.070700e+02
+6 9722     -1.532500e+02 5.164200e+02
+7 9722     5.834998e+01 5.458200e+02
+9 9722     -1.717300e+02 2.528500e+02
+14 9722     6.013400e+02 -2.767300e+02
+1 9723     6.781899e+02 3.808800e+02
+7 9723     5.834998e+01 5.458200e+02
+1 9724     7.511600e+02 3.790900e+02
+6 9724     -9.276001e+01 5.467600e+02
+11 9724     4.734100e+02 -2.799700e+02
+12 9724     6.953003e+01 5.140200e+02
+1 9725     5.011600e+02 3.763800e+02
+7 9725     -7.929999e+01 4.865100e+02
+14 9725     4.527000e+02 -3.306100e+02
+1 9726     8.196997e+01 3.743500e+02
+14 9726     6.609998e+01 -4.542300e+02
+15 9726     -3.917700e+02 5.169000e+02
+1 9727     5.119500e+02 3.727700e+02
+7 9727     -6.939001e+01 4.866600e+02
+1 9728     8.727002e+01 3.708300e+02
+7 9728     -4.367300e+02 3.331600e+02
+14 9728     7.179999e+01 -4.565800e+02
+15 9728     -3.836500e+02 5.150900e+02
+1 9729     6.371200e+02 3.689300e+02
+2 9729     -5.065997e+01 1.843400e+02
+14 9729     5.706200e+02 -2.994000e+02
+1 9730     6.090000e+02 3.676800e+02
+7 9730     9.179993e+00 5.130900e+02
+1 9731     5.865900e+02 3.670100e+02
+7 9731     -8.130005e+00 5.055000e+02
+1 9732     7.133000e+02 3.660800e+02
+14 9732     6.344600e+02 -2.809300e+02
+1 9733     -8.691998e+01 3.595000e+02
+7 9733     -5.968600e+02 2.536600e+02
+14 9733     -9.978003e+01 -5.202500e+02
+1 9734     6.913600e+02 3.574100e+02
+12 9734     2.781000e+01 4.699600e+02
+1 9735     8.749700e+02 3.505400e+02
+12 9735     2.676801e+02 5.901500e+02
+1 9736     -3.109300e+02 3.301400e+02
+5 9736     -2.470900e+02 -5.178300e+02
+7 9736     -8.103200e+02 1.312200e+02
+13 9736     -3.124100e+02 -1.580700e+02
+1 9737     8.783400e+02 3.296100e+02
+2 9737     2.669800e+02 3.284800e+02
+6 9737     1.711400e+02 5.867500e+02
+1 9738     8.783400e+02 3.296100e+02
+2 9738     2.669800e+02 3.284800e+02
+6 9738     1.711400e+02 5.867500e+02
+1 9739     -2.920500e+02 3.245800e+02
+7 9739     -7.858000e+02 1.344100e+02
+1 9740     -1.281100e+02 3.243200e+02
+7 9740     -6.161600e+02 2.052100e+02
+14 9740     -1.211200e+02 -5.705601e+02
+1 9741     -1.043900e+02 3.174400e+02
+7 9741     -5.882500e+02 2.089800e+02
+1 9742     8.735601e+02 3.048200e+02
+12 9742     2.906801e+02 5.514200e+02
+1 9743     8.807900e+02 3.052200e+02
+6 9743     1.877700e+02 5.657900e+02
+12 9743     2.974700e+02 5.549200e+02
+1 9744     8.807900e+02 3.052200e+02
+6 9744     1.877700e+02 5.657900e+02
+12 9744     2.974700e+02 5.549200e+02
+1 9745     4.908500e+02 2.999200e+02
+6 9745     -2.460700e+02 3.491400e+02
+11 9745     2.976200e+02 -4.083100e+02
+1 9746     4.439200e+02 2.993700e+02
+11 9746     2.586600e+02 -4.209200e+02
+13 9746     2.987100e+02 2.552002e+01
+1 9747     5.023101e+02 2.893100e+02
+6 9747     -2.255500e+02 3.451900e+02
+7 9747     -3.465997e+01 4.153300e+02
+10 9747     7.126001e+01 5.451800e+02
+11 9747     3.106700e+02 -4.141300e+02
+1 9748     8.668900e+02 2.769500e+02
+3 9748     1.424100e+02 -4.287000e+01
+1 9749     4.414301e+02 2.634300e+02
+6 9749     -2.522100e+02 2.899200e+02
+10 9749     2.233002e+01 4.944200e+02
+14 9749     4.704000e+02 -4.562200e+02
+15 9749     1.163600e+02 5.479500e+02
+1 9750     5.227800e+02 2.602600e+02
+6 9750     -1.787200e+02 3.292800e+02
+10 9750     1.062800e+02 5.221400e+02
+14 9750     5.442300e+02 -4.339900e+02
+15 9750     2.151700e+02 5.833000e+02
+1 9751     4.606600e+02 2.513000e+02
+5 9751     5.845900e+02 -3.824100e+02
+6 9751     -2.228800e+02 2.892900e+02
+11 9751     2.891600e+02 -4.585800e+02
+12 9751     -8.173999e+01 2.970500e+02
+13 9751     3.360699e+02 -5.590027e+00
+14 9751     4.959301e+02 -4.624399e+02
+15 9751     1.450800e+02 5.422800e+02
+1 9752     4.200900e+02 2.493900e+02
+5 9752     5.496000e+02 -3.959100e+02
+6 9752     -2.559600e+02 2.660300e+02
+14 9752     4.620400e+02 -4.765601e+02
+15 9752     9.937000e+01 5.211600e+02
+1 9753     4.200900e+02 2.493900e+02
+6 9753     -2.559600e+02 2.660300e+02
+10 9753     8.479980e+00 4.714400e+02
+11 9753     2.569000e+02 -4.705200e+02
+12 9753     -1.157700e+02 2.778500e+02
+15 9753     9.937000e+01 5.211600e+02
+1 9754     6.639900e+02 2.459600e+02
+12 9754     9.215002e+01 3.765800e+02
+1 9755     4.293400e+02 2.446200e+02
+10 9755     1.958002e+01 4.695800e+02
+1 9756     4.597100e+02 2.409500e+02
+6 9756     -2.132400e+02 2.791900e+02
+1 9757     8.390500e+02 2.400300e+02
+10 9757     4.424700e+02 6.179600e+02
+1 9758     -4.210200e+02 2.396800e+02
+7 9758     -8.686100e+02 -4.539978e+00
+13 9758     -3.584300e+02 -2.666000e+02
+1 9759     6.703400e+02 2.338500e+02
+10 9759     2.632300e+02 5.493200e+02
+1 9760     -3.655200e+02 2.321400e+02
+13 9760     -3.035900e+02 -2.558200e+02
+1 9761     8.376200e+02 2.304600e+02
+2 9761     2.791801e+02 2.336300e+02
+6 9761     1.835600e+02 4.757600e+02
+10 9761     4.446801e+02 6.080800e+02
+1 9762     4.186100e+02 2.290800e+02
+10 9762     1.650000e+01 4.492700e+02
+1 9763     8.762100e+02 2.289500e+02
+3 9763     1.758000e+02 -7.090002e+01
+6 9763     2.260400e+02 4.950800e+02
+7 9763     3.148101e+02 5.036300e+02
+9 9763     1.268500e+02 3.063100e+02
+10 9763     4.845100e+02 6.198600e+02
+12 9763     3.328600e+02 4.885400e+02
+1 9764     8.291998e+01 2.262700e+02
+10 9764     -3.343800e+02 3.124100e+02
+1 9765     -2.889500e+02 2.229500e+02
+7 9765     -7.140900e+02 4.244000e+01
+1 9766     4.255900e+02 2.213700e+02
+10 9766     2.715997e+01 4.438000e+02
+1 9767     5.067700e+02 2.189500e+02
+10 9767     1.105300e+02 4.720900e+02
+1 9768     8.696899e+02 2.131700e+02
+2 9768     3.194399e+02 2.393100e+02
+3 9768     1.782400e+02 -8.554999e+01
+6 9768     2.285800e+02 4.773300e+02
+9 9768     1.291400e+02 2.935700e+02
+10 9768     4.835800e+02 6.015900e+02
+1 9769     3.786400e+02 2.124200e+02
+6 9769     -2.540800e+02 2.100100e+02
+10 9769     -1.559003e+01 4.158200e+02
+1 9770     4.385699e+02 2.124300e+02
+10 9770     4.620001e+01 4.386400e+02
+11 9770     2.847000e+02 -4.992000e+02
+1 9771     3.639200e+02 2.118800e+02
+6 9771     -2.664800e+02 2.018800e+02
+10 9771     -3.058002e+01 4.093000e+02
+11 9771     2.209700e+02 -5.191000e+02
+1 9772     5.224000e+02 2.113400e+02
+15 9772     2.422500e+02 5.226100e+02
+1 9773     5.348500e+02 2.096100e+02
+10 9773     1.428000e+02 4.734700e+02
+1 9774     8.060100e+02 2.097200e+02
+7 9774     2.621700e+02 4.624600e+02
+1 9775     5.857000e+02 2.043700e+02
+10 9775     1.951899e+02 4.874400e+02
+1 9776     8.631300e+02 2.028600e+02
+2 9776     3.185100e+02 2.280600e+02
+3 9776     1.779500e+02 -9.656000e+01
+6 9776     2.276300e+02 4.648500e+02
+7 9776     3.138500e+02 4.783300e+02
+9 9776     1.287700e+02 2.842200e+02
+10 9776     4.814600e+02 5.886400e+02
+13 9776     6.802300e+02 7.504999e+01
+1 9777     8.631300e+02 2.028600e+02
+2 9777     3.185100e+02 2.280600e+02
+6 9777     2.276300e+02 4.648500e+02
+7 9777     3.138500e+02 4.783300e+02
+9 9777     1.287700e+02 2.842200e+02
+10 9777     4.814600e+02 5.886400e+02
+11 9777     6.359900e+02 -3.933000e+02
+13 9777     6.802300e+02 7.504999e+01
+1 9778     7.959900e+02 2.022100e+02
+6 9778     1.534800e+02 4.273400e+02
+10 9778     4.124301e+02 5.634800e+02
+12 9778     2.675100e+02 4.221400e+02
+1 9779     5.550500e+02 1.976400e+02
+6 9779     -8.938000e+01 2.890300e+02
+1 9780     3.947900e+02 1.959000e+02
+6 9780     -2.223600e+02 2.034900e+02
+1 9781     5.774600e+02 1.961900e+02
+10 9781     1.909100e+02 4.755000e+02
+1 9782     8.546100e+02 1.933600e+02
+3 9782     1.747900e+02 -1.085100e+02
+6 9782     2.234400e+02 4.508200e+02
+10 9782     4.760400e+02 5.755600e+02
+1 9783     6.930100e+02 1.871000e+02
+6 9783     3.066998e+01 3.477000e+02
+1 9784     4.440500e+02 1.860300e+02
+10 9784     6.384003e+01 4.135400e+02
+1 9785     -1.664200e+02 1.839100e+02
+15 9785     -5.963400e+02 1.503500e+02
+1 9786     1.456700e+02 1.832500e+02
+7 9786     -2.249700e+02 2.183900e+02
+10 9786     -2.125900e+02 2.950100e+02
+1 9787     1.521000e+02 1.819400e+02
+4 9787     -1.798600e+02 -3.269200e+02
+5 9787     4.475601e+02 -5.286100e+02
+6 9787     -2.930800e+02 1.059400e+02
+8 9787     -4.796997e+01 -8.980011e+00
+10 9787     -2.054500e+02 2.961700e+02
+12 9787     -2.252000e+02 1.536400e+02
+15 9787     -1.585700e+02 3.152400e+02
+1 9788     -2.764001e+01 1.785700e+02
+2 9788     -4.263900e+02 -1.710200e+02
+13 9788     1.485999e+01 -1.973100e+02
+1 9789     8.227400e+02 1.747200e+02
+10 9789     4.506600e+02 5.454200e+02
+1 9790     8.227400e+02 1.747200e+02
+10 9790     4.506600e+02 5.454200e+02
+1 9791     2.864399e+02 1.727800e+02
+15 9791     3.501001e+01 3.767200e+02
+1 9792     1.026700e+02 1.674700e+02
+7 9792     -2.524000e+02 1.882600e+02
+10 9792     -2.491300e+02 2.605000e+02
+15 9792     -2.105000e+02 2.725500e+02
+1 9793     3.694700e+02 1.652700e+02
+10 9793     5.138000e+01 3.683800e+02
+14 9793     6.372300e+02 -5.453900e+02
+15 9793     1.370800e+02 4.060900e+02
+1 9794     3.694700e+02 1.652700e+02
+10 9794     5.138000e+01 3.683800e+02
+14 9794     6.372300e+02 -5.453900e+02
+15 9794     1.370800e+02 4.060900e+02
+1 9795     4.088500e+02 1.645300e+02
+15 9795     1.859700e+02 4.251400e+02
+1 9796     9.106000e+01 1.630600e+02
+6 9796     -3.254500e+02 5.533002e+01
+12 9796     -2.662800e+02 1.089000e+02
+15 9796     -2.220200e+02 2.620700e+02
+1 9797     4.006000e+02 1.627800e+02
+15 9797     1.774600e+02 4.184300e+02
+1 9798     4.006000e+02 1.627800e+02
+10 9798     8.583002e+01 3.784300e+02
+15 9798     1.774600e+02 4.184300e+02
+1 9799     2.419800e+02 1.607700e+02
+15 9799     -9.099976e+00 3.400300e+02
+1 9800     1.858600e+02 1.565000e+02
+10 9800     -1.324700e+02 2.862900e+02
+15 9800     -7.984998e+01 3.062700e+02
+1 9801     7.999399e+02 1.566700e+02
+10 9801     4.344900e+02 5.186900e+02
+1 9802     1.553003e+01 1.532000e+02
+5 9802     2.248700e+02 -6.173000e+02
+7 9802     -3.723600e+02 1.160200e+02
+10 9802     -3.671100e+02 2.043600e+02
+15 9802     -3.401100e+02 2.042500e+02
+1 9803     8.687500e+02 1.527700e+02
+7 9803     3.376899e+02 4.405600e+02
+1 9804     -2.446700e+02 1.515500e+02
+10 9804     -6.618400e+02 8.878003e+01
+1 9805     6.683500e+02 1.475300e+02
+6 9805     4.848999e+01 3.021000e+02
+1 9806     -1.935500e+02 1.463700e+02
+15 9806     -6.078400e+02 8.735001e+01
+1 9807     1.248700e+02 1.444100e+02
+15 9807     -1.632100e+02 2.568700e+02
+1 9808     8.042600e+02 1.442400e+02
+6 9808     1.966500e+02 3.786000e+02
+7 9808     2.863000e+02 4.093300e+02
+10 9808     4.433300e+02 5.077100e+02
+12 9808     3.066600e+02 3.761900e+02
+15 9808     6.141899e+02 5.754100e+02
+1 9809     4.357000e+02 1.430400e+02
+10 9809     1.311000e+02 3.720600e+02
+1 9810     5.077900e+02 1.431200e+02
+10 9810     1.492900e+02 3.938100e+02
+1 9811     6.101200e+02 1.416700e+02
+10 9811     2.490900e+02 4.317200e+02
+1 9812     4.366400e+02 1.385300e+02
+7 9812     8.370001e+01 3.118500e+02
+10 9812     1.353500e+02 3.673700e+02
+15 9812     2.347200e+02 4.069500e+02
+1 9813     8.752700e+02 1.345100e+02
+6 9813     3.337200e+02 4.291500e+02
+8 9813     4.085000e+02 1.667500e+02
+10 9813     5.352800e+02 5.254100e+02
+1 9814     3.601300e+02 1.299600e+02
+12 9814     8.459003e+01 2.627000e+02
+14 9814     6.668400e+02 -5.800699e+02
+1 9815     1.285400e+02 1.285000e+02
+7 9815     -1.808400e+02 1.796300e+02
+15 9815     -1.400400e+02 2.418000e+02
+1 9816     2.355400e+02 1.278100e+02
+5 9816     6.607800e+02 -5.425900e+02
+6 9816     -4.575000e+01 1.516200e+02
+8 9816     1.423000e+02 6.276001e+01
+12 9816     -1.959003e+01 2.052600e+02
+15 9816     3.510010e+00 2.970200e+02
+1 9817     7.775000e+02 1.281300e+02
+10 9817     4.221200e+02 4.813200e+02
+1 9818     9.223999e+01 1.253900e+02
+10 9818     -2.311300e+02 2.120000e+02
+15 9818     -1.913000e+02 2.176500e+02
+1 9819     4.605601e+02 1.248300e+02
+15 9819     2.696100e+02 4.016500e+02
+1 9820     3.465800e+02 1.227500e+02
+6 9820     4.309998e+01 2.035000e+02
+10 9820     5.415002e+01 3.160700e+02
+15 9820     1.385800e+02 3.447300e+02
+1 9821     8.230100e+02 1.222300e+02
+10 9821     4.711000e+02 4.927900e+02
+1 9822     4.691700e+02 1.203700e+02
+15 9822     2.809900e+02 3.997800e+02
+1 9823     2.146997e+01 1.129200e+02
+10 9823     -3.050200e+02 1.681000e+02
+1 9824     5.965500e+02 1.132000e+02
+10 9824     2.499800e+02 3.973000e+02
+1 9825     1.744700e+02 1.083100e+02
+2 9825     8.651001e+01 8.284998e+01
+3 9825     -4.299988e+00 -2.322600e+02
+4 9825     -2.191800e+02 -4.002100e+02
+5 9825     6.049301e+02 -5.849399e+02
+6 9825     -9.378000e+01 9.528003e+01
+7 9825     -1.166800e+02 1.863300e+02
+8 9825     1.044100e+02 2.376999e+01
+10 9825     -1.183000e+02 2.305800e+02
+13 9825     3.438300e+02 -1.583100e+02
+15 9825     -6.323999e+01 2.403600e+02
+1 9826     6.209100e+02 1.069200e+02
+10 9826     2.765100e+02 3.999200e+02
+15 9826     4.155300e+02 4.436900e+02
+1 9827     4.345400e+02 1.061200e+02
+15 9827     2.500400e+02 3.668600e+02
+1 9828     2.466300e+02 1.057000e+02
+15 9828     3.010999e+01 2.759700e+02
+1 9829     2.447000e+02 1.036500e+02
+5 9829     6.898700e+02 -5.634900e+02
+6 9829     -1.184998e+01 1.378800e+02
+10 9829     -3.795001e+01 2.551000e+02
+12 9829     1.112000e+01 1.916800e+02
+15 9829     2.921997e+01 2.721300e+02
+1 9830     6.391801e+02 9.801999e+01
+15 9830     4.414301e+02 4.415100e+02
+1 9831     7.052300e+02 9.750000e+01
+15 9831     5.167800e+02 4.717600e+02
+1 9832     2.153400e+02 9.678000e+01
+5 9832     6.611899e+02 -5.804800e+02
+7 9832     -6.978998e+01 1.955700e+02
+10 9832     -6.729999e+01 2.357200e+02
+1 9833     -1.547998e+01 9.607999e+01
+7 9833     -3.660400e+02 5.338000e+01
+10 9833     -3.699500e+02 1.287800e+02
+1 9834     -1.547998e+01 9.607999e+01
+7 9834     -3.660400e+02 5.338000e+01
+1 9835     1.493800e+02 9.425000e+01
+7 9835     -1.349100e+02 1.621900e+02
+13 9835     3.268500e+02 -1.776100e+02
+15 9835     -8.916998e+01 2.112200e+02
+1 9836     8.461600e+02 9.466000e+01
+10 9836     5.205800e+02 4.744000e+02
+15 9836     7.034200e+02 5.391800e+02
+1 9837     1.680699e+02 9.151999e+01
+10 9837     -1.169500e+02 2.100700e+02
+1 9838     1.680699e+02 9.151999e+01
+2 9838     9.537000e+01 6.839001e+01
+10 9838     -1.169500e+02 2.100700e+02
+1 9839     6.245100e+02 9.026001e+01
+10 9839     2.873400e+02 3.846700e+02
+1 9840     1.164100e+02 8.862000e+01
+7 9840     -1.674300e+02 1.402200e+02
+10 9840     -1.766900e+02 1.844100e+02
+1 9841     8.553400e+02 8.807001e+01
+2 9841     4.292300e+02 1.898100e+02
+3 9841     2.914000e+02 -1.288100e+02
+7 9841     3.756600e+02 3.948800e+02
+9 9841     2.269399e+02 2.559000e+02
+10 9841     5.323199e+02 4.711900e+02
+11 9841     6.857400e+02 -4.933900e+02
+12 9841     4.273199e+02 3.855700e+02
+15 9841     7.177100e+02 5.359900e+02
+1 9842     2.814600e+02 8.626999e+01
+13 9842     4.446600e+02 -1.391300e+02
+1 9843     5.739500e+02 8.560001e+01
+15 9843     3.733199e+02 3.960200e+02
+1 9844     4.630699e+02 8.356000e+01
+10 9844     1.884900e+02 3.212300e+02
+15 9844     2.980400e+02 3.537000e+02
+1 9845     2.438600e+02 8.281000e+01
+6 9845     7.450012e+00 1.199900e+02
+9 9845     3.809998e+01 1.823100e+02
+10 9845     -2.790997e+01 2.331200e+02
+1 9846     2.661600e+02 8.203000e+01
+3 9846     1.045500e+02 -1.942900e+02
+1 9847     6.067000e+02 8.029001e+01
+10 9847     2.751400e+02 3.673400e+02
+15 9847     4.142900e+02 4.052100e+02
+1 9848     4.789399e+02 8.004999e+01
+10 9848     2.038300e+02 3.233700e+02
+15 9848     3.168600e+02 3.566100e+02
+1 9849     4.789399e+02 8.004999e+01
+15 9849     3.168600e+02 3.566100e+02
+1 9850     5.785300e+02 7.901999e+01
+15 9850     3.815100e+02 3.898500e+02
+1 9851     4.891200e+02 7.845001e+01
+15 9851     3.285601e+02 3.598300e+02
+1 9852     4.809200e+02 7.751001e+01
+10 9852     2.070699e+02 3.216500e+02
+1 9853     4.809200e+02 7.751001e+01
+10 9853     2.070699e+02 3.216500e+02
+1 9854     2.695699e+02 7.621002e+01
+5 9854     7.358900e+02 -5.837100e+02
+6 9854     3.664001e+01 1.293700e+02
+10 9854     2.130005e+00 2.364900e+02
+12 9854     5.873999e+01 1.819800e+02
+15 9854     7.609998e+01 2.509100e+02
+1 9855     8.804500e+02 7.466998e+01
+15 9855     7.539399e+02 5.319700e+02
+1 9856     6.209003e+01 6.509003e+01
+10 9856     -2.289700e+02 1.351200e+02
+15 9856     -1.902200e+02 1.280500e+02
+1 9857     1.936801e+02 6.506000e+01
+6 9857     -3.056000e+01 7.189001e+01
+1 9858     8.614200e+02 6.410999e+01
+6 9858     3.588500e+02 3.596000e+02
+7 9858     3.900699e+02 3.781700e+02
+8 9858     4.280400e+02 1.170700e+02
+9 9858     2.430300e+02 2.446900e+02
+10 9858     5.474100e+02 4.497100e+02
+11 9858     7.015300e+02 -5.127700e+02
+12 9858     4.467300e+02 3.679700e+02
+15 9858     7.366400e+02 5.102100e+02
+1 9859     3.187800e+02 6.364001e+01
+6 9859     8.912000e+01 1.460100e+02
+1 9860     8.088600e+02 6.345001e+01
+15 9860     6.578600e+02 4.809000e+02
+1 9861     8.745500e+02 6.185999e+01
+3 9861     3.215500e+02 -1.342000e+02
+6 9861     3.728800e+02 3.658200e+02
+7 9861     4.016200e+02 3.818900e+02
+10 9861     5.619700e+02 4.521700e+02
+15 9861     7.531200e+02 5.139200e+02
+1 9862     7.936300e+02 6.059003e+01
+15 9862     6.407600e+02 4.701300e+02
+1 9863     7.936300e+02 6.059003e+01
+6 9863     2.334700e+02 2.953200e+02
+15 9863     6.407600e+02 4.701300e+02
+1 9864     2.354301e+02 6.001001e+01
+3 9864     1.003900e+02 -2.222700e+02
+6 9864     1.878998e+01 9.487000e+01
+10 9864     -2.615997e+01 2.055100e+02
+12 9864     3.714001e+01 1.487200e+02
+15 9864     4.301001e+01 2.140000e+02
+1 9865     4.714000e+02 5.915002e+01
+15 9865     3.213800e+02 3.280000e+02
+1 9866     2.343500e+02 5.713000e+01
+15 9866     4.289001e+01 2.099300e+02
+1 9867     8.799000e+02 5.490002e+01
+6 9867     3.821700e+02 3.626200e+02
+8 9867     4.445400e+02 1.210400e+02
+15 9867     7.624500e+02 5.086200e+02
+1 9868     2.842200e+02 5.215997e+01
+2 9868     2.419600e+02 1.075300e+02
+10 9868     2.887000e+01 2.177300e+02
+15 9868     1.076100e+02 2.291000e+02
+1 9869     4.348600e+02 5.159003e+01
+10 9869     1.780200e+02 2.776300e+02
+15 9869     2.848400e+02 3.020100e+02
+1 9870     8.685400e+02 4.866998e+01
+10 9870     5.606300e+02 4.370800e+02
+12 9870     4.610100e+02 3.593800e+02
+15 9870     7.519900e+02 4.958400e+02
+1 9871     3.660200e+02 4.772998e+01
+15 9871     2.079500e+02 2.641800e+02
+1 9872     3.804200e+02 4.723999e+01
+10 9872     1.276100e+02 2.520400e+02
+15 9872     2.248600e+02 2.707000e+02
+1 9873     5.130601e+02 4.716998e+01
+15 9873     3.708101e+02 3.329300e+02
+1 9874     2.959200e+02 4.615002e+01
+9 9874     9.976001e+01 1.848000e+02
+10 9874     4.396997e+01 2.163900e+02
+1 9875     1.876200e+02 4.540997e+01
+7 9875     -6.842999e+01 1.397400e+02
+13 9875     3.877900e+02 -2.002600e+02
+15 9875     -1.001001e+01 1.712300e+02
+1 9876     5.928003e+01 4.423999e+01
+10 9876     -2.202400e+02 1.116800e+02
+1 9877     5.928003e+01 4.423999e+01
+7 9877     -2.015700e+02 7.359003e+01
+15 9877     -1.802600e+02 1.010000e+02
+1 9878     5.928003e+01 4.423999e+01
+6 9878     -1.857200e+02 -5.115002e+01
+10 9878     -2.202400e+02 1.116800e+02
+12 9878     -1.669500e+02 6.929993e+00
+1 9879     5.928003e+01 4.423999e+01
+6 9879     -1.857200e+02 -5.115002e+01
+12 9879     -1.669500e+02 6.929993e+00
+1 9880     6.244000e+01 4.303003e+01
+10 9880     -2.164200e+02 1.117200e+02
+1 9881     6.244000e+01 4.303003e+01
+10 9881     -2.164200e+02 1.117200e+02
+1 9882     8.356899e+02 4.312000e+01
+8 9882     4.163000e+02 9.075000e+01
+13 9882     7.480200e+02 -3.954999e+01
+15 9882     7.146700e+02 4.732800e+02
+1 9883     4.951500e+02 4.245001e+01
+15 9883     3.558400e+02 3.192900e+02
+1 9884     7.163000e+01 4.208002e+01
+10 9884     -2.062400e+02 1.149500e+02
+15 9884     -1.637300e+02 1.047200e+02
+1 9885     1.622200e+02 3.983002e+01
+10 9885     -9.760999e+01 1.529500e+02
+1 9886     3.322500e+02 3.981000e+01
+15 9886     1.720800e+02 2.381900e+02
+1 9887     2.610000e+02 3.785999e+01
+2 9887     2.346500e+02 8.721002e+01
+10 9887     1.122998e+01 1.933200e+02
+15 9887     8.690002e+01 2.000600e+02
+1 9888     2.610000e+02 3.785999e+01
+2 9888     2.346500e+02 8.721002e+01
+10 9888     1.122998e+01 1.933200e+02
+12 9888     7.859003e+01 1.435600e+02
+15 9888     8.690002e+01 2.000600e+02
+1 9889     4.421600e+02 3.665997e+01
+15 9889     3.017000e+02 2.874400e+02
+1 9890     3.274200e+02 3.450000e+01
+15 9890     1.693300e+02 2.294700e+02
+1 9891     3.858400e+02 3.203998e+01
+10 9891     1.400300e+02 2.380800e+02
+15 9891     2.398600e+02 2.547700e+02
+1 9892     2.455500e+02 3.171002e+01
+7 9892     -8.979980e+00 1.546700e+02
+12 9892     6.475000e+01 1.289900e+02
+1 9893     3.745000e+02 2.865997e+01
+15 9893     2.281100e+02 2.453900e+02
+1 9894     4.444100e+02 2.633002e+01
+10 9894     1.982500e+02 2.552400e+02
+1 9895     2.773900e+02 2.494000e+01
+15 9895     1.137500e+02 1.928600e+02
+1 9896     2.350100e+02 2.406000e+01
+2 9896     2.225200e+02 6.359998e+01
+6 9896     4.598999e+01 6.275000e+01
+7 9896     -1.301001e+01 1.432700e+02
+8 9896     2.130000e+02 4.160004e+00
+9 9896     7.488000e+01 1.464400e+02
+10 9896     -1.003998e+01 1.677100e+02
+12 9896     6.196997e+01 1.157100e+02
+15 9896     6.209003e+01 1.698700e+02
+1 9897     4.428400e+02 2.253003e+01
+10 9897     1.982600e+02 2.515300e+02
+1 9898     4.459399e+02 2.220001e+01
+10 9898     2.013500e+02 2.518600e+02
+15 9898     3.129900e+02 2.718600e+02
+1 9899     8.699800e+02 1.963000e+01
+6 9899     3.915800e+02 3.251500e+02
+10 9899     5.725200e+02 4.081500e+02
+15 9899     7.669700e+02 4.617500e+02
+1 9900     8.699800e+02 1.963000e+01
+10 9900     5.725200e+02 4.081500e+02
+1 9901     6.502200e+02 1.921997e+01
+15 9901     4.981500e+02 3.534600e+02
+1 9902     -1.717800e+02 1.776001e+01
+2 9902     -3.959200e+02 -3.590800e+02
+6 9902     -5.743600e+02 -3.200100e+02
+7 9902     -4.641100e+02 -8.629999e+01
+8 9902     -2.775500e+02 -3.151600e+02
+15 9902     -4.965300e+02 -6.415997e+01
+1 9903     -6.260010e+00 1.481000e+01
+10 9903     -2.788800e+02 5.115997e+01
+15 9903     -2.481600e+02 2.963000e+01
+1 9904     8.379100e+02 1.507001e+01
+7 9904     3.883101e+02 3.299500e+02
+8 9904     4.295300e+02 7.464999e+01
+9 9904     2.470000e+02 2.008100e+02
+1 9905     8.298800e+02 1.428003e+01
+2 9905     4.436600e+02 1.174500e+02
+6 9905     3.526100e+02 2.974200e+02
+15 9905     7.212300e+02 4.362300e+02
+1 9906     2.118300e+02 1.401001e+01
+2 9906     2.083400e+02 4.219000e+01
+10 9906     -3.056000e+01 1.472400e+02
+15 9906     3.821997e+01 1.454100e+02
+1 9907     4.494399e+02 1.271997e+01
+15 9907     3.221300e+02 2.616100e+02
+1 9908     3.482800e+02 1.078998e+01
+10 9908     1.130700e+02 2.009800e+02
+15 9908     2.068700e+02 2.107100e+02
+1 9909     2.798900e+02 9.299988e+00
+10 9909     4.447998e+01 1.713900e+02
+15 9909     1.258200e+02 1.746300e+02
+1 9910     8.409200e+02 9.320007e+00
+6 9910     3.666200e+02 2.993500e+02
+15 9910     7.370000e+02 4.358400e+02
+1 9911     6.395100e+02 7.500000e+00
+15 9911     4.921700e+02 3.345100e+02
+1 9912     2.910900e+02 6.419983e+00
+7 9912     4.435999e+01 1.519300e+02
+15 9912     1.402100e+02 1.767800e+02
+1 9913     4.615500e+02 4.719971e+00
+15 9913     3.397200e+02 2.586000e+02
+1 9914     2.232600e+02 3.080017e+00
+7 9914     -1.378003e+01 1.196100e+02
+10 9914     -1.350000e+01 1.409400e+02
+15 9914     5.825000e+01 1.381400e+02
+1 9915     2.516600e+02 3.130005e+00
+2 9915     2.516000e+02 5.508002e+01
+3 9915     1.560500e+02 -2.540900e+02
+6 9915     7.610999e+01 5.444000e+01
+7 9915     1.165997e+01 1.325400e+02
+10 9915     1.658002e+01 1.526800e+02
+12 9915     9.228003e+01 1.063100e+02
+15 9915     9.373999e+01 1.531400e+02
+1 9916     4.577300e+02 2.989990e+00
+10 9916     2.205000e+02 2.370200e+02
+15 9916     3.362400e+02 2.541200e+02
+1 9917     7.859800e+02 2.809998e+00
+15 9917     6.732500e+02 4.013800e+02
+1 9918     4.471400e+02 1.979980e+00
+10 9918     2.115200e+02 2.315000e+02
+15 9918     3.249900e+02 2.481400e+02
+1 9919     1.251400e+02 7.999878e-01
+6 9919     -6.141998e+01 -3.850000e+01
+12 9919     -4.903998e+01 1.620001e+01
+1 9920     2.022000e+02 1.359985e+00
+3 9920     1.162400e+02 -2.838000e+02
+7 9920     -3.266998e+01 1.083400e+02
+15 9920     3.270001e+01 1.247200e+02
+1 9921     6.330000e+02 8.300171e-01
+10 9921     3.375699e+02 2.969700e+02
+15 9921     4.884700e+02 3.233100e+02
+1 9922     5.028400e+02 -6.599731e-01
+10 9922     2.629500e+02 2.505500e+02
+15 9922     3.870800e+02 2.708600e+02
+1 9923     8.051100e+02 -4.199829e-01
+15 9923     6.980699e+02 4.066900e+02
+1 9924     4.585400e+02 -1.679993e+00
+15 9924     3.394800e+02 2.488600e+02
+1 9925     4.835200e+02 -2.159973e+00
+10 9925     2.464399e+02 2.420300e+02
+15 9925     3.672600e+02 2.605800e+02
+1 9926     2.550601e+02 -4.630005e+00
+2 9926     2.602300e+02 5.065002e+01
+6 9926     8.526001e+01 4.859003e+01
+10 9926     2.433002e+01 1.462800e+02
+15 9926     1.027500e+02 1.451400e+02
+1 9927     1.970400e+02 -4.719971e+00
+2 9927     2.073000e+02 1.771997e+01
+15 9927     2.953998e+01 1.148700e+02
+1 9928     2.294301e+02 -4.869995e+00
+2 9928     2.378600e+02 3.671002e+01
+7 9928     -4.599976e+00 1.154700e+02
+10 9928     -3.270020e+00 1.349800e+02
+15 9928     7.021002e+01 1.312900e+02
+1 9929     2.294301e+02 -4.869995e+00
+2 9929     2.378600e+02 3.671002e+01
+4 9929     -2.907300e+02 -4.745200e+02
+7 9929     -4.599976e+00 1.154700e+02
+10 9929     -3.270020e+00 1.349800e+02
+15 9929     7.021002e+01 1.312900e+02
+1 9930     8.519301e+02 -4.919983e+00
+15 9930     7.567800e+02 4.245400e+02
+1 9931     8.519301e+02 -4.919983e+00
+2 9931     4.744900e+02 1.176500e+02
+15 9931     7.567800e+02 4.245400e+02
+1 9932     2.139301e+02 -6.940002e+00
+2 9932     2.252000e+02 2.622998e+01
+9 9932     7.889001e+01 1.154200e+02
+10 9932     -1.888000e+01 1.263200e+02
+15 9932     5.203998e+01 1.208800e+02
+1 9933     8.432500e+02 -7.219971e+00
+2 9933     4.675100e+02 1.104600e+02
+15 9933     7.477500e+02 4.173400e+02
+1 9934     4.296000e+02 -8.250000e+00
+15 9934     3.103101e+02 2.273800e+02
+1 9935     2.915500e+02 -9.280029e+00
+6 9935     1.203100e+02 6.615997e+01
+10 9935     6.406000e+01 1.569000e+02
+12 9935     1.393300e+02 1.163600e+02
+15 9935     1.493199e+02 1.577300e+02
+1 9936     1.668000e+02 -1.103003e+01
+2 9936     1.797000e+02 -8.469971e+00
+6 9936     -1.229980e+00 -1.654999e+01
+7 9936     -6.102002e+01 8.082001e+01
+8 9936     1.755200e+02 -5.494000e+01
+10 9936     -6.917999e+01 1.015000e+02
+15 9936     -6.159973e+00 9.113000e+01
+1 9937     7.976500e+02 -1.139001e+01
+15 9937     6.941200e+02 3.901500e+02
+1 9938     7.862900e+02 -1.317999e+01
+15 9938     6.811700e+02 3.825900e+02
+1 9939     7.862900e+02 -1.317999e+01
+6 9939     3.210500e+02 2.452900e+02
+10 9939     4.995601e+02 3.438100e+02
+12 9939     4.115200e+02 2.549700e+02
+15 9939     6.811700e+02 3.825900e+02
+1 9940     2.693800e+02 -1.601001e+01
+10 9940     4.435999e+01 1.406400e+02
+15 9940     1.255400e+02 1.384300e+02
+1 9941     2.693800e+02 -1.601001e+01
+2 9941     2.794900e+02 4.825000e+01
+15 9941     1.255400e+02 1.384300e+02
+1 9942     1.480400e+02 -1.660999e+01
+15 9942     -2.785999e+01 7.363000e+01
+1 9943     2.491801e+02 -1.684998e+01
+2 9943     2.633600e+02 3.728003e+01
+15 9943     1.010900e+02 1.266300e+02
+1 9944     2.520601e+02 -1.698999e+01
+15 9944     1.053700e+02 1.282100e+02
+1 9945     3.364399e+02 -1.704999e+01
+10 9945     1.128600e+02 1.675300e+02
+15 9945     2.070000e+02 1.710800e+02
+1 9946     8.531100e+02 -1.866998e+01
+6 9946     3.952900e+02 2.827900e+02
+9 9946     2.748101e+02 1.898400e+02
+13 9946     7.861000e+02 -7.854999e+01
+1 9947     4.184000e+02 -2.035999e+01
+10 9947     1.940100e+02 1.971200e+02
+15 9947     3.037800e+02 2.072800e+02
+1 9948     3.119100e+02 -2.112000e+01
+10 9948     9.002002e+01 1.533600e+02
+15 9948     1.800400e+02 1.539200e+02
+1 9949     1.321600e+02 -2.640997e+01
+7 9949     -8.921002e+01 4.946002e+01
+9 9949     1.857001e+01 4.832001e+01
+15 9949     -4.369000e+01 5.346997e+01
+1 9950     3.901300e+02 -2.662000e+01
+15 9950     2.742100e+02 1.864900e+02
+1 9951     8.212700e+02 -2.788000e+01
+6 9951     3.672300e+02 2.543900e+02
+8 9951     4.352400e+02 3.822000e+01
+9 9951     2.541400e+02 1.633200e+02
+15 9951     7.307400e+02 3.822800e+02
+1 9952     3.283300e+02 -2.900000e+01
+6 9952     1.623600e+02 6.884998e+01
+10 9952     1.102700e+02 1.517000e+02
+12 9952     1.845500e+02 1.171200e+02
+15 9952     2.037400e+02 1.524800e+02
+1 9953     5.000699e+02 -2.904999e+01
+15 9953     3.988101e+02 2.355400e+02
+1 9954     8.470300e+02 -2.902002e+01
+2 9954     4.825100e+02 9.602002e+01
+3 9954     3.471200e+02 -2.164100e+02
+6 9954     3.950400e+02 2.696400e+02
+7 9954     4.127500e+02 2.987300e+02
+9 9954     2.746700e+02 1.791800e+02
+12 9954     4.803800e+02 2.786500e+02
+15 9954     7.622200e+02 3.936200e+02
+1 9955     3.371600e+02 -2.966998e+01
+10 9955     1.197300e+02 1.545100e+02
+15 9955     2.149100e+02 1.561900e+02
+1 9956     3.732300e+02 -3.014001e+01
+12 9956     2.219500e+02 1.372400e+02
+15 9956     2.571300e+02 1.732400e+02
+1 9957     8.319500e+02 -3.028003e+01
+2 9957     4.691500e+02 8.477002e+01
+6 9957     3.797400e+02 2.590200e+02
+8 9957     4.444700e+02 4.220001e+01
+9 9957     2.637800e+02 1.687100e+02
+10 9957     5.531600e+02 3.443000e+02
+12 9957     4.664500e+02 2.687400e+02
+15 9957     7.447400e+02 3.845600e+02
+1 9958     1.127800e+02 -3.208002e+01
+15 9958     -6.648999e+01 3.551001e+01
+1 9959     7.925601e+02 -3.234003e+01
+10 9959     5.129700e+02 3.271100e+02
+15 9959     6.977700e+02 3.627600e+02
+1 9960     4.164200e+02 -3.316998e+01
+10 9960     1.976100e+02 1.830800e+02
+15 9960     3.083199e+02 1.907900e+02
+1 9961     4.164200e+02 -3.316998e+01
+10 9961     1.976100e+02 1.830800e+02
+15 9961     3.083199e+02 1.907900e+02
+1 9962     6.289001e+01 -3.350000e+01
+2 9962     8.540997e+01 -9.770001e+01
+3 9962     5.309998e+00 -4.062500e+02
+6 9962     -9.998999e+01 -1.127300e+02
+12 9962     -9.315002e+01 -5.679999e+01
+1 9963     4.673700e+02 -3.352002e+01
+15 9963     3.655800e+02 2.149200e+02
+1 9964     3.653500e+02 -3.440002e+01
+10 9964     1.489500e+02 1.610500e+02
+15 9964     2.497800e+02 1.640900e+02
+1 9965     3.273700e+02 -3.722998e+01
+10 9965     1.129800e+02 1.427300e+02
+15 9965     2.071400e+02 1.419100e+02
+1 9966     3.237000e+02 -3.790002e+01
+15 9966     2.031400e+02 1.392300e+02
+1 9967     -1.818400e+02 -3.842999e+01
+6 9967     -5.151800e+02 -3.795900e+02
+1 9968     4.104500e+02 -3.840002e+01
+10 9968     1.940300e+02 1.759000e+02
+1 9969     -2.353000e+02 -3.953998e+01
+15 9969     -5.428400e+02 -1.714800e+02
+1 9970     3.342400e+02 -4.029999e+01
+15 9970     2.162500e+02 1.420400e+02
+1 9971     3.824500e+02 -4.002002e+01
+13 9971     5.679700e+02 -2.046300e+02
+15 9971     2.727500e+02 1.659500e+02
+1 9972     2.193000e+02 -4.142999e+01
+15 9972     7.703998e+01 8.157999e+01
+1 9973     2.193000e+02 -4.142999e+01
+2 9973     2.534100e+02 -1.099854e-01
+15 9973     7.703998e+01 8.157999e+01
+1 9974     1.818000e+02 -4.259998e+01
+9 9974     7.394000e+01 7.259998e+01
+15 9974     2.960999e+01 6.047998e+01
+1 9975     4.426000e+02 -4.453998e+01
+10 9975     2.267900e+02 1.822800e+02
+15 9975     3.435500e+02 1.898400e+02
+1 9976     2.548600e+02 -4.688000e+01
+2 9976     2.869700e+02 1.423999e+01
+6 9976     1.122100e+02 8.890015e+00
+8 9976     2.647100e+02 -3.762000e+01
+10 9976     4.178003e+01 1.020300e+02
+12 9976     1.274900e+02 5.857001e+01
+15 9976     1.234700e+02 9.325000e+01
+1 9977     3.691200e+02 -4.721002e+01
+7 9977     1.311200e+02 1.375600e+02
+10 9977     1.581600e+02 1.496600e+02
+1 9978     4.577300e+02 -4.864001e+01
+10 9978     2.423800e+02 1.838600e+02
+1 9979     4.577300e+02 -4.864001e+01
+10 9979     2.423800e+02 1.838600e+02
+1 9980     5.431600e+02 -4.948999e+01
+15 9980     4.478199e+02 2.293700e+02
+1 9981     4.864600e+02 -5.020001e+01
+15 9981     3.944200e+02 2.037700e+02
+1 9982     8.599399e+02 -5.031000e+01
+6 9982     4.199100e+02 2.594000e+02
+7 9982     4.315300e+02 2.872500e+02
+15 9982     7.880800e+02 3.748900e+02
+1 9983     2.028800e+02 -5.183002e+01
+2 9983     2.438101e+02 -2.109003e+01
+7 9983     -7.960022e+00 6.209003e+01
+9 9983     9.665002e+01 7.729999e+01
+1 9984     4.748500e+02 -5.438000e+01
+10 9984     2.603500e+02 1.849600e+02
+15 9984     3.842400e+02 1.933100e+02
+1 9985     2.169900e+02 -6.013000e+01
+2 9985     2.625601e+02 -1.870001e+01
+10 9985     7.900024e+00 7.215997e+01
+15 9985     8.321002e+01 5.710999e+01
+1 9986     3.845200e+02 -6.090997e+01
+10 9986     1.786700e+02 1.418500e+02
+15 9986     2.854600e+02 1.415600e+02
+1 9987     8.019900e+02 -6.103003e+01
+6 9987     3.651000e+02 2.123800e+02
+8 9987     4.335601e+02 5.600006e+00
+12 9987     4.524700e+02 2.222800e+02
+15 9987     7.230100e+02 3.336600e+02
+1 9988     1.775699e+02 -6.603003e+01
+2 9988     2.263900e+02 -5.115002e+01
+3 9988     1.373000e+02 -3.569900e+02
+10 9988     -3.346997e+01 4.809003e+01
+15 9988     3.584003e+01 2.866998e+01
+1 9989     7.628998e+01 -6.673999e+01
+8 9989     1.270200e+02 -1.452600e+02
+1 9990     3.323300e+02 -6.771997e+01
+2 9990     3.558500e+02 2.996002e+01
+6 9990     1.886700e+02 3.534003e+01
+8 9990     3.235900e+02 -2.394000e+01
+10 9990     1.304400e+02 1.133500e+02
+15 9990     2.281400e+02 1.075000e+02
+1 9991     2.701200e+02 -6.871002e+01
+2 9991     3.121801e+02 1.979980e+00
+1 9992     2.926400e+02 -7.007001e+01
+15 9992     1.813800e+02 8.409000e+01
+1 9993     2.591100e+02 -7.229999e+01
+15 9993     1.424399e+02 6.335999e+01
+1 9994     2.864500e+02 -7.303998e+01
+7 9994     7.521997e+01 8.145999e+01
+10 9994     8.577002e+01 8.865002e+01
+15 9994     1.756300e+02 7.720001e+01
+1 9995     2.996700e+02 -7.352002e+01
+2 9995     3.369600e+02 1.140002e+01
+1 9996     4.631100e+02 -7.446002e+01
+10 9996     2.574800e+02 1.599100e+02
+15 9996     3.807700e+02 1.635800e+02
+1 9997     2.965900e+02 -7.569000e+01
+2 9997     3.351700e+02 8.099976e+00
+6 9997     1.645400e+02 7.559998e+00
+1 9998     7.948101e+02 -7.537000e+01
+7 9998     3.858400e+02 2.397000e+02
+10 9998     5.323400e+02 2.848100e+02
+15 9998     7.212500e+02 3.133200e+02
+1 9999     7.948101e+02 -7.537000e+01
+7 9999     3.858400e+02 2.397000e+02
+1 10000     -1.611600e+02 -7.703998e+01
+7 10000     -3.926900e+02 -1.636900e+02
+8 10000     -1.849400e+02 -3.725100e+02
+1 10001     8.303900e+02 -7.702002e+01
+6 10001     4.043600e+02 2.165300e+02
+9 10001     2.844000e+02 1.383100e+02
+12 10001     4.896700e+02 2.265900e+02
+15 10001     7.647000e+02 3.288200e+02
+1 10002     3.783199e+02 -7.740002e+01
+7 10002     1.504900e+02 1.149400e+02
+10 10002     1.791200e+02 1.223000e+02
+15 10002     2.864100e+02 1.184300e+02
+1 10003     2.389900e+02 -7.823999e+01
+6 10003     1.164200e+02 -3.052002e+01
+7 10003     3.664001e+01 5.566998e+01
+8 10003     2.681000e+02 -6.814001e+01
+12 10003     1.306400e+02 1.777002e+01
+15 10003     1.202400e+02 4.672998e+01
+1 10004     4.583700e+02 -7.828003e+01
+15 10004     3.778600e+02 1.577500e+02
+1 10005     3.828900e+02 -7.846997e+01
+10 10005     1.845100e+02 1.231100e+02
+1 10006     -4.952100e+02 -8.444000e+01
+15 10006     -8.697000e+02 -3.833300e+02
+1 10007     1.236900e+02 -8.445001e+01
+7 10007     -6.477002e+01 -3.500000e+00
+1 10008     3.148999e+01 -8.495001e+01
+15 10008     -1.387400e+02 -7.271002e+01
+1 10009     2.590400e+02 -8.697998e+01
+6 10009     1.391800e+02 -2.709003e+01
+12 10009     1.545100e+02 2.012000e+01
+15 10009     1.492000e+02 4.612000e+01
+1 10010     8.121801e+02 -8.681000e+01
+6 10010     3.903900e+02 1.961400e+02
+10 10010     5.538800e+02 2.804500e+02
+12 10010     4.766801e+02 2.064500e+02
+15 10010     7.473500e+02 3.082500e+02
+1 10011     3.038400e+02 -8.735999e+01
+2 10011     3.481200e+02 -3.499756e-01
+6 10011     1.771800e+02 -4.998779e-02
+1 10012     3.877200e+02 -8.834003e+01
+7 10012     1.614500e+02 1.091200e+02
+10 10012     1.925000e+02 1.150000e+02
+15 10012     3.024900e+02 1.098200e+02
+1 10013     8.146400e+02 -8.840997e+01
+12 10013     4.801600e+02 2.070600e+02
+15 10013     7.512400e+02 3.075900e+02
+1 10014     4.833700e+02 -8.921997e+01
+10 10014     2.810300e+02 1.525700e+02
+15 10014     4.098800e+02 1.551700e+02
+1 10015     1.733800e+02 -8.956000e+01
+2 10015     2.345601e+02 -7.896997e+01
+3 10015     1.466500e+02 -3.832800e+02
+13 10015     4.261500e+02 -3.118700e+02
+15 10015     4.235999e+01 -2.510010e+00
+1 10016     4.450200e+02 -8.996997e+01
+10 10016     2.471801e+02 1.366700e+02
+15 10016     3.686000e+02 1.360100e+02
+1 10017     8.785100e+02 -9.084998e+01
+6 10017     4.605601e+02 2.358100e+02
+10 10017     6.221100e+02 3.020400e+02
+12 10017     5.435500e+02 2.459300e+02
+15 10017     8.290200e+02 3.365000e+02
+1 10018     8.163700e+02 -9.150000e+01
+6 10018     3.974300e+02 1.952500e+02
+10 10018     5.602900e+02 2.768800e+02
+12 10018     4.835200e+02 2.055400e+02
+15 10018     7.545500e+02 3.049000e+02
+1 10019     3.774399e+02 -9.246997e+01
+10 10019     1.843000e+02 1.069700e+02
+15 10019     2.931700e+02 9.979001e+01
+1 10020     5.640997e+01 -9.420001e+01
+7 10020     -1.251800e+02 -4.559998e+01
+1 10021     -4.800700e+02 -9.548999e+01
+15 10021     -8.411500e+02 -3.883100e+02
+1 10022     5.004999e+01 -9.633002e+01
+6 10022     -5.909003e+01 -1.800900e+02
+7 10022     -1.291900e+02 -5.046997e+01
+10 10022     -1.577800e+02 -4.101001e+01
+12 10022     -5.859998e+01 -1.264000e+02
+15 10022     -1.084100e+02 -7.663000e+01
+1 10023     2.342200e+02 -9.646997e+01
+2 10023     2.962200e+02 -4.579999e+01
+1 10024     4.009998e+01 -9.698999e+01
+6 10024     -6.667999e+01 -1.865300e+02
+15 10024     -1.201100e+02 -8.233002e+01
+1 10025     8.561600e+02 -9.696997e+01
+15 10025     8.053600e+02 3.182800e+02
+1 10026     8.087000e+02 -9.821997e+01
+10 10026     5.547800e+02 2.679700e+02
+15 10026     7.485400e+02 2.934500e+02
+1 10027     2.498199e+02 -9.909003e+01
+7 10027     5.383002e+01 4.190997e+01
+15 10027     1.429301e+02 2.647998e+01
+1 10028     8.660699e+02 -1.001100e+02
+3 10028     4.018300e+02 -2.537400e+02
+1 10029     3.072000e+02 -1.007700e+02
+2 10029     3.558700e+02 -1.210999e+01
+6 10029     1.866100e+02 -1.096002e+01
+7 10029     1.037000e+02 6.577002e+01
+10 10029     1.183900e+02 6.816998e+01
+12 10029     2.065601e+02 3.396002e+01
+1 10030     2.352900e+02 -1.016200e+02
+2 10030     3.003600e+02 -4.995001e+01
+6 10030     1.240000e+02 -5.659998e+01
+8 10030     2.735600e+02 -8.990002e+01
+13 10030     4.826400e+02 -2.986700e+02
+1 10031     4.112800e+02 -1.015800e+02
+15 10031     3.344399e+02 1.050300e+02
+1 10032     3.368500e+02 -1.022700e+02
+10 10032     1.483200e+02 7.932001e+01
+15 10032     2.498101e+02 6.757001e+01
+1 10033     2.910100e+02 -1.034700e+02
+2 10033     3.453700e+02 -2.197998e+01
+6 10033     1.740900e+02 -2.350000e+01
+15 10033     1.955800e+02 4.257001e+01
+1 10034     1.539600e+02 -1.045300e+02
+2 10034     2.372800e+02 -9.512000e+01
+3 10034     1.512900e+02 -3.981400e+02
+6 10034     5.466998e+01 -1.124500e+02
+7 10034     -2.731000e+01 -6.719971e+00
+10 10034     -4.025000e+01 -2.450012e+00
+12 10034     6.090002e+01 -6.279999e+01
+15 10034     2.803998e+01 -3.064001e+01
+1 10035     2.695800e+02 -1.057000e+02
+2 10035     3.299200e+02 -3.534003e+01
+15 10035     1.703101e+02 2.873999e+01
+1 10036     4.793800e+02 -1.064700e+02
+15 10036     4.136300e+02 1.326600e+02
+1 10037     3.539200e+02 -1.068600e+02
+10 10037     1.672200e+02 8.188000e+01
+15 10037     2.725200e+02 7.040002e+01
+1 10038     6.010699e+02 -1.083100e+02
+10 10038     3.896899e+02 1.791100e+02
+1 10039     2.456899e+02 -1.102800e+02
+15 10039     1.433600e+02 1.096002e+01
+1 10040     6.000200e+02 -1.111200e+02
+10 10040     3.892900e+02 1.763400e+02
+1 10041     3.732800e+02 -1.130900e+02
+15 10041     2.974600e+02 7.315002e+01
+1 10042     4.824600e+02 -1.137300e+02
+10 10042     2.891700e+02 1.269700e+02
+15 10042     4.200200e+02 1.250700e+02
+1 10043     3.756500e+02 -1.145200e+02
+10 10043     1.911500e+02 8.296997e+01
+1 10044     7.457001e+01 -1.180900e+02
+6 10044     -1.528003e+01 -1.817000e+02
+7 10044     -9.442999e+01 -5.716998e+01
+10 10044     -1.200700e+02 -5.256000e+01
+12 10044     -1.504999e+01 -1.303200e+02
+15 10044     -6.457001e+01 -8.990997e+01
+1 10045     2.761100e+02 -1.184500e+02
+2 10045     3.413000e+02 -4.509003e+01
+6 10045     1.685800e+02 -4.775000e+01
+7 10045     8.371002e+01 3.604999e+01
+10 10045     9.295001e+01 3.640997e+01
+12 10045     1.862100e+02 -2.729980e+00
+15 10045     1.843700e+02 1.613000e+01
+1 10046     8.405200e+02 -1.194600e+02
+2 10046     5.239900e+02 2.231000e+01
+1 10047     7.778800e+02 -1.204800e+02
+10 10047     5.318101e+02 2.332900e+02
+1 10048     4.671899e+02 -1.209900e+02
+15 10048     4.071500e+02 1.093100e+02
+1 10049     1.905100e+02 -1.231600e+02
+10 10049     6.869995e+00 -5.650024e+00
+15 10049     8.347998e+01 -3.340002e+01
+1 10050     6.124000e+02 -1.229600e+02
+10 10050     4.073300e+02 1.692500e+02
+15 10050     5.644200e+02 1.757600e+02
+1 10051     4.819301e+02 -1.239000e+02
+15 10051     4.239800e+02 1.128700e+02
+1 10052     2.914500e+02 -1.247400e+02
+3 10052     2.575300e+02 -3.469200e+02
+6 10052     1.842200e+02 -4.453998e+01
+8 10052     3.211900e+02 -8.531000e+01
+12 10052     2.033700e+02 -3.400269e-01
+15 10052     2.061200e+02 1.646002e+01
+1 10053     3.072700e+02 -1.246100e+02
+2 10053     3.671100e+02 -3.676001e+01
+3 10053     2.679301e+02 -3.395400e+02
+6 10053     1.977100e+02 -3.484998e+01
+8 10053     3.311100e+02 -7.917999e+01
+10 10053     1.277300e+02 4.359003e+01
+12 10053     2.183000e+02 8.770020e+00
+13 10053     5.443300e+02 -2.942600e+02
+15 10053     2.255100e+02 2.520001e+01
+1 10054     3.372800e+02 -1.245800e+02
+15 10054     2.607400e+02 4.065997e+01
+1 10055     4.784700e+02 -1.261200e+02
+15 10055     4.207100e+02 1.081400e+02
+1 10056     3.395699e+02 -1.262400e+02
+10 10056     1.602000e+02 5.612000e+01
+15 10056     2.645900e+02 3.997998e+01
+1 10057     3.069100e+02 -1.272100e+02
+3 10057     2.685699e+02 -3.423600e+02
+6 10057     1.978400e+02 -3.797998e+01
+10 10057     1.276200e+02 4.075000e+01
+12 10057     2.184600e+02 5.770020e+00
+15 10057     2.257200e+02 2.172998e+01
+1 10058     2.936801e+02 -1.278000e+02
+2 10058     3.577400e+02 -4.626001e+01
+6 10058     1.872300e+02 -4.652002e+01
+12 10058     2.069700e+02 -2.590027e+00
+15 10058     2.102500e+02 1.421997e+01
+1 10059     3.826100e+02 -1.278800e+02
+10 10059     2.031700e+02 7.184003e+01
+1 10060     3.331000e+02 -1.293400e+02
+3 10060     2.856899e+02 -3.334100e+02
+7 10060     1.349200e+02 5.110999e+01
+1 10061     6.093101e+02 -1.299400e+02
+10 10061     4.080200e+02 1.608800e+02
+1 10062     8.096100e+02 -1.305000e+02
+7 10062     4.193700e+02 2.021700e+02
+10 10062     5.681600e+02 2.360400e+02
+15 10062     7.648700e+02 2.556500e+02
+1 10063     7.789500e+02 -1.308500e+02
+6 10063     3.803800e+02 1.347500e+02
+1 10064     4.935100e+02 -1.336800e+02
+10 10064     3.072200e+02 1.115300e+02
+15 10064     4.417800e+02 1.063400e+02
+1 10065     7.800100e+02 -1.336500e+02
+10 10065     5.390800e+02 2.208100e+02
+1 10066     8.162200e+02 -1.336700e+02
+15 10066     7.745100e+02 2.551100e+02
+1 10067     2.358500e+02 -1.346400e+02
+15 10067     1.438900e+02 -2.414001e+01
+1 10068     8.209200e+02 -1.350800e+02
+15 10068     7.806801e+02 2.558700e+02
+1 10069     1.279200e+02 -1.354800e+02
+6 10069     4.696002e+01 -1.617300e+02
+13 10069     4.091801e+02 -3.641200e+02
+1 10070     4.405601e+02 -1.357300e+02
+7 10070     2.160300e+02 8.709000e+01
+1 10071     -3.606500e+02 -1.383800e+02
+15 10071     -6.467100e+02 -3.707100e+02
+1 10072     3.298101e+02 -1.404600e+02
+10 10072     1.554100e+02 3.676001e+01
+15 10072     2.590000e+02 1.728998e+01
+1 10073     2.357900e+02 -1.463000e+02
+10 10073     6.378003e+01 -9.250000e+00
+15 10073     1.510800e+02 -3.794000e+01
+1 10074     4.660601e+02 -1.470500e+02
+15 10074     4.183300e+02 7.741998e+01
+1 10075     6.714001e+01 -1.473800e+02
+3 10075     1.222100e+02 -4.787800e+02
+7 10075     -8.209003e+01 -8.440002e+01
+8 10075     1.840500e+02 -1.970900e+02
+10 10075     -1.116500e+02 -8.666998e+01
+15 10075     -5.521997e+01 -1.294200e+02
+1 10076     1.659000e+02 -1.475800e+02
+2 10076     2.772400e+02 -1.261900e+02
+1 10077     1.659000e+02 -1.475800e+02
+2 10077     2.772400e+02 -1.261900e+02
+3 10077     1.910100e+02 -4.270800e+02
+6 10077     9.485999e+01 -1.443000e+02
+7 10077     3.390015e+00 -3.865997e+01
+12 10077     1.013500e+02 -9.758002e+01
+1 10078     8.353400e+02 -1.479700e+02
+2 10078     5.350699e+02 -2.700012e+00
+6 10078     4.490500e+02 1.585200e+02
+15 10078     8.044399e+02 2.479100e+02
+1 10079     4.176100e+02 -1.484200e+02
+7 10079     2.034700e+02 6.721002e+01
+1 10080     5.526200e+02 -1.490200e+02
+10 10080     3.649000e+02 1.193600e+02
+1 10081     6.427002e+01 -1.508900e+02
+15 10081     -5.748999e+01 -1.354500e+02
+1 10082     4.867200e+02 -1.522700e+02
+10 10082     3.107400e+02 9.040002e+01
+15 10082     4.452100e+02 8.125000e+01
+1 10083     8.334900e+02 -1.522800e+02
+6 10083     4.496700e+02 1.535200e+02
+1 10084     4.270001e+01 -1.534200e+02
+15 10084     -8.792999e+01 -1.514100e+02
+1 10085     3.756000e+02 -1.551900e+02
+15 10085     3.198700e+02 2.291998e+01
+1 10086     2.766200e+02 -1.552800e+02
+15 10086     2.046600e+02 -2.796997e+01
+1 10087     3.468900e+02 -1.570400e+02
+7 10087     1.558800e+02 3.235999e+01
+1 10088     2.506600e+02 -1.621500e+02
+7 10088     8.506000e+01 -1.091998e+01
+1 10089     3.470000e+02 -1.624000e+02
+15 10089     2.907800e+02 -5.200195e-01
+1 10090     8.566700e+02 -1.626300e+02
+6 10090     4.786801e+02 1.597200e+02
+1 10091     8.406700e+02 -1.631800e+02
+6 10091     4.621700e+02 1.488000e+02
+12 10091     5.449800e+02 1.591000e+02
+15 10091     8.171300e+02 2.329500e+02
+1 10092     2.342400e+02 -1.655300e+02
+13 10092     5.109500e+02 -3.491500e+02
+1 10093     3.048900e+02 -1.656100e+02
+12 10093     2.422300e+02 -3.140997e+01
+1 10094     4.210601e+02 -1.659900e+02
+15 10094     3.777300e+02 3.231000e+01
+1 10095     1.902200e+02 -1.677900e+02
+10 10095     2.659003e+01 -5.257001e+01
+1 10096     3.582800e+02 -1.685400e+02
+10 10096     1.960400e+02 2.007001e+01
+1 10097     8.166200e+02 -1.690100e+02
+10 10097     5.900200e+02 2.009000e+02
+1 10098     3.049700e+02 -1.698500e+02
+10 10098     1.447800e+02 -3.679993e+00
+12 10098     2.457500e+02 -3.434003e+01
+15 10098     2.467400e+02 -3.046002e+01
+1 10099     4.467200e+02 -1.700700e+02
+12 10099     3.536400e+02 3.434003e+01
+15 10099     4.098500e+02 4.066998e+01
+1 10100     2.800000e+02 -1.724300e+02
+7 10100     1.138600e+02 -6.969971e+00
+1 10101     3.874900e+02 -1.735700e+02
+10 10101     2.269100e+02 2.739001e+01
+15 10101     3.446500e+02 6.630005e+00
+1 10102     9.810999e+01 -1.748400e+02
+7 10102     -3.959003e+01 -9.310999e+01
+13 10102     4.107900e+02 -4.040400e+02
+1 10103     1.647800e+02 -1.754100e+02
+15 10103     7.892999e+01 -1.115500e+02
+1 10104     5.409301e+02 -1.772400e+02
+15 10104     5.162400e+02 7.790997e+01
+1 10105     2.736100e+02 -1.799300e+02
+7 10105     1.116100e+02 -1.659998e+01
+1 10106     2.736100e+02 -1.799300e+02
+7 10106     1.116100e+02 -1.659998e+01
+1 10107     2.388101e+02 -1.819100e+02
+6 10107     1.824500e+02 -1.277500e+02
+1 10108     8.175500e+02 -1.819800e+02
+12 10108     5.325800e+02 1.278900e+02
+1 10109     8.175500e+02 -1.819800e+02
+12 10109     5.325800e+02 1.278900e+02
+1 10110     7.975500e+02 -1.856200e+02
+6 10110     4.311400e+02 9.920001e+01
+7 10110     4.302300e+02 1.530400e+02
+10 10110     5.769000e+02 1.766400e+02
+12 10110     5.145800e+02 1.108600e+02
+15 10110     7.763400e+02 1.849000e+02
+1 10111     4.766500e+02 -1.861300e+02
+15 10111     4.507100e+02 3.600000e+01
+1 10112     -2.135200e+02 -1.884000e+02
+7 10112     -3.713400e+02 -2.874000e+02
+15 10112     -4.192300e+02 -3.465000e+02
+1 10113     1.798101e+02 -1.892200e+02
+15 10113     1.054700e+02 -1.200900e+02
+1 10114     8.495900e+02 -1.926700e+02
+6 10114     4.878900e+02 1.293700e+02
+15 10114     8.415000e+02 2.030200e+02
+1 10115     8.714500e+02 -1.926400e+02
+6 10115     5.090500e+02 1.433700e+02
+12 10115     5.894600e+02 1.531000e+02
+15 10115     8.675601e+02 2.133500e+02
+1 10116     5.366700e+02 -1.942000e+02
+10 10116     3.722600e+02 6.821002e+01
+1 10117     8.052500e+02 -1.940800e+02
+6 10117     4.438300e+02 9.734998e+01
+1 10118     8.685400e+02 -1.941300e+02
+3 10118     4.561400e+02 -3.192500e+02
+10 10118     6.505200e+02 1.972700e+02
+12 10118     5.872300e+02 1.503000e+02
+15 10118     8.648600e+02 2.107000e+02
+1 10119     8.716000e+02 -1.959500e+02
+6 10119     5.120000e+02 1.410500e+02
+12 10119     5.922300e+02 1.509200e+02
+1 10120     8.716000e+02 -1.959500e+02
+6 10120     5.120000e+02 1.410500e+02
+10 10120     6.547300e+02 1.965900e+02
+12 10120     5.922300e+02 1.509200e+02
+15 10120     8.690900e+02 2.100100e+02
+1 10121     2.678101e+02 -1.966500e+02
+12 10121     2.283300e+02 -8.362000e+01
+15 10121     2.153500e+02 -8.266998e+01
+1 10122     2.412800e+02 -1.971200e+02
+6 10122     1.902300e+02 -1.428101e+02
+1 10123     2.412800e+02 -1.971200e+02
+6 10123     1.902300e+02 -1.428101e+02
+1 10124     6.942999e+01 -1.989300e+02
+4 10124     -4.470700e+02 -3.879400e+02
+6 10124     2.798999e+01 -2.683600e+02
+7 10124     -6.427002e+01 -1.330200e+02
+9 10124     8.402002e+01 -1.106800e+02
+10 10124     -9.196997e+01 -1.402900e+02
+12 10124     2.741998e+01 -2.210700e+02
+15 10124     -2.990002e+01 -1.931200e+02
+1 10125     1.564500e+02 -1.990300e+02
+7 10125     2.337000e+01 -8.571002e+01
+15 10125     8.398999e+01 -1.438900e+02
+1 10126     1.564500e+02 -1.990300e+02
+7 10126     2.337000e+01 -8.571002e+01
+15 10126     8.398999e+01 -1.438900e+02
+1 10127     7.930200e+02 -2.005500e+02
+15 10127     7.788199e+02 1.650100e+02
+1 10128     8.595300e+02 -2.004100e+02
+6 10128     5.023101e+02 1.291700e+02
+1 10129     -3.130600e+02 -2.012400e+02
+7 10129     -4.576700e+02 -3.516900e+02
+15 10129     -5.417000e+02 -4.217900e+02
+1 10130     8.813500e+02 -2.049000e+02
+2 10130     6.055400e+02 -1.162000e+01
+9 10130     3.813800e+02 9.264001e+01
+10 10130     6.674700e+02 1.918600e+02
+1 10131     8.813500e+02 -2.049000e+02
+2 10131     6.055400e+02 -1.162000e+01
+6 10131     5.249100e+02 1.405200e+02
+9 10131     3.813800e+02 9.264001e+01
+10 10131     6.674700e+02 1.918600e+02
+1 10132     3.903500e+02 -2.067500e+02
+10 10132     2.426700e+02 -5.020020e+00
+15 10132     3.640900e+02 -3.158002e+01
+1 10133     3.903500e+02 -2.067500e+02
+10 10133     2.426700e+02 -5.020020e+00
+15 10133     3.640900e+02 -3.158002e+01
+1 10134     8.514301e+02 -2.076900e+02
+2 10134     5.813101e+02 -3.678998e+01
+6 10134     4.982700e+02 1.165700e+02
+10 10134     6.393101e+02 1.766500e+02
+15 10134     8.510601e+02 1.861100e+02
+1 10135     2.232400e+02 -2.082600e+02
+15 10135     1.678900e+02 -1.198000e+02
+1 10136     3.587500e+02 -2.079600e+02
+15 10136     3.286700e+02 -4.906000e+01
+1 10137     5.153700e+02 -2.077400e+02
+10 10137     3.594500e+02 4.621997e+01
+1 10138     8.539399e+02 -2.094500e+02
+15 10138     8.549500e+02 1.854200e+02
+1 10139     8.798000e+02 -2.100300e+02
+6 10139     5.269500e+02 1.341400e+02
+8 10139     5.575300e+02 -4.494000e+01
+9 10139     3.836200e+02 8.897000e+01
+1 10140     3.987600e+02 -2.103400e+02
+10 10140     2.523600e+02 -5.630005e+00
+1 10141     8.078500e+02 -2.120200e+02
+6 10141     4.558800e+02 8.295001e+01
+10 10141     5.967200e+02 1.550700e+02
+1 10142     2.097800e+02 -2.128800e+02
+10 10142     6.808002e+01 -9.064001e+01
+15 10142     1.556600e+02 -1.330900e+02
+1 10143     1.901200e+02 -2.176400e+02
+6 10143     1.743900e+02 -1.877600e+02
+12 10143     1.786800e+02 -1.457600e+02
+1 10144     4.802400e+02 -2.181300e+02
+10 10144     3.315500e+02 2.103003e+01
+15 10144     4.717600e+02 -5.499878e-01
+1 10145     8.799900e+02 -2.184500e+02
+2 10145     6.115699e+02 -2.294000e+01
+6 10145     5.311000e+02 1.265300e+02
+9 10145     3.865100e+02 8.364001e+01
+12 10145     6.106100e+02 1.363700e+02
+1 10146     8.799900e+02 -2.184500e+02
+12 10146     6.106100e+02 1.363700e+02
+1 10147     8.589399e+02 -2.189200e+02
+2 10147     5.939600e+02 -3.931000e+01
+3 10147     4.628300e+02 -3.443800e+02
+6 10147     5.113199e+02 1.119600e+02
+9 10147     3.720100e+02 6.915997e+01
+15 10147     8.653600e+02 1.770600e+02
+1 10148     8.589399e+02 -2.189200e+02
+2 10148     5.939600e+02 -3.931000e+01
+3 10148     4.628300e+02 -3.443800e+02
+6 10148     5.113199e+02 1.119600e+02
+9 10148     3.720100e+02 6.915997e+01
+15 10148     8.653600e+02 1.770600e+02
+1 10149     9.628998e+01 -2.264700e+02
+15 10149     1.759003e+01 -2.119700e+02
+1 10150     1.843500e+02 -2.273800e+02
+7 10150     6.307001e+01 -9.614001e+01
+1 10151     -2.410500e+02 -2.303000e+02
+6 10151     -3.445900e+02 -5.999200e+02
+7 10151     -3.702100e+02 -3.389200e+02
+9 10151     -2.130100e+02 -4.162400e+02
+15 10151     -4.282900e+02 -4.157200e+02
+1 10152     1.780100e+02 -2.316800e+02
+15 10152     1.300600e+02 -1.717800e+02
+1 10153     3.569500e+02 -2.320900e+02
+10 10153     2.219900e+02 -4.497998e+01
+1 10154     -4.944500e+02 -2.352100e+02
+7 10154     -6.181400e+02 -4.870800e+02
+10 10154     -7.342500e+02 -4.731100e+02
+15 10154     -7.672200e+02 -5.799000e+02
+1 10155     2.824500e+02 -2.351500e+02
+6 10155     2.541300e+02 -1.476700e+02
+10 10155     1.507100e+02 -8.026001e+01
+12 10155     2.693800e+02 -1.091400e+02
+15 10155     2.539500e+02 -1.209300e+02
+1 10156     3.174600e+02 -2.356500e+02
+15 10156     2.955699e+02 -1.036300e+02
+1 10157     3.271801e+02 -2.371300e+02
+7 10157     1.784700e+02 -4.234998e+01
+15 10157     3.073700e+02 -1.004400e+02
+1 10158     5.230100e+02 -2.382400e+02
+15 10158     5.308600e+02 -2.419983e+00
+1 10159     8.259600e+02 -2.393200e+02
+2 10159     5.755400e+02 -8.103998e+01
+12 10159     5.714301e+02 8.291998e+01
+15 10159     8.358400e+02 1.364500e+02
+1 10160     8.259600e+02 -2.393200e+02
+2 10160     5.755400e+02 -8.103998e+01
+15 10160     8.358400e+02 1.364500e+02
+1 10161     8.254399e+02 -2.427100e+02
+8 10161     5.309100e+02 -9.862000e+01
+15 10161     8.366300e+02 1.323600e+02
+1 10162     -2.093100e+02 -2.447700e+02
+15 10162     -3.781200e+02 -4.152300e+02
+1 10163     3.703500e+02 -2.465500e+02
+6 10163     3.230200e+02 -1.076900e+02
+10 10163     2.420601e+02 -5.383002e+01
+12 10163     3.479500e+02 -7.228998e+01
+15 10163     3.630400e+02 -8.935999e+01
+1 10164     3.703500e+02 -2.465500e+02
+6 10164     3.230200e+02 -1.076900e+02
+10 10164     2.420601e+02 -5.383002e+01
+12 10164     3.479500e+02 -7.228998e+01
+15 10164     3.630400e+02 -8.935999e+01
+1 10165     4.162500e+02 -2.462400e+02
+10 10165     2.852400e+02 -3.389001e+01
+1 10166     4.116899e+02 -2.497700e+02
+15 10166     4.124200e+02 -7.216998e+01
+1 10167     4.116899e+02 -2.497700e+02
+15 10167     4.124200e+02 -7.216998e+01
+1 10168     3.612800e+02 -2.502800e+02
+7 10168     2.119600e+02 -3.819000e+01
+1 10169     2.366300e+02 -2.514100e+02
+9 10169     2.445100e+02 -3.600000e+01
+12 10169     2.445500e+02 -1.488800e+02
+15 10169     2.097700e+02 -1.645200e+02
+1 10170     4.127800e+02 -2.531800e+02
+6 10170     3.552300e+02 -8.997998e+01
+10 10170     2.855300e+02 -4.215997e+01
+15 10170     4.151500e+02 -7.551001e+01
+1 10171     3.853400e+02 -2.541000e+02
+10 10171     2.606400e+02 -5.473999e+01
+15 10171     3.848300e+02 -9.054999e+01
+1 10172     2.154800e+02 -2.545000e+02
+6 10172     2.168500e+02 -2.063800e+02
+7 10172     9.871997e+01 -1.063100e+02
+10 10172     9.290002e+01 -1.302000e+02
+12 10172     2.242500e+02 -1.677500e+02
+15 10172     1.853900e+02 -1.801400e+02
+1 10173     3.771500e+02 -2.571600e+02
+15 10173     3.771000e+02 -9.823999e+01
+1 10174     4.639399e+02 -2.578700e+02
+10 10174     3.362500e+02 -2.510999e+01
+15 10174     4.764800e+02 -5.496002e+01
+1 10175     8.422500e+02 -2.595400e+02
+8 10175     5.508900e+02 -9.909003e+01
+1 10176     -6.213900e+02 -2.601200e+02
+4 10176     -5.456000e+02 1.293900e+02
+1 10177     -1.319200e+02 -2.605500e+02
+15 10177     -2.677300e+02 -3.880900e+02
+1 10178     -1.417999e+01 -2.638600e+02
+9 10178     2.990002e+01 -2.520000e+02
+15 10178     -1.093500e+02 -3.229800e+02
+1 10179     5.076000e+02 -2.644100e+02
+10 10179     3.728500e+02 -1.531000e+01
+1 10180     -2.027200e+02 -2.674100e+02
+6 10180     -2.620100e+02 -5.994500e+02
+9 10180     -1.418200e+02 -4.116700e+02
+1 10181     -4.429999e+01 -2.674000e+02
+10 10181     -1.970500e+02 -2.698400e+02
+13 10181     2.768300e+02 -5.553700e+02
+1 10182     2.746400e+02 -2.703000e+02
+15 10182     2.648300e+02 -1.675900e+02
+1 10183     8.356801e+02 -2.726100e+02
+15 10183     8.635000e+02 1.026300e+02
+1 10184     8.596000e+02 -2.726000e+02
+9 10184     3.987800e+02 3.685999e+01
+10 10184     6.716400e+02 1.168900e+02
+1 10185     -2.083100e+02 -2.795200e+02
+7 10185     -3.082600e+02 -3.634400e+02
+9 10185     -1.336000e+02 -4.210400e+02
+12 10185     -2.628000e+02 -5.452600e+02
+15 10185     -3.555100e+02 -4.571899e+02
+1 10186     5.025699e+02 -2.799700e+02
+15 10186     5.223700e+02 -6.363000e+01
+1 10187     3.838700e+02 -2.805000e+02
+10 10187     2.690200e+02 -8.246002e+01
+1 10188     8.583600e+02 -2.867300e+02
+6 10188     5.484800e+02 5.401001e+01
+12 10188     6.269500e+02 6.378003e+01
+1 10189     8.583600e+02 -2.867300e+02
+6 10189     5.484800e+02 5.401001e+01
+1 10190     2.818400e+02 -2.886000e+02
+4 10190     -5.087700e+02 -5.833000e+02
+15 10190     2.801200e+02 -1.866200e+02
+1 10191     4.144399e+02 -2.901400e+02
+15 10191     4.339000e+02 -1.195200e+02
+1 10192     -2.273900e+02 -2.903200e+02
+7 10192     -3.178800e+02 -3.838000e+02
+10 10192     -3.884200e+02 -3.866200e+02
+15 10192     -3.724600e+02 -4.827400e+02
+1 10193     -2.620700e+02 -2.931400e+02
+7 10193     -3.493800e+02 -4.049800e+02
+15 10193     -4.163800e+02 -5.071801e+02
+1 10194     4.149399e+02 -2.929800e+02
+10 10194     3.014800e+02 -8.203003e+01
+15 10194     4.355601e+02 -1.226700e+02
+1 10195     8.625699e+02 -2.992800e+02
+6 10195     5.602300e+02 4.600000e+01
+7 10195     5.260400e+02 9.314001e+01
+9 10195     4.132300e+02 2.242999e+01
+10 10195     6.843500e+02 9.241998e+01
+1 10196     8.627400e+02 -3.031500e+02
+10 10196     6.857300e+02 8.853003e+01
+1 10197     -2.572300e+02 -3.055300e+02
+9 10197     -1.400900e+02 -4.658199e+02
+1 10198     3.263500e+02 -3.061900e+02
+15 10198     3.386100e+02 -1.850600e+02
+1 10199     8.681600e+02 -3.090000e+02
+2 10199     6.500601e+02 -1.009400e+02
+10 10199     6.932200e+02 8.528003e+01
+1 10200     8.715100e+02 -3.095800e+02
+6 10200     5.735100e+02 4.322998e+01
+9 10200     4.238500e+02 2.223999e+01
+1 10201     3.859700e+02 -3.130400e+02
+15 10201     4.095500e+02 -1.626700e+02
+1 10202     3.567700e+02 -3.161300e+02
+10 10202     2.524600e+02 -1.311400e+02
+15 10202     3.775699e+02 -1.816200e+02
+1 10203     2.879399e+02 -3.195000e+02
+7 10203     1.765400e+02 -1.333700e+02
+1 10204     2.547400e+02 -3.219800e+02
+6 10204     2.631900e+02 -2.605400e+02
+7 10204     1.483199e+02 -1.522500e+02
+10 10204     1.532900e+02 -1.837000e+02
+1 10205     1.985800e+02 -3.227600e+02
+7 10205     9.919000e+01 -1.810200e+02
+1 10206     3.953900e+02 -3.228600e+02
+7 10206     2.557700e+02 -9.056000e+01
+15 10206     4.239399e+02 -1.697800e+02
+1 10207     3.447600e+02 -3.305700e+02
+15 10207     3.690800e+02 -2.058700e+02
+1 10208     3.447600e+02 -3.305700e+02
+10 10208     2.451200e+02 -1.517700e+02
+1 10209     3.419500e+02 -3.319900e+02
+15 10209     3.663500e+02 -2.089500e+02
+1 10210     1.590900e+02 -3.370200e+02
+10 10210     5.726001e+01 -2.443100e+02
+15 10210     1.474500e+02 -3.157300e+02
+1 10211     7.976600e+02 -3.373600e+02
+15 10211     8.574301e+02 1.003998e+01
+1 10212     7.742700e+02 -3.382000e+02
+10 10212     6.239500e+02 1.977002e+01
+15 10212     8.334399e+02 -2.270020e+00
+1 10213     -4.035900e+02 -3.395800e+02
+6 10213     -3.762000e+02 -8.437100e+02
+1 10214     7.459200e+02 -3.398700e+02
+15 10214     8.038199e+02 -1.769000e+01
+1 10215     3.262500e+02 -3.568900e+02
+15 10215     3.575000e+02 -2.477000e+02
+1 10216     8.020900e+02 -3.670100e+02
+10 10216     6.614800e+02 3.070007e+00
+1 10217     3.770200e+02 -3.740300e+02
+15 10217     4.225000e+02 -2.426800e+02
+1 10218     -6.719400e+02 -3.817300e+02
+4 10218     -6.586200e+02 1.514000e+02
+1 10219     2.802200e+02 -3.844200e+02
+7 10219     1.887100e+02 -1.970700e+02
+1 10220     -9.514001e+01 -3.982900e+02
+6 10220     -1.731000e+01 -6.208199e+02
+1 10221     5.513199e+02 -4.095000e+02
+15 10221     6.315800e+02 -1.964800e+02
+1 10222     7.844000e+02 -4.211400e+02
+10 10222     6.698199e+02 -5.565997e+01
+1 10223     7.817600e+02 -4.219200e+02
+10 10223     6.682000e+02 -5.773999e+01
+1 10224     7.817600e+02 -4.219200e+02
+10 10224     6.682000e+02 -5.773999e+01
+1 10225     7.606300e+02 -4.310500e+02
+15 10225     8.695300e+02 -1.152700e+02
+1 10226     -6.715997e+01 -4.365200e+02
+7 10226     -8.252002e+01 -4.213400e+02
+15 10226     -7.810999e+01 -5.692400e+02
+1 10227     2.229900e+02 -4.479399e+02
+6 10227     2.965500e+02 -4.163500e+02
+1 10228     9.237000e+01 -4.613800e+02
+15 10228     1.332700e+02 -5.054000e+02
+1 10229     5.081899e+02 -4.680300e+02
+10 10229     4.462800e+02 -2.187900e+02
+15 10229     6.157400e+02 -2.872300e+02
+1 10230     -2.405800e+02 -4.701801e+02
+10 10230     -3.029300e+02 -5.858000e+02
+1 10231     6.128700e+02 -4.713800e+02
+10 10231     5.420000e+02 -1.771200e+02
+1 10232     -5.643400e+02 -4.729700e+02
+4 10232     -7.409000e+02 5.394000e+01
+1 10233     -2.315900e+02 -4.765300e+02
+7 10233     -2.016600e+02 -5.461500e+02
+10 10233     -2.891600e+02 -5.883600e+02
+1 10234     -2.315900e+02 -4.765300e+02
+7 10234     -2.016600e+02 -5.461500e+02
+10 10234     -2.891600e+02 -5.883600e+02
+1 10235     9.403998e+01 -4.775200e+02
+10 10235     5.340997e+01 -4.203101e+02
+15 10235     1.443800e+02 -5.245500e+02
+1 10236     7.651300e+02 -4.793800e+02
+10 10236     6.797000e+02 -1.196200e+02
+1 10237     7.206801e+02 -4.799100e+02
+15 10237     8.539800e+02 -1.911100e+02
+1 10238     1.074100e+02 -4.814500e+02
+10 10238     6.883002e+01 -4.176899e+02
+15 10238     1.625500e+02 -5.215300e+02
+1 10239     5.852200e+02 -4.878700e+02
+6 10239     5.462000e+02 -2.381000e+02
+1 10240     -8.947998e+01 -4.930100e+02
+7 10240     -6.570001e+01 -4.803199e+02
+1 10241     -6.535200e+02 -4.939700e+02
+4 10241     -7.697700e+02 1.218600e+02
+1 10242     7.103000e+02 -4.944800e+02
+15 10242     8.510699e+02 -2.133700e+02
+1 10243     2.707400e+02 -5.006801e+02
+7 10243     2.301000e+02 -3.008300e+02
+10 10243     2.402700e+02 -3.583600e+02
+12 10243     3.879100e+02 -4.059301e+02
+1 10244     1.655500e+02 -5.255000e+02
+10 10244     1.476600e+02 -4.338400e+02
+15 10244     2.564500e+02 -5.415699e+02
+1 10245     8.608002e+01 -5.258900e+02
+7 10245     9.748999e+01 -4.143200e+02
+10 10245     6.881000e+01 -4.741801e+02
+1 10246     -1.638000e+02 -5.277300e+02
+4 10246     -7.641000e+02 -2.740200e+02
+6 10246     6.515997e+01 -7.828800e+02
+7 10246     -1.086400e+02 -5.504100e+02
+9 10246     1.639700e+02 -5.153400e+02
+10 10246     -1.871300e+02 -6.054100e+02
+1 10247     1.887700e+02 -5.504500e+02
+10 10247     1.834700e+02 -4.483400e+02
+1 10248     1.578700e+02 -5.551801e+02
+10 10248     1.548400e+02 -4.685200e+02
+1 10249     7.734399e+02 -5.585400e+02
+12 10249     7.668500e+02 -1.749400e+02
+1 10250     7.377600e+02 -5.638900e+02
+12 10250     7.503500e+02 -1.971400e+02
+1 10251     6.855601e+02 -5.671600e+02
+10 10251     6.507700e+02 -2.367400e+02
+15 10251     8.645500e+02 -3.085300e+02
+1 10252     2.429900e+02 -5.740800e+02
+10 10252     2.478900e+02 -4.462600e+02
+1 10253     9.856000e+01 -5.853199e+02
+2 10253     5.177200e+02 -6.047900e+02
+7 10253     1.427000e+02 -4.551500e+02
+9 10253     3.484700e+02 -3.886400e+02
+10 10253     1.125500e+02 -5.284301e+02
+1 10254     5.931801e+02 5.849000e+02
+5 10254     5.743500e+02 -2.856000e+01
+6 10254     -3.111900e+02 6.993800e+02
+11 10254     2.939301e+02 -1.610700e+02
+1 10255     4.835601e+02 5.839600e+02
+5 10255     4.829800e+02 -5.345001e+01
+14 10255     3.870000e+02 -1.405400e+02
+1 10256     1.285999e+01 5.821700e+02
+2 10256     -6.419200e+02 2.459500e+02
+8 10256     -4.472700e+02 1.800100e+02
+12 10256     -7.054500e+02 4.434100e+02
+1 10257     5.874200e+02 5.795400e+02
+2 10257     -1.499800e+02 3.776800e+02
+5 10257     5.706600e+02 -3.489001e+01
+6 10257     -3.143500e+02 6.909100e+02
+8 10257     -4.372998e+01 2.944200e+02
+9 10257     -2.834900e+02 3.984800e+02
+11 10257     2.910100e+02 -1.661500e+02
+14 10257     4.724200e+02 -1.206500e+02
+1 10258     6.389000e+02 5.771800e+02
+6 10258     -2.684300e+02 7.089300e+02
+1 10259     6.389000e+02 5.771800e+02
+6 10259     -2.684300e+02 7.089300e+02
+13 10259     3.547000e+02 2.788600e+02
+14 10259     5.139800e+02 -1.106200e+02
+1 10260     8.240100e+02 5.742100e+02
+14 10260     6.562000e+02 -7.376001e+01
+1 10261     8.063500e+02 5.723700e+02
+2 10261     -7.700195e-01 4.101100e+02
+6 10261     -1.291300e+02 7.637400e+02
+8 10261     8.008002e+01 3.227200e+02
+1 10262     6.287700e+02 5.701700e+02
+14 10262     5.081400e+02 -1.193700e+02
+1 10263     8.184000e+02 5.695200e+02
+2 10263     7.679993e+00 4.094100e+02
+14 10263     6.537500e+02 -7.859003e+01
+1 10264     6.090500e+02 5.686200e+02
+5 10264     5.909900e+02 -3.983002e+01
+6 10264     -2.904800e+02 6.879800e+02
+1 10265     6.090500e+02 5.686200e+02
+5 10265     5.909900e+02 -3.983002e+01
+6 10265     -2.904800e+02 6.879800e+02
+8 10265     -2.758002e+01 2.903900e+02
+9 10265     -2.668300e+02 3.940200e+02
+1 10266     7.953600e+02 5.681500e+02
+14 10266     6.368700e+02 -8.412000e+01
+1 10267     -1.778800e+02 5.677600e+02
+5 10267     -1.334200e+02 -2.205400e+02
+11 10267     -3.285700e+02 -3.273300e+02
+13 10267     -2.414700e+02 8.529001e+01
+14 10267     -2.157300e+02 -3.166300e+02
+1 10268     -5.928003e+01 5.681700e+02
+11 10268     -2.260300e+02 -3.049600e+02
+14 10268     -9.726001e+01 -2.875500e+02
+1 10269     4.308300e+02 5.660000e+02
+9 10269     -3.788600e+02 3.550300e+02
+11 10269     1.758600e+02 -2.078800e+02
+14 10269     3.470300e+02 -1.698000e+02
+1 10270     4.308300e+02 5.660000e+02
+6 10270     -4.512800e+02 6.113800e+02
+8 10270     -1.374700e+02 2.555900e+02
+9 10270     -3.788600e+02 3.550300e+02
+11 10270     1.758600e+02 -2.078800e+02
+14 10270     3.470300e+02 -1.698000e+02
+1 10271     5.766100e+02 5.647300e+02
+5 10271     5.663800e+02 -4.920001e+01
+6 10271     -3.168300e+02 6.717900e+02
+14 10271     4.676100e+02 -1.358800e+02
+1 10272     5.766100e+02 5.647300e+02
+5 10272     5.663800e+02 -4.920001e+01
+6 10272     -3.168300e+02 6.717900e+02
+14 10272     4.676100e+02 -1.358800e+02
+1 10273     -6.913000e+01 5.632400e+02
+8 10273     -5.123800e+02 1.429600e+02
+13 10273     -1.526600e+02 1.067600e+02
+14 10273     -1.061900e+02 -2.936900e+02
+1 10274     6.988199e+02 5.619000e+02
+2 10274     -6.728003e+01 3.820000e+02
+6 10274     -2.116600e+02 7.151600e+02
+11 10274     3.775400e+02 -1.568000e+02
+1 10275     8.301600e+02 5.610600e+02
+14 10275     6.648800e+02 -8.335999e+01
+1 10276     4.239301e+02 5.484700e+02
+2 10276     -2.638600e+02 3.123600e+02
+4 10276     4.148999e+01 -3.848200e+02
+6 10276     -4.502200e+02 5.877600e+02
+9 10276     -3.782600e+02 3.368800e+02
+11 10276     1.744800e+02 -2.214400e+02
+12 10276     -2.762300e+02 5.712700e+02
+13 10276     2.157300e+02 2.125600e+02
+1 10277     7.665997e+01 5.464800e+02
+2 10277     -5.695400e+02 2.211800e+02
+7 10277     -5.098600e+02 5.036000e+02
+11 10277     -1.068900e+02 -2.963600e+02
+1 10278     4.707000e+02 5.395900e+02
+2 10278     -2.231100e+02 3.152600e+02
+5 10278     4.819399e+02 -9.797998e+01
+9 10278     -3.432400e+02 3.409900e+02
+1 10279     -2.205000e+02 5.380100e+02
+13 10279     -2.725700e+02 4.937000e+01
+14 10279     -2.571000e+02 -3.587600e+02
+1 10280     3.975300e+02 5.327800e+02
+2 10280     -2.807300e+02 2.897300e+02
+5 10280     4.183500e+02 -1.219800e+02
+6 10280     -4.691500e+02 5.583300e+02
+8 10280     -1.516500e+02 2.222200e+02
+11 10280     1.575700e+02 -2.407900e+02
+12 10280     -2.947800e+02 5.409700e+02
+13 10280     2.002700e+02 1.924500e+02
+14 10280     3.263900e+02 -2.087800e+02
+1 10281     -1.733300e+02 5.314300e+02
+7 10281     -7.535700e+02 3.970800e+02
+11 10281     -3.202700e+02 -3.575400e+02
+13 10281     -2.325000e+02 5.526001e+01
+14 10281     -2.079100e+02 -3.542900e+02
+1 10282     -1.733300e+02 5.314300e+02
+7 10282     -7.535700e+02 3.970800e+02
+14 10282     -2.079100e+02 -3.542900e+02
+1 10283     7.811100e+02 5.298700e+02
+2 10283     -3.570007e+00 3.685300e+02
+3 10283     -1.480900e+02 3.364001e+01
+6 10283     -1.313700e+02 7.128900e+02
+11 10283     4.457500e+02 -1.631100e+02
+14 10283     6.377800e+02 -1.190800e+02
+1 10284     5.583900e+02 5.287200e+02
+3 10284     -2.925700e+02 -1.027002e+01
+11 10284     2.829800e+02 -2.098900e+02
+1 10285     8.714301e+02 5.260100e+02
+2 10285     5.323999e+01 3.806600e+02
+5 10285     8.124500e+02 -2.212000e+01
+6 10285     -6.015997e+01 7.400800e+02
+11 10285     5.091400e+02 -1.490600e+02
+1 10286     2.954700e+02 5.253800e+02
+2 10286     -3.646000e+02 2.565900e+02
+5 10286     3.282100e+02 -1.537600e+02
+6 10286     -5.671700e+02 5.013200e+02
+7 10286     -3.034200e+02 5.567000e+02
+12 10286     -3.887300e+02 4.941400e+02
+1 10287     -3.823999e+01 5.198800e+02
+7 10287     -6.111800e+02 4.355500e+02
+11 10287     -2.004700e+02 -3.416500e+02
+12 10287     -7.355400e+02 3.463900e+02
+13 10287     -1.215400e+02 7.844000e+01
+14 10287     -7.106000e+01 -3.321600e+02
+1 10288     8.677900e+02 5.190400e+02
+2 10288     5.328998e+01 3.730900e+02
+3 10288     -9.434003e+01 3.759998e+01
+5 10288     8.119100e+02 -2.921997e+01
+6 10288     -5.990997e+01 7.309500e+02
+8 10288     1.254000e+02 2.938700e+02
+9 10288     -1.104600e+02 4.001800e+02
+11 10288     5.092100e+02 -1.544100e+02
+13 10288     5.115900e+02 2.830100e+02
+14 10288     7.057000e+02 -1.103300e+02
+1 10289     3.628300e+02 5.149800e+02
+2 10289     -3.046900e+02 2.621000e+02
+5 10289     3.909000e+02 -1.477800e+02
+6 10289     -4.950100e+02 5.211800e+02
+7 10289     -2.407200e+02 5.685700e+02
+8 10289     -1.708300e+02 2.001800e+02
+9 10289     -4.107200e+02 2.921100e+02
+12 10289     -3.197500e+02 5.087200e+02
+14 10289     3.000000e+02 -2.342500e+02
+1 10290     7.335800e+02 5.117100e+02
+11 10290     4.168199e+02 -1.859000e+02
+13 10290     4.295200e+02 2.519500e+02
+14 10290     6.062300e+02 -1.453200e+02
+1 10291     6.395100e+02 5.107000e+02
+6 10291     -2.405400e+02 6.390700e+02
+1 10292     2.016400e+02 5.095500e+02
+3 10292     -5.711100e+02 -1.160100e+02
+4 10292     3.580017e+00 -2.622900e+02
+5 10292     2.443700e+02 -1.924200e+02
+7 10292     -3.811800e+02 5.103100e+02
+13 10292     6.315002e+01 1.282700e+02
+14 10292     1.572000e+02 -2.808000e+02
+1 10293     7.222500e+02 5.086400e+02
+2 10293     -3.483002e+01 3.389200e+02
+9 10293     -1.846200e+02 3.672400e+02
+11 10293     4.111600e+02 -1.897100e+02
+13 10293     4.243500e+02 2.476900e+02
+14 10293     5.985100e+02 -1.505400e+02
+1 10294     8.770400e+02 5.083600e+02
+14 10294     7.159800e+02 -1.166900e+02
+1 10295     4.064001e+01 5.049000e+02
+8 10295     -4.075400e+02 1.146400e+02
+1 10296     8.532000e+02 5.019600e+02
+13 10296     5.071100e+02 2.692000e+02
+14 10296     7.010100e+02 -1.268800e+02
+1 10297     3.781000e+01 5.001500e+02
+7 10297     -5.297300e+02 4.431200e+02
+8 10297     -4.090600e+02 1.090500e+02
+10 10297     -5.149300e+02 6.051500e+02
+11 10297     -1.315200e+02 -3.429000e+02
+12 10297     -6.422900e+02 3.575900e+02
+14 10297     5.710022e+00 -3.329100e+02
+1 10298     4.311700e+02 4.999800e+02
+5 10298     4.544399e+02 -1.457500e+02
+6 10298     -4.227600e+02 5.350400e+02
+8 10298     -1.220200e+02 2.021800e+02
+12 10298     -2.504000e+02 5.186000e+02
+1 10299     2.692400e+02 4.909900e+02
+2 10299     -3.773100e+02 2.109800e+02
+7 10299     -3.142200e+02 5.151500e+02
+1 10300     9.942999e+01 4.885800e+02
+7 10300     -4.672500e+02 4.541000e+02
+1 10301     1.016400e+02 4.853200e+02
+7 10301     -4.638200e+02 4.516500e+02
+11 10301     -7.464001e+01 -3.424400e+02
+13 10301     -7.469971e+00 8.403000e+01
+14 10301     6.884003e+01 -3.315900e+02
+1 10302     3.406899e+02 4.802000e+02
+5 10302     3.776600e+02 -1.869500e+02
+7 10302     -2.480600e+02 5.290900e+02
+11 10302     1.245300e+02 -2.950700e+02
+13 10302     1.698800e+02 1.383800e+02
+14 10302     2.881100e+02 -2.733900e+02
+1 10303     1.065200e+02 4.701000e+02
+7 10303     -4.536800e+02 4.384000e+02
+10 10303     -4.239500e+02 5.954500e+02
+12 10303     -5.556600e+02 3.534300e+02
+1 10304     -1.774500e+02 4.648900e+02
+11 10304     -3.155000e+02 -4.171600e+02
+13 10304     -2.265500e+02 -2.450012e+00
+14 10304     -2.058600e+02 -4.272400e+02
+1 10305     4.428003e+01 4.626800e+02
+2 10305     -5.787100e+02 1.104700e+02
+5 10305     1.010200e+02 -2.797000e+02
+7 10305     -5.099100e+02 4.082500e+02
+8 10305     -3.939900e+02 7.526001e+01
+10 10305     -4.918500e+02 5.628600e+02
+11 10305     -1.194000e+02 -3.739300e+02
+12 10305     -6.183300e+02 3.165800e+02
+13 10305     -4.781000e+01 5.114001e+01
+14 10305     1.778998e+01 -3.702500e+02
+1 10306     -1.745700e+02 4.620900e+02
+7 10306     -7.263000e+02 3.241100e+02
+11 10306     -3.132700e+02 -4.195800e+02
+1 10307     5.430800e+02 4.522800e+02
+7 10307     -7.039001e+01 5.677100e+02
+1 10308     -4.658002e+01 4.436000e+02
+7 10308     -5.899600e+02 3.548000e+02
+8 10308     -4.665700e+02 3.073001e+01
+10 10308     -5.881700e+02 5.058000e+02
+11 10308     -1.956300e+02 -4.099600e+02
+12 10308     -7.108000e+02 2.502600e+02
+13 10308     -1.163000e+02 1.221997e+01
+15 10308     -5.935100e+02 5.491000e+02
+1 10309     -4.658002e+01 4.436000e+02
+7 10309     -5.899600e+02 3.548000e+02
+8 10309     -4.665700e+02 3.073001e+01
+10 10309     -5.881700e+02 5.058000e+02
+1 10310     6.148101e+02 4.415100e+02
+7 10310     -1.060999e+01 5.802200e+02
+1 10311     -6.200000e+01 4.387300e+02
+7 10311     -6.031700e+02 3.444100e+02
+8 10311     -4.781300e+02 1.898999e+01
+13 10311     -1.279800e+02 4.270020e+00
+15 10311     -6.110800e+02 5.342100e+02
+1 10312     7.659500e+02 4.368900e+02
+5 10312     7.542400e+02 -1.232100e+02
+6 10312     -1.057000e+02 6.115100e+02
+8 10312     9.296997e+01 2.202400e+02
+9 10312     -1.394200e+02 3.188600e+02
+11 10312     4.651400e+02 -2.334100e+02
+14 10312     6.547800e+02 -2.035500e+02
+1 10313     -8.917999e+01 4.354400e+02
+10 10313     -6.349200e+02 4.798500e+02
+1 10314     4.591998e+01 4.309300e+02
+7 10314     -4.963900e+02 3.774600e+02
+11 10314     -1.124600e+02 -4.006500e+02
+1 10315     7.595900e+02 4.310400e+02
+6 10315     -1.071900e+02 6.047900e+02
+1 10316     7.595900e+02 4.310400e+02
+6 10316     -1.071900e+02 6.047900e+02
+1 10317     -2.123999e+01 4.248200e+02
+2 10317     -6.374200e+02 6.065002e+01
+7 10317     -5.578200e+02 3.461700e+02
+8 10317     -4.400100e+02 2.041000e+01
+15 10317     -5.499300e+02 5.352400e+02
+1 10318     2.295000e+02 4.244100e+02
+2 10318     -3.933300e+02 1.238600e+02
+1 10319     2.295000e+02 4.244100e+02
+2 10319     -3.933300e+02 1.238600e+02
+7 10319     -3.265100e+02 4.378500e+02
+1 10320     5.075000e+01 4.242600e+02
+7 10320     -4.891100e+02 3.728000e+02
+8 10320     -3.805200e+02 4.014001e+01
+11 10320     -1.070300e+02 -4.059700e+02
+1 10321     3.595100e+02 4.233100e+02
+2 10321     -2.810100e+02 1.622600e+02
+5 10321     4.050200e+02 -2.393900e+02
+6 10321     -4.591100e+02 4.122600e+02
+7 10321     -2.128900e+02 4.820400e+02
+9 10321     -3.856600e+02 2.047100e+02
+13 10321     1.938000e+02 9.804001e+01
+14 10321     3.170200e+02 -3.243700e+02
+1 10322     4.644399e+02 4.209800e+02
+7 10322     -1.240800e+02 5.149600e+02
+12 10322     -1.885100e+02 4.494900e+02
+1 10323     5.651300e+02 4.202000e+02
+13 10323     3.358199e+02 1.446400e+02
+14 10323     4.926300e+02 -2.724500e+02
+1 10324     6.078199e+02 4.192100e+02
+7 10324     -8.659973e+00 5.584800e+02
+12 10324     -6.332001e+01 5.025500e+02
+1 10325     5.485999e+01 4.172600e+02
+5 10325     1.167100e+02 -3.257100e+02
+7 10325     -4.830300e+02 3.669300e+02
+10 10325     -4.610700e+02 5.142300e+02
+13 10325     -3.250000e+01 1.550000e+01
+14 10325     3.471997e+01 -4.152900e+02
+1 10326     1.720500e+02 4.147300e+02
+5 10326     2.312400e+02 -2.976200e+02
+7 10326     -3.741600e+02 4.082300e+02
+10 10326     -3.305200e+02 5.564800e+02
+11 10326     -5.200195e-01 -3.879200e+02
+13 10326     5.750000e+01 4.378998e+01
+1 10327     2.437400e+02 4.144100e+02
+2 10327     -3.779800e+02 1.173000e+02
+5 10327     2.993600e+02 -2.784500e+02
+7 10327     -3.100900e+02 4.339000e+02
+10 10327     -2.529200e+02 5.842100e+02
+14 10327     2.138400e+02 -3.653800e+02
+1 10328     -2.141000e+02 4.127600e+02
+7 10328     -7.473500e+02 2.570400e+02
+10 10328     -7.753000e+02 4.033100e+02
+1 10329     2.465000e+02 4.124200e+02
+2 10329     -3.748800e+02 1.155200e+02
+5 10329     3.021801e+02 -2.805400e+02
+7 10329     -3.068900e+02 4.325200e+02
+8 10329     -2.283300e+02 8.226001e+01
+9 10329     -4.644000e+02 1.608400e+02
+10 10329     -2.493200e+02 5.811400e+02
+12 10329     -3.893700e+02 3.476800e+02
+1 10330     3.107700e+02 4.119900e+02
+7 10330     -2.514800e+02 4.561900e+02
+1 10331     -2.269400e+02 4.112800e+02
+7 10331     -7.606400e+02 2.510200e+02
+10 10331     -7.901700e+02 3.971800e+02
+13 10331     -2.601200e+02 -6.252002e+01
+14 10331     -2.532200e+02 -4.998300e+02
+1 10332     3.374700e+02 4.111600e+02
+7 10332     -2.276100e+02 4.631600e+02
+13 10332     1.800800e+02 8.310001e+01
+14 10332     2.999700e+02 -3.422800e+02
+1 10333     5.604600e+02 4.084800e+02
+2 10333     -1.241500e+02 2.052300e+02
+4 10333     -2.700000e+01 -4.721899e+02
+5 10333     5.847500e+02 -1.977200e+02
+8 10333     -2.096002e+01 1.573800e+02
+1 10334     2.449700e+02 4.065400e+02
+7 10334     -3.061400e+02 4.266000e+02
+10 10334     -2.484000e+02 5.754400e+02
+14 10334     2.169100e+02 -3.729800e+02
+1 10335     -4.906000e+01 4.038200e+02
+14 10335     -6.675000e+01 -4.587000e+02
+1 10336     2.353600e+02 4.035200e+02
+5 10336     2.934700e+02 -2.924600e+02
+1 10337     2.353600e+02 4.035200e+02
+5 10337     2.934700e+02 -2.924600e+02
+6 10337     -5.742800e+02 3.242600e+02
+7 10337     -3.133900e+02 4.202800e+02
+9 10337     -4.696200e+02 1.479800e+02
+1 10338     1.449800e+02 4.020800e+02
+7 10338     -3.949100e+02 3.858700e+02
+1 10339     6.224600e+02 4.019200e+02
+2 10339     -7.172998e+01 2.124100e+02
+6 10339     -2.099800e+02 5.134500e+02
+7 10339     8.659973e+00 5.472000e+02
+11 10339     3.687800e+02 -2.928700e+02
+1 10340     6.224600e+02 4.019200e+02
+2 10340     -7.172998e+01 2.124100e+02
+6 10340     -2.099800e+02 5.134500e+02
+7 10340     8.659973e+00 5.472000e+02
+9 10340     -2.104200e+02 2.567400e+02
+11 10340     3.687800e+02 -2.928700e+02
+1 10341     4.951899e+02 3.999900e+02
+2 10341     -1.650100e+02 1.767100e+02
+5 10341     5.322400e+02 -2.267500e+02
+12 10341     -1.525900e+02 4.395700e+02
+14 10341     4.416600e+02 -3.092600e+02
+1 10342     6.287200e+02 3.984900e+02
+2 10342     -6.567999e+01 2.112300e+02
+6 10342     -2.027600e+02 5.133600e+02
+7 10342     1.477002e+01 5.463700e+02
+9 10342     -2.057000e+02 2.555200e+02
+12 10342     -3.728998e+01 4.892500e+02
+1 10343     6.287200e+02 3.984900e+02
+6 10343     -2.027600e+02 5.133600e+02
+7 10343     1.477002e+01 5.463700e+02
+9 10343     -2.057000e+02 2.555200e+02
+12 10343     -3.728998e+01 4.892500e+02
+1 10344     7.608600e+02 3.944500e+02
+6 10344     -9.167001e+01 5.661900e+02
+7 10344     1.157300e+02 5.817700e+02
+14 10344     6.641600e+02 -2.419100e+02
+1 10345     5.981801e+02 3.922900e+02
+3 10345     -2.264400e+02 -1.344000e+02
+1 10346     6.433700e+02 3.911100e+02
+7 10346     2.803003e+01 5.441100e+02
+11 10346     3.877200e+02 -2.964500e+02
+13 10346     3.985500e+02 1.447200e+02
+14 10346     5.709399e+02 -2.749100e+02
+1 10347     6.504900e+02 3.846500e+02
+8 10347     4.270001e+01 1.577900e+02
+1 10348     6.685300e+02 3.843100e+02
+7 10348     4.990002e+01 5.459100e+02
+14 10348     5.925601e+02 -2.761900e+02
+1 10349     4.908000e+02 3.833800e+02
+2 10349     -1.639500e+02 1.578400e+02
+7 10349     -9.035999e+01 4.893000e+02
+9 10349     -2.862800e+02 2.053600e+02
+13 10349     2.941600e+02 9.973001e+01
+14 10349     4.414800e+02 -3.266400e+02
+1 10350     4.943700e+02 3.808900e+02
+2 10350     -1.600200e+02 1.558600e+02
+3 10350     -2.980800e+02 -1.753600e+02
+7 10350     -8.659003e+01 4.881500e+02
+9 10350     -2.832000e+02 2.042100e+02
+11 10350     2.736300e+02 -3.402700e+02
+12 10350     -1.452500e+02 4.196700e+02
+13 10350     2.971300e+02 9.876001e+01
+14 10350     4.455800e+02 -3.281400e+02
+1 10351     5.110601e+02 3.791900e+02
+2 10351     -1.467200e+02 1.593300e+02
+7 10351     -7.242999e+01 4.920200e+02
+8 10351     -4.083002e+01 1.207200e+02
+9 10351     -2.713700e+02 2.074000e+02
+13 10351     3.093600e+02 1.017000e+02
+14 10351     4.606200e+02 -3.249100e+02
+1 10352     5.209700e+02 3.758100e+02
+3 10352     -2.763600e+02 -1.727200e+02
+7 10352     -6.307001e+01 4.922600e+02
+11 10352     2.968500e+02 -3.380000e+02
+14 10352     4.702000e+02 -3.251400e+02
+1 10353     6.312100e+02 3.761800e+02
+3 10353     -1.987600e+02 -1.422300e+02
+7 10353     2.371002e+01 5.274500e+02
+12 10353     -2.637000e+01 4.681900e+02
+13 10353     3.923199e+02 1.292000e+02
+14 10353     5.636500e+02 -2.940200e+02
+1 10354     6.430300e+02 3.734400e+02
+2 10354     -4.796002e+01 1.901200e+02
+3 10354     -1.898900e+02 -1.415600e+02
+5 10354     6.681100e+02 -2.139400e+02
+7 10354     3.384003e+01 5.286700e+02
+8 10354     4.153003e+01 1.471400e+02
+9 10354     -1.893500e+02 2.375600e+02
+11 10354     3.933900e+02 -3.103600e+02
+13 10354     4.009700e+02 1.298900e+02
+14 10354     5.744600e+02 -2.934600e+02
+1 10355     6.296700e+02 3.728200e+02
+2 10355     -5.802002e+01 1.861200e+02
+7 10355     2.319000e+01 5.240300e+02
+12 10355     -2.691998e+01 4.639300e+02
+14 10355     5.625601e+02 -2.975400e+02
+1 10356     5.199600e+02 3.722000e+02
+7 10356     -6.277002e+01 4.885100e+02
+14 10356     4.700400e+02 -3.294100e+02
+1 10357     6.512800e+02 3.726000e+02
+7 10357     4.056000e+01 5.303900e+02
+14 10357     5.823600e+02 -2.922500e+02
+1 10358     6.341801e+02 3.710900e+02
+2 10358     -5.389001e+01 1.855700e+02
+3 10358     -1.958000e+02 -1.459800e+02
+7 10358     2.783002e+01 5.239600e+02
+14 10358     5.677600e+02 -2.978900e+02
+1 10359     2.456801e+02 3.630900e+02
+7 10359     -2.901000e+02 3.850000e+02
+8 10359     -2.166000e+02 3.735001e+01
+1 10360     -8.952002e+01 3.568000e+02
+7 10360     -5.983500e+02 2.500200e+02
+1 10361     1.934700e+02 3.410400e+02
+7 10361     -3.244100e+02 3.468800e+02
+11 10361     3.491998e+01 -4.473400e+02
+1 10362     1.934700e+02 3.410400e+02
+7 10362     -3.244100e+02 3.468800e+02
+11 10362     3.491998e+01 -4.473400e+02
+1 10363     -9.171997e+01 3.393900e+02
+7 10363     -5.897000e+02 2.338300e+02
+11 10363     -2.182700e+02 -5.141899e+02
+1 10364     -3.165600e+02 3.351700e+02
+5 10364     -2.569200e+02 -5.136300e+02
+7 10364     -8.191000e+02 1.334900e+02
+1 10365     4.388800e+02 3.314100e+02
+11 10365     2.432300e+02 -3.949700e+02
+13 10365     2.779399e+02 4.721997e+01
+14 10365     4.216200e+02 -3.920500e+02
+1 10366     -1.325500e+02 3.289800e+02
+7 10366     -6.236000e+02 2.073100e+02
+10 10366     -6.342600e+02 3.376100e+02
+1 10367     4.685300e+02 3.256100e+02
+7 10367     -8.201001e+01 4.325100e+02
+13 10367     3.021300e+02 5.085999e+01
+14 10367     4.517400e+02 -3.884300e+02
+1 10368     4.685300e+02 3.256100e+02
+7 10368     -8.201001e+01 4.325100e+02
+14 10368     4.517400e+02 -3.884300e+02
+1 10369     4.884399e+02 3.048500e+02
+2 10369     -1.064500e+02 1.010000e+02
+5 10369     5.725500e+02 -3.215100e+02
+6 10369     -2.529500e+02 3.528400e+02
+10 10369     4.948999e+01 5.562700e+02
+11 10369     2.937900e+02 -4.049200e+02
+13 10369     3.269000e+02 4.116998e+01
+14 10369     4.834000e+02 -4.020300e+02
+1 10370     5.098800e+02 2.967300e+02
+7 10370     -3.297998e+01 4.235500e+02
+1 10371     5.098800e+02 2.967300e+02
+7 10371     -3.297998e+01 4.235500e+02
+1 10372     4.972100e+02 2.965000e+02
+6 10372     -2.372100e+02 3.492400e+02
+1 10373     4.437300e+02 2.956200e+02
+13 10373     3.004500e+02 2.295001e+01
+1 10374     4.399301e+02 2.951200e+02
+14 10374     4.480601e+02 -4.262300e+02
+1 10375     5.156000e+02 2.931500e+02
+5 10375     6.044000e+02 -3.260500e+02
+6 10375     -2.185100e+02 3.546200e+02
+9 10375     -2.069900e+02 1.602300e+02
+10 10375     8.229999e+01 5.535700e+02
+14 10375     5.149301e+02 -4.058500e+02
+1 10376     4.482300e+02 2.924000e+02
+10 10376     1.433002e+01 5.278200e+02
+11 10376     2.646300e+02 -4.259900e+02
+13 10376     3.054000e+02 2.142999e+01
+14 10376     4.563500e+02 -4.260400e+02
+1 10377     4.643700e+02 2.903800e+02
+9 10377     -2.357700e+02 1.442800e+02
+11 10377     2.786899e+02 -4.236300e+02
+14 10377     4.728800e+02 -4.236000e+02
+1 10378     -1.002002e+01 2.895300e+02
+7 10378     -4.800900e+02 2.232900e+02
+1 10379     4.235000e+02 2.889900e+02
+6 10379     -2.951700e+02 3.040800e+02
+1 10380     4.640900e+02 2.865400e+02
+6 10380     -2.558500e+02 3.229000e+02
+11 10380     2.797800e+02 -4.271100e+02
+1 10381     1.085500e+02 2.860000e+02
+7 10381     -3.678600e+02 2.675600e+02
+8 10381     -2.632200e+02 -4.700000e+01
+10 10381     -3.379900e+02 3.876800e+02
+11 10381     -2.421002e+01 -5.168199e+02
+15 10381     -3.050300e+02 4.172100e+02
+1 10382     8.529700e+02 2.780400e+02
+2 10382     2.696000e+02 2.773200e+02
+3 10382     1.287200e+02 -4.975000e+01
+6 10382     1.731100e+02 5.282300e+02
+7 10382     2.763800e+02 5.347900e+02
+1 10383     -1.414100e+02 2.737600e+02
+7 10383     -5.969200e+02 1.541700e+02
+13 10383     -1.323900e+02 -1.550200e+02
+1 10384     5.007800e+02 2.713000e+02
+6 10384     -2.082800e+02 3.276500e+02
+12 10384     -6.202002e+01 3.302000e+02
+1 10385     -1.416300e+02 2.700600e+02
+5 10385     -2.006000e+01 -5.375000e+02
+13 10385     -1.304800e+02 -1.581200e+02
+1 10386     4.278199e+02 2.673900e+02
+11 10386     2.568000e+02 -4.526000e+02
+15 10386     9.796002e+01 5.471000e+02
+1 10387     4.756500e+02 2.660400e+02
+15 10387     1.552700e+02 5.674800e+02
+1 10388     -3.027700e+02 2.646600e+02
+7 10388     -7.570400e+02 7.438000e+01
+1 10389     5.065500e+02 2.642800e+02
+6 10389     -1.963300e+02 3.238800e+02
+10 10389     8.704999e+01 5.202200e+02
+15 10389     1.922300e+02 5.802400e+02
+1 10390     4.357700e+02 2.635300e+02
+10 10390     1.658002e+01 4.921600e+02
+13 10390     3.128500e+02 -3.250000e+00
+1 10391     4.340400e+02 2.603800e+02
+10 10391     1.621002e+01 4.879600e+02
+11 10391     2.652000e+02 -4.576300e+02
+14 10391     4.667000e+02 -4.618500e+02
+15 10391     1.096900e+02 5.411800e+02
+1 10392     4.544800e+02 2.594500e+02
+6 10392     -2.363400e+02 2.930900e+02
+1 10393     4.455800e+02 2.581000e+02
+6 10393     -2.427300e+02 2.870200e+02
+12 10393     -1.007700e+02 2.960500e+02
+1 10394     4.196600e+02 2.522600e+02
+5 10394     5.463000e+02 -3.930400e+02
+6 10394     -2.594600e+02 2.683100e+02
+10 10394     6.200012e+00 4.740600e+02
+11 10394     2.547900e+02 -4.683100e+02
+12 10394     -1.177400e+02 2.798500e+02
+13 10394     3.070601e+02 -1.539001e+01
+14 10394     4.587100e+02 -4.735200e+02
+15 10394     9.664001e+01 5.245200e+02
+1 10395     4.340300e+02 2.439800e+02
+5 10395     5.644500e+02 -3.965600e+02
+6 10395     -2.401600e+02 2.688500e+02
+11 10395     2.695300e+02 -4.713400e+02
+1 10396     4.278400e+02 2.384400e+02
+6 10396     -2.380600e+02 2.599100e+02
+1 10397     -4.643700e+02 2.353000e+02
+13 10397     -3.955500e+02 -2.840500e+02
+1 10398     3.810400e+02 2.330700e+02
+6 10398     -2.733000e+02 2.300800e+02
+10 10398     -2.357001e+01 4.385200e+02
+11 10398     2.286200e+02 -4.953000e+02
+14 10398     4.385800e+02 -5.053800e+02
+1 10399     4.438300e+02 2.170500e+02
+7 10399     -4.208002e+01 3.367500e+02
+11 10399     2.874600e+02 -4.927800e+02
+13 10399     3.439100e+02 -3.522998e+01
+14 10399     5.057500e+02 -5.010100e+02
+1 10400     5.920699e+02 2.168900e+02
+6 10400     -7.815002e+01 3.244000e+02
+1 10401     4.253400e+02 2.164500e+02
+10 10401     2.915997e+01 4.384700e+02
+11 10401     2.712200e+02 -4.983101e+02
+13 10401     3.309900e+02 -4.054999e+01
+14 10401     4.897600e+02 -5.074100e+02
+1 10402     4.406100e+02 2.146000e+02
+7 10402     -4.381000e+01 3.332200e+02
+11 10402     2.850900e+02 -4.957500e+02
+1 10403     4.372800e+02 2.083800e+02
+10 10403     4.732001e+01 4.340100e+02
+1 10404     6.076001e+01 2.055300e+02
+10 10404     -3.460900e+02 2.801600e+02
+15 10404     -3.154500e+02 2.927300e+02
+1 10405     5.896700e+02 1.926000e+02
+6 10405     -5.572998e+01 3.017300e+02
+1 10406     6.206500e+02 1.895200e+02
+6 10406     -2.792999e+01 3.150700e+02
+1 10407     5.654700e+02 1.831800e+02
+6 10407     -6.676001e+01 2.818200e+02
+10 10407     1.845000e+02 4.574800e+02
+11 10407     4.012000e+02 -4.897500e+02
+15 10407     3.067700e+02 5.088400e+02
+1 10408     8.769700e+02 1.815300e+02
+2 10408     3.423800e+02 2.195500e+02
+7 10408     3.335601e+02 4.662100e+02
+1 10409     -1.900200e+02 1.784700e+02
+15 10409     -6.240400e+02 1.307200e+02
+1 10410     2.935300e+02 1.745200e+02
+15 10410     4.262000e+01 3.826600e+02
+1 10411     9.154999e+01 1.695100e+02
+5 10411     3.999900e+02 -5.595000e+02
+7 10411     -2.635200e+02 1.854800e+02
+12 10411     -2.717800e+02 1.140300e+02
+15 10411     -2.256800e+02 2.700200e+02
+1 10412     2.886700e+02 1.695500e+02
+7 10412     -5.500000e+01 2.813400e+02
+10 10412     -3.090997e+01 3.413200e+02
+14 10412     5.690500e+02 -5.667500e+02
+1 10413     5.585000e+02 1.605900e+02
+7 10413     7.913000e+01 3.318400e+02
+10 10413     1.898000e+02 4.315100e+02
+1 10414     -3.049988e+00 1.484400e+02
+8 10414     -2.432900e+02 -1.652000e+02
+10 10414     -3.842900e+02 1.911600e+02
+15 10414     -3.609800e+02 1.887400e+02
+1 10415     8.132001e+01 1.484200e+02
+10 10415     -2.610500e+02 2.313700e+02
+12 10415     -2.617500e+02 9.215997e+01
+15 10415     -2.247900e+02 2.390900e+02
+1 10416     1.303998e+01 1.472600e+02
+7 10416     -3.712100e+02 1.099500e+02
+10 10416     -3.668500e+02 1.969300e+02
+15 10416     -3.397300e+02 1.957900e+02
+1 10417     1.717600e+02 1.448600e+02
+10 10417     -1.416700e+02 2.682200e+02
+1 10418     5.684003e+01 1.352500e+02
+5 10418     3.944301e+02 -6.049600e+02
+15 10418     -2.472500e+02 2.107400e+02
+1 10419     4.140300e+02 1.353100e+02
+15 10419     2.056700e+02 3.919900e+02
+1 10420     -8.907001e+01 1.339100e+02
+7 10420     -4.578300e+02 5.359003e+01
+13 10420     -9.070007e+00 -2.516100e+02
+1 10421     5.325699e+02 1.270500e+02
+10 10421     1.810900e+02 3.861600e+02
+1 10422     4.662800e+02 1.226300e+02
+15 10422     2.764000e+02 4.011700e+02
+1 10423     5.329500e+02 1.219700e+02
+10 10423     1.836300e+02 3.819500e+02
+1 10424     6.188400e+02 1.046500e+02
+15 10424     4.144600e+02 4.398500e+02
+1 10425     8.482100e+02 1.042800e+02
+15 10425     7.014800e+02 5.521100e+02
+1 10426     8.606899e+02 1.011000e+02
+2 10426     4.267500e+02 2.031500e+02
+3 10426     2.887800e+02 -1.154400e+02
+8 10426     4.115100e+02 1.406900e+02
+10 10426     5.326801e+02 4.868600e+02
+13 10426     7.491200e+02 1.015997e+01
+15 10426     7.180601e+02 5.542700e+02
+1 10427     4.685100e+02 9.589001e+01
+15 10427     2.968500e+02 3.710100e+02
+1 10428     -5.040997e+01 9.334000e+01
+7 10428     -3.963600e+02 3.547998e+01
+1 10429     1.844100e+02 9.203000e+01
+15 10429     -4.113000e+01 2.265800e+02
+1 10430     1.844100e+02 9.203000e+01
+15 10430     -4.113000e+01 2.265800e+02
+1 10431     6.187200e+02 8.839999e+01
+10 10431     2.815000e+02 3.802400e+02
+15 10431     4.226300e+02 4.202400e+02
+1 10432     1.137000e+02 8.601999e+01
+7 10432     -1.696000e+02 1.362700e+02
+10 10432     -1.790800e+02 1.803300e+02
+1 10433     6.002600e+02 8.445001e+01
+10 10433     2.669700e+02 3.692400e+02
+1 10434     -4.359998e+01 8.348999e+01
+7 10434     -3.836000e+02 2.996002e+01
+9 10434     -3.972000e+02 -1.443400e+02
+13 10434     5.621002e+01 -2.777800e+02
+1 10435     8.505800e+02 8.076999e+01
+7 10435     3.744500e+02 3.870900e+02
+8 10435     4.120300e+02 1.216700e+02
+1 10436     5.869301e+02 8.045999e+01
+10 10436     2.554301e+02 3.600700e+02
+15 10436     3.908300e+02 3.962200e+02
+1 10437     8.722998e+01 7.994000e+01
+15 10437     -1.684700e+02 1.588800e+02
+1 10438     6.082700e+02 7.442999e+01
+10 10438     2.790000e+02 3.621700e+02
+1 10439     -4.503998e+01 7.346002e+01
+7 10439     -3.781400e+02 2.084003e+01
+10 10439     -3.880700e+02 9.179999e+01
+1 10440     6.199951e-01 7.260999e+01
+7 10440     -2.810400e+02 6.776001e+01
+15 10440     -2.768200e+02 1.050600e+02
+1 10441     6.729900e+02 6.965002e+01
+7 10441     2.126600e+02 3.009100e+02
+1 10442     4.404100e+02 6.859003e+01
+15 10442     2.820699e+02 3.249100e+02
+1 10443     8.636600e+02 6.650000e+01
+2 10443     4.478000e+02 1.792800e+02
+7 10443     3.907600e+02 3.810700e+02
+10 10443     5.482500e+02 4.531200e+02
+1 10444     6.786600e+02 6.345001e+01
+7 10444     2.198000e+02 2.986500e+02
+1 10445     6.754900e+02 6.148999e+01
+7 10445     2.188600e+02 2.952100e+02
+1 10446     2.905100e+02 5.942999e+01
+15 10446     1.109300e+02 2.416300e+02
+1 10447     2.905100e+02 5.942999e+01
+15 10447     1.109300e+02 2.416300e+02
+1 10448     5.544000e+01 5.923999e+01
+7 10448     -2.150300e+02 8.454999e+01
+10 10448     -2.330600e+02 1.262100e+02
+12 10448     -1.864600e+02 1.833002e+01
+15 10448     -1.947800e+02 1.176400e+02
+1 10449     3.018101e+02 5.898999e+01
+2 10449     2.495400e+02 1.202700e+02
+5 10449     7.805200e+02 -5.893300e+02
+6 10449     7.891998e+01 1.341200e+02
+7 10449     2.820001e+01 2.016600e+02
+10 10449     4.439001e+01 2.329500e+02
+12 10449     1.021100e+02 1.858000e+02
+13 10449     4.740400e+02 -1.533200e+02
+1 10450     8.764900e+02 5.915997e+01
+3 10450     3.251801e+02 -1.350900e+02
+9 10450     2.565601e+02 2.508000e+02
+10 10450     5.645400e+02 4.505600e+02
+11 10450     7.164000e+02 -5.128800e+02
+12 10450     4.630400e+02 3.730700e+02
+15 10450     7.568400e+02 5.116100e+02
+1 10451     8.184000e+02 5.735999e+01
+2 10451     4.099301e+02 1.420700e+02
+6 10451     3.160500e+02 3.282400e+02
+9 10451     2.118300e+02 2.149300e+02
+12 10451     4.065000e+02 3.362200e+02
+15 10451     6.874100e+02 4.819000e+02
+1 10452     3.528003e+01 5.387000e+01
+10 10452     -2.565100e+02 1.109300e+02
+1 10453     6.992400e+02 4.571997e+01
+13 10453     6.085100e+02 -8.790997e+01
+1 10454     4.330000e+02 4.033002e+01
+7 10454     1.378400e+02 2.341900e+02
+1 10455     2.397300e+02 3.797998e+01
+2 10455     2.155000e+02 7.629999e+01
+3 10455     1.227200e+02 -2.346100e+02
+4 10455     -2.602600e+02 -4.723101e+02
+6 10455     4.200000e+01 7.796002e+01
+8 10455     2.097500e+02 1.517999e+01
+10 10455     -1.245001e+01 1.844700e+02
+15 10455     5.941998e+01 1.892500e+02
+1 10456     9.738000e+01 3.685999e+01
+7 10456     -1.601200e+02 8.520999e+01
+15 10456     -1.265100e+02 1.117500e+02
+1 10457     1.318700e+02 3.273999e+01
+3 10457     1.709998e+01 -3.131700e+02
+7 10457     -1.181500e+02 1.007900e+02
+10 10457     -1.285900e+02 1.314600e+02
+12 10457     -6.356000e+01 5.154999e+01
+13 10457     3.411400e+02 -2.306000e+02
+15 10457     -7.547998e+01 1.256500e+02
+1 10458     3.585601e+02 3.223999e+01
+10 10458     1.137500e+02 2.274900e+02
+1 10459     4.237900e+02 3.028003e+01
+15 10459     2.845601e+02 2.708000e+02
+1 10460     2.859600e+02 2.717999e+01
+2 10460     2.620300e+02 9.042999e+01
+3 10460     1.633000e+02 -2.209400e+02
+4 10460     -2.639600e+02 -5.090800e+02
+8 10460     2.465300e+02 2.660001e+01
+10 10460     4.235999e+01 1.927100e+02
+12 10460     1.096600e+02 1.480900e+02
+15 10460     1.233200e+02 1.998400e+02
+1 10461     2.028199e+02 2.188000e+01
+2 10461     1.937300e+02 4.312000e+01
+7 10461     -4.194000e+01 1.266500e+02
+9 10461     5.142999e+01 1.282500e+02
+10 10461     -4.396997e+01 1.516300e+02
+13 10461     4.119800e+02 -2.128100e+02
+15 10461     2.271002e+01 1.505600e+02
+1 10462     8.187400e+02 1.209998e+01
+3 10462     2.983600e+02 -2.065900e+02
+10 10462     5.233101e+02 3.819200e+02
+13 10462     7.446200e+02 -6.741998e+01
+15 10462     7.089301e+02 4.289100e+02
+1 10463     4.294200e+02 9.530029e+00
+7 10463     1.498400e+02 2.070600e+02
+1 10464     9.683002e+01 8.549988e+00
+7 10464     -1.450200e+02 6.045001e+01
+10 10464     -1.600800e+02 8.989001e+01
+15 10464     -1.110500e+02 7.694000e+01
+1 10465     -2.322700e+02 3.989990e+00
+7 10465     -5.134400e+02 -1.278100e+02
+15 10465     -5.664000e+02 -1.149600e+02
+1 10466     -1.681500e+02 5.399780e-01
+6 10466     -5.492300e+02 -3.341200e+02
+8 10466     -2.588400e+02 -3.250800e+02
+1 10467     -3.229980e+00 7.899780e-01
+15 10467     -2.354600e+02 1.425000e+01
+1 10468     1.894100e+02 -3.200012e+00
+7 10468     -4.265002e+01 9.839999e+01
+10 10468     -4.703003e+01 1.193500e+02
+13 10468     4.107300e+02 -2.370300e+02
+1 10469     8.061200e+02 -3.929993e+00
+6 10469     3.385000e+02 2.662600e+02
+7 10469     3.682500e+02 3.017400e+02
+10 10469     5.163199e+02 3.605900e+02
+13 10469     7.397100e+02 -8.412000e+01
+15 10469     7.012900e+02 4.034300e+02
+1 10470     2.469399e+02 -6.840027e+00
+15 10470     9.295001e+01 1.377900e+02
+1 10471     2.469399e+02 -6.840027e+00
+15 10471     9.295001e+01 1.377900e+02
+1 10472     5.265800e+02 -6.909973e+00
+15 10472     4.137400e+02 2.745000e+02
+1 10473     3.112900e+02 -1.713000e+01
+10 10473     8.789001e+01 1.562200e+02
+15 10473     1.772900e+02 1.577600e+02
+1 10474     5.076000e+02 -2.212000e+01
+15 10474     4.025200e+02 2.484300e+02
+1 10475     -4.618000e+02 -2.453003e+01
+10 10475     -8.212100e+02 -2.161400e+02
+15 10475     -8.625600e+02 -2.843600e+02
+1 10476     2.673900e+02 -3.628003e+01
+10 10476     5.097998e+01 1.184600e+02
+1 10477     3.430100e+02 -3.939001e+01
+7 10477     1.075500e+02 1.341500e+02
+1 10478     -1.407001e+01 -4.640997e+01
+10 10478     -2.529100e+02 -1.700000e+01
+1 10479     8.398400e+02 -5.089001e+01
+2 10479     4.874301e+02 7.384003e+01
+6 10479     3.995100e+02 2.456300e+02
+15 10479     7.641500e+02 3.642200e+02
+1 10480     3.545500e+02 -5.556000e+01
+15 10480     2.484900e+02 1.332000e+02
+1 10481     8.030300e+02 -6.841998e+01
+15 10481     7.277100e+02 3.253700e+02
+1 10482     1.261000e+02 -7.271002e+01
+10 10482     -8.609998e+01 1.835999e+01
+15 10482     -2.506000e+01 -6.609985e+00
+1 10483     3.268400e+02 -7.342999e+01
+8 10483     3.229000e+02 -3.010001e+01
+15 10483     2.237900e+02 9.753000e+01
+1 10484     6.863000e+01 -7.722998e+01
+15 10484     -9.663000e+01 -4.325000e+01
+1 10485     4.590000e+02 -7.715002e+01
+10 10485     2.548900e+02 1.557900e+02
+1 10486     8.819399e+02 -7.894000e+01
+6 10486     4.574301e+02 2.475700e+02
+7 10486     4.603199e+02 2.736800e+02
+8 10486     5.024100e+02 3.895001e+01
+9 10486     3.237100e+02 1.702400e+02
+10 10486     6.211700e+02 3.154200e+02
+12 10486     5.403300e+02 2.571500e+02
+15 10486     8.271300e+02 3.519900e+02
+1 10487     1.597600e+02 -8.208002e+01
+10 10487     -4.654999e+01 2.316998e+01
+1 10488     1.651700e+02 -8.315002e+01
+10 10488     -3.964001e+01 2.439001e+01
+1 10489     5.325200e+02 -8.654999e+01
+7 10489     2.505200e+02 1.575500e+02
+15 10489     4.584000e+02 1.806400e+02
+1 10490     3.315800e+02 -9.016998e+01
+15 10490     2.381300e+02 7.914001e+01
+1 10491     3.448900e+02 -9.153003e+01
+13 10491     5.607900e+02 -2.561200e+02
+1 10492     1.427800e+02 -9.337000e+01
+3 10492     1.321600e+02 -3.971700e+02
+6 10492     3.448999e+01 -1.098900e+02
+7 10492     -4.321002e+01 -1.989990e+00
+10 10492     -5.778003e+01 4.510010e+00
+12 10492     4.071002e+01 -5.939001e+01
+15 10492     7.799988e+00 -2.284998e+01
+1 10493     3.016600e+02 -9.346002e+01
+7 10493     9.588000e+01 6.981000e+01
+15 10493     2.032900e+02 6.078003e+01
+1 10494     3.095000e+02 -9.460999e+01
+8 10494     3.205600e+02 -5.335001e+01
+1 10495     4.827700e+02 -9.535999e+01
+10 10495     2.831801e+02 1.463200e+02
+1 10496     5.047400e+02 -1.008300e+02
+10 10496     3.031801e+02 1.490500e+02
+15 10496     4.372800e+02 1.509000e+02
+1 10497     1.985900e+02 -1.034200e+02
+2 10497     2.680400e+02 -7.459003e+01
+15 10497     8.160999e+01 -5.989990e+00
+1 10498     4.903003e+01 -1.045100e+02
+10 10498     -1.545200e+02 -4.979999e+01
+1 10499     6.083002e+01 -1.104800e+02
+6 10499     -3.503998e+01 -1.844100e+02
+7 10499     -1.113100e+02 -5.727002e+01
+8 10499     1.468400e+02 -1.803400e+02
+10 10499     -1.388700e+02 -5.109998e+01
+12 10499     -3.507001e+01 -1.317000e+02
+15 10499     -8.659003e+01 -8.801001e+01
+1 10500     1.549200e+02 -1.183500e+02
+7 10500     -1.887000e+01 -1.756000e+01
+1 10501     -1.385100e+02 -1.232900e+02
+4 10501     -4.044800e+02 -1.802700e+02
+1 10502     4.642400e+02 -1.272600e+02
+10 10502     2.784200e+02 1.063900e+02
+1 10503     5.013900e+02 -1.280600e+02
+7 10503     2.518700e+02 1.142700e+02
+15 10503     4.471100e+02 1.165600e+02
+1 10504     1.529399e+02 -1.291100e+02
+4 10504     -3.872200e+02 -4.435900e+02
+7 10504     -1.626001e+01 -2.847998e+01
+8 10504     2.329700e+02 -1.448400e+02
+10 10504     -3.027002e+01 -2.853998e+01
+15 10504     4.001001e+01 -6.079999e+01
+1 10505     5.265000e+02 -1.295200e+02
+7 10505     2.709000e+02 1.226400e+02
+10 10505     3.360400e+02 1.286700e+02
+15 10505     4.767500e+02 1.274300e+02
+1 10506     8.362100e+02 -1.295400e+02
+15 10506     7.963800e+02 2.699400e+02
+1 10507     2.999800e+02 -1.316300e+02
+15 10507     2.195200e+02 1.250000e+01
+1 10508     8.242800e+02 -1.333000e+02
+6 10508     4.291600e+02 1.643300e+02
+7 10508     4.328300e+02 2.064900e+02
+10 10508     5.846100e+02 2.387600e+02
+1 10509     1.523400e+02 -1.365200e+02
+6 10509     7.487000e+01 -1.432500e+02
+1 10510     3.878900e+02 -1.380600e+02
+6 10510     2.618400e+02 -3.130005e+00
+1 10511     3.449700e+02 -1.427100e+02
+10 10511     1.716200e+02 4.095001e+01
+15 10511     2.782900e+02 2.240002e+01
+1 10512     3.678101e+02 -1.447500e+02
+2 10512     4.136000e+02 -3.338000e+01
+3 10512     3.105100e+02 -3.351300e+02
+6 10512     2.515800e+02 -2.078998e+01
+8 10512     3.719000e+02 -7.533002e+01
+10 10512     1.948500e+02 4.870001e+01
+12 10512     2.785900e+02 1.957001e+01
+1 10513     3.678101e+02 -1.447500e+02
+2 10513     4.136000e+02 -3.338000e+01
+6 10513     2.515800e+02 -2.078998e+01
+8 10513     3.719000e+02 -7.533002e+01
+10 10513     1.948500e+02 4.870001e+01
+12 10513     2.785900e+02 1.957001e+01
+1 10514     3.722000e+02 -1.464900e+02
+7 10514     1.709600e+02 5.196002e+01
+15 10514     3.118900e+02 3.151001e+01
+1 10515     8.025100e+02 -1.536800e+02
+15 10515     7.674800e+02 2.253000e+02
+1 10516     -6.241400e+02 -1.602000e+02
+4 10516     -4.636600e+02 1.441600e+02
+1 10517     2.309000e+02 -1.627500e+02
+7 10517     6.958002e+01 -2.073999e+01
+1 10518     -4.827200e+02 -1.728900e+02
+15 10518     -7.926300e+02 -4.906000e+02
+1 10519     3.058400e+02 -1.781700e+02
+7 10519     1.370700e+02 -6.900024e-01
+1 10520     4.146300e+02 -1.778800e+02
+7 10520     2.176801e+02 4.362000e+01
+1 10521     3.541801e+02 -1.823600e+02
+7 10521     1.763101e+02 1.592999e+01
+1 10522     3.961300e+02 -1.848800e+02
+3 10522     3.554800e+02 -3.507600e+02
+7 10522     2.083600e+02 3.084003e+01
+10 10522     2.409700e+02 2.025000e+01
+1 10523     3.662600e+02 -1.891000e+02
+7 10523     1.888300e+02 1.532001e+01
+1 10524     4.980500e+02 -1.903700e+02
+7 10524     2.768000e+02 6.332001e+01
+1 10525     -3.878100e+02 -1.934400e+02
+7 10525     -5.376000e+02 -3.866800e+02
+1 10526     1.833400e+02 -1.945000e+02
+7 10526     4.189001e+01 -7.053998e+01
+13 10526     4.818300e+02 -3.904500e+02
+15 10526     1.132000e+02 -1.245600e+02
+1 10527     1.833400e+02 -1.945000e+02
+15 10527     1.132000e+02 -1.245600e+02
+1 10528     2.432200e+02 -1.995700e+02
+6 10528     1.932700e+02 -1.436801e+02
+1 10529     1.358600e+02 -2.018100e+02
+13 10529     4.528600e+02 -4.114300e+02
+1 10530     8.158002e+01 -2.092700e+02
+15 10530     -9.729980e+00 -1.990600e+02
+1 10531     -6.313300e+02 -2.110600e+02
+4 10531     -5.049500e+02 1.429500e+02
+1 10532     -6.367500e+02 -2.204400e+02
+4 10532     -5.136900e+02 1.462700e+02
+1 10533     -2.566900e+02 -2.238500e+02
+7 10533     -3.896000e+02 -3.415600e+02
+1 10534     4.661500e+02 -2.267300e+02
+7 10534     2.746000e+02 2.251001e+01
+10 10534     3.226700e+02 6.750000e+00
+12 10534     4.014700e+02 -9.539978e+00
+15 10534     4.612300e+02 -1.725000e+01
+1 10535     2.269000e+02 -2.279800e+02
+3 10535     2.985900e+02 -4.511300e+02
+8 10535     3.418300e+02 -1.805800e+02
+15 10535     1.848600e+02 -1.419800e+02
+1 10536     8.207800e+02 -2.299300e+02
+8 10536     5.209800e+02 -9.310999e+01
+1 10537     2.764700e+02 -2.303600e+02
+15 10537     2.442100e+02 -1.180800e+02
+1 10538     8.446400e+02 -2.310400e+02
+15 10538     8.539399e+02 1.556200e+02
+1 10539     -4.959900e+02 -2.319600e+02
+15 10539     -7.716200e+02 -5.763700e+02
+1 10540     -3.150500e+02 -2.336300e+02
+10 10540     -5.192200e+02 -3.715300e+02
+1 10541     -2.162000e+02 -2.340600e+02
+7 10541     -3.445700e+02 -3.292200e+02
+1 10542     -2.162000e+02 -2.340600e+02
+7 10542     -3.445700e+02 -3.292200e+02
+1 10543     -6.302700e+02 -2.378000e+02
+4 10543     -5.267200e+02 1.389200e+02
+1 10544     -2.060300e+02 -2.419300e+02
+4 10544     -5.013900e+02 -1.609700e+02
+1 10545     5.448999e+01 -2.430600e+02
+13 10545     3.694399e+02 -4.886899e+02
+1 10546     8.439399e+02 -2.453000e+02
+7 10546     4.912100e+02 1.267600e+02
+9 10546     3.744600e+02 4.272998e+01
+10 10546     6.464399e+02 1.364500e+02
+13 10546     8.640400e+02 -2.509200e+02
+15 10546     8.602900e+02 1.382900e+02
+1 10547     5.309998e+01 -2.462600e+02
+15 10547     -3.191998e+01 -2.620100e+02
+1 10548     8.244200e+02 -2.467200e+02
+7 10548     4.753600e+02 1.170700e+02
+8 10548     5.316300e+02 -1.019800e+02
+10 10548     6.262300e+02 1.283100e+02
+12 10548     5.736801e+02 7.482001e+01
+15 10548     8.371899e+02 1.271600e+02
+1 10549     5.138000e+02 -2.507600e+02
+10 10549     3.758000e+02 2.400024e+00
+1 10550     5.064800e+02 -2.515800e+02
+10 10550     3.704100e+02 -1.510010e+00
+15 10550     5.189100e+02 -2.672998e+01
+1 10551     2.251600e+02 -2.538400e+02
+10 10551     1.017900e+02 -1.258500e+02
+15 10551     1.963300e+02 -1.739800e+02
+1 10552     5.621997e+01 -2.556800e+02
+10 10552     -8.819000e+01 -2.074300e+02
+1 10553     2.345000e+02 -2.571000e+02
+10 10553     1.134900e+02 -1.244700e+02
+1 10554     -2.014700e+02 -2.582100e+02
+15 10554     -3.601100e+02 -4.271700e+02
+1 10555     4.986400e+02 -2.642600e+02
+15 10555     5.142600e+02 -4.694000e+01
+1 10556     4.661100e+02 -2.666800e+02
+6 10556     4.014200e+02 -7.159003e+01
+7 10556     2.970800e+02 -7.780029e+00
+12 10556     4.351000e+02 -3.962000e+01
+15 10556     4.843900e+02 -6.438000e+01
+1 10557     4.039700e+02 -2.688300e+02
+7 10557     2.530699e+02 -3.463000e+01
+1 10558     3.167300e+02 -2.688400e+02
+6 10558     3.099000e+02 -1.523000e+02
+10 10558     2.027800e+02 -9.882001e+01
+12 10558     3.275100e+02 -1.166000e+02
+15 10558     3.158500e+02 -1.426800e+02
+1 10559     -6.090400e+02 -2.711700e+02
+4 10559     -5.538000e+02 1.186500e+02
+1 10560     4.969100e+02 -2.770400e+02
+15 10560     5.159900e+02 -6.301001e+01
+1 10561     4.112100e+02 -2.782400e+02
+15 10561     4.260300e+02 -1.064600e+02
+1 10562     4.112100e+02 -2.782400e+02
+15 10562     4.260300e+02 -1.064600e+02
+1 10563     2.260200e+02 -2.799300e+02
+10 10563     1.109300e+02 -1.527200e+02
+15 10563     2.076700e+02 -2.061000e+02
+1 10564     5.014700e+02 -2.841500e+02
+15 10564     5.220200e+02 -6.962000e+01
+1 10565     6.935800e+02 -2.901400e+02
+7 10565     4.119100e+02 3.682001e+01
+12 10565     5.184800e+02 -1.660999e+01
+1 10566     -3.948800e+02 -2.934600e+02
+10 10566     -5.784200e+02 -4.801000e+02
+1 10567     -2.484900e+02 -2.940100e+02
+6 10567     -2.762000e+02 -6.612900e+02
+15 10567     -3.974200e+02 -5.004100e+02
+1 10568     7.802800e+02 -3.044600e+02
+7 10568     4.758101e+02 5.882001e+01
+10 10568     6.146400e+02 5.484998e+01
+15 10568     8.222300e+02 3.958002e+01
+1 10569     3.553400e+02 -3.129500e+02
+10 10569     2.500100e+02 -1.289300e+02
+1 10570     -2.336800e+02 -3.195900e+02
+15 10570     -3.611900e+02 -5.233600e+02
+1 10571     4.979200e+02 -3.232900e+02
+15 10571     5.306200e+02 -1.206900e+02
+1 10572     -6.411700e+02 -3.297700e+02
+4 10572     -6.085600e+02 1.350300e+02
+1 10573     2.234500e+02 -3.314900e+02
+7 10573     1.252100e+02 -1.758700e+02
+13 10573     5.468000e+02 -4.966700e+02
+1 10574     7.715601e+02 -3.318900e+02
+15 10574     8.271700e+02 3.599976e+00
+1 10575     -1.404300e+02 -3.465800e+02
+10 10575     -2.629000e+02 -4.014000e+02
+1 10576     -6.795000e+02 -3.487700e+02
+4 10576     -6.290900e+02 1.616000e+02
+1 10577     3.330100e+02 -3.519400e+02
+10 10577     2.401200e+02 -1.794300e+02
+1 10578     6.070500e+02 -3.551700e+02
+10 10578     4.828199e+02 -6.656000e+01
+1 10579     2.466500e+02 -3.626300e+02
+7 10579     1.504600e+02 -1.949100e+02
+10 10579     1.565600e+02 -2.294400e+02
+13 10579     5.654700e+02 -5.181500e+02
+1 10580     3.115601e+02 -3.648100e+02
+15 10580     3.419399e+02 -2.656800e+02
+1 10581     3.093600e+02 -3.683700e+02
+10 10581     2.208300e+02 -2.071000e+02
+15 10581     3.428600e+02 -2.713500e+02
+1 10582     -3.693300e+02 -3.773800e+02
+6 10582     -2.937200e+02 -8.432800e+02
+1 10583     5.879200e+02 -3.819100e+02
+7 10583     3.897900e+02 -7.275000e+01
+10 10583     4.783900e+02 -1.003700e+02
+15 10583     6.552200e+02 -1.461300e+02
+1 10584     -6.751300e+02 -3.842700e+02
+4 10584     -6.620200e+02 1.536800e+02
+1 10585     -6.312200e+02 -3.955400e+02
+4 10585     -6.692000e+02 1.183000e+02
+1 10586     -1.548500e+02 -3.974700e+02
+4 10586     -6.338500e+02 -2.422600e+02
+6 10586     -6.837000e+01 -6.661400e+02
+7 10586     -1.820400e+02 -4.343400e+02
+1 10587     -1.596700e+02 -4.121400e+02
+6 10587     -5.758002e+01 -6.852200e+02
+7 10587     -1.786100e+02 -4.514301e+02
+1 10588     -6.473900e+02 -4.140900e+02
+4 10588     -6.885600e+02 1.283400e+02
+1 10589     -3.395600e+02 -4.165600e+02
+7 10589     -3.406700e+02 -5.571100e+02
+1 10590     -6.759600e+02 -4.247300e+02
+4 10590     -7.019000e+02 1.488900e+02
+1 10591     -1.497600e+02 -4.265200e+02
+4 10591     -6.619300e+02 -2.526500e+02
+6 10591     -3.415002e+01 -6.888400e+02
+9 10591     6.583002e+01 -4.576200e+02
+1 10592     -6.766200e+02 -4.289200e+02
+4 10592     -7.058900e+02 1.487600e+02
+1 10593     8.420900e+02 -4.516200e+02
+7 10593     5.834100e+02 -2.403003e+01
+12 10593     7.292800e+02 -6.515002e+01
+1 10594     7.499600e+02 -4.636899e+02
+7 10594     5.333900e+02 -6.803998e+01
+1 10595     -2.807400e+02 -4.727200e+02
+6 10595     -9.748001e+01 -8.413300e+02
+7 10595     -2.485800e+02 -5.712300e+02
+1 10596     5.612100e+02 -4.867900e+02
+7 10596     4.240400e+02 -1.628300e+02
+15 10596     6.843800e+02 -2.817000e+02
+1 10597     2.150400e+02 -5.538600e+02
+2 10597     5.502300e+02 -5.174900e+02
+1 10598     8.092100e+02 -5.800300e+02
+10 10598     7.609800e+02 -1.949800e+02
+1 10599     1.155800e+02 -5.877900e+02
+10 10599     1.307600e+02 -5.222700e+02
+1 10600     6.001600e+02 5.836800e+02
+2 10600     -1.417500e+02 3.838300e+02
+4 10600     7.095001e+01 -4.810601e+02
+5 10600     5.806300e+02 -2.809003e+01
+8 10600     -3.713000e+01 2.995200e+02
+9 10600     -2.768400e+02 4.042800e+02
+11 10600     2.994399e+02 -1.603100e+02
+13 10600     3.282200e+02 2.753900e+02
+14 10600     4.816600e+02 -1.139800e+02
+1 10601     4.614600e+02 5.831500e+02
+3 10601     -3.743700e+02 2.303998e+01
+4 10601     6.123999e+01 -4.032100e+02
+6 10601     -4.286900e+02 6.443500e+02
+8 10601     -1.209100e+02 2.756100e+02
+9 10601     -3.625000e+02 3.769700e+02
+14 10601     3.692000e+02 -1.464900e+02
+1 10602     6.216500e+02 5.813100e+02
+2 10602     -1.259800e+02 3.860100e+02
+4 10602     7.121997e+01 -4.935601e+02
+5 10602     5.987600e+02 -2.557001e+01
+6 10602     -2.847200e+02 7.070600e+02
+8 10602     -2.395001e+01 3.012200e+02
+9 10602     -2.634300e+02 4.061600e+02
+11 10602     3.158101e+02 -1.579600e+02
+13 10602     3.427300e+02 2.781100e+02
+14 10602     4.994100e+02 -1.112300e+02
+1 10603     6.356899e+02 5.810600e+02
+2 10603     -1.162900e+02 3.882000e+02
+4 10603     7.200000e+01 -5.015900e+02
+5 10603     6.102800e+02 -2.296002e+01
+6 10603     -2.728700e+02 7.113700e+02
+8 10603     -1.590997e+01 3.034500e+02
+9 10603     -2.549700e+02 4.086300e+02
+11 10603     3.260400e+02 -1.553100e+02
+13 10603     3.518900e+02 2.809300e+02
+14 10603     5.104500e+02 -1.081200e+02
+1 10604     6.174301e+02 5.766400e+02
+2 10604     -1.276000e+02 3.813100e+02
+5 10604     5.970000e+02 -3.077002e+01
+9 10604     -2.645300e+02 4.020200e+02
+11 10604     3.143400e+02 -1.625800e+02
+1 10605     6.174301e+02 5.766400e+02
+2 10605     -1.276000e+02 3.813100e+02
+3 10605     -2.646900e+02 4.638000e+01
+5 10605     5.970000e+02 -3.077002e+01
+8 10605     -2.528003e+01 2.977800e+02
+9 10605     -2.645300e+02 4.020200e+02
+11 10605     3.143400e+02 -1.625800e+02
+13 10605     3.409600e+02 2.741600e+02
+14 10605     4.972500e+02 -1.156800e+02
+1 10606     6.300500e+02 5.758100e+02
+2 10606     -1.186200e+02 3.828500e+02
+3 10606     -2.565200e+02 4.739001e+01
+5 10606     6.070500e+02 -2.875000e+01
+8 10606     -1.789001e+01 2.983100e+02
+9 10606     -2.571500e+02 4.029000e+02
+11 10606     3.231700e+02 -1.606100e+02
+13 10606     3.492200e+02 2.757700e+02
+14 10606     5.072400e+02 -1.142200e+02
+1 10607     5.987900e+02 5.745600e+02
+5 10607     5.818000e+02 -3.695001e+01
+13 10607     3.293000e+02 2.685700e+02
+14 10607     4.831100e+02 -1.222500e+02
+1 10608     5.987900e+02 5.745600e+02
+2 10608     -1.397800e+02 3.744800e+02
+3 10608     -2.760200e+02 3.937000e+01
+5 10608     5.818000e+02 -3.695001e+01
+9 10608     -2.746500e+02 3.957100e+02
+11 10608     3.011801e+02 -1.678000e+02
+13 10608     3.293000e+02 2.685700e+02
+1 10609     8.622000e+02 5.715400e+02
+13 10609     4.960200e+02 3.174900e+02
+14 10609     6.850100e+02 -6.890002e+01
+1 10610     5.850200e+02 5.711400e+02
+2 10610     -1.494600e+02 3.694500e+02
+9 10610     -2.824200e+02 3.912400e+02
+11 10610     2.915300e+02 -1.726600e+02
+14 10610     4.730000e+02 -1.279500e+02
+1 10611     5.748600e+02 5.689900e+02
+6 10611     -3.212300e+02 6.743900e+02
+8 10611     -4.915002e+01 2.842400e+02
+11 10611     2.844600e+02 -1.763500e+02
+14 10611     4.653700e+02 -1.319600e+02
+1 10612     5.880200e+02 5.675600e+02
+2 10612     -1.454200e+02 3.668000e+02
+3 10612     -2.812700e+02 3.229999e+01
+4 10612     6.166998e+01 -4.759000e+02
+5 10612     5.750601e+02 -4.484998e+01
+6 10612     -3.075600e+02 6.793100e+02
+8 10612     -3.990002e+01 2.856900e+02
+9 10612     -2.788800e+02 3.892100e+02
+11 10612     2.955500e+02 -1.742400e+02
+14 10612     4.764000e+02 -1.306000e+02
+1 10613     7.991700e+02 5.668900e+02
+2 10613     -3.369995e+00 4.038000e+02
+5 10613     7.447200e+02 -1.650024e+00
+6 10613     -1.319900e+02 7.560800e+02
+9 10613     -1.596300e+02 4.255100e+02
+11 10613     4.465400e+02 -1.338700e+02
+13 10613     4.589000e+02 3.033100e+02
+14 10613     6.401400e+02 -8.487000e+01
+1 10614     5.982600e+02 5.668000e+02
+2 10614     -1.380000e+02 3.681200e+02
+4 10614     6.190002e+01 -4.816700e+02
+5 10614     5.832300e+02 -4.369000e+01
+6 10614     -2.988600e+02 6.823000e+02
+8 10614     -3.379999e+01 2.869900e+02
+14 10614     4.845800e+02 -1.290400e+02
+1 10615     6.192300e+02 5.662400e+02
+4 10615     6.287000e+01 -4.935300e+02
+6 10615     -2.806500e+02 6.898400e+02
+11 10615     3.184100e+02 -1.696500e+02
+14 10615     5.014100e+02 -1.243800e+02
+1 10616     6.115500e+02 5.655500e+02
+2 10616     -1.283600e+02 3.697300e+02
+3 10616     -2.658500e+02 3.441998e+01
+9 10616     -2.646800e+02 3.917200e+02
+14 10616     4.950300e+02 -1.271500e+02
+1 10617     6.768000e+02 5.634600e+02
+13 10617     3.821300e+02 2.763400e+02
+1 10618     6.214600e+02 5.611000e+02
+2 10618     -1.199500e+02 3.669400e+02
+3 10618     -2.579300e+02 3.238000e+01
+8 10618     -1.894000e+01 2.864400e+02
+9 10618     -2.569500e+02 3.894100e+02
+14 10618     5.045500e+02 -1.285700e+02
+1 10619     6.214600e+02 5.611000e+02
+6 10619     -2.764800e+02 6.849800e+02
+8 10619     -1.894000e+01 2.864400e+02
+14 10619     5.045500e+02 -1.285700e+02
+1 10620     6.397800e+02 5.536100e+02
+8 10620     -6.239990e+00 2.836100e+02
+14 10620     5.217000e+02 -1.307900e+02
+1 10621     6.741500e+02 5.459900e+02
+4 10621     5.558002e+01 -5.270400e+02
+5 10621     6.500800e+02 -4.603003e+01
+6 10621     -2.259200e+02 6.910300e+02
+14 10621     5.503400e+02 -1.291000e+02
+1 10622     6.741500e+02 5.459900e+02
+11 10622     3.645500e+02 -1.733800e+02
+13 10622     3.842600e+02 2.639000e+02
+14 10622     5.503400e+02 -1.291000e+02
+1 10623     6.608000e+02 5.386500e+02
+4 10623     5.065997e+01 -5.207100e+02
+11 10623     3.569301e+02 -1.809000e+02
+1 10624     -1.114400e+02 5.370000e+02
+10 10624     -7.069000e+02 5.934600e+02
+1 10625     8.592600e+02 5.363000e+02
+13 10625     5.028101e+02 2.938100e+02
+14 10625     6.943400e+02 -9.746002e+01
+1 10626     -6.927002e+01 5.319600e+02
+2 10626     -7.133800e+02 1.617700e+02
+5 10626     -1.919000e+01 -2.340700e+02
+8 10626     -5.041000e+02 1.128700e+02
+10 10626     -6.528500e+02 6.028000e+02
+11 10626     -2.292600e+02 -3.377200e+02
+12 10626     -7.743800e+02 3.483700e+02
+1 10627     -4.085999e+01 5.282500e+02
+2 10627     -6.841400e+02 1.646100e+02
+5 10627     8.659973e+00 -2.313500e+02
+7 10627     -6.169500e+02 4.430100e+02
+8 10627     -4.806300e+02 1.153600e+02
+10 10627     -6.180800e+02 6.088800e+02
+11 10627     -2.035500e+02 -3.349500e+02
+12 10627     -7.420000e+02 3.554700e+02
+1 10628     1.985800e+02 5.273600e+02
+5 10628     2.391200e+02 -1.751200e+02
+7 10628     -3.899600e+02 5.264900e+02
+8 10628     -2.902800e+02 1.744000e+02
+12 10628     -4.849100e+02 4.573000e+02
+1 10629     3.070400e+02 5.267700e+02
+2 10629     -3.528500e+02 2.605600e+02
+3 10629     -4.815900e+02 -7.100000e+01
+4 10629     1.959003e+01 -3.202100e+02
+5 10629     3.392100e+02 -1.492600e+02
+6 10629     -5.543500e+02 5.090500e+02
+7 10629     -2.927100e+02 5.615800e+02
+8 10629     -2.115000e+02 1.975800e+02
+11 10629     8.715002e+01 -2.652200e+02
+12 10629     -3.772800e+02 5.010600e+02
+1 10630     -9.402002e+01 5.240400e+02
+5 10630     -4.396997e+01 -2.480600e+02
+14 10630     -1.263500e+02 -3.418800e+02
+1 10631     6.518000e+02 5.165700e+02
+2 10631     -8.397998e+01 3.322500e+02
+6 10631     -2.298100e+02 6.514000e+02
+8 10631     1.139001e+01 2.589600e+02
+12 10631     -6.479999e+01 6.134200e+02
+13 10631     3.765400e+02 2.377000e+02
+14 10631     5.415200e+02 -1.604900e+02
+1 10632     8.323999e+01 5.109100e+02
+2 10632     -5.540800e+02 1.806700e+02
+8 10632     -3.751700e+02 1.306300e+02
+11 10632     -9.414001e+01 -3.244100e+02
+12 10632     -5.982000e+02 3.897400e+02
+14 10632     4.729999e+01 -3.101100e+02
+1 10633     1.574700e+02 5.101300e+02
+5 10633     2.028300e+02 -2.024000e+02
+11 10633     -3.226001e+01 -3.100300e+02
+12 10633     -5.200100e+02 4.207900e+02
+1 10634     8.507800e+02 5.061200e+02
+2 10634     4.750000e+01 3.603400e+02
+5 10634     8.029000e+02 -4.303003e+01
+6 10634     -6.681000e+01 7.140100e+02
+8 10634     1.203100e+02 2.843100e+02
+9 10634     -1.149400e+02 3.886400e+02
+11 10634     5.018199e+02 -1.663700e+02
+13 10634     5.046300e+02 2.715900e+02
+14 10634     6.977100e+02 -1.238200e+02
+1 10635     8.442500e+02 5.028800e+02
+2 10635     4.419000e+01 3.563800e+02
+3 10635     -1.029600e+02 2.116998e+01
+5 10635     7.985400e+02 -4.725000e+01
+6 10635     -7.070001e+01 7.079900e+02
+8 10635     1.178000e+02 2.809100e+02
+9 10635     -1.174600e+02 3.850400e+02
+11 10635     4.985699e+02 -1.697100e+02
+13 10635     5.013800e+02 2.681100e+02
+14 10635     6.938199e+02 -1.279900e+02
+1 10636     -3.221997e+01 4.988800e+02
+7 10636     -5.969900e+02 4.163200e+02
+13 10636     -1.135500e+02 6.241998e+01
+1 10637     7.834003e+01 4.989600e+02
+2 10637     -5.550400e+02 1.650200e+02
+4 10637     -9.619995e+00 -1.951100e+02
+5 10637     1.292100e+02 -2.332300e+02
+7 10637     -4.906300e+02 4.567900e+02
+8 10637     -3.756900e+02 1.185100e+02
+11 10637     -9.678003e+01 -3.358000e+02
+12 10637     -5.975000e+02 3.739800e+02
+13 10637     -2.765002e+01 8.964999e+01
+14 10637     4.466998e+01 -3.236300e+02
+1 10638     8.546500e+02 4.949400e+02
+6 10638     -6.023999e+01 7.040600e+02
+9 10638     -1.099700e+02 3.809300e+02
+1 10639     7.748300e+02 4.921100e+02
+5 10639     7.462200e+02 -7.103003e+01
+9 10639     -1.510700e+02 3.645500e+02
+1 10640     -1.019400e+02 4.885800e+02
+7 10640     -6.620000e+02 3.805600e+02
+11 10640     -2.519600e+02 -3.812900e+02
+1 10641     -4.519000e+01 4.879400e+02
+7 10641     -6.035400e+02 4.018100e+02
+1 10642     4.862000e+02 4.860300e+02
+4 10642     9.559998e+00 -4.233800e+02
+5 10642     5.052400e+02 -1.449300e+02
+7 10642     -1.277900e+02 5.810200e+02
+1 10643     3.382700e+02 4.841300e+02
+7 10643     -2.518500e+02 5.318700e+02
+1 10644     5.021002e+01 4.801500e+02
+12 10644     -6.199400e+02 3.435500e+02
+1 10645     -1.369500e+02 4.770900e+02
+7 10645     -6.914500e+02 3.559200e+02
+15 10645     -7.306900e+02 5.519300e+02
+1 10646     1.005900e+02 4.594600e+02
+5 10646     1.567600e+02 -2.684600e+02
+8 10646     -3.478900e+02 8.757999e+01
+11 10646     -7.045001e+01 -3.648800e+02
+14 10646     7.290002e+01 -3.581600e+02
+1 10647     3.001001e+01 4.466300e+02
+2 10647     -5.897300e+02 8.600000e+01
+4 10647     -4.169000e+01 -1.689400e+02
+5 10647     8.785999e+01 -3.003000e+02
+7 10647     -5.173000e+02 3.871700e+02
+11 10647     -1.293700e+02 -3.908200e+02
+13 10647     -5.657001e+01 3.420001e+01
+1 10648     -2.315997e+01 4.401000e+02
+5 10648     3.745001e+01 -3.197200e+02
+8 10648     -4.450100e+02 3.434000e+01
+12 10648     -6.821500e+02 2.582400e+02
+13 10648     -9.617999e+01 1.575000e+01
+14 10648     -4.310999e+01 -4.122700e+02
+15 10648     -5.602900e+02 5.549700e+02
+1 10649     7.670400e+02 4.300000e+02
+5 10649     7.580800e+02 -1.290000e+02
+6 10649     -1.008100e+02 6.060200e+02
+9 10649     -1.360800e+02 3.141200e+02
+11 10649     4.685500e+02 -2.382100e+02
+13 10649     4.695601e+02 2.008600e+02
+1 10650     4.643600e+02 4.292900e+02
+2 10650     -1.983200e+02 1.985600e+02
+7 10650     -1.270100e+02 5.219300e+02
+13 10650     2.665900e+02 1.290500e+02
+1 10651     4.734998e+01 4.262600e+02
+2 10651     -5.665200e+02 6.626001e+01
+7 10651     -4.933100e+02 3.732900e+02
+13 10651     -3.956000e+01 2.121997e+01
+1 10652     8.657900e+02 4.224700e+02
+6 10652     -2.577002e+01 6.362800e+02
+1 10653     2.481700e+02 4.213000e+02
+5 10653     3.022900e+02 -2.704800e+02
+6 10653     -5.698500e+02 3.525400e+02
+9 10653     -4.662400e+02 1.696700e+02
+10 10653     -2.504400e+02 5.927500e+02
+12 10653     -3.917800e+02 3.599800e+02
+1 10654     2.321300e+02 4.199400e+02
+7 10654     -3.222700e+02 4.351400e+02
+9 10654     -4.772600e+02 1.654900e+02
+1 10655     2.321300e+02 4.199400e+02
+2 10655     -3.899300e+02 1.181500e+02
+8 10655     -2.404800e+02 8.479001e+01
+1 10656     3.599200e+02 4.183000e+02
+6 10656     -4.566700e+02 4.067300e+02
+9 10656     -3.837700e+02 2.017400e+02
+1 10657     3.639600e+02 4.158200e+02
+7 10657     -2.063700e+02 4.763400e+02
+9 10657     -3.804400e+02 1.985800e+02
+14 10657     3.224900e+02 -3.309900e+02
+1 10658     7.696600e+02 4.153000e+02
+13 10658     4.750800e+02 1.899800e+02
+1 10659     3.151600e+02 4.129800e+02
+7 10659     -2.478500e+02 4.580300e+02
+1 10660     2.387200e+02 4.062700e+02
+2 10660     -3.799300e+02 1.055800e+02
+5 10660     2.961801e+02 -2.888700e+02
+6 10660     -5.717600e+02 3.296600e+02
+7 10660     -3.116400e+02 4.237500e+02
+9 10660     -4.679200e+02 1.519300e+02
+14 10660     2.109000e+02 -3.754700e+02
+1 10661     4.770800e+02 4.039200e+02
+4 10661     -3.812000e+01 -4.232200e+02
+6 10661     -3.411200e+02 4.474400e+02
+8 10661     -6.919000e+01 1.326800e+02
+1 10662     3.630900e+02 4.033600e+02
+2 10662     -2.716100e+02 1.414400e+02
+5 10662     4.120400e+02 -2.589100e+02
+6 10662     -4.467600e+02 3.906500e+02
+7 10662     -2.027300e+02 4.647300e+02
+1 10663     5.008900e+02 4.020800e+02
+7 10663     -8.742999e+01 5.096100e+02
+11 10663     2.737900e+02 -3.213500e+02
+12 10663     -1.476000e+02 4.449100e+02
+14 10663     4.467000e+02 -3.047100e+02
+1 10664     2.266200e+02 4.000300e+02
+7 10664     -3.199500e+02 4.138400e+02
+9 10664     -4.756300e+02 1.417400e+02
+1 10665     7.938600e+02 3.994700e+02
+13 10665     4.939900e+02 1.846300e+02
+14 10665     6.886500e+02 -2.292400e+02
+1 10666     5.987800e+02 3.963300e+02
+5 10666     6.235200e+02 -2.032300e+02
+7 10666     -8.179993e+00 5.349800e+02
+13 10666     3.658700e+02 1.363400e+02
+14 10666     5.303800e+02 -2.841100e+02
+1 10667     -6.451100e+02 3.935700e+02
+4 10667     -1.046700e+02 2.193800e+02
+1 10668     7.557100e+02 3.895600e+02
+2 10668     2.456000e+01 2.349900e+02
+6 10668     -9.210999e+01 5.605300e+02
+7 10668     1.166200e+02 5.779400e+02
+9 10668     -1.287900e+02 2.799600e+02
+12 10668     6.921997e+01 5.259300e+02
+13 10668     4.729500e+02 1.693500e+02
+1 10669     7.795500e+02 3.896100e+02
+6 10669     -7.390997e+01 5.692900e+02
+13 10669     4.871300e+02 1.745200e+02
+14 10669     6.802800e+02 -2.415200e+02
+1 10670     6.447000e+02 3.864400e+02
+2 10670     -5.107001e+01 2.063200e+02
+4 10670     -3.559003e+01 -5.262400e+02
+5 10670     6.661600e+02 -2.003500e+02
+6 10670     -1.841700e+02 5.098000e+02
+9 10670     -1.926900e+02 2.508400e+02
+12 10670     -1.925000e+01 4.852000e+02
+14 10670     5.718400e+02 -2.781900e+02
+1 10671     2.314301e+02 3.864600e+02
+2 10671     -3.800400e+02 8.095001e+01
+5 10671     2.931200e+02 -3.109400e+02
+6 10671     -5.709000e+02 3.012700e+02
+7 10671     -3.104700e+02 4.033900e+02
+8 10671     -2.328400e+02 5.467001e+01
+9 10671     -4.673700e+02 1.296200e+02
+10 10671     -2.557800e+02 5.461300e+02
+11 10671     5.584003e+01 -3.990600e+02
+14 10671     2.089200e+02 -3.970000e+02
+1 10672     6.390699e+02 3.832900e+02
+5 10672     6.619700e+02 -2.057800e+02
+6 10672     -1.877700e+02 5.018300e+02
+7 10672     2.753998e+01 5.368300e+02
+9 10672     -1.948600e+02 2.454900e+02
+11 10672     3.870900e+02 -3.036900e+02
+12 10672     -2.271002e+01 4.777500e+02
+13 10672     3.960200e+02 1.368600e+02
+14 10672     5.681801e+02 -2.847800e+02
+1 10673     4.833900e+02 3.818500e+02
+2 10673     -1.685600e+02 1.539100e+02
+5 10673     5.263700e+02 -2.478800e+02
+7 10673     -9.501001e+01 4.855000e+02
+9 10673     -2.895900e+02 2.019100e+02
+14 10673     4.365699e+02 -3.300900e+02
+1 10674     6.250601e+02 3.806600e+02
+7 10674     1.741998e+01 5.294000e+02
+8 10674     2.769000e+01 1.486600e+02
+11 10674     3.768600e+02 -3.091800e+02
+13 10674     3.869800e+02 1.311800e+02
+14 10674     5.569900e+02 -2.913300e+02
+1 10675     6.419800e+02 3.795600e+02
+2 10675     -5.092999e+01 1.971900e+02
+1 10676     6.714200e+02 3.777500e+02
+7 10676     5.421997e+01 5.411600e+02
+14 10676     5.962900e+02 -2.814000e+02
+1 10677     4.817900e+02 3.755100e+02
+2 10677     -1.686200e+02 1.463200e+02
+3 10677     -3.056400e+02 -1.846700e+02
+5 10677     5.251600e+02 -2.550900e+02
+7 10677     -9.491998e+01 4.790800e+02
+8 10677     -5.889001e+01 1.102500e+02
+9 10677     -2.895500e+02 1.953200e+02
+11 10677     2.654100e+02 -3.480900e+02
+13 10677     2.896600e+02 9.151999e+01
+14 10677     4.359200e+02 -3.369800e+02
+1 10678     5.127500e+02 3.740500e+02
+7 10678     -6.920001e+01 4.879600e+02
+9 10678     -2.690600e+02 2.032600e+02
+13 10678     3.115699e+02 9.887000e+01
+1 10679     4.775601e+02 3.692200e+02
+2 10679     -1.695600e+02 1.387800e+02
+3 10679     -3.073200e+02 -1.927600e+02
+7 10679     -9.635999e+01 4.721300e+02
+9 10679     -2.905200e+02 1.887200e+02
+13 10679     2.878600e+02 8.554999e+01
+14 10679     4.338600e+02 -3.442000e+02
+1 10680     4.775601e+02 3.692200e+02
+7 10680     -9.635999e+01 4.721300e+02
+14 10680     4.338600e+02 -3.442000e+02
+1 10681     5.174000e+02 3.674200e+02
+2 10681     -1.383800e+02 1.487300e+02
+7 10681     -6.340002e+01 4.834200e+02
+9 10681     -2.643800e+02 1.982600e+02
+13 10681     3.163101e+02 9.432001e+01
+14 10681     4.692000e+02 -3.345900e+02
+1 10682     4.714100e+02 3.352600e+02
+13 10682     2.987800e+02 5.860999e+01
+14 10682     4.475601e+02 -3.786300e+02
+1 10683     -6.327002e+01 3.250300e+02
+13 10683     -9.833002e+01 -9.229999e+01
+14 10683     -5.434998e+01 -5.498600e+02
+15 10683     -5.517200e+02 3.831300e+02
+1 10684     -1.420500e+02 3.227500e+02
+7 10684     -6.289000e+02 1.978100e+02
+10 10684     -6.415700e+02 3.262800e+02
+14 10684     -1.343600e+02 -5.766600e+02
+1 10685     -1.452000e+02 3.192400e+02
+7 10685     -6.302500e+02 1.935700e+02
+13 10685     -1.618600e+02 -1.198700e+02
+1 10686     8.638700e+02 3.184400e+02
+2 10686     2.586300e+02 3.122400e+02
+7 10686     2.698900e+02 5.708200e+02
+9 10686     7.514001e+01 3.544800e+02
+12 10686     2.744301e+02 5.572000e+02
+14 10686     8.729600e+02 -2.709800e+02
+1 10687     6.882700e+02 3.100500e+02
+13 10687     4.595601e+02 9.531000e+01
+14 10687     6.486600e+02 -3.389100e+02
+1 10688     5.127300e+02 3.005700e+02
+5 10688     5.968800e+02 -3.193100e+02
+6 10688     -2.284800e+02 3.605900e+02
+7 10688     -3.328003e+01 4.276300e+02
+10 10688     7.626001e+01 5.607400e+02
+11 10688     3.152000e+02 -4.024500e+02
+13 10688     3.460000e+02 4.420001e+01
+14 10688     5.073300e+02 -3.989200e+02
+1 10689     4.669200e+02 2.985500e+02
+6 10689     -2.655900e+02 3.353400e+02
+11 10689     2.782300e+02 -4.159500e+02
+14 10689     4.692200e+02 -4.150200e+02
+1 10690     5.541700e+02 2.978600e+02
+2 10690     -5.248999e+01 1.163900e+02
+6 10690     -1.891400e+02 3.793800e+02
+9 10690     -1.871600e+02 1.740000e+02
+13 10690     3.764600e+02 5.282001e+01
+14 10690     5.458400e+02 -3.891300e+02
+1 10691     4.662900e+02 2.937900e+02
+6 10691     -2.614600e+02 3.309400e+02
+11 10691     2.792200e+02 -4.203000e+02
+1 10692     -2.904300e+02 2.840600e+02
+7 10692     -7.569700e+02 9.706000e+01
+1 10693     4.229000e+02 2.672800e+02
+6 10693     -2.724000e+02 2.838000e+02
+11 10693     2.527900e+02 -4.543200e+02
+13 10693     3.012600e+02 -3.710022e+00
+15 10693     9.115997e+01 5.445600e+02
+1 10694     -3.545000e+02 2.600800e+02
+13 10694     -3.098600e+02 -2.292300e+02
+1 10695     -3.545000e+02 2.600800e+02
+7 10695     -8.110500e+02 4.451001e+01
+13 10695     -3.098600e+02 -2.292300e+02
+1 10696     -2.025500e+02 2.569700e+02
+4 10696     -1.620000e+02 -5.831000e+01
+7 10696     -6.474000e+02 1.123800e+02
+10 10696     -6.732600e+02 2.258500e+02
+1 10697     4.207100e+02 2.563000e+02
+11 10697     2.540900e+02 -4.644200e+02
+12 10697     -1.199700e+02 2.836800e+02
+15 10697     9.525000e+01 5.298100e+02
+1 10698     4.207100e+02 2.563000e+02
+6 10698     -2.627000e+02 2.726700e+02
+11 10698     2.540900e+02 -4.644200e+02
+12 10698     -1.199700e+02 2.836800e+02
+15 10698     9.525000e+01 5.298100e+02
+1 10699     4.266300e+02 2.542600e+02
+5 10699     5.510500e+02 -3.894000e+02
+6 10699     -2.561400e+02 2.736000e+02
+10 10699     1.176001e+01 4.789400e+02
+11 10699     2.600699e+02 -4.646700e+02
+14 10699     4.637600e+02 -4.699200e+02
+1 10700     4.087600e+02 2.495000e+02
+6 10700     -2.655100e+02 2.605900e+02
+11 10700     2.473600e+02 -4.739600e+02
+12 10700     -1.253400e+02 2.726300e+02
+15 10700     8.565997e+01 5.153000e+02
+1 10701     4.183000e+02 2.451200e+02
+6 10701     -2.536900e+02 2.611600e+02
+12 10701     -1.139800e+02 2.734200e+02
+1 10702     4.426899e+02 2.436000e+02
+6 10702     -2.298500e+02 2.731400e+02
+11 10702     2.771000e+02 -4.699600e+02
+1 10703     3.491300e+02 2.386400e+02
+10 10703     -5.917999e+01 4.321800e+02
+11 10703     1.993500e+02 -4.987100e+02
+1 10704     3.763700e+02 2.334600e+02
+4 10704     -1.423100e+02 -4.040300e+02
+5 10704     5.195699e+02 -4.247900e+02
+6 10704     -2.767000e+02 2.269600e+02
+11 10704     2.249000e+02 -4.966200e+02
+1 10705     -3.399600e+02 2.325100e+02
+7 10705     -7.751000e+02 2.744000e+01
+1 10706     8.579700e+02 2.316200e+02
+3 10706     1.573900e+02 -7.915997e+01
+7 10706     2.981899e+02 4.994400e+02
+9 10706     1.106800e+02 2.995800e+02
+1 10707     3.489399e+02 2.293100e+02
+7 10707     -1.268100e+02 3.113500e+02
+10 10707     -5.522998e+01 4.213600e+02
+11 10707     2.021700e+02 -5.081000e+02
+13 10707     2.691000e+02 -5.284998e+01
+14 10707     4.108600e+02 -5.206899e+02
+1 10708     -5.017900e+02 2.182600e+02
+13 10708     -4.208600e+02 -3.098100e+02
+1 10709     -1.658200e+02 2.182600e+02
+15 10709     -6.181500e+02 1.941400e+02
+1 10710     3.806000e+02 2.164700e+02
+6 10710     -2.567100e+02 2.145600e+02
+7 10710     -9.273999e+01 3.130200e+02
+10 10710     -1.470001e+01 4.215600e+02
+13 10710     2.994399e+02 -5.265997e+01
+14 10710     4.502100e+02 -5.215300e+02
+1 10711     3.806000e+02 2.164700e+02
+4 10711     -1.514300e+02 -4.114600e+02
+5 10711     5.358199e+02 -4.403400e+02
+6 10711     -2.567100e+02 2.145600e+02
+7 10711     -9.273999e+01 3.130200e+02
+1 10712     3.867500e+02 2.133400e+02
+5 10712     5.426600e+02 -4.420601e+02
+6 10712     -2.483200e+02 2.147600e+02
+13 10712     3.059500e+02 -5.319000e+01
+14 10712     4.576300e+02 -5.228199e+02
+1 10713     2.137100e+02 2.106200e+02
+7 10713     -2.300500e+02 2.452200e+02
+1 10714     4.346300e+02 2.054900e+02
+6 10714     -1.981800e+02 2.337500e+02
+1 10715     1.372300e+02 2.031800e+02
+6 10715     -4.720000e+02 6.309003e+01
+1 10716     -3.794400e+02 2.022400e+02
+13 10716     -2.977800e+02 -2.854100e+02
+1 10717     5.653900e+02 1.871000e+02
+5 10717     7.220000e+02 -4.154900e+02
+6 10717     -7.079999e+01 2.846100e+02
+10 10717     1.831900e+02 4.615900e+02
+13 10717     4.421500e+02 -2.395001e+01
+14 10717     6.318600e+02 -4.912900e+02
+1 10718     4.488900e+02 1.855200e+02
+10 10718     6.833002e+01 4.142600e+02
+1 10719     -2.919000e+01 1.740100e+02
+2 10719     -4.244700e+02 -1.756200e+02
+4 10719     -2.012800e+02 -1.758600e+02
+5 10719     1.638500e+02 -6.094399e+02
+7 10719     -4.269100e+02 1.149900e+02
+13 10719     1.439001e+01 -2.014100e+02
+15 10719     -4.112600e+02 2.075600e+02
+1 10720     2.929000e+02 1.702900e+02
+7 10720     -5.219000e+01 2.831500e+02
+10 10720     -2.777002e+01 3.443100e+02
+14 10720     5.716300e+02 -5.641000e+02
+15 10720     4.357001e+01 3.761100e+02
+1 10721     2.929000e+02 1.702900e+02
+7 10721     -5.219000e+01 2.831500e+02
+15 10721     4.357001e+01 3.761100e+02
+1 10722     8.120699e+02 1.540800e+02
+6 10722     2.000400e+02 3.917500e+02
+7 10722     2.893800e+02 4.200200e+02
+8 10722     3.085900e+02 1.112800e+02
+13 10722     6.537000e+02 2.463000e+01
+1 10723     3.200012e+00 1.478500e+02
+7 10723     -3.804700e+02 1.059300e+02
+15 10723     -3.529800e+02 1.908700e+02
+1 10724     3.200012e+00 1.478500e+02
+7 10724     -3.804700e+02 1.059300e+02
+15 10724     -3.529800e+02 1.908700e+02
+1 10725     2.387300e+02 1.473800e+02
+15 10725     -5.599976e+00 3.220100e+02
+1 10726     -5.062000e+01 1.396000e+02
+7 10726     -4.249000e+02 7.579999e+01
+1 10727     6.632001e+01 1.391500e+02
+4 10727     -2.103900e+02 -2.880500e+02
+10 10727     -2.717300e+02 2.152000e+02
+13 10727     1.927200e+02 -1.804500e+02
+1 10728     6.632001e+01 1.391500e+02
+4 10728     -2.103900e+02 -2.880500e+02
+5 10728     4.006300e+02 -5.980900e+02
+10 10728     -2.717300e+02 2.152000e+02
+12 10728     -2.681900e+02 7.632001e+01
+13 10728     1.927200e+02 -1.804500e+02
+1 10729     2.369800e+02 1.383500e+02
+7 10729     -7.498999e+01 2.389000e+02
+1 10730     2.437200e+02 1.312500e+02
+15 10730     1.107001e+01 3.052800e+02
+1 10731     6.439399e+02 1.197800e+02
+7 10731     1.647900e+02 3.294400e+02
+1 10732     1.233400e+02 1.069100e+02
+15 10732     -1.330000e+02 2.128300e+02
+1 10733     1.233400e+02 1.069100e+02
+15 10733     -1.330000e+02 2.128300e+02
+1 10734     1.737800e+02 1.011300e+02
+4 10734     -2.231100e+02 -4.015300e+02
+1 10735     -1.995100e+02 9.213000e+01
+15 10735     -5.794600e+02 1.496997e+01
+1 10736     6.358199e+02 8.951999e+01
+7 10736     1.747400e+02 3.039000e+02
+15 10736     4.419000e+02 4.307000e+02
+1 10737     6.727200e+02 8.254999e+01
+10 10737     3.374301e+02 3.955300e+02
+1 10738     1.828900e+02 7.954001e+01
+6 10738     -5.526001e+01 7.728998e+01
+7 10738     -9.151001e+01 1.664900e+02
+8 10738     1.345700e+02 1.326001e+01
+13 10738     3.681300e+02 -1.764200e+02
+1 10739     8.749200e+02 6.652002e+01
+7 10739     4.005000e+02 3.861100e+02
+8 10739     4.367100e+02 1.261200e+02
+9 10739     2.528000e+02 2.546600e+02
+12 10739     4.594200e+02 3.778800e+02
+15 10739     7.518300e+02 5.211900e+02
+1 10740     2.282000e+02 6.212000e+01
+3 10740     9.159998e+01 -2.266400e+02
+4 10740     -2.448300e+02 -4.561600e+02
+8 10740     1.841000e+02 2.445001e+01
+9 10740     4.257001e+01 1.636800e+02
+1 10741     -4.172600e+02 6.152002e+01
+15 10741     -8.578700e+02 -1.459600e+02
+1 10742     9.133002e+01 5.514001e+01
+15 10742     -1.464900e+02 1.310700e+02
+1 10743     5.973600e+02 5.398999e+01
+10 10743     2.790800e+02 3.367200e+02
+1 10744     3.299700e+02 5.140997e+01
+15 10744     1.631000e+02 2.511200e+02
+1 10745     1.917800e+02 4.444000e+01
+7 10745     -6.392999e+01 1.409000e+02
+10 10745     -6.707001e+01 1.707900e+02
+1 10746     4.631400e+02 4.326001e+01
+15 10746     3.204301e+02 3.052600e+02
+1 10747     4.631400e+02 4.326001e+01
+10 10747     2.073199e+02 2.801500e+02
+15 10747     3.204301e+02 3.052600e+02
+1 10748     -7.070007e+00 4.128998e+01
+4 10748     -2.770900e+02 -2.743200e+02
+6 10748     -2.634600e+02 -1.039900e+02
+8 10748     -3.272998e+01 -1.264700e+02
+10 10748     -2.924800e+02 7.906000e+01
+15 10748     -2.637700e+02 6.210999e+01
+1 10749     5.619000e+01 4.179999e+01
+7 10749     -2.027300e+02 7.003998e+01
+1 10750     1.528998e+01 2.850000e+01
+15 10750     -2.295700e+02 5.760999e+01
+1 10751     1.227300e+02 2.338000e+01
+2 10751     9.865997e+01 -1.634003e+01
+3 10751     1.254999e+01 -3.269300e+02
+4 10751     -2.788600e+02 -3.799500e+02
+6 10751     -8.379001e+01 -1.896002e+01
+7 10751     -1.237500e+02 8.851999e+01
+13 10751     3.350900e+02 -2.405000e+02
+1 10752     -1.881300e+02 2.325000e+01
+7 10752     -4.836100e+02 -8.850000e+01
+15 10752     -5.210600e+02 -6.609998e+01
+1 10753     8.567400e+02 -1.130005e+00
+9 10753     2.686500e+02 2.032100e+02
+15 10753     7.610500e+02 4.313400e+02
+1 10754     4.945000e+02 -1.160999e+01
+15 10754     3.840699e+02 2.542900e+02
+1 10755     -1.714800e+02 -1.765997e+01
+8 10755     -2.476400e+02 -3.396500e+02
+9 10755     -3.931700e+02 -2.610400e+02
+1 10756     3.974700e+02 -1.721002e+01
+10 10756     1.741700e+02 1.911200e+02
+1 10757     -1.771000e+02 -2.265002e+01
+2 10757     -3.518700e+02 -3.918500e+02
+6 10757     -5.291700e+02 -3.612400e+02
+7 10757     -4.427800e+02 -1.242800e+02
+8 10757     -2.461300e+02 -3.441600e+02
+9 10757     -3.921800e+02 -2.667100e+02
+13 10757     9.989990e+00 -4.069800e+02
+1 10758     8.517700e+02 -2.603998e+01
+7 10758     4.156600e+02 3.028600e+02
+1 10759     4.890500e+02 -2.740002e+01
+10 10759     2.619900e+02 2.182200e+02
+15 10759     3.863600e+02 2.330300e+02
+1 10760     2.477100e+02 -3.284003e+01
+4 10760     -3.095200e+02 -4.952400e+02
+1 10761     1.846300e+02 -3.515997e+01
+4 10761     -3.152300e+02 -4.433300e+02
+6 10761     3.402002e+01 -2.602002e+01
+8 10761     2.040000e+02 -6.200000e+01
+9 10761     7.294000e+01 7.867999e+01
+10 10761     -3.803003e+01 8.446002e+01
+12 10761     4.465002e+01 2.559998e+01
+15 10761     2.877002e+01 7.073999e+01
+1 10762     8.647800e+02 -4.046002e+01
+3 10762     3.683400e+02 -2.128000e+02
+6 10762     4.196300e+02 2.710000e+02
+8 10762     4.737700e+02 5.420999e+01
+12 10762     5.044100e+02 2.803800e+02
+1 10763     8.919983e+00 -4.570001e+01
+2 10763     3.521002e+01 -1.463400e+02
+3 10763     -4.039001e+01 -4.543199e+02
+8 10763     5.410999e+01 -1.658900e+02
+10 10763     -2.295600e+02 -5.880005e+00
+12 10763     -1.477000e+02 -1.072700e+02
+15 10763     -1.917100e+02 -3.646997e+01
+1 10764     3.645100e+02 -4.977002e+01
+6 10764     2.012100e+02 6.987000e+01
+10 10764     1.551000e+02 1.459600e+02
+12 10764     2.267900e+02 1.156900e+02
+1 10765     3.645100e+02 -4.977002e+01
+10 10765     1.551000e+02 1.459600e+02
+1 10766     1.947600e+02 -5.108002e+01
+8 10766     2.210600e+02 -6.935999e+01
+1 10767     4.712900e+02 -5.198999e+01
+15 10767     3.790400e+02 1.944600e+02
+1 10768     1.970100e+02 -6.648999e+01
+6 10768     6.715002e+01 -4.812000e+01
+9 10768     9.927002e+01 6.281000e+01
+1 10769     7.788000e+01 -7.491998e+01
+4 10769     -3.517700e+02 -3.687100e+02
+6 10769     -5.276001e+01 -1.425200e+02
+7 10769     -1.161200e+02 -1.907001e+01
+9 10769     9.409973e+00 -1.494000e+01
+10 10769     -1.389400e+02 -5.750000e+00
+12 10769     -4.769000e+01 -8.901001e+01
+13 10769     3.393900e+02 -3.339100e+02
+15 10769     -8.622998e+01 -3.540997e+01
+1 10770     2.103900e+02 -7.581000e+01
+2 10770     2.646500e+02 -3.876001e+01
+3 10770     1.732800e+02 -3.436000e+02
+6 10770     8.640997e+01 -4.745001e+01
+7 10770     8.969971e+00 4.446997e+01
+8 10770     2.445500e+02 -8.071002e+01
+10 10770     5.929993e+00 5.228003e+01
+13 10770     4.543800e+02 -2.867700e+02
+15 10770     8.296002e+01 3.492999e+01
+1 10771     3.730601e+02 -8.273999e+01
+2 10771     3.877300e+02 2.921997e+01
+7 10771     1.484200e+02 1.082200e+02
+8 10771     3.509600e+02 -2.378000e+01
+10 10771     1.760800e+02 1.160600e+02
+15 10771     2.828700e+02 1.109900e+02
+1 10772     3.730601e+02 -8.273999e+01
+2 10772     3.877300e+02 2.921997e+01
+6 10772     2.243800e+02 4.483002e+01
+1 10773     2.475000e+02 -8.985999e+01
+3 10773     2.113300e+02 -3.350600e+02
+4 10773     -3.513000e+02 -5.073700e+02
+6 10773     1.306300e+02 -3.733002e+01
+7 10773     4.882001e+01 4.900000e+01
+8 10773     2.793900e+02 -7.479999e+01
+1 10774     3.522600e+02 -9.470001e+01
+6 10774     2.171500e+02 2.058002e+01
+8 10774     3.449700e+02 -3.919000e+01
+1 10775     3.267100e+02 -1.057500e+02
+8 10775     3.355800e+02 -5.585999e+01
+1 10776     3.267100e+02 -1.057500e+02
+8 10776     3.355800e+02 -5.585999e+01
+1 10777     5.391000e+02 -1.208100e+02
+10 10777     3.434000e+02 1.427000e+02
+15 10777     4.858900e+02 1.440700e+02
+1 10778     2.850699e+02 -1.263400e+02
+7 10778     9.428998e+01 3.294000e+01
+8 10778     3.169300e+02 -8.954999e+01
+10 10778     1.051800e+02 3.200000e+01
+12 10778     1.994200e+02 -6.059998e+00
+13 10778     5.281300e+02 -3.030400e+02
+1 10779     -4.946500e+02 -1.297900e+02
+7 10779     -6.922300e+02 -3.898800e+02
+15 10779     -8.385800e+02 -4.423900e+02
+1 10780     1.731700e+02 -1.293900e+02
+15 10780     6.713000e+01 -5.000000e+01
+1 10781     8.289800e+02 -1.354100e+02
+7 10781     4.384399e+02 2.064000e+02
+10 10781     5.894399e+02 2.391500e+02
+1 10782     8.289800e+02 -1.354100e+02
+7 10782     4.384399e+02 2.064000e+02
+15 10782     7.912000e+02 2.591900e+02
+1 10783     7.757001e+01 -1.377100e+02
+3 10783     1.158900e+02 -4.696700e+02
+4 10783     -3.979800e+02 -3.874800e+02
+6 10783     6.599976e+00 -1.954600e+02
+7 10783     -8.032001e+01 -7.192999e+01
+8 10783     1.805800e+02 -1.880900e+02
+10 10783     -1.080500e+02 -7.207001e+01
+15 10783     -5.026001e+01 -1.121800e+02
+1 10784     4.854200e+02 -1.400400e+02
+7 10784     2.474500e+02 9.967001e+01
+10 10784     3.024500e+02 1.016200e+02
+15 10784     4.358900e+02 9.514001e+01
+1 10785     6.060800e+02 -1.410400e+02
+7 10785     3.238000e+02 1.393100e+02
+1 10786     1.866998e+01 -1.488800e+02
+2 10786     1.073200e+02 -2.551600e+02
+3 10786     3.403998e+01 -5.605800e+02
+4 10786     -4.123000e+02 -3.313200e+02
+6 10786     -7.697998e+01 -2.689000e+02
+8 10786     1.117800e+02 -2.549700e+02
+9 10786     -4.900024e+00 -1.223500e+02
+10 10786     -1.739600e+02 -1.124200e+02
+15 10786     -1.254000e+02 -1.605400e+02
+1 10787     2.225800e+02 -1.536400e+02
+7 10787     5.789001e+01 -1.627002e+01
+1 10788     -3.799200e+02 -1.575500e+02
+7 10788     -5.534900e+02 -3.493300e+02
+1 10789     2.556899e+02 -1.590400e+02
+7 10789     8.748999e+01 -6.719971e+00
+1 10790     8.241801e+02 -1.696300e+02
+6 10790     4.493900e+02 1.317200e+02
+8 10790     4.977000e+02 -5.128000e+01
+10 10790     5.975300e+02 2.033100e+02
+13 10790     8.172900e+02 -2.011000e+02
+1 10791     2.380005e+00 -1.723000e+02
+10 10791     -1.858400e+02 -1.457200e+02
+1 10792     -6.465900e+02 -1.911500e+02
+4 10792     -4.901300e+02 1.559700e+02
+1 10793     5.436300e+02 -1.957400e+02
+10 10793     3.792300e+02 6.921997e+01
+1 10794     1.590300e+02 -1.976900e+02
+15 10794     8.584003e+01 -1.409300e+02
+1 10795     -2.398900e+02 -1.972600e+02
+7 10795     -3.914700e+02 -3.089500e+02
+13 10795     6.008002e+01 -5.749200e+02
+1 10796     -2.189900e+02 -2.192300e+02
+6 10796     -3.354100e+02 -5.710500e+02
+9 10796     -2.086200e+02 -3.968600e+02
+15 10796     -4.064800e+02 -3.879000e+02
+1 10797     -6.329100e+02 -2.244800e+02
+4 10797     -5.154500e+02 1.426200e+02
+1 10798     4.619900e+02 -2.268300e+02
+12 10798     3.981801e+02 -1.215002e+01
+1 10799     -6.424200e+02 -2.348100e+02
+4 10799     -5.256000e+02 1.480300e+02
+1 10800     -3.874300e+02 -2.347100e+02
+7 10800     -5.088200e+02 -4.235400e+02
+15 10800     -6.198800e+02 -5.110400e+02
+1 10801     5.583002e+01 -2.371600e+02
+10 10801     -9.504999e+01 -1.873100e+02
+15 10801     -3.198999e+01 -2.495100e+02
+1 10802     -5.209003e+01 -2.427100e+02
+10 10802     -2.156700e+02 -2.467400e+02
+1 10803     8.420300e+02 -2.431600e+02
+2 10803     5.916600e+02 -7.088000e+01
+8 10803     5.435500e+02 -8.809998e+01
+10 10803     6.426899e+02 1.387700e+02
+12 10803     5.880500e+02 9.031000e+01
+1 10804     -6.305800e+02 -2.447200e+02
+4 10804     -5.329700e+02 1.380800e+02
+1 10805     5.279900e+02 -2.464700e+02
+10 10805     3.858800e+02 1.207001e+01
+15 10805     5.381500e+02 -1.071002e+01
+1 10806     8.328800e+02 -2.502000e+02
+15 10806     8.492000e+02 1.271000e+02
+1 10807     -6.209100e+02 -2.518100e+02
+4 10807     -5.385800e+02 1.302400e+02
+1 10808     4.345000e+02 -2.553300e+02
+10 10808     3.076300e+02 -3.570001e+01
+15 10808     4.420100e+02 -6.741998e+01
+1 10809     -2.084700e+02 -2.582300e+02
+15 10809     -3.676300e+02 -4.316000e+02
+1 10810     -3.881100e+02 -2.587200e+02
+7 10810     -4.940400e+02 -4.455601e+02
+10 10810     -5.910300e+02 -4.384100e+02
+15 10810     -6.059800e+02 -5.419500e+02
+1 10811     8.368199e+02 -2.592900e+02
+2 10811     5.962200e+02 -8.832001e+01
+7 10811     4.906400e+02 1.126800e+02
+8 10811     5.467300e+02 -1.026600e+02
+12 10811     5.925100e+02 7.242999e+01
+13 10811     8.631700e+02 -2.645900e+02
+15 10811     8.581000e+02 1.186900e+02
+1 10812     4.075500e+02 -2.649700e+02
+2 10812     5.223101e+02 -1.068500e+02
+3 10812     4.192700e+02 -4.022100e+02
+7 10812     2.537800e+02 -3.031000e+01
+13 10812     6.719399e+02 -3.711100e+02
+1 10813     3.874600e+02 -2.653700e+02
+7 10813     2.394200e+02 -3.913000e+01
+1 10814     3.476700e+02 -2.686600e+02
+7 10814     2.120699e+02 -5.759003e+01
+1 10815     8.408000e+02 -2.775400e+02
+2 10815     6.098199e+02 -9.856000e+01
+7 10815     5.007500e+02 1.002800e+02
+8 10815     5.579301e+02 -1.117100e+02
+9 10815     3.875400e+02 2.069000e+01
+10 10815     6.545200e+02 1.049100e+02
+12 10815     6.060400e+02 5.956000e+01
+13 10815     8.741200e+02 -2.766900e+02
+15 10815     8.713101e+02 9.964001e+01
+1 10816     8.481700e+02 -2.893900e+02
+2 10816     6.221200e+02 -1.019600e+02
+7 10816     5.110100e+02 9.422000e+01
+8 10816     5.679600e+02 -1.148100e+02
+9 10816     3.982300e+02 1.838000e+01
+10 10816     6.665400e+02 9.603003e+01
+12 10816     6.186500e+02 5.451001e+01
+1 10817     -6.864400e+02 -3.218400e+02
+4 10817     -6.049200e+02 1.693800e+02
+1 10818     -6.827400e+02 -3.252300e+02
+4 10818     -6.078600e+02 1.663600e+02
+1 10819     2.216300e+02 -3.251900e+02
+10 10819     1.193200e+02 -2.015900e+02
+13 10819     5.420900e+02 -4.914399e+02
+1 10820     5.178500e+02 -3.255800e+02
+7 10820     3.279800e+02 -5.021997e+01
+15 10820     5.529100e+02 -1.134600e+02
+1 10821     3.552300e+02 -3.343300e+02
+7 10821     2.292600e+02 -1.181700e+02
+1 10822     -7.038600e+02 -3.362500e+02
+4 10822     -6.191600e+02 1.811000e+02
+1 10823     -1.939500e+02 -3.406600e+02
+6 10823     -1.687500e+02 -6.539500e+02
+7 10823     -2.548200e+02 -4.085200e+02
+9 10823     -5.492999e+01 -4.413101e+02
+1 10824     -6.386400e+02 -3.452800e+02
+4 10824     -6.227100e+02 1.308600e+02
+1 10825     -1.458200e+02 -3.457000e+02
+2 10825     6.746002e+01 -6.067000e+02
+6 10825     -1.190900e+02 -6.184800e+02
+7 10825     -2.082700e+02 -3.871700e+02
+9 10825     -1.703998e+01 -4.152300e+02
+15 10825     -2.331900e+02 -5.036200e+02
+1 10826     3.079500e+02 -3.481400e+02
+15 10826     3.332500e+02 -2.471700e+02
+1 10827     7.988600e+02 -3.521600e+02
+7 10827     5.102400e+02 3.082001e+01
+10 10827     6.514600e+02 1.616998e+01
+12 10827     6.329100e+02 -1.329999e+01
+15 10827     8.672900e+02 -6.130005e+00
+1 10828     3.051700e+02 -3.681600e+02
+10 10828     2.167000e+02 -2.088000e+02
+15 10828     3.373700e+02 -2.735700e+02
+1 10829     3.094301e+02 -3.728400e+02
+15 10829     3.445000e+02 -2.767800e+02
+1 10830     9.628998e+01 -3.744200e+02
+7 10830     3.508002e+01 -2.775000e+02
+1 10831     -1.376700e+02 -3.783100e+02
+6 10831     -7.322998e+01 -6.377400e+02
+1 10832     -1.161100e+02 -3.912400e+02
+2 10832     1.488700e+02 -6.171500e+02
+7 10832     -1.519000e+02 -4.092000e+02
+9 10832     4.991998e+01 -4.192000e+02
+12 10832     -5.877002e+01 -5.802400e+02
+1 10833     -1.358400e+02 -3.920000e+02
+6 10833     -5.935999e+01 -6.483700e+02
+7 10833     -1.696700e+02 -4.217000e+02
+9 10833     3.944000e+01 -4.321800e+02
+1 10834     5.919500e+02 -3.925500e+02
+7 10834     3.977400e+02 -7.870001e+01
+10 10834     4.868400e+02 -1.094100e+02
+12 10834     5.308600e+02 -1.422200e+02
+13 10834     7.863300e+02 -4.371500e+02
+15 10834     6.654000e+02 -1.563800e+02
+1 10835     -6.426300e+02 -3.948500e+02
+4 10835     -6.695400e+02 1.270300e+02
+1 10836     -8.362000e+01 -4.153100e+02
+2 10836     2.013101e+02 -6.120200e+02
+7 10836     -1.101600e+02 -4.124400e+02
+9 10836     9.263000e+01 -4.117100e+02
+1 10837     -2.832300e+02 -4.536200e+02
+7 10837     -2.636000e+02 -5.571500e+02
+1 10838     8.555800e+02 -4.720601e+02
+2 10838     7.692700e+02 -1.888700e+02
+7 10838     6.009500e+02 -3.338000e+01
+1 10839     8.689301e+02 -4.987000e+02
+7 10839     6.202700e+02 -4.758002e+01
+1 10840     -2.874600e+02 -5.139200e+02
+4 10840     -7.592200e+02 -1.730700e+02
+1 10841     7.086801e+02 -5.237600e+02
+7 10841     5.379200e+02 -1.277500e+02
+15 10841     8.644200e+02 -2.470600e+02
+1 10842     7.759100e+02 -5.284100e+02
+7 10842     5.810800e+02 -1.036800e+02
+12 10842     7.467100e+02 -1.519600e+02
+1 10843     8.744500e+02 -5.377000e+02
+7 10843     6.409700e+02 -7.222998e+01
+1 10844     8.230800e+02 -5.429301e+02
+7 10844     6.149200e+02 -9.566998e+01
+1 10845     -2.859985e+00 -5.548400e+02
+7 10845     4.389001e+01 -4.836200e+02
+1 10846     6.988600e+02 5.842000e+02
+4 10846     7.862000e+01 -5.380100e+02
+5 10846     6.612700e+02 -5.549988e+00
+8 10846     1.959998e+01 3.164000e+02
+11 10846     3.716100e+02 -1.385400e+02
+13 10846     3.930400e+02 2.985100e+02
+14 10846     5.600400e+02 -8.857001e+01
+1 10847     6.506400e+02 5.796200e+02
+2 10847     -1.047800e+02 3.900900e+02
+5 10847     6.235900e+02 -2.064001e+01
+6 10847     -2.590900e+02 7.162200e+02
+8 10847     -6.380005e+00 3.050700e+02
+9 10847     -2.459000e+02 4.102300e+02
+11 10847     3.372600e+02 -1.532200e+02
+14 10847     5.243400e+02 -1.054200e+02
+1 10848     5.964500e+02 5.789000e+02
+4 10848     6.834998e+01 -4.794500e+02
+5 10848     5.787700e+02 -3.320001e+01
+6 10848     -3.060600e+02 6.943400e+02
+8 10848     -3.789001e+01 2.956900e+02
+1 10849     5.964500e+02 5.789000e+02
+2 10849     -1.431900e+02 3.793800e+02
+4 10849     6.834998e+01 -4.794500e+02
+5 10849     5.787700e+02 -3.320001e+01
+6 10849     -3.060600e+02 6.943400e+02
+9 10849     -2.774300e+02 3.998000e+02
+1 10850     5.908300e+02 5.757500e+02
+3 10850     -2.822000e+02 3.946002e+01
+4 10850     6.612000e+01 -4.765400e+02
+6 10850     -3.093000e+02 6.885500e+02
+9 10850     -2.803400e+02 3.978200e+02
+11 10850     2.948400e+02 -1.679300e+02
+1 10851     8.574301e+02 5.745900e+02
+13 10851     4.923300e+02 3.189500e+02
+1 10852     6.110000e+02 5.745200e+02
+2 10852     -1.313500e+02 3.777100e+02
+3 10852     -2.682900e+02 4.289001e+01
+4 10852     6.678003e+01 -4.880200e+02
+5 10852     5.918400e+02 -3.400000e+01
+6 10852     -2.913300e+02 6.951800e+02
+8 10852     -2.853003e+01 2.945200e+02
+9 10852     -2.677000e+02 3.989400e+02
+11 10852     3.100900e+02 -1.648900e+02
+13 10852     3.372000e+02 2.710800e+02
+14 10852     4.927300e+02 -1.193100e+02
+1 10853     -2.670800e+02 5.734100e+02
+13 10853     -3.851800e+02 5.913000e+01
+14 10853     -3.928500e+02 -3.398900e+02
+1 10854     6.335100e+02 5.721300e+02
+2 10854     -1.149700e+02 3.790100e+02
+3 10854     -2.526100e+02 4.347998e+01
+4 10854     6.731000e+01 -5.015601e+02
+5 10854     6.107600e+02 -3.107001e+01
+6 10854     -2.707800e+02 7.017700e+02
+8 10854     -1.470001e+01 2.968700e+02
+9 10854     -2.535300e+02 4.001400e+02
+14 10854     5.112200e+02 -1.165200e+02
+1 10855     4.262700e+02 5.670900e+02
+3 10855     -3.985300e+02 -2.199707e-01
+4 10855     4.973999e+01 -3.839400e+02
+6 10855     -4.560000e+02 6.111200e+02
+8 10855     -1.407300e+02 2.561800e+02
+9 10855     -3.824200e+02 3.546600e+02
+11 10855     1.718100e+02 -2.080900e+02
+14 10855     3.428800e+02 -1.692900e+02
+1 10856     -5.734700e+02 5.653000e+02
+4 10856     -1.160999e+01 1.966200e+02
+1 10857     4.551801e+02 5.488200e+02
+2 10857     -2.393500e+02 3.203000e+02
+3 10857     -3.709800e+02 -1.246002e+01
+5 10857     4.662900e+02 -9.244000e+01
+6 10857     -4.205100e+02 6.026900e+02
+8 10857     -1.171500e+02 2.472500e+02
+9 10857     -3.576900e+02 3.449300e+02
+11 10857     1.994600e+02 -2.157600e+02
+12 10857     -2.481600e+02 5.794600e+02
+1 10858     6.210900e+02 5.473100e+02
+3 10858     -2.541700e+02 1.922998e+01
+4 10858     5.341998e+01 -4.965900e+02
+5 10858     6.066100e+02 -5.588000e+01
+6 10858     -2.713900e+02 6.709500e+02
+11 10858     3.253900e+02 -1.824400e+02
+1 10859     6.781899e+02 5.422700e+02
+2 10859     -7.500000e+01 3.610100e+02
+6 10859     -2.209000e+02 6.866200e+02
+13 10859     3.879800e+02 2.628900e+02
+14 10859     5.550200e+02 -1.306700e+02
+1 10860     6.781899e+02 5.422700e+02
+2 10860     -7.500000e+01 3.610100e+02
+4 10860     5.452002e+01 -5.300100e+02
+6 10860     -2.209000e+02 6.866200e+02
+9 10860     -2.188900e+02 3.858200e+02
+13 10860     3.879800e+02 2.628900e+02
+14 10860     5.550200e+02 -1.306700e+02
+1 10861     3.037400e+02 5.307800e+02
+5 10861     3.358000e+02 -1.462200e+02
+6 10861     -5.600500e+02 5.115700e+02
+7 10861     -2.973400e+02 5.646100e+02
+8 10861     -2.147000e+02 2.004500e+02
+12 10861     -3.820300e+02 5.030100e+02
+1 10862     7.772400e+02 5.175900e+02
+2 10862     -2.119995e+00 3.567700e+02
+9 10862     -1.568500e+02 3.842800e+02
+13 10862     4.563400e+02 2.651900e+02
+1 10863     6.222200e+02 5.142100e+02
+4 10863     3.559003e+01 -5.003800e+02
+6 10863     -2.564200e+02 6.353000e+02
+9 10863     -2.434600e+02 3.508300e+02
+11 10863     3.348800e+02 -2.073400e+02
+1 10864     8.533000e+02 5.110000e+02
+5 10864     8.047800e+02 -3.603998e+01
+6 10864     -6.739001e+01 7.203500e+02
+9 10864     -1.153300e+02 3.938900e+02
+11 10864     5.020100e+02 -1.623700e+02
+13 10864     5.050200e+02 2.748700e+02
+14 10864     6.980100e+02 -1.199500e+02
+1 10865     6.882001e+01 5.102700e+02
+5 10865     1.175600e+02 -2.241000e+02
+11 10865     -1.069500e+02 -3.285100e+02
+12 10865     -6.152400e+02 3.817700e+02
+1 10866     7.393300e+02 5.025900e+02
+4 10866     3.702002e+01 -5.700900e+02
+5 10866     7.151500e+02 -6.946002e+01
+6 10866     -1.534900e+02 6.701000e+02
+8 10866     6.253998e+01 2.638200e+02
+13 10866     4.356600e+02 2.468200e+02
+1 10867     6.537900e+02 5.010000e+02
+4 10867     3.000000e+01 -5.197500e+02
+11 10867     3.628199e+02 -2.099900e+02
+13 10867     3.799301e+02 2.269800e+02
+1 10868     7.646100e+02 5.003100e+02
+3 10868     -1.495200e+02 4.809998e+00
+14 10868     6.339600e+02 -1.475800e+02
+1 10869     1.041400e+02 4.896300e+02
+4 10869     -1.337000e+01 -2.094100e+02
+7 10869     -4.630900e+02 4.567900e+02
+8 10869     -3.531900e+02 1.162300e+02
+11 10869     -7.335999e+01 -3.384300e+02
+12 10869     -5.665200e+02 3.750400e+02
+1 10870     -8.721002e+01 4.879700e+02
+5 10870     -3.167999e+01 -2.846600e+02
+7 10870     -6.462000e+02 3.854000e+02
+10 10870     -6.534400e+02 5.434100e+02
+1 10871     8.525000e+01 4.810900e+02
+7 10871     -4.748600e+02 4.420900e+02
+11 10871     -8.707001e+01 -3.489700e+02
+12 10871     -5.842100e+02 3.588600e+02
+1 10872     7.098400e+02 4.784500e+02
+4 10872     2.134003e+01 -5.553000e+02
+9 10872     -1.829100e+02 3.389300e+02
+11 10872     4.106600e+02 -2.150300e+02
+13 10872     4.221899e+02 2.237500e+02
+1 10873     3.578000e+02 4.559400e+02
+5 10873     3.972400e+02 -2.063600e+02
+7 10873     -2.252500e+02 5.121600e+02
+9 10873     -3.968000e+02 2.365000e+02
+13 10873     1.861100e+02 1.238100e+02
+1 10874     3.832700e+02 4.541500e+02
+2 10874     -2.685500e+02 2.020400e+02
+3 10874     -4.020000e+02 -1.300500e+02
+4 10874     -1.575000e+01 -3.675400e+02
+5 10874     4.226899e+02 -2.023800e+02
+6 10874     -4.472300e+02 4.602800e+02
+7 10874     -2.020800e+02 5.180500e+02
+8 10874     -1.409700e+02 1.529500e+02
+9 10874     -3.770000e+02 2.401800e+02
+12 10874     -2.741600e+02 4.524100e+02
+14 10874     3.325400e+02 -2.879900e+02
+1 10875     6.898400e+02 4.421100e+02
+4 10875     -3.699951e-01 -5.476200e+02
+6 10875     -1.692600e+02 5.871300e+02
+12 10875     -4.239990e+00 5.548400e+02
+1 10876     -7.801400e+02 4.205900e+02
+4 10876     -8.607001e+01 2.574500e+02
+1 10877     3.708700e+02 4.207500e+02
+2 10877     -2.711200e+02 1.625500e+02
+5 10877     4.153500e+02 -2.391000e+02
+6 10877     -4.475100e+02 4.148700e+02
+1 10878     4.964800e+02 4.166700e+02
+4 10878     -2.869000e+01 -4.348800e+02
+1 10879     6.567800e+02 4.169700e+02
+3 10879     -1.924100e+02 -9.470001e+01
+6 10879     -1.856200e+02 5.464400e+02
+1 10880     5.935800e+02 4.141800e+02
+7 10880     -1.765997e+01 5.494000e+02
+1 10881     4.934800e+02 4.084400e+02
+4 10881     -3.392999e+01 -4.332100e+02
+5 10881     5.291200e+02 -2.182600e+02
+6 10881     -3.267700e+02 4.621200e+02
+7 10881     -9.600000e+01 5.129700e+02
+12 10881     -1.574800e+02 4.482300e+02
+13 10881     2.915699e+02 1.204100e+02
+1 10882     1.470300e+02 4.010300e+02
+2 10882     -4.624600e+02 6.913000e+01
+5 10882     2.091899e+02 -3.185300e+02
+7 10882     -3.918900e+02 3.856500e+02
+8 10882     -2.991300e+02 4.447000e+01
+13 10882     4.078003e+01 2.596002e+01
+14 10882     1.259400e+02 -4.068600e+02
+1 10883     7.478400e+02 3.990100e+02
+13 10883     4.649301e+02 1.741200e+02
+1 10884     -6.214100e+02 3.982700e+02
+4 10884     -1.008400e+02 2.062400e+02
+1 10885     6.482900e+02 3.978500e+02
+2 10885     -5.110999e+01 2.158500e+02
+3 10885     -1.928100e+02 -1.155700e+02
+8 10885     3.815002e+01 1.675600e+02
+11 10885     3.897800e+02 -2.893800e+02
+14 10885     5.723000e+02 -2.687600e+02
+1 10886     4.977700e+02 3.959300e+02
+3 10886     -2.993000e+02 -1.578500e+02
+4 10886     -4.103998e+01 -4.371600e+02
+5 10886     5.355500e+02 -2.297400e+02
+6 10886     -3.188700e+02 4.501500e+02
+7 10886     -8.839001e+01 5.028500e+02
+8 10886     -5.364001e+01 1.323800e+02
+9 10886     -2.851800e+02 2.192800e+02
+1 10887     7.024500e+02 3.966000e+02
+5 10887     7.063300e+02 -1.761500e+02
+6 10887     -1.465400e+02 5.430600e+02
+7 10887     6.832001e+01 5.660400e+02
+11 10887     4.306100e+02 -2.782600e+02
+1 10888     6.623600e+02 3.942800e+02
+3 10888     -1.825600e+02 -1.157800e+02
+5 10888     6.799700e+02 -1.889800e+02
+6 10888     -1.713500e+02 5.236400e+02
+7 10888     4.208002e+01 5.523700e+02
+8 10888     4.782001e+01 1.671100e+02
+9 10888     -1.841700e+02 2.590000e+02
+11 10888     4.024200e+02 -2.890200e+02
+12 10888     -7.109985e+00 4.966600e+02
+14 10888     5.852400e+02 -2.676000e+02
+1 10889     6.623600e+02 3.942800e+02
+2 10889     -4.128998e+01 2.143200e+02
+3 10889     -1.825600e+02 -1.157800e+02
+5 10889     6.799700e+02 -1.889800e+02
+6 10889     -1.713500e+02 5.236400e+02
+7 10889     4.208002e+01 5.523700e+02
+8 10889     4.782001e+01 1.671100e+02
+9 10889     -1.841700e+02 2.590000e+02
+11 10889     4.024200e+02 -2.890200e+02
+12 10889     -7.109985e+00 4.966600e+02
+13 10889     4.091801e+02 1.501400e+02
+14 10889     5.852400e+02 -2.676000e+02
+1 10890     2.279301e+02 3.902300e+02
+2 10890     -3.847100e+02 8.378998e+01
+5 10890     2.887200e+02 -3.083000e+02
+6 10890     -5.764800e+02 3.041900e+02
+7 10890     -3.156100e+02 4.050000e+02
+8 10890     -2.362000e+02 5.741000e+01
+9 10890     -4.713400e+02 1.324600e+02
+10 10890     -2.609900e+02 5.503600e+02
+11 10890     5.212000e+01 -3.957900e+02
+13 10890     1.038200e+02 3.828003e+01
+14 10890     2.043600e+02 -3.947400e+02
+1 10891     4.549800e+02 3.885000e+02
+2 10891     -1.931000e+02 1.525100e+02
+7 10891     -1.210200e+02 4.820500e+02
+11 10891     2.407100e+02 -3.433500e+02
+13 10891     2.680000e+02 9.454999e+01
+14 10891     4.093400e+02 -3.320200e+02
+1 10892     1.676801e+02 3.828600e+02
+7 10892     -3.672700e+02 3.755500e+02
+1 10893     5.792800e+02 3.807100e+02
+3 10893     -2.365400e+02 -1.530700e+02
+7 10893     -1.834003e+01 5.151900e+02
+11 10893     3.410300e+02 -3.203100e+02
+14 10893     5.183101e+02 -3.055800e+02
+1 10894     -6.171500e+02 3.776400e+02
+4 10894     -1.118700e+02 2.013900e+02
+1 10895     6.490900e+02 3.772900e+02
+7 10895     3.722998e+01 5.342300e+02
+14 10895     5.780500e+02 -2.880900e+02
+1 10896     7.512700e+02 3.748600e+02
+6 10896     -9.113000e+01 5.416600e+02
+9 10896     -1.284100e+02 2.658200e+02
+1 10897     7.512700e+02 3.748600e+02
+6 10897     -9.113000e+01 5.416600e+02
+9 10897     -1.284100e+02 2.658200e+02
+14 10897     6.629399e+02 -2.620600e+02
+1 10898     7.830400e+02 3.699600e+02
+2 10898     4.823999e+01 2.220100e+02
+13 10898     4.936801e+02 1.599600e+02
+14 10898     6.894900e+02 -2.593900e+02
+1 10899     -6.090000e+02 3.691200e+02
+4 10899     -1.165500e+02 1.959000e+02
+1 10900     6.424200e+02 3.685200e+02
+2 10900     -4.545001e+01 1.855200e+02
+5 10900     6.702800e+02 -2.185400e+02
+7 10900     3.546002e+01 5.243300e+02
+8 10900     4.295001e+01 1.431700e+02
+11 10900     3.941700e+02 -3.145500e+02
+13 10900     4.016400e+02 1.261700e+02
+14 10900     5.755200e+02 -2.981200e+02
+1 10901     -3.021200e+02 3.629700e+02
+5 10901     -2.584700e+02 -4.795601e+02
+1 10902     4.542500e+02 3.503100e+02
+7 10902     -1.065000e+02 4.484600e+02
+1 10903     -3.540100e+02 3.446100e+02
+5 10903     -3.060200e+02 -5.132000e+02
+1 10904     -6.190000e+02 3.412400e+02
+4 10904     -1.326600e+02 1.986000e+02
+1 10905     1.782600e+02 3.186900e+02
+7 10905     -3.249100e+02 3.227000e+02
+11 10905     2.796002e+01 -4.705700e+02
+15 10905     -2.372300e+02 4.922800e+02
+1 10906     -1.092300e+02 3.160000e+02
+7 10906     -5.927900e+02 2.057600e+02
+1 10907     5.155699e+02 3.044500e+02
+2 10907     -8.639001e+01 1.084300e+02
+5 10907     5.971300e+02 -3.142900e+02
+6 10907     -2.289700e+02 3.660700e+02
+9 10907     -2.157600e+02 1.662000e+02
+10 10907     7.688000e+01 5.658800e+02
+11 10907     3.153000e+02 -3.984200e+02
+12 10907     -7.476001e+01 3.630100e+02
+13 10907     3.461899e+02 4.803003e+01
+1 10908     5.155699e+02 3.044500e+02
+2 10908     -8.639001e+01 1.084300e+02
+6 10908     -2.289700e+02 3.660700e+02
+9 10908     -2.157600e+02 1.662000e+02
+10 10908     7.688000e+01 5.658800e+02
+11 10908     3.153000e+02 -3.984200e+02
+1 10909     5.324000e+02 3.048200e+02
+8 10909     1.383002e+01 8.332001e+01
+9 10909     -2.071100e+02 1.713900e+02
+10 10909     9.322998e+01 5.731900e+02
+1 10910     4.536899e+02 3.018800e+02
+2 10910     -1.302600e+02 8.754999e+01
+6 10910     -2.812600e+02 3.321100e+02
+9 10910     -2.518700e+02 1.464800e+02
+11 10910     2.657200e+02 -4.161700e+02
+13 10910     3.042500e+02 2.956000e+01
+14 10910     4.547800e+02 -4.156100e+02
+1 10911     4.871000e+02 2.837300e+02
+6 10911     -2.335600e+02 3.316600e+02
+1 10912     1.062300e+02 2.808100e+02
+10 10912     -3.404700e+02 3.817900e+02
+11 10912     -2.603998e+01 -5.216500e+02
+13 10912     6.171002e+01 -8.002002e+01
+14 10912     1.475800e+02 -5.441000e+02
+15 10912     -3.037600e+02 4.091100e+02
+1 10913     -1.501600e+02 2.696100e+02
+4 10913     -1.521600e+02 -8.609003e+01
+1 10914     -1.955300e+02 2.656700e+02
+10 10914     -6.706800e+02 2.391000e+02
+1 10915     -2.674600e+02 2.623700e+02
+7 10915     -7.185200e+02 8.820001e+01
+1 10916     -1.359500e+02 2.601600e+02
+4 10916     -1.564900e+02 -9.638000e+01
+13 10916     -1.212000e+02 -1.638500e+02
+1 10917     -4.027500e+02 2.568400e+02
+7 10917     -8.616700e+02 1.898999e+01
+13 10917     -3.528300e+02 -2.479700e+02
+1 10918     4.127000e+02 2.539400e+02
+6 10918     -2.641900e+02 2.656000e+02
+11 10918     2.492800e+02 -4.688500e+02
+1 10919     -1.477200e+02 2.370000e+02
+4 10919     -1.705800e+02 -9.412000e+01
+10 10919     -5.979000e+02 2.259200e+02
+13 10919     -1.160600e+02 -1.861700e+02
+1 10920     -1.548300e+02 2.359000e+02
+4 10920     -1.718100e+02 -9.028003e+01
+1 10921     3.938400e+02 2.338900e+02
+7 10921     -9.167999e+01 3.313400e+02
+11 10921     2.392100e+02 -4.916600e+02
+1 10922     4.131801e+02 2.280000e+02
+5 10922     5.570699e+02 -4.187600e+02
+6 10922     -2.396700e+02 2.425700e+02
+7 10922     -7.252002e+01 3.344300e+02
+10 10922     1.150000e+01 4.460600e+02
+11 10922     2.575100e+02 -4.912300e+02
+13 10922     3.156000e+02 -3.494000e+01
+14 10922     4.704200e+02 -4.995500e+02
+1 10923     4.075400e+02 2.251700e+02
+5 10923     5.543700e+02 -4.239200e+02
+6 10923     -2.416500e+02 2.368300e+02
+1 10924     4.504301e+02 2.253200e+02
+6 10924     -2.042300e+02 2.602300e+02
+1 10925     1.787000e+02 2.228000e+02
+8 10925     -1.622400e+02 -6.032001e+01
+9 10925     -3.666800e+02 1.728003e+01
+1 10926     4.290699e+02 2.194800e+02
+4 10926     -1.464900e+02 -4.396899e+02
+5 10926     5.776300e+02 -4.227800e+02
+6 10926     -2.172800e+02 2.435900e+02
+7 10926     -5.546997e+01 3.330100e+02
+10 10926     3.145001e+01 4.429900e+02
+11 10926     2.737500e+02 -4.951000e+02
+13 10926     3.315000e+02 -3.741998e+01
+14 10926     4.906600e+02 -5.035601e+02
+1 10927     4.290699e+02 2.194800e+02
+6 10927     -2.172800e+02 2.435900e+02
+1 10928     4.485400e+02 2.196600e+02
+4 10928     -1.440700e+02 -4.498000e+02
+10 10928     5.150000e+01 4.506800e+02
+11 10928     2.899900e+02 -4.892500e+02
+1 10929     3.914301e+02 2.171300e+02
+6 10929     -2.472300e+02 2.221100e+02
+1 10930     5.896600e+02 1.998500e+02
+7 10930     8.241998e+01 3.733500e+02
+14 10930     6.460100e+02 -4.713400e+02
+1 10931     5.497500e+02 1.961500e+02
+7 10931     5.377002e+01 3.566600e+02
+11 10931     3.839301e+02 -4.827500e+02
+1 10932     8.199100e+02 1.934900e+02
+6 10932     1.854100e+02 4.326600e+02
+7 10932     2.806801e+02 4.547700e+02
+8 10932     2.979100e+02 1.401900e+02
+10 10932     4.409399e+02 5.631200e+02
+12 10932     2.960900e+02 4.277500e+02
+13 10932     6.461400e+02 5.538000e+01
+1 10933     5.425400e+02 1.834800e+02
+6 10933     -8.595001e+01 2.712300e+02
+7 10933     5.448999e+01 3.447000e+02
+11 10933     3.817000e+02 -4.958300e+02
+13 10933     4.295300e+02 -3.234003e+01
+14 10933     6.159100e+02 -5.015400e+02
+15 10933     2.817800e+02 4.979200e+02
+1 10934     6.004999e+01 1.801600e+02
+9 10934     -4.143600e+02 -5.003003e+01
+13 10934     8.203998e+01 -1.706400e+02
+1 10935     5.336300e+02 1.789800e+02
+10 10935     1.547200e+02 4.414500e+02
+11 10935     3.758800e+02 -5.022700e+02
+15 10935     2.725900e+02 4.893800e+02
+1 10936     -3.607500e+02 1.713200e+02
+7 10936     -7.556800e+02 -3.953998e+01
+1 10937     -1.258002e+01 1.565700e+02
+7 10937     -4.000400e+02 1.074200e+02
+1 10938     2.105900e+02 1.245700e+02
+2 10938     1.089000e+02 1.145600e+02
+3 10938     1.585999e+01 -2.022000e+02
+4 10938     -2.055600e+02 -4.226900e+02
+5 10938     6.349800e+02 -5.542700e+02
+6 10938     -6.919000e+01 1.333300e+02
+8 10938     1.237000e+02 4.985001e+01
+9 10938     -2.270001e+01 1.843000e+02
+15 10938     -2.700000e+01 2.799600e+02
+1 10939     5.893101e+02 1.094100e+02
+10 10939     2.443700e+02 3.907500e+02
+1 10940     4.737800e+02 1.057600e+02
+15 10940     2.961600e+02 3.845700e+02
+1 10941     5.870699e+02 8.507001e+01
+15 10941     3.896700e+02 4.015000e+02
+1 10942     8.594399e+02 8.375000e+01
+3 10942     2.964600e+02 -1.292200e+02
+6 10942     3.451700e+02 3.768600e+02
+8 10942     4.175500e+02 1.286200e+02
+9 10942     2.316500e+02 2.560100e+02
+11 10942     6.907600e+02 -4.955100e+02
+12 10942     4.336500e+02 3.844000e+02
+1 10943     1.833199e+02 4.726001e+01
+2 10943     1.530500e+02 5.028998e+01
+6 10943     -2.738000e+01 4.928998e+01
+10 10943     -7.796002e+01 1.699600e+02
+12 10943     -1.169000e+01 1.043400e+02
+15 10943     -1.673999e+01 1.719000e+02
+1 10944     5.091600e+02 2.607001e+01
+10 10944     2.559900e+02 2.803300e+02
+15 10944     3.791400e+02 3.056100e+02
+1 10945     5.091600e+02 2.607001e+01
+15 10945     3.791400e+02 3.056100e+02
+1 10946     4.508500e+02 2.417999e+01
+13 10946     5.824100e+02 -1.395000e+02
+15 10946     3.170000e+02 2.768100e+02
+1 10947     3.834003e+01 1.996997e+01
+10 10947     -2.334600e+02 7.579999e+01
+15 10947     -1.951900e+02 5.892999e+01
+1 10948     4.289399e+02 2.859985e+00
+7 10948     1.525601e+02 2.021100e+02
+15 10948     3.037200e+02 2.403900e+02
+1 10949     3.541100e+02 2.999878e-01
+7 10949     9.887000e+01 1.720400e+02
+1 10950     4.970800e+02 -4.880005e+00
+7 10950     2.006899e+02 2.176400e+02
+1 10951     5.027300e+02 -6.809998e+00
+15 10951     3.902700e+02 2.644000e+02
+1 10952     -1.739400e+02 -1.316998e+01
+7 10952     -4.457300e+02 -1.140200e+02
+1 10953     -1.573400e+02 -1.692999e+01
+2 10953     -3.387800e+02 -3.754300e+02
+7 10953     -4.273400e+02 -1.090700e+02
+8 10953     -2.341700e+02 -3.302700e+02
+13 10953     2.287000e+01 -3.944300e+02
+1 10954     1.688900e+02 -3.716998e+01
+4 10954     -3.183600e+02 -4.326500e+02
+7 10954     -4.679999e+01 5.862000e+01
+10 10954     -5.482001e+01 7.471002e+01
+1 10955     8.437600e+02 -4.102002e+01
+6 10955     3.985100e+02 2.556500e+02
+7 10955     4.137900e+02 2.883800e+02
+8 10955     4.582200e+02 4.101999e+01
+9 10955     2.773000e+02 1.695600e+02
+10 10955     5.688800e+02 3.370700e+02
+1 10956     3.511300e+02 -4.390997e+01
+2 10956     3.538400e+02 5.746997e+01
+1 10957     2.668800e+02 -4.654999e+01
+2 10957     2.968400e+02 1.978998e+01
+7 10957     4.782001e+01 9.562000e+01
+8 10957     2.730400e+02 -3.254001e+01
+10 10957     5.478998e+01 1.072700e+02
+13 10957     4.905300e+02 -2.452400e+02
+15 10957     1.384700e+02 1.003500e+02
+1 10958     2.299399e+02 -6.007001e+01
+2 10958     2.743400e+02 -1.117999e+01
+3 10958     1.807000e+02 -3.169900e+02
+7 10958     2.079999e+01 6.747998e+01
+13 10958     4.658600e+02 -2.675300e+02
+15 10958     9.996997e+01 6.395001e+01
+1 10959     8.465300e+02 -6.490002e+01
+2 10959     5.004900e+02 6.876001e+01
+3 10959     3.651100e+02 -2.431300e+02
+6 10959     4.132900e+02 2.380700e+02
+7 10959     4.252200e+02 2.700100e+02
+9 10959     2.902000e+02 1.565600e+02
+10 10959     5.807300e+02 3.154800e+02
+13 10959     7.972600e+02 -1.147500e+02
+15 10959     7.786700e+02 3.510500e+02
+1 10960     -6.514300e+02 -7.027002e+01
+4 10960     -3.966600e+02 1.731300e+02
+1 10961     2.331400e+02 -7.920001e+01
+8 10961     2.636700e+02 -7.197998e+01
+1 10962     2.974600e+02 -7.841998e+01
+6 10962     1.667500e+02 5.140015e+00
+8 10962     3.080100e+02 -4.432001e+01
+13 10962     5.244000e+02 -2.600900e+02
+1 10963     1.939500e+02 -8.104999e+01
+4 10963     -3.480800e+02 -4.618600e+02
+1 10964     2.289600e+02 -8.632001e+01
+2 10964     2.874000e+02 -3.853003e+01
+4 10964     -3.498900e+02 -4.910300e+02
+6 10964     1.103100e+02 -4.660999e+01
+8 10964     2.629800e+02 -8.084003e+01
+1 10965     4.903700e+02 -8.723999e+01
+15 10965     4.162700e+02 1.606600e+02
+1 10966     3.897700e+02 -9.204999e+01
+6 10966     2.413200e+02 4.103003e+01
+7 10966     1.649200e+02 1.061900e+02
+10 10966     1.915200e+02 1.095500e+02
+13 10966     5.910100e+02 -2.434300e+02
+15 10966     3.069100e+02 1.064500e+02
+1 10967     4.989399e+02 -1.006200e+02
+10 10967     2.976899e+02 1.477200e+02
+15 10967     4.306899e+02 1.492400e+02
+1 10968     4.989399e+02 -1.006200e+02
+10 10968     2.976899e+02 1.477200e+02
+15 10968     4.306899e+02 1.492400e+02
+1 10969     2.085300e+02 -1.114600e+02
+2 10969     2.809700e+02 -7.590002e+01
+7 10969     2.187000e+01 1.167999e+01
+9 10969     1.287500e+02 3.298999e+01
+1 10970     2.531300e+02 -1.115800e+02
+3 10970     2.252200e+02 -3.529300e+02
+1 10971     5.140900e+02 -1.196300e+02
+7 10971     2.557100e+02 1.258600e+02
+1 10972     -1.737600e+02 -1.274100e+02
+13 10972     7.483002e+01 -4.930900e+02
+1 10973     1.415000e+02 -1.291500e+02
+7 10973     -2.712000e+01 -3.427002e+01
+1 10974     -1.307001e+01 -1.314200e+02
+10 10974     -2.218400e+02 -1.098400e+02
+1 10975     5.457900e+02 -1.368500e+02
+10 10975     3.531400e+02 1.292500e+02
+1 10976     2.559000e+02 -1.464200e+02
+7 10976     7.965997e+01 3.469971e+00
+10 10976     8.419000e+01 -8.499756e-01
+15 10976     1.748500e+02 -2.800000e+01
+1 10977     4.577500e+02 -1.487900e+02
+7 10977     2.323101e+02 8.254001e+01
+1 10978     1.205300e+02 -1.709000e+02
+7 10978     -2.370001e+01 -7.978003e+01
+15 10978     2.325000e+01 -1.296800e+02
+1 10979     -4.607300e+02 -1.823400e+02
+7 10979     -6.185500e+02 -4.171500e+02
+15 10979     -7.554500e+02 -4.893700e+02
+1 10980     4.732800e+02 -1.817800e+02
+7 10980     2.589000e+02 6.158002e+01
+1 10981     -6.591300e+02 -1.893500e+02
+4 10981     -4.896400e+02 1.652900e+02
+1 10982     8.582000e+02 -1.932400e+02
+10 10982     6.411100e+02 1.940400e+02
+15 10982     8.527000e+02 2.064000e+02
+1 10983     -4.543900e+02 -1.987200e+02
+7 10983     -6.016000e+02 -4.296400e+02
+1 10984     8.159500e+02 -2.079300e+02
+7 10984     4.532000e+02 1.442200e+02
+1 10985     4.706200e+02 -2.225700e+02
+7 10985     2.757800e+02 2.765002e+01
+1 10986     -2.165100e+02 -2.235300e+02
+4 10986     -4.871400e+02 -1.489100e+02
+7 10986     -3.522700e+02 -3.202000e+02
+9 10986     -2.014200e+02 -3.970200e+02
+15 10986     -4.021000e+02 -3.927400e+02
+1 10987     8.186200e+02 -2.366500e+02
+7 10987     4.672600e+02 1.222500e+02
+8 10987     5.228500e+02 -9.865002e+01
+10 10987     6.175900e+02 1.352700e+02
+13 10987     8.383700e+02 -2.542900e+02
+15 10987     8.257700e+02 1.362400e+02
+1 10988     8.406899e+02 -2.490400e+02
+2 10988     5.943000e+02 -7.692999e+01
+7 10988     4.902200e+02 1.223000e+02
+8 10988     5.459800e+02 -9.329999e+01
+15 10988     8.583900e+02 1.325500e+02
+1 10989     -3.690600e+02 -2.530700e+02
+15 10989     -5.845100e+02 -5.237100e+02
+1 10990     4.232400e+02 -2.537300e+02
+7 10990     2.590900e+02 -1.427002e+01
+1 10991     8.660400e+02 -2.540500e+02
+2 10991     6.186100e+02 -6.132001e+01
+6 10991     5.378199e+02 8.573999e+01
+7 10991     5.121899e+02 1.297600e+02
+9 10991     3.931200e+02 5.203003e+01
+12 10991     6.168800e+02 9.541998e+01
+1 10992     8.549301e+02 -2.628200e+02
+2 10992     6.132600e+02 -7.621997e+01
+3 10992     4.843101e+02 -3.797600e+02
+7 10992     5.064100e+02 1.180600e+02
+8 10992     5.613900e+02 -9.313000e+01
+9 10992     3.889301e+02 3.920001e+01
+12 10992     6.102300e+02 8.210999e+01
+13 10992     8.797700e+02 -2.598400e+02
+1 10993     -1.974300e+02 -2.651200e+02
+6 10993     -2.588800e+02 -5.933199e+02
+15 10993     -3.496800e+02 -4.326400e+02
+1 10994     4.003101e+02 -2.651700e+02
+7 10994     2.482000e+02 -3.378998e+01
+1 10995     -3.771900e+02 -2.672800e+02
+10 10995     -5.719200e+02 -4.404900e+02
+15 10995     -5.847100e+02 -5.448700e+02
+1 10996     -2.111100e+02 -2.731700e+02
+6 10996     -2.638800e+02 -6.112100e+02
+7 10996     -3.140900e+02 -3.600900e+02
+15 10996     -3.624600e+02 -4.515000e+02
+1 10997     -3.996000e+02 -2.788300e+02
+10 10997     -5.919800e+02 -4.667100e+02
+15 10997     -6.073900e+02 -5.751200e+02
+1 10998     3.881000e+02 -2.892900e+02
+10 10998     2.751801e+02 -9.003998e+01
+1 10999     3.881000e+02 -2.892900e+02
+10 10999     2.751801e+02 -9.003998e+01
+1 11000     3.898300e+02 -3.031600e+02
+15 11000     4.098800e+02 -1.492600e+02
+1 11001     -3.883500e+02 -3.039300e+02
+10 11001     -5.646600e+02 -4.881300e+02
+1 11002     -3.883500e+02 -3.039300e+02
+10 11002     -5.646600e+02 -4.881300e+02
+1 11003     -2.902100e+02 -3.049100e+02
+7 11003     -3.680500e+02 -4.305100e+02
+15 11003     -4.454000e+02 -5.391200e+02
+1 11004     7.774200e+02 -3.051300e+02
+3 11004     4.806300e+02 -4.369000e+02
+7 11004     4.741400e+02 5.720001e+01
+15 11004     8.189700e+02 3.715997e+01
+1 11005     7.780400e+02 -3.180300e+02
+7 11005     4.804000e+02 4.771997e+01
+10 11005     6.177100e+02 4.045001e+01
+15 11005     8.262900e+02 2.232001e+01
+1 11006     1.992200e+02 -3.199400e+02
+2 11006     3.899700e+02 -2.950800e+02
+7 11006     9.902002e+01 -1.773100e+02
+8 11006     3.431400e+02 -2.930300e+02
+1 11007     2.002300e+02 -3.258400e+02
+10 11007     9.698999e+01 -2.132800e+02
+1 11008     3.899000e+02 -3.441200e+02
+7 11008     2.559000e+02 -1.124100e+02
+10 11008     2.911400e+02 -1.448700e+02
+1 11009     -6.716500e+02 -3.566600e+02
+4 11009     -6.363000e+02 1.544600e+02
+1 11010     6.961100e+02 -4.057700e+02
+7 11010     4.719700e+02 -4.729999e+01
+1 11011     -1.818600e+02 -4.086200e+02
+6 11011     -8.182999e+01 -7.004800e+02
+7 11011     -1.990900e+02 -4.619700e+02
+10 11011     -2.718700e+02 -4.906700e+02
+1 11012     7.813800e+02 -4.164700e+02
+12 11012     6.688700e+02 -6.829999e+01
+1 11013     2.404900e+02 -4.263000e+02
+10 11013     1.811000e+02 -2.969100e+02
+1 11014     8.108800e+02 -4.293800e+02
+7 11014     5.550900e+02 -2.034003e+01
+1 11015     -6.528700e+02 -4.634600e+02
+4 11015     -7.375000e+02 1.258100e+02
+1 11016     8.395200e+02 -4.652200e+02
+2 11016     7.573700e+02 -1.918300e+02
+7 11016     5.877100e+02 -3.483002e+01
+9 11016     5.141400e+02 -4.935999e+01
+12 11016     7.372900e+02 -7.622998e+01
+1 11017     -5.791100e+02 -4.980601e+02
+4 11017     -7.680500e+02 6.103003e+01
+1 11018     2.191400e+02 -5.519500e+02
+10 11018     2.127600e+02 -4.346000e+02
+1 11019     8.182500e+02 5.746600e+02
+3 11019     -1.391500e+02 7.626001e+01
+1 11020     7.159600e+02 5.738200e+02
+4 11020     7.372998e+01 -5.486100e+02
+6 11020     -2.023200e+02 7.335100e+02
+14 11020     5.747300e+02 -9.635999e+01
+1 11021     7.159600e+02 5.738200e+02
+4 11021     7.372998e+01 -5.486100e+02
+6 11021     -2.023200e+02 7.335100e+02
+11 11021     3.861899e+02 -1.447100e+02
+1 11022     6.354200e+02 5.645800e+02
+2 11022     -1.113700e+02 3.731900e+02
+4 11022     6.337000e+01 -5.032000e+02
+5 11022     6.143800e+02 -3.709998e+01
+6 11022     -2.658900e+02 6.946600e+02
+11 11022     3.309600e+02 -1.670900e+02
+14 11022     5.149800e+02 -1.221300e+02
+1 11023     6.909600e+02 5.641300e+02
+4 11023     6.708002e+01 -5.354500e+02
+5 11023     6.594200e+02 -2.562000e+01
+6 11023     -2.190000e+02 7.154100e+02
+8 11023     1.989001e+01 3.001100e+02
+14 11023     5.583900e+02 -1.105600e+02
+1 11024     6.909600e+02 5.641300e+02
+5 11024     6.594200e+02 -2.562000e+01
+6 11024     -2.190000e+02 7.154100e+02
+8 11024     1.989001e+01 3.001100e+02
+9 11024     -2.182900e+02 4.046200e+02
+14 11024     5.583900e+02 -1.105600e+02
+1 11025     7.082000e+02 5.636800e+02
+2 11025     -6.131000e+01 3.857700e+02
+3 11025     -2.023700e+02 5.071002e+01
+4 11025     6.770001e+01 -5.451400e+02
+6 11025     -2.044100e+02 7.204900e+02
+8 11025     2.960999e+01 3.026100e+02
+9 11025     -2.081600e+02 4.078100e+02
+11 11025     3.835900e+02 -1.534800e+02
+1 11026     -5.957001e+01 5.617400e+02
+4 11026     1.770001e+01 -1.184500e+02
+1 11027     5.802000e+02 5.602400e+02
+3 11027     -2.853200e+02 2.494000e+01
+5 11027     5.694800e+02 -5.356000e+01
+8 11027     -4.309998e+01 2.789300e+02
+9 11027     -2.821600e+02 3.809200e+02
+13 11027     3.196500e+02 2.542000e+02
+14 11027     4.717600e+02 -1.386400e+02
+1 11028     5.802000e+02 5.602400e+02
+2 11028     -1.492400e+02 3.584700e+02
+4 11028     5.701001e+01 -4.718400e+02
+5 11028     5.694800e+02 -5.356000e+01
+6 11028     -3.121500e+02 6.675900e+02
+8 11028     -4.309998e+01 2.789300e+02
+9 11028     -2.821600e+02 3.809200e+02
+11 11028     2.910400e+02 -1.815400e+02
+13 11028     3.196500e+02 2.542000e+02
+14 11028     4.717600e+02 -1.386400e+02
+1 11029     5.896000e+02 5.583600e+02
+2 11029     -1.419000e+02 3.581400e+02
+3 11029     -2.782700e+02 2.378003e+01
+4 11029     5.671002e+01 -4.774500e+02
+5 11029     5.778600e+02 -5.292999e+01
+6 11029     -3.030700e+02 6.695000e+02
+8 11029     -3.721002e+01 2.788900e+02
+9 11029     -2.758200e+02 3.816000e+02
+11 11029     2.988700e+02 -1.813300e+02
+13 11029     3.264000e+02 2.546700e+02
+14 11029     4.797900e+02 -1.385000e+02
+1 11030     6.059500e+02 5.574000e+02
+2 11030     -1.302200e+02 3.605500e+02
+3 11030     -2.672400e+02 2.635999e+01
+4 11030     5.733002e+01 -4.868800e+02
+5 11030     5.914500e+02 -5.028003e+01
+6 11030     -2.886500e+02 6.746100e+02
+8 11030     -2.734998e+01 2.811400e+02
+9 11030     -2.659500e+02 3.836600e+02
+11 11030     3.109399e+02 -1.784200e+02
+13 11030     3.372800e+02 2.575800e+02
+14 11030     4.930000e+02 -1.353700e+02
+1 11031     6.275800e+02 5.567900e+02
+5 11031     6.096000e+02 -4.603003e+01
+11 11031     3.273400e+02 -1.745200e+02
+13 11031     3.516500e+02 2.618900e+02
+1 11032     6.785300e+02 5.536300e+02
+4 11032     6.065002e+01 -5.290601e+02
+5 11032     6.519399e+02 -3.776001e+01
+6 11032     -2.253700e+02 6.993400e+02
+9 11032     -2.223600e+02 3.947500e+02
+11 11032     3.655900e+02 -1.661100e+02
+1 11033     6.656801e+02 5.459700e+02
+3 11033     -2.243500e+02 2.681000e+01
+4 11033     5.521002e+01 -5.229399e+02
+5 11033     6.442000e+02 -4.741998e+01
+6 11033     -2.316900e+02 6.862800e+02
+9 11033     -2.268500e+02 3.859400e+02
+13 11033     3.790601e+02 2.623200e+02
+14 11033     5.440100e+02 -1.311000e+02
+1 11034     8.700100e+02 5.425600e+02
+6 11034     -6.765997e+01 7.557400e+02
+1 11035     8.700100e+02 5.425600e+02
+6 11035     -6.765997e+01 7.557400e+02
+8 11035     1.202000e+02 3.111300e+02
+9 11035     -1.162100e+02 4.191100e+02
+11 11035     5.027100e+02 -1.381200e+02
+13 11035     5.072600e+02 2.996500e+02
+14 11035     6.994600e+02 -9.048999e+01
+1 11036     7.690300e+02 5.241200e+02
+2 11036     -9.929993e+00 3.622500e+02
+3 11036     -1.535300e+02 2.584003e+01
+9 11036     -1.633500e+02 3.880600e+02
+11 11036     4.394500e+02 -1.697300e+02
+13 11036     4.495200e+02 2.678500e+02
+14 11036     6.301000e+02 -1.264300e+02
+1 11037     7.645400e+02 5.133600e+02
+2 11037     -9.130005e+00 3.519100e+02
+4 11037     4.559003e+01 -5.840500e+02
+5 11037     7.326500e+02 -5.353998e+01
+6 11037     -1.376600e+02 6.917300e+02
+9 11037     -1.622500e+02 3.794700e+02
+11 11037     4.398600e+02 -1.776800e+02
+13 11037     4.492800e+02 2.594900e+02
+14 11037     6.300800e+02 -1.363800e+02
+1 11038     8.601200e+02 5.047000e+02
+5 11038     8.109700e+02 -4.240002e+01
+9 11038     -1.109900e+02 3.885000e+02
+11 11038     5.085900e+02 -1.661700e+02
+14 11038     7.049301e+02 -1.229800e+02
+1 11039     -7.906000e+02 4.936800e+02
+4 11039     -4.584003e+01 2.636500e+02
+1 11040     -9.216998e+01 4.941100e+02
+4 11040     -2.140997e+01 -1.019600e+02
+5 11040     -3.928003e+01 -2.798600e+02
+7 11040     -6.544700e+02 3.890300e+02
+11 11040     -2.436600e+02 -3.750800e+02
+12 11040     -7.843700e+02 2.908600e+02
+1 11041     -1.617900e+02 4.822400e+02
+4 11041     -3.119000e+01 -6.421997e+01
+13 11041     -2.136400e+02 1.596997e+01
+14 11041     -1.995200e+02 -4.065400e+02
+1 11042     2.519900e+02 4.744400e+02
+5 11042     2.990200e+02 -2.148600e+02
+7 11042     -3.227600e+02 4.944900e+02
+11 11042     5.350000e+01 -3.185000e+02
+12 11042     -4.076900e+02 4.221600e+02
+13 11042     1.075500e+02 1.130400e+02
+14 11042     2.115900e+02 -3.021000e+02
+1 11043     7.162800e+02 4.519100e+02
+3 11043     -1.761600e+02 -5.007001e+01
+9 11043     -1.813600e+02 3.196000e+02
+11 11043     4.231300e+02 -2.330400e+02
+1 11044     -1.257400e+02 4.171600e+02
+10 11044     -6.720700e+02 4.443000e+02
+11 11044     -2.634000e+02 -4.491600e+02
+12 11044     -7.950200e+02 1.767200e+02
+15 11044     -6.874500e+02 4.753700e+02
+1 11045     2.414700e+02 4.124500e+02
+2 11045     -3.794000e+02 1.136800e+02
+6 11045     -5.727100e+02 3.382700e+02
+7 11045     -3.114700e+02 4.310800e+02
+8 11045     -2.317600e+02 8.129999e+01
+12 11045     -3.944600e+02 3.475000e+02
+13 11045     1.096800e+02 5.971997e+01
+14 11045     2.123101e+02 -3.680700e+02
+1 11046     6.283300e+02 4.103500e+02
+2 11046     -6.965002e+01 2.227300e+02
+6 11046     -2.080500e+02 5.258100e+02
+9 11046     -2.095200e+02 2.653300e+02
+1 11047     6.283300e+02 4.103500e+02
+2 11047     -6.965002e+01 2.227300e+02
+6 11047     -2.080500e+02 5.258100e+02
+9 11047     -2.095200e+02 2.653300e+02
+1 11048     6.435200e+02 4.026800e+02
+2 11048     -5.709998e+01 2.192100e+02
+5 11048     6.607500e+02 -1.855800e+02
+6 11048     -1.924300e+02 5.247800e+02
+7 11048     2.410999e+01 5.540600e+02
+8 11048     3.334998e+01 1.701500e+02
+9 11048     -1.985900e+02 2.623700e+02
+11 11048     3.839600e+02 -2.877000e+02
+12 11048     -2.713000e+01 4.991900e+02
+1 11049     4.889900e+02 3.951400e+02
+4 11049     -4.178998e+01 -4.323800e+02
+11 11049     2.657900e+02 -3.305000e+02
+12 11049     -1.559400e+02 4.324300e+02
+1 11050     -6.212400e+02 3.916900e+02
+4 11050     -1.046500e+02 2.060800e+02
+1 11051     5.122500e+02 3.918700e+02
+2 11051     -1.503800e+02 1.708000e+02
+3 11051     -2.883100e+02 -1.609700e+02
+7 11051     -7.584998e+01 5.029100e+02
+8 11051     -4.366998e+01 1.298800e+02
+11 11051     2.851100e+02 -3.275200e+02
+12 11051     -1.338700e+02 4.377200e+02
+13 11051     3.083199e+02 1.125700e+02
+14 11051     4.592500e+02 -3.112600e+02
+1 11052     5.122500e+02 3.918700e+02
+2 11052     -1.503800e+02 1.708000e+02
+8 11052     -4.366998e+01 1.298800e+02
+11 11052     2.851100e+02 -3.275200e+02
+12 11052     -1.338700e+02 4.377200e+02
+13 11052     3.083199e+02 1.125700e+02
+14 11052     4.592500e+02 -3.112600e+02
+1 11053     6.243000e+02 3.874500e+02
+2 11053     -6.578003e+01 1.993100e+02
+5 11053     6.482300e+02 -2.051800e+02
+7 11053     1.476001e+01 5.353100e+02
+8 11053     2.606000e+01 1.536800e+02
+11 11053     3.743000e+02 -3.037500e+02
+12 11053     -3.670001e+01 4.771700e+02
+13 11053     3.851400e+02 1.358100e+02
+14 11053     5.543800e+02 -2.854000e+02
+1 11054     6.335699e+02 3.864800e+02
+5 11054     6.564200e+02 -2.036200e+02
+11 11054     3.818101e+02 -3.023200e+02
+13 11054     3.914399e+02 1.373700e+02
+14 11054     5.624000e+02 -2.836700e+02
+1 11055     6.335699e+02 3.864800e+02
+2 11055     -5.915002e+01 2.007100e+02
+5 11055     6.564200e+02 -2.036200e+02
+7 11055     2.206000e+01 5.371500e+02
+8 11055     3.144000e+01 1.548600e+02
+11 11055     3.818101e+02 -3.023200e+02
+12 11055     -2.875000e+01 4.789100e+02
+13 11055     3.914399e+02 1.373700e+02
+14 11055     5.624000e+02 -2.836700e+02
+1 11056     -6.194000e+02 3.840800e+02
+4 11056     -1.086300e+02 2.034500e+02
+1 11057     4.838300e+02 3.832500e+02
+2 11057     -1.694600e+02 1.555800e+02
+3 11057     -3.061300e+02 -1.758900e+02
+4 11057     -4.923999e+01 -4.298000e+02
+7 11057     -9.560999e+01 4.863700e+02
+8 11057     -5.932001e+01 1.181900e+02
+9 11057     -2.901600e+02 2.040400e+02
+11 11057     2.649301e+02 -3.409300e+02
+13 11057     2.893700e+02 9.820999e+01
+14 11057     4.354800e+02 -3.283500e+02
+1 11058     -6.549600e+02 3.753200e+02
+4 11058     -1.151100e+02 2.235000e+02
+1 11059     4.735200e+02 3.753900e+02
+2 11059     -1.745500e+02 1.447000e+02
+7 11059     -1.014700e+02 4.762800e+02
+13 11059     2.840500e+02 8.938000e+01
+14 11059     4.289100e+02 -3.392500e+02
+1 11060     4.735200e+02 3.753900e+02
+2 11060     -1.745500e+02 1.447000e+02
+4 11060     -5.457001e+01 -4.239100e+02
+7 11060     -1.014700e+02 4.762800e+02
+8 11060     -6.452002e+01 1.085000e+02
+11 11060     2.587300e+02 -3.497600e+02
+13 11060     2.840500e+02 8.938000e+01
+14 11060     4.289100e+02 -3.392500e+02
+1 11061     6.049200e+02 3.700100e+02
+3 11061     -2.148300e+02 -1.551000e+02
+7 11061     5.309998e+00 5.139200e+02
+8 11061     1.891998e+01 1.358400e+02
+13 11061     3.754500e+02 1.179700e+02
+14 11061     5.432500e+02 -3.071400e+02
+1 11062     2.664200e+02 3.116900e+02
+7 11062     -2.429400e+02 3.489100e+02
+1 11063     -3.433500e+02 3.101900e+02
+5 11063     -2.718400e+02 -5.493300e+02
+1 11064     5.357300e+02 2.949600e+02
+10 11064     1.021500e+02 5.630800e+02
+1 11065     5.231200e+02 2.936600e+02
+5 11065     6.122100e+02 -3.226700e+02
+6 11065     -2.111200e+02 3.597100e+02
+8 11065     1.753003e+01 7.503000e+01
+9 11065     -2.019700e+02 1.631900e+02
+10 11065     9.034998e+01 5.574400e+02
+12 11065     -6.015997e+01 3.571600e+02
+13 11065     3.575900e+02 4.262000e+01
+14 11065     5.219000e+02 -4.015500e+02
+1 11066     5.231200e+02 2.936600e+02
+6 11066     -2.111200e+02 3.597100e+02
+10 11066     9.034998e+01 5.574400e+02
+12 11066     -6.015997e+01 3.571600e+02
+1 11067     -3.583100e+02 2.676200e+02
+7 11067     -8.191500e+02 5.025000e+01
+13 11067     -3.184500e+02 -2.247100e+02
+1 11068     -1.569700e+02 2.663300e+02
+4 11068     -1.542900e+02 -8.303998e+01
+1 11069     -4.509100e+02 2.456700e+02
+13 11069     -3.899100e+02 -2.712100e+02
+1 11070     -4.509100e+02 2.456700e+02
+13 11070     -3.899100e+02 -2.712100e+02
+1 11071     4.241000e+02 2.462800e+02
+6 11071     -2.499100e+02 2.656500e+02
+11 11071     2.608500e+02 -4.731600e+02
+1 11072     4.056899e+02 2.449600e+02
+4 11072     -1.333900e+02 -4.172700e+02
+5 11072     5.362900e+02 -4.061000e+02
+7 11072     -9.003003e+01 3.441700e+02
+11 11072     2.445300e+02 -4.790600e+02
+12 11072     -1.274600e+02 2.660700e+02
+14 11072     4.508500e+02 -4.859200e+02
+1 11073     -4.021700e+02 2.406800e+02
+7 11073     -8.474700e+02 4.830017e+00
+13 11073     -3.406600e+02 -2.613700e+02
+1 11074     3.819500e+02 2.274500e+02
+4 11074     -1.452400e+02 -4.088100e+02
+5 11074     5.300200e+02 -4.291500e+02
+6 11074     -2.672300e+02 2.251100e+02
+7 11074     -9.842999e+01 3.223100e+02
+11 11074     2.309100e+02 -5.006600e+02
+1 11075     3.958700e+02 2.274100e+02
+4 11075     -1.442400e+02 -4.172600e+02
+5 11075     5.412800e+02 -4.258199e+02
+6 11075     -2.552400e+02 2.330200e+02
+7 11075     -8.684003e+01 3.265700e+02
+11 11075     2.430601e+02 -4.963900e+02
+1 11076     8.236600e+02 2.165100e+02
+3 11076     1.328100e+02 -1.107000e+02
+7 11076     2.754200e+02 4.743000e+02
+8 11076     2.908600e+02 1.564400e+02
+9 11076     8.998999e+01 2.710000e+02
+1 11077     3.946801e+02 2.111300e+02
+10 11077     1.119995e+00 4.206800e+02
+1 11078     3.946801e+02 2.111300e+02
+5 11078     5.520900e+02 -4.415000e+02
+6 11078     -2.389900e+02 2.177300e+02
+13 11078     3.119500e+02 -5.259998e+01
+14 11078     4.655601e+02 -5.221100e+02
+1 11079     4.234301e+02 2.088400e+02
+10 11079     3.164001e+01 4.301800e+02
+1 11080     3.880900e+02 2.070900e+02
+6 11080     -2.415500e+02 2.091000e+02
+10 11080     -1.950012e+00 4.138100e+02
+1 11081     7.720400e+02 1.978600e+02
+13 11081     6.021500e+02 4.407001e+01
+1 11082     5.786300e+02 1.905700e+02
+10 11082     1.958000e+02 4.704300e+02
+1 11083     5.494200e+02 1.820700e+02
+6 11083     -7.845001e+01 2.725200e+02
+7 11083     6.112000e+01 3.453600e+02
+10 11083     1.705500e+02 4.503900e+02
+11 11083     3.875100e+02 -4.957600e+02
+13 11083     4.351801e+02 -3.165997e+01
+14 11083     6.233900e+02 -5.010500e+02
+1 11084     -3.502002e+01 1.647900e+02
+2 11084     -4.219000e+02 -1.849600e+02
+7 11084     -4.269400e+02 1.042000e+02
+8 11084     -2.833200e+02 -1.678800e+02
+13 11084     1.578003e+01 -2.108500e+02
+15 11084     -4.129500e+02 1.923700e+02
+1 11085     2.489600e+02 1.562000e+02
+7 11085     -7.492999e+01 2.580100e+02
+1 11086     5.728600e+02 1.531000e+02
+10 11086     2.077100e+02 4.295700e+02
+1 11087     -3.626300e+02 1.481200e+02
+13 11087     -2.519300e+02 -3.258300e+02
+1 11088     -6.698999e+01 1.316400e+02
+2 11088     -4.182000e+02 -2.226400e+02
+4 11088     -2.295100e+02 -1.637300e+02
+7 11088     -4.357100e+02 6.137000e+01
+10 11088     -4.461900e+02 1.449900e+02
+13 11088     1.070001e+01 -2.470700e+02
+1 11089     1.478800e+02 1.240800e+02
+7 11089     -1.546300e+02 1.865700e+02
+10 11089     -1.574700e+02 2.373100e+02
+13 11089     3.071500e+02 -1.555500e+02
+15 11089     -1.093100e+02 2.473800e+02
+1 11090     5.925000e+02 8.034000e+01
+10 11090     2.610200e+02 3.612200e+02
+1 11091     2.693199e+02 6.835999e+01
+7 11091     -4.760010e+00 1.955500e+02
+10 11091     5.679993e+00 2.292200e+02
+1 11092     2.693199e+02 6.835999e+01
+4 11092     -2.369300e+02 -4.845300e+02
+7 11092     -4.760010e+00 1.955500e+02
+10 11092     5.679993e+00 2.292200e+02
+1 11093     4.786899e+02 5.253998e+01
+7 11093     1.620100e+02 2.585600e+02
+1 11094     3.054000e+02 4.792999e+01
+4 11094     -2.484600e+02 -5.177200e+02
+5 11094     7.909800e+02 -6.007500e+02
+6 11094     9.067999e+01 1.261500e+02
+12 11094     1.137100e+02 1.775000e+02
+15 11094     1.356600e+02 2.350600e+02
+1 11095     3.489800e+02 3.914001e+01
+7 11095     7.639001e+01 2.027900e+02
+1 11096     -1.651700e+02 2.188000e+01
+2 11096     -3.916800e+02 -3.522900e+02
+7 11096     -4.589800e+02 -7.946997e+01
+13 11096     -5.400024e+00 -3.661800e+02
+1 11097     4.007300e+02 1.008002e+01
+7 11097     1.291600e+02 1.975900e+02
+1 11098     -1.644000e+02 2.520020e+00
+7 11098     -4.464000e+02 -9.602002e+01
+13 11098     5.349976e+00 -3.820100e+02
+1 11099     -1.590800e+02 -2.534003e+01
+7 11099     -4.223800e+02 -1.174700e+02
+8 11099     -2.283500e+02 -3.379200e+02
+13 11099     2.645001e+01 -4.032900e+02
+1 11100     4.287500e+02 -3.871002e+01
+7 11100     1.703800e+02 1.662900e+02
+1 11101     -2.105000e+02 -4.034003e+01
+6 11101     -5.447500e+02 -4.034399e+02
+7 11101     -4.638800e+02 -1.555900e+02
+15 11101     -5.098100e+02 -1.589200e+02
+1 11102     -1.876500e+02 -4.225000e+01
+7 11102     -4.401200e+02 -1.468100e+02
+8 11102     -2.397100e+02 -3.634500e+02
+13 11102     1.146997e+01 -4.277200e+02
+1 11103     -3.440100e+02 -7.087000e+01
+7 11103     -5.755700e+02 -2.516000e+02
+1 11104     -6.532200e+02 -8.106000e+01
+4 11104     -4.051100e+02 1.741800e+02
+1 11105     -3.017800e+02 -9.407001e+01
+13 11105     -5.434998e+01 -5.106899e+02
+1 11106     1.409200e+02 -9.402002e+01
+7 11106     -4.423999e+01 -3.619995e+00
+13 11106     4.062500e+02 -3.254900e+02
+1 11107     -4.844600e+02 -9.651001e+01
+15 11107     -8.460900e+02 -3.922800e+02
+1 11108     8.451801e+02 -1.110000e+02
+2 11108     5.239700e+02 3.260999e+01
+6 11108     4.377600e+02 1.971000e+02
+7 11108     4.419100e+02 2.334900e+02
+8 11108     4.881801e+02 -1.470001e+00
+10 11108     5.968800e+02 2.693500e+02
+12 11108     5.211500e+02 2.072000e+02
+13 11108     8.131500e+02 -1.492200e+02
+15 11108     7.990100e+02 2.961700e+02
+1 11109     2.387200e+02 -1.123300e+02
+7 11109     4.910999e+01 2.502002e+01
+13 11109     4.888900e+02 -3.066000e+02
+1 11110     3.641100e+02 -1.130400e+02
+3 11110     2.942500e+02 -3.058500e+02
+6 11110     2.345800e+02 7.869995e+00
+7 11110     1.533800e+02 7.817999e+01
+12 11110     2.604000e+02 5.084003e+01
+1 11111     6.115500e+02 -1.178800e+02
+10 11111     4.038300e+02 1.733400e+02
+15 11111     5.604700e+02 1.807300e+02
+1 11112     -4.966000e+02 -1.194000e+02
+15 11112     -8.483300e+02 -4.298600e+02
+1 11113     3.721000e+02 -1.239600e+02
+6 11113     2.440000e+02 2.929993e+00
+7 11113     1.628700e+02 7.225000e+01
+8 11113     3.658000e+02 -5.539999e+01
+10 11113     1.916400e+02 7.142999e+01
+12 11113     2.711500e+02 4.522998e+01
+1 11114     1.254700e+02 -1.325600e+02
+7 11114     -4.169000e+01 -4.587000e+01
+10 11114     -5.945001e+01 -4.540997e+01
+15 11114     6.510010e+00 -8.096997e+01
+1 11115     5.697500e+02 -1.338700e+02
+7 11115     2.950300e+02 1.328200e+02
+10 11115     3.731400e+02 1.420800e+02
+13 11115     6.946600e+02 -2.298600e+02
+15 11115     5.228000e+02 1.437800e+02
+1 11116     2.294200e+02 -1.488300e+02
+7 11116     6.073999e+01 -9.609985e+00
+1 11117     3.162500e+02 -1.526200e+02
+7 11117     1.295900e+02 2.421002e+01
+1 11118     4.550100e+02 -1.571200e+02
+7 11118     2.354301e+02 7.447998e+01
+1 11119     -5.018700e+02 -1.692800e+02
+7 11119     -6.725400e+02 -4.309500e+02
+15 11119     -8.236400e+02 -4.992000e+02
+1 11120     -4.283100e+02 -2.064700e+02
+7 11120     -5.697800e+02 -4.223200e+02
+1 11121     3.919600e+02 -2.127800e+02
+3 11121     3.649301e+02 -3.817800e+02
+6 11121     3.085200e+02 -7.002002e+01
+7 11121     2.145699e+02 3.630005e+00
+8 11121     4.167700e+02 -1.168800e+02
+1 11122     2.860200e+02 -2.185200e+02
+7 11122     1.367100e+02 -4.588000e+01
+1 11123     1.448400e+02 -2.195200e+02
+6 11123     1.348200e+02 -2.206000e+02
+15 11123     8.156000e+01 -1.754900e+02
+1 11124     2.308000e+02 -2.318400e+02
+7 11124     1.020700e+02 -7.894000e+01
+1 11125     8.301200e+02 -2.579800e+02
+2 11125     5.900601e+02 -9.201001e+01
+7 11125     4.854301e+02 1.103800e+02
+8 11125     5.412600e+02 -1.054300e+02
+13 11125     8.580300e+02 -2.665900e+02
+15 11125     8.504600e+02 1.166000e+02
+1 11126     -6.655500e+02 -2.606400e+02
+4 11126     -5.493400e+02 1.616600e+02
+1 11127     8.475601e+02 -2.621900e+02
+2 11127     6.071801e+02 -8.122998e+01
+7 11127     5.005000e+02 1.154200e+02
+9 11127     3.852600e+02 3.488000e+01
+10 11127     6.556400e+02 1.225000e+02
+13 11127     8.738900e+02 -2.624700e+02
+1 11128     8.475601e+02 -2.621900e+02
+2 11128     6.071801e+02 -8.122998e+01
+8 11128     5.560500e+02 -9.734003e+01
+9 11128     3.852600e+02 3.488000e+01
+12 11128     6.038300e+02 7.815002e+01
+13 11128     8.738900e+02 -2.624700e+02
+1 11129     -3.875300e+02 -2.651000e+02
+10 11129     -5.866600e+02 -4.453500e+02
+15 11129     -6.006500e+02 -5.502300e+02
+1 11130     -1.884200e+02 -2.677100e+02
+6 11130     -2.496000e+02 -5.872500e+02
+15 11130     -3.379700e+02 -4.312600e+02
+1 11131     8.355900e+02 -2.675300e+02
+7 11131     4.927200e+02 1.058200e+02
+8 11131     5.495200e+02 -1.081800e+02
+10 11131     6.458700e+02 1.121300e+02
+13 11131     8.655200e+02 -2.712200e+02
+15 11131     8.607300e+02 1.085800e+02
+1 11132     -1.827300e+02 -2.727000e+02
+15 11132     -3.267300e+02 -4.333700e+02
+1 11133     -2.947800e+02 -2.772800e+02
+15 11133     -4.685900e+02 -5.067000e+02
+1 11134     -1.731700e+02 -2.799500e+02
+6 11134     -2.193100e+02 -5.856100e+02
+7 11134     -2.752400e+02 -3.450300e+02
+15 11134     -3.100400e+02 -4.364399e+02
+1 11135     8.542500e+02 -3.002200e+02
+2 11135     6.331899e+02 -1.051600e+02
+7 11135     5.195699e+02 8.894000e+01
+8 11135     5.773900e+02 -1.178400e+02
+9 11135     4.076899e+02 1.625000e+01
+10 11135     6.766500e+02 8.769000e+01
+1 11136     3.896400e+02 -3.083900e+02
+15 11136     4.117800e+02 -1.551000e+02
+1 11137     5.001600e+02 -3.160800e+02
+15 11137     5.304500e+02 -1.097300e+02
+1 11138     -6.300300e+02 -3.173200e+02
+4 11138     -5.965000e+02 1.283400e+02
+1 11139     -6.790700e+02 -3.182800e+02
+4 11139     -6.013200e+02 1.640300e+02
+1 11140     -6.500000e+02 -3.179400e+02
+4 11140     -5.980900e+02 1.430800e+02
+1 11141     -6.039100e+02 -3.263500e+02
+4 11141     -6.021200e+02 1.073800e+02
+1 11142     4.877500e+02 -3.276300e+02
+10 11142     3.690699e+02 -8.642999e+01
+1 11143     3.174500e+02 -3.595600e+02
+10 11143     2.258900e+02 -1.930900e+02
+15 11143     3.474800e+02 -2.545600e+02
+1 11144     -6.547800e+02 -3.816800e+02
+4 11144     -6.581700e+02 1.384200e+02
+1 11145     -3.403000e+02 -3.884600e+02
+9 11145     -1.029700e+02 -5.663400e+02
+1 11146     -1.728800e+02 -3.871800e+02
+6 11146     -9.795001e+01 -6.760100e+02
+1 11147     -6.816300e+02 -4.244900e+02
+4 11147     -7.023100e+02 1.535900e+02
+1 11148     -1.497600e+02 -4.330800e+02
+6 11148     -2.715997e+01 -6.937300e+02
+7 11148     -1.568800e+02 -4.630400e+02
+1 11149     -2.847700e+02 -4.571000e+02
+6 11149     -1.189400e+02 -8.322900e+02
+1 11150     8.041200e+02 -4.659399e+02
+7 11150     5.686700e+02 -4.917999e+01
+12 11150     7.190300e+02 -9.398999e+01
+1 11151     -2.293700e+02 -4.700200e+02
+4 11151     -7.106500e+02 -2.054100e+02
+6 11151     -5.482001e+01 -7.930900e+02
+7 11151     -2.038200e+02 -5.392800e+02
+10 11151     -2.902200e+02 -5.805400e+02
+1 11152     5.827200e+02 -4.827700e+02
+7 11152     4.368900e+02 -1.510600e+02
+9 11152     4.486600e+02 -1.414600e+02
+12 11152     5.917200e+02 -2.186500e+02
+1 11153     9.475000e+01 -5.345699e+02
+4 11153     -7.524200e+02 -4.804200e+02
+9 11153     3.009600e+02 -3.687900e+02
+1 11154     4.099800e+02 5.872100e+02
+12 11154     -3.050900e+02 6.223100e+02
+1 11155     8.077100e+02 5.784400e+02
+2 11155     -1.650024e+00 4.145600e+02
+3 11155     -1.460000e+02 7.828003e+01
+5 11155     7.482600e+02 9.559998e+00
+6 11155     -1.302200e+02 7.700100e+02
+8 11155     7.934998e+01 3.266400e+02
+9 11155     -1.584700e+02 4.351400e+02
+13 11155     4.617000e+02 3.125400e+02
+14 11155     6.430800e+02 -7.384003e+01
+1 11156     8.650900e+02 5.727700e+02
+2 11156     3.515002e+01 4.186800e+02
+3 11156     -1.116300e+02 8.172998e+01
+6 11156     -8.378000e+01 7.837200e+02
+13 11156     4.974800e+02 3.188900e+02
+14 11156     6.865200e+02 -6.734003e+01
+1 11157     6.441100e+02 5.715000e+02
+2 11157     -1.102300e+02 3.819900e+02
+3 11157     -2.495000e+02 4.658002e+01
+5 11157     6.159800e+02 -2.681000e+01
+6 11157     -2.649700e+02 7.057100e+02
+9 11157     -2.491600e+02 4.027600e+02
+11 11157     3.347000e+02 -1.604800e+02
+13 11157     3.587400e+02 2.758100e+02
+14 11157     5.187500e+02 -1.142500e+02
+1 11158     5.814900e+02 5.680300e+02
+2 11158     -1.507400e+02 3.657300e+02
+3 11158     -2.863900e+02 2.996997e+01
+4 11158     6.157001e+01 -4.718600e+02
+5 11158     5.691100e+02 -4.591998e+01
+6 11158     -3.143500e+02 6.772400e+02
+8 11158     -4.414001e+01 2.855100e+02
+9 11158     -2.835100e+02 3.872600e+02
+13 11158     3.189700e+02 2.598600e+02
+14 11158     4.707500e+02 -1.320700e+02
+1 11159     5.814900e+02 5.680300e+02
+2 11159     -1.507400e+02 3.657300e+02
+3 11159     -2.863900e+02 2.996997e+01
+4 11159     6.157001e+01 -4.718600e+02
+5 11159     5.691100e+02 -4.591998e+01
+9 11159     -2.835100e+02 3.872600e+02
+13 11159     3.189700e+02 2.598600e+02
+14 11159     4.707500e+02 -1.320700e+02
+1 11160     5.814900e+02 5.680300e+02
+2 11160     -1.507400e+02 3.657300e+02
+8 11160     -4.414001e+01 2.855100e+02
+9 11160     -2.835100e+02 3.872600e+02
+13 11160     3.189700e+02 2.598600e+02
+14 11160     4.707500e+02 -1.320700e+02
+1 11161     6.550900e+02 5.568300e+02
+4 11161     6.040997e+01 -5.155699e+02
+5 11161     6.329500e+02 -3.966998e+01
+6 11161     -2.453800e+02 6.941700e+02
+8 11161     1.919983e+00 2.885000e+02
+11 11161     3.471000e+02 -1.689500e+02
+13 11161     3.700800e+02 2.678000e+02
+14 11161     5.329399e+02 -1.240600e+02
+1 11162     6.388700e+02 5.561900e+02
+2 11162     -1.085300e+02 3.654200e+02
+4 11162     5.817999e+01 -5.001801e+02
+5 11162     6.174900e+02 -4.462000e+01
+11 11162     3.348900e+02 -1.727600e+02
+13 11162     3.581500e+02 2.635400e+02
+14 11162     5.186600e+02 -1.290800e+02
+1 11163     6.471300e+02 5.378100e+02
+2 11163     -9.465002e+01 3.500500e+02
+3 11163     -2.340800e+02 1.603003e+01
+4 11163     4.952002e+01 -5.127400e+02
+5 11163     6.310601e+02 -5.895001e+01
+6 11163     -2.443400e+02 6.701200e+02
+8 11163     2.039978e+00 2.732700e+02
+11 11163     3.468500e+02 -1.840700e+02
+13 11163     3.689301e+02 2.525000e+02
+1 11164     6.471300e+02 5.378100e+02
+3 11164     -2.336900e+02 4.463000e+01
+4 11164     4.952002e+01 -5.127400e+02
+6 11164     -2.443400e+02 6.701200e+02
+8 11164     2.039978e+00 2.732700e+02
+11 11164     3.468500e+02 -1.840700e+02
+13 11164     3.689301e+02 2.525000e+02
+1 11165     -1.047000e+02 5.207900e+02
+5 11165     -5.484003e+01 -2.542300e+02
+8 11165     -5.350600e+02 9.067999e+01
+10 11165     -6.914400e+02 5.757600e+02
+12 11165     -8.136800e+02 3.167900e+02
+1 11166     6.372800e+02 5.145700e+02
+2 11166     -9.466998e+01 3.308400e+02
+4 11166     3.696997e+01 -5.092400e+02
+5 11166     6.284800e+02 -8.153998e+01
+6 11166     -2.432400e+02 6.410300e+02
+9 11166     -2.345400e+02 3.588800e+02
+12 11166     -7.634998e+01 6.070200e+02
+13 11166     3.672700e+02 2.330400e+02
+14 11166     5.301400e+02 -1.650200e+02
+1 11167     3.975500e+02 4.892700e+02
+9 11167     -3.786500e+02 2.772400e+02
+11 11167     1.685300e+02 -2.744900e+02
+1 11168     -7.835600e+02 4.805900e+02
+4 11168     -5.212000e+01 2.600100e+02
+1 11169     3.300000e+01 4.634700e+02
+7 11169     -5.205800e+02 4.047900e+02
+11 11169     -1.296200e+02 -3.755400e+02
+12 11169     -6.313300e+02 3.121400e+02
+13 11169     -5.696997e+01 4.944000e+01
+1 11170     6.529500e+02 4.293200e+02
+3 11170     -2.003300e+02 -8.458002e+01
+5 11170     6.623300e+02 -1.580300e+02
+6 11170     -1.951300e+02 5.572400e+02
+7 11170     2.304999e+01 5.809300e+02
+9 11170     -2.010500e+02 2.876200e+02
+11 11170     3.830900e+02 -2.639500e+02
+12 11170     -2.959998e+01 5.288300e+02
+14 11170     5.661899e+02 -2.382500e+02
+1 11171     4.630300e+02 3.675800e+02
+2 11171     -1.792800e+02 1.329900e+02
+7 11171     -1.065300e+02 4.661100e+02
+11 11171     2.541500e+02 -3.579200e+02
+1 11172     4.769000e+02 3.679400e+02
+2 11172     -1.688900e+02 1.376200e+02
+9 11172     -2.893800e+02 1.872700e+02
+1 11173     7.018900e+02 3.654700e+02
+2 11173     -4.349976e+00 1.985600e+02
+6 11173     -1.268000e+02 5.097000e+02
+7 11173     8.173999e+01 5.382900e+02
+8 11173     7.759998e+01 1.549800e+02
+9 11173     -1.528800e+02 2.457000e+02
+11 11173     4.413101e+02 -3.033200e+02
+12 11173     3.670001e+01 4.828800e+02
+13 11173     4.419000e+02 1.390100e+02
+1 11174     -6.258100e+02 3.428600e+02
+4 11174     -1.321900e+02 2.030700e+02
+1 11175     -6.380900e+02 3.422300e+02
+4 11175     -1.324100e+02 2.099100e+02
+1 11176     1.885699e+02 3.423400e+02
+7 11176     -3.288200e+02 3.463700e+02
+13 11176     9.057001e+01 -1.071997e+01
+14 11176     1.859900e+02 -4.560601e+02
+1 11177     4.929000e+02 3.027500e+02
+2 11177     -1.013700e+02 1.003300e+02
+5 11177     5.778300e+02 -3.231600e+02
+6 11177     -2.475100e+02 3.524300e+02
+8 11177     -8.390015e+00 7.142999e+01
+9 11177     -2.277800e+02 1.583300e+02
+13 11177     3.316801e+02 4.047998e+01
+14 11177     4.893900e+02 -4.030400e+02
+1 11178     5.248000e+02 3.024500e+02
+2 11178     -7.633002e+01 1.093400e+02
+6 11178     -2.173700e+02 3.675900e+02
+10 11178     8.734003e+01 5.677400e+02
+1 11179     4.597600e+02 2.934500e+02
+2 11179     -1.195400e+02 8.484998e+01
+5 11179     5.532200e+02 -3.408100e+02
+6 11179     -2.679100e+02 3.275000e+02
+8 11179     -2.381000e+01 5.875000e+01
+9 11179     -2.426600e+02 1.449600e+02
+11 11179     2.738300e+02 -4.220700e+02
+13 11179     3.124399e+02 2.510999e+01
+14 11179     4.650500e+02 -4.217200e+02
+1 11180     -9.820007e+00 2.924700e+02
+7 11180     -4.815000e+02 2.258700e+02
+13 11180     -3.692999e+01 -1.030600e+02
+14 11180     2.195001e+01 -5.679000e+02
+1 11181     5.230601e+02 2.860300e+02
+2 11181     -6.466998e+01 1.002900e+02
+6 11181     -2.044100e+02 3.527100e+02
+9 11181     -1.965500e+02 1.600800e+02
+10 11181     9.345001e+01 5.496200e+02
+12 11181     -5.525000e+01 3.514600e+02
+13 11181     3.607400e+02 3.665002e+01
+14 11181     5.261000e+02 -4.092800e+02
+1 11182     5.366000e+02 2.859800e+02
+6 11182     -1.918300e+02 3.599900e+02
+12 11182     -4.219000e+01 3.569400e+02
+1 11183     5.366000e+02 2.859800e+02
+2 11183     -5.357001e+01 1.050700e+02
+6 11183     -1.918300e+02 3.599900e+02
+9 11183     -1.874500e+02 1.644700e+02
+12 11183     -4.219000e+01 3.569400e+02
+13 11183     3.732100e+02 4.165002e+01
+14 11183     5.423800e+02 -4.028000e+02
+1 11184     -1.051001e+01 2.835100e+02
+7 11184     -4.760900e+02 2.183700e+02
+1 11185     -1.410000e+02 2.671300e+02
+13 11185     -1.290500e+02 -1.605000e+02
+1 11186     4.314399e+02 2.650800e+02
+11 11186     2.603900e+02 -4.536300e+02
+12 11186     -1.167000e+02 2.950600e+02
+15 11186     1.034200e+02 5.465300e+02
+1 11187     4.387400e+02 2.548300e+02
+6 11187     -2.440800e+02 2.803900e+02
+11 11187     2.704700e+02 -4.609400e+02
+12 11187     -1.018600e+02 2.901700e+02
+1 11188     -3.693300e+02 2.113700e+02
+7 11188     -7.907300e+02 -6.890015e+00
+1 11189     5.535200e+02 1.893600e+02
+10 11189     1.725600e+02 4.598800e+02
+11 11189     3.881899e+02 -4.888100e+02
+1 11190     -8.444000e+01 1.809100e+02
+4 11190     -2.007900e+02 -1.433300e+02
+8 11190     -3.341300e+02 -1.749800e+02
+1 11191     1.396700e+02 1.651400e+02
+7 11191     -2.100700e+02 2.055700e+02
+15 11191     -1.590700e+02 2.892800e+02
+1 11192     9.153998e+01 1.606900e+02
+4 11192     -1.958900e+02 -2.965000e+02
+5 11192     4.070900e+02 -5.680200e+02
+7 11192     -2.586900e+02 1.784400e+02
+10 11192     -2.573800e+02 2.482100e+02
+15 11192     -2.198800e+02 2.593700e+02
+1 11193     5.925300e+02 1.301100e+02
+7 11193     1.221600e+02 3.195200e+02
+10 11193     2.378199e+02 4.130100e+02
+1 11194     2.076700e+02 8.259000e+01
+6 11194     -3.060999e+01 9.716998e+01
+7 11194     -6.769000e+01 1.800300e+02
+8 11194     1.541100e+02 2.748001e+01
+10 11194     -6.696997e+01 2.173500e+02
+12 11194     -1.144000e+01 1.517900e+02
+13 11194     3.881100e+02 -1.658300e+02
+15 11194     -5.020020e+00 2.274200e+02
+1 11195     2.385200e+02 8.292001e+01
+3 11195     8.453998e+01 -2.073900e+02
+5 11195     6.999301e+02 -5.871300e+02
+7 11195     -3.839001e+01 1.948300e+02
+8 11195     1.799900e+02 4.175000e+01
+9 11195     3.684998e+01 1.810300e+02
+10 11195     -3.222998e+01 2.312500e+02
+13 11195     4.155300e+02 -1.559400e+02
+15 11195     3.541998e+01 2.438600e+02
+1 11196     1.925400e+02 6.033002e+01
+3 11196     6.059003e+01 -2.476100e+02
+4 11196     -2.469500e+02 -4.279200e+02
+7 11196     -7.188000e+01 1.546900e+02
+8 11196     1.543600e+02 7.549988e+00
+9 11196     1.615002e+01 1.445400e+02
+12 11196     -1.242999e+01 1.226500e+02
+15 11196     -1.262000e+01 1.926600e+02
+1 11197     4.257600e+02 5.401001e+01
+2 11197     3.269500e+02 1.463000e+02
+3 11197     2.172600e+02 -1.678100e+02
+7 11197     1.260900e+02 2.423500e+02
+8 11197     3.062700e+02 7.647000e+01
+15 11197     2.723300e+02 3.011000e+02
+1 11198     2.022800e+02 3.092999e+01
+7 11198     -4.651001e+01 1.340700e+02
+1 11199     2.022800e+02 3.092999e+01
+4 11199     -2.682000e+02 -4.426500e+02
+7 11199     -4.651001e+01 1.340700e+02
+8 11199     1.830700e+02 -7.269989e+00
+12 11199     2.060999e+01 1.000200e+02
+1 11200     3.643199e+02 2.342999e+01
+15 11200     2.190800e+02 2.340000e+02
+1 11201     -2.193500e+02 9.199829e-01
+15 11201     -5.497000e+02 -1.122300e+02
+1 11202     2.621100e+02 -1.378998e+01
+2 11202     2.715900e+02 4.662000e+01
+3 11202     1.745800e+02 -2.615600e+02
+7 11202     2.757001e+01 1.225400e+02
+9 11202     1.170500e+02 1.337500e+02
+10 11202     3.412000e+01 1.395400e+02
+15 11202     1.147500e+02 1.375700e+02
+1 11203     4.629500e+02 -2.490997e+01
+6 11203     2.424000e+02 1.384200e+02
+7 11203     1.881600e+02 1.915700e+02
+12 11203     2.809200e+02 1.803800e+02
+13 11203     6.085000e+02 -1.706300e+02
+1 11204     1.970000e+02 -4.839001e+01
+2 11204     2.358800e+02 -2.100000e+01
+1 11205     3.349399e+02 -4.890997e+01
+7 11205     1.055000e+02 1.224600e+02
+10 11205     1.259500e+02 1.339800e+02
+1 11206     1.965100e+02 -8.934998e+01
+2 11206     2.541100e+02 -6.321997e+01
+3 11206     1.651600e+02 -3.669300e+02
+4 11206     -3.530200e+02 -4.599500e+02
+7 11206     1.090027e+00 2.528003e+01
+13 11206     4.409500e+02 -3.035200e+02
+1 11207     3.861400e+02 -9.237000e+01
+3 11207     2.948900e+02 -2.830200e+02
+13 11207     5.878800e+02 -2.447900e+02
+15 11207     3.018101e+02 1.037700e+02
+1 11208     -5.107200e+02 -9.454999e+01
+4 11208     -4.059200e+02 7.503003e+01
+1 11209     -4.863300e+02 -1.099700e+02
+15 11209     -8.400300e+02 -4.112800e+02
+1 11210     -3.928700e+02 -1.259700e+02
+7 11210     -5.876300e+02 -3.282400e+02
+1 11211     -4.618400e+02 -1.281000e+02
+15 11211     -7.930700e+02 -4.184700e+02
+1 11212     2.905400e+02 -1.380900e+02
+7 11212     1.030800e+02 2.501001e+01
+1 11213     2.893900e+02 -1.490200e+02
+2 11213     3.677600e+02 -6.758002e+01
+3 11213     2.716899e+02 -3.680200e+02
+7 11213     1.075000e+02 1.540002e+01
+10 11213     1.203700e+02 1.153998e+01
+13 11213     5.391500e+02 -3.193400e+02
+15 11213     2.162200e+02 -1.345001e+01
+1 11214     4.711300e+02 -1.559500e+02
+7 11214     2.464900e+02 8.272000e+01
+1 11215     4.607300e+02 -1.698800e+02
+7 11215     2.470800e+02 6.734998e+01
+1 11216     -4.932000e+02 -1.752700e+02
+15 11216     -8.062000e+02 -5.012200e+02
+1 11217     -5.122500e+02 -1.964100e+02
+7 11217     -6.641600e+02 -4.606801e+02
+15 11217     -8.194100e+02 -5.401801e+02
+1 11218     4.562700e+02 -1.971400e+02
+7 11218     2.541700e+02 4.252002e+01
+1 11219     -2.425700e+02 -2.132700e+02
+4 11219     -4.798200e+02 -1.282600e+02
+6 11219     -3.678800e+02 -5.856300e+02
+7 11219     -3.826600e+02 -3.241400e+02
+15 11219     -4.421400e+02 -3.949500e+02
+1 11220     -2.425700e+02 -2.132700e+02
+4 11220     -4.798200e+02 -1.282600e+02
+6 11220     -3.678800e+02 -5.856300e+02
+7 11220     -3.826600e+02 -3.241400e+02
+9 11220     -2.337300e+02 -4.074700e+02
+15 11220     -4.421400e+02 -3.949500e+02
+1 11221     -2.196300e+02 -2.130100e+02
+4 11221     -4.782000e+02 -1.444800e+02
+9 11221     -2.160100e+02 -3.929200e+02
+1 11222     -4.802900e+02 -2.181200e+02
+15 11222     -7.583000e+02 -5.479100e+02
+1 11223     -3.938400e+02 -2.193000e+02
+7 11223     -5.252300e+02 -4.122000e+02
+1 11224     -2.491800e+02 -2.213000e+02
+4 11224     -4.874200e+02 -1.258900e+02
+9 11224     -2.305200e+02 -4.170200e+02
+15 11224     -4.456700e+02 -4.090700e+02
+1 11225     2.776899e+02 -2.245100e+02
+7 11225     1.341300e+02 -5.378998e+01
+1 11226     -4.040100e+02 -2.280700e+02
+7 11226     -5.294600e+02 -4.259400e+02
+1 11227     2.388500e+02 -2.424500e+02
+7 11227     1.150400e+02 -8.416998e+01
+1 11228     -6.119100e+02 -2.550300e+02
+4 11228     -5.405800e+02 1.234400e+02
+1 11229     -3.762000e+02 -2.697400e+02
+7 11229     -4.745500e+02 -4.483700e+02
+10 11229     -5.697800e+02 -4.433400e+02
+15 11229     -5.822000e+02 -5.483900e+02
+1 11230     -4.001400e+02 -2.754600e+02
+7 11230     -4.939700e+02 -4.656600e+02
+15 11230     -6.099700e+02 -5.692600e+02
+1 11231     -4.001400e+02 -2.754600e+02
+7 11231     -4.939700e+02 -4.656600e+02
+1 11232     -1.883500e+02 -2.762400e+02
+15 11232     -3.315500e+02 -4.439000e+02
+1 11233     -1.883500e+02 -2.762400e+02
+6 11233     -2.371300e+02 -5.923900e+02
+15 11233     -3.315500e+02 -4.439000e+02
+1 11234     -1.819600e+02 -2.826800e+02
+6 11234     -2.244100e+02 -5.964301e+02
+15 11234     -3.180900e+02 -4.459301e+02
+1 11235     2.602200e+02 -2.897800e+02
+10 11235     1.501500e+02 -1.468400e+02
+1 11236     -1.969800e+02 -2.945200e+02
+6 11236     -2.265500e+02 -6.191400e+02
+1 11237     7.688000e+02 -2.996300e+02
+7 11237     4.661500e+02 5.788000e+01
+12 11237     5.758700e+02 1.109003e+01
+15 11237     8.070200e+02 3.898999e+01
+1 11238     -3.094200e+02 -3.009600e+02
+15 11238     -4.730700e+02 -5.489800e+02
+1 11239     -3.048900e+02 -3.090300e+02
+15 11239     -4.630000e+02 -5.544399e+02
+1 11240     2.458002e+01 -3.279500e+02
+15 11240     -2.398999e+01 -3.801100e+02
+1 11241     7.960699e+02 -3.438100e+02
+7 11241     5.046500e+02 3.573999e+01
+15 11241     8.596300e+02 1.210022e+00
+1 11242     4.440601e+02 -3.493100e+02
+10 11242     3.402200e+02 -1.282400e+02
+15 11242     4.854200e+02 -1.784100e+02
+1 11243     7.151600e+02 -4.895400e+02
+3 11243     6.199100e+02 -5.454000e+02
+9 11243     4.949100e+02 -9.773999e+01
+1 11244     6.760800e+02 5.649200e+02
+2 11244     -8.312000e+01 3.810300e+02
+3 11244     -2.225300e+02 4.528998e+01
+4 11244     6.631000e+01 -5.270699e+02
+5 11244     6.479301e+02 -2.782001e+01
+6 11244     -2.311300e+02 7.104000e+02
+8 11244     1.140997e+01 2.979200e+02
+9 11244     -2.265200e+02 4.028500e+02
+11 11244     3.602300e+02 -1.588300e+02
+13 11244     3.819600e+02 2.776400e+02
+14 11244     5.470100e+02 -1.128100e+02
+1 11245     7.192400e+02 4.893000e+02
+11 11245     4.140601e+02 -2.044200e+02
+13 11245     4.249100e+02 2.334100e+02
+1 11246     1.318300e+02 4.674100e+02
+13 11246     1.965997e+01 7.992999e+01
+14 11246     1.021100e+02 -3.381000e+02
+1 11247     6.429600e+02 4.121200e+02
+2 11247     -6.016998e+01 2.288800e+02
+3 11247     -2.039300e+02 -1.032000e+02
+5 11247     6.579100e+02 -1.768800e+02
+6 11247     -1.969200e+02 5.345500e+02
+7 11247     1.995001e+01 5.630700e+02
+8 11247     3.047998e+01 1.775300e+02
+9 11247     -2.017100e+02 2.707900e+02
+11 11247     3.800100e+02 -2.793800e+02
+12 11247     -3.128003e+01 5.080000e+02
+14 11247     5.628101e+02 -2.571900e+02
+1 11248     7.451300e+02 3.991600e+02
+2 11248     1.410999e+01 2.410300e+02
+3 11248     -1.317400e+02 -9.082001e+01
+6 11248     -1.057100e+02 5.641400e+02
+8 11248     9.223999e+01 1.881000e+02
+9 11248     -1.388200e+02 2.838700e+02
+12 11248     5.641998e+01 5.304000e+02
+13 11248     4.624900e+02 1.730900e+02
+1 11249     -4.942500e+02 2.409500e+02
+13 11249     -4.270700e+02 -2.893900e+02
+1 11250     4.179399e+02 1.491600e+02
+10 11250     1.085300e+02 3.709500e+02
+1 11251     2.246100e+02 1.392000e+02
+2 11251     1.079300e+02 1.255900e+02
+15 11251     -1.731000e+01 3.045700e+02
+1 11252     6.624500e+02 1.115000e+02
+10 11252     3.126400e+02 4.206900e+02
+1 11253     8.686899e+02 8.238000e+01
+7 11253     3.885800e+02 3.954700e+02
+9 11253     2.392000e+02 2.599800e+02
+10 11253     5.480900e+02 4.701400e+02
+11 11253     6.995200e+02 -4.952300e+02
+13 11253     7.623101e+02 -1.059998e+00
+15 11253     7.366899e+02 5.358300e+02
+1 11254     2.194000e+02 6.816998e+01
+2 11254     1.715000e+02 8.733002e+01
+3 11254     7.865002e+01 -2.262600e+02
+4 11254     -2.408400e+02 -4.476100e+02
+6 11254     -6.119995e+00 9.237000e+01
+7 11254     -5.010999e+01 1.737700e+02
+8 11254     1.722700e+02 2.504001e+01
+9 11254     3.320001e+01 1.637000e+02
+10 11254     -4.773999e+01 2.078000e+02
+12 11254     1.252002e+01 1.466200e+02
+13 11254     4.042300e+02 -1.719700e+02
+1 11255     1.602400e+02 -3.303003e+01
+15 11255     -2.989990e+00 6.091998e+01
+1 11256     8.603199e+02 -4.310999e+01
+2 11256     5.022900e+02 9.641998e+01
+3 11256     3.661700e+02 -2.163100e+02
+6 11256     4.163600e+02 2.671100e+02
+7 11256     4.291801e+02 2.935400e+02
+8 11256     4.713400e+02 5.081000e+01
+9 11256     2.912300e+02 1.804200e+02
+12 11256     5.011000e+02 2.771100e+02
+13 11256     8.014800e+02 -9.373999e+01
+15 11256     7.852700e+02 3.842900e+02
+1 11257     3.606700e+02 -5.257001e+01
+2 11257     3.629000e+02 5.254999e+01
+3 11257     2.590800e+02 -2.545000e+02
+7 11257     1.269200e+02 1.296700e+02
+10 11257     1.520300e+02 1.407500e+02
+13 11257     5.587900e+02 -2.208800e+02
+15 11257     2.537000e+02 1.400900e+02
+1 11258     -5.210600e+02 -7.490997e+01
+4 11258     -3.927700e+02 8.369000e+01
+1 11259     1.531600e+02 -8.089001e+01
+3 11259     1.256900e+02 -3.872200e+02
+7 11259     -4.158002e+01 1.183002e+01
+10 11259     -5.307001e+01 2.113000e+01
+13 11259     4.075300e+02 -3.123100e+02
+15 11259     1.278998e+01 -2.710022e+00
+1 11260     1.531600e+02 -8.089001e+01
+7 11260     -4.158002e+01 1.183002e+01
+15 11260     1.278998e+01 -2.710022e+00
+1 11261     -4.731200e+02 -1.173500e+02
+15 11261     -8.175700e+02 -4.126500e+02
+1 11262     -1.434300e+02 -1.289600e+02
+13 11262     1.040700e+02 -4.804900e+02
+1 11263     6.156000e+01 -1.352700e+02
+3 11263     1.057400e+02 -4.750400e+02
+4 11263     -3.977300e+02 -3.768300e+02
+6 11263     -6.570007e+00 -2.033000e+02
+7 11263     -9.394000e+01 -7.734998e+01
+8 11263     1.706300e+02 -1.927500e+02
+10 11263     -1.238500e+02 -7.671997e+01
+12 11263     -1.054999e+01 -1.520700e+02
+15 11263     -6.902002e+01 -1.179700e+02
+1 11264     -5.197700e+02 -1.445400e+02
+4 11264     -4.447900e+02 7.300000e+01
+1 11265     4.789500e+02 -1.621700e+02
+7 11265     2.552100e+02 7.925000e+01
+1 11266     3.114900e+02 -1.758800e+02
+7 11266     1.402500e+02 3.130005e+00
+1 11267     -5.387800e+02 -1.769000e+02
+4 11267     -4.715300e+02 8.132999e+01
+7 11267     -7.071700e+02 -4.602900e+02
+1 11268     -2.311300e+02 -2.169700e+02
+4 11268     -4.819100e+02 -1.371500e+02
+6 11268     -3.511900e+02 -5.801600e+02
+7 11268     -3.695000e+02 -3.219500e+02
+15 11268     -4.245400e+02 -3.929600e+02
+1 11269     2.483600e+02 -2.330000e+02
+7 11269     1.162700e+02 -7.232001e+01
+1 11270     -3.578500e+02 -2.530800e+02
+7 11270     -4.674700e+02 -4.241500e+02
+10 11270     -5.574300e+02 -4.144600e+02
+15 11270     -5.685200e+02 -5.165100e+02
+1 11271     -2.854600e+02 -2.536100e+02
+15 11271     -4.739600e+02 -4.698101e+02
+1 11272     -2.949700e+02 -2.658700e+02
+7 11272     -3.981700e+02 -3.995800e+02
+15 11272     -4.762900e+02 -4.936300e+02
+1 11273     -2.173000e+02 -2.823200e+02
+6 11273     -2.610300e+02 -6.239500e+02
+9 11273     -1.413400e+02 -4.278600e+02
+15 11273     -3.635800e+02 -4.668900e+02
+1 11274     -2.173000e+02 -2.823200e+02
+6 11274     -2.610300e+02 -6.239500e+02
+9 11274     -1.322700e+02 -4.287800e+02
+15 11274     -3.635800e+02 -4.668900e+02
+1 11275     2.485500e+02 -2.843600e+02
+10 11275     1.358000e+02 -1.468200e+02
+1 11276     7.873800e+02 -3.133900e+02
+7 11276     4.847100e+02 5.381000e+01
+9 11276     3.954301e+02 -9.219971e+00
+10 11276     6.247500e+02 4.816998e+01
+15 11276     8.340300e+02 3.185999e+01
+1 11277     -1.571900e+02 -3.148800e+02
+6 11277     -1.674600e+02 -6.028500e+02
+15 11277     -2.687800e+02 -4.713300e+02
+1 11278     2.299800e+02 -3.205000e+02
+4 11278     -5.402200e+02 -5.379600e+02
+6 11278     2.412600e+02 -2.765200e+02
+12 11278     2.547400e+02 -2.423400e+02
+1 11279     6.492500e+02 -3.463400e+02
+7 11279     4.111801e+02 -2.302002e+01
+1 11280     -3.948000e+02 -4.373400e+02
+4 11280     -6.905000e+02 -7.167999e+01
+1 11281     7.965400e+02 -4.374600e+02
+9 11281     4.833700e+02 -5.287000e+01
+12 11281     6.937500e+02 -7.644000e+01
+1 11282     7.989100e+02 -4.749800e+02
+7 11282     5.691100e+02 -5.695001e+01
+1 11283     6.938700e+02 -5.728400e+02
+7 11283     5.550900e+02 -1.688300e+02
+12 11283     7.348101e+02 -2.249700e+02
+1 11284     7.236200e+02 4.047900e+02
+2 11284     -2.450012e+00 2.422400e+02
+5 11284     7.286700e+02 -1.632500e+02
+6 11284     -1.257900e+02 5.626500e+02
+8 11284     7.878998e+01 1.890300e+02
+9 11284     -1.530200e+02 2.843700e+02
+11 11284     4.443500e+02 -2.664000e+02
+12 11284     3.748999e+01 5.302400e+02
+13 11284     4.475300e+02 1.735400e+02
+1 11285     -1.757000e+02 2.909200e+02
+7 11285     -6.438400e+02 1.546800e+02
+1 11286     5.878600e+02 1.806200e+02
+7 11286     9.187000e+01 3.580100e+02
+10 11286     2.068300e+02 4.628100e+02
+11 11286     4.194500e+02 -4.863900e+02
+13 11286     4.603000e+02 -2.278998e+01
+14 11286     6.555400e+02 -4.906300e+02
+1 11287     1.605300e+02 -1.083002e+01
+15 11287     -1.490002e+01 8.892001e+01
+1 11288     3.403800e+02 -2.362000e+01
+7 11288     9.796997e+01 1.463200e+02
+1 11289     2.789800e+02 -7.427002e+01
+15 11289     1.674000e+02 7.282001e+01
+1 11290     2.789800e+02 -7.427002e+01
+13 11290     5.090500e+02 -2.624100e+02
+15 11290     1.674000e+02 7.282001e+01
+1 11291     -4.734600e+02 -1.048300e+02
+15 11291     -8.261900e+02 -3.956000e+02
+1 11292     -4.950700e+02 -1.617700e+02
+7 11292     -6.720100e+02 -4.193600e+02
+15 11292     -8.196300e+02 -4.843400e+02
+1 11293     -9.179993e+00 -1.673300e+02
+2 11293     5.473999e+01 -3.294800e+02
+6 11293     -1.259100e+02 -3.283300e+02
+7 11293     -1.736900e+02 -1.558600e+02
+8 11293     6.932001e+01 -3.104600e+02
+9 11293     -4.662000e+01 -1.876100e+02
+12 11293     -1.162900e+02 -2.729100e+02
+13 11293     2.691899e+02 -4.536600e+02
+15 11293     -1.580900e+02 -2.002300e+02
+1 11294     -4.401700e+02 -1.827400e+02
+7 11294     -5.972500e+02 -4.050800e+02
+1 11295     3.138199e+02 -1.895200e+02
+7 11295     1.479800e+02 -6.729980e+00
+1 11296     -6.352400e+02 -2.047100e+02
+4 11296     -5.008200e+02 1.469500e+02
+1 11297     2.030400e+02 -2.326500e+02
+7 11297     8.145001e+01 -9.159998e+01
+1 11298     -4.133000e+02 -2.358800e+02
+7 11298     -5.342700e+02 -4.408900e+02
+1 11299     -2.412000e+01 -2.365800e+02
+10 11299     -1.877100e+02 -2.269900e+02
+1 11300     3.109600e+02 -2.631900e+02
+2 11300     4.738700e+02 -1.386700e+02
+7 11300     1.835900e+02 -6.840002e+01
+1 11301     4.376899e+02 -3.294700e+02
+10 11301     3.308300e+02 -1.091300e+02
+15 11301     4.719700e+02 -1.555200e+02
+1 11302     3.929200e+02 -3.806100e+02
+3 11302     4.311700e+02 -5.703300e+02
+7 11302     2.671200e+02 -1.439800e+02
+9 11302     3.348101e+02 -1.219100e+02
+13 11302     6.718600e+02 -4.808700e+02
+1 11303     8.021400e+02 -4.612100e+02
+7 11303     5.634301e+02 -4.376001e+01
+1 11304     5.920300e+02 5.029500e+02
+4 11304     2.744000e+01 -4.844700e+02
+5 11304     5.933199e+02 -1.003900e+02
+6 11304     -2.778900e+02 6.134100e+02
+12 11304     -1.102600e+02 5.842700e+02
+13 11304     3.387000e+02 2.143900e+02
+14 11304     4.963800e+02 -1.880400e+02
+1 11305     3.145500e+02 4.417000e+02
+7 11305     -2.604500e+02 4.824200e+02
+1 11306     4.996500e+02 3.912200e+02
+2 11306     -1.600500e+02 1.698700e+02
+7 11306     -8.590002e+01 4.989400e+02
+8 11306     -5.151001e+01 1.292600e+02
+13 11306     2.987500e+02 1.080400e+02
+14 11306     4.471700e+02 -3.164000e+02
+1 11307     4.996500e+02 3.912200e+02
+2 11307     -1.600500e+02 1.698700e+02
+4 11307     -4.373999e+01 -4.384500e+02
+7 11307     -8.590002e+01 4.989400e+02
+8 11307     -5.151001e+01 1.292600e+02
+9 11307     -2.829100e+02 2.164500e+02
+1 11308     7.150400e+02 3.823400e+02
+5 11308     7.274399e+02 -1.860000e+02
+6 11308     -1.229500e+02 5.336300e+02
+7 11308     8.546997e+01 5.581600e+02
+12 11308     3.959998e+01 5.051300e+02
+13 11308     4.468700e+02 1.517200e+02
+14 11308     6.306200e+02 -2.674500e+02
+1 11309     1.945200e+02 -3.053003e+01
+3 11309     1.326100e+02 -3.137800e+02
+4 11309     -3.112700e+02 -4.529200e+02
+10 11309     -2.971997e+01 9.265002e+01
+1 11310     -5.234500e+02 -1.583400e+02
+15 11310     -8.620900e+02 -4.981300e+02
+1 11311     3.407600e+02 -2.295500e+02
+7 11311     1.844500e+02 -2.834998e+01
+1 11312     4.335500e+02 -2.705700e+02
+3 11312     4.254500e+02 -4.009301e+02
+7 11312     2.723199e+02 -2.396997e+01
+1 11313     -6.429700e+02 -3.160600e+02
+4 11313     -5.968500e+02 1.382200e+02
+1 11314     -6.659000e+02 -3.424700e+02
+4 11314     -6.211800e+02 1.508300e+02
+1 11315     -3.891900e+02 -4.134600e+02
+4 11315     -6.662500e+02 -6.981000e+01
+1 11316     -3.891900e+02 -4.134600e+02
+4 11316     -6.662500e+02 -6.981000e+01
+1 11317     8.104600e+02 -4.429301e+02
+7 11317     5.587600e+02 -3.144000e+01
+1 11318     5.179700e+02 4.679100e+02
+4 11318     3.799988e+00 -4.433300e+02
+5 11318     5.397300e+02 -1.533000e+02
+6 11318     -3.282300e+02 5.440500e+02
+8 11318     -5.869000e+01 1.981600e+02
+1 11319     -6.174900e+02 -2.701500e+02
+4 11319     -5.537900e+02 1.249500e+02
+1 11320     -6.499400e+02 -3.573000e+02
+4 11320     -6.329900e+02 1.381500e+02
+1 11321     1.130900e+02 -3.577200e+02
+4 11321     -5.777800e+02 -4.422100e+02
+12 11321     1.492700e+02 -3.692100e+02
+1 11322     7.103000e+02 4.831700e+02
+2 11322     -3.935999e+01 3.144500e+02
+4 11322     2.620001e+01 -5.565200e+02
+5 11322     6.959000e+02 -9.185999e+01
+6 11322     -1.726600e+02 6.392700e+02
+8 11322     4.810999e+01 2.457500e+02
+9 11322     -1.872600e+02 3.449700e+02
+13 11322     4.178500e+02 2.271100e+02
+14 11322     5.943600e+02 -1.721900e+02
+1 11323     -7.299988e+00 4.382500e+02
+4 11323     -4.589001e+01 -1.493300e+02
+5 11323     5.266998e+01 -3.131200e+02
+8 11323     -4.324700e+02 4.354999e+01
+11 11323     -1.605200e+02 -4.109900e+02
+12 11323     -6.660300e+02 2.719200e+02
+1 11324     7.492600e+02 4.812000e+02
+2 11324     -7.739990e+00 3.199700e+02
+3 11324     -1.506600e+02 -1.712000e+01
+4 11324     2.829999e+01 -5.765900e+02
+5 11324     7.288300e+02 -8.503998e+01
+6 11324     -1.362100e+02 6.526400e+02
+9 11324     -1.596000e+02 3.508100e+02
+11 11324     4.377400e+02 -2.036200e+02
+13 11324     4.471500e+02 2.341100e+02
+14 11324     6.276300e+02 -1.673500e+02
+1 11325     2.656600e+02 -1.464100e+02
+7 11325     8.583002e+01 9.750000e+00
+1 11326     3.214800e+02 -2.010000e+02
+7 11326     1.537700e+02 -1.364001e+01
+1 11327     5.451200e+02 4.103000e+02
+2 11327     -1.328600e+02 1.993900e+02
+8 11327     -2.837000e+01 1.549600e+02
+1 11328     4.261100e+02 -1.995800e+02
+7 11328     2.341100e+02 2.864001e+01
+1 11329     1.132000e+02 5.717300e+02
+7 11329     -4.839000e+02 5.384600e+02
+1 11330     9.176001e+01 4.307700e+02
+8 11330     -3.505700e+02 6.167001e+01
+2 11331     -3.985600e+02 6.101100e+02
+13 11331     1.203700e+02 4.388500e+02
+2 11332     -1.020700e+02 6.029800e+02
+14 11332     5.390100e+02 9.669000e+01
+2 11333     -1.042800e+02 5.994000e+02
+5 11333     6.444301e+02 1.854700e+02
+2 11334     2.489001e+01 5.924100e+02
+14 11334     6.840400e+02 1.011600e+02
+2 11335     -6.031000e+01 5.870600e+02
+3 11335     -1.997000e+02 2.443600e+02
+5 11335     6.945601e+02 1.768800e+02
+11 11335     3.864399e+02 8.440002e+00
+14 11335     5.846400e+02 8.562000e+01
+2 11336     -2.541200e+02 5.845300e+02
+3 11336     -3.814900e+02 2.435300e+02
+4 11336     1.833800e+02 -4.234000e+02
+11 11336     1.892200e+02 -1.479999e+01
+14 11336     3.726300e+02 6.198999e+01
+2 11337     -2.911500e+02 5.838600e+02
+5 11337     4.350300e+02 1.537900e+02
+2 11338     -6.446002e+01 5.808200e+02
+3 11338     -2.039800e+02 2.379300e+02
+5 11338     6.894500e+02 1.706500e+02
+14 11338     5.802800e+02 7.998001e+01
+2 11339     3.402002e+01 5.775500e+02
+11 11339     4.891899e+02 1.342999e+01
+13 11339     5.089500e+02 4.538900e+02
+2 11340     -6.669000e+01 5.720100e+02
+4 11340     1.781500e+02 -5.708199e+02
+2 11341     -2.611500e+02 5.710000e+02
+14 11341     3.645800e+02 4.883002e+01
+2 11342     -6.033002e+01 5.613000e+02
+13 11342     4.156899e+02 4.275500e+02
+2 11343     -1.847200e+02 5.532900e+02
+14 11343     4.450800e+02 4.031000e+01
+2 11344     -3.371800e+02 5.504900e+02
+3 11344     -4.600100e+02 2.132800e+02
+5 11344     3.829500e+02 1.174000e+02
+6 11344     -5.647900e+02 8.643200e+02
+14 11344     2.845400e+02 2.353003e+01
+2 11345     -7.595001e+01 5.503900e+02
+5 11345     6.731300e+02 1.395900e+02
+11 11345     3.712100e+02 -2.246997e+01
+14 11345     5.656600e+02 4.988000e+01
+2 11346     -7.595001e+01 5.503900e+02
+5 11346     6.731300e+02 1.395900e+02
+11 11346     3.712100e+02 -2.246997e+01
+14 11346     5.656600e+02 4.988000e+01
+2 11347     -3.834800e+02 5.499500e+02
+5 11347     3.350500e+02 1.136500e+02
+2 11348     -1.668000e+02 5.501800e+02
+5 11348     5.688101e+02 1.319700e+02
+14 11348     4.648500e+02 4.031000e+01
+2 11349     -1.749900e+02 5.496900e+02
+5 11349     5.587200e+02 1.297200e+02
+2 11350     -1.855300e+02 5.490600e+02
+5 11350     5.471100e+02 1.284200e+02
+14 11350     4.437100e+02 3.692999e+01
+2 11351     -1.855300e+02 5.490600e+02
+14 11351     4.437100e+02 3.692999e+01
+2 11352     3.057100e+02 5.486300e+02
+3 11352     1.599700e+02 2.070700e+02
+6 11352     2.216900e+02 8.453400e+02
+8 11352     3.202300e+02 4.271600e+02
+9 11352     1.111600e+02 5.608100e+02
+13 11352     7.036899e+02 3.458300e+02
+2 11353     -3.769200e+02 5.476600e+02
+5 11353     3.414900e+02 1.117800e+02
+2 11354     8.534003e+01 5.476500e+02
+11 11354     5.475800e+02 -5.219971e+00
+14 11354     7.558300e+02 6.629999e+01
+2 11355     -3.191800e+02 5.461800e+02
+6 11355     -5.413200e+02 8.635500e+02
+8 11355     -1.847600e+02 4.257800e+02
+14 11355     3.029000e+02 2.053003e+01
+2 11356     -3.060900e+02 5.457400e+02
+6 11356     -5.247500e+02 8.652800e+02
+8 11356     -1.734400e+02 4.255900e+02
+2 11357     -3.109300e+02 5.440500e+02
+6 11357     -5.311300e+02 8.621200e+02
+2 11358     2.700400e+02 5.435500e+02
+3 11358     1.253400e+02 2.024100e+02
+6 11358     1.791000e+02 8.457000e+02
+9 11358     7.940997e+01 5.557600e+02
+13 11358     6.724800e+02 3.482300e+02
+2 11359     -2.225300e+02 5.428600e+02
+6 11359     -4.179900e+02 8.803500e+02
+11 11359     2.201500e+02 -4.332001e+01
+13 11359     2.637600e+02 3.934500e+02
+14 11359     4.034700e+02 2.647998e+01
+2 11360     -5.370000e+02 5.419100e+02
+8 11360     -3.647800e+02 4.165000e+02
+2 11361     -4.363400e+02 5.418600e+02
+3 11361     -5.552300e+02 2.070400e+02
+5 11361     2.803500e+02 1.023700e+02
+14 11361     1.850500e+02 7.059998e+00
+2 11362     -2.695700e+02 5.419600e+02
+11 11362     1.740400e+02 -4.772998e+01
+13 11362     2.216700e+02 3.884600e+02
+14 11362     3.536500e+02 2.184003e+01
+2 11363     -3.314900e+02 5.412600e+02
+6 11363     -5.569900e+02 8.532000e+02
+8 11363     -1.955700e+02 4.209200e+02
+2 11364     -1.304400e+02 5.416000e+02
+4 11364     1.595400e+02 -5.126500e+02
+11 11364     3.140200e+02 -3.507001e+01
+13 11364     3.483400e+02 4.035900e+02
+14 11364     5.040900e+02 3.544000e+01
+2 11365     -1.199500e+02 5.414500e+02
+3 11365     -2.554500e+02 2.003200e+02
+4 11365     1.595400e+02 -5.213700e+02
+8 11365     -1.882001e+01 4.260700e+02
+14 11365     5.156600e+02 3.653998e+01
+2 11366     3.735500e+02 5.417200e+02
+6 11366     3.011400e+02 8.276400e+02
+2 11367     -1.792200e+02 5.411800e+02
+5 11367     5.529700e+02 1.211100e+02
+13 11367     3.025800e+02 3.973900e+02
+14 11367     4.498199e+02 2.965997e+01
+2 11368     -2.327900e+02 5.388500e+02
+6 11368     -4.303200e+02 8.731500e+02
+2 11369     -2.378000e+02 5.383700e+02
+6 11369     -4.367500e+02 8.712700e+02
+2 11370     3.019600e+02 5.386100e+02
+3 11370     1.558500e+02 1.979900e+02
+6 11370     2.163000e+02 8.355900e+02
+2 11371     3.073700e+02 5.382300e+02
+3 11371     1.613300e+02 1.977300e+02
+6 11371     2.233700e+02 8.338700e+02
+9 11371     1.118500e+02 5.521000e+02
+2 11372     -5.976900e+02 5.377700e+02
+5 11372     1.233000e+02 8.865002e+01
+2 11373     3.505200e+02 5.373900e+02
+9 11373     1.494900e+02 5.521200e+02
+11 11373     6.649900e+02 -1.209700e+02
+2 11374     -5.406300e+02 5.367000e+02
+3 11374     -6.557700e+02 2.049400e+02
+8 11374     -3.673100e+02 4.123900e+02
+2 11375     -1.503800e+02 5.366400e+02
+14 11375     4.816500e+02 2.850000e+01
+2 11376     2.569100e+02 5.362600e+02
+3 11376     1.126200e+02 1.950500e+02
+6 11376     1.637500e+02 8.383500e+02
+8 11376     2.804100e+02 4.171800e+02
+9 11376     6.797998e+01 5.482900e+02
+2 11377     -1.328100e+02 5.356900e+02
+5 11377     6.059600e+02 1.199500e+02
+2 11378     -1.288400e+02 5.354100e+02
+3 11378     -2.635900e+02 1.958400e+02
+5 11378     6.094000e+02 1.195000e+02
+2 11379     -1.244800e+02 5.349200e+02
+5 11379     6.153300e+02 1.197300e+02
+2 11380     -3.008000e+02 5.339300e+02
+5 11380     4.201700e+02 1.046100e+02
+6 11380     -5.168400e+02 8.509400e+02
+2 11381     -1.412400e+02 5.338400e+02
+3 11381     -2.761600e+02 1.943300e+02
+5 11381     5.956300e+02 1.175300e+02
+11 11381     3.028400e+02 -4.196002e+01
+2 11382     2.819700e+02 5.340900e+02
+6 11382     1.891000e+02 8.317800e+02
+8 11382     2.980700e+02 4.151100e+02
+11 11382     6.084301e+02 -1.102500e+02
+2 11383     3.313300e+02 5.339700e+02
+3 11383     1.837600e+02 1.940300e+02
+6 11383     2.507600e+02 8.250800e+02
+2 11384     -1.655900e+02 5.332500e+02
+6 11384     -3.441400e+02 8.818900e+02
+11 11384     2.774900e+02 -4.484998e+01
+2 11385     2.844301e+02 5.330700e+02
+3 11385     1.394600e+02 1.929500e+02
+6 11385     1.940800e+02 8.278000e+02
+8 11385     3.020400e+02 4.143900e+02
+11 11385     6.111000e+02 -1.136500e+02
+13 11385     6.826200e+02 3.352300e+02
+2 11386     -3.457600e+02 5.320100e+02
+5 11386     3.725900e+02 9.975000e+01
+14 11386     2.748800e+02 6.210022e+00
+2 11387     -3.286600e+02 5.315400e+02
+5 11387     3.901500e+02 1.004300e+02
+6 11387     -5.516700e+02 8.419500e+02
+8 11387     -1.925000e+02 4.133100e+02
+11 11387     1.172600e+02 -6.133002e+01
+14 11387     2.920900e+02 6.719971e+00
+2 11388     -6.177700e+02 5.311500e+02
+5 11388     1.034300e+02 8.177002e+01
+2 11389     2.860200e+02 5.308900e+02
+6 11389     1.988900e+02 8.280600e+02
+8 11389     3.044100e+02 4.136700e+02
+9 11389     9.434003e+01 5.449400e+02
+11 11389     6.149500e+02 -1.133400e+02
+2 11390     -3.330700e+02 5.302300e+02
+6 11390     -5.578900e+02 8.388000e+02
+11 11390     1.128300e+02 -6.275000e+01
+2 11391     -2.441200e+02 5.306000e+02
+3 11391     -3.724000e+02 1.926000e+02
+14 11391     3.803000e+02 1.359998e+01
+2 11392     -2.391000e+02 5.304500e+02
+6 11392     -4.378700e+02 8.612500e+02
+11 11392     2.038400e+02 -5.362000e+01
+14 11392     3.853101e+02 1.413000e+01
+2 11393     -1.284998e+01 5.305900e+02
+14 11393     6.375300e+02 3.817999e+01
+2 11394     -1.363200e+02 5.294800e+02
+5 11394     6.014399e+02 1.133400e+02
+8 11394     -3.265002e+01 4.160300e+02
+13 11394     3.419000e+02 3.925500e+02
+14 11394     4.967400e+02 2.310999e+01
+2 11395     -1.363200e+02 5.294800e+02
+5 11395     6.014399e+02 1.133400e+02
+8 11395     -3.265002e+01 4.160300e+02
+13 11395     3.419000e+02 3.925500e+02
+14 11395     4.967400e+02 2.310999e+01
+2 11396     -5.493200e+02 5.282800e+02
+11 11396     -8.054999e+01 -8.065997e+01
+2 11397     -1.207500e+02 5.279300e+02
+3 11397     -2.566100e+02 1.889200e+02
+5 11397     6.187700e+02 1.141600e+02
+8 11397     -1.975000e+01 4.158900e+02
+14 11397     5.140300e+02 2.410999e+01
+2 11398     4.109900e+02 5.280200e+02
+6 11398     3.438200e+02 8.063800e+02
+2 11399     -4.960200e+02 5.273800e+02
+11 11399     -3.475000e+01 -7.673999e+01
+2 11400     -2.333900e+02 5.276500e+02
+14 11400     3.912100e+02 1.172998e+01
+2 11401     -2.240000e+02 5.277000e+02
+3 11401     -3.538200e+02 1.889000e+02
+6 11401     -4.184800e+02 8.609700e+02
+14 11401     4.008700e+02 1.273999e+01
+2 11402     -1.237900e+02 5.260800e+02
+3 11402     -2.597700e+02 1.861900e+02
+5 11402     6.154200e+02 1.112000e+02
+8 11402     -2.210999e+01 4.137500e+02
+2 11403     -1.237900e+02 5.260800e+02
+5 11403     6.154200e+02 1.112000e+02
+2 11404     5.334399e+02 5.261300e+02
+8 11404     5.018700e+02 4.034100e+02
+2 11405     -2.979400e+02 5.248800e+02
+5 11405     4.227200e+02 9.629999e+01
+6 11405     -5.115200e+02 8.405000e+02
+14 11405     3.237100e+02 3.570007e+00
+2 11406     1.182400e+02 5.249200e+02
+14 11406     7.951801e+02 4.759003e+01
+2 11407     3.259998e+01 5.236700e+02
+5 11407     8.025699e+02 1.227100e+02
+8 11407     1.085200e+02 4.156600e+02
+2 11408     2.814900e+02 5.237100e+02
+6 11408     1.928600e+02 8.188600e+02
+8 11408     3.011000e+02 4.082900e+02
+13 11408     6.806500e+02 3.296100e+02
+2 11409     5.591300e+02 5.203900e+02
+3 11409     4.043900e+02 1.840700e+02
+8 11409     5.241899e+02 3.981000e+02
+2 11410     3.231000e+01 5.202900e+02
+3 11410     -1.142800e+02 1.795900e+02
+5 11410     8.019399e+02 1.180900e+02
+8 11410     1.079600e+02 4.116700e+02
+11 11410     4.879500e+02 -3.603998e+01
+13 11410     5.032500e+02 4.041200e+02
+2 11411     2.529100e+02 5.186900e+02
+3 11411     1.090400e+02 1.790000e+02
+6 11411     1.587600e+02 8.177000e+02
+2 11412     5.881400e+02 5.180000e+02
+3 11412     4.315900e+02 1.824300e+02
+2 11413     -2.186400e+02 5.172300e+02
+6 11413     -4.107800e+02 8.487400e+02
+14 11413     4.063300e+02 3.559998e+00
+2 11414     -2.186400e+02 5.172300e+02
+3 11414     -3.490400e+02 1.790200e+02
+6 11414     -4.107800e+02 8.487400e+02
+2 11415     -2.186400e+02 5.172300e+02
+3 11415     -3.490400e+02 1.790200e+02
+6 11415     -4.107800e+02 8.487400e+02
+11 11415     2.236000e+02 -6.237000e+01
+14 11415     4.063300e+02 3.559998e+00
+2 11416     4.493700e+02 5.171900e+02
+3 11416     3.009000e+02 1.797500e+02
+6 11416     3.756700e+02 7.489500e+02
+8 11416     4.320601e+02 3.967400e+02
+2 11417     -2.519100e+02 5.163500e+02
+5 11417     4.713199e+02 9.151001e+01
+6 11417     -4.524500e+02 8.399400e+02
+14 11417     3.713500e+02 -3.400269e-01
+2 11418     -1.461100e+02 5.161800e+02
+3 11418     -2.805200e+02 1.770700e+02
+4 11418     1.468400e+02 -4.970800e+02
+5 11418     5.888500e+02 1.009400e+02
+6 11418     -3.181300e+02 8.655900e+02
+8 11418     -4.046002e+01 4.057000e+02
+11 11418     2.971300e+02 -5.621002e+01
+13 11418     3.321801e+02 3.810000e+02
+14 11418     4.851500e+02 9.890015e+00
+2 11419     -2.421800e+02 5.155000e+02
+6 11419     -4.400000e+02 8.411800e+02
+14 11419     3.815000e+02 -9.002686e-02
+2 11420     -2.561000e+02 5.142700e+02
+5 11420     4.663300e+02 8.934003e+01
+2 11421     -1.105300e+02 5.131600e+02
+6 11421     -2.730200e+02 8.691100e+02
+8 11421     -1.154999e+01 4.036800e+02
+2 11422     4.979301e+02 5.129300e+02
+3 11422     3.463400e+02 1.762400e+02
+8 11422     4.723800e+02 3.925500e+02
+9 11422     2.789399e+02 5.339100e+02
+2 11423     4.979301e+02 5.129300e+02
+6 11423     4.313600e+02 7.364600e+02
+2 11424     5.068900e+02 5.122500e+02
+3 11424     3.556200e+02 1.757000e+02
+9 11424     2.868700e+02 5.333700e+02
+2 11425     5.517100e+02 5.122800e+02
+9 11425     3.245400e+02 5.347200e+02
+2 11426     4.799200e+02 5.110100e+02
+6 11426     4.109300e+02 7.372300e+02
+2 11427     -3.302900e+02 5.090500e+02
+5 11427     3.864399e+02 7.959003e+01
+6 11427     -5.514000e+02 8.133000e+02
+2 11428     -1.310500e+02 5.087600e+02
+5 11428     6.051300e+02 9.356000e+01
+2 11429     2.630000e+02 5.090900e+02
+6 11429     1.697200e+02 8.043300e+02
+9 11429     7.384998e+01 5.252300e+02
+11 11429     5.948500e+02 -1.280700e+02
+2 11430     5.441000e+02 5.060000e+02
+3 11430     3.903400e+02 1.704800e+02
+2 11431     2.737100e+02 5.051600e+02
+6 11431     1.819900e+02 7.973000e+02
+8 11431     2.928000e+02 3.919300e+02
+9 11431     8.390002e+01 5.221500e+02
+13 11431     6.725000e+02 3.149000e+02
+2 11432     -2.553800e+02 5.046600e+02
+13 11432     2.329399e+02 3.599200e+02
+2 11433     2.647200e+02 5.032500e+02
+6 11433     1.748300e+02 7.943600e+02
+8 11433     2.868300e+02 3.909700e+02
+9 11433     7.745001e+01 5.190600e+02
+13 11433     6.643800e+02 3.145000e+02
+2 11434     5.992400e+02 5.029300e+02
+3 11434     4.419500e+02 1.686400e+02
+2 11435     -1.299100e+02 5.023900e+02
+13 11435     3.452900e+02 3.700300e+02
+2 11436     4.669600e+02 5.018500e+02
+3 11436     3.183400e+02 1.658500e+02
+6 11436     3.951700e+02 7.284600e+02
+2 11437     5.167200e+02 5.021500e+02
+6 11437     4.535601e+02 7.215300e+02
+8 11437     4.890400e+02 3.838600e+02
+9 11437     2.955300e+02 5.252200e+02
+2 11438     1.166998e+01 5.012800e+02
+5 11438     7.742000e+02 9.781000e+01
+8 11438     9.066998e+01 3.967300e+02
+2 11439     -6.403003e+01 5.006700e+02
+6 11439     -2.124400e+02 8.644700e+02
+2 11440     -6.690997e+01 4.990400e+02
+3 11440     -2.068200e+02 1.592800e+02
+5 11440     6.788500e+02 8.923999e+01
+6 11440     -2.162100e+02 8.613100e+02
+11 11440     3.801400e+02 -6.192999e+01
+13 11440     4.051801e+02 3.752100e+02
+14 11440     5.728800e+02 1.270020e+00
+2 11441     -3.180000e+02 4.982400e+02
+5 11441     3.986700e+02 6.998999e+01
+2 11442     -3.384400e+02 4.968000e+02
+3 11442     -4.620300e+02 1.612400e+02
+6 11442     -5.601100e+02 7.957800e+02
+8 11442     -1.997600e+02 3.853400e+02
+2 11443     -2.515400e+02 4.963000e+02
+11 11443     1.911300e+02 -8.098999e+01
+14 11443     3.703400e+02 -1.819000e+01
+2 11444     -1.685400e+02 4.941600e+02
+6 11444     -3.448400e+02 8.310200e+02
+8 11444     -5.887000e+01 3.868900e+02
+2 11445     -3.067700e+02 4.909800e+02
+14 11445     3.125699e+02 -2.796002e+01
+2 11446     4.450800e+02 4.909900e+02
+3 11446     2.975800e+02 1.550900e+02
+8 11446     4.289000e+02 3.751400e+02
+2 11447     -4.014000e+02 4.900800e+02
+5 11447     3.114900e+02 5.721997e+01
+14 11447     2.167000e+02 -3.590002e+01
+2 11448     3.205200e+02 4.896300e+02
+9 11448     1.252400e+02 5.110700e+02
+11 11448     6.417400e+02 -1.565500e+02
+2 11449     8.856000e+01 4.874500e+02
+8 11449     1.549300e+02 3.867800e+02
+11 11449     5.512700e+02 -5.609003e+01
+2 11450     3.265500e+02 4.874400e+02
+6 11450     2.440600e+02 7.680800e+02
+11 11450     6.462200e+02 -1.609400e+02
+2 11451     3.445100e+02 4.877700e+02
+6 11451     2.642500e+02 7.668000e+02
+2 11452     7.898999e+01 4.871200e+02
+14 11452     7.444399e+02 4.630005e+00
+2 11453     3.213700e+02 4.870300e+02
+3 11453     1.755900e+02 1.499900e+02
+6 11453     2.375300e+02 7.685300e+02
+8 11453     3.316000e+02 3.766900e+02
+9 11453     1.250600e+02 5.074500e+02
+11 11453     6.406700e+02 -1.600400e+02
+2 11454     1.181000e+01 4.867900e+02
+6 11454     -1.150400e+02 8.643200e+02
+11 11454     4.646700e+02 -6.437000e+01
+2 11455     1.181000e+01 4.867900e+02
+3 11455     -1.329900e+02 1.476400e+02
+6 11455     -1.150400e+02 8.643200e+02
+11 11455     4.646700e+02 -6.437000e+01
+2 11456     5.622100e+02 4.858300e+02
+3 11456     4.080500e+02 1.530900e+02
+2 11457     8.759003e+01 4.839700e+02
+3 11457     -6.257001e+01 1.446900e+02
+6 11457     -1.737000e+01 8.774700e+02
+11 11457     5.496700e+02 -5.890002e+01
+13 11457     5.556801e+02 3.794900e+02
+14 11457     7.546100e+02 2.400024e+00
+2 11458     -1.210900e+02 4.825400e+02
+5 11458     6.134100e+02 6.731000e+01
+8 11458     -2.054999e+01 3.784400e+02
+14 11458     5.103500e+02 -2.072998e+01
+2 11459     -1.210900e+02 4.825400e+02
+14 11459     5.103500e+02 -2.072998e+01
+2 11460     6.546002e+01 4.823400e+02
+6 11460     -4.627002e+01 8.712100e+02
+2 11461     6.546002e+01 4.823400e+02
+6 11461     -4.627002e+01 8.712100e+02
+2 11462     3.693400e+02 4.826100e+02
+6 11462     2.935500e+02 7.560800e+02
+9 11462     1.665200e+02 5.047500e+02
+2 11463     -6.600400e+02 4.806700e+02
+3 11463     -7.757600e+02 1.541800e+02
+2 11464     8.481000e+01 4.786400e+02
+11 11464     5.462600e+02 -6.354999e+01
+2 11465     -3.225800e+02 4.781300e+02
+5 11465     3.921801e+02 5.090002e+01
+11 11465     1.216900e+02 -1.009700e+02
+2 11466     4.610400e+02 4.782700e+02
+8 11466     4.423500e+02 3.647300e+02
+2 11467     8.753998e+01 4.772200e+02
+3 11467     -6.246002e+01 1.391600e+02
+11 11467     5.495300e+02 -6.384003e+01
+13 11467     5.550500e+02 3.742900e+02
+14 11467     7.542300e+02 -3.179993e+00
+2 11468     1.650000e+01 4.755100e+02
+3 11468     -1.293100e+02 1.368600e+02
+13 11468     4.838500e+02 3.644400e+02
+14 11468     6.681899e+02 -1.342999e+01
+2 11469     4.538800e+02 4.744700e+02
+3 11469     3.070200e+02 1.401900e+02
+6 11469     3.787600e+02 6.970400e+02
+9 11469     2.430100e+02 4.993800e+02
+11 11469     7.079301e+02 -2.336900e+02
+2 11470     -3.055200e+02 4.731100e+02
+5 11470     4.097800e+02 4.752002e+01
+6 11470     -5.163600e+02 7.732100e+02
+14 11470     3.127800e+02 -4.407001e+01
+2 11471     3.699500e+02 4.728400e+02
+6 11471     2.939100e+02 7.442500e+02
+2 11472     3.572200e+02 4.721200e+02
+6 11472     2.789900e+02 7.452100e+02
+8 11472     3.612300e+02 3.644900e+02
+9 11472     1.562200e+02 4.955900e+02
+13 11472     7.406500e+02 2.723300e+02
+2 11473     -2.961900e+02 4.696700e+02
+6 11473     -5.039300e+02 7.712200e+02
+13 11473     1.959399e+02 3.291400e+02
+14 11473     3.221300e+02 -4.659003e+01
+2 11474     -2.961900e+02 4.696700e+02
+6 11474     -5.039300e+02 7.712200e+02
+13 11474     1.959399e+02 3.291400e+02
+14 11474     3.221300e+02 -4.659003e+01
+2 11475     5.844000e+01 4.688800e+02
+3 11475     -8.996002e+01 1.303500e+02
+11 11475     5.159600e+02 -7.462000e+01
+13 11475     5.247800e+02 3.634000e+02
+14 11475     7.178400e+02 -1.569000e+01
+2 11476     -6.163500e+02 4.679000e+02
+3 11476     -7.334800e+02 1.407100e+02
+14 11476     9.989990e+00 -6.838000e+01
+2 11477     -1.266998e+01 4.671800e+02
+3 11477     -1.564100e+02 1.290000e+02
+6 11477     -1.455000e+02 8.333700e+02
+11 11477     4.380900e+02 -8.292999e+01
+13 11477     4.550000e+02 3.545200e+02
+14 11477     6.337500e+02 -2.416998e+01
+2 11478     3.557400e+02 4.663400e+02
+8 11478     3.598400e+02 3.597500e+02
+2 11479     6.144000e+01 4.648900e+02
+6 11479     -5.122998e+01 8.483800e+02
+8 11479     1.320800e+02 3.686300e+02
+14 11479     7.211600e+02 -1.937000e+01
+2 11480     -2.565000e+02 4.640200e+02
+5 11480     4.611700e+02 4.157001e+01
+2 11481     -7.979980e+00 4.628800e+02
+5 11481     7.456600e+02 5.792999e+01
+6 11481     -1.396000e+02 8.286200e+02
+11 11481     4.428700e+02 -8.610999e+01
+2 11482     6.913000e+01 4.630500e+02
+3 11482     -7.973999e+01 1.251400e+02
+14 11482     7.305601e+02 -2.008002e+01
+2 11483     6.913000e+01 4.630500e+02
+3 11483     -7.973999e+01 1.251400e+02
+6 11483     -4.134998e+01 8.471300e+02
+14 11483     7.305601e+02 -2.008002e+01
+2 11484     -6.764100e+02 4.624800e+02
+14 11484     -4.452002e+01 -7.640002e+01
+2 11485     4.613600e+02 4.606500e+02
+3 11485     3.143700e+02 1.279100e+02
+6 11485     3.867800e+02 6.800200e+02
+8 11485     4.423700e+02 3.503600e+02
+2 11486     -2.912600e+02 4.595900e+02
+13 11486     1.994900e+02 3.213800e+02
+14 11486     3.266000e+02 -5.520001e+01
+2 11487     -3.940997e+01 4.586300e+02
+3 11487     -1.817800e+02 1.205600e+02
+14 11487     6.016400e+02 -3.475000e+01
+2 11488     1.425200e+02 4.574500e+02
+6 11488     5.362000e+01 8.578400e+02
+8 11488     2.001300e+02 3.636500e+02
+2 11489     4.136600e+02 4.571900e+02
+6 11489     3.442300e+02 7.188900e+02
+2 11490     4.587900e+02 4.571500e+02
+6 11490     3.834900e+02 6.761900e+02
+2 11491     -6.017800e+02 4.562800e+02
+11 11491     -1.260700e+02 -1.333700e+02
+2 11492     3.022000e+02 4.548500e+02
+6 11492     2.146000e+02 7.318300e+02
+2 11493     -4.312600e+02 4.544900e+02
+5 11493     2.785200e+02 2.367999e+01
+2 11494     -3.409003e+01 4.534500e+02
+5 11494     7.131899e+02 4.587000e+01
+2 11495     -2.565002e+01 4.531200e+02
+6 11495     -1.625800e+02 8.120700e+02
+2 11496     3.293500e+02 4.523800e+02
+6 11496     2.461000e+02 7.250200e+02
+11 11496     6.490000e+02 -1.926200e+02
+2 11497     4.043800e+02 4.523300e+02
+6 11497     3.329200e+02 7.145900e+02
+2 11498     -3.490600e+02 4.519200e+02
+11 11498     9.682001e+01 -1.225000e+02
+2 11499     -3.015002e+01 4.519700e+02
+14 11499     6.120300e+02 -4.067999e+01
+2 11500     -2.638700e+02 4.509800e+02
+5 11500     4.524500e+02 2.879999e+01
+11 11500     1.790200e+02 -1.170200e+02
+14 11500     3.546100e+02 -6.123999e+01
+2 11501     4.864800e+02 4.489100e+02
+6 11501     4.146800e+02 6.623900e+02
+2 11502     1.763900e+02 4.482500e+02
+6 11502     9.759003e+01 8.538200e+02
+2 11503     -4.643200e+02 4.475400e+02
+3 11503     -5.850900e+02 1.164700e+02
+5 11503     2.444500e+02 1.609998e+01
+2 11504     4.598000e+02 4.475600e+02
+6 11504     3.843900e+02 6.646700e+02
+8 11504     4.409800e+02 3.395900e+02
+9 11504     2.476801e+02 4.772200e+02
+2 11505     -1.739200e+02 4.459300e+02
+4 11505     1.070600e+02 -4.655500e+02
+6 11505     -3.487200e+02 7.701200e+02
+8 11505     -6.378998e+01 3.487300e+02
+9 11505     -3.071500e+02 4.585000e+02
+11 11505     2.675699e+02 -1.138900e+02
+2 11506     3.589700e+02 4.456300e+02
+6 11506     2.801700e+02 7.125000e+02
+2 11507     5.892500e+02 4.456600e+02
+6 11507     5.323199e+02 6.437400e+02
+2 11508     -2.592500e+02 4.435500e+02
+3 11508     -3.882800e+02 1.085200e+02
+6 11508     -4.552500e+02 7.467100e+02
+14 11508     3.590699e+02 -6.735999e+01
+2 11509     2.919500e+02 4.437600e+02
+6 11509     2.025000e+02 7.197800e+02
+9 11509     1.008000e+02 4.690100e+02
+2 11510     6.261100e+02 4.433900e+02
+6 11510     5.743700e+02 6.356000e+02
+8 11510     5.791300e+02 3.334800e+02
+9 11510     3.887300e+02 4.771400e+02
+2 11511     -2.549988e+00 4.405900e+02
+3 11511     -1.476500e+02 1.024300e+02
+14 11511     6.427100e+02 -5.015997e+01
+2 11512     -1.885400e+02 4.397800e+02
+9 11512     -3.192200e+02 4.521700e+02
+11 11512     2.532700e+02 -1.206900e+02
+2 11513     -4.373700e+02 4.393800e+02
+5 11513     2.709600e+02 1.017999e+01
+2 11514     -3.499900e+02 4.390800e+02
+5 11514     3.598700e+02 1.337000e+01
+6 11514     -5.683200e+02 7.215500e+02
+2 11515     -3.499900e+02 4.390800e+02
+6 11515     -5.683200e+02 7.215500e+02
+2 11516     -2.642200e+02 4.384100e+02
+14 11516     3.533800e+02 -7.238000e+01
+2 11517     -2.642200e+02 4.384100e+02
+14 11517     3.533800e+02 -7.238000e+01
+2 11518     -2.642200e+02 4.384100e+02
+3 11518     -3.933300e+02 1.035400e+02
+14 11518     3.533800e+02 -7.238000e+01
+2 11519     -2.706200e+02 4.378600e+02
+3 11519     -3.990300e+02 1.027700e+02
+8 11519     -1.440400e+02 3.393800e+02
+2 11520     -6.555000e+02 4.373100e+02
+5 11520     6.050000e+01 -6.799927e-01
+2 11521     -6.555000e+02 4.373100e+02
+5 11521     6.050000e+01 -6.799927e-01
+2 11522     -3.592600e+02 4.375400e+02
+5 11522     3.500900e+02 1.157001e+01
+6 11522     -5.798700e+02 7.175000e+02
+11 11522     8.646997e+01 -1.334400e+02
+2 11523     1.969200e+02 4.365600e+02
+3 11523     3.927002e+01 1.001000e+02
+6 11523     1.246100e+02 8.444100e+02
+2 11524     -3.560200e+02 4.359200e+02
+6 11524     -5.754400e+02 7.160900e+02
+2 11525     -3.560200e+02 4.359200e+02
+6 11525     -5.754400e+02 7.160900e+02
+2 11526     5.515400e+02 4.349500e+02
+6 11526     4.885100e+02 6.368200e+02
+2 11527     6.367800e+02 4.341800e+02
+6 11527     5.859700e+02 6.230800e+02
+2 11528     -4.721600e+02 4.325500e+02
+5 11528     2.353300e+02 2.719971e+00
+14 11528     1.435800e+02 -9.059003e+01
+2 11529     -4.721600e+02 4.325500e+02
+3 11529     -5.928800e+02 1.019400e+02
+14 11529     1.435800e+02 -9.059003e+01
+2 11530     -3.300500e+02 4.323400e+02
+6 11530     -5.424400e+02 7.176200e+02
+8 11530     -1.924500e+02 3.339400e+02
+2 11531     -2.576600e+02 4.324700e+02
+5 11531     4.573500e+02 1.198999e+01
+6 11531     -4.524200e+02 7.338800e+02
+8 11531     -1.330100e+02 3.366800e+02
+11 11531     1.842000e+02 -1.303100e+02
+14 11531     3.598800e+02 -7.757001e+01
+2 11532     4.812000e+01 4.329200e+02
+6 11532     -6.745001e+01 8.044200e+02
+2 11533     -3.725700e+02 4.319800e+02
+3 11533     -4.964200e+02 9.935999e+01
+5 11533     3.360500e+02 5.890015e+00
+11 11533     7.434003e+01 -1.388800e+02
+2 11534     -5.821002e+01 4.320900e+02
+4 11534     9.437000e+01 -5.553000e+02
+5 11534     6.822000e+02 2.334003e+01
+6 11534     -2.020700e+02 7.785500e+02
+8 11534     3.257001e+01 3.395700e+02
+11 11534     3.883800e+02 -1.157800e+02
+2 11535     5.085999e+01 4.318700e+02
+3 11535     -9.692999e+01 9.475000e+01
+5 11535     8.151300e+02 2.990997e+01
+6 11535     -6.423999e+01 8.028000e+02
+11 11535     5.069700e+02 -1.069500e+02
+13 11535     5.140601e+02 3.312400e+02
+14 11535     7.064600e+02 -5.313000e+01
+2 11536     -6.613600e+02 4.297800e+02
+14 11536     -3.335999e+01 -1.027300e+02
+2 11537     9.791998e+01 4.298400e+02
+6 11537     -4.039978e+00 8.116900e+02
+2 11538     -7.890997e+01 4.288400e+02
+13 11538     3.887300e+02 3.174800e+02
+2 11539     -6.187000e+01 4.290400e+02
+3 11539     -2.017700e+02 9.196002e+01
+5 11539     6.783000e+02 2.002002e+01
+6 11539     -2.061500e+02 7.739900e+02
+14 11539     5.752100e+02 -6.523999e+01
+2 11540     -6.187000e+01 4.290400e+02
+6 11540     -2.061500e+02 7.739900e+02
+14 11540     5.752100e+02 -6.523999e+01
+2 11541     6.248101e+02 4.288400e+02
+6 11541     5.719200e+02 6.190400e+02
+8 11541     5.780300e+02 3.215500e+02
+2 11542     -3.534800e+02 4.284800e+02
+5 11542     3.559399e+02 4.090027e+00
+8 11542     -2.113800e+02 3.307900e+02
+2 11543     -6.559998e+01 4.278200e+02
+3 11543     -2.060200e+02 9.082001e+01
+4 11543     9.238000e+01 -5.484200e+02
+5 11543     6.731600e+02 1.842999e+01
+6 11543     -2.114700e+02 7.713200e+02
+14 11543     5.700601e+02 -6.701001e+01
+2 11544     -3.520700e+02 4.255800e+02
+5 11544     3.570900e+02 1.000000e+00
+6 11544     -5.692200e+02 7.043900e+02
+8 11544     -2.108100e+02 3.282600e+02
+2 11545     -3.520700e+02 4.255800e+02
+3 11545     -4.772600e+02 9.245001e+01
+5 11545     3.570900e+02 1.000000e+00
+6 11545     -5.692200e+02 7.043900e+02
+8 11545     -2.108100e+02 3.282600e+02
+2 11546     -6.291998e+01 4.253200e+02
+3 11546     -2.035100e+02 8.871997e+01
+5 11546     6.759399e+02 1.558002e+01
+6 11546     -2.077500e+02 7.681800e+02
+13 11546     4.038101e+02 3.154000e+02
+14 11546     5.729100e+02 -6.921002e+01
+2 11547     3.293800e+02 4.254800e+02
+3 11547     1.846800e+02 9.233002e+01
+6 11547     2.458900e+02 6.926000e+02
+8 11547     3.392900e+02 3.272700e+02
+9 11547     1.342000e+02 4.548400e+02
+13 11547     7.110200e+02 2.370100e+02
+2 11548     3.147300e+02 4.238200e+02
+3 11548     1.699100e+02 9.023999e+01
+6 11548     2.280700e+02 6.921100e+02
+9 11548     1.208200e+02 4.521700e+02
+2 11549     -5.005500e+02 4.233700e+02
+5 11549     2.065900e+02 -6.919983e+00
+2 11550     -3.426300e+02 4.223500e+02
+3 11550     -4.675800e+02 9.160999e+01
+5 11550     3.660900e+02 -1.950012e+00
+11 11550     1.023900e+02 -1.426200e+02
+13 11550     1.544900e+02 2.906600e+02
+2 11551     -2.941100e+02 4.211300e+02
+14 11551     3.212100e+02 -9.003998e+01
+2 11552     -4.672998e+01 4.208600e+02
+14 11552     5.912300e+02 -7.172998e+01
+2 11553     -4.672998e+01 4.208600e+02
+14 11553     5.912300e+02 -7.172998e+01
+2 11554     -6.312000e+01 4.199900e+02
+4 11554     8.896002e+01 -5.501300e+02
+8 11554     2.846997e+01 3.300100e+02
+9 11554     -2.109100e+02 4.383600e+02
+11 11554     3.831500e+02 -1.245300e+02
+2 11555     4.522200e+02 4.196800e+02
+3 11555     3.068800e+02 8.947998e+01
+6 11555     3.740500e+02 6.333900e+02
+9 11555     2.415500e+02 4.527500e+02
+2 11556     -3.840400e+02 4.184500e+02
+14 11556     2.293900e+02 -9.819000e+01
+2 11557     -5.789978e+00 4.153200e+02
+3 11557     -1.501200e+02 7.901001e+01
+13 11557     4.571801e+02 3.121300e+02
+2 11558     -6.370001e+01 4.142500e+02
+3 11558     -2.045600e+02 7.815997e+01
+5 11558     6.739900e+02 5.409973e+00
+6 11558     -2.077900e+02 7.552100e+02
+2 11559     2.657500e+02 4.121200e+02
+6 11559     1.714100e+02 6.858000e+02
+2 11560     3.945200e+02 4.120400e+02
+3 11560     2.466700e+02 8.033002e+01
+6 11560     3.188100e+02 6.660500e+02
+9 11560     1.893900e+02 4.440600e+02
+2 11561     -5.290800e+02 4.113200e+02
+5 11561     1.775800e+02 -1.881000e+01
+8 11561     -3.564200e+02 3.129200e+02
+14 11561     8.746002e+01 -1.121800e+02
+2 11562     5.305400e+02 4.115900e+02
+8 11562     4.992200e+02 3.088200e+02
+9 11562     3.088800e+02 4.480900e+02
+2 11563     3.242600e+02 4.089300e+02
+6 11563     2.383400e+02 6.722200e+02
+2 11564     -5.627200e+02 4.080500e+02
+5 11564     1.451000e+02 -2.253003e+01
+14 11564     5.566998e+01 -1.165200e+02
+2 11565     -6.702002e+01 4.076100e+02
+6 11565     -2.135500e+02 7.456000e+02
+14 11565     5.663199e+02 -8.601001e+01
+2 11566     -3.535200e+02 4.067500e+02
+3 11566     -4.788000e+02 7.415002e+01
+5 11566     3.535100e+02 -1.632001e+01
+6 11566     -5.687900e+02 6.807000e+02
+11 11566     9.153998e+01 -1.569000e+02
+2 11567     4.024000e+02 4.063600e+02
+6 11567     3.291900e+02 6.582600e+02
+8 11567     3.975600e+02 3.089800e+02
+9 11567     1.976400e+02 4.383200e+02
+13 11567     7.723300e+02 2.076100e+02
+2 11568     4.524800e+02 4.053700e+02
+6 11568     3.736500e+02 6.158600e+02
+8 11568     4.341500e+02 3.039700e+02
+9 11568     2.418600e+02 4.398900e+02
+11 11568     7.058800e+02 -2.981500e+02
+2 11569     5.590000e+02 4.048400e+02
+6 11569     4.951300e+02 6.003500e+02
+7 11569     5.141200e+02 5.758500e+02
+8 11569     5.222900e+02 3.023100e+02
+12 11569     5.757100e+02 6.110400e+02
+2 11570     5.686500e+02 4.043100e+02
+6 11570     5.064500e+02 5.985500e+02
+2 11571     5.686500e+02 4.043100e+02
+6 11571     5.064500e+02 5.985500e+02
+2 11572     -5.798800e+02 4.036100e+02
+3 11572     -6.998300e+02 7.615997e+01
+5 11572     1.279500e+02 -2.684998e+01
+12 11572     -6.548700e+02 6.175400e+02
+2 11573     -5.798800e+02 4.036100e+02
+3 11573     -6.998300e+02 7.615997e+01
+5 11573     1.279500e+02 -2.684998e+01
+12 11573     -6.548700e+02 6.175400e+02
+2 11574     -5.752500e+02 4.034200e+02
+8 11574     -3.941900e+02 3.056200e+02
+2 11575     -3.671100e+02 4.009300e+02
+6 11575     -5.849200e+02 6.715800e+02
+2 11576     -1.035700e+02 4.011100e+02
+5 11576     6.257500e+02 -1.009998e+01
+2 11577     5.239600e+02 3.993900e+02
+8 11577     4.936899e+02 2.988800e+02
+9 11577     3.045699e+02 4.374000e+02
+12 11577     5.375699e+02 6.080000e+02
+2 11578     4.972300e+02 3.977700e+02
+6 11578     4.242100e+02 6.012400e+02
+12 11578     5.072000e+02 6.088000e+02
+2 11579     6.388600e+02 3.960100e+02
+6 11579     5.856300e+02 5.791800e+02
+2 11580     -1.570200e+02 3.956800e+02
+5 11580     5.642300e+02 -1.796997e+01
+9 11580     -2.901400e+02 4.143600e+02
+2 11581     -2.595600e+02 3.949700e+02
+14 11581     3.558101e+02 -1.116200e+02
+2 11582     3.840027e+00 3.947300e+02
+9 11582     -1.530800e+02 4.173600e+02
+13 11582     4.654900e+02 2.960000e+02
+2 11583     -6.517400e+02 3.935900e+02
+5 11583     6.035999e+01 -3.745001e+01
+2 11584     -6.638600e+02 3.928600e+02
+5 11584     4.889001e+01 -3.890002e+01
+12 11584     -7.507100e+02 5.929300e+02
+2 11585     -5.756900e+02 3.924800e+02
+12 11585     -6.488000e+02 6.055700e+02
+2 11586     5.469301e+02 3.922200e+02
+3 11586     3.976400e+02 6.577002e+01
+6 11586     4.806801e+02 5.873800e+02
+9 11586     3.232200e+02 4.313900e+02
+12 11586     5.618700e+02 5.972000e+02
+2 11587     -5.995500e+02 3.915200e+02
+11 11587     -1.263700e+02 -1.778700e+02
+2 11588     -5.832600e+02 3.911500e+02
+8 11588     -4.007800e+02 2.958200e+02
+2 11589     -5.832600e+02 3.911500e+02
+8 11589     -4.007800e+02 2.958200e+02
+2 11590     2.620900e+02 3.909400e+02
+9 11590     7.594000e+01 4.224500e+02
+14 11590     8.826400e+02 -1.912300e+02
+2 11591     -2.506400e+02 3.903700e+02
+3 11591     -3.816200e+02 5.650000e+01
+5 11591     4.607000e+02 -2.691998e+01
+14 11591     3.645300e+02 -1.153700e+02
+2 11592     -3.729980e+00 3.904000e+02
+6 11592     -1.325200e+02 7.392700e+02
+2 11593     -3.729980e+00 3.904000e+02
+6 11593     -1.325200e+02 7.392700e+02
+2 11594     1.004500e+02 3.898200e+02
+6 11594     -4.500122e-01 7.620100e+02
+2 11595     -2.509400e+02 3.863100e+02
+5 11595     4.599301e+02 -3.063000e+01
+6 11595     -4.402800e+02 6.792100e+02
+8 11595     -1.277200e+02 2.997400e+02
+14 11595     3.641600e+02 -1.190200e+02
+2 11596     5.244500e+02 3.851000e+02
+3 11596     3.764100e+02 5.869000e+01
+7 11596     4.797100e+02 5.631000e+02
+8 11596     4.935000e+02 2.865000e+02
+2 11597     -4.042900e+02 3.842600e+02
+3 11597     -5.283500e+02 5.301001e+01
+14 11597     2.069100e+02 -1.294400e+02
+2 11598     -4.225700e+02 3.841600e+02
+5 11598     2.810200e+02 -3.923999e+01
+12 11598     -4.684200e+02 6.203500e+02
+14 11598     1.892300e+02 -1.304500e+02
+2 11599     -5.493700e+02 3.835600e+02
+5 11599     1.555800e+02 -4.342999e+01
+11 11599     -8.502002e+01 -1.819900e+02
+12 11599     -6.169700e+02 6.006000e+02
+2 11600     -5.364300e+02 3.837000e+02
+12 11600     -6.018900e+02 6.027800e+02
+2 11601     -3.267000e+02 3.828700e+02
+6 11601     -5.335500e+02 6.584900e+02
+2 11602     -7.365000e+02 3.807700e+02
+5 11602     -1.753998e+01 -5.040997e+01
+2 11603     5.076801e+02 3.809400e+02
+7 11603     4.640601e+02 5.624400e+02
+2 11604     -3.485900e+02 3.807000e+02
+11 11604     9.490002e+01 -1.754700e+02
+2 11605     -6.471002e+01 3.806600e+02
+6 11605     -2.079200e+02 7.134100e+02
+9 11605     -2.105300e+02 4.028000e+02
+14 11605     5.681700e+02 -1.118500e+02
+2 11606     -3.364400e+02 3.802100e+02
+3 11606     -4.632000e+02 4.741998e+01
+6 11606     -5.452300e+02 6.525100e+02
+8 11606     -1.980200e+02 2.924400e+02
+14 11606     2.749301e+02 -1.299600e+02
+2 11607     2.876100e+02 3.786700e+02
+6 11607     1.956600e+02 6.424500e+02
+2 11608     -6.781600e+02 3.768300e+02
+14 11608     -5.194000e+01 -1.478600e+02
+2 11609     -7.898300e+02 3.747700e+02
+8 11609     -5.684400e+02 2.782100e+02
+11 11609     -2.778100e+02 -1.951300e+02
+2 11610     -6.044700e+02 3.749700e+02
+5 11610     1.023400e+02 -5.206000e+01
+8 11610     -4.181400e+02 2.826300e+02
+12 11610     -6.800300e+02 5.835400e+02
+2 11611     1.026300e+02 3.751400e+02
+3 11611     -4.815002e+01 4.002002e+01
+9 11611     -6.846002e+01 4.033400e+02
+11 11611     5.654800e+02 -1.490700e+02
+14 11611     7.662400e+02 -1.046200e+02
+2 11612     1.283100e+02 3.746400e+02
+14 11612     7.983500e+02 -1.028400e+02
+2 11613     -6.544300e+02 3.738700e+02
+5 11613     5.589001e+01 -5.494000e+01
+2 11614     -3.215000e+02 3.734700e+02
+5 11614     3.837800e+02 -4.556000e+01
+6 11614     -5.261500e+02 6.484900e+02
+2 11615     -2.406900e+02 3.732700e+02
+5 11615     4.698300e+02 -4.259998e+01
+6 11615     -4.263000e+02 6.658300e+02
+14 11615     3.739700e+02 -1.302700e+02
+2 11616     -2.263000e+02 3.735200e+02
+8 11616     -1.068900e+02 2.894700e+02
+9 11616     -3.487500e+02 3.925200e+02
+2 11617     4.934200e+02 3.735500e+02
+6 11617     4.188700e+02 5.734200e+02
+8 11617     4.679100e+02 2.773800e+02
+2 11618     1.002800e+02 3.730400e+02
+9 11618     -7.046997e+01 4.008000e+02
+11 11618     5.626600e+02 -1.515300e+02
+13 11618     5.582400e+02 2.871800e+02
+14 11618     7.629900e+02 -1.069700e+02
+2 11619     -3.789400e+02 3.724800e+02
+3 11619     -5.037500e+02 4.084998e+01
+5 11619     3.238600e+02 -4.890002e+01
+12 11619     -4.163200e+02 6.138900e+02
+14 11619     2.316600e+02 -1.389300e+02
+2 11620     1.049600e+02 3.720200e+02
+3 11620     -4.628998e+01 3.637000e+01
+8 11620     1.677600e+02 2.941600e+02
+9 11620     -6.690002e+01 4.003000e+02
+11 11620     5.679200e+02 -1.521900e+02
+13 11620     5.630800e+02 2.861900e+02
+14 11620     7.688000e+02 -1.081100e+02
+2 11621     5.184301e+02 3.709000e+02
+3 11621     3.714399e+02 4.521997e+01
+8 11621     4.883300e+02 2.749700e+02
+9 11621     2.991899e+02 4.127400e+02
+2 11622     -2.465200e+02 3.703500e+02
+5 11622     4.633300e+02 -4.603003e+01
+6 11622     -4.330700e+02 6.606700e+02
+14 11622     3.679100e+02 -1.336100e+02
+2 11623     -3.954900e+02 3.702500e+02
+12 11623     -4.353900e+02 6.092500e+02
+2 11624     -3.854000e+02 3.697900e+02
+8 11624     -2.378700e+02 2.825300e+02
+11 11624     6.094000e+01 -1.859300e+02
+12 11624     -4.238500e+02 6.094200e+02
+2 11625     -3.935100e+02 3.694100e+02
+5 11625     3.093000e+02 -5.185999e+01
+2 11626     -7.775600e+02 3.679900e+02
+11 11626     -2.686400e+02 -1.991900e+02
+2 11627     -7.465400e+02 3.670000e+02
+8 11627     -5.335600e+02 2.732100e+02
+2 11628     -1.265400e+02 3.660700e+02
+9 11628     -2.626800e+02 3.889900e+02
+14 11628     4.972400e+02 -1.301800e+02
+2 11629     8.695001e+01 3.659500e+02
+13 11629     5.431700e+02 2.799900e+02
+2 11630     -5.799988e+00 3.637300e+02
+3 11630     -1.503800e+02 2.835999e+01
+11 11630     4.424100e+02 -1.666200e+02
+13 11630     4.529500e+02 2.699000e+02
+14 11630     6.342300e+02 -1.237900e+02
+2 11631     -2.859200e+02 3.641000e+02
+5 11631     4.201600e+02 -5.277002e+01
+2 11632     -2.265300e+02 3.641300e+02
+6 11632     -4.086200e+02 6.576100e+02
+8 11632     -1.070300e+02 2.820200e+02
+9 11632     -3.485700e+02 3.841200e+02
+2 11633     9.915997e+01 3.642500e+02
+9 11633     -7.159998e+01 3.935800e+02
+11 11633     5.605699e+02 -1.592000e+02
+2 11634     6.348400e+02 3.638900e+02
+3 11634     4.815200e+02 4.178003e+01
+12 11634     6.576100e+02 5.556800e+02
+2 11635     -3.098100e+02 3.635200e+02
+5 11635     3.950800e+02 -5.431000e+01
+12 11635     -3.342300e+02 6.148600e+02
+2 11636     -2.346000e+02 3.633700e+02
+6 11636     -4.177700e+02 6.547100e+02
+11 11636     2.050200e+02 -1.826700e+02
+2 11637     -2.346000e+02 3.633700e+02
+6 11637     -4.177700e+02 6.547100e+02
+2 11638     1.457700e+02 3.634000e+02
+8 11638     2.030900e+02 2.886100e+02
+9 11638     -3.191998e+01 3.941500e+02
+14 11638     8.202200e+02 -1.126300e+02
+2 11639     -3.225600e+02 3.630500e+02
+6 11639     -5.265800e+02 6.355600e+02
+12 11639     -3.488500e+02 6.125400e+02
+2 11640     -3.320100e+02 3.623100e+02
+12 11640     -3.600700e+02 6.103500e+02
+2 11641     1.013900e+02 3.621700e+02
+6 11641     1.289978e+00 7.283600e+02
+9 11641     -6.946002e+01 3.915600e+02
+11 11641     5.634500e+02 -1.609200e+02
+14 11641     7.638900e+02 -1.180500e+02
+2 11642     -2.460400e+02 3.608700e+02
+3 11642     -3.769000e+02 2.740002e+01
+12 11642     -2.582200e+02 6.218700e+02
+2 11643     -2.460400e+02 3.608700e+02
+3 11643     -3.769000e+02 2.740002e+01
+5 11643     4.632200e+02 -5.453003e+01
+12 11643     -2.582200e+02 6.218700e+02
+2 11644     5.001600e+02 3.609700e+02
+6 11644     4.250300e+02 5.582900e+02
+9 11644     2.833500e+02 4.037600e+02
+12 11644     5.083600e+02 5.659300e+02
+2 11645     -3.927700e+02 3.600800e+02
+5 11645     3.087500e+02 -5.996002e+01
+12 11645     -4.315400e+02 5.990400e+02
+2 11646     -1.236500e+02 3.601600e+02
+4 11646     5.765997e+01 -4.920400e+02
+5 11646     5.989200e+02 -5.006000e+01
+6 11646     -2.804600e+02 6.767100e+02
+11 11646     3.179399e+02 -1.765400e+02
+13 11646     3.431100e+02 2.580500e+02
+2 11647     6.444000e+01 3.575000e+02
+5 11647     8.232000e+02 -4.519000e+01
+6 11647     -4.628003e+01 7.137600e+02
+8 11647     1.342300e+02 2.818400e+02
+9 11647     -1.004800e+02 3.870600e+02
+2 11648     2.943300e+02 3.568800e+02
+9 11648     1.048700e+02 3.935500e+02
+13 11648     6.736600e+02 1.853800e+02
+2 11649     -3.302100e+02 3.558600e+02
+5 11649     3.731801e+02 -6.231000e+01
+6 11649     -5.349900e+02 6.249900e+02
+2 11650     -2.214300e+02 3.540300e+02
+6 11650     -4.009900e+02 6.468400e+02
+2 11651     -3.319800e+02 3.528700e+02
+6 11651     -5.369400e+02 6.217200e+02
+2 11652     -2.444500e+02 3.513200e+02
+6 11652     -4.290500e+02 6.380400e+02
+12 11652     -2.555300e+02 6.117400e+02
+2 11653     -5.305900e+02 3.504600e+02
+12 11653     -5.915100e+02 5.680800e+02
+2 11654     7.657001e+01 3.501000e+02
+6 11654     -2.994000e+01 7.084900e+02
+8 11654     1.440100e+02 2.764700e+02
+14 11654     7.325800e+02 -1.315900e+02
+2 11655     5.784399e+02 3.500900e+02
+7 11655     5.247400e+02 5.163100e+02
+2 11656     2.637200e+02 3.488200e+02
+6 11656     1.681400e+02 6.114100e+02
+9 11656     7.894000e+01 3.853900e+02
+12 11656     2.796000e+02 5.971600e+02
+2 11657     -3.276100e+02 3.466700e+02
+6 11657     -5.305900e+02 6.147800e+02
+2 11658     1.452800e+02 3.465900e+02
+6 11658     5.652002e+01 7.192500e+02
+2 11659     3.862000e+02 3.465400e+02
+7 11659     3.829100e+02 5.789200e+02
+9 11659     1.844900e+02 3.881900e+02
+2 11660     3.944700e+02 3.463600e+02
+3 11660     2.490200e+02 1.867999e+01
+6 11660     3.173700e+02 5.898400e+02
+8 11660     3.901300e+02 2.605900e+02
+12 11660     4.163199e+02 5.820100e+02
+13 11660     7.579200e+02 1.580200e+02
+2 11661     2.995500e+02 3.456900e+02
+8 11661     3.139200e+02 2.614100e+02
+9 11661     1.096700e+02 3.845200e+02
+2 11662     6.491100e+02 3.452700e+02
+3 11662     4.963900e+02 2.481000e+01
+8 11662     5.976100e+02 2.512900e+02
+2 11663     6.491100e+02 3.452700e+02
+3 11663     4.963900e+02 2.481000e+01
+10 11663     7.997600e+02 5.726800e+02
+2 11664     -3.316000e+02 3.445900e+02
+6 11664     -5.357800e+02 6.111900e+02
+2 11665     -3.316000e+02 3.445900e+02
+6 11665     -5.357800e+02 6.111900e+02
+2 11666     -2.436100e+02 3.442700e+02
+5 11666     4.637700e+02 -7.028003e+01
+6 11666     -4.273100e+02 6.298800e+02
+2 11667     -4.701001e+01 3.433400e+02
+5 11667     6.854900e+02 -6.394000e+01
+6 11667     -1.856300e+02 6.718100e+02
+8 11667     4.160999e+01 2.682900e+02
+9 11667     -1.951000e+02 3.705900e+02
+2 11668     6.453101e+02 3.429200e+02
+8 11668     5.933500e+02 2.488600e+02
+9 11668     4.063900e+02 3.920600e+02
+2 11669     6.453101e+02 3.429200e+02
+10 11669     7.944700e+02 5.707700e+02
+2 11670     -6.275000e+01 3.427400e+02
+6 11670     -2.039600e+02 6.682100e+02
+2 11671     6.564600e+02 3.414600e+02
+3 11671     5.028300e+02 2.147998e+01
+10 11671     8.076000e+02 5.655300e+02
+2 11672     -6.890997e+01 3.411700e+02
+3 11672     -2.096800e+02 7.150024e+00
+4 11672     4.417999e+01 -5.335000e+02
+8 11672     2.394000e+01 2.671600e+02
+9 11672     -2.127800e+02 3.690000e+02
+11 11672     3.753600e+02 -1.892600e+02
+2 11673     -1.187900e+02 3.403200e+02
+11 11673     3.218700e+02 -1.946200e+02
+12 11673     -1.054200e+02 6.191100e+02
+2 11674     4.819500e+02 3.374800e+02
+7 11674     4.360000e+02 5.241500e+02
+2 11675     6.831500e+02 3.376400e+02
+3 11675     5.283300e+02 1.858002e+01
+7 11675     6.200500e+02 4.802900e+02
+2 11676     -9.979980e+00 3.368800e+02
+14 11676     6.283000e+02 -1.504500e+02
+2 11677     3.804999e+01 3.360200e+02
+6 11677     -7.795001e+01 6.828800e+02
+2 11678     1.084000e+02 3.359600e+02
+6 11678     1.033002e+01 6.979600e+02
+8 11678     1.709700e+02 2.655100e+02
+9 11678     -6.303003e+01 3.693000e+02
+14 11678     7.705200e+02 -1.432700e+02
+2 11679     -5.754800e+02 3.349300e+02
+12 11679     -6.418200e+02 5.442200e+02
+2 11680     4.559800e+02 3.336300e+02
+6 11680     3.745700e+02 5.339300e+02
+9 11680     2.467800e+02 3.795900e+02
+11 11680     7.093500e+02 -3.661000e+02
+2 11681     -7.440002e+00 3.324700e+02
+3 11681     -1.514000e+02 -2.609985e+00
+6 11681     -1.347400e+02 6.678200e+02
+14 11681     6.313500e+02 -1.546500e+02
+2 11682     -6.566600e+02 3.312200e+02
+8 11682     -4.598400e+02 2.465500e+02
+2 11683     5.148101e+02 3.303900e+02
+3 11683     3.696100e+02 7.140015e+00
+7 11683     4.650200e+02 5.105200e+02
+2 11684     -3.167700e+02 3.296400e+02
+5 11684     3.844600e+02 -8.570001e+01
+6 11684     -5.161400e+02 5.970400e+02
+12 11684     -3.396900e+02 5.778600e+02
+2 11685     -2.554999e+01 3.268200e+02
+6 11685     -1.575300e+02 6.573900e+02
+12 11685     6.750000e+00 6.172500e+02
+2 11686     4.902600e+02 3.258800e+02
+6 11686     4.126800e+02 5.196400e+02
+9 11686     2.760100e+02 3.734100e+02
+2 11687     4.902600e+02 3.258800e+02
+3 11687     3.459000e+02 2.460022e+00
+6 11687     4.126800e+02 5.196400e+02
+8 11687     4.641801e+02 2.382500e+02
+9 11687     2.760100e+02 3.734100e+02
+12 11687     4.965500e+02 5.273600e+02
+2 11688     2.721200e+02 3.247300e+02
+3 11688     1.303400e+02 -4.760010e+00
+12 11688     2.876600e+02 5.696500e+02
+2 11689     -7.001900e+02 3.239900e+02
+8 11689     -4.950500e+02 2.400800e+02
+12 11689     -7.825900e+02 5.155700e+02
+2 11690     -1.564700e+02 3.232200e+02
+13 11690     3.110800e+02 2.266100e+02
+2 11691     2.987400e+02 3.237100e+02
+7 11691     3.048000e+02 5.739700e+02
+2 11692     4.685800e+02 3.231000e+02
+7 11692     4.229900e+02 5.139600e+02
+2 11693     -8.038000e+01 3.221900e+02
+6 11693     -2.250700e+02 6.400100e+02
+2 11694     5.329200e+02 3.220200e+02
+6 11694     4.603101e+02 5.100000e+02
+8 11694     4.992700e+02 2.351600e+02
+2 11695     -5.854900e+02 3.217100e+02
+12 11695     -6.509200e+02 5.295400e+02
+2 11696     -9.041998e+01 3.205400e+02
+8 11696     5.580017e+00 2.501500e+02
+9 11696     -2.305300e+02 3.495300e+02
+2 11697     6.286000e+02 3.198500e+02
+3 11697     4.780300e+02 7.000122e-01
+6 11697     5.687400e+02 4.939200e+02
+8 11697     5.795500e+02 2.308500e+02
+2 11698     -5.799200e+02 3.191700e+02
+12 11698     -6.443500e+02 5.284400e+02
+2 11699     4.870400e+02 3.173600e+02
+6 11699     4.083800e+02 5.111700e+02
+8 11699     4.612600e+02 2.320400e+02
+9 11699     2.732500e+02 3.664000e+02
+12 11699     4.924800e+02 5.186200e+02
+2 11700     -3.997900e+02 3.174400e+02
+5 11700     2.975601e+02 -9.900000e+01
+2 11701     4.015500e+02 3.172700e+02
+6 11701     3.234800e+02 5.554700e+02
+8 11701     3.954500e+02 2.368300e+02
+9 11701     1.976400e+02 3.630500e+02
+2 11702     -4.697700e+02 3.167200e+02
+5 11702     2.267400e+02 -1.010800e+02
+2 11703     -2.812100e+02 3.149300e+02
+5 11703     4.204301e+02 -9.840997e+01
+6 11703     -4.716200e+02 5.868000e+02
+11 11703     1.575100e+02 -2.227200e+02
+12 11703     -2.968700e+02 5.680300e+02
+14 11703     3.277100e+02 -1.854400e+02
+2 11704     3.078800e+02 3.145300e+02
+3 11704     1.654800e+02 -1.364001e+01
+7 11704     3.112100e+02 5.630000e+02
+13 11704     6.798900e+02 1.478800e+02
+2 11705     4.793199e+02 3.140600e+02
+6 11705     3.991500e+02 5.066500e+02
+7 11705     4.306801e+02 5.012600e+02
+9 11705     2.665300e+02 3.621000e+02
+10 11705     6.071899e+02 5.959600e+02
+12 11705     4.830000e+02 5.131200e+02
+2 11706     4.021100e+02 3.133900e+02
+6 11706     3.245700e+02 5.513100e+02
+8 11706     3.965900e+02 2.338300e+02
+9 11706     1.986899e+02 3.598700e+02
+2 11707     -9.701001e+01 3.131200e+02
+12 11707     -7.832001e+01 5.917900e+02
+2 11708     -3.250000e+01 3.131300e+02
+3 11708     -1.756200e+02 -2.082001e+01
+6 11708     -1.656000e+02 6.394200e+02
+2 11709     4.322500e+02 3.128100e+02
+3 11709     2.906000e+02 -1.191998e+01
+6 11709     3.467700e+02 5.129800e+02
+7 11709     3.893101e+02 5.101800e+02
+9 11709     2.267400e+02 3.603700e+02
+10 11709     5.588000e+02 6.112700e+02
+11 11709     6.886000e+02 -3.793800e+02
+12 11709     4.340800e+02 5.185200e+02
+2 11710     5.269000e+02 3.111000e+02
+8 11710     4.937300e+02 2.260900e+02
+10 11710     6.567900e+02 5.754400e+02
+12 11710     5.354000e+02 5.070500e+02
+2 11711     -2.616300e+02 3.096000e+02
+6 11711     -4.467100e+02 5.846900e+02
+2 11712     3.883199e+02 3.094500e+02
+3 11712     2.441600e+02 -1.667999e+01
+6 11712     3.087300e+02 5.473800e+02
+9 11712     1.867100e+02 3.560600e+02
+2 11713     4.310601e+02 3.091300e+02
+8 11713     4.156900e+02 2.256800e+02
+2 11714     4.013900e+02 3.087400e+02
+3 11714     2.566700e+02 -1.684003e+01
+6 11714     3.241600e+02 5.457600e+02
+9 11714     1.980800e+02 3.557700e+02
+2 11715     3.811500e+02 3.071300e+02
+3 11715     2.370000e+02 -1.890997e+01
+7 11715     3.741200e+02 5.411800e+02
+9 11715     1.804000e+02 3.535000e+02
+13 11715     7.416100e+02 1.274300e+02
+2 11716     -1.094300e+02 3.066800e+02
+6 11716     -2.601200e+02 6.153300e+02
+2 11717     -1.094300e+02 3.066800e+02
+6 11717     -2.601200e+02 6.153300e+02
+9 11717     -2.464100e+02 3.372400e+02
+2 11718     5.249600e+02 3.066400e+02
+8 11718     4.919100e+02 2.217100e+02
+2 11719     5.249600e+02 3.066400e+02
+6 11719     4.508199e+02 4.929200e+02
+7 11719     4.709301e+02 4.846500e+02
+8 11719     4.919100e+02 2.217100e+02
+9 11719     3.055300e+02 3.580400e+02
+10 11719     6.531899e+02 5.710500e+02
+12 11719     5.332600e+02 5.018700e+02
+2 11720     7.404999e+01 3.059400e+02
+14 11720     7.264500e+02 -1.756100e+02
+2 11721     -4.617000e+02 3.049300e+02
+12 11721     -5.060400e+02 5.300400e+02
+2 11722     5.392300e+02 3.041100e+02
+6 11722     4.662000e+02 4.883900e+02
+7 11722     4.832900e+02 4.790700e+02
+8 11722     5.040900e+02 2.195100e+02
+9 11722     3.174700e+02 3.565500e+02
+2 11723     2.886899e+02 3.024300e+02
+12 11723     3.043400e+02 5.432400e+02
+2 11724     4.247700e+02 3.022600e+02
+6 11724     3.381000e+02 5.026700e+02
+10 11724     5.489800e+02 6.013500e+02
+12 11724     4.256400e+02 5.083600e+02
+2 11725     3.928101e+02 3.019200e+02
+6 11725     3.139700e+02 5.385500e+02
+9 11725     1.913800e+02 3.495900e+02
+12 11725     4.135601e+02 5.326200e+02
+13 11725     7.515800e+02 1.208600e+02
+2 11726     5.698101e+02 3.014000e+02
+6 11726     5.011400e+02 4.810900e+02
+2 11727     -3.946700e+02 3.009300e+02
+5 11727     3.017600e+02 -1.136300e+02
+2 11728     3.259100e+02 3.010000e+02
+7 11728     3.247300e+02 5.455100e+02
+13 11728     6.930900e+02 1.323500e+02
+2 11729     -1.535999e+01 3.006500e+02
+13 11729     4.389399e+02 2.181300e+02
+14 11729     6.188000e+02 -1.864100e+02
+2 11730     -5.875000e+02 2.989100e+02
+5 11730     1.111600e+02 -1.178700e+02
+7 11730     -5.357900e+02 5.701900e+02
+8 11730     -4.031400e+02 2.227800e+02
+12 11730     -6.505700e+02 5.053300e+02
+2 11731     5.922300e+02 2.984200e+02
+10 11731     7.236600e+02 5.363000e+02
+12 11731     6.062700e+02 4.857100e+02
+2 11732     -4.335200e+02 2.976100e+02
+5 11732     2.616899e+02 -1.170200e+02
+11 11732     1.521002e+01 -2.399700e+02
+12 11732     -4.723200e+02 5.275100e+02
+2 11733     -1.383200e+02 2.976300e+02
+14 11733     4.792700e+02 -1.955100e+02
+2 11734     6.013500e+02 2.972300e+02
+10 11734     7.336400e+02 5.320000e+02
+2 11735     4.262900e+02 2.968900e+02
+10 11735     5.496899e+02 5.949300e+02
+2 11736     -2.568600e+02 2.958500e+02
+13 11736     2.211801e+02 1.989400e+02
+2 11737     9.115997e+01 2.960700e+02
+12 11737     1.488900e+02 5.995400e+02
+2 11738     3.875900e+02 2.949800e+02
+12 11738     4.072600e+02 5.246600e+02
+2 11739     2.626100e+02 2.936100e+02
+12 11739     2.775900e+02 5.361100e+02
+14 11739     8.766400e+02 -2.909300e+02
+2 11740     -9.717999e+01 2.932400e+02
+14 11740     5.252400e+02 -1.964600e+02
+2 11741     5.375800e+02 2.927900e+02
+6 11741     4.642500e+02 4.759900e+02
+7 11741     4.808101e+02 4.686000e+02
+9 11741     3.167900e+02 3.468600e+02
+2 11742     -3.188900e+02 2.922200e+02
+5 11742     3.785300e+02 -1.200100e+02
+6 11742     -5.157900e+02 5.531800e+02
+11 11742     1.213900e+02 -2.399600e+02
+12 11742     -3.398400e+02 5.383900e+02
+2 11743     3.786801e+02 2.922000e+02
+3 11743     2.352100e+02 -3.316998e+01
+7 11743     3.700200e+02 5.260800e+02
+2 11744     -5.869700e+02 2.909500e+02
+8 11744     -4.024300e+02 2.166000e+02
+12 11744     -6.481300e+02 4.979600e+02
+2 11745     -5.869700e+02 2.909500e+02
+12 11745     -6.481300e+02 4.979600e+02
+2 11746     3.847100e+02 2.907300e+02
+7 11746     3.750400e+02 5.237200e+02
+12 11746     4.038300e+02 5.201800e+02
+2 11747     2.140997e+01 2.884300e+02
+13 11747     4.735400e+02 2.111300e+02
+14 11747     6.618400e+02 -1.957300e+02
+2 11748     5.364800e+02 2.885100e+02
+6 11748     4.629200e+02 4.710700e+02
+10 11748     6.613800e+02 5.449800e+02
+12 11748     5.449100e+02 4.804100e+02
+2 11749     5.364800e+02 2.885100e+02
+10 11749     6.613800e+02 5.449800e+02
+2 11750     -5.933500e+02 2.875400e+02
+7 11750     -5.406400e+02 5.592300e+02
+11 11750     -1.249200e+02 -2.504000e+02
+2 11751     -5.789200e+02 2.876400e+02
+7 11751     -5.259800e+02 5.607600e+02
+8 11751     -3.961600e+02 2.143700e+02
+2 11752     -1.262100e+02 2.869500e+02
+14 11752     4.927100e+02 -2.044200e+02
+2 11753     -3.252300e+02 2.866100e+02
+3 11753     -4.546300e+02 -4.490002e+01
+6 11753     -5.226500e+02 5.446600e+02
+2 11754     -3.252300e+02 2.866100e+02
+6 11754     -5.226500e+02 5.446600e+02
+2 11755     -3.850400e+02 2.853800e+02
+5 11755     3.098700e+02 -1.269600e+02
+2 11756     2.638199e+02 2.848400e+02
+6 11756     1.669400e+02 5.367300e+02
+12 11756     2.785000e+02 5.264900e+02
+14 11756     8.772400e+02 -3.000900e+02
+2 11757     3.165699e+02 2.850500e+02
+7 11757     3.167100e+02 5.326300e+02
+9 11757     1.253600e+02 3.323700e+02
+12 11757     3.324900e+02 5.212400e+02
+2 11758     3.165699e+02 2.850500e+02
+6 11758     2.268100e+02 5.298100e+02
+7 11758     3.167100e+02 5.326300e+02
+9 11758     1.253600e+02 3.323700e+02
+11 11758     6.346500e+02 -3.412900e+02
+12 11758     3.324900e+02 5.212400e+02
+2 11759     3.327400e+02 2.834400e+02
+3 11759     1.902000e+02 -4.264001e+01
+6 11759     2.442300e+02 5.260900e+02
+8 11759     3.398000e+02 2.105000e+02
+9 11759     1.395800e+02 3.320400e+02
+11 11759     6.481600e+02 -3.472900e+02
+12 11759     3.491600e+02 5.186700e+02
+2 11760     3.788400e+02 2.836900e+02
+3 11760     2.357000e+02 -4.148999e+01
+6 11760     2.972400e+02 5.196500e+02
+8 11760     3.766600e+02 2.101200e+02
+9 11760     1.792000e+02 3.338900e+02
+12 11760     3.979399e+02 5.137900e+02
+2 11761     3.832000e+02 2.831000e+02
+3 11761     2.394600e+02 -4.210999e+01
+9 11761     1.836100e+02 3.334500e+02
+12 11761     4.024600e+02 5.127100e+02
+2 11762     -5.827300e+02 2.826000e+02
+12 11762     -6.424800e+02 4.895300e+02
+2 11763     -2.720800e+02 2.825400e+02
+8 11763     -1.442200e+02 2.168700e+02
+14 11763     3.341200e+02 -2.151100e+02
+2 11764     4.294500e+02 2.826600e+02
+6 11764     3.420600e+02 4.799500e+02
+10 11764     5.498000e+02 5.767900e+02
+12 11764     4.301200e+02 4.858900e+02
+2 11765     4.294500e+02 2.826600e+02
+6 11765     3.420600e+02 4.799500e+02
+12 11765     4.301200e+02 4.858900e+02
+2 11766     5.145500e+02 2.824100e+02
+6 11766     4.377200e+02 4.674200e+02
+8 11766     4.842000e+02 2.019100e+02
+9 11766     2.976200e+02 3.369500e+02
+2 11767     -2.605600e+02 2.817000e+02
+6 11767     -4.432300e+02 5.523100e+02
+11 11767     1.770500e+02 -2.466400e+02
+2 11768     3.308800e+02 2.815700e+02
+7 11768     3.284100e+02 5.264400e+02
+9 11768     1.375000e+02 3.300300e+02
+2 11769     -1.576800e+02 2.811600e+02
+12 11769     -1.539500e+02 5.451300e+02
+14 11769     4.530601e+02 -2.176300e+02
+2 11770     5.293700e+02 2.810400e+02
+6 11770     4.543400e+02 4.638200e+02
+7 11770     4.719399e+02 4.590100e+02
+9 11770     3.103600e+02 3.365500e+02
+10 11770     6.520500e+02 5.391600e+02
+11 11770     7.775300e+02 -4.415700e+02
+2 11771     -3.992400e+02 2.806300e+02
+7 11771     -3.408900e+02 5.750800e+02
+11 11771     4.612000e+01 -2.514400e+02
+2 11772     -5.781500e+02 2.800400e+02
+5 11772     1.186200e+02 -1.340200e+02
+2 11773     -1.603600e+02 2.796000e+02
+3 11773     -2.972200e+02 -5.196002e+01
+6 11773     -3.225100e+02 5.644900e+02
+8 11773     -5.428998e+01 2.161400e+02
+9 11773     -2.890900e+02 3.125200e+02
+2 11774     3.452400e+02 2.788600e+02
+6 11774     2.587000e+02 5.191600e+02
+2 11775     3.452400e+02 2.788600e+02
+6 11775     2.587000e+02 5.191600e+02
+2 11776     4.746400e+02 2.775000e+02
+6 11776     3.929800e+02 4.676200e+02
+7 11776     4.230400e+02 4.673700e+02
+2 11777     5.929500e+02 2.773800e+02
+6 11777     5.257300e+02 4.508400e+02
+2 11778     -4.958800e+02 2.771300e+02
+7 11778     -4.404100e+02 5.610500e+02
+12 11778     -5.425500e+02 4.965900e+02
+2 11779     -4.958800e+02 2.771300e+02
+7 11779     -4.404100e+02 5.610500e+02
+12 11779     -5.425500e+02 4.965900e+02
+2 11780     -5.060200e+02 2.763800e+02
+7 11780     -4.509100e+02 5.592000e+02
+2 11781     -3.099976e-01 2.755600e+02
+14 11781     6.351801e+02 -2.094200e+02
+2 11782     3.444800e+02 2.747500e+02
+6 11782     2.578600e+02 5.145100e+02
+8 11782     3.489000e+02 2.035000e+02
+9 11782     1.499301e+02 3.251200e+02
+11 11782     6.582600e+02 -3.587200e+02
+2 11783     -5.839900e+02 2.743900e+02
+5 11783     1.124900e+02 -1.388700e+02
+7 11783     -5.295400e+02 5.487700e+02
+12 11783     -6.430400e+02 4.804700e+02
+2 11784     -2.573300e+02 2.728200e+02
+11 11784     1.799200e+02 -2.533200e+02
+2 11785     5.266500e+02 2.715500e+02
+6 11785     4.505200e+02 4.556400e+02
+7 11785     4.688600e+02 4.518800e+02
+9 11785     3.075100e+02 3.296400e+02
+10 11785     6.472100e+02 5.293800e+02
+12 11785     5.329700e+02 4.641100e+02
+13 11785     8.438199e+02 4.497998e+01
+2 11786     -3.083500e+02 2.707100e+02
+6 11786     -5.008500e+02 5.295000e+02
+2 11787     3.111300e+02 2.704700e+02
+6 11787     2.203700e+02 5.144500e+02
+2 11788     5.050300e+02 2.701600e+02
+3 11788     3.621500e+02 -4.976001e+01
+6 11788     4.264900e+02 4.551200e+02
+8 11788     4.759301e+02 1.927600e+02
+9 11788     2.896400e+02 3.266500e+02
+10 11788     6.240000e+02 5.346500e+02
+12 11788     5.102000e+02 4.637700e+02
+2 11789     -5.991000e+02 2.693500e+02
+7 11789     -5.445000e+02 5.425300e+02
+2 11790     -2.320100e+02 2.693700e+02
+6 11790     -4.074900e+02 5.457500e+02
+8 11790     -1.104700e+02 2.074000e+02
+9 11790     -3.483300e+02 3.008000e+02
+2 11791     -5.937700e+02 2.687200e+02
+7 11791     -5.388700e+02 5.426400e+02
+8 11791     -4.078000e+02 1.991700e+02
+2 11792     -2.499400e+02 2.691700e+02
+7 11792     -1.834000e+02 5.807400e+02
+2 11793     -1.543100e+02 2.685100e+02
+5 11793     5.489600e+02 -1.471200e+02
+6 11793     -3.148400e+02 5.506300e+02
+8 11793     -4.890997e+01 2.067100e+02
+12 11793     -1.503600e+02 5.309500e+02
+2 11794     3.218900e+02 2.673300e+02
+6 11794     2.325100e+02 5.088900e+02
+7 11794     3.202700e+02 5.148600e+02
+11 11794     6.387700e+02 -3.584200e+02
+2 11795     -2.849400e+02 2.667900e+02
+5 11795     4.120500e+02 -1.432500e+02
+6 11795     -4.718700e+02 5.305600e+02
+8 11795     -1.544700e+02 2.035100e+02
+12 11795     -2.973700e+02 5.165000e+02
+14 11795     3.205400e+02 -2.293200e+02
+2 11796     -2.849400e+02 2.667900e+02
+5 11796     4.120500e+02 -1.432500e+02
+6 11796     -4.718700e+02 5.305600e+02
+7 11796     -2.204200e+02 5.750800e+02
+8 11796     -1.544700e+02 2.035100e+02
+12 11796     -2.973700e+02 5.165000e+02
+14 11796     3.205400e+02 -2.293200e+02
+2 11797     -2.849400e+02 2.667900e+02
+7 11797     -2.204200e+02 5.750800e+02
+8 11797     -1.544700e+02 2.035100e+02
+12 11797     -2.973700e+02 5.165000e+02
+14 11797     3.205400e+02 -2.293200e+02
+2 11798     -4.604500e+02 2.664000e+02
+3 11798     -5.870400e+02 -6.353998e+01
+7 11798     -4.035900e+02 5.549100e+02
+2 11799     6.045601e+02 2.658500e+02
+6 11799     5.378900e+02 4.368600e+02
+2 11800     3.881000e+02 2.655800e+02
+6 11800     3.066100e+02 4.979700e+02
+8 11800     3.838000e+02 1.946900e+02
+2 11801     3.881000e+02 2.655800e+02
+6 11801     3.066100e+02 4.979700e+02
+12 11801     4.069900e+02 4.928800e+02
+2 11802     6.460699e+02 2.653300e+02
+9 11802     4.294399e+02 3.305500e+02
+2 11803     4.547300e+02 2.652900e+02
+3 11803     3.136700e+02 -5.609998e+01
+6 11803     3.701200e+02 4.567700e+02
+7 11803     4.046500e+02 4.600300e+02
+9 11803     2.469700e+02 3.208800e+02
+12 11803     4.565200e+02 4.640300e+02
+2 11804     4.547300e+02 2.652900e+02
+3 11804     3.136700e+02 -5.609998e+01
+6 11804     3.701200e+02 4.567700e+02
+7 11804     4.046500e+02 4.600300e+02
+9 11804     2.469700e+02 3.208800e+02
+10 11804     5.719399e+02 5.474400e+02
+12 11804     4.565200e+02 4.640300e+02
+2 11805     5.446300e+02 2.651000e+02
+8 11805     5.078400e+02 1.876400e+02
+9 11805     3.229700e+02 3.237600e+02
+10 11805     6.645300e+02 5.145700e+02
+12 11805     5.524000e+02 4.537200e+02
+2 11806     5.446300e+02 2.651000e+02
+10 11806     6.645300e+02 5.145700e+02
+12 11806     5.524000e+02 4.537200e+02
+2 11807     -4.688300e+02 2.641900e+02
+8 11807     -3.056600e+02 1.982900e+02
+12 11807     -5.102000e+02 4.871900e+02
+2 11808     5.838300e+02 2.630800e+02
+7 11808     5.186700e+02 4.292500e+02
+2 11809     5.039000e+02 2.624700e+02
+7 11809     4.475200e+02 4.472900e+02
+10 11809     6.216100e+02 5.266900e+02
+2 11810     5.039000e+02 2.624700e+02
+7 11810     4.475200e+02 4.472900e+02
+10 11810     6.216100e+02 5.266900e+02
+2 11811     -7.226000e+02 2.622000e+02
+8 11811     -5.119100e+02 1.916700e+02
+11 11811     -2.296000e+02 -2.689200e+02
+12 11811     -7.984700e+02 4.484000e+02
+2 11812     1.623999e+01 2.614700e+02
+6 11812     -1.038400e+02 5.885300e+02
+12 11812     5.879999e+01 5.530000e+02
+2 11813     3.523300e+02 2.593400e+02
+3 11813     2.105200e+02 -6.534003e+01
+10 11813     5.203500e+02 6.136100e+02
+2 11814     4.070007e+00 2.587800e+02
+12 11814     4.428998e+01 5.481200e+02
+14 11814     6.394800e+02 -2.256400e+02
+2 11815     2.924600e+02 2.587500e+02
+8 11815     3.064800e+02 1.912600e+02
+12 11815     3.072900e+02 4.948900e+02
+2 11816     5.655500e+02 2.590800e+02
+6 11816     4.934900e+02 4.342900e+02
+10 11816     6.850500e+02 4.994500e+02
+2 11817     5.817200e+02 2.589300e+02
+8 11817     5.407100e+02 1.817700e+02
+9 11817     3.567500e+02 3.200700e+02
+10 11817     7.027900e+02 4.935200e+02
+2 11818     1.357001e+01 2.577700e+02
+6 11818     -1.070500e+02 5.844800e+02
+8 11818     9.189001e+01 2.018100e+02
+2 11819     -5.015200e+02 2.558700e+02
+5 11819     1.900000e+02 -1.546200e+02
+7 11819     -4.444300e+02 5.415900e+02
+2 11820     -5.015200e+02 2.558700e+02
+7 11820     -4.444300e+02 5.415900e+02
+12 11820     -5.465900e+02 4.742200e+02
+2 11821     -2.450300e+02 2.556000e+02
+6 11821     -4.226500e+02 5.265100e+02
+2 11822     1.896002e+01 2.534900e+02
+5 11822     7.555601e+02 -1.514300e+02
+6 11822     -1.000900e+02 5.797800e+02
+12 11822     6.238000e+01 5.441600e+02
+2 11823     1.896002e+01 2.534900e+02
+3 11823     -1.265800e+02 -7.860999e+01
+6 11823     -1.000900e+02 5.797800e+02
+12 11823     6.238000e+01 5.441600e+02
+2 11824     5.210800e+02 2.521600e+02
+6 11824     4.434200e+02 4.331300e+02
+7 11824     4.611400e+02 4.330400e+02
+8 11824     4.885300e+02 1.775000e+02
+10 11824     6.365699e+02 5.077000e+02
+12 11824     5.261899e+02 4.418300e+02
+15 11824     8.411801e+02 5.823300e+02
+2 11825     -6.776400e+02 2.514900e+02
+5 11825     2.340997e+01 -1.580100e+02
+2 11826     -3.800200e+02 2.514000e+02
+3 11826     -5.084100e+02 -7.958002e+01
+2 11827     -3.587300e+02 2.505900e+02
+7 11827     -2.969200e+02 5.526400e+02
+12 11827     -3.816200e+02 4.888900e+02
+2 11828     4.978199e+02 2.494300e+02
+6 11828     4.176400e+02 4.334000e+02
+7 11828     4.407200e+02 4.356500e+02
+8 11828     4.698500e+02 1.757800e+02
+9 11828     2.841500e+02 3.090400e+02
+10 11828     6.126100e+02 5.132100e+02
+12 11828     5.014500e+02 4.416800e+02
+2 11829     5.461200e+02 2.488900e+02
+10 11829     6.623300e+02 4.950800e+02
+15 11829     8.717800e+02 5.677300e+02
+2 11830     -3.167600e+02 2.475000e+02
+12 11830     -3.330000e+02 4.918300e+02
+2 11831     2.815200e+02 2.465300e+02
+6 11831     1.862800e+02 4.910200e+02
+9 11831     9.675000e+01 2.986400e+02
+10 11831     4.488101e+02 6.220000e+02
+11 11831     6.057500e+02 -3.663600e+02
+2 11832     -2.815300e+02 2.450700e+02
+5 11832     4.130200e+02 -1.633700e+02
+7 11832     -2.159700e+02 5.554900e+02
+2 11833     -3.741000e+02 2.436800e+02
+3 11833     -5.027800e+02 -8.681000e+01
+5 11833     3.164900e+02 -1.650000e+02
+6 11833     -5.778000e+02 4.850100e+02
+12 11833     -3.990800e+02 4.797500e+02
+2 11834     -3.741000e+02 2.436800e+02
+6 11834     -5.778000e+02 4.850100e+02
+12 11834     -3.990800e+02 4.797500e+02
+2 11835     -3.637800e+02 2.433600e+02
+6 11835     -5.654000e+02 4.868600e+02
+2 11836     -8.700000e+01 2.432900e+02
+6 11836     -2.296300e+02 5.460500e+02
+12 11836     -6.326001e+01 5.196500e+02
+14 11836     5.336400e+02 -2.442200e+02
+2 11837     -4.139300e+02 2.431800e+02
+3 11837     -5.418800e+02 -8.753998e+01
+2 11838     -3.330400e+02 2.432100e+02
+11 11838     1.067400e+02 -2.774200e+02
+2 11839     4.677700e+02 2.419100e+02
+3 11839     3.269800e+02 -7.798999e+01
+6 11839     3.836800e+02 4.291000e+02
+8 11839     4.450000e+02 1.701200e+02
+9 11839     2.586600e+02 3.012300e+02
+10 11839     5.803101e+02 5.157200e+02
+12 11839     4.694200e+02 4.370800e+02
+15 11839     7.738000e+02 5.899100e+02
+2 11840     -3.402600e+02 2.416800e+02
+6 11840     -5.364800e+02 4.900900e+02
+2 11841     -3.022700e+02 2.417700e+02
+5 11841     3.909100e+02 -1.660000e+02
+6 11841     -4.909300e+02 4.981000e+02
+12 11841     -3.159400e+02 4.880000e+02
+2 11842     -7.796002e+01 2.415900e+02
+3 11842     -2.182400e+02 -9.063000e+01
+7 11842     2.450012e+00 5.732900e+02
+14 11842     5.435400e+02 -2.452900e+02
+2 11843     -8.920001e+01 2.407400e+02
+6 11843     -2.323200e+02 5.425400e+02
+12 11843     -6.587000e+01 5.170000e+02
+2 11844     4.780500e+02 2.408000e+02
+7 11844     4.223400e+02 4.317300e+02
+8 11844     4.530100e+02 1.692000e+02
+2 11845     -6.021997e+01 2.394900e+02
+6 11845     -1.970400e+02 5.466000e+02
+9 11845     -2.014700e+02 2.805900e+02
+2 11846     -1.006600e+02 2.391000e+02
+6 11846     -2.464700e+02 5.380100e+02
+2 11847     -4.850100e+02 2.387000e+02
+7 11847     -4.262300e+02 5.282200e+02
+2 11848     -1.317900e+02 2.380200e+02
+6 11848     -2.845700e+02 5.302500e+02
+8 11848     -2.884998e+01 1.837400e+02
+12 11848     -1.168300e+02 5.085000e+02
+2 11849     -6.346000e+02 2.375200e+02
+7 11849     -5.768100e+02 5.106600e+02
+2 11850     -5.857800e+02 2.373400e+02
+11 11850     -1.202400e+02 -2.853900e+02
+2 11851     -3.257300e+02 2.369600e+02
+5 11851     3.660900e+02 -1.703700e+02
+11 11851     1.132400e+02 -2.814800e+02
+2 11852     -9.497998e+01 2.368500e+02
+6 11852     -2.395600e+02 5.366600e+02
+2 11853     -3.148100e+02 2.345300e+02
+12 11853     -3.301000e+02 4.790200e+02
+2 11854     -5.716300e+02 2.339800e+02
+12 11854     -6.244600e+02 4.407300e+02
+2 11855     -3.639500e+02 2.336900e+02
+3 11855     -4.934800e+02 -9.667999e+01
+6 11855     -5.649000e+02 4.759400e+02
+12 11855     -3.863500e+02 4.708600e+02
+2 11856     8.071400e+02 2.326000e+02
+3 11856     6.500800e+02 -7.579999e+01
+7 11856     7.182500e+02 3.475800e+02
+9 11856     5.428900e+02 3.037500e+02
+2 11857     -6.206800e+02 2.320000e+02
+7 11857     -5.620500e+02 5.076700e+02
+2 11858     -3.445100e+02 2.292900e+02
+3 11858     -4.746100e+02 -1.016200e+02
+6 11858     -5.408100e+02 4.749100e+02
+8 11858     -2.037600e+02 1.727500e+02
+2 11859     -1.841300e+02 2.294000e+02
+14 11859     4.251400e+02 -2.603200e+02
+2 11860     7.574301e+02 2.269400e+02
+3 11860     6.040300e+02 -8.228998e+01
+7 11860     6.715300e+02 3.544600e+02
+9 11860     5.020100e+02 2.981000e+02
+12 11860     7.850500e+02 3.853800e+02
+2 11861     -3.917800e+02 2.260100e+02
+7 11861     -3.301000e+02 5.272500e+02
+2 11862     -4.800100e+02 2.260700e+02
+3 11862     -6.074300e+02 -1.036100e+02
+2 11863     -6.428400e+02 2.253900e+02
+5 11863     5.272998e+01 -1.805200e+02
+12 11863     -7.034400e+02 4.223900e+02
+2 11864     8.549988e+00 2.255400e+02
+6 11864     -1.132500e+02 5.444200e+02
+2 11865     7.327700e+02 2.247300e+02
+9 11865     4.822300e+02 2.952600e+02
+2 11866     -2.602200e+02 2.232700e+02
+5 11866     4.336100e+02 -1.826900e+02
+14 11866     3.431500e+02 -2.676400e+02
+2 11867     4.492500e+02 2.229600e+02
+6 11867     3.624000e+02 4.109100e+02
+12 11867     4.494500e+02 4.183400e+02
+2 11868     -4.160400e+02 2.215400e+02
+5 11868     2.719200e+02 -1.847900e+02
+7 11868     -3.542700e+02 5.206400e+02
+2 11869     -1.709300e+02 2.203900e+02
+14 11869     4.381899e+02 -2.683700e+02
+2 11870     2.127002e+01 2.203600e+02
+7 11870     1.105400e+02 5.624400e+02
+2 11871     -3.831400e+02 2.201600e+02
+12 11871     -4.071400e+02 4.544600e+02
+2 11872     -3.780800e+02 2.193900e+02
+5 11872     3.101899e+02 -1.870400e+02
+6 11872     -5.804700e+02 4.565000e+02
+8 11872     -2.308900e+02 1.644200e+02
+2 11873     -3.915800e+02 2.186800e+02
+3 11873     -5.207200e+02 -1.118300e+02
+8 11873     -2.421400e+02 1.636800e+02
+12 11873     -4.167800e+02 4.514100e+02
+2 11874     5.285400e+02 2.184700e+02
+7 11874     4.642900e+02 3.998700e+02
+9 11874     3.100400e+02 2.840900e+02
+10 11874     6.375699e+02 4.667100e+02
+2 11875     -4.184800e+02 2.181300e+02
+5 11875     2.685900e+02 -1.881600e+02
+2 11876     -4.825000e+02 2.171300e+02
+12 11876     -5.209400e+02 4.364700e+02
+2 11877     -4.825000e+02 2.171300e+02
+12 11877     -5.209400e+02 4.364700e+02
+2 11878     5.139900e+02 2.171300e+02
+6 11878     4.340400e+02 3.954100e+02
+8 11878     4.827800e+02 1.483600e+02
+9 11878     2.986200e+02 2.813400e+02
+15 11878     8.248199e+02 5.371100e+02
+2 11879     4.666600e+02 2.152000e+02
+12 11879     4.676000e+02 4.076600e+02
+2 11880     -6.861500e+02 2.148400e+02
+5 11880     1.241998e+01 -1.885800e+02
+12 11880     -7.506200e+02 4.059600e+02
+2 11881     -5.898300e+02 2.143600e+02
+5 11881     1.012900e+02 -1.903400e+02
+2 11882     -5.004100e+02 2.136700e+02
+7 11882     -4.395200e+02 5.041600e+02
+2 11883     -4.182500e+02 2.122600e+02
+5 11883     2.686200e+02 -1.933100e+02
+2 11884     4.238600e+02 2.117200e+02
+8 11884     4.084000e+02 1.468200e+02
+9 11884     2.216400e+02 2.744500e+02
+15 11884     7.162200e+02 5.676100e+02
+2 11885     -3.709900e+02 2.109100e+02
+14 11885     2.283700e+02 -2.818600e+02
+2 11886     4.364301e+02 2.110100e+02
+6 11886     3.474600e+02 3.995900e+02
+7 11886     3.835601e+02 4.134200e+02
+8 11886     4.188100e+02 1.461900e+02
+9 11886     2.323101e+02 2.743000e+02
+10 11886     5.435200e+02 4.927200e+02
+12 11886     4.356200e+02 4.066200e+02
+2 11887     -4.986100e+02 2.103900e+02
+12 11887     -5.385900e+02 4.281700e+02
+2 11888     -2.350800e+02 2.094100e+02
+12 11888     -2.370400e+02 4.641600e+02
+2 11889     -7.059998e+01 2.093000e+02
+3 11889     -2.119500e+02 -1.224900e+02
+5 11889     6.436400e+02 -1.954900e+02
+6 11889     -2.084400e+02 5.098100e+02
+7 11889     9.799988e+00 5.439500e+02
+9 11889     -2.093800e+02 2.532400e+02
+14 11889     5.495800e+02 -2.757300e+02
+2 11890     -3.781500e+02 2.073200e+02
+7 11890     -3.144900e+02 5.116700e+02
+2 11891     -3.903800e+02 2.067600e+02
+12 11891     -4.146300e+02 4.398900e+02
+2 11892     -4.310500e+02 2.064000e+02
+12 11892     -4.612800e+02 4.334500e+02
+2 11893     5.265200e+02 2.065800e+02
+6 11893     4.476200e+02 3.826200e+02
+8 11893     4.932700e+02 1.409300e+02
+10 11893     6.325900e+02 4.544500e+02
+12 11893     5.308199e+02 3.920400e+02
+2 11894     -3.285800e+02 2.045700e+02
+3 11894     -4.570900e+02 -1.261800e+02
+5 11894     3.550601e+02 -2.078100e+02
+6 11894     -5.205100e+02 4.406000e+02
+7 11894     -2.714000e+02 5.068500e+02
+14 11894     2.665800e+02 -2.941400e+02
+2 11895     -8.940002e+01 2.047200e+02
+6 11895     -2.311200e+02 5.006600e+02
+2 11896     6.967700e+02 2.018900e+02
+7 11896     6.128000e+02 3.448600e+02
+2 11897     -5.479800e+02 2.014800e+02
+12 11897     -5.936300e+02 4.114400e+02
+2 11898     -5.354800e+02 2.010900e+02
+5 11898     1.518100e+02 -2.023200e+02
+14 11898     6.651001e+01 -2.927000e+02
+2 11899     -5.354800e+02 2.010900e+02
+8 11899     -3.603900e+02 1.473900e+02
+2 11900     -3.194500e+02 2.002800e+02
+6 11900     -5.090600e+02 4.373600e+02
+7 11900     -2.621500e+02 5.033900e+02
+2 11901     -3.194500e+02 2.002800e+02
+6 11901     -5.090600e+02 4.373600e+02
+7 11901     -2.621500e+02 5.033900e+02
+2 11902     -7.571002e+01 2.001900e+02
+12 11902     -4.817999e+01 4.762900e+02
+2 11903     4.922700e+02 1.999700e+02
+6 11903     4.089500e+02 3.799100e+02
+8 11903     4.647100e+02 1.357000e+02
+9 11903     2.803101e+02 2.669600e+02
+10 11903     5.963500e+02 4.601800e+02
+2 11904     5.018199e+02 1.987000e+02
+3 11904     3.616200e+02 -1.176100e+02
+6 11904     4.198100e+02 3.771900e+02
+9 11904     2.885300e+02 2.663200e+02
+10 11904     6.060400e+02 4.545900e+02
+12 11904     5.041100e+02 3.859600e+02
+15 11904     8.059000e+02 5.182000e+02
+2 11905     6.409399e+02 1.979700e+02
+12 11905     6.535400e+02 3.677900e+02
+2 11906     -4.692200e+02 1.966400e+02
+12 11906     -5.038100e+02 4.181000e+02
+2 11907     6.743700e+02 1.966200e+02
+12 11907     6.898300e+02 3.619000e+02
+2 11908     -5.981000e+02 1.959400e+02
+5 11908     9.042999e+01 -2.064200e+02
+12 11908     -6.509300e+02 3.984700e+02
+2 11909     5.056700e+02 1.954000e+02
+6 11909     4.237300e+02 3.728000e+02
+10 11909     6.090601e+02 4.494000e+02
+12 11909     5.079200e+02 3.817700e+02
+15 11909     8.097600e+02 5.118200e+02
+2 11910     7.121600e+02 1.943800e+02
+3 11910     5.638700e+02 -1.145200e+02
+7 11910     6.234100e+02 3.327900e+02
+2 11911     7.251500e+02 1.945700e+02
+9 11911     4.759900e+02 2.696200e+02
+2 11912     -2.813400e+02 1.938800e+02
+6 11912     -4.619800e+02 4.471200e+02
+2 11913     2.892500e+02 1.932500e+02
+6 11913     1.939400e+02 4.303400e+02
+12 11913     3.039399e+02 4.256900e+02
+2 11914     2.892500e+02 1.932500e+02
+6 11914     1.939400e+02 4.303400e+02
+12 11914     3.039399e+02 4.256900e+02
+2 11915     -5.294700e+02 1.924100e+02
+12 11915     -5.712900e+02 4.047300e+02
+2 11916     2.966300e+02 1.922800e+02
+6 11916     2.024000e+02 4.283200e+02
+2 11917     6.499399e+02 1.923200e+02
+6 11917     5.837100e+02 3.498700e+02
+7 11917     5.687800e+02 3.471600e+02
+10 11917     7.577100e+02 3.912900e+02
+12 11917     6.628600e+02 3.607200e+02
+2 11918     -4.674400e+02 1.900200e+02
+7 11918     -4.045300e+02 4.874300e+02
+2 11919     4.882400e+02 1.894600e+02
+7 11919     4.261100e+02 3.814100e+02
+10 11919     5.900300e+02 4.491200e+02
+2 11920     6.880601e+02 1.885900e+02
+10 11920     7.987000e+02 3.714200e+02
+2 11921     -1.900000e+01 1.866100e+02
+13 11921     4.274200e+02 1.291500e+02
+2 11922     7.144399e+02 1.867100e+02
+3 11922     5.659600e+02 -1.217500e+02
+7 11922     6.260601e+02 3.262200e+02
+12 11922     7.329200e+02 3.462200e+02
+2 11923     7.569399e+02 1.859100e+02
+7 11923     6.650699e+02 3.150500e+02
+9 11923     5.024399e+02 2.635400e+02
+2 11924     7.569399e+02 1.859100e+02
+7 11924     6.650699e+02 3.150500e+02
+9 11924     5.024399e+02 2.635400e+02
+2 11925     7.112900e+02 1.850600e+02
+10 11925     8.225800e+02 3.575800e+02
+2 11926     7.282800e+02 1.848700e+02
+12 11926     7.494301e+02 3.421400e+02
+2 11927     -5.507100e+02 1.844900e+02
+5 11927     1.355100e+02 -2.163400e+02
+12 11927     -5.945900e+02 3.944500e+02
+2 11928     -4.310000e+02 1.846700e+02
+7 11928     -3.672900e+02 4.865500e+02
+12 11928     -4.585500e+02 4.112800e+02
+2 11929     -4.024800e+02 1.845000e+02
+3 11929     -5.323700e+02 -1.462400e+02
+7 11929     -3.382600e+02 4.892800e+02
+2 11930     -4.024800e+02 1.845000e+02
+5 11930     2.819301e+02 -2.180900e+02
+7 11930     -3.382600e+02 4.892800e+02
+2 11931     -5.065997e+01 1.843400e+02
+14 11931     5.706200e+02 -2.994000e+02
+2 11932     5.099399e+02 1.843600e+02
+3 11932     3.700000e+02 -1.312300e+02
+6 11932     4.282700e+02 3.597600e+02
+8 11932     4.785200e+02 1.222600e+02
+9 11932     2.955601e+02 2.538100e+02
+10 11932     6.114600e+02 4.351600e+02
+15 11932     8.128199e+02 4.948900e+02
+2 11933     -5.115200e+02 1.832600e+02
+5 11933     1.731700e+02 -2.182800e+02
+2 11934     -5.684400e+02 1.813600e+02
+5 11934     1.181800e+02 -2.189700e+02
+7 11934     -5.052700e+02 4.691800e+02
+8 11934     -3.871200e+02 1.307200e+02
+11 11934     -1.072600e+02 -3.242300e+02
+12 11934     -6.141600e+02 3.884400e+02
+14 11934     3.346002e+01 -3.098600e+02
+2 11935     6.928400e+02 1.810900e+02
+3 11935     5.458800e+02 -1.279200e+02
+12 11935     7.095200e+02 3.426100e+02
+2 11936     6.259800e+02 1.801500e+02
+6 11936     5.568500e+02 3.393400e+02
+10 11936     7.301100e+02 3.859800e+02
+12 11936     6.365100e+02 3.497900e+02
+2 11937     -5.655900e+02 1.793400e+02
+7 11937     -5.019100e+02 4.680900e+02
+2 11938     -6.556300e+02 1.779300e+02
+7 11938     -5.908800e+02 4.574000e+02
+2 11939     -4.223800e+02 1.770000e+02
+11 11939     2.165002e+01 -3.267400e+02
+2 11940     5.095000e+02 1.766100e+02
+6 11940     4.273400e+02 3.526300e+02
+10 11940     6.091100e+02 4.276100e+02
+15 11940     8.106000e+02 4.870600e+02
+2 11941     5.228300e+02 1.752800e+02
+6 11941     4.423600e+02 3.486100e+02
+10 11941     6.223500e+02 4.209300e+02
+15 11941     8.261200e+02 4.778400e+02
+2 11942     -5.306600e+02 1.742700e+02
+7 11942     -4.674000e+02 4.667900e+02
+12 11942     -5.715300e+02 3.864600e+02
+2 11943     4.667700e+02 1.744700e+02
+10 11943     5.670800e+02 4.409000e+02
+2 11944     4.667700e+02 1.744700e+02
+10 11944     5.670800e+02 4.409000e+02
+2 11945     -6.560500e+02 1.716400e+02
+7 11945     -5.902700e+02 4.520900e+02
+10 11945     -5.866200e+02 6.178400e+02
+12 11945     -7.116300e+02 3.663100e+02
+2 11946     -6.000200e+02 1.716000e+02
+10 11946     -5.217000e+02 6.218700e+02
+2 11947     -5.447900e+02 1.703600e+02
+12 11947     -5.867000e+02 3.810900e+02
+2 11948     6.235000e+02 1.704200e+02
+6 11948     5.534200e+02 3.296100e+02
+10 11948     7.248199e+02 3.771100e+02
+2 11949     -7.842999e+01 1.701300e+02
+13 11949     3.717500e+02 1.133700e+02
+14 11949     5.380300e+02 -3.129400e+02
+2 11950     -7.230900e+02 1.689200e+02
+5 11950     -2.652002e+01 -2.275900e+02
+8 11950     -5.127000e+02 1.177600e+02
+12 11950     -7.866100e+02 3.536000e+02
+2 11951     6.925000e+02 1.679300e+02
+10 11951     7.980400e+02 3.463300e+02
+2 11952     4.916600e+02 1.670100e+02
+6 11952     4.070200e+02 3.444600e+02
+8 11952     4.635200e+02 1.091200e+02
+9 11952     2.805601e+02 2.390600e+02
+10 11952     5.894700e+02 4.234600e+02
+12 11952     4.919399e+02 3.532800e+02
+15 11952     7.870100e+02 4.802000e+02
+2 11953     3.636400e+02 1.664700e+02
+7 11953     3.471100e+02 4.121200e+02
+2 11954     5.086200e+02 1.667900e+02
+6 11954     4.258000e+02 3.410400e+02
+2 11955     5.086200e+02 1.667900e+02
+6 11955     4.258000e+02 3.410400e+02
+2 11956     -6.374100e+02 1.650800e+02
+5 11956     5.184003e+01 -2.313000e+02
+7 11956     -5.713700e+02 4.489300e+02
+11 11956     -1.659800e+02 -3.348600e+02
+13 11956     -8.985999e+01 8.673001e+01
+14 11956     -3.178003e+01 -3.235800e+02
+2 11957     6.572000e+02 1.648300e+02
+10 11957     7.590300e+02 3.570600e+02
+2 11958     6.602300e+02 1.636300e+02
+9 11958     4.234800e+02 2.412900e+02
+12 11958     6.732600e+02 3.268600e+02
+2 11959     6.298300e+02 1.632400e+02
+6 11959     5.600601e+02 3.212800e+02
+10 11959     7.298900e+02 3.664700e+02
+2 11960     -6.566200e+02 1.621800e+02
+7 11960     -5.900300e+02 4.438300e+02
+12 11960     -7.113500e+02 3.569500e+02
+2 11961     -6.566200e+02 1.621800e+02
+7 11961     -5.900300e+02 4.438300e+02
+10 11961     -5.866700e+02 6.084200e+02
+12 11961     -7.113500e+02 3.569500e+02
+2 11962     6.151801e+02 1.616300e+02
+6 11962     5.434600e+02 3.208300e+02
+7 11962     5.333199e+02 3.260400e+02
+9 11962     3.849399e+02 2.380500e+02
+12 11962     6.224301e+02 3.304200e+02
+2 11963     5.254800e+02 1.608200e+02
+6 11963     4.443000e+02 3.332600e+02
+9 11963     3.095100e+02 2.349000e+02
+2 11964     7.535200e+02 1.599500e+02
+7 11964     6.581200e+02 2.919300e+02
+2 11965     7.535200e+02 1.599500e+02
+12 11965     7.750200e+02 3.110800e+02
+2 11966     3.629500e+02 1.593700e+02
+10 11966     5.126000e+02 4.967200e+02
+12 11966     3.789800e+02 3.808600e+02
+2 11967     3.629500e+02 1.593700e+02
+6 11967     2.755500e+02 3.827500e+02
+10 11967     5.126000e+02 4.967200e+02
+12 11967     3.789800e+02 3.808600e+02
+2 11968     5.570500e+02 1.588500e+02
+6 11968     4.791000e+02 3.257700e+02
+12 11968     5.608101e+02 3.356200e+02
+15 11968     8.640100e+02 4.409300e+02
+2 11969     -7.371900e+02 1.584200e+02
+5 11969     -3.970001e+01 -2.359000e+02
+8 11969     -5.233300e+02 1.089900e+02
+10 11969     -6.772200e+02 5.983700e+02
+12 11969     -7.999800e+02 3.419500e+02
+14 11969     -1.221500e+02 -3.294300e+02
+2 11970     -7.073900e+02 1.584800e+02
+12 11970     -7.668800e+02 3.462300e+02
+2 11971     -6.059400e+02 1.584000e+02
+7 11971     -5.397900e+02 4.459900e+02
+14 11971     -2.650024e+00 -3.294500e+02
+2 11972     6.834200e+02 1.587100e+02
+9 11972     4.437500e+02 2.358900e+02
+10 11972     7.855699e+02 3.393600e+02
+12 11972     6.989900e+02 3.157000e+02
+2 11973     6.989200e+02 1.586100e+02
+9 11973     4.560601e+02 2.390400e+02
+2 11974     -6.932300e+02 1.580400e+02
+10 11974     -6.285100e+02 6.018000e+02
+2 11975     -4.582300e+02 1.562900e+02
+8 11975     -2.961700e+02 1.133900e+02
+12 11975     -4.864400e+02 3.794800e+02
+2 11976     -4.582300e+02 1.562900e+02
+12 11976     -4.864400e+02 3.794800e+02
+2 11977     6.474500e+02 1.554900e+02
+3 11977     5.047600e+02 -1.537400e+02
+9 11977     4.127000e+02 2.345400e+02
+10 11977     7.472900e+02 3.503000e+02
+12 11977     6.590800e+02 3.200100e+02
+2 11978     -5.420200e+02 1.547400e+02
+10 11978     -4.520700e+02 6.087200e+02
+2 11979     7.756100e+02 1.545900e+02
+3 11979     6.264399e+02 -1.498200e+02
+7 11979     6.767000e+02 2.814800e+02
+2 11980     7.756100e+02 1.545900e+02
+3 11980     6.264399e+02 -1.498200e+02
+7 11980     6.767000e+02 2.814800e+02
+2 11981     -6.406800e+02 1.534000e+02
+12 11981     -6.923200e+02 3.502500e+02
+2 11982     -5.898800e+02 1.536000e+02
+10 11982     -5.082200e+02 6.042500e+02
+12 11982     -6.349700e+02 3.571600e+02
+2 11983     -4.074500e+02 1.523400e+02
+7 11983     -3.416500e+02 4.608000e+02
+8 11983     -2.557300e+02 1.106500e+02
+12 11983     -4.293300e+02 3.817000e+02
+2 11984     7.755500e+02 1.520400e+02
+3 11984     6.260000e+02 -1.523000e+02
+7 11984     6.760601e+02 2.789100e+02
+2 11985     -1.418000e+02 1.506800e+02
+14 11985     4.655699e+02 -3.328900e+02
+2 11986     -1.796200e+02 1.505800e+02
+7 11986     -1.066600e+02 4.817400e+02
+2 11987     -4.051000e+02 1.498600e+02
+5 11987     2.755601e+02 -2.489700e+02
+12 11987     -4.260300e+02 3.803400e+02
+2 11988     6.756300e+02 1.496400e+02
+10 11988     7.750000e+02 3.330700e+02
+2 11989     -2.770000e+02 1.484100e+02
+6 11989     -4.540100e+02 3.978500e+02
+9 11989     -3.821600e+02 1.927500e+02
+2 11990     6.959399e+02 1.485400e+02
+9 11990     4.532500e+02 2.306000e+02
+10 11990     7.965500e+02 3.233300e+02
+12 11990     7.110000e+02 3.066000e+02
+2 11991     6.959399e+02 1.485400e+02
+12 11991     7.110000e+02 3.066000e+02
+2 11992     -5.834200e+02 1.481000e+02
+7 11992     -5.168900e+02 4.394700e+02
+10 11992     -5.000600e+02 5.992900e+02
+2 11993     -7.378400e+02 1.465400e+02
+10 11993     -6.775500e+02 5.875500e+02
+12 11993     -7.998000e+02 3.302100e+02
+2 11994     1.188100e+02 1.458200e+02
+3 11994     2.203003e+01 -1.720700e+02
+8 11994     1.336600e+02 7.679001e+01
+12 11994     -2.590002e+01 2.286900e+02
+2 11995     3.146100e+02 1.444200e+02
+3 11995     2.067900e+02 -1.696900e+02
+8 11995     2.956700e+02 7.354999e+01
+2 11996     7.052800e+02 1.437700e+02
+12 11996     7.208400e+02 3.003400e+02
+2 11997     -3.233000e+02 1.435000e+02
+3 11997     -4.537800e+02 -1.886100e+02
+6 11997     -5.060500e+02 3.799500e+02
+8 11997     -1.844500e+02 1.046500e+02
+9 11997     -4.195200e+02 1.865300e+02
+2 11998     -7.143000e+02 1.431400e+02
+14 11998     -1.033500e+02 -3.412900e+02
+2 11999     7.194301e+02 1.430200e+02
+12 11999     7.355699e+02 2.986200e+02
+2 12000     8.313199e+02 1.428300e+02
+3 12000     6.794700e+02 -1.590200e+02
+7 12000     7.252300e+02 2.565800e+02
+9 12000     5.646300e+02 2.296100e+02
+2 12001     8.313199e+02 1.428300e+02
+3 12001     6.794700e+02 -1.590200e+02
+7 12001     7.252300e+02 2.565800e+02
+9 12001     5.646300e+02 2.296100e+02
+2 12002     -5.594500e+02 1.425800e+02
+7 12002     -4.947100e+02 4.359600e+02
+2 12003     -5.383400e+02 1.425500e+02
+14 12003     5.801001e+01 -3.444300e+02
+2 12004     -5.847600e+02 1.412300e+02
+5 12004     9.845001e+01 -2.531500e+02
+7 12004     -5.177700e+02 4.336800e+02
+10 12004     -5.014400e+02 5.926200e+02
+14 12004     1.458002e+01 -3.440200e+02
+2 12005     -6.700600e+02 1.402700e+02
+10 12005     -5.991200e+02 5.858400e+02
+2 12006     -2.614400e+02 1.405300e+02
+12 12006     -2.613000e+02 3.906700e+02
+2 12007     -3.085300e+02 1.386400e+02
+5 12007     3.732600e+02 -2.645700e+02
+6 12007     -4.876800e+02 3.762000e+02
+7 12007     -2.456400e+02 4.548100e+02
+9 12007     -4.057600e+02 1.837400e+02
+2 12008     -3.183600e+02 1.380900e+02
+5 12008     3.637000e+02 -2.648600e+02
+6 12008     -4.983900e+02 3.741700e+02
+8 12008     -1.786900e+02 1.009900e+02
+9 12008     -4.141600e+02 1.824700e+02
+2 12009     -6.813900e+02 1.376100e+02
+10 12009     -6.126600e+02 5.822600e+02
+2 12010     -6.813900e+02 1.376100e+02
+7 12010     -6.113200e+02 4.209200e+02
+2 12011     -3.925000e+02 1.377100e+02
+7 12011     -3.255500e+02 4.499600e+02
+2 12012     -6.940100e+02 1.354400e+02
+7 12012     -6.235800e+02 4.171600e+02
+2 12013     -5.911200e+02 1.339400e+02
+7 12013     -5.232500e+02 4.255800e+02
+10 12013     -5.076600e+02 5.840900e+02
+12 12013     -6.344800e+02 3.373800e+02
+14 12013     8.099976e+00 -3.511300e+02
+2 12014     5.245300e+02 1.331200e+02
+6 12014     4.423600e+02 3.029800e+02
+2 12015     5.245300e+02 1.331200e+02
+6 12015     4.423600e+02 3.029800e+02
+2 12016     -7.049100e+02 1.327500e+02
+12 12016     -7.613900e+02 3.216300e+02
+2 12017     -6.389600e+02 1.324100e+02
+10 12017     -5.626100e+02 5.807500e+02
+2 12018     -6.604100e+02 1.310400e+02
+10 12018     -5.868200e+02 5.780300e+02
+12 12018     -7.113800e+02 3.258300e+02
+2 12019     -7.182800e+02 1.299400e+02
+7 12019     -6.455700e+02 4.106600e+02
+8 12019     -5.081100e+02 8.725000e+01
+10 12019     -6.528500e+02 5.725800e+02
+11 12019     -2.326100e+02 -3.579800e+02
+12 12019     -7.753400e+02 3.162000e+02
+14 12019     -1.078800e+02 -3.527400e+02
+2 12020     -4.722000e+02 1.299200e+02
+7 12020     -4.054700e+02 4.351000e+02
+10 12020     -3.673600e+02 5.895000e+02
+12 12020     -5.006400e+02 3.503700e+02
+2 12021     -4.722000e+02 1.299200e+02
+7 12021     -4.054700e+02 4.351000e+02
+10 12021     -3.673600e+02 5.895000e+02
+12 12021     -5.006400e+02 3.503700e+02
+2 12022     7.636300e+02 1.292200e+02
+7 12022     6.616300e+02 2.604100e+02
+2 12023     -6.233900e+02 1.278400e+02
+7 12023     -5.541000e+02 4.183400e+02
+10 12023     -5.433400e+02 5.762300e+02
+2 12024     -4.991100e+02 1.281100e+02
+5 12024     1.794700e+02 -2.665500e+02
+8 12024     -3.300400e+02 8.976999e+01
+12 12024     -5.311900e+02 3.444600e+02
+2 12025     6.072800e+02 1.278900e+02
+6 12025     5.332900e+02 2.859900e+02
+8 12025     5.585699e+02 7.325000e+01
+10 12025     6.981000e+02 3.364700e+02
+12 12025     6.134100e+02 2.961100e+02
+2 12026     6.072800e+02 1.278900e+02
+6 12026     5.332900e+02 2.859900e+02
+8 12026     5.585699e+02 7.325000e+01
+12 12026     6.134100e+02 2.961100e+02
+2 12027     -5.923700e+02 1.275700e+02
+7 12027     -5.263000e+02 4.197900e+02
+13 12027     -5.937000e+01 6.133002e+01
+2 12028     -5.632700e+02 1.268600e+02
+10 12028     -4.755500e+02 5.791100e+02
+2 12029     2.848400e+02 1.269300e+02
+7 12029     6.671002e+01 2.090800e+02
+12 12029     1.447200e+02 1.963100e+02
+2 12030     -5.970100e+02 1.261000e+02
+7 12030     -5.284100e+02 4.195700e+02
+8 12030     -4.091200e+02 8.723999e+01
+12 12030     -6.402700e+02 3.291600e+02
+2 12031     3.101300e+02 1.250900e+02
+3 12031     2.049600e+02 -1.875200e+02
+7 12031     9.321002e+01 2.081300e+02
+12 12031     1.757700e+02 1.965600e+02
+13 12031     5.290300e+02 -1.521900e+02
+2 12032     5.600100e+02 1.244200e+02
+3 12032     4.215500e+02 -1.868600e+02
+6 12032     4.813500e+02 2.886500e+02
+8 12032     5.200300e+02 7.178000e+01
+15 12032     8.601400e+02 3.952200e+02
+2 12033     -6.114700e+02 1.242200e+02
+10 12033     -5.308400e+02 5.741900e+02
+2 12034     -4.782900e+02 1.238200e+02
+10 12034     -3.741900e+02 5.834800e+02
+2 12035     -6.007800e+02 1.235100e+02
+5 12035     8.191998e+01 -2.679800e+02
+7 12035     -5.314000e+02 4.170100e+02
+8 12035     -4.121800e+02 8.522000e+01
+2 12036     8.026200e+02 1.233800e+02
+7 12036     6.958600e+02 2.456500e+02
+9 12036     5.417600e+02 2.125000e+02
+12 12036     8.260100e+02 2.653600e+02
+2 12037     -7.240200e+02 1.230700e+02
+7 12037     -6.507200e+02 4.046100e+02
+12 12037     -7.812700e+02 3.093600e+02
+14 12037     -1.139600e+02 -3.583000e+02
+2 12038     -2.583600e+02 1.231800e+02
+3 12038     -3.930100e+02 -2.085800e+02
+5 12038     4.249900e+02 -2.755200e+02
+6 12038     -4.295200e+02 3.734500e+02
+9 12038     -3.650600e+02 1.715900e+02
+10 12038     -1.054100e+02 5.983800e+02
+11 12038     1.745500e+02 -3.665700e+02
+12 12038     -2.571300e+02 3.729400e+02
+14 12038     3.379200e+02 -3.596100e+02
+2 12039     -2.583600e+02 1.231800e+02
+5 12039     4.249900e+02 -2.755200e+02
+14 12039     3.379200e+02 -3.596100e+02
+2 12040     1.719400e+02 1.224000e+02
+8 12040     1.743300e+02 5.501999e+01
+9 12040     2.903003e+01 1.935800e+02
+10 12040     -3.163000e+01 2.528600e+02
+2 12041     1.719400e+02 1.224000e+02
+8 12041     1.743300e+02 5.501999e+01
+2 12042     1.545100e+02 1.221300e+02
+12 12042     1.830017e+00 1.920200e+02
+2 12043     6.973700e+02 1.221400e+02
+10 12043     7.919600e+02 2.941800e+02
+2 12044     6.973700e+02 1.221400e+02
+9 12044     4.550500e+02 2.084400e+02
+10 12044     7.919600e+02 2.941800e+02
+12 12044     7.105000e+02 2.777300e+02
+2 12045     -5.321800e+02 1.214400e+02
+12 12045     -5.674500e+02 3.339700e+02
+2 12046     2.621300e+02 1.211400e+02
+8 12046     2.490300e+02 5.301001e+01
+2 12047     2.285400e+02 1.204400e+02
+5 12047     7.567200e+02 -5.845699e+02
+6 12047     5.644000e+01 1.333700e+02
+8 12047     2.206000e+02 5.228000e+01
+2 12048     2.558800e+02 1.206800e+02
+8 12048     2.433600e+02 5.251001e+01
+2 12049     7.098999e+01 1.198400e+02
+6 12049     -1.073300e+02 1.466400e+02
+7 12049     -1.156600e+02 2.313800e+02
+10 12049     -1.103900e+02 2.846500e+02
+12 12049     -7.759003e+01 2.006500e+02
+2 12050     -3.835500e+02 1.187400e+02
+5 12050     2.934900e+02 -2.767800e+02
+2 12051     -3.835500e+02 1.187400e+02
+5 12051     2.934900e+02 -2.767800e+02
+2 12052     2.314399e+02 1.185000e+02
+8 12052     2.230100e+02 5.107001e+01
+2 12053     2.314399e+02 1.185000e+02
+5 12053     7.589301e+02 -5.872900e+02
+8 12053     2.230100e+02 5.107001e+01
+10 12053     2.401001e+01 2.334800e+02
+15 12053     1.016400e+02 2.477700e+02
+2 12054     2.245500e+02 1.169200e+02
+6 12054     5.175000e+01 1.290000e+02
+10 12054     1.598999e+01 2.334000e+02
+12 12054     7.366998e+01 1.814200e+02
+15 12054     9.232001e+01 2.473500e+02
+2 12055     -3.814800e+02 1.163800e+02
+6 12055     -5.752000e+02 3.407600e+02
+12 12055     -3.971300e+02 3.494700e+02
+2 12056     5.565900e+02 1.159400e+02
+6 12056     4.765500e+02 2.802600e+02
+2 12057     1.598500e+02 1.143800e+02
+3 12057     6.490002e+01 -2.005700e+02
+6 12057     -1.670001e+01 1.275500e+02
+12 12057     5.169983e+00 1.817900e+02
+2 12058     1.598500e+02 1.143800e+02
+3 12058     6.490002e+01 -2.005700e+02
+5 12058     6.827400e+02 -5.720400e+02
+6 12058     -1.670001e+01 1.275500e+02
+10 12058     -4.632001e+01 2.456800e+02
+12 12058     5.169983e+00 1.817900e+02
+15 12058     1.970001e+01 2.606800e+02
+2 12059     -3.931800e+02 1.142100e+02
+9 12059     -4.799200e+02 1.592300e+02
+14 12059     1.986200e+02 -3.673500e+02
+2 12060     5.538199e+02 1.139400e+02
+3 12060     4.154399e+02 -1.971500e+02
+6 12060     4.736000e+02 2.782100e+02
+9 12060     3.346000e+02 1.962200e+02
+12 12060     5.555000e+02 2.882600e+02
+13 12060     8.488000e+02 -9.160999e+01
+2 12061     6.937400e+02 1.134200e+02
+9 12061     4.521899e+02 2.008600e+02
+10 12061     7.847400e+02 2.851500e+02
+2 12062     5.421600e+02 1.132900e+02
+15 12062     8.357100e+02 3.886000e+02
+2 12063     9.704999e+01 1.115000e+02
+5 12063     6.229000e+02 -5.533000e+02
+6 12063     -8.145999e+01 1.310700e+02
+10 12063     -9.667999e+01 2.632400e+02
+15 12063     -3.859998e+01 2.803500e+02
+2 12064     -6.069700e+02 1.108500e+02
+5 12064     7.431000e+01 -2.783000e+02
+7 12064     -5.365700e+02 4.060800e+02
+10 12064     -5.243300e+02 5.619600e+02
+2 12065     -4.763500e+02 1.107100e+02
+7 12065     -4.085700e+02 4.188300e+02
+10 12065     -3.713800e+02 5.708300e+02
+12 12065     -5.037700e+02 3.312000e+02
+2 12066     1.613000e+01 1.108100e+02
+3 12066     -7.617999e+01 -2.080900e+02
+2 12067     -4.812400e+02 1.107700e+02
+10 12067     -3.770900e+02 5.705100e+02
+2 12068     2.142400e+02 1.099000e+02
+6 12068     3.994000e+01 1.194900e+02
+2 12069     -6.480000e+02 1.088800e+02
+8 12069     -4.512800e+02 7.260999e+01
+10 12069     -5.705600e+02 5.571000e+02
+2 12070     2.517600e+02 1.091600e+02
+5 12070     7.783500e+02 -6.041700e+02
+6 12070     8.025000e+01 1.192100e+02
+10 12070     3.988000e+01 2.176800e+02
+12 12070     1.018500e+02 1.712100e+02
+15 12070     1.203500e+02 2.292300e+02
+2 12071     6.231899e+02 1.087900e+02
+10 12071     7.104900e+02 3.093300e+02
+2 12072     -5.900700e+02 1.078200e+02
+7 12072     -5.202200e+02 4.043000e+02
+10 12072     -5.045700e+02 5.596400e+02
+2 12073     2.361600e+02 1.071800e+02
+6 12073     6.294000e+01 1.164200e+02
+7 12073     1.116998e+01 1.881400e+02
+8 12073     2.266800e+02 4.114999e+01
+12 12073     8.416998e+01 1.687500e+02
+2 12074     -6.147300e+02 1.068100e+02
+10 12074     -5.328600e+02 5.572600e+02
+2 12075     -6.147300e+02 1.068100e+02
+12 12075     -6.579700e+02 3.082900e+02
+2 12076     2.437100e+02 1.054700e+02
+13 12076     4.646400e+02 -1.665900e+02
+2 12077     -3.714700e+02 1.050000e+02
+6 12077     -5.626000e+02 3.301600e+02
+2 12078     9.835999e+01 1.048500e+02
+6 12078     -8.031000e+01 1.219900e+02
+10 12078     -9.907001e+01 2.538700e+02
+15 12078     -4.146002e+01 2.691600e+02
+2 12079     4.910500e+02 1.047500e+02
+6 12079     4.040700e+02 2.773000e+02
+10 12079     5.773101e+02 3.573600e+02
+12 12079     4.895601e+02 2.866700e+02
+2 12080     5.083101e+02 1.045900e+02
+3 12080     3.720100e+02 -2.085500e+02
+6 12080     4.233900e+02 2.739300e+02
+8 12080     4.767600e+02 5.709000e+01
+9 12080     2.965000e+02 1.867800e+02
+12 12080     5.078000e+02 2.837500e+02
+15 12080     7.940900e+02 3.923400e+02
+2 12081     7.088300e+02 1.045800e+02
+10 12081     7.986801e+02 2.699500e+02
+12 12081     7.218300e+02 2.571400e+02
+2 12082     7.088300e+02 1.045800e+02
+10 12082     7.986801e+02 2.699500e+02
+12 12082     7.218300e+02 2.571400e+02
+2 12083     3.406300e+02 1.041200e+02
+4 12083     -2.744500e+02 -5.830000e+02
+7 12083     1.180700e+02 1.851300e+02
+13 12083     5.510100e+02 -1.722700e+02
+15 12083     2.497300e+02 2.180300e+02
+2 12084     3.662000e+01 1.036600e+02
+5 12084     5.683800e+02 -5.387500e+02
+6 12084     -1.429700e+02 1.315800e+02
+2 12085     5.340601e+02 1.029500e+02
+6 12085     4.511801e+02 2.694200e+02
+2 12086     4.985400e+02 1.015600e+02
+6 12086     4.123100e+02 2.729200e+02
+8 12086     4.683800e+02 5.512000e+01
+9 12086     2.879500e+02 1.839400e+02
+10 12086     5.840500e+02 3.509700e+02
+12 12086     4.973199e+02 2.825100e+02
+2 12087     6.092700e+02 1.014500e+02
+6 12087     5.340000e+02 2.575700e+02
+8 12087     5.599700e+02 5.148999e+01
+9 12087     3.819900e+02 1.878500e+02
+10 12087     6.939399e+02 3.073400e+02
+12 12087     6.143600e+02 2.676000e+02
+2 12088     6.092700e+02 1.014500e+02
+8 12088     5.599700e+02 5.148999e+01
+9 12088     3.819900e+02 1.878500e+02
+10 12088     6.939399e+02 3.073400e+02
+12 12088     6.143600e+02 2.676000e+02
+2 12089     7.168199e+02 1.016000e+02
+9 12089     4.712000e+02 1.916600e+02
+2 12090     -5.874400e+02 1.011100e+02
+10 12090     -5.010500e+02 5.530900e+02
+12 12090     -6.270900e+02 3.057700e+02
+2 12091     2.007600e+02 1.007200e+02
+13 12091     4.295400e+02 -1.653600e+02
+2 12092     5.566600e+02 1.006300e+02
+3 12092     4.189500e+02 -2.097500e+02
+6 12092     4.761500e+02 2.639300e+02
+7 12092     4.761801e+02 2.850900e+02
+8 12092     5.160900e+02 5.257999e+01
+9 12092     3.373400e+02 1.854400e+02
+13 12092     8.499399e+02 -1.030500e+02
+2 12093     6.133700e+02 1.003300e+02
+6 12093     5.384800e+02 2.558100e+02
+10 12093     6.984399e+02 3.041600e+02
+12 12093     6.173101e+02 2.658000e+02
+2 12094     6.133700e+02 1.003300e+02
+6 12094     5.384800e+02 2.558100e+02
+10 12094     6.984399e+02 3.041600e+02
+2 12095     -6.513400e+02 9.965002e+01
+7 12095     -5.784300e+02 3.922400e+02
+10 12095     -5.736600e+02 5.482300e+02
+2 12096     -6.560300e+02 9.907001e+01
+10 12096     -5.793100e+02 5.474700e+02
+2 12097     -8.365997e+01 9.910999e+01
+7 12097     -3.310999e+01 4.199400e+02
+2 12098     4.593700e+02 9.883002e+01
+15 12098     7.361100e+02 4.066800e+02
+2 12099     6.236400e+02 9.884003e+01
+9 12099     3.948000e+02 1.864000e+02
+10 12099     7.092500e+02 2.983800e+02
+2 12100     8.641998e+01 9.679999e+01
+10 12100     -1.118900e+02 2.479200e+02
+2 12101     9.128998e+01 9.662000e+01
+5 12101     6.125000e+02 -5.693101e+02
+6 12101     -8.832999e+01 1.120500e+02
+8 12101     1.092300e+02 3.553000e+01
+10 12101     -1.088200e+02 2.456800e+02
+12 12101     -6.465002e+01 1.669200e+02
+15 12101     -5.285999e+01 2.593800e+02
+2 12102     2.823999e+01 9.609998e+01
+5 12102     5.588000e+02 -5.441400e+02
+6 12102     -1.517300e+02 1.233700e+02
+2 12103     1.006100e+02 9.240002e+01
+6 12103     -7.869000e+01 1.054800e+02
+2 12104     2.569301e+02 9.133002e+01
+6 12104     8.422998e+01 9.702002e+01
+10 12104     3.690997e+01 1.942900e+02
+12 12104     1.041000e+02 1.487600e+02
+2 12105     5.382000e+02 9.165002e+01
+6 12105     4.558300e+02 2.568000e+02
+2 12106     7.283000e+02 9.131000e+01
+10 12106     8.160900e+02 2.477200e+02
+12 12106     7.415500e+02 2.390000e+02
+2 12107     4.490002e+01 9.079999e+01
+6 12107     -1.358900e+02 1.127500e+02
+2 12108     -4.234500e+02 8.989001e+01
+12 12108     -4.424800e+02 3.175400e+02
+2 12109     -3.839100e+02 8.917999e+01
+6 12109     -5.761100e+02 3.104100e+02
+12 12109     -3.979900e+02 3.221100e+02
+2 12110     7.006300e+02 8.858002e+01
+10 12110     7.864100e+02 2.560500e+02
+2 12111     2.272500e+02 8.688000e+01
+6 12111     5.215997e+01 9.067999e+01
+8 12111     2.180900e+02 2.401999e+01
+12 12111     7.053003e+01 1.435300e+02
+2 12112     2.188000e+02 8.629999e+01
+6 12112     4.307001e+01 9.037000e+01
+10 12112     -4.809998e+00 1.962500e+02
+12 12112     6.103998e+01 1.434200e+02
+15 12112     6.802002e+01 2.033000e+02
+2 12113     -4.271200e+02 8.557001e+01
+7 12113     -3.580000e+02 4.024500e+02
+14 12113     1.620400e+02 -3.929600e+02
+2 12114     2.455500e+02 8.566998e+01
+8 12114     2.330000e+02 2.260001e+01
+10 12114     2.222998e+01 1.895100e+02
+12 12114     9.019000e+01 1.418600e+02
+15 12114     9.938000e+01 1.960100e+02
+2 12115     3.599100e+02 8.559998e+01
+8 12115     3.302700e+02 2.307999e+01
+2 12116     6.160800e+02 8.559003e+01
+12 12116     6.211500e+02 2.491600e+02
+2 12117     5.964100e+02 8.471002e+01
+6 12117     5.192800e+02 2.423400e+02
+12 12117     5.997200e+02 2.528200e+02
+2 12118     5.964100e+02 8.471002e+01
+6 12118     5.192800e+02 2.423400e+02
+12 12118     5.997200e+02 2.528200e+02
+2 12119     -6.495300e+02 8.459003e+01
+7 12119     -5.753800e+02 3.800900e+02
+10 12119     -5.708000e+02 5.334000e+02
+12 12119     -6.943100e+02 2.809500e+02
+15 12119     -5.737300e+02 5.810900e+02
+2 12120     -6.222100e+02 8.456000e+01
+10 12120     -5.397800e+02 5.344900e+02
+12 12120     -6.640300e+02 2.846000e+02
+2 12121     6.716500e+02 8.409003e+01
+10 12121     7.544600e+02 2.637500e+02
+12 12121     6.800601e+02 2.399500e+02
+2 12122     6.716500e+02 8.409003e+01
+10 12122     7.544600e+02 2.637500e+02
+12 12122     6.800601e+02 2.399500e+02
+2 12123     4.868300e+02 8.319000e+01
+6 12123     3.992900e+02 2.548600e+02
+7 12123     4.154800e+02 2.857300e+02
+10 12123     5.699600e+02 3.357800e+02
+15 12123     7.654900e+02 3.746200e+02
+2 12124     1.906500e+02 8.262000e+01
+5 12124     7.032000e+02 -6.194399e+02
+6 12124     1.322998e+01 8.569000e+01
+10 12124     -3.406000e+01 1.968800e+02
+15 12124     3.406000e+01 2.042300e+02
+2 12125     1.906500e+02 8.262000e+01
+6 12125     1.322998e+01 8.569000e+01
+2 12126     4.525200e+02 8.253003e+01
+6 12126     3.612300e+02 2.583000e+02
+12 12126     4.490699e+02 2.681400e+02
+15 12126     7.251500e+02 3.882400e+02
+2 12127     4.768300e+02 8.246997e+01
+3 12127     3.421700e+02 -2.306100e+02
+6 12127     3.884500e+02 2.548600e+02
+9 12127     2.700100e+02 1.669300e+02
+15 12127     7.533101e+02 3.784700e+02
+2 12128     1.702500e+02 8.083002e+01
+5 12128     6.822900e+02 -6.149399e+02
+6 12128     -8.030029e+00 8.465002e+01
+10 12128     -5.260999e+01 2.009000e+02
+12 12128     9.340027e+00 1.389200e+02
+15 12128     1.215997e+01 2.082600e+02
+2 12129     3.467500e+02 8.031000e+01
+3 12129     2.422900e+02 -2.286700e+02
+6 12129     1.834300e+02 9.428003e+01
+8 12129     3.189000e+02 1.845999e+01
+12 12129     2.095200e+02 1.413300e+02
+13 12129     5.493700e+02 -1.958800e+02
+2 12130     4.497500e+02 8.066998e+01
+6 12130     3.584800e+02 2.573400e+02
+15 12130     7.219399e+02 3.878900e+02
+2 12131     6.390100e+02 7.996002e+01
+8 12131     5.846200e+02 3.257999e+01
+2 12132     6.550699e+02 7.967999e+01
+3 12132     5.159500e+02 -2.263800e+02
+6 12132     5.833199e+02 2.285500e+02
+10 12132     7.367500e+02 2.648900e+02
+12 12132     6.619900e+02 2.385000e+02
+2 12133     6.123800e+02 7.773999e+01
+8 12133     5.620800e+02 3.206000e+01
+12 12133     6.161400e+02 2.418800e+02
+2 12134     -5.733600e+02 7.651001e+01
+10 12134     -4.827700e+02 5.308700e+02
+12 12134     -6.085300e+02 2.839800e+02
+2 12135     -4.709900e+02 7.663000e+01
+14 12135     1.181200e+02 -4.001800e+02
+2 12136     6.724100e+02 7.632001e+01
+3 12136     5.328600e+02 -2.290200e+02
+7 12136     5.737800e+02 2.352700e+02
+2 12137     -4.155100e+02 7.583002e+01
+7 12137     -3.451900e+02 3.955800e+02
+9 12137     -4.971100e+02 1.241200e+02
+14 12137     1.732900e+02 -4.015000e+02
+2 12138     -4.155100e+02 7.583002e+01
+14 12138     1.732900e+02 -4.015000e+02
+2 12139     2.723199e+02 7.584003e+01
+10 12139     4.654999e+01 1.734000e+02
+2 12140     -5.269100e+02 7.482001e+01
+7 12140     -4.538900e+02 3.853200e+02
+2 12141     6.260601e+02 7.508002e+01
+6 12141     5.510300e+02 2.269200e+02
+9 12141     3.960500e+02 1.662500e+02
+2 12142     6.600200e+02 7.479999e+01
+7 12142     5.625400e+02 2.366400e+02
+2 12143     6.509700e+02 7.276001e+01
+10 12143     7.306400e+02 2.587900e+02
+2 12144     6.850400e+02 7.241998e+01
+9 12144     4.461700e+02 1.663800e+02
+10 12144     7.659000e+02 2.455100e+02
+2 12145     -6.845900e+02 7.203998e+01
+15 12145     -6.167200e+02 5.637700e+02
+2 12146     4.903998e+01 7.210999e+01
+5 12146     5.684600e+02 -5.805699e+02
+6 12146     -1.319300e+02 8.853998e+01
+10 12146     -1.476500e+02 2.324600e+02
+12 12146     -1.068500e+02 1.440400e+02
+15 12146     -9.739001e+01 2.434200e+02
+2 12147     -6.639900e+02 7.140002e+01
+5 12147     1.796002e+01 -3.097000e+02
+2 12148     6.483900e+02 7.100000e+01
+3 12148     5.097300e+02 -2.347400e+02
+6 12148     5.757700e+02 2.197400e+02
+10 12148     7.277900e+02 2.588800e+02
+2 12149     -6.381900e+02 7.012000e+01
+7 12149     -5.639300e+02 3.688500e+02
+11 12149     -1.720200e+02 -4.008100e+02
+2 12150     4.959100e+02 6.902002e+01
+10 12150     5.763700e+02 3.175400e+02
+15 12150     7.733101e+02 3.534400e+02
+2 12151     4.959100e+02 6.902002e+01
+10 12151     5.763700e+02 3.175400e+02
+15 12151     7.733101e+02 3.534400e+02
+2 12152     -6.108800e+02 6.821997e+01
+10 12152     -5.250100e+02 5.192900e+02
+2 12153     5.212500e+02 6.848999e+01
+10 12153     6.005699e+02 3.077500e+02
+15 12153     8.022000e+02 3.420400e+02
+2 12154     2.248600e+02 6.672998e+01
+15 12154     6.591998e+01 1.743000e+02
+2 12155     3.981100e+02 6.659998e+01
+8 12155     3.625900e+02 8.549988e+00
+2 12156     2.822900e+02 6.582001e+01
+10 12156     5.314001e+01 1.599200e+02
+2 12157     5.019800e+02 6.516998e+01
+6 12157     4.151200e+02 2.338900e+02
+8 12157     4.715400e+02 2.547000e+01
+12 12157     5.000300e+02 2.442600e+02
+2 12158     -6.033600e+02 6.440997e+01
+12 12158     -6.405400e+02 2.678700e+02
+2 12159     -6.033600e+02 6.440997e+01
+10 12159     -5.157700e+02 5.176000e+02
+11 12159     -1.417300e+02 -4.056700e+02
+15 12159     -5.103000e+02 5.638700e+02
+2 12160     4.676000e+02 6.396002e+01
+15 12160     7.392300e+02 3.595000e+02
+2 12161     2.225200e+02 6.359998e+01
+7 12161     -1.301001e+01 1.432700e+02
+9 12161     7.488000e+01 1.464400e+02
+2 12162     -6.484400e+02 6.338000e+01
+11 12162     -1.797500e+02 -4.047300e+02
+2 12163     -4.272200e+02 6.190002e+01
+15 12163     -2.725300e+02 5.787500e+02
+2 12164     -1.091600e+02 6.227002e+01
+13 12164     3.132300e+02 -2.001953e-02
+2 12165     -1.091600e+02 6.227002e+01
+13 12165     3.132300e+02 -2.001953e-02
+14 12165     4.666801e+02 -4.542000e+02
+2 12166     2.199301e+02 6.179999e+01
+4 12166     -2.701700e+02 -4.691400e+02
+2 12167     5.969000e+02 6.182001e+01
+10 12167     6.735800e+02 2.706700e+02
+2 12168     -5.620000e+02 6.073999e+01
+5 12168     1.113100e+02 -3.236700e+02
+2 12169     -5.620000e+02 6.073999e+01
+5 12169     1.113100e+02 -3.236700e+02
+2 12170     -4.070300e+02 5.982001e+01
+11 12170     3.090002e+01 -4.127200e+02
+2 12171     -1.262500e+02 5.976001e+01
+6 12171     -2.770700e+02 2.873300e+02
+2 12172     3.069100e+02 5.871997e+01
+15 12172     1.685000e+02 1.492900e+02
+2 12173     3.069100e+02 5.871997e+01
+15 12173     1.685000e+02 1.492900e+02
+2 12174     6.971200e+02 5.756000e+01
+9 12174     4.557800e+02 1.542200e+02
+2 12175     1.012400e+02 5.475000e+01
+3 12175     1.160999e+01 -2.587400e+02
+5 12175     6.092300e+02 -6.199399e+02
+6 12175     -7.995001e+01 6.009003e+01
+10 12175     -1.173600e+02 1.928800e+02
+12 12175     -6.138000e+01 1.157600e+02
+15 12175     -6.239001e+01 1.975100e+02
+2 12176     3.592999e+01 5.387000e+01
+6 12176     -1.459200e+02 6.900000e+01
+2 12177     -6.014100e+02 5.221002e+01
+7 12177     -5.263400e+02 3.582500e+02
+2 12178     -6.014100e+02 5.221002e+01
+7 12178     -5.263400e+02 3.582500e+02
+2 12179     4.844900e+02 5.197998e+01
+6 12179     3.953400e+02 2.227800e+02
+8 12179     4.560300e+02 1.592999e+01
+12 12179     4.808300e+02 2.331000e+02
+15 12179     7.570601e+02 3.371700e+02
+2 12180     -5.957600e+02 5.187000e+01
+15 12180     -4.992100e+02 5.513100e+02
+2 12181     1.602900e+02 5.148999e+01
+6 12181     -1.991998e+01 5.067999e+01
+12 12181     -4.440002e+00 1.050300e+02
+15 12181     -1.001001e+01 1.712300e+02
+2 12182     4.821899e+02 4.934003e+01
+3 12182     3.482900e+02 -2.624700e+02
+6 12182     3.933200e+02 2.199300e+02
+9 12182     2.758300e+02 1.395600e+02
+15 12182     7.541700e+02 3.352800e+02
+2 12183     6.242800e+02 4.957001e+01
+6 12183     5.480400e+02 2.008800e+02
+9 12183     3.952600e+02 1.450100e+02
+2 12184     5.299600e+02 4.894000e+01
+6 12184     4.450800e+02 2.133400e+02
+2 12185     1.392300e+02 4.878998e+01
+6 12185     -4.139001e+01 4.916998e+01
+10 12185     -8.946002e+01 1.732900e+02
+15 12185     -3.038000e+01 1.749100e+02
+2 12186     6.602900e+02 4.778003e+01
+9 12186     4.256100e+02 1.443500e+02
+10 12186     7.344200e+02 2.292500e+02
+12 12186     6.659900e+02 2.020600e+02
+2 12187     1.454200e+02 4.590997e+01
+3 12187     5.552002e+01 -2.659400e+02
+6 12187     -3.532001e+01 4.528998e+01
+7 12187     -8.025000e+01 1.372600e+02
+12 12187     -1.959003e+01 1.004900e+02
+15 12187     -2.533002e+01 1.694700e+02
+2 12188     1.454200e+02 4.590997e+01
+12 12188     -1.959003e+01 1.004900e+02
+15 12188     -2.533002e+01 1.694700e+02
+2 12189     1.908900e+02 4.600000e+01
+6 12189     1.178998e+01 4.277002e+01
+10 12189     -4.571997e+01 1.558000e+02
+2 12190     -5.834800e+02 4.506000e+01
+7 12190     -5.081800e+02 3.541500e+02
+15 12190     -4.820900e+02 5.447500e+02
+2 12191     -1.473999e+01 4.485999e+01
+3 12191     -1.040000e+02 -2.717300e+02
+2 12192     9.570001e+01 4.444000e+01
+6 12192     -8.610999e+01 4.846002e+01
+2 12193     9.570001e+01 4.444000e+01
+6 12193     -8.610999e+01 4.846002e+01
+10 12193     -1.248600e+02 1.827700e+02
+2 12194     2.715200e+02 4.440002e+01
+15 12194     1.139600e+02 1.350000e+02
+2 12195     6.473101e+02 4.398999e+01
+6 12195     5.731700e+02 1.919600e+02
+8 12195     5.901899e+02 3.420013e+00
+10 12195     7.205000e+02 2.317400e+02
+12 12195     6.520500e+02 2.013900e+02
+2 12196     1.743400e+02 4.329999e+01
+6 12196     -5.239990e+00 4.044000e+01
+10 12196     -6.117999e+01 1.571800e+02
+15 12196     2.409973e+00 1.565800e+02
+2 12197     6.081000e+01 4.319000e+01
+8 12197     8.302002e+01 -8.010010e+00
+2 12198     6.081000e+01 4.319000e+01
+8 12198     8.302002e+01 -8.010010e+00
+2 12199     5.815997e+01 4.188000e+01
+5 12199     5.675400e+02 -6.175699e+02
+6 12199     -1.241800e+02 5.097998e+01
+2 12200     2.746899e+02 4.213000e+01
+9 12200     1.188500e+02 1.306300e+02
+15 12200     1.169500e+02 1.310300e+02
+2 12201     6.543600e+02 4.153003e+01
+6 12201     5.811500e+02 1.879500e+02
+9 12201     4.207100e+02 1.394500e+02
+12 12201     6.595300e+02 1.974800e+02
+2 12202     6.543600e+02 4.153003e+01
+6 12202     5.811500e+02 1.879500e+02
+9 12202     4.207100e+02 1.394500e+02
+12 12202     6.595300e+02 1.974800e+02
+2 12203     1.489100e+02 3.992999e+01
+6 12203     -3.204999e+01 3.782001e+01
+15 12203     -2.456000e+01 1.596500e+02
+2 12204     3.906600e+02 4.014001e+01
+3 12204     2.847600e+02 -2.657400e+02
+6 12204     2.296700e+02 5.540002e+01
+12 12204     2.583000e+02 9.858002e+01
+2 12205     2.109399e+02 3.965002e+01
+15 12205     4.052002e+01 1.415100e+02
+2 12206     2.109399e+02 3.965002e+01
+15 12206     4.052002e+01 1.415100e+02
+2 12207     2.198700e+02 3.910999e+01
+6 12207     4.238000e+01 3.434998e+01
+10 12207     -2.015002e+01 1.410400e+02
+12 12207     5.660999e+01 8.712000e+01
+15 12207     5.027002e+01 1.384100e+02
+2 12208     2.633600e+02 3.728003e+01
+4 12208     -2.979800e+02 -4.924700e+02
+10 12208     2.325000e+01 1.307600e+02
+15 12208     1.010900e+02 1.266300e+02
+2 12209     2.378600e+02 3.671002e+01
+7 12209     -4.599976e+00 1.154700e+02
+10 12209     -3.270020e+00 1.349800e+02
+2 12210     5.226000e+02 3.677002e+01
+6 12210     4.365400e+02 2.015900e+02
+10 12210     5.963101e+02 2.743500e+02
+15 12210     7.976400e+02 3.019300e+02
+2 12211     7.884998e+01 3.513000e+01
+6 12211     -1.032500e+02 4.031000e+01
+2 12212     1.469400e+02 3.427002e+01
+6 12212     -3.396002e+01 3.214001e+01
+10 12212     -8.746002e+01 1.550400e+02
+12 12212     -1.929999e+01 8.684003e+01
+15 12212     -2.760999e+01 1.535800e+02
+2 12213     1.469400e+02 3.427002e+01
+6 12213     -3.396002e+01 3.214001e+01
+8 12213     1.501300e+02 -1.832999e+01
+10 12213     -8.746002e+01 1.550400e+02
+12 12213     -1.929999e+01 8.684003e+01
+15 12213     -2.760999e+01 1.535800e+02
+2 12214     1.469400e+02 3.427002e+01
+10 12214     -8.746002e+01 1.550400e+02
+2 12215     5.067900e+02 3.331000e+01
+6 12215     4.188000e+02 2.002800e+02
+7 12215     4.273900e+02 2.376700e+02
+2 12216     2.940200e+02 3.215002e+01
+15 12216     1.381900e+02 1.153700e+02
+2 12217     6.565500e+02 3.214001e+01
+3 12217     5.200300e+02 -2.714200e+02
+7 12217     5.545900e+02 2.008400e+02
+8 12217     5.987800e+02 -6.309998e+00
+10 12217     7.273000e+02 2.155500e+02
+2 12218     6.528500e+02 3.153003e+01
+3 12218     5.163300e+02 -2.727800e+02
+6 12218     5.784700e+02 1.782500e+02
+7 12218     5.512900e+02 2.009200e+02
+9 12218     4.197300e+02 1.312000e+02
+10 12218     7.233300e+02 2.165100e+02
+12 12218     6.569399e+02 1.878000e+02
+2 12219     6.965300e+02 3.059998e+01
+9 12219     4.563000e+02 1.318300e+02
+12 12219     7.040200e+02 1.800500e+02
+2 12220     6.965300e+02 3.059998e+01
+9 12220     4.563000e+02 1.318300e+02
+2 12221     3.941400e+02 3.007001e+01
+3 12221     2.889700e+02 -2.751800e+02
+2 12222     3.941400e+02 3.007001e+01
+3 12222     2.889700e+02 -2.751800e+02
+2 12223     3.985699e+02 2.896002e+01
+3 12223     2.928800e+02 -2.765400e+02
+6 12223     2.379200e+02 4.444000e+01
+2 12224     5.198700e+02 2.870001e+01
+6 12224     4.335699e+02 1.932500e+02
+10 12224     5.919000e+02 2.672500e+02
+12 12224     5.174399e+02 2.032400e+02
+2 12225     6.774900e+02 2.720001e+01
+3 12225     5.396600e+02 -2.754400e+02
+7 12225     5.715400e+02 1.913400e+02
+9 12225     4.402600e+02 1.286800e+02
+2 12226     8.130601e+02 2.710999e+01
+7 12226     6.901700e+02 1.557500e+02
+2 12227     1.510200e+02 2.671997e+01
+6 12227     -3.009003e+01 2.397998e+01
+2 12228     5.245200e+02 2.633002e+01
+6 12228     4.383800e+02 1.901400e+02
+12 12228     5.220400e+02 2.002500e+02
+2 12229     -3.797300e+02 2.540997e+01
+7 12229     -3.175200e+02 3.479300e+02
+10 12229     -2.674200e+02 4.826100e+02
+11 12229     4.159998e+01 -4.469300e+02
+14 12229     1.984100e+02 -4.559900e+02
+2 12230     -1.027500e+02 2.570001e+01
+3 12230     -2.018400e+02 -2.952400e+02
+2 12231     4.015400e+02 2.560999e+01
+13 12231     5.910100e+02 -2.434300e+02
+2 12232     6.836200e+02 2.548999e+01
+7 12232     5.776500e+02 1.879300e+02
+2 12233     2.570900e+02 2.515002e+01
+6 12233     8.087000e+01 1.948999e+01
+10 12233     1.290002e+01 1.186500e+02
+2 12234     1.912600e+02 2.434003e+01
+6 12234     1.152002e+01 1.901001e+01
+10 12234     -5.104999e+01 1.321200e+02
+15 12234     1.416998e+01 1.274600e+02
+2 12235     7.129399e+02 2.439001e+01
+3 12235     5.753700e+02 -2.760000e+02
+9 12235     4.701500e+02 1.276800e+02
+10 12235     7.844700e+02 1.853400e+02
+2 12236     -6.352400e+02 2.394000e+01
+7 12236     -5.561300e+02 3.321000e+02
+8 12236     -4.396000e+02 6.859985e+00
+2 12237     5.968700e+02 2.323999e+01
+6 12237     5.174900e+02 1.776600e+02
+8 12237     5.491100e+02 -1.123001e+01
+9 12237     3.735000e+02 1.224700e+02
+10 12237     6.661000e+02 2.307700e+02
+12 12237     5.980200e+02 1.872500e+02
+15 12237     8.818000e+02 2.510600e+02
+2 12238     -6.660999e+01 2.131000e+01
+5 12238     4.737500e+02 -5.701899e+02
+6 12238     -2.452600e+02 7.098999e+01
+10 12238     -2.039700e+02 2.477100e+02
+12 12238     -1.968400e+02 1.234100e+02
+15 12238     -1.588900e+02 2.592700e+02
+2 12239     1.456300e+02 2.116998e+01
+3 12239     5.671002e+01 -2.896800e+02
+6 12239     -3.532001e+01 1.753003e+01
+8 12239     1.492500e+02 -2.938000e+01
+10 12239     -9.153003e+01 1.414800e+02
+15 12239     -3.245001e+01 1.378700e+02
+2 12240     1.860200e+02 2.046997e+01
+6 12240     5.700012e+00 1.473999e+01
+12 12240     1.882001e+01 6.825000e+01
+15 12240     7.580017e+00 1.241000e+02
+2 12241     -4.778600e+02 1.992999e+01
+15 12241     -3.395600e+02 5.275300e+02
+2 12242     8.284003e+01 1.928003e+01
+6 12242     -9.920001e+01 2.192999e+01
+8 12242     9.896002e+01 -2.897000e+01
+15 12242     -8.850000e+01 1.592500e+02
+2 12243     1.793500e+02 1.841998e+01
+3 12243     8.952002e+01 -2.910000e+02
+15 12243     -1.300049e-01 1.237800e+02
+2 12244     4.014800e+02 1.841998e+01
+10 12244     1.939900e+02 1.031200e+02
+15 12244     3.042800e+02 9.603000e+01
+2 12245     2.773900e+02 1.833002e+01
+6 12245     1.020900e+02 1.262000e+01
+15 12245     1.125200e+02 9.942999e+01
+2 12246     -1.309200e+02 1.684003e+01
+5 12246     4.284500e+02 -5.390900e+02
+6 12246     -3.097200e+02 8.884998e+01
+10 12246     -2.261900e+02 2.835500e+02
+2 12247     -7.846997e+01 1.671002e+01
+6 12247     -2.587700e+02 6.233002e+01
+10 12247     -2.197200e+02 2.410400e+02
+12 12247     -2.115400e+02 1.155800e+02
+15 12247     -1.779700e+02 2.512000e+02
+2 12248     1.749500e+02 1.671002e+01
+12 12248     7.169983e+00 6.472998e+01
+15 12248     -4.890015e+00 1.228700e+02
+2 12249     7.466500e+02 1.577002e+01
+3 12249     6.084301e+02 -2.840100e+02
+7 12249     6.308199e+02 1.636600e+02
+9 12249     4.981400e+02 1.215900e+02
+2 12250     1.714800e+02 1.565002e+01
+3 12250     8.196997e+01 -2.939000e+02
+6 12250     -9.099976e+00 1.042999e+01
+10 12250     -7.084998e+01 1.285300e+02
+12 12250     3.700012e+00 6.421002e+01
+15 12250     -8.530029e+00 1.227800e+02
+2 12251     1.516500e+02 1.496997e+01
+7 12251     -8.002002e+01 1.073300e+02
+10 12251     -8.782001e+01 1.333800e+02
+15 12251     -2.788000e+01 1.290400e+02
+2 12252     6.908300e+02 1.440997e+01
+3 12252     5.546801e+02 -2.876600e+02
+9 12252     4.522200e+02 1.180100e+02
+12 12252     6.968500e+02 1.643400e+02
+2 12253     6.908300e+02 1.440997e+01
+3 12253     5.546801e+02 -2.876600e+02
+9 12253     4.522200e+02 1.180100e+02
+12 12253     6.968500e+02 1.643400e+02
+2 12254     7.445601e+02 1.420001e+01
+10 12254     8.142200e+02 1.593800e+02
+2 12255     2.255100e+02 1.201001e+01
+9 12255     8.001001e+01 1.034400e+02
+15 12255     4.820001e+01 1.030100e+02
+2 12256     3.533000e+02 1.220001e+01
+10 12256     1.220800e+02 9.425000e+01
+2 12257     6.324700e+02 1.108002e+01
+6 12257     5.546300e+02 1.595600e+02
+10 12257     6.989900e+02 2.037000e+02
+2 12258     1.635800e+02 1.071002e+01
+15 12258     -1.787000e+01 1.190800e+02
+2 12259     6.621100e+02 1.026001e+01
+3 12259     5.267200e+02 -2.932500e+02
+10 12259     7.285601e+02 1.911000e+02
+2 12260     3.445500e+02 7.729980e+00
+6 12260     1.743500e+02 8.150024e+00
+10 12260     1.081500e+02 8.860999e+01
+15 12260     2.018900e+02 7.787000e+01
+2 12261     3.445500e+02 7.729980e+00
+6 12261     1.743500e+02 8.150024e+00
+10 12261     1.081500e+02 8.860999e+01
+15 12261     2.018900e+02 7.787000e+01
+2 12262     2.372200e+02 6.330017e+00
+10 12262     -1.244000e+01 1.027800e+02
+2 12263     5.618700e+02 6.510010e+00
+6 12263     4.783900e+02 1.651200e+02
+2 12264     1.694400e+02 6.150024e+00
+3 12264     8.040997e+01 -3.032300e+02
+8 12264     1.679900e+02 -4.257001e+01
+9 12264     3.356000e+01 9.662000e+01
+10 12264     -7.454999e+01 1.189700e+02
+12 12264     8.400269e-01 5.342999e+01
+15 12264     -1.310999e+01 1.117800e+02
+2 12265     2.741600e+02 5.219971e+00
+10 12265     2.559998e+01 9.496002e+01
+2 12266     -6.278003e+01 5.179993e+00
+5 12266     4.684500e+02 -5.954900e+02
+6 12266     -2.423000e+02 4.354999e+01
+12 12266     -2.002400e+02 9.814001e+01
+2 12267     2.815800e+02 5.080017e+00
+10 12267     3.335999e+01 9.359003e+01
+15 12267     1.134700e+02 8.316000e+01
+2 12268     2.006300e+02 4.200012e+00
+3 12268     1.101300e+02 -3.039100e+02
+10 12268     -4.817999e+01 1.087500e+02
+15 12268     1.809003e+01 1.001700e+02
+2 12269     3.908800e+02 3.260010e+00
+7 12269     1.457300e+02 8.217001e+01
+2 12270     5.866899e+02 3.739990e+00
+3 12270     4.535200e+02 -3.033700e+02
+6 12270     5.054200e+02 1.582700e+02
+7 12270     4.918400e+02 1.922900e+02
+8 12270     5.401700e+02 -2.725000e+01
+2 12271     2.992600e+02 3.000000e+00
+10 12271     5.219000e+01 8.859003e+01
+2 12272     -4.824700e+02 1.429993e+00
+10 12272     -3.761400e+02 4.630700e+02
+13 12272     2.148999e+01 -2.301001e+01
+14 12272     9.946997e+01 -4.677500e+02
+2 12273     2.534100e+02 -1.099854e-01
+15 12273     7.703998e+01 8.157999e+01
+2 12274     6.838900e+02 3.002930e-02
+3 12274     5.489301e+02 -3.019400e+02
+9 12274     4.467700e+02 1.062100e+02
+12 12274     6.888900e+02 1.498100e+02
+2 12275     2.748400e+02 -2.899780e-01
+15 12275     1.035600e+02 7.715002e+01
+2 12276     6.060699e+02 -3.599854e-01
+8 12276     5.563000e+02 -3.160001e+01
+10 12276     6.699600e+02 2.028300e+02
+2 12277     -7.297998e+01 -9.899902e-01
+5 12277     4.552900e+02 -6.004800e+02
+6 12277     -2.543400e+02 3.454999e+01
+7 12277     -2.257600e+02 1.542500e+02
+12 12277     -2.135700e+02 9.032001e+01
+15 12277     -1.913000e+02 2.176500e+02
+2 12278     2.048800e+02 -1.409973e+00
+3 12278     1.146100e+02 -3.095300e+02
+10 12278     -4.540002e+01 1.018800e+02
+2 12279     6.332500e+02 -1.549988e+00
+3 12279     4.993700e+02 -3.057400e+02
+6 12279     5.560500e+02 1.459900e+02
+9 12279     4.044600e+02 1.025000e+02
+12 12279     6.350800e+02 1.555200e+02
+2 12280     6.878600e+02 -2.549988e+00
+9 12280     4.499800e+02 1.035900e+02
+12 12280     6.928600e+02 1.466600e+02
+2 12281     6.519800e+02 -3.909973e+00
+6 12281     5.763500e+02 1.411100e+02
+2 12282     7.501700e+02 -3.989990e+00
+7 12282     6.313900e+02 1.452300e+02
+10 12282     8.154100e+02 1.394800e+02
+2 12283     3.725200e+02 -4.609985e+00
+6 12283     2.049100e+02 2.700195e-01
+7 12283     1.230100e+02 7.367999e+01
+8 12283     3.364200e+02 -5.203000e+01
+12 12283     2.273300e+02 4.429999e+01
+2 12284     3.078900e+02 -5.020020e+00
+6 12284     1.336800e+02 -1.000000e+01
+2 12285     6.697100e+02 -5.650024e+00
+3 12285     5.352200e+02 -3.082700e+02
+10 12285     7.325601e+02 1.709500e+02
+12 12285     6.733400e+02 1.462200e+02
+2 12286     5.933600e+02 -5.729980e+00
+3 12286     4.606500e+02 -3.118600e+02
+6 12286     5.123199e+02 1.473200e+02
+15 12286     8.713900e+02 2.177900e+02
+2 12287     5.799301e+02 -6.390015e+00
+6 12287     4.981300e+02 1.485600e+02
+10 12287     6.438000e+02 2.068900e+02
+15 12287     8.557400e+02 2.227000e+02
+2 12288     -1.498900e+02 -7.479980e+00
+5 12288     3.975800e+02 -5.705800e+02
+9 12288     -2.422100e+02 6.962000e+01
+2 12289     -5.707001e+01 -7.500000e+00
+8 12289     -8.489990e+00 -4.413000e+01
+9 12289     -1.596600e+02 7.453998e+01
+2 12290     6.671000e+02 -7.450012e+00
+3 12290     5.324800e+02 -3.098100e+02
+12 12290     6.702100e+02 1.446400e+02
+2 12291     1.797000e+02 -8.469971e+00
+3 12291     9.103998e+01 -3.164600e+02
+7 12291     -6.102002e+01 8.082001e+01
+8 12291     1.755200e+02 -5.494000e+01
+9 12291     4.262000e+01 8.492999e+01
+10 12291     -6.917999e+01 1.015000e+02
+15 12291     -6.159973e+00 9.113000e+01
+2 12292     2.954301e+02 -8.739990e+00
+6 12292     1.201200e+02 -1.498999e+01
+10 12292     4.534003e+01 7.684998e+01
+15 12292     1.279700e+02 6.354999e+01
+2 12293     3.107500e+02 -9.729980e+00
+6 12293     1.365000e+02 -1.500000e+01
+15 12293     1.486899e+02 5.991998e+01
+2 12294     3.684900e+02 -1.071002e+01
+6 12294     2.003400e+02 -8.250000e+00
+2 12295     4.139900e+02 -1.109003e+01
+6 12295     2.532900e+02 3.059998e+00
+2 12296     -5.757001e+01 -1.208002e+01
+8 12296     -9.679993e+00 -4.826001e+01
+2 12297     6.949600e+02 -1.215997e+01
+3 12297     5.599399e+02 -3.138400e+02
+10 12297     7.562300e+02 1.533500e+02
+12 12297     6.992400e+02 1.356600e+02
+2 12298     -1.281000e+02 -1.358002e+01
+3 12298     -2.198600e+02 -3.332100e+02
+2 12299     -6.211700e+02 -1.517999e+01
+12 12299     -6.521600e+02 1.859000e+02
+2 12300     -5.719000e+01 -1.513000e+01
+8 12300     -8.890015e+00 -5.132999e+01
+2 12301     5.844100e+02 -1.492999e+01
+15 12301     8.590500e+02 2.105800e+02
+2 12302     2.339500e+02 -1.676001e+01
+8 12302     2.202700e+02 -6.270001e+01
+2 12303     -5.549000e+02 -1.738000e+01
+14 12303     2.838000e+01 -4.808900e+02
+2 12304     5.190000e+02 -1.751001e+01
+3 12304     4.019800e+02 -3.191600e+02
+2 12305     3.496899e+02 -1.903998e+01
+6 12305     1.790700e+02 -1.966998e+01
+10 12305     1.088000e+02 6.159998e+01
+12 12305     1.982900e+02 2.565002e+01
+15 12305     2.032800e+02 4.579999e+01
+2 12306     -3.602500e+02 -2.131000e+01
+13 12306     1.013300e+02 -5.964001e+01
+2 12307     -1.195100e+02 -2.216998e+01
+5 12307     4.180699e+02 -5.984399e+02
+6 12307     -2.998700e+02 2.559003e+01
+12 12307     -2.492700e+02 8.052002e+01
+2 12308     6.225200e+02 -2.217999e+01
+6 12308     5.434399e+02 1.263300e+02
+8 12308     5.693800e+02 -4.976001e+01
+12 12308     6.225500e+02 1.360400e+02
+2 12309     -2.001953e-02 -2.251001e+01
+3 12309     -8.621997e+01 -3.366400e+02
+6 12309     -1.816700e+02 -8.039978e+00
+2 12310     6.033900e+02 -2.222998e+01
+10 12310     6.631200e+02 1.824700e+02
+15 12310     8.800200e+02 1.930600e+02
+2 12311     6.033900e+02 -2.222998e+01
+10 12311     6.631200e+02 1.824700e+02
+2 12312     9.078998e+01 -2.282001e+01
+10 12312     -1.428800e+02 1.149700e+02
+2 12313     9.078998e+01 -2.282001e+01
+9 12313     -3.125000e+01 6.912000e+01
+10 12313     -1.428800e+02 1.149700e+02
+15 12313     -9.160999e+01 1.062900e+02
+2 12314     3.090900e+02 -2.379999e+01
+15 12314     1.427100e+02 4.398999e+01
+2 12315     6.264700e+02 -2.673999e+01
+3 12315     4.945300e+02 -3.307100e+02
+6 12315     5.476500e+02 1.212600e+02
+7 12315     5.220900e+02 1.563700e+02
+9 12315     3.990699e+02 8.106000e+01
+12 12315     6.263000e+02 1.310600e+02
+2 12316     5.850000e+01 -2.837000e+01
+3 12316     -2.658002e+01 -3.400800e+02
+6 12316     -1.237200e+02 -2.653003e+01
+2 12317     1.110700e+02 -2.875000e+01
+3 12317     2.534003e+01 -3.386300e+02
+2 12318     2.329900e+02 -2.888000e+01
+6 12318     5.375000e+01 -3.885999e+01
+10 12318     -2.389001e+01 6.834998e+01
+15 12318     4.732001e+01 5.257001e+01
+2 12319     5.161700e+02 -2.997998e+01
+8 12319     4.644200e+02 -6.877002e+01
+2 12320     2.945900e+02 -3.048999e+01
+7 12320     3.801001e+01 4.958002e+01
+2 12321     6.427000e+02 -3.258002e+01
+3 12321     5.106300e+02 -3.359000e+02
+6 12321     5.649000e+02 1.129900e+02
+12 12321     6.433199e+02 1.222600e+02
+2 12322     6.427000e+02 -3.258002e+01
+3 12322     5.106300e+02 -3.359000e+02
+6 12322     5.649000e+02 1.129900e+02
+8 12322     5.856600e+02 -5.942999e+01
+12 12322     6.433199e+02 1.222600e+02
+2 12323     5.915699e+02 -3.419000e+01
+12 12323     5.889399e+02 1.286600e+02
+2 12324     5.813101e+02 -3.678998e+01
+6 12324     4.982700e+02 1.165700e+02
+12 12324     5.790000e+02 1.267700e+02
+2 12325     5.934301e+02 -3.660999e+01
+12 12325     5.905500e+02 1.257800e+02
+2 12326     6.225300e+02 -3.657001e+01
+3 12326     4.914700e+02 -3.408400e+02
+6 12326     5.434100e+02 1.112200e+02
+7 12326     5.189700e+02 1.485400e+02
+8 12326     5.704900e+02 -6.253998e+01
+9 12326     3.973600e+02 7.244000e+01
+2 12327     6.225300e+02 -3.657001e+01
+3 12327     4.914700e+02 -3.408400e+02
+7 12327     5.189700e+02 1.485400e+02
+2 12328     7.510100e+02 -3.728998e+01
+7 12328     6.275699e+02 1.174100e+02
+2 12329     4.941998e+01 -3.862000e+01
+3 12329     -3.565997e+01 -3.499400e+02
+2 12330     4.237700e+02 -3.859998e+01
+3 12330     3.200100e+02 -3.405100e+02
+2 12331     -1.499300e+02 -3.920001e+01
+3 12331     -2.374400e+02 -3.572900e+02
+2 12332     1.046100e+02 -4.031000e+01
+3 12332     1.963000e+01 -3.498400e+02
+15 12332     -8.251001e+01 8.079999e+01
+2 12333     1.046100e+02 -4.031000e+01
+3 12333     1.963000e+01 -3.498400e+02
+2 12334     4.031899e+02 -4.040002e+01
+10 12334     1.789300e+02 4.057001e+01
+2 12335     2.320699e+02 -4.095001e+01
+6 12335     5.190002e+01 -5.125000e+01
+8 12335     2.175800e+02 -8.231000e+01
+9 12335     8.732001e+01 5.983002e+01
+10 12335     -2.616998e+01 5.670001e+01
+15 12335     4.420001e+01 3.904999e+01
+2 12336     2.523199e+02 -4.259998e+01
+10 12336     -6.469971e+00 5.084003e+01
+2 12337     -2.759998e+01 -4.287000e+01
+3 12337     -1.112600e+02 -3.564800e+02
+2 12338     1.115600e+02 -4.319000e+01
+8 12338     1.198100e+02 -8.126001e+01
+15 12338     -7.635999e+01 7.459003e+01
+2 12339     5.804200e+02 -4.301001e+01
+12 12339     5.780699e+02 1.208300e+02
+2 12340     6.776000e+02 -4.272998e+01
+10 12340     7.322300e+02 1.303200e+02
+2 12341     2.789100e+02 -4.338000e+01
+6 12341     1.014300e+02 -5.221997e+01
+8 12341     2.567200e+02 -8.560999e+01
+2 12342     3.253199e+02 -4.335999e+01
+15 12342     1.622600e+02 1.982001e+01
+2 12343     1.380800e+02 -4.667999e+01
+8 12343     1.411400e+02 -8.526001e+01
+15 12343     -5.288000e+01 6.084998e+01
+2 12344     3.961899e+02 -4.673999e+01
+10 12344     1.655100e+02 3.365997e+01
+15 12344     2.712600e+02 1.334998e+01
+2 12345     1.352600e+02 -4.742999e+01
+10 12345     -1.124900e+02 7.589001e+01
+15 12345     -5.560999e+01 6.094000e+01
+2 12346     5.913900e+02 -5.117999e+01
+12 12346     5.883400e+02 1.107300e+02
+2 12347     1.832100e+02 -5.135999e+01
+3 12347     9.632001e+01 -3.582200e+02
+6 12347     2.219971e+00 -6.100000e+01
+9 12347     4.746002e+01 4.927002e+01
+15 12347     -1.007001e+01 4.140002e+01
+2 12348     -1.248700e+02 -5.320001e+01
+8 12348     -6.365002e+01 -7.971997e+01
+2 12349     1.045700e+02 -5.464001e+01
+15 12349     -8.372998e+01 6.462000e+01
+2 12350     1.045700e+02 -5.464001e+01
+15 12350     -8.372998e+01 6.462000e+01
+2 12351     2.175300e+02 -5.582001e+01
+3 12351     1.294100e+02 -3.614400e+02
+8 12351     2.054900e+02 -9.417999e+01
+15 12351     2.642999e+01 2.620001e+01
+2 12352     -4.353003e+01 -5.628003e+01
+6 12352     -2.270700e+02 -4.613000e+01
+2 12353     7.171200e+02 -5.700000e+01
+3 12353     5.849600e+02 -3.562100e+02
+7 12353     5.956801e+02 1.082800e+02
+2 12354     3.494700e+02 -5.806000e+01
+3 12354     2.532400e+02 -3.606500e+02
+2 12355     2.381801e+02 -5.931000e+01
+6 12355     5.840002e+01 -6.975000e+01
+2 12356     3.237000e+02 -5.937000e+01
+6 12356     1.494800e+02 -6.416998e+01
+15 12356     1.574000e+02 2.140015e+00
+2 12357     3.237000e+02 -5.937000e+01
+8 12357     2.939800e+02 -9.766998e+01
+2 12358     6.042900e+02 -6.188000e+01
+3 12358     4.749399e+02 -3.661200e+02
+15 12358     8.728000e+02 1.452800e+02
+2 12359     1.630200e+02 -6.312000e+01
+3 12359     7.750000e+01 -3.701700e+02
+4 12359     -3.245400e+02 -4.050600e+02
+6 12359     -1.862000e+01 -7.179999e+01
+8 12359     1.611200e+02 -9.882001e+01
+10 12359     -9.112000e+01 5.364001e+01
+12 12359     -8.380005e+00 -1.914001e+01
+15 12359     -3.119000e+01 3.488000e+01
+2 12360     3.255000e+02 -6.384003e+01
+3 12360     2.315699e+02 -3.664300e+02
+6 12360     1.514700e+02 -6.867999e+01
+10 12360     7.175000e+01 2.010999e+01
+12 12360     1.672400e+02 -2.356000e+01
+15 12360     1.596700e+02 -3.200012e+00
+2 12361     8.576001e+01 -6.832001e+01
+6 12361     -9.723001e+01 -7.345001e+01
+12 12361     -8.467999e+01 -1.800000e+01
+2 12362     2.069100e+02 -6.966998e+01
+6 12362     2.590002e+01 -7.970001e+01
+10 12362     -5.342999e+01 3.596997e+01
+15 12362     1.308002e+01 1.429999e+01
+2 12363     1.607400e+02 -7.101001e+01
+15 12363     -3.415002e+01 2.732001e+01
+2 12364     1.692800e+02 -7.098999e+01
+3 12364     8.372998e+01 -3.774600e+02
+8 12364     1.653400e+02 -1.054200e+02
+9 12364     3.646002e+01 3.269000e+01
+15 12364     -2.564001e+01 2.446997e+01
+2 12365     2.877900e+02 -7.503998e+01
+15 12365     1.065100e+02 -1.006000e+01
+2 12366     2.636700e+02 -7.559003e+01
+6 12366     8.465002e+01 -8.490002e+01
+12 12366     9.606000e+01 -3.682001e+01
+15 12366     7.652002e+01 -6.010010e+00
+2 12367     2.663500e+02 -7.572998e+01
+10 12367     3.700012e+00 1.715002e+01
+15 12367     7.947998e+01 -6.969971e+00
+2 12368     5.689600e+02 -7.614001e+01
+12 12368     5.649900e+02 8.891998e+01
+2 12369     9.273999e+01 -7.675000e+01
+3 12369     1.051001e+01 -3.850900e+02
+2 12370     5.666500e+02 -7.745001e+01
+7 12370     4.670000e+02 1.286500e+02
+10 12370     6.178500e+02 1.427400e+02
+15 12370     8.260699e+02 1.448100e+02
+2 12371     7.540000e+02 -7.758002e+01
+3 12371     6.228400e+02 -3.752400e+02
+9 12371     5.068199e+02 4.376001e+01
+2 12372     7.461000e+02 -7.862000e+01
+3 12372     6.150200e+02 -3.766400e+02
+9 12372     4.999700e+02 4.248999e+01
+10 12372     7.934800e+02 6.557001e+01
+12 12372     7.502700e+02 5.888000e+01
+2 12373     5.894700e+02 -8.025000e+01
+8 12373     5.413300e+02 -9.579999e+01
+2 12374     -1.128100e+02 -8.228998e+01
+8 12374     -5.732001e+01 -1.060100e+02
+2 12375     6.337800e+02 -8.235999e+01
+8 12375     5.791400e+02 -9.976001e+01
+2 12376     1.250300e+02 -8.706000e+01
+3 12376     4.321002e+01 -3.940400e+02
+6 12376     -5.888000e+01 -1.015300e+02
+8 12376     1.291500e+02 -1.187400e+02
+2 12377     1.185999e+01 -8.908002e+01
+3 12377     -6.919000e+01 -4.006300e+02
+2 12378     7.271600e+02 -8.908002e+01
+9 12378     4.849399e+02 3.366998e+01
+12 12378     7.295300e+02 5.129999e+01
+2 12379     3.465002e+01 -9.081000e+01
+3 12379     -4.626001e+01 -4.006899e+02
+2 12380     3.429999e+01 -9.482001e+01
+3 12380     -4.639001e+01 -4.050699e+02
+12 12380     -1.379400e+02 -4.347998e+01
+2 12381     3.429999e+01 -9.482001e+01
+3 12381     -4.639001e+01 -4.050699e+02
+2 12382     8.466998e+01 -9.446002e+01
+15 12382     -1.281100e+02 1.292999e+01
+2 12383     2.372800e+02 -9.512000e+01
+3 12383     1.512900e+02 -3.981400e+02
+6 12383     5.466998e+01 -1.124500e+02
+12 12383     6.090002e+01 -6.279999e+01
+2 12384     8.001500e+02 -9.665997e+01
+9 12384     5.444301e+02 3.003998e+01
+2 12385     8.879999e+01 -9.713000e+01
+15 12385     -1.247100e+02 8.859985e+00
+2 12386     8.540997e+01 -9.770001e+01
+3 12386     5.309998e+00 -4.062500e+02
+6 12386     -9.998999e+01 -1.127300e+02
+12 12386     -9.315002e+01 -5.679999e+01
+2 12387     1.679999e+01 -9.783002e+01
+3 12387     -6.421997e+01 -4.080300e+02
+2 12388     -1.439700e+02 -9.984003e+01
+3 12388     -2.293500e+02 -4.176300e+02
+2 12389     2.023199e+02 -1.025000e+02
+10 12389     -8.072998e+01 -6.469971e+00
+15 12389     -1.876001e+01 -3.522998e+01
+2 12390     5.108000e+02 -1.026700e+02
+8 12390     4.511801e+02 -1.351800e+02
+10 12390     2.785100e+02 -4.752002e+01
+12 12390     3.793199e+02 -6.113000e+01
+13 12390     6.632700e+02 -3.648300e+02
+15 12390     4.068300e+02 -8.151001e+01
+2 12391     1.136200e+02 -1.037100e+02
+15 12391     -1.024200e+02 -6.210022e+00
+2 12392     4.802000e+02 -1.085500e+02
+3 12392     3.794399e+02 -4.051000e+02
+2 12393     1.787400e+02 -1.095000e+02
+3 12393     9.639001e+01 -4.138400e+02
+10 12393     -1.009300e+02 -5.869995e+00
+15 12393     -4.250000e+01 -3.489001e+01
+2 12394     1.787400e+02 -1.095000e+02
+3 12394     9.639001e+01 -4.138400e+02
+6 12394     -6.359985e+00 -1.294800e+02
+8 12394     1.707600e+02 -1.387800e+02
+10 12394     -1.009300e+02 -5.869995e+00
+12 12394     -2.830017e+00 -7.756000e+01
+15 12394     -4.250000e+01 -3.489001e+01
+2 12395     1.795200e+02 -1.128300e+02
+3 12395     9.733002e+01 -4.171100e+02
+6 12395     -5.830017e+00 -1.327000e+02
+12 12395     -2.179993e+00 -8.096002e+01
+15 12395     -4.234003e+01 -3.841998e+01
+2 12396     5.080200e+02 -1.147200e+02
+3 12396     4.070000e+02 -4.098400e+02
+2 12397     5.380100e+02 -1.161500e+02
+8 12397     4.755200e+02 -1.461500e+02
+2 12398     6.833700e+02 -1.158300e+02
+3 12398     5.562800e+02 -4.155300e+02
+12 12398     6.820400e+02 3.096997e+01
+2 12399     7.091700e+02 -1.174500e+02
+7 12399     5.817900e+02 5.946997e+01
+2 12400     1.962800e+02 -1.181300e+02
+6 12400     1.134003e+01 -1.388101e+02
+12 12400     1.465002e+01 -8.765997e+01
+15 12400     -2.678003e+01 -4.959998e+01
+2 12401     1.962800e+02 -1.181300e+02
+6 12401     1.134003e+01 -1.388101e+02
+8 12401     1.848000e+02 -1.464900e+02
+2 12402     1.962800e+02 -1.181300e+02
+3 12402     1.138600e+02 -4.216100e+02
+8 12402     1.848000e+02 -1.464900e+02
+15 12402     -2.678003e+01 -4.959998e+01
+2 12403     2.023101e+02 -1.181300e+02
+8 12403     1.899300e+02 -1.458900e+02
+12 12403     2.087000e+01 -8.663000e+01
+15 12403     -2.009003e+01 -4.970001e+01
+2 12404     -4.226001e+01 -1.182500e+02
+3 12404     -1.199600e+02 -4.300500e+02
+2 12405     -3.847600e+02 -1.203700e+02
+3 12405     -5.046300e+02 -4.531899e+02
+2 12406     -3.212000e+01 -1.210900e+02
+3 12406     -1.103800e+02 -4.320100e+02
+8 12406     3.010010e+00 -1.419800e+02
+2 12407     1.830900e+02 -1.214500e+02
+3 12407     1.011900e+02 -4.252500e+02
+6 12407     -1.820007e+00 -1.411500e+02
+8 12407     1.742800e+02 -1.486500e+02
+12 12407     1.599976e+00 -8.947998e+01
+2 12408     -7.129999e+01 -1.242400e+02
+3 12408     -1.491000e+02 -4.364100e+02
+2 12409     -3.193600e+02 -1.242800e+02
+5 12409     2.771000e+02 -5.699800e+02
+2 12410     2.245200e+02 -1.248500e+02
+6 12410     4.029999e+01 -1.447800e+02
+12 12410     4.465997e+01 -9.517999e+01
+2 12411     3.704600e+02 -1.251900e+02
+15 12411     1.882700e+02 -9.001001e+01
+2 12412     2.537000e+02 -1.255900e+02
+3 12412     1.687100e+02 -4.280601e+02
+4 12412     -3.918800e+02 -4.412000e+02
+7 12412     -1.717999e+01 -3.581000e+01
+8 12412     2.319400e+02 -1.531800e+02
+15 12412     3.857001e+01 -7.040997e+01
+2 12413     -3.900100e+02 -1.277300e+02
+3 12413     -5.091500e+02 -4.607600e+02
+2 12414     9.270001e+01 -1.273500e+02
+3 12414     1.295001e+01 -4.340601e+02
+6 12414     -9.220999e+01 -1.406899e+02
+12 12414     -8.551001e+01 -8.551001e+01
+2 12415     9.270001e+01 -1.273500e+02
+3 12415     1.295001e+01 -4.340601e+02
+6 12415     -9.220999e+01 -1.406899e+02
+12 12415     -8.551001e+01 -8.551001e+01
+2 12416     2.670200e+02 -1.289700e+02
+3 12416     1.818600e+02 -4.309800e+02
+6 12416     8.462000e+01 -1.475699e+02
+12 12416     9.022998e+01 -9.977002e+01
+15 12416     5.433002e+01 -7.816998e+01
+2 12417     2.670200e+02 -1.289700e+02
+6 12417     8.462000e+01 -1.475699e+02
+15 12417     5.433002e+01 -7.816998e+01
+2 12418     4.815800e+02 -1.293200e+02
+7 12418     1.989399e+02 -5.579999e+01
+10 12418     2.164700e+02 -8.167999e+01
+12 12418     3.326200e+02 -1.000600e+02
+15 12418     3.319200e+02 -1.222100e+02
+2 12419     1.302400e+02 -1.322300e+02
+3 12419     5.000000e+01 -4.378700e+02
+6 12419     -5.471997e+01 -1.480000e+02
+12 12419     -4.926001e+01 -9.450000e+01
+15 12419     -8.822998e+01 -4.051001e+01
+2 12420     1.649000e+02 -1.330100e+02
+6 12420     -1.970001e+01 -1.511300e+02
+2 12421     2.780601e+02 -1.328600e+02
+3 12421     1.919900e+02 -4.335900e+02
+6 12421     9.591998e+01 -1.504301e+02
+10 12421     -7.869995e+00 -4.810999e+01
+12 12421     1.022700e+02 -1.039400e+02
+15 12421     6.656000e+01 -8.357001e+01
+2 12422     3.214200e+02 -1.334200e+02
+6 12422     1.412500e+02 -1.492400e+02
+12 12422     1.495800e+02 -1.047400e+02
+15 12422     1.188600e+02 -9.409003e+01
+2 12423     -7.897998e+01 -1.387500e+02
+3 12423     -1.569800e+02 -4.519301e+02
+2 12424     -7.897998e+01 -1.387500e+02
+3 12424     -1.569800e+02 -4.519301e+02
+2 12425     1.157001e+01 -1.392300e+02
+8 12425     3.560999e+01 -1.593700e+02
+2 12426     2.296100e+02 -1.393300e+02
+3 12426     1.464500e+02 -4.412600e+02
+6 12426     4.578998e+01 -1.581700e+02
+2 12427     2.613199e+02 -1.394400e+02
+3 12427     1.764000e+02 -4.402800e+02
+6 12427     7.873999e+01 -1.570000e+02
+12 12427     8.453998e+01 -1.100900e+02
+2 12428     1.365500e+02 -1.428800e+02
+7 12428     -1.138100e+02 -3.372998e+01
+10 12428     -1.374400e+02 -2.258002e+01
+15 12428     -8.475000e+01 -5.502002e+01
+2 12429     7.755200e+02 -1.430400e+02
+12 12429     7.770500e+02 -1.134003e+01
+2 12430     -3.790400e+02 -1.441100e+02
+5 12430     2.167400e+02 -5.813500e+02
+8 12430     -2.459800e+02 -1.329000e+02
+13 12430     5.653998e+01 -1.769400e+02
+2 12431     2.498199e+02 -1.450800e+02
+15 12431     3.298999e+01 -8.933002e+01
+2 12432     -2.599100e+02 -1.456900e+02
+3 12432     -3.716400e+02 -4.751899e+02
+2 12433     -2.359400e+02 -1.519400e+02
+6 12433     -4.051600e+02 -3.326001e+01
+2 12434     -1.300000e+01 -1.543500e+02
+6 12434     -1.994900e+02 -1.688101e+02
+8 12434     1.601001e+01 -1.701100e+02
+9 12434     -1.099000e+02 -4.434998e+01
+2 12435     8.069000e+02 -1.550500e+02
+12 12435     8.103500e+02 -2.906000e+01
+2 12436     2.490002e+01 -1.571300e+02
+3 12436     -4.958002e+01 -4.648000e+02
+6 12436     -1.636300e+02 -1.810900e+02
+12 12436     -1.633900e+02 -1.219900e+02
+15 12436     -2.148200e+02 -5.139001e+01
+2 12437     -1.078998e+01 -1.572500e+02
+6 12437     -1.967400e+02 -1.721700e+02
+2 12438     2.706899e+02 -1.575200e+02
+10 12438     -2.692999e+01 -7.425000e+01
+2 12439     1.255600e+02 -1.592900e+02
+3 12439     4.875000e+01 -4.636700e+02
+13 12439     3.253900e+02 -3.621800e+02
+2 12440     4.190900e+02 -1.649100e+02
+6 12440     2.403800e+02 -1.859399e+02
+12 12440     2.499100e+02 -1.475100e+02
+2 12441     3.249399e+02 -1.662100e+02
+4 12441     -4.442100e+02 -4.734399e+02
+2 12442     -4.765997e+01 -1.668800e+02
+3 12442     -1.249200e+02 -4.784900e+02
+6 12442     -2.321600e+02 -1.715900e+02
+8 12442     -1.051001e+01 -1.779800e+02
+9 12442     -1.401100e+02 -5.715002e+01
+2 12443     -4.506300e+02 -1.674800e+02
+7 12443     -4.439100e+02 1.259400e+02
+2 12444     4.064399e+02 -1.681900e+02
+3 12444     3.174399e+02 -4.636300e+02
+2 12445     4.264700e+02 -1.690900e+02
+15 12445     2.285900e+02 -1.669700e+02
+2 12446     5.306000e+02 -1.701600e+02
+8 12446     4.693101e+02 -1.889200e+02
+2 12447     7.885900e+02 -1.713300e+02
+7 12447     6.312600e+02 -1.415997e+01
+2 12448     -3.830300e+02 -1.771500e+02
+13 12448     4.447998e+01 -2.084300e+02
+2 12449     7.109003e+01 -1.837800e+02
+3 12449     -3.900024e+00 -4.896600e+02
+6 12449     -1.164000e+02 -2.060300e+02
+8 12449     8.158002e+01 -1.977400e+02
+2 12450     -3.469971e+00 -1.864800e+02
+3 12450     -7.927002e+01 -4.959600e+02
+2 12451     4.202300e+02 -1.910600e+02
+6 12451     2.421300e+02 -2.067100e+02
+10 12451     1.235500e+02 -1.343900e+02
+12 12451     2.531100e+02 -1.695800e+02
+15 12451     2.222200e+02 -1.851200e+02
+2 12452     -3.967800e+02 -1.914600e+02
+7 12452     -4.098400e+02 9.451001e+01
+15 12452     -3.927900e+02 1.778100e+02
+2 12453     -4.550700e+02 -1.946800e+02
+10 12453     -4.643400e+02 1.875400e+02
+2 12454     1.229500e+02 -1.973900e+02
+6 12454     -6.451001e+01 -2.214200e+02
+2 12455     3.506000e+01 -1.985400e+02
+6 12455     -1.516300e+02 -2.157000e+02
+2 12456     2.608000e+02 -1.982400e+02
+6 12456     7.365997e+01 -2.260601e+02
+10 12456     -5.332001e+01 -1.160900e+02
+2 12457     3.251001e+01 -2.007200e+02
+8 12457     5.058002e+01 -2.096800e+02
+2 12458     2.726400e+02 -2.009500e+02
+6 12458     8.534003e+01 -2.285000e+02
+7 12458     -1.898999e+01 -1.089700e+02
+8 12458     2.439000e+02 -2.165900e+02
+12 12458     8.403003e+01 -1.830300e+02
+2 12459     2.647400e+02 -2.021900e+02
+3 12459     1.859800e+02 -5.003500e+02
+6 12459     7.741998e+01 -2.301600e+02
+2 12460     3.228003e+01 -2.081000e+02
+8 12460     5.053003e+01 -2.152700e+02
+2 12461     1.061000e+02 -2.079600e+02
+6 12461     -8.079001e+01 -2.281899e+02
+2 12462     4.033600e+02 -2.080100e+02
+6 12462     2.234700e+02 -2.245000e+02
+9 12462     2.361899e+02 -7.072998e+01
+12 12462     2.330200e+02 -1.869100e+02
+2 12463     -5.651001e+01 -2.088300e+02
+3 12463     -1.344600e+02 -5.218700e+02
+2 12464     4.051600e+02 -2.107600e+02
+3 12464     3.174100e+02 -5.062000e+02
+4 12464     -5.006100e+02 -5.322900e+02
+6 12464     2.259800e+02 -2.259200e+02
+9 12464     2.387700e+02 -7.222998e+01
+12 12464     2.357500e+02 -1.887500e+02
+15 12464     2.015601e+02 -2.010900e+02
+2 12465     -3.008400e+02 -2.128800e+02
+3 12465     -4.078300e+02 -5.437500e+02
+2 12466     1.895200e+02 -2.180800e+02
+3 12466     1.140500e+02 -5.190900e+02
+2 12467     3.596899e+02 -2.190400e+02
+6 12467     1.738900e+02 -2.466100e+02
+2 12468     -3.241600e+02 -2.194000e+02
+3 12468     -4.312300e+02 -5.515900e+02
+2 12469     4.982000e+02 -2.216700e+02
+3 12469     4.029600e+02 -5.168900e+02
+2 12470     4.496997e+01 -2.257300e+02
+3 12470     -2.996997e+01 -5.330800e+02
+2 12471     4.496997e+01 -2.257300e+02
+3 12471     -2.996997e+01 -5.330800e+02
+2 12472     2.538800e+02 -2.266200e+02
+12 12472     6.621002e+01 -2.047100e+02
+2 12473     4.668500e+02 -2.284500e+02
+6 12473     2.956900e+02 -2.295900e+02
+8 12473     4.102200e+02 -2.385000e+02
+2 12474     6.694000e+01 -2.290700e+02
+6 12474     -1.176000e+02 -2.444399e+02
+8 12474     7.885999e+01 -2.327200e+02
+2 12475     2.687900e+02 -2.352200e+02
+3 12475     1.897000e+02 -5.335100e+02
+6 12475     8.307001e+01 -2.565000e+02
+2 12476     -4.225400e+02 -2.369900e+02
+10 12476     -4.590900e+02 1.283000e+02
+15 12476     -4.471500e+02 1.149600e+02
+2 12477     4.725300e+02 -2.382300e+02
+6 12477     3.012400e+02 -2.404200e+02
+12 12477     3.197300e+02 -2.078800e+02
+2 12478     1.885100e+02 -2.402200e+02
+3 12478     1.136800e+02 -5.413300e+02
+8 12478     1.743400e+02 -2.468300e+02
+2 12479     2.552900e+02 -2.408400e+02
+6 12479     6.997998e+01 -2.621700e+02
+12 12479     7.059003e+01 -2.170900e+02
+2 12480     -4.321600e+02 -2.421100e+02
+7 12480     -4.532600e+02 4.156000e+01
+2 12481     5.065699e+02 -2.420700e+02
+8 12481     4.463700e+02 -2.476500e+02
+2 12482     -4.277800e+02 -2.428200e+02
+7 12482     -4.509400e+02 3.969000e+01
+2 12483     -3.235999e+01 -2.448000e+02
+3 12483     -1.094200e+02 -5.571300e+02
+2 12484     3.295400e+02 -2.450700e+02
+6 12484     1.457100e+02 -2.639900e+02
+2 12485     6.522800e+02 -2.457000e+02
+9 12485     4.324700e+02 -9.745001e+01
+2 12486     2.068800e+02 -2.468200e+02
+6 12486     2.021002e+01 -2.676700e+02
+12 12486     1.910999e+01 -2.197300e+02
+2 12487     1.785000e+02 -2.476900e+02
+3 12487     1.027100e+02 -5.505601e+02
+6 12487     -8.169983e+00 -2.685699e+02
+8 12487     1.669000e+02 -2.515000e+02
+9 12487     5.410999e+01 -1.130900e+02
+2 12488     -4.882100e+02 -2.525300e+02
+10 12488     -5.215900e+02 1.193000e+02
+15 12488     -5.187200e+02 1.040700e+02
+2 12489     5.187100e+02 -2.547800e+02
+12 12489     3.994100e+02 -1.947700e+02
+2 12490     -3.288900e+02 -2.557400e+02
+7 12490     -3.795400e+02 1.784003e+01
+12 12490     -4.170000e+02 -1.130300e+02
+15 12490     -3.688800e+02 6.916998e+01
+2 12491     -3.979800e+02 -2.558400e+02
+3 12491     -5.067600e+02 -5.919700e+02
+2 12492     4.936400e+02 -2.572300e+02
+6 12492     3.301100e+02 -2.433900e+02
+2 12493     2.709399e+02 -2.616000e+02
+3 12493     1.921700e+02 -5.605400e+02
+9 12493     1.300400e+02 -1.200800e+02
+2 12494     4.682300e+02 -2.619300e+02
+6 12494     2.975300e+02 -2.603900e+02
+2 12495     7.616000e+02 -2.625200e+02
+12 12495     7.114800e+02 -1.741600e+02
+2 12496     3.355900e+02 -2.639800e+02
+12 12496     1.570600e+02 -2.405100e+02
+2 12497     2.439200e+02 -2.682900e+02
+3 12497     1.667500e+02 -5.682300e+02
+6 12497     5.866998e+01 -2.850601e+02
+8 12497     2.209800e+02 -2.692900e+02
+9 12497     1.086700e+02 -1.267400e+02
+12 12497     5.990997e+01 -2.400000e+02
+15 12497     5.289978e+00 -2.171600e+02
+2 12498     3.603998e+01 -2.695100e+02
+3 12498     -3.848999e+01 -5.784900e+02
+6 12498     -1.468200e+02 -2.763800e+02
+8 12498     5.456000e+01 -2.628500e+02
+2 12499     3.696997e+01 -2.728200e+02
+3 12499     -3.722998e+01 -5.820800e+02
+6 12499     -1.454700e+02 -2.793700e+02
+2 12500     4.238000e+01 -2.733700e+02
+3 12500     -3.202002e+01 -5.823000e+02
+2 12501     3.215997e+01 -2.795600e+02
+3 12501     -4.221002e+01 -5.899900e+02
+6 12501     -1.505000e+02 -2.855100e+02
+9 12501     -6.681000e+01 -1.474800e+02
+10 12501     -2.283200e+02 -1.086400e+02
+12 12501     -1.430900e+02 -2.286100e+02
+13 12501     2.554800e+02 -4.197000e+02
+2 12502     2.944000e+01 -2.810400e+02
+3 12502     -4.497998e+01 -5.913500e+02
+2 12503     -4.687400e+02 -2.840900e+02
+7 12503     -4.948700e+02 -1.030029e+00
+8 12503     -3.286400e+02 -2.505100e+02
+9 12503     -5.061300e+02 -1.848700e+02
+12 12503     -5.566600e+02 -1.441600e+02
+15 12503     -5.198000e+02 5.577002e+01
+2 12504     8.976001e+01 -2.843300e+02
+3 12504     1.545001e+01 -5.908500e+02
+2 12505     1.471002e+01 -2.857800e+02
+3 12505     -5.902002e+01 -5.956899e+02
+2 12506     3.047100e+02 -2.905500e+02
+6 12506     1.210400e+02 -3.027200e+02
+12 12506     1.254600e+02 -2.615900e+02
+2 12507     -2.803003e+01 -2.917200e+02
+3 12507     -1.047900e+02 -6.045699e+02
+8 12507     5.440002e+00 -2.757300e+02
+9 12507     -1.181800e+02 -1.603900e+02
+2 12508     4.620601e+02 -2.964400e+02
+3 12508     3.750500e+02 -5.926200e+02
+2 12509     6.697998e+01 -2.971400e+02
+3 12509     -7.400024e+00 -6.050900e+02
+2 12510     6.428998e+01 -3.008900e+02
+3 12510     -1.029999e+01 -6.102900e+02
+6 12510     -1.175700e+02 -3.053199e+02
+9 12510     -3.951001e+01 -1.638200e+02
+2 12511     3.828900e+02 -3.029300e+02
+6 12511     2.050400e+02 -3.065200e+02
+9 12511     2.226100e+02 -1.505800e+02
+2 12512     1.222300e+02 -3.065300e+02
+6 12512     -6.127002e+01 -3.157500e+02
+2 12513     1.603900e+02 -3.095900e+02
+6 12513     -2.315002e+01 -3.191600e+02
+2 12514     3.348500e+02 -3.101500e+02
+3 12514     2.557900e+02 -6.078900e+02
+2 12515     3.348500e+02 -3.101500e+02
+3 12515     2.557900e+02 -6.078900e+02
+6 12515     1.534400e+02 -3.188101e+02
+2 12516     2.385500e+02 -3.124300e+02
+3 12516     1.624600e+02 -6.133101e+02
+2 12517     4.528700e+02 -3.137200e+02
+12 12517     3.036500e+02 -2.723500e+02
+2 12518     4.568199e+02 -3.148000e+02
+12 12518     3.075100e+02 -2.730000e+02
+2 12519     4.414100e+02 -3.153900e+02
+12 12519     2.895200e+02 -2.747200e+02
+15 12519     2.755100e+02 -2.902300e+02
+2 12520     2.402100e+02 -3.166500e+02
+6 12520     5.687000e+01 -3.260000e+02
+2 12521     3.301600e+02 -3.208600e+02
+3 12521     2.514800e+02 -6.193800e+02
+6 12521     1.489600e+02 -3.277200e+02
+8 12521     2.924100e+02 -3.126700e+02
+12 12521     1.568400e+02 -2.889900e+02
+2 12522     3.387800e+02 -3.222300e+02
+3 12522     2.605300e+02 -6.194800e+02
+2 12523     3.494000e+01 -3.344900e+02
+6 12523     -1.445400e+02 -3.308700e+02
+9 12523     -6.234003e+01 -1.929000e+02
+2 12524     3.183002e+01 -3.354100e+02
+6 12524     -1.483400e+02 -3.322300e+02
+12 12524     -1.375900e+02 -2.753300e+02
+2 12525     1.392300e+02 -3.394900e+02
+6 12525     -4.278003e+01 -3.429500e+02
+2 12526     2.396100e+02 -3.435600e+02
+6 12526     5.767999e+01 -3.487800e+02
+2 12527     5.525699e+02 -3.582800e+02
+12 12527     4.259700e+02 -3.056700e+02
+2 12528     -2.997000e+02 -3.666000e+02
+6 12528     -4.747700e+02 -3.269800e+02
+7 12528     -3.957500e+02 -1.030200e+02
+12 12528     -4.172800e+02 -2.510900e+02
+15 12528     -4.132700e+02 -9.462000e+01
+2 12529     3.391600e+02 -3.769200e+02
+6 12529     1.583300e+02 -3.807100e+02
+2 12530     1.907200e+02 -3.852400e+02
+6 12530     7.539978e+00 -3.904000e+02
+2 12531     1.737200e+02 -3.967800e+02
+6 12531     -8.440002e+00 -3.994900e+02
+12 12531     -5.150024e+00 -3.512900e+02
+2 12532     3.461100e+02 -3.988400e+02
+6 12532     1.665500e+02 -3.976400e+02
+2 12533     3.581801e+02 -4.147400e+02
+6 12533     1.745100e+02 -4.241100e+02
+2 12534     3.639800e+02 -4.355400e+02
+6 12534     1.795300e+02 -4.426899e+02
+2 12535     1.359985e+00 -4.361500e+02
+6 12535     -1.782500e+02 -4.335800e+02
+12 12535     -1.705000e+02 -3.731700e+02
+2 12536     1.359985e+00 -4.361500e+02
+12 12536     -1.705000e+02 -3.731700e+02
+2 12537     4.210800e+02 -4.378101e+02
+6 12537     2.427900e+02 -4.338500e+02
+8 12537     3.666700e+02 -4.096400e+02
+2 12538     -3.085800e+02 -4.486600e+02
+8 12538     -2.163800e+02 -3.935800e+02
+2 12539     1.096002e+01 -4.489301e+02
+6 12539     -1.679500e+02 -4.455900e+02
+2 12540     -2.498900e+02 -4.536300e+02
+12 12540     -3.911400e+02 -3.589900e+02
+2 12541     -2.942400e+02 -4.569100e+02
+6 12541     -4.692000e+02 -4.417200e+02
+8 12541     -2.062500e+02 -4.005400e+02
+2 12542     3.780900e+02 -4.720699e+02
+12 12542     2.016200e+02 -4.370699e+02
+2 12543     1.836500e+02 -4.773700e+02
+6 12543     9.002686e-02 -4.805699e+02
+2 12544     2.034399e+02 -4.896100e+02
+6 12544     2.032001e+01 -4.911300e+02
+2 12545     3.365900e+02 -5.006500e+02
+6 12545     1.524700e+02 -5.026400e+02
+12 12545     1.532800e+02 -4.654301e+02
+2 12546     5.595300e+02 -5.023300e+02
+7 12546     2.280800e+02 -3.579200e+02
+2 12547     4.832800e+02 -5.042800e+02
+15 12547     2.531801e+02 -5.134800e+02
+2 12548     1.109900e+02 -5.214800e+02
+15 12548     -1.561400e+02 -4.218900e+02
+2 12549     4.378700e+02 -5.882800e+02
+6 12549     2.452800e+02 -5.994100e+02
+2 12550     -1.658100e+02 -5.889301e+02
+7 12550     -3.702100e+02 -3.389200e+02
+2 12551     3.604900e+02 -5.962000e+02
+7 12551     2.002002e+01 -4.213600e+02
+2 12552     5.188500e+02 -6.085300e+02
+9 12552     3.500300e+02 -3.910100e+02
+2 12553     5.357700e+02 -6.098700e+02
+10 12553     1.253500e+02 -5.392900e+02
+2 12554     -6.160900e+02 6.208400e+02
+11 12554     -1.151400e+02 -7.780029e+00
+2 12555     -2.138500e+02 6.009900e+02
+3 12555     -3.424800e+02 2.593700e+02
+13 12555     2.746600e+02 4.418300e+02
+14 12555     4.162800e+02 8.150000e+01
+2 12556     -2.862900e+02 5.994300e+02
+3 12556     -4.113400e+02 2.589500e+02
+5 12556     4.407900e+02 1.669700e+02
+13 12556     2.097600e+02 4.315100e+02
+14 12556     3.395200e+02 7.185999e+01
+2 12557     -1.509100e+02 5.970600e+02
+5 12557     5.905601e+02 1.784000e+02
+2 12558     -1.243700e+02 5.970600e+02
+11 12558     3.205699e+02 9.989990e+00
+2 12559     -2.143200e+02 5.967300e+02
+11 12559     2.289301e+02 -4.000244e-01
+14 12559     4.153199e+02 7.812000e+01
+2 12560     -1.669400e+02 5.936800e+02
+5 12560     5.722300e+02 1.731300e+02
+14 12560     4.667300e+02 8.012000e+01
+2 12561     -2.794000e+01 5.913400e+02
+3 12561     -1.694700e+02 2.476400e+02
+13 12561     4.486500e+02 4.561900e+02
+14 12561     6.225400e+02 9.329001e+01
+2 12562     1.089001e+01 5.910900e+02
+13 12562     4.866500e+02 4.611100e+02
+14 12562     6.674399e+02 9.807999e+01
+2 12563     -2.884000e+02 5.905100e+02
+3 12563     -4.129700e+02 2.505100e+02
+4 12563     1.881899e+02 -4.010100e+02
+5 12563     4.382400e+02 1.588200e+02
+2 12564     -2.476001e+01 5.888700e+02
+13 12564     4.515100e+02 4.547900e+02
+2 12565     -8.609985e+00 5.886400e+02
+3 12565     -1.519900e+02 2.454600e+02
+5 12565     7.574700e+02 1.840700e+02
+2 12566     -9.317999e+01 5.852600e+02
+13 12566     3.853600e+02 4.435900e+02
+2 12567     -3.589001e+01 5.799600e+02
+3 12567     -1.771300e+02 2.370900e+02
+13 12567     4.410500e+02 4.473300e+02
+14 12567     6.133000e+02 8.292999e+01
+2 12568     2.653003e+01 5.793600e+02
+3 12568     -1.195100e+02 2.359100e+02
+5 12568     8.005500e+02 1.791300e+02
+11 12568     4.810500e+02 1.337000e+01
+13 12568     5.017700e+02 4.539000e+02
+14 12568     6.859399e+02 8.956000e+01
+2 12569     2.653003e+01 5.793600e+02
+11 12569     4.810500e+02 1.337000e+01
+13 12569     5.017700e+02 4.539000e+02
+14 12569     6.859399e+02 8.956000e+01
+2 12570     -6.921002e+01 5.785100e+02
+3 12570     -2.086600e+02 2.356500e+02
+5 12570     6.832300e+02 1.680000e+02
+13 12570     4.082000e+02 4.411100e+02
+14 12570     5.750500e+02 7.728998e+01
+2 12571     -1.773200e+02 5.775600e+02
+3 12571     -3.087600e+02 2.356300e+02
+4 12571     1.811300e+02 -4.811600e+02
+5 12571     5.590800e+02 1.561300e+02
+11 12571     2.667000e+02 -1.163000e+01
+13 12571     3.069500e+02 4.273200e+02
+14 12571     4.545000e+02 6.389001e+01
+2 12572     -1.664200e+02 5.763900e+02
+3 12572     -2.990700e+02 2.364000e+02
+5 12572     5.710800e+02 1.571600e+02
+2 12573     -6.771002e+01 5.751200e+02
+3 12573     -2.069900e+02 2.324700e+02
+4 12573     1.805500e+02 -5.698199e+02
+5 12573     6.853400e+02 1.649400e+02
+11 12573     3.794500e+02 -1.280029e+00
+13 12573     4.094700e+02 4.385300e+02
+14 12573     5.762200e+02 7.403998e+01
+2 12574     -1.665700e+02 5.733000e+02
+4 12574     1.794301e+02 -4.889301e+02
+5 12574     5.707700e+02 1.535600e+02
+11 12574     2.772500e+02 -1.307001e+01
+2 12575     -1.813500e+02 5.709200e+02
+5 12575     5.536200e+02 1.495500e+02
+14 12575     4.501500e+02 5.690002e+01
+2 12576     -1.879600e+02 5.655800e+02
+11 12576     2.557100e+02 -2.265002e+01
+2 12577     3.588000e+01 5.652300e+02
+3 12577     -1.105800e+02 2.222100e+02
+5 12577     8.112700e+02 1.659900e+02
+11 12577     4.920200e+02 3.210022e+00
+13 12577     5.102800e+02 4.432800e+02
+14 12577     6.964200e+02 7.726001e+01
+2 12578     3.588000e+01 5.652300e+02
+3 12578     -1.105800e+02 2.222100e+02
+5 12578     8.112700e+02 1.659900e+02
+11 12578     4.920200e+02 3.210022e+00
+14 12578     6.964200e+02 7.726001e+01
+2 12579     -1.729900e+02 5.635500e+02
+14 12579     4.581300e+02 5.063000e+01
+2 12580     -1.816700e+02 5.589900e+02
+5 12580     5.518400e+02 1.384600e+02
+8 12580     -7.152002e+01 4.394500e+02
+14 12580     4.483900e+02 4.629999e+01
+2 12581     2.589001e+01 5.545000e+02
+5 12581     7.973900e+02 1.538800e+02
+11 12581     4.809900e+02 -6.409973e+00
+2 12582     -1.570800e+02 5.522700e+02
+4 12582     1.666801e+02 -4.929000e+02
+5 12582     5.794500e+02 1.335000e+02
+11 12582     2.865400e+02 -2.951001e+01
+13 12582     3.237700e+02 4.090500e+02
+2 12583     4.796997e+01 5.518700e+02
+11 12583     5.056100e+02 -5.960022e+00
+13 12583     5.216700e+02 4.335300e+02
+14 12583     7.107100e+02 6.584003e+01
+2 12584     -4.075700e+02 5.516200e+02
+8 12584     -2.583000e+02 4.270600e+02
+2 12585     -3.766400e+02 5.514800e+02
+5 12585     3.422600e+02 1.154500e+02
+8 12585     -2.319800e+02 4.281500e+02
+2 12586     -1.819700e+02 5.514600e+02
+3 12586     -3.139400e+02 2.112700e+02
+4 12586     1.662700e+02 -4.738900e+02
+5 12586     5.514100e+02 1.306000e+02
+8 12586     -7.090002e+01 4.328000e+02
+11 12586     2.612400e+02 -3.251001e+01
+13 12586     3.009600e+02 4.052700e+02
+14 12586     4.479000e+02 3.889001e+01
+2 12587     2.644301e+02 5.516400e+02
+3 12587     1.200100e+02 2.101300e+02
+8 12587     2.866700e+02 4.303500e+02
+2 12588     2.602600e+02 5.508500e+02
+8 12588     2.831900e+02 4.295100e+02
+9 12588     7.071997e+01 5.608800e+02
+2 12589     2.835100e+02 5.493800e+02
+3 12589     1.390900e+02 2.091800e+02
+6 12589     1.952900e+02 8.510300e+02
+8 12589     3.020100e+02 4.287700e+02
+9 12589     9.189001e+01 5.621600e+02
+13 12589     6.847500e+02 3.513800e+02
+2 12590     -2.012400e+02 5.488200e+02
+3 12590     -3.320300e+02 2.092000e+02
+11 12590     2.419200e+02 -3.610999e+01
+2 12591     -1.377500e+02 5.482900e+02
+3 12591     -2.726300e+02 2.073700e+02
+5 12591     6.010300e+02 1.315100e+02
+8 12591     -3.460999e+01 4.309000e+02
+11 12591     3.062500e+02 -3.041998e+01
+13 12591     3.418600e+02 4.078400e+02
+14 12591     4.962300e+02 4.059998e+01
+2 12592     -2.076700e+02 5.474900e+02
+8 12592     -9.245001e+01 4.292500e+02
+13 12592     2.778199e+02 3.997300e+02
+14 12592     4.201300e+02 3.312000e+01
+2 12593     2.672800e+02 5.466200e+02
+3 12593     1.229600e+02 2.052000e+02
+8 12593     2.887400e+02 4.266100e+02
+2 12594     2.777700e+02 5.462200e+02
+3 12594     1.331000e+02 2.050400e+02
+6 12594     1.873200e+02 8.470900e+02
+8 12594     2.967100e+02 4.256600e+02
+9 12594     8.569000e+01 5.578400e+02
+13 12594     6.786400e+02 3.488200e+02
+2 12595     2.538600e+02 5.452500e+02
+8 12595     2.772800e+02 4.248200e+02
+9 12595     6.403003e+01 5.562200e+02
+2 12596     -1.411800e+02 5.443000e+02
+3 12596     -2.761000e+02 2.039400e+02
+5 12596     5.954900e+02 1.267100e+02
+8 12596     -3.682001e+01 4.279700e+02
+2 12597     -2.748500e+02 5.435000e+02
+14 12597     3.490000e+02 2.298999e+01
+2 12598     3.202900e+02 5.430000e+02
+3 12598     1.735900e+02 2.024500e+02
+6 12598     2.383800e+02 8.367400e+02
+8 12598     3.317900e+02 4.229000e+02
+9 12598     1.231700e+02 5.561600e+02
+2 12599     -2.313800e+02 5.422700e+02
+6 12599     -4.289800e+02 8.776200e+02
+8 12599     -1.118300e+02 4.244100e+02
+13 12599     2.559200e+02 3.921900e+02
+14 12599     3.942000e+02 2.521002e+01
+2 12600     2.828900e+02 5.426100e+02
+6 12600     1.944900e+02 8.424600e+02
+9 12600     9.084998e+01 5.553000e+02
+13 12600     6.833800e+02 3.452800e+02
+2 12601     -1.253400e+02 5.418500e+02
+3 12601     -2.612600e+02 2.014300e+02
+4 12601     1.598300e+02 -5.169399e+02
+5 12601     6.149000e+02 1.258500e+02
+13 12601     3.529500e+02 4.044000e+02
+14 12601     5.096100e+02 3.633002e+01
+2 12602     2.663500e+02 5.408400e+02
+3 12602     1.219200e+02 1.999300e+02
+6 12602     1.743300e+02 8.426800e+02
+8 12602     2.881100e+02 4.214700e+02
+9 12602     7.653003e+01 5.530700e+02
+11 12602     5.977300e+02 -1.017500e+02
+13 12602     6.694800e+02 3.464500e+02
+2 12603     -3.731300e+02 5.400700e+02
+14 12603     2.475500e+02 1.056000e+01
+2 12604     -4.218300e+02 5.393300e+02
+3 12604     -5.404300e+02 2.044600e+02
+4 12604     1.616300e+02 -3.084600e+02
+5 12604     2.952200e+02 1.007800e+02
+11 12604     3.196002e+01 -6.295001e+01
+13 12604     9.165997e+01 3.708400e+02
+14 12604     1.997000e+02 5.869995e+00
+2 12605     -2.197300e+02 5.396900e+02
+8 12605     -1.024300e+02 4.228300e+02
+11 12605     2.229500e+02 -4.512000e+01
+2 12606     -1.373600e+02 5.392900e+02
+3 12606     -2.720700e+02 1.989600e+02
+5 12606     6.013800e+02 1.228100e+02
+11 12606     3.072000e+02 -3.734003e+01
+14 12606     4.967000e+02 3.212000e+01
+2 12607     -2.454800e+02 5.379300e+02
+6 12607     -4.460300e+02 8.685900e+02
+2 12608     -2.409100e+02 5.376000e+02
+6 12608     -4.416200e+02 8.690100e+02
+2 12609     3.119900e+02 5.373100e+02
+3 12609     1.655500e+02 1.969300e+02
+6 12609     2.285500e+02 8.320300e+02
+8 12609     3.245400e+02 4.185100e+02
+9 12609     1.159200e+02 5.512600e+02
+11 12609     6.347100e+02 -1.131800e+02
+13 12609     7.083600e+02 3.363600e+02
+2 12610     5.564500e+02 5.356400e+02
+8 12610     5.214700e+02 4.109600e+02
+2 12611     -5.661300e+02 5.348200e+02
+3 12611     -6.810200e+02 2.035700e+02
+5 12611     1.523000e+02 8.702002e+01
+8 12611     -3.883200e+02 4.097600e+02
+13 12611     -2.533002e+01 3.534200e+02
+14 12611     6.116998e+01 -8.919983e+00
+2 12612     -5.529500e+02 5.350200e+02
+3 12612     -6.677900e+02 2.023900e+02
+5 12612     1.655400e+02 8.819000e+01
+8 12612     -3.768800e+02 4.094800e+02
+11 12612     -8.383002e+01 -7.704999e+01
+13 12612     -1.488000e+01 3.547500e+02
+14 12612     7.328998e+01 -8.250000e+00
+2 12613     -4.973400e+02 5.345700e+02
+4 12613     1.610200e+02 -2.624900e+02
+5 12613     2.190601e+02 9.172998e+01
+8 12613     -3.314600e+02 4.122200e+02
+11 12613     -3.579999e+01 -7.171997e+01
+14 12613     1.256300e+02 -4.169983e+00
+2 12614     -3.260300e+02 5.337000e+02
+6 12614     -5.485000e+02 8.457700e+02
+2 12615     -5.877000e+02 5.322600e+02
+14 12615     4.132001e+01 -1.298999e+01
+2 12616     -1.720200e+02 5.319700e+02
+3 12616     -3.048100e+02 1.926200e+02
+4 12616     1.552800e+02 -4.787600e+02
+5 12616     5.608101e+02 1.128900e+02
+6 12616     -3.525300e+02 8.791600e+02
+8 12616     -6.223999e+01 4.175700e+02
+13 12616     3.092400e+02 3.908300e+02
+14 12616     4.574100e+02 2.202002e+01
+2 12617     -3.074900e+02 5.314100e+02
+5 12617     4.127500e+02 1.020200e+02
+6 12617     -5.246800e+02 8.470400e+02
+14 12617     3.136200e+02 8.809998e+00
+2 12618     -2.248700e+02 5.312000e+02
+3 12618     -3.542000e+02 1.927800e+02
+13 12618     2.609600e+02 3.845100e+02
+14 12618     4.006500e+02 1.632001e+01
+2 12619     -5.139400e+02 5.304400e+02
+5 12619     2.025400e+02 8.690997e+01
+2 12620     -1.677500e+02 5.304000e+02
+4 12620     1.532400e+02 -4.815100e+02
+6 12620     -3.472100e+02 8.779100e+02
+8 12620     -5.928003e+01 4.165800e+02
+11 12620     2.754301e+02 -4.700000e+01
+2 12621     -4.622700e+02 5.300700e+02
+5 12621     2.529700e+02 9.012000e+01
+2 12622     -4.167200e+02 5.295900e+02
+11 12622     3.532001e+01 -6.917999e+01
+2 12623     2.517600e+02 5.294000e+02
+8 12623     2.764500e+02 4.122100e+02
+9 12623     6.359003e+01 5.424500e+02
+2 12624     3.000800e+02 5.288700e+02
+3 12624     1.542800e+02 1.891200e+02
+8 12624     3.152900e+02 4.119100e+02
+9 12624     1.057900e+02 5.438700e+02
+11 12624     6.254301e+02 -1.178700e+02
+13 12624     6.971200e+02 3.316800e+02
+2 12625     -2.415200e+02 5.279800e+02
+3 12625     -3.700300e+02 1.896800e+02
+4 12625     1.537200e+02 -4.265900e+02
+6 12625     -4.402900e+02 8.575400e+02
+8 12625     -1.203400e+02 4.126100e+02
+11 12625     2.017600e+02 -5.640002e+01
+13 12625     2.463101e+02 3.801300e+02
+14 12625     3.825800e+02 1.120001e+01
+2 12626     -4.238700e+02 5.277500e+02
+13 12626     8.940997e+01 3.620300e+02
+2 12627     -1.174400e+02 5.265800e+02
+3 12627     -2.532900e+02 1.865300e+02
+4 12627     1.514600e+02 -5.213400e+02
+2 12628     1.991998e+01 5.256400e+02
+8 12628     9.762000e+01 4.163700e+02
+11 12628     4.739600e+02 -3.165002e+01
+2 12629     2.788400e+02 5.250000e+02
+6 12629     1.891000e+02 8.216800e+02
+8 12629     2.981300e+02 4.088400e+02
+11 12629     6.074700e+02 -1.178200e+02
+2 12630     2.788400e+02 5.250000e+02
+6 12630     1.891000e+02 8.216800e+02
+8 12630     2.981300e+02 4.088400e+02
+11 12630     6.074700e+02 -1.178200e+02
+2 12631     4.478199e+02 5.243200e+02
+3 12631     2.996000e+02 1.864000e+02
+8 12631     4.316000e+02 4.026200e+02
+9 12631     2.361600e+02 5.429000e+02
+2 12632     5.250200e+02 5.246900e+02
+8 12632     4.953199e+02 4.020100e+02
+2 12633     -3.032300e+02 5.233900e+02
+4 12633     1.520300e+02 -3.830400e+02
+5 12633     4.169600e+02 9.440002e+01
+6 12633     -5.187900e+02 8.377300e+02
+14 12633     3.181200e+02 1.669983e+00
+2 12634     -1.494000e+02 5.234900e+02
+3 12634     -2.832200e+02 1.839500e+02
+4 12634     1.499000e+02 -4.952900e+02
+5 12634     5.859800e+02 1.062400e+02
+6 12634     -3.232000e+02 8.736600e+02
+14 12634     4.810100e+02 1.696997e+01
+2 12635     -1.550500e+02 5.223500e+02
+3 12635     -2.888800e+02 1.833500e+02
+5 12635     5.792200e+02 1.050500e+02
+6 12635     -3.303100e+02 8.708800e+02
+11 12635     2.885800e+02 -5.246997e+01
+13 12635     3.244600e+02 3.851000e+02
+14 12635     4.758500e+02 1.489001e+01
+2 12636     -2.354500e+02 5.205500e+02
+11 12636     2.073000e+02 -6.192999e+01
+13 12636     2.512900e+02 3.745400e+02
+14 12636     3.887000e+02 5.010010e+00
+2 12637     -1.515300e+02 5.207600e+02
+3 12637     -2.855400e+02 1.822100e+02
+6 12637     -3.252200e+02 8.692400e+02
+8 12637     -4.534003e+01 4.089100e+02
+11 12637     2.919900e+02 -5.303998e+01
+14 12637     4.795601e+02 1.321997e+01
+2 12638     -5.618700e+02 5.189500e+02
+5 12638     1.553800e+02 7.460999e+01
+11 12638     -9.146002e+01 -8.720001e+01
+13 12638     -2.222998e+01 3.422600e+02
+14 12638     6.404999e+01 -2.202002e+01
+2 12639     5.094301e+02 5.188800e+02
+3 12639     3.574900e+02 1.822800e+02
+2 12640     -1.860900e+02 5.178100e+02
+5 12640     5.435900e+02 9.658002e+01
+11 12640     2.565400e+02 -5.871002e+01
+2 12641     2.609301e+02 5.175200e+02
+6 12641     1.679400e+02 8.152300e+02
+9 12641     7.178998e+01 5.324700e+02
+2 12642     5.974200e+02 5.173300e+02
+3 12642     4.395900e+02 1.817400e+02
+8 12642     5.562300e+02 3.945400e+02
+2 12643     -7.969900e+02 5.169500e+02
+5 12643     -5.669000e+01 5.937000e+01
+8 12643     -5.749200e+02 3.891600e+02
+14 12643     -1.435800e+02 -3.982001e+01
+2 12644     -2.282800e+02 5.169600e+02
+6 12644     -4.231400e+02 8.462600e+02
+11 12644     2.145900e+02 -6.335999e+01
+2 12645     -2.282800e+02 5.169600e+02
+6 12645     -4.231400e+02 8.462600e+02
+2 12646     -2.282800e+02 5.169600e+02
+6 12646     -4.231400e+02 8.462600e+02
+11 12646     2.145900e+02 -6.335999e+01
+2 12647     -1.516600e+02 5.170600e+02
+11 12647     2.918800e+02 -5.632001e+01
+2 12648     -7.996000e+02 5.145000e+02
+5 12648     -5.963000e+01 5.809003e+01
+14 12648     -1.461100e+02 -4.135999e+01
+2 12649     -5.839500e+02 5.141600e+02
+11 12649     -1.102700e+02 -9.233002e+01
+14 12649     4.313000e+01 -2.738000e+01
+2 12650     5.566400e+02 5.121400e+02
+3 12650     4.024399e+02 1.761800e+02
+6 12650     4.998400e+02 7.258900e+02
+8 12650     5.227400e+02 3.909600e+02
+9 12650     3.295601e+02 5.342500e+02
+2 12651     5.087000e+01 5.114900e+02
+11 12651     5.086200e+02 -3.956000e+01
+2 12652     -6.879700e+02 5.104200e+02
+5 12652     3.740002e+01 6.046997e+01
+14 12652     -5.117999e+01 -3.773999e+01
+2 12653     5.803300e+02 5.103100e+02
+3 12653     4.240400e+02 1.751200e+02
+2 12654     -5.658300e+02 5.079600e+02
+3 12654     -6.819200e+02 1.781300e+02
+5 12654     1.508300e+02 6.428998e+01
+13 12654     -2.584003e+01 3.338700e+02
+14 12654     5.944000e+01 -3.156000e+01
+2 12655     -1.108800e+02 5.069500e+02
+13 12655     3.635300e+02 3.762300e+02
+14 12655     5.226200e+02 3.539978e+00
+2 12656     -2.388200e+02 5.065100e+02
+3 12656     -3.677300e+02 1.690700e+02
+6 12656     -4.350100e+02 8.307900e+02
+8 12656     -1.179200e+02 3.956900e+02
+11 12656     2.045400e+02 -7.234003e+01
+13 12656     2.478101e+02 3.631200e+02
+14 12656     3.845900e+02 -8.119995e+00
+2 12657     6.484000e+02 5.047300e+02
+3 12657     4.872200e+02 1.707400e+02
+8 12657     5.989600e+02 3.841400e+02
+9 12657     4.065200e+02 5.298000e+02
+2 12658     3.246002e+01 5.026000e+02
+5 12658     7.999900e+02 1.009600e+02
+8 12658     1.080400e+02 3.981100e+02
+2 12659     8.010010e+00 5.006800e+02
+6 12659     -1.207100e+02 8.807700e+02
+11 12659     4.610699e+02 -5.297998e+01
+14 12659     6.599000e+02 1.059998e+01
+2 12660     -9.053003e+01 4.996800e+02
+5 12660     6.513199e+02 8.770001e+01
+2 12661     7.104500e+02 4.996300e+02
+3 12661     5.445601e+02 1.666200e+02
+2 12662     -2.486600e+02 4.965600e+02
+5 12662     4.726500e+02 7.287000e+01
+6 12662     -4.467200e+02 8.156900e+02
+8 12662     -1.258800e+02 3.871900e+02
+11 12662     1.938900e+02 -8.113000e+01
+2 12663     2.602800e+02 4.919400e+02
+6 12663     1.667200e+02 7.830500e+02
+13 12663     6.591100e+02 3.057900e+02
+2 12664     2.602800e+02 4.919400e+02
+3 12664     1.167100e+02 1.539400e+02
+8 12664     2.823900e+02 3.827600e+02
+9 12664     7.062000e+01 5.120400e+02
+11 12664     5.921400e+02 -1.410100e+02
+2 12665     -1.373999e+01 4.916500e+02
+5 12665     7.424500e+02 8.688000e+01
+8 12665     6.941998e+01 3.886600e+02
+2 12666     -2.936200e+02 4.911600e+02
+5 12666     4.239500e+02 6.497998e+01
+6 12666     -5.031300e+02 7.986300e+02
+8 12666     -1.630300e+02 3.818800e+02
+11 12666     1.505500e+02 -8.878003e+01
+14 12666     3.264399e+02 -2.657001e+01
+2 12667     1.583600e+02 4.895600e+02
+3 12667     2.770020e+00 1.513000e+02
+8 12667     2.134000e+02 3.895700e+02
+14 12667     8.437900e+02 1.721997e+01
+2 12668     -3.380500e+02 4.888600e+02
+5 12668     3.771200e+02 6.039001e+01
+6 12668     -5.583500e+02 7.861800e+02
+11 12668     1.077300e+02 -9.414001e+01
+2 12669     -3.306800e+02 4.879500e+02
+5 12669     3.841700e+02 5.964001e+01
+2 12670     -3.306800e+02 4.879500e+02
+5 12670     3.841700e+02 5.964001e+01
+2 12671     -7.248800e+02 4.876100e+02
+5 12671     2.590027e+00 3.885999e+01
+14 12671     -8.514001e+01 -5.898999e+01
+2 12672     2.585601e+02 4.873000e+02
+6 12672     1.646800e+02 7.779600e+02
+8 12672     2.816800e+02 3.779700e+02
+13 12672     6.575000e+02 3.022000e+02
+2 12673     -3.195200e+02 4.825300e+02
+5 12673     3.957100e+02 5.534998e+01
+8 12673     -1.846900e+02 3.741200e+02
+11 12673     1.252300e+02 -9.741998e+01
+2 12674     -3.195200e+02 4.825300e+02
+8 12674     -1.846900e+02 3.741200e+02
+11 12674     1.252300e+02 -9.741998e+01
+2 12675     -1.950600e+02 4.818300e+02
+13 12675     2.860800e+02 3.484100e+02
+2 12676     -3.087100e+02 4.814000e+02
+11 12676     1.361400e+02 -9.696002e+01
+14 12676     3.105601e+02 -3.698999e+01
+2 12677     7.621997e+01 4.817300e+02
+6 12677     -3.207001e+01 8.729300e+02
+13 12677     5.445000e+02 3.770300e+02
+2 12678     6.903003e+01 4.811700e+02
+6 12678     -4.115997e+01 8.697200e+02
+2 12679     -1.563900e+02 4.803400e+02
+3 12679     -2.911800e+02 1.420700e+02
+6 12679     -3.285800e+02 8.161000e+02
+8 12679     -4.914001e+01 3.765300e+02
+14 12679     4.712400e+02 -2.521002e+01
+2 12680     -1.449300e+02 4.800000e+02
+6 12680     -3.144000e+02 8.188700e+02
+8 12680     -3.963000e+01 3.765700e+02
+2 12681     -3.300900e+02 4.782700e+02
+5 12681     3.843500e+02 5.077002e+01
+2 12682     -3.300900e+02 4.782700e+02
+5 12682     3.843500e+02 5.077002e+01
+6 12682     -5.475400e+02 7.743600e+02
+8 12682     -1.933500e+02 3.706800e+02
+11 12682     1.153400e+02 -1.012600e+02
+2 12683     -3.300900e+02 4.782700e+02
+11 12683     1.153400e+02 -1.012600e+02
+2 12684     -6.742900e+02 4.775100e+02
+3 12684     -7.906700e+02 1.504600e+02
+13 12684     -1.095400e+02 3.022800e+02
+14 12684     -4.115997e+01 -6.457001e+01
+2 12685     -6.162900e+02 4.776900e+02
+3 12685     -7.329100e+02 1.505800e+02
+2 12686     -6.162900e+02 4.776900e+02
+11 12686     -1.385400e+02 -1.184800e+02
+2 12687     -3.031700e+02 4.760700e+02
+6 12687     -5.137000e+02 7.773100e+02
+14 12687     3.153500e+02 -4.091998e+01
+2 12688     -1.536800e+02 4.748600e+02
+6 12688     -3.252500e+02 8.099900e+02
+11 12688     2.886801e+02 -9.007001e+01
+14 12688     4.741000e+02 -3.017999e+01
+2 12689     -1.798999e+01 4.750200e+02
+6 12689     -1.527000e+02 8.419200e+02
+11 12689     4.319200e+02 -7.742999e+01
+13 12689     4.502400e+02 3.601100e+02
+14 12689     6.276400e+02 -1.750000e+01
+2 12690     6.027200e+02 4.743300e+02
+9 12690     3.684800e+02 5.029900e+02
+2 12691     -8.789978e+00 4.738800e+02
+3 12691     -1.526100e+02 1.354600e+02
+14 12691     6.383000e+02 -1.716998e+01
+2 12692     -5.994800e+02 4.735900e+02
+13 12692     -5.309003e+01 3.059100e+02
+14 12692     2.589001e+01 -6.294000e+01
+2 12693     -2.453003e+01 4.737400e+02
+3 12693     -1.668400e+02 1.355100e+02
+5 12693     7.273800e+02 6.725000e+01
+6 12693     -1.609300e+02 8.388700e+02
+8 12693     6.081000e+01 3.737500e+02
+11 12693     4.259700e+02 -7.862000e+01
+14 12693     6.208500e+02 -1.846002e+01
+2 12694     -2.087300e+02 4.724300e+02
+3 12694     -3.399100e+02 1.352600e+02
+8 12694     -9.320001e+01 3.690600e+02
+2 12695     5.119000e+02 4.727100e+02
+6 12695     4.460500e+02 6.877600e+02
+8 12695     4.846801e+02 3.601400e+02
+9 12695     2.920500e+02 5.003700e+02
+11 12695     7.601100e+02 -2.489900e+02
+2 12696     -1.592300e+02 4.719000e+02
+6 12696     -3.322100e+02 8.046600e+02
+13 12696     3.173199e+02 3.437400e+02
+14 12696     4.677900e+02 -3.288000e+01
+2 12697     4.887000e+01 4.719600e+02
+3 12697     -9.841998e+01 1.341100e+02
+5 12697     8.179200e+02 7.328003e+01
+6 12697     -6.702002e+01 8.541600e+02
+8 12697     1.218500e+02 3.737100e+02
+13 12697     5.159100e+02 3.659300e+02
+14 12697     7.069900e+02 -1.245001e+01
+2 12698     3.432300e+02 4.718200e+02
+3 12698     1.969900e+02 1.359300e+02
+6 12698     2.628100e+02 7.464900e+02
+2 12699     -6.462700e+02 4.710400e+02
+3 12699     -7.633800e+02 1.441300e+02
+2 12700     -7.665000e+02 4.705200e+02
+14 12700     -1.220200e+02 -7.556000e+01
+2 12701     -2.026900e+02 4.695500e+02
+13 12701     2.781200e+02 3.376000e+02
+2 12702     -7.106800e+02 4.674400e+02
+5 12702     1.348999e+01 2.260999e+01
+13 12702     -1.367900e+02 2.926100e+02
+14 12702     -7.379999e+01 -7.432001e+01
+2 12703     -6.124600e+02 4.662700e+02
+3 12703     -7.294300e+02 1.394600e+02
+13 12703     -6.310999e+01 2.990300e+02
+2 12704     -7.659000e+02 4.653500e+02
+5 12704     -3.548999e+01 1.828003e+01
+8 12704     -5.497600e+02 3.504900e+02
+2 12705     -1.039001e+01 4.645700e+02
+3 12705     -1.541400e+02 1.265600e+02
+6 12705     -1.427100e+02 8.304400e+02
+14 12705     6.359399e+02 -2.640002e+01
+2 12706     -2.273800e+02 4.642300e+02
+6 12706     -4.166500e+02 7.787400e+02
+8 12706     -1.083800e+02 3.617800e+02
+11 12706     2.130700e+02 -1.049900e+02
+2 12707     -1.409003e+01 4.623500e+02
+6 12707     -1.471700e+02 8.266900e+02
+11 12707     4.363800e+02 -8.675000e+01
+13 12707     4.530800e+02 3.504500e+02
+14 12707     6.313101e+02 -2.908002e+01
+2 12708     1.758002e+01 4.608000e+02
+13 12708     4.838700e+02 3.526000e+02
+2 12709     4.540900e+02 4.572900e+02
+6 12709     3.782800e+02 6.778700e+02
+2 12710     1.092300e+02 4.558900e+02
+6 12710     1.053003e+01 8.481600e+02
+2 12711     1.092300e+02 4.558900e+02
+6 12711     1.053003e+01 8.481600e+02
+2 12712     -3.225300e+02 4.531000e+02
+3 12712     -4.480400e+02 1.186600e+02
+5 12712     3.895800e+02 2.765002e+01
+11 12712     1.215400e+02 -1.195500e+02
+14 12712     2.935800e+02 -6.335999e+01
+2 12713     -3.426300e+02 4.513700e+02
+5 12713     3.689301e+02 2.516998e+01
+2 12714     -3.563300e+02 4.510900e+02
+3 12714     -4.804900e+02 1.170800e+02
+6 12714     -5.770800e+02 7.343400e+02
+8 12714     -2.149700e+02 3.483800e+02
+11 12714     8.865002e+01 -1.238400e+02
+2 12715     -6.441998e+01 4.510500e+02
+13 12715     4.039399e+02 3.360600e+02
+14 12715     5.725601e+02 -4.439001e+01
+2 12716     -6.897000e+02 4.494200e+02
+8 12716     -4.878100e+02 3.389600e+02
+11 12716     -1.979300e+02 -1.420400e+02
+2 12717     -2.605200e+02 4.481000e+02
+3 12717     -3.891200e+02 1.130100e+02
+5 12717     4.559301e+02 2.682001e+01
+6 12717     -4.571400e+02 7.524200e+02
+8 12717     -1.355300e+02 3.480400e+02
+11 12717     1.818600e+02 -1.190600e+02
+2 12718     -6.235999e+01 4.473700e+02
+3 12718     -2.031200e+02 1.096700e+02
+5 12718     6.786200e+02 3.813000e+01
+8 12718     2.896002e+01 3.521000e+02
+11 12718     3.835100e+02 -1.035300e+02
+13 12718     4.055500e+02 3.331600e+02
+14 12718     5.744900e+02 -4.797998e+01
+2 12719     -1.879500e+02 4.471800e+02
+8 12719     -7.540002e+01 3.487800e+02
+11 12719     2.539200e+02 -1.146000e+02
+14 12719     4.354900e+02 -5.881000e+01
+2 12720     -1.828998e+01 4.467900e+02
+3 12720     -1.614400e+02 1.093000e+02
+5 12720     7.313700e+02 4.144000e+01
+6 12720     -1.526100e+02 8.072100e+02
+11 12720     4.310500e+02 -9.919000e+01
+13 12720     4.479200e+02 3.372300e+02
+14 12720     6.256899e+02 -4.383002e+01
+2 12721     -2.937200e+02 4.454900e+02
+14 12721     3.234100e+02 -6.807001e+01
+2 12722     -1.375900e+02 4.447600e+02
+5 12722     5.904000e+02 3.007001e+01
+11 12722     3.038800e+02 -1.128700e+02
+2 12723     4.071400e+02 4.443100e+02
+3 12723     2.586600e+02 1.113700e+02
+6 12723     3.358600e+02 7.046500e+02
+8 12723     4.016000e+02 3.415200e+02
+9 12723     2.001500e+02 4.731100e+02
+2 12724     -1.507800e+02 4.426700e+02
+5 12724     5.762400e+02 2.796002e+01
+2 12725     -1.043700e+02 4.421400e+02
+6 12725     -2.608400e+02 7.807800e+02
+2 12726     -5.884400e+02 4.417800e+02
+14 12726     3.413000e+01 -8.926001e+01
+2 12727     -2.527002e+01 4.403400e+02
+11 12727     4.238600e+02 -1.063400e+02
+13 12727     4.410200e+02 3.313400e+02
+14 12727     6.171000e+02 -5.122998e+01
+2 12728     -6.072400e+02 4.400300e+02
+11 12728     -1.320300e+02 -1.451500e+02
+13 12728     -5.996997e+01 2.808100e+02
+14 12728     1.623999e+01 -9.183002e+01
+2 12729     4.064399e+02 4.388100e+02
+3 12729     2.583199e+02 1.060100e+02
+6 12729     3.348200e+02 6.979700e+02
+8 12729     4.006500e+02 3.365800e+02
+9 12729     1.994500e+02 4.682200e+02
+13 12729     7.797400e+02 2.349600e+02
+2 12730     -6.012600e+02 4.375600e+02
+3 12730     -7.197300e+02 1.099100e+02
+11 12730     -1.270000e+02 -1.458500e+02
+13 12730     -5.508002e+01 2.795900e+02
+14 12730     2.190997e+01 -9.362000e+01
+2 12731     -3.679100e+02 4.375800e+02
+5 12731     3.414900e+02 1.077002e+01
+8 12731     -2.237400e+02 3.366600e+02
+2 12732     5.128199e+02 4.375600e+02
+6 12732     4.441600e+02 6.454600e+02
+9 12732     2.930800e+02 4.697800e+02
+2 12733     5.128199e+02 4.375600e+02
+3 12733     3.636300e+02 1.072500e+02
+6 12733     4.441600e+02 6.454600e+02
+9 12733     2.930800e+02 4.697800e+02
+2 12734     6.258800e+02 4.377000e+02
+6 12734     5.736700e+02 6.291300e+02
+9 12734     3.890800e+02 4.722400e+02
+2 12735     -2.925000e+02 4.369400e+02
+6 12735     -4.960100e+02 7.312800e+02
+14 12735     3.239500e+02 -7.553998e+01
+2 12736     -8.623999e+01 4.355000e+02
+5 12736     6.496400e+02 2.538000e+01
+6 12736     -2.376900e+02 7.771400e+02
+8 12736     9.219971e+00 3.417900e+02
+13 12736     3.827600e+02 3.218500e+02
+14 12736     5.469301e+02 -6.054999e+01
+2 12737     5.370001e+01 4.330100e+02
+3 12737     -9.419000e+01 9.598999e+01
+8 12737     1.257200e+02 3.425200e+02
+13 12737     5.170500e+02 3.326000e+02
+14 12737     7.099301e+02 -5.148999e+01
+2 12738     -3.909600e+02 4.318100e+02
+3 12738     -5.139700e+02 9.953003e+01
+14 12738     2.235900e+02 -8.646002e+01
+2 12739     -7.341998e+01 4.298600e+02
+13 12739     3.942400e+02 3.182100e+02
+14 12739     5.610100e+02 -6.537000e+01
+2 12740     -7.341998e+01 4.298600e+02
+3 12740     -2.134700e+02 9.307001e+01
+14 12740     5.610100e+02 -6.537000e+01
+2 12741     3.835100e+02 4.300100e+02
+6 12741     3.075000e+02 6.886600e+02
+2 12742     -3.962900e+02 4.293200e+02
+13 12742     1.088700e+02 2.893900e+02
+14 12742     2.176000e+02 -8.920001e+01
+2 12743     -3.962900e+02 4.293200e+02
+3 12743     -5.198200e+02 9.727002e+01
+13 12743     1.088700e+02 2.893900e+02
+14 12743     2.176000e+02 -8.920001e+01
+2 12744     5.359998e+01 4.280300e+02
+3 12744     -9.429999e+01 9.129999e+01
+6 12744     -6.020001e+01 7.999000e+02
+8 12744     1.256500e+02 3.386900e+02
+9 12744     -1.119100e+02 4.483900e+02
+13 12744     5.166200e+02 3.289700e+02
+14 12744     7.096300e+02 -5.584998e+01
+2 12745     -7.676001e+01 4.269200e+02
+5 12745     6.600100e+02 1.721997e+01
+6 12745     -2.250400e+02 7.682700e+02
+2 12746     -7.676001e+01 4.269200e+02
+5 12746     6.600100e+02 1.721997e+01
+2 12747     -7.214200e+02 4.260000e+02
+13 12747     -1.456900e+02 2.633100e+02
+2 12748     -1.529700e+02 4.262200e+02
+13 12748     3.202700e+02 3.075900e+02
+2 12749     -2.954100e+02 4.243500e+02
+5 12749     4.161600e+02 2.510010e+00
+14 12749     3.202500e+02 -8.728998e+01
+2 12750     -2.954100e+02 4.243500e+02
+5 12750     4.161600e+02 2.510010e+00
+6 12750     -4.982400e+02 7.153800e+02
+11 12750     1.473700e+02 -1.396800e+02
+14 12750     3.202500e+02 -8.728998e+01
+2 12751     -2.950012e+00 4.243800e+02
+3 12751     -1.472000e+02 8.840997e+01
+5 12751     7.477000e+02 1.796002e+01
+6 12751     -1.319900e+02 7.806100e+02
+8 12751     7.832001e+01 3.337500e+02
+9 12751     -1.599100e+02 4.434200e+02
+13 12751     4.609800e+02 3.199200e+02
+14 12751     6.421100e+02 -6.569000e+01
+2 12752     -2.191300e+02 4.237600e+02
+5 12752     4.979200e+02 4.929993e+00
+2 12753     -3.142100e+02 4.217600e+02
+5 12753     3.959301e+02 -9.299927e-01
+14 12753     3.006700e+02 -9.089001e+01
+2 12754     -1.835800e+02 4.200100e+02
+5 12754     5.368500e+02 3.289978e+00
+6 12754     -3.590300e+02 7.340400e+02
+8 12754     -7.189001e+01 3.265100e+02
+9 12754     -3.141600e+02 4.338800e+02
+11 12754     2.572900e+02 -1.359100e+02
+2 12755     -4.891000e+02 4.185400e+02
+5 12755     2.174700e+02 -1.042999e+01
+8 12755     -3.235200e+02 3.198200e+02
+2 12756     -5.909900e+02 4.176200e+02
+8 12756     -4.080100e+02 3.164600e+02
+2 12757     -6.646002e+01 4.159800e+02
+3 12757     -2.069300e+02 7.959998e+01
+8 12757     2.554999e+01 3.264000e+02
+2 12758     -3.597700e+02 4.155800e+02
+3 12758     -4.849100e+02 8.209003e+01
+11 12758     8.609003e+01 -1.502800e+02
+13 12758     1.391300e+02 2.818500e+02
+14 12758     2.536700e+02 -9.959998e+01
+2 12759     -5.265400e+02 4.137000e+02
+5 12759     1.803400e+02 -1.614001e+01
+8 12759     -3.543300e+02 3.155400e+02
+11 12759     -6.442999e+01 -1.597600e+02
+2 12760     -6.003998e+01 4.125800e+02
+4 12760     8.408002e+01 -5.517000e+02
+11 12760     3.871500e+02 -1.305300e+02
+14 12760     5.758199e+02 -8.045001e+01
+2 12761     5.042000e+02 4.126700e+02
+3 12761     3.562800e+02 8.441998e+01
+8 12761     4.765900e+02 3.100400e+02
+2 12762     3.239301e+02 4.122500e+02
+6 12762     2.382400e+02 6.770700e+02
+8 12762     3.335200e+02 3.142300e+02
+2 12763     -4.795400e+02 4.111800e+02
+8 12763     -3.161300e+02 3.151200e+02
+2 12764     5.268700e+02 4.108800e+02
+6 12764     4.593300e+02 6.124600e+02
+9 12764     3.054399e+02 4.470800e+02
+12 12764     5.404500e+02 6.211400e+02
+2 12765     -5.444700e+02 4.100800e+02
+5 12765     1.627900e+02 -2.023999e+01
+8 12765     -3.688500e+02 3.116300e+02
+11 12765     -7.940002e+01 -1.630700e+02
+13 12765     -1.140997e+01 2.641100e+02
+14 12765     7.316998e+01 -1.138800e+02
+2 12766     3.960100e+02 4.084400e+02
+3 12766     2.487000e+02 7.669000e+01
+6 12766     3.210500e+02 6.617800e+02
+2 12767     -2.849300e+02 4.078800e+02
+5 12767     4.252100e+02 -1.233002e+01
+2 12768     -5.378700e+02 4.073800e+02
+8 12768     -3.637000e+02 3.098600e+02
+11 12768     -7.402002e+01 -1.639400e+02
+13 12768     -6.369995e+00 2.627500e+02
+14 12768     7.908002e+01 -1.155500e+02
+2 12769     -1.529500e+02 4.074600e+02
+9 12769     -2.874500e+02 4.242100e+02
+13 12769     3.192000e+02 2.923700e+02
+14 12769     4.707900e+02 -9.346002e+01
+2 12770     -5.452800e+02 4.062000e+02
+3 12770     -6.660100e+02 7.720001e+01
+2 12771     -5.614400e+02 4.034400e+02
+5 12771     1.456500e+02 -2.670001e+01
+8 12771     -3.830600e+02 3.067000e+02
+11 12771     -9.456000e+01 -1.677100e+02
+12 12771     -6.337400e+02 6.202300e+02
+14 12771     5.654999e+01 -1.202600e+02
+2 12772     -7.674300e+02 4.023900e+02
+5 12772     -4.271997e+01 -3.419000e+01
+8 12772     -5.501100e+02 2.998600e+02
+2 12773     -5.583300e+02 4.028100e+02
+11 12773     -9.198999e+01 -1.691400e+02
+12 12773     -6.299700e+02 6.198200e+02
+2 12774     -1.310100e+02 4.019000e+02
+5 12774     5.933900e+02 -1.150000e+01
+6 12774     -2.925200e+02 7.237000e+02
+8 12774     -2.814001e+01 3.138500e+02
+9 12774     -2.681100e+02 4.203100e+02
+2 12775     -5.927300e+02 4.008000e+02
+8 12775     -4.081000e+02 3.034400e+02
+12 12775     -6.696000e+02 6.125900e+02
+14 12775     2.720001e+01 -1.238400e+02
+2 12776     -5.814200e+02 4.004900e+02
+3 12776     -7.014400e+02 7.291998e+01
+2 12777     -1.424000e+02 4.003200e+02
+3 12777     -2.785100e+02 6.458002e+01
+5 12777     5.806899e+02 -1.351001e+01
+6 12777     -3.064000e+02 7.192000e+02
+8 12777     -3.810999e+01 3.120100e+02
+9 12777     -2.778900e+02 4.184300e+02
+11 12777     2.973700e+02 -1.485400e+02
+13 12777     3.277300e+02 2.873500e+02
+14 12777     4.813500e+02 -9.956000e+01
+2 12778     -1.389400e+02 4.006800e+02
+5 12778     5.846300e+02 -1.290997e+01
+6 12778     -3.026200e+02 7.204400e+02
+9 12778     -2.748200e+02 4.191000e+02
+2 12779     5.732001e+01 4.000400e+02
+3 12779     -9.101001e+01 6.414001e+01
+5 12779     8.199800e+02 -1.799988e+00
+6 12779     -5.510999e+01 7.648000e+02
+8 12779     1.284800e+02 3.159000e+02
+9 12779     -1.081600e+02 4.238600e+02
+11 12779     5.138900e+02 -1.324400e+02
+13 12779     5.177400e+02 3.054200e+02
+14 12779     7.121500e+02 -8.367999e+01
+2 12780     -6.022400e+02 3.991200e+02
+12 12780     -6.807200e+02 6.089700e+02
+14 12780     1.832001e+01 -1.256800e+02
+2 12781     -6.022400e+02 3.991200e+02
+12 12781     -6.807200e+02 6.089700e+02
+14 12781     1.832001e+01 -1.256800e+02
+2 12782     -5.378300e+02 3.989000e+02
+5 12782     1.681000e+02 -2.984003e+01
+14 12782     7.842999e+01 -1.230900e+02
+2 12783     -5.378300e+02 3.989000e+02
+5 12783     1.681000e+02 -2.984003e+01
+2 12784     -1.402300e+02 3.974000e+02
+5 12784     5.826899e+02 -1.617999e+01
+9 12784     -2.761600e+02 4.158800e+02
+2 12785     -5.328300e+02 3.965000e+02
+5 12785     1.727900e+02 -3.178998e+01
+8 12785     -3.595500e+02 3.012400e+02
+11 12785     -6.973999e+01 -1.722900e+02
+12 12785     -5.990400e+02 6.164700e+02
+14 12785     8.309003e+01 -1.250900e+02
+2 12786     -5.608200e+02 3.952800e+02
+3 12786     -6.813500e+02 6.762000e+01
+5 12786     1.458100e+02 -3.384003e+01
+11 12786     -9.428003e+01 -1.740300e+02
+12 12786     -6.314900e+02 6.106000e+02
+2 12787     -3.271500e+02 3.954200e+02
+4 12787     8.540002e+01 -3.508900e+02
+6 12787     -5.375600e+02 6.734200e+02
+8 12787     -1.914700e+02 3.056100e+02
+11 12787     1.138500e+02 -1.644700e+02
+2 12788     -7.690000e+02 3.950900e+02
+8 12788     -5.513500e+02 2.942700e+02
+11 12788     -2.610400e+02 -1.818700e+02
+2 12789     -2.511100e+02 3.947900e+02
+4 12789     8.234003e+01 -4.028000e+02
+5 12789     4.604100e+02 -2.371997e+01
+11 12789     1.894000e+02 -1.593300e+02
+13 12789     2.311600e+02 2.745400e+02
+14 12789     3.643700e+02 -1.115600e+02
+2 12790     6.046997e+01 3.941800e+02
+9 12790     -1.050100e+02 4.187700e+02
+14 12790     7.159500e+02 -8.898999e+01
+2 12791     -7.508500e+02 3.932800e+02
+14 12791     -1.144700e+02 -1.369600e+02
+2 12792     -7.346800e+02 3.935900e+02
+5 12792     -1.479999e+01 -3.982001e+01
+8 12792     -5.235500e+02 2.938000e+02
+2 12793     -1.333600e+02 3.921100e+02
+5 12793     5.911500e+02 -2.032001e+01
+6 12793     -2.940700e+02 7.124900e+02
+8 12793     -2.981000e+01 3.062400e+02
+9 12793     -2.698300e+02 4.115300e+02
+11 12793     3.087400e+02 -1.527600e+02
+14 12793     4.920300e+02 -1.049600e+02
+2 12794     -7.599200e+02 3.898800e+02
+11 12794     -2.545300e+02 -1.848300e+02
+2 12795     6.381300e+02 3.881800e+02
+3 12795     4.839399e+02 6.448999e+01
+12 12795     6.630601e+02 5.836700e+02
+2 12796     -3.352200e+02 3.880600e+02
+14 12796     2.771600e+02 -1.235500e+02
+2 12797     4.285999e+01 3.877800e+02
+11 12797     4.976600e+02 -1.439900e+02
+2 12798     -5.304400e+02 3.872200e+02
+8 12798     -3.571600e+02 2.937700e+02
+12 12798     -5.952700e+02 6.072200e+02
+14 12798     8.450000e+01 -1.326000e+02
+2 12799     -5.304400e+02 3.872200e+02
+14 12799     8.450000e+01 -1.326000e+02
+2 12800     -5.304400e+02 3.872200e+02
+12 12800     -5.952700e+02 6.072200e+02
+2 12801     -6.501900e+02 3.872000e+02
+5 12801     6.115997e+01 -4.357001e+01
+12 12801     -7.343000e+02 5.891100e+02
+14 12801     -2.641998e+01 -1.384000e+02
+2 12802     -7.911400e+02 3.861000e+02
+5 12802     -6.448999e+01 -4.742999e+01
+8 12802     -5.690900e+02 2.860400e+02
+11 12802     -2.777400e+02 -1.882400e+02
+14 12802     -1.496800e+02 -1.442200e+02
+2 12803     -7.911400e+02 3.861000e+02
+5 12803     -6.448999e+01 -4.742999e+01
+8 12803     -5.690900e+02 2.860400e+02
+11 12803     -2.777400e+02 -1.882400e+02
+14 12803     -1.496800e+02 -1.442200e+02
+2 12804     -5.237900e+02 3.858900e+02
+5 12804     1.808200e+02 -4.070001e+01
+12 12804     -5.876100e+02 6.069200e+02
+2 12805     -5.237900e+02 3.858900e+02
+3 12805     -6.450900e+02 5.729999e+01
+5 12805     1.808200e+02 -4.070001e+01
+14 12805     9.113000e+01 -1.336800e+02
+2 12806     -1.259800e+02 3.860100e+02
+5 12806     5.987600e+02 -2.557001e+01
+6 12806     -2.847200e+02 7.070600e+02
+8 12806     -2.395001e+01 3.012200e+02
+2 12807     -1.128800e+02 3.855500e+02
+9 12807     -2.520000e+02 4.063700e+02
+14 12807     5.139800e+02 -1.106200e+02
+2 12808     -6.532300e+02 3.848300e+02
+5 12808     5.803003e+01 -4.498999e+01
+8 12808     -4.574500e+02 2.892200e+02
+11 12808     -1.710200e+02 -1.844800e+02
+12 12808     -7.374600e+02 5.867400e+02
+13 12808     -9.603003e+01 2.382600e+02
+14 12808     -2.928998e+01 -1.402000e+02
+2 12809     -6.532300e+02 3.848300e+02
+11 12809     -1.710200e+02 -1.844800e+02
+12 12809     -7.374600e+02 5.867400e+02
+2 12810     -4.753900e+02 3.848100e+02
+3 12810     -5.975100e+02 5.544000e+01
+5 12810     2.277900e+02 -4.004999e+01
+11 12810     -2.039001e+01 -1.780900e+02
+14 12810     1.375300e+02 -1.319400e+02
+2 12811     -4.162000e+02 3.821200e+02
+5 12811     2.871600e+02 -4.082001e+01
+12 12811     -4.607500e+02 6.189200e+02
+2 12812     -4.162000e+02 3.821200e+02
+5 12812     2.871600e+02 -4.082001e+01
+2 12813     -4.162000e+02 3.821200e+02
+5 12813     2.871600e+02 -4.082001e+01
+12 12813     -4.607500e+02 6.189200e+02
+2 12814     -5.642400e+02 3.816200e+02
+5 12814     1.410700e+02 -4.578003e+01
+12 12814     -6.335800e+02 5.960400e+02
+2 12815     -5.642400e+02 3.816200e+02
+12 12815     -6.335800e+02 5.960400e+02
+2 12816     -7.496800e+02 3.795800e+02
+5 12816     -2.940997e+01 -5.185999e+01
+8 12816     -5.358000e+02 2.829000e+02
+2 12817     -2.475900e+02 3.789600e+02
+3 12817     -3.783300e+02 4.470001e+01
+6 12817     -4.346200e+02 6.703800e+02
+13 12817     2.337100e+02 2.625500e+02
+14 12817     3.674600e+02 -1.258800e+02
+2 12818     4.294200e+02 3.789000e+02
+6 12818     3.463500e+02 5.889400e+02
+9 12818     2.226400e+02 4.175500e+02
+2 12819     -7.602300e+02 3.768000e+02
+5 12819     -3.870001e+01 -5.482001e+01
+8 12819     -5.445300e+02 2.801700e+02
+11 12819     -2.555400e+02 -1.932200e+02
+2 12820     -5.701800e+02 3.771500e+02
+11 12820     -1.028500e+02 -1.882800e+02
+12 12820     -6.404600e+02 5.901600e+02
+2 12821     -1.463500e+02 3.771100e+02
+9 12821     -2.803400e+02 3.978200e+02
+13 12821     3.238600e+02 2.692200e+02
+2 12822     -7.726300e+02 3.764500e+02
+5 12822     -4.952002e+01 -5.535999e+01
+8 12822     -5.543500e+02 2.791800e+02
+14 12822     -1.347100e+02 -1.516700e+02
+2 12823     -4.030700e+02 3.759800e+02
+11 12823     4.465997e+01 -1.810700e+02
+2 12824     -1.268600e+02 3.758300e+02
+5 12824     5.965900e+02 -3.590997e+01
+14 12824     4.976500e+02 -1.211500e+02
+2 12825     -1.268600e+02 3.758300e+02
+5 12825     5.965900e+02 -3.590997e+01
+14 12825     4.976500e+02 -1.211500e+02
+2 12826     -3.650100e+02 3.751000e+02
+3 12826     -4.904700e+02 4.302002e+01
+5 12826     3.385400e+02 -4.600000e+01
+6 12826     -5.798700e+02 6.402500e+02
+12 12826     -4.003700e+02 6.188500e+02
+14 12826     2.453700e+02 -1.360100e+02
+2 12827     -1.168600e+02 3.740500e+02
+5 12827     6.083600e+02 -3.744000e+01
+6 12827     -2.723300e+02 6.931300e+02
+2 12828     -1.168600e+02 3.740500e+02
+5 12828     6.083600e+02 -3.744000e+01
+6 12828     -2.723300e+02 6.931300e+02
+9 12828     -2.548900e+02 3.959400e+02
+11 12828     3.253300e+02 -1.677400e+02
+2 12829     -6.611200e+02 3.736900e+02
+8 12829     -4.638700e+02 2.799000e+02
+14 12829     -3.709998e+01 -1.495300e+02
+2 12830     -6.611200e+02 3.736900e+02
+8 12830     -4.638700e+02 2.799000e+02
+13 12830     -1.022500e+02 2.304700e+02
+14 12830     -3.709998e+01 -1.495300e+02
+2 12831     -6.007500e+02 3.734300e+02
+5 12831     1.055200e+02 -5.392999e+01
+12 12831     -6.752900e+02 5.818000e+02
+2 12832     -6.007500e+02 3.734300e+02
+5 12832     1.055200e+02 -5.392999e+01
+11 12832     -1.287300e+02 -1.911100e+02
+12 12832     -6.752900e+02 5.818000e+02
+14 12832     1.753003e+01 -1.480400e+02
+2 12833     -3.830800e+02 3.722700e+02
+3 12833     -5.087400e+02 4.066998e+01
+5 12833     3.199399e+02 -4.927002e+01
+8 12833     -2.359700e+02 2.850900e+02
+11 12833     6.309003e+01 -1.837100e+02
+12 12833     -4.211600e+02 6.129900e+02
+13 12833     1.180700e+02 2.473500e+02
+14 12833     2.274301e+02 -1.393100e+02
+2 12834     -1.426500e+02 3.718000e+02
+6 12834     -3.041700e+02 6.853800e+02
+9 12834     -2.766900e+02 3.935300e+02
+11 12834     2.986801e+02 -1.705300e+02
+2 12835     3.930601e+02 3.713700e+02
+3 12835     2.472300e+02 4.291998e+01
+6 12835     3.165000e+02 6.172000e+02
+9 12835     1.893800e+02 4.093400e+02
+13 12835     7.594399e+02 1.791300e+02
+2 12836     6.347700e+02 3.704100e+02
+6 12836     5.793000e+02 5.478200e+02
+7 12836     5.797100e+02 5.224000e+02
+8 12836     5.855100e+02 2.722700e+02
+9 12836     3.975699e+02 4.155000e+02
+12 12836     6.580699e+02 5.620400e+02
+2 12837     -2.514300e+02 3.694900e+02
+5 12837     4.578800e+02 -4.715997e+01
+6 12837     -4.390200e+02 6.585000e+02
+14 12837     3.627100e+02 -1.347600e+02
+2 12838     -2.514300e+02 3.694900e+02
+5 12838     4.578800e+02 -4.715997e+01
+6 12838     -4.390200e+02 6.585000e+02
+11 12838     1.890400e+02 -1.788300e+02
+2 12839     -5.741900e+02 3.688900e+02
+8 12839     -3.931200e+02 2.784300e+02
+12 12839     -6.437300e+02 5.816900e+02
+2 12840     -7.580900e+02 3.659000e+02
+11 12840     -2.541800e+02 -1.998700e+02
+2 12841     -7.640800e+02 3.648400e+02
+11 12841     -2.588600e+02 -2.009100e+02
+2 12842     7.920001e+01 3.646700e+02
+13 12842     5.360100e+02 2.777300e+02
+14 12842     7.359700e+02 -1.173200e+02
+2 12843     9.333002e+01 3.640000e+02
+14 12843     7.538300e+02 -1.166300e+02
+2 12844     9.333002e+01 3.640000e+02
+11 12844     5.545500e+02 -1.593300e+02
+14 12844     7.538300e+02 -1.166300e+02
+2 12845     -2.098400e+02 3.618100e+02
+11 12845     2.299100e+02 -1.826500e+02
+2 12846     -5.837000e+01 3.618300e+02
+3 12846     -1.983600e+02 2.784003e+01
+4 12846     5.590002e+01 -5.453400e+02
+9 12846     -2.038500e+02 3.876500e+02
+11 12846     3.869700e+02 -1.721700e+02
+13 12846     4.052300e+02 2.662500e+02
+14 12846     5.758300e+02 -1.272900e+02
+2 12847     5.977500e+02 3.607500e+02
+7 12847     5.442900e+02 5.224400e+02
+8 12847     5.551500e+02 2.655000e+02
+9 12847     3.669399e+02 4.064000e+02
+10 12847     7.469000e+02 6.113700e+02
+12 12847     6.161300e+02 5.561000e+02
+2 12848     6.222500e+02 3.599400e+02
+8 12848     5.746200e+02 2.647300e+02
+9 12848     3.870000e+02 4.069700e+02
+10 12848     7.741899e+02 6.019700e+02
+12 12848     6.429900e+02 5.532600e+02
+2 12849     -6.326500e+02 3.596900e+02
+5 12849     7.439001e+01 -6.641998e+01
+13 12849     -8.135999e+01 2.218600e+02
+14 12849     -1.269000e+01 -1.604800e+02
+2 12850     6.004700e+02 3.572300e+02
+9 12850     3.688000e+02 4.036700e+02
+2 12851     1.045001e+01 3.568700e+02
+9 12851     -1.462000e+02 3.847000e+02
+13 12851     4.686700e+02 2.660100e+02
+14 12851     6.537800e+02 -1.298400e+02
+2 12852     -4.679500e+02 3.550700e+02
+13 12852     4.770001e+01 2.293700e+02
+2 12853     7.235999e+01 3.529000e+02
+6 12853     -3.441998e+01 7.122100e+02
+8 12853     1.420000e+02 2.794500e+02
+14 12853     7.286600e+02 -1.279600e+02
+2 12854     -6.384100e+02 3.433300e+02
+11 12854     -1.598100e+02 -2.123700e+02
+2 12855     -2.591400e+02 3.428900e+02
+11 12855     1.811900e+02 -1.994800e+02
+13 12855     2.224800e+02 2.343200e+02
+14 12855     3.536500e+02 -1.593100e+02
+2 12856     -1.804800e+02 3.416400e+02
+5 12856     5.324600e+02 -7.042999e+01
+9 12856     -3.078800e+02 3.653500e+02
+2 12857     6.608002e+01 3.406200e+02
+9 12857     -9.875000e+01 3.715800e+02
+11 12857     5.225300e+02 -1.814900e+02
+13 12857     5.213900e+02 2.571400e+02
+14 12857     7.190400e+02 -1.416700e+02
+2 12858     -6.750700e+02 3.398900e+02
+5 12858     3.416998e+01 -8.334998e+01
+12 12858     -7.561000e+02 5.366700e+02
+2 12859     -2.579500e+02 3.395400e+02
+6 12859     -4.437500e+02 6.215300e+02
+8 12859     -1.325300e+02 2.616400e+02
+9 12859     -3.740900e+02 3.614100e+02
+12 12859     -2.704300e+02 5.971200e+02
+2 12860     -5.791200e+02 3.368100e+02
+12 12860     -6.442000e+02 5.462400e+02
+2 12861     4.030100e+02 3.357900e+02
+6 12861     3.261600e+02 5.769900e+02
+8 12861     3.971300e+02 2.520200e+02
+9 12861     1.989100e+02 3.793900e+02
+2 12862     -1.488000e+02 3.341800e+02
+14 12862     4.702100e+02 -1.616800e+02
+2 12863     3.933600e+02 3.341600e+02
+6 12863     3.156700e+02 5.761400e+02
+8 12863     3.891500e+02 2.497400e+02
+13 12863     7.553700e+02 1.478600e+02
+2 12864     5.133500e+02 3.335800e+02
+3 12864     3.676600e+02 1.028998e+01
+6 12864     4.391500e+02 5.252500e+02
+7 12864     4.636899e+02 5.134500e+02
+8 12864     4.833300e+02 2.442600e+02
+9 12864     2.953800e+02 3.805100e+02
+10 12864     6.478700e+02 6.076800e+02
+12 12864     5.217900e+02 5.336200e+02
+13 12864     8.396801e+02 9.953000e+01
+2 12865     -5.865700e+02 3.315900e+02
+11 12865     -1.176200e+02 -2.194700e+02
+13 12865     -4.644000e+01 2.051100e+02
+14 12865     2.809003e+01 -1.821700e+02
+2 12866     -5.865700e+02 3.315900e+02
+11 12866     -1.176200e+02 -2.194700e+02
+13 12866     -4.644000e+01 2.051100e+02
+2 12867     -1.511700e+02 3.313800e+02
+8 12867     -4.487000e+01 2.578000e+02
+9 12867     -2.827700e+02 3.569000e+02
+2 12868     -5.099300e+02 3.302500e+02
+5 12868     1.890601e+02 -8.982001e+01
+2 12869     9.516998e+01 3.293500e+02
+3 12869     -5.510999e+01 -3.969971e+00
+6 12869     -6.640015e+00 6.870800e+02
+8 12869     1.598400e+02 2.602800e+02
+9 12869     -7.390002e+01 3.633200e+02
+11 12869     5.560200e+02 -1.882200e+02
+13 12869     5.496200e+02 2.504300e+02
+14 12869     7.542200e+02 -1.507100e+02
+2 12870     -4.453003e+01 3.291600e+02
+4 12870     3.429999e+01 -5.506700e+02
+5 12870     6.875200e+02 -7.771997e+01
+6 12870     -1.806000e+02 6.563500e+02
+8 12870     4.379999e+01 2.577900e+02
+9 12870     -1.918100e+02 3.584300e+02
+11 12870     4.006000e+02 -1.985300e+02
+12 12870     -1.590997e+01 6.173300e+02
+14 12870     5.874399e+02 -1.602600e+02
+2 12871     5.149900e+02 3.254600e+02
+8 12871     4.849100e+02 2.379900e+02
+12 12871     5.230200e+02 5.244000e+02
+2 12872     7.191998e+01 3.240600e+02
+5 12872     8.295300e+02 -7.853998e+01
+6 12872     -3.553998e+01 6.755100e+02
+8 12872     1.412300e+02 2.555400e+02
+2 12873     -5.883200e+02 3.234700e+02
+12 12873     -6.529200e+02 5.317200e+02
+2 12874     -3.893900e+02 3.217400e+02
+12 12874     -4.225800e+02 5.591700e+02
+2 12875     -7.409600e+02 3.195000e+02
+14 12875     -1.130100e+02 -1.986400e+02
+2 12876     1.298300e+02 3.191600e+02
+3 12876     -2.264001e+01 -1.296002e+01
+6 12876     3.685999e+01 6.826000e+02
+8 12876     1.885900e+02 2.524700e+02
+9 12876     -4.467999e+01 3.557800e+02
+2 12877     -1.069000e+01 3.159000e+02
+6 12877     -1.382100e+02 6.473400e+02
+2 12878     4.829600e+02 3.144400e+02
+3 12878     3.392600e+02 -8.750000e+00
+6 12878     4.040200e+02 5.078600e+02
+7 12878     4.343400e+02 5.013000e+02
+8 12878     4.582700e+02 2.292700e+02
+9 12878     2.702000e+02 3.636000e+02
+11 12878     7.333199e+02 -3.929800e+02
+12 12878     4.882100e+02 5.154900e+02
+13 12878     8.103101e+02 8.947000e+01
+2 12879     3.839800e+02 3.140100e+02
+3 12879     2.395900e+02 -1.238000e+01
+6 12879     3.039600e+02 5.536400e+02
+7 12879     3.776200e+02 5.472000e+02
+9 12879     1.831000e+02 3.598200e+02
+13 12879     7.450800e+02 1.325000e+02
+2 12880     -4.080600e+02 3.136300e+02
+8 12880     -2.560400e+02 2.386200e+02
+11 12880     3.826001e+01 -2.274200e+02
+2 12881     -4.748999e+01 3.132100e+02
+11 12881     3.976600e+02 -2.108800e+02
+12 12881     -1.885999e+01 5.997200e+02
+14 12881     5.839200e+02 -1.755100e+02
+2 12882     3.882800e+02 3.135900e+02
+3 12882     2.440500e+02 -1.228003e+01
+6 12882     3.089700e+02 5.521400e+02
+9 12882     1.864600e+02 3.593700e+02
+12 12882     4.088900e+02 5.453900e+02
+13 12882     7.485500e+02 1.310100e+02
+2 12883     3.047300e+02 3.109700e+02
+3 12883     1.625500e+02 -1.722998e+01
+7 12883     3.090400e+02 5.602400e+02
+8 12883     3.172000e+02 2.339500e+02
+9 12883     1.150300e+02 3.544600e+02
+11 12883     6.260699e+02 -3.146100e+02
+12 12883     3.213600e+02 5.514700e+02
+13 12883     6.778101e+02 1.456500e+02
+2 12884     -5.880400e+02 3.101700e+02
+12 12884     -6.519000e+02 5.175800e+02
+2 12885     -7.275800e+02 3.096100e+02
+5 12885     -1.644000e+01 -1.101200e+02
+14 12885     -1.012800e+02 -2.048800e+02
+2 12886     -4.084003e+01 3.094200e+02
+9 12886     -1.882400e+02 3.412800e+02
+14 12886     5.910900e+02 -1.783800e+02
+2 12887     3.121801e+02 3.079500e+02
+8 12887     3.233500e+02 2.310700e+02
+13 12887     6.834600e+02 1.405500e+02
+2 12888     -7.308000e+02 3.072400e+02
+8 12888     -5.197400e+02 2.262400e+02
+2 12889     3.086300e+02 3.071100e+02
+3 12889     1.667500e+02 -2.094000e+01
+7 12889     3.113000e+02 5.554300e+02
+8 12889     3.202800e+02 2.303100e+02
+9 12889     1.184800e+02 3.513800e+02
+11 12889     6.282400e+02 -3.196200e+02
+12 12889     3.248199e+02 5.463900e+02
+13 12889     6.801500e+02 1.414000e+02
+2 12890     -3.884800e+02 3.062900e+02
+12 12890     -4.209300e+02 5.424800e+02
+2 12891     -5.893100e+02 3.024400e+02
+12 12891     -6.529900e+02 5.082100e+02
+2 12892     1.208700e+02 3.027100e+02
+3 12892     -3.081000e+01 -2.971002e+01
+6 12892     2.610999e+01 6.610500e+02
+9 12892     -5.116998e+01 3.410100e+02
+12 12892     1.850100e+02 6.114000e+02
+2 12893     4.311200e+02 3.010800e+02
+6 12893     3.454600e+02 4.999400e+02
+7 12893     3.876100e+02 4.991600e+02
+8 12893     4.159800e+02 2.195600e+02
+9 12893     2.262700e+02 3.503900e+02
+10 12893     5.552200e+02 5.977400e+02
+12 12893     4.324301e+02 5.063700e+02
+13 12893     7.634600e+02 8.901001e+01
+2 12894     -1.182900e+02 2.987400e+02
+3 12894     -2.561800e+02 -3.491998e+01
+5 12894     5.992000e+02 -1.096600e+02
+6 12894     -2.696600e+02 6.041900e+02
+8 12894     -1.703998e+01 2.320400e+02
+9 12894     -2.533800e+02 3.296900e+02
+12 12894     -1.021300e+02 5.747100e+02
+13 12894     3.435000e+02 2.096100e+02
+14 12894     5.015200e+02 -1.934300e+02
+2 12895     -1.339600e+02 2.954000e+02
+5 12895     5.824200e+02 -1.129400e+02
+6 12895     -2.870800e+02 5.974300e+02
+8 12895     -2.965002e+01 2.294800e+02
+12 12895     -1.191300e+02 5.692300e+02
+13 12895     3.289399e+02 2.058600e+02
+2 12896     5.898400e+02 2.953000e+02
+3 12896     4.423300e+02 -2.347998e+01
+6 12896     5.234399e+02 4.718000e+02
+7 12896     5.277500e+02 4.595800e+02
+8 12896     5.463000e+02 2.111500e+02
+9 12896     3.623199e+02 3.501400e+02
+2 12897     3.423500e+02 2.952600e+02
+3 12897     2.001801e+02 -3.106000e+01
+7 12897     3.397900e+02 5.363200e+02
+9 12897     1.476400e+02 3.424800e+02
+2 12898     4.632900e+02 2.949700e+02
+3 12898     3.213000e+02 -2.821002e+01
+6 12898     3.813000e+02 4.886100e+02
+7 12898     4.155000e+02 4.859700e+02
+9 12898     2.537700e+02 3.465500e+02
+10 12898     5.871200e+02 5.782700e+02
+13 12898     7.909301e+02 7.704999e+01
+2 12899     3.905699e+02 2.934400e+02
+3 12899     2.462400e+02 -3.187000e+01
+9 12899     1.894200e+02 3.427500e+02
+13 12899     7.482300e+02 1.140800e+02
+2 12900     -4.704600e+02 2.923100e+02
+7 12900     -4.159200e+02 5.777100e+02
+2 12901     2.800601e+02 2.904500e+02
+3 12901     1.391600e+02 -3.753003e+01
+13 12901     6.550500e+02 1.333300e+02
+2 12902     3.108199e+02 2.889600e+02
+3 12902     1.694100e+02 -3.808002e+01
+6 12902     2.202000e+02 5.351700e+02
+8 12902     3.219300e+02 2.157300e+02
+9 12902     1.209100e+02 3.359700e+02
+12 12902     3.269000e+02 5.263900e+02
+2 12903     3.108199e+02 2.889600e+02
+6 12903     2.202000e+02 5.351700e+02
+8 12903     3.219300e+02 2.157300e+02
+9 12903     1.209100e+02 3.359700e+02
+12 12903     3.269000e+02 5.263900e+02
+2 12904     -6.493300e+02 2.884500e+02
+5 12904     5.272998e+01 -1.270500e+02
+12 12904     -7.191000e+02 4.858300e+02
+14 12904     -3.296002e+01 -2.204400e+02
+2 12905     -6.493300e+02 2.884500e+02
+14 12905     -3.296002e+01 -2.204400e+02
+2 12906     -1.822400e+02 2.859600e+02
+13 12906     2.858800e+02 1.958500e+02
+2 12907     3.620900e+02 2.854600e+02
+3 12907     2.192300e+02 -4.007001e+01
+6 12907     2.782300e+02 5.243000e+02
+7 12907     3.562500e+02 5.240200e+02
+8 12907     3.634700e+02 2.120100e+02
+9 12907     1.647500e+02 3.349300e+02
+12 12907     3.805400e+02 5.177200e+02
+13 12907     7.235699e+02 1.132500e+02
+2 12908     -5.957300e+02 2.842800e+02
+5 12908     1.023300e+02 -1.305800e+02
+2 12909     3.578199e+02 2.841900e+02
+6 12909     2.730600e+02 5.235700e+02
+7 12909     3.521899e+02 5.237300e+02
+12 12909     3.756899e+02 5.169200e+02
+2 12910     5.324800e+02 2.842400e+02
+6 12910     4.580500e+02 4.677700e+02
+7 12910     4.752900e+02 4.615100e+02
+8 12910     4.983900e+02 2.039200e+02
+9 12910     3.125000e+02 3.397700e+02
+12 12910     5.402900e+02 4.765300e+02
+13 12910     8.509000e+02 5.388000e+01
+2 12911     3.373101e+02 2.836600e+02
+6 12911     2.494400e+02 5.255400e+02
+8 12911     3.432500e+02 2.109000e+02
+9 12911     1.432500e+02 3.323200e+02
+12 12911     3.544000e+02 5.179500e+02
+13 12911     7.016200e+02 1.167200e+02
+2 12912     -1.210900e+02 2.822000e+02
+6 12912     -2.734300e+02 5.838700e+02
+8 12912     -2.003998e+01 2.188400e+02
+9 12912     -2.550500e+02 3.152300e+02
+12 12912     -1.056200e+02 5.564500e+02
+2 12913     3.549900e+02 2.810400e+02
+3 12913     2.122100e+02 -4.478003e+01
+8 12913     3.575300e+02 2.082400e+02
+9 12913     1.588500e+02 3.306000e+02
+13 12913     7.166700e+02 1.109700e+02
+2 12914     -6.408900e+02 2.806400e+02
+12 12914     -7.084700e+02 4.792300e+02
+2 12915     -4.790000e+02 2.806500e+02
+7 12915     -4.232000e+02 5.661700e+02
+2 12916     3.654301e+02 2.791400e+02
+8 12916     3.662000e+02 2.067100e+02
+9 12916     1.679800e+02 3.295000e+02
+12 12916     3.838700e+02 5.104100e+02
+13 12916     7.255400e+02 1.074900e+02
+2 12917     4.869995e+00 2.783500e+02
+6 12917     -1.190000e+02 6.061700e+02
+8 12917     8.438000e+01 2.179300e+02
+9 12917     -1.481900e+02 3.162600e+02
+12 12917     4.434003e+01 5.691300e+02
+2 12918     -7.509003e+01 2.774200e+02
+5 12918     6.439100e+02 -1.325900e+02
+6 12918     -2.178600e+02 5.844200e+02
+8 12918     1.796002e+01 2.154400e+02
+9 12918     -2.161700e+02 3.118700e+02
+12 12918     -5.277002e+01 5.552100e+02
+2 12919     4.900300e+02 2.773700e+02
+6 12919     4.110600e+02 4.655100e+02
+7 12919     4.378500e+02 4.642700e+02
+9 12919     2.766200e+02 3.321700e+02
+2 12920     6.391400e+02 2.710000e+02
+8 12920     5.872900e+02 1.891100e+02
+2 12921     -4.714600e+02 2.694700e+02
+7 12921     -4.149500e+02 5.566000e+02
+2 12922     7.320200e+02 2.665700e+02
+3 12922     5.780000e+02 -4.601001e+01
+7 12922     6.545400e+02 3.991500e+02
+2 12923     -2.450600e+02 2.640200e+02
+5 12923     4.544399e+02 -1.457500e+02
+6 12923     -4.227600e+02 5.350400e+02
+7 12923     -1.781600e+02 5.765000e+02
+8 12923     -1.220200e+02 2.021800e+02
+9 12923     -3.598000e+02 2.954900e+02
+12 12923     -2.504000e+02 5.186000e+02
+2 12924     -7.178800e+02 2.614300e+02
+8 12924     -5.091000e+02 1.902300e+02
+12 12924     -7.932500e+02 4.480900e+02
+13 12924     -1.470700e+02 1.490900e+02
+2 12925     -6.238800e+02 2.614800e+02
+5 12925     7.370001e+01 -1.497000e+02
+7 12925     -5.682400e+02 5.329900e+02
+11 12925     -1.510600e+02 -2.687300e+02
+12 12925     -6.868500e+02 4.618900e+02
+14 12925     -1.158002e+01 -2.425000e+02
+2 12926     1.913000e+01 2.596900e+02
+8 12926     9.645001e+01 2.037300e+02
+12 12926     6.242999e+01 5.521400e+02
+13 12926     4.694301e+02 1.889000e+02
+2 12927     -4.895000e+02 2.584600e+02
+7 12927     -4.323600e+02 5.449600e+02
+12 12927     -5.330200e+02 4.783100e+02
+2 12928     5.183101e+02 2.566700e+02
+8 12928     4.858300e+02 1.811200e+02
+2 12929     3.416200e+02 2.559600e+02
+6 12929     2.544200e+02 4.935700e+02
+10 12929     5.094200e+02 6.132100e+02
+2 12930     -4.978998e+01 2.546200e+02
+5 12930     6.721500e+02 -1.515200e+02
+9 12930     -1.934100e+02 2.933000e+02
+2 12931     -4.378700e+02 2.520000e+02
+5 12931     2.527000e+02 -1.577200e+02
+7 12931     -3.792200e+02 5.448300e+02
+14 12931     1.645500e+02 -2.468800e+02
+2 12932     3.811700e+02 2.515200e+02
+3 12932     2.392000e+02 -7.353998e+01
+8 12932     3.789900e+02 1.831400e+02
+9 12932     1.825000e+02 3.050700e+02
+12 12932     3.997100e+02 4.776500e+02
+13 12932     7.357500e+02 8.089999e+01
+2 12933     -8.977002e+01 2.502300e+02
+6 12933     -2.336900e+02 5.537800e+02
+12 12933     -6.667999e+01 5.273600e+02
+14 12933     5.310400e+02 -2.372200e+02
+2 12934     6.140800e+02 2.484200e+02
+3 12934     4.673700e+02 -6.625000e+01
+6 12934     5.469301e+02 4.159800e+02
+7 12934     5.436400e+02 4.083400e+02
+9 12934     3.823000e+02 3.116300e+02
+2 12935     -5.806800e+02 2.468500e+02
+7 12935     -5.237400e+02 5.249600e+02
+2 12936     -2.848800e+02 2.447800e+02
+4 12936     6.710022e+00 -3.624200e+02
+9 12936     -3.930600e+02 2.772900e+02
+2 12937     -1.450200e+02 2.433000e+02
+8 12937     -4.000000e+01 1.873600e+02
+9 12937     -2.739400e+02 2.804800e+02
+2 12938     4.924100e+02 2.414700e+02
+3 12938     3.511200e+02 -7.665002e+01
+6 12938     4.113600e+02 4.258400e+02
+9 12938     2.794600e+02 3.024200e+02
+12 12938     4.957200e+02 4.334100e+02
+15 12938     8.044399e+02 5.804400e+02
+2 12939     -3.090900e+02 2.390100e+02
+3 12939     -4.394000e+02 -9.270001e+01
+7 12939     -2.439500e+02 5.469500e+02
+9 12939     -4.136400e+02 2.715000e+02
+14 12939     2.941700e+02 -2.555400e+02
+2 12940     -3.611300e+02 2.370400e+02
+8 12940     -2.171400e+02 1.790700e+02
+12 12940     -3.835400e+02 4.746700e+02
+2 12941     2.679800e+02 2.352500e+02
+13 12941     6.392100e+02 9.073001e+01
+2 12942     -1.043100e+02 2.340100e+02
+7 12942     -2.728003e+01 5.639000e+02
+11 12942     3.342300e+02 -2.767200e+02
+12 12942     -8.425000e+01 5.081500e+02
+2 12943     -6.638600e+02 2.331400e+02
+12 12943     -7.283700e+02 4.270500e+02
+14 12943     -5.059003e+01 -2.667100e+02
+2 12944     -2.701300e+02 2.314200e+02
+4 12944     -2.399902e-01 -3.701400e+02
+5 12944     4.237300e+02 -1.747700e+02
+6 12944     -4.514800e+02 4.937200e+02
+8 12944     -1.426300e+02 1.759600e+02
+12 12944     -2.781600e+02 4.828100e+02
+2 12945     -7.497998e+01 2.280200e+02
+5 12945     6.405400e+02 -1.781700e+02
+6 12945     -2.145600e+02 5.301500e+02
+7 12945     5.250000e+00 5.604000e+02
+8 12945     1.840002e+01 1.762900e+02
+12 12945     -4.860999e+01 5.052600e+02
+14 12945     5.461500e+02 -2.581100e+02
+2 12946     -7.169500e+02 2.270300e+02
+8 12946     -5.081000e+02 1.636900e+02
+2 12947     -3.705500e+02 2.256300e+02
+12 12947     -3.932800e+02 4.616700e+02
+2 12948     4.891700e+02 2.238300e+02
+6 12948     4.065100e+02 4.061900e+02
+8 12948     4.617300e+02 1.551400e+02
+9 12948     2.770300e+02 2.866300e+02
+11 12948     7.397300e+02 -4.827800e+02
+12 12948     4.912100e+02 4.144700e+02
+2 12949     4.891700e+02 2.238300e+02
+6 12949     4.065100e+02 4.061900e+02
+8 12949     4.617300e+02 1.551400e+02
+10 12949     5.982300e+02 4.874300e+02
+2 12950     -7.491998e+01 2.227300e+02
+3 12950     -2.158400e+02 -1.094000e+02
+5 12950     6.400200e+02 -1.813100e+02
+6 12950     -2.143900e+02 5.252500e+02
+7 12950     5.039978e+00 5.564000e+02
+8 12950     1.839001e+01 1.730600e+02
+11 12950     3.653600e+02 -2.842700e+02
+12 12950     -4.847998e+01 5.007100e+02
+13 12950     3.785000e+02 1.540200e+02
+14 12950     5.456500e+02 -2.627800e+02
+2 12951     -7.011300e+02 2.215300e+02
+5 12951     -1.330017e+00 -1.837800e+02
+2 12952     -5.506300e+02 2.189100e+02
+12 12952     -5.995300e+02 4.273900e+02
+2 12953     -7.158900e+02 2.185700e+02
+5 12953     -1.469000e+01 -1.857400e+02
+7 12953     -6.538800e+02 4.855200e+02
+8 12953     -5.070800e+02 1.573600e+02
+2 12954     -4.004500e+02 2.181500e+02
+7 12954     -3.384600e+02 5.192000e+02
+2 12955     8.058800e+02 2.179200e+02
+3 12955     6.499100e+02 -8.940002e+01
+7 12955     7.153199e+02 3.336900e+02
+9 12955     5.421200e+02 2.915200e+02
+2 12956     5.429600e+02 2.171000e+02
+6 12956     4.670500e+02 3.919100e+02
+7 12956     4.776000e+02 3.948600e+02
+9 12956     3.236200e+02 2.830300e+02
+10 12956     6.525300e+02 4.598700e+02
+2 12957     3.734100e+02 2.165000e+02
+6 12957     2.888100e+02 4.450100e+02
+9 12957     1.758101e+02 2.762500e+02
+13 12957     7.253400e+02 5.464001e+01
+2 12958     -1.782400e+02 2.126800e+02
+3 12958     -3.145200e+02 -1.195700e+02
+7 12958     -1.062900e+02 5.369800e+02
+8 12958     -6.704999e+01 1.626300e+02
+13 12958     2.848101e+02 1.403100e+02
+14 12958     4.297600e+02 -2.761100e+02
+2 12959     3.149800e+02 2.117100e+02
+8 12959     3.247100e+02 1.537400e+02
+12 12959     3.305200e+02 4.421000e+02
+13 12959     6.756300e+02 6.277002e+01
+2 12960     -2.632700e+02 2.083600e+02
+6 12960     -4.407800e+02 4.674200e+02
+12 12960     -2.678000e+02 4.588900e+02
+14 12960     3.392000e+02 -2.823500e+02
+2 12961     6.481100e+02 2.054600e+02
+8 12961     5.934700e+02 1.358900e+02
+2 12962     6.332100e+02 2.047300e+02
+6 12962     5.659200e+02 3.648300e+02
+9 12962     3.993300e+02 2.755100e+02
+2 12963     7.385699e+02 2.038200e+02
+3 12963     5.882300e+02 -1.049600e+02
+7 12963     6.510699e+02 3.364800e+02
+9 12963     4.874399e+02 2.779200e+02
+2 12964     -6.532100e+02 2.029800e+02
+13 12964     -1.003400e+02 1.126100e+02
+2 12965     6.446700e+02 2.024300e+02
+6 12965     5.787900e+02 3.607200e+02
+9 12965     4.085900e+02 2.740100e+02
+2 12966     5.858600e+02 2.023100e+02
+6 12966     5.134700e+02 3.689200e+02
+7 12966     5.132100e+02 3.710700e+02
+8 12966     5.416600e+02 1.346000e+02
+9 12966     3.596500e+02 2.711200e+02
+12 12966     5.942500e+02 3.791300e+02
+2 12967     -2.419600e+02 2.012200e+02
+7 12967     -1.729300e+02 5.199900e+02
+2 12968     -8.726001e+01 2.008200e+02
+3 12968     -2.274600e+02 -1.309000e+02
+5 12968     6.235200e+02 -2.032300e+02
+7 12968     -8.179993e+00 5.349800e+02
+13 12968     3.658700e+02 1.363400e+02
+14 12968     5.303800e+02 -2.841100e+02
+2 12969     6.764700e+02 2.004500e+02
+9 12969     4.356600e+02 2.732900e+02
+2 12970     4.614100e+02 1.988600e+02
+6 12970     3.749500e+02 3.832000e+02
+2 12971     6.179600e+02 1.973700e+02
+3 12971     4.735699e+02 -1.151800e+02
+8 12971     5.685100e+02 1.301800e+02
+9 12971     3.867800e+02 2.688300e+02
+10 12971     7.257600e+02 4.089700e+02
+12 12971     6.286300e+02 3.702700e+02
+2 12972     5.090800e+02 1.968900e+02
+6 12972     4.279900e+02 3.747300e+02
+9 12972     2.947800e+02 2.652700e+02
+12 12972     5.119000e+02 3.834300e+02
+13 12972     8.195601e+02 -1.309003e+01
+2 12973     -6.100000e+02 1.954800e+02
+7 12973     -5.481600e+02 4.767300e+02
+2 12974     2.930100e+02 1.928200e+02
+7 12974     2.904000e+02 4.501000e+02
+10 12974     4.511300e+02 5.562300e+02
+12 12974     3.078101e+02 4.246300e+02
+13 12974     6.556600e+02 5.098999e+01
+2 12975     6.476600e+02 1.899200e+02
+6 12975     5.812000e+02 3.472400e+02
+10 12975     7.550800e+02 3.891800e+02
+2 12976     -3.742200e+02 1.896600e+02
+5 12976     3.104100e+02 -2.161900e+02
+7 12976     -3.111800e+02 4.945300e+02
+8 12976     -2.276800e+02 1.406100e+02
+14 12976     2.219900e+02 -3.033800e+02
+2 12977     6.017800e+02 1.892700e+02
+10 12977     7.072100e+02 4.060800e+02
+2 12978     -4.112700e+02 1.890200e+02
+12 12978     -4.370000e+02 4.189900e+02
+2 12979     -4.112700e+02 1.890200e+02
+12 12979     -4.370000e+02 4.189900e+02
+2 12980     4.345900e+02 1.892000e+02
+3 12980     2.964600e+02 -1.292200e+02
+8 12980     4.175500e+02 1.286200e+02
+9 12980     2.316500e+02 2.560100e+02
+12 12980     4.336500e+02 3.844000e+02
+13 12980     7.539200e+02 -2.919983e+00
+2 12981     5.534700e+02 1.888100e+02
+7 12981     4.827700e+02 3.671100e+02
+9 12981     3.321600e+02 2.601600e+02
+2 12982     6.516801e+02 1.887300e+02
+3 12982     5.056300e+02 -1.224500e+02
+7 12982     5.696700e+02 3.429500e+02
+8 12982     5.964399e+02 1.216200e+02
+10 12982     7.594200e+02 3.855700e+02
+12 12982     6.642700e+02 3.559900e+02
+2 12983     8.242300e+02 1.891300e+02
+7 12983     7.266899e+02 3.018900e+02
+9 12983     5.579399e+02 2.679800e+02
+2 12984     -6.476100e+02 1.856700e+02
+5 12984     4.352002e+01 -2.143100e+02
+7 12984     -5.836800e+02 4.645000e+02
+8 12984     -4.504900e+02 1.331100e+02
+14 12984     -3.947998e+01 -3.066200e+02
+2 12985     7.146300e+02 1.834700e+02
+3 12985     5.667200e+02 -1.250100e+02
+7 12985     6.260601e+02 3.230300e+02
+10 12985     8.259399e+02 3.544300e+02
+12 12985     7.338300e+02 3.426900e+02
+2 12986     -2.854600e+02 1.801300e+02
+5 12986     4.022800e+02 -2.228300e+02
+6 12986     -4.658300e+02 4.312700e+02
+7 12986     -2.179800e+02 4.972400e+02
+8 12986     -1.547900e+02 1.349900e+02
+9 12986     -3.906700e+02 2.201900e+02
+14 12986     3.136801e+02 -3.078500e+02
+2 12987     7.140699e+02 1.799900e+02
+3 12987     5.665500e+02 -1.285400e+02
+9 12987     4.675800e+02 2.569600e+02
+10 12987     8.250100e+02 3.515100e+02
+2 12988     -6.841600e+02 1.795300e+02
+14 12988     -7.383002e+01 -3.121200e+02
+2 12989     -2.740200e+02 1.771700e+02
+5 12989     4.139900e+02 -2.253500e+02
+6 12989     -4.520700e+02 4.310700e+02
+12 12989     -2.787700e+02 4.262700e+02
+2 12990     -1.685400e+02 1.766300e+02
+3 12990     -3.057800e+02 -1.548400e+02
+4 12990     -3.802002e+01 -4.330699e+02
+7 12990     -9.548999e+01 5.055300e+02
+9 12990     -2.909700e+02 2.216400e+02
+11 12990     2.660699e+02 -3.240500e+02
+12 12990     -1.565400e+02 4.398100e+02
+2 12991     6.211600e+02 1.767500e+02
+6 12991     5.517700e+02 3.375400e+02
+7 12991     5.419500e+02 3.401900e+02
+8 12991     5.711500e+02 1.135700e+02
+9 12991     3.901700e+02 2.521300e+02
+10 12991     7.234100e+02 3.844500e+02
+12 12991     6.314100e+02 3.476500e+02
+2 12992     -6.451700e+02 1.742200e+02
+7 12992     -5.798800e+02 4.552600e+02
+2 12993     6.284900e+02 1.740400e+02
+3 12993     4.846500e+02 -1.363100e+02
+10 12993     7.309800e+02 3.793700e+02
+2 12994     6.327800e+02 1.734000e+02
+3 12994     4.889301e+02 -1.372300e+02
+10 12994     7.353400e+02 3.762800e+02
+12 12994     6.437300e+02 3.414900e+02
+2 12995     6.930000e+02 1.715400e+02
+3 12995     5.444900e+02 -1.373400e+02
+7 12995     6.041500e+02 3.175300e+02
+9 12995     4.494100e+02 2.494300e+02
+10 12995     7.993400e+02 3.502100e+02
+12 12995     7.084500e+02 3.321700e+02
+2 12996     -7.287500e+02 1.678300e+02
+5 12996     -3.140997e+01 -2.285200e+02
+8 12996     -5.170100e+02 1.168500e+02
+12 12996     -7.924900e+02 3.517300e+02
+14 12996     -1.155100e+02 -3.223000e+02
+2 12997     -5.747400e+02 1.681400e+02
+8 12997     -3.916600e+02 1.201700e+02
+2 12998     -5.747400e+02 1.681400e+02
+12 12998     -6.199000e+02 3.745600e+02
+2 12999     7.382000e+02 1.661300e+02
+12 12999     7.580601e+02 3.195800e+02
+2 13000     -7.113700e+02 1.649700e+02
+5 13000     -1.641998e+01 -2.317100e+02
+2 13001     8.213101e+02 1.646300e+02
+3 13001     6.683300e+02 -1.388900e+02
+7 13001     7.198199e+02 2.794700e+02
+9 13001     5.558199e+02 2.474100e+02
+2 13002     8.213101e+02 1.646300e+02
+3 13002     6.683300e+02 -1.388900e+02
+7 13002     7.198199e+02 2.794700e+02
+9 13002     5.558199e+02 2.474100e+02
+2 13003     6.269100e+02 1.640500e+02
+7 13003     5.447400e+02 3.267600e+02
+2 13004     2.757000e+02 1.627900e+02
+3 13004     1.648200e+02 -1.540600e+02
+2 13005     6.692000e+02 1.623000e+02
+7 13005     5.826100e+02 3.145600e+02
+9 13005     4.311200e+02 2.409600e+02
+2 13006     8.163700e+02 1.623600e+02
+3 13006     6.633500e+02 -1.401400e+02
+7 13006     7.150900e+02 2.786600e+02
+9 13006     5.517400e+02 2.456000e+02
+2 13007     1.916200e+02 1.615000e+02
+6 13007     3.992999e+01 2.040700e+02
+8 13007     2.060900e+02 8.720001e+01
+12 13007     6.187000e+01 2.575900e+02
+14 13007     6.559000e+02 -5.853400e+02
+2 13008     6.920100e+02 1.614500e+02
+3 13008     5.465300e+02 -1.464300e+02
+7 13008     6.025699e+02 3.082200e+02
+10 13008     7.956300e+02 3.394300e+02
+2 13009     6.855000e+02 1.612500e+02
+3 13009     5.401500e+02 -1.468700e+02
+7 13009     5.968700e+02 3.097000e+02
+9 13009     4.451300e+02 2.407200e+02
+10 13009     7.885400e+02 3.420400e+02
+12 13009     7.015601e+02 3.217500e+02
+2 13010     -7.284300e+02 1.598800e+02
+7 13010     -6.590700e+02 4.343500e+02
+8 13010     -5.161300e+02 1.110200e+02
+2 13011     2.016700e+02 1.602500e+02
+3 13011     9.752002e+01 -1.574200e+02
+2 13012     2.778300e+02 1.598200e+02
+3 13012     1.673900e+02 -1.566900e+02
+8 13012     2.696800e+02 9.057999e+01
+2 13013     3.605601e+02 1.570400e+02
+6 13013     2.729600e+02 3.803100e+02
+8 13013     3.609400e+02 1.077600e+02
+10 13013     5.096100e+02 4.955100e+02
+12 13013     3.761899e+02 3.788700e+02
+2 13014     -4.924000e+02 1.560400e+02
+8 13014     -3.244600e+02 1.125800e+02
+11 13014     -4.315997e+01 -3.434800e+02
+2 13015     6.706200e+02 1.543500e+02
+10 13015     7.702500e+02 3.403100e+02
+2 13016     -4.894000e+02 1.538900e+02
+8 13016     -3.224400e+02 1.105000e+02
+12 13016     -5.224100e+02 3.716200e+02
+2 13017     6.453000e+02 1.528600e+02
+9 13017     4.106100e+02 2.326500e+02
+10 13017     7.436600e+02 3.483300e+02
+2 13018     -5.090600e+02 1.512000e+02
+7 13018     -4.455500e+02 4.481900e+02
+2 13019     -6.885200e+02 1.500200e+02
+5 13019     3.200012e+00 -2.431700e+02
+7 13019     -6.194000e+02 4.305500e+02
+10 13019     -6.215500e+02 5.942500e+02
+12 13019     -7.448100e+02 3.407200e+02
+2 13020     -3.147400e+02 1.489200e+02
+5 13020     3.683199e+02 -2.546200e+02
+2 13021     -1.967800e+02 1.489500e+02
+14 13021     4.054200e+02 -3.356900e+02
+2 13022     -5.875800e+02 1.431500e+02
+7 13022     -5.206900e+02 4.351800e+02
+14 13022     1.250000e+01 -3.422700e+02
+2 13023     -2.891400e+02 1.417500e+02
+7 13023     -2.199400e+02 4.641300e+02
+13 13023     1.858101e+02 8.325000e+01
+14 13023     3.071000e+02 -3.424400e+02
+2 13024     3.197600e+02 1.418700e+02
+3 13024     2.114399e+02 -1.717700e+02
+2 13025     5.314200e+02 1.411900e+02
+7 13025     4.587600e+02 3.268300e+02
+10 13025     6.240000e+02 3.790700e+02
+12 13025     5.329500e+02 3.206500e+02
+13 13025     8.323300e+02 -6.446997e+01
+2 13026     -3.157000e+02 1.389900e+02
+5 13026     3.668300e+02 -2.639400e+02
+2 13027     -5.824000e+02 1.387100e+02
+14 13027     1.710999e+01 -3.464700e+02
+2 13028     -6.463300e+02 1.380300e+02
+5 13028     4.169000e+01 -2.539800e+02
+7 13028     -5.763700e+02 4.252300e+02
+10 13028     -5.707300e+02 5.858300e+02
+14 13028     -4.126001e+01 -3.460700e+02
+2 13029     -5.868700e+02 1.370100e+02
+5 13029     9.550000e+01 -2.568600e+02
+8 13029     -4.017500e+02 9.537000e+01
+2 13030     -4.882300e+02 1.366900e+02
+5 13030     1.911400e+02 -2.571100e+02
+8 13030     -3.209800e+02 9.845001e+01
+13 13030     2.348999e+01 7.228003e+01
+2 13031     8.317300e+02 1.361100e+02
+7 13031     7.241100e+02 2.501600e+02
+9 13031     5.649600e+02 2.240800e+02
+2 13032     -6.084000e+02 1.353700e+02
+12 13032     -6.542000e+02 3.373000e+02
+2 13033     -3.737700e+02 1.357100e+02
+3 13033     -5.057700e+02 -1.951600e+02
+7 13033     -3.064300e+02 4.454700e+02
+8 13033     -2.272300e+02 9.801999e+01
+9 13033     -4.644600e+02 1.795300e+02
+10 13033     -2.483200e+02 5.970600e+02
+12 13033     -3.899000e+02 3.679700e+02
+13 13033     1.153000e+02 7.566998e+01
+14 13033     2.194900e+02 -3.478800e+02
+2 13034     3.111700e+02 1.351700e+02
+3 13034     2.050699e+02 -1.777400e+02
+2 13035     -3.117500e+02 1.344500e+02
+6 13035     -4.903700e+02 3.699400e+02
+7 13035     -2.491700e+02 4.509400e+02
+8 13035     -1.735400e+02 9.823999e+01
+12 13035     -3.173800e+02 3.736200e+02
+2 13036     -6.209500e+02 1.313400e+02
+7 13036     -5.520700e+02 4.217100e+02
+10 13036     -5.418600e+02 5.806000e+02
+2 13037     -4.896600e+02 1.313200e+02
+7 13037     -4.230200e+02 4.346500e+02
+8 13037     -3.224500e+02 9.292999e+01
+2 13038     6.703800e+02 1.302100e+02
+7 13038     5.790300e+02 2.845900e+02
+10 13038     7.646801e+02 3.132000e+02
+2 13039     6.781000e+01 1.301800e+02
+5 13039     6.035300e+02 -5.185000e+02
+6 13039     -1.105100e+02 1.614800e+02
+10 13039     -1.066100e+02 3.007800e+02
+12 13039     -7.879999e+01 2.146600e+02
+15 13039     -4.996997e+01 3.238200e+02
+2 13040     3.121600e+02 1.286000e+02
+4 13040     -2.519000e+02 -5.695400e+02
+8 13040     2.933800e+02 5.817001e+01
+12 13040     1.810400e+02 1.999100e+02
+2 13041     2.515200e+02 1.278800e+02
+3 13041     1.505600e+02 -1.858000e+02
+2 13042     2.570699e+02 1.252300e+02
+3 13042     1.561200e+02 -1.882000e+02
+4 13042     -2.385800e+02 -5.203500e+02
+6 13042     8.778003e+01 1.425800e+02
+8 13042     2.448400e+02 5.685001e+01
+12 13042     1.123200e+02 1.938300e+02
+13 13042     4.821000e+02 -1.478800e+02
+2 13043     1.995300e+02 1.249400e+02
+4 13043     -2.237600e+02 -4.791801e+02
+5 13043     7.274800e+02 -5.702700e+02
+6 13043     2.597998e+01 1.404300e+02
+8 13043     1.974200e+02 5.691000e+01
+12 13043     4.937000e+01 1.933700e+02
+2 13044     5.753700e+02 1.232100e+02
+6 13044     4.979399e+02 2.858200e+02
+9 13044     3.525200e+02 2.050400e+02
+12 13044     5.794900e+02 2.956800e+02
+2 13045     2.679800e+02 1.219500e+02
+3 13045     1.660500e+02 -1.911600e+02
+4 13045     -2.442400e+02 -5.262800e+02
+6 13045     9.925000e+01 1.375200e+02
+7 13045     4.646002e+01 2.031500e+02
+8 13045     2.531600e+02 5.389001e+01
+10 13045     6.596997e+01 2.332300e+02
+13 13045     4.899100e+02 -1.530700e+02
+2 13046     2.495400e+02 1.202700e+02
+4 13046     -2.403000e+02 -5.119700e+02
+5 13046     7.805200e+02 -5.893300e+02
+6 13046     7.891998e+01 1.341200e+02
+8 13046     2.385400e+02 5.206000e+01
+10 13046     4.439001e+01 2.329500e+02
+12 13046     1.021100e+02 1.858000e+02
+2 13047     6.912000e+02 1.189000e+02
+7 13047     5.960900e+02 2.697900e+02
+2 13048     -6.384900e+02 1.176000e+02
+7 13048     -5.678800e+02 4.081800e+02
+10 13048     -5.609800e+02 5.657900e+02
+2 13049     -4.810300e+02 1.172500e+02
+7 13049     -4.136800e+02 4.239300e+02
+14 13049     1.116700e+02 -3.648600e+02
+2 13050     -3.839700e+02 1.144900e+02
+6 13050     -5.782500e+02 3.379400e+02
+7 13050     -3.162300e+02 4.310100e+02
+8 13050     -2.358200e+02 8.126999e+01
+9 13050     -4.723800e+02 1.566300e+02
+13 13050     1.059100e+02 6.008002e+01
+14 13050     2.077200e+02 -3.675300e+02
+2 13051     -6.400500e+02 1.141900e+02
+14 13051     -3.894000e+01 -3.666300e+02
+2 13052     6.858002e+01 1.125200e+02
+6 13052     -1.104100e+02 1.369400e+02
+2 13053     4.436100e+02 1.120000e+02
+7 13053     3.819301e+02 3.213100e+02
+2 13054     1.203003e+01 1.113700e+02
+6 13054     -1.675400e+02 1.508100e+02
+2 13055     -4.397700e+02 1.112500e+02
+7 13055     -3.715600e+02 4.232200e+02
+2 13056     7.007300e+02 1.104600e+02
+3 13056     5.564100e+02 -1.942300e+02
+7 13056     6.019100e+02 2.603600e+02
+9 13056     4.575000e+02 1.993400e+02
+12 13056     7.145400e+02 2.640500e+02
+2 13057     8.149301e+02 1.093700e+02
+3 13057     6.661899e+02 -1.914600e+02
+9 13057     5.525400e+02 2.013600e+02
+2 13058     8.149301e+02 1.093700e+02
+3 13058     6.661899e+02 -1.914600e+02
+9 13058     5.525400e+02 2.013600e+02
+2 13059     2.116500e+02 1.082800e+02
+3 13059     1.148200e+02 -2.052300e+02
+4 13059     -2.385200e+02 -4.799800e+02
+5 13059     7.338400e+02 -5.950601e+02
+6 13059     3.719000e+01 1.175200e+02
+8 13059     2.060300e+02 4.228000e+01
+10 13059     -1.429993e+00 2.248900e+02
+12 13059     5.771997e+01 1.706700e+02
+13 13059     4.400200e+02 -1.595300e+02
+15 13059     7.202002e+01 2.368100e+02
+2 13060     -6.444000e+01 1.055900e+02
+3 13060     -2.002200e+02 -2.244100e+02
+8 13060     2.126001e+01 7.562000e+01
+10 13060     9.720001e+01 5.586200e+02
+12 13060     -5.327002e+01 3.587100e+02
+2 13061     1.593000e+02 1.048900e+02
+3 13061     6.490002e+01 -2.094100e+02
+5 13061     6.794000e+02 -5.831400e+02
+7 13061     -5.573999e+01 1.954900e+02
+10 13061     -5.156000e+01 2.337500e+02
+15 13061     1.396997e+01 2.466900e+02
+2 13062     -2.824700e+02 1.043100e+02
+7 13062     -2.124300e+02 4.319800e+02
+14 13062     3.108600e+02 -3.760300e+02
+2 13063     4.108002e+01 1.043300e+02
+8 13063     6.946002e+01 4.317001e+01
+2 13064     -2.520900e+02 1.028200e+02
+7 13064     -1.813800e+02 4.335900e+02
+10 13064     -9.815002e+01 5.784900e+02
+14 13064     3.425800e+02 -3.776900e+02
+2 13065     -2.520900e+02 1.028200e+02
+5 13065     4.288000e+02 -2.939700e+02
+6 13065     -4.207600e+02 3.525000e+02
+7 13065     -1.813800e+02 4.335900e+02
+8 13065     -1.280800e+02 7.442001e+01
+9 13065     -3.589700e+02 1.543300e+02
+14 13065     3.425800e+02 -3.776900e+02
+2 13066     -2.395000e+02 1.013200e+02
+5 13066     4.441600e+02 -2.956300e+02
+7 13066     -1.685700e+02 4.331400e+02
+8 13066     -1.172900e+02 7.344000e+01
+2 13067     2.261600e+02 1.006500e+02
+6 13067     5.172998e+01 1.076400e+02
+2 13068     1.730900e+02 9.729999e+01
+6 13068     -3.559998e+00 1.045100e+02
+10 13068     -4.262000e+01 2.198800e+02
+2 13069     8.228000e+02 9.496002e+01
+3 13069     6.748199e+02 -2.049200e+02
+9 13069     5.586899e+02 1.894600e+02
+2 13070     1.742600e+02 9.301001e+01
+6 13070     -3.520020e+00 9.962000e+01
+8 13070     1.750500e+02 2.998001e+01
+9 13070     3.271002e+01 1.690700e+02
+15 13070     2.160999e+01 2.251900e+02
+2 13071     6.950100e+02 9.288000e+01
+9 13071     4.540300e+02 1.836900e+02
+2 13072     6.950100e+02 9.288000e+01
+9 13072     4.540300e+02 1.836900e+02
+12 13072     7.050699e+02 2.465200e+02
+2 13073     -5.903000e+02 9.182001e+01
+7 13073     -5.188500e+02 3.918700e+02
+12 13073     -6.292700e+02 2.963400e+02
+2 13074     4.330900e+02 9.145001e+01
+6 13074     3.403700e+02 2.713700e+02
+7 13074     3.709700e+02 3.050300e+02
+13 13074     7.420800e+02 -8.077002e+01
+2 13075     -4.388400e+02 9.125000e+01
+11 13075     2.510010e+00 -3.894000e+02
+2 13076     7.313400e+02 8.982001e+01
+7 13076     6.274800e+02 2.330600e+02
+10 13076     8.189100e+02 2.449500e+02
+2 13077     7.313400e+02 8.982001e+01
+7 13077     6.274800e+02 2.330600e+02
+9 13077     4.838300e+02 1.826200e+02
+10 13077     8.189100e+02 2.449500e+02
+2 13078     1.189600e+02 8.584998e+01
+3 13078     2.781000e+01 -2.284600e+02
+5 13078     6.345400e+02 -5.916801e+02
+6 13078     -6.065997e+01 9.520001e+01
+12 13078     -4.012000e+01 1.504200e+02
+2 13079     1.796700e+02 8.559003e+01
+13 13079     4.098400e+02 -1.750200e+02
+2 13080     5.757400e+02 8.516998e+01
+3 13080     4.387900e+02 -2.246000e+02
+7 13080     4.916200e+02 2.660700e+02
+9 13080     3.535800e+02 1.731400e+02
+10 13080     6.575100e+02 3.023200e+02
+13 13080     8.651000e+02 -1.202600e+02
+2 13081     4.463101e+02 8.387000e+01
+7 13081     3.812200e+02 2.961500e+02
+15 13081     7.186700e+02 3.936700e+02
+2 13082     -1.242700e+02 8.346997e+01
+8 13082     -2.991998e+01 5.707999e+01
+11 13082     2.687100e+02 -4.227700e+02
+12 13082     -1.212900e+02 3.292800e+02
+13 13082     3.075900e+02 2.422998e+01
+14 13082     4.593300e+02 -4.226400e+02
+2 13083     5.363300e+02 8.277002e+01
+7 13083     4.570699e+02 2.741900e+02
+2 13084     -1.040200e+02 8.184003e+01
+6 13084     -2.505500e+02 3.229700e+02
+2 13085     2.750000e+01 8.163000e+01
+3 13085     -6.289001e+01 -2.351400e+02
+8 13085     5.834998e+01 2.520999e+01
+9 13085     -9.140002e+01 1.536400e+02
+2 13086     -6.434000e+02 8.015997e+01
+5 13086     3.728003e+01 -3.032100e+02
+7 13086     -5.691000e+02 3.767500e+02
+8 13086     -4.472300e+02 5.042001e+01
+10 13086     -5.625600e+02 5.300100e+02
+12 13086     -6.870300e+02 2.778300e+02
+14 13086     -4.458002e+01 -3.954000e+02
+15 13086     -5.646500e+02 5.767600e+02
+2 13087     5.512900e+02 7.941998e+01
+7 13087     4.695601e+02 2.677400e+02
+9 13087     3.332300e+02 1.670100e+02
+2 13088     -6.037300e+02 7.809003e+01
+7 13088     -5.305800e+02 3.795100e+02
+2 13089     -4.921900e+02 7.588000e+01
+8 13089     -3.239300e+02 4.962000e+01
+13 13089     1.769000e+01 2.982001e+01
+2 13090     -4.717700e+02 7.323999e+01
+5 13090     2.006200e+02 -3.143600e+02
+7 13090     -4.012800e+02 3.878700e+02
+8 13090     -3.070700e+02 4.720001e+01
+12 13090     -4.951600e+02 2.944100e+02
+2 13091     -5.649300e+02 7.127002e+01
+11 13091     -1.094300e+02 -4.016600e+02
+14 13091     2.734003e+01 -4.039700e+02
+15 13091     -4.600200e+02 5.745000e+02
+2 13092     6.805900e+02 7.037000e+01
+3 13092     5.410400e+02 -2.343400e+02
+9 13092     4.424200e+02 1.642700e+02
+12 13092     6.892100e+02 2.243900e+02
+2 13093     6.596700e+02 6.860999e+01
+12 13093     6.664800e+02 2.256100e+02
+2 13094     4.848999e+01 6.823999e+01
+3 13094     -4.073999e+01 -2.473000e+02
+2 13095     2.979999e+01 6.820001e+01
+8 13095     5.940002e+01 1.388000e+01
+2 13096     -3.768300e+02 6.745001e+01
+7 13096     -3.069600e+02 3.920600e+02
+2 13097     1.950400e+02 6.762000e+01
+3 13097     1.017500e+02 -2.438100e+02
+6 13097     1.723999e+01 6.827002e+01
+7 13097     -3.650000e+01 1.504100e+02
+8 13097     1.907300e+02 8.549988e+00
+9 13097     5.128998e+01 1.485900e+02
+10 13097     -3.537000e+01 1.785600e+02
+15 13097     3.229999e+01 1.820500e+02
+2 13098     -5.789200e+02 6.712000e+01
+14 13098     1.453003e+01 -4.072300e+02
+2 13099     6.407200e+02 6.637000e+01
+3 13099     5.020800e+02 -2.392100e+02
+6 13099     5.667800e+02 2.164500e+02
+9 13099     4.089000e+02 1.598700e+02
+10 13099     7.185100e+02 2.584200e+02
+12 13099     6.458300e+02 2.259900e+02
+2 13100     5.242900e+02 6.596002e+01
+6 13100     4.390800e+02 2.322700e+02
+7 13100     4.448800e+02 2.623300e+02
+12 13100     5.228400e+02 2.424400e+02
+2 13101     6.622800e+02 6.585999e+01
+9 13101     4.267400e+02 1.600300e+02
+12 13101     6.686500e+02 2.220900e+02
+2 13102     6.753003e+01 6.206000e+01
+5 13102     5.813000e+02 -5.995800e+02
+8 13102     8.864001e+01 7.000000e+00
+2 13103     4.895601e+02 6.247998e+01
+6 13103     4.021400e+02 2.331400e+02
+8 13103     4.612100e+02 2.382999e+01
+9 13103     2.823600e+02 1.506400e+02
+10 13103     5.689600e+02 3.131400e+02
+12 13103     4.876400e+02 2.430100e+02
+2 13104     -4.122300e+02 5.675000e+01
+7 13104     -3.415000e+02 3.799300e+02
+2 13105     -4.332400e+02 5.552002e+01
+8 13105     -2.753100e+02 3.454001e+01
+11 13105     6.750000e+00 -4.157300e+02
+2 13106     6.303003e+01 5.334998e+01
+8 13106     8.460999e+01 -1.000977e-02
+2 13107     6.678101e+02 5.107001e+01
+7 13107     5.667100e+02 2.144500e+02
+9 13107     4.320900e+02 1.480100e+02
+12 13107     6.743199e+02 2.061400e+02
+2 13108     7.792600e+02 5.059003e+01
+9 13108     5.242800e+02 1.513900e+02
+2 13109     2.382700e+02 4.948999e+01
+3 13109     1.438700e+02 -2.603900e+02
+6 13109     6.173999e+01 4.640997e+01
+12 13109     7.708002e+01 9.845001e+01
+2 13110     6.097900e+02 4.896997e+01
+7 13110     5.161100e+02 2.261100e+02
+10 13110     6.832900e+02 2.514400e+02
+2 13111     1.690500e+02 4.826001e+01
+4 13111     -2.634500e+02 -4.340601e+02
+6 13111     -1.051001e+01 4.614001e+01
+7 13111     -6.146997e+01 1.348800e+02
+8 13111     1.689700e+02 -7.089996e+00
+15 13111     -1.679993e+00 1.638400e+02
+2 13112     3.645200e+02 4.328998e+01
+3 13112     2.613700e+02 -2.628400e+02
+2 13113     8.018800e+02 4.178003e+01
+9 13113     5.431899e+02 1.448900e+02
+2 13114     3.665300e+02 4.078003e+01
+6 13114     2.013000e+02 5.042999e+01
+13 13114     5.583400e+02 -2.317000e+02
+2 13115     6.604900e+02 4.065997e+01
+3 13115     5.233900e+02 -2.634900e+02
+7 13115     5.592300e+02 2.069200e+02
+9 13115     4.260500e+02 1.388100e+02
+12 13115     6.656400e+02 1.958300e+02
+2 13116     4.870500e+02 3.665997e+01
+6 13116     3.981100e+02 2.056200e+02
+9 13116     2.798101e+02 1.292700e+02
+12 13116     4.842100e+02 2.149500e+02
+2 13117     -6.107001e+01 3.116998e+01
+8 13117     -7.760010e+00 -1.004999e+01
+2 13118     2.912700e+02 3.028003e+01
+3 13118     1.948700e+02 -2.769500e+02
+7 13118     4.404999e+01 1.052000e+02
+13 13118     4.874500e+02 -2.365200e+02
+2 13119     -5.944400e+02 2.090997e+01
+8 13119     -4.225600e+02 -1.079999e+01
+10 13119     -5.101200e+02 4.456500e+02
+12 13119     -6.215700e+02 2.249900e+02
+2 13120     -1.332400e+02 1.971997e+01
+3 13120     -2.307100e+02 -3.015500e+02
+8 13120     -6.209003e+01 -1.498999e+01
+2 13121     5.915100e+02 1.984003e+01
+3 13121     4.571100e+02 -2.863700e+02
+6 13121     5.116600e+02 1.745600e+02
+7 13121     4.978000e+02 2.057000e+02
+9 13121     3.690000e+02 1.191000e+02
+10 13121     6.609800e+02 2.300100e+02
+13 13121     8.721100e+02 -1.766200e+02
+2 13122     5.915100e+02 1.984003e+01
+8 13122     5.439200e+02 -1.464001e+01
+2 13123     4.888000e+01 1.820001e+01
+3 13123     -3.803003e+01 -2.949000e+02
+4 13123     -2.443200e+02 -3.650800e+02
+6 13123     -1.336800e+02 2.598999e+01
+9 13123     -6.875000e+01 1.014400e+02
+2 13124     6.138000e+02 1.728998e+01
+6 13124     5.359800e+02 1.684400e+02
+8 13124     5.639200e+02 -1.751999e+01
+9 13124     3.879399e+02 1.176500e+02
+10 13124     6.819100e+02 2.175000e+02
+2 13125     -5.821997e+01 1.503998e+01
+3 13125     -1.494600e+02 -3.025300e+02
+5 13125     4.790900e+02 -5.812900e+02
+6 13125     -2.363700e+02 6.097998e+01
+8 13125     -6.500000e+00 -2.364999e+01
+12 13125     -1.910500e+02 1.141000e+02
+13 13125     2.517100e+02 -1.632500e+02
+2 13126     6.332200e+02 1.457001e+01
+6 13126     5.566899e+02 1.631500e+02
+7 13126     5.329600e+02 1.909300e+02
+9 13126     4.040900e+02 1.165100e+02
+2 13127     2.348900e+02 1.325000e+01
+13 13127     4.385699e+02 -2.430000e+02
+2 13128     2.348900e+02 1.325000e+01
+13 13128     4.385699e+02 -2.430000e+02
+2 13129     -4.887500e+02 1.034003e+01
+5 13129     1.764700e+02 -3.687300e+02
+14 13129     9.503998e+01 -4.576100e+02
+15 13129     -3.536100e+02 5.164100e+02
+2 13130     6.393300e+02 1.065997e+01
+3 13130     5.040699e+02 -2.934300e+02
+6 13130     5.627000e+02 1.582000e+02
+9 13130     4.095200e+02 1.130600e+02
+2 13131     6.393300e+02 1.065997e+01
+3 13131     5.040699e+02 -2.934300e+02
+6 13131     5.627000e+02 1.582000e+02
+7 13131     5.365900e+02 1.865200e+02
+9 13131     4.095200e+02 1.130600e+02
+10 13131     7.044600e+02 2.013200e+02
+2 13132     1.429700e+02 9.330017e+00
+6 13132     -3.867999e+01 4.460022e+00
+10 13132     -9.660999e+01 1.298000e+02
+15 13132     -3.823999e+01 1.242100e+02
+2 13133     -5.740997e+01 8.869995e+00
+3 13133     -1.477100e+02 -3.085900e+02
+6 13133     -2.369800e+02 5.040997e+01
+2 13134     4.027200e+02 8.059998e+00
+3 13134     2.979000e+02 -2.959200e+02
+13 13134     5.878500e+02 -2.586000e+02
+2 13135     3.260601e+02 5.679993e+00
+6 13135     1.540600e+02 2.950012e+00
+13 13135     5.130200e+02 -2.595400e+02
+2 13136     -1.547998e+01 4.359985e+00
+3 13136     -1.025900e+02 -3.111500e+02
+6 13136     -1.970300e+02 2.582001e+01
+8 13136     2.272998e+01 -3.645001e+01
+9 13136     -1.242900e+02 8.700000e+01
+12 13136     -1.669900e+02 8.184998e+01
+2 13137     1.976300e+02 2.260010e+00
+15 13137     1.477002e+01 9.820001e+01
+2 13138     5.865500e+02 -1.900024e-01
+6 13138     5.052900e+02 1.539100e+02
+8 13138     5.399500e+02 -3.073999e+01
+12 13138     5.860100e+02 1.637700e+02
+2 13139     6.951700e+02 -1.369995e+00
+9 13139     4.561000e+02 1.050100e+02
+2 13140     4.166100e+02 -3.239990e+00
+8 13140     3.756100e+02 -5.047000e+01
+2 13141     4.166100e+02 -3.239990e+00
+8 13141     3.756100e+02 -5.047000e+01
+2 13142     -1.278900e+02 -5.070007e+00
+3 13142     -2.215500e+02 -3.250800e+02
+2 13143     5.417000e+02 -9.960022e+00
+7 13143     4.517800e+02 1.924200e+02
+2 13144     -5.250000e+00 -1.273999e+01
+6 13144     -1.866800e+02 4.340027e+00
+9 13144     -1.140400e+02 7.283002e+01
+2 13145     2.762300e+02 -1.273999e+01
+7 13145     2.245001e+01 6.604999e+01
+8 13145     2.544800e+02 -5.958002e+01
+10 13145     2.340997e+01 7.559998e+01
+15 13145     1.020800e+02 6.181000e+01
+2 13146     2.762300e+02 -1.273999e+01
+7 13146     2.245001e+01 6.604999e+01
+8 13146     2.544800e+02 -5.958002e+01
+10 13146     2.340997e+01 7.559998e+01
+15 13146     1.020800e+02 6.181000e+01
+2 13147     3.722700e+02 -1.404999e+01
+8 13147     3.361000e+02 -6.013000e+01
+2 13148     -5.599976e-01 -1.508002e+01
+6 13148     -1.823200e+02 1.199951e-01
+2 13149     1.956700e+02 -1.526001e+01
+15 13149     8.979980e+00 7.828003e+01
+2 13150     -4.733002e+01 -2.122998e+01
+6 13150     -2.288700e+02 1.130005e+00
+8 13150     -2.440002e+00 -5.685001e+01
+12 13150     -1.969400e+02 5.785999e+01
+2 13151     2.781000e+02 -2.239001e+01
+3 13151     1.851900e+02 -3.268300e+02
+6 13151     1.010800e+02 -3.057001e+01
+10 13151     2.340002e+01 6.527002e+01
+15 13151     1.021800e+02 4.989001e+01
+2 13152     5.383400e+02 -2.562000e+01
+3 13152     4.219399e+02 -3.263400e+02
+8 13152     4.839200e+02 -6.492999e+01
+2 13153     3.820500e+02 -2.960999e+01
+12 13153     2.373800e+02 1.860999e+01
+2 13154     3.820500e+02 -2.960999e+01
+3 13154     2.820100e+02 -3.318100e+02
+6 13154     2.147000e+02 -2.385999e+01
+7 13154     1.308100e+02 5.246002e+01
+8 13154     3.436700e+02 -7.283002e+01
+10 13154     1.503300e+02 5.125000e+01
+12 13154     2.373800e+02 1.860999e+01
+13 13154     5.603600e+02 -2.888000e+02
+2 13155     3.521997e+01 -3.104999e+01
+12 13155     -1.270600e+02 3.163000e+01
+2 13156     3.521997e+01 -3.104999e+01
+8 13156     6.091998e+01 -6.851001e+01
+12 13156     -1.270600e+02 3.163000e+01
+2 13157     3.577100e+02 -3.214001e+01
+10 13157     1.169500e+02 4.765997e+01
+13 13157     5.365000e+02 -2.908400e+02
+2 13158     6.715601e+02 -3.257001e+01
+7 13158     5.602900e+02 1.406200e+02
+9 13158     4.375100e+02 7.796002e+01
+2 13159     6.800699e+02 -3.401001e+01
+3 13159     5.465601e+02 -3.348000e+02
+7 13159     5.671500e+02 1.370900e+02
+2 13160     2.139301e+02 -3.541998e+01
+7 13160     -3.503003e+01 5.241998e+01
+10 13160     -4.298999e+01 6.647998e+01
+13 13160     4.151200e+02 -2.770100e+02
+15 13160     2.525000e+01 4.998999e+01
+2 13161     6.596200e+02 -3.627002e+01
+3 13161     5.271899e+02 -3.386700e+02
+6 13161     5.834500e+02 1.066400e+02
+8 13161     5.997100e+02 -6.296002e+01
+9 13161     4.269800e+02 7.472998e+01
+12 13161     6.612200e+02 1.157600e+02
+2 13162     3.887000e+01 -3.756000e+01
+8 13162     6.392999e+01 -7.391998e+01
+2 13163     3.887000e+01 -3.756000e+01
+8 13163     6.392999e+01 -7.391998e+01
+2 13164     2.358199e+02 -3.959003e+01
+6 13164     5.615997e+01 -4.971002e+01
+10 13164     -2.265002e+01 5.734998e+01
+2 13165     2.985500e+02 -4.134003e+01
+10 13165     4.376001e+01 4.514001e+01
+2 13166     4.088300e+02 -4.292999e+01
+8 13166     3.674400e+02 -8.406000e+01
+2 13167     3.852400e+02 -4.713000e+01
+6 13167     2.172700e+02 -4.296997e+01
+8 13167     3.465200e+02 -8.759003e+01
+12 13167     2.396600e+02 -1.000000e+00
+2 13168     -6.588900e+02 -5.325000e+01
+14 13168     -7.164001e+01 -5.072800e+02
+2 13169     1.676001e+01 -5.341998e+01
+6 13169     -1.676000e+02 -5.000000e+01
+12 13169     -1.494400e+02 7.330017e+00
+2 13170     -1.440200e+02 -5.453998e+01
+3 13170     -2.302000e+02 -3.723400e+02
+8 13170     -7.900000e+01 -8.077002e+01
+2 13171     -1.440200e+02 -5.453998e+01
+8 13171     -7.900000e+01 -8.077002e+01
+2 13172     6.462400e+02 -5.492999e+01
+6 13172     5.675500e+02 8.934998e+01
+8 13172     5.886801e+02 -7.771997e+01
+9 13172     4.167800e+02 5.848999e+01
+12 13172     6.461100e+02 9.834998e+01
+2 13173     4.370300e+02 -5.838000e+01
+3 13173     3.352600e+02 -3.580500e+02
+7 13173     1.798600e+02 2.203003e+01
+10 13173     2.061500e+02 1.244000e+01
+13 13173     6.042200e+02 -3.189900e+02
+15 13173     3.185200e+02 -1.164001e+01
+2 13174     4.673400e+02 -6.209003e+01
+3 13174     3.626700e+02 -3.609500e+02
+10 13174     2.510100e+02 9.080017e+00
+13 13174     6.358000e+02 -3.228500e+02
+15 13174     3.734900e+02 -1.509003e+01
+2 13175     7.397000e+02 -7.296002e+01
+3 13175     6.083800e+02 -3.707200e+02
+9 13175     4.954600e+02 4.757001e+01
+2 13176     -9.485999e+01 -7.358002e+01
+6 13176     -2.779100e+02 -5.556000e+01
+8 13176     -4.164001e+01 -9.842999e+01
+12 13176     -2.465800e+02 3.809998e+00
+2 13177     -1.209003e+01 -7.659998e+01
+3 13177     -9.396997e+01 -3.886400e+02
+6 13177     -1.961700e+02 -7.540997e+01
+8 13177     2.065002e+01 -1.050100e+02
+9 13177     -1.157100e+02 2.016998e+01
+2 13178     7.049700e+02 -7.708002e+01
+7 13178     5.829700e+02 9.397000e+01
+2 13179     3.465200e+02 -7.846002e+01
+3 13179     2.527200e+02 -3.794600e+02
+2 13180     3.681300e+02 -7.994000e+01
+4 13180     -4.038500e+02 -5.414200e+02
+7 13180     9.922998e+01 -1.510010e+00
+9 13180     2.015699e+02 3.325000e+01
+13 13180     5.332100e+02 -3.336000e+02
+2 13181     -1.125000e+01 -8.040002e+01
+6 13181     -1.953600e+02 -7.885999e+01
+8 13181     2.147998e+01 -1.084500e+02
+2 13182     8.808002e+01 -8.060999e+01
+6 13182     -9.695001e+01 -9.207001e+01
+2 13183     7.970100e+02 -8.148999e+01
+7 13183     6.606100e+02 6.694000e+01
+2 13184     7.067400e+02 -8.253998e+01
+9 13184     4.678700e+02 3.791998e+01
+12 13184     7.085500e+02 6.125000e+01
+2 13185     6.277800e+02 -8.487000e+01
+6 13185     5.463400e+02 6.146002e+01
+9 13185     4.019100e+02 3.265002e+01
+10 13185     6.750300e+02 1.098000e+02
+2 13186     6.277800e+02 -8.487000e+01
+8 13186     5.724900e+02 -1.010100e+02
+2 13187     -1.118600e+02 -8.584003e+01
+3 13187     -1.930500e+02 -4.009000e+02
+8 13187     -5.713000e+01 -1.092200e+02
+2 13188     7.339900e+02 -8.640002e+01
+7 13188     6.061899e+02 7.908002e+01
+9 13188     4.905601e+02 3.594000e+01
+10 13188     7.785800e+02 6.345001e+01
+2 13189     -1.137800e+02 -9.159998e+01
+3 13189     -1.955000e+02 -4.059500e+02
+6 13189     -2.996300e+02 -8.309998e+01
+8 13189     -5.928003e+01 -1.142000e+02
+2 13190     -2.708700e+02 -9.723999e+01
+6 13190     -4.419700e+02 4.596997e+01
+9 13190     -3.538800e+02 -1.642999e+01
+2 13191     1.105200e+02 -9.959998e+01
+3 13191     2.915002e+01 -4.067300e+02
+6 13191     -7.450000e+01 -1.155900e+02
+8 13191     1.158500e+02 -1.290900e+02
+2 13192     7.323800e+02 -1.011800e+02
+9 13192     4.895400e+02 2.376001e+01
+2 13193     1.338400e+02 -1.080300e+02
+3 13193     5.251001e+01 -4.143000e+02
+6 13193     -5.122998e+01 -1.251600e+02
+7 13193     -1.145700e+02 -5.239990e+00
+10 13193     -1.368400e+02 9.330017e+00
+12 13193     -4.602002e+01 -7.112000e+01
+15 13193     -8.394000e+01 -1.760999e+01
+2 13194     2.705601e+02 -1.090000e+02
+10 13194     -1.328998e+01 -2.659003e+01
+2 13195     1.299600e+02 -1.115500e+02
+7 13195     -1.176100e+02 -7.239990e+00
+2 13196     7.275200e+02 -1.124200e+02
+7 13196     5.977600e+02 5.873999e+01
+2 13197     5.353300e+02 -1.132600e+02
+8 13197     4.726899e+02 -1.436300e+02
+2 13198     -2.184998e+01 -1.141700e+02
+3 13198     -1.012300e+02 -4.254100e+02
+7 13198     -2.259500e+02 2.076001e+01
+10 13198     -2.518000e+02 5.421002e+01
+13 13198     2.383700e+02 -2.922000e+02
+15 13198     -2.166200e+02 3.325000e+01
+2 13199     -8.866998e+01 -1.147500e+02
+3 13199     -1.665100e+02 -4.281400e+02
+6 13199     -2.746700e+02 -1.182700e+02
+8 13199     -4.169000e+01 -1.351500e+02
+12 13199     -2.570800e+02 -5.550000e+01
+2 13200     9.391998e+01 -1.143700e+02
+3 13200     1.378003e+01 -4.216700e+02
+6 13200     -9.101999e+01 -1.284900e+02
+15 13200     -1.204400e+02 -1.007001e+01
+2 13201     9.048999e+01 -1.154800e+02
+3 13201     1.053998e+01 -4.226200e+02
+6 13201     -9.450000e+01 -1.293200e+02
+8 13201     1.004400e+02 -1.411000e+02
+10 13201     -1.711100e+02 1.609003e+01
+12 13201     -8.814001e+01 -7.354999e+01
+15 13201     -1.236900e+02 -9.919983e+00
+2 13202     1.803100e+02 -1.162300e+02
+13 13202     3.737100e+02 -3.369800e+02
+2 13203     7.196500e+02 -1.174800e+02
+9 13203     4.794100e+02 9.570007e+00
+12 13203     7.193600e+02 2.371997e+01
+2 13204     7.900000e+01 -1.183500e+02
+3 13204     -9.299927e-01 -4.261700e+02
+8 13204     9.066998e+01 -1.426700e+02
+10 13204     -1.795600e+02 1.687000e+01
+15 13204     -1.335900e+02 -9.070007e+00
+2 13205     4.822600e+02 -1.205800e+02
+7 13205     2.052900e+02 -4.507001e+01
+8 13205     4.254000e+02 -1.512700e+02
+2 13206     7.177000e+02 -1.209300e+02
+7 13206     5.883199e+02 5.440997e+01
+2 13207     8.453998e+01 -1.220200e+02
+3 13207     4.739990e+00 -4.299100e+02
+6 13207     -1.004800e+02 -1.353100e+02
+7 13207     -1.514200e+02 -7.070007e+00
+8 13207     9.531000e+01 -1.463600e+02
+10 13207     -1.757200e+02 1.228003e+01
+2 13208     8.453998e+01 -1.220200e+02
+3 13208     4.739990e+00 -4.299100e+02
+6 13208     -1.004800e+02 -1.353100e+02
+7 13208     -1.514200e+02 -7.070007e+00
+8 13208     9.531000e+01 -1.463600e+02
+10 13208     -1.757200e+02 1.228003e+01
+15 13208     -1.289000e+02 -1.457001e+01
+2 13209     5.345699e+02 -1.218300e+02
+8 13209     4.721100e+02 -1.514500e+02
+2 13210     1.370200e+02 -1.238100e+02
+10 13210     -1.346600e+02 -6.380005e+00
+13 13210     3.430900e+02 -3.337200e+02
+15 13210     -8.097998e+01 -3.532001e+01
+2 13211     2.912100e+02 -1.268000e+02
+3 13211     2.043400e+02 -4.272300e+02
+10 13211     5.880005e+00 -4.553998e+01
+2 13212     3.365699e+02 -1.294100e+02
+13 13212     4.954399e+02 -3.708300e+02
+2 13213     4.590100e+02 -1.320900e+02
+3 13213     3.624399e+02 -4.276600e+02
+8 13213     4.049000e+02 -1.613600e+02
+2 13214     5.229500e+02 -1.320700e+02
+8 13214     4.611899e+02 -1.594700e+02
+9 13214     3.285400e+02 -4.640015e+00
+2 13215     -5.133002e+01 -1.325300e+02
+3 13215     -1.280800e+02 -4.445900e+02
+8 13215     -1.342999e+01 -1.511200e+02
+9 13215     -1.439900e+02 -2.969000e+01
+12 13215     -2.250100e+02 -8.042999e+01
+2 13216     3.016998e+01 -1.330900e+02
+3 13216     -4.729999e+01 -4.418600e+02
+8 13216     5.129999e+01 -1.538000e+02
+2 13217     1.619700e+02 -1.347000e+02
+3 13217     8.097998e+01 -4.395100e+02
+6 13217     -2.271002e+01 -1.525900e+02
+7 13217     -9.366998e+01 -3.115002e+01
+10 13217     -1.151900e+02 -2.237000e+01
+12 13217     -1.851001e+01 -1.004400e+02
+2 13218     1.844300e+02 -1.343600e+02
+3 13218     1.027100e+02 -4.379700e+02
+6 13218     -6.199951e-01 -1.534900e+02
+8 13218     1.747300e+02 -1.589100e+02
+9 13218     5.367999e+01 -1.884003e+01
+12 13218     3.210022e+00 -1.026000e+02
+15 13218     -3.856000e+01 -6.196002e+01
+2 13219     7.776300e+02 -1.342500e+02
+9 13219     5.276500e+02 -2.070007e+00
+2 13220     5.259700e+02 -1.347700e+02
+8 13220     4.641500e+02 -1.615000e+02
+2 13221     7.661000e+02 -1.364600e+02
+7 13221     6.268199e+02 2.856000e+01
+9 13221     5.183400e+02 -4.179993e+00
+2 13222     7.661000e+02 -1.364600e+02
+7 13222     6.268199e+02 2.856000e+01
+9 13222     5.183400e+02 -4.179993e+00
+2 13223     -8.459003e+01 -1.378600e+02
+3 13223     -1.630300e+02 -4.510000e+02
+6 13223     -2.693700e+02 -1.387500e+02
+8 13223     -3.876001e+01 -1.530200e+02
+9 13223     -1.730000e+02 -3.487000e+01
+2 13224     -5.872800e+02 -1.418900e+02
+8 13224     -4.089100e+02 -1.289700e+02
+2 13225     -3.156300e+02 -1.420500e+02
+8 13225     -1.965800e+02 -1.324500e+02
+2 13226     4.344200e+02 -1.418200e+02
+6 13226     2.612400e+02 -1.551400e+02
+8 13226     3.840700e+02 -1.692900e+02
+15 13226     2.562400e+02 -1.318000e+02
+2 13227     5.316200e+02 -1.428600e+02
+8 13227     4.698700e+02 -1.670500e+02
+2 13228     5.316200e+02 -1.428600e+02
+8 13228     4.698700e+02 -1.670500e+02
+2 13229     7.592900e+02 -1.429900e+02
+9 13229     5.130000e+02 -9.909973e+00
+2 13230     8.212200e+02 -1.463700e+02
+3 13230     6.939900e+02 -4.405400e+02
+7 13230     6.719200e+02 6.380005e+00
+12 13230     8.260800e+02 -2.273999e+01
+2 13231     7.209003e+01 -1.484700e+02
+8 13231     8.310999e+01 -1.683700e+02
+2 13232     -1.977002e+01 -1.526800e+02
+3 13232     -9.602002e+01 -4.628700e+02
+6 13232     -2.060900e+02 -1.658700e+02
+8 13232     1.020001e+01 -1.684100e+02
+9 13232     -1.164000e+02 -4.371002e+01
+2 13233     2.882001e+01 -1.561900e+02
+8 13233     4.773999e+01 -1.744000e+02
+2 13234     -3.113000e+01 -1.566500e+02
+3 13234     -1.079300e+02 -4.673300e+02
+6 13234     -2.170300e+02 -1.665300e+02
+9 13234     -1.256100e+02 -4.787000e+01
+2 13235     -4.515002e+01 -1.567800e+02
+3 13235     -1.220000e+02 -4.672500e+02
+2 13236     6.959003e+01 -1.591200e+02
+8 13236     8.008002e+01 -1.777600e+02
+2 13237     -2.761100e+02 -1.594000e+02
+8 13237     -1.673500e+02 -1.479200e+02
+2 13238     8.221600e+02 -1.599600e+02
+7 13238     6.709399e+02 -5.140015e+00
+2 13239     4.353500e+02 -1.617400e+02
+6 13239     2.577700e+02 -1.799900e+02
+8 13239     3.816300e+02 -1.867300e+02
+12 13239     2.693101e+02 -1.425200e+02
+2 13240     4.725800e+02 -1.634400e+02
+6 13240     2.999900e+02 -1.740100e+02
+12 13240     3.162800e+02 -1.388300e+02
+2 13241     3.945800e+02 -1.684600e+02
+7 13241     9.346002e+01 -9.498999e+01
+2 13242     -3.608002e+01 -1.704700e+02
+6 13242     -2.206400e+02 -1.763300e+02
+2 13243     3.778998e+01 -1.846900e+02
+6 13243     -1.491300e+02 -2.042500e+02
+12 13243     -1.471000e+02 -1.463900e+02
+2 13244     3.778998e+01 -1.846900e+02
+6 13244     -1.491300e+02 -2.042500e+02
+7 13244     -1.994200e+02 -5.906000e+01
+8 13244     5.491998e+01 -1.971700e+02
+12 13244     -1.471000e+02 -1.463900e+02
+2 13245     1.909301e+02 -1.844800e+02
+3 13245     1.146400e+02 -4.848101e+02
+8 13245     1.764600e+02 -2.034500e+02
+2 13246     2.177400e+02 -1.861000e+02
+3 13246     1.414100e+02 -4.851899e+02
+2 13247     4.095500e+02 -1.864900e+02
+3 13247     3.210400e+02 -4.819700e+02
+6 13247     2.298600e+02 -2.052600e+02
+2 13248     -4.444300e+02 -1.887000e+02
+7 13248     -4.452700e+02 1.017900e+02
+10 13248     -4.510200e+02 1.939600e+02
+13 13248     -2.500000e-01 -2.115700e+02
+15 13248     -4.368200e+02 1.913200e+02
+2 13249     3.878800e+02 -1.884300e+02
+6 13249     2.068400e+02 -2.109500e+02
+7 13249     8.866998e+01 -1.086600e+02
+12 13249     2.125400e+02 -1.719300e+02
+2 13250     8.088199e+02 -1.913000e+02
+7 13250     6.385200e+02 -4.142999e+01
+2 13251     2.375300e+02 -1.947000e+02
+7 13251     -4.989001e+01 -1.008900e+02
+15 13251     -1.365002e+01 -1.548600e+02
+2 13252     2.655601e+02 -1.976800e+02
+3 13252     1.863400e+02 -4.968700e+02
+6 13252     7.790002e+01 -2.252800e+02
+8 13252     2.378400e+02 -2.131100e+02
+15 13252     1.859998e+01 -1.647600e+02
+2 13253     -3.066200e+02 -2.085600e+02
+3 13253     -4.140100e+02 -5.399301e+02
+2 13254     -3.300400e+02 -2.094800e+02
+3 13254     -4.383000e+02 -5.415699e+02
+2 13255     4.561400e+02 -2.123800e+02
+6 13255     2.842900e+02 -2.178600e+02
+8 13255     4.017900e+02 -2.261800e+02
+2 13256     2.313300e+02 -2.129300e+02
+6 13256     4.396002e+01 -2.395699e+02
+2 13257     3.769301e+02 -2.148400e+02
+8 13257     3.314900e+02 -2.293400e+02
+2 13258     4.725601e+02 -2.198400e+02
+6 13258     3.015600e+02 -2.218500e+02
+2 13259     3.644200e+02 -2.219000e+02
+8 13259     3.191900e+02 -2.358900e+02
+2 13260     1.114200e+02 -2.241000e+02
+3 13260     3.627002e+01 -5.289800e+02
+6 13260     -7.534998e+01 -2.429800e+02
+2 13261     -3.574100e+02 -2.263100e+02
+7 13261     -3.910800e+02 5.248999e+01
+2 13262     5.098600e+02 -2.319200e+02
+6 13262     3.509700e+02 -2.115400e+02
+8 13262     4.500900e+02 -2.390400e+02
+12 13262     3.810000e+02 -1.818200e+02
+2 13263     -3.342100e+02 -2.331600e+02
+3 13263     -4.404800e+02 -5.662000e+02
+2 13264     1.204900e+02 -2.357700e+02
+6 13264     -6.562000e+01 -2.534200e+02
+9 13264     5.109985e+00 -1.052800e+02
+12 13264     -6.481000e+01 -2.006300e+02
+2 13265     5.117000e+02 -2.363500e+02
+8 13265     4.515400e+02 -2.426400e+02
+2 13266     -5.010010e+00 -2.377400e+02
+3 13266     -8.148999e+01 -5.480400e+02
+6 13266     -1.882400e+02 -2.419800e+02
+8 13266     2.223999e+01 -2.359500e+02
+9 13266     -1.005700e+02 -1.143000e+02
+2 13267     5.038400e+02 -2.390200e+02
+8 13267     4.443700e+02 -2.452700e+02
+2 13268     -4.003100e+02 -2.426200e+02
+8 13268     -2.713400e+02 -2.160200e+02
+2 13269     -6.498500e+02 -2.443800e+02
+13 13269     -1.482900e+02 -2.373400e+02
+15 13269     -6.653500e+02 1.439200e+02
+2 13270     -4.358200e+02 -2.467100e+02
+8 13270     -3.000200e+02 -2.198500e+02
+9 13270     -4.813000e+02 -1.515200e+02
+15 13270     -4.656800e+02 1.037900e+02
+2 13271     -3.267100e+02 -2.493600e+02
+3 13271     -4.310200e+02 -5.820400e+02
+2 13272     3.303998e+01 -2.505300e+02
+3 13272     -4.157001e+01 -5.591500e+02
+6 13272     -1.509800e+02 -2.602200e+02
+7 13272     -1.975100e+02 -1.009400e+02
+8 13272     5.176001e+01 -2.482900e+02
+9 13272     -6.737000e+01 -1.232100e+02
+12 13272     -1.451900e+02 -2.026800e+02
+2 13273     1.275000e+02 -2.561300e+02
+6 13273     -5.764001e+01 -2.715100e+02
+12 13273     -5.592999e+01 -2.196800e+02
+2 13274     1.864600e+02 -2.572700e+02
+3 13274     1.121000e+02 -5.588900e+02
+2 13275     3.428400e+02 -2.588700e+02
+3 13275     2.615601e+02 -5.549700e+02
+6 13275     1.599200e+02 -2.751600e+02
+9 13275     1.892300e+02 -1.148900e+02
+2 13276     4.908199e+02 -2.616100e+02
+6 13276     3.277300e+02 -2.465400e+02
+8 13276     4.326801e+02 -2.642300e+02
+12 13276     3.540699e+02 -2.167700e+02
+2 13277     3.394500e+02 -2.624100e+02
+8 13277     3.000000e+02 -2.666100e+02
+2 13278     4.705400e+02 -2.666300e+02
+6 13278     2.996000e+02 -2.648800e+02
+2 13279     3.262000e+01 -2.669900e+02
+8 13279     5.170001e+01 -2.599400e+02
+2 13280     5.857001e+01 -2.680900e+02
+6 13280     -1.247800e+02 -2.768600e+02
+9 13280     -4.562000e+01 -1.363600e+02
+12 13280     -1.190500e+02 -2.215300e+02
+15 13280     -1.652700e+02 -1.540400e+02
+2 13281     3.119800e+02 -2.695200e+02
+3 13281     2.318101e+02 -5.672300e+02
+10 13281     4.429993e+00 -1.778900e+02
+15 13281     8.296997e+01 -2.364000e+02
+2 13282     4.676899e+02 -2.699700e+02
+6 13282     2.969200e+02 -2.676400e+02
+12 13282     3.161200e+02 -2.361000e+02
+2 13283     4.888101e+02 -2.723100e+02
+6 13283     3.252800e+02 -2.560200e+02
+7 13283     2.155900e+02 -1.520100e+02
+8 13283     4.309000e+02 -2.726500e+02
+12 13283     3.516300e+02 -2.261500e+02
+13 13283     6.269399e+02 -4.837600e+02
+2 13284     5.214301e+02 -2.725000e+02
+8 13284     4.613700e+02 -2.708800e+02
+2 13285     5.173300e+02 -2.739200e+02
+8 13285     4.574100e+02 -2.723200e+02
+2 13286     -4.319600e+02 -2.767400e+02
+7 13286     -4.652000e+02 3.799988e+00
+9 13286     -4.741400e+02 -1.763900e+02
+2 13287     -3.531900e+02 -2.786000e+02
+3 13287     -4.568100e+02 -6.134000e+02
+9 13287     -4.054000e+02 -1.727100e+02
+2 13288     -3.531900e+02 -2.786000e+02
+3 13288     -4.568100e+02 -6.134000e+02
+8 13288     -2.374800e+02 -2.481000e+02
+9 13288     -4.054000e+02 -1.727100e+02
+2 13289     4.260400e+02 -2.809300e+02
+4 13289     -5.482100e+02 -5.466100e+02
+8 13289     3.750400e+02 -2.811900e+02
+2 13290     -3.527500e+02 -2.826800e+02
+8 13290     -2.371900e+02 -2.517000e+02
+9 13290     -4.038400e+02 -1.761100e+02
+13 13290     3.715997e+01 -3.100800e+02
+2 13291     3.643900e+02 -2.835300e+02
+4 13291     -5.245800e+02 -4.872500e+02
+6 13291     1.833700e+02 -2.930699e+02
+7 13291     6.802002e+01 -1.720300e+02
+8 13291     3.206900e+02 -2.839100e+02
+9 13291     2.075800e+02 -1.345000e+02
+12 13291     1.900100e+02 -2.556000e+02
+13 13291     4.981801e+02 -4.856700e+02
+2 13292     2.244100e+02 -2.961600e+02
+13 13292     3.869100e+02 -4.706500e+02
+2 13293     2.813900e+02 -3.023900e+02
+8 13293     2.525700e+02 -2.965800e+02
+12 13293     1.028300e+02 -2.711800e+02
+2 13294     3.356500e+02 -3.058600e+02
+6 13294     1.542400e+02 -3.149800e+02
+2 13295     1.131300e+02 -3.081900e+02
+7 13295     -1.366600e+02 -1.557600e+02
+2 13296     3.196801e+02 -3.101100e+02
+3 13296     2.411899e+02 -6.086500e+02
+2 13297     3.196801e+02 -3.101100e+02
+6 13297     1.379600e+02 -3.189100e+02
+9 13297     1.720100e+02 -1.583400e+02
+10 13297     1.566998e+01 -2.076600e+02
+12 13297     1.441800e+02 -2.791200e+02
+15 13297     9.744000e+01 -2.721300e+02
+2 13298     3.372700e+02 -3.122000e+02
+6 13298     1.556300e+02 -3.216400e+02
+9 13298     1.863500e+02 -1.598600e+02
+2 13299     -4.516300e+02 -3.137000e+02
+9 13299     -4.872700e+02 -2.082300e+02
+13 13299     -3.560999e+01 -3.240100e+02
+2 13300     -4.516300e+02 -3.137000e+02
+9 13300     -4.872700e+02 -2.082300e+02
+13 13300     -3.560999e+01 -3.240100e+02
+15 13300     -5.220500e+02 8.809998e+00
+2 13301     1.114500e+02 -3.142900e+02
+6 13301     -7.171997e+01 -3.216600e+02
+12 13301     -6.737000e+01 -2.696300e+02
+2 13302     1.157900e+02 -3.146400e+02
+6 13302     -6.696997e+01 -3.223700e+02
+2 13303     1.226400e+02 -3.153900e+02
+6 13303     -6.050000e+01 -3.234800e+02
+12 13303     -5.641998e+01 -2.722300e+02
+2 13304     1.226400e+02 -3.153900e+02
+8 13304     1.225400e+02 -3.036300e+02
+2 13305     3.924301e+02 -3.157600e+02
+3 13305     3.111300e+02 -6.131000e+02
+6 13305     2.153300e+02 -3.190699e+02
+8 13305     3.454800e+02 -3.101000e+02
+12 13305     2.271300e+02 -2.838500e+02
+2 13306     1.095100e+02 -3.173800e+02
+12 13306     -6.934003e+01 -2.722500e+02
+2 13307     2.430800e+02 -3.196700e+02
+6 13307     5.969000e+01 -3.302700e+02
+2 13308     5.307001e+01 -3.214700e+02
+6 13308     -1.276800e+02 -3.221000e+02
+9 13308     -4.815997e+01 -1.816600e+02
+12 13308     -1.190000e+02 -2.661800e+02
+2 13309     3.840300e+02 -3.270000e+02
+8 13309     3.388600e+02 -3.179700e+02
+2 13310     2.019900e+02 -3.311500e+02
+12 13310     2.148999e+01 -2.920200e+02
+2 13311     8.134003e+01 -3.345500e+02
+6 13311     -9.976001e+01 -3.365601e+02
+8 13311     9.028998e+01 -3.162000e+02
+9 13311     -2.401001e+01 -1.903700e+02
+2 13312     8.134003e+01 -3.345500e+02
+8 13312     9.028998e+01 -3.162000e+02
+2 13313     2.678101e+02 -3.372800e+02
+6 13313     8.533002e+01 -3.445900e+02
+2 13314     -5.356900e+02 -3.393800e+02
+8 13314     -3.852600e+02 -2.964400e+02
+2 13315     4.800000e+01 -3.436100e+02
+6 13315     -1.319100e+02 -3.400800e+02
+2 13316     6.600000e+01 -3.470500e+02
+6 13316     -1.135400e+02 -3.445000e+02
+13 13316     2.767200e+02 -4.679200e+02
+2 13317     5.446002e+01 -3.559200e+02
+6 13317     -1.251800e+02 -3.526100e+02
+2 13318     -1.715600e+02 -3.711800e+02
+13 13318     1.287700e+02 -4.238300e+02
+2 13319     3.442700e+02 -3.756100e+02
+6 13319     1.633500e+02 -3.793700e+02
+8 13319     3.031300e+02 -3.574500e+02
+12 13319     1.703000e+02 -3.422000e+02
+2 13320     1.904301e+02 -3.791900e+02
+6 13320     7.489990e+00 -3.856600e+02
+2 13321     -3.040600e+02 -3.814600e+02
+7 13321     -4.037100e+02 -1.181900e+02
+8 13321     -2.075800e+02 -3.365600e+02
+15 13321     -4.264100e+02 -1.141900e+02
+2 13322     -1.264800e+02 -3.860600e+02
+8 13322     -7.153998e+01 -3.480600e+02
+2 13323     -2.803700e+02 -4.077200e+02
+6 13323     -4.551000e+02 -3.799900e+02
+2 13324     1.695001e+01 -4.161801e+02
+6 13324     -1.637700e+02 -4.175500e+02
+2 13325     3.063000e+01 -4.200200e+02
+6 13325     -1.503300e+02 -4.216000e+02
+9 13325     -6.120001e+01 -2.643100e+02
+12 13325     -1.455100e+02 -3.637400e+02
+2 13326     -3.050100e+02 -4.224000e+02
+7 13326     -4.178600e+02 -1.604300e+02
+8 13326     -2.122300e+02 -3.713600e+02
+13 13326     3.270001e+01 -4.403300e+02
+2 13327     3.582100e+02 -4.395800e+02
+6 13327     1.743800e+02 -4.462300e+02
+2 13328     3.979999e+01 -4.522400e+02
+13 13328     2.434900e+02 -5.375400e+02
+2 13329     1.087000e+01 -4.539200e+02
+6 13329     -1.682200e+02 -4.490500e+02
+2 13330     2.790601e+02 -4.546300e+02
+12 13330     9.520001e+01 -4.184800e+02
+2 13331     -3.265800e+02 -4.571801e+02
+8 13331     -2.314500e+02 -4.005500e+02
+2 13332     1.854700e+02 -4.571400e+02
+6 13332     1.229980e+00 -4.637600e+02
+2 13333     1.705600e+02 -4.601700e+02
+12 13333     -1.509003e+01 -4.181801e+02
+2 13334     1.700200e+02 -4.705500e+02
+6 13334     -1.340997e+01 -4.745900e+02
+9 13334     5.696002e+01 -2.976900e+02
+2 13335     5.650024e+00 -4.715400e+02
+13 13335     2.188101e+02 -5.434600e+02
+2 13336     -4.229200e+02 -4.871000e+02
+7 13336     -5.214400e+02 -2.125200e+02
+10 13336     -5.831700e+02 -1.671300e+02
+15 13336     -5.931100e+02 -2.278900e+02
+2 13337     6.263000e+02 -4.934500e+02
+9 13337     4.279500e+02 -2.948700e+02
+2 13338     7.192400e+02 -5.332800e+02
+9 13338     5.031000e+02 -3.208200e+02
+12 13338     5.527800e+02 -5.259900e+02
+2 13339     7.007600e+02 -5.349700e+02
+6 13339     5.188300e+02 -5.393000e+02
+7 13339     3.308400e+02 -4.140300e+02
+9 13339     4.888800e+02 -3.235100e+02
+10 13339     3.400100e+02 -5.064100e+02
+12 13339     5.319900e+02 -5.275900e+02
+2 13340     7.427200e+02 -5.404100e+02
+6 13340     5.591500e+02 -5.461700e+02
+7 13340     3.634700e+02 -4.264300e+02
+9 13340     5.218500e+02 -3.253400e+02
+10 13340     3.755100e+02 -5.263700e+02
+12 13340     5.738600e+02 -5.376100e+02
+2 13341     5.260500e+02 -5.421700e+02
+9 13341     3.512300e+02 -3.385200e+02
+2 13342     6.156600e+02 -5.464500e+02
+9 13342     4.225400e+02 -3.373200e+02
+2 13343     2.989000e+02 -5.514301e+02
+15 13343     1.667999e+01 -5.137300e+02
+2 13344     5.030100e+02 -5.610200e+02
+9 13344     3.329100e+02 -3.551700e+02
+2 13345     4.913800e+02 -5.797300e+02
+9 13345     3.253700e+02 -3.702600e+02
+2 13346     2.475200e+02 -5.826600e+02
+7 13346     -6.215997e+01 -3.899600e+02
+15 13346     -4.446002e+01 -5.287700e+02
+2 13347     5.262200e+02 -5.949800e+02
+9 13347     3.547900e+02 -3.803300e+02
+2 13348     2.923800e+02 -5.968101e+02
+7 13348     -3.444000e+01 -4.111900e+02
+15 13348     -1.276001e+01 -5.622000e+02
+2 13349     3.432700e+02 -6.016400e+02
+9 13349     2.076000e+02 -3.955000e+02
+10 13349     -3.902002e+01 -4.734500e+02
+2 13350     3.382000e+02 -6.018600e+02
+7 13350     9.002686e-02 -4.234300e+02
+15 13350     3.001001e+01 -5.848500e+02
+2 13351     -1.634600e+02 6.097900e+02
+3 13351     -2.952500e+02 2.666500e+02
+13 13351     3.207600e+02 4.542700e+02
+14 13351     4.705699e+02 9.425000e+01
+2 13352     -1.732300e+02 5.946500e+02
+4 13352     1.913300e+02 -4.866500e+02
+5 13352     5.650300e+02 1.736400e+02
+13 13352     3.117000e+02 4.423000e+02
+14 13352     4.600800e+02 8.056000e+01
+2 13353     -2.180800e+02 5.898300e+02
+4 13353     1.874000e+02 -4.507900e+02
+11 13353     2.253101e+02 -6.789978e+00
+14 13353     4.113199e+02 7.016998e+01
+2 13354     -2.180800e+02 5.898300e+02
+11 13354     2.253101e+02 -6.789978e+00
+14 13354     4.113199e+02 7.016998e+01
+2 13355     -1.818800e+02 5.863200e+02
+4 13355     1.855300e+02 -4.785500e+02
+13 13355     3.032100e+02 4.338400e+02
+14 13355     4.502500e+02 7.172998e+01
+2 13356     -1.651800e+02 5.857700e+02
+3 13356     -2.975200e+02 2.444300e+02
+4 13356     1.861700e+02 -4.917500e+02
+11 13356     2.790400e+02 -3.349976e+00
+13 13356     3.186600e+02 4.358100e+02
+14 13356     4.681899e+02 7.321002e+01
+2 13357     -1.775100e+02 5.842400e+02
+4 13357     1.860100e+02 -4.821700e+02
+5 13357     5.597600e+02 1.635900e+02
+11 13357     2.662900e+02 -6.000000e+00
+13 13357     3.071899e+02 4.327000e+02
+14 13357     4.548900e+02 7.013000e+01
+2 13358     -9.202002e+01 5.799400e+02
+3 13358     -2.297400e+02 2.371000e+02
+5 13358     6.575400e+02 1.662400e+02
+11 13358     3.541500e+02 -7.000732e-02
+13 13358     3.864900e+02 4.398500e+02
+14 13358     5.488800e+02 7.583002e+01
+2 13359     -2.944000e+01 5.791600e+02
+5 13359     7.317600e+02 1.730800e+02
+2 13360     -1.642999e+01 5.789500e+02
+3 13360     -1.592000e+02 2.361400e+02
+5 13360     7.475400e+02 1.745600e+02
+13 13360     4.597400e+02 4.486600e+02
+14 13360     6.360000e+02 8.484000e+01
+2 13361     -8.750000e+01 5.781100e+02
+3 13361     -2.253800e+02 2.350800e+02
+4 13361     1.810601e+02 -5.537600e+02
+5 13361     6.625400e+02 1.656700e+02
+13 13361     3.909800e+02 4.379400e+02
+14 13361     5.542200e+02 7.389001e+01
+2 13362     -9.589001e+01 5.760800e+02
+3 13362     -2.330700e+02 2.337900e+02
+4 13362     1.805800e+02 -5.458900e+02
+5 13362     6.520300e+02 1.628500e+02
+11 13362     3.495800e+02 -3.580017e+00
+13 13362     3.825800e+02 4.361400e+02
+14 13362     5.442100e+02 7.179999e+01
+2 13363     -2.170001e+01 5.754700e+02
+11 13363     4.301500e+02 5.440002e+00
+13 13363     4.544900e+02 4.451400e+02
+14 13363     6.295699e+02 8.012000e+01
+2 13364     8.492999e+01 5.753800e+02
+11 13364     5.474700e+02 1.788000e+01
+14 13364     7.566899e+02 9.373001e+01
+2 13365     -1.914700e+02 5.735200e+02
+4 13365     1.794301e+02 -4.694200e+02
+11 13365     2.519800e+02 -1.542999e+01
+13 13365     2.936300e+02 4.228300e+02
+2 13366     3.192999e+01 5.735000e+02
+3 13366     -1.141500e+02 2.308800e+02
+5 13366     8.076899e+02 1.741700e+02
+11 13366     4.879700e+02 9.669983e+00
+13 13366     5.073300e+02 4.501000e+02
+14 13366     6.925900e+02 8.513000e+01
+2 13367     3.192999e+01 5.735000e+02
+11 13367     4.879700e+02 9.669983e+00
+14 13367     6.925900e+02 8.513000e+01
+2 13368     -1.947998e+01 5.712300e+02
+5 13368     7.431899e+02 1.661300e+02
+11 13368     4.321100e+02 1.880005e+00
+14 13368     6.323700e+02 7.709003e+01
+2 13369     -1.947998e+01 5.712300e+02
+11 13369     4.321100e+02 1.880005e+00
+14 13369     6.323700e+02 7.709003e+01
+2 13370     -1.846600e+02 5.700000e+02
+11 13370     2.584500e+02 -1.840997e+01
+2 13371     -1.811700e+02 5.663000e+02
+3 13371     -3.127800e+02 2.262100e+02
+4 13371     1.745100e+02 -4.765300e+02
+8 13371     -7.029999e+01 4.454300e+02
+11 13371     2.621899e+02 -2.042999e+01
+14 13371     4.494500e+02 5.326001e+01
+2 13372     -1.845500e+02 5.604000e+02
+4 13372     1.716700e+02 -4.734800e+02
+5 13372     5.494700e+02 1.392600e+02
+14 13372     4.456000e+02 4.713000e+01
+2 13373     -6.807001e+01 5.605900e+02
+3 13373     -2.075100e+02 2.172200e+02
+4 13373     1.720000e+02 -5.672700e+02
+5 13373     6.836500e+02 1.511000e+02
+8 13373     2.358002e+01 4.432500e+02
+11 13373     3.795300e+02 -1.244000e+01
+13 13373     4.078300e+02 4.269000e+02
+14 13373     5.744600e+02 6.087000e+01
+2 13374     -1.727500e+02 5.587700e+02
+13 13374     3.099100e+02 4.117200e+02
+14 13374     4.582300e+02 4.616998e+01
+2 13375     8.379999e+01 5.583000e+02
+8 13375     1.509700e+02 4.447100e+02
+11 13375     5.461700e+02 3.460022e+00
+13 13375     5.585300e+02 4.433700e+02
+14 13375     7.545800e+02 7.644000e+01
+2 13376     3.703003e+01 5.561100e+02
+8 13376     1.117300e+02 4.413800e+02
+11 13376     4.929800e+02 -4.000000e+00
+14 13376     6.977300e+02 6.806000e+01
+2 13377     2.582000e+02 5.550700e+02
+8 13377     2.817300e+02 4.329300e+02
+9 13377     6.764001e+01 5.663100e+02
+2 13378     2.800400e+02 5.547500e+02
+3 13378     1.349900e+02 2.130300e+02
+6 13378     1.904500e+02 8.575800e+02
+8 13378     2.990000e+02 4.327400e+02
+9 13378     8.831000e+01 5.657800e+02
+13 13378     6.811600e+02 3.549000e+02
+2 13379     5.197998e+01 5.530700e+02
+14 13379     7.156100e+02 6.775000e+01
+2 13380     3.205000e+02 5.518400e+02
+3 13380     1.732400e+02 2.108100e+02
+8 13380     3.319800e+02 4.299700e+02
+2 13381     -4.203000e+02 5.505400e+02
+8 13381     -2.681700e+02 4.265200e+02
+2 13382     -3.501001e+01 5.505200e+02
+5 13382     7.229900e+02 1.435400e+02
+8 13382     5.121997e+01 4.356900e+02
+11 13382     4.148900e+02 -1.712000e+01
+13 13382     4.397200e+02 4.222100e+02
+2 13383     2.982300e+02 5.489500e+02
+3 13383     1.531400e+02 2.076100e+02
+6 13383     2.125700e+02 8.466200e+02
+8 13383     3.147300e+02 4.276800e+02
+9 13383     1.049900e+02 5.610000e+02
+11 13383     6.216899e+02 -1.015300e+02
+2 13384     -1.274800e+02 5.484400e+02
+3 13384     -2.630800e+02 2.074100e+02
+5 13384     6.128900e+02 1.324600e+02
+8 13384     -2.569000e+01 4.316500e+02
+11 13384     3.167000e+02 -2.901001e+01
+13 13384     3.509301e+02 4.090600e+02
+2 13385     -3.097100e+02 5.481000e+02
+3 13385     -4.339000e+02 2.098400e+02
+4 13385     1.654100e+02 -3.813300e+02
+5 13385     4.118800e+02 1.167300e+02
+6 13385     -5.297500e+02 8.676200e+02
+8 13385     -1.766500e+02 4.270500e+02
+11 13385     1.356600e+02 -4.732001e+01
+13 13385     1.870000e+02 3.890000e+02
+2 13386     -2.257300e+02 5.460500e+02
+11 13386     2.168000e+02 -4.128003e+01
+13 13386     2.612400e+02 3.957400e+02
+14 13386     4.002600e+02 2.904999e+01
+2 13387     4.420000e+02 5.456000e+02
+8 13387     4.261700e+02 4.205000e+02
+2 13388     -3.229900e+02 5.452000e+02
+3 13388     -4.452300e+02 2.072700e+02
+11 13388     1.237700e+02 -5.021997e+01
+13 13388     1.756400e+02 3.854200e+02
+14 13388     2.988000e+02 1.973999e+01
+2 13389     -1.229900e+02 5.445600e+02
+3 13389     -2.584100e+02 2.037900e+02
+4 13389     1.618199e+02 -5.193000e+02
+5 13389     6.175100e+02 1.292300e+02
+8 13389     -2.116998e+01 4.283100e+02
+2 13390     2.616500e+02 5.431100e+02
+3 13390     1.174500e+02 2.022100e+02
+6 13390     1.694000e+02 8.466300e+02
+8 13390     2.841500e+02 4.234200e+02
+9 13390     7.234003e+01 5.551100e+02
+11 13390     5.938900e+02 -9.778003e+01
+13 13390     6.654301e+02 3.494600e+02
+2 13391     -2.405300e+02 5.416800e+02
+6 13391     -4.409800e+02 8.744900e+02
+8 13391     -1.193700e+02 4.237200e+02
+13 13391     2.478600e+02 3.908300e+02
+14 13391     3.845200e+02 2.387000e+01
+2 13392     -1.832200e+02 5.413400e+02
+11 13392     2.587000e+02 -4.007001e+01
+13 13392     2.992400e+02 3.971300e+02
+2 13393     -2.483200e+02 5.412300e+02
+3 13393     -3.757000e+02 2.022300e+02
+6 13393     -4.512100e+02 8.720600e+02
+2 13394     -1.055000e+02 5.412800e+02
+4 13394     1.604399e+02 -5.328600e+02
+5 13394     6.377600e+02 1.282200e+02
+8 13394     -7.409973e+00 4.269800e+02
+13 13394     3.715601e+02 4.065600e+02
+14 13394     5.317800e+02 3.829999e+01
+2 13395     -1.417000e+02 5.389900e+02
+3 13395     -2.762800e+02 1.988800e+02
+4 13395     1.588199e+02 -5.034100e+02
+5 13395     5.958700e+02 1.220200e+02
+8 13395     -3.700000e+01 4.233100e+02
+11 13395     3.023900e+02 -3.790002e+01
+13 13395     3.377300e+02 4.000300e+02
+14 13395     4.914800e+02 3.178003e+01
+2 13396     -4.541100e+02 5.375000e+02
+3 13396     -5.724000e+02 2.034800e+02
+4 13396     1.617800e+02 -2.880400e+02
+5 13396     2.622300e+02 9.770001e+01
+8 13396     -2.965900e+02 4.147400e+02
+2 13397     5.432100e+02 5.370500e+02
+8 13397     5.112600e+02 4.125500e+02
+2 13398     -7.672300e+02 5.349400e+02
+5 13398     -3.087000e+01 7.333002e+01
+8 13398     -5.517500e+02 4.042300e+02
+11 13398     -2.568000e+02 -9.153998e+01
+13 13398     -1.771600e+02 3.325200e+02
+14 13398     -1.185400e+02 -2.610999e+01
+2 13399     2.745001e+01 5.319600e+02
+5 13399     7.960000e+02 1.317100e+02
+8 13399     1.019300e+02 4.215800e+02
+11 13399     4.818600e+02 -2.537000e+01
+2 13400     -4.767800e+02 5.298700e+02
+4 13400     1.578800e+02 -2.738300e+02
+5 13400     2.391100e+02 8.865997e+01
+13 13400     4.628998e+01 3.582300e+02
+2 13401     -3.015400e+02 5.291200e+02
+4 13401     1.548300e+02 -3.846400e+02
+5 13401     4.187500e+02 9.975000e+01
+6 13401     -5.175200e+02 8.450100e+02
+13 13401     1.934200e+02 3.745400e+02
+14 13401     3.200900e+02 7.119995e+00
+2 13402     -3.015400e+02 5.291200e+02
+5 13402     4.187500e+02 9.975000e+01
+6 13402     -5.175200e+02 8.450100e+02
+13 13402     1.934200e+02 3.745400e+02
+14 13402     3.200900e+02 7.119995e+00
+2 13403     -4.909200e+02 5.281600e+02
+5 13403     2.245500e+02 8.682001e+01
+14 13403     1.308800e+02 -8.789978e+00
+2 13404     4.780100e+02 5.281000e+02
+3 13404     3.277500e+02 1.898300e+02
+2 13405     -2.588300e+02 5.260800e+02
+3 13405     -3.866200e+02 1.887300e+02
+6 13405     -4.624300e+02 8.516800e+02
+14 13405     3.640100e+02 8.219971e+00
+2 13406     5.086300e+02 5.257400e+02
+3 13406     3.565300e+02 1.882700e+02
+9 13406     2.879500e+02 5.454400e+02
+2 13407     -1.361800e+02 5.254300e+02
+3 13407     -2.713300e+02 1.856600e+02
+4 13407     1.514399e+02 -5.060000e+02
+5 13407     6.010300e+02 1.099100e+02
+8 13407     -3.278003e+01 4.129200e+02
+13 13407     3.419399e+02 3.895900e+02
+2 13408     4.824100e+02 5.250500e+02
+3 13408     3.316400e+02 1.870400e+02
+8 13408     4.598800e+02 4.032800e+02
+9 13408     2.654900e+02 5.438100e+02
+2 13409     4.104200e+02 5.228800e+02
+3 13409     2.596400e+02 1.845200e+02
+6 13409     3.436900e+02 7.997500e+02
+8 13409     4.051500e+02 4.052200e+02
+2 13410     -3.253000e+02 5.227900e+02
+4 13410     1.519900e+02 -3.678100e+02
+2 13411     -2.889600e+02 5.203000e+02
+8 13411     -1.594900e+02 4.054400e+02
+13 13411     2.040601e+02 3.692400e+02
+2 13412     5.034200e+02 5.205200e+02
+3 13412     3.519500e+02 1.834800e+02
+6 13412     4.390000e+02 7.432000e+02
+8 13412     4.778000e+02 3.986600e+02
+9 13412     2.841600e+02 5.404400e+02
+2 13413     -4.975700e+02 5.198900e+02
+5 13413     2.176899e+02 7.915997e+01
+8 13413     -3.317000e+02 3.999100e+02
+11 13413     -3.656000e+01 -8.231000e+01
+13 13413     2.904999e+01 3.492700e+02
+14 13413     1.247100e+02 -1.631000e+01
+2 13414     5.671400e+02 5.196000e+02
+3 13414     4.116000e+02 1.832700e+02
+6 13414     5.111000e+02 7.317700e+02
+8 13414     5.303800e+02 3.969000e+02
+9 13414     3.373600e+02 5.413700e+02
+2 13415     -2.617700e+02 5.182500e+02
+5 13415     4.602600e+02 9.285999e+01
+2 13416     -3.338900e+02 5.178400e+02
+8 13416     -1.971200e+02 4.023300e+02
+11 13416     1.121100e+02 -7.201001e+01
+2 13417     9.803998e+01 5.159400e+02
+3 13417     -5.315002e+01 1.765100e+02
+8 13417     1.630500e+02 4.100500e+02
+11 13417     5.619399e+02 -3.015002e+01
+14 13417     7.694600e+02 3.684998e+01
+2 13418     5.001500e+02 5.161900e+02
+3 13418     3.494600e+02 1.792700e+02
+6 13418     4.346000e+02 7.391700e+02
+8 13418     4.748700e+02 3.952700e+02
+9 13418     2.812700e+02 5.366700e+02
+2 13419     5.655000e+02 5.149200e+02
+3 13419     4.097300e+02 1.789500e+02
+6 13419     5.091000e+02 7.280500e+02
+8 13419     5.295300e+02 3.934000e+02
+9 13419     3.360200e+02 5.369000e+02
+2 13420     -2.157300e+02 5.143700e+02
+4 13420     1.457600e+02 -4.436300e+02
+14 13420     4.095601e+02 1.679993e+00
+2 13421     6.300000e+01 5.128500e+02
+3 13421     -8.547998e+01 1.727000e+02
+8 13421     1.337000e+02 4.065000e+02
+11 13421     5.222400e+02 -3.750000e+01
+2 13422     5.858800e+02 5.129600e+02
+8 13422     5.463700e+02 3.920200e+02
+9 13422     3.536000e+02 5.358100e+02
+2 13423     -6.994700e+02 5.116300e+02
+5 13423     2.754999e+01 6.071997e+01
+13 13423     -1.275300e+02 3.248100e+02
+14 13423     -6.070001e+01 -3.728003e+01
+2 13424     5.678199e+02 5.106500e+02
+3 13424     4.128000e+02 1.752800e+02
+6 13424     5.114100e+02 7.226200e+02
+8 13424     5.306200e+02 3.897900e+02
+9 13424     3.388800e+02 5.333900e+02
+2 13425     6.242300e+02 5.106800e+02
+3 13425     4.645699e+02 1.759300e+02
+2 13426     6.242300e+02 5.106800e+02
+3 13426     4.645699e+02 1.759300e+02
+2 13427     3.440002e+01 5.094100e+02
+3 13427     -1.122700e+02 1.695200e+02
+13 13427     5.037100e+02 3.949000e+02
+14 13427     6.911700e+02 2.189001e+01
+2 13428     -1.734700e+02 5.083100e+02
+6 13428     -3.525600e+02 8.483700e+02
+8 13428     -6.369000e+01 3.984200e+02
+11 13428     2.695100e+02 -6.467999e+01
+2 13429     2.705500e+02 5.084600e+02
+3 13429     1.265300e+02 1.694100e+02
+6 13429     1.794500e+02 8.024900e+02
+8 13429     2.911200e+02 3.951400e+02
+9 13429     8.113000e+01 5.251200e+02
+11 13429     6.017600e+02 -1.302000e+02
+13 13429     6.697100e+02 3.182400e+02
+2 13430     -2.449100e+02 5.074000e+02
+3 13430     -3.734300e+02 1.703800e+02
+4 13430     1.432100e+02 -4.217100e+02
+8 13430     -1.221500e+02 3.971500e+02
+11 13430     1.980700e+02 -7.210999e+01
+2 13431     5.686400e+02 5.061700e+02
+3 13431     4.136000e+02 1.711500e+02
+6 13431     5.129399e+02 7.176900e+02
+9 13431     3.388300e+02 5.290100e+02
+2 13432     6.344000e+02 5.059700e+02
+3 13432     4.739301e+02 1.720100e+02
+2 13433     -1.105000e+02 5.033600e+02
+5 13433     6.275200e+02 8.895001e+01
+8 13433     -1.151001e+01 3.960100e+02
+11 13433     3.322500e+02 -6.415997e+01
+2 13434     7.228900e+02 5.024100e+02
+3 13434     5.543600e+02 1.695300e+02
+2 13435     2.804999e+01 5.013500e+02
+3 13435     -1.184000e+02 1.608500e+02
+11 13435     4.823500e+02 -5.103998e+01
+13 13435     4.972000e+02 3.876800e+02
+2 13436     6.699399e+02 4.973100e+02
+3 13436     5.070900e+02 1.643900e+02
+2 13437     -3.142100e+02 4.945100e+02
+3 13437     -4.390800e+02 1.586800e+02
+5 13437     4.022000e+02 6.701001e+01
+11 13437     1.305200e+02 -8.766998e+01
+13 13437     1.810500e+02 3.464200e+02
+2 13438     -7.440900e+02 4.928000e+02
+5 13438     -1.351001e+01 4.212000e+01
+13 13438     -1.606700e+02 3.076700e+02
+14 13438     -1.009300e+02 -5.553998e+01
+2 13439     -7.440900e+02 4.928000e+02
+13 13439     -1.606700e+02 3.076700e+02
+14 13439     -1.009300e+02 -5.553998e+01
+2 13440     -3.297200e+02 4.926300e+02
+3 13440     -4.546400e+02 1.582300e+02
+11 13440     1.158000e+02 -9.040002e+01
+13 13440     1.674301e+02 3.441000e+02
+14 13440     2.887600e+02 -2.812000e+01
+2 13441     -3.297200e+02 4.926300e+02
+8 13441     -1.929400e+02 3.815100e+02
+11 13441     1.158000e+02 -9.040002e+01
+14 13441     2.887600e+02 -2.812000e+01
+2 13442     9.165002e+01 4.920900e+02
+3 13442     -5.876001e+01 1.519200e+02
+8 13442     1.576200e+02 3.902300e+02
+2 13443     7.902002e+01 4.900200e+02
+11 13443     5.397500e+02 -5.565997e+01
+13 13443     5.472600e+02 3.828900e+02
+14 13443     7.443199e+02 6.859985e+00
+2 13444     -3.025300e+02 4.879400e+02
+5 13444     4.141200e+02 6.084998e+01
+14 13444     3.165000e+02 -3.041998e+01
+2 13445     9.563000e+01 4.869700e+02
+11 13445     5.590300e+02 -5.515997e+01
+13 13445     5.640000e+02 3.834300e+02
+2 13446     2.012900e+02 4.849300e+02
+3 13446     4.304999e+01 1.465900e+02
+8 13446     2.497500e+02 3.878500e+02
+2 13447     1.353998e+01 4.824800e+02
+5 13447     7.742500e+02 7.853003e+01
+6 13447     -1.130200e+02 8.584800e+02
+8 13447     9.217999e+01 3.811300e+02
+11 13447     4.665100e+02 -6.823999e+01
+2 13448     -8.159973e+00 4.812800e+02
+3 13448     -1.521300e+02 1.411400e+02
+5 13448     7.468700e+02 7.458002e+01
+6 13448     -1.409400e+02 8.506900e+02
+8 13448     7.382001e+01 3.792700e+02
+11 13448     4.422000e+02 -7.209003e+01
+13 13448     4.601000e+02 3.660900e+02
+14 13448     6.391300e+02 -1.104999e+01
+2 13449     4.574900e+02 4.813800e+02
+3 13449     3.085800e+02 1.443400e+02
+6 13449     3.819000e+02 7.024200e+02
+8 13449     4.376500e+02 3.654600e+02
+9 13449     2.442200e+02 5.039700e+02
+11 13449     7.090000e+02 -2.295200e+02
+2 13450     3.732000e+02 4.793700e+02
+3 13450     2.257800e+02 1.436900e+02
+6 13450     2.985300e+02 7.510100e+02
+8 13450     3.744500e+02 3.692700e+02
+9 13450     1.701600e+02 5.021000e+02
+13 13450     7.555500e+02 2.760100e+02
+2 13451     5.823199e+02 4.785300e+02
+6 13451     5.267600e+02 6.832900e+02
+2 13452     5.823199e+02 4.785300e+02
+6 13452     5.267600e+02 6.832900e+02
+2 13453     -6.976000e+02 4.751100e+02
+5 13453     2.609003e+01 2.956000e+01
+13 13453     -1.269900e+02 2.989800e+02
+14 13453     -6.182001e+01 -6.731000e+01
+2 13454     -3.099976e-01 4.742900e+02
+13 13454     4.677000e+02 3.608400e+02
+2 13455     -3.798999e+01 4.721600e+02
+6 13455     -1.784800e+02 8.335900e+02
+8 13455     4.971002e+01 3.720000e+02
+2 13456     -1.538500e+02 4.674700e+02
+3 13456     -2.887100e+02 1.302100e+02
+4 13456     1.174900e+02 -4.830300e+02
+6 13456     -3.250100e+02 8.001800e+02
+8 13456     -4.722998e+01 3.657700e+02
+11 13456     2.886100e+02 -9.540002e+01
+2 13457     5.160999e+01 4.655000e+02
+5 13457     8.200601e+02 6.566998e+01
+6 13457     -6.363000e+01 8.472500e+02
+8 13457     1.236000e+02 3.689600e+02
+2 13458     -1.033002e+01 4.600000e+02
+5 13458     7.426400e+02 5.428003e+01
+6 13458     -1.428000e+02 8.239500e+02
+8 13458     7.214001e+01 3.625500e+02
+11 13458     4.404000e+02 -8.850000e+01
+13 13458     4.567300e+02 3.492700e+02
+14 13458     6.358700e+02 -3.041998e+01
+2 13459     -4.706100e+02 4.588600e+02
+3 13459     -5.900700e+02 1.285800e+02
+5 13459     2.392300e+02 2.584003e+01
+11 13459     -1.371002e+01 -1.242800e+02
+14 13459     1.470000e+02 -6.731000e+01
+2 13460     -1.049600e+02 4.590800e+02
+5 13460     6.305699e+02 4.704999e+01
+6 13460     -2.629100e+02 8.016100e+02
+8 13460     -6.549988e+00 3.604300e+02
+13 13460     3.672200e+02 3.390500e+02
+14 13460     5.280900e+02 -3.996997e+01
+2 13461     -3.950100e+02 4.533200e+02
+4 13461     1.175500e+02 -3.154100e+02
+5 13461     3.148101e+02 2.428003e+01
+8 13461     -2.468200e+02 3.490400e+02
+2 13462     -2.569700e+02 4.503900e+02
+4 13462     1.118000e+02 -4.057600e+02
+5 13462     4.595500e+02 2.877002e+01
+6 13462     -4.531600e+02 7.560800e+02
+13 13462     2.292800e+02 3.173400e+02
+14 13462     3.619399e+02 -6.102002e+01
+2 13463     -1.052400e+02 4.497500e+02
+4 13463     1.074700e+02 -5.192400e+02
+5 13463     6.289500e+02 3.871997e+01
+8 13463     -7.049988e+00 3.539800e+02
+13 13463     3.658101e+02 3.314500e+02
+14 13463     5.265601e+02 -4.792999e+01
+2 13464     4.971997e+01 4.488500e+02
+3 13464     -9.762000e+01 1.116200e+02
+5 13464     8.161500e+02 4.759998e+01
+6 13464     -6.628003e+01 8.241400e+02
+13 13464     5.148900e+02 3.459600e+02
+14 13464     7.064100e+02 -3.590002e+01
+2 13465     4.971997e+01 4.488500e+02
+3 13465     -9.762000e+01 1.116200e+02
+13 13465     5.148900e+02 3.459600e+02
+2 13466     6.034998e+01 4.477900e+02
+13 13466     5.238700e+02 3.465200e+02
+2 13467     9.640997e+01 4.480100e+02
+6 13467     -6.640015e+00 8.357400e+02
+8 13467     1.607400e+02 3.564200e+02
+2 13468     -6.895000e+02 4.439000e+02
+5 13468     3.065002e+01 4.070007e+00
+11 13468     -1.974400e+02 -1.455500e+02
+13 13468     -1.214700e+02 2.776800e+02
+14 13468     -5.665002e+01 -9.246002e+01
+2 13469     -4.998999e+01 4.382800e+02
+4 13469     9.804999e+01 -5.630200e+02
+5 13469     6.928400e+02 2.997998e+01
+8 13469     3.938000e+01 3.444600e+02
+2 13470     -4.998999e+01 4.382800e+02
+5 13470     6.928400e+02 2.997998e+01
+2 13471     -1.782200e+02 4.375900e+02
+4 13471     1.020100e+02 -4.608300e+02
+5 13471     5.447400e+02 2.148999e+01
+6 13471     -3.536300e+02 7.581800e+02
+8 13471     -6.726001e+01 3.413700e+02
+11 13471     2.632300e+02 -1.208900e+02
+14 13471     4.446500e+02 -6.675000e+01
+2 13472     -1.782200e+02 4.375900e+02
+3 13472     -3.120600e+02 1.019400e+02
+4 13472     1.020100e+02 -4.608300e+02
+5 13472     5.447400e+02 2.148999e+01
+6 13472     -3.536300e+02 7.581800e+02
+9 13472     -3.105300e+02 4.507000e+02
+11 13472     2.632300e+02 -1.208900e+02
+14 13472     4.446500e+02 -6.675000e+01
+2 13473     -5.171200e+02 4.365900e+02
+13 13473     1.121002e+01 2.854200e+02
+14 13473     1.009400e+02 -8.963000e+01
+2 13474     -4.539001e+01 4.367100e+02
+4 13474     9.698999e+01 -5.664000e+02
+8 13474     4.337000e+01 3.440400e+02
+2 13475     1.680100e+02 4.365100e+02
+8 13475     2.211800e+02 3.460900e+02
+9 13475     -1.578998e+01 4.577400e+02
+2 13476     4.569700e+02 4.349200e+02
+6 13476     3.806900e+02 6.503400e+02
+9 13476     2.455699e+02 4.659100e+02
+11 13476     7.103800e+02 -2.709700e+02
+2 13477     -5.283002e+01 4.343000e+02
+5 13477     6.888600e+02 2.614001e+01
+6 13477     -1.955400e+02 7.825200e+02
+8 13477     3.683002e+01 3.412500e+02
+2 13478     4.132400e+02 4.346500e+02
+3 13478     2.650200e+02 1.026500e+02
+6 13478     3.428100e+02 6.925800e+02
+8 13478     4.066200e+02 3.335700e+02
+9 13478     2.057000e+02 4.658300e+02
+2 13479     -1.536100e+02 4.342500e+02
+6 13479     -3.227600e+02 7.600800e+02
+8 13479     -4.707001e+01 3.400200e+02
+2 13480     2.842500e+02 4.335600e+02
+6 13480     1.940700e+02 7.075700e+02
+9 13480     9.464001e+01 4.597800e+02
+13 13480     6.733300e+02 2.524900e+02
+2 13481     -2.672500e+02 4.321600e+02
+3 13481     -3.960000e+02 9.696997e+01
+4 13481     1.030800e+02 -3.966700e+02
+5 13481     4.469800e+02 1.223999e+01
+6 13481     -4.644200e+02 7.314400e+02
+14 13481     3.498800e+02 -7.697998e+01
+2 13482     -7.174800e+02 4.278600e+02
+5 13482     3.690002e+00 -1.062000e+01
+2 13483     -5.988500e+02 4.270700e+02
+13 13483     -5.342999e+01 2.723300e+02
+14 13483     2.352002e+01 -1.023600e+02
+2 13484     -5.239700e+02 4.261200e+02
+11 13484     -6.214001e+01 -1.508000e+02
+2 13485     -6.549988e+00 4.257700e+02
+5 13485     7.436400e+02 2.075000e+01
+6 13485     -1.372300e+02 7.827000e+02
+9 13485     -1.634500e+02 4.434900e+02
+14 13485     6.375400e+02 -6.537000e+01
+2 13486     -4.569000e+01 4.256200e+02
+4 13486     9.032001e+01 -5.643600e+02
+5 13486     6.963600e+02 1.769000e+01
+6 13486     -1.862900e+02 7.737800e+02
+13 13486     4.202700e+02 3.170000e+02
+14 13486     5.928800e+02 -6.721997e+01
+2 13487     -6.914000e+02 4.251000e+02
+5 13487     2.696002e+01 -1.191998e+01
+2 13488     -5.307000e+02 4.245400e+02
+11 13488     -6.756000e+01 -1.522200e+02
+2 13489     3.859985e+00 4.239000e+02
+5 13489     7.561400e+02 1.867999e+01
+6 13489     -1.235600e+02 7.824300e+02
+8 13489     8.414001e+01 3.340400e+02
+9 13489     -1.542100e+02 4.432900e+02
+11 13489     4.552700e+02 -1.172900e+02
+2 13490     -1.051900e+02 4.233500e+02
+3 13490     -2.432600e+02 8.626001e+01
+4 13490     9.113000e+01 -5.153400e+02
+5 13490     6.264900e+02 1.141998e+01
+6 13490     -2.610700e+02 7.567200e+02
+8 13490     -6.789978e+00 3.314500e+02
+13 13490     3.643700e+02 3.093800e+02
+14 13490     5.252600e+02 -7.485999e+01
+2 13491     -7.303003e+01 4.227800e+02
+11 13491     3.724700e+02 -1.249500e+02
+13 13491     3.941200e+02 3.126900e+02
+14 13491     5.611899e+02 -7.165997e+01
+2 13492     -3.641300e+02 4.214400e+02
+3 13492     -4.887100e+02 8.909998e+01
+4 13492     1.002100e+02 -3.315400e+02
+5 13492     3.439399e+02 -3.590027e+00
+6 13492     -5.837400e+02 6.966400e+02
+11 13492     8.226001e+01 -1.472900e+02
+14 13492     2.497600e+02 -9.428998e+01
+2 13493     3.236600e+02 4.198900e+02
+6 13493     2.386200e+02 6.858700e+02
+8 13493     3.333900e+02 3.216200e+02
+9 13493     1.282900e+02 4.490200e+02
+2 13494     5.483002e+01 4.186800e+02
+6 13494     -5.926001e+01 7.869600e+02
+8 13494     1.258700e+02 3.307100e+02
+9 13494     -1.105200e+02 4.403400e+02
+2 13495     2.001400e+02 4.187100e+02
+3 13495     4.250000e+01 8.294000e+01
+8 13495     2.480000e+02 3.336800e+02
+9 13495     1.207001e+01 4.444100e+02
+2 13496     -5.796500e+02 4.142600e+02
+3 13496     -6.997600e+02 8.585999e+01
+11 13496     -1.096800e+02 -1.618700e+02
+14 13496     3.966998e+01 -1.117900e+02
+2 13497     2.912300e+02 4.134700e+02
+8 13497     3.072100e+02 3.179400e+02
+9 13497     1.007000e+02 4.426800e+02
+2 13498     3.506400e+02 4.124800e+02
+3 13498     2.052600e+02 8.014001e+01
+8 13498     3.553600e+02 3.153900e+02
+2 13499     -6.623999e+01 4.114000e+02
+3 13499     -2.067200e+02 7.529999e+01
+4 13499     8.392999e+01 -5.457700e+02
+5 13499     6.709000e+02 3.950012e+00
+6 13499     -2.113400e+02 7.525900e+02
+8 13499     2.565997e+01 3.230300e+02
+9 13499     -2.133800e+02 4.307000e+02
+11 13499     3.796899e+02 -1.312100e+02
+13 13499     3.998700e+02 3.042400e+02
+14 13499     5.683600e+02 -8.178003e+01
+2 13500     -8.563000e+01 4.107600e+02
+4 13500     8.353003e+01 -5.296100e+02
+5 13500     6.481500e+02 1.140015e+00
+8 13500     9.830017e+00 3.225100e+02
+2 13501     4.487000e+01 4.111100e+02
+5 13501     8.060200e+02 1.031000e+01
+6 13501     -7.096002e+01 7.790700e+02
+8 13501     1.184700e+02 3.260900e+02
+2 13502     3.999100e+02 4.104900e+02
+3 13502     2.527500e+02 7.881000e+01
+6 13502     3.263400e+02 6.645800e+02
+8 13502     3.954600e+02 3.131500e+02
+9 13502     1.947900e+02 4.429500e+02
+13 13502     7.703199e+02 2.115600e+02
+2 13503     1.025900e+02 4.102400e+02
+13 13503     5.642800e+02 3.182200e+02
+2 13504     -5.641100e+02 4.084800e+02
+5 13504     1.434500e+02 -2.182001e+01
+8 13504     -3.852000e+02 3.098400e+02
+2 13505     1.472998e+01 4.081300e+02
+3 13505     -1.305500e+02 7.235999e+01
+9 13505     -1.444200e+02 4.295200e+02
+13 13505     4.768800e+02 3.083800e+02
+2 13506     -5.819800e+02 4.040600e+02
+3 13506     -7.026600e+02 7.659998e+01
+5 13506     1.260800e+02 -2.664001e+01
+8 13506     -3.994600e+02 3.059600e+02
+12 13506     -6.580200e+02 6.173500e+02
+13 13506     -4.120001e+01 2.570700e+02
+14 13506     3.714001e+01 -1.207900e+02
+2 13507     -5.819800e+02 4.040600e+02
+8 13507     -3.994600e+02 3.059600e+02
+2 13508     -2.755100e+02 4.022300e+02
+4 13508     8.731000e+01 -3.870800e+02
+5 13508     4.350500e+02 -1.665997e+01
+6 13508     -4.717700e+02 6.934500e+02
+8 13508     -1.478900e+02 3.119900e+02
+2 13509     -3.334600e+02 3.981000e+02
+3 13509     -4.601000e+02 6.439001e+01
+11 13509     1.096600e+02 -1.612400e+02
+2 13510     -7.025400e+02 3.974200e+02
+5 13510     1.423999e+01 -3.596997e+01
+11 13510     -2.099300e+02 -1.778700e+02
+13 13510     -1.326400e+02 2.439000e+02
+14 13510     -7.231000e+01 -1.317000e+02
+2 13511     -5.472200e+02 3.976000e+02
+5 13511     1.588400e+02 -3.104999e+01
+11 13511     -8.247998e+01 -1.716500e+02
+12 13511     -6.161100e+02 6.159700e+02
+14 13511     6.929999e+01 -1.248000e+02
+2 13512     -5.472200e+02 3.976000e+02
+11 13512     -8.247998e+01 -1.716500e+02
+12 13512     -6.161100e+02 6.159700e+02
+2 13513     1.184300e+02 3.975200e+02
+9 13513     -5.642999e+01 4.232500e+02
+13 13513     5.792700e+02 3.094000e+02
+14 13513     7.873199e+02 -8.078003e+01
+2 13514     5.500000e+01 3.966200e+02
+6 13514     -5.802002e+01 7.605300e+02
+8 13514     1.267200e+02 3.130200e+02
+9 13514     -1.099700e+02 4.203200e+02
+11 13514     5.112200e+02 -1.357000e+02
+13 13514     5.153000e+02 3.021300e+02
+14 13514     7.094200e+02 -8.758002e+01
+2 13515     -1.493200e+02 3.957900e+02
+5 13515     5.731300e+02 -1.809998e+01
+6 13515     -3.140900e+02 7.124900e+02
+9 13515     -2.839000e+02 4.144900e+02
+13 13515     3.217300e+02 2.839200e+02
+14 13515     4.740699e+02 -1.036000e+02
+2 13516     -4.732700e+02 3.953000e+02
+4 13516     9.225000e+01 -2.625700e+02
+11 13516     -1.759998e+01 -1.703000e+02
+2 13517     -1.277300e+02 3.943800e+02
+4 13517     7.588000e+01 -4.934200e+02
+5 13517     5.976801e+02 -1.790002e+01
+6 13517     -2.874500e+02 7.162600e+02
+8 13517     -2.535999e+01 3.078200e+02
+9 13517     -2.654000e+02 4.137200e+02
+11 13517     3.143000e+02 -1.512600e+02
+13 13517     3.417400e+02 2.847200e+02
+14 13517     4.979500e+02 -1.031400e+02
+2 13518     -7.636100e+02 3.927700e+02
+4 13518     1.025200e+02 -1.102200e+02
+5 13518     -4.037000e+01 -4.146002e+01
+2 13519     -1.416800e+02 3.933300e+02
+4 13519     7.540997e+01 -4.822600e+02
+6 13519     -3.050400e+02 7.108600e+02
+9 13519     -2.772000e+02 4.123900e+02
+11 13519     2.996100e+02 -1.536500e+02
+13 13519     3.288101e+02 2.824900e+02
+14 13519     4.824100e+02 -1.056700e+02
+2 13520     -4.224900e+02 3.921700e+02
+5 13520     2.814200e+02 -3.245001e+01
+11 13520     2.776001e+01 -1.705400e+02
+2 13521     7.000000e+00 3.911400e+02
+3 13521     -1.383000e+02 5.526001e+01
+13 13521     4.677400e+02 2.934600e+02
+2 13522     7.000000e+00 3.911400e+02
+13 13522     4.677400e+02 2.934600e+02
+2 13523     -5.940100e+02 3.882900e+02
+12 13523     -6.696600e+02 5.992200e+02
+14 13523     2.500000e+01 -1.342200e+02
+2 13524     6.045001e+01 3.875400e+02
+6 13524     -5.123999e+01 7.501900e+02
+9 13524     -1.048500e+02 4.129300e+02
+2 13525     -7.484400e+02 3.846400e+02
+8 13525     -5.351000e+02 2.870600e+02
+2 13526     6.299399e+02 3.845300e+02
+3 13526     4.760000e+02 6.046002e+01
+8 13526     5.816400e+02 2.840800e+02
+9 13526     3.933600e+02 4.273600e+02
+12 13526     6.536700e+02 5.809600e+02
+2 13527     4.623999e+01 3.830600e+02
+6 13527     -6.896997e+01 7.434100e+02
+8 13527     1.195600e+02 3.026500e+02
+9 13527     -1.169900e+02 4.090000e+02
+2 13528     4.623999e+01 3.830600e+02
+5 13528     8.041899e+02 -1.882001e+01
+6 13528     -6.896997e+01 7.434100e+02
+8 13528     1.195600e+02 3.026500e+02
+9 13528     -1.169900e+02 4.090000e+02
+11 13528     5.009500e+02 -1.474200e+02
+13 13528     5.055400e+02 2.906900e+02
+14 13528     6.978500e+02 -1.009800e+02
+2 13529     5.649200e+02 3.810000e+02
+3 13529     4.147100e+02 5.584003e+01
+6 13529     4.998000e+02 5.719300e+02
+7 13529     5.158900e+02 5.498700e+02
+8 13529     5.268700e+02 2.822700e+02
+9 13529     3.380800e+02 4.224000e+02
+12 13529     5.801700e+02 5.820200e+02
+2 13530     -3.870300e+02 3.787900e+02
+8 13530     -2.394900e+02 2.903400e+02
+11 13530     5.873999e+01 -1.796700e+02
+12 13530     -4.265600e+02 6.191000e+02
+2 13531     1.416100e+02 3.787500e+02
+6 13531     5.204999e+01 7.581900e+02
+13 13531     6.010800e+02 2.953700e+02
+2 13532     4.805000e+02 3.775800e+02
+6 13532     4.043200e+02 5.806100e+02
+12 13532     4.882000e+02 5.874600e+02
+2 13533     -3.811700e+02 3.757900e+02
+5 13533     3.221600e+02 -4.604999e+01
+8 13533     -2.344600e+02 2.880300e+02
+11 13533     6.471997e+01 -1.811300e+02
+12 13533     -4.196300e+02 6.171900e+02
+13 13533     1.191900e+02 2.499400e+02
+14 13533     2.290900e+02 -1.363500e+02
+2 13534     -5.921600e+02 3.750600e+02
+8 13534     -4.076000e+02 2.833500e+02
+11 13534     -1.211600e+02 -1.893200e+02
+12 13534     -6.656600e+02 5.854500e+02
+2 13535     1.201900e+02 3.744200e+02
+6 13535     2.647998e+01 7.477900e+02
+8 13535     1.815600e+02 2.968700e+02
+9 13535     -5.354999e+01 4.032800e+02
+13 13535     5.792500e+02 2.898700e+02
+14 13535     7.889800e+02 -1.040400e+02
+2 13536     -2.941300e+02 3.731900e+02
+4 13536     7.290002e+01 -3.714300e+02
+5 13536     4.127500e+02 -4.563000e+01
+11 13536     1.472500e+02 -1.782400e+02
+14 13536     3.180601e+02 -1.339000e+02
+2 13537     -2.941300e+02 3.731900e+02
+5 13537     4.127500e+02 -4.563000e+01
+6 13537     -4.923300e+02 6.544300e+02
+13 13537     1.929500e+02 2.550100e+02
+14 13537     3.180601e+02 -1.339000e+02
+2 13538     3.888700e+02 3.728400e+02
+3 13538     2.431899e+02 4.354999e+01
+6 13538     3.119400e+02 6.210000e+02
+8 13538     3.858500e+02 2.818200e+02
+9 13538     1.856700e+02 4.095600e+02
+13 13538     7.561899e+02 1.814500e+02
+2 13539     -5.704400e+02 3.725300e+02
+5 13539     1.344000e+02 -5.377002e+01
+8 13539     -3.898000e+02 2.816900e+02
+13 13539     -3.298999e+01 2.350700e+02
+14 13539     4.591998e+01 -1.472400e+02
+2 13540     -5.704400e+02 3.725300e+02
+8 13540     -3.898000e+02 2.816900e+02
+13 13540     -3.298999e+01 2.350700e+02
+14 13540     4.591998e+01 -1.472400e+02
+2 13541     4.332600e+02 3.721500e+02
+3 13541     2.899100e+02 4.479999e+01
+6 13541     3.506000e+02 5.813200e+02
+8 13541     4.178600e+02 2.777400e+02
+9 13541     2.262700e+02 4.120000e+02
+12 13541     4.367900e+02 5.860600e+02
+2 13542     4.332600e+02 3.721500e+02
+3 13542     2.899100e+02 4.479999e+01
+6 13542     3.506000e+02 5.813200e+02
+8 13542     4.178600e+02 2.777400e+02
+9 13542     2.262700e+02 4.120000e+02
+12 13542     4.367900e+02 5.860600e+02
+2 13543     -8.919000e+01 3.714100e+02
+3 13543     -2.279900e+02 3.685999e+01
+8 13543     6.450012e+00 2.908200e+02
+2 13544     -2.123600e+02 3.708100e+02
+4 13544     6.709003e+01 -4.270900e+02
+5 13544     5.008600e+02 -4.415002e+01
+8 13544     -9.531000e+01 2.871300e+02
+9 13544     -3.363000e+02 3.903700e+02
+2 13545     -2.189300e+02 3.695500e+02
+4 13545     6.696997e+01 -4.222800e+02
+8 13545     -1.009400e+02 2.866500e+02
+9 13545     -3.422200e+02 3.887900e+02
+11 13545     2.210800e+02 -1.769800e+02
+13 13545     2.582400e+02 2.577500e+02
+2 13546     -2.315700e+02 3.673900e+02
+3 13546     -3.630900e+02 3.363000e+01
+5 13546     4.790500e+02 -4.792999e+01
+6 13546     -4.147100e+02 6.610500e+02
+8 13546     -1.111000e+02 2.840900e+02
+9 13546     -3.530400e+02 3.868300e+02
+13 13546     2.470100e+02 2.552500e+02
+14 13546     3.833900e+02 -1.350900e+02
+2 13547     -6.561700e+02 3.671500e+02
+5 13547     5.345001e+01 -6.057001e+01
+8 13547     -4.594600e+02 2.750100e+02
+11 13547     -1.735300e+02 -1.971300e+02
+14 13547     -3.354999e+01 -1.553200e+02
+2 13548     -2.378700e+02 3.663500e+02
+4 13548     6.622998e+01 -4.085200e+02
+5 13548     4.721000e+02 -4.952002e+01
+6 13548     -4.223100e+02 6.577900e+02
+8 13548     -1.164600e+02 2.835300e+02
+13 13548     2.414600e+02 2.538500e+02
+14 13548     3.766100e+02 -1.365200e+02
+2 13549     -2.378700e+02 3.663500e+02
+5 13549     4.721000e+02 -4.952002e+01
+8 13549     -1.164600e+02 2.835300e+02
+9 13549     -3.583100e+02 3.857300e+02
+13 13549     2.414600e+02 2.538500e+02
+2 13550     -2.454800e+02 3.655400e+02
+3 13550     -3.764200e+02 3.209003e+01
+4 13550     6.619000e+01 -4.032600e+02
+5 13550     4.641801e+02 -5.039001e+01
+6 13550     -4.317000e+02 6.552100e+02
+8 13550     -1.229200e+02 2.824500e+02
+11 13550     1.944500e+02 -1.816000e+02
+13 13550     2.348300e+02 2.526300e+02
+14 13550     3.686899e+02 -1.378200e+02
+2 13551     -2.454800e+02 3.655400e+02
+4 13551     6.619000e+01 -4.032600e+02
+5 13551     4.641801e+02 -5.039001e+01
+6 13551     -4.317000e+02 6.552100e+02
+8 13551     -1.229200e+02 2.824500e+02
+11 13551     1.944500e+02 -1.816000e+02
+13 13551     2.348300e+02 2.526300e+02
+14 13551     3.686899e+02 -1.378200e+02
+2 13552     -5.105900e+02 3.636100e+02
+3 13552     -6.320700e+02 3.423999e+01
+8 13552     -3.408800e+02 2.773900e+02
+11 13552     -5.416998e+01 -1.951300e+02
+12 13552     -5.706400e+02 5.874900e+02
+14 13552     1.010700e+02 -1.534900e+02
+2 13553     -7.337200e+02 3.624400e+02
+5 13553     -1.681000e+01 -6.582001e+01
+8 13553     -5.226300e+02 2.699100e+02
+11 13553     -2.355300e+02 -2.019800e+02
+14 13553     -1.023500e+02 -1.613300e+02
+2 13554     -2.354900e+02 3.588700e+02
+4 13554     6.185999e+01 -4.097300e+02
+5 13554     4.746899e+02 -5.681000e+01
+6 13554     -4.179800e+02 6.486600e+02
+8 13554     -1.139300e+02 2.770900e+02
+9 13554     -3.554800e+02 3.787300e+02
+12 13554     -2.451800e+02 6.204800e+02
+2 13555     4.012000e+01 3.584500e+02
+3 13555     -1.068000e+02 2.346002e+01
+5 13555     7.934200e+02 -4.542999e+01
+6 13555     -7.640002e+01 7.097400e+02
+8 13555     1.141900e+02 2.823900e+02
+9 13555     -1.212500e+02 3.867200e+02
+11 13555     4.940300e+02 -1.685300e+02
+13 13555     4.972800e+02 2.693800e+02
+14 13555     6.886600e+02 -1.263800e+02
+2 13556     2.897998e+01 3.568600e+02
+5 13556     7.785900e+02 -4.834998e+01
+6 13556     -9.150000e+01 7.043600e+02
+9 13556     -1.314500e+02 3.843000e+02
+11 13556     4.801700e+02 -1.716900e+02
+2 13557     -5.323999e+01 3.482000e+02
+13 13557     4.077700e+02 2.535600e+02
+2 13558     -5.323999e+01 3.482000e+02
+11 13558     3.917500e+02 -1.834500e+02
+13 13558     4.077700e+02 2.535600e+02
+2 13559     7.981000e+01 3.473700e+02
+6 13559     -2.410999e+01 7.053600e+02
+8 13559     1.477300e+02 2.741100e+02
+9 13559     -8.653003e+01 3.782900e+02
+11 13559     5.403800e+02 -1.749200e+02
+13 13559     5.368199e+02 2.633900e+02
+14 13559     7.380200e+02 -1.346000e+02
+2 13560     1.173500e+02 3.446700e+02
+3 13560     -3.437000e+01 1.007001e+01
+6 13560     2.158002e+01 7.115100e+02
+8 13560     1.784800e+02 2.730500e+02
+9 13560     -5.534003e+01 3.774300e+02
+13 13560     5.729200e+02 2.645400e+02
+14 13560     7.823800e+02 -1.342000e+02
+2 13561     1.173500e+02 3.446700e+02
+3 13561     -3.437000e+01 1.007001e+01
+6 13561     2.158002e+01 7.115100e+02
+8 13561     1.784800e+02 2.730500e+02
+9 13561     -5.534003e+01 3.774300e+02
+13 13561     5.729200e+02 2.645400e+02
+14 13561     7.823800e+02 -1.342000e+02
+2 13562     1.217500e+02 3.431300e+02
+6 13562     2.753003e+01 7.104000e+02
+8 13562     1.820700e+02 2.717600e+02
+9 13562     -5.135999e+01 3.761400e+02
+13 13562     5.769700e+02 2.632800e+02
+14 13562     7.877400e+02 -1.356200e+02
+2 13563     -7.446997e+01 3.414200e+02
+3 13563     -2.149400e+02 7.460022e+00
+4 13563     4.390997e+01 -5.275400e+02
+6 13563     -2.191200e+02 6.649400e+02
+9 13563     -2.182800e+02 3.691000e+02
+13 13563     3.876400e+02 2.470200e+02
+14 13563     5.545300e+02 -1.497400e+02
+2 13564     1.136200e+02 3.411300e+02
+6 13564     1.684998e+01 7.062200e+02
+8 13564     1.759200e+02 2.700100e+02
+9 13564     -5.885999e+01 3.740200e+02
+2 13565     -4.369800e+02 3.381300e+02
+11 13565     1.263000e+01 -2.108000e+02
+2 13566     -7.082900e+02 3.355000e+02
+13 13566     -1.379200e+02 2.006400e+02
+2 13567     5.774600e+02 3.350900e+02
+3 13567     4.287000e+02 1.313000e+01
+7 13567     5.221801e+02 5.010300e+02
+10 13567     7.175900e+02 5.866200e+02
+2 13568     4.875500e+02 3.285200e+02
+3 13568     3.437900e+02 5.320007e+00
+8 13568     4.623700e+02 2.408300e+02
+10 13568     6.191600e+02 6.112900e+02
+12 13568     4.939100e+02 5.307300e+02
+13 13568     8.158900e+02 1.006600e+02
+2 13569     8.600000e+01 3.273300e+02
+6 13569     -1.771997e+01 6.825300e+02
+8 13569     1.524600e+02 2.583600e+02
+9 13569     -8.134003e+01 3.609500e+02
+11 13569     5.452300e+02 -1.911200e+02
+13 13569     5.398000e+02 2.477100e+02
+14 13569     7.425400e+02 -1.534900e+02
+2 13570     6.638000e+01 3.218400e+02
+5 13570     8.227500e+02 -8.009003e+01
+6 13570     -4.253998e+01 6.722200e+02
+8 13570     1.361800e+02 2.535700e+02
+2 13571     5.076001e+01 3.185900e+02
+8 13571     1.228700e+02 2.513500e+02
+13 13571     5.046500e+02 2.375500e+02
+14 13571     6.992300e+02 -1.647400e+02
+2 13572     3.504999e+01 3.154400e+02
+5 13572     7.831200e+02 -8.877002e+01
+9 13572     -1.237800e+02 3.491100e+02
+2 13573     3.951000e+02 3.116200e+02
+3 13573     2.504900e+02 -1.392999e+01
+6 13573     3.167400e+02 5.496200e+02
+8 13573     3.903600e+02 2.322100e+02
+9 13573     1.928101e+02 3.582900e+02
+13 13573     7.545300e+02 1.287700e+02
+2 13574     6.313101e+02 3.032600e+02
+3 13574     4.813400e+02 -1.300000e+01
+7 13574     5.661801e+02 4.580100e+02
+2 13575     -1.362700e+02 3.024800e+02
+11 13575     3.024200e+02 -2.244700e+02
+14 13575     4.812500e+02 -1.908800e+02
+2 13576     1.140900e+02 3.009200e+02
+6 13576     1.698999e+01 6.571500e+02
+8 13576     1.757500e+02 2.378500e+02
+9 13576     -5.804999e+01 3.389300e+02
+12 13576     1.767100e+02 6.083600e+02
+13 13576     5.657800e+02 2.281700e+02
+14 13576     7.756899e+02 -1.780600e+02
+2 13577     5.646500e+02 3.009500e+02
+7 13577     5.060900e+02 4.703100e+02
+9 13577     3.396200e+02 3.549700e+02
+10 13577     6.948199e+02 5.497800e+02
+2 13578     3.092500e+02 2.929100e+02
+8 13578     3.209200e+02 2.192200e+02
+9 13578     1.192500e+02 3.392400e+02
+12 13578     3.253400e+02 5.306700e+02
+2 13579     -3.919500e+02 2.914700e+02
+3 13579     -5.187700e+02 -3.922998e+01
+5 13579     3.033900e+02 -1.220400e+02
+11 13579     5.312000e+01 -2.431600e+02
+2 13580     3.548800e+02 2.870500e+02
+3 13580     2.120200e+02 -3.889001e+01
+6 13580     2.700900e+02 5.268400e+02
+8 13580     3.573500e+02 2.133900e+02
+9 13580     1.584500e+02 3.360800e+02
+12 13580     3.728800e+02 5.199700e+02
+2 13581     4.247100e+02 2.836200e+02
+6 13581     3.375200e+02 4.815800e+02
+7 13581     3.803400e+02 4.838000e+02
+9 13581     2.208600e+02 3.355600e+02
+13 13581     7.562800e+02 7.601001e+01
+2 13582     3.451500e+02 2.824200e+02
+8 13582     3.497300e+02 2.096300e+02
+9 13582     1.505000e+02 3.313700e+02
+2 13583     -2.427500e+02 2.818400e+02
+3 13583     -3.749200e+02 -5.163000e+01
+6 13583     -4.209100e+02 5.559900e+02
+8 13583     -1.197100e+02 2.159700e+02
+9 13583     -3.580100e+02 3.105700e+02
+11 13583     1.941600e+02 -2.461500e+02
+12 13583     -2.495000e+02 5.383000e+02
+13 13583     2.328199e+02 1.885000e+02
+14 13583     3.659800e+02 -2.150700e+02
+2 13584     -2.711500e+02 2.729500e+02
+3 13584     -4.021100e+02 -5.917999e+01
+5 13584     4.271200e+02 -1.362000e+02
+8 13584     -1.435400e+02 2.100700e+02
+13 13584     2.077800e+02 1.814100e+02
+14 13584     3.347800e+02 -2.222300e+02
+2 13585     -1.516100e+02 2.729700e+02
+3 13585     -2.864300e+02 -5.944000e+01
+8 13585     -4.638000e+01 2.100600e+02
+9 13585     -2.792700e+02 3.064800e+02
+2 13586     -5.867500e+02 2.721900e+02
+7 13586     -5.322300e+02 5.465900e+02
+2 13587     -2.537000e+02 2.709600e+02
+6 13587     -4.342100e+02 5.415000e+02
+2 13588     3.650400e+02 2.704000e+02
+3 13588     2.226200e+02 -5.479999e+01
+6 13588     2.810400e+02 5.066800e+02
+7 13588     3.573600e+02 5.091100e+02
+9 13588     1.681700e+02 3.217700e+02
+12 13588     3.835800e+02 5.003300e+02
+13 13588     7.242500e+02 1.004700e+02
+2 13589     -1.448400e+02 2.640600e+02
+8 13589     -4.085999e+01 2.031300e+02
+9 13589     -2.721600e+02 2.992200e+02
+2 13590     -2.387300e+02 2.636900e+02
+13 13590     2.356400e+02 1.759200e+02
+14 13590     3.691700e+02 -2.304200e+02
+2 13591     -1.581700e+02 2.605500e+02
+3 13591     -2.930500e+02 -7.227002e+01
+8 13591     -5.165997e+01 2.008500e+02
+9 13591     -2.845800e+02 2.956400e+02
+2 13592     3.584301e+02 2.525300e+02
+7 13592     3.499200e+02 4.933100e+02
+9 13592     1.625100e+02 3.063200e+02
+2 13593     6.152200e+02 2.522200e+02
+3 13593     4.684800e+02 -6.277002e+01
+6 13593     5.491300e+02 4.202400e+02
+8 13593     5.670100e+02 1.752800e+02
+9 13593     3.835100e+02 3.148000e+02
+2 13594     4.504301e+02 2.499000e+02
+6 13594     3.642900e+02 4.412300e+02
+7 13594     4.002500e+02 4.454400e+02
+8 13594     4.315601e+02 1.777500e+02
+9 13594     2.433600e+02 3.079600e+02
+10 13594     5.643600e+02 5.319200e+02
+2 13595     4.491100e+02 2.457600e+02
+6 13595     3.620900e+02 4.365200e+02
+2 13596     -3.739700e+02 2.396300e+02
+12 13596     -3.988100e+02 4.755800e+02
+2 13597     2.948700e+02 2.339300e+02
+9 13597     1.088000e+02 2.877800e+02
+12 13597     3.100699e+02 4.677800e+02
+13 13597     6.612800e+02 8.444000e+01
+2 13598     5.636000e+02 2.329900e+02
+6 13598     4.903101e+02 4.065100e+02
+9 13598     3.405601e+02 2.973200e+02
+2 13599     5.636000e+02 2.329900e+02
+6 13599     4.903101e+02 4.065100e+02
+8 13599     5.236899e+02 1.608600e+02
+12 13599     5.716700e+02 4.162400e+02
+2 13600     5.767700e+02 2.302500e+02
+7 13600     5.084500e+02 3.998700e+02
+9 13600     3.508800e+02 2.948200e+02
+10 13600     6.899399e+02 4.617300e+02
+2 13601     -4.492500e+02 2.276400e+02
+11 13601     -1.500000e+00 -2.909600e+02
+2 13602     -6.855800e+02 2.263900e+02
+5 13602     1.377002e+01 -1.788700e+02
+8 13602     -4.828200e+02 1.639200e+02
+11 13602     -2.029100e+02 -2.930100e+02
+12 13602     -7.519000e+02 4.180700e+02
+14 13602     -7.003998e+01 -2.718600e+02
+2 13603     4.377002e+01 2.241500e+02
+14 13603     6.844600e+02 -2.574400e+02
+2 13604     4.398800e+02 2.242200e+02
+3 13604     3.010900e+02 -9.576001e+01
+6 13604     3.524400e+02 4.141600e+02
+7 13604     3.882200e+02 4.251500e+02
+9 13604     2.354301e+02 2.859500e+02
+10 13604     5.499000e+02 5.060500e+02
+13 13604     7.624100e+02 2.459998e+01
+15 13604     7.377200e+02 5.778600e+02
+2 13605     -1.598500e+02 2.232100e+02
+3 13605     -2.963800e+02 -1.108700e+02
+5 13605     5.431600e+02 -1.840100e+02
+6 13605     -3.171500e+02 5.057000e+02
+8 13605     -5.173999e+01 1.709600e+02
+13 13605     3.021300e+02 1.490500e+02
+14 13605     4.510100e+02 -2.658700e+02
+2 13606     6.363101e+02 2.173600e+02
+3 13606     4.904000e+02 -9.508002e+01
+6 13606     5.707200e+02 3.793100e+02
+9 13606     4.019900e+02 2.863100e+02
+2 13607     7.279800e+02 2.152100e+02
+7 13607     6.425601e+02 3.496700e+02
+9 13607     4.782900e+02 2.871900e+02
+2 13608     -5.931100e+02 2.118200e+02
+5 13608     9.835999e+01 -1.925300e+02
+8 13608     -4.070800e+02 1.541300e+02
+2 13609     6.373900e+02 2.073100e+02
+3 13609     4.921100e+02 -1.049000e+02
+6 13609     5.707700e+02 3.659800e+02
+8 13609     5.852200e+02 1.375500e+02
+2 13610     -1.902300e+02 2.050500e+02
+4 13610     -2.142999e+01 -4.214600e+02
+5 13610     5.080400e+02 -1.997200e+02
+6 13610     -3.530600e+02 4.800100e+02
+7 13610     -1.185500e+02 5.289400e+02
+8 13610     -7.637000e+01 1.563300e+02
+12 13610     -1.830700e+02 4.662000e+02
+13 13610     2.735200e+02 1.340500e+02
+14 13610     4.164100e+02 -2.829800e+02
+2 13611     6.234000e+02 2.029900e+02
+3 13611     4.783900e+02 -1.097500e+02
+8 13611     5.729000e+02 1.344500e+02
+9 13611     3.912400e+02 2.737000e+02
+12 13611     6.348400e+02 3.753700e+02
+2 13612     6.540500e+02 2.006900e+02
+3 13612     5.081801e+02 -1.108200e+02
+8 13612     5.990699e+02 1.316100e+02
+9 13612     4.172000e+02 2.728500e+02
+2 13613     -7.096100e+02 1.991600e+02
+11 13613     -2.225500e+02 -3.110400e+02
+2 13614     3.266000e+02 1.969500e+02
+7 13614     3.187900e+02 4.475600e+02
+13 13614     6.840200e+02 4.817999e+01
+2 13615     -5.216100e+02 1.965200e+02
+12 13615     -5.629200e+02 4.118400e+02
+2 13616     -5.216100e+02 1.965200e+02
+8 13616     -3.478000e+02 1.439500e+02
+11 13616     -6.595001e+01 -3.110900e+02
+12 13616     -5.629200e+02 4.118400e+02
+2 13617     6.217400e+02 1.953900e+02
+8 13617     5.718500e+02 1.277700e+02
+9 13617     3.902500e+02 2.669600e+02
+10 13617     7.289301e+02 4.057900e+02
+12 13617     6.324301e+02 3.672900e+02
+2 13618     4.216300e+02 1.876000e+02
+3 13618     2.857700e+02 -1.326000e+02
+8 13618     4.080100e+02 1.263900e+02
+9 13618     2.218400e+02 2.526600e+02
+12 13618     4.214700e+02 3.823400e+02
+2 13619     -6.125700e+02 1.855400e+02
+14 13619     -7.580017e+00 -3.060600e+02
+2 13620     -9.950000e+01 1.857700e+02
+7 13620     -2.215997e+01 5.199000e+02
+8 13620     -1.729980e+00 1.425900e+02
+11 13620     3.374900e+02 -3.159000e+02
+2 13621     6.787000e+02 1.822500e+02
+10 13621     7.867400e+02 3.685200e+02
+2 13622     -3.075300e+02 1.767000e+02
+7 13622     -2.394700e+02 4.911300e+02
+2 13623     8.189900e+02 1.748000e+02
+3 13623     6.655000e+02 -1.294400e+02
+7 13623     7.195900e+02 2.894400e+02
+9 13623     5.539900e+02 2.558700e+02
+2 13624     6.970300e+02 1.725300e+02
+3 13624     5.507200e+02 -1.358500e+02
+9 13624     4.536100e+02 2.505000e+02
+2 13625     6.297700e+02 1.696000e+02
+3 13625     4.865000e+02 -1.412500e+02
+6 13625     5.605601e+02 3.276700e+02
+8 13625     5.781100e+02 1.063800e+02
+9 13625     3.972800e+02 2.457600e+02
+12 13625     6.400000e+02 3.379000e+02
+2 13626     1.844100e+02 1.619400e+02
+3 13626     8.031000e+01 -1.568700e+02
+2 13627     5.037300e+02 1.608900e+02
+6 13627     4.210800e+02 3.341800e+02
+9 13627     2.910400e+02 2.341100e+02
+12 13627     5.056700e+02 3.432500e+02
+2 13628     -3.201400e+02 1.588900e+02
+5 13628     3.645500e+02 -2.422200e+02
+6 13628     -5.051100e+02 4.002300e+02
+7 13628     -2.512900e+02 4.761900e+02
+8 13628     -1.833400e+02 1.177800e+02
+2 13629     7.180400e+02 1.590700e+02
+7 13629     6.258300e+02 3.001100e+02
+2 13630     -6.611700e+02 1.576400e+02
+5 13630     2.915002e+01 -2.377500e+02
+7 13630     -5.935100e+02 4.398900e+02
+10 13630     -5.904900e+02 6.040400e+02
+2 13631     5.225100e+02 1.573300e+02
+3 13631     3.836000e+02 -1.562700e+02
+9 13631     3.067800e+02 2.310200e+02
+12 13631     5.237100e+02 3.376000e+02
+2 13632     -2.698300e+02 1.551700e+02
+5 13632     4.156500e+02 -2.458700e+02
+6 13632     -4.450600e+02 4.070500e+02
+8 13632     -1.429100e+02 1.150100e+02
+9 13632     -3.760300e+02 1.991800e+02
+2 13633     -5.893300e+02 1.472000e+02
+8 13633     -4.029700e+02 1.035500e+02
+12 13633     -6.336200e+02 3.514600e+02
+2 13634     -3.744600e+02 1.446800e+02
+7 13634     -3.079900e+02 4.577500e+02
+2 13635     3.239700e+02 1.433300e+02
+6 13635     1.663800e+02 1.819700e+02
+8 13635     3.037300e+02 7.354999e+01
+12 13635     2.018400e+02 2.276300e+02
+13 13635     5.516801e+02 -1.288600e+02
+2 13636     -6.567500e+02 1.424000e+02
+10 13636     -5.845700e+02 5.889700e+02
+11 13636     -1.826600e+02 -3.497900e+02
+2 13637     -6.273000e+02 1.424900e+02
+7 13637     -5.596200e+02 4.306900e+02
+10 13637     -5.507800e+02 5.908100e+02
+2 13638     -6.273000e+02 1.424900e+02
+10 13638     -5.507800e+02 5.908100e+02
+2 13639     5.507600e+02 1.426400e+02
+8 13639     5.121801e+02 8.770999e+01
+12 13639     5.539000e+02 3.197800e+02
+2 13640     5.507600e+02 1.426400e+02
+6 13640     4.716100e+02 3.100700e+02
+12 13640     5.539000e+02 3.197800e+02
+2 13641     3.302500e+02 1.402900e+02
+3 13641     2.214100e+02 -1.729400e+02
+8 13641     3.088900e+02 7.101001e+01
+2 13642     -3.012900e+02 1.396700e+02
+5 13642     3.800200e+02 -2.638600e+02
+6 13642     -4.802900e+02 3.781400e+02
+9 13642     -4.003900e+02 1.851000e+02
+2 13643     6.428101e+02 1.391600e+02
+3 13643     5.059399e+02 -1.712800e+02
+8 13643     5.924600e+02 7.964999e+01
+9 13643     4.092200e+02 2.202700e+02
+10 13643     7.375500e+02 3.344200e+02
+12 13643     6.575699e+02 3.007500e+02
+2 13644     -7.256200e+02 1.387700e+02
+10 13644     -6.615100e+02 5.804100e+02
+11 13644     -2.372500e+02 -3.522500e+02
+12 13644     -7.840600e+02 3.254600e+02
+2 13645     7.711899e+02 1.347300e+02
+7 13645     6.693800e+02 2.640200e+02
+9 13645     5.157000e+02 2.214500e+02
+2 13646     3.189100e+02 1.327300e+02
+8 13646     2.974300e+02 6.300000e+01
+2 13647     -5.625500e+02 1.280400e+02
+8 13647     -3.815900e+02 8.831000e+01
+2 13648     -1.938200e+02 1.272600e+02
+13 13648     2.662600e+02 7.578998e+01
+14 13648     4.069301e+02 -3.556800e+02
+2 13649     3.745001e+01 1.268900e+02
+3 13649     -5.687000e+01 -1.922600e+02
+8 13649     6.903003e+01 6.344000e+01
+2 13650     -6.383200e+02 1.231000e+02
+7 13650     -5.683000e+02 4.129200e+02
+10 13650     -5.614400e+02 5.717000e+02
+11 13650     -1.683700e+02 -3.639500e+02
+2 13651     5.915100e+02 1.220700e+02
+9 13651     3.659000e+02 2.043900e+02
+10 13651     6.806400e+02 3.360900e+02
+2 13652     -2.599800e+02 1.191500e+02
+11 13652     1.728900e+02 -3.692400e+02
+2 13653     1.921500e+02 1.177800e+02
+3 13653     9.596997e+01 -1.959800e+02
+8 13653     1.909700e+02 5.123999e+01
+9 13653     4.653998e+01 1.911200e+02
+2 13654     -7.143200e+02 1.168400e+02
+4 13654     -1.728998e+01 -1.071700e+02
+7 13654     -6.405800e+02 4.000400e+02
+10 13654     -6.545400e+02 5.612900e+02
+2 13655     2.085999e+01 1.159300e+02
+8 13655     5.581000e+01 5.491000e+01
+2 13656     -2.780600e+02 1.149000e+02
+9 13656     -3.812100e+02 1.640900e+02
+11 13656     1.552600e+02 -3.724200e+02
+2 13657     -7.633002e+01 1.093400e+02
+6 13657     -2.173700e+02 3.675900e+02
+9 13657     -2.074800e+02 1.671700e+02
+10 13657     8.734003e+01 5.677400e+02
+12 13657     -6.440997e+01 3.641500e+02
+13 13657     3.529800e+02 4.903003e+01
+14 13657     5.159900e+02 -3.931400e+02
+2 13658     -6.252800e+02 1.088500e+02
+5 13658     5.650000e+01 -2.777200e+02
+7 13658     -5.552300e+02 4.041400e+02
+11 13658     -1.584200e+02 -3.735800e+02
+2 13659     5.384500e+02 1.051400e+02
+3 13659     4.013000e+02 -2.064500e+02
+6 13659     4.568199e+02 2.710100e+02
+8 13659     5.012000e+02 5.703000e+01
+9 13659     3.219600e+02 1.886400e+02
+10 13659     6.239399e+02 3.387600e+02
+13 13659     8.343800e+02 -9.488000e+01
+2 13660     2.496600e+02 1.047100e+02
+3 13660     1.504700e+02 -2.079400e+02
+4 13660     -2.512900e+02 -5.048300e+02
+8 13660     2.369300e+02 3.884000e+01
+9 13660     9.448999e+01 1.810900e+02
+13 13660     4.686400e+02 -1.679300e+02
+2 13661     4.301300e+02 1.037700e+02
+7 13661     3.694200e+02 3.165500e+02
+10 13661     5.189399e+02 3.782900e+02
+13 13661     7.409600e+02 -6.970001e+01
+15 13661     7.037400e+02 4.251800e+02
+2 13662     5.748101e+02 1.032800e+02
+8 13662     5.310800e+02 5.414999e+01
+2 13663     8.257001e+01 1.025000e+02
+3 13663     -9.000000e+00 -2.142900e+02
+6 13663     -9.664001e+01 1.208000e+02
+8 13663     1.023900e+02 4.045999e+01
+12 13663     -7.121002e+01 1.753500e+02
+13 13663     3.461300e+02 -1.402800e+02
+2 13664     7.027600e+02 1.010800e+02
+7 13664     6.038300e+02 2.499200e+02
+10 13664     7.914500e+02 2.687800e+02
+2 13665     3.595500e+02 9.857001e+01
+13 13665     5.689500e+02 -1.765700e+02
+2 13666     1.523100e+02 9.558002e+01
+5 13666     6.685100e+02 -5.913600e+02
+12 13666     -6.489990e+00 1.590200e+02
+2 13667     -2.996400e+02 9.384003e+01
+5 13667     3.778000e+02 -3.014600e+02
+7 13667     -2.299400e+02 4.213300e+02
+8 13667     -1.666400e+02 6.598999e+01
+10 13667     -1.566900e+02 5.663200e+02
+2 13668     7.827002e+01 9.032001e+01
+7 13668     -1.202500e+02 1.953300e+02
+8 13668     9.828003e+01 3.051999e+01
+2 13669     1.064900e+02 8.745001e+01
+3 13669     1.596997e+01 -2.281600e+02
+4 13669     -2.222800e+02 -4.117400e+02
+7 13669     -1.001800e+02 1.862900e+02
+8 13669     1.205100e+02 2.676999e+01
+9 13669     -2.345001e+01 1.610100e+02
+10 13669     -1.000200e+02 2.281800e+02
+12 13669     -5.169000e+01 1.535000e+02
+13 13669     3.590400e+02 -1.591200e+02
+2 13670     -1.364400e+02 8.521002e+01
+4 13670     -9.777002e+01 -4.263800e+02
+5 13670     5.362000e+02 -3.368600e+02
+11 13670     2.597200e+02 -4.182800e+02
+12 13670     -1.338800e+02 3.312800e+02
+13 13670     2.989500e+02 2.773999e+01
+14 13670     4.485000e+02 -4.179200e+02
+2 13671     -2.745100e+02 8.244000e+01
+13 13671     1.934800e+02 3.850000e+01
+14 13671     3.161300e+02 -3.988500e+02
+2 13672     6.315699e+02 8.101001e+01
+9 13672     4.009000e+02 1.709400e+02
+12 13672     6.369700e+02 2.410900e+02
+2 13673     6.315699e+02 8.101001e+01
+9 13673     4.009000e+02 1.709400e+02
+12 13673     6.369700e+02 2.410900e+02
+2 13674     3.007300e+02 7.806000e+01
+13 13674     5.060601e+02 -1.967100e+02
+2 13675     -3.125200e+02 7.615997e+01
+5 13675     3.614700e+02 -3.173500e+02
+6 13675     -4.907700e+02 3.099500e+02
+8 13675     -1.779200e+02 5.239001e+01
+2 13676     -5.870300e+02 7.073999e+01
+8 13676     -4.009400e+02 4.420999e+01
+2 13677     4.114301e+02 7.053998e+01
+3 13677     2.997800e+02 -2.369000e+02
+8 13677     3.755100e+02 1.310001e+01
+2 13678     5.650024e+00 6.558002e+01
+5 13678     5.317100e+02 -5.688800e+02
+6 13678     -1.753700e+02 9.026001e+01
+8 13678     4.084998e+01 1.264999e+01
+9 13678     -1.093100e+02 1.389300e+02
+2 13679     -6.270600e+02 6.437000e+01
+7 13679     -5.523100e+02 3.651800e+02
+8 13679     -4.346700e+02 3.810001e+01
+10 13679     -5.433200e+02 5.152200e+02
+11 13679     -1.629100e+02 -4.054300e+02
+14 13679     -3.177002e+01 -4.093600e+02
+2 13680     -5.784200e+02 6.215002e+01
+13 13680     -4.881000e+01 1.829999e+01
+2 13681     -5.784200e+02 6.215002e+01
+13 13681     -4.881000e+01 1.829999e+01
+2 13682     -5.563900e+02 5.769000e+01
+7 13682     -4.830300e+02 3.669300e+02
+8 13682     -3.762200e+02 3.500000e+01
+11 13682     -1.032300e+02 -4.137600e+02
+13 13682     -3.250000e+01 1.550000e+01
+14 13682     3.471997e+01 -4.152900e+02
+15 13682     -4.496100e+02 5.656400e+02
+2 13683     -3.589300e+02 5.804999e+01
+10 13683     -2.283200e+02 5.281000e+02
+2 13684     -6.028200e+02 5.742999e+01
+11 13684     -1.417800e+02 -4.104700e+02
+15 13684     -5.092200e+02 5.556900e+02
+2 13685     -3.646200e+02 5.631000e+01
+6 13685     -5.509200e+02 2.784000e+02
+7 13685     -2.947500e+02 3.837600e+02
+11 13685     6.929999e+01 -4.160600e+02
+2 13686     -1.551400e+02 5.652002e+01
+4 13686     -1.132900e+02 -4.023700e+02
+9 13686     -2.696800e+02 1.193700e+02
+2 13687     3.786000e+02 5.501001e+01
+3 13687     2.727900e+02 -2.523400e+02
+2 13688     2.365000e+02 5.376001e+01
+15 13688     7.467999e+01 1.546000e+02
+2 13689     6.465699e+02 5.433002e+01
+3 13689     5.080900e+02 -2.511700e+02
+6 13689     5.721600e+02 2.024000e+02
+8 13689     5.896899e+02 1.119000e+01
+9 13689     4.134900e+02 1.494000e+02
+12 13689     6.511700e+02 2.120200e+02
+2 13690     7.351200e+02 4.596997e+01
+9 13690     4.878800e+02 1.459100e+02
+10 13690     8.111200e+02 1.962400e+02
+12 13690     7.456600e+02 1.911100e+02
+2 13691     -1.412200e+02 4.458002e+01
+8 13691     -4.370001e+01 2.426001e+01
+9 13691     -2.574400e+02 1.093600e+02
+2 13692     6.762300e+02 4.441998e+01
+3 13692     5.387100e+02 -2.592100e+02
+7 13692     5.739800e+02 2.051600e+02
+9 13692     4.393700e+02 1.415800e+02
+10 13692     7.510400e+02 2.184900e+02
+12 13692     6.827700e+02 1.967500e+02
+2 13693     1.574200e+02 4.329999e+01
+8 13693     1.593800e+02 -1.170001e+01
+12 13693     -7.750000e+00 9.619000e+01
+2 13694     2.906600e+02 4.192999e+01
+7 13694     4.569000e+01 1.166000e+02
+2 13695     6.431300e+02 4.184003e+01
+3 13695     5.067100e+02 -2.637200e+02
+6 13695     5.686300e+02 1.899900e+02
+7 13695     5.444000e+02 2.118400e+02
+8 13695     5.872000e+02 1.459991e+00
+12 13695     6.476000e+02 1.994800e+02
+2 13696     -3.951400e+02 4.021997e+01
+13 13696     9.221997e+01 7.250000e+00
+14 13696     1.888900e+02 -4.333700e+02
+2 13697     7.395400e+02 3.670001e+01
+3 13697     5.990601e+02 -2.636700e+02
+9 13697     4.905699e+02 1.387700e+02
+2 13698     1.324900e+02 3.241998e+01
+6 13698     -4.891998e+01 3.109998e+01
+2 13699     -1.242999e+01 2.659003e+01
+8 13699     2.669000e+01 -1.916000e+01
+2 13700     6.698400e+02 2.598999e+01
+10 13700     7.395900e+02 2.035400e+02
+2 13701     1.726600e+02 2.228998e+01
+9 13701     3.552002e+01 1.104700e+02
+10 13701     -6.766998e+01 1.351100e+02
+15 13701     -4.950012e+00 1.309000e+02
+2 13702     4.172800e+02 2.151001e+01
+8 13702     3.784400e+02 -2.831000e+01
+2 13703     6.711899e+02 1.803998e+01
+3 13703     5.358700e+02 -2.847700e+02
+7 13703     5.663400e+02 1.844400e+02
+9 13703     4.358500e+02 1.207100e+02
+2 13704     7.193300e+02 1.814001e+01
+3 13704     5.817500e+02 -2.834300e+02
+10 13704     7.884399e+02 1.742900e+02
+2 13705     7.193300e+02 1.814001e+01
+3 13705     5.817500e+02 -2.834300e+02
+10 13705     7.884399e+02 1.742900e+02
+12 13705     7.277000e+02 1.639000e+02
+2 13706     -4.479000e+02 1.571997e+01
+13 13706     4.926001e+01 -1.265002e+01
+15 13706     -3.017300e+02 5.221500e+02
+2 13707     7.374700e+02 6.200012e+00
+9 13707     4.909500e+02 1.132700e+02
+10 13707     8.047900e+02 1.547200e+02
+2 13708     8.404999e+01 2.940002e+00
+8 13708     9.983002e+01 -4.260999e+01
+2 13709     5.998400e+02 -7.899780e-01
+8 13709     5.508000e+02 -3.173001e+01
+10 13709     6.638400e+02 2.057100e+02
+2 13710     4.421002e+01 -1.539978e+00
+3 13710     -4.147998e+01 -3.141800e+02
+9 13710     -7.226001e+01 8.541000e+01
+2 13711     3.288700e+02 -1.400024e+00
+6 13711     1.564900e+02 -2.770020e+00
+8 13711     2.995100e+02 -4.970999e+01
+13 13711     5.146801e+02 -2.640800e+02
+2 13712     -5.617999e+01 -3.270020e+00
+3 13712     -1.452900e+02 -3.198900e+02
+8 13712     -7.859985e+00 -3.994000e+01
+9 13712     -1.599100e+02 7.825000e+01
+2 13713     2.142300e+02 -8.030029e+00
+10 13713     -3.764001e+01 9.335999e+01
+2 13714     -1.630100e+02 -1.345001e+01
+8 13714     -8.895001e+01 -4.357999e+01
+2 13715     7.239100e+02 -1.415997e+01
+7 13715     6.070300e+02 1.434300e+02
+10 13715     7.866200e+02 1.392800e+02
+2 13716     -6.640997e+01 -1.550000e+01
+3 13716     -1.542700e+02 -3.325900e+02
+4 13716     -2.277600e+02 -3.106300e+02
+8 13716     -1.740002e+01 -5.104999e+01
+2 13717     -6.378003e+01 -1.857001e+01
+3 13717     -1.505200e+02 -3.346900e+02
+2 13718     3.689800e+02 -1.900000e+01
+7 13718     1.175500e+02 6.058002e+01
+2 13719     7.276400e+02 -2.090002e+01
+9 13719     4.833700e+02 8.989999e+01
+12 13719     7.336000e+02 1.221200e+02
+2 13720     1.175800e+02 -2.153998e+01
+6 13720     -6.444000e+01 -2.633002e+01
+2 13721     -5.338000e+01 -2.514001e+01
+8 13721     -7.940002e+00 -5.964001e+01
+2 13722     1.315600e+02 -2.513000e+01
+12 13722     -3.865002e+01 2.346997e+01
+13 13722     3.563800e+02 -2.545900e+02
+15 13722     -5.619000e+01 8.675000e+01
+2 13723     3.552800e+02 -2.577002e+01
+3 13723     2.573700e+02 -3.293200e+02
+2 13724     3.939500e+02 -3.506000e+01
+3 13724     2.927100e+02 -3.369000e+02
+7 13724     1.442300e+02 4.745001e+01
+8 13724     3.544500e+02 -7.796002e+01
+13 13724     5.715800e+02 -2.936600e+02
+15 13724     2.713600e+02 2.726001e+01
+2 13725     -2.003998e+01 -3.590002e+01
+6 13725     -2.033400e+02 -2.103003e+01
+2 13726     7.334700e+02 -3.663000e+01
+9 13726     4.892400e+02 7.715997e+01
+2 13727     7.103500e+02 -4.046002e+01
+10 13727     7.659800e+02 1.190100e+02
+2 13728     7.103500e+02 -4.046002e+01
+9 13728     4.693199e+02 7.325000e+01
+10 13728     7.659800e+02 1.190100e+02
+2 13729     3.773900e+02 -4.294000e+01
+3 13729     2.767400e+02 -3.401400e+02
+6 13729     2.092100e+02 -3.888000e+01
+8 13729     3.399300e+02 -8.391998e+01
+12 13729     2.313300e+02 3.599976e+00
+15 13729     2.405000e+02 1.975000e+01
+2 13730     4.331000e+02 -4.659003e+01
+3 13730     3.298900e+02 -3.476300e+02
+2 13731     7.758500e+02 -5.050000e+01
+9 13731     5.241400e+02 6.715997e+01
+2 13732     -1.534700e+02 -6.123999e+01
+3 13732     -2.386200e+02 -3.791000e+02
+6 13732     -3.380700e+02 -3.462000e+01
+8 13732     -8.701001e+01 -8.644000e+01
+2 13733     -4.459003e+01 -6.192999e+01
+8 13733     -3.369995e+00 -9.148999e+01
+2 13734     7.751801e+02 -6.264001e+01
+3 13734     6.423500e+02 -3.594400e+02
+7 13734     6.450000e+02 8.831000e+01
+9 13734     5.237900e+02 5.700000e+01
+2 13735     -2.707600e+02 -7.272998e+01
+8 13735     -1.566500e+02 -7.437000e+01
+2 13736     5.673999e+01 -7.276001e+01
+6 13736     -1.282500e+02 -7.907001e+01
+12 13736     -1.159900e+02 -2.240997e+01
+2 13737     5.746100e+02 -7.312000e+01
+7 13737     4.744900e+02 1.306600e+02
+8 13737     5.290100e+02 -8.923999e+01
+2 13738     2.866300e+02 -7.445001e+01
+12 13738     1.215400e+02 -3.528003e+01
+2 13739     7.630800e+02 -7.946002e+01
+9 13739     5.141000e+02 4.304999e+01
+2 13740     1.156800e+02 -8.591998e+01
+8 13740     1.209300e+02 -1.173200e+02
+2 13741     7.010010e+00 -9.126001e+01
+3 13741     -7.371997e+01 -4.027200e+02
+2 13742     7.697900e+02 -9.140997e+01
+7 13742     6.363600e+02 6.521997e+01
+10 13742     8.150601e+02 4.247998e+01
+2 13743     7.698800e+02 -9.653003e+01
+9 13743     5.198300e+02 2.878998e+01
+2 13744     -9.221002e+01 -1.032100e+02
+3 13744     -1.717100e+02 -4.166100e+02
+2 13745     -4.749400e+02 -1.051800e+02
+7 13745     -4.416700e+02 1.990800e+02
+8 13745     -3.187800e+02 -9.946002e+01
+2 13746     6.386200e+02 -1.070200e+02
+9 13746     4.119700e+02 1.484003e+01
+12 13746     6.354600e+02 4.682001e+01
+2 13747     4.934200e+02 -1.091500e+02
+6 13747     3.312300e+02 -1.051200e+02
+12 13747     3.564600e+02 -7.017999e+01
+13 13747     6.444700e+02 -3.694800e+02
+2 13748     5.010000e+02 -1.089800e+02
+10 13748     2.588000e+02 -5.577002e+01
+12 13748     3.631600e+02 -7.154999e+01
+15 13748     3.833300e+02 -9.153003e+01
+2 13749     -7.796997e+01 -1.098100e+02
+3 13749     -1.569600e+02 -4.236500e+02
+2 13750     -8.252002e+01 -1.124400e+02
+3 13750     -1.612000e+02 -4.254900e+02
+8 13750     -3.725000e+01 -1.335000e+02
+2 13751     -7.679999e+01 -1.142000e+02
+3 13751     -1.553100e+02 -4.269100e+02
+6 13751     -2.634900e+02 -1.182400e+02
+8 13751     -3.267999e+01 -1.350700e+02
+12 13751     -2.473100e+02 -5.608002e+01
+2 13752     5.127400e+02 -1.142400e+02
+10 13752     2.672700e+02 -6.523999e+01
+12 13752     3.764500e+02 -7.826001e+01
+15 13752     3.931000e+02 -1.028100e+02
+2 13753     -7.987000e+01 -1.178400e+02
+3 13753     -1.574600e+02 -4.307600e+02
+6 13753     -2.659700e+02 -1.221600e+02
+12 13753     -2.493500e+02 -5.982001e+01
+2 13754     8.816998e+01 -1.190500e+02
+3 13754     8.409973e+00 -4.264500e+02
+6 13754     -9.703000e+01 -1.323200e+02
+7 13754     -1.489700e+02 -5.049988e+00
+8 13754     9.734998e+01 -1.427700e+02
+10 13754     -1.728600e+02 1.376001e+01
+12 13754     -9.040002e+01 -7.678998e+01
+13 13754     3.095300e+02 -3.193900e+02
+15 13754     -1.259500e+02 -1.223999e+01
+2 13755     5.131300e+02 -1.190200e+02
+3 13755     4.113900e+02 -4.143300e+02
+2 13756     7.718800e+02 -1.285100e+02
+7 13756     6.329000e+02 3.412000e+01
+9 13756     5.226600e+02 2.979980e+00
+12 13756     7.738400e+02 4.049988e+00
+2 13757     7.884600e+02 -1.375800e+02
+7 13757     6.463101e+02 2.156000e+01
+2 13758     8.201000e+02 -1.418000e+02
+7 13758     6.716899e+02 1.064001e+01
+2 13759     -3.174100e+02 -1.466600e+02
+7 13759     -3.328600e+02 1.395200e+02
+10 13759     -3.190300e+02 2.291000e+02
+2 13760     -3.174100e+02 -1.466600e+02
+3 13760     -4.319800e+02 -4.777400e+02
+5 13760     2.698600e+02 -5.986400e+02
+7 13760     -3.328600e+02 1.395200e+02
+10 13760     -3.190300e+02 2.291000e+02
+2 13761     5.110999e+01 -1.501700e+02
+3 13761     -2.491998e+01 -4.574900e+02
+8 13761     6.579999e+01 -1.691800e+02
+2 13762     -1.614001e+01 -1.504400e+02
+3 13762     -9.192999e+01 -4.598101e+02
+2 13763     -1.645001e+01 -1.558200e+02
+3 13763     -9.210999e+01 -4.659900e+02
+6 13763     -2.027200e+02 -1.687800e+02
+9 13763     -1.129300e+02 -4.615997e+01
+12 13763     -1.949600e+02 -1.082800e+02
+13 13763     2.317700e+02 -3.285500e+02
+2 13764     3.435800e+02 -1.603800e+02
+3 13764     2.571600e+02 -4.576500e+02
+7 13764     5.107001e+01 -8.158002e+01
+8 13764     3.045500e+02 -1.847100e+02
+10 13764     3.915997e+01 -9.807001e+01
+12 13764     1.654000e+02 -1.419700e+02
+15 13764     1.224300e+02 -1.416600e+02
+2 13765     5.066000e+02 -1.603500e+02
+3 13765     4.081200e+02 -4.549900e+02
+9 13765     3.166400e+02 -2.857001e+01
+2 13766     5.114600e+02 -1.606700e+02
+8 13766     4.507500e+02 -1.832100e+02
+9 13766     3.201899e+02 -2.946997e+01
+2 13767     5.114600e+02 -1.606700e+02
+8 13767     4.507500e+02 -1.832100e+02
+9 13767     3.201899e+02 -2.946997e+01
+2 13768     2.460999e+01 -1.617000e+02
+3 13768     -4.903998e+01 -4.690699e+02
+2 13769     3.413101e+02 -1.730800e+02
+3 13769     2.568000e+02 -4.697000e+02
+8 13769     3.007800e+02 -1.958300e+02
+2 13770     1.082500e+02 -1.744300e+02
+6 13770     -8.004001e+01 -2.010200e+02
+7 13770     -1.503400e+02 -6.569000e+01
+8 13770     1.106400e+02 -1.912700e+02
+12 13770     -8.227002e+01 -1.462600e+02
+13 13770     3.095300e+02 -3.714000e+02
+15 13770     -1.381800e+02 -9.457001e+01
+2 13771     3.722300e+02 -1.745200e+02
+3 13771     2.873101e+02 -4.697300e+02
+4 13771     -4.690700e+02 -5.026500e+02
+6 13771     1.870900e+02 -2.030800e+02
+8 13771     3.269300e+02 -1.976400e+02
+9 13771     2.107200e+02 -4.357001e+01
+12 13771     1.898500e+02 -1.623600e+02
+2 13772     5.160601e+02 -1.750900e+02
+6 13772     3.580800e+02 -1.596000e+02
+8 13772     4.556200e+02 -1.929500e+02
+9 13772     3.240900e+02 -4.100000e+01
+12 13772     3.873500e+02 -1.289100e+02
+2 13773     1.312700e+02 -1.777100e+02
+10 13773     -1.649600e+02 -6.615002e+01
+12 13773     -6.032001e+01 -1.517000e+02
+2 13774     2.428101e+02 -1.863200e+02
+6 13774     5.440002e+01 -2.174500e+02
+8 13774     2.192700e+02 -2.052500e+02
+12 13774     5.154999e+01 -1.698300e+02
+2 13775     -3.922300e+02 -1.873800e+02
+3 13775     -5.054600e+02 -5.215200e+02
+13 13775     3.637000e+01 -2.164400e+02
+2 13776     -4.620001e+01 -1.942500e+02
+6 13776     -2.293700e+02 -1.955100e+02
+8 13776     -8.229980e+00 -1.999400e+02
+9 13776     -1.378500e+02 -7.998999e+01
+12 13776     -2.136200e+02 -1.354000e+02
+2 13777     2.318000e+02 -1.984600e+02
+6 13777     4.370001e+01 -2.273400e+02
+7 13777     -5.388000e+01 -1.032600e+02
+8 13777     2.099200e+02 -2.138800e+02
+12 13777     4.095001e+01 -1.796600e+02
+2 13778     3.974000e+02 -1.994700e+02
+6 13778     2.166400e+02 -2.185300e+02
+9 13778     2.311600e+02 -6.367999e+01
+12 13778     2.249399e+02 -1.798100e+02
+2 13779     3.974000e+02 -1.994700e+02
+3 13779     3.100500e+02 -4.947600e+02
+6 13779     2.166400e+02 -2.185300e+02
+7 13779     9.957001e+01 -1.157600e+02
+8 13779     3.492400e+02 -2.166200e+02
+9 13779     2.311600e+02 -6.367999e+01
+10 13779     9.378998e+01 -1.404200e+02
+12 13779     2.249399e+02 -1.798100e+02
+2 13780     3.584301e+02 -2.007100e+02
+3 13780     2.750200e+02 -4.965699e+02
+2 13781     3.948101e+02 -2.083600e+02
+3 13781     3.090300e+02 -5.032900e+02
+9 13781     2.304399e+02 -7.073999e+01
+2 13782     -3.128400e+02 -2.101800e+02
+3 13782     -4.198000e+02 -5.417900e+02
+2 13783     3.933101e+02 -2.162300e+02
+3 13783     3.073700e+02 -5.105900e+02
+8 13783     3.460500e+02 -2.303600e+02
+9 13783     2.286899e+02 -7.791998e+01
+2 13784     -5.278200e+02 -2.246200e+02
+7 13784     -5.214000e+02 6.792999e+01
+2 13785     8.221997e+01 -2.243100e+02
+6 13785     -1.036100e+02 -2.414700e+02
+12 13785     -1.014200e+02 -1.865400e+02
+15 13785     -1.523200e+02 -1.259800e+02
+2 13786     3.552500e+02 -2.256800e+02
+6 13786     1.704200e+02 -2.522800e+02
+2 13787     2.650500e+02 -2.265900e+02
+3 13787     1.863000e+02 -5.252200e+02
+7 13787     -2.320001e+01 -1.244800e+02
+9 13787     1.249800e+02 -9.041998e+01
+2 13788     1.313300e+02 -2.268500e+02
+6 13788     -5.609998e+01 -2.473800e+02
+12 13788     -5.596997e+01 -1.950900e+02
+2 13789     4.977200e+02 -2.283700e+02
+3 13789     4.028400e+02 -5.234399e+02
+8 13789     4.390699e+02 -2.371600e+02
+9 13789     3.111700e+02 -8.544000e+01
+2 13790     1.268600e+02 -2.293500e+02
+3 13790     5.141998e+01 -5.336899e+02
+6 13790     -5.973999e+01 -2.489399e+02
+8 13790     1.272500e+02 -2.348100e+02
+9 13790     1.078998e+01 -9.990002e+01
+12 13790     -5.934003e+01 -1.962800e+02
+2 13791     3.506300e+02 -2.308400e+02
+3 13791     2.681400e+02 -5.267200e+02
+2 13792     3.327500e+02 -2.332300e+02
+6 13792     1.489600e+02 -2.535400e+02
+8 13792     2.942300e+02 -2.437500e+02
+2 13793     1.084700e+02 -2.355900e+02
+6 13793     -7.702002e+01 -2.529900e+02
+12 13793     -7.562000e+01 -1.999400e+02
+2 13794     4.945900e+02 -2.352900e+02
+8 13794     4.358700e+02 -2.429200e+02
+2 13795     2.720000e+02 -2.367200e+02
+3 13795     1.928300e+02 -5.355500e+02
+9 13795     1.309600e+02 -9.919000e+01
+2 13796     9.820001e+01 -2.391700e+02
+6 13796     -8.709000e+01 -2.549500e+02
+2 13797     -4.148900e+02 -2.410700e+02
+8 13797     -2.827900e+02 -2.149900e+02
+2 13798     7.264301e+02 -2.437400e+02
+9 13798     4.925300e+02 -9.253003e+01
+15 13798     8.562900e+02 -1.931300e+02
+2 13799     -3.383500e+02 -2.508800e+02
+3 13799     -4.431800e+02 -5.835000e+02
+8 13799     -2.234300e+02 -2.241100e+02
+9 13799     -3.954600e+02 -1.481700e+02
+13 13799     5.591998e+01 -2.821500e+02
+2 13800     -3.980600e+02 -2.515100e+02
+3 13800     -5.069200e+02 -5.872600e+02
+2 13801     -3.980600e+02 -2.515100e+02
+3 13801     -5.069200e+02 -5.872600e+02
+2 13802     5.266100e+02 -2.521300e+02
+6 13802     3.737000e+02 -2.209500e+02
+2 13803     5.224100e+02 -2.522200e+02
+10 13803     3.068600e+02 -1.569400e+02
+2 13804     3.477100e+02 -2.534300e+02
+8 13804     3.062600e+02 -2.606300e+02
+2 13805     4.915500e+02 -2.543000e+02
+6 13805     3.275600e+02 -2.412300e+02
+8 13805     4.327900e+02 -2.589100e+02
+12 13805     3.532700e+02 -2.112100e+02
+2 13806     2.742500e+02 -2.593200e+02
+6 13806     8.948999e+01 -2.768700e+02
+12 13806     9.223999e+01 -2.336000e+02
+2 13807     -3.511300e+02 -2.643100e+02
+3 13807     -4.561400e+02 -5.988900e+02
+4 13807     -2.664500e+02 -1.759900e+02
+7 13807     -4.006200e+02 9.909973e+00
+8 13807     -2.351000e+02 -2.362000e+02
+9 13807     -4.055200e+02 -1.609000e+02
+10 13807     -4.147400e+02 8.092999e+01
+13 13807     4.291998e+01 -2.935500e+02
+2 13808     4.743700e+02 -2.662900e+02
+6 13808     3.030500e+02 -2.651600e+02
+8 13808     4.154500e+02 -2.694100e+02
+2 13809     2.228600e+02 -2.699700e+02
+3 13809     1.459900e+02 -5.710000e+02
+6 13809     3.842999e+01 -2.861000e+02
+9 13809     9.171997e+01 -1.291200e+02
+12 13809     3.897998e+01 -2.404200e+02
+2 13810     3.858800e+02 -2.777100e+02
+3 13810     3.020400e+02 -5.743199e+02
+2 13811     -3.211500e+02 -2.804400e+02
+4 13811     -2.818100e+02 -1.830100e+02
+13 13811     5.856000e+01 -3.121900e+02
+2 13812     9.578998e+01 -2.811500e+02
+6 13812     -8.745001e+01 -2.905100e+02
+2 13813     -3.742600e+02 -2.852300e+02
+7 13813     -4.236400e+02 -1.009003e+01
+9 13813     -4.233100e+02 -1.800700e+02
+13 13813     2.301001e+01 -3.092000e+02
+2 13814     2.826801e+02 -2.903800e+02
+6 13814     9.928003e+01 -3.029399e+02
+2 13815     4.161801e+02 -2.912100e+02
+8 13815     3.656900e+02 -2.900300e+02
+2 13816     -3.104999e+01 -2.925800e+02
+3 13816     -1.082100e+02 -6.059000e+02
+8 13816     2.950012e+00 -2.778900e+02
+9 13816     -1.217300e+02 -1.619400e+02
+2 13817     2.826400e+02 -2.947200e+02
+6 13817     9.937000e+01 -3.067600e+02
+15 13817     5.334003e+01 -2.497900e+02
+2 13818     -2.971997e+01 -2.976400e+02
+3 13818     -1.065200e+02 -6.117800e+02
+8 13818     4.299988e+00 -2.821100e+02
+9 13818     -1.194400e+02 -1.663300e+02
+2 13819     2.881300e+02 -3.009800e+02
+6 13819     1.053500e+02 -3.114900e+02
+12 13819     1.101500e+02 -2.699800e+02
+2 13820     -1.470001e+01 -3.013800e+02
+12 13820     -1.778400e+02 -2.350200e+02
+2 13821     -3.422100e+02 -3.038300e+02
+7 13821     -4.067900e+02 -3.276001e+01
+8 13821     -2.317300e+02 -2.693000e+02
+13 13821     3.883002e+01 -3.303200e+02
+2 13822     -3.422100e+02 -3.038300e+02
+7 13822     -4.067900e+02 -3.276001e+01
+13 13822     3.883002e+01 -3.303200e+02
+2 13823     -3.582100e+02 -3.054700e+02
+13 13823     2.852002e+01 -3.292000e+02
+2 13824     3.398500e+02 -3.057400e+02
+3 13824     2.603000e+02 -6.035699e+02
+9 13824     1.883199e+02 -1.536800e+02
+2 13825     -3.458400e+02 -3.064600e+02
+7 13825     -4.097800e+02 -3.578998e+01
+9 13825     -3.966400e+02 -1.954800e+02
+2 13826     3.910699e+02 -3.067700e+02
+6 13826     2.149400e+02 -3.069301e+02
+8 13826     3.441200e+02 -3.017500e+02
+12 13826     2.273199e+02 -2.713400e+02
+2 13827     -4.151900e+02 -3.114100e+02
+8 13827     -2.887000e+02 -2.746400e+02
+2 13828     3.311500e+02 -3.121800e+02
+6 13828     1.497400e+02 -3.207500e+02
+8 13828     2.930600e+02 -3.057500e+02
+2 13829     -3.980700e+02 -3.139400e+02
+8 13829     -2.756200e+02 -2.768600e+02
+2 13830     8.203998e+01 -3.234800e+02
+8 13830     9.035999e+01 -3.073200e+02
+9 13830     -2.394000e+01 -1.806000e+02
+2 13831     8.203998e+01 -3.234800e+02
+6 13831     -9.960999e+01 -3.286801e+02
+8 13831     9.035999e+01 -3.073200e+02
+2 13832     1.224300e+02 -3.251700e+02
+6 13832     -6.038000e+01 -3.321801e+02
+2 13833     -5.457300e+02 -3.283100e+02
+15 13833     -6.157600e+02 8.349976e+00
+2 13834     3.087800e+02 -3.308600e+02
+6 13834     1.269900e+02 -3.367300e+02
+10 13834     7.070007e+00 -2.197300e+02
+12 13834     1.337000e+02 -2.967700e+02
+13 13834     4.520400e+02 -5.072300e+02
+2 13835     5.931899e+02 -3.323400e+02
+9 13835     3.909399e+02 -1.683100e+02
+2 13836     -3.591600e+02 -3.367400e+02
+7 13836     -4.300500e+02 -6.645001e+01
+2 13837     5.871002e+01 -3.385500e+02
+7 13837     -1.693300e+02 -1.630700e+02
+8 13837     7.265997e+01 -3.176100e+02
+9 13837     -4.297998e+01 -1.948800e+02
+12 13837     -1.112100e+02 -2.812300e+02
+13 13837     2.719301e+02 -4.606400e+02
+15 13837     -1.539500e+02 -2.116100e+02
+2 13838     4.917999e+01 -3.397700e+02
+6 13838     -1.308200e+02 -3.369500e+02
+8 13838     6.609003e+01 -3.190600e+02
+12 13838     -1.194400e+02 -2.815000e+02
+2 13839     8.120001e+01 -3.422500e+02
+8 13839     8.953998e+01 -3.216500e+02
+2 13840     8.120001e+01 -3.422500e+02
+8 13840     8.953998e+01 -3.216500e+02
+2 13841     -4.574900e+02 -3.472400e+02
+13 13841     -4.709998e+01 -3.525100e+02
+2 13842     -3.018600e+02 -3.573300e+02
+6 13842     -4.769900e+02 -3.145500e+02
+8 13842     -2.037100e+02 -3.159500e+02
+2 13843     -4.370200e+02 -3.627700e+02
+15 13843     -5.377600e+02 -6.187000e+01
+2 13844     -4.206200e+02 -3.637600e+02
+13 13844     -2.727002e+01 -3.720700e+02
+2 13845     6.177300e+02 -3.678500e+02
+8 13845     5.408500e+02 -3.525900e+02
+2 13846     5.009600e+02 -3.705500e+02
+8 13846     4.361500e+02 -3.573500e+02
+2 13847     2.125000e+01 -3.753100e+02
+6 13847     -1.575100e+02 -3.701600e+02
+9 13847     -7.212000e+01 -2.278200e+02
+12 13847     -1.462400e+02 -3.120700e+02
+2 13848     3.521899e+02 -3.811200e+02
+8 13848     3.102400e+02 -3.621300e+02
+13 13848     4.814200e+02 -5.522300e+02
+2 13849     -2.882000e+02 -3.866800e+02
+8 13849     -1.952300e+02 -3.411700e+02
+2 13850     2.989301e+02 -3.898100e+02
+7 13850     1.844000e+01 -2.354700e+02
+15 13850     8.196997e+01 -3.334900e+02
+2 13851     -3.475500e+02 -3.911400e+02
+6 13851     -5.234000e+02 -3.599800e+02
+7 13851     -4.382000e+02 -1.231700e+02
+8 13851     -2.425200e+02 -3.436100e+02
+9 13851     -3.882300e+02 -2.656700e+02
+13 13851     1.323999e+01 -4.060100e+02
+2 13852     -2.836600e+02 -3.926200e+02
+6 13852     -4.583300e+02 -3.607900e+02
+8 13852     -1.927500e+02 -3.462300e+02
+2 13853     3.643700e+02 -4.075400e+02
+6 13853     1.818100e+02 -4.146100e+02
+7 13853     5.894000e+01 -2.681100e+02
+12 13853     1.852600e+02 -3.792300e+02
+2 13854     -2.820007e+00 -4.119301e+02
+6 13854     -1.836400e+02 -4.144800e+02
+7 13854     -2.271800e+02 -2.170900e+02
+9 13854     -8.952002e+01 -2.598200e+02
+10 13854     -2.692000e+02 -2.100000e+02
+12 13854     -1.776600e+02 -3.540400e+02
+13 13854     2.167800e+02 -5.045000e+02
+2 13855     3.610200e+02 -4.117000e+02
+6 13855     1.786000e+02 -4.210400e+02
+12 13855     1.818000e+02 -3.859200e+02
+2 13856     -3.406900e+02 -4.172900e+02
+8 13856     -2.394100e+02 -3.663300e+02
+9 13856     -3.798700e+02 -2.871500e+02
+2 13857     1.396997e+01 -4.194600e+02
+6 13857     -1.658500e+02 -4.200400e+02
+12 13857     -1.597100e+02 -3.611500e+02
+2 13858     -2.609985e+00 -4.404500e+02
+7 13858     -2.238800e+02 -2.335300e+02
+9 13858     -8.816998e+01 -2.831500e+02
+12 13858     -1.738100e+02 -3.774400e+02
+13 13858     2.162900e+02 -5.208800e+02
+2 13859     5.822800e+02 -4.481300e+02
+9 13859     3.900000e+02 -2.614600e+02
+2 13860     -3.770000e+02 -4.682500e+02
+6 13860     -5.555100e+02 -4.587300e+02
+7 13860     -4.833300e+02 -1.978900e+02
+8 13860     -2.726300e+02 -4.084600e+02
+9 13860     -4.075600e+02 -3.324300e+02
+13 13860     -2.431000e+01 -4.671100e+02
+2 13861     -2.759000e+02 -4.728400e+02
+13 13861     3.985999e+01 -4.890601e+02
+2 13862     -3.859300e+02 -4.745800e+02
+6 13862     -5.629100e+02 -4.667700e+02
+2 13863     -3.911200e+02 -4.865300e+02
+15 13863     -5.646700e+02 -2.343400e+02
+2 13864     6.271400e+02 -5.167000e+02
+9 13864     4.297900e+02 -3.134900e+02
+2 13865     6.629800e+02 -5.569800e+02
+7 13865     2.867600e+02 -4.315900e+02
+9 13865     4.605000e+02 -3.424400e+02
+10 13865     2.837900e+02 -5.213300e+02
+2 13866     6.733300e+02 -5.580000e+02
+9 13866     4.688101e+02 -3.433300e+02
+12 13866     4.935200e+02 -5.545200e+02
+2 13867     6.751100e+02 -5.773900e+02
+9 13867     4.713900e+02 -3.589400e+02
+2 13868     6.792900e+02 -5.787600e+02
+9 13868     4.746300e+02 -3.586700e+02
+2 13869     -1.163000e+01 -5.871500e+02
+7 13869     -2.594000e+02 -3.587200e+02
+2 13870     3.940699e+02 -5.939800e+02
+12 13870     1.921100e+02 -5.741500e+02
+2 13871     4.051500e+02 -6.013500e+02
+12 13871     2.012100e+02 -5.842600e+02
+2 13872     4.469301e+02 -6.163300e+02
+7 13872     7.940997e+01 -4.555601e+02
+2 13873     -2.901400e+02 5.956100e+02
+4 13873     1.917100e+02 -4.011900e+02
+5 13873     4.374200e+02 1.645200e+02
+13 13873     2.069399e+02 4.291500e+02
+14 13873     3.363199e+02 6.909003e+01
+2 13874     -2.204900e+02 5.952400e+02
+3 13874     -3.487200e+02 2.538100e+02
+4 13874     1.914301e+02 -4.506600e+02
+11 13874     2.226400e+02 -1.270020e+00
+13 13874     2.682500e+02 4.368700e+02
+14 13874     4.088101e+02 7.590002e+01
+2 13875     -4.929999e+01 5.954200e+02
+3 13875     -1.899300e+02 2.519700e+02
+13 13875     4.279900e+02 4.577700e+02
+14 13875     5.975000e+02 9.570001e+01
+2 13876     -2.099100e+02 5.936700e+02
+3 13876     -3.391600e+02 2.525100e+02
+4 13876     1.905400e+02 -4.585100e+02
+13 13876     2.778400e+02 4.370100e+02
+14 13876     4.201300e+02 7.576001e+01
+2 13877     -1.976001e+01 5.905100e+02
+3 13877     -1.619300e+02 2.467200e+02
+5 13877     7.433900e+02 1.838700e+02
+13 13877     4.561700e+02 4.564800e+02
+14 13877     6.313000e+02 9.348999e+01
+2 13878     -3.909973e+00 5.912600e+02
+11 13878     4.467100e+02 1.872998e+01
+13 13878     4.721500e+02 4.591400e+02
+14 13878     6.501500e+02 9.609000e+01
+2 13879     -6.412000e+01 5.891100e+02
+3 13879     -2.029800e+02 2.457700e+02
+5 13879     6.899700e+02 1.775300e+02
+11 13879     3.820100e+02 9.460022e+00
+13 13879     4.131400e+02 4.495400e+02
+14 13879     5.802600e+02 8.653000e+01
+2 13880     -1.932500e+02 5.841200e+02
+4 13880     1.847300e+02 -4.697400e+02
+11 13880     2.505500e+02 -8.090027e+00
+14 13880     4.375000e+02 6.806000e+01
+2 13881     -1.014200e+02 5.714700e+02
+3 13881     -2.386100e+02 2.297100e+02
+5 13881     6.454500e+02 1.572000e+02
+11 13881     3.440200e+02 -6.440002e+00
+14 13881     5.382100e+02 6.716998e+01
+2 13882     -2.899400e+02 5.583500e+02
+4 13882     1.706300e+02 -3.959600e+02
+5 13882     4.338500e+02 1.281200e+02
+8 13882     -1.606100e+02 4.362100e+02
+13 13882     2.048000e+02 3.985500e+02
+14 13882     3.336100e+02 3.409998e+01
+2 13883     -2.899400e+02 5.583500e+02
+5 13883     4.338500e+02 1.281200e+02
+8 13883     -1.606100e+02 4.362100e+02
+13 13883     2.048000e+02 3.985500e+02
+14 13883     3.336100e+02 3.409998e+01
+2 13884     -1.940002e+01 5.530300e+02
+3 13884     -1.625300e+02 2.110100e+02
+5 13884     7.414500e+02 1.476500e+02
+8 13884     6.481000e+01 4.384700e+02
+11 13884     4.314200e+02 -1.366998e+01
+14 13884     6.308500e+02 5.835999e+01
+2 13885     -1.379999e+01 5.532900e+02
+8 13885     6.944000e+01 4.380100e+02
+11 13885     4.375500e+02 -1.222998e+01
+2 13886     -1.379999e+01 5.532900e+02
+5 13886     7.484600e+02 1.484500e+02
+8 13886     6.944000e+01 4.380100e+02
+11 13886     4.375500e+02 -1.222998e+01
+13 13886     4.605800e+02 4.271200e+02
+14 13886     6.376200e+02 5.987000e+01
+2 13887     9.159973e+00 5.533500e+02
+3 13887     -1.355800e+02 2.114000e+02
+5 13887     7.768900e+02 1.508200e+02
+2 13888     9.159973e+00 5.533500e+02
+5 13888     7.768900e+02 1.508200e+02
+8 13888     8.848999e+01 4.386800e+02
+11 13888     4.628500e+02 -9.659973e+00
+14 13888     6.638300e+02 6.216998e+01
+2 13889     -9.626001e+01 5.522800e+02
+4 13889     1.670100e+02 -5.421500e+02
+8 13889     4.699707e-01 4.353200e+02
+13 13889     3.806600e+02 4.162300e+02
+14 13889     5.425601e+02 4.940997e+01
+2 13890     -7.146002e+01 5.514200e+02
+4 13890     1.656700e+02 -5.628800e+02
+5 13890     6.787300e+02 1.406200e+02
+11 13890     3.758800e+02 -2.078998e+01
+13 13890     4.045400e+02 4.188200e+02
+14 13890     5.708199e+02 5.163000e+01
+2 13891     -7.146002e+01 5.514200e+02
+3 13891     -2.105800e+02 2.101400e+02
+8 13891     2.138000e+01 4.344800e+02
+11 13891     3.758800e+02 -2.078998e+01
+2 13892     -3.002100e+02 5.505300e+02
+3 13892     -4.250900e+02 2.120100e+02
+4 13892     1.663500e+02 -3.882400e+02
+5 13892     4.221200e+02 1.197000e+02
+6 13892     -5.175300e+02 8.730500e+02
+8 13892     -1.690700e+02 4.290600e+02
+11 13892     1.447600e+02 -4.392999e+01
+13 13892     1.956899e+02 3.917900e+02
+14 13892     3.225300e+02 2.667999e+01
+2 13893     -2.794500e+02 5.510800e+02
+3 13893     -4.041600e+02 2.117400e+02
+4 13893     1.664200e+02 -4.028200e+02
+8 13893     -1.517300e+02 4.304300e+02
+13 13893     2.137300e+02 3.938500e+02
+14 13893     3.440300e+02 2.856000e+01
+2 13894     -4.744000e+01 5.513200e+02
+3 13894     -1.879400e+02 2.106600e+02
+11 13894     4.016400e+02 -1.784998e+01
+13 13894     4.277700e+02 4.215600e+02
+14 13894     5.984900e+02 5.407001e+01
+2 13895     -4.829300e+02 5.483200e+02
+8 13895     -3.202700e+02 4.227200e+02
+2 13896     4.747998e+01 5.456000e+02
+8 13896     1.205300e+02 4.336900e+02
+11 13896     5.047900e+02 -1.153003e+01
+13 13896     5.203600e+02 4.280300e+02
+14 13896     7.094600e+02 5.946002e+01
+2 13897     -1.792200e+02 5.455700e+02
+3 13897     -3.115500e+02 2.058400e+02
+4 13897     1.631500e+02 -4.751400e+02
+5 13897     5.540400e+02 1.256500e+02
+13 13897     3.032500e+02 4.012900e+02
+14 13897     4.508101e+02 3.407001e+01
+2 13898     2.562600e+02 5.401500e+02
+3 13898     1.121300e+02 1.988900e+02
+6 13898     1.628900e+02 8.439100e+02
+8 13898     2.800400e+02 4.210600e+02
+9 13898     6.765997e+01 5.522800e+02
+13 13898     6.606600e+02 3.477000e+02
+2 13899     -6.796800e+02 5.390300e+02
+3 13899     -7.914500e+02 2.104600e+02
+8 13899     -4.811300e+02 4.101000e+02
+2 13900     -6.476100e+02 5.379200e+02
+8 13900     -4.549500e+02 4.097000e+02
+2 13901     -1.673100e+02 5.381100e+02
+3 13901     -2.997900e+02 1.983300e+02
+4 13901     1.585000e+02 -4.833300e+02
+8 13901     -5.827002e+01 4.225900e+02
+2 13902     -1.788800e+02 5.355300e+02
+5 13902     5.535500e+02 1.158400e+02
+8 13902     -6.812000e+01 4.204600e+02
+11 13902     2.642700e+02 -4.433002e+01
+13 13902     3.031899e+02 3.928000e+02
+2 13903     -1.350700e+02 5.355800e+02
+3 13903     -2.704100e+02 1.938200e+02
+4 13903     1.570500e+02 -5.079700e+02
+5 13903     6.027300e+02 1.198900e+02
+8 13903     -3.212000e+01 4.214500e+02
+2 13904     4.654301e+02 5.337200e+02
+3 13904     3.164600e+02 1.949400e+02
+6 13904     3.943600e+02 7.647800e+02
+8 13904     4.459900e+02 4.104600e+02
+9 13904     2.514800e+02 5.516900e+02
+11 13904     7.134301e+02 -1.817600e+02
+2 13905     -2.534900e+02 5.316000e+02
+4 13905     1.556899e+02 -4.186700e+02
+6 13905     -4.561200e+02 8.593600e+02
+8 13905     -1.299900e+02 4.152800e+02
+13 13905     2.362100e+02 3.818900e+02
+14 13905     3.705500e+02 1.376001e+01
+2 13906     -2.624600e+02 5.312500e+02
+4 13906     1.557200e+02 -4.121300e+02
+2 13907     2.904999e+01 5.258700e+02
+3 13907     -1.172100e+02 1.851100e+02
+5 13907     7.988300e+02 1.251400e+02
+8 13907     1.053500e+02 4.171200e+02
+13 13907     5.003199e+02 4.089000e+02
+2 13908     -1.942500e+02 5.247800e+02
+3 13908     -3.257800e+02 1.865700e+02
+4 13908     1.514301e+02 -4.607100e+02
+5 13908     5.351000e+02 1.044000e+02
+6 13908     -3.804000e+02 8.648800e+02
+8 13908     -8.114001e+01 4.110600e+02
+11 13908     2.485900e+02 -5.404999e+01
+13 13908     2.886200e+02 3.811500e+02
+14 13908     4.330300e+02 1.335999e+01
+2 13909     -4.691600e+02 5.245800e+02
+5 13909     2.464301e+02 8.509003e+01
+11 13909     -1.133002e+01 -7.640002e+01
+13 13909     5.223999e+01 3.549600e+02
+14 13909     1.523101e+02 -1.042999e+01
+2 13910     -2.201000e+02 5.237700e+02
+3 13910     -3.500500e+02 1.864900e+02
+4 13910     1.508800e+02 -4.415200e+02
+6 13910     -4.128700e+02 8.572700e+02
+8 13910     -1.023700e+02 4.095000e+02
+11 13910     2.224200e+02 -5.777002e+01
+14 13910     4.051700e+02 9.630005e+00
+2 13911     5.958900e+02 5.240500e+02
+3 13911     4.383700e+02 1.874100e+02
+8 13911     5.552400e+02 4.008100e+02
+2 13912     5.958900e+02 5.240500e+02
+8 13912     5.552400e+02 4.008100e+02
+2 13913     6.082300e+02 5.241200e+02
+3 13913     4.495100e+02 1.881300e+02
+6 13913     5.585200e+02 7.304700e+02
+9 13913     3.727100e+02 5.461900e+02
+2 13914     -2.284400e+02 5.234700e+02
+3 13914     -3.579300e+02 1.856900e+02
+4 13914     1.508900e+02 -4.354800e+02
+6 13914     -4.238100e+02 8.544400e+02
+11 13914     2.144400e+02 -5.872998e+01
+13 13914     2.576600e+02 3.777900e+02
+14 13914     3.963600e+02 8.570007e+00
+2 13915     -9.595001e+01 5.227200e+02
+4 13915     1.484301e+02 -5.377100e+02
+8 13915     9.199829e-01 4.112500e+02
+13 13915     3.790699e+02 3.916300e+02
+14 13915     5.411200e+02 2.069000e+01
+2 13916     -7.681900e+02 5.221300e+02
+14 13916     -1.175300e+02 -3.342999e+01
+2 13917     -7.450000e+02 5.216100e+02
+13 13917     -1.605300e+02 3.279300e+02
+14 13917     -9.940997e+01 -3.223999e+01
+2 13918     6.190400e+02 5.216000e+02
+3 13918     4.600601e+02 1.859500e+02
+8 13918     5.739800e+02 3.991700e+02
+9 13918     3.823400e+02 5.439600e+02
+2 13919     5.717400e+02 5.207400e+02
+8 13919     5.345800e+02 3.983500e+02
+9 13919     3.420900e+02 5.414900e+02
+2 13920     -3.069500e+02 5.196500e+02
+3 13920     -4.316300e+02 1.828900e+02
+4 13920     1.499000e+02 -3.799400e+02
+6 13920     -5.228100e+02 8.317600e+02
+8 13920     -1.737100e+02 4.045700e+02
+2 13921     -3.069500e+02 5.196500e+02
+4 13921     1.499000e+02 -3.799400e+02
+6 13921     -5.228100e+02 8.317600e+02
+11 13921     1.383200e+02 -6.853998e+01
+13 13921     1.885699e+02 3.667800e+02
+14 13921     3.140500e+02 -2.080017e+00
+2 13922     -5.222000e+02 5.178400e+02
+4 13922     1.529800e+02 -2.463600e+02
+5 13922     1.933101e+02 7.567999e+01
+11 13922     -5.762000e+01 -8.565997e+01
+13 13922     8.859985e+00 3.449900e+02
+14 13922     1.008300e+02 -2.012000e+01
+2 13923     -1.586700e+02 5.181900e+02
+11 13923     2.846200e+02 -5.634003e+01
+2 13924     6.886200e+02 5.175200e+02
+3 13924     5.232300e+02 1.825700e+02
+2 13925     5.565900e+02 5.174100e+02
+3 13925     4.018400e+02 1.812200e+02
+6 13925     4.981700e+02 7.311700e+02
+8 13925     5.218199e+02 3.955700e+02
+9 13925     3.289800e+02 5.389500e+02
+2 13926     -1.660500e+02 5.165800e+02
+3 13926     -2.993700e+02 1.775500e+02
+4 13926     1.465601e+02 -4.814500e+02
+5 13926     5.663800e+02 9.840002e+01
+6 13926     -3.436100e+02 8.607100e+02
+8 13926     -5.784003e+01 4.058400e+02
+11 13926     2.774600e+02 -5.772998e+01
+14 13926     4.634800e+02 8.419983e+00
+2 13927     5.246700e+02 5.145100e+02
+3 13927     3.720800e+02 1.782300e+02
+8 13927     4.955601e+02 3.929000e+02
+9 13927     3.012600e+02 5.361300e+02
+2 13928     5.942100e+02 5.132500e+02
+3 13928     4.371400e+02 1.777500e+02
+6 13928     5.416899e+02 7.213600e+02
+9 13928     3.607000e+02 5.360400e+02
+2 13929     5.942100e+02 5.132500e+02
+3 13929     4.371400e+02 1.777500e+02
+2 13930     -6.780900e+02 5.087800e+02
+13 13930     -1.119900e+02 3.244000e+02
+2 13931     -5.072900e+02 5.095700e+02
+4 13931     1.492700e+02 -2.538500e+02
+11 13931     -4.528003e+01 -9.028998e+01
+13 13931     2.071997e+01 3.402500e+02
+14 13931     1.146900e+02 -2.637000e+01
+2 13932     -1.016400e+02 5.093100e+02
+6 13932     -2.616000e+02 8.685100e+02
+2 13933     -1.016400e+02 5.093100e+02
+6 13933     -2.616000e+02 8.685100e+02
+2 13934     -1.801800e+02 5.075300e+02
+4 13934     1.412900e+02 -4.693199e+02
+5 13934     5.497100e+02 8.838000e+01
+6 13934     -3.607500e+02 8.453900e+02
+8 13934     -6.888000e+01 3.977600e+02
+11 13934     2.626801e+02 -6.647998e+01
+14 13934     4.474100e+02 -1.859985e+00
+2 13935     4.987300e+02 5.068000e+02
+6 13935     4.328700e+02 7.299300e+02
+2 13936     -6.828200e+02 5.056100e+02
+4 13936     1.503101e+02 -1.594700e+02
+5 13936     4.215002e+01 5.598999e+01
+8 13936     -4.823900e+02 3.831000e+02
+11 13936     -1.904400e+02 -1.040000e+02
+13 13936     -1.153600e+02 3.216000e+02
+14 13936     -4.659003e+01 -4.191998e+01
+2 13937     -5.964900e+02 5.035200e+02
+4 13937     1.474301e+02 -2.041400e+02
+5 13937     1.212000e+02 5.896002e+01
+8 13937     -4.122300e+02 3.842400e+02
+11 13937     -1.209700e+02 -1.003400e+02
+13 13937     -4.969000e+01 3.276200e+02
+14 13937     3.084998e+01 -3.745001e+01
+2 13938     -3.272200e+02 5.023600e+02
+3 13938     -4.513100e+02 1.670200e+02
+4 13938     1.413600e+02 -3.646000e+02
+5 13938     3.899800e+02 7.373999e+01
+6 13938     -5.470400e+02 8.057800e+02
+14 13938     2.926200e+02 -1.867999e+01
+2 13939     -3.042300e+02 5.020200e+02
+3 13939     -4.300300e+02 1.656900e+02
+4 13939     1.406500e+02 -3.799000e+02
+5 13939     4.137900e+02 7.429999e+01
+6 13939     -5.169400e+02 8.102900e+02
+8 13939     -1.720100e+02 3.902400e+02
+13 13939     1.899399e+02 3.531500e+02
+14 13939     3.157200e+02 -1.784998e+01
+2 13940     -8.572998e+01 5.003800e+02
+3 13940     -2.236500e+02 1.618700e+02
+4 13940     1.359300e+02 -5.429800e+02
+5 13940     6.571200e+02 8.917999e+01
+6 13940     -2.397600e+02 8.586100e+02
+8 13940     9.940002e+00 3.940200e+02
+2 13941     -1.600600e+02 4.985200e+02
+5 13941     5.708600e+02 8.067999e+01
+6 13941     -3.349400e+02 8.386200e+02
+11 13941     2.817300e+02 -7.257001e+01
+13 13941     3.177400e+02 3.641900e+02
+2 13942     -1.600600e+02 4.985200e+02
+11 13942     2.817300e+02 -7.257001e+01
+2 13943     -1.126700e+02 4.966500e+02
+4 13943     1.339000e+02 -5.207500e+02
+5 13943     6.254700e+02 8.306000e+01
+11 13943     3.313800e+02 -6.867999e+01
+13 13943     3.618300e+02 3.684900e+02
+14 13943     5.207600e+02 -5.450012e+00
+2 13944     -7.512500e+02 4.939100e+02
+14 13944     -1.057500e+02 -5.683002e+01
+2 13945     -1.011800e+02 4.923600e+02
+4 13945     1.307700e+02 -5.290900e+02
+6 13945     -2.598200e+02 8.441900e+02
+8 13945     -3.520020e+00 3.864900e+02
+2 13946     -8.602002e+01 4.920800e+02
+6 13946     -2.408200e+02 8.468700e+02
+8 13946     9.090027e+00 3.860700e+02
+2 13947     -1.063600e+02 4.876300e+02
+5 13947     6.318600e+02 7.516998e+01
+6 13947     -2.658700e+02 8.378700e+02
+11 13947     3.380800e+02 -7.528998e+01
+13 13947     3.677400e+02 3.622400e+02
+2 13948     6.390997e+01 4.875100e+02
+8 13948     1.343700e+02 3.868300e+02
+11 13948     5.225500e+02 -5.828003e+01
+13 13948     5.318700e+02 3.800800e+02
+14 13948     7.257000e+02 4.000000e+00
+2 13949     3.611400e+02 4.883400e+02
+6 13949     2.854000e+02 7.656400e+02
+8 13949     3.655900e+02 3.785700e+02
+9 13949     1.599301e+02 5.106200e+02
+13 13949     7.455699e+02 2.860500e+02
+2 13950     -3.259800e+02 4.858000e+02
+4 13950     1.320800e+02 -3.632200e+02
+6 13950     -5.431000e+02 7.839300e+02
+8 13950     -1.899600e+02 3.759600e+02
+2 13951     -3.259800e+02 4.858000e+02
+4 13951     1.320800e+02 -3.632200e+02
+5 13951     3.893400e+02 5.723999e+01
+6 13951     -5.431000e+02 7.839300e+02
+11 13951     1.192700e+02 -9.540997e+01
+14 13951     2.926400e+02 -3.408002e+01
+2 13952     -2.599900e+02 4.865300e+02
+4 13952     1.310300e+02 -4.080700e+02
+5 13952     4.592500e+02 6.231000e+01
+6 13952     -4.601500e+02 8.008300e+02
+8 13952     -1.353300e+02 3.791100e+02
+11 13952     1.816700e+02 -9.012000e+01
+13 13952     2.276000e+02 3.446900e+02
+14 13952     3.604200e+02 -2.900000e+01
+2 13953     3.781899e+02 4.864000e+02
+3 13953     2.301400e+02 1.503400e+02
+6 13953     3.046200e+02 7.594400e+02
+9 13953     1.741300e+02 5.079400e+02
+2 13954     -2.075600e+02 4.846800e+02
+3 13954     -3.379600e+02 1.479900e+02
+4 13954     1.293800e+02 -4.459301e+02
+11 13954     2.344600e+02 -8.635999e+01
+13 13954     2.744301e+02 3.496600e+02
+14 13954     4.164500e+02 -2.484998e+01
+2 13955     -6.921997e+01 4.817200e+02
+3 13955     -2.088500e+02 1.437100e+02
+4 13955     1.241800e+02 -5.537100e+02
+5 13955     6.743700e+02 7.184998e+01
+6 13955     -2.184000e+02 8.384300e+02
+8 13955     2.312000e+01 3.787000e+02
+13 13955     4.019100e+02 3.611400e+02
+14 13955     5.693000e+02 -1.521002e+01
+2 13956     -2.114001e+01 4.794200e+02
+3 13956     -1.640000e+02 1.402000e+02
+8 13956     6.245001e+01 3.777400e+02
+11 13956     4.297500e+02 -7.342999e+01
+13 13956     4.487100e+02 3.645500e+02
+2 13957     -6.127600e+02 4.716000e+02
+3 13957     -7.294300e+02 1.449900e+02
+4 13957     1.324500e+02 -1.925700e+02
+13 13957     -6.306000e+01 3.040900e+02
+14 13957     1.376001e+01 -6.459998e+01
+2 13958     -5.999756e-02 4.681000e+02
+3 13958     -1.444000e+02 1.294300e+02
+11 13958     4.516100e+02 -8.076001e+01
+14 13958     6.489301e+02 -2.195001e+01
+2 13959     5.687000e+01 4.655900e+02
+3 13959     -9.138000e+01 1.267700e+02
+5 13959     8.271600e+02 6.527002e+01
+6 13959     -5.676001e+01 8.477500e+02
+8 13959     1.283500e+02 3.691500e+02
+11 13959     5.145900e+02 -7.754999e+01
+13 13959     5.231300e+02 3.604500e+02
+14 13959     7.159700e+02 -1.902002e+01
+2 13960     -2.879000e+02 4.649100e+02
+3 13960     -4.153600e+02 1.293400e+02
+4 13960     1.205900e+02 -3.862900e+02
+5 13960     4.275400e+02 4.071002e+01
+6 13960     -4.933800e+02 7.672900e+02
+8 13960     -1.582000e+02 3.610600e+02
+14 13960     3.304399e+02 -5.001001e+01
+2 13961     1.468400e+02 4.597700e+02
+3 13961     -7.280029e+00 1.225200e+02
+6 13961     5.916998e+01 8.623200e+02
+8 13961     2.037300e+02 3.658700e+02
+13 13961     6.144399e+02 3.662300e+02
+14 13961     8.269500e+02 -1.433002e+01
+2 13962     1.468400e+02 4.597700e+02
+8 13962     2.037300e+02 3.658700e+02
+9 13962     -3.379999e+01 4.787100e+02
+14 13962     8.269500e+02 -1.433002e+01
+2 13963     -2.407001e+01 4.577500e+02
+5 13963     7.255000e+02 5.116998e+01
+6 13963     -1.603500e+02 8.187000e+02
+8 13963     6.054999e+01 3.607600e+02
+11 13963     4.250800e+02 -9.163000e+01
+13 13963     4.432600e+02 3.458900e+02
+14 13963     6.196200e+02 -3.406000e+01
+2 13964     -4.384800e+02 4.558900e+02
+5 13964     2.712000e+02 2.484998e+01
+8 13964     -2.825500e+02 3.505600e+02
+2 13965     -3.281500e+02 4.496400e+02
+3 13965     -4.541100e+02 1.145900e+02
+4 13965     1.127100e+02 -3.572900e+02
+5 13965     3.834100e+02 2.289001e+01
+6 13965     -5.420300e+02 7.386600e+02
+8 13965     -1.916600e+02 3.466800e+02
+11 13965     1.159800e+02 -1.247000e+02
+2 13966     -3.281500e+02 4.496400e+02
+4 13966     1.127100e+02 -3.572900e+02
+5 13966     3.834100e+02 2.289001e+01
+6 13966     -5.420300e+02 7.386600e+02
+8 13966     -1.916600e+02 3.466800e+02
+11 13966     1.159800e+02 -1.247000e+02
+2 13967     -7.169983e+00 4.499000e+02
+3 13967     -1.508200e+02 1.127100e+02
+5 13967     7.457900e+02 4.454999e+01
+6 13967     -1.376700e+02 8.126700e+02
+8 13967     7.528003e+01 3.548200e+02
+11 13967     4.433300e+02 -9.659003e+01
+13 13967     4.585500e+02 3.408100e+02
+14 13967     6.385601e+02 -4.026001e+01
+2 13968     5.917600e+02 4.505100e+02
+6 13968     5.353000e+02 6.499400e+02
+8 13968     5.505400e+02 3.402900e+02
+9 13968     3.587100e+02 4.843900e+02
+2 13969     5.917600e+02 4.505100e+02
+3 13969     4.372600e+02 1.206400e+02
+6 13969     5.353000e+02 6.499400e+02
+8 13969     5.505400e+02 3.402900e+02
+9 13969     3.587100e+02 4.843900e+02
+2 13970     -1.351001e+01 4.493100e+02
+13 13970     4.528800e+02 3.396400e+02
+14 13970     6.315400e+02 -4.135999e+01
+2 13971     -1.351001e+01 4.493100e+02
+3 13971     -1.568400e+02 1.104300e+02
+5 13971     7.381700e+02 4.515997e+01
+6 13971     -1.460600e+02 8.124300e+02
+8 13971     6.992999e+01 3.553000e+02
+11 13971     4.366000e+02 -9.698999e+01
+13 13971     4.528800e+02 3.396400e+02
+14 13971     6.315400e+02 -4.135999e+01
+2 13972     -3.373999e+01 4.479100e+02
+4 13972     1.030700e+02 -5.784800e+02
+6 13972     -1.719700e+02 8.043400e+02
+8 13972     5.270001e+01 3.526100e+02
+11 13972     4.145300e+02 -1.011800e+02
+14 13972     6.077400e+02 -4.478998e+01
+2 13973     9.591998e+01 4.479400e+02
+3 13973     -5.648999e+01 1.092200e+02
+6 13973     -6.640015e+00 8.357400e+02
+8 13973     1.607400e+02 3.564200e+02
+11 13973     5.579900e+02 -8.882001e+01
+2 13974     -3.830200e+02 4.452200e+02
+3 13974     -5.065000e+02 1.123100e+02
+5 13974     3.265300e+02 1.728998e+01
+8 13974     -2.363300e+02 3.431500e+02
+11 13974     6.465002e+01 -1.291500e+02
+13 13974     1.207400e+02 3.026300e+02
+14 13974     2.322400e+02 -7.422998e+01
+2 13975     1.481000e+02 4.428200e+02
+6 13975     6.085999e+01 8.404500e+02
+8 13975     2.044400e+02 3.525900e+02
+9 13975     -3.213000e+01 4.643200e+02
+2 13976     -2.971300e+02 4.400900e+02
+4 13976     1.080100e+02 -3.773800e+02
+5 13976     4.160699e+02 1.759998e+01
+6 13976     -5.022400e+02 7.352900e+02
+8 13976     -1.656600e+02 3.412300e+02
+13 13976     1.938000e+02 3.063900e+02
+14 13976     3.195601e+02 -7.254999e+01
+2 13977     -2.879200e+02 4.412100e+02
+4 13977     1.080600e+02 -3.834500e+02
+5 13977     4.254500e+02 1.866998e+01
+6 13977     -4.913100e+02 7.382200e+02
+8 13977     -1.581600e+02 3.424100e+02
+11 13977     1.555200e+02 -1.268300e+02
+2 13978     -9.369995e+00 4.412400e+02
+3 13978     -1.528500e+02 1.034100e+02
+5 13978     7.420800e+02 3.588000e+01
+6 13978     -1.409400e+02 8.022200e+02
+8 13978     7.279999e+01 3.485400e+02
+11 13978     4.407300e+02 -1.041900e+02
+13 13978     4.561700e+02 3.330900e+02
+14 13978     6.357300e+02 -4.959003e+01
+2 13979     8.412000e+01 4.407900e+02
+6 13979     -2.171002e+01 8.229900e+02
+11 13979     5.444500e+02 -9.598999e+01
+13 13979     5.477800e+02 3.419400e+02
+2 13980     1.827500e+02 4.403800e+02
+3 13980     2.622998e+01 1.042000e+02
+6 13980     1.058300e+02 8.459100e+02
+2 13981     3.843300e+02 4.394900e+02
+3 13981     2.367900e+02 1.062700e+02
+6 13981     3.071800e+02 7.023500e+02
+8 13981     3.826200e+02 3.371100e+02
+9 13981     1.807200e+02 4.677800e+02
+13 13981     7.590000e+02 2.392600e+02
+2 13982     -5.369995e+00 4.362000e+02
+3 13982     -1.495000e+02 9.857001e+01
+5 13982     7.457500e+02 3.033002e+01
+6 13982     -1.354200e+02 7.969700e+02
+11 13982     4.445500e+02 -1.083500e+02
+13 13982     4.597100e+02 3.290100e+02
+2 13983     2.869000e+01 4.366800e+02
+13 13983     4.932000e+02 3.336200e+02
+2 13984     -6.608002e+01 4.373300e+02
+4 13984     9.784998e+01 -5.492300e+02
+5 13984     6.732400e+02 2.776001e+01
+6 13984     -2.124400e+02 7.834200e+02
+8 13984     2.569000e+01 3.437300e+02
+11 13984     3.796899e+02 -1.122800e+02
+2 13985     -2.759100e+02 4.336200e+02
+4 13985     1.024400e+02 -3.905400e+02
+5 13985     4.377000e+02 1.082001e+01
+6 13985     -4.744800e+02 7.287400e+02
+2 13986     -6.204600e+02 4.330200e+02
+3 13986     -7.389800e+02 1.062900e+02
+2 13987     -5.880900e+02 4.295600e+02
+3 13987     -7.062300e+02 1.018100e+02
+13 13987     -4.471997e+01 2.746300e+02
+14 13987     3.400000e+01 -9.971997e+01
+2 13988     7.280029e+00 4.308500e+02
+5 13988     7.614399e+02 2.672998e+01
+6 13988     -1.191500e+02 7.929000e+02
+8 13988     8.694000e+01 3.405300e+02
+2 13989     -8.991998e+01 4.239700e+02
+3 13989     -2.286600e+02 8.931000e+01
+13 13989     3.784301e+02 3.120900e+02
+14 13989     5.420601e+02 -7.179999e+01
+2 13990     -1.688800e+02 4.212200e+02
+3 13990     -3.025200e+02 8.566998e+01
+4 13990     9.275000e+01 -4.662000e+02
+5 13990     5.539200e+02 5.710022e+00
+8 13990     -5.962000e+01 3.281900e+02
+9 13990     -3.012600e+02 4.362800e+02
+11 13990     2.730000e+02 -1.331900e+02
+13 13990     3.062100e+02 3.022100e+02
+2 13991     -2.868100e+02 4.203900e+02
+3 13991     -4.159600e+02 8.594000e+01
+4 13991     9.682001e+01 -3.816100e+02
+5 13991     4.246700e+02 -9.699707e-01
+6 13991     -4.877100e+02 7.122900e+02
+8 13991     -1.570100e+02 3.255900e+02
+13 13991     2.014900e+02 2.913800e+02
+14 13991     3.286300e+02 -9.065002e+01
+2 13992     3.515002e+01 4.186800e+02
+3 13992     -1.116300e+02 8.172998e+01
+6 13992     -8.378000e+01 7.837200e+02
+9 13992     -1.274200e+02 4.395900e+02
+13 13992     4.974800e+02 3.188900e+02
+14 13992     6.865200e+02 -6.734003e+01
+2 13993     -5.836700e+02 4.175200e+02
+3 13993     -7.031100e+02 8.966998e+01
+2 13994     -5.580400e+02 4.183100e+02
+3 13994     -6.778800e+02 8.931000e+01
+4 13994     1.062600e+02 -2.169600e+02
+13 13994     -2.166998e+01 2.696400e+02
+2 13995     -4.804800e+02 4.169000e+02
+4 13995     1.030200e+02 -2.607200e+02
+5 13995     2.259100e+02 -1.160999e+01
+8 13995     -3.163800e+02 3.191500e+02
+2 13996     -3.038700e+02 4.171600e+02
+5 13996     4.064200e+02 -4.900024e+00
+2 13997     3.098500e+02 4.127300e+02
+3 13997     1.657000e+02 7.987000e+01
+6 13997     2.221000e+02 6.802900e+02
+8 13997     3.223700e+02 3.159500e+02
+9 13997     1.167900e+02 4.421900e+02
+11 13997     6.315200e+02 -2.254600e+02
+13 13997     6.928800e+02 2.295900e+02
+2 13998     3.776300e+02 4.129400e+02
+3 13998     2.312300e+02 8.102002e+01
+6 13998     3.003000e+02 6.698100e+02
+8 13998     3.776700e+02 3.151000e+02
+13 13998     7.512800e+02 2.173800e+02
+2 13999     -7.042700e+02 4.116100e+02
+4 13999     1.085700e+02 -1.404700e+02
+8 13999     -4.994100e+02 3.084600e+02
+13 13999     -1.332500e+02 2.533800e+02
+2 14000     -7.042700e+02 4.116100e+02
+13 14000     -1.332500e+02 2.533800e+02
+2 14001     -4.062500e+02 4.090700e+02
+3 14001     -5.301000e+02 7.713000e+01
+5 14001     2.997700e+02 -1.623999e+01
+2 14002     -9.528003e+01 4.079500e+02
+4 14002     8.287000e+01 -5.209900e+02
+5 14002     6.364600e+02 -1.690002e+00
+6 14002     -2.477000e+02 7.418600e+02
+8 14002     1.539978e+00 3.202600e+02
+13 14002     3.725100e+02 3.017700e+02
+2 14003     -5.496700e+02 4.059000e+02
+8 14003     -3.728600e+02 3.085000e+02
+2 14004     -5.433100e+02 4.042100e+02
+4 14004     9.897998e+01 -2.240500e+02
+5 14004     1.635700e+02 -2.592999e+01
+8 14004     -3.675200e+02 3.060300e+02
+11 14004     -7.859998e+01 -1.678000e+02
+14 14004     7.381000e+01 -1.192000e+02
+2 14005     -6.666998e+01 4.020700e+02
+3 14005     -2.075500e+02 6.620001e+01
+4 14005     7.769000e+01 -5.433600e+02
+6 14005     -2.119700e+02 7.394800e+02
+8 14005     2.551001e+01 3.152300e+02
+9 14005     -2.135200e+02 4.221000e+02
+13 14005     3.984200e+02 2.962400e+02
+14 14005     5.667000e+02 -9.126001e+01
+2 14006     -6.666998e+01 4.020700e+02
+6 14006     -2.119700e+02 7.394800e+02
+9 14006     -2.135200e+02 4.221000e+02
+2 14007     -2.929100e+02 3.997300e+02
+3 14007     -4.213000e+02 6.628003e+01
+8 14007     -1.621300e+02 3.089200e+02
+11 14007     1.487000e+02 -1.583200e+02
+2 14008     -5.794300e+02 3.985200e+02
+3 14008     -7.001100e+02 7.165997e+01
+4 14008     9.772998e+01 -2.037500e+02
+5 14008     1.280100e+02 -3.250000e+01
+12 14008     -6.537700e+02 6.104400e+02
+13 14008     -3.915002e+01 2.533500e+02
+14 14008     3.934998e+01 -1.256900e+02
+2 14009     -3.714100e+02 3.995300e+02
+5 14009     3.339500e+02 -2.363000e+01
+11 14009     7.501001e+01 -1.626200e+02
+2 14010     -3.039500e+02 3.983500e+02
+3 14010     -4.317900e+02 6.510999e+01
+4 14010     8.628998e+01 -3.678700e+02
+5 14010     4.048500e+02 -2.177002e+01
+6 14010     -5.066500e+02 6.821300e+02
+11 14010     1.388400e+02 -1.594800e+02
+2 14011     -1.372100e+02 3.968100e+02
+4 14011     7.728003e+01 -4.866600e+02
+5 14011     5.873900e+02 -1.673999e+01
+6 14011     -2.991500e+02 7.157100e+02
+8 14011     -3.334003e+01 3.089400e+02
+9 14011     -2.734300e+02 4.158200e+02
+2 14012     -1.144400e+02 3.970500e+02
+3 14012     -2.512600e+02 6.159003e+01
+4 14012     7.675000e+01 -5.044000e+02
+5 14012     6.133700e+02 -1.465997e+01
+6 14012     -2.708500e+02 7.226100e+02
+8 14012     -1.440997e+01 3.102200e+02
+13 14012     3.536899e+02 2.877900e+02
+14 14012     5.125800e+02 -1.000800e+02
+2 14013     -3.108200e+02 3.944700e+02
+3 14013     -4.386300e+02 6.121997e+01
+6 14013     -5.146200e+02 6.768700e+02
+2 14014     -3.108200e+02 3.944700e+02
+3 14014     -4.386300e+02 6.121997e+01
+4 14014     8.469000e+01 -3.626600e+02
+5 14014     3.970500e+02 -2.560999e+01
+6 14014     -5.146200e+02 6.768700e+02
+8 14014     -1.770000e+02 3.042800e+02
+11 14014     1.313500e+02 -1.639200e+02
+13 14014     1.793500e+02 2.697100e+02
+14 14014     3.019900e+02 -1.152700e+02
+2 14015     -5.452100e+02 3.928500e+02
+4 14015     9.389001e+01 -2.218800e+02
+5 14015     1.604500e+02 -3.508002e+01
+8 14015     -3.690700e+02 2.987300e+02
+11 14015     -8.001001e+01 -1.750200e+02
+14 14015     7.188000e+01 -1.281500e+02
+2 14016     -2.160800e+02 3.903400e+02
+3 14016     -3.484800e+02 5.634003e+01
+5 14016     4.978800e+02 -2.684003e+01
+6 14016     -3.970600e+02 6.902300e+02
+8 14016     -9.859000e+01 3.028800e+02
+9 14016     -3.405900e+02 4.076500e+02
+11 14016     2.233100e+02 -1.621000e+02
+2 14017     -1.212200e+02 3.899000e+02
+4 14017     7.334998e+01 -4.977100e+02
+5 14017     6.045000e+02 -2.175000e+01
+6 14017     -2.794500e+02 7.127000e+02
+8 14017     -2.009003e+01 3.048400e+02
+2 14018     -1.212200e+02 3.899000e+02
+4 14018     7.334998e+01 -4.977100e+02
+5 14018     6.045000e+02 -2.175000e+01
+6 14018     -2.794500e+02 7.127000e+02
+8 14018     -2.009003e+01 3.048400e+02
+2 14019     -3.410600e+02 3.861500e+02
+5 14019     3.639700e+02 -3.571002e+01
+6 14019     -5.515600e+02 6.577900e+02
+8 14019     -2.013700e+02 2.972700e+02
+11 14019     1.020000e+02 -1.719100e+02
+2 14020     -8.235000e+02 3.855100e+02
+4 14020     1.011200e+02 -8.301001e+01
+8 14020     -5.946400e+02 2.848500e+02
+2 14021     -8.235000e+02 3.855100e+02
+4 14021     1.011200e+02 -8.301001e+01
+5 14021     -9.033002e+01 -4.996002e+01
+8 14021     -5.946400e+02 2.848500e+02
+2 14022     5.202002e+01 3.853500e+02
+8 14022     1.233700e+02 3.036500e+02
+9 14022     -1.123000e+02 4.105100e+02
+2 14023     5.202002e+01 3.853500e+02
+5 14023     8.109100e+02 -1.744000e+01
+6 14023     -6.301001e+01 7.442400e+02
+8 14023     1.233700e+02 3.036500e+02
+9 14023     -1.123000e+02 4.105100e+02
+2 14024     -3.553200e+02 3.838700e+02
+11 14024     8.956000e+01 -1.741700e+02
+2 14025     -1.770100e+02 3.842500e+02
+3 14025     -3.109500e+02 4.926001e+01
+4 14025     7.296002e+01 -4.549900e+02
+5 14025     5.415601e+02 -2.934003e+01
+6 14025     -3.478600e+02 6.935800e+02
+8 14025     -6.594000e+01 2.994900e+02
+2 14026     -1.770100e+02 3.842500e+02
+3 14026     -3.109500e+02 4.926001e+01
+4 14026     7.296002e+01 -4.549900e+02
+5 14026     5.415601e+02 -2.934003e+01
+8 14026     -6.594000e+01 2.994900e+02
+9 14026     -3.066100e+02 4.036500e+02
+11 14026     2.637600e+02 -1.623900e+02
+2 14027     1.285000e+02 3.812300e+02
+3 14027     -2.391998e+01 4.700000e+01
+6 14027     3.533002e+01 7.586900e+02
+8 14027     1.874000e+02 3.020300e+02
+9 14027     -4.739001e+01 4.096000e+02
+13 14027     5.878900e+02 2.969800e+02
+14 14027     7.990400e+02 -9.546002e+01
+2 14028     -8.247700e+02 3.799200e+02
+4 14028     9.890002e+01 -8.173999e+01
+5 14028     -9.316998e+01 -5.463000e+01
+11 14028     -3.017400e+02 -1.935900e+02
+13 14028     -2.198100e+02 2.237300e+02
+2 14029     -5.406100e+02 3.801900e+02
+4 14029     8.745001e+01 -2.233400e+02
+5 14029     1.639800e+02 -4.737000e+01
+8 14029     -3.649700e+02 2.871400e+02
+11 14029     -7.678998e+01 -1.849600e+02
+12 14029     -6.055300e+02 5.967100e+02
+13 14029     -8.919983e+00 2.421100e+02
+14 14029     7.491998e+01 -1.399600e+02
+2 14030     5.853700e+02 3.800400e+02
+7 14030     5.348500e+02 5.448500e+02
+9 14030     3.553900e+02 4.224300e+02
+2 14031     -5.492400e+02 3.779000e+02
+3 14031     -6.703500e+02 5.053998e+01
+4 14031     8.734998e+01 -2.183100e+02
+5 14031     1.553100e+02 -4.846997e+01
+8 14031     -3.723300e+02 2.866700e+02
+12 14031     -6.160400e+02 5.940000e+02
+14 14031     6.683002e+01 -1.410900e+02
+2 14032     1.150100e+02 3.779600e+02
+6 14032     1.820001e+01 7.517900e+02
+9 14032     -5.873999e+01 4.062100e+02
+2 14033     -1.880005e+00 3.760600e+02
+3 14033     -1.464500e+02 4.109003e+01
+5 14033     7.442600e+02 -2.929999e+01
+6 14033     -1.292900e+02 7.221300e+02
+8 14033     7.914001e+01 2.958700e+02
+9 14033     -1.573500e+02 4.012000e+02
+11 14033     4.478900e+02 -1.567300e+02
+13 14033     4.579900e+02 2.804900e+02
+14 14033     6.400800e+02 -1.117900e+02
+2 14034     -1.113700e+02 3.731900e+02
+6 14034     -2.658900e+02 6.946600e+02
+8 14034     -1.129999e+01 2.917100e+02
+2 14035     -1.006400e+02 3.725100e+02
+5 14035     6.265900e+02 -3.707001e+01
+2 14036     -1.006400e+02 3.725100e+02
+5 14036     6.265900e+02 -3.707001e+01
+13 14036     3.651600e+02 2.720900e+02
+2 14037     -7.965800e+02 3.699900e+02
+4 14037     9.387000e+01 -9.371997e+01
+8 14037     -5.732500e+02 2.740500e+02
+11 14037     -2.822900e+02 -1.990700e+02
+2 14038     -3.204900e+02 3.686000e+02
+5 14038     3.845800e+02 -5.053003e+01
+12 14038     -3.471700e+02 6.187500e+02
+2 14039     -2.601800e+02 3.694200e+02
+4 14039     6.928003e+01 -3.936900e+02
+6 14039     -4.500500e+02 6.564600e+02
+8 14039     -1.349300e+02 2.849200e+02
+11 14039     1.801300e+02 -1.790200e+02
+13 14039     2.222000e+02 2.545600e+02
+14 14039     3.534399e+02 -1.346900e+02
+2 14040     2.077002e+01 3.681600e+02
+3 14040     -1.250600e+02 3.290997e+01
+13 14040     4.795000e+02 2.767900e+02
+14 14040     6.667400e+02 -1.170400e+02
+2 14041     2.077002e+01 3.681600e+02
+3 14041     -1.250600e+02 3.290997e+01
+6 14041     -1.014500e+02 7.188800e+02
+9 14041     -1.383000e+02 3.948800e+02
+13 14041     4.795000e+02 2.767900e+02
+2 14042     2.077002e+01 3.681600e+02
+3 14042     -1.250600e+02 3.290997e+01
+9 14042     -1.383000e+02 3.948800e+02
+13 14042     4.795000e+02 2.767900e+02
+14 14042     6.667400e+02 -1.170400e+02
+2 14043     5.837000e+01 3.684900e+02
+6 14043     -5.346997e+01 7.262400e+02
+8 14043     1.294400e+02 2.904600e+02
+9 14043     -1.060000e+02 3.959900e+02
+11 14043     5.146200e+02 -1.585500e+02
+13 14043     5.161500e+02 2.794900e+02
+14 14043     7.113900e+02 -1.147400e+02
+2 14044     -7.727500e+02 3.651900e+02
+4 14044     9.159998e+01 -1.041700e+02
+2 14045     -2.527200e+02 3.642400e+02
+3 14045     -3.844800e+02 3.134003e+01
+4 14045     6.590997e+01 -3.984600e+02
+5 14045     4.568101e+02 -5.197998e+01
+8 14045     -1.282700e+02 2.810300e+02
+11 14045     1.880900e+02 -1.827400e+02
+14 14045     3.613400e+02 -1.393800e+02
+2 14046     6.501300e+02 3.642300e+02
+9 14046     4.112400e+02 4.108100e+02
+12 14046     6.758600e+02 5.551500e+02
+2 14047     -9.528998e+01 3.596400e+02
+4 14047     5.498999e+01 -5.136300e+02
+5 14047     6.314500e+02 -4.976001e+01
+6 14047     -2.454500e+02 6.820100e+02
+8 14047     1.640015e+00 2.814800e+02
+14 14047     5.317100e+02 -1.340600e+02
+2 14048     -2.842500e+02 3.588400e+02
+4 14048     6.445001e+01 -3.754700e+02
+5 14048     4.209700e+02 -5.878003e+01
+6 14048     -4.795200e+02 6.381300e+02
+8 14048     -1.548500e+02 2.768700e+02
+11 14048     1.561700e+02 -1.888400e+02
+12 14048     -3.040400e+02 6.133200e+02
+13 14048     2.009700e+02 2.449200e+02
+2 14049     9.572998e+01 3.595000e+02
+3 14049     -5.585999e+01 2.415997e+01
+6 14049     -5.580017e+00 7.243900e+02
+8 14049     1.605000e+02 2.843600e+02
+9 14049     -7.489001e+01 3.892200e+02
+11 14049     5.575300e+02 -1.629800e+02
+13 14049     5.530100e+02 2.752300e+02
+14 14049     7.569900e+02 -1.207900e+02
+2 14050     1.465400e+02 3.581000e+02
+6 14050     5.879999e+01 7.337000e+02
+9 14050     -3.137000e+01 3.896300e+02
+2 14051     8.483002e+01 3.568600e+02
+3 14051     -6.459998e+01 2.194000e+01
+9 14051     -8.309998e+01 3.873100e+02
+11 14051     5.453600e+02 -1.657700e+02
+13 14051     5.419000e+02 2.722000e+02
+14 14051     7.435500e+02 -1.240600e+02
+2 14052     1.370100e+02 3.557500e+02
+6 14052     4.653003e+01 7.290100e+02
+2 14053     -3.924300e+02 3.548200e+02
+3 14053     -5.179200e+02 2.387000e+01
+4 14053     6.856000e+01 -3.067700e+02
+5 14053     3.088199e+02 -6.489001e+01
+11 14053     5.463000e+01 -1.965700e+02
+12 14053     -4.304300e+02 5.933300e+02
+2 14054     -2.514300e+02 3.551500e+02
+3 14054     -3.823800e+02 2.204999e+01
+4 14054     6.098999e+01 -3.978800e+02
+5 14054     4.567500e+02 -6.012000e+01
+6 14054     -4.380500e+02 6.414400e+02
+8 14054     -1.276100e+02 2.741900e+02
+11 14054     1.887900e+02 -1.898200e+02
+12 14054     -2.643800e+02 6.148300e+02
+13 14054     2.291300e+02 2.443000e+02
+14 14054     3.617800e+02 -1.471700e+02
+2 14055     -2.588000e+02 3.528600e+02
+4 14055     6.022998e+01 -3.928300e+02
+8 14055     -1.336600e+02 2.721900e+02
+11 14055     1.826300e+02 -1.916300e+02
+13 14055     2.229500e+02 2.416100e+02
+2 14056     1.137900e+02 3.521100e+02
+13 14056     5.709900e+02 2.711600e+02
+2 14057     1.137900e+02 3.521100e+02
+6 14057     1.696002e+01 7.192400e+02
+8 14057     1.753200e+02 2.785500e+02
+9 14057     -5.915997e+01 3.830000e+02
+14 14057     7.790500e+02 -1.269600e+02
+2 14058     4.182001e+01 3.492300e+02
+3 14058     -1.055800e+02 1.417999e+01
+5 14058     7.947300e+02 -5.396997e+01
+6 14058     -7.400000e+01 7.003000e+02
+8 14058     1.156600e+02 2.750900e+02
+9 14058     -1.195600e+02 3.787800e+02
+11 14058     4.953101e+02 -1.755600e+02
+13 14058     4.982500e+02 2.620700e+02
+14 14058     6.900699e+02 -1.350900e+02
+2 14059     3.072998e+01 3.471500e+02
+5 14059     7.733700e+02 -5.789001e+01
+8 14059     1.015400e+02 2.718200e+02
+11 14059     4.768500e+02 -1.790700e+02
+2 14060     -9.309998e+00 3.444400e+02
+3 14060     -1.530500e+02 9.489990e+00
+4 14060     4.079999e+01 -5.829200e+02
+5 14060     7.318700e+02 -6.127002e+01
+6 14060     -1.381300e+02 6.832800e+02
+8 14060     7.334998e+01 2.704200e+02
+9 14060     -1.617900e+02 3.733700e+02
+11 14060     4.399600e+02 -1.834300e+02
+2 14061     5.795000e+02 3.433800e+02
+7 14061     5.261600e+02 5.093900e+02
+9 14061     3.524100e+02 3.909300e+02
+10 14061     7.219800e+02 5.964500e+02
+2 14062     5.795000e+02 3.433800e+02
+7 14062     5.261600e+02 5.093900e+02
+9 14062     3.524100e+02 3.909300e+02
+10 14062     7.219800e+02 5.964500e+02
+2 14063     -7.644800e+02 3.394700e+02
+5 14063     -4.582001e+01 -8.627002e+01
+8 14063     -5.471700e+02 2.504300e+02
+11 14063     -2.597000e+02 -2.184500e+02
+2 14064     3.854000e+02 3.368500e+02
+7 14064     3.809800e+02 5.687000e+02
+8 14064     3.825300e+02 2.528100e+02
+9 14064     1.839301e+02 3.790000e+02
+13 14064     7.489100e+02 1.513000e+02
+2 14065     -2.312700e+02 3.220000e+02
+5 14065     4.754900e+02 -9.078003e+01
+2 14066     -2.339100e+02 3.167000e+02
+5 14066     4.710300e+02 -9.626001e+01
+8 14066     -1.143700e+02 2.441100e+02
+12 14066     -2.427200e+02 5.766100e+02
+14 14066     3.758101e+02 -1.832100e+02
+2 14067     -4.106000e+01 3.165400e+02
+9 14067     -1.882600e+02 3.482400e+02
+11 14067     4.043700e+02 -2.075200e+02
+13 14067     4.170000e+02 2.299900e+02
+2 14068     3.056400e+02 3.163100e+02
+3 14068     1.634500e+02 -1.210999e+01
+7 14068     3.093900e+02 5.652800e+02
+8 14068     3.181800e+02 2.381300e+02
+9 14068     1.155600e+02 3.594400e+02
+12 14068     3.215601e+02 5.572100e+02
+13 14068     6.792300e+02 1.494700e+02
+2 14069     -3.913900e+02 3.125700e+02
+5 14069     3.058900e+02 -1.027600e+02
+2 14070     -8.851001e+01 3.109200e+02
+8 14070     7.140015e+00 2.430800e+02
+9 14070     -2.286200e+02 3.419100e+02
+13 14070     3.725300e+02 2.223100e+02
+14 14070     5.367100e+02 -1.791100e+02
+2 14071     -4.035000e+02 3.105000e+02
+3 14071     -5.296800e+02 -1.970001e+01
+8 14071     -2.520900e+02 2.356300e+02
+2 14072     -1.007200e+02 3.088800e+02
+8 14072     -2.859985e+00 2.438700e+02
+11 14072     3.397200e+02 -2.179200e+02
+2 14073     -5.263000e+01 3.042000e+02
+3 14073     -1.939900e+02 -2.827002e+01
+8 14073     3.703003e+01 2.371300e+02
+9 14073     -1.976100e+02 3.373600e+02
+2 14074     -5.795001e+01 3.016300e+02
+3 14074     -1.983600e+02 -3.188000e+01
+8 14074     3.150000e+01 2.346400e+02
+9 14074     -2.014300e+02 3.341400e+02
+2 14075     -8.236900e+02 2.937200e+02
+8 14075     -5.948500e+02 2.130900e+02
+2 14076     -3.171100e+02 2.938500e+02
+3 14076     -4.460200e+02 -3.783002e+01
+5 14076     3.808199e+02 -1.184900e+02
+6 14076     -5.130700e+02 5.557300e+02
+8 14076     -1.815600e+02 2.244700e+02
+2 14077     -3.262000e+02 2.919000e+02
+6 14077     -5.243300e+02 5.509100e+02
+2 14078     -4.431700e+02 2.826100e+02
+7 14078     -3.871100e+02 5.715800e+02
+2 14079     3.709900e+02 2.821100e+02
+7 14079     3.636000e+02 5.190100e+02
+9 14079     1.720100e+02 3.322600e+02
+12 14079     3.897800e+02 5.128000e+02
+2 14080     3.494301e+02 2.773700e+02
+3 14080     2.071100e+02 -4.833002e+01
+6 14080     2.638200e+02 5.161700e+02
+8 14080     3.530700e+02 2.047400e+02
+9 14080     1.542400e+02 3.271700e+02
+11 14080     6.620100e+02 -3.578600e+02
+12 14080     3.672200e+02 5.090300e+02
+2 14081     -4.055500e+02 2.761900e+02
+4 14081     3.081000e+01 -2.906100e+02
+5 14081     2.878900e+02 -1.364800e+02
+2 14082     4.769301e+02 2.736400e+02
+7 14082     4.248000e+02 4.627400e+02
+9 14082     2.653300e+02 3.287000e+02
+2 14083     3.160000e+02 2.711500e+02
+8 14083     3.262200e+02 2.013900e+02
+12 14083     3.322900e+02 5.065500e+02
+2 14084     -6.161700e+02 2.696100e+02
+5 14084     8.133002e+01 -1.429100e+02
+7 14084     -5.617700e+02 5.409000e+02
+2 14085     3.938600e+02 2.689200e+02
+3 14085     2.503000e+02 -5.482001e+01
+6 14085     3.135400e+02 5.007300e+02
+8 14085     3.891100e+02 1.973700e+02
+9 14085     1.922300e+02 3.215000e+02
+2 14086     4.314600e+02 2.648000e+02
+6 14086     3.442000e+02 4.598500e+02
+8 14086     4.155900e+02 1.898500e+02
+9 14086     2.273101e+02 3.197600e+02
+2 14087     -8.859003e+01 2.629100e+02
+3 14087     -2.270800e+02 -6.940997e+01
+5 14087     6.279600e+02 -1.462800e+02
+8 14087     9.020020e+00 2.048500e+02
+9 14087     -2.241100e+02 3.005700e+02
+2 14088     -1.777300e+02 2.613000e+02
+4 14088     6.450012e+00 -4.372300e+02
+5 14088     5.272900e+02 -1.485600e+02
+9 14088     -3.031100e+02 2.948800e+02
+2 14089     -8.033002e+01 2.599200e+02
+6 14089     -2.221700e+02 5.664300e+02
+12 14089     -5.573999e+01 5.384900e+02
+2 14090     -1.094600e+02 2.582800e+02
+3 14090     -2.491900e+02 -7.515002e+01
+8 14090     -1.087000e+01 1.992900e+02
+2 14091     -7.249300e+02 2.566100e+02
+5 14091     -1.944000e+01 -1.543600e+02
+2 14092     -7.249300e+02 2.566100e+02
+4 14092     4.214001e+01 -1.174400e+02
+5 14092     -1.944000e+01 -1.543600e+02
+2 14093     -7.249300e+02 2.566100e+02
+4 14093     4.214001e+01 -1.174400e+02
+5 14093     -1.944000e+01 -1.543600e+02
+13 14093     -1.521500e+02 1.455500e+02
+2 14094     3.904500e+02 2.570900e+02
+3 14094     2.474200e+02 -6.653003e+01
+6 14094     3.092900e+02 4.877100e+02
+8 14094     3.862300e+02 1.888000e+02
+2 14095     -5.919000e+02 2.534200e+02
+4 14095     3.278003e+01 -1.840600e+02
+5 14095     1.031600e+02 -1.568000e+02
+8 14095     -4.061500e+02 1.872300e+02
+2 14096     -5.919000e+02 2.534200e+02
+4 14096     3.278003e+01 -1.840600e+02
+5 14096     1.031600e+02 -1.568000e+02
+2 14097     -1.073100e+02 2.529800e+02
+6 14097     -2.549800e+02 5.527700e+02
+8 14097     -8.510010e+00 1.960800e+02
+12 14097     -8.802002e+01 5.274600e+02
+2 14098     -4.350600e+02 2.523200e+02
+3 14098     -5.627700e+02 -7.827002e+01
+4 14098     2.197998e+01 -2.707800e+02
+5 14098     2.565100e+02 -1.568700e+02
+8 14098     -2.777000e+02 1.899700e+02
+2 14099     -4.350600e+02 2.523200e+02
+3 14099     -5.627700e+02 -7.827002e+01
+4 14099     2.197998e+01 -2.707800e+02
+5 14099     2.565100e+02 -1.568700e+02
+8 14099     -2.777000e+02 1.899700e+02
+2 14100     -1.702700e+02 2.505800e+02
+3 14100     -3.068700e+02 -8.375000e+01
+5 14100     5.312100e+02 -1.615500e+02
+7 14100     -1.002200e+02 5.687000e+02
+8 14100     -6.110999e+01 1.920100e+02
+12 14100     -1.663400e+02 5.130600e+02
+2 14101     -4.459003e+01 2.509400e+02
+5 14101     6.789301e+02 -1.539900e+02
+14 14101     5.822600e+02 -2.347600e+02
+2 14102     3.385999e+01 2.467500e+02
+6 14102     -8.187000e+01 5.746500e+02
+8 14102     1.085900e+02 1.925900e+02
+9 14102     -1.227700e+02 2.892600e+02
+14 14102     6.741500e+02 -2.360700e+02
+2 14103     7.295699e+02 2.460700e+02
+7 14103     6.494600e+02 3.790500e+02
+9 14103     4.797400e+02 3.129900e+02
+2 14104     2.609900e+02 2.455800e+02
+7 14104     2.672300e+02 5.062200e+02
+2 14105     -3.835100e+02 2.439600e+02
+4 14105     1.359998e+01 -2.998500e+02
+7 14105     -3.220600e+02 5.433000e+02
+8 14105     -2.358600e+02 1.830800e+02
+12 14105     -4.099400e+02 4.779000e+02
+13 14105     1.120100e+02 1.527900e+02
+14 14105     2.181300e+02 -2.530500e+02
+2 14106     -4.501001e+01 2.406900e+02
+3 14106     -1.872300e+02 -9.114001e+01
+5 14106     6.773000e+02 -1.650000e+02
+6 14106     -1.784900e+02 5.508600e+02
+7 14106     3.775000e+01 5.753200e+02
+13 14106     4.072900e+02 1.695000e+02
+14 14106     5.811200e+02 -2.445500e+02
+2 14107     -4.501001e+01 2.406900e+02
+3 14107     -1.872300e+02 -9.114001e+01
+5 14107     6.773000e+02 -1.650000e+02
+6 14107     -1.784900e+02 5.508600e+02
+7 14107     3.775000e+01 5.753200e+02
+8 14107     4.319000e+01 1.869300e+02
+9 14107     -1.888700e+02 2.816000e+02
+11 14107     3.976801e+02 -2.698100e+02
+13 14107     4.072900e+02 1.695000e+02
+14 14107     5.811200e+02 -2.445500e+02
+2 14108     -3.657300e+02 2.401100e+02
+6 14108     -5.675500e+02 4.822800e+02
+8 14108     -2.210100e+02 1.812100e+02
+13 14108     1.269600e+02 1.512100e+02
+2 14109     -3.657300e+02 2.401100e+02
+4 14109     1.035999e+01 -3.104900e+02
+5 14109     3.249100e+02 -1.684800e+02
+6 14109     -5.675500e+02 4.822800e+02
+7 14109     -3.036200e+02 5.422100e+02
+8 14109     -2.210100e+02 1.812100e+02
+11 14109     7.596997e+01 -2.803400e+02
+12 14109     -3.890400e+02 4.766300e+02
+13 14109     1.269600e+02 1.512100e+02
+2 14110     -3.657300e+02 2.401100e+02
+3 14110     -4.942800e+02 -8.946002e+01
+5 14110     3.249100e+02 -1.684800e+02
+6 14110     -5.675500e+02 4.822800e+02
+7 14110     -3.036200e+02 5.422100e+02
+8 14110     -2.210100e+02 1.812100e+02
+11 14110     7.596997e+01 -2.803400e+02
+13 14110     1.269600e+02 1.512100e+02
+2 14111     -2.747600e+02 2.381800e+02
+4 14111     2.049988e+00 -3.676400e+02
+8 14111     -1.467900e+02 1.807600e+02
+2 14112     2.998700e+02 2.370500e+02
+7 14112     2.993500e+02 4.905400e+02
+9 14112     1.123900e+02 2.908500e+02
+13 14112     6.660800e+02 8.579001e+01
+2 14113     -7.346002e+01 2.355200e+02
+5 14113     6.437200e+02 -1.695100e+02
+6 14113     -2.130000e+02 5.397300e+02
+7 14113     6.719971e+00 5.678800e+02
+8 14113     1.983002e+01 1.825900e+02
+9 14113     -2.126500e+02 2.762900e+02
+11 14113     3.667100e+02 -2.749600e+02
+12 14113     -4.729999e+01 5.134700e+02
+13 14113     3.805300e+02 1.636700e+02
+14 14113     5.486300e+02 -2.505000e+02
+2 14114     -1.228200e+02 2.324800e+02
+5 14114     5.879700e+02 -1.744000e+02
+6 14114     -2.718000e+02 5.254700e+02
+2 14115     4.412000e+02 2.306800e+02
+6 14115     3.539800e+02 4.212700e+02
+8 14115     4.233800e+02 1.622700e+02
+9 14115     2.364301e+02 2.915700e+02
+13 14115     7.640800e+02 2.909998e+01
+2 14116     4.412000e+02 2.306800e+02
+6 14116     3.539800e+02 4.212700e+02
+9 14116     2.364301e+02 2.915700e+02
+2 14117     -5.097998e+01 2.273200e+02
+7 14117     3.065997e+01 5.618600e+02
+9 14117     -1.935300e+02 2.692800e+02
+11 14117     3.901400e+02 -2.809900e+02
+13 14117     4.006200e+02 1.581300e+02
+14 14117     5.731600e+02 -2.579300e+02
+2 14118     7.371200e+02 2.209600e+02
+7 14118     6.513700e+02 3.530200e+02
+9 14118     4.860900e+02 2.923000e+02
+2 14119     -1.691900e+02 2.201600e+02
+3 14119     -3.053000e+02 -1.114600e+02
+5 14119     5.318400e+02 -1.858100e+02
+8 14119     -5.978003e+01 1.688900e+02
+12 14119     -1.604000e+02 4.837600e+02
+13 14119     2.929900e+02 1.460700e+02
+14 14119     4.401000e+02 -2.688700e+02
+2 14120     -5.875400e+02 2.160800e+02
+4 14120     1.659998e+01 -1.829000e+02
+5 14120     1.036300e+02 -1.883100e+02
+7 14120     -5.274900e+02 4.973800e+02
+8 14120     -4.023500e+02 1.579600e+02
+11 14120     -1.223600e+02 -2.988200e+02
+2 14121     4.413900e+02 2.126100e+02
+7 14121     3.880699e+02 4.140900e+02
+8 14121     4.229000e+02 1.470500e+02
+12 14121     4.409399e+02 4.073700e+02
+2 14122     -3.570001e+01 2.106800e+02
+6 14122     -1.649200e+02 5.177900e+02
+7 14122     4.772998e+01 5.481600e+02
+8 14122     5.248999e+01 1.627200e+02
+9 14122     -1.798300e+02 2.550900e+02
+12 14122     1.300049e-01 4.915400e+02
+2 14123     -1.695300e+02 2.104000e+02
+5 14123     5.302600e+02 -1.953200e+02
+7 14123     -9.759003e+01 5.356200e+02
+8 14123     -6.012000e+01 1.613800e+02
+12 14123     -1.605100e+02 4.739800e+02
+2 14124     -1.822000e+02 2.072100e+02
+3 14124     -3.193300e+02 -1.259100e+02
+4 14124     -2.145001e+01 -4.268900e+02
+5 14124     5.166100e+02 -1.984800e+02
+6 14124     -3.444900e+02 4.830500e+02
+7 14124     -1.107600e+02 5.308000e+02
+8 14124     -7.023999e+01 1.579000e+02
+12 14124     -1.740700e+02 4.690100e+02
+2 14125     -2.400000e+02 2.061300e+02
+7 14125     -1.714100e+02 5.252600e+02
+12 14125     -2.411200e+02 4.604500e+02
+13 14125     2.306000e+02 1.326900e+02
+14 14125     3.633300e+02 -2.828400e+02
+2 14126     -7.437000e+01 2.052200e+02
+5 14126     6.387300e+02 -1.992400e+02
+6 14126     -2.130900e+02 5.042800e+02
+7 14126     5.530029e+00 5.397700e+02
+11 14126     3.655900e+02 -2.995100e+02
+12 14126     -4.742999e+01 4.817200e+02
+14 14126     5.450699e+02 -2.797400e+02
+2 14127     3.187500e+02 2.035600e+02
+8 14127     3.276200e+02 1.464200e+02
+2 14128     3.187500e+02 2.035600e+02
+8 14128     3.276200e+02 1.464200e+02
+9 14128     1.290900e+02 2.635100e+02
+10 14128     4.773300e+02 5.613200e+02
+2 14129     3.273700e+02 2.018800e+02
+12 14129     3.429700e+02 4.307100e+02
+2 14130     -5.915002e+01 2.007100e+02
+5 14130     6.564200e+02 -2.036200e+02
+7 14130     2.206000e+01 5.371500e+02
+8 14130     3.144000e+01 1.548600e+02
+12 14130     -2.875000e+01 4.789100e+02
+13 14130     3.914399e+02 1.373700e+02
+14 14130     5.624000e+02 -2.836700e+02
+2 14131     3.572900e+02 1.956900e+02
+3 14131     2.174600e+02 -1.266000e+02
+8 14131     3.585200e+02 1.388700e+02
+9 14131     1.635300e+02 2.575500e+02
+10 14131     5.135000e+02 5.397800e+02
+2 14132     -2.792300e+02 1.893500e+02
+6 14132     -4.596400e+02 4.421400e+02
+7 14132     -2.120400e+02 5.056100e+02
+11 14132     1.562000e+02 -3.169600e+02
+2 14133     -1.879400e+02 1.888900e+02
+13 14133     2.755200e+02 1.224000e+02
+2 14134     -2.728200e+02 1.882500e+02
+3 14134     -4.059200e+02 -1.432400e+02
+4 14134     -2.245001e+01 -3.629300e+02
+5 14134     4.161801e+02 -2.157100e+02
+6 14134     -4.515500e+02 4.430900e+02
+7 14134     -2.059100e+02 5.055400e+02
+8 14134     -1.449200e+02 1.419000e+02
+9 14134     -3.803300e+02 2.282500e+02
+12 14134     -2.787600e+02 4.370100e+02
+13 14134     2.016400e+02 1.172200e+02
+14 14134     3.270500e+02 -3.008300e+02
+2 14135     -2.728200e+02 1.882500e+02
+4 14135     -2.245001e+01 -3.629300e+02
+5 14135     4.161801e+02 -2.157100e+02
+6 14135     -4.515500e+02 4.430900e+02
+7 14135     -2.059100e+02 5.055400e+02
+8 14135     -1.449200e+02 1.419000e+02
+9 14135     -3.803300e+02 2.282500e+02
+13 14135     2.016400e+02 1.172200e+02
+14 14135     3.270500e+02 -3.008300e+02
+2 14136     6.209399e+02 1.816100e+02
+6 14136     5.515800e+02 3.415600e+02
+7 14136     5.418300e+02 3.442300e+02
+8 14136     5.709600e+02 1.167200e+02
+9 14136     3.895000e+02 2.557500e+02
+10 14136     7.251899e+02 3.906500e+02
+12 14136     6.315000e+02 3.520100e+02
+2 14137     -4.289500e+02 1.798700e+02
+4 14137     -1.304999e+01 -2.665500e+02
+11 14137     1.544000e+01 -3.255200e+02
+2 14138     -2.809600e+02 1.798700e+02
+6 14138     -4.602200e+02 4.323500e+02
+2 14139     6.463700e+02 1.782400e+02
+3 14139     5.017000e+02 -1.322700e+02
+6 14139     5.793300e+02 3.346700e+02
+7 14139     5.638300e+02 3.345000e+02
+8 14139     5.919700e+02 1.134000e+02
+9 14139     4.109000e+02 2.534700e+02
+10 14139     7.510699e+02 3.762000e+02
+12 14139     6.583199e+02 3.454500e+02
+2 14140     3.540900e+02 1.716800e+02
+7 14140     3.397200e+02 4.195100e+02
+8 14140     3.560400e+02 1.201700e+02
+10 14140     5.062800e+02 5.135600e+02
+12 14140     3.698700e+02 3.954500e+02
+13 14140     7.041600e+02 2.196997e+01
+2 14141     7.546500e+02 1.656100e+02
+9 14141     5.014399e+02 2.461500e+02
+2 14142     -5.627900e+02 1.635700e+02
+8 14142     -3.825600e+02 1.164700e+02
+2 14143     3.671500e+02 1.632000e+02
+6 14143     2.809000e+02 3.855900e+02
+12 14143     3.834600e+02 3.838800e+02
+13 14143     7.138300e+02 1.272998e+01
+2 14144     -5.276300e+02 1.616500e+02
+7 14144     -4.630900e+02 4.567900e+02
+2 14145     -4.135700e+02 1.545900e+02
+4 14145     -2.588000e+01 -2.728000e+02
+7 14145     -3.482500e+02 4.625600e+02
+10 14145     -2.975200e+02 6.187100e+02
+11 14145     2.828998e+01 -3.436200e+02
+2 14146     -4.135700e+02 1.545900e+02
+4 14146     -2.588000e+01 -2.728000e+02
+7 14146     -3.482500e+02 4.625600e+02
+10 14146     -2.975200e+02 6.187100e+02
+11 14146     2.828998e+01 -3.436200e+02
+2 14147     6.798800e+02 1.507200e+02
+9 14147     4.396200e+02 2.316900e+02
+10 14147     7.800400e+02 3.322400e+02
+12 14147     6.934700e+02 3.111800e+02
+2 14148     -6.092000e+02 1.502400e+02
+4 14148     -1.179999e+01 -1.654500e+02
+5 14148     7.677002e+01 -2.443100e+02
+7 14148     -5.421300e+02 4.393700e+02
+8 14148     -4.194600e+02 1.054400e+02
+2 14149     1.103500e+02 1.488700e+02
+6 14149     -6.471002e+01 1.815700e+02
+8 14149     1.273800e+02 7.973001e+01
+2 14150     1.103500e+02 1.488700e+02
+3 14150     1.271997e+01 -1.695900e+02
+4 14150     -1.827800e+02 -4.389800e+02
+5 14150     6.503101e+02 -5.106801e+02
+6 14150     -6.471002e+01 1.815700e+02
+8 14150     1.273800e+02 7.973001e+01
+12 14150     -3.334003e+01 2.337400e+02
+13 14150     3.777500e+02 -1.006900e+02
+2 14151     -6.355300e+02 1.431600e+02
+4 14151     -1.297998e+01 -1.513800e+02
+11 14151     -1.651100e+02 -3.504700e+02
+2 14152     -6.355300e+02 1.431600e+02
+4 14152     -1.297998e+01 -1.513800e+02
+5 14152     5.134003e+01 -2.504700e+02
+11 14152     -1.651100e+02 -3.504700e+02
+2 14153     -6.666700e+02 1.412200e+02
+7 14153     -5.973800e+02 4.252700e+02
+11 14153     -1.906600e+02 -3.510500e+02
+2 14154     -6.218800e+02 1.396700e+02
+8 14154     -4.295400e+02 9.706000e+01
+10 14154     -5.439000e+02 5.889200e+02
+12 14154     -6.691300e+02 3.393600e+02
+2 14155     -2.763400e+02 1.399500e+02
+6 14155     -4.526200e+02 3.886800e+02
+7 14155     -2.076000e+02 4.632100e+02
+9 14155     -3.815500e+02 1.858500e+02
+2 14156     6.653000e+02 1.394500e+02
+3 14156     5.221500e+02 -1.686400e+02
+9 14156     4.272100e+02 2.216100e+02
+10 14156     7.608900e+02 3.255200e+02
+12 14156     6.765699e+02 3.005900e+02
+2 14157     3.244301e+02 1.299400e+02
+3 14157     2.169000e+02 -1.824200e+02
+8 14157     3.024400e+02 6.103000e+01
+2 14158     -6.674000e+02 1.295200e+02
+4 14158     -1.587000e+01 -1.342200e+02
+5 14158     1.976001e+01 -2.617200e+02
+7 14158     -5.970600e+02 4.160400e+02
+14 14158     -6.264001e+01 -3.535300e+02
+2 14159     -5.148500e+02 1.268100e+02
+5 14159     1.706500e+02 -2.658900e+02
+8 14159     -3.425100e+02 8.923001e+01
+10 14159     -4.184200e+02 5.837000e+02
+13 14159     2.309998e+00 6.445001e+01
+2 14160     6.458199e+02 1.274000e+02
+3 14160     5.041300e+02 -1.806000e+02
+6 14160     5.762400e+02 2.820700e+02
+8 14160     5.909200e+02 7.314001e+01
+9 14160     4.118600e+02 2.122500e+02
+10 14160     7.385500e+02 3.221200e+02
+2 14161     6.458199e+02 1.274000e+02
+6 14161     5.762400e+02 2.820700e+02
+8 14161     5.909200e+02 7.314001e+01
+9 14161     4.118600e+02 2.122500e+02
+10 14161     7.385500e+02 3.221200e+02
+12 14161     6.553101e+02 2.929900e+02
+2 14162     -2.987600e+02 1.246800e+02
+5 14162     3.822100e+02 -2.749700e+02
+8 14162     -1.661700e+02 9.125000e+01
+12 14162     -3.036400e+02 3.683900e+02
+2 14163     6.758002e+01 1.227000e+02
+8 14163     9.167999e+01 5.872000e+01
+2 14164     6.856400e+02 1.228900e+02
+9 14164     4.448800e+02 2.080900e+02
+10 14164     7.788199e+02 3.000600e+02
+2 14165     -5.518500e+02 1.221200e+02
+4 14165     -2.859998e+01 -1.922800e+02
+5 14165     1.275200e+02 -2.701400e+02
+7 14165     -4.842200e+02 4.209200e+02
+10 14165     -4.612000e+02 5.762600e+02
+11 14165     -9.623999e+01 -3.658700e+02
+12 14165     -5.897800e+02 3.319400e+02
+13 14165     -2.671002e+01 6.012000e+01
+14 14165     4.394000e+01 -3.597500e+02
+2 14166     -2.571500e+02 1.159300e+02
+11 14166     1.755200e+02 -3.724600e+02
+2 14167     1.349400e+02 1.082300e+02
+4 14167     -2.170400e+02 -4.342100e+02
+6 14167     -4.263000e+01 1.224000e+02
+7 14167     -7.287000e+01 2.037500e+02
+2 14168     -1.673400e+02 1.042900e+02
+8 14168     -5.952002e+01 7.573999e+01
+13 14168     2.809600e+02 5.109003e+01
+14 14168     4.256100e+02 -3.872900e+02
+2 14169     6.971000e+02 1.026300e+02
+9 14169     4.553101e+02 1.925600e+02
+12 14169     7.088700e+02 2.558500e+02
+2 14170     -6.466998e+01 1.002900e+02
+13 14170     3.607400e+02 3.665002e+01
+14 14170     5.261000e+02 -4.092800e+02
+2 14171     7.423999e+01 1.004600e+02
+8 14171     9.532001e+01 3.950000e+01
+2 14172     6.481600e+02 9.217999e+01
+6 14172     5.769100e+02 2.423200e+02
+8 14172     5.922700e+02 4.276999e+01
+9 14172     4.143900e+02 1.815900e+02
+10 14172     7.321000e+02 2.814800e+02
+12 14172     6.560200e+02 2.521600e+02
+2 14173     1.628003e+01 8.921002e+01
+4 14173     -1.940900e+02 -3.711100e+02
+5 14173     5.466801e+02 -5.466300e+02
+6 14173     -1.647300e+02 1.178400e+02
+12 14173     -1.320400e+02 1.722400e+02
+2 14174     7.305300e+02 7.819000e+01
+9 14174     4.835300e+02 1.729700e+02
+10 14174     8.149500e+02 2.326700e+02
+12 14174     7.441300e+02 2.252100e+02
+2 14175     -3.973800e+02 7.689001e+01
+7 14175     -3.273800e+02 3.979900e+02
+2 14176     7.940002e+00 7.153998e+01
+3 14176     -8.069000e+01 -2.457600e+02
+5 14176     5.362800e+02 -5.634600e+02
+6 14176     -1.726300e+02 9.739001e+01
+7 14176     -1.686400e+02 1.962300e+02
+8 14176     4.359003e+01 1.742999e+01
+12 14176     -1.410800e+02 1.522400e+02
+13 14176     2.933000e+02 -1.472100e+02
+2 14177     -3.641800e+02 7.106000e+01
+6 14177     -5.514500e+02 2.945100e+02
+7 14177     -2.946200e+02 3.961300e+02
+8 14177     -2.191600e+02 4.897000e+01
+9 14177     -4.533000e+02 1.227900e+02
+11 14177     7.075000e+01 -4.059200e+02
+2 14178     4.056801e+02 7.088000e+01
+3 14178     2.947500e+02 -2.376100e+02
+8 14178     3.699700e+02 1.232999e+01
+2 14179     5.004900e+02 6.876001e+01
+6 14179     4.132900e+02 2.380700e+02
+9 14179     2.902000e+02 1.565600e+02
+10 14179     5.807300e+02 3.154800e+02
+15 14179     7.786700e+02 3.510500e+02
+2 14180     4.164000e+02 6.165997e+01
+3 14180     3.054700e+02 -2.457000e+02
+2 14181     -4.705800e+02 4.354999e+01
+7 14181     -3.981200e+02 3.634800e+02
+15 14181     -3.305900e+02 5.543000e+02
+2 14182     2.133500e+02 4.444000e+01
+13 14182     4.270300e+02 -2.150100e+02
+2 14183     2.133500e+02 4.444000e+01
+13 14183     4.270300e+02 -2.150100e+02
+2 14184     -6.640997e+01 4.182001e+01
+3 14184     -1.620900e+02 -2.780700e+02
+8 14184     -9.840027e+00 2.799988e-01
+9 14184     -1.737100e+02 1.147200e+02
+2 14185     -1.984003e+01 3.894000e+01
+5 14185     5.059399e+02 -5.836200e+02
+6 14185     -2.009900e+02 6.770001e+01
+12 14185     -1.676300e+02 1.227000e+02
+13 14185     2.712900e+02 -1.636900e+02
+2 14186     -4.221900e+02 2.421997e+01
+11 14186     9.809998e+00 -4.417300e+02
+2 14187     5.771600e+02 1.188000e+01
+7 14187     4.844500e+02 2.019200e+02
+9 14187     3.571801e+02 1.117100e+02
+2 14188     2.940000e+02 -1.349976e+00
+13 14188     4.843600e+02 -2.623500e+02
+15 14188     1.278600e+02 7.287000e+01
+2 14189     8.147500e+02 -4.650024e+00
+3 14189     6.755300e+02 -3.011000e+02
+7 14189     6.872500e+02 1.280000e+02
+9 14189     5.544000e+02 1.064800e+02
+2 14190     7.957500e+02 -1.334998e+01
+7 14190     6.696600e+02 1.252200e+02
+9 14190     5.388300e+02 9.882001e+01
+12 14190     8.081200e+02 1.194200e+02
+2 14191     7.411100e+02 -2.427002e+01
+9 14191     4.946200e+02 8.810001e+01
+2 14192     1.266300e+02 -3.481000e+01
+3 14192     4.102002e+01 -3.440800e+02
+4 14192     -2.985100e+02 -3.897400e+02
+6 14192     -5.587000e+01 -4.096997e+01
+8 14192     1.322200e+02 -7.490997e+01
+9 14192     -4.199829e-01 6.090002e+01
+12 14192     -4.342999e+01 1.340002e+01
+2 14193     4.340500e+02 -4.171997e+01
+3 14193     3.282900e+02 -3.429000e+02
+2 14194     5.678800e+02 -4.291998e+01
+8 14194     5.069900e+02 -8.065002e+01
+2 14195     4.445601e+02 -4.685999e+01
+3 14195     3.402200e+02 -3.474600e+02
+9 14195     2.601400e+02 6.244000e+01
+2 14196     7.001400e+02 -4.732001e+01
+7 14196     5.826300e+02 1.204300e+02
+9 14196     4.615100e+02 6.733002e+01
+10 14196     7.537300e+02 1.163000e+02
+12 14196     7.028900e+02 9.902002e+01
+2 14197     1.953800e+02 -4.960999e+01
+3 14197     1.078800e+02 -3.558500e+02
+2 14198     -1.262200e+02 -5.689001e+01
+6 14198     -3.081800e+02 -2.990997e+01
+10 14198     -2.896300e+02 1.631700e+02
+2 14199     6.109200e+02 -5.987000e+01
+7 14199     5.054399e+02 1.335600e+02
+8 14199     5.588500e+02 -7.975000e+01
+9 14199     3.865400e+02 5.382001e+01
+12 14199     6.083400e+02 9.896002e+01
+2 14200     6.314200e+02 -8.240997e+01
+6 14200     5.510300e+02 6.334998e+01
+7 14200     5.206801e+02 1.082800e+02
+8 14200     5.762400e+02 -9.917999e+01
+9 14200     4.053400e+02 3.528003e+01
+10 14200     6.791801e+02 1.108600e+02
+12 14200     6.294399e+02 7.278003e+01
+2 14201     7.426000e+02 -9.396002e+01
+9 14201     4.976000e+02 3.004999e+01
+12 14201     7.457800e+02 4.365002e+01
+2 14202     -9.804999e+01 -1.064300e+02
+8 14202     -4.864001e+01 -1.274200e+02
+2 14203     6.438600e+02 -1.087300e+02
+7 14203     5.279600e+02 8.309000e+01
+9 14203     4.161899e+02 1.378998e+01
+2 14204     5.109800e+02 -1.146000e+02
+3 14204     4.094900e+02 -4.099800e+02
+8 14204     4.502200e+02 -1.460700e+02
+2 14205     -1.951001e+01 -1.189800e+02
+6 14205     -2.045000e+02 -1.255300e+02
+2 14206     7.374200e+02 -1.191500e+02
+9 14206     4.941801e+02 8.679993e+00
+2 14207     7.374200e+02 -1.191500e+02
+9 14207     4.941801e+02 8.679993e+00
+2 14208     3.207000e+02 -1.241300e+02
+8 14208     2.875800e+02 -1.539100e+02
+2 14209     3.076200e+02 -1.260000e+02
+6 14209     1.268800e+02 -1.429000e+02
+13 14209     4.717300e+02 -3.637400e+02
+2 14210     3.076200e+02 -1.260000e+02
+6 14210     1.268800e+02 -1.429000e+02
+8 14210     2.771300e+02 -1.542600e+02
+13 14210     4.717300e+02 -3.637400e+02
+2 14211     7.040601e+02 -1.256100e+02
+9 14211     4.665000e+02 2.289978e+00
+2 14212     -5.422998e+01 -1.282300e+02
+3 14212     -1.305600e+02 -4.401600e+02
+6 14212     -2.394200e+02 -1.375100e+02
+7 14212     -2.564500e+02 7.700012e+00
+12 14212     -2.266400e+02 -7.591998e+01
+13 14212     2.122000e+02 -3.012900e+02
+2 14213     7.616200e+02 -1.340000e+02
+12 14213     7.630100e+02 -2.100220e-01
+2 14214     -1.372998e+01 -1.421900e+02
+3 14214     -8.962000e+01 -4.519600e+02
+6 14214     -2.009900e+02 -1.582300e+02
+8 14214     1.469000e+01 -1.607300e+02
+13 14214     2.333800e+02 -3.214200e+02
+2 14215     5.228500e+02 -1.553600e+02
+8 14215     4.612200e+02 -1.764000e+02
+9 14215     3.289200e+02 -2.304999e+01
+2 14216     -9.898999e+01 -1.578600e+02
+3 14216     -1.772000e+02 -4.712700e+02
+2 14217     5.145001e+01 -1.610900e+02
+3 14217     -2.233002e+01 -4.681899e+02
+2 14218     -2.826300e+02 -1.662700e+02
+8 14218     -1.734100e+02 -1.537200e+02
+13 14218     1.161400e+02 -2.110000e+02
+2 14219     -9.796997e+01 -1.718100e+02
+3 14219     -1.768500e+02 -4.857100e+02
+6 14219     -2.811600e+02 -1.688199e+02
+9 14219     -1.829600e+02 -6.395001e+01
+2 14220     3.661400e+02 -1.723300e+02
+7 14220     6.362000e+01 -9.803998e+01
+2 14221     3.661400e+02 -1.723300e+02
+3 14221     2.804399e+02 -4.682800e+02
+9 14221     2.056200e+02 -4.212000e+01
+2 14222     7.770800e+02 -1.779000e+02
+7 14222     6.151200e+02 -2.078003e+01
+2 14223     2.224600e+02 -1.812300e+02
+3 14223     1.445500e+02 -4.813300e+02
+7 14223     -6.376001e+01 -9.053003e+01
+8 14223     2.024300e+02 -2.003900e+02
+12 14223     2.946997e+01 -1.643500e+02
+15 14223     -3.226001e+01 -1.399500e+02
+2 14224     2.882001e+01 -1.823800e+02
+8 14224     4.703003e+01 -1.955600e+02
+2 14225     2.100000e+02 -1.819700e+02
+3 14225     1.329900e+02 -4.822600e+02
+4 14225     -4.142800e+02 -3.900000e+02
+8 14225     1.917600e+02 -2.007200e+02
+2 14226     3.617200e+02 -1.824400e+02
+6 14226     1.751600e+02 -2.152000e+02
+8 14226     3.173900e+02 -2.046500e+02
+12 14226     1.755000e+02 -1.734300e+02
+2 14227     -4.304300e+02 -1.885100e+02
+4 14227     -2.075200e+02 -1.697700e+02
+8 14227     -2.909300e+02 -1.709300e+02
+13 14227     9.000000e+00 -2.132000e+02
+2 14228     2.397500e+02 -1.910300e+02
+10 14228     -7.626001e+01 -1.052700e+02
+2 14229     -2.876900e+02 -1.966300e+02
+13 14229     1.053000e+02 -2.391700e+02
+2 14230     3.377200e+02 -1.991500e+02
+6 14230     1.517200e+02 -2.255601e+02
+2 14231     -3.429500e+02 -2.066300e+02
+7 14231     -3.733500e+02 7.347998e+01
+10 14231     -3.743200e+02 1.542700e+02
+2 14232     4.739301e+02 -2.066200e+02
+3 14232     3.810000e+02 -5.005601e+02
+6 14232     3.036200e+02 -2.094399e+02
+7 14232     1.842500e+02 -1.166000e+02
+8 14232     4.160300e+02 -2.216500e+02
+12 14232     3.216899e+02 -1.760500e+02
+13 14232     6.064900e+02 -4.448500e+02
+2 14233     4.739301e+02 -2.066200e+02
+3 14233     3.810000e+02 -5.005601e+02
+8 14233     4.160300e+02 -2.216500e+02
+2 14234     -3.240100e+02 -2.089700e+02
+7 14234     -3.597400e+02 6.897998e+01
+8 14234     -2.087300e+02 -1.891100e+02
+15 14234     -3.326800e+02 1.387600e+02
+2 14235     1.024500e+02 -2.152700e+02
+6 14235     -8.467001e+01 -2.346899e+02
+12 14235     -8.434003e+01 -1.804900e+02
+2 14236     2.417400e+02 -2.210200e+02
+6 14236     5.521997e+01 -2.459301e+02
+8 14236     2.184400e+02 -2.319400e+02
+12 14236     5.352002e+01 -1.994300e+02
+13 14236     4.027200e+02 -4.273300e+02
+2 14237     -3.087400e+02 -2.251500e+02
+7 14237     -3.538900e+02 4.990997e+01
+8 14237     -1.977000e+02 -2.032200e+02
+13 14237     8.228003e+01 -2.630700e+02
+15 14237     -3.290900e+02 1.104000e+02
+2 14238     4.325000e+01 -2.257300e+02
+3 14238     -3.137000e+01 -5.334399e+02
+6 14238     -1.419400e+02 -2.398199e+02
+8 14238     5.945001e+01 -2.295800e+02
+12 14238     -1.369300e+02 -1.830100e+02
+2 14239     4.325000e+01 -2.257300e+02
+6 14239     -1.419400e+02 -2.398199e+02
+8 14239     5.945001e+01 -2.295800e+02
+12 14239     -1.369300e+02 -1.830100e+02
+2 14240     -3.206000e+02 -2.267600e+02
+3 14240     -4.272600e+02 -5.583700e+02
+7 14240     -3.640900e+02 4.996002e+01
+8 14240     -2.082200e+02 -2.038100e+02
+13 14240     7.354999e+01 -2.622600e+02
+2 14241     2.597000e+02 -2.298800e+02
+3 14241     1.811300e+02 -5.286500e+02
+4 14241     -4.547600e+02 -4.186100e+02
+8 14241     2.334800e+02 -2.395800e+02
+9 14241     1.205900e+02 -9.402002e+01
+13 14241     4.163500e+02 -4.356200e+02
+2 14242     3.557600e+02 -2.312100e+02
+8 14242     3.124500e+02 -2.432700e+02
+2 14243     -3.289000e+02 -2.372600e+02
+3 14243     -4.348600e+02 -5.700300e+02
+2 14244     4.634900e+02 -2.371700e+02
+6 14244     2.926300e+02 -2.394000e+02
+8 14244     4.070900e+02 -2.471900e+02
+2 14245     -1.721997e+01 -2.377800e+02
+6 14245     -1.994500e+02 -2.396200e+02
+9 14245     -1.111100e+02 -1.153100e+02
+2 14246     2.651300e+02 -2.376600e+02
+3 14246     1.869300e+02 -5.339800e+02
+6 14246     7.984998e+01 -2.570699e+02
+9 14246     1.255100e+02 -9.876001e+01
+12 14246     8.019000e+01 -2.125700e+02
+13 14246     4.205800e+02 -4.395300e+02
+2 14247     2.830601e+02 -2.381000e+02
+8 14247     2.532700e+02 -2.461100e+02
+2 14248     -6.152300e+02 -2.493500e+02
+8 14248     -4.394000e+02 -2.188400e+02
+10 14248     -6.241100e+02 1.451200e+02
+13 14248     -1.263400e+02 -2.447700e+02
+15 14248     -6.366800e+02 1.327800e+02
+2 14249     1.830100e+02 -2.489900e+02
+3 14249     1.080100e+02 -5.507400e+02
+6 14249     -3.830017e+00 -2.697900e+02
+8 14249     1.704200e+02 -2.529700e+02
+9 14249     5.817999e+01 -1.138700e+02
+2 14250     4.957000e+02 -2.582100e+02
+3 14250     4.034399e+02 -5.523800e+02
+9 14250     3.111100e+02 -1.091900e+02
+2 14251     -3.586200e+02 -2.695500e+02
+7 14251     -4.079500e+02 5.000000e+00
+9 14251     -4.115300e+02 -1.656800e+02
+13 14251     3.640002e+01 -2.973400e+02
+2 14252     3.613000e+02 -2.700300e+02
+8 14252     3.171500e+02 -2.739000e+02
+2 14253     4.588700e+02 -2.705600e+02
+6 14253     2.881300e+02 -2.657600e+02
+2 14254     -4.808002e+01 -2.706700e+02
+3 14254     -1.252200e+02 -5.839000e+02
+6 14254     -2.280300e+02 -2.640200e+02
+8 14254     -9.750000e+00 -2.600700e+02
+2 14255     -3.544300e+02 -2.737800e+02
+3 14255     -4.587500e+02 -6.082600e+02
+7 14255     -4.052700e+02 6.300049e-01
+8 14255     -2.382900e+02 -2.437700e+02
+9 14255     -4.072200e+02 -1.690300e+02
+13 14255     3.896002e+01 -3.007700e+02
+2 14256     -2.664900e+02 -2.744400e+02
+13 14256     9.414001e+01 -3.186000e+02
+2 14257     -3.234400e+02 -2.752900e+02
+4 14257     -2.787600e+02 -1.844700e+02
+7 14257     -3.823900e+02 -4.229980e+00
+8 14257     -2.132100e+02 -2.458600e+02
+9 14257     -3.795700e+02 -1.683500e+02
+13 14257     5.931000e+01 -3.074100e+02
+2 14258     1.900400e+02 -2.772400e+02
+7 14258     -8.681000e+01 -1.546500e+02
+8 14258     1.754100e+02 -2.769100e+02
+9 14258     6.603003e+01 -1.368000e+02
+2 14259     1.139200e+02 -2.778900e+02
+6 14259     -7.056000e+01 -2.856600e+02
+8 14259     1.155400e+02 -2.725900e+02
+12 14259     -6.695001e+01 -2.348500e+02
+2 14260     1.045500e+02 -2.803100e+02
+3 14260     3.009998e+01 -5.859399e+02
+6 14260     -7.903000e+01 -2.899301e+02
+7 14260     -1.427900e+02 -1.341700e+02
+8 14260     1.088000e+02 -2.739100e+02
+12 14260     -7.490002e+01 -2.371400e+02
+2 14261     5.676801e+02 -2.824200e+02
+8 14261     4.998300e+02 -2.813500e+02
+9 14261     3.689500e+02 -1.278200e+02
+2 14262     2.101300e+02 -2.962400e+02
+6 14262     2.500000e+01 -3.095100e+02
+13 14262     3.761899e+02 -4.683199e+02
+2 14263     3.368300e+02 -2.958000e+02
+3 14263     2.566300e+02 -5.930100e+02
+6 14263     1.547000e+02 -3.060500e+02
+8 14263     2.972100e+02 -2.924800e+02
+12 14263     1.606700e+02 -2.667700e+02
+2 14264     -4.524900e+02 -2.972800e+02
+4 14264     -2.621800e+02 -1.222200e+02
+7 14264     -4.880500e+02 -1.609003e+01
+8 14264     -3.172100e+02 -2.617700e+02
+9 14264     -4.902900e+02 -1.946400e+02
+13 14264     -3.209998e+01 -3.090200e+02
+15 14264     -5.120600e+02 3.427002e+01
+2 14265     1.079300e+02 -2.970800e+02
+8 14265     1.116600e+02 -2.878700e+02
+2 14266     2.694000e+01 -3.006300e+02
+3 14266     -4.675000e+01 -6.109500e+02
+13 14266     2.502200e+02 -4.328600e+02
+2 14267     -8.739990e+00 -3.023100e+02
+9 14267     -1.010700e+02 -1.693200e+02
+13 14267     2.318000e+02 -4.205700e+02
+2 14268     -4.128000e+02 -3.044000e+02
+7 14268     -4.580800e+02 -2.594000e+01
+15 14268     -4.770100e+02 1.707001e+01
+2 14269     9.496002e+01 -3.067100e+02
+8 14269     1.011300e+02 -2.947400e+02
+2 14270     4.301400e+02 -3.078000e+02
+8 14270     3.786000e+02 -3.023400e+02
+2 14271     3.840601e+02 -3.094400e+02
+6 14271     2.066800e+02 -3.112400e+02
+2 14272     2.459800e+02 -3.128300e+02
+4 14272     -4.936600e+02 -4.032000e+02
+6 14272     6.271997e+01 -3.235500e+02
+8 14272     2.229700e+02 -3.045200e+02
+12 14272     6.627002e+01 -2.792100e+02
+2 14273     4.019399e+02 -3.182700e+02
+8 14273     3.537100e+02 -3.112200e+02
+2 14274     -4.056800e+02 -3.195300e+02
+8 14274     -2.819400e+02 -2.819700e+02
+13 14274     -6.919983e+00 -3.355200e+02
+15 14274     -4.812000e+02 -7.210022e+00
+2 14275     4.060300e+02 -3.222500e+02
+8 14275     3.573200e+02 -3.140400e+02
+2 14276     1.234600e+02 -3.337800e+02
+6 14276     -5.916998e+01 -3.392200e+02
+8 14276     1.232200e+02 -3.170200e+02
+13 14276     3.129600e+02 -4.737200e+02
+2 14277     6.796997e+01 -3.435500e+02
+6 14277     -1.143700e+02 -3.409900e+02
+2 14278     -3.880000e+02 -3.455400e+02
+7 14278     -4.541700e+02 -7.309998e+01
+2 14279     -3.681200e+02 -3.470800e+02
+6 14279     -5.474500e+02 -3.032000e+02
+7 14279     -4.404000e+02 -7.573999e+01
+9 14279     -4.124500e+02 -2.304700e+02
+13 14279     1.075000e+01 -3.648100e+02
+2 14280     -4.269400e+02 -3.486800e+02
+7 14280     -4.847400e+02 -7.316998e+01
+9 14280     -4.621600e+02 -2.361400e+02
+15 14280     -5.200500e+02 -4.428003e+01
+2 14281     3.254200e+02 -3.556800e+02
+8 14281     2.882900e+02 -3.402100e+02
+2 14282     1.813000e+02 -3.726400e+02
+6 14282     -2.349976e+00 -3.792600e+02
+12 14282     -3.200073e-01 -3.320900e+02
+2 14283     3.576100e+02 -3.733300e+02
+12 14283     1.850800e+02 -3.405700e+02
+2 14284     -2.899200e+02 -3.755200e+02
+8 14284     -1.955600e+02 -3.321400e+02
+2 14285     -3.188300e+02 -3.759700e+02
+6 14285     -4.938200e+02 -3.399600e+02
+7 14285     -4.126800e+02 -1.113100e+02
+8 14285     -2.189000e+02 -3.311100e+02
+13 14285     3.602002e+01 -3.979300e+02
+2 14286     -5.609400e+02 -3.808900e+02
+8 14286     -4.087700e+02 -3.309700e+02
+13 14286     -1.205200e+02 -3.670800e+02
+2 14287     -3.001700e+02 -3.970200e+02
+6 14287     -4.750900e+02 -3.653900e+02
+7 14287     -4.053700e+02 -1.334100e+02
+2 14288     -2.772800e+02 -4.038199e+02
+12 14288     -4.049000e+02 -2.981200e+02
+2 14289     5.564100e+02 -4.271200e+02
+8 14289     4.837200e+02 -4.032500e+02
+2 14290     4.940002e+00 -4.517000e+02
+6 14290     -1.739900e+02 -4.469301e+02
+12 14290     -1.658800e+02 -3.868500e+02
+2 14291     6.131000e+02 -4.820200e+02
+10 14291     2.978900e+02 -4.174301e+02
+2 14292     -3.865800e+02 -5.007400e+02
+8 14292     -2.825000e+02 -4.361000e+02
+12 14292     -5.279800e+02 -4.084800e+02
+2 14293     6.222000e+02 -5.302000e+02
+9 14293     4.267500e+02 -3.245900e+02
+2 14294     5.187900e+02 -5.360601e+02
+9 14294     3.441500e+02 -3.345100e+02
+2 14295     4.755300e+02 -5.446700e+02
+9 14295     3.101400e+02 -3.427500e+02
+2 14296     4.877300e+02 -5.510601e+02
+9 14296     3.200601e+02 -3.479500e+02
+10 14296     1.266600e+02 -4.589800e+02
+15 14296     2.319800e+02 -5.699200e+02
+2 14297     6.494200e+02 -5.832300e+02
+6 14297     4.568900e+02 -5.965400e+02
+7 14297     2.618700e+02 -4.556700e+02
+2 14298     4.857200e+02 -5.921100e+02
+9 14298     3.221100e+02 -3.804300e+02
+2 14299     4.134500e+02 -5.933900e+02
+7 14299     6.189001e+01 -4.265300e+02
+2 14300     3.837300e+02 -5.958900e+02
+9 14300     2.408000e+02 -3.889000e+02
+2 14301     5.693300e+02 -5.961899e+02
+9 14301     3.888000e+02 -3.789200e+02
+2 14302     3.866500e+02 -6.056200e+02
+9 14302     2.448199e+02 -3.959600e+02
+2 14303     4.313800e+02 -6.075800e+02
+7 14303     7.189001e+01 -4.430900e+02
+12 14303     2.249900e+02 -5.928800e+02
+2 14304     -2.309000e+02 5.949200e+02
+3 14304     -3.587200e+02 2.535500e+02
+4 14304     1.911400e+02 -4.426300e+02
+13 14304     2.584800e+02 4.351700e+02
+14 14304     3.969900e+02 7.440002e+01
+2 14305     -2.549600e+02 5.939900e+02
+4 14305     1.895400e+02 -4.241100e+02
+14 14305     3.724600e+02 7.146997e+01
+2 14306     -9.278998e+01 5.895400e+02
+14 14306     5.474700e+02 8.389001e+01
+2 14307     3.287000e+01 5.894600e+02
+3 14307     -1.139200e+02 2.459200e+02
+13 14307     5.085300e+02 4.634100e+02
+14 14307     6.935601e+02 1.003200e+02
+2 14308     -1.005700e+02 5.863300e+02
+3 14308     -2.373500e+02 2.446000e+02
+4 14308     1.861300e+02 -5.436500e+02
+5 14308     6.477100e+02 1.711300e+02
+11 14308     3.454200e+02 3.400024e+00
+13 14308     3.789800e+02 4.432200e+02
+14 14308     5.397700e+02 8.007001e+01
+2 14309     -1.740600e+02 5.660300e+02
+5 14309     5.617600e+02 1.453400e+02
+8 14309     -6.409998e+01 4.443700e+02
+11 14309     2.696600e+02 -2.009003e+01
+13 14309     3.092400e+02 4.185500e+02
+14 14309     4.576000e+02 5.371002e+01
+2 14310     2.628003e+01 5.667300e+02
+3 14310     -1.197800e+02 2.246200e+02
+5 14310     7.994100e+02 1.658000e+02
+11 14310     4.815200e+02 3.390015e+00
+13 14310     5.007100e+02 4.434600e+02
+14 14310     6.851300e+02 7.765997e+01
+2 14311     -1.944800e+02 5.637600e+02
+3 14311     -3.248400e+02 2.238500e+02
+8 14311     -8.114001e+01 4.425200e+02
+2 14312     -1.944800e+02 5.637600e+02
+4 14312     1.733500e+02 -4.658000e+02
+13 14312     2.903700e+02 4.142200e+02
+14 14312     4.348600e+02 4.942999e+01
+2 14313     1.489001e+01 5.634400e+02
+14 14313     6.722500e+02 7.279999e+01
+2 14314     1.489001e+01 5.634400e+02
+11 14314     4.694500e+02 -7.899780e-01
+13 14314     4.897600e+02 4.389600e+02
+14 14314     6.722500e+02 7.279999e+01
+2 14315     -2.173999e+01 5.614200e+02
+5 14315     7.392600e+02 1.560700e+02
+8 14315     6.285999e+01 4.446900e+02
+11 14315     4.291100e+02 -6.820007e+00
+13 14315     4.531300e+02 4.327200e+02
+14 14315     6.286100e+02 6.658002e+01
+2 14316     -2.849200e+02 5.545800e+02
+5 14316     4.387200e+02 1.246900e+02
+8 14316     -1.562800e+02 4.330100e+02
+14 14316     3.383600e+02 3.122998e+01
+2 14317     -1.336200e+02 5.518500e+02
+3 14317     -2.690400e+02 2.109900e+02
+5 14317     6.053600e+02 1.353100e+02
+8 14317     -3.114001e+01 4.341800e+02
+11 14317     3.089301e+02 -2.532001e+01
+2 14318     -3.200600e+02 5.504500e+02
+4 14318     1.658800e+02 -3.748400e+02
+5 14318     4.015300e+02 1.175600e+02
+6 14318     -5.426300e+02 8.679800e+02
+8 14318     -1.850400e+02 4.282600e+02
+13 14318     1.785300e+02 3.882900e+02
+14 14318     3.022000e+02 2.400000e+01
+2 14319     2.676100e+02 5.502100e+02
+3 14319     1.225000e+02 2.090600e+02
+6 14319     1.767100e+02 8.532600e+02
+8 14319     2.894900e+02 4.287700e+02
+9 14319     7.606000e+01 5.621900e+02
+13 14319     6.706700e+02 3.540300e+02
+2 14320     -6.453998e+01 5.491100e+02
+3 14320     -2.049300e+02 2.078500e+02
+4 14320     1.650300e+02 -5.685200e+02
+5 14320     6.867800e+02 1.399700e+02
+8 14320     2.721997e+01 4.346200e+02
+11 14320     3.823500e+02 -2.123999e+01
+13 14320     4.109900e+02 4.174400e+02
+14 14320     5.786100e+02 4.985999e+01
+2 14321     -1.627400e+02 5.481300e+02
+4 14321     1.643800e+02 -4.882300e+02
+5 14321     5.727100e+02 1.291500e+02
+8 14321     -5.481000e+01 4.307400e+02
+13 14321     3.188600e+02 4.051500e+02
+14 14321     4.688600e+02 3.800000e+01
+2 14322     -3.263600e+02 5.470400e+02
+3 14322     -4.496400e+02 2.095800e+02
+4 14322     1.648600e+02 -3.701600e+02
+5 14322     3.944600e+02 1.149700e+02
+6 14322     -5.503900e+02 8.625100e+02
+8 14322     -1.904500e+02 4.258300e+02
+11 14322     1.193000e+02 -4.870001e+01
+13 14322     1.730800e+02 3.862100e+02
+14 14322     2.958500e+02 2.078998e+01
+2 14323     -1.722900e+02 5.472400e+02
+3 14323     -3.046200e+02 2.070600e+02
+4 14323     1.639301e+02 -4.805800e+02
+5 14323     5.620500e+02 1.277700e+02
+8 14323     -6.281000e+01 4.298400e+02
+11 14323     2.712700e+02 -3.446997e+01
+13 14323     3.095100e+02 4.032100e+02
+14 14323     4.580500e+02 3.640997e+01
+2 14324     5.819800e+02 5.459200e+02
+8 14324     5.447900e+02 4.200800e+02
+2 14325     -2.632400e+02 5.420900e+02
+4 14325     1.615400e+02 -4.131100e+02
+6 14325     -4.694800e+02 8.705900e+02
+8 14325     -1.380600e+02 4.233500e+02
+11 14325     1.809400e+02 -4.754999e+01
+13 14325     2.279301e+02 3.891200e+02
+14 14325     3.609600e+02 2.244000e+01
+2 14326     2.998700e+02 5.412300e+02
+3 14326     1.541500e+02 2.004700e+02
+6 14326     2.138500e+02 8.387700e+02
+8 14326     3.149700e+02 4.219800e+02
+9 14326     1.053400e+02 5.543800e+02
+11 14326     6.237800e+02 -1.073100e+02
+13 14326     6.975500e+02 3.415400e+02
+2 14327     -3.529300e+02 5.356400e+02
+4 14327     1.593700e+02 -3.516300e+02
+5 14327     3.660000e+02 1.027600e+02
+2 14328     2.660601e+02 5.341600e+02
+3 14328     1.216400e+02 1.934200e+02
+6 14328     1.742500e+02 8.351800e+02
+8 14328     2.874300e+02 4.161300e+02
+9 14328     7.565997e+01 5.472500e+02
+11 14328     5.978700e+02 -1.068700e+02
+13 14328     6.686200e+02 3.411500e+02
+2 14329     3.045000e+02 5.339600e+02
+6 14329     2.201900e+02 8.291400e+02
+8 14329     3.190700e+02 4.158900e+02
+2 14330     -6.823700e+02 5.315100e+02
+11 14330     -1.918300e+02 -8.656000e+01
+13 14330     -1.158900e+02 3.397000e+02
+14 14330     -4.625000e+01 -2.085999e+01
+2 14331     -6.463200e+02 5.305300e+02
+4 14331     1.609000e+02 -1.803900e+02
+2 14332     -1.453300e+02 5.295600e+02
+3 14332     -2.795200e+02 1.898600e+02
+4 14332     1.536200e+02 -4.991700e+02
+5 14332     5.908199e+02 1.129100e+02
+8 14332     -4.038000e+01 4.161600e+02
+11 14332     2.985699e+02 -4.565002e+01
+13 14332     3.336600e+02 3.919600e+02
+14 14332     4.869100e+02 2.258002e+01
+2 14333     -1.453300e+02 5.295600e+02
+3 14333     -2.795200e+02 1.898600e+02
+8 14333     -4.038000e+01 4.161600e+02
+2 14334     3.391400e+02 5.293100e+02
+3 14334     1.915699e+02 1.897500e+02
+6 14334     2.604100e+02 8.179000e+02
+8 14334     3.473800e+02 4.112200e+02
+9 14334     1.396100e+02 5.446900e+02
+11 14334     6.566100e+02 -1.255600e+02
+13 14334     7.312500e+02 3.250800e+02
+2 14335     -2.911600e+02 5.283800e+02
+4 14335     1.544700e+02 -3.911100e+02
+5 14335     4.294600e+02 9.983002e+01
+6 14335     -5.040200e+02 8.464200e+02
+8 14335     -1.617800e+02 4.116900e+02
+13 14335     2.022700e+02 3.751400e+02
+14 14335     3.306500e+02 7.260010e+00
+2 14336     -4.300300e+02 5.266500e+02
+13 14336     8.440002e+01 3.604600e+02
+14 14336     1.905800e+02 -5.520020e+00
+2 14337     4.882300e+02 5.264300e+02
+8 14337     4.651100e+02 4.038700e+02
+2 14338     6.261000e+02 5.216300e+02
+8 14338     5.801899e+02 3.989900e+02
+2 14339     -4.220300e+02 5.201000e+02
+3 14339     -5.418000e+02 1.866900e+02
+4 14339     1.520900e+02 -3.057300e+02
+5 14339     2.931700e+02 8.303998e+01
+8 14339     -2.695400e+02 4.016500e+02
+14 14339     1.980601e+02 -1.057001e+01
+2 14340     -2.776500e+02 5.199000e+02
+3 14340     -4.039700e+02 1.832500e+02
+4 14340     1.494900e+02 -3.998300e+02
+5 14340     4.439200e+02 9.290002e+01
+6 14340     -4.851100e+02 8.390000e+02
+8 14340     -1.501600e+02 4.051600e+02
+2 14341     -1.255000e+02 5.199300e+02
+4 14341     1.478199e+02 -5.134600e+02
+5 14341     6.126100e+02 1.051000e+02
+6 14341     -2.923900e+02 8.746000e+02
+8 14341     -2.384998e+01 4.089800e+02
+11 14341     3.192600e+02 -5.128003e+01
+13 14341     3.515300e+02 3.862900e+02
+14 14341     5.081899e+02 1.539001e+01
+2 14342     5.921000e+02 5.185400e+02
+6 14342     5.394301e+02 7.269600e+02
+8 14342     5.513500e+02 3.963200e+02
+2 14343     -8.502002e+01 5.184100e+02
+3 14343     -2.235500e+02 1.794600e+02
+4 14343     1.466700e+02 -5.468000e+02
+5 14343     6.595400e+02 1.072900e+02
+8 14343     1.010999e+01 4.084400e+02
+13 14343     3.891801e+02 3.902300e+02
+14 14343     5.529301e+02 1.894000e+01
+2 14344     -2.836300e+02 5.120100e+02
+5 14344     4.363300e+02 8.479999e+01
+6 14344     -4.927600e+02 8.271500e+02
+2 14345     -2.235700e+02 5.117400e+02
+3 14345     -3.536000e+02 1.743600e+02
+4 14345     1.442900e+02 -4.372800e+02
+6 14345     -4.162600e+02 8.405500e+02
+8 14345     -1.056900e+02 3.998200e+02
+11 14345     2.183700e+02 -6.746997e+01
+13 14345     2.612800e+02 3.690100e+02
+14 14345     4.004399e+02 -1.909973e+00
+2 14346     -1.464700e+02 5.108200e+02
+3 14346     -2.808300e+02 1.717200e+02
+4 14346     1.424200e+02 -4.954301e+02
+5 14346     5.879800e+02 9.382001e+01
+6 14346     -3.182900e+02 8.577100e+02
+8 14346     -4.072998e+01 4.004200e+02
+11 14346     2.968300e+02 -6.097998e+01
+13 14346     3.314900e+02 3.758700e+02
+14 14346     4.844301e+02 4.200012e+00
+2 14347     -1.189100e+02 5.092500e+02
+4 14347     1.419100e+02 -5.175900e+02
+5 14347     6.195200e+02 9.609003e+01
+6 14347     -2.833900e+02 8.645300e+02
+8 14347     -1.829999e+01 4.015600e+02
+11 14347     3.258000e+02 -5.946002e+01
+13 14347     3.568400e+02 3.775000e+02
+14 14347     5.146000e+02 5.169983e+00
+2 14348     -2.900700e+02 5.076000e+02
+3 14348     -4.177100e+02 1.707900e+02
+4 14348     1.431600e+02 -3.897900e+02
+5 14348     4.292300e+02 8.053003e+01
+6 14348     -5.003900e+02 8.202900e+02
+8 14348     -1.603200e+02 3.952900e+02
+11 14348     1.540600e+02 -7.598999e+01
+13 14348     2.026200e+02 3.590200e+02
+14 14348     3.307600e+02 -1.147998e+01
+2 14349     -3.979400e+02 5.069600e+02
+4 14349     1.461400e+02 -3.190200e+02
+5 14349     3.157500e+02 7.484998e+01
+8 14349     -2.503100e+02 3.929500e+02
+14 14349     2.206100e+02 -1.950000e+01
+2 14350     -3.102400e+02 5.068100e+02
+3 14350     -4.362300e+02 1.703400e+02
+4 14350     1.434100e+02 -3.763400e+02
+5 14350     4.079301e+02 7.871002e+01
+6 14350     -5.254400e+02 8.157000e+02
+8 14350     -1.770300e+02 3.941500e+02
+11 14350     1.347000e+02 -7.797998e+01
+13 14350     1.852700e+02 3.566700e+02
+14 14350     3.098500e+02 -1.359998e+01
+2 14351     -1.634300e+02 5.069000e+02
+3 14351     -2.975300e+02 1.690700e+02
+4 14351     1.407000e+02 -4.815800e+02
+5 14351     5.675400e+02 8.947998e+01
+6 14351     -3.399200e+02 8.492300e+02
+8 14351     -5.522998e+01 3.981400e+02
+11 14351     2.800300e+02 -6.612000e+01
+13 14351     3.155200e+02 3.709700e+02
+14 14351     4.654900e+02 -1.239990e+00
+2 14352     5.921100e+02 4.973800e+02
+3 14352     4.357100e+02 1.635500e+02
+6 14352     5.401000e+02 7.033500e+02
+9 14352     3.599800e+02 5.219600e+02
+2 14353     -2.898500e+02 4.969000e+02
+3 14353     -4.188700e+02 1.605100e+02
+4 14353     1.374400e+02 -3.882600e+02
+5 14353     4.281200e+02 7.045001e+01
+6 14353     -4.992400e+02 8.066900e+02
+8 14353     -1.603200e+02 3.865200e+02
+13 14353     2.024700e+02 3.505500e+02
+14 14353     3.300900e+02 -2.126001e+01
+2 14354     -2.770900e+02 4.974400e+02
+5 14354     4.420601e+02 7.219000e+01
+6 14354     -4.828100e+02 8.106400e+02
+8 14354     -1.497200e+02 3.874600e+02
+2 14355     -7.201500e+02 4.916800e+02
+4 14355     1.445800e+02 -1.397600e+02
+5 14355     7.270020e+00 4.244000e+01
+2 14356     -1.716000e+02 4.888100e+02
+3 14356     -3.046500e+02 1.511000e+02
+4 14356     1.306300e+02 -4.730699e+02
+5 14356     5.574800e+02 7.110999e+01
+11 14356     2.710200e+02 -8.060999e+01
+13 14356     3.075000e+02 3.561900e+02
+14 14356     4.558101e+02 -1.813000e+01
+2 14357     -1.716000e+02 4.888100e+02
+4 14357     1.306300e+02 -4.730699e+02
+5 14357     5.574800e+02 7.110999e+01
+6 14357     -3.485800e+02 8.237300e+02
+8 14357     -6.190997e+01 3.827500e+02
+11 14357     2.710200e+02 -8.060999e+01
+2 14358     -7.889400e+02 4.869000e+02
+4 14358     1.440400e+02 -1.066400e+02
+5 14358     -5.303998e+01 3.563000e+01
+8 14358     -5.686700e+02 3.666500e+02
+2 14359     -6.716200e+02 4.857000e+02
+4 14359     1.406500e+02 -1.633700e+02
+5 14359     5.033002e+01 3.926001e+01
+8 14359     -4.733100e+02 3.673100e+02
+11 14359     -1.825400e+02 -1.167600e+02
+13 14359     -1.075400e+02 3.088600e+02
+14 14359     -3.845001e+01 -5.692999e+01
+2 14360     -6.716200e+02 4.857000e+02
+3 14360     -7.876100e+02 1.586100e+02
+4 14360     1.406500e+02 -1.633700e+02
+5 14360     5.033002e+01 3.926001e+01
+8 14360     -4.733100e+02 3.673100e+02
+11 14360     -1.825400e+02 -1.167600e+02
+13 14360     -1.075400e+02 3.088600e+02
+14 14360     -3.845001e+01 -5.692999e+01
+2 14361     -2.900400e+02 4.862000e+02
+3 14361     -4.187900e+02 1.498500e+02
+4 14361     1.315600e+02 -3.871900e+02
+5 14361     4.270601e+02 6.003998e+01
+6 14361     -4.983700e+02 7.925000e+02
+8 14361     -1.602900e+02 3.779100e+02
+11 14361     1.540000e+02 -9.208002e+01
+13 14361     2.019301e+02 3.425200e+02
+14 14361     3.295900e+02 -3.107001e+01
+2 14362     -3.102500e+02 4.852500e+02
+4 14362     1.314200e+02 -3.736400e+02
+5 14362     4.059500e+02 5.790002e+01
+6 14362     -5.232600e+02 7.867700e+02
+8 14362     -1.767900e+02 3.761800e+02
+11 14362     1.342700e+02 -9.529999e+01
+13 14362     1.843300e+02 3.389800e+02
+2 14363     2.556000e+01 4.835900e+02
+3 14363     -1.205500e+02 1.447600e+02
+6 14363     -9.731000e+01 8.633100e+02
+11 14363     4.792200e+02 -6.585999e+01
+13 14363     4.933700e+02 3.724300e+02
+14 14363     6.792800e+02 -4.239990e+00
+2 14364     1.072600e+02 4.826800e+02
+8 14364     1.708200e+02 3.837000e+02
+13 14364     5.756500e+02 3.808500e+02
+14 14364     7.788000e+02 3.830017e+00
+2 14365     -1.610500e+02 4.817800e+02
+4 14365     1.261200e+02 -4.803000e+02
+5 14365     5.689100e+02 6.457001e+01
+8 14365     -5.291998e+01 3.769800e+02
+11 14365     2.826600e+02 -8.409998e+01
+14 14365     4.669000e+02 -2.353998e+01
+2 14366     -8.415002e+01 4.820800e+02
+3 14366     -2.224100e+02 1.436800e+02
+4 14366     1.243800e+02 -5.421100e+02
+5 14366     6.573300e+02 7.072998e+01
+6 14366     -2.369000e+02 8.353300e+02
+8 14366     1.135999e+01 3.787700e+02
+11 14366     3.610699e+02 -7.890997e+01
+13 14366     3.882300e+02 3.596300e+02
+14 14366     5.526899e+02 -1.666998e+01
+2 14367     1.614300e+02 4.800400e+02
+3 14367     6.500000e+00 1.418900e+02
+8 14367     2.166000e+02 3.827400e+02
+2 14368     -4.245800e+02 4.794000e+02
+3 14368     -5.457200e+02 1.461000e+02
+4 14368     1.317800e+02 -3.000900e+02
+5 14368     2.872800e+02 4.689001e+01
+11 14368     2.609003e+01 -1.074700e+02
+14 14368     1.923101e+02 -4.716998e+01
+2 14369     -4.245800e+02 4.794000e+02
+3 14369     -5.457200e+02 1.461000e+02
+4 14369     1.317800e+02 -3.000900e+02
+5 14369     2.872800e+02 4.689001e+01
+8 14369     -2.713500e+02 3.698400e+02
+14 14369     1.923101e+02 -4.716998e+01
+2 14370     -2.632700e+02 4.790100e+02
+6 14370     -4.634500e+02 7.903800e+02
+8 14370     -1.379800e+02 3.727700e+02
+2 14371     8.298999e+01 4.773400e+02
+3 14371     -6.697998e+01 1.381900e+02
+8 14371     1.504300e+02 3.786200e+02
+11 14371     5.440699e+02 -6.377002e+01
+13 14371     5.503600e+02 3.740400e+02
+14 14371     7.484800e+02 -4.010010e+00
+2 14372     8.298999e+01 4.773400e+02
+3 14372     -6.697998e+01 1.381900e+02
+8 14372     1.504300e+02 3.786200e+02
+13 14372     5.503600e+02 3.740400e+02
+14 14372     7.484800e+02 -4.010010e+00
+2 14373     -6.196002e+01 4.763700e+02
+13 14373     4.082600e+02 3.557000e+02
+14 14373     5.770300e+02 -2.169000e+01
+2 14374     -6.196002e+01 4.763700e+02
+13 14374     4.082600e+02 3.557000e+02
+14 14374     5.770300e+02 -2.169000e+01
+2 14375     -7.059500e+02 4.713000e+02
+4 14375     1.354900e+02 -1.451000e+02
+5 14375     1.803003e+01 2.666998e+01
+8 14375     -5.016000e+02 3.559000e+02
+13 14375     -1.331800e+02 2.956900e+02
+2 14376     -1.378998e+01 4.688800e+02
+5 14376     7.393500e+02 6.308002e+01
+13 14376     4.542500e+02 3.565300e+02
+14 14376     6.323300e+02 -2.220001e+01
+2 14377     -1.378998e+01 4.688800e+02
+5 14377     7.393500e+02 6.308002e+01
+6 14377     -1.476200e+02 8.345500e+02
+8 14377     6.937000e+01 3.698400e+02
+14 14377     6.323300e+02 -2.220001e+01
+2 14378     -3.328998e+01 4.677400e+02
+4 14378     1.146800e+02 -5.819399e+02
+5 14378     7.155601e+02 5.998999e+01
+6 14378     -1.723200e+02 8.288600e+02
+11 14378     4.153300e+02 -8.471997e+01
+14 14378     6.093300e+02 -2.550000e+01
+2 14379     -2.646002e+01 4.678000e+02
+3 14379     -1.689500e+02 1.303800e+02
+5 14379     7.240699e+02 6.071997e+01
+8 14379     5.910999e+01 3.686600e+02
+13 14379     4.418600e+02 3.540700e+02
+14 14379     6.176899e+02 -2.444000e+01
+2 14380     -2.646002e+01 4.678000e+02
+5 14380     7.240699e+02 6.071997e+01
+6 14380     -1.633500e+02 8.304900e+02
+8 14380     5.910999e+01 3.686600e+02
+11 14380     4.231400e+02 -8.389001e+01
+13 14380     4.418600e+02 3.540700e+02
+14 14380     6.176899e+02 -2.444000e+01
+2 14381     6.398999e+01 4.674000e+02
+3 14381     -8.452002e+01 1.296000e+02
+6 14381     -4.760999e+01 8.511200e+02
+8 14381     1.346300e+02 3.704500e+02
+14 14381     7.244600e+02 -1.601001e+01
+2 14382     -2.683100e+02 4.562400e+02
+4 14382     1.153500e+02 -3.988000e+02
+5 14382     4.477400e+02 3.352002e+01
+13 14382     2.189900e+02 3.208300e+02
+2 14383     -2.683100e+02 4.562400e+02
+11 14383     1.740200e+02 -1.135400e+02
+2 14384     -6.266998e+01 4.538000e+02
+3 14384     -2.028700e+02 1.161800e+02
+4 14384     1.077900e+02 -5.547000e+02
+5 14384     6.792500e+02 4.515997e+01
+6 14384     -2.089100e+02 8.050700e+02
+8 14384     2.844000e+01 3.564200e+02
+11 14384     3.834800e+02 -9.790997e+01
+13 14384     4.060900e+02 3.389700e+02
+14 14384     5.748300e+02 -4.096997e+01
+2 14385     -6.967900e+02 4.495700e+02
+4 14385     1.252800e+02 -1.476800e+02
+11 14385     -2.034200e+02 -1.427600e+02
+2 14386     -3.452700e+02 4.452300e+02
+3 14386     -4.698500e+02 1.110700e+02
+4 14386     1.117100e+02 -3.456000e+02
+6 14386     -5.629800e+02 7.297100e+02
+8 14386     -2.059100e+02 3.438100e+02
+14 14386     2.695699e+02 -7.190997e+01
+2 14387     -3.855100e+02 4.391100e+02
+3 14387     -5.090500e+02 1.059100e+02
+4 14387     1.101000e+02 -3.200900e+02
+5 14387     3.233500e+02 1.234998e+01
+8 14387     -2.388300e+02 3.380300e+02
+11 14387     6.229999e+01 -1.338500e+02
+2 14388     5.562000e+01 4.392500e+02
+3 14388     -9.265002e+01 1.020600e+02
+5 14388     8.224200e+02 3.803998e+01
+6 14388     -5.990002e+01 8.140900e+02
+13 14388     5.182200e+02 3.385300e+02
+14 14388     7.125300e+02 -4.465002e+01
+2 14389     -1.854400e+02 4.368700e+02
+4 14389     1.019500e+02 -4.563300e+02
+9 14389     -3.162100e+02 4.499900e+02
+11 14389     2.570100e+02 -1.224500e+02
+2 14390     -6.044300e+02 4.322200e+02
+4 14390     1.147800e+02 -1.934600e+02
+13 14390     -5.759003e+01 2.756000e+02
+14 14390     1.865002e+01 -9.800000e+01
+2 14391     -6.044300e+02 4.322200e+02
+3 14391     -7.232600e+02 1.043600e+02
+4 14391     1.147800e+02 -1.934600e+02
+11 14391     -1.297600e+02 -1.502300e+02
+13 14391     -5.759003e+01 2.756000e+02
+14 14391     1.865002e+01 -9.800000e+01
+2 14392     -7.121997e+01 4.317200e+02
+3 14392     -2.110500e+02 9.500000e+01
+4 14392     9.500000e+01 -5.443600e+02
+5 14392     6.670000e+02 2.238000e+01
+6 14392     -2.187500e+02 7.754600e+02
+8 14392     2.148999e+01 3.390500e+02
+13 14392     3.973199e+02 3.199700e+02
+14 14392     5.644100e+02 -6.322998e+01
+2 14393     -2.199707e-01 4.323700e+02
+3 14393     -1.444000e+02 9.547998e+01
+5 14393     7.522100e+02 2.709998e+01
+6 14393     -1.286100e+02 7.921500e+02
+8 14393     8.071002e+01 3.412100e+02
+11 14393     4.487600e+02 -1.112700e+02
+13 14393     4.622700e+02 3.258800e+02
+14 14393     6.436400e+02 -5.792999e+01
+2 14394     4.265997e+01 4.316400e+02
+13 14394     5.085000e+02 3.310600e+02
+14 14394     6.989900e+02 -5.329999e+01
+2 14395     4.265997e+01 4.316400e+02
+3 14395     -1.033500e+02 9.491998e+01
+8 14395     1.171100e+02 3.415900e+02
+13 14395     5.085000e+02 3.310600e+02
+14 14395     6.989900e+02 -5.329999e+01
+2 14396     -3.604100e+02 4.301300e+02
+3 14396     -4.852700e+02 9.733002e+01
+4 14396     1.045800e+02 -3.347900e+02
+5 14396     3.485900e+02 4.840027e+00
+6 14396     -5.799200e+02 7.079900e+02
+8 14396     -2.176400e+02 3.316800e+02
+11 14396     8.585999e+01 -1.395000e+02
+13 14396     1.392000e+02 2.926800e+02
+14 14396     2.539399e+02 -8.648999e+01
+2 14397     3.220500e+02 4.278200e+02
+8 14397     3.319500e+02 3.288300e+02
+9 14397     1.275900e+02 4.565700e+02
+2 14398     -1.800900e+02 4.271700e+02
+4 14398     9.640002e+01 -4.578400e+02
+5 14398     5.417500e+02 1.103003e+01
+6 14398     -3.549500e+02 7.453000e+02
+8 14398     -6.869000e+01 3.336700e+02
+2 14399     -1.800900e+02 4.271700e+02
+4 14399     9.640002e+01 -4.578400e+02
+5 14399     5.417500e+02 1.103003e+01
+8 14399     -6.869000e+01 3.336700e+02
+9 14399     -3.111500e+02 4.411700e+02
+2 14400     -8.403003e+01 4.258800e+02
+13 14400     3.838199e+02 3.141600e+02
+14 14400     5.483199e+02 -6.982001e+01
+2 14401     -6.574500e+02 4.225300e+02
+5 14401     5.710999e+01 -1.354999e+01
+11 14401     -1.734200e+02 -1.589400e+02
+2 14402     -6.574500e+02 4.225300e+02
+5 14402     5.710999e+01 -1.354999e+01
+11 14402     -1.734200e+02 -1.589400e+02
+2 14403     -6.574500e+02 4.225300e+02
+4 14403     1.123700e+02 -1.654500e+02
+11 14403     -1.734200e+02 -1.589400e+02
+2 14404     -7.095001e+01 4.197700e+02
+4 14404     8.854999e+01 -5.422500e+02
+5 14404     6.654200e+02 1.133002e+01
+6 14404     -2.190200e+02 7.613000e+02
+8 14404     2.112000e+01 3.295200e+02
+11 14404     3.740400e+02 -1.260500e+02
+13 14404     3.955500e+02 3.106200e+02
+14 14404     5.629800e+02 -7.432001e+01
+2 14405     -3.728500e+02 4.186800e+02
+5 14405     3.346200e+02 -6.440002e+00
+2 14406     4.049900e+02 4.163700e+02
+3 14406     2.579900e+02 8.457001e+01
+6 14406     3.323100e+02 6.707700e+02
+8 14406     3.998700e+02 3.174300e+02
+9 14406     1.992800e+02 4.489700e+02
+13 14406     7.760200e+02 2.154000e+02
+2 14407     -3.889100e+02 4.154200e+02
+3 14407     -5.145400e+02 8.065997e+01
+4 14407     9.878003e+01 -3.154400e+02
+5 14407     3.178900e+02 -9.429993e+00
+11 14407     5.883002e+01 -1.516100e+02
+14 14407     2.247000e+02 -1.014800e+02
+2 14408     -3.827300e+02 4.141800e+02
+4 14408     9.769000e+01 -3.190900e+02
+5 14408     3.242900e+02 -1.042999e+01
+8 14408     -2.361100e+02 3.184700e+02
+11 14408     6.458002e+01 -1.520300e+02
+13 14408     1.199600e+02 2.791900e+02
+14 14408     2.306500e+02 -1.016900e+02
+2 14409     -7.718100e+02 4.128000e+02
+5 14409     -4.585999e+01 -2.582001e+01
+8 14409     -5.534600e+02 3.076400e+02
+2 14410     -2.877700e+02 4.093500e+02
+4 14410     9.121002e+01 -3.794500e+02
+5 14410     4.226200e+02 -1.103003e+01
+6 14410     -4.879800e+02 6.989100e+02
+8 14410     -1.581000e+02 3.169100e+02
+11 14410     1.547300e+02 -1.504900e+02
+13 14410     2.003900e+02 2.830400e+02
+14 14410     3.272000e+02 -1.003600e+02
+2 14411     -1.066800e+02 4.061400e+02
+5 14411     6.226300e+02 -5.020020e+00
+6 14411     -2.618800e+02 7.358400e+02
+8 14411     -8.030029e+00 3.180900e+02
+2 14412     -5.326700e+02 4.041200e+02
+4 14412     9.871002e+01 -2.298100e+02
+5 14412     1.739300e+02 -2.484003e+01
+8 14412     -3.594100e+02 3.070300e+02
+13 14412     -2.190002e+00 2.609800e+02
+14 14412     8.391998e+01 -1.180200e+02
+2 14413     -8.314001e+01 4.019200e+02
+3 14413     -2.222600e+02 6.648999e+01
+9 14413     -2.274800e+02 4.214800e+02
+11 14413     3.605000e+02 -1.421800e+02
+13 14413     3.832400e+02 2.946700e+02
+14 14413     5.482100e+02 -9.292999e+01
+2 14414     -5.561900e+02 4.012800e+02
+3 14414     -6.773400e+02 7.373999e+01
+4 14414     9.840002e+01 -2.164600e+02
+5 14414     1.508500e+02 -2.853003e+01
+8 14414     -3.785200e+02 3.043400e+02
+12 14414     -6.270400e+02 6.179900e+02
+13 14414     -2.122998e+01 2.565900e+02
+14 14414     6.104999e+01 -1.219800e+02
+2 14415     -5.561900e+02 4.012800e+02
+4 14415     9.840002e+01 -2.164600e+02
+5 14415     1.508500e+02 -2.853003e+01
+8 14415     -3.785200e+02 3.043400e+02
+12 14415     -6.270400e+02 6.179900e+02
+2 14416     -3.475600e+02 4.010200e+02
+11 14416     9.788000e+01 -1.606500e+02
+2 14417     5.530400e+02 4.010700e+02
+6 14417     4.882400e+02 5.975300e+02
+9 14417     3.278600e+02 4.393800e+02
+2 14418     -4.318400e+02 3.989900e+02
+3 14418     -5.547500e+02 6.796997e+01
+4 14418     9.200000e+01 -2.872400e+02
+5 14418     2.728500e+02 -2.659003e+01
+11 14418     1.919000e+01 -1.661000e+02
+13 14418     7.854999e+01 2.642100e+02
+14 14418     1.805699e+02 -1.177300e+02
+2 14419     -3.639400e+02 3.967500e+02
+3 14419     -4.888500e+02 6.397998e+01
+4 14419     8.817999e+01 -3.287400e+02
+5 14419     3.417300e+02 -2.584998e+01
+8 14419     -2.206100e+02 3.046600e+02
+11 14419     8.128003e+01 -1.636900e+02
+13 14419     1.348500e+02 2.655800e+02
+14 14419     2.484500e+02 -1.179900e+02
+2 14420     -5.119400e+02 3.963300e+02
+4 14420     9.415997e+01 -2.405400e+02
+5 14420     1.929600e+02 -3.141998e+01
+8 14420     -3.422000e+02 3.014400e+02
+2 14421     -5.977500e+02 3.949700e+02
+4 14421     9.703003e+01 -1.932800e+02
+5 14421     1.105800e+02 -3.503998e+01
+8 14421     -4.123500e+02 2.984300e+02
+2 14422     3.017999e+01 3.913500e+02
+6 14422     -8.926001e+01 7.478800e+02
+9 14422     -1.311300e+02 4.148800e+02
+13 14422     4.909700e+02 2.958000e+02
+14 14422     6.795601e+02 -9.496002e+01
+2 14423     4.036600e+02 3.912700e+02
+3 14423     2.561500e+02 6.169000e+01
+8 14423     3.980500e+02 2.965700e+02
+9 14423     1.984200e+02 4.260600e+02
+2 14424     -7.580700e+02 3.878500e+02
+5 14424     -3.553003e+01 -4.590997e+01
+2 14425     5.038101e+02 3.839300e+02
+6 14425     4.309200e+02 5.841900e+02
+8 14425     4.763600e+02 2.860000e+02
+9 14425     2.860601e+02 4.234800e+02
+12 14425     5.139399e+02 5.918300e+02
+2 14426     3.037000e+01 3.828800e+02
+6 14426     -8.917001e+01 7.379600e+02
+8 14426     1.061000e+02 3.016800e+02
+9 14426     -1.299300e+02 4.079400e+02
+13 14426     4.901600e+02 2.887800e+02
+14 14426     6.789900e+02 -1.028600e+02
+2 14427     -2.602300e+02 3.801400e+02
+3 14427     -3.907900e+02 4.697998e+01
+4 14427     7.457001e+01 -3.948400e+02
+5 14427     4.495100e+02 -3.728998e+01
+6 14427     -4.509800e+02 6.694700e+02
+8 14427     -1.350000e+02 2.937700e+02
+11 14427     1.804600e+02 -1.713800e+02
+13 14427     2.225200e+02 2.625700e+02
+2 14428     -9.417999e+01 3.801200e+02
+5 14428     6.346000e+02 -2.981000e+01
+2 14429     6.217500e+02 3.795400e+02
+3 14429     4.689700e+02 5.582001e+01
+6 14429     5.660200e+02 5.618100e+02
+7 14429     5.697200e+02 5.367600e+02
+8 14429     5.747100e+02 2.801900e+02
+9 14429     3.866500e+02 4.227700e+02
+12 14429     6.440400e+02 5.747300e+02
+2 14430     2.757000e+02 3.784700e+02
+8 14430     2.942200e+02 2.888500e+02
+9 14430     8.870001e+01 4.119900e+02
+13 14430     6.602900e+02 2.071500e+02
+2 14431     -2.863700e+02 3.750300e+02
+3 14431     -4.172400e+02 4.196997e+01
+4 14431     7.300000e+01 -3.761400e+02
+5 14431     4.207000e+02 -4.328998e+01
+6 14431     -4.833400e+02 6.571600e+02
+8 14431     -1.564700e+02 2.895000e+02
+2 14432     -2.797700e+02 3.733400e+02
+5 14432     4.277800e+02 -4.521997e+01
+6 14432     -4.747200e+02 6.563400e+02
+8 14432     -1.512000e+02 2.885000e+02
+2 14433     -2.797700e+02 3.733400e+02
+6 14433     -4.747200e+02 6.563400e+02
+8 14433     -1.512000e+02 2.885000e+02
+13 14433     2.053000e+02 2.556200e+02
+14 14433     3.329500e+02 -1.334000e+02
+2 14434     -6.060700e+02 3.682800e+02
+5 14434     1.004500e+02 -5.820001e+01
+13 14434     -6.009998e+01 2.300100e+02
+2 14435     -6.060700e+02 3.682800e+02
+4 14435     8.544000e+01 -1.870500e+02
+5 14435     1.004500e+02 -5.820001e+01
+8 14435     -4.183900e+02 2.773800e+02
+11 14435     -1.319700e+02 -1.943700e+02
+12 14435     -6.808800e+02 5.756200e+02
+13 14435     -6.009998e+01 2.300100e+02
+2 14436     -6.060700e+02 3.682800e+02
+4 14436     8.544000e+01 -1.870500e+02
+5 14436     1.004500e+02 -5.820001e+01
+8 14436     -4.183900e+02 2.773800e+02
+12 14436     -6.808800e+02 5.756200e+02
+13 14436     -6.009998e+01 2.300100e+02
+2 14437     -5.957500e+02 3.692600e+02
+4 14437     8.548999e+01 -1.924600e+02
+5 14437     1.100600e+02 -5.706000e+01
+11 14437     -1.246000e+02 -1.931900e+02
+12 14437     -6.688400e+02 5.787000e+02
+13 14437     -5.263000e+01 2.310800e+02
+14 14437     2.240997e+01 -1.508100e+02
+2 14438     -6.694600e+02 3.679300e+02
+4 14438     8.804999e+01 -1.542000e+02
+5 14438     4.169000e+01 -6.006000e+01
+8 14438     -4.703800e+02 2.750700e+02
+11 14438     -1.844800e+02 -1.968500e+02
+12 14438     -7.538100e+02 5.652900e+02
+2 14439     1.361600e+02 3.663600e+02
+3 14439     -1.694000e+01 3.127002e+01
+6 14439     4.533002e+01 7.423700e+02
+8 14439     1.943500e+02 2.907800e+02
+9 14439     -4.038000e+01 3.966900e+02
+2 14440     -3.975200e+02 3.644200e+02
+4 14440     7.341998e+01 -3.043600e+02
+5 14440     3.042100e+02 -5.650000e+01
+11 14440     4.962000e+01 -1.899100e+02
+2 14441     1.164100e+02 3.629600e+02
+3 14441     -3.500000e+01 2.815002e+01
+6 14441     2.197998e+01 7.363600e+02
+8 14441     1.790100e+02 2.892200e+02
+2 14442     2.526100e+02 3.583000e+02
+6 14442     1.551800e+02 6.248100e+02
+8 14442     2.757500e+02 2.730000e+02
+9 14442     6.846002e+01 3.936800e+02
+12 14442     2.678700e+02 6.086100e+02
+13 14442     6.388199e+02 1.942500e+02
+14 14442     8.701600e+02 -2.223700e+02
+2 14443     -6.200700e+02 3.530200e+02
+4 14443     7.915002e+01 -1.781600e+02
+5 14443     8.587000e+01 -7.144000e+01
+8 14443     -4.301500e+02 2.649700e+02
+12 14443     -6.946300e+02 5.574800e+02
+2 14444     1.232500e+02 3.524300e+02
+3 14444     -2.853003e+01 1.832001e+01
+6 14444     2.904999e+01 7.212000e+02
+8 14444     1.835000e+02 2.788400e+02
+9 14444     -5.059998e+01 3.843400e+02
+13 14444     5.803500e+02 2.721000e+02
+14 14444     7.911100e+02 -1.253100e+02
+2 14445     -6.034998e+01 3.461500e+02
+6 14445     -2.011700e+02 6.734100e+02
+8 14445     3.071997e+01 2.710600e+02
+9 14445     -2.059200e+02 3.730300e+02
+2 14446     4.983700e+02 3.438700e+02
+6 14446     4.216400e+02 5.360500e+02
+2 14447     -9.470001e+01 3.388700e+02
+6 14447     -2.441100e+02 6.574100e+02
+8 14447     1.940002e+00 2.647900e+02
+9 14447     -2.350000e+02 3.659800e+02
+2 14448     5.074900e+02 3.362300e+02
+3 14448     3.618600e+02 1.128003e+01
+6 14448     4.335300e+02 5.301200e+02
+7 14448     4.587000e+02 5.174900e+02
+9 14448     2.907900e+02 3.836600e+02
+10 14448     6.423000e+02 6.124700e+02
+13 14448     8.348300e+02 1.026400e+02
+2 14449     -6.146200e+02 3.341600e+02
+5 14449     8.921002e+01 -8.822998e+01
+8 14449     -4.260800e+02 2.492700e+02
+2 14450     1.038200e+02 3.303600e+02
+6 14450     3.159973e+00 6.898200e+02
+8 14450     1.660000e+02 2.607900e+02
+2 14451     5.041700e+02 3.287000e+02
+6 14451     4.288400e+02 5.219300e+02
+9 14451     2.873500e+02 3.759600e+02
+2 14452     -4.365300e+02 3.265600e+02
+3 14452     -5.614500e+02 -3.580017e+00
+2 14453     -4.365300e+02 3.265600e+02
+3 14453     -5.614500e+02 -3.580017e+00
+2 14454     -3.116998e+01 3.191200e+02
+6 14454     -1.642300e+02 6.466500e+02
+8 14454     5.447998e+01 2.495300e+02
+9 14454     -1.804100e+02 3.501100e+02
+12 14454     5.700073e-01 6.078000e+02
+2 14455     2.874100e+02 3.105300e+02
+3 14455     1.461900e+02 -1.808002e+01
+6 14455     1.934400e+02 5.633200e+02
+7 14455     2.943800e+02 5.630000e+02
+8 14455     3.034200e+02 2.335900e+02
+9 14455     1.005200e+02 3.536200e+02
+12 14455     3.031400e+02 5.515200e+02
+13 14455     6.629900e+02 1.486300e+02
+2 14456     2.874100e+02 3.105300e+02
+3 14456     1.461900e+02 -1.808002e+01
+7 14456     2.943800e+02 5.630000e+02
+8 14456     3.034200e+02 2.335900e+02
+9 14456     1.005200e+02 3.536200e+02
+11 14456     6.124000e+02 -3.107700e+02
+12 14456     3.031400e+02 5.515200e+02
+13 14456     6.629900e+02 1.486300e+02
+2 14457     4.045601e+02 3.099800e+02
+3 14457     2.594900e+02 -1.564001e+01
+8 14457     3.977400e+02 2.305600e+02
+9 14457     2.005100e+02 3.570800e+02
+2 14458     4.045601e+02 3.099800e+02
+3 14458     2.594900e+02 -1.564001e+01
+8 14458     3.977400e+02 2.305600e+02
+2 14459     -4.140300e+02 3.092100e+02
+3 14459     -5.399600e+02 -2.035999e+01
+4 14459     4.740997e+01 -2.888300e+02
+5 14459     2.830601e+02 -1.063900e+02
+8 14459     -2.612500e+02 2.341400e+02
+2 14460     5.083101e+02 3.052000e+02
+6 14460     4.318300e+02 4.939600e+02
+7 14460     4.559399e+02 4.871600e+02
+9 14460     2.918500e+02 3.562800e+02
+10 14460     6.362200e+02 5.768000e+02
+12 14460     5.149399e+02 5.026800e+02
+2 14461     -4.936300e+02 3.024600e+02
+3 14461     -6.181600e+02 -2.560999e+01
+5 14461     2.026300e+02 -1.134500e+02
+8 14461     -3.267000e+02 2.278000e+02
+2 14462     -9.370001e+01 2.987200e+02
+3 14462     -2.337900e+02 -3.376001e+01
+4 14462     2.062000e+01 -5.059100e+02
+5 14462     6.265699e+02 -1.100900e+02
+8 14462     2.679993e+00 2.305200e+02
+9 14462     -2.324200e+02 3.304500e+02
+11 14462     3.458700e+02 -2.298900e+02
+12 14462     -7.421997e+01 5.750500e+02
+2 14463     -1.459000e+02 2.969800e+02
+3 14463     -2.829900e+02 -3.691998e+01
+8 14463     -4.003998e+01 2.315000e+02
+9 14463     -2.767100e+02 3.273900e+02
+2 14464     -2.693900e+02 2.941200e+02
+3 14464     -4.008500e+02 -3.816998e+01
+6 14464     -4.552900e+02 5.661100e+02
+8 14464     -1.420500e+02 2.259300e+02
+9 14464     -3.821200e+02 3.215100e+02
+12 14464     -2.816100e+02 5.478900e+02
+2 14465     -4.102100e+02 2.907500e+02
+5 14465     2.824700e+02 -1.237800e+02
+8 14465     -2.573100e+02 2.202100e+02
+2 14466     5.796600e+02 2.906300e+02
+7 14466     5.182600e+02 4.573400e+02
+9 14466     3.521500e+02 3.468900e+02
+10 14466     7.075900e+02 5.322900e+02
+2 14467     -6.163900e+02 2.887100e+02
+4 14467     5.001001e+01 -1.745500e+02
+5 14467     8.334003e+01 -1.269800e+02
+2 14468     -3.109400e+02 2.848000e+02
+4 14468     2.897998e+01 -3.498400e+02
+5 14468     3.863400e+02 -1.265600e+02
+6 14468     -5.052900e+02 5.463500e+02
+8 14468     -1.758400e+02 2.176800e+02
+11 14468     1.292200e+02 -2.454300e+02
+12 14468     -3.294600e+02 5.318700e+02
+2 14469     -1.552800e+02 2.800200e+02
+8 14469     -4.903998e+01 2.158100e+02
+9 14469     -2.829500e+02 3.122700e+02
+2 14470     6.182900e+02 2.789800e+02
+7 14470     5.511500e+02 4.370300e+02
+2 14471     -1.731700e+02 2.779300e+02
+6 14471     -3.361200e+02 5.678500e+02
+2 14472     3.941600e+02 2.773000e+02
+3 14472     2.508300e+02 -4.701001e+01
+8 14472     3.895600e+02 2.041100e+02
+9 14472     1.927400e+02 3.294500e+02
+2 14473     -5.939400e+02 2.745200e+02
+4 14473     4.228998e+01 -1.847400e+02
+5 14473     1.030900e+02 -1.386700e+02
+7 14473     -5.397500e+02 5.476300e+02
+8 14473     -4.085300e+02 2.034400e+02
+2 14474     -5.939400e+02 2.745200e+02
+4 14474     4.228998e+01 -1.847400e+02
+7 14474     -5.397500e+02 5.476300e+02
+8 14474     -4.085300e+02 2.034400e+02
+2 14475     -5.939400e+02 2.745200e+02
+4 14475     4.228998e+01 -1.847400e+02
+7 14475     -5.397500e+02 5.476300e+02
+2 14476     -5.939400e+02 2.745200e+02
+4 14476     4.228998e+01 -1.847400e+02
+8 14476     -4.085300e+02 2.034400e+02
+2 14477     -4.797100e+02 2.749500e+02
+5 14477     2.139900e+02 -1.377100e+02
+7 14477     -4.231900e+02 5.609500e+02
+2 14478     -6.509998e+01 2.755100e+02
+6 14478     -2.066200e+02 5.856300e+02
+8 14478     2.575000e+01 2.145600e+02
+2 14479     -6.410700e+02 2.735600e+02
+5 14479     5.852002e+01 -1.398600e+02
+8 14479     -4.467800e+02 2.016300e+02
+2 14480     4.322000e+02 2.736200e+02
+6 14480     3.450600e+02 4.699400e+02
+8 14480     4.160100e+02 1.979500e+02
+9 14480     2.275699e+02 3.279000e+02
+13 14480     7.611000e+02 6.652002e+01
+2 14481     -1.738000e+01 2.731200e+02
+6 14481     -1.445800e+02 5.959600e+02
+8 14481     6.609003e+01 2.136700e+02
+2 14482     -4.484800e+02 2.716400e+02
+4 14482     3.176001e+01 -2.645500e+02
+7 14482     -3.913100e+02 5.614800e+02
+2 14483     3.254500e+02 2.712500e+02
+6 14483     2.375200e+02 5.117700e+02
+8 14483     3.339500e+02 2.006800e+02
+9 14483     1.324900e+02 3.213900e+02
+2 14484     -2.687900e+02 2.657200e+02
+3 14484     -4.009100e+02 -6.667999e+01
+6 14484     -4.525300e+02 5.337600e+02
+8 14484     -1.415100e+02 2.034800e+02
+12 14484     -2.789500e+02 5.193800e+02
+2 14485     3.637100e+02 2.635300e+02
+3 14485     2.207900e+02 -6.064001e+01
+6 14485     2.789700e+02 4.992400e+02
+7 14485     3.553199e+02 5.029300e+02
+8 14485     3.640900e+02 1.941400e+02
+9 14485     1.659700e+02 3.160400e+02
+12 14485     3.813700e+02 4.931500e+02
+13 14485     7.219600e+02 9.520001e+01
+2 14486     3.805100e+02 2.616300e+02
+3 14486     2.374600e+02 -6.246002e+01
+6 14486     2.982900e+02 4.935500e+02
+8 14486     3.781800e+02 1.912000e+02
+9 14486     1.807700e+02 3.146400e+02
+12 14486     3.991200e+02 4.881600e+02
+13 14486     7.361700e+02 9.014999e+01
+2 14487     -4.062900e+02 2.606000e+02
+4 14487     2.381000e+01 -2.892600e+02
+7 14487     -3.472400e+02 5.559000e+02
+8 14487     -2.549500e+02 1.962800e+02
+11 14487     4.008002e+01 -2.660900e+02
+2 14488     -4.260100e+02 2.581400e+02
+4 14488     2.340997e+01 -2.763000e+02
+5 14488     2.656200e+02 -1.527000e+02
+7 14488     -3.673400e+02 5.513900e+02
+8 14488     -2.705600e+02 1.935000e+02
+11 14488     2.026001e+01 -2.691500e+02
+12 14488     -4.601100e+02 4.865000e+02
+2 14489     5.583400e+02 2.566800e+02
+7 14489     4.951400e+02 4.289700e+02
+8 14489     5.196400e+02 1.767500e+02
+9 14489     3.352600e+02 3.134200e+02
+10 14489     6.767200e+02 4.991200e+02
+12 14489     5.665800e+02 4.382800e+02
+2 14490     4.365300e+02 2.546600e+02
+6 14490     3.494000e+02 4.479200e+02
+8 14490     4.199900e+02 1.817300e+02
+9 14490     2.318300e+02 3.114000e+02
+2 14491     3.714100e+02 2.519700e+02
+3 14491     2.287400e+02 -7.195001e+01
+7 14491     3.611300e+02 4.901200e+02
+8 14491     3.705300e+02 1.840800e+02
+9 14491     1.738700e+02 3.061500e+02
+12 14491     3.894000e+02 4.794600e+02
+13 14491     7.273900e+02 8.367999e+01
+2 14492     3.714100e+02 2.519700e+02
+3 14492     2.287400e+02 -7.195001e+01
+6 14492     2.876600e+02 4.844800e+02
+8 14492     3.705300e+02 1.840800e+02
+9 14492     1.738700e+02 3.061500e+02
+12 14492     3.894000e+02 4.794600e+02
+13 14492     7.273900e+02 8.367999e+01
+2 14493     5.131899e+02 2.508200e+02
+3 14493     3.709399e+02 -6.772998e+01
+6 14493     4.349100e+02 4.325200e+02
+8 14493     4.823400e+02 1.763700e+02
+2 14494     -7.183000e+02 2.466900e+02
+4 14494     3.754999e+01 -1.197400e+02
+5 14494     -1.382001e+01 -1.622600e+02
+8 14494     -5.094100e+02 1.789900e+02
+11 14494     -2.279100e+02 -2.795200e+02
+12 14494     -7.916000e+02 4.331600e+02
+2 14495     -5.999000e+02 2.403000e+02
+4 14495     2.756000e+01 -1.783400e+02
+5 14495     9.409998e+01 -1.679100e+02
+7 14495     -5.422900e+02 5.170900e+02
+12 14495     -6.572400e+02 4.436800e+02
+2 14496     2.648700e+02 2.352400e+02
+6 14496     1.674300e+02 4.802900e+02
+7 14496     2.691801e+02 4.968600e+02
+8 14496     2.848700e+02 1.726700e+02
+9 14496     8.247998e+01 2.883900e+02
+12 14496     2.794600e+02 4.715800e+02
+2 14497     5.835500e+02 2.303700e+02
+6 14497     5.127600e+02 4.009300e+02
+12 14497     5.938000e+02 4.114300e+02
+2 14498     3.420500e+02 2.279000e+02
+7 14498     3.340500e+02 4.735400e+02
+10 14498     5.045100e+02 5.803200e+02
+2 14499     -4.677800e+02 2.255300e+02
+3 14499     -5.955900e+02 -1.040700e+02
+13 14499     4.303003e+01 1.354200e+02
+2 14500     3.212000e+02 2.224600e+02
+3 14500     1.807300e+02 -1.019500e+02
+6 14500     2.303600e+02 4.581900e+02
+7 14500     3.156600e+02 4.729100e+02
+8 14500     3.299600e+02 1.612500e+02
+9 14500     1.309400e+02 2.792900e+02
+10 14500     4.830300e+02 5.820500e+02
+12 14500     3.372800e+02 4.523500e+02
+2 14501     3.212000e+02 2.224600e+02
+3 14501     1.807300e+02 -1.019500e+02
+6 14501     2.303600e+02 4.581900e+02
+7 14501     3.156600e+02 4.729100e+02
+8 14501     3.299600e+02 1.612500e+02
+9 14501     1.309400e+02 2.792900e+02
+10 14501     4.830300e+02 5.820500e+02
+12 14501     3.372800e+02 4.523500e+02
+2 14502     -3.971400e+02 2.199200e+02
+3 14502     -5.267600e+02 -1.110200e+02
+2 14503     3.008000e+02 2.178600e+02
+10 14503     4.633900e+02 5.832700e+02
+2 14504     3.416500e+02 2.178300e+02
+3 14504     1.989301e+02 -1.042400e+02
+9 14504     1.470900e+02 2.770100e+02
+12 14504     3.563600e+02 4.462100e+02
+2 14505     -5.970300e+02 2.167600e+02
+4 14505     1.653998e+01 -1.776600e+02
+7 14505     -5.370300e+02 4.970400e+02
+8 14505     -4.101100e+02 1.581100e+02
+11 14505     -1.305600e+02 -2.998200e+02
+2 14506     -3.724400e+02 2.167900e+02
+5 14506     3.148101e+02 -1.898300e+02
+6 14506     -5.733800e+02 4.547900e+02
+11 14506     6.895001e+01 -2.976000e+02
+12 14506     -3.948000e+02 4.522100e+02
+2 14507     3.508600e+02 2.162300e+02
+8 14507     3.537300e+02 1.554600e+02
+2 14508     -2.644200e+02 2.131500e+02
+3 14508     -3.973800e+02 -1.181200e+02
+13 14508     2.101200e+02 1.362700e+02
+14 14508     3.374000e+02 -2.776900e+02
+2 14509     -2.205600e+02 2.118800e+02
+3 14509     -3.551600e+02 -1.198900e+02
+12 14509     -2.190200e+02 4.690300e+02
+13 14509     2.478600e+02 1.378300e+02
+14 14509     3.841100e+02 -2.775100e+02
+2 14510     3.706700e+02 2.112000e+02
+3 14510     2.297100e+02 -1.110900e+02
+8 14510     3.690800e+02 1.512500e+02
+9 14510     1.739100e+02 2.714800e+02
+13 14510     7.221700e+02 5.089001e+01
+2 14511     -4.364700e+02 2.097700e+02
+4 14511     1.530029e+00 -2.651800e+02
+7 14511     -3.747400e+02 5.076800e+02
+8 14511     -2.792300e+02 1.555400e+02
+13 14511     6.781000e+01 1.260200e+02
+2 14512     -9.260999e+01 2.100800e+02
+3 14512     -2.320900e+02 -1.213300e+02
+5 14512     6.183400e+02 -1.945800e+02
+7 14512     -1.462000e+01 5.433900e+02
+8 14512     4.119995e+00 1.621900e+02
+9 14512     -2.275200e+02 2.539500e+02
+13 14512     3.614399e+02 1.437600e+02
+14 14512     5.247300e+02 -2.750000e+02
+2 14513     5.853003e+01 2.094100e+02
+5 14513     7.978800e+02 -1.952500e+02
+9 14513     -1.009800e+02 2.580400e+02
+2 14514     -7.007700e+02 2.037000e+02
+4 14514     1.831000e+01 -1.246100e+02
+2 14515     3.638600e+02 2.033000e+02
+3 14515     2.233199e+02 -1.193700e+02
+6 14515     2.780400e+02 4.305000e+02
+7 14515     3.502200e+02 4.458500e+02
+8 14515     3.639800e+02 1.446600e+02
+9 14515     1.680500e+02 2.644600e+02
+12 14515     3.805200e+02 4.272100e+02
+13 14515     7.157100e+02 4.523999e+01
+2 14516     3.712700e+02 2.030300e+02
+6 14516     2.857800e+02 4.302800e+02
+7 14516     3.564399e+02 4.444100e+02
+2 14517     3.712700e+02 2.030300e+02
+6 14517     2.857800e+02 4.302800e+02
+7 14517     3.564399e+02 4.444100e+02
+9 14517     1.753900e+02 2.649000e+02
+12 14517     3.879800e+02 4.270900e+02
+13 14517     7.220400e+02 4.384003e+01
+2 14518     -4.297500e+02 2.011100e+02
+5 14518     2.559399e+02 -2.030300e+02
+8 14518     -2.732500e+02 1.490800e+02
+12 14518     -4.589500e+02 4.283400e+02
+14 14518     1.695000e+02 -2.911100e+02
+2 14519     -3.954100e+02 1.977100e+02
+3 14519     -5.249200e+02 -1.321800e+02
+4 14519     -7.169983e+00 -2.877200e+02
+5 14519     2.896100e+02 -2.058200e+02
+7 14519     -3.321300e+02 5.018300e+02
+8 14519     -2.453600e+02 1.473300e+02
+11 14519     4.746997e+01 -3.132200e+02
+12 14519     -4.204600e+02 4.303400e+02
+2 14520     -4.883100e+02 1.967600e+02
+4 14520     -5.100098e-01 -2.346500e+02
+5 14520     1.972300e+02 -2.066100e+02
+7 14520     -4.261600e+02 4.910600e+02
+8 14520     -3.218700e+02 1.440800e+02
+11 14520     -3.659998e+01 -3.131100e+02
+12 14520     -5.259200e+02 4.151000e+02
+2 14521     4.997100e+02 1.924800e+02
+3 14521     3.594100e+02 -1.234900e+02
+6 14521     4.173800e+02 3.709900e+02
+7 14521     4.365000e+02 3.819800e+02
+9 14521     2.864301e+02 2.609300e+02
+10 14521     6.025601e+02 4.486100e+02
+13 14521     8.108600e+02 -1.453998e+01
+2 14522     -3.417500e+02 1.906600e+02
+5 14522     3.430400e+02 -2.155100e+02
+2 14523     3.755200e+02 1.912700e+02
+3 14523     2.346801e+02 -1.299400e+02
+6 14523     2.906900e+02 4.164000e+02
+8 14523     3.733000e+02 1.350700e+02
+9 14523     1.786200e+02 2.550700e+02
+12 14523     3.925900e+02 4.135500e+02
+13 14523     7.242300e+02 3.358002e+01
+2 14524     5.891300e+02 1.876700e+02
+7 14524     5.135000e+02 3.570000e+02
+9 14524     3.630200e+02 2.595300e+02
+10 14524     6.928199e+02 4.092300e+02
+2 14525     -1.770500e+02 1.870700e+02
+4 14525     -3.237000e+01 -4.279400e+02
+5 14525     5.199399e+02 -2.170200e+02
+7 14525     -1.049900e+02 5.137500e+02
+8 14525     -6.646997e+01 1.421700e+02
+2 14526     -3.576200e+02 1.859600e+02
+13 14526     1.292200e+02 1.097900e+02
+2 14527     5.228101e+02 1.836100e+02
+9 14527     3.058800e+02 2.550200e+02
+12 14527     5.262200e+02 3.668100e+02
+2 14528     -4.915500e+02 1.827800e+02
+4 14528     -6.489990e+00 -2.311400e+02
+5 14528     1.925400e+02 -2.184800e+02
+7 14528     -4.289000e+02 4.788000e+02
+8 14528     -3.239300e+02 1.339900e+02
+2 14529     6.984700e+02 1.806500e+02
+9 14529     4.546600e+02 2.575400e+02
+2 14530     6.984700e+02 1.806500e+02
+9 14530     4.546600e+02 2.575400e+02
+2 14531     6.805000e+02 1.798300e+02
+3 14531     5.346300e+02 -1.293500e+02
+7 14531     5.949000e+02 3.281700e+02
+9 14531     4.396100e+02 2.562000e+02
+10 14531     7.882600e+02 3.648800e+02
+12 14531     6.961600e+02 3.429900e+02
+2 14532     2.139000e+02 1.759500e+02
+3 14532     1.052700e+02 -1.438000e+02
+2 14533     -2.887100e+02 1.634500e+02
+7 14533     -2.207600e+02 4.821000e+02
+2 14534     -2.887100e+02 1.634500e+02
+6 14534     -4.681100e+02 4.121500e+02
+7 14534     -2.207600e+02 4.821000e+02
+2 14535     -5.728000e+02 1.608100e+02
+5 14535     1.118600e+02 -2.366900e+02
+7 14535     -5.082600e+02 4.494600e+02
+8 14535     -3.900300e+02 1.142800e+02
+12 14535     -6.173000e+02 3.654900e+02
+14 14535     2.781000e+01 -3.274200e+02
+2 14536     -2.981300e+02 1.610000e+02
+6 14536     -4.793100e+02 4.078900e+02
+7 14536     -2.302300e+02 4.794900e+02
+9 14536     -4.006500e+02 2.036300e+02
+2 14537     -4.694800e+02 1.551700e+02
+7 14537     -4.051500e+02 4.574300e+02
+10 14537     -3.659300e+02 6.154500e+02
+2 14538     -6.952100e+02 1.535100e+02
+5 14538     -2.520020e+00 -2.402000e+02
+7 14538     -6.261400e+02 4.329800e+02
+10 14538     -6.292600e+02 5.976800e+02
+2 14539     -5.995800e+02 1.534000e+02
+4 14539     -1.117999e+01 -1.704400e+02
+5 14539     8.540002e+01 -2.422800e+02
+7 14539     -5.336400e+02 4.422700e+02
+10 14539     -5.196400e+02 6.038500e+02
+11 14539     -1.348100e+02 -3.436700e+02
+12 14539     -6.464500e+02 3.559500e+02
+13 14539     -6.231000e+01 8.010001e+01
+14 14539     2.510010e+00 -3.334900e+02
+2 14540     8.169100e+02 1.531300e+02
+3 14540     6.652000e+02 -1.497700e+02
+7 14540     7.141400e+02 2.697500e+02
+9 14540     5.523500e+02 2.376700e+02
+2 14541     -6.422600e+02 1.501500e+02
+4 14541     -9.150024e+00 -1.483600e+02
+7 14541     -5.754900e+02 4.357100e+02
+2 14542     5.973101e+02 1.478100e+02
+3 14542     4.560800e+02 -1.635700e+02
+6 14542     5.235601e+02 3.085600e+02
+7 14542     5.172500e+02 3.178500e+02
+8 14542     5.506700e+02 8.994000e+01
+2 14543     1.710500e+02 1.387100e+02
+3 14543     7.481000e+01 -1.777500e+02
+5 14543     7.067100e+02 -5.431700e+02
+6 14543     -1.080017e+00 1.603100e+02
+8 14543     1.755300e+02 6.882001e+01
+12 14543     2.410999e+01 2.132100e+02
+2 14544     7.073999e+01 1.348300e+02
+3 14544     -2.325000e+01 -1.839600e+02
+5 14544     6.101100e+02 -5.152000e+02
+6 14544     -1.062300e+02 1.674300e+02
+7 14544     -1.090700e+02 2.485400e+02
+8 14544     9.508002e+01 6.875000e+01
+10 14544     -1.006000e+02 3.045600e+02
+12 14544     -7.313000e+01 2.197700e+02
+13 14544     3.481000e+02 -1.063500e+02
+15 14544     -4.282001e+01 3.287000e+02
+2 14545     5.601000e+02 1.348100e+02
+3 14545     4.214900e+02 -1.771600e+02
+8 14545     5.200601e+02 7.981000e+01
+9 14545     3.392800e+02 2.144900e+02
+15 14545     8.630500e+02 4.083600e+02
+2 14546     -7.242900e+02 1.326000e+02
+4 14546     -1.046997e+01 -1.069000e+02
+7 14546     -6.518200e+02 4.121600e+02
+8 14546     -5.129400e+02 8.956000e+01
+11 14546     -2.373800e+02 -3.564000e+02
+12 14546     -7.826100e+02 3.183900e+02
+2 14547     -3.682700e+02 1.324300e+02
+6 14547     -5.613300e+02 3.613100e+02
+7 14547     -3.014500e+02 4.474600e+02
+9 14547     -4.595700e+02 1.757800e+02
+14 14547     2.248700e+02 -3.522900e+02
+2 14548     -6.780300e+02 1.290000e+02
+4 14548     -1.588000e+01 -1.288000e+02
+5 14548     1.077002e+01 -2.617600e+02
+8 14548     -4.750200e+02 8.692999e+01
+2 14549     -4.841500e+02 1.275500e+02
+4 14549     -3.242999e+01 -2.299000e+02
+7 14549     -4.169700e+02 4.323100e+02
+8 14549     -3.174200e+02 9.032001e+01
+10 14549     -3.807800e+02 5.868200e+02
+12 14549     -5.136700e+02 3.466000e+02
+2 14550     1.591300e+02 1.277800e+02
+8 14550     1.640800e+02 6.045999e+01
+2 14551     2.997100e+02 1.281000e+02
+8 14551     2.816100e+02 5.923001e+01
+13 14551     5.218199e+02 -1.480900e+02
+2 14552     -6.198300e+02 1.256900e+02
+4 14552     -2.171997e+01 -1.575200e+02
+7 14552     -5.508600e+02 4.169000e+02
+8 14552     -4.281700e+02 8.635001e+01
+10 14552     -5.403100e+02 5.751500e+02
+11 14552     -1.543700e+02 -3.629800e+02
+13 14552     -7.850000e+01 6.040997e+01
+2 14553     1.230800e+02 1.221900e+02
+6 14553     -5.431000e+01 1.413100e+02
+2 14554     5.378700e+02 1.149000e+02
+7 14554     4.625100e+02 3.020100e+02
+9 14554     3.213900e+02 1.965700e+02
+2 14555     -6.157000e+02 1.124700e+02
+7 14555     -5.453600e+02 4.065500e+02
+10 14555     -5.355200e+02 5.629900e+02
+2 14556     4.862300e+02 1.123900e+02
+3 14556     3.498300e+02 -2.011300e+02
+6 14556     3.995200e+02 2.855800e+02
+8 14556     4.584399e+02 6.438000e+01
+9 14556     2.773800e+02 1.927600e+02
+12 14556     4.848500e+02 2.948400e+02
+2 14557     -2.642400e+02 1.071700e+02
+7 14557     -1.940300e+02 4.361000e+02
+9 14557     -3.690400e+02 1.580900e+02
+10 14557     -1.125000e+02 5.819600e+02
+11 14557     1.678500e+02 -3.786400e+02
+2 14558     -2.020020e+00 9.983002e+01
+8 14558     3.751001e+01 4.226999e+01
+2 14559     -2.824800e+02 9.848999e+01
+10 14559     -1.353700e+02 5.718700e+02
+13 14559     1.891400e+02 5.178998e+01
+2 14560     6.070400e+02 9.577002e+01
+3 14560     4.672500e+02 -2.126900e+02
+6 14560     5.311200e+02 2.521300e+02
+7 14560     5.186500e+02 2.691200e+02
+8 14560     5.584700e+02 4.707001e+01
+9 14560     3.800200e+02 1.830800e+02
+12 14560     6.113900e+02 2.620800e+02
+2 14561     6.781000e+01 9.446997e+01
+5 14561     5.899600e+02 -5.621400e+02
+6 14561     -1.134500e+02 1.133300e+02
+7 14561     -1.272300e+02 2.032100e+02
+12 14561     -8.817999e+01 1.678700e+02
+2 14562     2.119600e+02 9.352002e+01
+4 14562     -2.484500e+02 -4.757700e+02
+6 14562     3.865002e+01 9.909003e+01
+10 14562     -6.549988e+00 2.055800e+02
+2 14563     3.087500e+02 9.271997e+01
+3 14563     2.040601e+02 -2.177100e+02
+4 14563     -2.742600e+02 -5.447400e+02
+8 14563     2.824100e+02 2.826999e+01
+2 14564     8.030699e+02 9.129999e+01
+3 14564     6.569399e+02 -2.093900e+02
+9 14564     5.428199e+02 1.857100e+02
+2 14565     3.143101e+02 8.745001e+01
+3 14565     2.126801e+02 -2.224100e+02
+7 14565     8.228003e+01 1.638700e+02
+2 14566     2.554399e+02 8.145001e+01
+3 14566     1.568400e+02 -2.298200e+02
+8 14566     2.381100e+02 1.885999e+01
+2 14567     -4.603300e+02 7.937000e+01
+7 14567     -3.911000e+02 3.940200e+02
+12 14567     -4.829100e+02 3.019100e+02
+2 14568     4.816998e+01 7.885999e+01
+3 14568     -4.153998e+01 -2.372000e+02
+4 14568     -2.094800e+02 -3.809600e+02
+5 14568     5.698500e+02 -5.727000e+02
+6 14568     -1.327900e+02 9.703998e+01
+7 14568     -1.435300e+02 1.920200e+02
+8 14568     7.419000e+01 2.198001e+01
+12 14568     -1.070500e+02 1.525900e+02
+13 14568     3.182700e+02 -1.521000e+02
+2 14569     4.816998e+01 7.885999e+01
+12 14569     -1.070500e+02 1.525900e+02
+2 14570     4.844399e+02 7.721002e+01
+3 14570     3.497800e+02 -2.350000e+02
+6 14570     3.967700e+02 2.488700e+02
+7 14570     4.130400e+02 2.812900e+02
+10 14570     5.670300e+02 3.299800e+02
+12 14570     4.821200e+02 2.591800e+02
+13 14570     7.842500e+02 -1.040000e+02
+15 14570     7.616899e+02 3.689500e+02
+2 14571     7.368400e+02 7.716998e+01
+9 14571     4.888000e+02 1.726200e+02
+2 14572     -4.672000e+02 7.620001e+01
+5 14572     2.057000e+02 -3.109900e+02
+7 14572     -3.969100e+02 3.912100e+02
+8 14572     -3.033500e+02 5.253000e+01
+12 14572     -4.904400e+02 3.008100e+02
+14 14572     1.223000e+02 -3.994500e+02
+2 14573     6.566000e+02 7.214001e+01
+3 14573     5.175500e+02 -2.329100e+02
+9 14573     4.220400e+02 1.653400e+02
+10 14573     7.360900e+02 2.576800e+02
+12 14573     6.634800e+02 2.300600e+02
+2 14574     -9.150000e+01 6.845001e+01
+6 14574     -2.379600e+02 3.018100e+02
+2 14575     4.937100e+02 6.354999e+01
+6 14575     4.051200e+02 2.336900e+02
+7 14575     4.193700e+02 2.673400e+02
+8 14575     4.632100e+02 2.456000e+01
+9 14575     2.852100e+02 1.515900e+02
+12 14575     4.904900e+02 2.435800e+02
+2 14576     -4.212600e+02 5.956000e+01
+7 14576     -3.500500e+02 3.818200e+02
+2 14577     2.606100e+02 5.617999e+01
+3 14577     1.643600e+02 -2.535300e+02
+4 14577     -2.851500e+02 -4.960000e+02
+2 14578     1.644700e+02 5.520001e+01
+4 14578     -2.579800e+02 -4.335000e+02
+6 14578     -1.546997e+01 5.456000e+01
+2 14579     7.459998e+01 4.488000e+01
+3 14579     -1.359003e+01 -2.703400e+02
+4 14579     -2.374100e+02 -3.826500e+02
+6 14579     -1.070900e+02 5.254999e+01
+8 14579     9.313000e+01 -8.130005e+00
+10 14579     -1.400100e+02 1.905100e+02
+12 14579     -8.714001e+01 1.079000e+02
+2 14580     5.197400e+02 4.492999e+01
+6 14580     4.340100e+02 2.100600e+02
+8 14580     4.855000e+02 8.440002e+00
+9 14580     3.080300e+02 1.374200e+02
+10 14580     5.941400e+02 2.823500e+02
+2 14581     -4.346100e+02 4.371997e+01
+7 14581     -3.626800e+02 3.669000e+02
+13 14581     6.171002e+01 8.890015e+00
+14 14581     1.511200e+02 -4.296500e+02
+2 14582     4.861300e+02 4.194000e+01
+6 14582     3.985000e+02 2.115500e+02
+7 14582     4.111200e+02 2.504200e+02
+8 14582     4.584100e+02 7.410004e+00
+10 14582     5.616500e+02 2.940400e+02
+12 14582     4.838300e+02 2.217700e+02
+2 14583     -1.187000e+01 3.834003e+01
+3 14583     -1.001800e+02 -2.782400e+02
+5 14583     5.116200e+02 -5.891400e+02
+6 14583     -1.930400e+02 6.362000e+01
+7 14583     -1.861600e+02 1.712000e+02
+8 14583     2.685999e+01 -8.679993e+00
+12 14583     -1.612400e+02 1.197200e+02
+13 14583     2.754200e+02 -1.675800e+02
+2 14584     1.791200e+02 3.789001e+01
+3 14584     8.875000e+01 -2.728000e+02
+6 14584     -4.000244e-01 3.353003e+01
+7 14584     -5.446002e+01 1.232600e+02
+8 14584     1.770000e+02 -1.707999e+01
+12 14584     1.391998e+01 8.734003e+01
+13 14584     4.003101e+02 -2.143900e+02
+2 14585     5.994200e+02 3.785999e+01
+3 14585     4.640000e+02 -2.690300e+02
+6 14585     5.203800e+02 1.919300e+02
+8 14585     5.506600e+02 7.000732e-02
+12 14585     6.006700e+02 2.013800e+02
+2 14586     1.503600e+02 2.921002e+01
+3 14586     6.101001e+01 -2.813700e+02
+4 14586     -2.686100e+02 -4.179400e+02
+8 14586     1.526000e+02 -2.051999e+01
+13 14586     3.781700e+02 -2.140200e+02
+2 14587     3.559998e+00 2.779999e+01
+3 14587     -8.425000e+01 -2.872700e+02
+6 14587     -1.782800e+02 4.656000e+01
+7 14587     -1.795500e+02 1.532500e+02
+9 14587     -1.080300e+02 1.071600e+02
+12 14587     -1.505500e+02 1.026400e+02
+2 14588     4.221600e+02 2.564001e+01
+3 14588     3.126300e+02 -2.796200e+02
+2 14589     7.945300e+02 2.463000e+01
+9 14589     5.374000e+02 1.301100e+02
+2 14590     7.945300e+02 2.463000e+01
+9 14590     5.374000e+02 1.301100e+02
+2 14591     3.060601e+02 2.395001e+01
+15 14591     1.521899e+02 1.017900e+02
+2 14592     3.060601e+02 2.395001e+01
+4 14592     -3.191500e+02 -5.214301e+02
+7 14592     5.746997e+01 9.885001e+01
+10 14592     6.659998e+01 1.102000e+02
+2 14593     -4.608800e+02 2.314001e+01
+7 14593     -3.875000e+02 3.480900e+02
+2 14594     5.117200e+02 1.484003e+01
+8 14594     4.647200e+02 -2.697000e+01
+2 14595     5.179993e+00 1.206000e+01
+6 14595     -1.767000e+02 2.803003e+01
+7 14595     -1.814700e+02 1.383200e+02
+9 14595     -1.060200e+02 9.322000e+01
+12 14595     -1.503500e+02 8.384998e+01
+13 14595     2.806200e+02 -1.946200e+02
+15 14595     -1.462800e+02 1.864300e+02
+2 14596     5.179993e+00 1.206000e+01
+8 14596     3.907001e+01 -3.162000e+01
+2 14597     6.638101e+02 -2.150024e+00
+7 14597     5.577100e+02 1.674600e+02
+12 14597     6.645100e+02 1.521200e+02
+2 14598     6.638101e+02 -2.150024e+00
+7 14598     5.577100e+02 1.674600e+02
+9 14598     4.295100e+02 1.033900e+02
+2 14599     -1.464800e+02 -1.478998e+01
+3 14599     -2.391600e+02 -3.346200e+02
+2 14600     6.486500e+02 -2.441998e+01
+8 14600     5.906700e+02 -5.223001e+01
+9 14600     4.176200e+02 8.457999e+01
+2 14601     6.486500e+02 -2.441998e+01
+8 14601     5.906700e+02 -5.223001e+01
+9 14601     4.176200e+02 8.457999e+01
+2 14602     8.031200e+02 -3.253998e+01
+9 14602     5.453199e+02 8.370999e+01
+2 14603     7.300900e+02 -4.131000e+01
+9 14603     4.861200e+02 7.344000e+01
+12 14603     7.359700e+02 1.001300e+02
+2 14604     6.492900e+02 -4.721997e+01
+3 14604     5.175699e+02 -3.498700e+02
+6 14604     5.722400e+02 9.662000e+01
+8 14604     5.919600e+02 -7.178003e+01
+12 14604     6.502400e+02 1.062600e+02
+2 14605     7.131200e+02 -5.107001e+01
+7 14605     5.924301e+02 1.132000e+02
+9 14605     4.716600e+02 6.428003e+01
+2 14606     6.007300e+02 -5.603998e+01
+15 14606     8.707100e+02 1.535300e+02
+2 14607     -1.101100e+02 -5.654999e+01
+6 14607     -2.925700e+02 -2.853998e+01
+2 14608     7.250000e+02 -5.834003e+01
+9 14608     4.826899e+02 5.857001e+01
+2 14609     -4.441998e+01 -5.988000e+01
+6 14609     -2.279700e+02 -4.928998e+01
+8 14609     -3.359985e+00 -8.994000e+01
+2 14610     2.296801e+02 -6.366998e+01
+6 14610     4.909003e+01 -7.412000e+01
+7 14610     -2.378003e+01 2.684998e+01
+2 14611     5.846600e+02 -7.369000e+01
+10 14611     6.357700e+02 1.394600e+02
+2 14612     4.849800e+02 -8.097998e+01
+3 14612     3.769301e+02 -3.808600e+02
+15 14612     3.870000e+02 -3.909003e+01
+2 14613     7.165500e+02 -9.200000e+01
+9 14613     4.761500e+02 3.053998e+01
+2 14614     5.995400e+02 -9.490002e+01
+7 14614     4.927200e+02 1.058200e+02
+12 14614     5.957100e+02 6.478998e+01
+15 14614     8.607300e+02 1.085800e+02
+2 14615     -1.088900e+02 -1.036900e+02
+3 14615     -1.893500e+02 -4.180000e+02
+2 14616     -7.662000e+01 -1.198700e+02
+3 14616     -1.540900e+02 -4.328101e+02
+4 14616     -2.869800e+02 -2.685700e+02
+6 14616     -2.623400e+02 -1.249900e+02
+8 14616     -3.219000e+01 -1.398600e+02
+2 14617     7.206000e+02 -1.233200e+02
+9 14617     4.801300e+02 4.580017e+00
+2 14618     1.322500e+02 -1.263700e+02
+3 14618     5.165002e+01 -4.320300e+02
+6 14618     -5.276001e+01 -1.425200e+02
+7 14618     -1.161200e+02 -1.907001e+01
+8 14618     1.331700e+02 -1.510200e+02
+13 14618     3.393900e+02 -3.339100e+02
+2 14619     3.144100e+02 -1.258500e+02
+3 14619     2.262700e+02 -4.255500e+02
+2 14620     3.225601e+02 -1.294700e+02
+6 14620     1.429900e+02 -1.460800e+02
+8 14620     2.891300e+02 -1.575500e+02
+2 14621     -4.534003e+01 -1.314300e+02
+3 14621     -1.222800e+02 -4.425100e+02
+4 14621     -3.021100e+02 -2.777800e+02
+6 14621     -2.318600e+02 -1.418101e+02
+8 14621     -8.710022e+00 -1.505000e+02
+12 14621     -2.205500e+02 -8.010999e+01
+13 14621     2.160300e+02 -3.049600e+02
+2 14622     7.454600e+02 -1.306300e+02
+7 14622     6.109600e+02 3.925000e+01
+2 14623     4.968700e+02 -1.360600e+02
+3 14623     3.994200e+02 -4.294500e+02
+6 14623     3.273000e+02 -1.464700e+02
+8 14623     4.354800e+02 -1.655600e+02
+2 14624     7.714200e+02 -1.377300e+02
+7 14624     6.313800e+02 2.671002e+01
+9 14624     5.225000e+02 -5.010010e+00
+2 14625     7.814800e+02 -1.396800e+02
+12 14625     7.832300e+02 -9.219971e+00
+2 14626     2.053300e+02 -1.408500e+02
+7 14626     -5.952002e+01 -4.366998e+01
+2 14627     8.113900e+02 -1.486600e+02
+3 14627     6.851400e+02 -4.433101e+02
+12 14627     8.147900e+02 -2.312000e+01
+2 14628     4.988400e+02 -1.508700e+02
+9 14628     3.119100e+02 -2.025000e+01
+2 14629     1.351001e+01 -1.537700e+02
+3 14629     -6.034998e+01 -4.620400e+02
+6 14629     -1.742400e+02 -1.758700e+02
+8 14629     3.585999e+01 -1.719000e+02
+2 14630     -7.500000e+00 -1.575500e+02
+8 14630     1.996002e+01 -1.735400e+02
+2 14631     1.891998e+01 -1.587900e+02
+3 14631     -5.487000e+01 -4.662100e+02
+8 14631     4.020001e+01 -1.771800e+02
+2 14632     6.037000e+01 -1.622300e+02
+3 14632     -1.473999e+01 -4.684100e+02
+2 14633     9.246002e+01 -1.669400e+02
+3 14633     1.765002e+01 -4.723700e+02
+2 14634     -3.655500e+02 -1.685600e+02
+7 14634     -3.776700e+02 1.186600e+02
+8 14634     -2.377400e+02 -1.545200e+02
+10 14634     -3.724400e+02 2.081200e+02
+13 14634     5.814001e+01 -2.024200e+02
+15 14634     -3.464300e+02 2.083000e+02
+2 14635     1.110400e+02 -1.699400e+02
+6 14635     -7.815997e+01 -1.970500e+02
+12 14635     -8.082001e+01 -1.421600e+02
+2 14636     5.726001e+01 -1.757100e+02
+6 14636     -1.309100e+02 -1.979200e+02
+8 14636     6.996997e+01 -1.901900e+02
+2 14637     1.655000e+02 -1.773200e+02
+3 14637     8.858002e+01 -4.791100e+02
+4 14637     -3.952200e+02 -3.655200e+02
+6 14637     -2.396997e+01 -2.080100e+02
+12 14637     -2.809003e+01 -1.560000e+02
+2 14638     8.179200e+02 -1.799800e+02
+7 14638     6.559399e+02 -2.733002e+01
+2 14639     -8.509998e+01 -1.806700e+02
+4 14639     -3.117400e+02 -2.615200e+02
+9 14639     -1.719700e+02 -7.101001e+01
+2 14640     2.341100e+02 -1.814000e+02
+3 14640     1.558000e+02 -4.813800e+02
+2 14641     4.129700e+02 -1.830100e+02
+3 14641     3.244600e+02 -4.778400e+02
+6 14641     2.335800e+02 -2.014000e+02
+7 14641     1.159000e+02 -1.045600e+02
+8 14641     3.627400e+02 -2.024000e+02
+10 14641     1.132500e+02 -1.293500e+02
+12 14641     2.429100e+02 -1.630700e+02
+15 14641     2.100800e+02 -1.792500e+02
+2 14642     5.114900e+02 -1.839500e+02
+9 14642     3.207500e+02 -4.851001e+01
+2 14643     5.180000e+02 -1.871100e+02
+8 14643     4.578000e+02 -2.035800e+02
+9 14643     3.260200e+02 -5.096002e+01
+2 14644     4.216998e+01 -1.962300e+02
+6 14644     -1.441700e+02 -2.138101e+02
+7 14644     -1.956400e+02 -6.671002e+01
+8 14644     5.885999e+01 -2.055600e+02
+12 14644     -1.418600e+02 -1.568600e+02
+2 14645     3.049900e+02 -1.965500e+02
+13 14645     4.521000e+02 -4.224100e+02
+2 14646     8.073900e+02 -1.976100e+02
+7 14646     6.325400e+02 -4.907001e+01
+9 14646     5.544200e+02 -5.202002e+01
+2 14647     4.685200e+02 -2.019800e+02
+6 14647     2.969800e+02 -2.071400e+02
+12 14647     3.145000e+02 -1.735400e+02
+13 14647     6.017700e+02 -4.417100e+02
+2 14648     1.209200e+02 -2.034000e+02
+6 14648     -6.721997e+01 -2.269301e+02
+12 14648     -6.834998e+01 -1.726900e+02
+2 14649     -3.027200e+02 -2.214400e+02
+8 14649     -1.930300e+02 -2.001500e+02
+13 14649     8.758002e+01 -2.605700e+02
+15 14649     -3.199500e+02 1.159900e+02
+2 14650     -4.415600e+02 -2.300300e+02
+7 14650     -4.533000e+02 5.203003e+01
+13 14650     -4.409973e+00 -2.537200e+02
+15 14650     -4.578400e+02 1.244600e+02
+2 14651     2.062000e+01 -2.307200e+02
+3 14651     -5.271997e+01 -5.391100e+02
+2 14652     1.023900e+02 -2.338300e+02
+6 14652     -8.326001e+01 -2.501500e+02
+12 14652     -8.141998e+01 -1.972600e+02
+2 14653     2.061100e+02 -2.501500e+02
+3 14653     1.302200e+02 -5.517200e+02
+2 14654     2.923101e+02 -2.538400e+02
+3 14654     2.126801e+02 -5.516700e+02
+6 14654     1.075400e+02 -2.722500e+02
+8 14654     2.606600e+02 -2.588800e+02
+9 14654     1.474600e+02 -1.121800e+02
+12 14654     1.102400e+02 -2.296500e+02
+13 14654     4.416200e+02 -4.564399e+02
+15 14654     5.784998e+01 -2.172800e+02
+2 14655     4.015900e+02 -2.584500e+02
+3 14655     3.162600e+02 -5.556700e+02
+6 14655     2.238100e+02 -2.662000e+02
+7 14655     1.093900e+02 -1.536800e+02
+8 14655     3.531900e+02 -2.633500e+02
+9 14655     2.363000e+02 -1.128900e+02
+12 14655     2.355500e+02 -2.303800e+02
+15 14655     2.038700e+02 -2.411400e+02
+2 14656     5.013199e+02 -2.629800e+02
+8 14656     4.422900e+02 -2.642300e+02
+9 14656     3.156700e+02 -1.130100e+02
+2 14657     -3.119400e+02 -2.657900e+02
+7 14657     -3.707600e+02 6.429993e+00
+9 14657     -3.719700e+02 -1.595000e+02
+10 14657     -3.820400e+02 7.373999e+01
+15 14657     -3.592400e+02 5.234998e+01
+2 14658     -5.392800e+02 -2.664900e+02
+15 14658     -5.741700e+02 9.289999e+01
+2 14659     9.872998e+01 -2.752100e+02
+3 14659     2.360999e+01 -5.795500e+02
+6 14659     -8.407001e+01 -2.860900e+02
+2 14660     -5.770001e+01 -2.771800e+02
+8 14660     -1.640997e+01 -2.645600e+02
+2 14661     -1.598999e+01 -2.788300e+02
+7 14661     -2.217600e+02 -1.053500e+02
+8 14661     1.469000e+01 -2.671400e+02
+9 14661     -1.083300e+02 -1.489800e+02
+12 14661     -1.817900e+02 -2.173000e+02
+13 14661     2.280699e+02 -4.045700e+02
+2 14662     -3.908002e+01 -2.838600e+02
+3 14662     -1.163900e+02 -5.961600e+02
+8 14662     -3.700012e+00 -2.706300e+02
+9 14662     -1.289400e+02 -1.544300e+02
+12 14662     -2.007300e+02 -2.188500e+02
+2 14663     3.350601e+02 -2.830600e+02
+6 14663     1.522000e+02 -2.955100e+02
+8 14663     2.961400e+02 -2.825300e+02
+12 14663     1.575400e+02 -2.563700e+02
+2 14664     3.809000e+02 -2.834000e+02
+6 14664     2.024700e+02 -2.909700e+02
+9 14664     2.204200e+02 -1.337000e+02
+2 14665     2.875200e+02 -2.837300e+02
+6 14665     1.034900e+02 -2.967500e+02
+13 14665     4.354301e+02 -4.742900e+02
+2 14666     2.188199e+02 -2.943000e+02
+3 14666     1.438500e+02 -5.951500e+02
+13 14666     3.838101e+02 -4.686200e+02
+2 14667     -3.574700e+02 -2.963900e+02
+8 14667     -2.426900e+02 -2.632100e+02
+2 14668     4.551700e+02 -3.136400e+02
+6 14668     2.858300e+02 -3.034700e+02
+8 14668     4.002000e+02 -3.067400e+02
+12 14668     3.061801e+02 -2.721900e+02
+2 14669     4.492999e+01 -3.183000e+02
+6 14669     -1.360000e+02 -3.188500e+02
+8 14669     6.185999e+01 -3.020300e+02
+9 14669     -5.532001e+01 -1.786600e+02
+2 14670     -5.642900e+02 -3.187700e+02
+13 14670     -1.086400e+02 -3.130200e+02
+2 14671     8.647998e+01 -3.308800e+02
+6 14671     -9.566000e+01 -3.339301e+02
+8 14671     9.396002e+01 -3.133400e+02
+9 14671     -2.003003e+01 -1.866600e+02
+2 14672     2.681899e+02 -3.319500e+02
+6 14672     8.559998e+01 -3.411100e+02
+8 14672     2.411200e+02 -3.203800e+02
+9 14672     1.304900e+02 -1.797000e+02
+2 14673     1.118700e+02 -3.349000e+02
+4 14673     -4.539400e+02 -3.250400e+02
+6 14673     -7.046997e+01 -3.395100e+02
+7 14673     -1.352800e+02 -1.741300e+02
+12 14673     -6.541998e+01 -2.873100e+02
+2 14674     -3.916800e+02 -3.522900e+02
+6 14674     -5.712700e+02 -3.109500e+02
+7 14674     -4.589800e+02 -7.946997e+01
+9 14674     -4.303600e+02 -2.361600e+02
+13 14674     -5.400024e+00 -3.661800e+02
+2 14675     -3.804400e+02 -3.551800e+02
+6 14675     -5.586300e+02 -3.144600e+02
+2 14676     3.330900e+02 -3.632700e+02
+8 14676     2.945000e+02 -3.470700e+02
+9 14676     1.851100e+02 -2.017400e+02
+2 14677     3.330900e+02 -3.632700e+02
+8 14677     2.945000e+02 -3.470700e+02
+2 14678     3.371100e+02 -3.751600e+02
+6 14678     1.560200e+02 -3.795000e+02
+8 14678     2.973000e+02 -3.567500e+02
+2 14679     -4.405200e+02 -3.897500e+02
+8 14679     -3.152400e+02 -3.408100e+02
+2 14680     -2.940400e+02 -4.186100e+02
+8 14680     -2.023000e+02 -3.680900e+02
+2 14681     3.038800e+02 -4.661400e+02
+6 14681     1.210000e+02 -4.683600e+02
+2 14682     1.811300e+02 -4.912600e+02
+4 14682     -5.653400e+02 -3.298800e+02
+6 14682     -2.960022e+00 -4.931600e+02
+12 14682     -3.609985e+00 -4.452700e+02
+2 14683     5.115000e+02 -5.397600e+02
+9 14683     3.393900e+02 -3.372400e+02
+2 14684     -9.270001e+01 -6.003800e+02
+6 14684     -2.734700e+02 -6.117100e+02
+2 14685     6.501000e+02 -6.119800e+02
+6 14685     4.514100e+02 -6.305601e+02
+7 14685     2.477300e+02 -4.835500e+02
+9 14685     4.538600e+02 -3.860900e+02
+10 14685     2.280699e+02 -5.778400e+02
+2 14686     -2.696000e+02 6.061700e+02
+3 14686     -3.960200e+02 2.652500e+02
+11 14686     1.741100e+02 -4.799805e-01
+13 14686     2.239100e+02 4.380900e+02
+14 14686     3.565000e+02 7.859000e+01
+2 14687     -2.977300e+02 5.933300e+02
+5 14687     4.304399e+02 1.640400e+02
+11 14687     1.528200e+02 -9.530029e+00
+13 14687     2.008700e+02 4.292300e+02
+14 14687     3.294900e+02 6.878998e+01
+2 14688     -2.702600e+02 5.602100e+02
+4 14688     1.711899e+02 -4.092500e+02
+8 14688     -1.439700e+02 4.379000e+02
+2 14689     -1.690100e+02 5.554300e+02
+4 14689     1.686801e+02 -4.839500e+02
+2 14690     4.484003e+01 5.549900e+02
+3 14690     -1.021100e+02 2.149000e+02
+11 14690     5.021100e+02 -3.719971e+00
+13 14690     5.186801e+02 4.362300e+02
+2 14691     -5.059998e+00 5.539600e+02
+8 14691     7.631000e+01 4.388100e+02
+11 14691     4.472800e+02 -1.109998e+01
+13 14691     4.689200e+02 4.281800e+02
+14 14691     6.479200e+02 6.094000e+01
+2 14692     -5.059998e+00 5.539600e+02
+8 14692     7.631000e+01 4.388100e+02
+11 14692     4.472800e+02 -1.109998e+01
+13 14692     4.689200e+02 4.281800e+02
+14 14692     6.479200e+02 6.094000e+01
+2 14693     4.429301e+02 5.491100e+02
+8 14693     4.270500e+02 4.229200e+02
+2 14694     -2.118000e+02 5.461300e+02
+4 14694     1.638700e+02 -4.506600e+02
+8 14694     -9.581000e+01 4.274300e+02
+2 14695     -1.940100e+02 5.454700e+02
+3 14695     -3.247600e+02 2.058600e+02
+4 14695     1.626100e+02 -4.642300e+02
+11 14695     2.489900e+02 -3.844000e+01
+13 14695     2.892700e+02 3.990200e+02
+2 14696     -1.940100e+02 5.454700e+02
+3 14696     -3.247600e+02 2.058600e+02
+4 14696     1.626100e+02 -4.642300e+02
+8 14696     -8.085999e+01 4.278600e+02
+2 14697     -2.772400e+02 5.403400e+02
+3 14697     -4.032900e+02 2.029400e+02
+4 14697     1.612000e+02 -4.028800e+02
+6 14697     -4.871400e+02 8.650700e+02
+8 14697     -1.497400e+02 4.218000e+02
+14 14697     3.455800e+02 2.045001e+01
+2 14698     -3.235000e+02 5.384700e+02
+4 14698     1.601899e+02 -3.705600e+02
+5 14698     3.963600e+02 1.070000e+02
+6 14698     -5.462000e+02 8.522400e+02
+8 14698     -1.885000e+02 4.192300e+02
+11 14698     1.222300e+02 -5.526001e+01
+13 14698     1.748800e+02 3.799400e+02
+14 14698     2.978500e+02 1.354999e+01
+2 14699     3.185601e+02 5.385500e+02
+3 14699     1.718200e+02 1.983600e+02
+6 14699     2.352000e+02 8.329500e+02
+8 14699     3.289400e+02 4.198600e+02
+9 14699     1.214500e+02 5.526900e+02
+11 14699     6.383199e+02 -1.131600e+02
+13 14699     7.141600e+02 3.362500e+02
+2 14700     4.596997e+01 5.366300e+02
+3 14700     -9.809998e+01 1.963800e+02
+8 14700     1.193000e+02 4.261800e+02
+11 14700     5.022300e+02 -2.050000e+01
+2 14701     3.527500e+02 5.273900e+02
+3 14701     2.049000e+02 1.878400e+02
+6 14701     2.750100e+02 8.142200e+02
+8 14701     3.592000e+02 4.088900e+02
+9 14701     1.509000e+02 5.435300e+02
+11 14701     6.673000e+02 -1.300700e+02
+13 14701     7.424399e+02 3.211600e+02
+2 14702     -6.859900e+02 5.243400e+02
+3 14702     -7.997300e+02 1.958600e+02
+4 14702     1.584100e+02 -1.593800e+02
+5 14702     4.056000e+01 7.158002e+01
+8 14702     -4.854300e+02 3.980800e+02
+11 14702     -1.932100e+02 -9.129999e+01
+13 14702     -1.175600e+02 3.347000e+02
+14 14702     -4.850000e+01 -2.653998e+01
+2 14703     -5.134400e+02 5.229200e+02
+3 14703     -6.300300e+02 1.923500e+02
+4 14703     1.553400e+02 -2.518300e+02
+5 14703     2.025300e+02 8.046997e+01
+8 14703     -3.446700e+02 4.016500e+02
+13 14703     1.619000e+01 3.497600e+02
+2 14704     5.742999e+01 5.220500e+02
+11 14704     5.157900e+02 -2.998999e+01
+2 14705     5.417200e+02 5.216200e+02
+8 14705     5.093700e+02 3.988800e+02
+9 14705     3.158700e+02 5.430000e+02
+2 14706     -7.447300e+02 5.194400e+02
+4 14706     1.570500e+02 -1.302800e+02
+5 14706     -1.140002e+01 6.377002e+01
+8 14706     -5.327600e+02 3.918500e+02
+2 14707     -6.227000e+02 5.176000e+02
+5 14707     9.740002e+01 6.984998e+01
+2 14708     -6.009700e+02 5.166400e+02
+3 14708     -7.155500e+02 1.885600e+02
+8 14708     -4.163300e+02 3.943900e+02
+14 14708     2.807001e+01 -2.642999e+01
+2 14709     -6.009700e+02 5.166400e+02
+3 14709     -7.155500e+02 1.885600e+02
+4 14709     1.537000e+02 -2.029700e+02
+5 14709     1.184100e+02 6.995001e+01
+8 14709     -4.163300e+02 3.943900e+02
+11 14709     -1.237700e+02 -9.115002e+01
+13 14709     -5.247998e+01 3.373400e+02
+14 14709     2.807001e+01 -2.642999e+01
+2 14710     3.509600e+02 5.161400e+02
+3 14710     2.037500e+02 1.773600e+02
+6 14710     2.736300e+02 8.004400e+02
+8 14710     3.564400e+02 4.007100e+02
+9 14710     1.498000e+02 5.335000e+02
+11 14710     6.661100e+02 -1.398200e+02
+13 14710     7.399900e+02 3.118900e+02
+2 14711     -5.919100e+02 5.143300e+02
+4 14711     1.528000e+02 -2.075800e+02
+5 14711     1.264500e+02 6.907001e+01
+8 14711     -4.091100e+02 3.943000e+02
+11 14711     -1.168800e+02 -9.212000e+01
+13 14711     -4.613000e+01 3.361700e+02
+14 14711     3.556000e+01 -2.803003e+01
+2 14712     -4.863600e+02 5.126900e+02
+4 14712     1.500200e+02 -2.667600e+02
+5 14712     2.282000e+02 7.334003e+01
+8 14712     -3.224700e+02 3.948800e+02
+11 14712     -2.708002e+01 -8.706000e+01
+13 14712     3.746997e+01 3.442400e+02
+14 14712     1.346500e+02 -2.235999e+01
+2 14713     -2.597400e+02 5.106700e+02
+3 14713     -3.876000e+02 1.709600e+02
+4 14713     1.440900e+02 -4.112300e+02
+6 14713     -4.623200e+02 8.311600e+02
+8 14713     -1.351100e+02 3.991500e+02
+11 14713     1.831900e+02 -7.173999e+01
+2 14714     -2.323700e+02 5.105200e+02
+3 14714     -3.606700e+02 1.735500e+02
+4 14714     1.440300e+02 -4.311500e+02
+11 14714     2.109300e+02 -6.859998e+01
+13 14714     2.539600e+02 3.673400e+02
+14 14714     3.919200e+02 -3.090027e+00
+2 14715     3.467900e+02 5.064900e+02
+3 14715     1.995100e+02 1.678000e+02
+6 14715     2.685500e+02 7.888700e+02
+8 14715     3.531700e+02 3.925100e+02
+9 14715     1.467700e+02 5.258800e+02
+13 14715     7.352900e+02 3.039900e+02
+2 14716     -5.859100e+02 5.045700e+02
+3 14716     -7.010500e+02 1.760500e+02
+4 14716     1.479399e+02 -2.101400e+02
+2 14717     -6.222500e+02 5.009100e+02
+4 14717     1.468101e+02 -1.901200e+02
+5 14717     9.695001e+01 5.528998e+01
+8 14717     -4.334400e+02 3.814800e+02
+13 14717     -6.971002e+01 3.235800e+02
+14 14717     7.250000e+00 -4.153003e+01
+2 14718     -2.459700e+02 5.003100e+02
+3 14718     -3.747400e+02 1.633200e+02
+8 14718     -1.255200e+02 3.918100e+02
+11 14718     1.958300e+02 -7.813000e+01
+13 14718     2.414200e+02 3.576600e+02
+14 14718     3.771600e+02 -1.421997e+01
+2 14719     -2.138300e+02 5.004100e+02
+4 14719     1.382300e+02 -4.423400e+02
+6 14719     -4.043400e+02 8.300800e+02
+8 14719     -9.770001e+01 3.922800e+02
+11 14719     2.282100e+02 -7.584003e+01
+13 14719     2.694800e+02 3.599200e+02
+14 14719     4.102800e+02 -1.250000e+01
+2 14720     -6.726200e+02 4.967200e+02
+3 14720     -7.879300e+02 1.697500e+02
+4 14720     1.461000e+02 -1.639700e+02
+5 14720     5.063000e+01 4.928998e+01
+8 14720     -4.739900e+02 3.771500e+02
+11 14720     -1.824000e+02 -1.090500e+02
+13 14720     -1.080600e+02 3.161400e+02
+14 14720     -3.841998e+01 -4.841998e+01
+2 14721     -2.537400e+02 4.972100e+02
+3 14721     -3.819400e+02 1.576900e+02
+11 14721     1.890500e+02 -8.153003e+01
+13 14721     2.337800e+02 3.528700e+02
+14 14721     3.679800e+02 -1.871997e+01
+2 14722     -7.076300e+02 4.934200e+02
+4 14722     1.450699e+02 -1.460800e+02
+5 14722     1.853003e+01 4.437000e+01
+2 14723     -2.116100e+02 4.917600e+02
+8 14723     -9.639999e+01 3.855500e+02
+11 14723     2.304301e+02 -8.237000e+01
+2 14724     -2.116100e+02 4.917600e+02
+3 14724     -3.429300e+02 1.533000e+02
+8 14724     -9.639999e+01 3.855500e+02
+11 14724     2.304301e+02 -8.237000e+01
+2 14725     -6.266200e+02 4.909300e+02
+3 14725     -7.425600e+02 1.621500e+02
+4 14725     1.422400e+02 -1.869100e+02
+5 14725     9.170001e+01 4.663000e+01
+8 14725     -4.368000e+02 3.736500e+02
+11 14725     -1.469800e+02 -1.111500e+02
+13 14725     -7.353003e+01 3.159100e+02
+14 14725     2.299988e+00 -5.040002e+01
+2 14726     -6.632600e+02 4.873700e+02
+4 14726     1.414900e+02 -1.678900e+02
+5 14726     5.810999e+01 4.158002e+01
+8 14726     -4.662500e+02 3.695100e+02
+13 14726     -1.012900e+02 3.102700e+02
+14 14726     -3.053003e+01 -5.540997e+01
+2 14727     -7.029500e+02 4.828200e+02
+4 14727     1.406000e+02 -1.475900e+02
+5 14727     2.187000e+01 3.607001e+01
+8 14727     -4.986800e+02 3.653200e+02
+11 14727     -2.072700e+02 -1.202100e+02
+13 14727     -1.310400e+02 3.038300e+02
+14 14727     -6.631000e+01 -6.165997e+01
+2 14728     -7.029500e+02 4.828200e+02
+4 14728     1.406000e+02 -1.475900e+02
+5 14728     2.187000e+01 3.607001e+01
+8 14728     -4.986800e+02 3.653200e+02
+11 14728     -2.072700e+02 -1.202100e+02
+13 14728     -1.310400e+02 3.038300e+02
+14 14728     -6.631000e+01 -6.165997e+01
+2 14729     3.454999e+01 4.829900e+02
+6 14729     -8.628000e+01 8.641600e+02
+13 14729     5.027900e+02 3.734400e+02
+2 14730     5.170699e+02 4.759500e+02
+3 14730     3.671400e+02 1.421600e+02
+9 14730     2.964000e+02 5.023400e+02
+2 14731     -5.964900e+02 4.723300e+02
+4 14731     1.329400e+02 -2.013000e+02
+13 14731     -5.052002e+01 3.052000e+02
+14 14731     2.891998e+01 -6.376001e+01
+2 14732     -6.058500e+02 4.667600e+02
+3 14732     -7.238000e+02 1.365900e+02
+2 14733     -4.537700e+02 4.666800e+02
+4 14733     1.263300e+02 -2.812300e+02
+5 14733     2.566600e+02 3.381000e+01
+8 14733     -2.951100e+02 3.587400e+02
+2 14734     -6.979300e+02 4.580100e+02
+4 14734     1.290500e+02 -1.475300e+02
+5 14734     2.328998e+01 1.497998e+01
+8 14734     -4.953700e+02 3.455400e+02
+13 14734     -1.274700e+02 2.869000e+02
+2 14735     -1.727002e+01 4.575200e+02
+5 14735     7.344700e+02 5.122998e+01
+6 14735     -1.513100e+02 8.204700e+02
+8 14735     6.619000e+01 3.615200e+02
+2 14736     -1.727002e+01 4.575200e+02
+5 14736     7.344700e+02 5.122998e+01
+8 14736     6.619000e+01 3.615200e+02
+2 14737     -1.889500e+02 4.553300e+02
+3 14737     -3.210100e+02 1.191500e+02
+6 14737     -3.683100e+02 7.782100e+02
+8 14737     -7.660999e+01 3.555900e+02
+2 14738     -1.889500e+02 4.553300e+02
+4 14738     1.125200e+02 -4.556600e+02
+6 14738     -3.683100e+02 7.782100e+02
+8 14738     -7.660999e+01 3.555900e+02
+11 14738     2.539000e+02 -1.078900e+02
+2 14739     3.975500e+02 4.478000e+02
+3 14739     2.495400e+02 1.144200e+02
+6 14739     3.249300e+02 7.101800e+02
+8 14739     3.940200e+02 3.439500e+02
+13 14739     7.730500e+02 2.442200e+02
+2 14740     -7.235999e+01 4.426700e+02
+3 14740     -2.123800e+02 1.057900e+02
+6 14740     -2.213500e+02 7.883500e+02
+8 14740     1.976001e+01 3.474100e+02
+11 14740     3.726400e+02 -1.085100e+02
+13 14740     3.961700e+02 3.288400e+02
+14 14740     5.633700e+02 -5.264001e+01
+2 14741     4.391000e+02 4.419500e+02
+3 14741     2.924200e+02 1.099000e+02
+8 14741     4.238400e+02 3.349100e+02
+9 14741     2.298800e+02 4.711700e+02
+2 14742     4.391000e+02 4.419500e+02
+3 14742     2.924200e+02 1.099000e+02
+8 14742     4.238400e+02 3.349100e+02
+9 14742     2.298800e+02 4.711700e+02
+2 14743     5.939500e+02 4.380700e+02
+9 14743     3.615500e+02 4.718600e+02
+2 14744     -7.010400e+02 4.337300e+02
+4 14744     1.185100e+02 -1.445500e+02
+5 14744     1.977002e+01 -5.260010e+00
+8 14744     -4.957600e+02 3.271400e+02
+11 14744     -2.082900e+02 -1.533700e+02
+13 14744     -1.316900e+02 2.688900e+02
+14 14744     -6.933002e+01 -1.021700e+02
+2 14745     -3.491900e+02 4.319900e+02
+5 14745     3.601600e+02 6.919983e+00
+2 14746     -3.491900e+02 4.319900e+02
+5 14746     3.601600e+02 6.919983e+00
+8 14746     -2.084500e+02 3.335100e+02
+2 14747     -3.702002e+01 4.319300e+02
+6 14747     -1.773200e+02 7.879200e+02
+8 14747     5.103998e+01 3.417400e+02
+2 14748     -3.020500e+02 4.281800e+02
+4 14748     1.018000e+02 -3.723600e+02
+5 14748     4.095500e+02 5.840027e+00
+2 14749     -3.020500e+02 4.281800e+02
+4 14749     1.018000e+02 -3.723600e+02
+5 14749     4.095500e+02 5.840027e+00
+2 14750     -3.569300e+02 4.196300e+02
+3 14750     -4.823500e+02 8.638000e+01
+5 14750     3.513199e+02 -4.590027e+00
+6 14750     -5.748700e+02 6.966100e+02
+8 14750     -2.151600e+02 3.237800e+02
+13 14750     1.412700e+02 2.850000e+02
+14 14750     2.564301e+02 -9.577002e+01
+2 14751     -3.569300e+02 4.196300e+02
+3 14751     -4.823500e+02 8.638000e+01
+5 14751     3.513199e+02 -4.590027e+00
+6 14751     -5.748700e+02 6.966100e+02
+8 14751     -2.151600e+02 3.237800e+02
+11 14751     8.794000e+01 -1.468400e+02
+13 14751     1.412700e+02 2.850000e+02
+14 14751     2.564301e+02 -9.577002e+01
+2 14752     -3.569300e+02 4.196300e+02
+4 14752     9.940002e+01 -3.357800e+02
+5 14752     3.513199e+02 -4.590027e+00
+6 14752     -5.748700e+02 6.966100e+02
+8 14752     -2.151600e+02 3.237800e+02
+11 14752     8.794000e+01 -1.468400e+02
+13 14752     1.412700e+02 2.850000e+02
+14 14752     2.564301e+02 -9.577002e+01
+2 14753     5.101899e+02 4.189700e+02
+3 14753     3.621400e+02 8.989001e+01
+6 14753     4.413400e+02 6.242100e+02
+8 14753     4.820000e+02 3.142200e+02
+9 14753     2.913000e+02 4.535300e+02
+2 14754     5.101899e+02 4.189700e+02
+3 14754     3.621400e+02 8.989001e+01
+8 14754     4.820000e+02 3.142200e+02
+9 14754     2.913000e+02 4.535300e+02
+2 14755     -4.868400e+02 4.116800e+02
+3 14755     -6.080100e+02 8.225000e+01
+4 14755     1.005900e+02 -2.564700e+02
+5 14755     2.192500e+02 -1.685999e+01
+8 14755     -3.220100e+02 3.145300e+02
+11 14755     -2.981000e+01 -1.591700e+02
+13 14755     3.467999e+01 2.695300e+02
+14 14755     1.283300e+02 -1.094700e+02
+2 14756     -5.910100e+02 4.100500e+02
+11 14756     -1.174700e+02 -1.646300e+02
+2 14757     -7.664200e+02 4.082000e+02
+5 14757     -4.170001e+01 -2.959998e+01
+8 14757     -5.495900e+02 3.042900e+02
+2 14758     -4.308300e+02 4.084900e+02
+3 14758     -5.528400e+02 7.720001e+01
+4 14758     9.675000e+01 -2.892000e+02
+5 14758     2.749399e+02 -1.766998e+01
+8 14758     -2.756200e+02 3.131400e+02
+11 14758     2.121002e+01 -1.586600e+02
+13 14758     8.062000e+01 2.714500e+02
+14 14758     1.829301e+02 -1.094300e+02
+2 14759     -4.249900e+02 3.992400e+02
+3 14759     -5.480700e+02 6.828003e+01
+4 14759     9.203003e+01 -2.915800e+02
+5 14759     2.801100e+02 -2.559998e+01
+11 14759     2.587000e+01 -1.654900e+02
+2 14760     4.435100e+02 3.983500e+02
+3 14760     2.992400e+02 7.007001e+01
+6 14760     3.635200e+02 6.093900e+02
+8 14760     4.266100e+02 2.996500e+02
+9 14760     2.345699e+02 4.340500e+02
+13 14760     7.859600e+02 1.685200e+02
+2 14761     5.235699e+02 3.911000e+02
+3 14761     3.768600e+02 6.437000e+01
+6 14761     4.541000e+02 5.896800e+02
+8 14761     4.928101e+02 2.916900e+02
+9 14761     3.024500e+02 4.303900e+02
+12 14761     5.358900e+02 5.983200e+02
+2 14762     5.235699e+02 3.911000e+02
+3 14762     3.768600e+02 6.437000e+01
+6 14762     4.541000e+02 5.896800e+02
+8 14762     4.928101e+02 2.916900e+02
+9 14762     3.024500e+02 4.303900e+02
+12 14762     5.358900e+02 5.983200e+02
+2 14763     -5.572400e+02 3.887300e+02
+8 14763     -3.790700e+02 2.941900e+02
+2 14764     -5.869300e+02 3.839400e+02
+4 14764     9.160999e+01 -1.981300e+02
+5 14764     1.198300e+02 -4.444000e+01
+8 14764     -4.036100e+02 2.897800e+02
+12 14764     -6.606300e+02 5.947900e+02
+2 14765     -1.229800e+02 3.790800e+02
+3 14765     -2.609200e+02 4.384003e+01
+8 14765     -2.070001e+01 2.960300e+02
+2 14766     -1.229800e+02 3.790800e+02
+3 14766     -2.609200e+02 4.384003e+01
+6 14766     -2.820000e+02 6.982100e+02
+8 14766     -2.070001e+01 2.960300e+02
+2 14767     -1.229800e+02 3.790800e+02
+3 14767     -2.609200e+02 4.384003e+01
+6 14767     -2.820000e+02 6.982100e+02
+8 14767     -2.070001e+01 2.960300e+02
+9 14767     -2.610200e+02 4.000700e+02
+2 14768     5.252800e+02 3.769500e+02
+6 14768     4.554800e+02 5.737400e+02
+8 14768     4.942900e+02 2.805100e+02
+9 14768     3.054600e+02 4.186000e+02
+12 14768     5.379399e+02 5.832500e+02
+2 14769     -6.497700e+02 3.749900e+02
+4 14769     9.101001e+01 -1.645400e+02
+5 14769     5.992999e+01 -5.291998e+01
+8 14769     -4.556100e+02 2.826600e+02
+12 14769     -7.334500e+02 5.779200e+02
+13 14769     -9.434998e+01 2.336500e+02
+14 14769     -2.740997e+01 -1.459000e+02
+2 14770     8.507001e+01 3.741600e+02
+3 14770     -6.428998e+01 3.965002e+01
+11 14770     5.459000e+02 -1.497900e+02
+2 14771     1.263700e+02 3.726100e+02
+3 14771     -2.560999e+01 3.676001e+01
+8 14771     1.852100e+02 2.958000e+02
+9 14771     -4.903998e+01 4.018600e+02
+13 14771     5.854301e+02 2.886600e+02
+2 14772     -7.619400e+02 3.699900e+02
+4 14772     9.276001e+01 -1.093800e+02
+5 14772     -4.076001e+01 -6.032001e+01
+8 14772     -5.454900e+02 2.745900e+02
+11 14772     -2.564300e+02 -1.977500e+02
+13 14772     -1.764300e+02 2.211800e+02
+14 14772     -1.261900e+02 -1.563100e+02
+2 14773     -7.849500e+02 3.664300e+02
+4 14773     9.209998e+01 -9.922998e+01
+5 14773     -6.071997e+01 -6.371002e+01
+8 14773     -5.638500e+02 2.712300e+02
+13 14773     -1.932600e+02 2.170600e+02
+2 14774     -7.849500e+02 3.664300e+02
+4 14774     9.209998e+01 -9.922998e+01
+5 14774     -6.071997e+01 -6.371002e+01
+8 14774     -5.638500e+02 2.712300e+02
+13 14774     -1.932600e+02 2.170600e+02
+2 14775     -3.817100e+02 3.662700e+02
+3 14775     -5.075500e+02 3.396997e+01
+12 14775     -4.166200e+02 6.085900e+02
+2 14776     3.796500e+02 3.664500e+02
+3 14776     2.346400e+02 3.706000e+01
+8 14776     3.787200e+02 2.768500e+02
+2 14777     -6.562600e+02 3.597100e+02
+4 14777     8.388000e+01 -1.602000e+02
+5 14777     5.279999e+01 -6.653003e+01
+8 14777     -4.597900e+02 2.694200e+02
+11 14777     -1.743200e+02 -2.018900e+02
+12 14777     -7.374900e+02 5.596100e+02
+13 14777     -9.904999e+01 2.205600e+02
+14 14777     -3.385999e+01 -1.610700e+02
+2 14778     -6.840700e+02 3.525400e+02
+13 14778     -1.197400e+02 2.145800e+02
+2 14779     -6.310900e+02 3.523500e+02
+4 14779     7.926001e+01 -1.725100e+02
+5 14779     7.529999e+01 -7.240002e+01
+8 14779     -4.386100e+02 2.640400e+02
+12 14779     -7.070300e+02 5.547700e+02
+13 14779     -7.990002e+01 2.169600e+02
+2 14780     -7.217000e+02 3.501600e+02
+4 14780     8.250000e+01 -1.269400e+02
+2 14781     -2.868000e+02 3.480500e+02
+5 14781     4.178000e+02 -6.835999e+01
+6 14781     -4.813100e+02 6.248900e+02
+8 14781     -1.566600e+02 2.682200e+02
+11 14781     1.541100e+02 -1.973700e+02
+2 14782     -6.969700e+02 3.407400e+02
+4 14782     7.746002e+01 -1.380300e+02
+2 14783     -5.697998e+01 3.326400e+02
+4 14783     3.742999e+01 -5.408400e+02
+5 14783     6.732600e+02 -7.434003e+01
+6 14783     -1.966400e+02 6.581700e+02
+8 14783     3.308002e+01 2.605500e+02
+13 14783     4.027700e+02 2.416200e+02
+14 14783     5.710100e+02 -1.586700e+02
+2 14784     -6.961500e+02 3.308800e+02
+4 14784     7.297998e+01 -1.379700e+02
+5 14784     1.437000e+01 -9.173999e+01
+2 14785     5.908199e+02 3.303900e+02
+7 14785     5.334000e+02 4.938700e+02
+9 14785     3.604700e+02 3.804500e+02
+10 14785     7.301801e+02 5.769000e+02
+2 14786     3.010900e+02 3.287800e+02
+7 14786     3.067300e+02 5.786600e+02
+9 14786     1.111800e+02 3.695500e+02
+13 14786     6.764900e+02 1.608700e+02
+2 14787     3.010900e+02 3.287800e+02
+9 14787     1.111800e+02 3.695500e+02
+12 14787     3.181000e+02 5.688400e+02
+13 14787     6.764900e+02 1.608700e+02
+2 14788     -2.702300e+02 3.234500e+02
+4 14788     4.588000e+01 -3.810200e+02
+5 14788     4.329301e+02 -9.044000e+01
+6 14788     -4.589800e+02 5.998600e+02
+8 14788     -1.430400e+02 2.488700e+02
+13 14788     2.108300e+02 2.187200e+02
+2 14789     9.635999e+01 3.228100e+02
+6 14789     -2.580017e+00 6.826800e+02
+8 14789     1.620300e+02 2.566300e+02
+9 14789     -7.291998e+01 3.567200e+02
+14 14789     7.544700e+02 -1.590600e+02
+2 14790     1.271800e+02 3.183300e+02
+3 14790     -2.433002e+01 -1.514001e+01
+6 14790     3.416998e+01 6.816500e+02
+8 14790     1.864100e+02 2.518500e+02
+9 14790     -4.610999e+01 3.548100e+02
+2 14791     1.149700e+02 3.149200e+02
+3 14791     -3.654999e+01 -1.825000e+01
+9 14791     -5.678998e+01 3.510800e+02
+13 14791     5.689500e+02 2.403000e+02
+14 14791     7.786899e+02 -1.634100e+02
+2 14792     3.161300e+02 3.068500e+02
+7 14792     3.172100e+02 5.557300e+02
+8 14792     3.260400e+02 2.332600e+02
+12 14792     3.321899e+02 5.504700e+02
+13 14792     6.860100e+02 1.422400e+02
+2 14793     4.344301e+02 3.032300e+02
+3 14793     2.938000e+02 -2.014001e+01
+6 14793     3.493200e+02 5.017100e+02
+8 14793     4.186200e+02 2.213600e+02
+9 14793     2.290000e+02 3.522300e+02
+11 14793     6.908800e+02 -3.876300e+02
+13 14793     7.669399e+02 9.047000e+01
+2 14794     5.354100e+02 3.007200e+02
+3 14794     3.899399e+02 -1.972998e+01
+6 14794     4.613700e+02 4.857300e+02
+7 14794     4.795500e+02 4.771800e+02
+8 14794     5.013000e+02 2.169700e+02
+9 14794     3.145500e+02 3.534200e+02
+12 14794     5.434800e+02 4.940000e+02
+13 14794     8.556000e+02 6.732001e+01
+2 14795     2.927700e+02 2.972100e+02
+3 14795     1.513400e+02 -3.094000e+01
+7 14795     2.977000e+02 5.489000e+02
+8 14795     3.076400e+02 2.230500e+02
+9 14795     1.052700e+02 3.425700e+02
+11 14795     6.160900e+02 -3.241600e+02
+12 14795     3.084600e+02 5.383100e+02
+13 14795     6.661400e+02 1.364600e+02
+2 14796     3.233300e+02 2.966100e+02
+3 14796     1.819300e+02 -3.075000e+01
+8 14796     3.327000e+02 2.212200e+02
+11 14796     6.370800e+02 -3.312900e+02
+2 14797     -2.406900e+02 2.736800e+02
+9 14797     -3.562500e+02 3.042500e+02
+13 14797     2.341801e+02 1.831700e+02
+2 14798     -2.558900e+02 2.681700e+02
+3 14798     -3.881500e+02 -6.395001e+01
+5 14798     4.430400e+02 -1.414300e+02
+7 14798     -1.897800e+02 5.793400e+02
+8 14798     -1.307500e+02 2.053900e+02
+9 14798     -3.692600e+02 2.988400e+02
+12 14798     -2.640800e+02 5.223100e+02
+13 14798     2.204301e+02 1.780500e+02
+14 14798     3.507900e+02 -2.269000e+02
+2 14799     7.792000e+02 2.605200e+02
+3 14799     6.225699e+02 -5.028998e+01
+7 14799     6.973600e+02 3.816700e+02
+9 14799     5.189500e+02 3.263600e+02
+2 14800     -1.361600e+02 2.586900e+02
+3 14800     -2.702100e+02 -7.376001e+01
+6 14800     -2.917200e+02 5.510400e+02
+8 14800     -3.264001e+01 2.001700e+02
+2 14801     -1.425800e+02 2.568700e+02
+6 14801     -2.998600e+02 5.470300e+02
+8 14801     -3.869000e+01 1.982900e+02
+2 14802     -1.355900e+02 2.498500e+02
+3 14802     -2.730500e+02 -8.278998e+01
+4 14802     -3.460022e+00 -4.678400e+02
+5 14802     5.751300e+02 -1.584400e+02
+6 14802     -2.875400e+02 5.416000e+02
+7 14802     -5.969000e+01 5.740500e+02
+8 14802     -3.065997e+01 1.930100e+02
+11 14802     3.012700e+02 -2.672900e+02
+12 14802     -1.197600e+02 5.190200e+02
+2 14803     4.853400e+02 2.445100e+02
+3 14803     3.440400e+02 -7.459998e+01
+6 14803     4.034900e+02 4.295300e+02
+7 14803     4.292700e+02 4.341600e+02
+8 14803     4.591700e+02 1.719400e+02
+9 14803     2.732100e+02 3.041000e+02
+10 14803     5.989301e+02 5.124800e+02
+11 14803     7.362000e+02 -4.604500e+02
+12 14803     4.885400e+02 4.371400e+02
+13 14803     8.041100e+02 3.133002e+01
+2 14804     5.331400e+02 2.379400e+02
+6 14804     4.566899e+02 4.151600e+02
+8 14804     4.985000e+02 1.651300e+02
+9 14804     3.139301e+02 3.001300e+02
+12 14804     5.393300e+02 4.235400e+02
+13 14804     8.456700e+02 1.547998e+01
+2 14805     4.024700e+02 2.223600e+02
+3 14805     2.606000e+02 -1.000200e+02
+8 14805     3.946600e+02 1.595000e+02
+9 14805     2.014301e+02 2.821200e+02
+2 14806     -7.082800e+02 2.153000e+02
+8 14806     -5.003500e+02 1.549400e+02
+2 14807     -3.359300e+02 2.134700e+02
+3 14807     -4.657500e+02 -1.185200e+02
+2 14808     -2.440997e+01 2.123700e+02
+3 14808     -1.680500e+02 -1.186900e+02
+7 14808     5.989001e+01 5.511200e+02
+8 14808     6.059998e+01 1.644700e+02
+9 14808     -1.708800e+02 2.573300e+02
+13 14808     4.248700e+02 1.494100e+02
+14 14808     6.035200e+02 -2.704200e+02
+2 14809     -6.807800e+02 2.088200e+02
+4 14809     1.883002e+01 -1.345600e+02
+5 14809     1.609003e+01 -1.941600e+02
+8 14809     -4.784600e+02 1.503400e+02
+2 14810     -4.414001e+01 2.074200e+02
+5 14810     6.747300e+02 -1.966100e+02
+6 14810     -1.761400e+02 5.129000e+02
+7 14810     3.778003e+01 5.453500e+02
+8 14810     4.392999e+01 1.605600e+02
+9 14810     -1.866700e+02 2.525000e+02
+12 14810     -1.175000e+01 4.880900e+02
+13 14810     4.057900e+02 1.443100e+02
+2 14811     3.451801e+02 2.072700e+02
+8 14811     3.488900e+02 1.487800e+02
+9 14811     1.510900e+02 2.675700e+02
+12 14811     3.607000e+02 4.348100e+02
+13 14811     7.002700e+02 5.254999e+01
+2 14812     5.492500e+02 2.044900e+02
+3 14812     4.075500e+02 -1.106700e+02
+6 14812     4.729000e+02 3.771200e+02
+7 14812     4.808300e+02 3.822600e+02
+8 14812     5.114700e+02 1.380100e+02
+9 14812     3.285699e+02 2.728800e+02
+10 14812     6.542300e+02 4.438000e+02
+12 14812     5.555800e+02 3.863600e+02
+13 14812     8.554399e+02 -1.602002e+01
+2 14813     8.002200e+02 1.979900e+02
+7 14813     7.062200e+02 3.158900e+02
+9 14813     5.375800e+02 2.746100e+02
+2 14814     8.002200e+02 1.979900e+02
+7 14814     7.062200e+02 3.158900e+02
+9 14814     5.375800e+02 2.746100e+02
+2 14815     3.197700e+02 1.927500e+02
+6 14815     2.281500e+02 4.251000e+02
+7 14815     3.124301e+02 4.449800e+02
+11 14815     6.352400e+02 -4.256000e+02
+12 14815     3.342500e+02 4.201300e+02
+13 14815     6.761700e+02 4.595001e+01
+2 14816     4.436000e+02 1.932800e+02
+3 14816     3.055400e+02 -1.246000e+02
+7 14816     3.885800e+02 3.954700e+02
+9 14816     2.392000e+02 2.599800e+02
+10 14816     5.480900e+02 4.701400e+02
+11 14816     6.995200e+02 -4.952300e+02
+13 14816     7.623101e+02 -1.059998e+00
+15 14816     7.366899e+02 5.358300e+02
+2 14817     5.858300e+02 1.867500e+02
+7 14817     5.110900e+02 3.572200e+02
+9 14817     3.596500e+02 2.583200e+02
+2 14818     3.616000e+02 1.838700e+02
+6 14818     2.754900e+02 4.097100e+02
+7 14818     3.466100e+02 4.288700e+02
+8 14818     3.621500e+02 1.294400e+02
+12 14818     3.785699e+02 4.071200e+02
+13 14818     7.116100e+02 3.039001e+01
+2 14819     -3.688700e+02 1.826700e+02
+5 14819     3.133800e+02 -2.226200e+02
+6 14819     -5.672000e+02 4.143100e+02
+13 14819     1.198600e+02 1.069700e+02
+2 14820     4.645300e+02 1.805600e+02
+3 14820     3.261000e+02 -1.369200e+02
+6 14820     3.779900e+02 3.625500e+02
+7 14820     4.057300e+02 3.781000e+02
+8 14820     4.414900e+02 1.199900e+02
+9 14820     2.574100e+02 2.491800e+02
+10 14820     5.655200e+02 4.474300e+02
+13 14820     7.785100e+02 -1.753003e+01
+2 14821     6.532400e+02 1.726200e+02
+3 14821     5.089500e+02 -1.374200e+02
+9 14821     4.167200e+02 2.490500e+02
+10 14821     7.564399e+02 3.676100e+02
+12 14821     6.655500e+02 3.384600e+02
+2 14822     -6.682000e+02 1.615000e+02
+7 14822     -6.010900e+02 4.420500e+02
+10 14822     -6.001700e+02 6.071000e+02
+2 14823     -6.682000e+02 1.615000e+02
+4 14823     -2.500000e+00 -1.367200e+02
+7 14823     -6.010900e+02 4.420500e+02
+2 14824     4.752400e+02 1.532900e+02
+3 14824     3.380900e+02 -1.620800e+02
+6 14824     3.884400e+02 3.307200e+02
+7 14824     4.120699e+02 3.514600e+02
+8 14824     4.491700e+02 9.725000e+01
+9 14824     2.666100e+02 2.265700e+02
+2 14825     -2.844900e+02 1.444900e+02
+5 14825     3.995500e+02 -2.553600e+02
+6 14825     -4.623500e+02 3.922000e+02
+7 14825     -2.159400e+02 4.664500e+02
+8 14825     -1.543200e+02 1.070800e+02
+9 14825     -3.882400e+02 1.893000e+02
+13 14825     1.902100e+02 8.559000e+01
+14 14825     3.124100e+02 -3.398600e+02
+2 14826     -6.879200e+02 1.430100e+02
+4 14826     -8.719971e+00 -1.252500e+02
+7 14826     -6.181800e+02 4.244700e+02
+10 14826     -6.202300e+02 5.874300e+02
+2 14827     4.627700e+02 1.420500e+02
+7 14827     4.006300e+02 3.442000e+02
+9 14827     2.567900e+02 2.167700e+02
+10 14827     5.573000e+02 4.077200e+02
+2 14828     4.627700e+02 1.420500e+02
+7 14828     4.006300e+02 3.442000e+02
+9 14828     2.567900e+02 2.167700e+02
+2 14829     -6.004500e+02 1.391800e+02
+14 14829     3.400269e-01 -3.453800e+02
+2 14830     6.125200e+02 1.332000e+02
+6 14830     5.395500e+02 2.904500e+02
+7 14830     5.286899e+02 3.017900e+02
+8 14830     5.629399e+02 7.725000e+01
+9 14830     3.832500e+02 2.143300e+02
+10 14830     7.048800e+02 3.407000e+02
+12 14830     6.193400e+02 2.999300e+02
+2 14831     -6.356300e+02 1.216500e+02
+7 14831     -5.658500e+02 4.121500e+02
+10 14831     -5.582900e+02 5.706000e+02
+2 14832     -1.091900e+02 1.197800e+02
+8 14832     -1.169000e+01 8.851001e+01
+9 14832     -2.364800e+02 1.750100e+02
+2 14833     -5.246002e+01 1.188200e+02
+8 14833     3.310999e+01 8.669000e+01
+9 14833     -1.871700e+02 1.760900e+02
+14 14833     5.459900e+02 -3.843300e+02
+2 14834     -3.131300e+02 1.177300e+02
+5 14834     3.643000e+02 -2.848000e+02
+7 14834     -2.470600e+02 4.363700e+02
+8 14834     -1.774900e+02 8.435001e+01
+11 14834     1.172700e+02 -3.753300e+02
+2 14835     5.649800e+02 1.158800e+02
+6 14835     4.857900e+02 2.791400e+02
+7 14835     4.852000e+02 2.965600e+02
+8 14835     5.232100e+02 6.498999e+01
+9 14835     3.440300e+02 1.984100e+02
+13 14835     8.590200e+02 -9.257001e+01
+15 14835     8.639100e+02 3.815900e+02
+2 14836     7.119600e+02 1.124900e+02
+9 14836     4.668800e+02 2.007800e+02
+12 14836     7.263600e+02 2.644500e+02
+2 14837     -9.877002e+01 1.095000e+02
+8 14837     -6.679993e+00 7.929999e+01
+9 14837     -2.273100e+02 1.662800e+02
+2 14838     7.283900e+02 1.083000e+02
+9 14838     4.821500e+02 1.975400e+02
+12 14838     7.433500e+02 2.586900e+02
+2 14839     7.125500e+02 9.834003e+01
+7 14839     6.124800e+02 2.457700e+02
+9 14839     4.682600e+02 1.890200e+02
+10 14839     8.014700e+02 2.618800e+02
+12 14839     7.258199e+02 2.495500e+02
+2 14840     6.263900e+02 9.232001e+01
+3 14840     4.870300e+02 -2.149900e+02
+6 14840     5.525200e+02 2.455400e+02
+8 14840     5.736500e+02 4.366000e+01
+9 14840     3.962300e+02 1.808300e+02
+10 14840     7.096500e+02 2.908500e+02
+12 14840     6.316600e+02 2.555200e+02
+2 14841     6.032100e+02 8.450000e+01
+6 14841     5.259200e+02 2.410500e+02
+7 14841     5.142700e+02 2.599100e+02
+8 14841     5.543300e+02 3.826001e+01
+9 14841     3.770400e+02 1.736200e+02
+12 14841     6.063300e+02 2.509400e+02
+2 14842     -3.059100e+02 8.288000e+01
+4 14842     -6.984998e+01 -3.291200e+02
+5 14842     3.695200e+02 -3.107800e+02
+7 14842     -2.364600e+02 4.123400e+02
+8 14842     -1.720000e+02 5.804001e+01
+11 14842     1.270800e+02 -3.964400e+02
+2 14843     6.619399e+02 8.323999e+01
+3 14843     5.221000e+02 -2.223000e+02
+7 14843     5.656899e+02 2.442100e+02
+9 14843     4.265100e+02 1.745100e+02
+10 14843     7.442800e+02 2.665200e+02
+12 14843     6.695200e+02 2.410000e+02
+2 14844     6.619399e+02 8.323999e+01
+3 14844     5.221000e+02 -2.223000e+02
+7 14844     5.656899e+02 2.442100e+02
+10 14844     7.442800e+02 2.665200e+02
+12 14844     6.695200e+02 2.410000e+02
+2 14845     -4.920100e+02 8.154999e+01
+13 14845     1.778998e+01 3.288000e+01
+14 14845     9.813000e+01 -3.951400e+02
+2 14846     1.885999e+01 8.064001e+01
+3 14846     -7.202002e+01 -2.361700e+02
+4 14846     -1.990600e+02 -3.700100e+02
+5 14846     5.463900e+02 -5.570300e+02
+6 14846     -1.624600e+02 1.066700e+02
+7 14846     -1.607300e+02 2.037800e+02
+8 14846     5.152002e+01 2.506000e+01
+9 14846     -9.884998e+01 1.524100e+02
+12 14846     -1.314500e+02 1.618200e+02
+13 14846     3.008400e+02 -1.416300e+02
+2 14847     1.885999e+01 8.064001e+01
+5 14847     5.463900e+02 -5.570300e+02
+6 14847     -1.624600e+02 1.066700e+02
+7 14847     -1.607300e+02 2.037800e+02
+8 14847     5.152002e+01 2.506000e+01
+9 14847     -9.884998e+01 1.524100e+02
+10 14847     -1.615300e+02 2.586700e+02
+12 14847     -1.314500e+02 1.618200e+02
+13 14847     3.008400e+02 -1.416300e+02
+15 14847     -1.128000e+02 2.733600e+02
+2 14848     7.981000e+01 7.821997e+01
+3 14848     -1.189001e+01 -2.373200e+02
+4 14848     -2.203100e+02 -3.972800e+02
+8 14848     9.840002e+01 1.998999e+01
+10 14848     -1.235800e+02 2.262200e+02
+2 14849     3.856801e+02 7.710999e+01
+3 14849     2.778101e+02 -2.302300e+02
+2 14850     -1.521400e+02 7.221997e+01
+4 14850     -1.038200e+02 -4.113500e+02
+9 14850     -2.694100e+02 1.322600e+02
+2 14851     6.739399e+02 6.153998e+01
+3 14851     5.347900e+02 -2.426100e+02
+7 14851     5.729301e+02 2.222100e+02
+9 14851     4.370900e+02 1.568900e+02
+10 14851     7.519399e+02 2.385500e+02
+12 14851     6.805601e+02 2.161100e+02
+2 14852     6.041600e+02 5.925000e+01
+3 14852     4.676899e+02 -2.479600e+02
+8 14852     5.551801e+02 1.729001e+01
+9 14852     3.785601e+02 1.523500e+02
+10 14852     6.810000e+02 2.642100e+02
+2 14853     7.673500e+02 5.816998e+01
+9 14853     5.145900e+02 1.571000e+02
+2 14854     3.261700e+02 5.690997e+01
+3 14854     2.247600e+02 -2.515500e+02
+13 14854     5.248700e+02 -2.161200e+02
+2 14855     8.832001e+01 5.175000e+01
+3 14855     -7.999878e-01 -2.616600e+02
+4 14855     -2.376800e+02 -3.917300e+02
+6 14855     -9.266000e+01 5.783002e+01
+7 14855     -1.215100e+02 1.540600e+02
+8 14855     1.046500e+02 -2.390015e+00
+12 14855     -7.357001e+01 1.137400e+02
+13 14855     3.390400e+02 -1.848400e+02
+15 14855     -7.458002e+01 1.985500e+02
+2 14856     6.929200e+02 5.142999e+01
+9 14856     4.528500e+02 1.490200e+02
+12 14856     7.012800e+02 2.025000e+02
+2 14857     -5.256000e+01 4.671997e+01
+3 14857     -1.486400e+02 -2.727000e+02
+2 14858     6.576001e+01 4.583002e+01
+6 14858     -1.159300e+02 5.475000e+01
+13 14858     3.234301e+02 -1.845600e+02
+2 14859     6.576001e+01 4.583002e+01
+4 14859     -2.346900e+02 -3.800700e+02
+6 14859     -1.159300e+02 5.475000e+01
+2 14860     3.454700e+02 3.385999e+01
+3 14860     2.438500e+02 -2.726500e+02
+2 14861     3.753300e+02 3.008002e+01
+3 14861     2.730200e+02 -2.750500e+02
+2 14862     7.308400e+02 2.869000e+01
+7 14862     6.186899e+02 1.788800e+02
+9 14862     4.844700e+02 1.314400e+02
+10 14862     8.030500e+02 1.808400e+02
+12 14862     7.401400e+02 1.730400e+02
+2 14863     7.784998e+01 2.745001e+01
+3 14863     -9.409973e+00 -2.855600e+02
+4 14863     -2.484300e+02 -3.806600e+02
+6 14863     -1.042400e+02 3.150000e+01
+7 14863     -1.329300e+02 1.331600e+02
+8 14863     9.556000e+01 -2.222000e+01
+12 14863     -8.553003e+01 8.750000e+01
+13 14863     3.280900e+02 -2.021200e+02
+2 14864     7.784998e+01 2.745001e+01
+3 14864     -9.409973e+00 -2.855600e+02
+13 14864     3.280900e+02 -2.021200e+02
+2 14865     3.418500e+02 1.908002e+01
+3 14865     2.428700e+02 -2.866000e+02
+6 14865     1.705300e+02 2.020001e+01
+7 14865     9.166998e+01 9.379999e+01
+8 14865     3.109400e+02 -3.329001e+01
+9 14865     1.747900e+02 1.139500e+02
+10 14865     1.051500e+02 1.013800e+02
+2 14866     -6.840027e+00 1.847998e+01
+3 14866     -9.540002e+01 -2.957300e+02
+8 14866     2.994000e+01 -2.563000e+01
+9 14866     -1.179500e+02 9.941000e+01
+2 14867     6.370900e+02 1.695001e+01
+8 14867     5.819100e+02 -1.851999e+01
+12 14867     6.393400e+02 1.744700e+02
+2 14868     6.370900e+02 1.695001e+01
+3 14868     5.015900e+02 -2.873600e+02
+8 14868     5.819100e+02 -1.851999e+01
+12 14868     6.393400e+02 1.744700e+02
+2 14869     -1.276500e+02 1.173999e+01
+8 14869     -5.846997e+01 -2.203000e+01
+2 14870     6.100601e+02 -1.000000e+00
+3 14870     4.770900e+02 -3.065800e+02
+6 14870     5.298900e+02 1.503900e+02
+8 14870     5.583600e+02 -3.207001e+01
+12 14870     6.097900e+02 1.601800e+02
+2 14871     1.972800e+02 -4.760010e+00
+3 14871     1.079200e+02 -3.129700e+02
+4 14871     -3.038300e+02 -4.393000e+02
+7 14871     -4.392999e+01 8.064001e+01
+10 14871     -4.965002e+01 9.896002e+01
+13 14871     4.090000e+02 -2.524600e+02
+2 14872     1.333300e+02 -1.109003e+01
+3 14872     4.621997e+01 -3.211100e+02
+4 14872     -2.866400e+02 -3.982400e+02
+6 14872     -4.839001e+01 -1.781000e+01
+7 14872     -9.795001e+01 8.639999e+01
+8 14872     1.382400e+02 -5.651999e+01
+10 14872     -1.091900e+02 1.125000e+02
+12 14872     -3.600000e+01 3.671002e+01
+13 14872     3.593500e+02 -2.439700e+02
+15 14872     -5.233002e+01 1.035800e+02
+2 14873     1.601700e+02 -1.367999e+01
+7 14873     -7.662000e+01 7.915997e+01
+15 14873     -2.642999e+01 9.053000e+01
+2 14874     6.758400e+02 -3.115002e+01
+3 14874     5.428600e+02 -3.328600e+02
+7 14874     5.635900e+02 1.408000e+02
+9 14874     4.407400e+02 7.957001e+01
+10 14874     7.324900e+02 1.436000e+02
+12 14874     6.784301e+02 1.182900e+02
+2 14875     6.758400e+02 -3.115002e+01
+3 14875     5.428600e+02 -3.328600e+02
+7 14875     5.635900e+02 1.408000e+02
+9 14875     4.407400e+02 7.957001e+01
+12 14875     6.784301e+02 1.182900e+02
+2 14876     -1.447400e+02 -3.397998e+01
+3 14876     -2.343200e+02 -3.532700e+02
+2 14877     7.327800e+02 -3.397998e+01
+9 14877     4.875500e+02 7.967001e+01
+12 14877     7.392200e+02 1.070000e+02
+2 14878     -1.576100e+02 -4.059998e+01
+3 14878     -2.434100e+02 -3.597500e+02
+2 14879     3.114000e+02 -4.163000e+01
+3 14879     2.188300e+02 -3.441900e+02
+4 14879     -3.601100e+02 -5.101899e+02
+6 14879     1.358200e+02 -4.796997e+01
+7 14879     5.073999e+01 3.914001e+01
+8 14879     2.838300e+02 -8.365002e+01
+2 14880     9.144000e+01 -4.715002e+01
+3 14880     7.140015e+00 -3.569500e+02
+4 14880     -2.930900e+02 -3.707600e+02
+6 14880     -9.103000e+01 -5.104999e+01
+7 14880     -1.310100e+02 6.384003e+01
+8 14880     1.043700e+02 -8.432001e+01
+13 14880     3.264700e+02 -2.613500e+02
+2 14881     9.144000e+01 -4.715002e+01
+3 14881     7.140015e+00 -3.569500e+02
+8 14881     1.043700e+02 -8.432001e+01
+13 14881     3.264700e+02 -2.613500e+02
+2 14882     6.632900e+02 -5.085999e+01
+9 14882     4.306801e+02 6.288000e+01
+12 14882     6.641300e+02 9.995001e+01
+2 14883     6.632900e+02 -5.085999e+01
+9 14883     4.306801e+02 6.288000e+01
+10 14883     7.153000e+02 1.297600e+02
+12 14883     6.641300e+02 9.995001e+01
+2 14884     -1.331900e+02 -5.262000e+01
+3 14884     -2.185600e+02 -3.703900e+02
+4 14884     -2.310200e+02 -2.757000e+02
+6 14884     -3.152800e+02 -2.422998e+01
+12 14884     -2.743600e+02 3.396002e+01
+15 14884     -2.615000e+02 1.629600e+02
+2 14885     -1.331900e+02 -5.262000e+01
+3 14885     -2.185600e+02 -3.703900e+02
+6 14885     -3.152800e+02 -2.422998e+01
+2 14886     1.480900e+02 -5.553003e+01
+3 14886     6.271002e+01 -3.629700e+02
+4 14886     -3.156300e+02 -3.981500e+02
+8 14886     1.491300e+02 -9.198999e+01
+2 14887     -3.559003e+01 -6.023999e+01
+8 14887     3.099976e+00 -9.065997e+01
+13 14887     2.398600e+02 -2.449700e+02
+2 14888     7.064700e+02 -6.356000e+01
+7 14888     5.872400e+02 1.053400e+02
+9 14888     4.674600e+02 5.421002e+01
+10 14888     7.583300e+02 9.787000e+01
+2 14889     -1.070800e+02 -6.603998e+01
+8 14889     -5.096002e+01 -9.251001e+01
+2 14890     -9.000000e+00 -7.159003e+01
+4 14890     -2.780200e+02 -3.146900e+02
+6 14890     -1.940400e+02 -6.877002e+01
+9 14890     -1.126400e+02 2.379999e+01
+2 14891     6.777000e+02 -7.440002e+01
+3 14891     5.481600e+02 -3.755300e+02
+7 14891     5.601500e+02 1.038000e+02
+10 14891     7.255500e+02 1.000500e+02
+2 14892     -6.237000e+01 -1.175100e+02
+3 14892     -1.406000e+02 -4.297700e+02
+4 14892     -2.890700e+02 -2.746600e+02
+6 14892     -2.494500e+02 -1.229500e+02
+7 14892     -2.613200e+02 2.103998e+01
+8 14892     -2.173999e+01 -1.383000e+02
+12 14892     -2.344500e+02 -6.139001e+01
+2 14893     1.152700e+02 -1.187000e+02
+3 14893     3.478998e+01 -4.251500e+02
+10 14893     -1.518800e+02 6.090027e+00
+2 14894     -1.165900e+02 -1.214400e+02
+8 14894     -6.442999e+01 -1.397400e+02
+2 14895     -8.421997e+01 -1.255800e+02
+3 14895     -1.619500e+02 -4.398000e+02
+6 14895     -2.693100e+02 -1.288200e+02
+8 14895     -3.787000e+01 -1.434500e+02
+2 14896     2.613199e+02 -1.359200e+02
+4 14896     -4.001000e+02 -4.445900e+02
+6 14896     7.815002e+01 -1.538700e+02
+8 14896     2.385100e+02 -1.623000e+02
+12 14896     8.437000e+01 -1.073800e+02
+2 14897     5.253900e+02 -1.414400e+02
+6 14897     3.681100e+02 -1.287000e+02
+8 14897     4.637200e+02 -1.669600e+02
+12 14897     3.982700e+02 -9.620001e+01
+2 14898     7.634000e+02 -1.421700e+02
+9 14898     5.160300e+02 -9.119995e+00
+12 14898     7.640900e+02 -8.809998e+00
+2 14899     -1.005200e+02 -1.440900e+02
+6 14899     -2.850100e+02 -1.458000e+02
+2 14900     5.155900e+02 -1.454900e+02
+9 14900     3.228500e+02 -1.673999e+01
+2 14901     -2.578003e+01 -1.620300e+02
+7 14901     -2.374400e+02 -2.385999e+01
+9 14901     -1.206100e+02 -5.225000e+01
+10 14901     -2.698900e+02 4.320007e+00
+15 14901     -2.373300e+02 -2.519000e+01
+2 14902     4.376100e+02 -1.771800e+02
+3 14902     3.467300e+02 -4.717200e+02
+4 14902     -4.941200e+02 -5.559200e+02
+6 14902     2.600100e+02 -1.930601e+02
+7 14902     1.342300e+02 -1.018700e+02
+9 14902     2.625000e+02 -4.385999e+01
+15 14902     2.335500e+02 -1.789400e+02
+2 14903     4.703199e+02 -1.793900e+02
+6 14903     2.982500e+02 -1.877000e+02
+8 14903     4.121200e+02 -1.996100e+02
+12 14903     3.152800e+02 -1.531200e+02
+2 14904     5.083000e+02 -1.916900e+02
+8 14904     4.483101e+02 -2.077200e+02
+9 14904     3.186000e+02 -5.585999e+01
+2 14905     5.243400e+02 -1.957200e+02
+6 14905     3.698400e+02 -1.749100e+02
+8 14905     4.637400e+02 -2.091500e+02
+9 14905     3.308101e+02 -5.785999e+01
+12 14905     4.026200e+02 -1.454500e+02
+2 14906     -3.027400e+02 -2.063700e+02
+13 14906     9.214001e+01 -2.463500e+02
+2 14907     -4.099500e+02 -2.076900e+02
+7 14907     -4.260600e+02 7.890997e+01
+2 14908     -2.898000e+02 -2.108500e+02
+13 14908     9.956000e+01 -2.517300e+02
+2 14909     -3.295600e+02 -2.186200e+02
+3 14909     -4.374100e+02 -5.513101e+02
+2 14910     1.560600e+02 -2.196000e+02
+3 14910     8.089001e+01 -5.227000e+02
+6 14910     -3.178003e+01 -2.426300e+02
+8 14910     1.490500e+02 -2.286200e+02
+9 14910     3.478998e+01 -9.073999e+01
+2 14911     2.360699e+02 -2.199200e+02
+3 14911     1.591100e+02 -5.200400e+02
+6 14911     4.864001e+01 -2.450500e+02
+8 14911     2.143900e+02 -2.307500e+02
+2 14912     -5.600700e+02 -2.326300e+02
+8 14912     -3.954200e+02 -2.055800e+02
+2 14913     4.691200e+02 -2.327700e+02
+6 14913     2.984200e+02 -2.342900e+02
+8 14913     4.119600e+02 -2.432700e+02
+2 14914     -4.821002e+01 -2.358700e+02
+3 14914     -1.257500e+02 -5.483600e+02
+4 14914     -3.493800e+02 -2.690000e+02
+6 14914     -2.295700e+02 -2.314100e+02
+8 14914     -1.046997e+01 -2.317800e+02
+9 14914     -1.381500e+02 -1.151800e+02
+2 14915     -4.171100e+02 -2.550900e+02
+4 14915     -2.471100e+02 -1.514800e+02
+7 14915     -4.470800e+02 2.664001e+01
+2 14916     -3.948600e+02 -2.586600e+02
+7 14916     -4.298100e+02 2.263000e+01
+2 14917     3.693800e+02 -2.594100e+02
+3 14917     2.873101e+02 -5.556801e+02
+6 14917     1.874000e+02 -2.719200e+02
+8 14917     3.244200e+02 -2.649000e+02
+9 14917     2.111300e+02 -1.144900e+02
+12 14917     1.927000e+02 -2.341700e+02
+2 14918     -3.280000e+02 -2.715300e+02
+7 14918     -3.843700e+02 -1.020020e+00
+9 14918     -3.850100e+02 -1.650600e+02
+13 14918     5.709003e+01 -3.036800e+02
+2 14919     -7.799988e+00 -2.796000e+02
+3 14919     -8.415002e+01 -5.909399e+02
+8 14919     2.178003e+01 -2.693000e+02
+2 14920     2.492800e+02 -2.940300e+02
+3 14920     1.733000e+02 -5.943400e+02
+6 14920     6.459998e+01 -3.067400e+02
+2 14921     -3.807100e+02 -2.985000e+02
+8 14921     -2.612100e+02 -2.643000e+02
+2 14922     3.778900e+02 -3.025400e+02
+3 14922     2.957500e+02 -5.991200e+02
+6 14922     2.003000e+02 -3.085100e+02
+8 14922     3.332300e+02 -2.989100e+02
+9 14922     2.183600e+02 -1.498400e+02
+2 14923     -4.631000e+02 -3.039200e+02
+7 14923     -4.969900e+02 -2.196997e+01
+8 14923     -3.247300e+02 -2.662700e+02
+9 14923     -4.968400e+02 -1.981000e+02
+13 14923     -4.044000e+01 -3.135800e+02
+15 14923     -5.258200e+02 2.715997e+01
+2 14924     2.334100e+02 -3.243300e+02
+6 14924     5.051001e+01 -3.322600e+02
+8 14924     2.125200e+02 -3.139700e+02
+12 14924     5.446002e+01 -2.874700e+02
+2 14925     -3.825600e+02 -3.249700e+02
+7 14925     -4.435100e+02 -4.994000e+01
+15 14925     -4.638400e+02 -1.690997e+01
+2 14926     3.352600e+02 -3.314000e+02
+4 14926     -5.380700e+02 -4.613500e+02
+6 14926     1.546500e+02 -3.371200e+02
+8 14926     2.965400e+02 -3.216200e+02
+12 14926     1.612100e+02 -2.971000e+02
+2 14927     -5.571500e+02 -3.365100e+02
+8 14927     -4.009200e+02 -2.935600e+02
+2 14928     2.327100e+02 -3.374600e+02
+6 14928     5.034003e+01 -3.449100e+02
+12 14928     5.521997e+01 -3.008700e+02
+2 14929     -5.168800e+02 -3.387600e+02
+8 14929     -3.704000e+02 -2.963100e+02
+2 14930     -3.621000e+02 -3.522400e+02
+6 14930     -5.388800e+02 -3.100400e+02
+7 14930     -4.355500e+02 -8.272998e+01
+9 14930     -4.040100e+02 -2.346100e+02
+13 14930     1.448999e+01 -3.709200e+02
+2 14931     -3.182500e+02 -3.529900e+02
+13 14931     4.240002e+01 -3.773600e+02
+2 14932     -4.399900e+02 -3.594100e+02
+7 14932     -4.945100e+02 -8.303998e+01
+9 14932     -4.705600e+02 -2.460600e+02
+13 14932     -3.709998e+01 -3.664000e+02
+15 14932     -5.344200e+02 -5.623999e+01
+2 14933     -5.540300e+02 -3.773400e+02
+7 14933     -5.845500e+02 -9.015002e+01
+8 14933     -4.029000e+02 -3.282300e+02
+13 14933     -1.156300e+02 -3.645600e+02
+2 14934     -3.535200e+02 -3.995699e+02
+7 14934     -4.444600e+02 -1.319100e+02
+9 14934     -3.915000e+02 -2.736900e+02
+13 14934     8.979980e+00 -4.139400e+02
+2 14935     -3.084400e+02 -4.046100e+02
+7 14935     -4.135900e+02 -1.424000e+02
+2 14936     -3.677300e+02 -4.239900e+02
+8 14936     -2.608800e+02 -3.717300e+02
+2 14937     5.153400e+02 -4.562300e+02
+10 14937     2.004500e+02 -3.714400e+02
+2 14938     -4.135700e+02 -4.783400e+02
+8 14938     -3.026000e+02 -4.169700e+02
+2 14939     6.997600e+02 -5.030800e+02
+9 14939     4.887300e+02 -2.984800e+02
+2 14940     6.803101e+02 -5.073199e+02
+9 14940     4.713400e+02 -3.034100e+02
+10 14940     3.420200e+02 -4.689500e+02
+2 14941     4.639500e+02 -5.422400e+02
+10 14941     1.095800e+02 -4.419000e+02
+2 14942     5.061400e+02 -5.422000e+02
+9 14942     3.333700e+02 -3.401600e+02
+2 14943     -2.174300e+02 6.078900e+02
+11 14943     2.247600e+02 6.489990e+00
+13 14943     2.705900e+02 4.457300e+02
+14 14943     4.113600e+02 8.606000e+01
+2 14944     -1.861400e+02 5.849400e+02
+4 14944     1.859800e+02 -4.754000e+02
+2 14945     1.395001e+01 5.797300e+02
+3 14945     -1.308000e+02 2.350600e+02
+13 14945     4.898700e+02 4.528000e+02
+14 14945     6.716400e+02 8.856000e+01
+2 14946     2.880100e+02 5.512700e+02
+6 14946     2.011500e+02 8.514100e+02
+2 14947     -3.421300e+02 5.467100e+02
+3 14947     -4.633100e+02 2.101000e+02
+4 14947     1.651300e+02 -3.602200e+02
+5 14947     3.791000e+02 1.140000e+02
+6 14947     -5.691000e+02 8.595500e+02
+8 14947     -2.026200e+02 4.258700e+02
+11 14947     1.065500e+02 -4.995001e+01
+13 14947     1.609000e+02 3.851200e+02
+14 14947     2.814399e+02 2.023999e+01
+2 14948     -6.156400e+02 5.312200e+02
+13 14948     -6.381000e+01 3.458100e+02
+14 14948     1.471002e+01 -1.583002e+01
+2 14949     -1.103000e+02 5.205600e+02
+4 14949     1.477700e+02 -5.254000e+02
+5 14949     6.304100e+02 1.068700e+02
+8 14949     -1.113000e+01 4.089200e+02
+13 14949     3.660100e+02 3.885100e+02
+14 14949     5.252800e+02 1.760999e+01
+2 14950     -6.551700e+02 5.119400e+02
+4 14950     1.522700e+02 -1.738700e+02
+5 14950     6.764001e+01 6.240997e+01
+8 14950     -4.604500e+02 3.888600e+02
+2 14951     -6.134300e+02 5.121000e+02
+4 14951     1.524500e+02 -1.963600e+02
+8 14951     -4.258000e+02 3.912500e+02
+2 14952     -5.264500e+02 5.060200e+02
+11 14952     -6.277002e+01 -9.490997e+01
+13 14952     4.840027e+00 3.358500e+02
+14 14952     9.565002e+01 -3.064001e+01
+2 14953     -1.211300e+02 5.002300e+02
+4 14953     1.359200e+02 -5.126500e+02
+11 14953     3.260900e+02 -6.612000e+01
+2 14954     -7.453998e+01 4.909900e+02
+6 14954     -2.254300e+02 8.503800e+02
+2 14955     5.682400e+02 4.882700e+02
+3 14955     4.137300e+02 1.544900e+02
+6 14955     5.114200e+02 6.972900e+02
+9 14955     3.389301e+02 5.153700e+02
+2 14956     -6.496200e+02 4.877800e+02
+4 14956     1.417600e+02 -1.748600e+02
+2 14957     -4.449300e+02 4.772600e+02
+3 14957     -5.689100e+02 1.439400e+02
+4 14957     1.314300e+02 -2.874700e+02
+5 14957     2.666200e+02 4.365002e+01
+8 14957     -2.877200e+02 3.676500e+02
+2 14958     5.500900e+02 4.764600e+02
+6 14958     4.901300e+02 6.855100e+02
+8 14958     5.158800e+02 3.615800e+02
+9 14958     3.236300e+02 5.039000e+02
+2 14959     -6.548300e+02 4.751200e+02
+4 14959     1.358700e+02 -1.710800e+02
+8 14959     -4.594900e+02 3.604000e+02
+11 14959     -1.690500e+02 -1.228500e+02
+2 14960     -6.919900e+02 4.738100e+02
+4 14960     1.362200e+02 -1.520500e+02
+2 14961     -6.604000e+02 4.637000e+02
+4 14961     1.309600e+02 -1.676100e+02
+5 14961     5.960999e+01 2.213000e+01
+8 14961     -4.628900e+02 3.515400e+02
+11 14961     -1.732700e+02 -1.306500e+02
+13 14961     -9.810999e+01 2.945300e+02
+14 14961     -2.813000e+01 -7.402002e+01
+2 14962     1.760300e+02 4.590300e+02
+6 14962     9.679999e+01 8.699300e+02
+2 14963     5.232800e+02 4.323900e+02
+3 14963     3.738800e+02 1.028500e+02
+6 14963     4.560699e+02 6.378900e+02
+8 14963     4.929301e+02 3.258500e+02
+9 14963     3.020200e+02 4.654200e+02
+2 14964     2.935699e+02 4.178100e+02
+3 14964     1.501900e+02 8.447998e+01
+9 14964     1.021800e+02 4.464400e+02
+13 14964     6.793700e+02 2.364100e+02
+2 14965     -6.859000e+02 4.089500e+02
+4 14965     1.070500e+02 -1.497900e+02
+5 14965     3.063000e+01 -2.550000e+01
+8 14965     -4.841400e+02 3.070100e+02
+11 14965     -1.961600e+02 -1.693200e+02
+13 14965     -1.201400e+02 2.529800e+02
+14 14965     -5.688000e+01 -1.214400e+02
+2 14966     -3.602300e+02 4.064300e+02
+3 14966     -4.859900e+02 7.434003e+01
+4 14966     9.300000e+01 -3.322900e+02
+5 14966     3.463199e+02 -1.644000e+01
+8 14966     -2.176500e+02 3.128200e+02
+11 14966     8.603003e+01 -1.573900e+02
+2 14967     -3.724100e+02 3.792500e+02
+4 14967     7.895001e+01 -3.207300e+02
+5 14967     3.303800e+02 -4.400000e+01
+8 14967     -2.280100e+02 2.902600e+02
+11 14967     7.185999e+01 -1.789500e+02
+2 14968     -6.881200e+02 3.646000e+02
+5 14968     2.406000e+01 -6.295001e+01
+8 14968     -4.858600e+02 2.727500e+02
+2 14969     -7.941100e+02 3.502400e+02
+4 14969     8.562000e+01 -9.284003e+01
+5 14969     -7.047998e+01 -7.740002e+01
+2 14970     4.026000e+02 3.467300e+02
+6 14970     3.275000e+02 5.884600e+02
+8 14970     3.970300e+02 2.606300e+02
+9 14970     1.982000e+02 3.883400e+02
+2 14971     -6.235200e+02 3.416600e+02
+4 14971     7.421997e+01 -1.754400e+02
+5 14971     8.177002e+01 -8.141998e+01
+8 14971     -4.327500e+02 2.556800e+02
+11 14971     -1.480400e+02 -2.134900e+02
+12 14971     -6.969700e+02 5.453900e+02
+13 14971     -7.462000e+01 2.098900e+02
+2 14972     6.619399e+02 3.405200e+02
+3 14972     5.097700e+02 2.098999e+01
+9 14972     4.195900e+02 3.909600e+02
+2 14973     -7.847600e+02 3.386700e+02
+4 14973     8.047998e+01 -9.821002e+01
+8 14973     -5.637300e+02 2.493000e+02
+2 14974     4.485999e+01 3.368000e+02
+3 14974     -1.027000e+02 2.340027e+00
+5 14974     7.969500e+02 -6.753998e+01
+6 14974     -7.003998e+01 6.842700e+02
+8 14974     1.178100e+02 2.652900e+02
+9 14974     -1.168100e+02 3.681200e+02
+11 14974     4.983600e+02 -1.862100e+02
+13 14974     4.998700e+02 2.519300e+02
+14 14974     6.928000e+02 -1.473700e+02
+2 14975     -2.164800e+02 3.333000e+02
+4 14975     4.721997e+01 -4.203000e+02
+5 14975     4.942700e+02 -8.094000e+01
+6 14975     -3.921200e+02 6.225400e+02
+11 14975     2.229000e+02 -2.046900e+02
+2 14976     6.026801e+02 3.294500e+02
+9 14976     3.708101e+02 3.798900e+02
+10 14976     7.424100e+02 5.710200e+02
+2 14977     6.015997e+01 3.132600e+02
+5 14977     8.143000e+02 -8.909003e+01
+6 14977     -4.932001e+01 6.622000e+02
+8 14977     1.311000e+02 2.478400e+02
+9 14977     -1.029200e+02 3.477400e+02
+11 14977     5.112100e+02 -2.063300e+02
+2 14978     -1.225900e+02 3.029500e+02
+11 14978     3.173400e+02 -2.226700e+02
+13 14978     3.408000e+02 2.120100e+02
+2 14979     4.882600e+02 2.951400e+02
+3 14979     3.451899e+02 -2.641998e+01
+6 14979     4.085800e+02 4.850000e+02
+7 14979     4.369200e+02 4.813500e+02
+8 14979     4.621100e+02 2.133400e+02
+9 14979     2.746500e+02 3.472100e+02
+10 14979     6.123300e+02 5.700800e+02
+13 14979     8.124500e+02 7.234998e+01
+2 14980     6.188101e+02 2.902100e+02
+9 14980     3.872000e+02 3.473200e+02
+10 14980     7.521600e+02 5.169300e+02
+2 14981     4.245900e+02 2.651200e+02
+3 14981     2.846300e+02 -5.751001e+01
+8 14981     4.096200e+02 1.899800e+02
+2 14982     5.373600e+02 2.487900e+02
+3 14982     3.938600e+02 -6.935999e+01
+6 14982     4.613000e+02 4.279500e+02
+7 14982     4.752600e+02 4.259000e+02
+8 14982     5.016200e+02 1.747200e+02
+9 14982     3.175699e+02 3.096500e+02
+2 14983     5.947400e+02 2.461600e+02
+3 14983     4.504500e+02 -6.941998e+01
+7 14983     5.272700e+02 4.108200e+02
+8 14983     5.499301e+02 1.708500e+02
+9 14983     3.661899e+02 3.093000e+02
+2 14984     -1.833100e+02 2.448700e+02
+4 14984     -3.700012e+00 -4.319800e+02
+5 14984     5.175601e+02 -1.658800e+02
+7 14984     -1.113800e+02 5.628400e+02
+8 14984     -7.127002e+01 1.881400e+02
+12 14984     -1.800300e+02 5.068100e+02
+2 14985     -1.993000e+02 2.405400e+02
+7 14985     -1.298600e+02 5.564900e+02
+2 14986     4.282800e+02 2.185200e+02
+6 14986     3.406700e+02 4.079100e+02
+8 14986     4.135600e+02 1.517900e+02
+9 14986     2.256600e+02 2.801700e+02
+12 14986     4.293800e+02 4.146200e+02
+2 14987     6.238000e+02 2.189300e+02
+3 14987     4.784600e+02 -9.506000e+01
+6 14987     5.570300e+02 3.840400e+02
+7 14987     5.485200e+02 3.762500e+02
+8 14987     5.739000e+02 1.495500e+02
+9 14987     3.911700e+02 2.876400e+02
+10 14987     7.361899e+02 4.274800e+02
+2 14988     -1.553700e+02 2.184000e+02
+5 14988     5.476700e+02 -1.860100e+02
+6 14988     -3.125200e+02 5.025100e+02
+12 14988     -1.438800e+02 4.842300e+02
+2 14989     -1.479200e+02 2.104400e+02
+5 14989     5.546000e+02 -1.963700e+02
+2 14990     -2.426300e+02 2.078500e+02
+3 14990     -3.787200e+02 -1.239300e+02
+4 14990     -1.577002e+01 -3.838400e+02
+5 14990     4.466300e+02 -1.993500e+02
+8 14990     -1.223800e+02 1.571000e+02
+12 14990     -2.473800e+02 4.616300e+02
+2 14991     -1.560300e+02 1.995400e+02
+3 14991     -2.931900e+02 -1.307700e+02
+7 14991     -8.284998e+01 5.279400e+02
+12 14991     -1.441400e+02 4.706700e+02
+13 14991     3.036899e+02 1.329800e+02
+14 14991     4.532100e+02 -2.858400e+02
+2 14992     3.647800e+02 1.734600e+02
+7 14992     3.486200e+02 4.186000e+02
+2 14993     -4.935300e+02 1.712100e+02
+7 14993     -4.289600e+02 4.689500e+02
+8 14993     -3.270700e+02 1.243200e+02
+11 14993     -4.115002e+01 -3.316100e+02
+12 14993     -5.278500e+02 3.895600e+02
+2 14994     1.102200e+02 1.666700e+02
+8 14994     1.313300e+02 9.520999e+01
+2 14995     -3.198100e+02 1.648100e+02
+7 14995     -2.509700e+02 4.804400e+02
+8 14995     -1.829500e+02 1.221800e+02
+2 14996     2.716899e+02 1.569500e+02
+3 14996     1.610500e+02 -1.596200e+02
+2 14997     1.628200e+02 9.633002e+01
+3 14997     6.996997e+01 -2.173500e+02
+4 14997     -2.326700e+02 -4.449301e+02
+5 14997     6.792500e+02 -5.949700e+02
+6 14997     -1.513000e+01 1.044500e+02
+8 14997     1.662700e+02 3.298999e+01
+12 14997     4.299988e+00 1.588000e+02
+2 14998     7.791600e+02 9.465997e+01
+9 14998     5.225200e+02 1.875400e+02
+2 14999     7.540100e+02 8.753003e+01
+12 14999     7.700200e+02 2.329700e+02
+2 15000     7.540100e+02 8.753003e+01
+9 15000     5.027300e+02 1.809200e+02
+12 15000     7.700200e+02 2.329700e+02
+2 15001     1.656700e+02 7.590997e+01
+3 15001     7.388000e+01 -2.369600e+02
+4 15001     -2.457200e+02 -4.406700e+02
+6 15001     -1.365997e+01 7.934998e+01
+8 15001     1.676600e+02 1.619000e+01
+10 15001     -6.000000e+01 1.953300e+02
+12 15001     3.669983e+00 1.337500e+02
+2 15002     2.031000e+01 6.296002e+01
+6 15002     -1.612800e+02 8.372998e+01
+8 15002     5.209998e+01 1.028000e+01
+13 15002     2.979800e+02 -1.579300e+02
+2 15003     2.031000e+01 6.296002e+01
+6 15003     -1.612800e+02 8.372998e+01
+8 15003     5.209998e+01 1.028000e+01
+2 15004     4.161300e+02 1.946002e+01
+8 15004     3.763100e+02 -3.081000e+01
+2 15005     5.850100e+02 1.866998e+01
+3 15005     4.509500e+02 -2.881200e+02
+6 15005     5.044800e+02 1.737600e+02
+7 15005     4.925000e+02 2.059400e+02
+8 15005     5.389200e+02 -1.537000e+01
+9 15005     3.630000e+02 1.176600e+02
+10 15005     6.533101e+02 2.309100e+02
+12 15005     5.852700e+02 1.834400e+02
+13 15005     8.660000e+02 -1.765000e+02
+2 15006     -4.622000e+02 1.446997e+01
+15 15006     -3.233400e+02 5.208100e+02
+2 15007     7.455100e+02 2.150024e+00
+10 15007     8.141100e+02 1.449700e+02
+2 15008     7.037900e+02 2.899780e-01
+9 15008     4.635300e+02 1.069000e+02
+10 15008     7.682200e+02 1.633300e+02
+2 15009     8.496002e+01 -2.000000e+00
+3 15009     -1.239990e+00 -3.134700e+02
+4 15009     -2.670200e+02 -3.766100e+02
+13 15009     3.273600e+02 -2.268700e+02
+2 15010     8.496002e+01 -2.000000e+00
+4 15010     -2.670200e+02 -3.766100e+02
+2 15011     5.634301e+02 -3.521002e+01
+8 15011     5.035300e+02 -7.409003e+01
+2 15012     6.655900e+02 -3.952002e+01
+3 15012     5.336500e+02 -3.421100e+02
+7 15012     5.538800e+02 1.364300e+02
+9 15012     4.317500e+02 7.279999e+01
+12 15012     6.667000e+02 1.119100e+02
+2 15013     -1.266700e+02 -4.491998e+01
+8 15013     -6.409998e+01 -7.239001e+01
+2 15014     -1.266700e+02 -4.491998e+01
+8 15014     -6.409998e+01 -7.239001e+01
+2 15015     7.876600e+02 -4.719000e+01
+7 15015     6.576899e+02 9.839001e+01
+9 15015     5.336899e+02 7.028998e+01
+12 15015     7.966100e+02 8.520001e+01
+2 15016     -1.598600e+02 -5.509003e+01
+3 15016     -2.448900e+02 -3.735700e+02
+8 15016     -9.091998e+01 -8.112000e+01
+2 15017     5.653800e+02 -9.159998e+01
+3 15017     4.577900e+02 -3.870400e+02
+2 15018     -1.441800e+02 -1.373000e+02
+3 15018     -2.311300e+02 -4.552500e+02
+2 15019     -5.209998e+01 -1.405000e+02
+3 15019     -1.287100e+02 -4.523700e+02
+4 15019     -3.053500e+02 -2.754000e+02
+6 15019     -2.362100e+02 -1.494301e+02
+7 15019     -2.535000e+02 -3.020020e+00
+8 15019     -1.350000e+01 -1.576500e+02
+9 15019     -1.437800e+02 -3.572998e+01
+12 15019     -2.236300e+02 -8.804999e+01
+2 15020     8.229980e+00 -1.436900e+02
+3 15020     -6.623999e+01 -4.529800e+02
+7 15020     -2.187300e+02 -2.153003e+01
+8 15020     3.273999e+01 -1.634000e+02
+10 15020     -2.532600e+02 4.419983e+00
+12 15020     -1.745500e+02 -1.025700e+02
+15 15020     -2.190700e+02 -2.457001e+01
+2 15021     -4.315997e+01 -1.552600e+02
+3 15021     -1.205100e+02 -4.660699e+02
+8 15021     -7.510010e+00 -1.691800e+02
+9 15021     -1.375100e+02 -4.687000e+01
+2 15022     2.114001e+01 -1.698400e+02
+3 15022     -5.271002e+01 -4.774800e+02
+8 15022     4.066998e+01 -1.855700e+02
+2 15023     4.901200e+02 -1.712200e+02
+8 15023     4.291899e+02 -1.951600e+02
+2 15024     -1.231900e+02 -1.741600e+02
+3 15024     -2.073300e+02 -4.901300e+02
+9 15024     -2.071800e+02 -6.771002e+01
+2 15025     1.293000e+02 -1.847800e+02
+4 15025     -3.865200e+02 -3.476700e+02
+6 15025     -5.772998e+01 -2.116600e+02
+12 15025     -5.997998e+01 -1.583400e+02
+2 15026     -3.250600e+02 -2.051000e+02
+13 15026     7.681000e+01 -2.408300e+02
+2 15027     -8.981000e+01 -2.434200e+02
+8 15027     -4.146002e+01 -2.359300e+02
+2 15028     -3.460000e+02 -2.455400e+02
+7 15028     -3.894800e+02 3.034003e+01
+8 15028     -2.300600e+02 -2.198100e+02
+10 15028     -3.999400e+02 1.034900e+02
+13 15028     5.210999e+01 -2.770300e+02
+15 15028     -3.785300e+02 8.744000e+01
+2 15029     7.109985e+00 -2.466700e+02
+3 15029     -6.765002e+01 -5.586000e+02
+8 15029     3.112000e+01 -2.441000e+02
+2 15030     1.679600e+02 -2.582000e+02
+8 15030     1.585300e+02 -2.619700e+02
+9 15030     4.521002e+01 -1.239600e+02
+2 15031     -5.060999e+01 -2.606300e+02
+8 15031     -1.148999e+01 -2.506700e+02
+2 15032     6.552900e+02 -2.649800e+02
+8 15032     5.828900e+02 -2.602700e+02
+2 15033     1.375100e+02 -2.958500e+02
+4 15033     -4.440700e+02 -3.431600e+02
+12 15033     -4.472998e+01 -2.539100e+02
+13 15033     3.265200e+02 -4.542100e+02
+2 15034     4.010000e+02 -3.085200e+02
+6 15034     2.245100e+02 -3.102100e+02
+8 15034     3.527400e+02 -3.032900e+02
+12 15034     2.382700e+02 -2.748300e+02
+2 15035     -4.899700e+02 -3.719900e+02
+13 15035     -7.371002e+01 -3.694700e+02
+2 15036     -4.899700e+02 -3.719900e+02
+7 15036     -5.351600e+02 -9.179999e+01
+8 15036     -3.523400e+02 -3.250700e+02
+2 15037     3.267400e+02 -3.705000e+02
+8 15037     2.892900e+02 -3.520000e+02
+2 15038     -4.676100e+02 -4.227400e+02
+7 15038     -5.340800e+02 -1.441400e+02
+8 15038     -3.393200e+02 -3.681400e+02
+15 15038     -5.949300e+02 -1.346300e+02
+2 15039     5.542200e+02 -4.392400e+02
+8 15039     4.808300e+02 -4.139300e+02
+2 15040     -3.824600e+02 -4.865000e+02
+6 15040     -5.607300e+02 -4.835699e+02
+8 15040     -2.798500e+02 -4.247200e+02
+2 15041     5.005400e+02 -5.031400e+02
+10 15041     1.635700e+02 -4.144800e+02
+2 15042     6.825699e+02 -5.914500e+02
+6 15042     4.876500e+02 -6.069399e+02
+12 15042     4.899800e+02 -5.963000e+02
+2 15043     5.569900e+02 -6.058500e+02
+9 15043     3.808000e+02 -3.865400e+02
+2 15044     5.755100e+02 -6.055900e+02
+7 15044     1.897600e+02 -4.651000e+02
+9 15044     3.945601e+02 -3.854800e+02
+2 15045     -2.790300e+02 5.927100e+02
+14 15045     3.466200e+02 6.528998e+01
+2 15046     -8.050000e+01 5.740300e+02
+3 15046     -2.190200e+02 2.311400e+02
+4 15046     1.788500e+02 -5.579100e+02
+5 15046     6.700100e+02 1.624800e+02
+13 15046     3.969200e+02 4.355200e+02
+14 15046     5.615601e+02 7.128003e+01
+2 15047     -2.105300e+02 5.634500e+02
+3 15047     -3.399400e+02 2.233800e+02
+4 15047     1.737100e+02 -4.538400e+02
+11 15047     2.320400e+02 -2.521002e+01
+14 15047     4.172700e+02 4.740997e+01
+2 15048     4.517200e+02 5.313800e+02
+3 15048     3.028101e+02 1.924600e+02
+8 15048     4.343800e+02 4.083800e+02
+2 15049     2.674500e+02 5.292900e+02
+3 15049     1.228700e+02 1.887500e+02
+6 15049     1.752700e+02 8.293400e+02
+8 15049     2.890100e+02 4.123200e+02
+13 15049     6.694500e+02 3.366300e+02
+2 15050     -5.124800e+02 5.100700e+02
+11 15050     -5.365002e+01 -9.117999e+01
+2 15051     2.672900e+02 4.919400e+02
+3 15051     1.235900e+02 1.536800e+02
+6 15051     1.755700e+02 7.827400e+02
+8 15051     2.889300e+02 3.820500e+02
+13 15051     6.653000e+02 3.052200e+02
+2 15052     -2.723300e+02 4.889400e+02
+3 15052     -3.998500e+02 1.517600e+02
+4 15052     1.344100e+02 -3.997400e+02
+5 15052     4.462600e+02 6.602002e+01
+6 15052     -4.762700e+02 8.014500e+02
+8 15052     -1.456700e+02 3.812000e+02
+2 15053     -2.441900e+02 4.766900e+02
+3 15053     -3.734600e+02 1.385300e+02
+4 15053     1.263300e+02 -4.182800e+02
+6 15053     -4.384100e+02 7.952600e+02
+8 15053     -1.214800e+02 3.736300e+02
+11 15053     1.982300e+02 -9.659998e+01
+13 15053     2.407500e+02 3.383600e+02
+14 15053     3.763300e+02 -3.673999e+01
+2 15054     -1.131700e+02 4.686300e+02
+3 15054     -2.506100e+02 1.306200e+02
+6 15054     -2.733400e+02 8.111900e+02
+2 15055     -2.582001e+01 4.461800e+02
+3 15055     -1.685700e+02 1.075100e+02
+5 15055     7.221000e+02 4.135999e+01
+6 15055     -1.639800e+02 8.047300e+02
+8 15055     5.960999e+01 3.523800e+02
+11 15055     4.236300e+02 -1.009600e+02
+13 15055     4.401200e+02 3.363200e+02
+14 15055     6.163600e+02 -4.544000e+01
+2 15056     3.989200e+02 4.252300e+02
+3 15056     2.520000e+02 9.346002e+01
+6 15056     3.240700e+02 6.788800e+02
+8 15056     3.941000e+02 3.234300e+02
+2 15057     4.458199e+02 4.129300e+02
+3 15057     3.008000e+02 8.234003e+01
+6 15057     3.680600e+02 6.253300e+02
+8 15057     4.294800e+02 3.110700e+02
+9 15057     2.369700e+02 4.465800e+02
+2 15058     -4.789700e+02 3.984900e+02
+3 15058     -6.004600e+02 6.704999e+01
+2 15059     4.720100e+02 3.948400e+02
+3 15059     3.262900e+02 6.684003e+01
+6 15059     3.951600e+02 6.017400e+02
+8 15059     4.501000e+02 2.960800e+02
+9 15059     2.587000e+02 4.331100e+02
+12 15059     4.793300e+02 6.076100e+02
+13 15059     8.101600e+02 1.594500e+02
+2 15060     4.867600e+02 3.931900e+02
+3 15060     3.405900e+02 6.590002e+01
+6 15060     4.121600e+02 5.972700e+02
+8 15060     4.621300e+02 2.933900e+02
+9 15060     2.716000e+02 4.311100e+02
+12 15060     4.954900e+02 6.036400e+02
+13 15060     8.233700e+02 1.554300e+02
+2 15061     4.422100e+02 3.506600e+02
+3 15061     2.993800e+02 2.451001e+01
+6 15061     3.598300e+02 5.539700e+02
+8 15061     4.250400e+02 2.586900e+02
+12 15061     4.463900e+02 5.607600e+02
+2 15062     -7.706000e+01 3.460500e+02
+3 15062     -2.172000e+02 1.008002e+01
+4 15062     4.794000e+01 -5.265601e+02
+5 15062     6.513000e+02 -6.048999e+01
+6 15062     -2.217200e+02 6.709900e+02
+8 15062     1.713000e+01 2.718700e+02
+9 15062     -2.189900e+02 3.736900e+02
+11 15062     3.655000e+02 -1.853500e+02
+13 15062     3.851000e+02 2.515100e+02
+14 15062     5.514600e+02 -1.448900e+02
+2 15063     6.227000e+02 3.117400e+02
+7 15063     5.610800e+02 4.684800e+02
+8 15063     5.741400e+02 2.240200e+02
+9 15063     3.895900e+02 3.648400e+02
+10 15063     7.613500e+02 5.417800e+02
+2 15064     3.080100e+02 3.023600e+02
+7 15064     3.090601e+02 5.515900e+02
+8 15064     3.195400e+02 2.277900e+02
+11 15064     6.266899e+02 -3.226800e+02
+13 15064     6.783800e+02 1.380600e+02
+2 15065     3.080100e+02 3.023600e+02
+7 15065     3.090601e+02 5.515900e+02
+8 15065     3.195400e+02 2.277900e+02
+11 15065     6.266899e+02 -3.226800e+02
+13 15065     6.783800e+02 1.380600e+02
+2 15066     -9.821997e+01 2.787700e+02
+4 15066     1.081000e+01 -4.980900e+02
+5 15066     6.190000e+02 -1.280200e+02
+8 15066     -9.099731e-01 2.175300e+02
+9 15066     -2.355800e+02 3.130900e+02
+11 15066     3.395300e+02 -2.416000e+02
+12 15066     -7.975000e+01 5.561200e+02
+2 15067     1.990997e+01 2.647200e+02
+3 15067     -1.261100e+02 -6.808002e+01
+5 15067     7.590500e+02 -1.388400e+02
+9 15067     -1.350600e+02 3.047400e+02
+11 15067     4.695400e+02 -2.471900e+02
+2 15068     4.335200e+02 2.416200e+02
+3 15068     2.947400e+02 -7.670001e+01
+8 15068     4.172500e+02 1.706200e+02
+9 15068     2.291300e+02 2.999900e+02
+2 15069     3.714500e+02 2.225000e+02
+3 15069     2.288500e+02 -9.922998e+01
+6 15069     2.857100e+02 4.530600e+02
+8 15069     3.697500e+02 1.609800e+02
+9 15069     1.747300e+02 2.802900e+02
+2 15070     6.352200e+02 2.032800e+02
+3 15070     4.898101e+02 -1.090800e+02
+6 15070     5.686700e+02 3.615600e+02
+7 15070     5.570900e+02 3.592700e+02
+8 15070     5.819200e+02 1.343300e+02
+10 15070     7.448700e+02 4.067500e+02
+2 15071     1.590002e+01 1.992400e+02
+8 15071     9.353003e+01 1.548600e+02
+9 15071     -1.363700e+02 2.473700e+02
+11 15071     4.631700e+02 -3.028800e+02
+12 15071     5.934003e+01 4.861500e+02
+2 15072     5.270300e+02 1.995100e+02
+9 15072     3.105100e+02 2.670700e+02
+10 15072     6.323300e+02 4.451300e+02
+2 15073     5.270300e+02 1.995100e+02
+9 15073     3.105100e+02 2.670700e+02
+10 15073     6.323300e+02 4.451300e+02
+2 15074     -3.812700e+02 1.863800e+02
+3 15074     -5.119300e+02 -1.446600e+02
+5 15074     3.030500e+02 -2.194700e+02
+8 15074     -2.337500e+02 1.377800e+02
+13 15074     1.106400e+02 1.094900e+02
+2 15075     -1.081400e+02 1.655400e+02
+7 15075     -2.983002e+01 5.010800e+02
+8 15075     -8.609985e+00 1.260000e+02
+13 15075     3.445800e+02 1.090200e+02
+14 15075     5.040800e+02 -3.175200e+02
+2 15076     -1.220300e+02 1.598000e+02
+7 15076     -4.546002e+01 4.942700e+02
+8 15076     -2.035999e+01 1.221600e+02
+11 15076     3.146899e+02 -3.351100e+02
+13 15076     3.316899e+02 1.026000e+02
+14 15076     4.885100e+02 -3.242300e+02
+2 15077     3.165997e+01 1.377500e+02
+8 15077     6.390997e+01 7.142001e+01
+2 15078     -3.044500e+02 1.318200e+02
+3 15078     -4.352200e+02 -1.995800e+02
+6 15078     -4.825400e+02 3.704900e+02
+8 15078     -1.688900e+02 9.714999e+01
+9 15078     -4.016400e+02 1.787400e+02
+2 15079     -3.044500e+02 1.318200e+02
+5 15079     3.759399e+02 -2.710900e+02
+6 15079     -4.825400e+02 3.704900e+02
+7 15079     -2.405500e+02 4.493500e+02
+8 15079     -1.688900e+02 9.714999e+01
+2 15080     4.524600e+02 1.093000e+02
+15 15080     7.303199e+02 4.238600e+02
+2 15081     1.043900e+02 9.620001e+01
+4 15081     -2.162700e+02 -4.135000e+02
+8 15081     1.186800e+02 3.391000e+01
+2 15082     5.019600e+02 8.102002e+01
+9 15082     2.925000e+02 1.671700e+02
+10 15082     5.858800e+02 3.264000e+02
+2 15083     7.283101e+02 8.216998e+01
+9 15083     4.812400e+02 1.754300e+02
+2 15084     -8.490002e+01 3.062000e+01
+8 15084     -2.610999e+01 -9.529999e+00
+2 15085     -5.859998e+01 2.853998e+01
+8 15085     -6.250000e+00 -1.098999e+01
+2 15086     7.060699e+02 2.342999e+01
+3 15086     5.688400e+02 -2.780900e+02
+9 15086     4.645601e+02 1.261700e+02
+10 15086     7.758600e+02 1.859300e+02
+2 15087     7.060699e+02 2.342999e+01
+3 15087     5.688400e+02 -2.780900e+02
+9 15087     4.645601e+02 1.261700e+02
+12 15087     7.133199e+02 1.714000e+02
+2 15088     7.032700e+02 -1.366998e+01
+9 15088     4.635699e+02 9.497000e+01
+2 15089     2.850000e+01 -1.477002e+01
+3 15089     -5.806000e+01 -3.264100e+02
+6 15089     -1.530500e+02 -7.000000e+00
+2 15090     4.782001e+01 -1.876001e+01
+6 15090     -1.350300e+02 -1.412000e+01
+2 15091     5.582400e+02 -4.765002e+01
+3 15091     4.444700e+02 -3.466100e+02
+2 15092     7.726300e+02 -6.950000e+01
+9 15092     5.227600e+02 5.087000e+01
+2 15093     7.264200e+02 -7.533002e+01
+9 15093     4.838101e+02 4.440997e+01
+2 15094     -7.003998e+01 -1.469100e+02
+3 15094     -1.470300e+02 -4.595300e+02
+6 15094     -2.552500e+02 -1.500000e+02
+8 15094     -2.810999e+01 -1.604600e+02
+2 15095     -5.659973e+00 -1.824200e+02
+3 15095     -8.215997e+01 -4.909301e+02
+8 15095     2.141998e+01 -1.926800e+02
+2 15096     -3.764001e+01 -1.852300e+02
+4 15096     -3.270900e+02 -2.755500e+02
+6 15096     -2.230900e+02 -1.884200e+02
+8 15096     -3.179993e+00 -1.922400e+02
+2 15097     3.473199e+02 -2.410200e+02
+3 15097     2.638101e+02 -5.368199e+02
+4 15097     -4.942700e+02 -4.756600e+02
+6 15097     1.632600e+02 -2.611500e+02
+8 15097     3.055400e+02 -2.496400e+02
+12 15097     1.663800e+02 -2.214700e+02
+2 15098     5.022900e+02 -2.417200e+02
+8 15098     4.432800e+02 -2.477200e+02
+9 15098     3.153400e+02 -9.582001e+01
+2 15099     -3.211700e+02 -2.440100e+02
+7 15099     -3.714000e+02 2.945001e+01
+9 15099     -3.813900e+02 -1.419000e+02
+10 15099     -3.796200e+02 1.003400e+02
+13 15099     6.826001e+01 -2.786300e+02
+15 15099     -3.545000e+02 8.570999e+01
+2 15100     4.789800e+02 -2.631100e+02
+8 15100     4.207400e+02 -2.670400e+02
+2 15101     3.582400e+02 -2.675500e+02
+6 15101     1.747700e+02 -2.866600e+02
+8 15101     3.150800e+02 -2.730400e+02
+2 15102     -3.262000e+01 -2.685300e+02
+8 15102     3.080017e+00 -2.570200e+02
+9 15102     -1.232000e+02 -1.423400e+02
+2 15103     -7.682001e+01 -2.772900e+02
+8 15103     -3.115002e+01 -2.622500e+02
+2 15104     -4.565900e+02 -2.837300e+02
+7 15104     -4.860700e+02 -1.280029e+00
+2 15105     1.076400e+02 -2.909000e+02
+4 15105     -4.300200e+02 -3.289400e+02
+6 15105     -7.609003e+01 -2.988300e+02
+8 15105     1.112800e+02 -2.829700e+02
+12 15105     -7.088000e+01 -2.465600e+02
+13 15105     3.070900e+02 -4.439700e+02
+2 15106     2.895500e+02 -3.099100e+02
+4 15106     -5.095400e+02 -4.343300e+02
+6 15106     1.071000e+02 -3.196300e+02
+12 15106     1.127000e+02 -2.778400e+02
+13 15106     4.408600e+02 -4.903300e+02
+2 15107     3.862600e+02 -3.238700e+02
+6 15107     2.084700e+02 -3.232300e+02
+8 15107     3.395600e+02 -3.160200e+02
+9 15107     2.247300e+02 -1.692100e+02
+12 15107     2.200100e+02 -2.891400e+02
+2 15108     1.719000e+02 -3.604500e+02
+4 15108     -4.896100e+02 -3.511600e+02
+6 15108     -1.102002e+01 -3.641899e+02
+7 15108     -9.339001e+01 -2.034000e+02
+9 15108     5.247998e+01 -2.062700e+02
+12 15108     -8.580017e+00 -3.189200e+02
+13 15108     3.427600e+02 -5.037800e+02
+2 15109     -3.575200e+02 -3.746000e+02
+7 15109     -4.380900e+02 -1.044700e+02
+13 15109     1.221997e+01 -3.902600e+02
+2 15110     -3.306300e+02 -3.997300e+02
+6 15110     -5.073000e+02 -3.723700e+02
+7 15110     -4.291800e+02 -1.341900e+02
+8 15110     -2.300600e+02 -3.530800e+02
+13 15110     2.207001e+01 -4.178300e+02
+2 15111     5.907400e+02 -4.116300e+02
+8 15111     5.147500e+02 -3.901300e+02
+12 15111     4.590800e+02 -3.676800e+02
+2 15112     4.651600e+02 -4.286801e+02
+8 15112     4.052700e+02 -4.028300e+02
+2 15113     5.591300e+02 -4.950699e+02
+7 15113     2.291801e+02 -3.509600e+02
+10 15113     2.324301e+02 -4.166000e+02
+2 15114     5.591300e+02 -4.950699e+02
+7 15114     2.291801e+02 -3.509600e+02
+10 15114     2.324301e+02 -4.166000e+02
+2 15115     4.619000e+02 5.087500e+02
+6 15115     3.913800e+02 7.387800e+02
+8 15115     4.441300e+02 3.917700e+02
+2 15116     -2.977500e+02 4.893900e+02
+6 15116     -5.079500e+02 7.957300e+02
+8 15116     -1.660700e+02 3.798600e+02
+2 15117     -9.526001e+01 4.870900e+02
+3 15117     -2.326300e+02 1.478000e+02
+4 15117     1.301100e+02 -5.340200e+02
+5 15117     6.451600e+02 7.638000e+01
+6 15117     -2.518000e+02 8.401800e+02
+8 15117     2.130005e+00 3.829200e+02
+13 15117     3.780900e+02 3.641500e+02
+14 15117     5.406500e+02 -1.038000e+01
+2 15118     -1.124800e+02 4.862800e+02
+3 15118     -2.498100e+02 1.472500e+02
+8 15118     -1.273999e+01 3.823700e+02
+2 15119     -2.105600e+02 4.770500e+02
+13 15119     2.691300e+02 3.434100e+02
+14 15119     4.104800e+02 -3.210999e+01
+2 15120     -9.496002e+01 4.602800e+02
+4 15120     1.119500e+02 -5.286400e+02
+5 15120     6.417300e+02 4.831000e+01
+6 15120     -2.505600e+02 8.056500e+02
+8 15120     1.359985e+00 3.613000e+02
+13 15120     3.756700e+02 3.404600e+02
+2 15121     -9.496002e+01 4.602800e+02
+3 15121     -2.334300e+02 1.231200e+02
+4 15121     1.119500e+02 -5.286400e+02
+5 15121     6.417300e+02 4.831000e+01
+6 15121     -2.505600e+02 8.056500e+02
+8 15121     1.359985e+00 3.613000e+02
+11 15121     3.483000e+02 -9.696002e+01
+13 15121     3.756700e+02 3.404600e+02
+14 15121     5.382000e+02 -3.887000e+01
+2 15122     6.306400e+02 4.341500e+02
+3 15122     4.743800e+02 1.057600e+02
+8 15122     5.827700e+02 3.269800e+02
+9 15122     3.929500e+02 4.696300e+02
+2 15123     1.661400e+02 4.325800e+02
+3 15123     1.103003e+01 9.670001e+01
+8 15123     2.203000e+02 3.435500e+02
+2 15124     -3.477300e+02 4.067300e+02
+4 15124     9.359998e+01 -3.411000e+02
+5 15124     3.613199e+02 -1.340002e+01
+8 15124     -2.073100e+02 3.145800e+02
+11 15124     9.728998e+01 -1.562300e+02
+2 15125     -3.799100e+02 3.940000e+02
+3 15125     -5.045200e+02 6.065002e+01
+4 15125     8.785999e+01 -3.179700e+02
+5 15125     3.237700e+02 -2.806000e+01
+8 15125     -2.354600e+02 3.053900e+02
+11 15125     6.600000e+01 -1.671200e+02
+2 15126     2.739200e+02 3.569500e+02
+9 15126     8.807001e+01 3.936400e+02
+13 15126     6.558300e+02 1.897800e+02
+2 15127     4.978003e+01 3.541600e+02
+3 15127     -9.621997e+01 1.842999e+01
+5 15127     8.078101e+02 -4.859998e+01
+11 15127     5.063000e+02 -1.703700e+02
+13 15127     5.086500e+02 2.668000e+02
+14 15127     7.025500e+02 -1.299100e+02
+2 15128     -2.647500e+02 3.336800e+02
+3 15128     -3.954100e+02 8.099976e-01
+4 15128     5.108002e+01 -3.845700e+02
+5 15128     4.390000e+02 -8.034998e+01
+6 15128     -4.542900e+02 6.131800e+02
+8 15128     -1.389300e+02 2.571500e+02
+12 15128     -2.807900e+02 5.898200e+02
+13 15128     2.151200e+02 2.271000e+02
+2 15129     3.967600e+02 3.277900e+02
+3 15129     2.514000e+02 6.699829e-01
+8 15129     3.918600e+02 2.464200e+02
+9 15129     1.931100e+02 3.727000e+02
+2 15130     4.119700e+02 3.194100e+02
+3 15130     2.678400e+02 -7.150024e+00
+8 15130     4.041800e+02 2.409800e+02
+9 15130     2.074600e+02 3.643500e+02
+2 15131     -1.160300e+02 2.884600e+02
+3 15131     -2.561000e+02 -4.758002e+01
+6 15131     -2.667300e+02 5.952300e+02
+8 15131     -1.406000e+01 2.272600e+02
+9 15131     -2.513900e+02 3.213900e+02
+12 15131     -9.644000e+01 5.705500e+02
+13 15131     3.436700e+02 2.003800e+02
+14 15131     5.010200e+02 -2.050200e+02
+2 15132     -3.696500e+02 2.510800e+02
+4 15132     1.671997e+01 -3.093000e+02
+5 15132     3.221899e+02 -1.565300e+02
+7 15132     -3.093800e+02 5.517600e+02
+11 15132     7.214001e+01 -2.707300e+02
+12 15132     -3.948800e+02 4.911000e+02
+2 15133     6.997000e+02 1.898800e+02
+3 15133     5.535400e+02 -1.196500e+02
+9 15133     4.548199e+02 2.655200e+02
+2 15134     6.997000e+02 1.898800e+02
+3 15134     5.535400e+02 -1.196500e+02
+7 15134     6.150900e+02 3.307000e+02
+9 15134     4.548199e+02 2.655200e+02
+10 15134     8.131300e+02 3.650900e+02
+2 15135     7.712900e+02 1.493700e+02
+3 15135     6.241400e+02 -1.544100e+02
+7 15135     6.719500e+02 2.773900e+02
+9 15135     5.159800e+02 2.335600e+02
+12 15135     7.942200e+02 2.973600e+02
+2 15136     -2.915900e+02 1.241300e+02
+6 15136     -4.662000e+02 3.706700e+02
+8 15136     -1.585500e+02 9.238000e+01
+2 15137     6.532900e+02 1.042500e+02
+3 15137     5.128199e+02 -2.018600e+02
+10 15137     7.400100e+02 2.929500e+02
+12 15137     6.610300e+02 2.649600e+02
+2 15138     3.066400e+02 5.063000e+01
+3 15138     2.074100e+02 -2.571300e+02
+2 15139     8.008900e+02 2.757001e+01
+9 15139     5.387700e+02 1.327500e+02
+2 15140     6.753998e+01 2.169983e+00
+6 15140     -1.209400e+02 1.500000e+00
+8 15140     8.667999e+01 -4.195001e+01
+2 15141     -6.839001e+01 -5.369995e+00
+8 15141     -1.725000e+01 -4.189001e+01
+2 15142     2.964399e+02 -3.171002e+01
+3 15142     1.996500e+02 -3.363300e+02
+6 15142     1.213000e+02 -3.837000e+01
+7 15142     3.854999e+01 4.852002e+01
+8 15142     2.723300e+02 -7.553003e+01
+13 15142     4.801300e+02 -2.843500e+02
+2 15143     7.253199e+02 -4.615002e+01
+9 15143     4.820000e+02 6.910999e+01
+10 15143     7.777800e+02 1.079300e+02
+2 15144     7.338400e+02 -1.052300e+02
+7 15144     6.038500e+02 6.321002e+01
+2 15145     7.737500e+02 -1.155700e+02
+7 15145     6.357500e+02 4.476001e+01
+2 15146     -9.762000e+01 -1.278900e+02
+3 15146     -1.726100e+02 -4.376200e+02
+8 15146     -4.913000e+01 -1.456300e+02
+12 15146     -2.620800e+02 -6.456000e+01
+2 15147     2.116899e+02 -2.314300e+02
+3 15147     1.367400e+02 -5.298400e+02
+6 15147     2.554999e+01 -2.601300e+02
+8 15147     1.944500e+02 -2.399800e+02
+9 15147     8.306000e+01 -9.602002e+01
+2 15148     4.516801e+02 -2.582100e+02
+3 15148     3.619000e+02 -5.536600e+02
+6 15148     2.803100e+02 -2.577900e+02
+8 15148     3.968700e+02 -2.629200e+02
+2 15149     4.969301e+02 -2.652400e+02
+8 15149     4.382000e+02 -2.677300e+02
+9 15149     3.117300e+02 -1.148100e+02
+2 15150     3.320900e+02 -3.521600e+02
+6 15150     1.515900e+02 -3.557100e+02
+8 15150     2.943500e+02 -3.370900e+02
+12 15150     1.589900e+02 -3.187000e+02
+2 15151     1.863900e+02 -3.616000e+02
+4 15151     -4.941700e+02 -3.594500e+02
+6 15151     3.140015e+00 -3.679000e+02
+9 15151     6.553998e+01 -2.065900e+02
+12 15151     5.960022e+00 -3.203000e+02
+13 15151     3.541100e+02 -5.054900e+02
+2 15152     1.863900e+02 -3.616000e+02
+4 15152     -4.941700e+02 -3.594500e+02
+6 15152     3.140015e+00 -3.679000e+02
+8 15152     1.735700e+02 -3.398300e+02
+9 15152     6.553998e+01 -2.065900e+02
+12 15152     5.960022e+00 -3.203000e+02
+2 15153     1.845900e+02 -3.953400e+02
+6 15153     2.289978e+00 -3.986600e+02
+9 15153     6.595001e+01 -2.355600e+02
+13 15153     3.504700e+02 -5.300601e+02
+2 15154     6.248700e+02 -3.943100e+02
+8 15154     5.460601e+02 -3.755900e+02
+2 15155     6.127300e+02 -4.079700e+02
+8 15155     5.339000e+02 -3.881200e+02
+2 15156     -2.057000e+02 -4.280500e+02
+13 15156     9.397998e+01 -4.659000e+02
+2 15157     -4.366998e+01 -5.165601e+02
+6 15157     -2.201400e+02 -5.166700e+02
+15 15157     -2.876100e+02 -3.639100e+02
+2 15158     -3.011000e+02 5.431700e+02
+3 15158     -4.279700e+02 2.018500e+02
+4 15158     1.617900e+02 -3.870600e+02
+8 15158     -1.692500e+02 4.239500e+02
+13 15158     1.950200e+02 3.856300e+02
+14 15158     3.225000e+02 2.022998e+01
+2 15159     2.965100e+02 5.238300e+02
+3 15159     1.501000e+02 1.842500e+02
+6 15159     2.083800e+02 8.181300e+02
+8 15159     3.114000e+02 4.076100e+02
+2 15160     4.205200e+02 4.441500e+02
+8 15160     4.119100e+02 3.410700e+02
+9 15160     2.126400e+02 4.737400e+02
+2 15161     -9.507001e+01 3.787600e+02
+3 15161     -2.345200e+02 4.354999e+01
+4 15161     6.529999e+01 -5.168300e+02
+5 15161     6.340100e+02 -3.140002e+01
+6 15161     -2.459900e+02 7.045900e+02
+8 15161     1.799988e+00 2.964400e+02
+9 15161     -2.370000e+02 4.010700e+02
+11 15161     3.475900e+02 -1.607800e+02
+13 15161     3.704100e+02 2.745900e+02
+14 15161     5.332200e+02 -1.161200e+02
+2 15162     -9.507001e+01 3.787600e+02
+3 15162     -2.345200e+02 4.354999e+01
+4 15162     6.529999e+01 -5.168300e+02
+5 15162     6.340100e+02 -3.140002e+01
+6 15162     -2.459900e+02 7.045900e+02
+8 15162     1.799988e+00 2.964400e+02
+13 15162     3.704100e+02 2.745900e+02
+14 15162     5.332200e+02 -1.161200e+02
+2 15163     5.972998e+01 3.345600e+02
+3 15163     -9.094000e+01 -1.049988e+00
+6 15163     -5.165002e+01 6.860500e+02
+8 15163     1.313200e+02 2.644100e+02
+9 15163     -1.064300e+02 3.660200e+02
+11 15163     5.190699e+02 -1.862700e+02
+13 15163     5.169500e+02 2.515700e+02
+14 15163     7.134200e+02 -1.483900e+02
+2 15164     -7.934700e+02 3.249500e+02
+4 15164     7.454999e+01 -9.095001e+01
+13 15164     -1.993800e+02 1.863600e+02
+2 15165     -9.201001e+01 3.223200e+02
+3 15165     -2.323800e+02 -1.184998e+01
+6 15165     -2.390000e+02 6.383800e+02
+9 15165     -2.320200e+02 3.508800e+02
+2 15166     -7.446002e+01 3.060200e+02
+5 15166     6.488101e+02 -1.006200e+02
+11 15166     3.668800e+02 -2.180400e+02
+2 15167     -2.551000e+02 2.294900e+02
+7 15167     -1.901500e+02 5.402100e+02
+2 15168     9.431000e+01 1.667500e+02
+8 15168     1.159000e+02 9.579999e+01
+2 15169     -3.133800e+02 1.481500e+02
+5 15169     3.683000e+02 -2.546400e+02
+6 15169     -4.955300e+02 3.873000e+02
+7 15169     -2.473700e+02 4.645100e+02
+8 15169     -1.778700e+02 1.090000e+02
+9 15169     -4.123900e+02 1.910300e+02
+2 15170     -2.525400e+02 1.351700e+02
+5 15170     4.331600e+02 -2.646000e+02
+8 15170     -1.280100e+02 1.000900e+02
+13 15170     2.174600e+02 7.985999e+01
+14 15170     3.479700e+02 -3.470000e+02
+2 15171     1.089600e+02 4.078003e+01
+6 15171     -7.306000e+01 4.269000e+01
+8 15171     1.202800e+02 -1.320001e+01
+12 15171     -5.613000e+01 9.784003e+01
+2 15172     6.583300e+02 3.584003e+01
+10 15172     7.323800e+02 2.178900e+02
+2 15173     2.560999e+01 -1.527800e+02
+3 15173     -4.885999e+01 -4.616899e+02
+8 15173     4.453998e+01 -1.714900e+02
+12 15173     -1.605800e+02 -1.155800e+02
+2 15174     1.994600e+02 -1.754700e+02
+6 15174     7.650024e+00 -2.006600e+02
+7 15174     -8.464001e+01 -8.370001e+01
+8 15174     1.828900e+02 -1.951800e+02
+10 15174     -1.143500e+02 -8.457001e+01
+15 15174     -5.860999e+01 -1.268700e+02
+2 15175     -1.003003e+01 -2.568600e+02
+8 15175     1.890997e+01 -2.510300e+02
+2 15176     1.762700e+02 -2.728100e+02
+3 15176     1.013100e+02 -5.749600e+02
+4 15176     -4.440600e+02 -3.625300e+02
+6 15176     -9.450012e+00 -2.885900e+02
+12 15176     -1.047998e+01 -2.397200e+02
+15 15176     -7.109003e+01 -1.964500e+02
+2 15177     2.123900e+02 -2.924200e+02
+6 15177     2.639001e+01 -3.073600e+02
+8 15177     1.934400e+02 -2.876500e+02
+9 15177     8.365002e+01 -1.480400e+02
+2 15178     9.209998e+01 -3.050200e+02
+6 15178     -9.044000e+01 -3.112100e+02
+7 15178     -1.510100e+02 -1.489200e+02
+8 15178     9.869000e+01 -2.926700e+02
+9 15178     -1.621002e+01 -1.652700e+02
+10 15178     -1.821400e+02 -1.438500e+02
+12 15178     -8.391998e+01 -2.579300e+02
+2 15179     4.345200e+02 -4.104700e+02
+8 15179     3.794100e+02 -3.884300e+02
+2 15180     -1.664200e+02 5.853400e+02
+3 15180     -2.990200e+02 2.390100e+02
+4 15180     1.833800e+02 -4.910699e+02
+5 15180     5.718500e+02 1.613900e+02
+13 15180     3.174399e+02 4.342400e+02
+14 15180     4.673300e+02 7.173999e+01
+2 15181     -2.683000e+02 5.809200e+02
+3 15181     -3.938300e+02 2.373900e+02
+4 15181     1.791700e+02 -4.157500e+02
+13 15181     2.244800e+02 4.169200e+02
+14 15181     3.570100e+02 5.467999e+01
+2 15182     -2.970500e+02 5.674200e+02
+13 15182     1.979100e+02 4.051100e+02
+14 15182     3.249700e+02 4.216998e+01
+2 15183     -1.374600e+02 4.618400e+02
+3 15183     -2.737100e+02 1.235000e+02
+5 15183     5.933000e+02 4.478998e+01
+8 15183     -3.327002e+01 3.611500e+02
+13 15183     3.371400e+02 3.333700e+02
+14 15183     4.916899e+02 -4.759003e+01
+2 15184     -1.374600e+02 4.618400e+02
+3 15184     -2.737100e+02 1.235000e+02
+8 15184     -3.327002e+01 3.611500e+02
+2 15185     7.447998e+01 2.848900e+02
+6 15185     -3.109003e+01 6.235400e+02
+9 15185     -8.898999e+01 3.207900e+02
+13 15185     5.258800e+02 2.086100e+02
+14 15185     7.269399e+02 -1.994000e+02
+2 15186     3.678400e+02 2.639700e+02
+3 15186     2.240100e+02 -6.123999e+01
+7 15186     3.592700e+02 5.016900e+02
+13 15186     7.305400e+02 9.184000e+01
+2 15187     -1.948800e+02 1.918400e+02
+3 15187     -3.306100e+02 -1.385000e+02
+4 15187     -2.931000e+01 -4.169300e+02
+5 15187     5.023900e+02 -2.116600e+02
+8 15187     -8.051001e+01 1.451000e+02
+2 15188     2.025699e+02 1.200900e+02
+3 15188     1.049500e+02 -1.951700e+02
+4 15188     -2.270100e+02 -4.798900e+02
+6 15188     2.939001e+01 1.364300e+02
+8 15188     2.000500e+02 5.250000e+01
+2 15189     5.190002e+00 -2.275100e+02
+3 15189     -7.059003e+01 -5.392800e+02
+2 15190     5.432200e+02 -3.788800e+02
+8 15190     4.764900e+02 -3.611600e+02
+2 15191     5.432200e+02 -3.788800e+02
+8 15191     4.764900e+02 -3.611600e+02
+2 15192     -1.385700e+02 5.691900e+02
+3 15192     -2.724000e+02 2.242300e+02
+4 15192     1.774500e+02 -5.115500e+02
+5 15192     6.040900e+02 1.524900e+02
+11 15192     3.059800e+02 -1.416998e+01
+13 15192     3.428800e+02 4.248700e+02
+14 15192     4.973600e+02 6.033002e+01
+2 15193     -2.338700e+02 5.638900e+02
+3 15193     -3.623200e+02 2.194100e+02
+11 15193     2.092000e+02 -2.882001e+01
+13 15193     2.544800e+02 4.084800e+02
+14 15193     3.921300e+02 4.417999e+01
+2 15194     -2.338700e+02 5.638900e+02
+3 15194     -3.623200e+02 2.194100e+02
+11 15194     2.092000e+02 -2.882001e+01
+14 15194     3.921300e+02 4.417999e+01
+2 15195     -4.536400e+02 5.281100e+02
+8 15195     -2.957100e+02 4.081700e+02
+2 15196     -1.266300e+02 5.287500e+02
+3 15196     -2.638100e+02 1.868900e+02
+4 15196     1.535500e+02 -5.169500e+02
+5 15196     6.153300e+02 1.145000e+02
+8 15196     -2.433002e+01 4.171000e+02
+11 15196     3.219399e+02 -4.340997e+01
+13 15196     3.530100e+02 3.936200e+02
+14 15196     5.097100e+02 2.406000e+01
+2 15197     4.129600e+02 5.097500e+02
+8 15197     4.061600e+02 3.933100e+02
+2 15198     -2.324400e+02 4.501500e+02
+5 15198     4.866000e+02 2.734003e+01
+8 15198     -1.120500e+02 3.506800e+02
+11 15198     2.096800e+02 -1.192000e+02
+2 15199     -2.314300e+02 4.041300e+02
+3 15199     -3.627400e+02 6.847998e+01
+6 15199     -4.177100e+02 7.054400e+02
+8 15199     -1.113100e+02 3.146500e+02
+13 15199     2.476600e+02 2.836100e+02
+14 15199     3.844600e+02 -9.973999e+01
+2 15200     -2.314300e+02 4.041300e+02
+6 15200     -4.177100e+02 7.054400e+02
+8 15200     -1.113100e+02 3.146500e+02
+13 15200     2.476600e+02 2.836100e+02
+14 15200     3.844600e+02 -9.973999e+01
+2 15201     -3.909003e+01 -1.549400e+02
+8 15201     -4.280029e+00 -1.692000e+02
+2 15202     4.039301e+02 -2.615100e+02
+6 15202     2.240500e+02 -2.689100e+02
+2 15203     3.636400e+02 -3.016700e+02
+8 15203     3.198400e+02 -2.974600e+02
+2 15204     5.211700e+02 -3.563100e+02
+8 15204     4.556801e+02 -3.481400e+02
+2 15205     -2.398300e+02 5.218400e+02
+4 15205     1.506700e+02 -4.337500e+02
+11 15205     2.110300e+02 -5.934003e+01
+13 15205     2.567200e+02 3.766100e+02
+14 15205     3.944100e+02 8.150024e+00
+2 15206     3.191400e+02 5.138500e+02
+3 15206     1.746400e+02 1.759900e+02
+6 15206     2.382800e+02 8.041100e+02
+8 15206     3.302100e+02 3.995600e+02
+13 15206     7.124900e+02 3.164600e+02
+2 15207     3.423300e+02 4.301300e+02
+3 15207     1.895800e+02 9.682001e+01
+6 15207     2.611300e+02 6.973800e+02
+8 15207     3.476300e+02 3.314000e+02
+13 15207     7.192800e+02 2.396400e+02
+2 15208     -1.344800e+02 3.730500e+02
+3 15208     -2.707300e+02 3.589001e+01
+4 15208     6.427002e+01 -4.895500e+02
+5 15208     5.913000e+02 -3.931000e+01
+6 15208     -2.937500e+02 6.893700e+02
+8 15208     -2.962000e+01 2.912900e+02
+11 15208     3.140800e+02 -1.669600e+02
+13 15208     3.384500e+02 2.671000e+02
+14 15208     4.935200e+02 -1.244800e+02
+2 15209     -3.580200e+02 3.377200e+02
+3 15209     -4.855300e+02 7.400024e+00
+8 15209     -2.156400e+02 2.589900e+02
+2 15210     -2.534998e+01 2.455500e+02
+5 15210     7.036600e+02 -1.594300e+02
+8 15210     6.071997e+01 1.922700e+02
+9 15210     -1.725300e+02 2.870400e+02
+13 15210     4.258199e+02 1.774300e+02
+2 15211     3.084003e+01 2.387200e+02
+6 15211     -8.609000e+01 5.631000e+02
+8 15211     1.101300e+02 1.860500e+02
+9 15211     -1.245900e+02 2.818300e+02
+13 15211     4.793800e+02 1.716700e+02
+14 15211     6.751400e+02 -2.443300e+02
+2 15212     -2.254900e+02 1.807500e+02
+6 15212     -3.937300e+02 4.505000e+02
+8 15212     -1.062600e+02 1.354400e+02
+2 15213     -2.232300e+02 1.417700e+02
+7 15213     -1.517100e+02 4.667100e+02
+2 15214     -3.916000e+02 1.247400e+02
+5 15214     2.886400e+02 -2.725200e+02
+7 15214     -3.242700e+02 4.402300e+02
+8 15214     -2.403900e+02 9.044000e+01
+2 15215     3.354999e+01 -2.379999e+01
+6 15215     -1.484600e+02 -1.596002e+01
+8 15215     5.521002e+01 -6.152002e+01
+12 15215     -1.294000e+02 4.059998e+01
+2 15216     -4.000000e+01 -4.409998e+01
+8 15216     6.400146e-01 -7.763000e+01
+2 15217     -5.092999e+01 -1.177600e+02
+8 15217     -1.292999e+01 -1.395100e+02
+2 15218     5.035300e+02 -3.241600e+02
+8 15218     4.416600e+02 -3.194100e+02
+2 15219     2.813000e+01 3.944100e+02
+3 15219     -1.184200e+02 5.801001e+01
+6 15219     -8.847000e+01 7.551400e+02
+8 15219     1.074500e+02 3.131700e+02
+2 15220     -3.660200e+02 2.222300e+02
+5 15220     3.203900e+02 -1.855200e+02
+8 15220     -2.224100e+02 1.700700e+02
+2 15221     -2.804400e+02 1.440300e+02
+7 15221     -2.136300e+02 4.642800e+02
+8 15221     -1.523900e+02 1.064800e+02
+2 15222     -2.804400e+02 1.440300e+02
+6 15222     -4.642700e+02 3.940300e+02
+7 15222     -2.136300e+02 4.642800e+02
+8 15222     -1.523900e+02 1.064800e+02
+2 15223     -3.127700e+02 2.359700e+02
+5 15223     3.814200e+02 -1.721000e+02
+8 15223     -1.777400e+02 1.829900e+02
+2 15224     -1.785600e+02 3.682500e+02
+3 15224     -3.133500e+02 3.637000e+01
+5 15224     5.445800e+02 -3.560999e+01
+8 15224     -6.757001e+01 2.871600e+02
+13 15224     2.987100e+02 2.667900e+02
+14 15224     4.446899e+02 -1.262200e+02
+3 15225     -5.585000e+02 4.336900e+02
+11 15225     7.148999e+01 1.439900e+02
+3 15226     -3.373200e+02 4.320000e+02
+5 15226     5.694200e+02 3.897300e+02
+14 15226     4.591899e+02 2.871300e+02
+3 15227     -3.481100e+02 4.285700e+02
+14 15227     4.481600e+02 2.830100e+02
+3 15228     -3.354300e+02 4.256800e+02
+5 15228     5.706801e+02 3.835600e+02
+14 15228     4.611600e+02 2.810100e+02
+3 15229     -3.447800e+02 4.209800e+02
+5 15229     5.606100e+02 3.779700e+02
+14 15229     4.511899e+02 2.760300e+02
+3 15230     -3.472400e+02 4.093000e+02
+14 15230     4.482700e+02 2.642700e+02
+3 15231     -2.076000e+02 3.648600e+02
+14 15231     6.794000e+02 3.184900e+02
+3 15232     -3.225800e+02 3.410000e+02
+4 15232     2.556200e+02 -5.069301e+02
+3 15233     -5.447800e+02 2.834000e+02
+13 15233     1.010000e+02 4.472400e+02
+14 15233     2.121899e+02 9.310001e+01
+3 15234     -1.639300e+02 2.480600e+02
+14 15234     6.286700e+02 9.451999e+01
+3 15235     -2.198900e+02 2.337800e+02
+13 15235     3.964800e+02 4.377300e+02
+3 15236     -3.110600e+02 2.324400e+02
+5 15236     5.561000e+02 1.526400e+02
+11 15236     2.640800e+02 -1.453998e+01
+3 15237     -3.974100e+02 2.074600e+02
+11 15237     1.728000e+02 -4.484003e+01
+14 15237     3.528199e+02 2.540997e+01
+3 15238     1.108100e+02 2.070700e+02
+8 15238     2.786400e+02 4.281600e+02
+3 15239     -4.261400e+02 2.063900e+02
+5 15239     4.204100e+02 1.142600e+02
+3 15240     1.950000e+02 2.050300e+02
+6 15240     2.639000e+02 8.365900e+02
+3 15241     -3.866200e+02 1.887300e+02
+6 15241     -4.624300e+02 8.516800e+02
+14 15241     3.640100e+02 8.219971e+00
+3 15242     3.121700e+02 1.894700e+02
+8 15242     4.421700e+02 4.054300e+02
+3 15243     -3.184200e+02 1.861300e+02
+6 15243     -3.706900e+02 8.650900e+02
+8 15243     -7.496002e+01 4.111300e+02
+3 15244     2.317800e+02 1.860600e+02
+6 15244     3.090600e+02 8.062400e+02
+3 15245     3.589500e+02 1.857900e+02
+8 15245     4.842100e+02 4.016300e+02
+9 15245     2.903600e+02 5.430700e+02
+3 15246     1.090400e+02 1.790000e+02
+6 15246     1.587600e+02 8.177000e+02
+3 15247     2.159003e+01 1.708500e+02
+11 15247     6.569301e+02 -2.540002e+01
+3 15248     -1.707800e+02 1.649500e+02
+13 15248     4.437600e+02 3.960000e+02
+3 15249     2.975800e+02 1.550900e+02
+8 15249     4.289000e+02 3.751400e+02
+3 15250     -4.475600e+02 1.540100e+02
+5 15250     3.927000e+02 6.139001e+01
+11 15250     1.223800e+02 -9.228998e+01
+13 15250     1.737500e+02 3.419500e+02
+14 15250     2.958400e+02 -3.009998e+01
+3 15251     -1.350100e+02 1.538900e+02
+5 15251     7.705900e+02 8.837000e+01
+6 15251     -1.177100e+02 8.717100e+02
+8 15251     8.885999e+01 3.889000e+02
+11 15251     4.624500e+02 -5.928003e+01
+14 15251     6.615601e+02 3.450012e+00
+3 15252     4.194900e+02 1.515100e+02
+6 15252     5.177700e+02 6.918800e+02
+9 15252     3.439900e+02 5.116600e+02
+3 15253     -7.467200e+02 1.511200e+02
+14 15253     -1.530029e+00 -6.038000e+01
+3 15254     -1.733800e+02 1.479400e+02
+13 15254     4.382000e+02 3.689000e+02
+14 15254     6.130400e+02 -6.909973e+00
+3 15255     1.181600e+02 1.481000e+02
+6 15255     1.684000e+02 7.757400e+02
+8 15255     2.840700e+02 3.767300e+02
+9 15255     7.364001e+01 5.048800e+02
+3 15256     -1.827300e+02 1.469300e+02
+14 15256     6.017800e+02 -8.010010e+00
+3 15257     -7.334800e+02 1.407100e+02
+14 15257     9.989990e+00 -6.838000e+01
+3 15258     1.511200e+02 1.367300e+02
+6 15258     2.074700e+02 7.555000e+02
+3 15259     3.609600e+02 1.336200e+02
+6 15259     4.437500e+02 6.792900e+02
+9 15259     2.908700e+02 4.943700e+02
+3 15260     -1.552100e+02 1.332200e+02
+5 15260     7.417600e+02 6.533002e+01
+6 15260     -1.452400e+02 8.381000e+02
+11 15260     4.383800e+02 -7.947998e+01
+14 15260     6.348101e+02 -1.971997e+01
+3 15261     -2.318400e+02 1.306200e+02
+13 15261     3.781801e+02 3.478700e+02
+3 15262     -5.474500e+02 1.276000e+02
+14 15262     1.904301e+02 -6.391998e+01
+3 15263     2.167500e+02 1.253100e+02
+6 15263     2.861400e+02 7.293800e+02
+8 15263     3.666200e+02 3.542800e+02
+3 15264     2.167500e+02 1.253100e+02
+6 15264     2.861400e+02 7.293800e+02
+8 15264     3.666200e+02 3.542800e+02
+3 15265     -3.951800e+02 1.139000e+02
+14 15265     3.515100e+02 -6.265997e+01
+3 15266     3.213199e+02 1.136400e+02
+6 15266     3.940400e+02 6.604000e+02
+8 15266     4.479100e+02 3.369400e+02
+9 15266     2.552100e+02 4.749100e+02
+3 15267     3.515699e+02 1.124500e+02
+6 15267     4.300000e+02 6.549700e+02
+3 15268     -2.077300e+02 1.120000e+02
+5 15268     6.731000e+02 4.003998e+01
+8 15268     2.460999e+01 3.534100e+02
+14 15268     5.691801e+02 -4.639001e+01
+3 15269     1.435000e+02 1.017300e+02
+11 15269     6.142300e+02 -1.988300e+02
+3 15270     3.951500e+02 9.477002e+01
+6 15270     4.808900e+02 6.238800e+02
+3 15271     -7.007900e+02 9.340002e+01
+14 15271     3.872998e+01 -1.064900e+02
+3 15272     -2.489600e+02 8.984003e+01
+5 15272     6.196700e+02 1.448999e+01
+6 15272     -2.686200e+02 7.600600e+02
+3 15273     -2.035100e+02 8.871997e+01
+5 15273     6.759399e+02 1.558002e+01
+14 15273     5.729100e+02 -6.921002e+01
+3 15274     -2.307400e+02 8.496997e+01
+13 15274     3.754900e+02 3.088600e+02
+14 15274     5.388800e+02 -7.513000e+01
+3 15275     1.883600e+02 7.889001e+01
+6 15275     2.498500e+02 6.746100e+02
+3 15276     -6.483200e+02 7.200000e+01
+5 15276     1.786500e+02 -2.813000e+01
+12 15276     -5.931200e+02 6.217200e+02
+3 15277     -6.483200e+02 7.200000e+01
+5 15277     1.786500e+02 -2.813000e+01
+14 15277     8.848999e+01 -1.211400e+02
+3 15278     -8.762000e+01 6.232001e+01
+5 15278     8.236700e+02 -4.640015e+00
+6 15278     -5.106000e+01 7.629100e+02
+8 15278     1.313400e+02 3.143000e+02
+9 15278     -1.051300e+02 4.219500e+02
+11 15278     5.175200e+02 -1.341200e+02
+3 15279     3.937500e+02 5.735999e+01
+6 15279     4.752200e+02 5.780400e+02
+7 15279     4.962100e+02 5.572500e+02
+3 15280     -5.461200e+02 5.303998e+01
+14 15280     1.892300e+02 -1.304500e+02
+3 15281     4.762800e+02 4.757001e+01
+8 15281     5.812800e+02 2.726900e+02
+9 15281     3.930000e+02 4.154700e+02
+3 15282     -2.726700e+02 4.541998e+01
+5 15282     5.864000e+02 -3.140997e+01
+3 15283     2.500000e+02 4.403998e+01
+6 15283     3.204400e+02 6.210600e+02
+9 15283     1.924600e+02 4.106800e+02
+12 15283     4.189800e+02 6.123900e+02
+3 15284     4.812900e+02 3.866998e+01
+8 15284     5.847000e+02 2.646200e+02
+12 15284     6.567300e+02 5.509800e+02
+3 15285     -3.614300e+02 3.735999e+01
+8 15285     -1.098800e+02 2.871800e+02
+9 15285     -3.516100e+02 3.902000e+02
+3 15286     -5.157700e+02 3.576001e+01
+12 15286     -4.295800e+02 6.070000e+02
+3 15287     2.177600e+02 3.528003e+01
+8 15287     3.649500e+02 2.759400e+02
+3 15288     -9.997559e-02 3.248999e+01
+6 15288     6.803998e+01 7.476900e+02
+3 15289     -6.787000e+01 1.965002e+01
+11 15289     5.403300e+02 -1.684000e+02
+3 15290     -1.646800e+02 1.884998e+01
+13 15290     4.389200e+02 2.614200e+02
+3 15291     4.206100e+02 1.559003e+01
+6 15291     5.021600e+02 5.222900e+02
+7 15291     5.147800e+02 5.058400e+02
+8 15291     5.297400e+02 2.467400e+02
+9 15291     3.426899e+02 3.859600e+02
+10 15291     7.087400e+02 5.928000e+02
+3 15292     -3.149800e+02 8.049988e+00
+14 15292     4.362100e+02 -1.564300e+02
+3 15293     3.895601e+02 8.030029e+00
+10 15293     6.714100e+02 5.960600e+02
+3 15294     3.895601e+02 8.030029e+00
+8 15294     5.019600e+02 2.415800e+02
+3 15295     2.575000e+02 2.909973e+00
+8 15295     3.965000e+02 2.473500e+02
+9 15295     1.985000e+02 3.742900e+02
+3 15296     1.376300e+02 7.299805e-01
+6 15296     1.853900e+02 5.869000e+02
+3 15297     -1.585600e+02 -7.320007e+00
+14 15297     6.219900e+02 -1.603700e+02
+3 15298     4.354800e+02 -1.621002e+01
+6 15298     5.162300e+02 4.815500e+02
+3 15299     3.368400e+02 -3.242999e+01
+6 15299     3.997900e+02 4.802100e+02
+9 15299     2.680800e+02 3.423000e+02
+10 15299     6.032000e+02 5.663400e+02
+11 15299     7.313800e+02 -4.161400e+02
+12 15299     4.843300e+02 4.879900e+02
+3 15300     1.776000e+02 -4.060999e+01
+12 15300     3.360100e+02 5.225700e+02
+3 15301     1.902000e+02 -4.264001e+01
+6 15301     2.442300e+02 5.260900e+02
+12 15301     3.491600e+02 5.186700e+02
+3 15302     4.688900e+02 -6.022998e+01
+6 15302     5.502700e+02 4.232800e+02
+10 15302     7.380500e+02 4.763200e+02
+3 15303     2.023101e+02 -7.045001e+01
+6 15303     2.568500e+02 4.905600e+02
+9 15303     1.499800e+02 3.073700e+02
+3 15304     1.414100e+02 -7.251001e+01
+7 15304     2.851801e+02 5.094100e+02
+8 15304     2.985000e+02 1.879600e+02
+9 15304     9.634998e+01 3.050100e+02
+12 15304     2.969000e+02 4.912000e+02
+3 15305     1.414100e+02 -7.251001e+01
+8 15305     2.985000e+02 1.879600e+02
+9 15305     9.634998e+01 3.050100e+02
+3 15306     3.698199e+02 -7.678998e+01
+10 15306     6.253700e+02 4.993200e+02
+15 15306     8.280300e+02 5.719300e+02
+3 15307     -1.521600e+02 -8.056000e+01
+5 15307     7.232600e+02 -1.524300e+02
+14 15307     6.255800e+02 -2.318900e+02
+3 15308     3.252600e+02 -8.865002e+01
+6 15308     3.807300e+02 4.170300e+02
+12 15308     4.667300e+02 4.249800e+02
+15 15308     7.690300e+02 5.754700e+02
+3 15309     -2.464500e+02 -8.990002e+01
+13 15309     3.505000e+02 1.680100e+02
+14 15309     5.105200e+02 -2.452800e+02
+3 15310     2.469500e+02 -9.359003e+01
+8 15310     3.844200e+02 1.649200e+02
+3 15311     -4.934800e+02 -9.667999e+01
+6 15311     -5.649000e+02 4.759400e+02
+12 15311     -3.863500e+02 4.708600e+02
+3 15312     1.564600e+02 -9.920001e+01
+6 15312     2.028600e+02 4.651700e+02
+10 15312     4.600900e+02 5.930700e+02
+12 15312     3.117900e+02 4.589700e+02
+3 15313     3.726500e+02 -1.001300e+02
+10 15313     6.220900e+02 4.708200e+02
+15 15313     8.248199e+02 5.371100e+02
+3 15314     3.681600e+02 -1.003200e+02
+6 15314     4.290700e+02 3.960500e+02
+10 15314     6.175900e+02 4.727000e+02
+15 15314     8.193101e+02 5.394600e+02
+3 15315     2.056300e+02 -1.026500e+02
+10 15315     5.079200e+02 5.705800e+02
+3 15316     3.574600e+02 -1.058600e+02
+15 15316     8.034500e+02 5.369700e+02
+3 15317     3.574600e+02 -1.058600e+02
+6 15317     4.158300e+02 3.917600e+02
+7 15317     4.367000e+02 4.001000e+02
+10 15317     6.044100e+02 4.706400e+02
+12 15317     5.000699e+02 4.005900e+02
+15 15317     8.034500e+02 5.369700e+02
+3 15318     4.710800e+02 -1.068800e+02
+6 15318     5.471899e+02 3.687700e+02
+3 15319     4.443101e+02 -1.194500e+02
+10 15319     6.928800e+02 4.173800e+02
+3 15320     -1.936600e+02 -1.211300e+02
+13 15320     3.985500e+02 1.447200e+02
+14 15320     5.709399e+02 -2.749100e+02
+3 15321     5.337700e+02 -1.233900e+02
+10 15321     7.898300e+02 3.717700e+02
+12 15321     6.962100e+02 3.498700e+02
+3 15322     -2.221100e+02 -1.299800e+02
+12 15322     -5.521002e+01 4.772400e+02
+3 15323     2.292900e+02 -1.331400e+02
+6 15323     2.842000e+02 4.136700e+02
+9 15323     1.742200e+02 2.521700e+02
+3 15324     5.197500e+02 -1.446100e+02
+10 15324     7.668900e+02 3.536100e+02
+3 15325     -4.141000e+02 -1.458600e+02
+7 15325     -2.139400e+02 5.025100e+02
+3 15326     5.436000e+02 -1.484800e+02
+10 15326     7.916700e+02 3.382100e+02
+12 15326     7.038000e+02 3.192400e+02
+3 15327     5.852300e+02 -1.489400e+02
+9 15327     4.831000e+02 2.388600e+02
+12 15327     7.515699e+02 3.120000e+02
+3 15328     5.477400e+02 -1.498500e+02
+7 15328     6.029200e+02 3.048000e+02
+12 15328     7.085500e+02 3.170800e+02
+3 15329     3.641400e+02 -1.528600e+02
+6 15329     4.189500e+02 3.370700e+02
+10 15329     5.994800e+02 4.136800e+02
+3 15330     3.615200e+02 -1.548000e+02
+6 15330     4.162800e+02 3.346100e+02
+10 15330     5.968300e+02 4.125900e+02
+15 15330     7.956000e+02 4.666000e+02
+3 15331     5.166000e+02 -1.556600e+02
+10 15331     7.596801e+02 3.427200e+02
+3 15332     3.965400e+02 -1.578600e+02
+7 15332     4.638900e+02 3.398600e+02
+3 15333     4.860601e+02 -1.656000e+02
+7 15333     5.430500e+02 3.068000e+02
+3 15334     3.650900e+02 -1.745200e+02
+6 15334     4.189800e+02 3.128000e+02
+8 15334     4.725800e+02 8.622000e+01
+10 15334     5.957800e+02 3.893500e+02
+15 15334     7.951000e+02 4.397400e+02
+3 15335     5.205500e+02 -1.768400e+02
+7 15335     5.722200e+02 2.870500e+02
+9 15335     4.257800e+02 2.140700e+02
+10 15335     7.564000e+02 3.176000e+02
+12 15335     6.735500e+02 2.910400e+02
+3 15336     4.647500e+02 -1.799000e+02
+6 15336     5.314500e+02 2.884800e+02
+10 15336     6.966200e+02 3.392000e+02
+3 15337     4.670100e+02 -1.814000e+02
+10 15337     6.981000e+02 3.364700e+02
+3 15338     4.240000e+02 -1.843300e+02
+7 15338     4.845800e+02 3.072800e+02
+10 15338     6.525000e+02 3.528100e+02
+15 15338     8.644200e+02 3.970400e+02
+3 15339     -4.055600e+02 -1.859800e+02
+12 15339     -2.739100e+02 3.938700e+02
+3 15340     -4.055600e+02 -1.859800e+02
+12 15340     -2.739100e+02 3.938700e+02
+3 15341     7.009000e+02 -1.940300e+02
+7 15341     7.364500e+02 2.171300e+02
+3 15342     5.605900e+02 -1.976100e+02
+9 15342     4.600500e+02 1.961600e+02
+12 15342     7.151600e+02 2.609600e+02
+3 15343     -3.149800e+02 -2.002000e+02
+14 15343     4.245400e+02 -3.514900e+02
+3 15344     -3.911400e+02 -2.011600e+02
+10 15344     -1.029400e+02 6.058000e+02
+12 15344     -2.554600e+02 3.803500e+02
+3 15345     5.130300e+02 -2.022300e+02
+7 15345     5.610400e+02 2.653700e+02
+10 15345     7.409200e+02 2.921700e+02
+3 15346     4.154700e+02 -2.029500e+02
+15 15346     8.484399e+02 3.780000e+02
+3 15347     4.154700e+02 -2.029500e+02
+10 15347     6.395800e+02 3.368600e+02
+15 15347     8.484399e+02 3.780000e+02
+3 15348     4.726000e+02 -2.054800e+02
+6 15348     5.383101e+02 2.598600e+02
+12 15348     6.180100e+02 2.700700e+02
+3 15349     7.245800e+02 -2.091600e+02
+7 15349     7.559000e+02 1.952900e+02
+3 15350     -3.397600e+02 -2.136700e+02
+5 15350     4.837800e+02 -2.814100e+02
+7 15350     -1.318700e+02 4.504100e+02
+10 15350     -3.684998e+01 5.968700e+02
+14 15350     3.953500e+02 -3.643900e+02
+3 15351     4.589200e+02 -2.167300e+02
+6 15351     5.205900e+02 2.489200e+02
+8 15351     5.495900e+02 4.410001e+01
+10 15351     6.797100e+02 3.015300e+02
+12 15351     6.012300e+02 2.590200e+02
+3 15352     2.971997e+01 -2.186000e+02
+6 15352     -5.670001e+01 1.082400e+02
+15 15352     -2.513000e+01 2.479300e+02
+3 15353     9.199829e-01 -2.220400e+02
+8 15353     1.094400e+02 3.260001e+01
+9 15353     -3.635999e+01 1.654700e+02
+3 15354     4.890200e+02 -2.227100e+02
+6 15354     5.537300e+02 2.369400e+02
+7 15354     5.359800e+02 2.535300e+02
+9 15354     3.974100e+02 1.743200e+02
+10 15354     7.094301e+02 2.814800e+02
+12 15354     6.331000e+02 2.467900e+02
+3 15355     4.558400e+02 -2.251900e+02
+6 15355     5.161100e+02 2.406900e+02
+12 15355     5.964900e+02 2.506500e+02
+3 15356     5.225200e+02 -2.280800e+02
+7 15356     5.656500e+02 2.375000e+02
+9 15356     4.272200e+02 1.686800e+02
+10 15356     7.428199e+02 2.601700e+02
+3 15357     7.288700e+02 -2.283600e+02
+7 15357     7.542400e+02 1.762400e+02
+3 15358     5.437000e+02 -2.288800e+02
+7 15358     5.833199e+02 2.319900e+02
+10 15358     7.645400e+02 2.496200e+02
+3 15359     5.265500e+02 -2.311300e+02
+10 15359     7.459700e+02 2.552300e+02
+12 15359     6.739000e+02 2.309400e+02
+3 15360     9.647998e+01 -2.319500e+02
+6 15360     1.271997e+01 8.267999e+01
+10 15360     -3.525000e+01 1.943100e+02
+12 15360     2.992999e+01 1.369200e+02
+15 15360     3.245001e+01 2.006000e+02
+3 15361     5.097300e+02 -2.347400e+02
+6 15361     5.757700e+02 2.197400e+02
+10 15361     7.277900e+02 2.588800e+02
+3 15362     5.075699e+02 -2.368300e+02
+6 15362     5.740800e+02 2.175600e+02
+12 15362     6.532000e+02 2.272700e+02
+3 15363     1.997600e+02 -2.398200e+02
+10 15363     7.547998e+01 1.619500e+02
+3 15364     4.787600e+02 -2.421700e+02
+6 15364     5.403500e+02 2.176300e+02
+10 15364     6.937300e+02 2.653300e+02
+3 15365     2.690500e+02 -2.440500e+02
+10 15365     1.769900e+02 1.558300e+02
+3 15366     7.521400e+02 -2.447500e+02
+7 15366     7.716600e+02 1.540800e+02
+3 15367     5.498199e+02 -2.465400e+02
+9 15367     4.494800e+02 1.527700e+02
+10 15367     7.658800e+02 2.284300e+02
+12 15367     6.970400e+02 2.083600e+02
+3 15368     -6.130200e+02 -2.480700e+02
+9 15368     -6.538800e+02 9.629999e+01
+3 15369     4.733400e+02 -2.539800e+02
+10 15369     6.844399e+02 2.556500e+02
+3 15370     -7.139001e+01 -2.581100e+02
+5 15370     5.384399e+02 -5.824800e+02
+3 15371     -2.654999e+01 -2.578500e+02
+5 15371     5.753500e+02 -6.026500e+02
+6 15371     -1.195300e+02 6.787000e+01
+7 15371     -1.390600e+02 1.653800e+02
+8 15371     8.408002e+01 3.359985e+00
+15 15371     -9.359003e+01 2.164100e+02
+3 15372     4.931100e+02 -2.587500e+02
+7 15372     5.336300e+02 2.199600e+02
+3 15373     5.555200e+02 -2.590800e+02
+9 15373     4.528400e+02 1.432100e+02
+12 15373     7.014500e+02 1.945700e+02
+3 15374     4.755601e+02 -2.641500e+02
+6 15374     5.340200e+02 1.949300e+02
+12 15374     6.138500e+02 2.047300e+02
+3 15375     2.256899e+02 -2.706500e+02
+7 15375     7.908002e+01 1.105000e+02
+10 15375     9.273999e+01 1.215100e+02
+15 15375     1.833101e+02 1.168700e+02
+3 15376     4.647200e+02 -2.716800e+02
+6 15376     5.206300e+02 1.888400e+02
+3 15377     -1.667900e+02 -2.724700e+02
+8 15377     -1.215997e+01 5.920013e+00
+9 15377     -1.780600e+02 1.197300e+02
+3 15378     7.497900e+02 -2.720700e+02
+7 15378     7.478199e+02 1.200100e+02
+3 15379     4.599700e+02 -2.738600e+02
+6 15379     5.157400e+02 1.871100e+02
+9 15379     3.715000e+02 1.297500e+02
+10 15379     6.661500e+02 2.412500e+02
+3 15380     -5.934998e+01 -2.769300e+02
+5 15380     5.423900e+02 -6.091801e+02
+6 15380     -1.535100e+02 5.207001e+01
+3 15381     2.896100e+02 -2.780900e+02
+8 15381     3.578200e+02 -2.582999e+01
+3 15382     4.935900e+02 -2.811000e+02
+6 15382     5.522100e+02 1.733600e+02
+3 15383     5.176500e+02 -2.828900e+02
+6 15383     5.787600e+02 1.672700e+02
+8 15383     5.946100e+02 -1.523001e+01
+12 15383     6.571700e+02 1.768800e+02
+3 15384     5.247700e+02 -2.848200e+02
+12 15384     6.644500e+02 1.737700e+02
+3 15385     4.712800e+02 -2.860900e+02
+6 15385     5.267100e+02 1.725100e+02
+12 15385     6.066600e+02 1.824500e+02
+3 15386     5.068700e+02 -2.965800e+02
+6 15386     5.645000e+02 1.546700e+02
+3 15387     -1.152900e+02 -2.981200e+02
+6 15387     -2.080800e+02 4.576001e+01
+3 15388     5.374301e+02 -3.006500e+02
+10 15388     7.371801e+02 1.775400e+02
+12 15388     6.775699e+02 1.533900e+02
+3 15389     5.374301e+02 -3.006500e+02
+10 15389     7.371801e+02 1.775400e+02
+3 15390     -6.009998e+01 -3.035100e+02
+6 15390     -1.559800e+02 2.121997e+01
+12 15390     -1.329300e+02 7.757001e+01
+3 15391     3.583000e+02 -3.048700e+02
+8 15391     4.252900e+02 -4.575000e+01
+3 15392     5.059600e+02 -3.066700e+02
+6 15392     5.626300e+02 1.443200e+02
+8 15392     5.834700e+02 -3.462000e+01
+12 15392     6.407700e+02 1.541100e+02
+3 15393     5.109600e+02 -3.071300e+02
+6 15393     5.682500e+02 1.425200e+02
+7 15393     5.402700e+02 1.722200e+02
+8 15393     5.880300e+02 -3.548999e+01
+9 15393     4.138500e+02 1.013300e+02
+10 15393     7.077000e+02 1.838400e+02
+12 15393     6.463199e+02 1.517800e+02
+3 15394     1.053003e+01 -3.122000e+02
+6 15394     -8.528000e+01 -2.340027e+00
+3 15395     -1.610700e+02 -3.162000e+02
+6 15395     -2.514200e+02 3.815002e+01
+13 15395     2.365000e+02 -1.773700e+02
+3 15396     4.912500e+02 -3.203600e+02
+6 15396     5.449500e+02 1.320400e+02
+3 15397     1.981899e+02 -3.284300e+02
+15 15397     1.202400e+02 4.672998e+01
+3 15398     9.704999e+01 -3.291700e+02
+10 15398     -6.645001e+01 8.663000e+01
+3 15399     4.217000e+02 -3.294100e+02
+8 15399     4.824200e+02 -6.778003e+01
+3 15400     -8.671002e+01 -3.328700e+02
+6 15400     -1.829600e+02 -3.119995e+00
+9 15400     -1.103800e+02 6.851001e+01
+3 15401     2.856899e+02 -3.334100e+02
+6 15401     2.198700e+02 -2.428998e+01
+8 15401     3.477200e+02 -7.390002e+01
+12 15401     2.429000e+02 1.817999e+01
+3 15402     -4.145001e+01 -3.379200e+02
+6 15402     -1.384900e+02 -2.096002e+01
+8 15402     6.757001e+01 -6.482001e+01
+3 15403     5.273700e+02 -3.430100e+02
+6 15403     5.823400e+02 1.019000e+02
+3 15404     5.794500e+02 -3.452900e+02
+10 15404     7.660500e+02 1.129300e+02
+3 15405     4.145000e+02 -3.465100e+02
+8 15405     4.712800e+02 -8.445001e+01
+3 15406     4.355400e+02 -3.470000e+02
+8 15406     4.897800e+02 -8.616998e+01
+3 15407     1.611100e+02 -3.604200e+02
+8 15407     2.324200e+02 -9.485999e+01
+3 15408     7.585999e+01 -3.613400e+02
+15 15408     -3.135999e+01 4.454999e+01
+3 15409     6.059301e+02 -3.678500e+02
+10 15409     7.871200e+02 7.828003e+01
+12 15409     7.418199e+02 6.953003e+01
+3 15410     4.750601e+02 -3.688900e+02
+7 15410     4.997800e+02 1.302300e+02
+15 15410     8.728800e+02 1.421300e+02
+3 15411     1.344000e+02 -3.713900e+02
+6 15411     4.213000e+01 -7.665002e+01
+3 15412     -5.869700e+02 -3.889500e+02
+9 15412     -6.132200e+02 -2.528003e+01
+3 15413     2.747998e+01 -3.920300e+02
+6 15413     -7.513000e+01 -9.747998e+01
+3 15414     3.935400e+02 -3.942000e+02
+8 15414     4.397000e+02 -1.301000e+02
+9 15414     3.052800e+02 2.269000e+01
+12 15414     3.652400e+02 -5.233002e+01
+13 15414     6.531400e+02 -3.559900e+02
+3 15415     8.087000e+01 -4.036100e+02
+7 15415     -9.259998e+01 -2.679993e+00
+10 15415     -1.136900e+02 8.669983e+00
+15 15415     -5.706000e+01 -1.773999e+01
+3 15416     5.376899e+02 -4.076000e+02
+6 15416     5.862600e+02 3.426001e+01
+3 15417     5.376899e+02 -4.076000e+02
+12 15417     6.635900e+02 4.345001e+01
+3 15418     3.812000e+01 -4.102200e+02
+6 15418     -6.603003e+01 -1.196500e+02
+15 15418     -9.728998e+01 -8.359985e+00
+3 15419     -5.210022e+00 -4.123300e+02
+6 15419     -1.103700e+02 -1.177800e+02
+3 15420     2.932200e+02 -4.148600e+02
+6 15420     2.128900e+02 -1.245400e+02
+8 15420     3.443200e+02 -1.466500e+02
+10 15420     1.183200e+02 -4.778003e+01
+12 15420     2.283300e+02 -8.362000e+01
+3 15421     -6.127700e+02 -4.157200e+02
+9 15421     -6.342600e+02 -4.995001e+01
+3 15422     7.461400e+02 -4.159399e+02
+7 15422     7.224000e+02 1.044000e+01
+3 15423     -2.443400e+02 -4.190100e+02
+12 15423     -2.966800e+02 -9.859985e+00
+3 15424     1.829500e+02 -4.197400e+02
+15 15424     5.703003e+01 -6.684003e+01
+3 15425     1.011900e+02 -4.252500e+02
+6 15425     -1.820007e+00 -1.411500e+02
+8 15425     1.742800e+02 -1.486500e+02
+12 15425     1.599976e+00 -8.947998e+01
+15 15425     -3.916998e+01 -4.845001e+01
+3 15426     2.656801e+02 -4.278101e+02
+6 15426     1.792600e+02 -1.412700e+02
+7 15426     7.834998e+01 -4.056000e+01
+12 15426     1.912500e+02 -9.890002e+01
+13 15426     5.137500e+02 -3.670400e+02
+3 15427     -1.288300e+02 -4.285000e+02
+8 15427     -1.097998e+01 -1.376400e+02
+3 15428     1.919900e+02 -4.335900e+02
+6 15428     9.591998e+01 -1.504301e+02
+3 15429     1.978101e+02 -4.352000e+02
+8 15429     2.568500e+02 -1.601700e+02
+10 15429     -2.039978e+00 -5.078998e+01
+3 15430     -4.911200e+02 -4.356300e+02
+5 15430     2.385000e+02 -5.334301e+02
+8 15430     -2.384000e+02 -9.938000e+01
+9 15430     -4.419000e+02 -2.759998e+01
+13 15430     7.134003e+01 -1.396100e+02
+3 15431     1.648000e+02 -4.381200e+02
+6 15431     6.525000e+01 -1.548500e+02
+3 15432     3.462800e+02 -4.390100e+02
+4 15432     -4.739800e+02 -5.761200e+02
+3 15433     -9.315002e+01 -4.428199e+02
+6 15433     -2.033300e+02 -1.452200e+02
+12 15433     -1.941700e+02 -8.446002e+01
+3 15434     6.792600e+02 -4.462100e+02
+12 15434     8.079600e+02 -2.428998e+01
+3 15435     -1.585600e+02 -4.487000e+02
+6 15435     -2.663000e+02 -1.375900e+02
+3 15436     -5.389001e+01 -4.578700e+02
+8 15436     4.166998e+01 -1.689600e+02
+3 15437     2.638101e+02 -4.586000e+02
+4 15437     -4.502500e+02 -4.946100e+02
+6 15437     1.668600e+02 -1.853900e+02
+12 15437     1.718600e+02 -1.431300e+02
+13 15437     4.958000e+02 -4.020900e+02
+3 15438     -4.884998e+01 -4.595100e+02
+6 15438     -1.621100e+02 -1.737000e+02
+10 15438     -2.453300e+02 -1.275000e+01
+12 15438     -1.605200e+02 -1.150300e+02
+15 15438     -2.101500e+02 -4.462000e+01
+3 15439     -4.623999e+01 -4.609600e+02
+6 15439     -1.605900e+02 -1.772100e+02
+12 15439     -1.594200e+02 -1.181200e+02
+15 15439     -2.099900e+02 -4.750000e+01
+3 15440     -4.623999e+01 -4.609600e+02
+8 15440     4.764001e+01 -1.718200e+02
+3 15441     3.752000e+02 -4.609301e+02
+6 15441     2.968200e+02 -1.774301e+02
+3 15442     1.166900e+02 -4.666700e+02
+8 15442     1.818600e+02 -1.853300e+02
+3 15443     1.119800e+02 -4.776200e+02
+10 15443     -1.217100e+02 -8.378003e+01
+12 15443     -5.109985e+00 -1.576500e+02
+15 15443     -6.671002e+01 -1.262200e+02
+3 15444     1.216800e+02 -4.830400e+02
+6 15444     9.000000e+00 -2.158700e+02
+12 15444     3.010010e+00 -1.655800e+02
+3 15445     1.759000e+02 -5.016000e+02
+6 15445     6.802002e+01 -2.310500e+02
+8 15445     2.299600e+02 -2.182200e+02
+9 15445     1.163000e+02 -7.204999e+01
+12 15445     6.616998e+01 -1.843400e+02
+15 15445     7.119995e+00 -1.664100e+02
+3 15446     -1.727200e+02 -5.020900e+02
+8 15446     -4.445001e+01 -1.917400e+02
+3 15447     1.426000e+02 -5.055900e+02
+6 15447     3.226001e+01 -2.339800e+02
+9 15447     8.715997e+01 -7.589001e+01
+3 15448     -4.996400e+02 -5.088800e+02
+15 15448     -3.709900e+02 2.013400e+02
+3 15449     5.929800e+02 -5.152500e+02
+7 15449     5.207500e+02 -6.139001e+01
+12 15449     6.670500e+02 -1.113900e+02
+3 15450     3.092100e+02 -5.196200e+02
+6 15450     2.156800e+02 -2.384900e+02
+12 15450     2.249399e+02 -2.011700e+02
+3 15451     3.759700e+02 -5.224500e+02
+10 15451     1.900699e+02 -1.630700e+02
+3 15452     -5.139300e+02 -5.259800e+02
+15 15452     -3.960600e+02 1.787000e+02
+3 15453     -4.845400e+02 -5.284200e+02
+6 15453     -5.530400e+02 -9.653998e+01
+10 15453     -3.938200e+02 1.739700e+02
+3 15454     3.682500e+02 -5.282300e+02
+6 15454     2.872800e+02 -2.360000e+02
+15 15454     2.922400e+02 -2.235100e+02
+3 15455     -1.240400e+02 -5.292200e+02
+9 15455     -1.372600e+02 -9.800000e+01
+3 15456     4.259998e+01 -5.360699e+02
+12 15456     -6.773999e+01 -1.970000e+02
+3 15457     1.903600e+02 -5.465699e+02
+8 15457     2.415300e+02 -2.541300e+02
+3 15458     1.749900e+02 -5.478900e+02
+6 15458     6.709998e+01 -2.684399e+02
+3 15459     3.439800e+02 -5.581600e+02
+8 15459     3.790600e+02 -2.668500e+02
+3 15460     2.066500e+02 -5.665699e+02
+8 15460     2.557200e+02 -2.698500e+02
+3 15461     5.282001e+01 -5.805800e+02
+6 15461     -5.657001e+01 -2.875900e+02
+12 15461     -5.363000e+01 -2.364000e+02
+3 15462     -1.919983e+00 -5.845800e+02
+6 15462     -1.097200e+02 -2.854900e+02
+3 15463     2.349976e+00 -5.881100e+02
+6 15463     -1.058500e+02 -2.886700e+02
+3 15464     2.309399e+02 -5.916300e+02
+6 15464     1.283700e+02 -3.057000e+02
+12 15464     1.333800e+02 -2.649100e+02
+3 15465     -1.047998e+01 -6.065601e+02
+6 15465     -1.180100e+02 -3.023500e+02
+8 15465     7.653998e+01 -2.863900e+02
+3 15466     2.111500e+02 -6.077900e+02
+10 15466     -1.463000e+01 -1.998700e+02
+3 15467     -6.839100e+02 4.754900e+02
+5 15467     2.859100e+02 4.969000e+02
+14 15467     1.913199e+02 3.863600e+02
+3 15468     -3.363800e+02 4.372500e+02
+5 15468     5.710200e+02 3.950800e+02
+11 15468     2.868600e+02 1.801300e+02
+14 15468     4.606400e+02 2.922000e+02
+3 15469     -3.452300e+02 4.277700e+02
+5 15469     5.608800e+02 3.856300e+02
+14 15469     4.512300e+02 2.821700e+02
+3 15470     -5.628900e+02 4.040500e+02
+13 15470     1.016900e+02 5.670700e+02
+14 15470     2.161200e+02 2.265800e+02
+3 15471     -3.375100e+02 3.990100e+02
+5 15471     5.677800e+02 3.560300e+02
+11 15471     2.880100e+02 1.493400e+02
+14 15471     4.588500e+02 2.551100e+02
+3 15472     -5.318300e+02 3.843700e+02
+5 15472     3.465900e+02 3.116800e+02
+11 15472     9.502002e+01 1.085700e+02
+13 15472     1.284500e+02 5.525200e+02
+14 15472     2.466400e+02 2.096700e+02
+3 15473     -5.591100e+02 3.730600e+02
+11 15473     6.962000e+01 1.013200e+02
+3 15474     -3.953300e+02 3.710500e+02
+5 15474     4.827800e+02 3.014500e+02
+3 15475     -3.399100e+02 3.661000e+02
+5 15475     5.607900e+02 3.192300e+02
+11 15475     2.830699e+02 1.205300e+02
+13 15475     3.071200e+02 5.662700e+02
+14 15475     4.533199e+02 2.201000e+02
+3 15476     -5.516600e+02 3.622500e+02
+13 15476     1.103500e+02 5.316800e+02
+14 15476     2.252400e+02 1.872200e+02
+3 15477     -2.373200e+02 3.597900e+02
+14 15477     6.459399e+02 3.119200e+02
+3 15478     -4.906400e+02 3.496000e+02
+5 15478     3.803000e+02 2.710900e+02
+11 15478     1.180700e+02 7.739999e+01
+13 15478     1.576801e+02 5.187300e+02
+14 15478     2.799100e+02 1.710700e+02
+3 15479     -4.394400e+02 3.425100e+02
+5 15479     4.346300e+02 2.708600e+02
+3 15480     -4.837400e+02 3.367800e+02
+4 15480     2.449500e+02 -3.765200e+02
+11 15480     1.171300e+02 6.559000e+01
+3 15481     -4.582600e+02 3.145900e+02
+5 15481     4.035601e+02 2.287700e+02
+13 15481     1.774500e+02 4.832700e+02
+14 15481     3.023800e+02 1.309800e+02
+3 15482     -4.494200e+02 3.152100e+02
+5 15482     4.135900e+02 2.307700e+02
+13 15482     1.860400e+02 4.850500e+02
+14 15482     3.122000e+02 1.327100e+02
+3 15483     -2.980600e+02 3.140900e+02
+5 15483     5.912900e+02 2.522400e+02
+3 15484     -4.706500e+02 3.124200e+02
+5 15484     3.911100e+02 2.293500e+02
+3 15485     -4.367100e+02 2.972900e+02
+5 15485     4.209399e+02 2.081200e+02
+13 15485     1.920300e+02 4.665500e+02
+14 15485     3.195000e+02 1.120600e+02
+3 15486     -3.559700e+02 2.704000e+02
+5 15486     5.033500e+02 1.835100e+02
+13 15486     2.605900e+02 4.478800e+02
+14 15486     3.996300e+02 8.864001e+01
+3 15487     -2.952500e+02 2.666500e+02
+13 15487     3.207600e+02 4.542700e+02
+14 15487     4.705699e+02 9.425000e+01
+3 15488     -2.588000e+02 2.540100e+02
+13 15488     3.571400e+02 4.499800e+02
+3 15489     -3.490500e+02 2.456000e+02
+13 15489     2.682200e+02 4.291000e+02
+14 15489     4.084900e+02 6.709003e+01
+3 15490     -4.047700e+02 2.241600e+02
+14 15490     3.439399e+02 3.809003e+01
+3 15491     -1.232600e+02 2.110900e+02
+11 15491     4.768900e+02 -7.750000e+00
+13 15491     4.956000e+02 4.314600e+02
+14 15491     6.797600e+02 6.400000e+01
+3 15492     -1.689100e+02 2.093100e+02
+13 15492     4.475800e+02 4.235400e+02
+14 15492     6.219800e+02 5.582001e+01
+3 15493     1.346000e+02 2.083600e+02
+11 15493     6.062600e+02 -9.690997e+01
+3 15494     -6.140700e+02 2.015400e+02
+4 15494     1.610200e+02 -2.624900e+02
+5 15494     2.190601e+02 9.172998e+01
+11 15494     -3.579999e+01 -7.171997e+01
+3 15495     2.900300e+02 1.995600e+02
+8 15495     4.231200e+02 4.149000e+02
+3 15496     -6.503400e+02 1.967900e+02
+5 15496     1.825000e+02 8.425000e+01
+8 15496     -3.622100e+02 4.058300e+02
+3 15497     2.097700e+02 1.969500e+02
+8 15497     3.618000e+02 4.174700e+02
+11 15497     6.707000e+02 -1.224700e+02
+3 15498     2.064700e+02 1.944100e+02
+6 15498     2.783600e+02 8.215400e+02
+8 15498     3.592900e+02 4.153800e+02
+9 15498     1.527300e+02 5.498700e+02
+11 15498     6.691600e+02 -1.244700e+02
+3 15499     3.173000e+02 1.899800e+02
+8 15499     4.472400e+02 4.055100e+02
+9 15499     2.528199e+02 5.464400e+02
+3 15500     -2.566100e+02 1.889200e+02
+5 15500     6.187700e+02 1.141600e+02
+13 15500     3.564900e+02 3.939800e+02
+14 15500     5.140300e+02 2.410999e+01
+3 15501     -6.774700e+02 1.881300e+02
+5 15501     1.553800e+02 7.460999e+01
+8 15501     -3.842400e+02 3.975500e+02
+3 15502     -2.678700e+02 1.876600e+02
+8 15502     -2.947998e+01 4.153000e+02
+3 15503     -1.224100e+02 1.832600e+02
+8 15503     1.008100e+02 4.169500e+02
+11 15503     4.779399e+02 -3.253003e+01
+14 15503     6.797500e+02 3.756000e+01
+3 15504     -8.345001e+01 1.822500e+02
+8 15504     1.346100e+02 4.139200e+02
+11 15504     5.239500e+02 -2.977002e+01
+3 15505     -2.804600e+02 1.811700e+02
+6 15505     -3.181300e+02 8.698900e+02
+14 15505     4.857300e+02 1.381000e+01
+3 15506     -1.880700e+02 1.789600e+02
+13 15506     4.260900e+02 3.946600e+02
+14 15506     5.975200e+02 2.320001e+01
+3 15507     -5.086300e+02 1.774600e+02
+13 15507     1.189800e+02 3.528900e+02
+3 15508     -1.748800e+02 1.572600e+02
+13 15508     4.377300e+02 3.774500e+02
+3 15509     -1.570200e+02 1.527400e+02
+13 15509     4.561801e+02 3.755100e+02
+14 15509     6.342800e+02 1.099854e-01
+3 15510     -2.098800e+02 1.519200e+02
+13 15510     4.015500e+02 3.681500e+02
+14 15510     5.688400e+02 -6.840027e+00
+3 15511     1.126500e+02 1.519200e+02
+6 15511     1.613000e+02 7.807600e+02
+8 15511     2.797200e+02 3.805000e+02
+9 15511     6.842999e+01 5.083900e+02
+11 15511     5.904100e+02 -1.435400e+02
+14 15511     8.825400e+02 -8.839001e+01
+3 15512     -2.941000e+02 1.510900e+02
+4 15512     1.305100e+02 -4.817100e+02
+5 15512     5.700400e+02 7.304999e+01
+6 15512     -3.344000e+02 8.271200e+02
+14 15512     4.679600e+02 -1.703998e+01
+3 15513     3.622200e+02 1.464100e+02
+6 15513     4.470900e+02 6.954900e+02
+3 15514     -3.271500e+02 1.438800e+02
+14 15514     4.300500e+02 -2.706000e+01
+3 15515     -3.271500e+02 1.438800e+02
+13 15515     2.860800e+02 3.484100e+02
+14 15515     4.300500e+02 -2.706000e+01
+3 15516     -1.526100e+02 1.354600e+02
+5 15516     7.448600e+02 6.857001e+01
+6 15516     -1.428600e+02 8.426100e+02
+3 15517     -9.841998e+01 1.341100e+02
+5 15517     8.179200e+02 7.328003e+01
+6 15517     -6.702002e+01 8.541600e+02
+8 15517     1.218500e+02 3.737100e+02
+13 15517     5.159100e+02 3.659300e+02
+14 15517     7.069900e+02 -1.245001e+01
+3 15518     -1.541400e+02 1.265600e+02
+11 15518     4.404500e+02 -8.513000e+01
+14 15518     6.359399e+02 -2.640002e+01
+3 15519     -5.176000e+02 1.205500e+02
+11 15519     5.441998e+01 -1.241000e+02
+14 15519     2.207400e+02 -6.771002e+01
+3 15520     -4.804900e+02 1.170800e+02
+6 15520     -5.770800e+02 7.343400e+02
+8 15520     -2.149700e+02 3.483800e+02
+11 15520     8.865002e+01 -1.238400e+02
+3 15521     -2.721700e+02 1.038300e+02
+11 15521     3.050699e+02 -1.161200e+02
+3 15522     -2.856700e+02 9.491998e+01
+6 15522     -3.178800e+02 7.568600e+02
+9 15522     -2.875800e+02 4.667300e+02
+3 15523     -4.843200e+02 8.748999e+01
+14 15523     2.545601e+02 -9.482001e+01
+3 15524     2.339800e+02 8.767999e+01
+8 15524     3.800400e+02 3.207400e+02
+3 15525     -6.469100e+02 8.467999e+01
+5 15525     1.803400e+02 -1.614001e+01
+14 15525     9.006000e+01 -1.097800e+02
+3 15526     -4.849100e+02 8.209003e+01
+11 15526     8.609003e+01 -1.502800e+02
+14 15526     2.536700e+02 -9.959998e+01
+3 15527     -6.882100e+02 7.871997e+01
+8 15527     -3.882000e+02 3.078100e+02
+11 15527     -9.978998e+01 -1.670100e+02
+14 15527     5.059003e+01 -1.181400e+02
+3 15528     -5.175500e+02 7.640002e+01
+5 15528     3.122900e+02 -1.629999e+01
+11 15528     5.409998e+01 -1.570900e+02
+14 15528     2.189000e+02 -1.072300e+02
+3 15529     2.905300e+02 6.804999e+01
+6 15529     3.532200e+02 6.104000e+02
+9 15529     2.272300e+02 4.331800e+02
+3 15530     -5.541400e+02 6.151001e+01
+14 15530     1.799399e+02 -1.241300e+02
+3 15531     -5.130900e+02 5.654999e+01
+13 15531     1.135800e+02 2.590900e+02
+14 15531     2.229000e+02 -1.248600e+02
+3 15532     1.029100e+02 3.279999e+01
+8 15532     2.694100e+02 2.775700e+02
+9 15532     6.145001e+01 3.984000e+02
+12 15532     2.600000e+02 6.148100e+02
+13 15532     6.330900e+02 2.006500e+02
+14 15532     8.620500e+02 -2.144600e+02
+3 15533     -1.181100e+02 2.537000e+01
+5 15533     7.796899e+02 -4.353998e+01
+6 15533     -9.089001e+01 7.103700e+02
+13 15533     4.860300e+02 2.700400e+02
+3 15534     2.455500e+02 1.710999e+01
+6 15534     3.133800e+02 5.887400e+02
+8 15534     3.872800e+02 2.599100e+02
+3 15535     -2.014900e+02 4.400024e-01
+13 15535     3.995699e+02 2.425700e+02
+3 15536     4.812000e+02 -3.499756e-01
+12 15536     6.510800e+02 5.036300e+02
+3 15537     4.812000e+02 -3.499756e-01
+12 15537     6.510800e+02 5.036300e+02
+3 15538     -2.015000e+02 -5.750000e+00
+5 15538     6.697900e+02 -7.871997e+01
+9 15538     -2.052100e+02 3.575200e+02
+11 15538     3.842900e+02 -1.995700e+02
+12 15538     -3.529999e+01 6.139400e+02
+3 15539     -3.798000e+02 -1.764001e+01
+13 15539     2.297800e+02 2.135800e+02
+3 15540     2.077800e+02 -5.412000e+01
+8 15540     3.534100e+02 2.001900e+02
+3 15541     2.077800e+02 -5.412000e+01
+8 15541     3.534100e+02 2.001900e+02
+3 15542     2.077800e+02 -5.412000e+01
+8 15542     3.534100e+02 2.001900e+02
+3 15543     4.892400e+02 -6.282001e+01
+6 15543     5.731801e+02 4.175800e+02
+7 15543     5.651400e+02 4.069600e+02
+8 15543     5.851400e+02 1.758500e+02
+3 15544     -1.380300e+02 -6.933002e+01
+11 15544     4.540800e+02 -2.496300e+02
+3 15545     -3.596997e+01 -8.564001e+01
+8 15545     1.746800e+02 1.940800e+02
+9 15545     -5.528998e+01 2.926100e+02
+13 15545     5.570100e+02 1.802000e+02
+14 15545     7.670300e+02 -2.360000e+02
+3 15546     -4.216998e+01 -9.121997e+01
+7 15546     2.042700e+02 5.845500e+02
+8 15546     1.713700e+02 1.883400e+02
+13 15546     5.516100e+02 1.756000e+02
+3 15547     -4.216998e+01 -9.121997e+01
+7 15547     2.042700e+02 5.845500e+02
+8 15547     1.713700e+02 1.883400e+02
+13 15547     5.516100e+02 1.756000e+02
+3 15548     -5.699200e+02 -9.490002e+01
+5 15548     2.463400e+02 -1.737100e+02
+3 15549     5.332700e+02 -1.105500e+02
+7 15549     5.960200e+02 3.453400e+02
+9 15549     4.395400e+02 2.725900e+02
+3 15550     5.682500e+02 -1.366800e+02
+9 15550     4.691200e+02 2.498600e+02
+10 15550     8.227400e+02 3.387900e+02
+12 15550     7.338101e+02 3.287800e+02
+3 15551     3.794301e+02 -1.385600e+02
+6 15551     4.379900e+02 3.500200e+02
+12 15551     5.217500e+02 3.593100e+02
+3 15552     1.998101e+02 -1.708800e+02
+7 15552     1.011000e+02 2.320000e+02
+13 15552     5.346000e+02 -1.312800e+02
+3 15553     1.951500e+02 -1.788000e+02
+8 15553     2.814800e+02 6.548001e+01
+3 15554     9.039978e+00 -1.848000e+02
+6 15554     -7.306000e+01 1.592400e+02
+3 15555     5.150024e+00 -1.881300e+02
+5 15555     6.320300e+02 -5.322600e+02
+7 15555     -9.239001e+01 2.353600e+02
+13 15555     3.645900e+02 -1.182900e+02
+3 15556     -4.222200e+02 -1.892400e+02
+6 15556     -4.656300e+02 3.906500e+02
+8 15556     -1.572700e+02 1.059400e+02
+9 15556     -3.912900e+02 1.877400e+02
+3 15557     1.466800e+02 -1.890500e+02
+8 15557     2.367700e+02 5.563000e+01
+3 15558     -4.260700e+02 -1.903000e+02
+8 15558     -1.608600e+02 1.041200e+02
+9 15558     -3.949100e+02 1.866000e+02
+3 15559     9.303003e+01 -1.923400e+02
+8 15559     1.900600e+02 5.497000e+01
+9 15559     4.463000e+01 1.943000e+02
+3 15560     1.938700e+02 -2.037900e+02
+4 15560     -2.611000e+02 -5.436400e+02
+9 15560     1.334400e+02 1.854700e+02
+13 15560     5.106200e+02 -1.684000e+02
+15 15560     1.816300e+02 2.227700e+02
+3 15561     4.317300e+02 -2.127500e+02
+7 15561     4.872300e+02 2.788900e+02
+10 15561     6.534301e+02 3.180700e+02
+12 15561     5.723199e+02 2.683800e+02
+3 15562     4.627900e+02 -2.159800e+02
+7 15562     5.138199e+02 2.672000e+02
+8 15562     5.640200e+02 4.026001e+01
+12 15562     6.052800e+02 2.589600e+02
+3 15563     7.257000e+02 -2.248100e+02
+7 15563     7.520900e+02 1.805300e+02
+3 15564     5.384100e+02 -2.315700e+02
+7 15564     5.789301e+02 2.307200e+02
+9 15564     4.397600e+02 1.665200e+02
+12 15564     6.865300e+02 2.274600e+02
+3 15565     2.638900e+02 -2.318500e+02
+6 15565     2.109000e+02 9.620001e+01
+7 15565     1.433000e+02 1.567700e+02
+8 15565     3.388600e+02 1.573001e+01
+10 15565     1.755600e+02 1.716700e+02
+12 15565     2.397700e+02 1.412700e+02
+13 15565     5.727200e+02 -1.982900e+02
+15 15565     2.819200e+02 1.768700e+02
+3 15566     5.599100e+02 -2.371500e+02
+9 15566     4.579700e+02 1.609700e+02
+12 15566     7.094100e+02 2.168500e+02
+3 15567     3.617200e+02 -2.517600e+02
+6 15567     4.088000e+02 2.286000e+02
+15 15567     7.716000e+02 3.415100e+02
+3 15568     8.984003e+01 -2.714300e+02
+10 15568     -5.692999e+01 1.501000e+02
+3 15569     5.274200e+02 -2.719700e+02
+7 15569     5.616400e+02 1.974600e+02
+3 15570     5.298500e+02 -2.784000e+02
+7 15570     5.622100e+02 1.919400e+02
+9 15570     4.312100e+02 1.264400e+02
+3 15571     7.613400e+02 -2.825200e+02
+7 15571     7.706899e+02 1.180700e+02
+3 15572     -3.634998e+01 -2.869900e+02
+12 15572     -1.103600e+02 9.140997e+01
+3 15573     5.508500e+02 -2.886100e+02
+7 15573     5.790200e+02 1.764600e+02
+3 15574     8.253003e+01 -2.917700e+02
+4 15574     -2.827600e+02 -4.267900e+02
+6 15574     -8.590027e+00 1.248999e+01
+8 15574     1.700400e+02 -3.317999e+01
+12 15574     4.590027e+00 6.670001e+01
+3 15575     9.760010e+00 -2.932200e+02
+6 15575     -8.444000e+01 1.910999e+01
+12 15575     -6.840997e+01 7.484003e+01
+3 15576     1.586600e+02 -2.950800e+02
+8 15576     2.352100e+02 -3.894000e+01
+10 15576     3.840027e+00 1.054600e+02
+12 15576     8.787000e+01 5.606000e+01
+3 15577     6.733500e+02 -2.953700e+02
+7 15577     6.867000e+02 1.337000e+02
+9 15577     5.529700e+02 1.116200e+02
+3 15578     6.733500e+02 -2.953700e+02
+7 15578     6.867000e+02 1.337000e+02
+9 15578     5.529700e+02 1.116200e+02
+3 15579     1.801500e+02 -2.962700e+02
+15 15579     1.056800e+02 9.039001e+01
+3 15580     3.333002e+01 -3.044700e+02
+15 15580     -5.896997e+01 1.292700e+02
+3 15581     -1.462100e+02 -3.051800e+02
+5 15581     4.796300e+02 -5.865400e+02
+6 15581     -2.338000e+02 5.607001e+01
+8 15581     -4.690002e+00 -2.619000e+01
+12 15581     -1.895500e+02 1.095700e+02
+13 15581     2.524100e+02 -1.671300e+02
+3 15582     3.063000e+02 -3.070600e+02
+13 15582     5.945699e+02 -2.669100e+02
+3 15583     4.703700e+02 -3.103900e+02
+6 15583     5.228300e+02 1.470500e+02
+12 15583     6.028101e+02 1.567600e+02
+3 15584     7.206000e+02 -3.134800e+02
+7 15584     7.249100e+02 1.031800e+02
+9 15584     5.922300e+02 9.607001e+01
+3 15585     -8.778003e+01 -3.245900e+02
+6 15585     -1.834700e+02 5.789978e+00
+9 15585     -1.112500e+02 7.491998e+01
+3 15586     -7.128998e+01 -3.245900e+02
+7 15586     -1.789800e+02 1.154300e+02
+13 15586     2.824301e+02 -2.148000e+02
+3 15587     -8.334998e+01 -3.256900e+02
+6 15587     -1.793500e+02 3.159973e+00
+9 15587     -1.075800e+02 7.423999e+01
+3 15588     5.184700e+02 -3.295000e+02
+6 15588     5.736000e+02 1.190900e+02
+7 15588     5.429500e+02 1.511300e+02
+10 15588     7.094100e+02 1.585000e+02
+12 15588     6.515900e+02 1.281600e+02
+3 15589     4.879200e+02 -3.337600e+02
+7 15589     5.163700e+02 1.560800e+02
+3 15590     1.095200e+02 -3.398400e+02
+7 15590     -4.865002e+01 5.679999e+01
+15 15590     7.760010e+00 5.772998e+01
+3 15591     -5.686900e+02 -3.411200e+02
+9 15591     -6.013300e+02 1.722998e+01
+3 15592     2.118700e+02 -3.518600e+02
+7 15592     4.745001e+01 3.365997e+01
+3 15593     4.200300e+02 -3.616100e+02
+8 15593     4.720200e+02 -9.962000e+01
+3 15594     3.051801e+02 -3.650200e+02
+4 15594     -4.055500e+02 -5.824000e+02
+3 15595     1.911200e+02 -3.753000e+02
+8 15595     2.585000e+02 -1.088700e+02
+3 15596     -5.810200e+02 -3.779100e+02
+9 15596     -6.085400e+02 -1.545001e+01
+3 15597     -5.888800e+02 -3.799300e+02
+9 15597     -6.160800e+02 -1.750000e+01
+3 15598     -5.931400e+02 -3.821400e+02
+9 15598     -6.197400e+02 -1.990997e+01
+3 15599     -6.182300e+02 -3.893800e+02
+9 15599     -6.430200e+02 -2.783002e+01
+3 15600     1.747900e+02 -3.925100e+02
+12 15600     9.128998e+01 -5.642999e+01
+3 15601     3.276300e+02 -4.054800e+02
+4 15601     -4.417100e+02 -5.844000e+02
+7 15601     1.530000e+02 -2.697998e+01
+10 15601     1.671300e+02 -4.271997e+01
+13 15601     5.800601e+02 -3.603900e+02
+15 15601     2.734500e+02 -7.676001e+01
+3 15602     7.989001e+01 -4.066600e+02
+10 15602     -1.139700e+02 5.789978e+00
+15 15602     -5.762000e+01 -2.117999e+01
+3 15603     -1.831700e+02 -4.148101e+02
+4 15603     -2.679500e+02 -2.641300e+02
+6 15603     -2.890000e+02 -9.765997e+01
+7 15603     -2.830400e+02 4.700000e+01
+8 15603     -5.245001e+01 -1.222400e+02
+12 15603     -2.668000e+02 -3.522998e+01
+3 15604     -4.942800e+02 -4.185699e+02
+5 15604     2.444301e+02 -5.118600e+02
+8 15604     -2.372000e+02 -8.422998e+01
+3 15605     3.777600e+02 -4.203101e+02
+8 15605     4.191600e+02 -1.553000e+02
+3 15606     -1.120800e+02 -4.210900e+02
+8 15606     4.390015e+00 -1.315700e+02
+3 15607     1.748300e+02 -4.302800e+02
+10 15607     -2.538000e+01 -4.109003e+01
+15 15607     4.590002e+01 -7.529999e+01
+3 15608     5.323999e+01 -4.375400e+02
+6 15608     -5.084998e+01 -1.479000e+02
+3 15609     -4.889001e+01 -4.451899e+02
+8 15609     4.898999e+01 -1.566900e+02
+9 15609     -7.641998e+01 -2.831000e+01
+15 15609     -1.895600e+02 -1.671997e+01
+3 15610     -6.384998e+01 -4.456899e+02
+8 15610     3.659003e+01 -1.564600e+02
+3 15611     2.985900e+02 -4.511300e+02
+8 15611     3.418300e+02 -1.805800e+02
+3 15612     4.046002e+01 -4.564200e+02
+8 15612     1.209600e+02 -1.718100e+02
+3 15613     -1.182300e+02 -4.603600e+02
+6 15613     -2.272300e+02 -1.580900e+02
+3 15614     2.316500e+02 -4.637000e+02
+4 15614     -4.402700e+02 -4.676801e+02
+6 15614     1.315200e+02 -1.916500e+02
+7 15614     2.440997e+01 -8.364001e+01
+8 15614     2.812400e+02 -1.887100e+02
+12 15614     1.336800e+02 -1.477000e+02
+13 15614     4.667800e+02 -4.003900e+02
+15 15614     8.584003e+01 -1.409300e+02
+3 15615     3.495900e+02 -4.687100e+02
+6 15615     2.654700e+02 -1.890400e+02
+8 15615     3.876900e+02 -1.963000e+02
+9 15615     2.661500e+02 -4.134003e+01
+3 15616     2.212200e+02 -4.688600e+02
+4 15616     -4.386000e+02 -4.554500e+02
+6 15616     1.156100e+02 -1.992100e+02
+10 15616     -8.109985e+00 -1.017500e+02
+15 15616     6.454999e+01 -1.462800e+02
+3 15617     2.194000e+02 -4.722700e+02
+7 15617     6.460022e+00 -9.327002e+01
+3 15618     3.143101e+02 -4.790000e+02
+8 15618     3.537100e+02 -2.042100e+02
+9 15618     2.345800e+02 -5.088000e+01
+12 15618     2.301700e+02 -1.656300e+02
+3 15619     2.178400e+02 -4.981400e+02
+6 15619     1.102300e+02 -2.280400e+02
+8 15619     2.640300e+02 -2.172400e+02
+9 15619     1.505400e+02 -6.844000e+01
+12 15619     1.098100e+02 -1.837400e+02
+3 15620     1.973199e+02 -5.053101e+02
+6 15620     9.026001e+01 -2.337700e+02
+12 15620     8.944000e+01 -1.890900e+02
+3 15621     1.805300e+02 -5.230400e+02
+6 15621     7.270001e+01 -2.483700e+02
+3 15622     1.417200e+02 -5.282800e+02
+6 15622     3.153998e+01 -2.522400e+02
+3 15623     1.799800e+02 -5.444700e+02
+6 15623     7.181000e+01 -2.658900e+02
+9 15623     1.186400e+02 -1.072200e+02
+12 15623     7.279999e+01 -2.210600e+02
+3 15624     1.469700e+02 -5.493400e+02
+6 15624     3.771002e+01 -2.697700e+02
+8 15624     2.042300e+02 -2.538000e+02
+9 15624     9.190002e+01 -1.116600e+02
+10 15624     -8.259003e+01 -1.436800e+02
+12 15624     3.739001e+01 -2.229600e+02
+15 15624     -1.948999e+01 -1.966300e+02
+3 15625     1.469700e+02 -5.493400e+02
+6 15625     3.771002e+01 -2.697700e+02
+8 15625     2.042300e+02 -2.538000e+02
+9 15625     9.190002e+01 -1.116600e+02
+10 15625     -8.259003e+01 -1.436800e+02
+12 15625     3.739001e+01 -2.229600e+02
+15 15625     -1.948999e+01 -1.966300e+02
+3 15626     2.610400e+02 -5.618600e+02
+6 15626     1.597900e+02 -2.805300e+02
+3 15627     -4.388900e+02 -5.727700e+02
+7 15627     -3.780700e+02 3.508002e+01
+13 15627     6.152002e+01 -2.735000e+02
+15 15627     -3.633800e+02 9.281000e+01
+3 15628     -4.542600e+02 -5.735601e+02
+9 15628     -4.052500e+02 -1.402300e+02
+3 15629     1.769500e+02 -5.898199e+02
+6 15629     6.982001e+01 -3.030200e+02
+12 15629     7.332001e+01 -2.590300e+02
+15 15629     2.054999e+01 -2.375400e+02
+3 15630     1.566700e+02 -5.974399e+02
+6 15630     4.878003e+01 -3.088600e+02
+9 15630     1.006400e+02 -1.506400e+02
+12 15630     5.125000e+01 -2.636300e+02
+15 15630     -1.859985e+00 -2.378500e+02
+3 15631     2.488800e+02 -6.129399e+02
+6 15631     1.463900e+02 -3.226500e+02
+10 15631     2.428003e+01 -2.131300e+02
+12 15631     1.531700e+02 -2.837200e+02
+3 15632     -4.760600e+02 -6.182500e+02
+9 15632     -4.207900e+02 -1.772500e+02
+3 15633     -6.813700e+02 4.420100e+02
+14 15633     1.924700e+02 3.549300e+02
+3 15634     -5.668700e+02 4.351000e+02
+14 15634     2.145900e+02 2.557100e+02
+3 15635     -3.456000e+02 4.337400e+02
+5 15635     5.604301e+02 3.925200e+02
+14 15635     4.511300e+02 2.890900e+02
+3 15636     -3.429200e+02 4.178600e+02
+4 15636     3.089200e+02 -5.089301e+02
+5 15636     5.623700e+02 3.752000e+02
+14 15636     4.537000e+02 2.732700e+02
+3 15637     -3.352500e+02 3.748400e+02
+11 15637     2.899200e+02 1.294100e+02
+13 15637     3.131300e+02 5.761100e+02
+3 15638     -2.802500e+02 3.162600e+02
+4 15638     2.377100e+02 -5.317500e+02
+5 15638     6.151500e+02 2.569800e+02
+3 15639     -4.823600e+02 3.076500e+02
+5 15639     3.810800e+02 2.258800e+02
+13 15639     1.589700e+02 4.804200e+02
+14 15639     2.807700e+02 1.286100e+02
+3 15640     -4.422800e+02 3.031000e+02
+4 15640     2.221300e+02 -3.925900e+02
+5 15640     4.139600e+02 2.176100e+02
+3 15641     -7.089000e+02 2.881300e+02
+11 15641     -9.778998e+01 -5.760010e+00
+3 15642     -4.126700e+02 2.798100e+02
+4 15642     2.054301e+02 -4.057500e+02
+5 15642     4.407400e+02 1.874800e+02
+3 15643     -7.175100e+02 2.776900e+02
+5 15643     1.326400e+02 1.660600e+02
+3 15644     -3.148100e+02 2.696300e+02
+13 15644     3.015500e+02 4.538400e+02
+14 15644     4.482200e+02 9.442001e+01
+3 15645     -3.106900e+02 2.622600e+02
+5 15645     5.585900e+02 1.816000e+02
+11 15645     2.622600e+02 8.840027e+00
+3 15646     -1.751300e+02 2.465900e+02
+11 15646     4.138600e+02 1.423999e+01
+14 15646     6.149900e+02 9.156000e+01
+3 15647     -2.029800e+02 2.457700e+02
+4 15647     1.881500e+02 -5.740699e+02
+3 15648     -6.631000e+01 2.156400e+02
+11 15648     5.461700e+02 3.460022e+00
+14 15648     7.545800e+02 7.644000e+01
+3 15649     -1.523300e+02 2.109300e+02
+13 15649     4.656500e+02 4.273500e+02
+14 15649     6.439800e+02 5.984998e+01
+3 15650     -1.325000e+01 2.077600e+02
+8 15650     1.999600e+02 4.396700e+02
+3 15651     -6.743700e+02 2.024700e+02
+11 15651     -8.945001e+01 -7.683002e+01
+3 15652     -3.065400e+02 1.977500e+02
+8 15652     -6.426001e+01 4.215600e+02
+3 15653     -2.713300e+02 1.856600e+02
+5 15653     6.010300e+02 1.099100e+02
+8 15653     -3.278003e+01 4.129200e+02
+13 15653     3.419399e+02 3.895900e+02
+14 15653     4.967200e+02 1.931000e+01
+3 15654     3.197100e+02 1.853300e+02
+6 15654     3.989500e+02 7.522000e+02
+3 15655     3.853600e+02 1.745500e+02
+8 15655     5.067000e+02 3.902600e+02
+3 15656     -7.811300e+02 1.697800e+02
+11 15656     -1.775200e+02 -1.087200e+02
+3 15657     -2.994100e+02 1.593800e+02
+4 15657     1.362000e+02 -4.785000e+02
+5 15657     5.646400e+02 8.077002e+01
+6 15657     -3.419700e+02 8.370700e+02
+8 15657     -5.652002e+01 3.895800e+02
+13 15657     3.129301e+02 3.647900e+02
+14 15657     4.620100e+02 -8.500000e+00
+3 15658     -5.849700e+02 1.506800e+02
+5 15658     2.458800e+02 4.873999e+01
+8 15658     -3.053600e+02 3.724800e+02
+11 15658     -9.229980e+00 -1.061600e+02
+13 15658     5.360999e+01 3.243300e+02
+14 15658     1.530400e+02 -4.617999e+01
+3 15659     -6.484003e+01 1.505400e+02
+8 15659     1.519600e+02 3.890700e+02
+3 15660     -3.237000e+02 1.485600e+02
+4 15660     1.297100e+02 -4.576300e+02
+5 15660     5.345300e+02 6.715002e+01
+6 15660     -3.738700e+02 8.162400e+02
+3 15661     -1.720200e+02 1.446100e+02
+8 15661     5.606000e+01 3.811800e+02
+11 15661     4.186400e+02 -7.147998e+01
+3 15662     -4.461300e+02 1.390900e+02
+5 15662     3.934600e+02 4.727002e+01
+11 15662     1.245100e+02 -1.037100e+02
+14 15662     2.981300e+02 -4.384998e+01
+3 15663     2.007500e+02 1.248700e+02
+6 15663     2.669500e+02 7.319400e+02
+3 15664     1.616200e+02 1.209000e+02
+6 15664     2.195500e+02 7.332500e+02
+8 15664     3.193700e+02 3.522500e+02
+9 15664     1.127700e+02 4.808000e+02
+3 15665     -5.869000e+01 1.132800e+02
+6 15665     -1.202002e+01 8.409800e+02
+11 15665     5.538700e+02 -8.481000e+01
+13 15665     5.569399e+02 3.525300e+02
+14 15665     7.576600e+02 -2.898999e+01
+3 15666     -9.762000e+01 1.116200e+02
+11 15666     5.063000e+02 -9.234003e+01
+3 15667     -3.206700e+02 1.067500e+02
+4 15667     1.066300e+02 -4.551000e+02
+5 15667     5.351801e+02 2.760999e+01
+8 15667     -7.516998e+01 3.470900e+02
+11 15667     2.539000e+02 -1.161800e+02
+14 15667     4.355000e+02 -6.172998e+01
+3 15668     -7.177900e+02 9.948999e+01
+14 15668     2.352002e+01 -1.023600e+02
+3 15669     -1.667700e+02 9.053998e+01
+6 15669     -1.574400e+02 7.821700e+02
+9 15669     -1.773900e+02 4.462000e+02
+3 15670     -8.788000e+01 8.541998e+01
+6 15670     -5.246997e+01 7.942500e+02
+8 15670     1.309600e+02 3.340200e+02
+13 15670     5.220500e+02 3.252300e+02
+3 15671     1.740600e+02 8.534003e+01
+6 15671     2.323600e+02 6.852300e+02
+9 15671     1.231900e+02 4.484200e+02
+3 15672     1.704400e+02 7.654999e+01
+6 15672     2.273100e+02 6.750500e+02
+9 15672     1.202900e+02 4.383400e+02
+3 15673     -9.781000e+01 7.659998e+01
+5 15673     8.120200e+02 1.117999e+01
+6 15673     -6.527002e+01 7.790300e+02
+8 15673     1.224000e+02 3.261100e+02
+9 15673     -1.148400e+02 4.345500e+02
+13 15673     5.111600e+02 3.149700e+02
+14 15673     7.038900e+02 -7.181000e+01
+3 15674     -2.537800e+02 7.038000e+01
+13 15674     3.521300e+02 2.947700e+02
+3 15675     4.438101e+02 6.992999e+01
+6 15675     5.379301e+02 5.838500e+02
+7 15675     5.477700e+02 5.582400e+02
+12 15675     6.174100e+02 5.958800e+02
+3 15676     -5.464600e+02 6.097998e+01
+5 15676     2.814200e+02 -3.245001e+01
+11 15676     2.776001e+01 -1.705400e+02
+14 15676     1.899600e+02 -1.232200e+02
+3 15677     -4.965800e+02 5.919000e+01
+11 15677     7.397998e+01 -1.678700e+02
+3 15678     -1.542100e+02 5.010999e+01
+5 15678     7.348101e+02 -2.119000e+01
+13 15678     4.507000e+02 2.871500e+02
+14 15678     6.309700e+02 -1.036600e+02
+3 15679     1.129800e+02 4.081000e+01
+8 15679     2.775500e+02 2.845900e+02
+3 15680     -1.313100e+02 3.521002e+01
+13 15680     4.730601e+02 2.767900e+02
+14 15680     6.585900e+02 -1.165400e+02
+3 15681     -8.965002e+01 3.441998e+01
+5 15681     8.178199e+02 -3.410999e+01
+6 15681     -5.346997e+01 7.262400e+02
+8 15681     1.294400e+02 2.904600e+02
+13 15681     5.161500e+02 2.794900e+02
+14 15681     7.113900e+02 -1.147400e+02
+3 15682     -3.546500e+02 2.781000e+01
+4 15682     6.277002e+01 -4.186300e+02
+5 15682     4.886100e+02 -5.338000e+01
+6 15682     -4.025100e+02 6.555200e+02
+8 15682     -1.035700e+02 2.804000e+02
+9 15682     -3.449400e+02 3.819100e+02
+11 15682     2.171900e+02 -1.833700e+02
+13 15682     2.547000e+02 2.512000e+02
+14 15682     3.928000e+02 -1.402000e+02
+3 15683     -1.102900e+02 2.621997e+01
+6 15683     -7.909000e+01 7.141700e+02
+8 15683     1.101500e+02 2.851100e+02
+9 15683     -1.229700e+02 3.900700e+02
+3 15684     4.841600e+02 2.544000e+01
+6 15684     5.789301e+02 5.224300e+02
+8 15684     5.863300e+02 2.527900e+02
+12 15684     6.579301e+02 5.355100e+02
+3 15685     -1.280029e+00 2.466998e+01
+6 15685     6.640002e+01 7.365300e+02
+9 15685     -2.608002e+01 3.907800e+02
+3 15686     -1.800000e+02 2.010999e+01
+9 15686     -1.867000e+02 3.806700e+02
+11 15686     4.085400e+02 -1.769200e+02
+3 15687     4.830000e+02 1.694000e+01
+8 15687     5.846500e+02 2.447900e+02
+3 15688     -9.226001e+01 9.960022e+00
+6 15688     -5.620001e+01 6.979400e+02
+3 15689     -2.178003e+01 3.219971e+00
+6 15689     3.828003e+01 7.042700e+02
+8 15689     1.897800e+02 2.665600e+02
+9 15689     -4.426001e+01 3.708000e+02
+3 15690     -6.373999e+01 -6.090027e+00
+9 15690     -8.134003e+01 3.609500e+02
+13 15690     5.398000e+02 2.477100e+02
+14 15690     7.425400e+02 -1.534900e+02
+3 15691     -2.687600e+02 -6.770020e+00
+8 15691     -2.875000e+01 2.553600e+02
+3 15692     -2.687600e+02 -6.770020e+00
+8 15692     -2.875000e+01 2.553600e+02
+3 15693     2.400400e+02 -4.560999e+01
+6 15693     3.019100e+02 5.142900e+02
+8 15693     3.800700e+02 2.064100e+02
+9 15693     1.825900e+02 3.302600e+02
+12 15693     4.019700e+02 5.087500e+02
+13 15693     7.413000e+02 1.038800e+02
+3 15694     2.467400e+02 -4.648999e+01
+6 15694     3.096200e+02 5.122200e+02
+9 15694     1.890699e+02 3.295500e+02
+12 15694     4.098101e+02 5.066000e+02
+3 15695     -6.183100e+02 -4.804999e+01
+8 15695     -3.254400e+02 2.109800e+02
+3 15696     -2.929900e+02 -5.892999e+01
+5 15696     5.460300e+02 -1.412800e+02
+6 15696     -3.196000e+02 5.571100e+02
+8 15696     -5.148999e+01 2.105700e+02
+12 15696     -1.541600e+02 5.360700e+02
+3 15697     -2.469300e+02 -7.988000e+01
+8 15697     -8.510010e+00 1.960800e+02
+9 15697     -2.421900e+02 2.899200e+02
+3 15698     2.863500e+02 -8.992999e+01
+7 15698     3.761200e+02 4.349900e+02
+9 15698     2.226700e+02 2.905300e+02
+12 15698     4.250800e+02 4.294200e+02
+13 15698     7.506300e+02 3.317999e+01
+3 15699     2.376600e+02 -9.897998e+01
+6 15699     2.956400e+02 4.517000e+02
+8 15699     3.766100e+02 1.609100e+02
+9 15699     1.814600e+02 2.825300e+02
+12 15699     3.969200e+02 4.480200e+02
+3 15700     -1.201900e+02 -1.010900e+02
+8 15700     1.015200e+02 1.803900e+02
+9 15700     -1.288900e+02 2.755300e+02
+3 15701     -2.264800e+02 -1.161200e+02
+6 15701     -2.274600e+02 5.145900e+02
+9 15701     -2.227000e+02 2.587000e+02
+3 15702     6.608600e+02 -1.320100e+02
+7 15702     7.146100e+02 2.883700e+02
+3 15703     -5.375300e+02 -1.368500e+02
+11 15703     3.428003e+01 -3.151000e+02
+3 15704     4.808700e+02 -1.372400e+02
+7 15704     5.435000e+02 3.359600e+02
+10 15704     7.262100e+02 3.803000e+02
+3 15705     5.572000e+02 -1.443200e+02
+7 15705     6.128900e+02 3.073000e+02
+10 15705     8.084700e+02 3.374100e+02
+3 15706     1.788000e+01 -1.518200e+02
+14 15706     5.843500e+02 -5.490000e+02
+3 15707     5.389600e+02 -1.614600e+02
+7 15707     5.931000e+02 2.967900e+02
+9 15707     4.428700e+02 2.285400e+02
+3 15708     1.939500e+02 -1.730800e+02
+8 15708     2.830900e+02 6.982001e+01
+3 15709     -3.141400e+02 -1.762200e+02
+7 15709     -1.040700e+02 4.864300e+02
+11 15709     2.570100e+02 -3.406600e+02
+13 15709     2.825500e+02 9.838000e+01
+3 15710     2.082400e+02 -1.949300e+02
+6 15710     1.508600e+02 1.369700e+02
+8 15710     2.926600e+02 4.976001e+01
+12 15710     1.781900e+02 1.856000e+02
+13 15710     5.301899e+02 -1.597100e+02
+3 15711     3.414500e+02 -1.966600e+02
+7 15711     4.094500e+02 3.189600e+02
+8 15711     4.505699e+02 6.891000e+01
+9 15711     2.696500e+02 1.964900e+02
+10 15711     5.669900e+02 3.754500e+02
+13 15711     7.819301e+02 -7.003003e+01
+3 15712     -4.473000e+02 -2.001500e+02
+6 15712     -4.975000e+02 3.660900e+02
+8 15712     -1.784900e+02 9.522000e+01
+3 15713     7.176600e+02 -2.051400e+02
+7 15713     7.495300e+02 2.020100e+02
+3 15714     -2.002200e+02 -2.244100e+02
+8 15714     2.126001e+01 7.562000e+01
+3 15715     -5.047998e+01 -2.430700e+02
+5 15715     5.603199e+02 -5.756300e+02
+7 15715     -1.503700e+02 1.873400e+02
+8 15715     6.678998e+01 1.737000e+01
+9 15715     -8.132001e+01 1.469700e+02
+15 15715     -1.040600e+02 2.476700e+02
+3 15716     5.470300e+02 -2.438400e+02
+7 15716     5.839500e+02 2.175400e+02
+3 15717     5.268900e+02 -2.492800e+02
+9 15717     4.296400e+02 1.512600e+02
+12 15717     6.717800e+02 2.104300e+02
+3 15718     -4.667999e+01 -2.509000e+02
+4 15718     -2.162900e+02 -3.745000e+02
+8 15718     6.903003e+01 1.017001e+01
+3 15719     -4.676001e+01 -2.775900e+02
+7 15719     -1.562700e+02 1.515500e+02
+13 15719     3.059900e+02 -1.853800e+02
+3 15720     2.825200e+02 -2.847500e+02
+10 15720     1.712200e+02 1.039400e+02
+13 15720     5.738500e+02 -2.488600e+02
+15 15720     2.770400e+02 9.626999e+01
+3 15721     -1.684500e+02 -2.863100e+02
+8 15721     -1.719000e+01 -7.410004e+00
+9 15721     -1.790100e+02 1.073800e+02
+3 15722     -5.456000e+01 -2.933600e+02
+12 15722     -1.270500e+02 8.853998e+01
+3 15723     -2.195300e+02 -2.938500e+02
+8 15723     -5.085999e+01 -7.750000e+00
+3 15724     2.262300e+02 -2.941600e+02
+4 15724     -3.304600e+02 -5.320300e+02
+3 15725     3.525300e+02 -2.962600e+02
+8 15725     4.229900e+02 -3.697000e+01
+3 15726     -1.752200e+02 -2.975400e+02
+5 15726     4.597600e+02 -5.650601e+02
+6 15726     -2.619600e+02 7.284003e+01
+8 15726     -2.559998e+01 -1.773001e+01
+10 15726     -2.162300e+02 2.531600e+02
+12 15726     -2.121900e+02 1.254500e+02
+3 15727     -9.584003e+01 -2.996900e+02
+9 15727     -1.187800e+02 9.654999e+01
+12 15727     -1.610400e+02 9.146002e+01
+3 15728     4.705200e+02 -3.005400e+02
+6 15728     5.257400e+02 1.574000e+02
+3 15729     7.349900e+02 -3.154300e+02
+7 15729     7.370400e+02 9.710001e+01
+9 15729     6.035601e+02 9.403000e+01
+3 15730     7.377500e+02 -3.188800e+02
+7 15730     7.388400e+02 9.370001e+01
+3 15731     2.384998e+01 -3.193700e+02
+7 15731     -1.149600e+02 9.248001e+01
+10 15731     -1.268400e+02 1.214400e+02
+13 15731     3.437100e+02 -2.379500e+02
+3 15732     7.447600e+02 -3.288100e+02
+7 15732     7.428800e+02 8.245001e+01
+9 15732     6.113000e+02 8.287000e+01
+3 15733     -6.127000e+02 -3.377100e+02
+9 15733     -6.444500e+02 1.684998e+01
+3 15734     -6.023999e+01 -3.418100e+02
+15 15734     -1.415000e+02 1.290800e+02
+3 15735     -5.702800e+02 -3.475700e+02
+9 15735     -6.018800e+02 1.182001e+01
+3 15736     2.854800e+02 -3.492700e+02
+7 15736     1.318500e+02 3.582001e+01
+3 15737     -6.023400e+02 -3.503000e+02
+9 15737     -6.316700e+02 7.070007e+00
+3 15738     -2.385999e+01 -3.542900e+02
+6 15738     -1.221700e+02 -4.163000e+01
+13 15738     3.073800e+02 -2.515200e+02
+3 15739     3.514001e+01 -3.562900e+02
+13 15739     3.462700e+02 -2.687100e+02
+15 15739     -6.885999e+01 6.617999e+01
+3 15740     3.587600e+02 -3.574800e+02
+7 15740     2.125100e+02 2.408002e+01
+15 15740     3.670900e+02 -1.121997e+01
+3 15741     7.386500e+02 -3.658800e+02
+7 15741     7.279399e+02 5.309998e+01
+3 15742     -3.669700e+02 -3.730100e+02
+6 15742     -4.154500e+02 1.267900e+02
+8 15742     -1.343500e+02 -4.937000e+01
+9 15742     -3.377900e+02 3.003998e+01
+13 15742     1.772400e+02 -9.482001e+01
+14 15742     2.935200e+02 -5.703000e+02
+3 15743     -6.004900e+02 -3.750700e+02
+9 15743     -6.278300e+02 -1.447998e+01
+3 15744     -6.089000e+02 -3.762300e+02
+9 15744     -6.358700e+02 -1.591998e+01
+3 15745     3.957001e+01 -3.862600e+02
+6 15745     -6.221002e+01 -8.959998e+01
+8 15745     1.282700e+02 -1.116200e+02
+10 15745     -1.332600e+02 4.638000e+01
+12 15745     -5.228998e+01 -3.525000e+01
+3 15746     3.928003e+01 -3.922400e+02
+4 15746     -3.253200e+02 -3.730600e+02
+6 15746     -6.229999e+01 -9.785999e+01
+8 15746     1.261300e+02 -1.166500e+02
+12 15746     -5.500000e+01 -4.337000e+01
+3 15747     4.022200e+02 -4.003300e+02
+8 15747     4.470800e+02 -1.367300e+02
+3 15748     4.487000e+02 -4.030500e+02
+6 15748     4.009900e+02 -9.387000e+01
+3 15749     -1.815500e+02 -4.235000e+02
+8 15749     -5.322998e+01 -1.299300e+02
+3 15750     9.622998e+01 -4.258800e+02
+6 15750     -7.580017e+00 -1.412800e+02
+13 15750     3.715100e+02 -3.400500e+02
+3 15751     7.027200e+02 -4.294100e+02
+7 15751     6.816899e+02 1.246997e+01
+3 15752     3.871000e+02 -4.379500e+02
+6 15752     3.087600e+02 -1.573500e+02
+7 15752     1.893600e+02 -7.464001e+01
+10 15752     2.010800e+02 -1.029200e+02
+15 15752     3.133300e+02 -1.477300e+02
+3 15753     6.877600e+02 -4.380800e+02
+7 15753     6.670400e+02 1.022998e+01
+12 15753     8.188199e+02 -1.846997e+01
+3 15754     3.758199e+02 -4.455500e+02
+6 15754     2.974700e+02 -1.657900e+02
+7 15754     1.772600e+02 -7.933002e+01
+9 15754     2.878000e+02 -2.160999e+01
+10 15754     1.874300e+02 -1.094200e+02
+3 15755     2.982200e+02 -4.474500e+02
+4 15755     -4.577900e+02 -5.299200e+02
+7 15755     9.700000e+01 -7.265997e+01
+8 15755     3.424400e+02 -1.771000e+02
+3 15756     -8.275000e+01 -4.537900e+02
+8 15756     2.022998e+01 -1.631800e+02
+3 15757     -1.473100e+02 -4.550699e+02
+6 15757     -2.546800e+02 -1.466500e+02
+9 15757     -1.596400e+02 -3.809998e+01
+12 15757     -2.385600e+02 -8.464001e+01
+3 15758     -6.842999e+01 -4.584200e+02
+8 15758     3.007001e+01 -1.680900e+02
+3 15759     3.377100e+02 -4.595601e+02
+4 15759     -4.832600e+02 -5.587900e+02
+3 15760     3.118500e+02 -4.614301e+02
+8 15760     3.515800e+02 -1.900600e+02
+3 15761     1.404900e+02 -4.703700e+02
+8 15761     2.019500e+02 -1.901700e+02
+3 15762     6.633002e+01 -4.910900e+02
+8 15762     1.374100e+02 -2.031500e+02
+3 15763     6.633002e+01 -4.910900e+02
+6 15763     -4.621997e+01 -2.152900e+02
+7 15763     -1.244800e+02 -8.157001e+01
+8 15763     1.374100e+02 -2.031500e+02
+12 15763     -4.894000e+01 -1.625000e+02
+13 15763     3.321300e+02 -3.873500e+02
+15 15763     -1.065100e+02 -1.192900e+02
+3 15764     6.190800e+02 -4.960601e+02
+12 15764     7.106700e+02 -8.802002e+01
+3 15765     3.090300e+02 -5.032900e+02
+7 15765     9.839001e+01 -1.206300e+02
+10 15765     9.259998e+01 -1.452900e+02
+3 15766     -3.845001e+01 -5.122800e+02
+6 15766     -1.499700e+02 -2.219399e+02
+12 15766     -1.470200e+02 -1.641700e+02
+3 15767     4.596002e+01 -5.147500e+02
+6 15767     -6.516998e+01 -2.326300e+02
+3 15768     -1.345300e+02 -5.174200e+02
+6 15768     -2.387600e+02 -2.028900e+02
+3 15769     2.982001e+01 -5.200500e+02
+8 15769     1.084000e+02 -2.229400e+02
+3 15770     -1.994000e+02 -5.249000e+02
+9 15770     -1.995200e+02 -9.694000e+01
+3 15771     1.142100e+02 -5.292100e+02
+8 15771     1.748500e+02 -2.384300e+02
+3 15772     -4.988600e+02 -5.368400e+02
+4 15772     -2.244000e+02 -1.835300e+02
+15 15772     -3.908800e+02 1.593300e+02
+3 15773     6.252200e+02 -5.512000e+02
+7 15773     5.245800e+02 -1.099100e+02
+9 15773     4.990400e+02 -1.029800e+02
+15 15773     8.506899e+02 -2.184100e+02
+3 15774     2.753003e+01 -5.664800e+02
+6 15774     -8.251001e+01 -2.740300e+02
+8 15774     1.064700e+02 -2.589400e+02
+9 15774     -9.330017e+00 -1.277400e+02
+3 15775     -1.599731e-01 -5.810800e+02
+6 15775     -1.086600e+02 -2.799800e+02
+7 15775     -1.647000e+02 -1.237900e+02
+8 15775     8.476001e+01 -2.679600e+02
+9 15775     -3.150000e+01 -1.373100e+02
+3 15776     -1.169500e+02 -5.837000e+02
+9 15776     -1.299100e+02 -1.435700e+02
+3 15777     -4.969971e+00 -5.880900e+02
+8 15777     8.153003e+01 -2.729400e+02
+9 15777     -3.578998e+01 -1.463900e+02
+12 15777     -1.068900e+02 -2.327900e+02
+3 15778     -1.154000e+02 -5.895400e+02
+6 15778     -2.178400e+02 -2.717600e+02
+3 15779     -4.436300e+02 -5.898000e+02
+7 15779     -3.887200e+02 1.835999e+01
+9 15779     -3.959200e+02 -1.534100e+02
+15 15779     -3.800800e+02 7.012000e+01
+3 15780     -1.191500e+02 -5.938400e+02
+9 15780     -1.309100e+02 -1.524300e+02
+3 15781     -4.528900e+02 -6.041899e+02
+4 15781     -2.693800e+02 -1.750700e+02
+8 15781     -2.337400e+02 -2.405800e+02
+9 15781     -4.034700e+02 -1.650400e+02
+13 15781     4.334003e+01 -2.984000e+02
+3 15782     1.444300e+02 -6.090400e+02
+9 15782     9.031000e+01 -1.601200e+02
+3 15783     -3.411200e+02 4.360200e+02
+4 15783     3.210300e+02 -5.131100e+02
+14 15783     4.558101e+02 2.902500e+02
+3 15784     -4.753000e+02 3.016800e+02
+4 15784     2.235100e+02 -3.759900e+02
+5 15784     3.866600e+02 2.196200e+02
+11 15784     1.207900e+02 3.567001e+01
+13 15784     1.640699e+02 4.740600e+02
+14 15784     2.864301e+02 1.215400e+02
+3 15785     -4.717800e+02 2.976600e+02
+11 15785     1.225000e+02 3.235001e+01
+13 15785     1.664900e+02 4.707300e+02
+14 15785     2.893600e+02 1.173900e+02
+3 15786     -7.410800e+02 2.738000e+02
+11 15786     -1.258500e+02 -1.859998e+01
+3 15787     -1.895900e+02 2.461200e+02
+13 15787     4.270000e+02 4.517400e+02
+14 15787     5.967000e+02 8.873001e+01
+3 15788     -2.238400e+02 2.105500e+02
+4 15788     1.649900e+02 -5.510800e+02
+5 15788     6.643400e+02 1.380100e+02
+8 15788     1.042999e+01 4.334200e+02
+3 15789     -1.625300e+02 2.110100e+02
+11 15789     4.314200e+02 -1.366998e+01
+14 15789     6.308500e+02 5.835999e+01
+3 15790     1.325100e+02 2.089000e+02
+6 15790     1.870400e+02 8.519400e+02
+9 15790     8.567999e+01 5.620000e+02
+3 15791     -7.566300e+02 1.947700e+02
+13 15791     -8.494000e+01 3.384900e+02
+14 15791     -9.659973e+00 -2.417999e+01
+3 15792     1.616500e+02 1.930600e+02
+9 15792     1.129800e+02 5.478800e+02
+11 15792     6.316899e+02 -1.153600e+02
+3 15793     4.018400e+02 1.812200e+02
+6 15793     4.981700e+02 7.311700e+02
+8 15793     5.218199e+02 3.955700e+02
+9 15793     3.289800e+02 5.389500e+02
+3 15794     -6.704300e+02 1.691300e+02
+14 15794     6.979999e+01 -3.865002e+01
+3 15795     -2.975300e+02 1.690700e+02
+13 15795     3.142000e+02 3.718100e+02
+3 15796     -1.012600e+02 1.529400e+02
+13 15796     5.146100e+02 3.824900e+02
+3 15797     -2.051500e+02 1.523800e+02
+4 15797     1.296800e+02 -5.582300e+02
+5 15797     6.797600e+02 8.131000e+01
+6 15797     -2.140600e+02 8.514600e+02
+8 15797     2.596002e+01 3.863800e+02
+11 15797     3.812200e+02 -6.917999e+01
+13 15797     4.057100e+02 3.682600e+02
+14 15797     5.738400e+02 -6.510010e+00
+3 15798     1.332500e+02 1.477600e+02
+6 15798     1.864700e+02 7.730700e+02
+9 15798     8.753998e+01 5.048200e+02
+11 15798     6.070699e+02 -1.522600e+02
+13 15798     6.731000e+02 2.971800e+02
+3 15799     -6.511600e+02 1.449200e+02
+8 15799     -3.603100e+02 3.638600e+02
+3 15800     1.653900e+02 1.390000e+02
+6 15800     2.247300e+02 7.569200e+02
+8 15800     3.238300e+02 3.670700e+02
+9 15800     1.164500e+02 4.966400e+02
+11 15800     6.329700e+02 -1.681200e+02
+3 15801     -2.238400e+02 1.345200e+02
+4 15801     1.188400e+02 -5.388300e+02
+5 15801     6.543500e+02 6.090002e+01
+6 15801     -2.385400e+02 8.222300e+02
+8 15801     9.239990e+00 3.708000e+02
+3 15802     -1.008100e+02 1.279100e+02
+6 15802     -6.363000e+01 8.472500e+02
+8 15802     1.236000e+02 3.689600e+02
+11 15802     5.084900e+02 -7.740997e+01
+3 15803     -7.080017e+00 1.156500e+02
+6 15803     6.113000e+01 8.533200e+02
+8 15803     2.049200e+02 3.603800e+02
+3 15804     1.937400e+02 1.120200e+02
+6 15804     2.571200e+02 7.156600e+02
+8 15804     3.465200e+02 3.429400e+02
+9 15804     1.416100e+02 4.720800e+02
+11 15804     6.552500e+02 -2.019200e+02
+3 15805     -3.029100e+02 1.047800e+02
+4 15805     1.030400e+02 -4.683400e+02
+5 15805     5.557200e+02 2.406000e+01
+6 15805     -3.418600e+02 7.632400e+02
+8 15805     -5.953003e+01 3.432300e+02
+11 15805     2.730100e+02 -1.182400e+02
+13 15805     3.069000e+02 3.177500e+02
+3 15806     -8.496002e+01 1.043300e+02
+6 15806     -4.808002e+01 8.200700e+02
+8 15806     1.333500e+02 3.504400e+02
+3 15807     1.188600e+02 9.717999e+01
+6 15807     1.669600e+02 7.102800e+02
+8 15807     2.835000e+02 3.329700e+02
+3 15808     -4.737800e+02 8.778998e+01
+4 15808     9.983002e+01 -3.414700e+02
+6 15808     -5.644400e+02 7.000600e+02
+8 15808     -2.078900e+02 3.230800e+02
+11 15808     9.676001e+01 -1.454800e+02
+3 15809     -9.794000e+01 8.735999e+01
+6 15809     -6.704999e+01 7.939800e+02
+3 15810     2.194700e+02 8.221002e+01
+6 15810     2.857700e+02 6.732300e+02
+8 15810     3.666900e+02 3.163100e+02
+9 15810     1.647300e+02 4.452800e+02
+3 15811     2.188300e+02 6.888000e+01
+8 15811     3.670700e+02 3.061100e+02
+9 15811     1.636300e+02 4.349500e+02
+3 15812     -7.000000e+00 4.927002e+01
+6 15812     5.846997e+01 7.670800e+02
+9 15812     -3.217999e+01 4.123900e+02
+13 15812     6.066000e+02 3.007800e+02
+14 15812     8.219000e+02 -9.122998e+01
+3 15813     -8.981000e+01 4.135999e+01
+5 15813     8.184600e+02 -2.559003e+01
+6 15813     -5.352002e+01 7.368800e+02
+8 15813     1.293200e+02 2.975800e+02
+9 15813     -1.062300e+02 4.037500e+02
+11 15813     5.149900e+02 -1.512100e+02
+13 15813     5.165699e+02 2.860600e+02
+3 15814     -5.827002e+01 3.425000e+01
+14 15814     7.517700e+02 -1.115900e+02
+3 15815     -8.165997e+01 2.791998e+01
+14 15815     7.210601e+02 -1.198200e+02
+3 15816     -4.690002e+01 2.588000e+01
+8 15816     1.654100e+02 2.850900e+02
+9 15816     -6.735999e+01 3.904400e+02
+13 15816     5.591300e+02 2.762500e+02
+3 15817     -2.110700e+02 2.206000e+01
+4 15817     5.063000e+01 -5.329600e+02
+6 15817     -2.149400e+02 6.810800e+02
+9 15817     -2.154000e+02 3.802300e+02
+3 15818     -1.055800e+02 1.417999e+01
+8 15818     1.156600e+02 2.750900e+02
+9 15818     -1.195600e+02 3.787800e+02
+13 15818     4.982500e+02 2.620700e+02
+3 15819     1.170800e+02 1.183002e+01
+6 15819     1.629700e+02 6.033200e+02
+12 15819     2.734600e+02 5.904900e+02
+13 15819     6.433000e+02 1.796100e+02
+14 15819     8.763000e+02 -2.407000e+02
+3 15820     -1.495200e+02 4.809998e+00
+4 15820     3.753998e+01 -5.854700e+02
+6 15820     -1.323700e+02 6.773800e+02
+9 15820     -1.590700e+02 3.688300e+02
+13 15820     4.524301e+02 2.504800e+02
+14 15820     6.339600e+02 -1.475800e+02
+3 15821     4.869700e+02 3.619995e+00
+8 15821     5.873000e+02 2.329900e+02
+3 15822     -2.940000e+02 -1.302002e+01
+4 15822     3.677002e+01 -4.603400e+02
+8 15822     -5.039001e+01 2.475100e+02
+13 15822     3.104000e+02 2.250700e+02
+3 15823     1.584400e+02 -2.040002e+01
+7 15823     3.048800e+02 5.584400e+02
+8 15823     3.139400e+02 2.307500e+02
+9 15823     1.113300e+02 3.520700e+02
+11 15823     6.221500e+02 -3.165800e+02
+12 15823     3.168700e+02 5.476200e+02
+13 15823     6.736500e+02 1.438000e+02
+3 15824     1.584400e+02 -2.040002e+01
+8 15824     3.139400e+02 2.307500e+02
+13 15824     6.736500e+02 1.438000e+02
+3 15825     3.723500e+02 -4.578003e+01
+7 15825     4.587700e+02 4.542400e+02
+9 15825     2.985100e+02 3.299200e+02
+3 15826     1.970000e+02 -4.707001e+01
+8 15826     3.421700e+02 2.080100e+02
+3 15827     -2.387400e+02 -4.929999e+01
+9 15827     -2.369700e+02 3.182100e+02
+13 15827     3.599301e+02 1.999800e+02
+14 15827     5.218199e+02 -2.059600e+02
+3 15828     2.405200e+02 -5.325000e+01
+6 15828     3.028500e+02 5.040600e+02
+8 15828     3.806800e+02 1.991800e+02
+9 15828     1.829900e+02 3.228500e+02
+12 15828     4.030200e+02 4.983800e+02
+3 15829     2.023900e+02 -5.650000e+01
+6 15829     2.575600e+02 5.069000e+02
+7 15829     3.394500e+02 5.118300e+02
+8 15829     3.491700e+02 1.986900e+02
+9 15829     1.500800e+02 3.196700e+02
+12 15829     3.613700e+02 4.998900e+02
+3 15830     -3.795001e+01 -6.932001e+01
+8 15830     1.739800e+02 2.063000e+02
+9 15830     -5.684003e+01 3.055100e+02
+3 15831     -4.619800e+02 -7.188000e+01
+5 15831     3.611000e+02 -1.505600e+02
+6 15831     -5.292500e+02 5.119300e+02
+3 15832     1.784800e+02 -9.113000e+01
+6 15832     2.280000e+02 4.711800e+02
+8 15832     3.283800e+02 1.702300e+02
+3 15833     1.784800e+02 -9.113000e+01
+8 15833     3.283800e+02 1.702300e+02
+3 15834     -4.940002e+01 -9.366998e+01
+7 15834     1.968500e+02 5.831300e+02
+8 15834     1.642600e+02 1.862800e+02
+13 15834     5.450000e+02 1.751700e+02
+14 15834     7.528500e+02 -2.422600e+02
+3 15835     -3.770001e+01 -9.320001e+01
+13 15835     5.546400e+02 1.731100e+02
+14 15835     7.650900e+02 -2.450600e+02
+3 15836     -1.330400e+02 -1.001000e+02
+6 15836     -1.079700e+02 5.526400e+02
+12 15836     5.458002e+01 5.199400e+02
+14 15836     6.464000e+02 -2.517200e+02
+3 15837     -5.076200e+02 -1.029400e+02
+13 15837     1.158300e+02 1.411600e+02
+3 15838     -3.862600e+02 -1.068100e+02
+8 15838     -1.296100e+02 1.700600e+02
+3 15839     -3.014800e+02 -1.257900e+02
+8 15839     -5.590002e+01 1.569100e+02
+14 15839     4.440500e+02 -2.825800e+02
+3 15840     4.777800e+02 -1.311800e+02
+6 15840     5.515800e+02 3.415600e+02
+7 15840     5.418300e+02 3.442300e+02
+8 15840     5.709600e+02 1.167200e+02
+10 15840     7.251899e+02 3.906500e+02
+12 15840     6.315000e+02 3.520100e+02
+3 15841     4.678500e+02 -1.361400e+02
+6 15841     5.406600e+02 3.364300e+02
+8 15841     5.620900e+02 1.118900e+02
+9 15841     3.814399e+02 2.499600e+02
+12 15841     6.206100e+02 3.464600e+02
+3 15842     8.496002e+01 -1.393500e+02
+6 15842     3.729999e+01 2.554400e+02
+7 15842     4.006000e+01 3.139300e+02
+8 15842     2.025300e+02 1.102300e+02
+13 15842     4.709900e+02 -5.940997e+01
+14 15842     6.707000e+02 -5.401899e+02
+3 15843     5.638101e+02 -1.390800e+02
+7 15843     6.191500e+02 3.105200e+02
+3 15844     1.769600e+02 -1.759600e+02
+4 15844     -2.349500e+02 -5.447700e+02
+3 15845     1.873999e+01 -1.879200e+02
+8 15845     1.279500e+02 6.248001e+01
+3 15846     -2.641998e+01 -1.951100e+02
+4 15846     -1.880800e+02 -4.060400e+02
+5 15846     6.019399e+02 -5.283400e+02
+6 15846     -1.098800e+02 1.509100e+02
+8 15846     9.167999e+01 5.872000e+01
+12 15846     -7.997998e+01 2.049500e+02
+13 15846     3.422300e+02 -1.173300e+02
+3 15847     6.910300e+02 -2.160800e+02
+7 15847     7.216500e+02 1.992500e+02
+9 15847     5.716300e+02 1.797300e+02
+3 15848     -9.640015e+00 -2.189700e+02
+4 15848     -2.084100e+02 -4.027000e+02
+8 15848     1.008400e+02 3.623999e+01
+3 15849     1.556800e+02 -2.192000e+02
+4 15849     -2.604800e+02 -5.033500e+02
+3 15850     1.411100e+02 -2.206300e+02
+13 15850     4.565699e+02 -1.785800e+02
+3 15851     1.389600e+02 -2.352200e+02
+6 15851     5.965997e+01 7.701001e+01
+3 15852     7.348800e+02 -2.347000e+02
+7 15852     7.582300e+02 1.687400e+02
+3 15853     5.237300e+02 -2.535600e+02
+9 15853     4.263800e+02 1.475600e+02
+12 15853     6.675699e+02 2.063800e+02
+3 15854     -6.241998e+01 -2.835100e+02
+6 15854     -1.576500e+02 4.500000e+01
+8 15854     5.383002e+01 -1.700000e+01
+9 15854     -8.996002e+01 1.117100e+02
+3 15855     5.046801e+02 -2.881000e+02
+6 15855     5.641801e+02 1.637200e+02
+9 15855     4.097400e+02 1.176700e+02
+12 15855     6.428500e+02 1.729400e+02
+3 15856     -1.721002e+01 -2.946600e+02
+4 15856     -2.511800e+02 -3.740200e+02
+8 15856     8.870001e+01 -2.923001e+01
+3 15857     5.543400e+02 -2.983100e+02
+9 15857     4.516600e+02 1.088000e+02
+12 15857     6.950500e+02 1.527900e+02
+3 15858     5.543400e+02 -2.983100e+02
+9 15858     4.516600e+02 1.088000e+02
+12 15858     6.950500e+02 1.527900e+02
+3 15859     1.874300e+02 -3.048900e+02
+8 15859     2.603200e+02 -4.764001e+01
+3 15860     -7.969971e+00 -3.096300e+02
+4 15860     -2.616300e+02 -3.731800e+02
+7 15860     -1.439100e+02 1.117900e+02
+10 15860     -1.558800e+02 1.476900e+02
+12 15860     -9.746997e+01 6.158002e+01
+3 15861     -2.432600e+02 -3.146800e+02
+8 15861     -7.573999e+01 -2.717999e+01
+9 15861     -2.426800e+02 8.078000e+01
+3 15862     7.463300e+02 -3.188900e+02
+7 15862     7.471899e+02 9.072000e+01
+9 15862     6.131801e+02 9.179001e+01
+3 15863     -7.959998e+01 -3.198600e+02
+4 15863     -2.443100e+02 -3.425600e+02
+9 15863     -1.042300e+02 7.944000e+01
+3 15864     -4.222998e+01 -3.281600e+02
+6 15864     -1.384200e+02 -1.008002e+01
+10 15864     -1.730500e+02 1.396400e+02
+12 15864     -1.187400e+02 4.639001e+01
+13 15864     2.993000e+02 -2.262400e+02
+15 15864     -1.258400e+02 1.340400e+02
+3 15865     7.322800e+02 -3.348600e+02
+7 15865     7.304000e+02 8.129001e+01
+9 15865     6.006200e+02 7.806000e+01
+3 15866     2.482300e+02 -3.589600e+02
+8 15866     3.117200e+02 -9.528003e+01
+3 15867     1.742999e+01 -3.898500e+02
+10 15867     -1.575500e+02 4.690002e+01
+3 15868     1.365400e+02 -3.934200e+02
+4 15868     -3.596900e+02 -4.312100e+02
+6 15868     4.009003e+01 -1.044100e+02
+8 15868     2.078000e+02 -1.230400e+02
+9 15868     8.232001e+01 1.965002e+01
+3 15869     1.699700e+02 -3.932200e+02
+4 15869     -3.721100e+02 -4.538000e+02
+6 15869     7.590997e+01 -1.065600e+02
+3 15870     1.414000e+02 -3.987300e+02
+7 15870     -3.603003e+01 -5.859985e+00
+3 15871     -5.959800e+02 -4.099900e+02
+9 15871     -6.189100e+02 -4.292999e+01
+3 15872     -5.736300e+02 -4.113500e+02
+9 15872     -5.962800e+02 -4.253003e+01
+3 15873     -5.736300e+02 -4.113500e+02
+9 15873     -5.962800e+02 -4.253003e+01
+3 15874     2.049000e+02 -4.275900e+02
+4 15874     -4.062200e+02 -4.671100e+02
+8 15874     2.636000e+02 -1.551600e+02
+12 15874     1.170300e+02 -9.881000e+01
+3 15875     -2.029700e+02 -4.362700e+02
+8 15875     -6.956000e+01 -1.404000e+02
+9 15875     -2.069300e+02 -2.306000e+01
+3 15876     -5.471997e+01 -4.433199e+02
+8 15876     4.456000e+01 -1.547500e+02
+3 15877     -2.318000e+02 -4.469301e+02
+8 15877     -8.009998e+01 -1.393500e+02
+3 15878     -9.950000e+01 -4.488700e+02
+6 15878     -2.106900e+02 -1.529200e+02
+8 15878     6.979980e+00 -1.574000e+02
+3 15879     -4.557200e+02 -4.583400e+02
+5 15879     2.576100e+02 -5.694301e+02
+9 15879     -4.107900e+02 -4.495001e+01
+10 15879     -3.263400e+02 2.583100e+02
+3 15880     -4.773000e+02 -4.649100e+02
+5 15880     2.360699e+02 -5.715200e+02
+7 15880     -3.611100e+02 1.588700e+02
+8 15880     -2.313400e+02 -1.237400e+02
+13 15880     7.132001e+01 -1.686800e+02
+3 15881     1.098000e+02 -4.690699e+02
+8 15881     1.760100e+02 -1.872000e+02
+3 15882     1.772100e+02 -4.740300e+02
+4 15882     -4.241600e+02 -4.216700e+02
+6 15882     6.878003e+01 -2.048300e+02
+10 15882     -5.846002e+01 -9.537000e+01
+15 15882     6.859985e+00 -1.393400e+02
+3 15883     -5.086000e+02 -5.168600e+02
+8 15883     -2.620900e+02 -1.659400e+02
+13 15883     3.473999e+01 -2.122500e+02
+3 15884     3.162600e+02 -5.556700e+02
+7 15884     1.093900e+02 -1.536800e+02
+3 15885     -4.646002e+01 -5.621100e+02
+8 15885     4.656000e+01 -2.503600e+02
+3 15886     1.800100e+02 -5.620800e+02
+6 15886     7.431000e+01 -2.784000e+02
+9 15886     1.201600e+02 -1.211400e+02
+10 15886     -4.615002e+01 -1.579000e+02
+12 15886     7.603998e+01 -2.338900e+02
+13 15886     4.163400e+02 -4.537700e+02
+15 15886     2.260999e+01 -2.140300e+02
+3 15887     -5.335999e+01 -5.746801e+02
+8 15887     4.103998e+01 -2.577800e+02
+3 15888     1.785600e+02 -6.023199e+02
+10 15888     -4.590002e+01 -1.879000e+02
+3 15889     2.601400e+02 -6.045400e+02
+6 15889     1.582000e+02 -3.156600e+02
+8 15889     2.997000e+02 -3.023200e+02
+3 15890     2.144600e+02 -6.047100e+02
+9 15890     1.495900e+02 -1.553300e+02
+3 15891     -1.065200e+02 -6.117800e+02
+8 15891     4.299988e+00 -2.821100e+02
+9 15891     -1.194400e+02 -1.663300e+02
+13 15891     2.193800e+02 -4.126500e+02
+3 15892     -3.490500e+02 4.231500e+02
+4 15892     3.120699e+02 -5.056400e+02
+5 15892     5.565800e+02 3.803900e+02
+14 15892     4.475200e+02 2.776000e+02
+3 15893     -3.575500e+02 4.123600e+02
+5 15893     5.480100e+02 3.715100e+02
+14 15893     4.395500e+02 2.696700e+02
+3 15894     -4.689400e+02 3.044900e+02
+5 15894     3.921700e+02 2.217600e+02
+11 15894     1.244300e+02 3.660999e+01
+13 15894     1.685000e+02 4.758600e+02
+14 15894     2.918700e+02 1.234000e+02
+3 15895     -4.340400e+02 3.021500e+02
+4 15895     2.219800e+02 -3.981700e+02
+5 15895     4.243600e+02 2.170800e+02
+11 15895     1.468700e+02 3.426001e+01
+13 15895     1.945200e+02 4.739400e+02
+14 15895     3.220300e+02 1.199700e+02
+3 15896     -5.304600e+02 2.910700e+02
+11 15896     6.382001e+01 1.757001e+01
+13 15896     1.121400e+02 4.551100e+02
+14 15896     2.261300e+02 1.015900e+02
+3 15897     -3.816600e+02 2.532800e+02
+11 15897     1.916400e+02 -5.450012e+00
+14 15897     3.724600e+02 7.146997e+01
+3 15898     -2.302000e+02 2.467700e+02
+11 15898     3.521100e+02 6.510010e+00
+13 15898     3.855100e+02 4.465400e+02
+14 15898     5.474700e+02 8.389001e+01
+3 15899     -2.442800e+02 2.449200e+02
+5 15899     6.413400e+02 1.733300e+02
+3 15900     1.297200e+02 2.316700e+02
+11 15900     6.072200e+02 -7.235999e+01
+3 15901     -4.105800e+02 2.069100e+02
+4 15901     1.637200e+02 -3.980900e+02
+6 15901     -4.975800e+02 8.704700e+02
+8 15901     -1.561800e+02 4.260000e+02
+11 15901     1.584500e+02 -4.673999e+01
+13 15901     2.086500e+02 3.896200e+02
+14 15901     3.381100e+02 2.389001e+01
+3 15902     1.255200e+02 1.832200e+02
+6 15902     1.785100e+02 8.211400e+02
+8 15902     2.907400e+02 4.071800e+02
+9 15902     7.946997e+01 5.373000e+02
+11 15902     6.015000e+02 -1.175300e+02
+13 15902     6.707800e+02 3.308700e+02
+3 15903     -7.784500e+02 1.604300e+02
+4 15903     1.414900e+02 -1.678900e+02
+5 15903     5.810999e+01 4.158002e+01
+8 15903     -4.662500e+02 3.695100e+02
+11 15903     -1.754700e+02 -1.150200e+02
+13 15903     -1.012900e+02 3.102700e+02
+14 15903     -3.053003e+01 -5.540997e+01
+3 15904     -7.130300e+02 1.446700e+02
+11 15904     -1.214400e+02 -1.222100e+02
+3 15905     3.085800e+02 1.443400e+02
+6 15905     3.819000e+02 7.024200e+02
+8 15905     4.376500e+02 3.654600e+02
+9 15905     2.442200e+02 5.039700e+02
+11 15905     7.090000e+02 -2.295200e+02
+3 15906     -3.046000e+02 1.208900e+02
+4 15906     1.123200e+02 -4.690699e+02
+6 15906     -3.458000e+02 7.812000e+02
+8 15906     -6.170001e+01 3.551500e+02
+11 15906     2.709500e+02 -1.061600e+02
+3 15907     2.381000e+02 1.151400e+02
+6 15907     3.111400e+02 7.128300e+02
+8 15907     3.841800e+02 3.447100e+02
+9 15907     1.815100e+02 4.758500e+02
+13 15907     7.627800e+02 2.473700e+02
+3 15908     -9.265002e+01 1.020600e+02
+5 15908     8.224200e+02 3.803998e+01
+6 15908     -5.990002e+01 8.140900e+02
+8 15908     1.257200e+02 3.478400e+02
+11 15908     5.129100e+02 -9.996002e+01
+13 15908     5.182200e+02 3.385300e+02
+3 15909     -2.838300e+02 6.938000e+01
+4 15909     8.307001e+01 -4.792200e+02
+5 15909     5.756899e+02 -8.150024e+00
+6 15909     -3.136400e+02 7.243100e+02
+8 15909     -4.300000e+01 3.147900e+02
+9 15909     -2.829500e+02 4.227800e+02
+11 15909     2.923600e+02 -1.448000e+02
+3 15910     -6.389800e+02 5.432001e+01
+5 15910     1.867700e+02 -4.309003e+01
+3 15911     2.182200e+02 3.307001e+01
+8 15911     3.646800e+02 2.747300e+02
+3 15912     1.270700e+02 2.646002e+01
+6 15912     1.741200e+02 6.202300e+02
+8 15912     2.889300e+02 2.717500e+02
+9 15912     8.276001e+01 3.933500e+02
+3 15913     1.270700e+02 2.646002e+01
+6 15913     1.741200e+02 6.202300e+02
+8 15913     2.889300e+02 2.717500e+02
+9 15913     8.276001e+01 3.933500e+02
+3 15914     3.503900e+02 -3.229980e+00
+8 15914     4.659700e+02 2.344200e+02
+3 15915     -5.547100e+02 -2.510999e+01
+14 15915     1.774301e+02 -2.000600e+02
+3 15916     4.874500e+02 -2.667999e+01
+7 15916     5.717600e+02 4.533200e+02
+8 15916     5.865601e+02 2.055900e+02
+3 15917     4.460999e+01 -4.032001e+01
+8 15917     2.333600e+02 2.251000e+02
+3 15918     2.287500e+02 -5.146997e+01
+6 15918     2.894500e+02 5.088600e+02
+7 15918     3.633199e+02 5.109000e+02
+8 15918     3.710400e+02 2.015900e+02
+9 15918     1.734800e+02 3.246200e+02
+12 15918     3.905900e+02 5.030400e+02
+13 15918     7.304800e+02 1.012800e+02
+3 15919     3.572200e+02 -7.617999e+01
+6 15919     4.193500e+02 4.256400e+02
+8 15919     4.706801e+02 1.701500e+02
+9 15919     2.861100e+02 3.030900e+02
+13 15919     8.159700e+02 2.664001e+01
+3 15920     3.080000e+02 -8.976001e+01
+6 15920     3.620400e+02 4.196900e+02
+12 15920     4.496600e+02 4.276900e+02
+3 15921     3.673800e+02 -1.149100e+02
+6 15921     4.266600e+02 3.790200e+02
+8 15921     4.774301e+02 1.358600e+02
+9 15921     2.936801e+02 2.684900e+02
+10 15921     6.123600e+02 4.573200e+02
+12 15921     5.107100e+02 3.873000e+02
+13 15921     8.187200e+02 -9.229980e+00
+3 15922     3.499800e+02 -1.219000e+02
+6 15922     4.056900e+02 3.748500e+02
+8 15922     4.623300e+02 1.314200e+02
+9 15922     2.782500e+02 2.624700e+02
+12 15922     4.908400e+02 3.832100e+02
+15 15922     7.905500e+02 5.182800e+02
+3 15923     3.499800e+02 -1.219000e+02
+6 15923     4.056900e+02 3.748500e+02
+8 15923     4.623300e+02 1.314200e+02
+12 15923     4.908400e+02 3.832100e+02
+15 15923     7.905500e+02 5.182800e+02
+3 15924     3.499800e+02 -1.219000e+02
+12 15924     4.908400e+02 3.832100e+02
+3 15925     -3.916600e+02 -1.522400e+02
+5 15925     4.313900e+02 -2.235600e+02
+8 15925     -1.324900e+02 1.351900e+02
+12 15925     -2.605200e+02 4.304000e+02
+13 15925     2.142400e+02 1.112900e+02
+14 15925     3.425699e+02 -3.088400e+02
+3 15926     4.677500e+02 -1.544600e+02
+12 15926     6.197000e+02 3.266800e+02
+3 15927     3.431400e+02 -1.578200e+02
+8 15927     4.549399e+02 9.842999e+01
+9 15927     2.722800e+02 2.280900e+02
+10 15927     5.775900e+02 4.174600e+02
+15 15927     7.735100e+02 4.724600e+02
+3 15928     3.431400e+02 -1.578200e+02
+6 15928     3.966500e+02 3.385300e+02
+8 15928     4.557800e+02 1.036800e+02
+9 15928     2.730400e+02 2.332300e+02
+10 15928     5.775900e+02 4.174600e+02
+12 15928     4.822800e+02 3.474400e+02
+15 15928     7.735100e+02 4.724600e+02
+3 15929     -3.922900e+02 -1.650100e+02
+8 15929     -1.324500e+02 1.246000e+02
+3 15930     -3.922900e+02 -1.650100e+02
+8 15930     -1.324500e+02 1.246000e+02
+12 15930     -2.596800e+02 4.170000e+02
+3 15931     -3.016600e+02 -1.689700e+02
+7 15931     -9.345001e+01 4.924500e+02
+8 15931     -5.689001e+01 1.227600e+02
+9 15931     -2.864200e+02 2.095400e+02
+12 15931     -1.531900e+02 4.250800e+02
+3 15932     -3.915900e+02 -1.764100e+02
+8 15932     -1.321200e+02 1.163400e+02
+12 15932     -2.586600e+02 4.076800e+02
+3 15933     -3.915900e+02 -1.764100e+02
+8 15933     -1.321200e+02 1.163400e+02
+12 15933     -2.586600e+02 4.076800e+02
+3 15934     -3.742200e+02 -1.785300e+02
+8 15934     -1.168700e+02 1.168300e+02
+3 15935     5.017600e+02 -2.182900e+02
+7 15935     5.495100e+02 2.532300e+02
+9 15935     4.094500e+02 1.780400e+02
+3 15936     7.155601e+02 -2.199000e+02
+7 15936     7.438199e+02 1.879700e+02
+3 15937     -9.448999e+01 -2.656200e+02
+5 15937     5.195000e+02 -5.798101e+02
+13 15937     2.809301e+02 -1.603900e+02
+3 15938     1.868400e+02 -2.722600e+02
+4 15938     -3.040400e+02 -5.056000e+02
+6 15938     1.082200e+02 3.437000e+01
+9 15938     1.243700e+02 1.240600e+02
+12 15938     1.244500e+02 8.434003e+01
+3 15939     -7.144000e+01 -2.943100e+02
+6 15939     -1.670700e+02 3.538000e+01
+8 15939     4.703998e+01 -2.567999e+01
+9 15939     -9.600000e+01 1.019200e+02
+3 15940     7.393000e+02 -3.216800e+02
+7 15940     7.397400e+02 9.048001e+01
+9 15940     6.071400e+02 8.879001e+01
+3 15941     2.490800e+02 -3.255500e+02
+10 15941     1.032500e+02 5.977002e+01
+3 15942     1.351000e+02 -3.287200e+02
+4 15942     -3.212000e+02 -4.510100e+02
+6 15942     4.477002e+01 -3.176001e+01
+12 15942     5.600000e+01 2.026001e+01
+3 15943     7.486000e+02 -3.497100e+02
+7 15943     7.412000e+02 6.398999e+01
+9 15943     6.126200e+02 6.551001e+01
+3 15944     7.031801e+02 -3.508300e+02
+7 15944     7.002500e+02 7.717999e+01
+9 15944     5.752200e+02 6.453998e+01
+3 15945     1.933002e+01 -3.581300e+02
+13 15945     3.346200e+02 -2.655600e+02
+3 15946     -2.092700e+02 -3.677800e+02
+6 15946     -3.063500e+02 -1.771002e+01
+3 15947     -5.865200e+02 -3.730800e+02
+9 15947     -6.144600e+02 -1.139001e+01
+3 15948     6.015002e+01 -3.837200e+02
+7 15948     -9.569000e+01 2.796002e+01
+13 15948     3.589399e+02 -2.952100e+02
+3 15949     3.102700e+02 -4.059800e+02
+7 15949     1.326200e+02 -2.654999e+01
+3 15950     -2.248300e+02 -4.079800e+02
+9 15950     -2.256400e+02 1.650024e+00
+3 15951     7.297400e+02 -4.113101e+02
+7 15951     7.089800e+02 1.841998e+01
+9 15951     5.938900e+02 1.370001e+01
+3 15952     7.286400e+02 -4.186500e+02
+7 15952     7.068600e+02 1.308002e+01
+3 15953     7.027000e+02 -4.362100e+02
+7 15953     6.806500e+02 6.799988e+00
+3 15954     -4.942900e+02 -4.570699e+02
+5 15954     2.275500e+02 -5.585000e+02
+7 15954     -3.699700e+02 1.689700e+02
+8 15954     -2.425400e+02 -1.169500e+02
+13 15954     6.316998e+01 -1.588300e+02
+15 15954     -3.264300e+02 2.788400e+02
+3 15955     -5.202002e+01 -4.588700e+02
+8 15955     4.354999e+01 -1.694600e+02
+3 15956     1.887600e+02 -4.651200e+02
+13 15956     4.306000e+02 -3.925300e+02
+3 15957     4.497998e+01 -5.079900e+02
+6 15957     -6.721997e+01 -2.269301e+02
+8 15957     1.206000e+02 -2.150800e+02
+12 15957     -6.834998e+01 -1.726900e+02
+3 15958     -4.248000e+02 -5.415900e+02
+7 15958     -3.523600e+02 6.701001e+01
+8 15958     -2.028900e+02 -1.900400e+02
+13 15958     8.234998e+01 -2.479200e+02
+3 15959     4.542999e+01 -5.851899e+02
+6 15959     -6.388000e+01 -2.910100e+02
+3 15960     4.542999e+01 -5.851899e+02
+6 15960     -6.388000e+01 -2.910100e+02
+3 15961     -2.141998e+01 -5.883101e+02
+6 15961     -1.297800e+02 -2.863400e+02
+3 15962     -5.695500e+02 3.849500e+02
+13 15962     9.734003e+01 5.525500e+02
+14 15962     2.104600e+02 2.105800e+02
+3 15963     -5.534400e+02 3.746200e+02
+13 15963     1.082200e+02 5.425500e+02
+3 15964     -4.002400e+02 3.736500e+02
+5 15964     4.791200e+02 3.039100e+02
+13 15964     2.379600e+02 5.504300e+02
+14 15964     3.735699e+02 2.050000e+02
+3 15965     -7.173200e+02 3.465300e+02
+14 15965     4.213000e+01 1.266300e+02
+3 15966     -3.174800e+02 3.233300e+02
+4 15966     2.412300e+02 -5.032000e+02
+13 15966     3.161700e+02 5.156500e+02
+3 15967     -4.027200e+02 3.100300e+02
+14 15967     3.609000e+02 1.335800e+02
+3 15968     -4.027200e+02 3.100300e+02
+14 15968     3.609000e+02 1.335800e+02
+3 15969     -4.325100e+02 2.879200e+02
+4 15969     2.114900e+02 -3.951500e+02
+11 15969     1.449600e+02 1.929999e+01
+3 15970     -4.109200e+02 2.661500e+02
+5 15970     4.412700e+02 1.733000e+02
+3 15971     -4.615300e+02 2.199700e+02
+4 15971     1.699301e+02 -3.612300e+02
+5 15971     3.801801e+02 1.224500e+02
+3 15972     1.712200e+02 1.899300e+02
+6 15972     2.353500e+02 8.218200e+02
+8 15972     3.296000e+02 4.123000e+02
+9 15972     1.205800e+02 5.450900e+02
+11 15972     6.387900e+02 -1.204000e+02
+13 15972     7.123900e+02 3.295700e+02
+3 15973     -3.782100e+02 1.722700e+02
+11 15973     1.931900e+02 -7.134003e+01
+13 15973     2.378900e+02 3.641300e+02
+14 15973     3.725900e+02 -6.590027e+00
+3 15974     -5.345000e+02 6.820001e+01
+4 15974     9.159998e+01 -3.001200e+02
+5 15974     2.941801e+02 -2.510999e+01
+8 15974     -2.593700e+02 3.061600e+02
+11 15974     3.828003e+01 -1.642600e+02
+3 15975     -9.919983e+00 4.047998e+01
+14 15975     8.172300e+02 -9.965002e+01
+3 15976     -3.212000e+02 -8.250000e+00
+5 15976     5.270601e+02 -8.490002e+01
+3 15977     1.371000e+02 -2.923999e+01
+6 15977     1.825800e+02 5.526400e+02
+12 15977     2.925699e+02 5.408900e+02
+3 15978     -4.079400e+02 -3.302002e+01
+6 15978     -4.654400e+02 5.710300e+02
+8 15978     -1.486600e+02 2.298500e+02
+9 15978     -3.890600e+02 3.258100e+02
+13 15978     2.039800e+02 2.003300e+02
+3 15979     3.132800e+02 -3.463000e+01
+8 15979     4.347200e+02 2.080700e+02
+3 15980     -1.865400e+02 -1.025900e+02
+8 15980     4.415997e+01 1.788200e+02
+3 15981     1.989301e+02 -1.042400e+02
+6 15981     2.505500e+02 4.522500e+02
+10 15981     5.002200e+02 5.725500e+02
+3 15982     -1.715800e+02 -1.108200e+02
+5 15982     6.965300e+02 -1.831900e+02
+3 15983     2.773400e+02 -1.459700e+02
+7 15983     3.610100e+02 3.810900e+02
+8 15983     3.999000e+02 1.159000e+02
+9 15983     2.153800e+02 2.401200e+02
+3 15984     3.358400e+02 -1.530300e+02
+6 15984     3.857600e+02 3.415300e+02
+7 15984     4.103800e+02 3.591400e+02
+8 15984     4.492400e+02 1.065000e+02
+9 15984     2.648400e+02 2.343100e+02
+10 15984     5.702600e+02 4.252900e+02
+12 15984     4.727200e+02 3.510000e+02
+13 15984     7.838000e+02 -3.304999e+01
+3 15985     5.955500e+02 -1.640600e+02
+7 15985     6.453900e+02 2.768200e+02
+3 15986     7.169700e+02 -1.838900e+02
+7 15986     7.541300e+02 2.213300e+02
+3 15987     3.468500e+02 -1.859800e+02
+8 15987     4.561000e+02 7.701999e+01
+3 15988     7.109500e+02 -2.052500e+02
+7 15988     7.434000e+02 2.038400e+02
+3 15989     -5.784998e+01 -2.285800e+02
+5 15989     5.610000e+02 -5.556000e+02
+3 15990     1.352500e+02 -2.413100e+02
+12 15990     7.740997e+01 1.208500e+02
+15 15990     8.321997e+01 1.745700e+02
+3 15991     1.446900e+02 -2.524500e+02
+7 15991     9.500122e-01 1.357900e+02
+10 15991     5.719971e+00 1.571900e+02
+13 15991     4.500800e+02 -2.074800e+02
+15 15991     7.948999e+01 1.589400e+02
+3 15992     6.944700e+02 -2.556500e+02
+7 15992     7.141100e+02 1.629100e+02
+9 15992     5.722800e+02 1.459600e+02
+3 15993     -6.425000e+01 -2.685400e+02
+5 15993     5.408400e+02 -5.975500e+02
+6 15993     -1.587500e+02 6.437000e+01
+7 15993     -1.654700e+02 1.666200e+02
+8 15993     5.348999e+01 -2.940002e+00
+13 15993     2.962500e+02 -1.713600e+02
+3 15994     9.971002e+01 -2.754300e+02
+10 15994     -4.796997e+01 1.443400e+02
+3 15995     1.628400e+02 -2.764700e+02
+4 15995     -2.991700e+02 -4.861400e+02
+7 15995     1.104999e+01 1.096900e+02
+10 15995     1.496002e+01 1.262000e+02
+13 15995     4.593800e+02 -2.308100e+02
+3 15996     1.541998e+01 -2.902700e+02
+6 15996     -7.950000e+01 2.171002e+01
+12 15996     -6.369000e+01 7.731000e+01
+13 15996     3.428199e+02 -2.117200e+02
+3 15997     2.454500e+02 -3.113900e+02
+6 15997     1.713000e+02 -9.739990e+00
+10 15997     1.033500e+02 7.434998e+01
+13 15997     5.258600e+02 -2.713800e+02
+15 15997     1.957600e+02 6.060999e+01
+3 15998     -2.240002e+01 -3.212700e+02
+4 15998     -2.635800e+02 -3.652800e+02
+7 15998     -1.473100e+02 1.034000e+02
+9 15998     -5.550000e+01 7.900000e+01
+10 15998     -1.591600e+02 1.379300e+02
+15 15998     -1.102000e+02 1.336200e+02
+3 15999     -2.166600e+02 -3.870900e+02
+8 15999     -7.265997e+01 -9.490002e+01
+3 16000     -5.820000e+02 -3.915200e+02
+9 16000     -6.077200e+02 -2.703003e+01
+3 16001     -2.064100e+02 -4.140000e+02
+9 16001     -2.102300e+02 -4.109985e+00
+3 16002     7.384900e+02 -4.197600e+02
+7 16002     7.161700e+02 8.719971e+00
+3 16003     7.384900e+02 -4.197600e+02
+7 16003     7.161700e+02 8.719971e+00
+3 16004     -4.483100e+02 -4.310000e+02
+7 16004     -3.252200e+02 1.934600e+02
+13 16004     1.013000e+02 -1.413400e+02
+3 16005     -1.127800e+02 -4.378199e+02
+6 16005     -2.235700e+02 -1.362400e+02
+7 16005     -2.449700e+02 6.650024e+00
+10 16005     -2.767300e+02 3.871002e+01
+12 16005     -2.123700e+02 -7.521002e+01
+15 16005     -2.460700e+02 1.535999e+01
+3 16006     -3.488000e+01 -4.591600e+02
+8 16006     5.720001e+01 -1.705200e+02
+3 16007     2.481100e+02 -4.605000e+02
+8 16007     2.966700e+02 -1.869100e+02
+3 16008     3.015002e+01 -4.673199e+02
+8 16008     1.095400e+02 -1.814700e+02
+3 16009     2.258800e+02 -5.447200e+02
+6 16009     1.207700e+02 -2.660400e+02
+8 16009     2.721700e+02 -2.536700e+02
+3 16010     -4.374100e+02 -5.513101e+02
+7 16010     -3.675100e+02 5.825000e+01
+13 16010     6.953003e+01 -2.542000e+02
+15 16010     -3.447400e+02 1.237100e+02
+3 16011     2.360999e+01 -5.795500e+02
+6 16011     -8.407001e+01 -2.860900e+02
+7 16011     -1.465700e+02 -1.303800e+02
+15 16011     -1.299500e+02 -1.735600e+02
+3 16012     -3.951900e+02 3.186100e+02
+11 16012     1.965200e+02 5.801999e+01
+13 16012     2.370400e+02 4.983900e+02
+14 16012     3.723000e+02 1.463200e+02
+3 16013     -3.584300e+02 3.089500e+02
+4 16013     2.296600e+02 -4.598199e+02
+13 16013     2.694800e+02 4.933700e+02
+14 16013     4.099500e+02 1.398600e+02
+3 16014     -6.614500e+02 2.008800e+02
+4 16014     1.606100e+02 -2.341300e+02
+5 16014     1.719500e+02 8.715002e+01
+13 16014     -1.007001e+01 3.538600e+02
+14 16014     7.932001e+01 -9.489990e+00
+3 16015     3.675900e+02 1.879500e+02
+6 16015     4.578600e+02 7.467700e+02
+3 16016     -2.194000e+02 1.812300e+02
+4 16016     1.506500e+02 -5.512500e+02
+13 16016     3.935500e+02 3.927900e+02
+14 16016     5.581899e+02 2.201001e+01
+3 16017     4.137300e+02 1.544900e+02
+8 16017     5.316700e+02 3.716000e+02
+3 16018     -4.223800e+02 1.294000e+02
+8 16018     -1.642700e+02 3.568200e+02
+3 16019     1.196700e+02 1.283900e+02
+6 16019     1.692200e+02 7.492600e+02
+8 16019     2.845100e+02 3.596000e+02
+9 16019     7.458002e+01 4.862500e+02
+13 16019     6.585601e+02 2.820000e+02
+3 16020     -8.584003e+01 8.648999e+01
+6 16020     -4.896997e+01 7.932900e+02
+13 16020     5.252600e+02 3.238200e+02
+3 16021     -1.307200e+02 2.459998e+01
+13 16021     4.728000e+02 2.687000e+02
+14 16021     6.595500e+02 -1.261600e+02
+3 16022     4.250400e+02 -5.057001e+01
+7 16022     5.071600e+02 4.365600e+02
+12 16022     5.805100e+02 4.529700e+02
+3 16023     -3.669600e+02 -1.210000e+02
+12 16023     -2.322500e+02 4.671500e+02
+3 16024     -3.712300e+02 -1.339500e+02
+8 16024     -1.145400e+02 1.484400e+02
+3 16025     7.114001e+01 -2.063800e+02
+8 16025     1.681500e+02 4.276999e+01
+3 16026     7.338400e+02 -2.114900e+02
+7 16026     7.641801e+02 1.896800e+02
+3 16027     5.464001e+01 -2.148400e+02
+4 16027     -2.259200e+02 -4.374200e+02
+6 16027     -3.103003e+01 1.100200e+02
+12 16027     -9.409973e+00 1.636300e+02
+3 16028     1.820300e+02 -2.163800e+02
+10 16028     6.789001e+01 1.974100e+02
+15 16028     1.538101e+02 2.060200e+02
+3 16029     3.661700e+02 -2.163100e+02
+9 16029     2.912300e+02 1.804200e+02
+10 16029     5.867100e+02 3.433900e+02
+13 16029     8.014800e+02 -9.373999e+01
+3 16030     5.510999e+01 -2.349600e+02
+4 16030     -2.386300e+02 -4.304900e+02
+6 16030     -3.108002e+01 8.535999e+01
+7 16030     -7.063000e+01 1.681400e+02
+9 16030     1.410999e+01 1.553200e+02
+13 16030     3.855500e+02 -1.758700e+02
+3 16031     5.510999e+01 -2.349600e+02
+4 16031     -2.386300e+02 -4.304900e+02
+7 16031     -7.063000e+01 1.681400e+02
+3 16032     -5.712000e+01 -2.451400e+02
+5 16032     5.551700e+02 -5.758500e+02
+8 16032     6.128003e+01 1.554001e+01
+13 16032     3.071500e+02 -1.555500e+02
+3 16033     -1.213400e+02 -2.926700e+02
+8 16033     1.152002e+01 -1.891000e+01
+3 16034     -6.808002e+01 -3.065500e+02
+6 16034     -1.630800e+02 1.901001e+01
+8 16034     4.963000e+01 -3.670001e+01
+12 16034     -1.392300e+02 7.514001e+01
+3 16035     2.553500e+02 -3.397200e+02
+7 16035     9.594000e+01 4.428998e+01
+15 16035     2.018199e+02 2.587000e+01
+3 16036     -5.802600e+02 -3.569100e+02
+9 16036     -6.097100e+02 1.989990e+00
+3 16037     1.347500e+02 -4.022900e+02
+6 16037     3.953003e+01 -1.158100e+02
+10 16037     -5.685999e+01 -4.080017e+00
+12 16037     4.513000e+01 -6.546997e+01
+3 16038     -1.634998e+01 -4.614800e+02
+7 16038     -1.834200e+02 -4.033002e+01
+8 16038     7.221002e+01 -1.737400e+02
+10 16038     -2.155400e+02 -2.371002e+01
+12 16038     -1.281700e+02 -1.202000e+02
+15 16038     -1.757400e+02 -5.696002e+01
+3 16039     6.245001e+01 -4.698400e+02
+8 16039     1.355600e+02 -1.854200e+02
+3 16040     7.604999e+01 -4.704900e+02
+8 16040     1.461400e+02 -1.868300e+02
+3 16041     1.325100e+02 -5.554500e+02
+6 16041     2.134998e+01 -2.744600e+02
+7 16041     -7.128003e+01 -1.371600e+02
+8 16041     1.909500e+02 -2.577200e+02
+12 16041     1.958002e+01 -2.265400e+02
+13 16041     3.745699e+02 -4.424800e+02
+3 16042     -1.492100e+02 -5.647900e+02
+6 16042     -2.506500e+02 -2.389200e+02
+3 16043     -4.514500e+02 -5.790400e+02
+9 16043     -4.026800e+02 -1.447000e+02
+3 16044     -4.562300e+02 -5.895100e+02
+7 16044     -3.943200e+02 2.082001e+01
+9 16044     -4.060700e+02 -1.529300e+02
+13 16044     4.602002e+01 -2.848800e+02
+3 16045     -2.624800e+02 2.426200e+02
+11 16045     3.199500e+02 3.119995e+00
+13 16045     3.528400e+02 4.391300e+02
+3 16046     -4.083700e+02 2.210100e+02
+4 16046     1.706300e+02 -4.004700e+02
+8 16046     -1.562800e+02 4.330100e+02
+11 16046     1.595100e+02 -3.745001e+01
+3 16047     -6.899500e+02 2.002400e+02
+4 16047     1.604800e+02 -2.173900e+02
+5 16047     1.424600e+02 8.532001e+01
+13 16047     -3.259003e+01 3.499500e+02
+14 16047     5.154999e+01 -1.228998e+01
+3 16048     -7.845700e+02 1.957300e+02
+4 16048     1.583600e+02 -1.670600e+02
+5 16048     5.492999e+01 7.294000e+01
+13 16048     -1.056700e+02 3.359400e+02
+3 16049     -3.559998e+00 9.032001e+01
+9 16049     -2.817999e+01 4.510000e+02
+14 16049     8.326500e+02 -4.748999e+01
+3 16050     5.223700e+02 -9.884003e+01
+7 16050     5.882200e+02 3.609100e+02
+9 16050     4.280699e+02 2.851000e+02
+10 16050     7.825800e+02 4.060500e+02
+3 16051     -5.697998e+01 -2.051000e+02
+5 16051     5.723500e+02 -5.256600e+02
+13 16051     3.200200e+02 -1.159200e+02
+3 16052     -1.104000e+02 -2.721200e+02
+8 16052     2.054999e+01 -3.369995e+00
+3 16053     -6.302600e+02 -3.918400e+02
+9 16053     -6.544300e+02 -3.290002e+01
+3 16054     -5.743000e+02 -4.835300e+02
+9 16054     -5.885300e+02 -1.048700e+02
+3 16055     -1.123400e+02 -5.456000e+02
+9 16055     -1.270700e+02 -1.127800e+02
+3 16056     2.403003e+01 -5.698700e+02
+7 16056     -1.481700e+02 -1.243300e+02
+10 16056     -1.795800e+02 -1.187400e+02
+15 16056     -1.317000e+02 -1.672100e+02
+3 16057     3.194700e+02 1.365500e+02
+8 16057     4.464700e+02 3.565400e+02
+9 16057     2.526600e+02 4.969200e+02
+3 16058     -2.168800e+02 1.070200e+02
+4 16058     9.906000e+01 -5.413800e+02
+6 16058     -2.228200e+02 7.744400e+02
+8 16058     1.877002e+01 3.393700e+02
+13 16058     3.919100e+02 3.289300e+02
+3 16059     -5.567999e+01 6.369995e+00
+6 16059     -7.659973e+00 7.020400e+02
+8 16059     1.588700e+02 2.698000e+02
+9 16059     -7.490997e+01 3.733800e+02
+13 16059     5.488600e+02 2.597700e+02
+14 16059     7.528800e+02 -1.395600e+02
+3 16060     -3.954100e+02 8.099976e-01
+4 16060     5.108002e+01 -3.845700e+02
+6 16060     -4.542900e+02 6.131800e+02
+11 16060     1.710700e+02 -2.074500e+02
+12 16060     -2.807900e+02 5.898200e+02
+3 16061     -9.557001e+01 -6.416998e+01
+11 16061     5.054900e+02 -2.393000e+02
+3 16062     -3.093400e+02 -1.237000e+02
+4 16062     -1.996997e+01 -4.348400e+02
+8 16062     -6.285999e+01 1.600500e+02
+13 16062     2.894500e+02 1.369800e+02
+3 16063     -2.960600e+02 -1.608800e+02
+13 16063     2.987500e+02 1.080400e+02
+14 16063     4.471700e+02 -3.164000e+02
+3 16064     1.022100e+02 -2.364200e+02
+4 16064     -2.551500e+02 -4.581899e+02
+6 16064     1.737000e+01 7.657001e+01
+8 16064     1.917500e+02 1.475000e+01
+12 16064     3.390002e+01 1.299600e+02
+15 16064     3.635999e+01 1.934600e+02
+3 16065     1.220900e+02 -4.786000e+02
+15 16065     -5.860999e+01 -1.268700e+02
+3 16066     -3.132000e+02 2.658400e+02
+13 16066     3.031200e+02 4.527000e+02
+14 16066     4.498101e+02 9.320001e+01
+3 16067     -1.107900e+02 1.696997e+01
+11 16067     4.863199e+02 -1.737700e+02
+3 16068     2.131100e+02 -2.374100e+02
+6 16068     1.420700e+02 7.963000e+01
+8 16068     2.877800e+02 1.113000e+01
+12 16068     1.628100e+02 1.267600e+02
+3 16069     6.440002e+00 -3.142900e+02
+7 16069     -1.260900e+02 1.020300e+02
+3 16070     -6.251400e+02 -3.467200e+02
+9 16070     -6.566400e+02 7.609985e+00
+3 16071     7.064001e+01 -3.930300e+02
+7 16071     -9.669000e+01 1.427002e+01
+3 16072     7.327500e+02 -3.999500e+02
+7 16072     7.146899e+02 2.878998e+01
+3 16073     3.347200e+02 -5.010000e+02
+8 16073     3.725700e+02 -2.224200e+02
+3 16074     3.347200e+02 -5.010000e+02
+6 16074     2.489500e+02 -2.195601e+02
+8 16074     3.725700e+02 -2.224200e+02
+3 16075     -1.470900e+02 -5.677000e+02
+4 16075     -3.501200e+02 -2.608000e+02
+8 16075     -2.490002e+01 -2.453900e+02
+9 16075     -1.535800e+02 -1.320200e+02
+3 16076     -3.339300e+02 2.355900e+02
+4 16076     1.794600e+02 -4.593000e+02
+13 16076     2.830500e+02 4.250900e+02
+14 16076     4.261700e+02 6.410999e+01
+3 16077     -6.091100e+02 -3.819300e+02
+9 16077     -6.352800e+02 -2.034003e+01
+3 16078     -1.990000e+02 4.556000e+01
+4 16078     6.338000e+01 -5.461300e+02
+5 16078     6.771700e+02 -2.888000e+01
+6 16078     -2.012500e+02 7.129300e+02
+8 16078     3.227002e+01 2.979100e+02
+13 16078     4.065400e+02 2.801900e+02
+3 16079     -4.919983e+00 -2.764600e+02
+6 16079     -1.018100e+02 5.303003e+01
+7 16079     -1.287000e+02 1.501700e+02
+8 16079     9.648999e+01 -8.029999e+00
+12 16079     -8.314001e+01 1.092900e+02
+13 16079     3.327000e+02 -1.903200e+02
+3 16080     -3.745100e+02 1.798300e+02
+11 16080     1.953300e+02 -6.933002e+01
+13 16080     2.346100e+02 3.747600e+02
+14 16080     3.709000e+02 4.609985e+00
+3 16081     -6.375900e+02 1.320000e+02
+8 16081     -3.474800e+02 3.540400e+02
+3 16082     -2.707300e+02 3.589001e+01
+4 16082     6.427002e+01 -4.895500e+02
+3 16083     -5.355800e+02 1.742700e+02
+11 16083     4.167999e+01 -7.515002e+01
+4 16084     6.844000e+01 3.584500e+02
+5 16084     -6.110700e+02 -3.201400e+02
+4 16085     -1.616900e+02 3.554600e+02
+13 16085     -5.394600e+02 -3.663900e+02
+4 16086     2.594000e+01 9.113000e+01
+11 16086     -5.175800e+02 -3.112600e+02
+13 16086     -5.301400e+02 7.092999e+01
+14 16086     -5.659600e+02 -3.136100e+02
+4 16087     2.702002e+01 8.595999e+01
+11 16087     -5.081700e+02 -3.101000e+02
+13 16087     -5.214900e+02 7.402002e+01
+14 16087     -5.550800e+02 -3.103500e+02
+4 16088     7.702002e+01 6.954999e+01
+13 16088     -5.183300e+02 1.651300e+02
+14 16088     -5.381900e+02 -2.007400e+02
+4 16089     2.067500e+02 5.623999e+01
+5 16089     -4.394800e+02 1.593000e+02
+13 16089     -5.253000e+02 3.863900e+02
+4 16090     1.849399e+02 3.525000e+01
+5 16090     -3.788500e+02 1.107900e+02
+14 16090     -4.568300e+02 7.679993e+00
+4 16091     4.003003e+01 3.382001e+01
+5 16091     -3.562200e+02 -1.742000e+02
+4 16092     2.161500e+02 2.640002e+01
+5 16092     -3.687700e+02 1.775100e+02
+13 16092     -4.670500e+02 4.050100e+02
+14 16092     -4.472500e+02 7.275000e+01
+4 16093     1.546300e+02 2.437000e+01
+5 16093     -3.429800e+02 4.959998e+01
+13 16093     -4.342200e+02 2.966900e+02
+4 16094     2.008600e+02 2.057001e+01
+5 16094     -3.358600e+02 1.379900e+02
+4 16095     1.829200e+02 1.910999e+01
+5 16095     -3.312800e+02 1.047000e+02
+4 16096     1.262100e+02 1.692999e+01
+5 16096     -3.186300e+02 -7.070007e+00
+13 16096     -4.090400e+02 2.499900e+02
+14 16096     -3.981500e+02 -1.082700e+02
+4 16097     2.835000e+02 1.533002e+01
+5 16097     -3.773300e+02 3.183500e+02
+4 16098     -5.919983e+00 1.000000e+01
+13 16098     -3.558800e+02 3.723999e+01
+14 16098     -3.598700e+02 -3.677900e+02
+4 16099     8.451001e+01 5.609985e+00
+5 16099     -2.811900e+02 -8.877002e+01
+4 16100     2.451700e+02 -2.880005e+00
+14 16100     -3.961900e+02 1.312600e+02
+4 16101     2.451700e+02 -2.880005e+00
+11 16101     -4.019600e+02 3.859000e+01
+14 16101     -3.961900e+02 1.312600e+02
+4 16102     2.360400e+02 -5.429993e+00
+11 16102     -3.957800e+02 4.145001e+01
+13 16102     -4.202600e+02 4.462700e+02
+4 16103     2.405100e+02 -8.679993e+00
+5 16103     -3.046700e+02 2.289500e+02
+13 16103     -4.158300e+02 4.525300e+02
+14 16103     -3.834100e+02 1.231300e+02
+4 16104     2.537900e+02 -8.989990e+00
+5 16104     -3.085300e+02 2.554600e+02
+11 16104     -3.921900e+02 5.250000e+01
+13 16104     -4.212700e+02 4.758700e+02
+14 16104     -3.868700e+02 1.492200e+02
+4 16105     1.535200e+02 -1.069000e+01
+5 16105     -2.454000e+02 4.085999e+01
+13 16105     -3.537200e+02 2.946500e+02
+14 16105     -3.283300e+02 -6.020001e+01
+4 16106     1.535200e+02 -1.069000e+01
+5 16106     -2.454000e+02 4.085999e+01
+13 16106     -3.537200e+02 2.946500e+02
+14 16106     -3.283300e+02 -6.020001e+01
+4 16107     6.771997e+01 -1.346002e+01
+5 16107     -2.262600e+02 -1.252600e+02
+4 16108     1.442300e+02 -1.341998e+01
+5 16108     -2.364300e+02 2.272998e+01
+4 16109     2.969301e+02 -2.207001e+01
+5 16109     -2.960500e+02 3.426200e+02
+11 16109     -3.702000e+02 1.193900e+02
+4 16110     -1.535999e+01 -2.390002e+01
+13 16110     -2.804500e+02 2.747998e+01
+14 16110     -2.690300e+02 -3.851000e+02
+4 16111     1.668300e+02 -2.932001e+01
+5 16111     -1.991200e+02 6.371002e+01
+13 16111     -3.164600e+02 3.157300e+02
+14 16111     -2.826000e+02 -3.794000e+01
+4 16112     2.565100e+02 -3.012000e+01
+5 16112     -2.601500e+02 2.595900e+02
+13 16112     -3.804300e+02 4.819500e+02
+14 16112     -3.400100e+02 1.533600e+02
+4 16113     2.368600e+02 -3.087000e+01
+11 16113     -3.429000e+02 1.871002e+01
+4 16114     7.602002e+01 -3.228003e+01
+11 16114     -3.805500e+02 -2.388600e+02
+4 16115     2.553000e+02 -3.460999e+01
+5 16115     -2.505200e+02 2.569300e+02
+13 16115     -3.719400e+02 4.803000e+02
+14 16115     -3.304300e+02 1.511800e+02
+4 16116     1.080017e+00 -3.557001e+01
+5 16116     -1.669200e+02 -2.528300e+02
+11 16116     -3.549900e+02 -3.531300e+02
+4 16117     2.571801e+02 -3.707001e+01
+5 16117     -2.468800e+02 2.613800e+02
+11 16117     -3.565100e+02 5.767001e+01
+4 16118     -2.895001e+01 -3.865997e+01
+5 16118     -1.570800e+02 -3.101700e+02
+7 16118     -7.712200e+02 3.413400e+02
+11 16118     -3.449000e+02 -3.998200e+02
+4 16119     1.383300e+02 -3.891998e+01
+5 16119     -1.786900e+02 1.192999e+01
+14 16119     -2.633000e+02 -8.722998e+01
+4 16120     1.671100e+02 -4.142999e+01
+5 16120     -1.765200e+02 6.653003e+01
+4 16121     2.498199e+02 -4.353998e+01
+5 16121     -2.313700e+02 2.320000e+02
+13 16121     -3.535300e+02 4.598100e+02
+4 16122     -4.848999e+01 -4.516998e+01
+11 16122     -3.304200e+02 -4.298900e+02
+14 16122     -2.224500e+02 -4.429301e+02
+15 16122     -7.987600e+02 4.925200e+02
+4 16123     1.816600e+02 -4.540997e+01
+13 16123     -3.009300e+02 3.452500e+02
+14 16123     -2.618600e+02 -4.859985e+00
+4 16124     2.890900e+02 -4.609003e+01
+5 16124     -2.331400e+02 3.219900e+02
+13 16124     -3.626400e+02 5.381700e+02
+14 16124     -3.137900e+02 2.139900e+02
+4 16125     -1.923999e+01 -4.657001e+01
+11 16125     -3.339900e+02 -3.826800e+02
+13 16125     -2.440500e+02 2.959003e+01
+14 16125     -2.241100e+02 -3.853000e+02
+15 16125     -8.235300e+02 5.651900e+02
+4 16126     -3.695900e+02 -4.813000e+01
+7 16126     -5.535600e+02 -2.269900e+02
+4 16127     -6.727002e+01 -4.892999e+01
+5 16127     -1.314100e+02 -3.821800e+02
+4 16128     3.098000e+02 -4.923999e+01
+5 16128     -2.283000e+02 3.599100e+02
+4 16129     -3.589800e+02 -5.120001e+01
+7 16129     -5.550100e+02 -2.095800e+02
+4 16130     2.626600e+02 -5.076001e+01
+11 16130     -3.349700e+02 6.739001e+01
+13 16130     -3.464200e+02 4.959200e+02
+14 16130     -2.998500e+02 1.668900e+02
+4 16131     2.585900e+02 -5.152002e+01
+11 16131     -3.337700e+02 6.106000e+01
+13 16131     -3.449200e+02 4.890000e+02
+14 16131     -2.987500e+02 1.596500e+02
+4 16132     -3.665400e+02 -5.228998e+01
+7 16132     -5.486500e+02 -2.201200e+02
+4 16133     1.921000e+02 -5.283002e+01
+11 16133     -3.604800e+02 -5.645001e+01
+4 16134     2.575200e+02 -5.569000e+01
+5 16134     -2.104500e+02 2.641800e+02
+14 16134     -2.906800e+02 1.584200e+02
+4 16135     2.781300e+02 -5.571002e+01
+5 16135     -2.127700e+02 3.023300e+02
+11 16135     -3.295600e+02 9.014001e+01
+13 16135     -3.427100e+02 5.215900e+02
+14 16135     -2.932400e+02 1.950800e+02
+4 16136     2.781300e+02 -5.571002e+01
+5 16136     -2.127700e+02 3.023300e+02
+4 16137     -4.065997e+01 -5.652002e+01
+5 16137     -1.211800e+02 -3.285100e+02
+8 16137     -5.866800e+02 1.710999e+01
+4 16138     -6.640997e+01 -5.759998e+01
+14 16138     -1.959600e+02 -4.735900e+02
+4 16139     2.623000e+02 -5.831000e+01
+5 16139     -2.054300e+02 2.731200e+02
+11 16139     -3.236800e+02 6.738000e+01
+14 16139     -2.866400e+02 1.670900e+02
+4 16140     -8.594000e+01 -5.963000e+01
+7 16140     -6.897700e+02 2.492200e+02
+10 16140     -7.079000e+02 3.911400e+02
+11 16140     -2.960900e+02 -4.857300e+02
+13 16140     -2.067600e+02 -6.873999e+01
+14 16140     -1.873300e+02 -5.117000e+02
+4 16141     4.551001e+01 -6.210999e+01
+5 16141     -1.226900e+02 -1.603400e+02
+4 16142     2.896500e+02 -6.520001e+01
+5 16142     -2.030300e+02 3.172300e+02
+4 16143     3.075000e+01 -6.597998e+01
+5 16143     -1.126000e+02 -1.873000e+02
+13 16143     -2.267700e+02 1.131300e+02
+14 16143     -1.955900e+02 -2.830600e+02
+4 16144     -2.109998e+01 -6.640997e+01
+5 16144     -1.046800e+02 -2.874300e+02
+4 16145     6.348999e+01 -6.651001e+01
+5 16145     -1.168700e+02 -1.249400e+02
+13 16145     -2.341300e+02 1.639500e+02
+4 16146     2.187700e+02 -6.675000e+01
+14 16146     -2.332000e+02 6.859003e+01
+4 16147     2.371000e+02 -6.907001e+01
+5 16147     -1.525900e+02 2.109400e+02
+11 16147     -3.300200e+02 1.772998e+01
+13 16147     -2.881500e+02 4.440600e+02
+14 16147     -2.381900e+02 1.063600e+02
+4 16148     8.266998e+01 -7.146002e+01
+5 16148     -1.099300e+02 -8.739001e+01
+7 16148     -7.916800e+02 5.775000e+02
+13 16148     -2.314900e+02 1.955000e+02
+14 16148     -1.938800e+02 -1.837700e+02
+4 16149     1.920000e+02 -7.253003e+01
+11 16149     -3.242100e+02 -4.359998e+01
+4 16150     1.678800e+02 -7.500000e+01
+5 16150     -1.135800e+02 7.379999e+01
+4 16151     -3.096997e+01 -7.588000e+01
+5 16151     -8.465002e+01 -3.045200e+02
+8 16151     -5.548600e+02 4.417001e+01
+4 16152     2.267700e+02 -7.696997e+01
+5 16152     -1.312000e+02 1.908700e+02
+11 16152     -3.216700e+02 1.659973e+00
+13 16152     -2.698500e+02 4.279100e+02
+14 16152     -2.184100e+02 8.729001e+01
+4 16153     2.463500e+02 -7.778003e+01
+5 16153     -1.411200e+02 2.318700e+02
+11 16153     -3.155000e+02 3.429001e+01
+13 16153     -2.788000e+02 4.629300e+02
+14 16153     -2.255300e+02 1.269200e+02
+4 16154     1.829500e+02 -7.826001e+01
+11 16154     -3.213400e+02 -6.682001e+01
+4 16155     1.157400e+02 -7.883002e+01
+14 16155     -1.850200e+02 -1.302700e+02
+4 16156     1.551100e+02 -8.092999e+01
+5 16156     -1.018300e+02 5.165002e+01
+4 16157     2.359399e+02 -8.378998e+01
+5 16157     -1.221200e+02 2.097700e+02
+11 16157     -3.111300e+02 1.725000e+01
+13 16157     -2.630800e+02 4.454600e+02
+4 16158     1.584000e+02 -8.434998e+01
+5 16158     -9.577002e+01 5.890997e+01
+11 16158     -3.100200e+02 -1.040200e+02
+13 16158     -2.303300e+02 3.172500e+02
+14 16158     -1.817700e+02 -4.098999e+01
+4 16159     -1.696000e+02 -8.482001e+01
+13 16159     -1.309600e+02 -1.883000e+02
+4 16160     1.544500e+02 -8.613000e+01
+8 16160     -5.765700e+02 3.855000e+02
+13 16160     -2.269700e+02 3.112600e+02
+4 16161     1.764301e+02 -8.656000e+01
+11 16161     -3.085400e+02 -7.609003e+01
+4 16162     -1.934998e+01 -8.823999e+01
+8 16162     -5.408200e+02 6.717999e+01
+12 16162     -8.166100e+02 2.857500e+02
+4 16163     1.923700e+02 -8.870001e+01
+11 16163     -3.045100e+02 -5.129999e+01
+4 16164     -1.909998e+01 -9.352002e+01
+5 16164     -5.487000e+01 -2.774200e+02
+7 16164     -6.716100e+02 3.887000e+02
+8 16164     -5.308500e+02 6.960999e+01
+11 16164     -2.569800e+02 -3.734300e+02
+12 16164     -8.052000e+02 2.899200e+02
+13 16164     -1.732300e+02 4.454999e+01
+4 16165     9.387000e+01 -9.371997e+01
+11 16165     -2.822900e+02 -1.990700e+02
+4 16166     1.636500e+02 -9.404999e+01
+11 16166     -3.176400e+02 -9.791998e+01
+4 16167     -3.869995e+00 -9.488000e+01
+8 16167     -5.355900e+02 9.741000e+01
+12 16167     -8.143900e+02 3.253000e+02
+4 16168     -3.869995e+00 -9.488000e+01
+8 16168     -5.355900e+02 9.741000e+01
+12 16168     -8.143900e+02 3.253000e+02
+4 16169     1.444301e+02 -9.741998e+01
+5 16169     -6.989001e+01 3.412000e+01
+4 16170     2.284600e+02 -9.816998e+01
+11 16170     -2.810400e+02 8.320007e+00
+4 16171     -7.700195e-01 -9.951001e+01
+8 16171     -5.290800e+02 1.049500e+02
+10 16171     -6.842600e+02 5.933400e+02
+11 16171     -2.512500e+02 -3.424200e+02
+13 16171     -1.687700e+02 7.514001e+01
+14 16171     -1.290400e+02 -3.335800e+02
+4 16172     9.159998e+01 -1.041700e+02
+13 16172     -1.845400e+02 2.208200e+02
+14 16172     -1.356500e+02 -1.569700e+02
+4 16173     -4.367800e+02 -1.050400e+02
+6 16173     -4.534400e+02 -5.490100e+02
+7 16173     -4.353400e+02 -2.828500e+02
+10 16173     -4.997100e+02 -2.574300e+02
+4 16174     2.677900e+02 -1.050900e+02
+11 16174     -2.781100e+02 7.148001e+01
+4 16175     2.590000e+02 -1.061400e+02
+11 16175     -2.759500e+02 5.539999e+01
+13 16175     -2.371800e+02 4.878800e+02
+4 16176     2.708700e+02 -1.060200e+02
+5 16176     -9.360999e+01 2.804800e+02
+11 16176     -2.755600e+02 7.351999e+01
+4 16177     2.642000e+02 -1.087000e+02
+11 16177     -2.724800e+02 6.437000e+01
+4 16178     3.044100e+02 -1.158000e+02
+5 16178     -1.100400e+02 3.603100e+02
+14 16178     -1.919100e+02 2.516800e+02
+4 16179     1.724600e+02 -1.160300e+02
+11 16179     -2.714100e+02 -7.954999e+01
+4 16180     -6.584003e+01 -1.164500e+02
+7 16180     -5.982100e+02 3.172600e+02
+8 16180     -4.770200e+02 -4.700012e+00
+12 16180     -7.200200e+02 2.053400e+02
+15 16180     -6.048000e+02 4.989300e+02
+4 16181     -1.015997e+01 -1.180700e+02
+7 16181     -6.308300e+02 4.182200e+02
+8 16181     -4.942800e+02 9.370999e+01
+10 16181     -6.358200e+02 5.807800e+02
+11 16181     -2.198600e+02 -3.545800e+02
+12 16181     -7.581900e+02 3.258300e+02
+4 16182     1.050500e+02 -1.187300e+02
+11 16182     -2.448400e+02 -1.775300e+02
+13 16182     -1.652400e+02 2.422500e+02
+14 16182     -1.112700e+02 -1.315200e+02
+4 16183     1.050500e+02 -1.187300e+02
+11 16183     -2.448400e+02 -1.775300e+02
+13 16183     -1.652400e+02 2.422500e+02
+14 16183     -1.112700e+02 -1.315200e+02
+4 16184     -2.618500e+02 -1.189700e+02
+8 16184     -3.223200e+02 -2.631100e+02
+15 16184     -5.194700e+02 3.271997e+01
+4 16185     2.974000e+02 -1.202000e+02
+13 16185     -2.475700e+02 5.658600e+02
+14 16185     -1.817300e+02 2.387600e+02
+4 16186     2.934800e+02 -1.221900e+02
+5 16186     -9.450000e+01 3.397100e+02
+13 16186     -2.427700e+02 5.598700e+02
+14 16186     -1.767600e+02 2.320400e+02
+4 16187     -4.810600e+02 -1.245200e+02
+9 16187     -2.387900e+02 -4.119700e+02
+4 16188     1.175600e+02 -1.244700e+02
+11 16188     -2.379400e+02 -1.574200e+02
+4 16189     -2.754800e+02 -1.257100e+02
+15 16189     -5.014000e+02 7.640015e+00
+4 16190     -2.623500e+02 -1.262700e+02
+7 16190     -4.812300e+02 -1.329999e+01
+8 16190     -3.105400e+02 -2.584100e+02
+9 16190     -4.842200e+02 -1.913600e+02
+10 16190     -5.086000e+02 6.069000e+01
+13 16190     -2.595001e+01 -3.061800e+02
+15 16190     -5.041300e+02 3.675000e+01
+4 16191     2.759100e+02 -1.290600e+02
+5 16191     -5.276001e+01 2.929900e+02
+13 16191     -2.079200e+02 5.205500e+02
+4 16192     2.207001e+01 -1.378700e+02
+8 16192     -4.741600e+02 1.565900e+02
+4 16193     1.624600e+02 -1.378100e+02
+5 16193     1.750000e+00 7.485999e+01
+13 16193     -1.501700e+02 3.352800e+02
+14 16193     -8.662000e+01 -2.415002e+01
+4 16194     3.076500e+02 -1.383100e+02
+11 16194     -2.031000e+02 1.479500e+02
+14 16194     -1.542200e+02 2.610000e+02
+4 16195     -2.700500e+02 -1.385700e+02
+7 16195     -4.580500e+02 -1.838000e+01
+10 16195     -4.838100e+02 5.278003e+01
+4 16196     3.125800e+02 -1.400300e+02
+5 16196     -7.008002e+01 3.794400e+02
+14 16196     -1.524100e+02 2.694500e+02
+4 16197     -1.277700e+02 -1.427300e+02
+7 16197     -5.180000e+02 2.218800e+02
+10 16197     -5.119200e+02 3.456500e+02
+4 16198     1.338500e+02 -1.439000e+02
+13 16198     -1.339200e+02 2.933700e+02
+4 16199     2.494200e+02 -1.444000e+02
+11 16199     -2.177200e+02 4.709000e+01
+4 16200     2.494200e+02 -1.444000e+02
+5 16200     -1.769000e+01 2.459400e+02
+11 16200     -2.177200e+02 4.709000e+01
+4 16201     -5.407001e+01 -1.477400e+02
+8 16201     -4.322200e+02 2.738000e+01
+4 16202     -1.846400e+02 -1.568500e+02
+10 16202     -4.701300e+02 2.318400e+02
+4 16203     -5.425700e+02 -1.573000e+02
+6 16203     -2.614600e+02 -6.403600e+02
+15 16203     -3.731800e+02 -4.826000e+02
+4 16204     1.439200e+02 -1.587500e+02
+5 16204     4.150000e+01 4.391998e+01
+13 16204     -1.149300e+02 3.119700e+02
+14 16204     -4.679999e+01 -5.319000e+01
+4 16205     9.372998e+01 -1.593400e+02
+11 16205     -1.777500e+02 -1.873200e+02
+4 16206     1.407500e+02 -1.601300e+02
+8 16206     -4.794000e+02 3.671800e+02
+11 16206     -1.882000e+02 -1.181100e+02
+13 16206     -1.120400e+02 3.075000e+02
+14 16206     -4.407001e+01 -5.817999e+01
+4 16207     2.971100e+02 -1.620700e+02
+5 16207     -2.345001e+01 3.507500e+02
+11 16207     -1.659500e+02 1.317200e+02
+13 16207     -1.828100e+02 5.724400e+02
+4 16208     3.122200e+02 -1.626100e+02
+5 16208     -2.919000e+01 3.813300e+02
+14 16208     -1.131100e+02 2.721600e+02
+4 16209     -2.096100e+02 -1.639600e+02
+13 16209     1.799988e+00 -2.178000e+02
+4 16210     -2.293400e+02 -1.701200e+02
+10 16210     -4.353800e+02 1.492900e+02
+4 16211     -5.430000e+02 -1.731300e+02
+12 16211     -2.482100e+02 -5.548700e+02
+4 16212     -7.122800e+02 -1.740700e+02
+7 16212     -2.413300e+02 -5.616400e+02
+4 16213     3.127900e+02 -1.801100e+02
+11 16213     -1.374300e+02 1.556000e+02
+14 16213     -2.953998e+01 2.785700e+02
+4 16214     3.127900e+02 -1.801100e+02
+11 16214     -1.374300e+02 1.556000e+02
+14 16214     -8.292999e+01 2.752800e+02
+4 16215     1.117999e+01 -1.804400e+02
+11 16215     -1.242000e+02 -3.072400e+02
+4 16216     -5.209998e+01 -1.836400e+02
+10 16216     -4.646200e+02 5.247600e+02
+4 16217     3.005900e+02 -1.875800e+02
+5 16217     2.140997e+01 3.594900e+02
+11 16217     -1.277000e+02 1.396100e+02
+4 16218     3.304999e+01 -1.884100e+02
+5 16218     1.104700e+02 -1.553400e+02
+8 16218     -4.000400e+02 1.881000e+02
+4 16219     -7.454400e+02 -1.927200e+02
+7 16219     -2.081700e+02 -5.835699e+02
+4 16220     -2.264700e+02 -1.938200e+02
+7 16220     -3.886400e+02 8.476001e+01
+10 16220     -3.898900e+02 1.682600e+02
+15 16220     -3.671200e+02 1.612100e+02
+4 16221     -2.264700e+02 -1.938200e+02
+7 16221     -3.886400e+02 8.476001e+01
+4 16222     8.578998e+01 -1.972400e+02
+5 16222     1.186900e+02 -5.510999e+01
+12 16222     -6.589200e+02 5.818900e+02
+4 16223     2.941200e+02 -2.008100e+02
+11 16223     -1.087000e+02 1.316900e+02
+14 16223     -4.010999e+01 2.423600e+02
+4 16224     8.647998e+01 -2.024000e+02
+5 16224     1.275900e+02 -5.316998e+01
+8 16224     -3.958900e+02 2.815000e+02
+4 16225     1.069500e+02 -2.028900e+02
+11 16225     -1.140800e+02 -1.589300e+02
+4 16226     1.474301e+02 -2.041400e+02
+5 16226     1.212000e+02 5.896002e+01
+8 16226     -4.122300e+02 3.842400e+02
+11 16226     -1.209700e+02 -1.003400e+02
+13 16226     -4.969000e+01 3.276200e+02
+14 16226     3.084998e+01 -3.745001e+01
+4 16227     -1.486800e+02 -2.050900e+02
+15 16227     -3.606200e+02 3.510600e+02
+4 16228     2.941700e+02 -2.054600e+02
+5 16228     5.494000e+01 3.495800e+02
+4 16229     -7.241900e+02 -2.160600e+02
+7 16229     -1.867800e+02 -5.465400e+02
+4 16230     -1.726001e+01 -2.160100e+02
+8 16230     -3.414200e+02 1.124800e+02
+4 16231     -7.635900e+02 -2.175400e+02
+9 16231     1.172700e+02 -5.601801e+02
+4 16232     8.292999e+01 -2.209100e+02
+5 16232     1.602700e+02 -5.578998e+01
+12 16232     -6.065900e+02 5.864200e+02
+4 16233     2.940699e+02 -2.285500e+02
+5 16233     9.647998e+01 3.503700e+02
+11 16233     -6.785999e+01 1.342600e+02
+4 16234     2.286801e+02 -2.360200e+02
+5 16234     1.575200e+02 2.122300e+02
+4 16235     1.115900e+02 -2.414600e+02
+13 16235     1.120001e+01 2.814200e+02
+4 16236     -6.509700e+02 -2.574500e+02
+7 16236     -1.579900e+02 -4.430000e+02
+9 16236     6.140997e+01 -4.453000e+02
+4 16237     1.030200e+02 -2.607200e+02
+5 16237     2.259100e+02 -1.160999e+01
+8 16237     -3.163800e+02 3.191500e+02
+4 16238     -7.519800e+02 -2.641700e+02
+7 16238     -1.227400e+02 -5.446700e+02
+4 16239     -2.872600e+02 -2.656700e+02
+7 16239     -2.741000e+02 2.085999e+01
+4 16240     -8.045700e+02 -2.662700e+02
+9 16240     1.882200e+02 -5.499700e+02
+4 16241     -7.502200e+02 -2.665900e+02
+9 16241     1.477300e+02 -5.113300e+02
+4 16242     -2.656300e+02 -2.663500e+02
+7 16242     -2.801800e+02 5.135999e+01
+4 16243     -2.365002e+01 -2.765100e+02
+8 16243     -2.556600e+02 1.183900e+02
+4 16244     -3.939800e+02 -2.772000e+02
+7 16244     -2.145300e+02 -1.224000e+02
+4 16245     -7.393200e+02 -2.833000e+02
+7 16245     -1.044600e+02 -5.197700e+02
+10 16245     -1.773400e+02 -5.708199e+02
+4 16246     -2.095700e+02 -2.833200e+02
+5 16246     3.921000e+02 -5.973101e+02
+10 16246     -2.813700e+02 2.143000e+02
+4 16247     -8.073500e+02 -2.859600e+02
+6 16247     1.074900e+02 -8.171200e+02
+7 16247     -8.428003e+01 -5.855900e+02
+4 16248     -3.266800e+02 -2.885900e+02
+6 16248     -1.938000e+02 -1.719301e+02
+4 16249     -6.945600e+02 -2.897300e+02
+9 16249     1.234800e+02 -4.538400e+02
+4 16250     -2.004700e+02 -2.903300e+02
+7 16250     -2.662800e+02 1.677300e+02
+13 16250     1.916100e+02 -1.653200e+02
+15 16250     -2.333000e+02 2.446700e+02
+4 16251     2.844301e+02 -2.910900e+02
+11 16251     -1.059998e+00 1.154200e+02
+4 16252     -3.376000e+02 -2.913800e+02
+7 16252     -2.224300e+02 -4.148999e+01
+4 16253     -2.145900e+02 -2.919700e+02
+5 16253     4.090000e+02 -6.041300e+02
+6 16253     -3.069800e+02 1.725000e+01
+12 16253     -2.584000e+02 7.283002e+01
+4 16254     -6.935700e+02 -2.938700e+02
+9 16254     1.260500e+02 -4.501000e+02
+4 16255     2.843101e+02 -2.957000e+02
+5 16255     2.341899e+02 3.237800e+02
+4 16256     -6.560600e+02 -2.969100e+02
+6 16256     1.477002e+01 -6.391300e+02
+4 16257     -7.541600e+02 -2.981700e+02
+9 16257     1.756899e+02 -4.901300e+02
+4 16258     3.735999e+01 -3.003400e+02
+8 16258     -2.430200e+02 2.208200e+02
+12 16258     -4.239300e+02 5.264400e+02
+4 16259     2.129999e+01 -3.022500e+02
+8 16259     -2.350400e+02 1.965600e+02
+4 16260     -6.620200e+02 -3.030600e+02
+9 16260     1.103100e+02 -4.201900e+02
+4 16261     -7.552200e+02 -3.036000e+02
+9 16261     1.809600e+02 -4.859700e+02
+4 16262     -1.382001e+01 -3.039700e+02
+11 16262     7.123999e+01 -3.181700e+02
+4 16263     2.066998e+01 -3.076200e+02
+6 16263     -5.800600e+02 5.029100e+02
+8 16263     -2.281200e+02 1.962700e+02
+12 16263     -4.009100e+02 4.957100e+02
+4 16264     -2.305700e+02 -3.129200e+02
+6 16264     -2.438400e+02 7.169983e+00
+7 16264     -2.266900e+02 1.296600e+02
+9 16264     -1.640600e+02 6.529999e+01
+10 16264     -2.369700e+02 1.825200e+02
+15 16264     -1.985000e+02 1.828900e+02
+4 16265     -6.133900e+02 -3.140800e+02
+15 16265     -9.195001e+01 -4.927100e+02
+4 16266     -1.924800e+02 -3.138000e+02
+5 16266     4.326899e+02 -5.562700e+02
+6 16266     -2.992700e+02 7.303003e+01
+13 16266     2.170500e+02 -1.468600e+02
+4 16267     -2.306200e+02 -3.165700e+02
+6 16267     -2.374600e+02 1.023999e+01
+10 16267     -2.307100e+02 1.842600e+02
+13 16267     2.398300e+02 -1.984200e+02
+4 16268     6.190002e+00 -3.216700e+02
+6 16268     -5.446800e+02 4.794700e+02
+8 16268     -2.061100e+02 1.760200e+02
+4 16269     -1.816400e+02 -3.223900e+02
+5 16269     4.412200e+02 -5.336200e+02
+6 16269     -2.977600e+02 9.862000e+01
+7 16269     -2.245500e+02 2.147700e+02
+8 16269     -5.175000e+01 -1.223001e+01
+12 16269     -2.312900e+02 1.474800e+02
+4 16270     2.215002e+01 -3.225800e+02
+6 16270     -5.515400e+02 5.151000e+02
+7 16270     -2.897800e+02 5.671000e+02
+12 16270     -3.738600e+02 5.059000e+02
+4 16271     1.723900e+02 -3.281200e+02
+13 16271     1.168800e+02 3.896200e+02
+14 16271     2.298500e+02 2.687000e+01
+4 16272     9.442999e+01 -3.386600e+02
+8 16272     -2.088600e+02 3.160000e+02
+4 16273     9.442999e+01 -3.386600e+02
+6 16273     -5.659300e+02 6.863900e+02
+11 16273     9.383002e+01 -1.536200e+02
+4 16274     -1.445700e+02 -3.392300e+02
+10 16274     -1.389100e+02 4.038600e+02
+4 16275     -1.371002e+01 -3.391900e+02
+11 16275     1.225200e+02 -3.096900e+02
+4 16276     -7.715500e+02 -3.445800e+02
+9 16276     2.234200e+02 -4.684600e+02
+4 16277     -1.796400e+02 -3.492000e+02
+5 16277     4.891200e+02 -5.228700e+02
+6 16277     -2.457200e+02 1.242100e+02
+7 16277     -1.881000e+02 2.293900e+02
+12 16277     -1.847600e+02 1.718400e+02
+13 16277     2.591000e+02 -1.185600e+02
+4 16278     -7.750200e+02 -3.528800e+02
+7 16278     -1.878998e+01 -5.133000e+02
+10 16278     -8.091998e+01 -5.743600e+02
+4 16279     9.059998e+00 -3.546300e+02
+11 16279     1.413200e+02 -2.730900e+02
+12 16279     -3.105900e+02 4.939800e+02
+4 16280     8.584003e+01 -3.549000e+02
+8 16280     -1.864400e+02 3.047500e+02
+4 16281     1.649600e+02 -3.549300e+02
+5 16281     3.703400e+02 1.127700e+02
+13 16281     1.532100e+02 3.844000e+02
+14 16281     2.723800e+02 1.956000e+01
+4 16282     2.453998e+01 -3.573600e+02
+6 16282     -4.891800e+02 5.405500e+02
+7 16282     -2.345600e+02 5.835600e+02
+9 16282     -4.066600e+02 3.055700e+02
+12 16282     -3.141700e+02 5.262800e+02
+4 16283     2.730601e+02 -3.573200e+02
+11 16283     9.026001e+01 1.031300e+02
+4 16284     -7.559900e+02 -3.579700e+02
+6 16284     1.513700e+02 -6.940500e+02
+7 16284     -1.769000e+01 -4.910300e+02
+10 16284     -7.509998e+01 -5.488600e+02
+4 16285     8.173999e+01 -3.606300e+02
+5 16285     3.941700e+02 -3.095001e+01
+6 16285     -5.170400e+02 6.687800e+02
+8 16285     -1.786400e+02 3.003500e+02
+11 16285     1.294700e+02 -1.671400e+02
+4 16286     2.708900e+02 -3.620800e+02
+5 16286     3.494100e+02 3.021300e+02
+13 16286     1.303900e+02 5.453800e+02
+14 16286     2.487100e+02 2.016000e+02
+4 16287     -7.581000e+02 -3.640800e+02
+7 16287     -1.056000e+01 -4.893400e+02
+9 16287     2.275800e+02 -4.458600e+02
+4 16288     2.798600e+02 -3.649800e+02
+5 16288     3.500699e+02 3.196400e+02
+11 16288     1.001100e+02 1.147700e+02
+4 16289     2.906200e+02 -3.668900e+02
+11 16289     1.022600e+02 1.308600e+02
+13 16289     1.297900e+02 5.770800e+02
+14 16289     2.485200e+02 2.366900e+02
+4 16290     -1.297400e+02 -3.676400e+02
+8 16290     -8.448999e+01 5.010010e+00
+13 16290     2.395400e+02 -3.490002e+01
+14 16290     3.733000e+02 -4.954700e+02
+4 16291     2.805601e+02 -3.680000e+02
+11 16291     1.029000e+02 1.171500e+02
+4 16292     2.704301e+02 -3.688400e+02
+11 16292     1.050500e+02 1.014500e+02
+4 16293     2.588199e+02 -3.696500e+02
+13 16293     1.447100e+02 5.268900e+02
+14 16293     2.648900e+02 1.809500e+02
+4 16294     2.732100e+02 -3.698900e+02
+5 16294     3.610200e+02 3.070800e+02
+11 16294     1.077400e+02 1.049900e+02
+13 16294     1.408000e+02 5.491000e+02
+14 16294     2.607300e+02 2.056400e+02
+4 16295     -2.012000e+01 -3.709000e+02
+6 16295     -4.400600e+02 4.528200e+02
+4 16296     -7.334200e+02 -3.713700e+02
+9 16296     2.151100e+02 -4.241800e+02
+10 16296     -5.853998e+01 -5.138900e+02
+4 16297     7.290002e+01 -3.714300e+02
+5 16297     4.127500e+02 -4.563000e+01
+11 16297     1.472500e+02 -1.782400e+02
+4 16298     -1.870700e+02 -3.722200e+02
+12 16298     -1.356600e+02 1.830300e+02
+4 16299     -7.358700e+02 -3.730500e+02
+9 16299     2.181899e+02 -4.247600e+02
+4 16300     -7.277000e+02 -3.741200e+02
+9 16300     2.132100e+02 -4.184000e+02
+4 16301     -7.277000e+02 -3.741200e+02
+7 16301     -5.700012e+00 -4.527100e+02
+9 16301     2.132100e+02 -4.184000e+02
+10 16301     -5.528003e+01 -5.055500e+02
+12 16301     1.319300e+02 -6.135699e+02
+4 16302     2.703400e+02 -3.752400e+02
+5 16302     3.699700e+02 3.028100e+02
+11 16302     1.133200e+02 1.028300e+02
+4 16303     2.751000e+02 -3.747100e+02
+5 16303     3.669301e+02 3.116600e+02
+4 16304     2.449500e+02 -3.765200e+02
+5 16304     3.821300e+02 2.561100e+02
+11 16304     1.171300e+02 6.559000e+01
+4 16305     2.882100e+02 -3.787100e+02
+5 16305     3.688000e+02 3.349100e+02
+11 16305     1.193500e+02 1.272300e+02
+13 16305     1.471500e+02 5.734000e+02
+14 16305     2.683800e+02 2.321700e+02
+4 16306     2.906801e+02 -3.800700e+02
+11 16306     1.204800e+02 1.315400e+02
+13 16306     1.474600e+02 5.777800e+02
+4 16307     2.810400e+02 -3.805500e+02
+11 16307     1.210800e+02 1.186200e+02
+13 16307     1.513101e+02 5.632800e+02
+14 16307     2.731700e+02 2.208300e+02
+4 16308     -3.350400e+02 -3.812100e+02
+6 16308     -4.262000e+01 -1.059100e+02
+8 16308     1.421500e+02 -1.214800e+02
+12 16308     -3.648999e+01 -5.235999e+01
+4 16309     2.535800e+02 -3.810400e+02
+5 16309     3.855500e+02 2.727000e+02
+11 16309     1.228400e+02 7.822000e+01
+13 16309     1.619600e+02 5.197700e+02
+14 16309     2.847900e+02 1.725400e+02
+4 16310     -1.074700e+02 -3.831600e+02
+11 16310     1.998900e+02 -4.446500e+02
+4 16311     1.520300e+02 -3.830400e+02
+5 16311     4.169600e+02 9.440002e+01
+14 16311     3.181200e+02 1.669983e+00
+4 16312     2.684998e+01 -3.839200e+02
+6 16312     -4.428400e+02 5.606900e+02
+11 16312     1.769100e+02 -2.415000e+02
+4 16313     2.485400e+02 -3.846800e+02
+5 16313     3.926899e+02 2.637900e+02
+11 16313     1.274400e+02 7.200000e+01
+4 16314     2.658300e+02 -3.845500e+02
+5 16314     3.859800e+02 2.952000e+02
+4 16315     2.541600e+02 -3.869700e+02
+11 16315     1.306600e+02 8.070001e+01
+14 16315     2.929500e+02 1.753200e+02
+4 16316     2.927700e+02 -3.878000e+02
+5 16316     3.809800e+02 3.441000e+02
+11 16316     1.314500e+02 1.353500e+02
+13 16316     1.573700e+02 5.816900e+02
+4 16317     2.954800e+02 -3.890400e+02
+5 16317     3.811801e+02 3.496200e+02
+4 16318     -1.263600e+02 -3.910800e+02
+9 16318     -2.709000e+02 1.011700e+02
+13 16318     2.664100e+02 -2.315002e+01
+14 16318     4.074500e+02 -4.814900e+02
+4 16319     2.582500e+02 -3.933800e+02
+5 16319     4.026600e+02 2.824300e+02
+13 16319     1.760200e+02 5.290600e+02
+14 16319     3.010300e+02 1.824400e+02
+4 16320     3.115300e+02 -3.932800e+02
+5 16320     3.781300e+02 3.821300e+02
+14 16320     2.778800e+02 2.778000e+02
+4 16321     2.802200e+02 -3.941600e+02
+5 16321     3.958000e+02 3.222300e+02
+4 16322     2.243199e+02 -3.945900e+02
+5 16322     4.170800e+02 2.211700e+02
+11 16322     1.418700e+02 3.745999e+01
+4 16323     2.243199e+02 -3.945900e+02
+5 16323     4.170800e+02 2.211700e+02
+11 16323     1.418700e+02 3.745999e+01
+4 16324     2.469301e+02 -3.947700e+02
+5 16324     4.090601e+02 2.619400e+02
+14 16324     3.072100e+02 1.630500e+02
+4 16325     4.650024e+00 -3.962900e+02
+8 16325     -1.135400e+02 1.901600e+02
+4 16326     2.354600e+02 -3.964400e+02
+5 16326     4.158500e+02 2.415400e+02
+4 16327     2.592300e+02 -3.963600e+02
+5 16327     4.073000e+02 2.841200e+02
+4 16328     2.950601e+02 -3.963500e+02
+5 16328     3.939200e+02 3.479400e+02
+13 16328     1.675601e+02 5.855500e+02
+4 16329     2.886500e+02 -3.971600e+02
+5 16329     3.974800e+02 3.372100e+02
+13 16329     1.711700e+02 5.765500e+02
+14 16329     2.960300e+02 2.349000e+02
+4 16330     -3.210900e+02 -3.990100e+02
+8 16330     1.522800e+02 -9.847998e+01
+4 16331     2.361899e+02 -3.992100e+02
+5 16331     4.200500e+02 2.429600e+02
+4 16332     1.013100e+02 -3.994100e+02
+6 16332     -4.584800e+02 7.300700e+02
+8 16332     -1.368700e+02 3.335900e+02
+11 16332     1.790300e+02 -1.325600e+02
+4 16333     2.901500e+02 -3.998400e+02
+11 16333     1.466300e+02 1.339200e+02
+4 16334     2.579800e+02 -4.003000e+02
+13 16334     1.848600e+02 5.296100e+02
+14 16334     3.116000e+02 1.823000e+02
+4 16335     2.848900e+02 -4.003500e+02
+11 16335     1.490300e+02 1.249800e+02
+13 16335     1.759700e+02 5.713400e+02
+14 16335     3.016200e+02 2.290600e+02
+4 16336     -1.339300e+02 -4.007600e+02
+5 16336     5.122400e+02 -4.111600e+02
+6 16336     -2.925200e+02 2.416700e+02
+13 16336     2.811200e+02 -3.134003e+01
+14 16336     4.261100e+02 -4.928600e+02
+4 16337     6.325000e+01 -4.011000e+02
+5 16337     4.610200e+02 -5.616998e+01
+6 16337     -4.338000e+02 6.477000e+02
+8 16337     -1.241800e+02 2.781800e+02
+11 16337     1.922400e+02 -1.862200e+02
+13 16337     2.326700e+02 2.480800e+02
+14 16337     3.659900e+02 -1.432300e+02
+4 16338     2.698900e+02 -4.016400e+02
+5 16338     4.114200e+02 3.040400e+02
+11 16338     1.495100e+02 1.047600e+02
+13 16338     1.832800e+02 5.477900e+02
+14 16338     3.097400e+02 2.029500e+02
+4 16339     2.956801e+02 -4.017000e+02
+5 16339     4.010699e+02 3.508000e+02
+4 16340     2.182700e+02 -4.021500e+02
+13 16340     2.003900e+02 4.688000e+02
+4 16341     2.182700e+02 -4.021500e+02
+5 16341     4.314600e+02 2.105700e+02
+11 16341     1.524900e+02 2.957999e+01
+13 16341     2.003900e+02 4.688000e+02
+4 16342     2.729200e+02 -4.024800e+02
+14 16342     3.103900e+02 2.076900e+02
+4 16343     2.890699e+02 -4.038500e+02
+5 16343     4.083400e+02 3.377600e+02
+13 16343     1.800200e+02 5.773500e+02
+14 16343     3.062700e+02 2.356100e+02
+4 16344     -2.487800e+02 -4.050500e+02
+6 16344     -6.347998e+01 4.892999e+01
+8 16344     1.273200e+02 -7.970001e+00
+4 16345     2.908500e+02 -4.061400e+02
+11 16345     1.552900e+02 1.347700e+02
+4 16346     2.585100e+02 -4.064800e+02
+13 16346     1.934900e+02 5.309700e+02
+14 16346     3.213500e+02 1.839900e+02
+4 16347     2.702200e+02 -4.080100e+02
+5 16347     4.209900e+02 3.050900e+02
+4 16348     2.702200e+02 -4.080100e+02
+5 16348     4.209900e+02 3.050900e+02
+4 16349     -3.644500e+02 -4.092000e+02
+6 16349     1.620001e+01 -1.271200e+02
+4 16350     -1.045400e+02 -4.091400e+02
+9 16350     -2.710100e+02 1.305500e+02
+4 16351     2.634399e+02 -4.101000e+02
+13 16351     1.965200e+02 5.385700e+02
+14 16351     3.250500e+02 1.922800e+02
+4 16352     -2.321400e+02 -4.112700e+02
+5 16352     6.271899e+02 -6.032300e+02
+6 16352     -6.516998e+01 8.195001e+01
+4 16353     2.916600e+02 -4.114700e+02
+5 16353     4.175400e+02 3.438400e+02
+11 16353     1.638800e+02 1.359900e+02
+13 16353     1.881700e+02 5.831300e+02
+14 16353     3.158300e+02 2.416800e+02
+4 16354     -2.825100e+02 -4.120600e+02
+8 16354     1.524700e+02 -4.294000e+01
+4 16355     -1.919900e+02 -4.120100e+02
+5 16355     6.125699e+02 -5.333101e+02
+6 16355     -9.764999e+01 1.490600e+02
+4 16356     1.160200e+02 -4.117800e+02
+6 16356     -4.451400e+02 7.668200e+02
+8 16356     -1.253500e+02 3.212300e+02
+4 16357     -3.549600e+02 -4.127800e+02
+6 16357     1.335999e+01 -1.112300e+02
+4 16358     2.365300e+02 -4.128500e+02
+5 16358     4.405000e+02 2.448400e+02
+4 16359     2.365300e+02 -4.128500e+02
+5 16359     4.405000e+02 2.448400e+02
+4 16360     2.679900e+02 -4.136300e+02
+5 16360     4.306100e+02 3.010300e+02
+4 16361     -1.408900e+02 -4.148000e+02
+6 16361     -2.630300e+02 2.376000e+02
+12 16361     -1.268500e+02 2.530500e+02
+13 16361     2.990400e+02 -3.634998e+01
+4 16362     9.450000e+01 -4.160600e+02
+6 16362     -4.243500e+02 7.228200e+02
+4 16363     2.182400e+02 -4.159100e+02
+13 16363     2.178500e+02 4.707000e+02
+14 16363     3.494399e+02 1.157300e+02
+4 16364     2.191300e+02 -4.186800e+02
+11 16364     1.750500e+02 3.331000e+01
+4 16365     6.277002e+01 -4.186300e+02
+5 16365     4.886100e+02 -5.338000e+01
+9 16365     -3.449400e+02 3.819100e+02
+11 16365     2.171900e+02 -1.833700e+02
+4 16366     -2.254700e+02 -4.194100e+02
+8 16366     1.324800e+02 2.720001e+01
+4 16367     2.932500e+02 -4.202400e+02
+5 16367     4.298300e+02 3.480200e+02
+11 16367     1.741600e+02 1.398400e+02
+14 16367     3.271200e+02 2.456300e+02
+4 16368     -7.869600e+02 -4.208600e+02
+6 16368     2.324500e+02 -6.715900e+02
+4 16369     2.955500e+02 -4.215200e+02
+11 16369     1.759800e+02 1.427100e+02
+4 16370     -1.143400e+02 -4.217400e+02
+8 16370     -3.098999e+01 4.014999e+01
+11 16370     2.535300e+02 -4.468600e+02
+13 16370     2.990300e+02 2.599976e+00
+14 16370     4.488000e+02 -4.500800e+02
+4 16371     -2.503400e+02 -4.245600e+02
+8 16371     1.514000e+02 2.329987e+00
+4 16372     -4.788000e+01 -4.242900e+02
+7 16372     -1.040700e+02 4.864300e+02
+13 16372     2.825500e+02 9.838000e+01
+4 16373     -1.237000e+02 -4.259700e+02
+6 16373     -2.607900e+02 2.778300e+02
+8 16373     -1.972998e+01 3.176001e+01
+11 16373     2.562700e+02 -4.612000e+02
+12 16373     -1.176400e+02 2.879400e+02
+15 16373     9.859003e+01 5.352800e+02
+4 16374     -1.237000e+02 -4.259700e+02
+6 16374     -2.607900e+02 2.778300e+02
+8 16374     -1.972998e+01 3.176001e+01
+12 16374     -1.176400e+02 2.879400e+02
+13 16374     3.077900e+02 -9.289978e+00
+14 16374     4.598000e+02 -4.657800e+02
+4 16375     1.184500e+02 -4.254400e+02
+6 16375     -4.219100e+02 7.791200e+02
+4 16376     2.061600e+02 -4.255400e+02
+13 16376     2.336000e+02 4.532800e+02
+4 16377     2.719700e+02 -4.254300e+02
+5 16377     4.487400e+02 3.081600e+02
+11 16377     1.799400e+02 1.083200e+02
+13 16377     2.142400e+02 5.526300e+02
+4 16378     2.905300e+02 -4.254400e+02
+5 16378     4.373400e+02 3.448900e+02
+4 16379     2.955100e+02 -4.282900e+02
+11 16379     1.852000e+02 1.427500e+02
+4 16380     -4.897400e+02 -4.301100e+02
+6 16380     9.829999e+01 -2.943500e+02
+7 16380     -3.109985e+00 -1.615900e+02
+8 16380     2.524800e+02 -2.801800e+02
+9 16380     1.405400e+02 -1.349000e+02
+10 16380     -2.338000e+01 -1.776800e+02
+12 16380     1.014400e+02 -2.509600e+02
+15 16380     5.066998e+01 -2.368200e+02
+4 16381     7.233002e+01 -4.312300e+02
+6 16381     -3.871500e+02 6.815900e+02
+4 16382     2.193500e+02 -4.320100e+02
+5 16382     4.762600e+02 2.157800e+02
+4 16383     2.039900e+02 -4.326900e+02
+5 16383     4.832600e+02 1.879700e+02
+4 16384     2.939200e+02 -4.324000e+02
+5 16384     4.489900e+02 3.489200e+02
+11 16384     1.906300e+02 1.413600e+02
+4 16385     2.939200e+02 -4.324000e+02
+11 16385     1.906300e+02 1.413600e+02
+14 16385     3.450800e+02 2.472100e+02
+4 16386     2.959200e+02 -4.345699e+02
+11 16386     1.935700e+02 1.438900e+02
+4 16387     2.704200e+02 -4.368300e+02
+5 16387     4.681700e+02 3.040400e+02
+4 16388     -5.857700e+02 -4.375699e+02
+9 16388     1.866300e+02 -2.404000e+02
+4 16389     -2.322900e+02 -4.373900e+02
+8 16389     1.582300e+02 2.910001e+01
+4 16390     -1.292900e+02 -4.383101e+02
+6 16390     -2.368900e+02 2.749700e+02
+4 16391     4.859003e+01 -4.385800e+02
+5 16391     5.215400e+02 -7.506000e+01
+6 16391     -3.617700e+02 6.340700e+02
+8 16391     -7.682001e+01 2.614400e+02
+4 16392     2.938900e+02 -4.388700e+02
+5 16392     4.587300e+02 3.492500e+02
+11 16392     1.987100e+02 1.423200e+02
+4 16393     2.938900e+02 -4.388700e+02
+5 16393     4.587300e+02 3.492500e+02
+11 16393     1.987100e+02 1.423200e+02
+14 16393     3.541400e+02 2.478100e+02
+4 16394     -2.537300e+02 -4.404800e+02
+8 16394     1.717700e+02 7.339996e+00
+4 16395     1.293400e+02 -4.407700e+02
+6 16395     -4.029100e+02 8.100000e+02
+8 16395     -9.772000e+01 3.789900e+02
+11 16395     2.279200e+02 -8.766998e+01
+13 16395     2.685100e+02 3.477300e+02
+14 16395     4.093500e+02 -2.677002e+01
+4 16396     2.103400e+02 -4.425000e+02
+5 16396     4.952500e+02 1.999700e+02
+4 16397     2.184700e+02 -4.423101e+02
+14 16397     3.917400e+02 1.158100e+02
+4 16398     2.184700e+02 -4.423101e+02
+5 16398     4.920400e+02 2.154100e+02
+13 16398     2.503000e+02 4.752800e+02
+14 16398     3.877100e+02 1.199200e+02
+4 16399     2.242900e+02 -4.445400e+02
+5 16399     4.970000e+02 2.223800e+02
+13 16399     2.514900e+02 4.838900e+02
+4 16400     2.928000e+02 -4.452900e+02
+5 16400     4.689500e+02 3.476800e+02
+4 16401     -2.009600e+02 -4.473101e+02
+5 16401     6.715300e+02 -5.396100e+02
+6 16401     -3.572998e+01 1.571900e+02
+13 16401     3.939900e+02 -1.219600e+02
+4 16402     -5.999600e+02 -4.506100e+02
+9 16402     2.060200e+02 -2.429900e+02
+4 16403     -1.454000e+02 -4.522800e+02
+11 16403     2.899900e+02 -4.892500e+02
+13 16403     3.458300e+02 -3.233002e+01
+4 16404     2.223800e+02 -4.535100e+02
+14 16404     4.033101e+02 1.266900e+02
+4 16405     9.196002e+01 -4.542000e+02
+5 16405     5.368500e+02 3.289978e+00
+6 16405     -3.590300e+02 7.340400e+02
+8 16405     -7.189001e+01 3.265100e+02
+11 16405     2.572900e+02 -1.359100e+02
+4 16406     -4.940997e+01 -4.543700e+02
+8 16406     -3.252002e+01 1.233200e+02
+9 16406     -2.632400e+02 2.103400e+02
+11 16406     2.986300e+02 -3.349100e+02
+4 16407     -3.475300e+02 -4.565100e+02
+12 16407     7.495001e+01 -1.704999e+01
+4 16408     2.314000e+02 -4.565000e+02
+11 16408     2.240400e+02 5.639001e+01
+4 16409     2.073900e+02 -4.584500e+02
+13 16409     2.742400e+02 4.599700e+02
+14 16409     4.156801e+02 1.018900e+02
+4 16410     2.642900e+02 -4.582700e+02
+5 16410     5.020500e+02 2.952300e+02
+13 16410     2.568800e+02 5.425900e+02
+14 16410     3.950400e+02 1.949400e+02
+4 16411     -7.453000e+02 -4.615900e+02
+9 16411     2.852800e+02 -3.751300e+02
+4 16412     1.604999e+01 -4.615200e+02
+5 16412     5.616200e+02 -1.259200e+02
+4 16413     2.365400e+02 -4.625000e+02
+5 16413     5.150000e+02 2.491900e+02
+4 16414     1.130600e+02 -4.638900e+02
+6 16414     -3.548600e+02 7.825100e+02
+8 16414     -6.696997e+01 3.576300e+02
+4 16415     2.076801e+02 -4.652000e+02
+5 16415     5.302000e+02 1.979800e+02
+14 16415     4.254500e+02 1.033500e+02
+4 16416     -2.874900e+02 -4.672500e+02
+8 16416     2.161300e+02 -1.817001e+01
+12 16416     6.396997e+01 8.482001e+01
+4 16417     7.931000e+01 -4.684600e+02
+5 16417     5.608400e+02 -1.600000e+01
+6 16417     -3.284000e+02 7.143300e+02
+8 16417     -5.298999e+01 3.095300e+02
+4 16418     2.147800e+02 -4.695900e+02
+11 16418     2.430200e+02 3.325000e+01
+4 16419     2.256600e+02 -4.702300e+02
+11 16419     2.438199e+02 4.823999e+01
+13 16419     2.825100e+02 4.893100e+02
+4 16420     2.256600e+02 -4.702300e+02
+13 16420     2.825100e+02 4.893100e+02
+14 16420     4.251700e+02 1.348100e+02
+4 16421     2.256600e+02 -4.702300e+02
+13 16421     2.825100e+02 4.893100e+02
+14 16421     4.251700e+02 1.348100e+02
+4 16422     -3.394400e+02 -4.713900e+02
+8 16422     2.402400e+02 -7.728003e+01
+4 16423     1.686600e+02 -4.721801e+02
+5 16423     5.482400e+02 1.344200e+02
+4 16424     2.115500e+02 -4.755100e+02
+5 16424     5.441100e+02 2.049900e+02
+14 16424     4.389301e+02 1.105200e+02
+4 16425     4.465002e+01 -4.762300e+02
+6 16425     -2.981600e+02 6.438600e+02
+12 16425     -1.299600e+02 6.116100e+02
+4 16426     6.612000e+01 -4.765400e+02
+9 16426     -2.802100e+02 3.960300e+02
+4 16427     -7.632200e+02 -4.785601e+02
+9 16427     3.070900e+02 -3.768000e+02
+10 16427     8.187000e+01 -4.920300e+02
+4 16428     6.834998e+01 -4.794500e+02
+8 16428     -3.789001e+01 2.956900e+02
+4 16429     -2.494000e+02 -4.799100e+02
+8 16429     2.118800e+02 3.051001e+01
+4 16430     4.442999e+01 -4.804399e+02
+6 16430     -2.911000e+02 6.454100e+02
+12 16430     -1.231000e+02 6.128800e+02
+4 16431     -5.078000e+02 -4.809200e+02
+6 16431     1.741500e+02 -2.748400e+02
+4 16432     6.610999e+01 -4.812900e+02
+8 16432     -3.516998e+01 2.931500e+02
+14 16432     4.831500e+02 -1.222300e+02
+4 16433     2.322400e+02 -4.819700e+02
+5 16433     5.455699e+02 2.432400e+02
+4 16434     5.412000e+01 -4.826600e+02
+6 16434     -2.934000e+02 6.664400e+02
+8 16434     -3.073999e+01 2.761600e+02
+11 16434     3.065900e+02 -1.835800e+02
+4 16435     1.440400e+02 -4.841200e+02
+5 16435     5.711200e+02 9.479999e+01
+6 16435     -3.372200e+02 8.566200e+02
+4 16436     2.081600e+02 -4.846700e+02
+5 16436     5.585601e+02 2.007000e+02
+4 16437     -2.596600e+02 -4.850500e+02
+6 16437     5.844000e+01 8.797998e+01
+8 16437     2.222800e+02 2.170999e+01
+12 16437     7.665002e+01 1.404600e+02
+4 16438     -2.327400e+02 -4.868101e+02
+13 16438     4.458800e+02 -1.504200e+02
+4 16439     1.419900e+02 -4.888101e+02
+5 16439     5.780500e+02 9.206000e+01
+6 16439     -3.290400e+02 8.533300e+02
+8 16439     -4.834003e+01 3.995500e+02
+4 16440     -3.075400e+02 -4.894800e+02
+6 16440     8.854999e+01 1.663000e+01
+8 16440     2.464200e+02 -3.087000e+01
+12 16440     1.032300e+02 6.754999e+01
+4 16441     -4.517500e+02 -4.897400e+02
+6 16441     1.628400e+02 -1.907400e+02
+4 16442     2.082700e+02 -4.911600e+02
+5 16442     5.683000e+02 2.014900e+02
+4 16443     2.437700e+02 -4.927300e+02
+5 16443     5.567600e+02 2.645300e+02
+11 16443     2.701300e+02 7.842001e+01
+4 16444     2.611500e+02 -4.924600e+02
+5 16444     5.506200e+02 2.945700e+02
+4 16445     1.471100e+02 -4.927800e+02
+5 16445     5.829100e+02 1.012900e+02
+6 16445     -3.251300e+02 8.654400e+02
+4 16446     -2.598200e+02 -4.958400e+02
+7 16446     1.365002e+01 1.679400e+02
+8 16446     2.318800e+02 2.610999e+01
+4 16447     1.586600e+02 -4.961300e+02
+11 16447     2.930200e+02 -3.912000e+01
+4 16448     -2.899100e+02 -4.965100e+02
+10 16448     2.738000e+01 1.453400e+02
+15 16448     1.059100e+02 1.438600e+02
+4 16449     1.612200e+02 -4.981700e+02
+5 16449     5.878101e+02 1.253400e+02
+8 16449     -4.326001e+01 4.269700e+02
+11 16449     2.951899e+02 -3.498999e+01
+4 16450     2.488000e+02 -4.980000e+02
+5 16450     5.624600e+02 2.739100e+02
+4 16451     -2.334400e+02 -4.994800e+02
+6 16451     5.906000e+01 1.369200e+02
+4 16452     2.116801e+02 -4.995800e+02
+13 16452     3.229000e+02 4.713100e+02
+14 16452     4.729800e+02 1.134300e+02
+4 16453     2.116801e+02 -4.995800e+02
+13 16453     3.229000e+02 4.713100e+02
+14 16453     4.729800e+02 1.134300e+02
+4 16454     3.068500e+02 -5.044700e+02
+5 16454     5.556500e+02 3.727800e+02
+14 16454     4.470900e+02 2.705000e+02
+4 16455     2.091500e+02 -5.051200e+02
+5 16455     5.876400e+02 2.043200e+02
+4 16456     2.443400e+02 -5.050300e+02
+5 16456     5.747200e+02 2.664400e+02
+4 16457     -1.145001e+01 -5.063600e+02
+9 16457     -2.213100e+02 2.816100e+02
+11 16457     3.578101e+02 -2.701600e+02
+4 16458     -7.522500e+02 -5.088500e+02
+7 16458     1.395800e+02 -4.009700e+02
+10 16458     1.194700e+02 -4.641899e+02
+4 16459     2.144301e+02 -5.122300e+02
+11 16459     2.982700e+02 3.745999e+01
+4 16460     2.380500e+02 -5.127100e+02
+5 16460     5.879100e+02 2.564100e+02
+11 16460     2.978400e+02 7.092999e+01
+13 16460     3.295000e+02 5.132700e+02
+14 16460     4.802400e+02 1.604500e+02
+4 16461     2.380500e+02 -5.127100e+02
+5 16461     5.879100e+02 2.564100e+02
+11 16461     2.978400e+02 7.092999e+01
+13 16461     3.295000e+02 5.132700e+02
+14 16461     4.802400e+02 1.604500e+02
+4 16462     2.302300e+02 -5.131500e+02
+5 16462     5.916400e+02 2.420000e+02
+11 16462     2.991100e+02 5.935001e+01
+14 16462     4.845100e+02 1.465500e+02
+4 16463     2.302300e+02 -5.131500e+02
+5 16463     5.916400e+02 2.420000e+02
+11 16463     2.991100e+02 5.935001e+01
+14 16463     4.845100e+02 1.465500e+02
+4 16464     -6.400024e+00 -5.150000e+02
+5 16464     6.447000e+02 -1.531200e+02
+6 16464     -2.139900e+02 5.595000e+02
+13 16464     3.817000e+02 1.771200e+02
+14 16464     5.489399e+02 -2.344700e+02
+4 16465     2.439800e+02 -5.155601e+02
+5 16465     5.896400e+02 2.669000e+02
+4 16466     2.188000e+02 -5.160500e+02
+5 16466     5.998600e+02 2.222000e+02
+4 16467     2.454900e+02 -5.180100e+02
+5 16467     5.925300e+02 2.697600e+02
+11 16467     3.033500e+02 8.160999e+01
+13 16467     3.329700e+02 5.248000e+02
+4 16468     -4.692700e+02 -5.187800e+02
+6 16468     2.050200e+02 -1.920300e+02
+4 16469     -4.558200e+02 -5.224301e+02
+12 16469     2.083900e+02 -1.322300e+02
+13 16469     5.239100e+02 -3.984100e+02
+4 16470     1.566100e+02 -5.223500e+02
+5 16470     6.232400e+02 1.208100e+02
+8 16470     -1.722998e+01 4.209200e+02
+11 16470     3.273400e+02 -3.854999e+01
+13 16470     3.597600e+02 3.997900e+02
+14 16470     5.178700e+02 3.096002e+01
+4 16471     2.328600e+02 -5.238600e+02
+5 16471     6.059200e+02 2.477900e+02
+13 16471     3.442400e+02 5.068100e+02
+14 16471     4.974100e+02 1.531100e+02
+4 16472     -4.014900e+02 -5.325800e+02
+7 16472     8.846997e+01 -2.440002e+00
+15 16472     1.850400e+02 -3.775000e+01
+4 16473     -4.014900e+02 -5.325800e+02
+7 16473     8.846997e+01 -2.440002e+00
+15 16473     1.850400e+02 -3.775000e+01
+4 16474     -1.509900e+02 -5.361600e+02
+11 16474     3.999100e+02 -4.774900e+02
+14 16474     6.315100e+02 -4.816700e+02
+4 16475     2.208400e+02 -5.397000e+02
+5 16475     6.324100e+02 2.285600e+02
+4 16476     -1.499700e+02 -5.409900e+02
+11 16476     4.063800e+02 -4.742700e+02
+4 16477     1.420400e+02 -5.434900e+02
+8 16477     8.179993e+00 4.025300e+02
+4 16478     -3.244400e+02 -5.450500e+02
+12 16478     1.818700e+02 7.592999e+01
+4 16479     5.737000e+01 -5.565900e+02
+6 16479     -1.827900e+02 7.055200e+02
+13 16479     4.170500e+02 2.719400e+02
+4 16480     1.645601e+02 -5.563000e+02
+8 16480     1.532001e+01 4.322800e+02
+13 16480     3.978500e+02 4.179200e+02
+4 16481     -4.853400e+02 -5.610000e+02
+7 16481     1.355300e+02 -9.119000e+01
+4 16482     1.055700e+02 -5.752400e+02
+6 16482     -1.780000e+02 8.080400e+02
+4 16483     1.206700e+02 -5.812200e+02
+5 16483     7.135200e+02 6.946997e+01
+8 16483     5.101001e+01 3.761000e+02
+11 16483     4.120800e+02 -7.739001e+01
+14 16483     6.069399e+02 -1.684003e+01
+4 16484     1.083100e+02 -5.820800e+02
+5 16484     7.167900e+02 4.941998e+01
+6 16484     -1.692200e+02 8.160900e+02
+11 16484     4.172100e+02 -9.406000e+01
+4 16485     6.187000e+01 3.587900e+02
+5 16485     -6.091600e+02 -3.313400e+02
+4 16486     -1.318700e+02 1.667200e+02
+13 16486     -5.540100e+02 -2.262000e+02
+4 16487     1.433800e+02 8.797000e+01
+5 16487     -5.254100e+02 3.934003e+01
+13 16487     -5.845300e+02 2.784300e+02
+14 16487     -5.997300e+02 -6.357001e+01
+4 16488     2.315997e+01 8.804999e+01
+11 16488     -5.119300e+02 -3.172600e+02
+4 16489     1.156800e+02 8.382999e+01
+5 16489     -5.100900e+02 -2.153998e+01
+13 16489     -5.649300e+02 2.267100e+02
+14 16489     -5.844600e+02 -1.245300e+02
+4 16490     1.800400e+02 7.278003e+01
+5 16490     -4.830200e+02 1.115300e+02
+13 16490     -5.573700e+02 3.407400e+02
+4 16491     2.149200e+02 7.065997e+01
+5 16491     -4.816600e+02 1.775800e+02
+4 16492     9.903003e+01 7.014001e+01
+5 16492     -4.668200e+02 -5.302002e+01
+4 16493     1.811100e+02 6.967999e+01
+13 16493     -5.490000e+02 3.405800e+02
+4 16494     1.399301e+02 6.771002e+01
+5 16494     -4.659900e+02 2.833002e+01
+14 16494     -5.406500e+02 -7.335999e+01
+4 16495     1.832500e+02 6.541998e+01
+5 16495     -4.667700e+02 1.156300e+02
+4 16496     8.689001e+01 6.358002e+01
+5 16496     -4.503300e+02 -7.783002e+01
+4 16497     1.815500e+02 6.197998e+01
+13 16497     -5.316200e+02 3.450600e+02
+14 16497     -5.289200e+02 9.549988e+00
+4 16498     7.520001e+01 4.651001e+01
+5 16498     -3.968600e+02 -1.037500e+02
+4 16499     8.765997e+01 4.245001e+01
+11 16499     -4.526800e+02 -2.076900e+02
+4 16500     1.760000e+02 3.534003e+01
+11 16500     -4.603300e+02 -7.364001e+01
+4 16501     2.167200e+02 3.572998e+01
+14 16501     -4.624600e+02 6.964001e+01
+4 16502     1.593700e+02 3.503998e+01
+5 16502     -3.750500e+02 6.120001e+01
+4 16503     1.593700e+02 3.503998e+01
+13 16503     -4.608500e+02 2.997600e+02
+4 16504     1.410900e+02 3.434003e+01
+5 16504     -3.714700e+02 2.712000e+01
+14 16504     -4.500200e+02 -7.342999e+01
+4 16505     2.105100e+02 3.232001e+01
+11 16505     -4.587500e+02 -1.959003e+01
+13 16505     -4.709600e+02 3.916100e+02
+4 16506     1.303000e+02 2.884003e+01
+5 16506     -3.523500e+02 1.119995e+00
+4 16507     2.742100e+02 2.903003e+01
+5 16507     -4.040700e+02 2.992300e+02
+4 16508     2.050400e+02 2.501001e+01
+13 16508     -4.525000e+02 3.829300e+02
+4 16509     1.403600e+02 2.464001e+01
+5 16509     -3.425600e+02 2.244000e+01
+13 16509     -4.312900e+02 2.736200e+02
+4 16510     2.410699e+02 2.407001e+01
+5 16510     -3.740100e+02 2.278100e+02
+13 16510     -4.751700e+02 4.488800e+02
+14 16510     -4.513700e+02 1.222500e+02
+4 16511     1.038700e+02 1.053003e+01
+5 16511     -2.963000e+02 -5.289001e+01
+13 16511     -3.860900e+02 2.138400e+02
+14 16511     -3.755000e+02 -1.522400e+02
+4 16512     1.194500e+02 1.060999e+01
+5 16512     -3.002900e+02 -2.098999e+01
+4 16513     1.194500e+02 1.060999e+01
+5 16513     -3.002900e+02 -2.098999e+01
+4 16514     1.288900e+02 5.580017e+00
+13 16514     -3.834400e+02 2.533700e+02
+4 16515     2.911500e+02 -3.590027e+00
+11 16515     -3.879900e+02 1.085500e+02
+4 16516     1.711801e+02 -2.006000e+01
+5 16516     -2.348500e+02 8.050000e+01
+11 16516     -4.135100e+02 -9.448999e+01
+13 16516     -3.347100e+02 3.204700e+02
+4 16517     -2.522300e+02 -2.301001e+01
+10 16517     -7.105400e+02 2.041998e+01
+4 16518     2.237500e+02 -2.435999e+01
+5 16518     -2.353800e+02 1.809500e+02
+13 16518     -3.561000e+02 4.148000e+02
+4 16519     -2.595400e+02 -2.642999e+01
+10 16519     -7.022000e+02 8.479980e+00
+4 16520     -4.835999e+01 -2.931000e+01
+5 16520     -1.720400e+02 -3.508200e+02
+4 16521     -1.076001e+01 -3.491998e+01
+15 16521     -8.630100e+02 5.799900e+02
+4 16522     2.603800e+02 -3.532001e+01
+5 16522     -2.503600e+02 2.668300e+02
+13 16522     -3.727300e+02 4.887900e+02
+14 16522     -3.306000e+02 1.605200e+02
+4 16523     2.664000e+02 -3.571002e+01
+5 16523     -2.505200e+02 2.777700e+02
+13 16523     -3.735900e+02 4.987900e+02
+14 16523     -3.303800e+02 1.714700e+02
+4 16524     -9.419983e+00 -3.826001e+01
+7 16524     -7.878800e+02 3.764700e+02
+11 16524     -3.510400e+02 -3.708100e+02
+13 16524     -2.610200e+02 3.953998e+01
+14 16524     -2.438900e+02 -3.716400e+02
+4 16525     2.722800e+02 -3.840002e+01
+5 16525     -2.442300e+02 2.893300e+02
+11 16525     -3.560500e+02 7.964999e+01
+13 16525     -3.698700e+02 5.091200e+02
+4 16526     9.751001e+01 -4.012000e+01
+14 16526     -2.547600e+02 -1.636900e+02
+4 16527     2.513500e+02 -4.103998e+01
+5 16527     -2.376500e+02 2.512200e+02
+11 16527     -3.493400e+02 4.951001e+01
+4 16528     8.003003e+01 -4.271997e+01
+5 16528     -1.635000e+02 -9.804999e+01
+4 16529     2.617800e+02 -4.447998e+01
+5 16529     -2.320300e+02 2.702700e+02
+11 16529     -3.456000e+02 6.478000e+01
+13 16529     -3.576400e+02 4.927400e+02
+14 16529     -3.129300e+02 1.641400e+02
+4 16530     2.721100e+02 -4.715002e+01
+5 16530     -2.275400e+02 2.900500e+02
+11 16530     -3.445800e+02 8.004999e+01
+13 16530     -3.568900e+02 5.105200e+02
+4 16531     2.553199e+02 -4.776001e+01
+5 16531     -2.250600e+02 2.586500e+02
+11 16531     -3.394500e+02 5.557999e+01
+13 16531     -3.500100e+02 4.826200e+02
+14 16531     -3.050800e+02 1.527700e+02
+4 16532     2.553199e+02 -4.776001e+01
+5 16532     -2.250600e+02 2.586500e+02
+13 16532     -3.500100e+02 4.826200e+02
+14 16532     -3.050800e+02 1.527700e+02
+4 16533     2.600000e+02 -4.833002e+01
+5 16533     -2.243900e+02 2.678100e+02
+4 16534     2.600000e+02 -4.833002e+01
+5 16534     -2.243900e+02 2.678100e+02
+11 16534     -3.388800e+02 6.297000e+01
+13 16534     -3.503000e+02 4.909700e+02
+14 16534     -3.046100e+02 1.617600e+02
+4 16535     2.610200e+02 -5.482001e+01
+5 16535     -2.122500e+02 2.704500e+02
+11 16535     -3.276600e+02 6.625000e+01
+14 16535     -2.905600e+02 1.654700e+02
+4 16536     3.510999e+01 -5.540002e+01
+5 16536     -1.339200e+02 -1.820400e+02
+4 16537     1.392999e+01 -5.759998e+01
+10 16537     -7.953200e+02 6.059800e+02
+4 16538     2.657700e+02 -5.754999e+01
+5 16538     -2.074600e+02 2.794200e+02
+11 16538     -3.263100e+02 7.353000e+01
+13 16538     -3.372400e+02 5.025300e+02
+14 16538     -2.889700e+02 1.741900e+02
+4 16539     -6.073999e+01 -5.925000e+01
+7 16539     -7.075500e+02 2.943700e+02
+10 16539     -7.279700e+02 4.438300e+02
+15 16539     -7.520600e+02 4.733800e+02
+4 16540     -1.660100e+02 -5.978003e+01
+13 16540     -1.697400e+02 -1.927900e+02
+4 16541     7.848999e+01 -5.996002e+01
+5 16541     -1.310600e+02 -9.815002e+01
+14 16541     -2.149300e+02 -1.946300e+02
+4 16542     -5.063000e+01 -6.082001e+01
+5 16542     -1.117400e+02 -3.466300e+02
+7 16542     -7.117300e+02 3.135000e+02
+8 16542     -5.751200e+02 2.300110e-01
+10 16542     -7.323800e+02 4.653900e+02
+13 16542     -2.144900e+02 -1.428998e+01
+14 16542     -1.926400e+02 -4.421400e+02
+4 16543     2.120699e+02 -6.115997e+01
+13 16543     -2.872200e+02 3.988500e+02
+14 16543     -2.408300e+02 5.552002e+01
+4 16544     -7.559998e+00 -6.304999e+01
+5 16544     -1.134700e+02 -2.623800e+02
+10 16544     -7.610500e+02 5.589100e+02
+11 16544     -3.087700e+02 -3.616200e+02
+4 16545     2.671300e+02 -6.309003e+01
+5 16545     -1.972700e+02 2.828500e+02
+4 16546     -1.665997e+01 -6.714001e+01
+8 16546     -5.776500e+02 6.512000e+01
+11 16546     -3.000600e+02 -3.746800e+02
+4 16547     -4.744800e+02 -7.071002e+01
+7 16547     -4.695800e+02 -3.557300e+02
+9 16547     -3.154600e+02 -4.516400e+02
+10 16547     -5.493700e+02 -3.381400e+02
+15 16547     -5.572000e+02 -4.259600e+02
+4 16548     -8.030029e+00 -7.071002e+01
+5 16548     -9.894000e+01 -2.616700e+02
+7 16548     -7.234300e+02 3.981200e+02
+8 16548     -5.746000e+02 8.232999e+01
+14 16548     -1.810000e+02 -3.565500e+02
+4 16549     1.630100e+02 -7.612000e+01
+5 16549     -1.126600e+02 6.247998e+01
+4 16550     1.630100e+02 -7.612000e+01
+5 16550     -1.126600e+02 6.247998e+01
+13 16550     -2.427100e+02 3.226000e+02
+14 16550     -1.960600e+02 -3.407001e+01
+4 16551     1.013000e+02 -7.712000e+01
+11 16551     -3.096200e+02 -1.899300e+02
+13 16551     -2.271200e+02 2.263700e+02
+14 16551     -1.858200e+02 -1.472200e+02
+4 16552     2.501801e+02 -9.226001e+01
+5 16552     -1.128800e+02 2.392200e+02
+11 16552     -2.970100e+02 3.956000e+01
+13 16552     -2.542800e+02 4.704300e+02
+14 16552     -1.970000e+02 1.338700e+02
+4 16553     -5.304500e+02 -1.003100e+02
+7 16553     -4.024900e+02 -4.063000e+02
+15 16553     -4.835800e+02 -5.030000e+02
+4 16554     1.440400e+02 -1.066400e+02
+5 16554     -5.303998e+01 3.563000e+01
+4 16555     -4.451700e+02 -1.071900e+02
+13 16555     2.590002e+01 -5.570100e+02
+4 16556     3.121100e+02 -1.123400e+02
+5 16556     -1.195900e+02 3.744500e+02
+14 16556     -2.012700e+02 2.653900e+02
+4 16557     1.617000e+02 -1.133500e+02
+5 16557     -4.282001e+01 6.954999e+01
+11 16557     -2.659300e+02 -9.519000e+01
+14 16557     -1.301700e+02 -3.012000e+01
+4 16558     -2.621800e+02 -1.222200e+02
+7 16558     -4.880500e+02 -1.609003e+01
+15 16558     -5.120600e+02 3.427002e+01
+4 16559     -2.729500e+02 -1.236000e+02
+15 16559     -5.057800e+02 1.240997e+01
+4 16560     6.731000e+01 -1.347400e+02
+13 16560     -1.324200e+02 1.888500e+02
+14 16560     -7.640002e+01 -1.972400e+02
+4 16561     2.901000e+02 -1.394100e+02
+5 16561     -3.477002e+01 3.183000e+02
+13 16561     -1.936000e+02 5.439600e+02
+14 16561     -1.222300e+02 2.119700e+02
+4 16562     -2.050500e+02 -1.423900e+02
+13 16562     -3.003003e+01 -2.193900e+02
+4 16563     1.512500e+02 -1.425900e+02
+5 16563     1.146997e+01 5.496002e+01
+4 16564     -2.137600e+02 -1.502800e+02
+10 16564     -4.747800e+02 1.693800e+02
+4 16565     -7.005300e+02 -1.520700e+02
+7 16565     -2.718200e+02 -5.638800e+02
+4 16566     -5.265500e+02 -1.542100e+02
+7 16566     -3.292300e+02 -3.667400e+02
+4 16567     -2.189500e+02 -1.550200e+02
+10 16567     -4.657100e+02 1.611700e+02
+4 16568     1.500244e-01 -1.559800e+02
+7 16568     -5.668500e+02 4.561000e+02
+11 16568     -1.610200e+02 -3.294500e+02
+12 16568     -6.848800e+02 3.718600e+02
+4 16569     -4.500122e-01 -1.603400e+02
+5 16569     6.559003e+01 -2.255000e+02
+7 16569     -5.584300e+02 4.570700e+02
+8 16569     -4.311900e+02 1.245500e+02
+4 16570     -5.974100e+02 -1.620500e+02
+6 16570     -2.021900e+02 -7.056700e+02
+7 16570     -2.941600e+02 -4.442200e+02
+15 16570     -3.551700e+02 -5.681000e+02
+4 16571     1.654000e+02 -1.655700e+02
+13 16571     -1.100100e+02 3.461100e+02
+14 16571     -3.963000e+01 -1.315997e+01
+4 16572     7.471997e+01 -1.695200e+02
+5 16572     7.092999e+01 -8.157001e+01
+8 16572     -4.424900e+02 2.554900e+02
+4 16573     -1.117999e+01 -1.704400e+02
+5 16573     8.540002e+01 -2.422800e+02
+7 16573     -5.336400e+02 4.422700e+02
+10 16573     -5.196400e+02 6.038500e+02
+11 16573     -1.348100e+02 -3.436700e+02
+13 16573     -6.231000e+01 8.010001e+01
+14 16573     2.510010e+00 -3.334900e+02
+4 16574     -8.798999e+01 -1.917700e+02
+7 16574     -4.519700e+02 3.179800e+02
+11 16574     -8.157001e+01 -4.572300e+02
+15 16574     -4.060500e+02 4.954500e+02
+4 16575     -3.330017e+00 -2.016600e+02
+8 16575     -3.677300e+02 1.311300e+02
+12 16575     -5.883600e+02 3.911600e+02
+4 16576     1.371600e+02 -2.034800e+02
+11 16576     -6.277002e+01 -9.490997e+01
+4 16577     -2.065997e+01 -2.048800e+02
+11 16577     -7.894000e+01 -3.512200e+02
+12 16577     -5.702600e+02 3.569600e+02
+4 16578     -7.318900e+02 -2.136400e+02
+7 16578     -1.875800e+02 -5.562300e+02
+10 16578     -2.753500e+02 -6.018900e+02
+4 16579     1.529000e+02 -2.144400e+02
+8 16579     -3.984500e+02 3.946500e+02
+11 16579     -1.070700e+02 -9.101001e+01
+14 16579     4.689001e+01 -2.695001e+01
+4 16580     9.306000e+01 -2.268700e+02
+5 16580     1.692800e+02 -3.422998e+01
+11 16580     -7.289001e+01 -1.757700e+02
+12 16580     -6.020500e+02 6.107200e+02
+13 16580     -5.530029e+00 2.532400e+02
+14 16580     7.989001e+01 -1.289500e+02
+4 16581     -5.100098e-01 -2.346500e+02
+5 16581     1.972300e+02 -2.066100e+02
+7 16581     -4.261600e+02 4.910600e+02
+11 16581     -3.659998e+01 -3.131100e+02
+13 16581     2.620001e+01 1.146200e+02
+4 16582     2.055601e+02 -2.377400e+02
+13 16582     -1.840002e+01 4.260100e+02
+14 16582     7.221002e+01 7.351001e+01
+4 16583     4.979980e+00 -2.384200e+02
+5 16583     2.035100e+02 -1.955000e+02
+7 16583     -4.222200e+02 5.023500e+02
+4 16584     7.842999e+01 -2.418500e+02
+5 16584     1.980200e+02 -5.922998e+01
+11 16584     -4.667999e+01 -1.944000e+02
+12 16584     -5.624500e+02 5.851800e+02
+4 16585     -7.388300e+02 -2.487600e+02
+9 16585     1.243100e+02 -5.168400e+02
+4 16586     -7.388300e+02 -2.487600e+02
+9 16586     1.243100e+02 -5.168400e+02
+4 16587     -7.463500e+02 -2.496300e+02
+6 16587     2.495001e+01 -7.877800e+02
+7 16587     -1.410600e+02 -5.480400e+02
+4 16588     -6.734500e+02 -2.553300e+02
+7 16588     -1.541100e+02 -4.683800e+02
+4 16589     1.622800e+02 -2.556600e+02
+5 16589     2.076000e+02 9.388000e+01
+8 16589     -3.413700e+02 4.140500e+02
+13 16589     1.979999e+01 3.609100e+02
+4 16590     -6.321200e+02 -2.591000e+02
+7 16590     -1.613300e+02 -4.213400e+02
+9 16590     4.712000e+01 -4.306500e+02
+12 16590     -6.776001e+01 -5.957900e+02
+4 16591     -6.672300e+02 -2.594500e+02
+6 16591     -2.072998e+01 -6.882000e+02
+9 16591     7.637000e+01 -4.566500e+02
+4 16592     -3.703100e+02 -2.639000e+02
+7 16592     -2.407100e+02 -9.721002e+01
+13 16592     2.094700e+02 -3.962200e+02
+4 16593     1.530029e+00 -2.651800e+02
+13 16593     6.781000e+01 1.260200e+02
+4 16594     -7.612300e+02 -2.715400e+02
+6 16594     6.033002e+01 -7.819200e+02
+7 16594     -1.121200e+02 -5.486801e+02
+9 16594     1.599301e+02 -5.150900e+02
+4 16595     -7.950700e+02 -2.720200e+02
+6 16595     8.306000e+01 -8.181600e+02
+9 16595     1.849000e+02 -5.393500e+02
+4 16596     -3.002200e+02 -2.725300e+02
+6 16596     -2.453600e+02 -1.442200e+02
+4 16597     -2.580017e+00 -2.793800e+02
+5 16597     2.748900e+02 -1.994500e+02
+4 16598     -2.580017e+00 -2.793800e+02
+5 16598     2.748900e+02 -1.994500e+02
+8 16598     -2.582800e+02 1.533100e+02
+4 16599     -2.889100e+02 -2.811000e+02
+6 16599     -2.387000e+02 -1.171800e+02
+4 16600     -6.926400e+02 -2.841900e+02
+9 16600     1.178800e+02 -4.567100e+02
+4 16601     -2.224400e+02 -2.886800e+02
+6 16601     -3.039700e+02 1.799927e-01
+4 16602     -2.174000e+02 -2.882500e+02
+7 16602     -2.637100e+02 1.401300e+02
+10 16602     -2.708500e+02 2.024200e+02
+12 16602     -2.623400e+02 6.572998e+01
+13 16602     1.957600e+02 -1.899000e+02
+15 16602     -2.359600e+02 2.051300e+02
+4 16603     -6.573400e+02 -2.892700e+02
+9 16603     9.463000e+01 -4.271100e+02
+4 16604     -8.108000e+02 -2.896400e+02
+7 16604     -8.021002e+01 -5.868101e+02
+4 16605     -8.108000e+02 -2.896400e+02
+6 16605     1.127300e+02 -8.179000e+02
+7 16605     -8.021002e+01 -5.868101e+02
+4 16606     -6.800700e+02 -2.903300e+02
+9 16606     1.132500e+02 -4.432300e+02
+4 16607     -3.413000e+02 -2.908500e+02
+6 16607     -1.725700e+02 -1.909900e+02
+7 16607     -2.222800e+02 -4.621002e+01
+12 16607     -1.734900e+02 -1.313900e+02
+4 16608     2.434998e+01 -2.951300e+02
+5 16608     2.971000e+02 -1.469600e+02
+8 16608     -2.453700e+02 1.990100e+02
+12 16608     -4.255200e+02 4.974700e+02
+4 16609     4.320007e+00 -2.958300e+02
+5 16609     3.014301e+02 -1.829200e+02
+7 16609     -3.248300e+02 5.256300e+02
+8 16609     -2.387400e+02 1.671600e+02
+4 16610     -6.496300e+02 -2.968400e+02
+6 16610     9.419983e+00 -6.306400e+02
+7 16610     -1.107100e+02 -4.172600e+02
+9 16610     9.520001e+01 -4.153200e+02
+4 16611     -7.864800e+02 -3.054800e+02
+9 16611     2.060000e+02 -5.062800e+02
+4 16612     -7.134400e+02 -3.059800e+02
+6 16612     6.616998e+01 -6.954900e+02
+4 16613     -6.742700e+02 -3.097500e+02
+7 16613     -8.988000e+01 -4.367400e+02
+4 16614     -2.185200e+02 -3.132500e+02
+5 16614     4.513101e+02 -6.061899e+02
+13 16614     2.311600e+02 -1.839300e+02
+15 16614     -1.978600e+02 2.110700e+02
+4 16615     -4.367600e+02 -3.137700e+02
+6 16615     -9.592001e+01 -3.252400e+02
+7 16615     -1.542800e+02 -1.576800e+02
+8 16615     9.376001e+01 -3.052400e+02
+13 16615     2.889900e+02 -4.572000e+02
+4 16616     1.909973e+00 -3.335700e+02
+5 16616     3.641200e+02 -1.786100e+02
+13 16616     1.581100e+02 1.439700e+02
+14 16616     2.745300e+02 -2.650300e+02
+4 16617     2.333002e+01 -3.345800e+02
+6 16617     -5.292800e+02 5.239200e+02
+4 16618     1.695000e+02 -3.345600e+02
+5 16618     3.369301e+02 1.179100e+02
+13 16618     1.257700e+02 3.866600e+02
+14 16618     2.402900e+02 2.316998e+01
+4 16619     2.383500e+02 -3.360200e+02
+5 16619     3.213700e+02 2.405200e+02
+4 16620     -7.312100e+02 -3.441000e+02
+9 16620     1.940699e+02 -4.414301e+02
+4 16621     -7.260400e+02 -3.471300e+02
+9 16621     1.918400e+02 -4.355601e+02
+4 16622     -7.513000e+01 -3.476700e+02
+10 16622     -1.294200e+02 5.538600e+02
+4 16623     -7.896100e+02 -3.488500e+02
+7 16623     -1.983002e+01 -5.293900e+02
+4 16624     -7.325300e+02 -3.511800e+02
+9 16624     1.995800e+02 -4.373199e+02
+4 16625     -7.709600e+02 -3.512200e+02
+7 16625     -2.144000e+01 -5.102900e+02
+9 16625     2.274700e+02 -4.634200e+02
+10 16625     -8.321002e+01 -5.707600e+02
+4 16626     -7.188400e+02 -3.555500e+02
+9 16626     1.935500e+02 -4.244300e+02
+4 16627     -7.675000e+02 -3.568400e+02
+7 16627     -1.594000e+01 -5.029399e+02
+10 16627     -7.572998e+01 -5.627500e+02
+4 16628     -7.664600e+02 -3.617400e+02
+7 16628     -1.102002e+01 -4.990500e+02
+10 16628     -6.951001e+01 -5.590000e+02
+4 16629     2.623400e+02 -3.641200e+02
+5 16629     3.552900e+02 2.869100e+02
+4 16630     2.886300e+02 -3.646100e+02
+5 16630     3.461400e+02 3.350400e+02
+4 16631     -1.876100e+02 -3.667000e+02
+5 16631     5.350699e+02 -5.367700e+02
+6 16631     -1.806800e+02 1.247200e+02
+4 16632     2.575000e+02 -3.671900e+02
+11 16632     1.030400e+02 8.328000e+01
+4 16633     -1.575000e+01 -3.675400e+02
+6 16633     -4.472300e+02 4.602800e+02
+7 16633     -2.020800e+02 5.180500e+02
+11 16633     1.657400e+02 -3.072500e+02
+12 16633     -2.741600e+02 4.524100e+02
+13 16633     2.058600e+02 1.278600e+02
+14 16633     3.325400e+02 -2.879900e+02
+4 16634     -2.875700e+02 -3.704500e+02
+7 16634     -1.340400e+02 7.177002e+01
+4 16635     2.475000e+02 -3.710400e+02
+11 16635     1.078400e+02 6.950000e+01
+13 16635     1.497900e+02 5.115300e+02
+14 16635     2.703000e+02 1.638200e+02
+4 16636     2.762200e+02 -3.711000e+02
+11 16636     1.085000e+02 1.102100e+02
+13 16636     1.408900e+02 5.545600e+02
+4 16637     2.886700e+02 -3.714200e+02
+5 16637     3.568199e+02 3.357000e+02
+13 16637     1.365200e+02 5.742800e+02
+4 16638     2.954900e+02 -3.770000e+02
+14 16638     2.624301e+02 2.459500e+02
+4 16639     -7.382200e+02 -3.783700e+02
+9 16639     2.236801e+02 -4.225400e+02
+4 16640     2.644000e+02 -3.796800e+02
+5 16640     3.792900e+02 2.924000e+02
+11 16640     1.199100e+02 9.454001e+01
+13 16640     1.557600e+02 5.371800e+02
+4 16641     2.644000e+02 -3.796800e+02
+5 16641     3.792900e+02 2.924000e+02
+11 16641     1.199100e+02 9.454001e+01
+13 16641     1.557600e+02 5.371800e+02
+4 16642     -7.336300e+02 -3.802000e+02
+7 16642     1.280029e+00 -4.552400e+02
+10 16642     -4.740002e+01 -5.094200e+02
+4 16643     1.406500e+02 -3.799000e+02
+6 16643     -5.169400e+02 8.102900e+02
+8 16643     -1.720100e+02 3.902400e+02
+4 16644     1.201100e+02 -3.808000e+02
+14 16644     3.220400e+02 -5.119000e+01
+4 16645     1.201100e+02 -3.808000e+02
+13 16645     1.956801e+02 3.244900e+02
+4 16646     2.423199e+02 -3.815100e+02
+5 16646     3.906100e+02 2.521500e+02
+11 16646     1.234500e+02 6.229999e+01
+13 16646     1.658700e+02 5.029300e+02
+4 16647     2.472800e+02 -3.817700e+02
+5 16647     3.886899e+02 2.616900e+02
+11 16647     1.238400e+02 6.966000e+01
+13 16647     1.647200e+02 5.108200e+02
+4 16648     -1.852200e+02 -3.828600e+02
+12 16648     -1.194000e+02 1.939000e+02
+4 16649     2.594100e+02 -3.833700e+02
+5 16649     3.839000e+02 2.860900e+02
+11 16649     1.250000e+02 8.810999e+01
+4 16650     2.594100e+02 -3.833700e+02
+11 16650     1.250000e+02 8.810999e+01
+14 16650     2.842200e+02 1.849000e+02
+4 16651     -3.377700e+02 -3.861000e+02
+6 16651     -3.423999e+01 -1.063000e+02
+8 16651     1.481900e+02 -1.217700e+02
+12 16651     -2.840997e+01 -5.288000e+01
+4 16652     -1.757500e+02 -3.914400e+02
+5 16652     5.716000e+02 -5.097000e+02
+6 16652     -1.480000e+02 1.621600e+02
+7 16652     -1.387200e+02 2.492900e+02
+10 16652     -1.318000e+02 3.093000e+02
+12 16652     -1.116600e+02 2.147000e+02
+13 16652     3.195200e+02 -1.045200e+02
+4 16653     -1.757500e+02 -3.914400e+02
+5 16653     5.716000e+02 -5.097000e+02
+7 16653     -1.387200e+02 2.492900e+02
+10 16653     -1.318000e+02 3.093000e+02
+12 16653     -1.116600e+02 2.147000e+02
+15 16653     -7.622998e+01 3.346300e+02
+4 16654     2.786100e+02 -3.916500e+02
+13 16654     1.681200e+02 5.596000e+02
+4 16655     2.539301e+02 -3.935400e+02
+11 16655     1.386000e+02 8.128000e+01
+4 16656     2.838101e+02 -3.942600e+02
+11 16656     1.403900e+02 1.234900e+02
+13 16656     1.693600e+02 5.682300e+02
+14 16656     2.937400e+02 2.260000e+02
+4 16657     1.316700e+02 -3.958500e+02
+5 16657     4.403700e+02 6.097998e+01
+6 16657     -4.825000e+02 7.951900e+02
+8 16657     -1.503300e+02 3.778900e+02
+11 16657     1.641900e+02 -9.163000e+01
+13 16657     2.119301e+02 3.430000e+02
+14 16657     3.418500e+02 -3.008002e+01
+4 16658     2.275699e+02 -3.954600e+02
+5 16658     4.176500e+02 2.265700e+02
+13 16658     1.895200e+02 4.815600e+02
+14 16658     3.162100e+02 1.289500e+02
+4 16659     -1.464400e+02 -3.958100e+02
+6 16659     -2.874300e+02 2.133200e+02
+13 16659     2.787100e+02 -4.996002e+01
+14 16659     4.230500e+02 -5.172600e+02
+4 16660     1.030800e+02 -3.966700e+02
+5 16660     4.469800e+02 1.223999e+01
+8 16660     -1.411500e+02 3.380300e+02
+14 16660     3.498800e+02 -7.697998e+01
+4 16661     -3.807100e+02 -3.988800e+02
+8 16661     1.815300e+02 -1.656700e+02
+4 16662     -4.551700e+02 -3.996200e+02
+6 16662     4.710999e+01 -2.700500e+02
+4 16663     2.539600e+02 -4.002300e+02
+5 16663     4.154600e+02 2.749100e+02
+4 16664     2.539600e+02 -4.002300e+02
+5 16664     4.154600e+02 2.749100e+02
+4 16665     2.524399e+02 -4.042300e+02
+11 16665     1.556800e+02 7.895999e+01
+4 16666     2.344900e+02 -4.045900e+02
+11 16666     1.560900e+02 5.298001e+01
+14 16666     3.276000e+02 1.420200e+02
+4 16667     2.344900e+02 -4.045900e+02
+11 16667     1.560900e+02 5.298001e+01
+14 16667     3.276000e+02 1.420200e+02
+4 16668     2.654700e+02 -4.047700e+02
+5 16668     4.167500e+02 2.971600e+02
+11 16668     1.548100e+02 9.823999e+01
+13 16668     1.878700e+02 5.424400e+02
+14 16668     3.150800e+02 1.969000e+02
+4 16669     -4.830400e+02 -4.053600e+02
+8 16669     2.234400e+02 -2.886600e+02
+4 16670     2.218900e+02 -4.067700e+02
+5 16670     4.370400e+02 2.172700e+02
+11 16670     1.590700e+02 3.520001e+01
+13 16670     2.056100e+02 4.744600e+02
+14 16670     3.350000e+02 1.204400e+02
+4 16671     2.218900e+02 -4.067700e+02
+11 16671     1.590700e+02 3.520001e+01
+13 16671     2.056100e+02 4.744600e+02
+4 16672     2.809301e+02 -4.067700e+02
+14 16672     3.124600e+02 2.225200e+02
+4 16673     2.100500e+02 -4.084900e+02
+14 16673     3.422000e+02 1.002600e+02
+4 16674     2.601500e+02 -4.090200e+02
+5 16674     4.250400e+02 2.880500e+02
+11 16674     1.606600e+02 9.126999e+01
+13 16674     1.948900e+02 5.345500e+02
+14 16674     3.230500e+02 1.879600e+02
+4 16675     -3.217100e+02 -4.098400e+02
+8 16675     1.657000e+02 -9.166998e+01
+4 16676     -3.517900e+02 -4.107200e+02
+6 16676     8.900024e+00 -1.081300e+02
+4 16677     1.776899e+02 -4.112400e+02
+11 16677     1.727700e+02 -2.671002e+01
+4 16678     7.085999e+01 -4.117000e+02
+5 16678     4.761801e+02 -4.063000e+01
+6 16678     -4.195400e+02 6.697600e+02
+4 16679     2.099100e+02 -4.154200e+02
+5 16679     4.544399e+02 1.968700e+02
+13 16679     2.206600e+02 4.573800e+02
+14 16679     3.525300e+02 1.007100e+02
+4 16680     2.242800e+02 -4.153000e+02
+5 16680     4.487900e+02 2.229400e+02
+11 16680     1.711600e+02 3.860999e+01
+4 16681     1.499100e+02 -4.160700e+02
+5 16681     4.680000e+02 9.534003e+01
+4 16682     2.852800e+02 -4.159500e+02
+5 16682     4.279399e+02 3.326500e+02
+4 16683     -1.679300e+02 -4.196700e+02
+5 16683     6.137500e+02 -4.876500e+02
+6 16683     -1.095500e+02 1.945600e+02
+14 16683     5.168600e+02 -5.689700e+02
+4 16684     1.502400e+02 -4.253100e+02
+11 16684     2.006800e+02 -6.104999e+01
+13 16684     2.454600e+02 3.761000e+02
+14 16684     3.815300e+02 6.179993e+00
+4 16685     7.254999e+01 -4.269600e+02
+11 16685     2.254200e+02 -1.674300e+02
+4 16686     1.000000e+01 -4.277100e+02
+5 16686     5.118300e+02 -1.433300e+02
+4 16687     -2.057900e+02 -4.285000e+02
+5 16687     6.443800e+02 -5.530601e+02
+6 16687     -5.983002e+01 1.371600e+02
+13 16687     3.737800e+02 -1.329400e+02
+4 16688     -1.672800e+02 -4.343000e+02
+14 16688     5.382600e+02 -5.640699e+02
+4 16689     1.508900e+02 -4.354800e+02
+11 16689     2.144400e+02 -5.872998e+01
+14 16689     3.963600e+02 8.570007e+00
+4 16690     2.280900e+02 -4.354000e+02
+5 16690     4.783199e+02 2.310300e+02
+4 16691     -1.873999e+01 -4.403800e+02
+5 16691     5.365800e+02 -1.904100e+02
+12 16691     -1.545100e+02 4.800400e+02
+14 16691     4.443800e+02 -2.741900e+02
+4 16692     -1.985100e+02 -4.449301e+02
+5 16692     6.668900e+02 -5.361500e+02
+6 16692     -4.129999e+01 1.602100e+02
+12 16692     -1.417999e+01 2.129400e+02
+4 16693     -2.598100e+02 -4.520601e+02
+6 16693     1.360999e+01 6.485999e+01
+4 16694     -2.618900e+02 -4.546000e+02
+15 16694     3.216998e+01 1.771000e+02
+4 16695     2.749900e+02 -4.546100e+02
+5 16695     4.959301e+02 3.126900e+02
+4 16696     1.066300e+02 -4.551000e+02
+5 16696     5.351801e+02 2.760999e+01
+11 16696     2.539000e+02 -1.161800e+02
+4 16697     4.590027e+00 -4.578600e+02
+5 16697     5.605000e+02 -1.466900e+02
+4 16698     1.486400e+02 -4.635400e+02
+6 16698     -3.743700e+02 8.594300e+02
+8 16698     -7.727002e+01 4.074100e+02
+4 16699     2.346100e+02 -4.699800e+02
+5 16699     5.271899e+02 2.461600e+02
+4 16700     2.346100e+02 -4.699800e+02
+5 16700     5.271899e+02 2.461600e+02
+13 16700     2.799100e+02 5.022400e+02
+4 16701     1.854399e+02 -4.735900e+02
+11 16701     2.553500e+02 -8.650024e+00
+14 16701     4.431300e+02 6.756000e+01
+4 16702     1.572100e+02 -4.739900e+02
+5 16702     5.535500e+02 1.158400e+02
+8 16702     -6.812000e+01 4.204600e+02
+11 16702     2.642700e+02 -4.433002e+01
+13 16702     3.031899e+02 3.928000e+02
+14 16702     4.503900e+02 2.427002e+01
+4 16703     2.152300e+02 -4.757700e+02
+11 16703     2.511100e+02 3.379999e+01
+13 16703     2.924200e+02 4.740500e+02
+4 16704     2.152300e+02 -4.757700e+02
+5 16704     5.429900e+02 2.122900e+02
+11 16704     2.511100e+02 3.379999e+01
+13 16704     2.924200e+02 4.740500e+02
+4 16705     2.757700e+02 -4.806300e+02
+5 16705     5.306899e+02 3.178300e+02
+4 16706     -3.495200e+02 -4.817500e+02
+8 16706     2.539300e+02 -8.416998e+01
+4 16707     7.264001e+01 -4.845800e+02
+6 16707     -2.997300e+02 7.053600e+02
+14 16707     4.862800e+02 -1.117200e+02
+4 16708     7.264001e+01 -4.845800e+02
+6 16708     -2.997300e+02 7.053600e+02
+9 16708     -2.733700e+02 4.079500e+02
+14 16708     4.862800e+02 -1.117200e+02
+4 16709     -2.969200e+02 -4.865000e+02
+6 16709     8.103003e+01 3.089001e+01
+4 16710     1.323000e+02 -4.890000e+02
+5 16710     5.802100e+02 7.673999e+01
+6 16710     -3.234800e+02 8.336500e+02
+8 16710     -4.538000e+01 3.867400e+02
+13 16710     3.257800e+02 3.616300e+02
+14 16710     4.776500e+02 -1.225000e+01
+4 16711     2.426000e+02 -4.894800e+02
+11 16711     2.676600e+02 7.514001e+01
+13 16711     3.001500e+02 5.177500e+02
+14 16711     4.457700e+02 1.662900e+02
+4 16712     -2.422300e+02 -4.897400e+02
+5 16712     7.496000e+02 -5.976700e+02
+8 16712     2.176100e+02 4.235999e+01
+9 16712     7.491998e+01 1.835400e+02
+4 16713     2.090500e+02 -4.977900e+02
+13 16713     3.213600e+02 4.675800e+02
+4 16714     4.753998e+01 -4.976000e+02
+6 16714     -2.677200e+02 6.604000e+02
+8 16714     -1.369000e+01 2.693800e+02
+4 16715     1.472000e+02 -5.019700e+02
+5 16715     5.961700e+02 1.025400e+02
+6 16715     -3.101000e+02 8.690100e+02
+8 16715     -3.560999e+01 4.071700e+02
+11 16715     3.040800e+02 -5.432001e+01
+13 16715     3.381700e+02 3.831500e+02
+14 16715     4.922000e+02 1.215002e+01
+4 16716     -8.950012e+00 -5.033700e+02
+5 16716     6.281100e+02 -1.596900e+02
+8 16716     7.559998e+00 1.910900e+02
+4 16717     3.885999e+01 -5.049000e+02
+8 16717     -3.359985e+00 2.577100e+02
+12 16717     -8.428003e+01 6.108400e+02
+14 16717     5.235500e+02 -1.620000e+02
+4 16718     1.475400e+02 -5.077500e+02
+5 16718     6.043800e+02 1.036500e+02
+6 16718     -3.011300e+02 8.703400e+02
+8 16718     -2.956000e+01 4.083800e+02
+13 16718     3.448300e+02 3.845000e+02
+14 16718     5.003101e+02 1.407001e+01
+4 16719     2.434100e+02 -5.087200e+02
+11 16719     2.922300e+02 7.828000e+01
+14 16719     4.726000e+02 1.691700e+02
+4 16720     2.434100e+02 -5.087200e+02
+5 16720     5.800800e+02 2.655600e+02
+11 16720     2.922300e+02 7.828000e+01
+14 16720     4.726000e+02 1.691700e+02
+4 16721     1.539900e+02 -5.098199e+02
+5 16721     6.059100e+02 1.146400e+02
+11 16721     3.120699e+02 -4.382001e+01
+13 16721     3.461899e+02 3.958200e+02
+14 16721     5.013199e+02 2.477002e+01
+4 16722     1.814001e+01 -5.105100e+02
+5 16722     6.333800e+02 -1.128800e+02
+6 16722     -2.336400e+02 6.054900e+02
+8 16722     7.809998e+00 2.295800e+02
+9 16722     -2.273400e+02 3.275500e+02
+12 16722     -6.688000e+01 5.741700e+02
+4 16723     2.547000e+02 -5.139000e+02
+11 16723     2.980400e+02 9.382001e+01
+4 16724     1.538600e+02 -5.143199e+02
+11 16724     3.180601e+02 -4.345001e+01
+4 16725     2.280400e+02 -5.178400e+02
+5 16725     5.993700e+02 2.389700e+02
+11 16725     3.051100e+02 5.710999e+01
+13 16725     3.386700e+02 4.989800e+02
+14 16725     4.911899e+02 1.443300e+02
+4 16726     -9.490997e+01 -5.223700e+02
+7 16726     4.094000e+01 4.461200e+02
+9 16726     -1.542500e+02 1.816500e+02
+4 16727     1.343500e+02 -5.269200e+02
+5 16727     6.338101e+02 8.513000e+01
+6 16727     -2.731200e+02 8.379000e+02
+11 16727     3.394399e+02 -6.709998e+01
+4 16728     2.343600e+02 -5.269500e+02
+5 16728     6.101300e+02 2.504800e+02
+4 16729     2.343600e+02 -5.269500e+02
+5 16729     6.101300e+02 2.504800e+02
+4 16730     2.095500e+02 -5.304800e+02
+5 16730     6.236300e+02 2.073500e+02
+11 16730     3.220200e+02 3.210001e+01
+13 16730     3.591400e+02 4.724400e+02
+14 16730     5.156700e+02 1.137700e+02
+4 16731     -5.150600e+02 -5.481000e+02
+10 16731     1.307500e+02 -1.586500e+02
+4 16732     -5.868400e+02 -5.527900e+02
+7 16732     1.523600e+02 -2.057900e+02
+10 16732     1.589700e+02 -2.413000e+02
+15 16732     2.683800e+02 -3.120400e+02
+4 16733     -3.088700e+02 -5.561400e+02
+7 16733     9.510999e+01 1.270900e+02
+10 16733     1.135300e+02 1.400000e+02
+13 16733     5.321200e+02 -2.208600e+02
+15 16733     2.079200e+02 1.390000e+02
+4 16734     9.590002e+01 -5.602100e+02
+5 16734     6.888600e+02 2.614001e+01
+6 16734     -1.955400e+02 7.825200e+02
+11 16734     3.954000e+02 -1.128800e+02
+14 16734     5.861200e+02 -5.876001e+01
+4 16735     -4.810000e+02 -5.615300e+02
+6 16735     2.536400e+02 -1.773000e+02
+10 16735     1.356500e+02 -1.115500e+02
+12 16735     2.644500e+02 -1.392300e+02
+15 16735     2.357100e+02 -1.578500e+02
+4 16736     1.311300e+02 -5.667000e+02
+6 16736     -2.022700e+02 8.574600e+02
+4 16737     1.311300e+02 -5.667000e+02
+6 16737     -2.022700e+02 8.574600e+02
+4 16738     1.702900e+02 -5.698500e+02
+5 16738     6.873199e+02 1.510900e+02
+13 16738     4.111700e+02 4.242500e+02
+14 16738     5.788300e+02 5.795001e+01
+4 16739     -3.584003e+01 -5.803900e+02
+11 16739     4.597300e+02 -2.878400e+02
+4 16740     1.156300e+02 3.753700e+02
+5 16740     -6.774400e+02 -2.238500e+02
+4 16741     9.557001e+01 7.639001e+01
+5 16741     -4.852100e+02 -5.992999e+01
+13 16741     -5.403600e+02 1.965800e+02
+14 16741     -5.600200e+02 -1.616700e+02
+4 16742     1.605900e+02 6.744000e+01
+5 16742     -4.679100e+02 7.053998e+01
+4 16743     1.571100e+02 5.408002e+01
+5 16743     -4.282600e+02 6.009998e+01
+11 16743     -4.781800e+02 -9.831000e+01
+13 16743     -5.117200e+02 3.004700e+02
+14 16743     -5.121000e+02 -4.284003e+01
+4 16744     2.279700e+02 3.934003e+01
+5 16744     -4.022600e+02 1.999200e+02
+11 16744     -4.644400e+02 9.059998e+00
+13 16744     -4.974400e+02 4.231100e+02
+14 16744     -4.796200e+02 9.487000e+01
+4 16745     2.358800e+02 3.959998e+01
+5 16745     -4.102300e+02 2.186300e+02
+11 16745     -4.610600e+02 2.219000e+01
+13 16745     -5.036700e+02 4.378600e+02
+14 16745     -4.850600e+02 1.118600e+02
+4 16746     2.396100e+02 3.333002e+01
+5 16746     -3.959500e+02 2.263400e+02
+13 16746     -4.911500e+02 4.470400e+02
+14 16746     -4.704100e+02 1.210100e+02
+4 16747     1.850900e+02 3.153998e+01
+5 16747     -3.666600e+02 1.069800e+02
+13 16747     -4.602300e+02 3.476500e+02
+4 16748     2.368700e+02 2.963000e+01
+5 16748     -3.859600e+02 2.198500e+02
+14 16748     -4.629200e+02 1.139200e+02
+4 16749     2.687100e+02 2.901001e+01
+5 16749     -4.035100e+02 2.890700e+02
+4 16750     1.134800e+02 1.823999e+01
+5 16750     -3.211000e+02 -3.144000e+01
+4 16751     1.206300e+02 -2.119995e+00
+11 16751     -4.223600e+02 -1.684500e+02
+4 16752     -2.261500e+02 -1.690002e+01
+10 16752     -7.339900e+02 6.825000e+01
+4 16753     7.009003e+01 -2.066998e+01
+5 16753     -2.074100e+02 -1.215700e+02
+4 16754     1.672200e+02 -2.262000e+01
+5 16754     -2.124100e+02 6.377002e+01
+4 16755     2.681400e+02 -2.390997e+01
+5 16755     -2.771900e+02 2.824800e+02
+11 16755     -3.746500e+02 7.345999e+01
+13 16755     -3.968200e+02 5.020200e+02
+14 16755     -3.563200e+02 1.765300e+02
+4 16756     1.426801e+02 -4.031000e+01
+5 16756     -1.759800e+02 2.058002e+01
+13 16756     -2.945400e+02 2.817500e+02
+14 16756     -2.605000e+02 -7.869000e+01
+4 16757     5.078003e+01 -4.553998e+01
+5 16757     -1.546100e+02 -1.539000e+02
+4 16758     2.422998e+01 -4.615997e+01
+5 16758     -1.500700e+02 -2.054500e+02
+7 16758     -7.975200e+02 4.475300e+02
+13 16758     -2.562600e+02 9.639999e+01
+14 16758     -2.327800e+02 -3.019000e+02
+4 16759     2.662700e+02 -5.052002e+01
+5 16759     -2.218300e+02 2.793900e+02
+11 16759     -3.368000e+02 7.260999e+01
+13 16759     -3.489600e+02 5.015700e+02
+14 16759     -3.017400e+02 1.735000e+02
+4 16760     2.851300e+02 -5.326001e+01
+5 16760     -2.182200e+02 3.143800e+02
+4 16761     1.103600e+02 -5.407001e+01
+11 16761     -3.493400e+02 -1.812300e+02
+13 16761     -2.657600e+02 2.340100e+02
+4 16762     1.103600e+02 -5.407001e+01
+5 16762     -1.465300e+02 -3.839001e+01
+13 16762     -2.657600e+02 2.340100e+02
+4 16763     2.463000e+01 -5.585999e+01
+5 16763     -1.313900e+02 -2.019400e+02
+4 16764     1.546000e+02 -5.672998e+01
+5 16764     -1.466400e+02 4.597998e+01
+11 16764     -3.543000e+02 -1.120900e+02
+13 16764     -2.728600e+02 3.048500e+02
+14 16764     -2.327000e+02 -5.266998e+01
+4 16765     2.755900e+02 -5.962000e+01
+5 16765     -2.040800e+02 2.978300e+02
+4 16766     -1.379999e+01 -6.053998e+01
+5 16766     -1.176900e+02 -2.754700e+02
+8 16766     -5.902600e+02 6.791000e+01
+4 16767     8.159973e+00 -6.053003e+01
+5 16767     -1.204000e+02 -2.328800e+02
+11 16767     -3.170300e+02 -3.374400e+02
+4 16768     2.222700e+02 -6.004999e+01
+13 16768     -2.953700e+02 4.194000e+02
+14 16768     -2.483300e+02 7.884000e+01
+4 16769     -4.791998e+01 -6.473999e+01
+5 16769     -1.044400e+02 -3.406200e+02
+7 16769     -7.054900e+02 3.207200e+02
+8 16769     -5.699700e+02 7.130005e+00
+10 16769     -7.261300e+02 4.734900e+02
+14 16769     -1.849100e+02 -4.365200e+02
+15 16769     -7.498100e+02 5.069500e+02
+4 16770     1.553400e+02 -7.059003e+01
+5 16770     -1.212500e+02 5.001001e+01
+11 16770     -3.316400e+02 -1.097200e+02
+13 16770     -2.510000e+02 3.093100e+02
+14 16770     -2.067500e+02 -4.897998e+01
+4 16771     8.535999e+01 -7.528003e+01
+5 16771     -1.033300e+02 -8.117999e+01
+8 16771     -6.010100e+02 2.544800e+02
+14 16771     -1.870500e+02 -1.777100e+02
+4 16772     2.456000e+02 -8.866998e+01
+13 16772     -2.583000e+02 4.620800e+02
+14 16772     -2.021200e+02 1.247800e+02
+4 16773     -1.215002e+01 -9.360999e+01
+5 16773     -5.428003e+01 -2.634700e+02
+8 16773     -5.336000e+02 8.276999e+01
+12 16773     -8.107400e+02 3.063600e+02
+4 16774     2.550300e+02 -9.581000e+01
+5 16774     -1.077400e+02 2.490000e+02
+13 16774     -2.504600e+02 4.787300e+02
+14 16774     -1.919500e+02 1.429900e+02
+4 16775     1.503800e+02 -1.170200e+02
+5 16775     -3.396002e+01 4.913000e+01
+4 16776     1.633000e+02 -1.292300e+02
+13 16776     -1.627100e+02 3.346300e+02
+14 16776     -1.014400e+02 -2.421997e+01
+4 16777     -5.548100e+02 -1.449300e+02
+7 16777     -3.307200e+02 -4.069500e+02
+4 16778     3.355900e+02 -1.488400e+02
+11 16778     -1.674900e+02 1.964600e+02
+14 16778     -1.594000e+02 3.240700e+02
+4 16779     1.070500e+02 -1.497900e+02
+5 16779     3.063000e+01 -2.550000e+01
+8 16779     -4.841400e+02 3.070100e+02
+4 16780     1.070500e+02 -1.497900e+02
+5 16780     3.063000e+01 -2.550000e+01
+8 16780     -4.841400e+02 3.070100e+02
+11 16780     -1.961600e+02 -1.693200e+02
+13 16780     -1.201400e+02 2.529800e+02
+14 16780     -5.688000e+01 -1.214400e+02
+4 16781     -1.988700e+02 -1.538800e+02
+8 16781     -3.219900e+02 -1.686000e+02
+10 16781     -4.723300e+02 2.014200e+02
+4 16782     -5.186200e+02 -1.560800e+02
+6 16782     -2.857700e+02 -6.094399e+02
+7 16782     -3.300100e+02 -3.553500e+02
+9 16782     -1.613900e+02 -4.196300e+02
+15 16782     -3.805400e+02 -4.424301e+02
+4 16783     -1.975900e+02 -1.616300e+02
+10 16783     -4.586900e+02 2.077500e+02
+4 16784     1.353800e+02 -1.651100e+02
+5 16784     5.400000e+01 2.959998e+01
+4 16785     -7.226001e+01 -1.723700e+02
+8 16785     -3.882100e+02 7.709991e+00
+4 16786     -2.534600e+02 -1.786700e+02
+7 16786     -4.018500e+02 3.192999e+01
+10 16786     -4.129700e+02 1.064800e+02
+15 16786     -3.947400e+02 9.088000e+01
+4 16787     1.649399e+02 -1.797400e+02
+13 16787     -8.859003e+01 3.485000e+02
+14 16787     -1.366998e+01 -1.190997e+01
+4 16788     -7.206300e+02 -1.799000e+02
+7 16788     -2.319500e+02 -5.660900e+02
+4 16789     -2.270700e+02 -1.808500e+02
+7 16789     -4.102900e+02 7.652002e+01
+13 16789     3.190002e+01 -2.356100e+02
+4 16790     -5.665700e+02 -1.876400e+02
+9 16790     -7.863000e+01 -4.340400e+02
+4 16791     1.652000e+02 -1.926400e+02
+13 16791     -6.984003e+01 3.513500e+02
+14 16791     8.409973e+00 -9.429993e+00
+4 16792     -6.009800e+02 -1.939000e+02
+9 16792     -4.175000e+01 -4.577700e+02
+4 16793     -6.908000e+02 -1.972400e+02
+6 16793     -7.870001e+01 -7.796801e+02
+7 16793     -2.179200e+02 -5.254100e+02
+9 16793     4.022998e+01 -5.233900e+02
+4 16794     -6.908000e+02 -1.972400e+02
+9 16794     4.022998e+01 -5.233900e+02
+4 16795     1.600300e+02 -2.003300e+02
+13 16795     -5.709003e+01 3.465300e+02
+14 16795     2.241998e+01 -1.633002e+01
+4 16796     -1.251100e+02 -2.062700e+02
+15 16796     -3.634400e+02 4.097000e+02
+4 16797     9.271997e+01 -2.161500e+02
+8 16797     -3.790700e+02 2.941900e+02
+4 16798     -7.452500e+02 -2.283700e+02
+7 16798     -1.669400e+02 -5.597200e+02
+4 16799     2.316000e+02 -2.394500e+02
+5 16799     1.618400e+02 2.183500e+02
+11 16799     -8.189001e+01 2.853000e+01
+4 16800     1.627800e+02 -2.511600e+02
+5 16800     1.998500e+02 9.412000e+01
+4 16801     -6.488500e+02 -2.515500e+02
+9 16801     5.464001e+01 -4.481500e+02
+4 16802     3.472400e+02 -2.766100e+02
+11 16802     1.723999e+01 2.232500e+02
+4 16803     -8.047900e+02 -2.828100e+02
+6 16803     1.020100e+02 -8.173400e+02
+4 16804     -6.523900e+02 -2.860400e+02
+6 16804     -2.001953e-02 -6.446100e+02
+7 16804     -1.233600e+02 -4.266000e+02
+9 16804     8.758002e+01 -4.253500e+02
+4 16805     -1.998700e+02 -3.055400e+02
+5 16805     4.229800e+02 -5.730000e+02
+6 16805     -3.039700e+02 5.346002e+01
+7 16805     -2.435700e+02 1.768900e+02
+9 16805     -2.210600e+02 7.312000e+01
+12 16805     -2.466300e+02 1.061000e+02
+4 16806     6.783002e+01 -3.126600e+02
+5 16806     3.189700e+02 -6.433002e+01
+11 16806     6.328998e+01 -1.960600e+02
+12 16806     -4.187400e+02 5.955500e+02
+4 16807     1.639600e+02 -3.180300e+02
+5 16807     3.105601e+02 1.059400e+02
+13 16807     1.045200e+02 3.755600e+02
+4 16808     -2.039400e+02 -3.267000e+02
+5 16808     4.656000e+02 -5.754000e+02
+6 16808     -2.527300e+02 6.340997e+01
+4 16809     -6.937600e+02 -3.277300e+02
+9 16809     1.534500e+02 -4.266000e+02
+4 16810     -8.341300e+02 -3.291300e+02
+9 16810     2.567400e+02 -5.212100e+02
+4 16811     -1.393900e+02 -3.297600e+02
+7 16811     -2.135700e+02 2.964600e+02
+8 16811     -1.240000e+02 -1.917999e+01
+10 16811     -1.566500e+02 4.100200e+02
+13 16811     1.945900e+02 -5.871002e+01
+14 16811     3.159800e+02 -5.241700e+02
+4 16812     -1.846800e+02 -3.303300e+02
+7 16812     -2.118200e+02 2.136300e+02
+12 16812     -2.147500e+02 1.481800e+02
+4 16813     -7.739700e+02 -3.484300e+02
+9 16813     2.271600e+02 -4.672000e+02
+4 16814     -7.194200e+02 -3.517200e+02
+9 16814     1.909000e+02 -4.274400e+02
+4 16815     -4.100300e+02 -3.708800e+02
+12 16815     -1.157001e+01 -1.769600e+02
+4 16816     2.863000e+01 -3.730200e+02
+6 16816     -4.634900e+02 5.577600e+02
+11 16816     1.613100e+02 -2.416000e+02
+12 16816     -2.894600e+02 5.406800e+02
+14 16816     3.305200e+02 -2.110400e+02
+4 16817     2.863000e+01 -3.730200e+02
+6 16817     -4.634900e+02 5.577600e+02
+11 16817     1.613100e+02 -2.416000e+02
+12 16817     -2.894600e+02 5.406800e+02
+14 16817     3.305200e+02 -2.110400e+02
+4 16818     6.525000e+01 -3.838100e+02
+8 16818     -1.458500e+02 2.778200e+02
+4 16819     3.432600e+02 -3.849700e+02
+5 16819     3.309500e+02 4.571700e+02
+11 16819     1.606600e+02 2.232200e+02
+14 16819     2.348700e+02 3.484300e+02
+4 16820     2.282300e+02 -3.871700e+02
+5 16820     4.035601e+02 2.287700e+02
+11 16820     1.316200e+02 4.332001e+01
+13 16820     1.774500e+02 4.832700e+02
+14 16820     3.023800e+02 1.309800e+02
+4 16821     1.916600e+02 -3.969100e+02
+13 16821     2.008700e+02 4.292300e+02
+14 16821     3.294900e+02 6.878998e+01
+4 16822     -3.468100e+02 -4.001900e+02
+6 16822     -9.130005e+00 -1.089200e+02
+9 16822     4.434998e+01 1.534998e+01
+12 16822     -3.390015e+00 -5.664001e+01
+4 16823     2.745800e+02 -4.094400e+02
+5 16823     4.227600e+02 3.113600e+02
+4 16824     -4.960300e+02 -4.110600e+02
+8 16824     2.324800e+02 -3.021400e+02
+12 16824     7.723999e+01 -2.772000e+02
+4 16825     1.378000e+02 -4.143900e+02
+5 16825     4.677800e+02 7.494000e+01
+6 16825     -4.531800e+02 8.171500e+02
+8 16825     -1.299400e+02 3.890500e+02
+4 16826     2.725300e+02 -4.142000e+02
+5 16826     4.300699e+02 3.098500e+02
+11 16826     1.678400e+02 1.089000e+02
+4 16827     1.661801e+02 -4.153400e+02
+8 16827     -1.367600e+02 4.305500e+02
+11 16827     1.824700e+02 -4.103003e+01
+13 16827     2.299800e+02 3.957600e+02
+14 16827     3.634399e+02 2.990002e+01
+4 16828     -1.163500e+02 -4.178200e+02
+6 16828     -2.820700e+02 2.866700e+02
+11 16828     2.469900e+02 -4.509500e+02
+12 16828     -1.352000e+02 2.954700e+02
+15 16828     8.421002e+01 5.487600e+02
+4 16829     -7.680600e+02 -4.186200e+02
+7 16829     4.931000e+01 -4.679800e+02
+9 16829     2.718800e+02 -4.168000e+02
+4 16830     -2.962300e+02 -4.184100e+02
+12 16830     -2.390015e+00 3.709003e+01
+4 16831     -2.962300e+02 -4.184100e+02
+6 16831     -1.427002e+01 -1.623999e+01
+8 16831     1.654200e+02 -5.473001e+01
+12 16831     -2.390015e+00 3.709003e+01
+4 16832     7.750000e+01 -4.266900e+02
+5 16832     4.978800e+02 -2.684003e+01
+6 16832     -3.970600e+02 6.902300e+02
+11 16832     2.233100e+02 -1.621000e+02
+4 16833     -1.678300e+02 -4.267100e+02
+5 16833     6.237900e+02 -4.845699e+02
+7 16833     -9.479999e+01 2.772300e+02
+13 16833     3.587500e+02 -8.308002e+01
+14 16833     5.264000e+02 -5.658700e+02
+4 16834     -3.392999e+01 -4.332100e+02
+8 16834     -5.996002e+01 1.405400e+02
+4 16835     -5.938900e+02 -4.352100e+02
+9 16835     1.907500e+02 -2.474400e+02
+4 16836     -7.777100e+02 -4.364301e+02
+6 16836     2.425600e+02 -6.491000e+02
+4 16837     -1.928200e+02 -4.427500e+02
+13 16837     3.867100e+02 -1.123200e+02
+4 16838     5.034003e+01 -4.558199e+02
+6 16838     -3.357200e+02 6.456600e+02
+12 16838     -1.663300e+02 6.141600e+02
+4 16839     -3.435200e+02 -4.590300e+02
+7 16839     -1.003003e+01 3.760999e+01
+4 16840     -2.145400e+02 -4.599100e+02
+7 16840     -4.231000e+01 2.174100e+02
+4 16841     1.677000e+02 -4.609700e+02
+11 16841     2.436899e+02 -3.220001e+01
+13 16841     2.853900e+02 4.053900e+02
+14 16841     4.291600e+02 3.929999e+01
+4 16842     1.453101e+02 -4.659900e+02
+11 16842     2.569399e+02 -6.138000e+01
+4 16843     -2.920100e+02 -4.698400e+02
+12 16843     6.991998e+01 7.984003e+01
+4 16844     1.261200e+02 -4.803000e+02
+5 16844     5.689100e+02 6.457001e+01
+6 16844     -3.344100e+02 8.169100e+02
+8 16844     -5.291998e+01 3.769800e+02
+11 16844     2.826600e+02 -8.409998e+01
+4 16845     1.745300e+02 -4.818800e+02
+5 16845     5.617600e+02 1.453400e+02
+11 16845     2.696600e+02 -2.009003e+01
+13 16845     3.092400e+02 4.185500e+02
+14 16845     4.576000e+02 5.371002e+01
+4 16846     -5.314900e+02 -4.827300e+02
+6 16846     1.793000e+02 -3.092800e+02
+12 16846     1.855400e+02 -2.718300e+02
+13 16846     4.937400e+02 -4.959301e+02
+15 16846     1.391800e+02 -2.714100e+02
+4 16847     2.797300e+02 -4.858199e+02
+5 16847     5.385699e+02 3.244100e+02
+13 16847     2.868199e+02 5.695500e+02
+14 16847     4.301200e+02 2.241300e+02
+4 16848     2.754800e+02 -4.860300e+02
+5 16848     5.388900e+02 3.174000e+02
+13 16848     2.887300e+02 5.638300e+02
+14 16848     4.328199e+02 2.187400e+02
+4 16849     6.731000e+01 -4.924900e+02
+5 16849     5.983000e+02 -3.269000e+01
+4 16850     6.731000e+01 -4.924900e+02
+5 16850     5.983000e+02 -3.269000e+01
+11 16850     3.150500e+02 -1.635300e+02
+4 16851     6.731000e+01 -4.924900e+02
+5 16851     5.983000e+02 -3.269000e+01
+4 16852     -2.526500e+02 -4.936000e+02
+12 16852     8.334003e+01 1.557600e+02
+4 16853     4.721002e+01 -4.972600e+02
+8 16853     -1.401001e+01 2.689400e+02
+9 16853     -2.514700e+02 3.705900e+02
+4 16854     1.536200e+02 -4.991700e+02
+11 16854     2.985699e+02 -4.565002e+01
+4 16855     6.337000e+01 -5.032000e+02
+5 16855     6.143800e+02 -3.709998e+01
+6 16855     -2.658900e+02 6.946600e+02
+4 16856     4.600000e+01 -5.169900e+02
+8 16856     6.969971e+00 2.690800e+02
+11 16856     3.533400e+02 -1.882500e+02
+13 16856     3.744800e+02 2.481200e+02
+4 16857     1.369800e+02 -5.180800e+02
+5 16857     6.199301e+02 8.725000e+01
+6 16857     -2.781400e+02 8.557300e+02
+8 16857     -1.544000e+01 3.955700e+02
+11 16857     3.260900e+02 -6.612000e+01
+4 16858     -9.890997e+01 -5.219500e+02
+7 16858     4.116998e+01 4.393500e+02
+9 16858     -1.516300e+02 1.777800e+02
+13 16858     4.102600e+02 5.131000e+01
+4 16859     -2.693300e+02 -5.227000e+02
+6 16859     1.099800e+02 9.672998e+01
+8 16859     2.621000e+02 2.620001e+01
+12 16859     1.304500e+02 1.478500e+02
+4 16860     1.483600e+02 -5.244301e+02
+8 16860     -1.279999e+01 4.104100e+02
+4 16861     -3.042700e+02 -5.260699e+02
+6 16861     1.298900e+02 4.665997e+01
+4 16862     -2.022000e+02 -5.296100e+02
+6 16862     5.581000e+01 2.067700e+02
+4 16863     1.348300e+02 -5.347000e+02
+14 16863     5.396300e+02 -6.979980e+00
+4 16864     -4.609900e+02 -5.391300e+02
+6 16864     2.202600e+02 -1.664000e+02
+7 16864     1.077300e+02 -7.289001e+01
+8 16864     3.509600e+02 -1.761300e+02
+12 16864     2.305900e+02 -1.270500e+02
+15 16864     2.011200e+02 -1.362900e+02
+4 16865     1.876600e+02 -5.393000e+02
+14 16865     5.339900e+02 8.104001e+01
+4 16866     8.392999e+01 -5.457700e+02
+6 16866     -2.113400e+02 7.525900e+02
+4 16867     -5.891100e+02 -5.494100e+02
+7 16867     1.498400e+02 -2.093500e+02
+4 16868     3.914001e+01 -5.510601e+02
+5 16868     6.878500e+02 -6.865997e+01
+8 16868     4.325000e+01 2.648900e+02
+4 16869     1.029300e+02 -5.532300e+02
+6 16869     -2.098700e+02 7.953000e+02
+4 16870     5.113000e+01 -5.541500e+02
+9 16870     -1.937000e+02 3.836900e+02
+4 16871     1.806100e+02 -5.638700e+02
+5 16871     6.773500e+02 1.644900e+02
+13 16871     4.033700e+02 4.379200e+02
+14 16871     5.690400e+02 7.359998e+01
+4 16872     1.650300e+02 -5.685200e+02
+8 16872     2.721997e+01 4.346200e+02
+13 16872     4.109900e+02 4.174400e+02
+14 16872     5.786100e+02 4.985999e+01
+4 16873     -3.459200e+02 1.264100e+02
+13 16873     -3.528100e+02 -5.323600e+02
+4 16874     1.584100e+02 9.970001e+01
+5 16874     -5.630500e+02 7.251001e+01
+11 16874     -5.176500e+02 -8.681000e+01
+13 16874     -6.166800e+02 3.029600e+02
+4 16875     1.425400e+02 9.309000e+01
+5 16875     -5.410800e+02 3.697998e+01
+11 16875     -5.086800e+02 -1.143500e+02
+13 16875     -5.973400e+02 2.760500e+02
+14 16875     -6.152500e+02 -6.473999e+01
+4 16876     -5.590002e+01 5.907001e+01
+13 16876     -4.230200e+02 -5.941998e+01
+14 16876     -4.541200e+02 -4.844800e+02
+4 16877     1.117500e+02 4.909998e+01
+11 16877     -4.639700e+02 -1.675500e+02
+13 16877     -4.797200e+02 2.225100e+02
+14 16877     -4.849300e+02 -1.351200e+02
+4 16878     2.237800e+02 4.688000e+01
+5 16878     -4.170500e+02 1.913200e+02
+14 16878     -4.937400e+02 8.567999e+01
+4 16879     1.004900e+02 4.416998e+01
+13 16879     -4.652300e+02 2.081000e+02
+14 16879     -4.695800e+02 -1.537600e+02
+4 16880     1.004900e+02 4.416998e+01
+13 16880     -4.652300e+02 2.081000e+02
+14 16880     -4.695800e+02 -1.537600e+02
+4 16881     1.478300e+02 3.956000e+01
+13 16881     -4.691600e+02 2.857400e+02
+14 16881     -4.642900e+02 -6.290002e+01
+4 16882     1.126200e+02 3.882001e+01
+11 16882     -4.543900e+02 -1.717300e+02
+4 16883     1.948101e+02 3.621002e+01
+5 16883     -3.807900e+02 1.296000e+02
+4 16884     1.107200e+02 9.010010e+00
+5 16884     -2.930300e+02 -3.890997e+01
+4 16885     7.734003e+01 -3.844000e+01
+5 16885     -1.721200e+02 -1.044900e+02
+13 16885     -2.810000e+02 1.778100e+02
+14 16885     -2.552300e+02 -2.016000e+02
+4 16886     1.958700e+02 -4.937000e+01
+13 16886     -2.993400e+02 3.700500e+02
+14 16886     -2.576000e+02 2.342999e+01
+4 16887     1.599301e+02 -5.740997e+01
+5 16887     -1.440300e+02 5.616998e+01
+11 16887     -3.502300e+02 -1.055400e+02
+13 16887     -2.704000e+02 3.131300e+02
+14 16887     -2.289500e+02 -4.328003e+01
+4 16888     8.950012e+00 -6.838000e+01
+5 16888     -1.057600e+02 -2.294700e+02
+8 16888     -5.849200e+02 1.126600e+02
+11 16888     -3.035800e+02 -3.350500e+02
+4 16889     2.284900e+02 -7.627002e+01
+13 16889     -2.710600e+02 4.309300e+02
+14 16889     -2.195600e+02 9.063000e+01
+4 16890     2.284900e+02 -7.627002e+01
+13 16890     -2.710600e+02 4.309300e+02
+14 16890     -2.195600e+02 9.063000e+01
+4 16891     2.353700e+02 -8.154999e+01
+13 16891     -2.658100e+02 4.434600e+02
+14 16891     -2.124900e+02 1.044300e+02
+4 16892     -1.751001e+01 -8.901001e+01
+5 16892     -6.334003e+01 -2.748800e+02
+10 16892     -6.967800e+02 5.522100e+02
+4 16893     7.519000e+01 -8.915997e+01
+8 16893     -5.750800e+02 2.393100e+02
+4 16894     -1.615002e+01 -1.006800e+02
+8 16894     -5.207700e+02 7.817999e+01
+11 16894     -2.459800e+02 -3.655900e+02
+12 16894     -7.913700e+02 3.014400e+02
+4 16895     2.643900e+02 -1.040100e+02
+11 16895     -2.780200e+02 6.262000e+01
+4 16896     3.158900e+02 -1.390800e+02
+11 16896     -1.996100e+02 1.566200e+02
+4 16897     1.128200e+02 -1.474100e+02
+5 16897     2.575000e+01 -1.515002e+01
+4 16898     7.421997e+01 -1.754400e+02
+8 16898     -4.327500e+02 2.556800e+02
+11 16898     -1.480400e+02 -2.134900e+02
+12 16898     -6.969700e+02 5.453900e+02
+4 16899     1.654100e+02 -2.010000e+02
+5 16899     1.121400e+02 9.014001e+01
+4 16900     -7.313100e+02 -2.379100e+02
+9 16900     1.089000e+02 -5.200699e+02
+4 16901     -7.610000e+02 -2.452000e+02
+9 16901     1.386899e+02 -5.353101e+02
+4 16902     -7.459900e+02 -2.501700e+02
+9 16902     1.307600e+02 -5.207900e+02
+4 16903     -6.725800e+02 -2.497500e+02
+9 16903     7.153998e+01 -4.691700e+02
+4 16904     -6.725800e+02 -2.497500e+02
+7 16904     -1.621900e+02 -4.706300e+02
+4 16905     1.496300e+02 -2.595300e+02
+13 16905     2.821002e+01 3.427000e+02
+14 16905     1.235400e+02 -2.340002e+01
+4 16906     -6.696200e+02 -2.662900e+02
+9 16906     8.353003e+01 -4.541899e+02
+4 16907     -3.599300e+02 -2.659700e+02
+8 16907     -1.148999e+01 -2.506700e+02
+12 16907     -2.098400e+02 -1.914100e+02
+13 16907     2.091000e+02 -3.830700e+02
+4 16908     3.124800e+02 -2.695700e+02
+5 16908     1.619000e+02 3.862500e+02
+11 16908     -9.900024e+00 1.654200e+02
+4 16909     -6.701800e+02 -2.790400e+02
+7 16909     -1.256200e+02 -4.500000e+02
+4 16910     -7.266800e+02 -3.077500e+02
+9 16910     1.626600e+02 -4.633800e+02
+4 16911     -7.437500e+02 -3.320900e+02
+7 16911     -4.853998e+01 -4.935800e+02
+4 16912     -7.378998e+01 -3.343700e+02
+8 16912     -1.634900e+02 5.607001e+01
+4 16913     -8.681400e+02 -3.570500e+02
+9 16913     2.997600e+02 -5.231400e+02
+4 16914     -3.968100e+02 -3.586900e+02
+12 16914     -3.798999e+01 -1.650800e+02
+4 16915     1.537500e+02 -3.628900e+02
+6 16915     -5.560700e+02 8.338000e+02
+4 16916     -4.171000e+02 -3.774800e+02
+7 16916     -8.795001e+01 -1.026200e+02
+4 16917     2.284700e+02 -3.807900e+02
+11 16917     1.248400e+02 4.285001e+01
+4 16918     -3.983700e+02 -3.926900e+02
+6 16918     1.301001e+01 -1.920699e+02
+8 16918     1.859300e+02 -1.861200e+02
+4 16919     1.397300e+02 -3.935200e+02
+8 16919     -1.549100e+02 3.914400e+02
+4 16920     1.397300e+02 -3.935200e+02
+8 16920     -1.549100e+02 3.914400e+02
+4 16921     -3.527800e+02 -3.988100e+02
+6 16921     -5.010010e+00 -1.196600e+02
+4 16922     1.440900e+02 -4.112300e+02
+11 16922     1.831900e+02 -7.173999e+01
+4 16923     -1.735100e+02 -4.200700e+02
+5 16923     6.174700e+02 -4.975699e+02
+6 16923     -1.027700e+02 1.871900e+02
+12 16923     -6.773999e+01 2.381200e+02
+13 16923     3.534900e+02 -9.278998e+01
+4 16924     -3.749000e+02 -4.475900e+02
+6 16924     7.085999e+01 -1.142000e+02
+8 16924     2.331400e+02 -1.292900e+02
+12 16924     7.765002e+01 -6.541998e+01
+4 16925     -1.710700e+02 -4.511899e+02
+14 16925     5.638199e+02 -5.649200e+02
+4 16926     2.685100e+02 -4.558000e+02
+5 16926     4.984600e+02 3.025500e+02
+14 16926     3.916000e+02 2.026900e+02
+4 16927     -2.233300e+02 -4.761300e+02
+5 16927     7.226200e+02 -5.707600e+02
+6 16927     2.101001e+01 1.387800e+02
+10 16927     -6.250000e+00 2.509300e+02
+15 16927     6.498999e+01 2.666600e+02
+4 16928     -2.233300e+02 -4.761300e+02
+6 16928     2.101001e+01 1.387800e+02
+4 16929     1.770020e+00 -4.808199e+02
+5 16929     5.943600e+02 -1.468800e+02
+4 16930     -3.059998e+00 -4.837100e+02
+5 16930     5.980500e+02 -1.545600e+02
+6 16930     -2.637700e+02 5.506900e+02
+4 16931     2.429993e+00 -4.922200e+02
+5 16931     6.110300e+02 -1.432500e+02
+6 16931     -2.525300e+02 5.666200e+02
+11 16931     3.328700e+02 -2.539800e+02
+12 16931     -8.092999e+01 5.426100e+02
+4 16932     -4.560400e+02 -4.985200e+02
+8 16932     3.164300e+02 -1.886300e+02
+4 16933     -2.285700e+02 -5.011200e+02
+5 16933     7.613400e+02 -5.713500e+02
+6 16933     5.751001e+01 1.466900e+02
+12 16933     8.203998e+01 1.995900e+02
+4 16934     -7.399902e-01 -5.235699e+02
+5 16934     6.539600e+02 -1.424200e+02
+6 16934     -2.061500e+02 5.739400e+02
+4 16935     -4.923400e+02 -5.247200e+02
+10 16935     9.378998e+01 -1.404200e+02
+4 16936     -2.661300e+02 -5.309900e+02
+12 16936     1.395800e+02 1.572000e+02
+4 16937     -4.040700e+02 -5.682400e+02
+7 16937     1.280400e+02 1.113000e+01
+13 16937     5.583600e+02 -3.244500e+02
+4 16938     -3.393100e+02 1.223100e+02
+13 16938     -3.486200e+02 -5.207700e+02
+4 16939     1.198600e+02 7.647998e+01
+13 16939     -5.467100e+02 2.322700e+02
+14 16939     -5.620500e+02 -1.191600e+02
+4 16940     1.198600e+02 7.647998e+01
+11 16940     -4.926900e+02 -1.564900e+02
+4 16941     1.031300e+02 6.340002e+01
+11 16941     -4.749000e+02 -1.793000e+02
+4 16942     1.463600e+02 1.494000e+01
+5 16942     -3.141500e+02 3.284998e+01
+13 16942     -4.093200e+02 2.843000e+02
+14 16942     -3.946600e+02 -6.807001e+01
+4 16943     5.753003e+01 1.415002e+01
+5 16943     -3.011700e+02 -1.395800e+02
+4 16944     3.060200e+02 -4.900024e+00
+11 16944     -3.866900e+02 1.382700e+02
+14 16944     -4.226700e+02 2.569500e+02
+4 16945     -6.619995e+00 -3.006000e+01
+5 16945     -1.781700e+02 -2.690300e+02
+13 16945     -2.788700e+02 4.201001e+01
+14 16945     -2.658700e+02 -3.674800e+02
+4 16946     2.735400e+02 -2.890997e+01
+5 16946     -2.656100e+02 2.884900e+02
+13 16946     -3.876600e+02 5.083000e+02
+14 16946     -3.457300e+02 1.833900e+02
+4 16947     -6.864001e+01 -5.546002e+01
+5 16947     -1.199500e+02 -3.835900e+02
+7 16947     -7.101500e+02 2.754000e+02
+8 16947     -5.782300e+02 -3.617999e+01
+11 16947     -3.095700e+02 -4.619900e+02
+13 16947     -2.189300e+02 -4.456000e+01
+14 16947     -2.007700e+02 -4.797400e+02
+4 16948     2.720500e+02 -5.616998e+01
+5 16948     -2.094300e+02 2.911300e+02
+4 16949     2.228600e+02 -7.152002e+01
+13 16949     -2.760400e+02 4.202600e+02
+14 16949     -2.261900e+02 7.891000e+01
+4 16950     3.048500e+02 -1.277800e+02
+11 16950     -2.175000e+02 1.398100e+02
+4 16951     -5.562000e+01 -1.579700e+02
+8 16951     -4.143400e+02 2.654001e+01
+12 16951     -6.382300e+02 2.514600e+02
+4 16952     -7.050400e+02 -2.136300e+02
+7 16952     -1.954700e+02 -5.278199e+02
+10 16952     -2.791400e+02 -5.676300e+02
+4 16953     -6.545900e+02 -2.251000e+02
+9 16953     3.450000e+01 -4.731500e+02
+4 16954     -3.596600e+02 -2.732900e+02
+7 16954     -2.330800e+02 -7.904999e+01
+8 16954     1.359985e+00 -2.380700e+02
+4 16955     -7.956100e+02 -2.886800e+02
+7 16955     -8.360999e+01 -5.723500e+02
+4 16956     -7.146100e+02 -3.178700e+02
+9 16956     1.623300e+02 -4.489399e+02
+4 16957     -6.978100e+02 -3.180700e+02
+9 16957     1.496300e+02 -4.356000e+02
+4 16958     -3.630900e+02 -3.572900e+02
+8 16958     1.266400e+02 -1.692700e+02
+4 16959     8.603003e+01 -3.827600e+02
+8 16959     -1.523800e+02 3.092400e+02
+4 16960     -1.327800e+02 -4.062000e+02
+11 16960     2.295200e+02 -4.805900e+02
+12 16960     -1.434100e+02 2.612100e+02
+13 16960     2.881200e+02 -2.790002e+01
+14 16960     4.359000e+02 -4.890601e+02
+4 16961     -1.182600e+02 -4.057000e+02
+6 16961     -2.991500e+02 2.748000e+02
+9 16961     -2.620600e+02 1.162400e+02
+4 16962     -1.394500e+02 -4.081300e+02
+6 16962     -2.721800e+02 2.365300e+02
+14 16962     4.408101e+02 -5.002600e+02
+4 16963     2.230000e+02 -4.181000e+02
+5 16963     4.539500e+02 2.214100e+02
+13 16963     2.189800e+02 4.784100e+02
+14 16963     3.508700e+02 1.246500e+02
+4 16964     1.719200e+02 -4.200100e+02
+14 16964     3.686801e+02 4.065002e+01
+4 16965     -7.625200e+02 -4.335900e+02
+7 16965     6.183002e+01 -4.513900e+02
+9 16965     2.760000e+02 -4.028100e+02
+4 16966     2.717400e+02 -4.326800e+02
+5 16966     4.605699e+02 3.070700e+02
+13 16966     2.235300e+02 5.526700e+02
+14 16966     3.563700e+02 2.072800e+02
+4 16967     -3.576000e+02 -4.493300e+02
+6 16967     5.971997e+01 -8.816998e+01
+4 16968     4.023999e+01 -4.703199e+02
+11 16968     2.935500e+02 -2.049500e+02
+14 16968     4.729000e+02 -1.661300e+02
+4 16969     -5.100600e+02 -4.714200e+02
+6 16969     1.608900e+02 -2.889200e+02
+8 16969     3.034800e+02 -2.744900e+02
+12 16969     1.654100e+02 -2.485400e+02
+4 16970     3.026700e+02 -5.079900e+02
+5 16970     5.619500e+02 3.655900e+02
+14 16970     4.532900e+02 2.647000e+02
+4 16971     -4.842000e+02 -5.160300e+02
+7 16971     8.657001e+01 -1.116700e+02
+12 16971     2.104301e+02 -1.755800e+02
+4 16972     2.256600e+02 -5.164200e+02
+5 16972     5.973199e+02 2.349600e+02
+11 16972     3.029600e+02 5.310999e+01
+13 16972     3.372500e+02 4.946800e+02
+14 16972     4.895500e+02 1.395200e+02
+4 16973     -5.457300e+02 -5.222800e+02
+6 16973     2.244000e+02 -2.970601e+02
+8 16973     3.529000e+02 -2.921700e+02
+12 16973     2.371600e+02 -2.617900e+02
+13 16973     5.345300e+02 -4.976400e+02
+4 16974     2.114800e+02 -5.312600e+02
+5 16974     6.239301e+02 2.115900e+02
+13 16974     3.592500e+02 4.761400e+02
+14 16974     5.155100e+02 1.180400e+02
+4 16975     2.590500e+02 -5.448101e+02
+5 16975     6.270800e+02 2.949100e+02
+13 16975     3.592700e+02 5.490400e+02
+4 16976     1.109400e+02 7.346997e+01
+5 16976     -4.705200e+02 -3.362000e+01
+4 16977     2.342400e+02 7.094000e+01
+5 16977     -4.759300e+02 2.163100e+02
+4 16978     1.737300e+02 6.476001e+01
+11 16978     -4.847400e+02 -7.184003e+01
+4 16979     2.300699e+02 5.391998e+01
+5 16979     -4.439600e+02 2.069600e+02
+11 16979     -4.832000e+02 1.245001e+01
+13 16979     -5.242900e+02 4.273500e+02
+14 16979     -5.113800e+02 1.010000e+02
+4 16980     6.754999e+01 3.234998e+01
+5 16980     -3.532700e+02 -1.163600e+02
+4 16981     2.006000e+01 2.888000e+01
+5 16981     -3.388000e+02 -2.145500e+02
+11 16981     -4.288600e+02 -3.125400e+02
+4 16982     3.502002e+01 2.912000e+01
+5 16982     -3.430700e+02 -1.812900e+02
+11 16982     -4.289200e+02 -2.943400e+02
+4 16983     3.212000e+01 -4.580017e+00
+5 16983     -2.452200e+02 -1.906400e+02
+4 16984     1.399600e+02 -4.630005e+00
+13 16984     -3.623000e+02 2.699500e+02
+14 16984     -3.409400e+02 -8.831000e+01
+4 16985     2.610699e+02 -1.058002e+01
+13 16985     -4.227200e+02 4.883200e+02
+4 16986     -8.469971e+00 -4.221997e+01
+5 16986     -1.523300e+02 -2.693300e+02
+7 16986     -7.815300e+02 3.823900e+02
+11 16986     -3.439200e+02 -3.663800e+02
+13 16986     -2.545500e+02 4.509998e+01
+4 16987     -9.260010e+00 -5.731000e+01
+5 16987     -1.241500e+02 -2.671300e+02
+4 16988     -4.364000e+02 -6.484003e+01
+7 16988     -4.950300e+02 -3.093000e+02
+13 16988     -3.272998e+01 -5.649200e+02
+4 16989     -3.694000e+01 -6.753998e+01
+7 16989     -6.998500e+02 3.496200e+02
+11 16989     -2.951800e+02 -4.040200e+02
+13 16989     -2.078900e+02 1.162000e+01
+14 16989     -1.807200e+02 -4.131300e+02
+4 16990     3.127100e+02 -6.676001e+01
+5 16990     -2.091000e+02 3.722600e+02
+14 16990     -2.896900e+02 2.603100e+02
+4 16991     -6.305200e+02 -1.014300e+02
+9 16991     -1.119400e+02 -5.568700e+02
+4 16992     -5.521500e+02 -1.604000e+02
+6 16992     -2.489400e+02 -6.506100e+02
+4 16993     1.581300e+02 -1.614700e+02
+5 16993     4.687000e+01 7.223999e+01
+4 16994     3.149399e+02 -1.789700e+02
+11 16994     -1.394600e+02 1.593800e+02
+4 16995     -4.372900e+02 -2.754200e+02
+6 16995     -1.626500e+02 -3.663199e+02
+7 16995     -2.009900e+02 -1.820000e+02
+12 16995     -1.511400e+02 -3.078900e+02
+13 16995     2.401600e+02 -4.745500e+02
+4 16996     -7.730400e+02 -2.799600e+02
+9 16996     1.734200e+02 -5.179600e+02
+4 16997     -7.951700e+02 -2.843400e+02
+6 16997     9.492999e+01 -8.065100e+02
+4 16998     -7.951700e+02 -2.843400e+02
+6 16998     9.492999e+01 -8.065100e+02
+4 16999     -7.871300e+02 -2.889100e+02
+7 16999     -8.759998e+01 -5.640200e+02
+4 17000     -3.398800e+02 -2.967900e+02
+6 17000     -1.651500e+02 -1.847700e+02
+12 17000     -1.665400e+02 -1.256300e+02
+4 17001     2.427800e+02 -3.113900e+02
+5 17001     2.753800e+02 2.491900e+02
+11 17001     2.876001e+01 5.673999e+01
+4 17002     -7.842100e+02 -3.228300e+02
+9 17002     2.160400e+02 -4.928700e+02
+4 17003     -4.448700e+02 -3.715000e+02
+12 17003     4.330017e+00 -2.289300e+02
+4 17004     2.791300e+02 -3.730500e+02
+14 17004     2.653900e+02 2.170500e+02
+4 17005     6.465997e+01 -3.873700e+02
+5 17005     4.396801e+02 -5.634003e+01
+6 17005     -4.588900e+02 6.440700e+02
+8 17005     -1.409600e+02 2.778700e+02
+4 17006     -4.055100e+02 -4.025600e+02
+6 17006     3.178998e+01 -1.940100e+02
+12 17006     3.067999e+01 -1.444200e+02
+4 17007     -4.150400e+02 -4.059900e+02
+6 17007     4.298999e+01 -2.046200e+02
+10 17007     -7.884003e+01 -8.978003e+01
+4 17008     -3.219600e+02 -4.375800e+02
+8 17008     1.977800e+02 -7.608002e+01
+4 17009     -2.533400e+02 -4.406300e+02
+12 17009     9.989990e+00 1.210000e+02
+4 17010     2.612400e+02 -4.468400e+02
+5 17010     4.860200e+02 2.914800e+02
+4 17011     9.509003e+01 -4.573000e+02
+8 17011     -6.887000e+01 3.326300e+02
+4 17012     2.296600e+02 -4.598199e+02
+11 17012     2.288900e+02 5.351999e+01
+4 17013     5.472998e+01 -4.690800e+02
+9 17013     -2.833400e+02 3.775100e+02
+4 17014     2.178600e+02 -4.699500e+02
+14 17014     4.284700e+02 1.213400e+02
+4 17015     7.527002e+01 -4.922800e+02
+5 17015     5.964100e+02 -1.750000e+01
+6 17015     -2.889600e+02 7.173000e+02
+11 17015     3.128700e+02 -1.522100e+02
+14 17015     4.964399e+02 -1.046600e+02
+4 17016     2.032400e+02 -5.153900e+02
+5 17016     6.059500e+02 1.965900e+02
+4 17017     1.741400e+02 -5.732600e+02
+5 17017     6.914100e+02 1.560600e+02
+4 17018     2.087900e+02 5.653998e+01
+5 17018     -4.438600e+02 1.621500e+02
+13 17018     -5.272900e+02 3.893800e+02
+14 17018     -5.179000e+02 5.976001e+01
+4 17019     2.099600e+02 3.216998e+01
+5 17019     -3.671100e+02 1.599300e+02
+4 17020     4.553003e+01 2.084003e+01
+5 17020     -3.188200e+02 -1.685400e+02
+11 17020     -4.259800e+02 -2.765000e+02
+4 17021     -1.977002e+01 4.450012e+00
+7 17021     -8.591600e+02 3.386200e+02
+13 17021     -3.387600e+02 1.308002e+01
+14 17021     -3.416700e+02 -3.997800e+02
+4 17022     -3.044000e+01 -1.181800e+02
+5 17022     -1.009003e+01 -2.909100e+02
+10 17022     -6.173800e+02 5.406800e+02
+13 17022     -1.351100e+02 3.632001e+01
+4 17023     1.702400e+02 -2.891500e+02
+5 17023     2.623700e+02 1.134100e+02
+13 17023     6.346997e+01 3.786900e+02
+14 17023     1.663199e+02 1.671002e+01
+4 17024     -7.113200e+02 -3.086400e+02
+9 17024     1.520500e+02 -4.520699e+02
+4 17025     1.615800e+02 -3.600500e+02
+5 17025     3.786000e+02 1.083200e+02
+14 17025     2.789301e+02 1.483002e+01
+4 17026     2.547300e+02 -3.723200e+02
+11 17026     1.108800e+02 7.903000e+01
+4 17027     -3.467600e+02 -3.791600e+02
+8 17027     1.451900e+02 -1.364800e+02
+4 17028     -1.955900e+02 -3.850900e+02
+5 17028     5.692200e+02 -5.486300e+02
+7 17028     -1.429000e+02 2.141500e+02
+13 17028     3.180000e+02 -1.340700e+02
+4 17029     1.834600e+02 -4.464200e+02
+13 17029     2.664500e+02 4.275500e+02
+4 17030     -4.280500e+02 -4.634000e+02
+6 17030     1.178500e+02 -1.783600e+02
+12 17030     1.227100e+02 -1.329100e+02
+4 17031     2.180500e+02 -4.935800e+02
+5 17031     5.686300e+02 2.189500e+02
+13 17031     3.136899e+02 4.800600e+02
+14 17031     4.621200e+02 1.229200e+02
+4 17032     5.840002e+01 -4.968700e+02
+6 17032     -2.727900e+02 6.815600e+02
+9 17032     -2.555700e+02 3.865600e+02
+4 17033     -2.737300e+02 -5.014301e+02
+6 17033     8.609003e+01 7.720001e+01
+8 17033     2.447200e+02 1.417999e+01
+12 17033     1.049900e+02 1.295500e+02
+4 17034     2.409998e+01 -5.388800e+02
+5 17034     6.737900e+02 -9.784003e+01
+11 17034     3.884900e+02 -2.168300e+02
+4 17035     3.039000e+02 -4.840997e+01
+5 17035     -2.298100e+02 3.471900e+02
+14 17035     -3.099600e+02 2.406300e+02
+4 17036     3.039000e+02 -4.840997e+01
+5 17036     -2.298100e+02 3.471900e+02
+14 17036     -3.099600e+02 2.406300e+02
+4 17037     1.639200e+02 -8.378003e+01
+5 17037     -9.635999e+01 6.919000e+01
+14 17037     -1.822100e+02 -2.956000e+01
+4 17038     1.535100e+02 -1.850200e+02
+14 17038     -4.390015e+00 -3.159998e+01
+4 17039     -7.156900e+02 -2.247800e+02
+6 17039     -2.620001e+01 -7.782000e+02
+7 17039     -1.779200e+02 -5.319500e+02
+4 17040     -4.331900e+02 -2.888700e+02
+7 17040     -1.836800e+02 -1.713000e+02
+13 17040     2.564700e+02 -4.641100e+02
+4 17041     -7.803000e+02 -3.443400e+02
+7 17041     -2.452002e+01 -5.221200e+02
+9 17041     2.292700e+02 -4.751300e+02
+4 17042     -5.943100e+02 -4.402200e+02
+7 17042     3.431000e+01 -2.733700e+02
+9 17042     1.939900e+02 -2.445000e+02
+4 17043     -3.260400e+02 -4.838199e+02
+6 17043     9.113000e+01 -1.403003e+01
+4 17044     1.798300e+02 -5.319000e+02
+5 17044     6.326500e+02 1.608900e+02
+13 17044     3.664301e+02 4.324600e+02
+14 17044     5.250699e+02 6.869000e+01
+4 17045     2.020300e+02 -5.460500e+02
+5 17045     6.511700e+02 1.984100e+02
+4 17046     -6.958300e+02 -2.011100e+02
+7 17046     -2.131700e+02 -5.271100e+02
+4 17047     2.382100e+02 -2.022800e+02
+5 17047     9.913000e+01 2.292600e+02
+13 17047     -7.169000e+01 4.692800e+02
+14 17047     1.341998e+01 1.250400e+02
+4 17048     -6.948600e+02 -2.205200e+02
+6 17048     -4.914001e+01 -7.589900e+02
+7 17048     -1.905100e+02 -5.128000e+02
+4 17049     -6.948600e+02 -2.205200e+02
+6 17049     -4.914001e+01 -7.589900e+02
+7 17049     -1.905100e+02 -5.128000e+02
+4 17050     -7.658800e+02 -3.541800e+02
+9 17050     2.260300e+02 -4.579200e+02
+4 17051     -7.536500e+02 -3.766900e+02
+9 17051     2.354100e+02 -4.346400e+02
+4 17052     2.113900e+02 -4.093200e+02
+5 17052     4.479900e+02 1.991500e+02
+11 17052     1.598000e+02 2.275000e+01
+13 17052     2.147500e+02 4.598700e+02
+14 17052     3.451000e+02 1.041400e+02
+4 17053     -7.374600e+02 -3.187800e+02
+9 17053     1.802400e+02 -4.635100e+02
+4 17054     1.774500e+02 -5.115500e+02
+5 17054     6.040900e+02 1.524900e+02
+11 17054     3.059800e+02 -1.416998e+01
+13 17054     3.428800e+02 4.248700e+02
+14 17054     4.973600e+02 6.033002e+01
+4 17055     1.449200e+02 -3.128700e+02
+5 17055     3.028800e+02 7.048999e+01
+4 17056     4.575000e+01 -3.495800e+02
+5 17056     3.826700e+02 -9.906000e+01
+12 17056     -3.380800e+02 5.646700e+02
+4 17057     2.177200e+02 -2.172700e+02
+5 17057     1.297100e+02 1.904100e+02
+4 17058     1.473700e+02 -3.674700e+02
+5 17058     3.926600e+02 8.553003e+01
+4 17059     -4.567200e+02 -4.972300e+02
+8 17059     3.162100e+02 -1.921300e+02
+12 17059     1.763700e+02 -1.506800e+02
+4 17060     2.098000e+02 -2.688800e+02
+5 17060     2.268900e+02 1.812100e+02
+5 17061     -3.286200e+02 3.943700e+02
+11 17061     -3.616600e+02 1.616600e+02
+5 17062     3.192500e+02 3.895000e+02
+11 17062     1.224600e+02 1.706100e+02
+5 17063     -3.367800e+02 3.817000e+02
+11 17063     -3.759900e+02 1.511500e+02
+5 17064     2.890100e+02 3.800200e+02
+11 17064     9.610999e+01 1.623800e+02
+5 17065     3.875400e+02 3.801800e+02
+11 17065     1.520600e+02 1.638100e+02
+14 17065     2.867900e+02 2.756900e+02
+5 17066     -8.741998e+01 3.730900e+02
+11 17066     -2.135100e+02 1.474500e+02
+5 17067     1.069900e+02 3.670300e+02
+11 17067     -5.645001e+01 1.473500e+02
+14 17067     1.825000e+01 2.600500e+02
+5 17068     1.069900e+02 3.670300e+02
+11 17068     -5.645001e+01 1.473500e+02
+5 17069     -3.863900e+02 3.443000e+02
+11 17069     -4.228000e+02 1.209200e+02
+5 17070     -1.013600e+02 3.413200e+02
+11 17070     -2.330600e+02 1.222100e+02
+5 17071     -3.656900e+02 3.384200e+02
+11 17071     -4.085900e+02 1.172700e+02
+5 17072     -4.295600e+02 3.337900e+02
+11 17072     -4.537400e+02 1.120800e+02
+14 17072     -5.050100e+02 2.253400e+02
+5 17073     -2.218000e+02 3.130500e+02
+11 17073     -3.382000e+02 9.789001e+01
+13 17073     -3.514500e+02 5.309000e+02
+14 17073     -3.024200e+02 2.054500e+02
+5 17074     -2.104700e+02 3.048900e+02
+11 17074     -3.269400e+02 9.148999e+01
+13 17074     -3.409200e+02 5.245700e+02
+14 17074     -2.907800e+02 1.980900e+02
+5 17075     -2.276200e+02 2.614700e+02
+11 17075     -3.412600e+02 5.748999e+01
+5 17076     1.031800e+02 2.604700e+02
+11 17076     -1.133300e+02 6.014999e+01
+5 17077     -9.506000e+01 2.501300e+02
+11 17077     -2.809800e+02 4.907001e+01
+5 17078     -2.928700e+02 2.432300e+02
+11 17078     -3.815800e+02 4.370001e+01
+13 17078     -4.065700e+02 4.658500e+02
+14 17078     -3.711500e+02 1.368800e+02
+5 17079     -1.293900e+02 1.872600e+02
+11 17079     -3.191900e+02 -1.250000e+00
+5 17080     5.956300e+02 1.175300e+02
+11 17080     3.028400e+02 -4.196002e+01
+14 17080     4.915100e+02 2.716998e+01
+5 17081     3.316100e+02 1.129400e+02
+8 17081     -2.401100e+02 4.262600e+02
+5 17082     5.935100e+02 1.105500e+02
+11 17082     3.005601e+02 -4.703998e+01
+14 17082     4.893300e+02 2.021002e+01
+5 17083     3.675601e+02 1.082100e+02
+6 17083     -5.814400e+02 8.498600e+02
+5 17084     4.249399e+02 1.043600e+02
+6 17084     -5.105800e+02 8.517700e+02
+5 17085     4.713199e+02 9.151001e+01
+6 17085     -4.524500e+02 8.399400e+02
+5 17086     6.729600e+02 8.909003e+01
+6 17086     -2.225100e+02 8.597500e+02
+5 17087     4.277900e+02 8.582001e+01
+6 17087     -5.033200e+02 8.271300e+02
+8 17087     -1.624200e+02 3.995600e+02
+14 17087     3.290200e+02 -6.409973e+00
+5 17088     6.065800e+02 7.603003e+01
+6 17088     -2.929200e+02 8.366500e+02
+8 17088     -2.567999e+01 3.856800e+02
+5 17089     3.893800e+02 6.889001e+01
+6 17089     -5.459800e+02 7.988300e+02
+14 17089     2.917700e+02 -2.371002e+01
+5 17090     5.630699e+02 6.765997e+01
+6 17090     -3.416300e+02 8.202700e+02
+5 17091     2.009998e+01 6.265997e+01
+8 17091     -5.033800e+02 3.901900e+02
+14 17091     -6.829999e+01 -3.573999e+01
+5 17092     5.710601e+02 4.917999e+01
+6 17092     -3.288200e+02 7.969200e+02
+14 17092     4.699800e+02 -3.975000e+01
+5 17093     3.857100e+02 4.752002e+01
+11 17093     1.164600e+02 -1.044200e+02
+14 17093     2.895000e+02 -4.457001e+01
+5 17094     -5.544000e+01 4.095001e+01
+8 17094     -5.718400e+02 3.712900e+02
+14 17094     -1.421100e+02 -5.771002e+01
+5 17095     3.781000e+02 3.910999e+01
+6 17095     -5.516100e+02 7.589400e+02
+8 17095     -1.962500e+02 3.620800e+02
+14 17095     2.821400e+02 -5.239001e+01
+5 17096     6.683300e+02 3.732001e+01
+6 17096     -2.193800e+02 7.942100e+02
+14 17096     5.645699e+02 -4.897998e+01
+5 17097     6.683300e+02 3.732001e+01
+6 17097     -2.193800e+02 7.942100e+02
+14 17097     5.645699e+02 -4.897998e+01
+5 17098     7.510000e+02 2.182001e+01
+6 17098     -1.287900e+02 7.849900e+02
+8 17098     8.090002e+01 3.366000e+02
+5 17099     5.920300e+02 1.778998e+01
+6 17099     -2.995000e+02 7.620500e+02
+11 17099     3.059900e+02 -1.230400e+02
+5 17100     5.437900e+02 1.340997e+01
+6 17100     -3.527500e+02 7.476000e+02
+5 17101     6.100500e+02 -2.909973e+00
+6 17101     -2.759200e+02 7.355800e+02
+5 17102     3.398900e+02 -3.299988e+00
+8 17102     -2.240700e+02 3.246000e+02
+14 17102     2.459301e+02 -9.359998e+01
+5 17103     3.398900e+02 -3.299988e+00
+8 17103     -2.240700e+02 3.246000e+02
+14 17103     2.459301e+02 -9.359998e+01
+5 17104     6.609700e+02 -2.279999e+01
+6 17104     -2.177100e+02 7.190400e+02
+5 17105     1.914301e+02 -2.581000e+01
+11 17105     -5.369000e+01 -1.670800e+02
+5 17106     4.940100e+02 -2.934998e+01
+6 17106     -4.011900e+02 6.863100e+02
+11 17106     2.195700e+02 -1.638700e+02
+14 17106     3.972800e+02 -1.167900e+02
+5 17107     5.864000e+02 -3.140997e+01
+6 17107     -2.970800e+02 6.970700e+02
+5 17108     1.543800e+02 -3.347998e+01
+12 17108     -6.204800e+02 6.122700e+02
+5 17109     4.815900e+02 -4.503998e+01
+6 17109     -4.125900e+02 6.652400e+02
+5 17110     4.757400e+02 -4.558002e+01
+6 17110     -4.189700e+02 6.629700e+02
+5 17111     3.716300e+02 -4.738000e+01
+6 17111     -5.400900e+02 6.440700e+02
+5 17112     3.340601e+02 -4.894000e+01
+12 17112     -4.045100e+02 6.151900e+02
+5 17113     2.579900e+02 -5.954999e+01
+12 17113     -4.903300e+02 5.932800e+02
+5 17114     3.731801e+02 -6.231000e+01
+6 17114     -5.349900e+02 6.249900e+02
+5 17115     7.354600e+02 -6.765997e+01
+9 17115     -1.587700e+02 3.676100e+02
+5 17116     6.193400e+02 -6.977002e+01
+6 17116     -2.550800e+02 6.557800e+02
+5 17117     5.588199e+02 -7.344000e+01
+6 17117     -3.199200e+02 6.420500e+02
+5 17118     4.705900e+02 -7.629999e+01
+12 17118     -2.453500e+02 5.982200e+02
+14 17118     3.758400e+02 -1.634500e+02
+5 17119     7.638500e+02 -8.973999e+01
+6 17119     -1.006800e+02 6.525000e+02
+12 17119     6.201001e+01 6.103900e+02
+5 17120     2.377100e+02 -9.282001e+01
+12 17120     -5.057700e+02 5.518700e+02
+5 17121     7.473000e+02 -9.615002e+01
+8 17121     8.660999e+01 2.421000e+02
+12 17121     4.642999e+01 6.021300e+02
+5 17122     7.791998e+01 -1.037000e+02
+7 17122     -5.752200e+02 5.809700e+02
+14 17122     -8.429993e+00 -1.970500e+02
+5 17123     3.741000e+02 -1.049100e+02
+6 17123     -5.240500e+02 5.713400e+02
+12 17123     -3.470200e+02 5.551400e+02
+5 17124     3.741000e+02 -1.049100e+02
+6 17124     -5.240500e+02 5.713400e+02
+12 17124     -3.470200e+02 5.551400e+02
+5 17125     4.035800e+02 -1.167100e+02
+6 17125     -4.869400e+02 5.613600e+02
+5 17126     2.687000e+02 -1.223100e+02
+12 17126     -4.631700e+02 5.219100e+02
+5 17127     1.876100e+02 -1.237300e+02
+7 17127     -4.535200e+02 5.719000e+02
+5 17128     1.876100e+02 -1.237300e+02
+7 17128     -4.535200e+02 5.719000e+02
+8 17128     -3.371800e+02 2.186500e+02
+5 17129     1.163200e+02 -1.254200e+02
+7 17129     -5.289500e+02 5.627300e+02
+5 17130     5.634800e+02 -1.291000e+02
+6 17130     -3.050800e+02 5.743000e+02
+12 17130     -1.364800e+02 5.491000e+02
+5 17131     4.819200e+02 -1.294800e+02
+12 17131     -2.227900e+02 5.409800e+02
+5 17132     3.064000e+02 -1.304300e+02
+12 17132     -4.184300e+02 5.174700e+02
+5 17133     4.797400e+02 -1.325600e+02
+12 17133     -2.252200e+02 5.367500e+02
+5 17134     2.720601e+02 -1.375900e+02
+12 17134     -4.555300e+02 5.045400e+02
+5 17135     4.726400e+02 -1.379400e+02
+12 17135     -2.315900e+02 5.295500e+02
+5 17136     3.790601e+02 -1.392900e+02
+12 17136     -3.346300e+02 5.170900e+02
+5 17137     6.803400e+02 -1.420600e+02
+6 17137     -1.784200e+02 5.788400e+02
+14 17137     5.833101e+02 -2.226000e+02
+5 17138     4.910100e+02 -1.444700e+02
+6 17138     -3.817000e+02 5.430400e+02
+5 17139     1.931700e+02 -1.455300e+02
+7 17139     -4.434700e+02 5.509000e+02
+5 17140     8.462000e+01 -1.460600e+02
+7 17140     -5.574800e+02 5.382300e+02
+5 17141     2.884600e+02 -1.500400e+02
+7 17141     -3.444800e+02 5.557900e+02
+12 17141     -4.345700e+02 4.925300e+02
+5 17142     3.720900e+02 -1.509000e+02
+12 17142     -3.400500e+02 5.029700e+02
+5 17143     7.435601e+02 -1.537500e+02
+6 17143     -1.117900e+02 5.751100e+02
+12 17143     5.078998e+01 5.404900e+02
+5 17144     3.700000e+02 -1.543300e+02
+6 17144     -5.179200e+02 5.087500e+02
+5 17145     3.700000e+02 -1.543300e+02
+6 17145     -5.179200e+02 5.087500e+02
+12 17145     -3.416300e+02 4.988100e+02
+5 17146     2.848300e+02 -1.644600e+02
+7 17146     -3.450600e+02 5.415900e+02
+5 17147     1.891500e+02 -1.654800e+02
+12 17147     -5.451700e+02 4.611800e+02
+5 17148     3.316200e+02 -1.690200e+02
+7 17148     -2.968100e+02 5.420100e+02
+12 17148     -3.814300e+02 4.769000e+02
+14 17148     2.423800e+02 -2.564500e+02
+5 17149     -2.619995e+00 -1.729000e+02
+8 17149     -4.975600e+02 1.696200e+02
+5 17150     3.949100e+02 -1.747700e+02
+12 17150     -3.096800e+02 4.791300e+02
+5 17151     3.115500e+02 -1.752700e+02
+6 17151     -5.813800e+02 4.715900e+02
+12 17151     -4.024100e+02 4.672800e+02
+5 17152     3.115500e+02 -1.752700e+02
+6 17152     -5.813800e+02 4.715900e+02
+5 17153     3.372200e+02 -1.794700e+02
+6 17153     -5.506400e+02 4.713400e+02
+8 17153     -2.104500e+02 1.717900e+02
+12 17153     -3.731300e+02 4.663700e+02
+14 17153     2.479301e+02 -2.665000e+02
+5 17154     -1.190002e+01 -1.833700e+02
+12 17154     -7.823300e+02 4.084600e+02
+5 17155     -1.190002e+01 -1.833700e+02
+12 17155     -7.823300e+02 4.084600e+02
+5 17156     2.719200e+02 -1.847900e+02
+7 17156     -3.542700e+02 5.206400e+02
+5 17157     2.555900e+02 -1.874400e+02
+7 17157     -3.706500e+02 5.160500e+02
+5 17158     2.995100e+02 -1.891400e+02
+7 17158     -3.256200e+02 5.190600e+02
+5 17159     2.844700e+02 -1.906300e+02
+7 17159     -3.405800e+02 5.161000e+02
+12 17159     -4.292900e+02 4.463200e+02
+5 17160     4.333600e+02 -1.906400e+02
+12 17160     -2.645400e+02 4.664300e+02
+5 17161     1.107000e+02 -1.929900e+02
+12 17161     -6.303700e+02 4.174800e+02
+5 17162     -6.690002e+00 -1.941500e+02
+8 17162     -4.985600e+02 1.491300e+02
+5 17163     3.102300e+02 -1.944600e+02
+12 17163     -3.999000e+02 4.455900e+02
+5 17164     5.434301e+02 -1.963300e+02
+6 17164     -3.144300e+02 4.908900e+02
+14 17164     4.515100e+02 -2.789700e+02
+5 17165     1.562100e+02 -1.968100e+02
+12 17165     -5.756600e+02 4.196400e+02
+5 17166     1.799988e+00 -2.005600e+02
+12 17166     -7.598000e+02 3.904900e+02
+5 17167     1.488400e+02 -2.041000e+02
+12 17167     -5.820800e+02 4.108600e+02
+5 17168     3.609000e+02 -2.136300e+02
+12 17168     -3.418800e+02 4.341300e+02
+5 17169     4.386100e+02 -2.302400e+02
+12 17169     -2.511800e+02 4.241900e+02
+5 17170     2.335699e+02 -2.354100e+02
+7 17170     -3.847800e+02 4.674100e+02
+5 17171     -1.124800e+02 -2.363000e+02
+7 17171     -7.455300e+02 4.210300e+02
+10 17171     -7.717500e+02 5.913000e+02
+11 17171     -3.100100e+02 -3.399900e+02
+5 17172     -1.084600e+02 -2.364900e+02
+8 17172     -5.869500e+02 1.053400e+02
+5 17173     5.279301e+02 -2.404000e+02
+6 17173     -3.229000e+02 4.365000e+02
+14 17173     4.381700e+02 -3.223400e+02
+5 17174     3.821600e+02 -2.424300e+02
+7 17174     -2.346200e+02 4.767600e+02
+14 17174     2.946200e+02 -3.282300e+02
+5 17175     5.218500e+02 -2.525300e+02
+8 17175     -6.166998e+01 1.122500e+02
+5 17176     4.169000e+01 -2.539800e+02
+7 17176     -5.763700e+02 4.252300e+02
+8 17176     -4.504800e+02 9.551999e+01
+10 17176     -5.707300e+02 5.858300e+02
+14 17176     -4.126001e+01 -3.460700e+02
+5 17177     -8.685999e+01 -2.593600e+02
+7 17177     -7.110800e+02 4.017500e+02
+10 17177     -7.307000e+02 5.660700e+02
+11 17177     -2.865900e+02 -3.588400e+02
+5 17178     -6.765997e+01 -2.600100e+02
+8 17178     -5.458200e+02 8.529001e+01
+10 17178     -7.057000e+02 5.677000e+02
+5 17179     -6.278998e+01 -2.602700e+02
+10 17179     -6.994700e+02 5.678500e+02
+12 17179     -8.211400e+02 3.084400e+02
+14 17179     -1.450700e+02 -3.544000e+02
+5 17180     -1.207100e+02 -2.606400e+02
+7 17180     -7.473200e+02 3.956800e+02
+8 17180     -5.952500e+02 8.173001e+01
+14 17180     -2.027500e+02 -3.563900e+02
+5 17181     2.489600e+02 -2.667400e+02
+10 17181     -3.140800e+02 5.935400e+02
+14 17181     1.637400e+02 -3.538600e+02
+5 17182     -1.179100e+02 -2.690600e+02
+7 17182     -7.420800e+02 3.876600e+02
+10 17182     -7.675000e+02 5.520400e+02
+11 17182     -3.134300e+02 -3.663100e+02
+5 17183     1.811100e+02 -2.861300e+02
+11 17183     -1.048900e+02 -3.868800e+02
+12 17183     -5.240300e+02 3.232100e+02
+5 17184     4.089100e+02 -3.032100e+02
+6 17184     -4.411500e+02 3.371600e+02
+7 17184     -1.994600e+02 4.229300e+02
+10 17184     -1.203000e+02 5.666400e+02
+11 17184     1.619600e+02 -3.902400e+02
+14 17184     3.228900e+02 -3.875600e+02
+5 17185     2.839500e+02 -3.058200e+02
+7 17185     -3.201000e+02 4.063100e+02
+11 17185     4.827002e+01 -3.941900e+02
+5 17186     2.839500e+02 -3.058200e+02
+8 17186     -2.402400e+02 5.941000e+01
+12 17186     -4.039800e+02 3.185500e+02
+5 17187     3.846200e+02 -3.100800e+02
+7 17187     -2.219600e+02 4.140300e+02
+10 17187     -1.480100e+02 5.572700e+02
+14 17187     2.989200e+02 -3.948400e+02
+5 17188     2.540100e+02 -3.156900e+02
+7 17188     -3.479100e+02 3.932600e+02
+5 17189     2.540100e+02 -3.156900e+02
+7 17189     -3.479100e+02 3.932600e+02
+5 17190     5.802000e+02 -3.285100e+02
+6 17190     -2.421900e+02 3.467700e+02
+10 17190     5.710999e+01 5.489300e+02
+11 17190     2.988101e+02 -4.112200e+02
+12 17190     -9.021002e+01 3.466200e+02
+13 17190     3.336300e+02 3.609003e+01
+5 17191     5.811801e+02 -3.320600e+02
+10 17191     5.591998e+01 5.448800e+02
+5 17192     5.902800e+02 -3.349600e+02
+6 17192     -2.300000e+02 3.419000e+02
+10 17192     6.588000e+01 5.425900e+02
+5 17193     1.069800e+02 -3.362900e+02
+10 17193     -4.702600e+02 5.007300e+02
+15 17193     -4.576500e+02 5.455800e+02
+5 17194     -2.809003e+01 -3.362800e+02
+8 17194     -5.010100e+02 1.498001e+01
+5 17195     2.583002e+01 -3.364000e+02
+7 17195     -5.725300e+02 3.439500e+02
+14 17195     -5.566998e+01 -4.283200e+02
+15 17195     -5.701400e+02 5.338700e+02
+5 17196     1.867999e+01 -3.387500e+02
+10 17196     -5.758300e+02 4.898200e+02
+14 17196     -6.254999e+01 -4.308100e+02
+5 17197     -1.112400e+02 -3.416200e+02
+8 17197     -5.754300e+02 5.570007e+00
+14 17197     -1.924800e+02 -4.372900e+02
+5 17198     9.969000e+01 -3.431700e+02
+7 17198     -4.960700e+02 3.482900e+02
+10 17198     -4.777400e+02 4.932100e+02
+14 17198     1.802002e+01 -4.336300e+02
+15 17198     -4.657600e+02 5.364500e+02
+5 17199     -1.328400e+02 -3.562700e+02
+7 17199     -7.323000e+02 3.008800e+02
+10 17199     -7.571800e+02 4.517100e+02
+14 17199     -2.141300e+02 -4.524200e+02
+5 17200     -1.476300e+02 -3.594100e+02
+10 17200     -7.733400e+02 4.472400e+02
+14 17200     -2.285700e+02 -4.559301e+02
+5 17201     -1.536700e+02 -3.622300e+02
+10 17201     -7.796300e+02 4.430800e+02
+5 17202     5.065800e+02 -3.665500e+02
+6 17202     -3.113800e+02 2.885000e+02
+5 17203     -1.260400e+02 -3.687000e+02
+10 17203     -7.433000e+02 4.396500e+02
+5 17204     1.753200e+02 -3.723800e+02
+7 17204     -4.131600e+02 3.319500e+02
+8 17204     -3.217600e+02 -4.609985e+00
+14 17204     9.603998e+01 -4.608000e+02
+5 17205     -1.054000e+02 -3.771300e+02
+7 17205     -6.969600e+02 2.857200e+02
+8 17205     -5.654700e+02 -2.784000e+01
+10 17205     -7.159800e+02 4.332200e+02
+14 17205     -1.858700e+02 -4.728199e+02
+15 17205     -7.368200e+02 4.612600e+02
+5 17206     4.799805e-01 -3.872800e+02
+10 17206     -5.840200e+02 4.341200e+02
+11 17206     -2.019000e+02 -4.633200e+02
+5 17207     -1.001100e+02 -3.916800e+02
+10 17207     -7.049600e+02 4.186100e+02
+5 17208     1.470600e+02 -4.505200e+02
+7 17208     -4.416200e+02 2.552800e+02
+5 17209     3.963199e+02 -4.714100e+02
+6 17209     -3.983700e+02 1.465200e+02
+10 17209     -1.658700e+02 3.771000e+02
+12 17209     -2.630500e+02 1.765100e+02
+14 17209     3.128300e+02 -5.563199e+02
+5 17210     3.809200e+02 -4.956200e+02
+7 17210     -2.314000e+02 2.454900e+02
+8 17210     -1.283000e+02 -5.557999e+01
+10 17210     -1.866900e+02 3.488200e+02
+12 17210     -2.755700e+02 1.500000e+02
+5 17211     2.877100e+02 -5.015200e+02
+7 17211     -3.143800e+02 2.284700e+02
+5 17212     2.664900e+02 -5.043400e+02
+15 17212     -2.685000e+02 3.510600e+02
+5 17213     6.402800e+02 -5.046200e+02
+6 17213     -7.614001e+01 1.849100e+02
+10 17213     -7.075000e+01 3.169900e+02
+5 17214     4.644700e+02 -5.064800e+02
+6 17214     -2.822500e+02 1.330800e+02
+10 17214     -1.810400e+02 3.213200e+02
+12 17214     -2.088600e+02 1.780800e+02
+15 17214     -1.300900e+02 3.452700e+02
+5 17215     5.157800e+02 -5.089800e+02
+6 17215     -2.230100e+02 1.443200e+02
+5 17216     5.042200e+02 -5.170601e+02
+6 17216     -2.317000e+02 1.336800e+02
+12 17216     -1.696700e+02 1.803500e+02
+5 17217     3.654700e+02 -5.249500e+02
+6 17217     -4.127700e+02 8.000000e+01
+5 17218     5.029000e+02 -5.271700e+02
+6 17218     -2.299600e+02 1.228800e+02
+5 17219     4.875800e+02 -5.322700e+02
+6 17219     -2.439700e+02 1.134800e+02
+10 17219     -1.776200e+02 2.910800e+02
+12 17219     -1.858000e+02 1.622900e+02
+5 17220     3.383700e+02 -5.328101e+02
+6 17220     -4.408400e+02 6.402002e+01
+5 17221     6.030699e+02 -5.332100e+02
+6 17221     -1.073300e+02 1.466400e+02
+7 17221     -1.156600e+02 2.313800e+02
+10 17221     -1.103900e+02 2.846500e+02
+12 17221     -7.759003e+01 2.006500e+02
+15 17221     -5.467999e+01 3.045700e+02
+5 17222     4.505300e+02 -5.343000e+02
+6 17222     -2.876100e+02 1.004500e+02
+12 17222     -2.208000e+02 1.489900e+02
+5 17223     4.814500e+02 -5.380100e+02
+6 17223     -2.481700e+02 1.062500e+02
+5 17224     4.263500e+02 -5.401600e+02
+10 17224     -2.310500e+02 2.807200e+02
+15 17224     -1.880100e+02 2.973500e+02
+5 17225     4.780800e+02 -5.411899e+02
+12 17225     -1.951300e+02 1.518900e+02
+5 17226     4.906200e+02 -5.409600e+02
+6 17226     -2.379200e+02 1.056400e+02
+5 17227     4.741700e+02 -5.418000e+02
+6 17227     -2.553800e+02 1.000900e+02
+12 17227     -1.997700e+02 1.503700e+02
+5 17228     4.741700e+02 -5.418000e+02
+6 17228     -2.553800e+02 1.000900e+02
+12 17228     -1.997700e+02 1.503700e+02
+15 17228     -1.487700e+02 2.962400e+02
+5 17229     5.588000e+02 -5.441400e+02
+6 17229     -1.517300e+02 1.233700e+02
+12 17229     -1.205800e+02 1.778100e+02
+15 17229     -9.950000e+01 2.889400e+02
+5 17230     5.528101e+02 -5.501000e+02
+6 17230     -1.568500e+02 1.154400e+02
+15 17230     -1.063100e+02 2.810500e+02
+5 17231     1.248900e+02 -5.514900e+02
+15 17231     -4.472000e+02 2.739100e+02
+5 17232     4.827200e+02 -5.542700e+02
+6 17232     -2.414100e+02 8.946997e+01
+12 17232     -1.890700e+02 1.403100e+02
+5 17233     4.801600e+02 -5.578900e+02
+6 17233     -2.429100e+02 8.542999e+01
+12 17233     -1.915500e+02 1.364600e+02
+5 17234     4.049399e+02 -5.627000e+02
+12 17234     -2.664800e+02 1.116900e+02
+15 17234     -2.213200e+02 2.656900e+02
+5 17235     4.821300e+02 -5.632900e+02
+6 17235     -2.387300e+02 8.007001e+01
+12 17235     -1.889000e+02 1.317400e+02
+5 17236     3.961300e+02 -5.669500e+02
+6 17236     -3.339200e+02 5.185999e+01
+10 17236     -2.687500e+02 2.487400e+02
+12 17236     -2.752600e+02 1.054500e+02
+15 17236     -2.334600e+02 2.589700e+02
+5 17237     4.008800e+02 -5.702300e+02
+6 17237     -3.275900e+02 4.953003e+01
+10 17237     -2.643000e+02 2.460500e+02
+12 17237     -2.699400e+02 1.035500e+02
+15 17237     -2.282900e+02 2.558900e+02
+5 17238     4.008800e+02 -5.702300e+02
+6 17238     -3.275900e+02 4.953003e+01
+10 17238     -2.643000e+02 2.460500e+02
+12 17238     -2.699400e+02 1.035500e+02
+15 17238     -2.282900e+02 2.558900e+02
+5 17239     4.232300e+02 -5.704800e+02
+6 17239     -3.038300e+02 5.571002e+01
+15 17239     -2.014100e+02 2.579700e+02
+5 17240     4.730000e+02 -5.748000e+02
+6 17240     -2.444100e+02 6.559003e+01
+5 17241     4.617900e+02 -5.764800e+02
+6 17241     -2.559300e+02 6.165997e+01
+12 17241     -2.090600e+02 1.149600e+02
+5 17242     6.199500e+02 -5.774700e+02
+10 17242     -1.034100e+02 2.369200e+02
+12 17242     -5.625000e+01 1.607200e+02
+15 17242     -4.652002e+01 2.493100e+02
+5 17243     3.651400e+02 -5.778000e+02
+6 17243     -3.958600e+02 2.326001e+01
+5 17244     3.651400e+02 -5.778000e+02
+6 17244     -3.958600e+02 2.326001e+01
+9 17244     -3.154700e+02 -2.720001e+01
+5 17245     4.205200e+02 -5.799399e+02
+10 17245     -2.456500e+02 2.365300e+02
+5 17246     4.587600e+02 -5.806000e+02
+6 17246     -2.574000e+02 5.575000e+01
+15 17246     -1.802800e+02 2.440900e+02
+5 17247     6.555601e+02 -5.879399e+02
+6 17247     -4.026001e+01 1.045800e+02
+8 17247     1.462100e+02 3.217999e+01
+10 17247     -7.308002e+01 2.276700e+02
+12 17247     -1.967999e+01 1.592300e+02
+15 17247     -1.153998e+01 2.391300e+02
+5 17248     3.909301e+02 -5.896600e+02
+6 17248     -3.315500e+02 2.675000e+01
+5 17249     4.597700e+02 -5.944900e+02
+6 17249     -2.517600e+02 4.200000e+01
+10 17249     -2.249600e+02 2.193100e+02
+12 17249     -2.096300e+02 9.700000e+01
+15 17249     -1.841500e+02 2.260700e+02
+5 17250     4.564200e+02 -5.948600e+02
+6 17250     -2.551800e+02 4.083002e+01
+12 17250     -2.130200e+02 9.597998e+01
+5 17251     2.695001e+01 -6.069399e+02
+7 17251     -5.509600e+02 9.554999e+01
+15 17251     -5.728900e+02 1.926700e+02
+5 17252     4.528600e+02 -6.086100e+02
+6 17252     -2.544100e+02 2.553003e+01
+7 17252     -2.285900e+02 1.464700e+02
+15 17252     -1.968900e+02 2.070700e+02
+5 17253     6.265500e+02 -6.162300e+02
+6 17253     -6.346997e+01 6.847998e+01
+10 17253     -1.023300e+02 1.972100e+02
+15 17253     -4.525000e+01 2.028000e+02
+5 17254     2.159600e+02 -6.182700e+02
+7 17254     -3.805300e+02 1.140900e+02
+15 17254     -3.509400e+02 2.021100e+02
+5 17255     7.773600e+02 -6.191600e+02
+6 17255     8.185999e+01 1.047400e+02
+10 17255     3.648999e+01 2.028100e+02
+12 17255     1.020400e+02 1.565600e+02
+15 17255     1.164700e+02 2.116500e+02
+5 17256     7.878003e+01 4.695200e+02
+11 17256     -4.184003e+01 2.272400e+02
+14 17256     -7.640015e+00 3.584700e+02
+5 17257     -1.653600e+02 4.374300e+02
+11 17257     -2.357100e+02 1.970200e+02
+14 17257     -2.443700e+02 3.269800e+02
+5 17258     -2.318900e+02 4.351300e+02
+11 17258     -2.885000e+02 1.938000e+02
+5 17259     -2.125900e+02 4.315800e+02
+11 17259     -2.746500e+02 1.918300e+02
+14 17259     -2.905200e+02 3.209700e+02
+5 17260     -2.125900e+02 4.315800e+02
+11 17260     -2.746500e+02 1.918300e+02
+14 17260     -2.905200e+02 3.209700e+02
+5 17261     -2.319700e+02 4.312300e+02
+11 17261     -2.886400e+02 1.897800e+02
+14 17261     -3.092400e+02 3.201600e+02
+5 17262     -2.087100e+02 4.278500e+02
+11 17262     -2.720900e+02 1.887900e+02
+5 17263     1.950100e+02 4.247000e+02
+11 17263     4.292999e+01 1.950200e+02
+14 17263     1.049200e+02 3.156700e+02
+5 17264     1.754500e+02 4.193700e+02
+11 17264     2.629999e+01 1.905700e+02
+14 17264     8.541998e+01 3.109700e+02
+5 17265     -1.677700e+02 4.109700e+02
+11 17265     -2.441200e+02 1.770000e+02
+5 17266     -1.476100e+02 4.070100e+02
+11 17266     -2.288100e+02 1.739400e+02
+5 17267     -1.853500e+02 4.060800e+02
+11 17267     -2.589200e+02 1.722500e+02
+5 17268     -2.608100e+02 3.920700e+02
+11 17268     -3.090600e+02 1.600900e+02
+14 17268     -3.375000e+02 2.819200e+02
+5 17269     -2.908500e+02 3.893400e+02
+11 17269     -3.322900e+02 1.572500e+02
+5 17270     1.293000e+02 3.876600e+02
+11 17270     -3.445001e+01 1.639600e+02
+5 17271     2.311700e+02 3.841200e+02
+11 17271     4.876001e+01 1.640200e+02
+14 17271     1.379600e+02 2.779800e+02
+5 17272     -1.766300e+02 3.783000e+02
+11 17272     -2.872900e+02 1.499900e+02
+5 17273     3.920001e+01 3.786300e+02
+11 17273     -1.099400e+02 1.549900e+02
+14 17273     -4.746002e+01 2.710100e+02
+5 17274     3.177002e+01 3.780400e+02
+11 17274     -1.159800e+02 1.544100e+02
+5 17275     2.297000e+02 3.775300e+02
+11 17275     4.658002e+01 1.589400e+02
+5 17276     9.890002e+01 3.767700e+02
+11 17276     -6.191998e+01 1.553000e+02
+14 17276     1.021997e+01 2.695200e+02
+5 17277     7.490002e+01 3.757900e+02
+11 17277     -8.142999e+01 1.540700e+02
+5 17278     7.490002e+01 3.757900e+02
+11 17278     -8.142999e+01 1.540700e+02
+5 17279     -3.137100e+02 3.754700e+02
+11 17279     -3.595200e+02 1.465500e+02
+5 17280     1.948400e+02 3.746200e+02
+11 17280     1.617999e+01 1.568900e+02
+5 17281     -1.781700e+02 3.729600e+02
+11 17281     -2.895600e+02 1.456900e+02
+5 17282     -1.040200e+02 3.724100e+02
+11 17282     -2.276800e+02 1.472500e+02
+5 17283     2.129600e+02 3.713500e+02
+11 17283     3.146002e+01 1.537900e+02
+14 17283     1.205400e+02 2.654700e+02
+5 17284     1.355600e+02 3.711800e+02
+11 17284     -3.210999e+01 1.514800e+02
+5 17285     9.710999e+01 3.697500e+02
+11 17285     -6.440002e+01 1.498200e+02
+5 17286     -3.519100e+02 3.668900e+02
+11 17286     -3.910900e+02 1.394200e+02
+5 17287     -3.563500e+02 3.617400e+02
+11 17287     -3.949500e+02 1.347100e+02
+5 17288     -9.240002e+01 3.617400e+02
+11 17288     -2.198400e+02 1.390000e+02
+5 17289     3.429993e+00 3.603600e+02
+11 17289     -1.422800e+02 1.398800e+02
+5 17290     8.378998e+01 3.555800e+02
+11 17290     -7.752002e+01 1.380000e+02
+5 17291     -1.034200e+02 3.542300e+02
+11 17291     -2.316000e+02 1.344700e+02
+5 17292     -7.450012e+00 3.529700e+02
+11 17292     -1.526400e+02 1.342700e+02
+5 17293     1.108002e+01 3.520700e+02
+11 17293     -1.375900e+02 1.338100e+02
+5 17294     4.803101e+02 3.516400e+02
+11 17294     2.184200e+02 1.441100e+02
+14 17294     3.752200e+02 2.497600e+02
+5 17295     2.182600e+02 3.488000e+02
+11 17295     3.247998e+01 1.359200e+02
+5 17296     5.676100e+02 3.483300e+02
+11 17296     2.882800e+02 1.434100e+02
+14 17296     4.589500e+02 2.477300e+02
+5 17297     5.676100e+02 3.483300e+02
+11 17297     2.882800e+02 1.434100e+02
+5 17298     -3.460500e+02 3.481100e+02
+11 17298     -3.906500e+02 1.248300e+02
+14 17298     -4.218900e+02 2.395900e+02
+5 17299     4.096600e+02 3.477400e+02
+11 17299     1.565800e+02 1.391100e+02
+14 17299     3.076700e+02 2.450300e+02
+5 17300     -3.681000e+02 3.468100e+02
+11 17300     -4.082000e+02 1.236400e+02
+5 17301     -3.644300e+02 3.421100e+02
+11 17301     -4.063700e+02 1.198600e+02
+5 17302     -4.002900e+02 3.415800e+02
+11 17302     -4.348200e+02 1.181700e+02
+5 17303     -3.841200e+02 3.361200e+02
+11 17303     -4.233700e+02 1.149200e+02
+5 17304     -3.917300e+02 3.354900e+02
+11 17304     -4.292000e+02 1.145600e+02
+5 17305     1.660999e+01 3.338900e+02
+11 17305     -1.361800e+02 1.197300e+02
+5 17306     3.465900e+02 3.116800e+02
+11 17306     9.502002e+01 1.085700e+02
+13 17306     1.284500e+02 5.525200e+02
+14 17306     2.466400e+02 2.096700e+02
+5 17307     4.729500e+02 3.078500e+02
+11 17307     1.952100e+02 1.078400e+02
+13 17307     2.335100e+02 5.531800e+02
+14 17307     3.680200e+02 2.073800e+02
+5 17308     -2.404100e+02 2.994100e+02
+11 17308     -3.530600e+02 8.700000e+01
+13 17308     -3.671800e+02 5.179200e+02
+14 17308     -3.212500e+02 1.920900e+02
+5 17309     -1.045900e+02 2.919500e+02
+11 17309     -2.826100e+02 8.128000e+01
+5 17310     -2.143800e+02 2.755500e+02
+11 17310     -3.308100e+02 6.947000e+01
+5 17311     -2.461100e+02 2.649800e+02
+11 17311     -3.566300e+02 6.023999e+01
+13 17311     -3.690700e+02 4.870600e+02
+14 17311     -3.265600e+02 1.584800e+02
+5 17312     9.908002e+01 2.593600e+02
+11 17312     -1.172100e+02 5.957999e+01
+14 17312     9.239990e+00 1.543300e+02
+5 17313     5.944900e+02 2.442800e+02
+11 17313     3.020300e+02 6.101999e+01
+13 17313     3.349500e+02 5.032000e+02
+5 17314     -5.226000e+02 2.401500e+02
+11 17314     -5.183100e+02 4.151001e+01
+5 17315     -2.378400e+02 2.400800e+02
+11 17315     -3.488600e+02 4.051999e+01
+13 17315     -3.594500e+02 4.651100e+02
+14 17315     -3.176300e+02 1.337600e+02
+5 17316     -5.188700e+02 2.376600e+02
+11 17316     -5.161700e+02 3.866000e+01
+14 17316     -5.942500e+02 1.316900e+02
+5 17317     -5.188700e+02 2.376600e+02
+11 17317     -5.161700e+02 3.866000e+01
+5 17318     -3.480800e+02 1.893400e+02
+11 17318     -4.337200e+02 1.179993e+00
+13 17318     -4.505300e+02 4.164000e+02
+14 17318     -4.268800e+02 8.453000e+01
+5 17319     -1.283000e+02 1.781000e+02
+11 17319     -3.195200e+02 -9.619995e+00
+5 17320     5.850400e+02 1.741500e+02
+11 17320     2.886801e+02 3.419983e+00
+13 17320     3.277700e+02 4.430600e+02
+14 17320     4.793000e+02 8.128000e+01
+5 17321     5.457100e+02 1.735200e+02
+11 17321     2.538600e+02 1.679993e+00
+13 17321     2.957400e+02 4.410900e+02
+14 17321     4.411801e+02 8.001999e+01
+5 17322     5.679200e+02 1.240300e+02
+8 17322     -5.816998e+01 4.264200e+02
+5 17323     -1.662500e+02 1.107500e+02
+11 17323     -3.378800e+02 -3.090002e+01
+5 17324     2.947400e+02 9.371002e+01
+8 17324     -2.687600e+02 4.106600e+02
+5 17325     4.200601e+02 7.507001e+01
+6 17325     -5.099500e+02 8.118700e+02
+11 17325     1.461500e+02 -8.065997e+01
+14 17325     3.219100e+02 -1.678998e+01
+5 17326     4.166500e+02 4.640002e+01
+6 17326     -5.077500e+02 7.735100e+02
+11 17326     1.447700e+02 -1.036700e+02
+13 17326     1.934800e+02 3.304500e+02
+14 17326     3.194200e+02 -4.459998e+01
+5 17327     9.619995e+00 4.596002e+01
+11 17327     -2.182500e+02 -1.125200e+02
+13 17327     -1.414400e+02 3.118800e+02
+5 17328     9.619995e+00 4.596002e+01
+11 17328     -2.182500e+02 -1.125200e+02
+13 17328     -1.414400e+02 3.118800e+02
+5 17329     -1.956700e+02 4.420001e+01
+11 17329     -3.942100e+02 -1.156700e+02
+13 17329     -3.130700e+02 3.002400e+02
+14 17329     -2.800900e+02 -5.604999e+01
+5 17330     6.731000e+02 4.003998e+01
+6 17330     -2.146200e+02 7.982500e+02
+5 17331     4.436300e+02 2.785999e+01
+6 17331     -4.721600e+02 7.524500e+02
+11 17331     1.697500e+02 -1.187500e+02
+14 17331     3.462900e+02 -6.231000e+01
+5 17332     4.599200e+02 2.638000e+01
+8 17332     -1.324000e+02 3.461500e+02
+5 17333     6.192000e+02 2.278998e+01
+6 17333     -2.706200e+02 7.700100e+02
+14 17333     5.175400e+02 -6.379999e+01
+5 17334     4.573800e+02 1.683002e+01
+6 17334     -4.529700e+02 7.401500e+02
+14 17334     3.600000e+02 -7.225000e+01
+5 17335     4.091400e+02 1.226001e+01
+8 17335     -1.705400e+02 3.369000e+02
+11 17335     1.399200e+02 -1.316300e+02
+5 17336     3.278000e+02 8.030029e+00
+11 17336     6.682001e+01 -1.372300e+02
+5 17337     3.278000e+02 8.030029e+00
+11 17337     6.682001e+01 -1.372300e+02
+14 17337     2.336300e+02 -8.367999e+01
+5 17338     6.126001e+01 5.380005e+00
+8 17338     -4.597900e+02 3.368200e+02
+5 17339     3.065002e+01 4.070007e+00
+11 17339     -1.974400e+02 -1.455500e+02
+14 17339     -5.665002e+01 -9.246002e+01
+5 17340     5.589900e+02 3.659973e+00
+11 17340     2.771300e+02 -1.347600e+02
+5 17341     6.272100e+02 1.659973e+00
+6 17341     -2.587500e+02 7.445100e+02
+5 17342     6.484998e+01 -5.280029e+00
+11 17342     -1.667500e+02 -1.525000e+02
+5 17343     1.832600e+02 -5.989990e+00
+8 17343     -3.526200e+02 3.246200e+02
+5 17344     5.919200e+02 -8.299988e+00
+6 17344     -2.952900e+02 7.277300e+02
+8 17344     -3.015002e+01 3.167200e+02
+5 17345     1.804900e+02 -9.669983e+00
+11 17345     -6.475000e+01 -1.539700e+02
+13 17345     2.539978e+00 2.739100e+02
+14 17345     9.016998e+01 -1.029300e+02
+5 17346     5.845100e+02 -9.559998e+00
+6 17346     -3.047600e+02 7.243300e+02
+8 17346     -3.726001e+01 3.153700e+02
+9 17346     -2.774800e+02 4.220100e+02
+11 17346     2.997100e+02 -1.454600e+02
+5 17347     6.029301e+02 -9.780029e+00
+6 17347     -2.834100e+02 7.267300e+02
+9 17347     -2.621500e+02 4.214800e+02
+14 17347     5.031500e+02 -9.528998e+01
+5 17348     3.393199e+02 -1.062000e+01
+6 17348     -5.875900e+02 6.869500e+02
+8 17348     -2.239000e+02 3.184800e+02
+14 17348     2.457100e+02 -1.012300e+02
+5 17349     -4.695300e+02 -1.091998e+01
+11 17349     -4.882500e+02 -1.530000e+02
+13 17349     -5.328500e+02 2.383000e+02
+14 17349     -5.452100e+02 -1.134800e+02
+5 17350     5.642300e+02 -1.796997e+01
+8 17350     -4.975000e+01 3.089200e+02
+5 17351     1.775800e+02 -1.881000e+01
+8 17351     -3.564200e+02 3.129200e+02
+5 17352     1.775800e+02 -1.881000e+01
+8 17352     -3.564200e+02 3.129200e+02
+14 17352     8.746002e+01 -1.121800e+02
+5 17353     5.944000e+01 -2.253998e+01
+8 17353     -4.581200e+02 3.103600e+02
+5 17354     5.944000e+01 -2.253998e+01
+8 17354     -4.581200e+02 3.103600e+02
+5 17355     4.896801e+02 -2.695001e+01
+6 17355     -4.061400e+02 6.884400e+02
+11 17355     2.174300e+02 -1.617900e+02
+5 17356     6.371801e+02 -2.834003e+01
+6 17356     -2.428300e+02 7.084600e+02
+5 17357     4.791400e+02 -2.870001e+01
+6 17357     -4.178300e+02 6.847800e+02
+5 17358     3.516200e+02 -2.977002e+01
+8 17358     -2.121100e+02 3.021300e+02
+5 17359     1.588400e+02 -3.104999e+01
+11 17359     -8.247998e+01 -1.716500e+02
+14 17359     6.929999e+01 -1.248000e+02
+5 17360     4.892800e+02 -3.073999e+01
+6 17360     -4.065400e+02 6.838900e+02
+5 17361     4.988300e+02 -3.470001e+01
+6 17361     -3.948600e+02 6.808000e+02
+13 17361     2.622500e+02 2.671700e+02
+14 17361     4.018700e+02 -1.214300e+02
+5 17362     3.836899e+02 -3.809003e+01
+6 17362     -5.277900e+02 6.575800e+02
+14 17362     2.894900e+02 -1.273500e+02
+5 17363     2.277900e+02 -4.004999e+01
+11 17363     -2.039001e+01 -1.780900e+02
+14 17363     1.375300e+02 -1.319400e+02
+5 17364     3.221600e+02 -4.604999e+01
+12 17364     -4.196300e+02 6.171900e+02
+5 17365     1.269700e+02 -4.763000e+01
+8 17365     -3.971100e+02 2.870300e+02
+12 17365     -6.502600e+02 5.918100e+02
+13 17365     -3.919000e+01 2.397800e+02
+5 17366     3.715601e+02 -5.637000e+01
+6 17366     -5.380700e+02 6.326200e+02
+11 17366     1.105200e+02 -1.885200e+02
+5 17367     7.262000e+02 -5.635999e+01
+8 17367     6.876001e+01 2.739600e+02
+5 17368     5.799200e+02 -6.621997e+01
+11 17368     3.014000e+02 -1.916400e+02
+5 17369     3.768700e+02 -8.644000e+01
+8 17369     -1.873100e+02 2.524800e+02
+11 17369     1.173800e+02 -2.123600e+02
+12 17369     -3.481100e+02 5.767000e+02
+5 17370     1.153100e+02 -8.917999e+01
+8 17370     -4.027300e+02 2.489600e+02
+12 17370     -6.531300e+02 5.405000e+02
+13 17370     -4.644000e+01 2.051100e+02
+14 17370     2.809003e+01 -1.821700e+02
+5 17371     5.565900e+02 -9.759998e+01
+6 17371     -3.184000e+02 6.114200e+02
+8 17371     -4.925000e+01 2.420800e+02
+9 17371     -2.865200e+02 3.406800e+02
+12 17371     -1.489100e+02 5.835600e+02
+5 17372     5.554700e+02 -1.100300e+02
+8 17372     -4.927002e+01 2.321500e+02
+5 17373     6.283101e+02 -1.123400e+02
+12 17373     -7.137000e+01 5.737200e+02
+13 17373     3.677800e+02 2.089900e+02
+14 17373     5.314200e+02 -1.947700e+02
+5 17374     5.792500e+02 -1.138700e+02
+12 17374     -1.225900e+02 5.678100e+02
+5 17375     -5.143600e+02 -1.703600e+02
+11 17375     -5.255100e+02 -2.771500e+02
+5 17376     6.483000e+02 -1.729800e+02
+6 17376     -2.077500e+02 5.365600e+02
+11 17376     3.724600e+02 -2.769300e+02
+12 17376     -4.146002e+01 5.109400e+02
+5 17377     7.566100e+02 -1.728900e+02
+9 17377     -1.324300e+02 2.757600e+02
+12 17377     6.601001e+01 5.217300e+02
+5 17378     4.670900e+02 -1.815800e+02
+8 17378     -1.088900e+02 1.735000e+02
+5 17379     6.549500e+02 -1.816200e+02
+6 17379     -1.989000e+02 5.278700e+02
+8 17379     2.934998e+01 1.732200e+02
+5 17380     5.028900e+02 -1.928100e+02
+6 17380     -3.598700e+02 4.874300e+02
+7 17380     -1.243000e+02 5.350700e+02
+13 17380     2.697600e+02 1.395800e+02
+14 17380     4.113000e+02 -2.759600e+02
+5 17381     4.305200e+02 -1.939900e+02
+12 17381     -2.670700e+02 4.630700e+02
+5 17382     6.962000e+02 -1.974700e+02
+8 17382     5.914001e+01 1.599700e+02
+5 17383     -9.878998e+01 -2.014900e+02
+8 17383     -5.825900e+02 1.395100e+02
+5 17384     -1.472500e+02 -2.023900e+02
+11 17384     -3.419200e+02 -3.124800e+02
+5 17385     3.050500e+02 -2.144200e+02
+8 17385     -2.316600e+02 1.420300e+02
+5 17386     4.010000e+02 -2.297000e+02
+9 17386     -3.904800e+02 2.136300e+02
+5 17387     5.184003e+01 -2.313000e+02
+7 17387     -5.713700e+02 4.489300e+02
+13 17387     -8.985999e+01 8.673001e+01
+14 17387     -3.178003e+01 -3.235800e+02
+5 17388     -6.844000e+01 -2.390900e+02
+11 17388     -2.715900e+02 -3.422300e+02
+5 17389     -6.844000e+01 -2.390900e+02
+10 17389     -7.130600e+02 5.917800e+02
+11 17389     -2.715900e+02 -3.422300e+02
+5 17390     2.721899e+02 -2.418700e+02
+7 17390     -3.434600e+02 4.656300e+02
+13 17390     8.800000e+01 9.006000e+01
+14 17390     1.860601e+02 -3.295400e+02
+5 17391     -8.095001e+01 -2.421200e+02
+8 17391     -5.611500e+02 1.017100e+02
+5 17392     -8.390997e+01 -2.453000e+02
+8 17392     -5.621100e+02 9.898999e+01
+10 17392     -7.306300e+02 5.834500e+02
+5 17393     -1.158900e+02 -2.483900e+02
+10 17393     -7.713700e+02 5.759900e+02
+5 17394     -1.158900e+02 -2.483900e+02
+10 17394     -7.713700e+02 5.759900e+02
+5 17395     3.904600e+02 -2.582700e+02
+6 17395     -4.715300e+02 3.867700e+02
+7 17395     -2.241500e+02 4.626700e+02
+5 17396     3.904600e+02 -2.582700e+02
+6 17396     -4.715300e+02 3.867700e+02
+7 17396     -2.241500e+02 4.626700e+02
+14 17396     3.030000e+02 -3.434300e+02
+5 17397     8.876001e+01 -2.589600e+02
+7 17397     -5.265100e+02 4.269100e+02
+10 17397     -5.113800e+02 5.850500e+02
+5 17398     5.492999e+01 -2.841600e+02
+7 17398     -5.553000e+02 3.978500e+02
+12 17398     -6.710600e+02 3.033600e+02
+5 17399     -1.018100e+02 -2.959600e+02
+10 17399     -7.405900e+02 5.216800e+02
+13 17399     -2.103900e+02 2.646997e+01
+14 17399     -1.835000e+02 -3.910800e+02
+15 17399     -7.659600e+02 5.627100e+02
+5 17400     4.120900e+02 -3.016500e+02
+8 17400     -1.396000e+02 6.691000e+01
+14 17400     3.259399e+02 -3.863100e+02
+5 17401     2.362300e+02 -3.163400e+02
+7 17401     -3.658000e+02 3.908800e+02
+8 17401     -2.774800e+02 4.789999e+01
+14 17401     1.524301e+02 -4.041200e+02
+5 17402     2.362300e+02 -3.163400e+02
+7 17402     -3.658000e+02 3.908800e+02
+11 17402     4.830017e+00 -4.027900e+02
+14 17402     1.524301e+02 -4.041200e+02
+5 17403     -1.462700e+02 -3.253600e+02
+10 17403     -7.826100e+02 4.851600e+02
+5 17404     1.150100e+02 -3.427000e+02
+10 17404     -4.595200e+02 4.943600e+02
+5 17405     1.150100e+02 -3.427000e+02
+7 17405     -4.809900e+02 3.501500e+02
+10 17405     -4.595200e+02 4.943600e+02
+11 17405     -1.025200e+02 -4.258400e+02
+14 17405     3.315002e+01 -4.332100e+02
+15 17405     -4.449700e+02 5.387500e+02
+5 17406     5.451300e+02 -3.454100e+02
+6 17406     -2.761900e+02 3.202400e+02
+5 17407     -1.627100e+02 -3.628700e+02
+7 17407     -7.617900e+02 2.897000e+02
+15 17407     -8.222400e+02 4.690100e+02
+5 17408     -1.429500e+02 -3.783500e+02
+7 17408     -7.356600e+02 2.785500e+02
+10 17408     -7.608300e+02 4.271600e+02
+11 17408     -3.290900e+02 -4.553300e+02
+15 17408     -7.884000e+02 4.533200e+02
+5 17409     -1.085700e+02 -3.784800e+02
+7 17409     -6.999800e+02 2.836700e+02
+8 17409     -5.683500e+02 -2.985001e+01
+10 17409     -7.187700e+02 4.307700e+02
+13 17409     -2.101000e+02 -3.953998e+01
+14 17409     -1.892900e+02 -4.745601e+02
+15 17409     -7.409700e+02 4.586900e+02
+5 17410     -1.563600e+02 -3.847100e+02
+11 17410     -3.407900e+02 -4.607700e+02
+14 17410     -2.370900e+02 -4.821600e+02
+5 17411     6.029800e+02 -3.904500e+02
+6 17411     -2.003000e+02 2.841200e+02
+12 17411     -6.185999e+01 2.924100e+02
+5 17412     -1.035300e+02 -3.927400e+02
+8 17412     -5.615700e+02 -4.314999e+01
+10 17412     -7.080400e+02 4.158200e+02
+13 17412     -2.047800e+02 -5.021002e+01
+14 17412     -1.836300e+02 -4.886300e+02
+5 17413     5.860100e+02 -3.933100e+02
+6 17413     -2.175600e+02 2.768200e+02
+12 17413     -7.850000e+01 2.866300e+02
+5 17414     5.703101e+02 -4.000601e+02
+6 17414     -2.323700e+02 2.668600e+02
+5 17415     -2.590002e+01 -4.266600e+02
+7 17415     -6.035700e+02 2.519600e+02
+5 17416     -6.496002e+01 -4.504900e+02
+7 17416     -6.385100e+02 2.242000e+02
+10 17416     -6.492300e+02 3.592700e+02
+11 17416     -2.603000e+02 -5.149000e+02
+14 17416     -1.449100e+02 -5.460800e+02
+5 17417     6.357800e+02 -4.659700e+02
+6 17417     -9.482999e+01 2.227800e+02
+13 17417     3.682800e+02 -6.790002e+01
+5 17418     6.357800e+02 -4.659700e+02
+6 17418     -9.482999e+01 2.227800e+02
+7 17418     -7.992999e+01 2.969500e+02
+13 17418     3.682800e+02 -6.790002e+01
+14 17418     5.382700e+02 -5.463000e+02
+5 17419     4.447100e+02 -4.710500e+02
+9 17419     -2.857600e+02 5.123999e+01
+13 17419     2.297700e+02 -8.071002e+01
+14 17419     3.610200e+02 -5.549301e+02
+5 17420     4.058300e+02 -4.725400e+02
+7 17420     -2.084100e+02 2.696800e+02
+5 17421     4.313000e+02 -4.798400e+02
+9 17421     -2.946400e+02 4.339001e+01
+5 17422     6.007000e+02 -4.870800e+02
+6 17422     -1.240400e+02 1.934100e+02
+12 17422     -8.403003e+01 2.439400e+02
+5 17423     5.408600e+02 -5.098300e+02
+6 17423     -1.840300e+02 1.534200e+02
+5 17424     6.279301e+02 -5.105900e+02
+10 17424     -8.350000e+01 3.094300e+02
+12 17424     -5.529999e+01 2.284600e+02
+15 17424     -2.310999e+01 3.347700e+02
+5 17425     5.030400e+02 -5.115300e+02
+6 17425     -2.353900e+02 1.390500e+02
+5 17426     2.444301e+02 -5.118600e+02
+15 17426     -2.960700e+02 3.400700e+02
+5 17427     4.976300e+02 -5.197700e+02
+6 17427     -2.383600e+02 1.289900e+02
+12 17427     -1.766100e+02 1.765000e+02
+5 17428     4.976300e+02 -5.197700e+02
+6 17428     -2.383600e+02 1.289900e+02
+7 17428     -1.801100e+02 2.335800e+02
+12 17428     -1.766100e+02 1.765000e+02
+5 17429     4.938900e+02 -5.263199e+02
+6 17429     -2.395000e+02 1.212400e+02
+7 17429     -1.843700e+02 2.267600e+02
+12 17429     -1.797000e+02 1.694200e+02
+13 17429     2.629600e+02 -1.210000e+02
+5 17430     -2.183002e+01 -5.294600e+02
+7 17430     -5.971100e+02 1.575200e+02
+5 17431     4.942100e+02 -5.299000e+02
+6 17431     -2.382600e+02 1.178700e+02
+7 17431     -1.847000e+02 2.237100e+02
+12 17431     -1.796000e+02 1.661200e+02
+5 17432     5.761000e+02 -5.309800e+02
+6 17432     -1.367300e+02 1.416300e+02
+12 17432     -1.047200e+02 1.955100e+02
+13 17432     3.234200e+02 -1.203100e+02
+5 17433     6.473600e+02 -5.319000e+02
+6 17433     -6.195001e+01 1.588500e+02
+12 17433     -3.382001e+01 2.122800e+02
+5 17434     -6.340997e+01 -5.382300e+02
+8 17434     -5.008200e+02 -1.506700e+02
+13 17434     -1.650800e+02 -1.616500e+02
+5 17435     -7.698999e+01 -5.429600e+02
+10 17435     -6.712600e+02 2.548000e+02
+5 17436     4.878700e+02 -5.467900e+02
+6 17436     -2.388300e+02 9.859998e+01
+7 17436     -1.917900e+02 2.074400e+02
+12 17436     -1.844800e+02 1.485700e+02
+5 17437     5.534700e+02 -5.601400e+02
+6 17437     -1.533900e+02 1.050400e+02
+7 17437     -1.555000e+02 2.004700e+02
+9 17437     -9.140002e+01 1.536400e+02
+10 17437     -1.567900e+02 2.529000e+02
+12 17437     -1.240100e+02 1.598600e+02
+13 17437     3.063600e+02 -1.441100e+02
+15 17437     -1.077600e+02 2.670000e+02
+5 17438     6.942100e+02 -5.681600e+02
+7 17438     -4.263000e+01 2.105000e+02
+12 17438     1.654999e+01 1.879000e+02
+15 17438     3.325000e+01 2.666300e+02
+5 17439     -1.622100e+02 -5.810500e+02
+7 17439     -7.262200e+02 8.754001e+01
+5 17440     4.737800e+02 -5.829800e+02
+6 17440     -2.412000e+02 5.759003e+01
+7 17440     -2.081100e+02 1.726700e+02
+10 17440     -2.075400e+02 2.335900e+02
+12 17440     -1.964700e+02 1.111800e+02
+15 17440     -1.639500e+02 2.425800e+02
+5 17441     4.212300e+02 -5.835900e+02
+7 17441     -2.464700e+02 1.663700e+02
+10 17441     -2.469100e+02 2.327700e+02
+12 17441     -2.468900e+02 9.498999e+01
+15 17441     -2.081800e+02 2.408500e+02
+5 17442     6.302300e+02 -6.000000e+02
+9 17442     -1.446002e+01 1.543800e+02
+12 17442     -4.367999e+01 1.405200e+02
+5 17443     1.703800e+02 4.222800e+02
+11 17443     2.157001e+01 1.947200e+02
+14 17443     8.059003e+01 3.138900e+02
+5 17444     1.482200e+02 4.172100e+02
+11 17444     3.869995e+00 1.888600e+02
+14 17444     5.926001e+01 3.084400e+02
+5 17445     -2.049400e+02 4.098800e+02
+11 17445     -2.733500e+02 1.747200e+02
+5 17446     2.886300e+02 3.992600e+02
+11 17446     9.872998e+01 1.766500e+02
+14 17446     1.935400e+02 2.933100e+02
+5 17447     5.967999e+01 3.834800e+02
+11 17447     -9.190002e+01 1.589100e+02
+5 17448     -1.326900e+02 3.795700e+02
+11 17448     -2.516100e+02 1.517000e+02
+5 17449     -1.326900e+02 3.795700e+02
+11 17449     -2.516100e+02 1.517000e+02
+5 17450     3.941600e+02 3.792800e+02
+11 17450     1.577600e+02 1.634400e+02
+14 17450     2.931899e+02 2.749100e+02
+5 17451     5.706600e+02 3.794900e+02
+11 17451     2.883800e+02 1.680100e+02
+14 17451     4.610699e+02 2.778900e+02
+5 17452     4.322998e+01 3.741700e+02
+11 17452     -1.073300e+02 1.515300e+02
+5 17453     2.671997e+01 3.737900e+02
+11 17453     -1.206600e+02 1.506900e+02
+5 17454     -9.497998e+01 3.729800e+02
+11 17454     -2.206400e+02 1.477300e+02
+5 17455     1.501200e+02 3.724300e+02
+11 17455     -2.003003e+01 1.528100e+02
+14 17455     6.008002e+01 2.655600e+02
+5 17456     -9.903998e+01 3.716700e+02
+11 17456     -2.231900e+02 1.459000e+02
+14 17456     -1.812700e+02 2.627100e+02
+5 17457     -3.832001e+01 3.710300e+02
+11 17457     -1.743400e+02 1.471400e+02
+5 17458     -1.796800e+02 3.693800e+02
+11 17458     -2.916000e+02 1.430500e+02
+5 17459     -8.858002e+01 3.696700e+02
+11 17459     -2.152100e+02 1.444700e+02
+14 17459     -1.711200e+02 2.616200e+02
+5 17460     1.714500e+02 3.664800e+02
+11 17460     -3.289978e+00 1.487400e+02
+5 17461     1.016600e+02 3.646200e+02
+11 17461     -6.140002e+01 1.461300e+02
+5 17462     -1.671800e+02 3.640200e+02
+11 17462     -2.822900e+02 1.389300e+02
+5 17463     -6.598999e+01 3.624500e+02
+11 17463     -1.980400e+02 1.395800e+02
+5 17464     -2.025200e+02 3.617800e+02
+11 17464     -3.098900e+02 1.359900e+02
+5 17465     1.309003e+01 3.591300e+02
+11 17465     -1.349700e+02 1.395300e+02
+5 17466     1.534900e+02 3.590700e+02
+11 17466     -2.010999e+01 1.430700e+02
+14 17466     6.378998e+01 2.527000e+02
+5 17467     4.940100e+02 3.585000e+02
+11 17467     2.301600e+02 1.504200e+02
+14 17467     3.890000e+02 2.565700e+02
+5 17468     -3.621997e+01 3.569300e+02
+11 17468     -1.750700e+02 1.363200e+02
+5 17469     -1.903200e+02 3.565500e+02
+11 17469     -3.018400e+02 1.324400e+02
+5 17470     -5.309998e+01 3.562900e+02
+11 17470     -1.890800e+02 1.356100e+02
+5 17471     -1.989300e+02 3.562000e+02
+11 17471     -2.822500e+02 1.232000e+02
+5 17472     -1.498300e+02 3.511700e+02
+11 17472     -2.697800e+02 1.286200e+02
+5 17473     -1.856900e+02 3.498300e+02
+11 17473     -2.987800e+02 1.267500e+02
+5 17474     -3.946997e+01 3.496000e+02
+11 17474     -1.791500e+02 1.305500e+02
+5 17475     3.895601e+02 3.462100e+02
+11 17475     1.388900e+02 1.374400e+02
+13 17475     1.642400e+02 5.841700e+02
+14 17475     2.882100e+02 2.433900e+02
+5 17476     6.289978e+00 3.459200e+02
+11 17476     -1.423400e+02 1.285300e+02
+13 17476     -1.572000e+02 5.694600e+02
+14 17476     -7.913000e+01 2.387000e+02
+5 17477     -1.450012e+00 3.447900e+02
+11 17477     -1.489000e+02 1.274600e+02
+5 17478     -1.450012e+00 3.447900e+02
+11 17478     -1.489000e+02 1.274600e+02
+5 17479     5.722400e+02 3.427000e+02
+11 17479     2.926200e+02 1.393800e+02
+14 17479     4.637600e+02 2.426800e+02
+5 17480     -7.827002e+01 3.414300e+02
+11 17480     -2.117300e+02 1.230300e+02
+5 17481     -6.898999e+01 3.415900e+02
+11 17481     -2.042900e+02 1.235500e+02
+5 17482     2.734003e+01 3.414800e+02
+11 17482     -1.261000e+02 1.254400e+02
+5 17483     3.742999e+01 3.402300e+02
+11 17483     -1.184200e+02 1.251300e+02
+5 17484     1.292999e+01 3.386500e+02
+11 17484     -1.384600e+02 1.235300e+02
+5 17485     4.541400e+02 3.367900e+02
+11 17485     1.941100e+02 1.313300e+02
+13 17485     2.185000e+02 5.780800e+02
+14 17485     3.506200e+02 2.353000e+02
+5 17486     -1.397900e+02 3.366700e+02
+11 17486     -2.950900e+02 1.169300e+02
+5 17487     -5.564001e+01 3.350900e+02
+11 17487     -1.950200e+02 1.190100e+02
+5 17488     5.891998e+01 3.350600e+02
+11 17488     -1.014500e+02 1.212900e+02
+5 17489     3.688000e+02 3.349100e+02
+11 17489     1.193500e+02 1.272300e+02
+14 17489     2.683800e+02 2.321700e+02
+5 17490     2.542999e+01 3.332200e+02
+11 17490     -1.298500e+02 1.196800e+02
+5 17491     2.103003e+01 3.279100e+02
+11 17491     -1.340700e+02 1.151900e+02
+5 17492     -2.086200e+02 3.102100e+02
+11 17492     -3.248400e+02 9.567999e+01
+5 17493     3.417400e+02 3.055800e+02
+11 17493     9.026001e+01 1.031300e+02
+5 17494     -2.466800e+02 2.952600e+02
+11 17494     -3.597000e+02 8.329999e+01
+5 17495     -5.982001e+01 2.941600e+02
+11 17495     -2.455000e+02 8.404999e+01
+5 17496     3.574500e+02 2.914000e+02
+11 17496     1.016100e+02 9.189001e+01
+13 17496     1.381500e+02 5.348300e+02
+5 17497     -2.092400e+02 2.907800e+02
+11 17497     -3.269100e+02 8.110999e+01
+5 17498     -2.008700e+02 2.877700e+02
+11 17498     -3.209800e+02 7.951001e+01
+13 17498     -3.317400e+02 5.101700e+02
+14 17498     -2.820000e+02 1.818000e+02
+5 17499     -2.362500e+02 2.809100e+02
+11 17499     -3.496100e+02 7.335999e+01
+13 17499     -3.615700e+02 5.021600e+02
+14 17499     -3.163800e+02 1.747400e+02
+5 17500     -9.948999e+01 2.734000e+02
+11 17500     -2.814000e+02 6.748001e+01
+13 17500     -2.448900e+02 5.013900e+02
+5 17501     5.925300e+02 2.697600e+02
+11 17501     3.033500e+02 8.160999e+01
+13 17501     3.329700e+02 5.248000e+02
+14 17501     4.840400e+02 1.734200e+02
+5 17502     3.771801e+02 2.557100e+02
+11 17502     1.130900e+02 6.504001e+01
+5 17503     -3.027100e+02 2.523000e+02
+11 17503     -3.877900e+02 5.014001e+01
+14 17503     -3.804600e+02 1.460500e+02
+5 17504     -3.047600e+02 2.473900e+02
+11 17504     -3.903000e+02 4.641000e+01
+14 17504     -3.832400e+02 1.409800e+02
+5 17505     -3.047600e+02 2.473900e+02
+11 17505     -3.903000e+02 4.641000e+01
+13 17505     -4.173100e+02 4.687700e+02
+14 17505     -3.832400e+02 1.409800e+02
+5 17506     7.334998e+01 2.416900e+02
+11 17506     -1.423800e+02 4.656000e+01
+5 17507     3.949100e+02 2.148900e+02
+11 17507     1.263400e+02 3.216000e+01
+5 17508     -1.712300e+02 2.077500e+02
+11 17508     -3.449500e+02 1.484003e+01
+5 17509     4.808800e+02 2.037100e+02
+11 17509     1.957200e+02 2.570999e+01
+13 17509     2.419000e+02 4.648400e+02
+14 17509     3.775900e+02 1.082600e+02
+5 17510     -3.339700e+02 2.007500e+02
+11 17510     -4.203700e+02 1.015002e+01
+13 17510     -4.392700e+02 4.270100e+02
+5 17511     -3.433100e+02 2.000600e+02
+11 17511     -4.277700e+02 9.190002e+00
+13 17511     -4.479300e+02 4.260900e+02
+14 17511     -4.226400e+02 9.507999e+01
+5 17512     -3.687700e+02 1.775100e+02
+11 17512     -4.513300e+02 -9.150024e+00
+13 17512     -4.670500e+02 4.050100e+02
+14 17512     -4.472500e+02 7.275000e+01
+5 17513     7.012600e+02 1.760100e+02
+11 17513     3.930300e+02 8.309998e+00
+13 17513     4.221400e+02 4.484600e+02
+14 17513     5.908500e+02 8.528000e+01
+5 17514     1.493100e+02 1.538400e+02
+11 17514     -9.063000e+01 -2.329999e+01
+5 17515     5.711200e+02 9.479999e+01
+6 17515     -3.372200e+02 8.566200e+02
+5 17516     5.623199e+02 9.312000e+01
+8 17516     -6.066998e+01 4.009700e+02
+5 17517     6.095601e+02 9.037000e+01
+11 17517     3.176000e+02 -6.328998e+01
+13 17517     3.499000e+02 3.738700e+02
+14 17517     5.063600e+02 1.039978e+00
+5 17518     5.685999e+01 8.221002e+01
+8 17518     -4.714900e+02 4.104800e+02
+5 17519     6.058500e+02 7.262000e+01
+6 17519     -2.939900e+02 8.316000e+02
+8 17519     -2.701001e+01 3.824000e+02
+5 17520     1.377200e+02 7.007001e+01
+11 17520     -1.070700e+02 -9.101001e+01
+13 17520     -3.676001e+01 3.373300e+02
+14 17520     4.689001e+01 -2.695001e+01
+5 17521     -5.167999e+01 6.956000e+01
+11 17521     -2.749700e+02 -9.470001e+01
+13 17521     -1.945800e+02 3.285600e+02
+14 17521     -1.391800e+02 -2.941998e+01
+5 17522     -3.039001e+01 6.948999e+01
+11 17522     -2.551100e+02 -9.467999e+01
+13 17522     -1.766900e+02 3.290800e+02
+14 17522     -1.181800e+02 -2.996002e+01
+5 17523     6.316400e+02 5.848999e+01
+8 17523     -6.770020e+00 3.695900e+02
+5 17524     5.086000e+02 5.640002e+01
+6 17524     -4.020700e+02 7.986500e+02
+5 17525     -1.713400e+02 4.941998e+01
+11 17525     -3.737500e+02 -1.117600e+02
+13 17525     -2.929600e+02 3.058000e+02
+14 17525     -2.558100e+02 -5.046997e+01
+5 17526     4.389800e+02 4.842999e+01
+6 17526     -4.809300e+02 7.791700e+02
+5 17527     7.513300e+02 3.751001e+01
+6 17527     -1.311600e+02 8.049800e+02
+8 17527     7.950000e+01 3.492700e+02
+5 17528     2.975200e+02 2.487000e+01
+8 17528     -2.607700e+02 3.498700e+02
+5 17529     2.975200e+02 2.487000e+01
+8 17529     -2.607700e+02 3.498700e+02
+11 17529     3.817999e+01 -1.236600e+02
+14 17529     2.035400e+02 -6.729999e+01
+5 17530     7.374500e+02 2.403998e+01
+6 17530     -1.443700e+02 7.863500e+02
+13 17530     4.566200e+02 3.247400e+02
+5 17531     3.458101e+02 1.828998e+01
+8 17531     -2.212600e+02 3.441300e+02
+14 17531     2.515000e+02 -7.191998e+01
+5 17532     1.790600e+02 1.538000e+01
+8 17532     -3.584200e+02 3.439500e+02
+5 17533     4.624200e+02 6.109985e+00
+8 17533     -1.285200e+02 3.309200e+02
+5 17534     8.199800e+02 -1.799988e+00
+6 17534     -5.510999e+01 7.648000e+02
+8 17534     1.284800e+02 3.159000e+02
+13 17534     5.177400e+02 3.054200e+02
+14 17534     7.121500e+02 -8.367999e+01
+5 17535     7.568400e+02 -3.553003e+01
+6 17535     -1.149800e+02 7.165200e+02
+9 17535     -1.473600e+02 3.953600e+02
+13 17535     4.691700e+02 2.757600e+02
+14 17535     6.536100e+02 -1.179000e+02
+5 17536     4.698400e+02 -4.058002e+01
+11 17536     1.992600e+02 -1.730000e+02
+5 17537     -4.640997e+01 -4.512000e+01
+8 17537     -5.523200e+02 2.892400e+02
+11 17537     -2.621800e+02 -1.859800e+02
+5 17538     4.568101e+02 -5.197998e+01
+8 17538     -1.282700e+02 2.810300e+02
+14 17538     3.613400e+02 -1.393800e+02
+5 17539     8.006500e+02 -5.722998e+01
+6 17539     -6.785999e+01 6.964000e+02
+8 17539     1.192100e+02 2.727100e+02
+5 17540     -5.537000e+01 -5.819000e+01
+8 17540     -5.591400e+02 2.768600e+02
+13 17540     -1.885700e+02 2.219600e+02
+14 17540     -1.404200e+02 -1.545600e+02
+5 17541     -5.537000e+01 -5.819000e+01
+8 17541     -5.591400e+02 2.768600e+02
+13 17541     -1.885700e+02 2.219600e+02
+14 17541     -1.404200e+02 -1.545600e+02
+5 17542     5.601500e+02 -6.612000e+01
+6 17542     -3.203100e+02 6.506200e+02
+5 17543     6.302500e+02 -9.139001e+01
+12 17543     -7.258002e+01 5.983400e+02
+5 17544     7.039800e+02 -1.055400e+02
+11 17544     4.186899e+02 -2.204700e+02
+12 17544     6.349976e+00 5.890200e+02
+5 17545     1.956200e+02 -1.180700e+02
+8 17545     -3.316500e+02 2.236300e+02
+12 17545     -5.494600e+02 5.167800e+02
+5 17546     5.473500e+02 -1.289000e+02
+6 17546     -3.219400e+02 5.724200e+02
+5 17547     4.093300e+02 -1.312300e+02
+8 17547     -1.569900e+02 2.140200e+02
+9 17547     -3.993700e+02 3.077600e+02
+5 17548     9.603998e+01 -1.373800e+02
+12 17548     -6.634700e+02 4.802000e+02
+5 17549     9.603998e+01 -1.373800e+02
+8 17549     -4.148800e+02 2.049000e+02
+12 17549     -6.634700e+02 4.802000e+02
+5 17550     9.603998e+01 -1.373800e+02
+8 17550     -4.148800e+02 2.049000e+02
+12 17550     -6.634700e+02 4.802000e+02
+5 17551     3.055800e+02 -1.660700e+02
+11 17551     5.771997e+01 -2.790200e+02
+5 17552     6.432300e+02 -1.908300e+02
+7 17552     8.900024e+00 5.485000e+02
+5 17553     4.364001e+01 -2.277800e+02
+11 17553     -1.733900e+02 -3.320100e+02
+13 17553     -9.678998e+01 8.926999e+01
+5 17554     4.364001e+01 -2.277800e+02
+7 17554     -5.809900e+02 4.511900e+02
+11 17554     -1.733900e+02 -3.320100e+02
+12 17554     -7.009700e+02 3.666100e+02
+5 17555     -9.140015e+00 -2.602800e+02
+8 17555     -4.927300e+02 8.781000e+01
+5 17556     -6.646997e+01 -2.713300e+02
+8 17556     -5.433700e+02 7.462000e+01
+10 17556     -7.009700e+02 5.545500e+02
+11 17556     -2.684500e+02 -3.682400e+02
+12 17556     -8.222500e+02 2.949700e+02
+5 17557     4.260699e+02 -2.908600e+02
+8 17557     -1.291500e+02 7.738000e+01
+5 17558     2.044600e+02 -3.002700e+02
+8 17558     -3.054800e+02 6.085999e+01
+10 17558     -3.621400e+02 5.503100e+02
+5 17559     -5.010010e+00 -3.112500e+02
+7 17559     -6.103300e+02 3.635100e+02
+8 17559     -4.833100e+02 4.064001e+01
+11 17559     -2.117100e+02 -4.000200e+02
+14 17559     -8.634003e+01 -4.038800e+02
+5 17560     -1.119300e+02 -3.198000e+02
+8 17560     -5.789800e+02 2.603000e+01
+11 17560     -3.049400e+02 -4.073200e+02
+13 17560     -2.166700e+02 7.150024e+00
+5 17561     5.304999e+01 -3.341600e+02
+12 17561     -6.592000e+02 2.461300e+02
+5 17562     4.929999e+01 -3.511900e+02
+7 17562     -5.451700e+02 3.337300e+02
+10 17562     -5.363200e+02 4.785400e+02
+13 17562     -8.553998e+01 -8.320007e+00
+14 17562     -3.234998e+01 -4.426400e+02
+5 17563     2.428003e+01 -3.633100e+02
+15 17563     -5.633500e+02 4.999000e+02
+5 17564     -1.021800e+02 -3.669800e+02
+8 17564     -5.639600e+02 -1.787000e+01
+13 17564     -2.054600e+02 -2.965002e+01
+14 17564     -1.825500e+02 -4.622000e+02
+15 17564     -7.363800e+02 4.741800e+02
+5 17565     6.170900e+02 -3.872000e+02
+6 17565     -1.865300e+02 2.909600e+02
+10 17565     8.139001e+01 4.857800e+02
+11 17565     3.163600e+02 -4.624900e+02
+12 17565     -4.803998e+01 2.982100e+02
+13 17565     3.621200e+02 -7.880005e+00
+15 17565     1.851500e+02 5.401800e+02
+5 17566     5.948800e+02 -4.054500e+02
+6 17566     -2.042400e+02 2.660300e+02
+7 17566     -3.923999e+01 3.500500e+02
+11 17566     2.927600e+02 -4.789100e+02
+15 17566     1.528101e+02 5.131600e+02
+5 17567     -9.634998e+01 -4.144200e+02
+7 17567     -6.771400e+02 2.521000e+02
+8 17567     -5.519000e+02 -6.253998e+01
+10 17567     -6.928100e+02 3.935700e+02
+5 17568     -1.075200e+02 -4.344200e+02
+7 17568     -6.828500e+02 2.323700e+02
+11 17568     -2.951200e+02 -5.014700e+02
+13 17568     -2.049000e+02 -8.307001e+01
+14 17568     -1.870000e+02 -5.305699e+02
+5 17569     -8.325000e+01 -4.415100e+02
+10 17569     -6.697700e+02 3.677700e+02
+14 17569     -1.626700e+02 -5.370200e+02
+5 17570     3.655500e+02 -4.756400e+02
+8 17570     -1.448300e+02 -4.503000e+01
+5 17571     -3.803998e+01 -5.015400e+02
+7 17571     -6.120800e+02 1.809300e+02
+5 17572     -2.410700e+02 -5.091200e+02
+7 17572     -8.054600e+02 1.405400e+02
+13 17572     -3.083100e+02 -1.505100e+02
+5 17573     6.567700e+02 -5.168000e+02
+10 17573     -5.815002e+01 3.045700e+02
+13 17573     3.835699e+02 -1.052100e+02
+5 17574     3.916500e+02 -5.254301e+02
+8 17574     -1.145300e+02 -7.265002e+01
+5 17575     6.077300e+02 -5.257900e+02
+8 17575     9.664001e+01 6.126001e+01
+5 17576     4.419900e+02 -5.282000e+02
+7 17576     -2.225400e+02 2.200200e+02
+10 17576     -2.088800e+02 2.971200e+02
+12 17576     -2.297600e+02 1.535000e+02
+15 17576     -1.633500e+02 3.160300e+02
+5 17577     3.588700e+02 -5.309900e+02
+8 17577     -1.393400e+02 -8.022998e+01
+9 17577     -3.372700e+02 -5.700073e-01
+13 17577     1.646500e+02 -1.310200e+02
+5 17578     -1.848300e+02 -5.421300e+02
+7 17578     -7.485100e+02 1.189100e+02
+13 17578     -2.606400e+02 -1.729400e+02
+5 17579     -6.634003e+01 -5.426899e+02
+7 17579     -6.373000e+02 1.385500e+02
+10 17579     -6.597800e+02 2.567000e+02
+5 17580     -1.868800e+02 -5.463600e+02
+7 17580     -7.506900e+02 1.153200e+02
+5 17581     3.433500e+02 -5.576600e+02
+6 17581     -4.267000e+02 3.900000e+01
+13 17581     1.529301e+02 -1.523700e+02
+5 17582     3.589800e+02 -5.796200e+02
+6 17582     -4.015800e+02 1.997998e+01
+5 17583     -4.690002e+01 -5.888500e+02
+7 17583     -6.184000e+02 9.964001e+01
+10 17583     -6.433600e+02 2.085500e+02
+5 17584     4.151801e+02 -6.018199e+02
+6 17584     -3.015500e+02 2.109003e+01
+5 17585     1.897400e+02 -6.040500e+02
+7 17585     -4.036100e+02 1.236800e+02
+5 17586     6.356100e+02 -6.046801e+02
+8 17586     1.330800e+02 1.676999e+01
+12 17586     -3.631000e+01 1.375400e+02
+5 17587     2.213101e+02 -6.142500e+02
+7 17587     -3.782300e+02 1.170300e+02
+10 17587     -3.701600e+02 2.075800e+02
+13 17587     6.031000e+01 -2.029000e+02
+15 17587     -3.472000e+02 2.065000e+02
+5 17588     4.667400e+02 -6.147100e+02
+6 17588     -2.378200e+02 2.347998e+01
+7 17588     -2.167900e+02 1.432200e+02
+5 17589     4.624600e+02 -6.159301e+02
+6 17589     -2.418500e+02 2.157001e+01
+12 17589     -2.046200e+02 7.765997e+01
+5 17590     5.547900e+02 4.087400e+02
+11 17590     2.751000e+02 1.901100e+02
+5 17591     5.598101e+02 4.054900e+02
+11 17591     2.791801e+02 1.883400e+02
+5 17592     4.465000e+02 3.398100e+02
+11 17592     1.877800e+02 1.336300e+02
+13 17592     2.122800e+02 5.801800e+02
+14 17592     3.433300e+02 2.378400e+02
+5 17593     4.145100e+02 3.244200e+02
+11 17593     1.567800e+02 1.209800e+02
+13 17593     1.854100e+02 5.657900e+02
+14 17593     3.124600e+02 2.225200e+02
+5 17594     -1.865997e+01 2.748800e+02
+11 17594     -2.148300e+02 6.885999e+01
+5 17595     -2.681800e+02 2.658100e+02
+11 17595     -3.697400e+02 6.139999e+01
+13 17595     -3.876700e+02 4.871000e+02
+14 17595     -3.476300e+02 1.595100e+02
+5 17596     4.913600e+02 2.538900e+02
+11 17596     2.130300e+02 6.541000e+01
+13 17596     2.504800e+02 5.075600e+02
+14 17596     3.876400e+02 1.563200e+02
+5 17597     -2.376500e+02 2.512200e+02
+11 17597     -3.493400e+02 4.951001e+01
+5 17598     -2.376500e+02 2.512200e+02
+11 17598     -3.493400e+02 4.951001e+01
+13 17598     -3.598700e+02 4.738900e+02
+14 17598     -3.172500e+02 1.434000e+02
+5 17599     -2.326700e+02 2.476900e+02
+11 17599     -3.455900e+02 4.698001e+01
+5 17600     -2.898700e+02 2.454200e+02
+11 17600     -3.788700e+02 4.529001e+01
+13 17600     -4.040400e+02 4.680900e+02
+14 17600     -3.679300e+02 1.391800e+02
+5 17601     -3.002500e+02 2.386800e+02
+11 17601     -3.882500e+02 4.001001e+01
+5 17602     -3.366600e+02 2.160900e+02
+11 17602     -4.198200e+02 2.194000e+01
+13 17602     -4.431700e+02 4.408000e+02
+14 17602     -4.160200e+02 1.119100e+02
+5 17603     -3.318100e+02 2.068100e+02
+11 17603     -4.179600e+02 1.521997e+01
+5 17604     -3.467100e+02 1.964400e+02
+11 17604     -4.310800e+02 6.869995e+00
+13 17604     -4.503900e+02 4.228800e+02
+14 17604     -4.256400e+02 9.110001e+01
+5 17605     -3.518400e+02 1.866800e+02
+11 17605     -4.364100e+02 -1.630005e+00
+13 17605     -4.538000e+02 4.139500e+02
+14 17605     -4.309900e+02 8.195001e+01
+5 17606     -3.518400e+02 1.866800e+02
+11 17606     -4.364100e+02 -1.630005e+00
+13 17606     -4.538000e+02 4.139500e+02
+14 17606     -4.309900e+02 8.195001e+01
+5 17607     -3.294300e+02 1.813100e+02
+11 17607     -4.200600e+02 -5.500000e+00
+5 17608     6.618700e+02 1.522900e+02
+8 17608     8.440002e+00 4.450000e+02
+14 17608     5.538500e+02 6.145001e+01
+5 17609     -1.347600e+02 1.339000e+02
+11 17609     -3.356300e+02 -6.323999e+01
+5 17610     6.358101e+02 1.079100e+02
+8 17610     -7.309998e+00 4.105000e+02
+5 17611     4.231899e+02 1.031300e+02
+6 17611     -5.127400e+02 8.501800e+02
+5 17612     2.464301e+02 8.509003e+01
+11 17612     -1.133002e+01 -7.640002e+01
+13 17612     5.223999e+01 3.549600e+02
+14 17612     1.523101e+02 -1.042999e+01
+5 17613     8.232700e+02 7.491998e+01
+8 17613     1.250000e+02 3.760900e+02
+11 17613     5.105699e+02 -7.009003e+01
+14 17613     7.119399e+02 -8.580017e+00
+5 17614     7.392400e+02 7.335999e+01
+6 17614     -1.489300e+02 8.481300e+02
+11 17614     4.359700e+02 -7.221997e+01
+5 17615     6.489399e+02 6.440997e+01
+8 17615     5.429993e+00 3.737000e+02
+5 17616     4.920601e+02 6.102002e+01
+8 17616     -1.102900e+02 3.766000e+02
+5 17617     5.014600e+02 5.566998e+01
+6 17617     -4.104200e+02 7.968300e+02
+8 17617     -1.031400e+02 3.719100e+02
+5 17618     -2.053200e+02 4.903998e+01
+11 17618     -4.047800e+02 -1.128600e+02
+13 17618     -3.217800e+02 3.037100e+02
+14 17618     -2.900400e+02 -5.152002e+01
+5 17619     1.749300e+02 4.121997e+01
+8 17619     -3.648200e+02 3.677300e+02
+5 17620     -2.528300e+02 3.583002e+01
+11 17620     -4.188400e+02 -1.216500e+02
+13 17620     -3.589700e+02 2.895700e+02
+14 17620     -3.352500e+02 -6.540002e+01
+5 17621     8.230000e+02 1.281000e+01
+6 17621     -5.425000e+01 7.832600e+02
+8 17621     1.296400e+02 3.274700e+02
+9 17621     -1.074300e+02 4.365400e+02
+11 17621     5.152500e+02 -1.205100e+02
+13 17621     5.202100e+02 3.179500e+02
+14 17621     7.144700e+02 -6.923999e+01
+5 17622     5.950601e+02 -6.549988e+00
+6 17622     -2.918200e+02 7.299800e+02
+9 17622     -2.669700e+02 4.245000e+02
+5 17623     6.077000e+02 -1.116998e+01
+6 17623     -2.776000e+02 7.265100e+02
+8 17623     -1.877002e+01 3.139100e+02
+9 17623     -2.579000e+02 4.201000e+02
+5 17624     2.259100e+02 -1.160999e+01
+8 17624     -3.163800e+02 3.191500e+02
+5 17625     -1.009003e+01 -3.900000e+01
+8 17625     -5.197800e+02 2.946500e+02
+13 17625     -1.521200e+02 2.402500e+02
+14 17625     -9.594000e+01 -1.343200e+02
+5 17626     3.754700e+02 -5.189001e+01
+8 17626     -1.915000e+02 2.824300e+02
+5 17627     4.746899e+02 -5.681000e+01
+6 17627     -4.179800e+02 6.486600e+02
+5 17628     4.942700e+02 -1.220700e+02
+11 17628     2.269800e+02 -2.395300e+02
+5 17629     3.125601e+02 -1.602700e+02
+7 17629     -3.178300e+02 5.490000e+02
+5 17630     7.586200e+02 -1.607200e+02
+6 17630     -9.604001e+01 5.690800e+02
+8 17630     9.917999e+01 1.905000e+02
+9 17630     -1.323700e+02 2.870100e+02
+12 17630     6.660999e+01 5.345600e+02
+5 17631     5.335900e+02 -1.710600e+02
+12 17631     -1.611000e+02 5.014200e+02
+5 17632     4.405400e+02 -1.834500e+02
+12 17632     -2.585800e+02 4.757900e+02
+5 17633     3.972400e+02 -2.063600e+02
+7 17633     -2.252500e+02 5.121600e+02
+5 17634     -1.135100e+02 -2.427100e+02
+7 17634     -7.458400e+02 4.141900e+02
+8 17634     -5.890900e+02 9.981000e+01
+5 17635     3.228998e+01 -2.621800e+02
+10 17635     -5.804800e+02 5.754700e+02
+11 17635     -1.811000e+02 -3.600200e+02
+13 17635     -1.036100e+02 6.141998e+01
+14 17635     -5.072998e+01 -3.545600e+02
+5 17636     -1.676001e+01 -2.690600e+02
+8 17636     -4.992300e+02 7.904001e+01
+12 17636     -7.614200e+02 3.059600e+02
+5 17637     -3.865500e+02 -2.722000e+02
+11 17637     -4.580000e+02 -3.611100e+02
+14 17637     -4.643200e+02 -3.727500e+02
+5 17638     -1.570000e+02 -2.785000e+02
+7 17638     -7.815000e+02 3.721900e+02
+10 17638     -8.144100e+02 5.366600e+02
+14 17638     -2.390800e+02 -3.748100e+02
+15 17638     -8.478100e+02 5.766100e+02
+5 17639     -1.368100e+02 -2.792100e+02
+15 17639     -8.184000e+02 5.796600e+02
+5 17640     4.735601e+02 -2.827000e+02
+7 17640     -1.407900e+02 4.484000e+02
+10 17640     -4.770001e+01 5.948800e+02
+11 17640     2.201800e+02 -3.715900e+02
+13 17640     2.489399e+02 6.694000e+01
+14 17640     3.856200e+02 -3.656300e+02
+5 17641     -1.432900e+02 -2.894000e+02
+11 17641     -3.339900e+02 -3.826800e+02
+13 17641     -2.440500e+02 2.959003e+01
+14 17641     -2.241100e+02 -3.853000e+02
+15 17641     -8.235300e+02 5.651900e+02
+5 17642     3.000900e+02 -3.057300e+02
+6 17642     -5.638200e+02 3.104000e+02
+8 17642     -2.273200e+02 6.060999e+01
+14 17642     2.160000e+02 -3.916600e+02
+5 17643     5.941200e+02 -3.095800e+02
+6 17643     -2.335600e+02 3.706800e+02
+11 17643     3.150900e+02 -3.940900e+02
+13 17643     3.424700e+02 5.153003e+01
+5 17644     5.729100e+02 -3.163500e+02
+6 17644     -2.544700e+02 3.578600e+02
+5 17645     1.045001e+01 -3.335700e+02
+7 17645     -5.888600e+02 3.444700e+02
+11 17645     -1.966700e+02 -4.183800e+02
+12 17645     -7.099100e+02 2.381900e+02
+15 17645     -5.919200e+02 5.345200e+02
+5 17646     9.996997e+01 -3.364700e+02
+7 17646     -4.974300e+02 3.544700e+02
+10 17646     -4.787800e+02 5.004500e+02
+13 17646     -4.528998e+01 5.979980e+00
+14 17646     1.819000e+01 -4.271300e+02
+15 17646     -4.676700e+02 5.451600e+02
+5 17647     5.058199e+02 -3.719200e+02
+6 17647     -3.098800e+02 2.824400e+02
+11 17647     2.259500e+02 -4.499600e+02
+12 17647     -1.613200e+02 2.929400e+02
+5 17648     -1.971800e+02 -3.787600e+02
+7 17648     -7.877900e+02 2.698700e+02
+13 17648     -2.814200e+02 -4.560999e+01
+14 17648     -2.779000e+02 -4.773500e+02
+5 17649     5.415601e+02 -4.105100e+02
+6 17649     -2.594500e+02 2.488000e+02
+7 17649     -8.559998e+01 3.404900e+02
+11 17649     2.470601e+02 -4.837400e+02
+13 17649     3.036000e+02 -2.909998e+01
+14 17649     4.549000e+02 -4.913000e+02
+5 17650     -3.447998e+01 -4.233400e+02
+7 17650     -6.119500e+02 2.535200e+02
+8 17650     -4.954800e+02 -6.713000e+01
+5 17651     4.367000e+02 -4.741600e+02
+6 17651     -3.517600e+02 1.542300e+02
+9 17651     -2.909100e+02 4.842999e+01
+13 17651     2.243000e+02 -8.334003e+01
+14 17651     3.534301e+02 -5.579800e+02
+5 17652     4.151400e+02 -4.783000e+02
+7 17652     -2.000800e+02 2.650600e+02
+10 17652     -1.479700e+02 3.697400e+02
+5 17653     4.069301e+02 -4.941500e+02
+8 17653     -1.104900e+02 -5.173001e+01
+10 17653     -1.594800e+02 3.524600e+02
+14 17653     3.232300e+02 -5.790900e+02
+5 17654     5.378800e+02 -5.257100e+02
+7 17654     -1.660500e+02 2.290600e+02
+13 17654     2.937400e+02 -1.195600e+02
+5 17655     3.131200e+02 -5.284000e+02
+7 17655     -2.925700e+02 2.077900e+02
+5 17656     5.260200e+02 -5.301000e+02
+6 17656     -1.935200e+02 1.284400e+02
+13 17656     2.857000e+02 -1.225200e+02
+5 17657     4.279600e+02 -5.344900e+02
+7 17657     -2.363100e+02 2.121600e+02
+5 17658     2.908500e+02 -5.507300e+02
+7 17658     -3.131100e+02 1.852200e+02
+5 17659     6.443800e+02 -5.530601e+02
+6 17659     -5.983002e+01 1.371600e+02
+7 17659     -8.323999e+01 2.189300e+02
+8 17659     1.314600e+02 5.276999e+01
+10 17659     -7.773999e+01 2.648900e+02
+13 17659     3.737800e+02 -1.329400e+02
+5 17660     5.267500e+02 -5.658600e+02
+6 17660     -1.814500e+02 9.212000e+01
+7 17660     -1.753600e+02 1.926100e+02
+12 17660     -1.489900e+02 1.469900e+02
+13 17660     2.863900e+02 -1.496700e+02
+15 17660     -1.314900e+02 2.599000e+02
+5 17661     2.576100e+02 -5.694301e+02
+9 17661     -4.107900e+02 -4.495001e+01
+10 17661     -3.263400e+02 2.583100e+02
+5 17662     5.195000e+02 -5.798101e+02
+6 17662     -1.865900e+02 7.550000e+01
+7 17662     -1.808400e+02 1.796300e+02
+9 17662     -1.175000e+02 1.266500e+02
+13 17662     2.809301e+02 -1.603900e+02
+15 17662     -1.400400e+02 2.418000e+02
+5 17663     5.059399e+02 -5.836200e+02
+6 17663     -2.009900e+02 6.770001e+01
+8 17663     2.003003e+01 -8.079987e+00
+13 17663     2.712900e+02 -1.636900e+02
+5 17664     2.299301e+02 -6.076899e+02
+10 17664     -3.614000e+02 2.157600e+02
+15 17664     -3.336000e+02 2.175300e+02
+5 17665     3.812200e+02 -6.084100e+02
+12 17665     -2.885100e+02 6.259003e+01
+5 17666     6.515002e+01 4.252600e+02
+11 17666     -5.507001e+01 1.928900e+02
+14 17666     -2.046002e+01 3.150400e+02
+5 17667     -2.351200e+02 2.910000e+02
+11 17667     -3.487400e+02 8.029999e+01
+5 17668     -2.697400e+02 2.852600e+02
+11 17668     -3.713900e+02 7.470999e+01
+13 17668     -3.908300e+02 5.035100e+02
+14 17668     -3.493100e+02 1.779600e+02
+5 17669     -2.165200e+02 2.591200e+02
+11 17669     -3.329400e+02 5.623001e+01
+13 17669     -3.428500e+02 4.837100e+02
+14 17669     -2.970000e+02 1.533500e+02
+5 17670     -4.272200e+02 2.145300e+02
+11 17670     -4.718100e+02 1.928998e+01
+14 17670     -5.026700e+02 1.088100e+02
+5 17671     7.414500e+02 1.476500e+02
+11 17671     4.314200e+02 -1.366998e+01
+14 17671     6.308500e+02 5.835999e+01
+5 17672     4.079301e+02 7.871002e+01
+8 17672     -1.770300e+02 3.941500e+02
+5 17673     -1.256900e+02 6.040002e+01
+11 17673     -3.368100e+02 -1.025300e+02
+13 17673     -2.555700e+02 3.171900e+02
+14 17673     -2.111800e+02 -3.946997e+01
+5 17674     1.298000e+02 4.239001e+01
+8 17674     -4.034500e+02 3.697200e+02
+5 17675     7.457500e+02 3.033002e+01
+6 17675     -1.354200e+02 7.969700e+02
+13 17675     4.597100e+02 3.290100e+02
+5 17676     8.190601e+02 2.871997e+01
+9 17676     -1.119100e+02 4.483900e+02
+11 17676     5.108000e+02 -1.066700e+02
+5 17677     1.743300e+02 9.710022e+00
+8 17677     -3.618200e+02 3.384000e+02
+5 17678     7.572700e+02 1.000000e+01
+6 17678     -1.212400e+02 7.720200e+02
+8 17678     8.553998e+01 3.272400e+02
+9 17678     -1.522700e+02 4.340200e+02
+13 17678     4.683300e+02 3.129500e+02
+14 17678     6.514000e+02 -7.359998e+01
+5 17679     4.357700e+02 -2.319000e+01
+8 17679     -1.470700e+02 3.056400e+02
+5 17680     6.314500e+02 -4.976001e+01
+8 17680     1.640015e+00 2.814800e+02
+5 17681     7.344900e+02 -9.082001e+01
+6 17681     -1.304200e+02 6.469100e+02
+12 17681     3.303003e+01 6.059400e+02
+5 17682     7.368800e+02 -1.150900e+02
+9 17682     -1.512200e+02 3.276000e+02
+5 17683     6.900699e+02 -1.246800e+02
+9 17683     -1.813600e+02 3.196000e+02
+5 17684     6.843300e+02 -1.588500e+02
+6 17684     -1.717500e+02 5.586100e+02
+5 17685     2.559399e+02 -2.030300e+02
+7 17685     -3.668200e+02 5.011600e+02
+8 17685     -2.732500e+02 1.490800e+02
+11 17685     1.590997e+01 -3.097700e+02
+12 17685     -4.589500e+02 4.283400e+02
+13 17685     7.365002e+01 1.203300e+02
+14 17685     1.695000e+02 -2.911100e+02
+5 17686     5.078800e+02 -2.153700e+02
+12 17686     -1.796500e+02 4.500300e+02
+5 17687     4.134998e+01 -2.212000e+02
+7 17687     -5.848200e+02 4.579200e+02
+5 17688     1.111900e+02 -2.591600e+02
+8 17688     -3.876800e+02 9.512000e+01
+12 17688     -6.119000e+02 3.418000e+02
+5 17689     -2.013000e+01 -2.756400e+02
+12 17689     -7.632800e+02 2.985100e+02
+5 17690     3.965601e+02 -2.984200e+02
+6 17690     -4.560200e+02 3.397900e+02
+7 17690     -2.120800e+02 4.261700e+02
+10 17690     -1.353700e+02 5.718700e+02
+13 17690     1.891400e+02 5.178998e+01
+14 17690     3.106899e+02 -3.825100e+02
+5 17691     -1.294100e+02 -3.938500e+02
+11 17691     -3.179400e+02 -4.689900e+02
+5 17692     -1.666800e+02 -4.037400e+02
+7 17692     -7.558300e+02 2.495600e+02
+10 17692     -7.840800e+02 3.951300e+02
+11 17692     -3.515500e+02 -4.776100e+02
+5 17693     5.849000e+02 -4.194399e+02
+6 17693     -2.120900e+02 2.498400e+02
+13 17693     3.367200e+02 -3.467999e+01
+14 17693     4.970300e+02 -5.001600e+02
+5 17694     -1.246300e+02 -4.302100e+02
+11 17694     -3.100000e+02 -4.978300e+02
+13 17694     -2.190200e+02 -8.081000e+01
+14 17694     -2.044500e+02 -5.266000e+02
+5 17695     4.173500e+02 -4.961000e+02
+9 17695     -3.010800e+02 3.092999e+01
+5 17696     -2.480600e+02 -5.104301e+02
+7 17696     -8.116900e+02 1.368800e+02
+13 17696     -3.139000e+02 -1.530000e+02
+5 17697     5.380800e+02 -5.248600e+02
+6 17697     -1.812800e+02 1.373300e+02
+13 17697     2.946300e+02 -1.172500e+02
+5 17698     6.607600e+02 -5.270200e+02
+9 17698     -1.203998e+01 2.065900e+02
+12 17698     -2.122998e+01 2.206300e+02
+5 17699     2.781899e+02 -5.298500e+02
+9 17699     -4.057600e+02 -1.447998e+01
+5 17700     3.408300e+02 -5.441500e+02
+9 17700     -3.477500e+02 -1.206000e+01
+5 17701     5.466801e+02 -5.466300e+02
+6 17701     -1.647300e+02 1.178400e+02
+12 17701     -1.320400e+02 1.722400e+02
+5 17702     1.266900e+02 -5.709800e+02
+7 17702     -4.600200e+02 1.436000e+02
+5 17703     4.229800e+02 -5.730000e+02
+6 17703     -3.039700e+02 5.346002e+01
+5 17704     3.449500e+02 -5.772900e+02
+9 17704     -3.325900e+02 -3.065997e+01
+5 17705     3.897800e+02 -5.767600e+02
+8 17705     -8.371002e+01 -4.384000e+01
+9 17705     -2.477600e+02 6.494000e+01
+5 17706     2.174301e+02 -5.873101e+02
+7 17706     -3.796300e+02 1.407100e+02
+8 17706     -2.449600e+02 -1.372600e+02
+10 17706     -3.723200e+02 2.352200e+02
+15 17706     -3.450900e+02 2.400800e+02
+5 17707     5.116200e+02 -5.891400e+02
+6 17707     -1.930400e+02 6.362000e+01
+7 17707     -1.861600e+02 1.712000e+02
+12 17707     -1.612400e+02 1.197200e+02
+13 17707     2.754200e+02 -1.675800e+02
+5 17708     4.312600e+02 4.416300e+02
+11 17708     2.400699e+02 2.144900e+02
+5 17709     -1.439001e+01 4.161500e+02
+11 17709     -1.211200e+02 1.815800e+02
+5 17710     1.873600e+02 6.375000e+01
+8 17710     -3.562800e+02 3.865800e+02
+5 17711     9.170001e+01 4.663000e+01
+8 17711     -4.368000e+02 3.736500e+02
+5 17712     -1.709500e+02 2.906000e+01
+11 17712     -3.734100e+02 -1.290600e+02
+13 17712     -2.913600e+02 2.874000e+02
+14 17712     -2.560400e+02 -7.206000e+01
+5 17713     4.235200e+02 7.750000e+00
+6 17713     -4.914800e+02 7.233500e+02
+8 17713     -1.571400e+02 3.349500e+02
+5 17714     4.889900e+02 -3.372998e+01
+6 17714     -4.060900e+02 6.802800e+02
+11 17714     2.166800e+02 -1.702000e+02
+14 17714     3.923300e+02 -1.210100e+02
+5 17715     1.650024e+00 -1.697400e+02
+8 17715     -4.944200e+02 1.724300e+02
+12 17715     -7.693900e+02 4.277300e+02
+5 17716     6.205000e+02 -1.737100e+02
+6 17716     -2.360000e+02 5.315500e+02
+9 17716     -2.283300e+02 2.721000e+02
+13 17716     3.627000e+02 1.596900e+02
+14 17716     5.256700e+02 -2.553600e+02
+5 17717     4.367200e+02 -1.940600e+02
+8 17717     -1.313400e+02 1.599000e+02
+5 17718     4.333700e+02 -2.792600e+02
+7 17718     -1.798600e+02 4.476500e+02
+8 17718     -1.258100e+02 8.756000e+01
+11 17718     1.819700e+02 -3.692900e+02
+13 17718     2.170500e+02 6.796997e+01
+14 17718     3.456300e+02 -3.630300e+02
+5 17719     -1.293300e+02 -3.718300e+02
+8 17719     -5.879400e+02 -2.500000e+01
+10 17719     -7.444300e+02 4.356400e+02
+11 17719     -3.178900e+02 -4.502300e+02
+13 17719     -2.271000e+02 -3.546997e+01
+15 17719     -7.722900e+02 4.634600e+02
+5 17720     -1.293300e+02 -3.718300e+02
+7 17720     -7.235800e+02 2.866400e+02
+11 17720     -3.178900e+02 -4.502300e+02
+13 17720     -2.271000e+02 -3.546997e+01
+15 17720     -7.722900e+02 4.634600e+02
+5 17721     6.053500e+02 -4.014800e+02
+6 17721     -1.945500e+02 2.719400e+02
+5 17722     4.873300e+02 -5.392600e+02
+6 17722     -2.422000e+02 1.066800e+02
+12 17722     -1.860900e+02 1.559600e+02
+13 17722     2.585900e+02 -1.301400e+02
+5 17723     2.385601e+02 -5.823600e+02
+7 17723     -3.603400e+02 1.502900e+02
+8 17723     -2.302500e+02 -1.304400e+02
+13 17723     7.223999e+01 -1.755600e+02
+15 17723     -3.172500e+02 2.508500e+02
+5 17724     1.810300e+02 3.711000e+02
+11 17724     5.260010e+00 1.522200e+02
+14 17724     8.951001e+01 2.644400e+02
+5 17725     1.810300e+02 3.711000e+02
+11 17725     5.260010e+00 1.522200e+02
+5 17726     -4.853998e+01 3.638500e+02
+11 17726     -1.839500e+02 1.389500e+02
+5 17727     9.475000e+01 3.609100e+02
+11 17727     -6.715997e+01 1.425600e+02
+14 17727     6.719971e+00 2.542800e+02
+5 17728     -7.969971e+00 3.598400e+02
+11 17728     -1.510900e+02 1.389300e+02
+14 17728     -9.315997e+01 2.520500e+02
+5 17729     -7.969971e+00 3.598400e+02
+11 17729     -1.510900e+02 1.389300e+02
+14 17729     -9.315997e+01 2.520500e+02
+5 17730     1.653100e+02 3.505200e+02
+11 17730     -1.072998e+01 1.360400e+02
+14 17730     7.446997e+01 2.447900e+02
+5 17731     6.014200e+02 7.296002e+01
+11 17731     3.105100e+02 -7.777002e+01
+13 17731     3.430601e+02 3.589300e+02
+14 17731     4.983700e+02 -1.600000e+01
+5 17732     -4.760200e+02 -5.175000e+01
+11 17732     -4.856000e+02 -1.850100e+02
+5 17733     6.982200e+02 -1.937700e+02
+6 17733     -1.529800e+02 5.204700e+02
+5 17734     6.747300e+02 -1.966100e+02
+6 17734     -1.761400e+02 5.129000e+02
+7 17734     3.778003e+01 5.453500e+02
+13 17734     4.057900e+02 1.443100e+02
+5 17735     4.098199e+02 -2.570700e+02
+8 17735     -1.456400e+02 1.060900e+02
+5 17736     -8.404999e+01 -2.791400e+02
+10 17736     -7.220800e+02 5.449000e+02
+13 17736     -1.969400e+02 4.185999e+01
+5 17737     4.502800e+02 -2.801500e+02
+11 17737     1.962100e+02 -3.730400e+02
+5 17738     3.639399e+02 -3.673200e+02
+7 17738     -2.401200e+02 3.609200e+02
+15 17738     -1.185200e+02 5.417700e+02
+5 17739     -1.046500e+02 -3.851200e+02
+7 17739     -6.939500e+02 2.794600e+02
+10 17739     -7.122400e+02 4.272000e+02
+5 17740     4.773101e+02 -5.353101e+02
+6 17740     -2.552700e+02 1.060900e+02
+7 17740     -2.003600e+02 2.166500e+02
+10 17740     -1.900500e+02 2.865800e+02
+12 17740     -1.960500e+02 1.575900e+02
+13 17740     2.499200e+02 -1.285600e+02
+15 17740     -1.422300e+02 3.055100e+02
+5 17741     4.825800e+02 -5.638900e+02
+6 17741     -2.387800e+02 7.959998e+01
+12 17741     -1.893400e+02 1.311300e+02
+5 17742     2.585999e+01 3.503000e+02
+11 17742     -1.248300e+02 1.323400e+02
+5 17743     3.899900e+02 2.753200e+02
+11 17743     1.283300e+02 7.987000e+01
+5 17744     6.007800e+02 2.568600e+02
+11 17744     3.099900e+02 6.989001e+01
+13 17744     3.401000e+02 5.128500e+02
+14 17744     4.920000e+02 1.597500e+02
+5 17745     4.063199e+02 -1.985000e+02
+8 17745     -1.546200e+02 1.557400e+02
+14 17745     3.170601e+02 -2.857100e+02
+5 17746     3.189800e+02 -2.260100e+02
+6 17746     -5.600700e+02 4.099400e+02
+8 17746     -2.189700e+02 1.313100e+02
+5 17747     -1.010800e+02 -3.194600e+02
+8 17747     -5.693900e+02 2.792999e+01
+5 17748     7.079800e+02 -3.946300e+02
+6 17748     -9.214001e+01 3.028000e+02
+13 17748     4.305500e+02 -9.090027e+00
+14 17748     6.159500e+02 -4.709500e+02
+5 17749     -2.263200e+02 4.169900e+02
+11 17749     -2.844400e+02 1.784300e+02
+14 17749     -3.035600e+02 3.061100e+02
+5 17750     5.229999e+01 3.621700e+02
+11 17750     -1.020300e+02 1.426800e+02
+14 17750     -3.489001e+01 2.547300e+02
+5 17751     7.469600e+02 -1.274600e+02
+6 17751     -1.121100e+02 6.063100e+02
+12 17751     5.035999e+01 5.688500e+02
+5 17752     6.870100e+02 -1.323000e+02
+6 17752     -1.738100e+02 5.916600e+02
+8 17752     4.971002e+01 2.172400e+02
+12 17752     -8.500000e+00 5.601400e+02
+5 17753     4.821000e+02 -2.027400e+02
+8 17753     -9.535999e+01 1.553600e+02
+5 17754     2.845200e+02 -2.269000e+02
+7 17754     -3.332300e+02 4.814300e+02
+8 17754     -2.474800e+02 1.295600e+02
+13 17754     9.710999e+01 1.023300e+02
+14 17754     1.979600e+02 -3.132000e+02
+5 17755     3.918300e+02 -2.734800e+02
+7 17755     -2.231300e+02 4.470800e+02
+5 17756     -1.783500e+02 5.921002e+01
+11 17756     -3.821500e+02 -1.016500e+02
+13 17756     -3.060300e+02 3.143700e+02
+14 17756     -2.681300e+02 -3.984998e+01
+5 17757     3.411899e+02 -2.441500e+02
+8 17757     -2.014000e+02 1.155200e+02
+5 17758     5.286300e+02 -1.105100e+02
+6 17758     -3.402100e+02 5.999500e+02
+8 17758     -6.915997e+01 2.322200e+02
+5 17759     2.040200e+02 -3.167700e+02
+7 17759     -3.943700e+02 3.854200e+02
+8 17759     -3.007500e+02 4.450000e+01
+13 17759     3.735999e+01 2.827002e+01
+14 17759     1.214400e+02 -4.039200e+02
+6 17760     2.344300e+02 7.558300e+02
+8 17760     3.304800e+02 3.686700e+02
+6 17761     2.316300e+02 7.499900e+02
+8 17761     3.278500e+02 3.641400e+02
+9 17761     1.213200e+02 4.933100e+02
+6 17762     2.316300e+02 7.499900e+02
+9 17762     1.213200e+02 4.933100e+02
+6 17763     1.971300e+02 7.205100e+02
+9 17763     9.679999e+01 4.689900e+02
+6 17764     3.820700e+02 7.162000e+02
+9 17764     2.440699e+02 5.138800e+02
+6 17765     2.007300e+02 7.093200e+02
+8 17765     3.068800e+02 3.348200e+02
+9 17765     9.991998e+01 4.612700e+02
+6 17766     -2.636500e+02 6.824200e+02
+14 17766     5.159000e+02 -1.320300e+02
+6 17767     -8.570001e+01 6.588600e+02
+12 17767     7.628003e+01 6.150900e+02
+6 17768     -6.140997e+01 6.579600e+02
+12 17768     9.954999e+01 6.134900e+02
+6 17769     -1.124900e+02 6.515700e+02
+12 17769     5.084003e+01 6.101200e+02
+6 17770     -2.546000e+02 6.491700e+02
+14 17770     5.212100e+02 -1.584700e+02
+6 17771     -2.867200e+02 6.427700e+02
+12 17771     -1.187200e+02 6.102500e+02
+6 17772     -4.223000e+02 6.426100e+02
+12 17772     -2.496400e+02 6.155800e+02
+6 17773     -4.840900e+02 6.421800e+02
+12 17773     -3.085500e+02 6.171900e+02
+6 17774     -4.139400e+02 6.420400e+02
+12 17774     -2.415700e+02 6.146600e+02
+6 17775     1.875300e+02 6.345700e+02
+12 17775     2.967000e+02 6.203800e+02
+6 17776     1.875300e+02 6.345700e+02
+12 17776     2.967000e+02 6.203800e+02
+6 17777     1.944500e+02 6.342700e+02
+12 17777     3.033600e+02 6.200500e+02
+6 17778     -3.398200e+02 6.339500e+02
+11 17778     2.659600e+02 -2.022900e+02
+6 17779     -6.202002e+01 6.272500e+02
+12 17779     9.925000e+01 5.853800e+02
+6 17780     -1.151500e+02 6.161900e+02
+12 17780     4.728003e+01 5.786200e+02
+6 17781     -5.327002e+01 6.137500e+02
+14 17781     7.035900e+02 -2.072900e+02
+6 17782     -5.327002e+01 6.137500e+02
+14 17782     7.035900e+02 -2.072900e+02
+6 17783     4.556600e+02 6.095000e+02
+12 17783     5.374900e+02 6.179300e+02
+6 17784     -2.790400e+02 6.030900e+02
+12 17784     -1.109700e+02 5.740700e+02
+6 17785     3.881000e+02 5.983800e+02
+12 17785     4.724800e+02 6.048400e+02
+6 17786     4.008300e+02 5.987900e+02
+12 17786     4.846400e+02 6.054400e+02
+6 17787     4.609500e+02 5.951500e+02
+7 17787     4.857800e+02 5.736800e+02
+12 17787     5.421100e+02 6.044500e+02
+6 17788     4.788500e+02 5.930600e+02
+9 17788     3.209399e+02 4.361400e+02
+12 17788     5.598800e+02 6.029200e+02
+6 17789     -3.164900e+02 5.907800e+02
+12 17789     -1.475400e+02 5.648300e+02
+6 17790     4.164700e+02 5.901600e+02
+8 17790     4.659900e+02 2.891400e+02
+12 17790     4.995200e+02 5.977300e+02
+6 17791     -2.979700e+02 5.864100e+02
+12 17791     -1.294800e+02 5.595700e+02
+6 17792     -2.877700e+02 5.860400e+02
+12 17792     -1.196300e+02 5.589800e+02
+6 17793     4.990300e+02 5.825300e+02
+7 17793     5.155900e+02 5.595100e+02
+6 17794     -9.731000e+01 5.777600e+02
+12 17794     6.504999e+01 5.415900e+02
+6 17795     4.491600e+02 5.763700e+02
+12 17795     5.310400e+02 5.855500e+02
+6 17796     4.969500e+02 5.707200e+02
+7 17796     5.139700e+02 5.492400e+02
+6 17797     1.700200e+02 5.647800e+02
+12 17797     2.811100e+02 5.534000e+02
+6 17798     -2.078300e+02 5.631600e+02
+12 17798     -4.229999e+01 5.345500e+02
+6 17799     -2.174300e+02 5.617400e+02
+14 17799     5.459900e+02 -2.323200e+02
+6 17800     4.948800e+02 5.555800e+02
+12 17800     5.754800e+02 5.660000e+02
+6 17801     2.037600e+02 5.551100e+02
+12 17801     3.122300e+02 5.447800e+02
+6 17802     1.607800e+02 5.536000e+02
+12 17802     2.731300e+02 5.421500e+02
+6 17803     -3.459300e+02 5.499900e+02
+12 17803     -1.763900e+02 5.290600e+02
+6 17804     1.673100e+02 5.497800e+02
+9 17804     8.063000e+01 3.404300e+02
+11 17804     5.934301e+02 -3.172100e+02
+6 17805     -4.350000e+02 5.481900e+02
+12 17805     -2.618500e+02 5.309500e+02
+6 17806     4.516700e+02 5.464700e+02
+7 17806     4.752500e+02 5.311500e+02
+6 17807     -4.305100e+02 5.457600e+02
+7 17807     -1.841200e+02 5.845200e+02
+6 17808     1.659600e+02 5.403700e+02
+12 17808     2.778400e+02 5.298500e+02
+6 17809     4.045800e+02 5.369500e+02
+12 17809     4.886500e+02 5.444300e+02
+6 17810     4.638300e+02 5.349300e+02
+8 17810     5.011100e+02 2.532600e+02
+10 17810     6.726600e+02 6.140200e+02
+12 17810     5.453000e+02 5.444300e+02
+6 17811     -1.926600e+02 5.318900e+02
+14 17811     5.665800e+02 -2.596200e+02
+6 17812     3.707000e+02 5.321300e+02
+9 17812     2.439800e+02 3.776600e+02
+12 17812     4.564000e+02 5.385300e+02
+6 17813     -4.383900e+02 5.314600e+02
+12 17813     -2.653700e+02 5.161400e+02
+6 17814     2.297100e+02 5.307400e+02
+12 17814     3.360100e+02 5.225700e+02
+6 17815     4.441100e+02 5.270400e+02
+10 17815     6.525800e+02 6.086000e+02
+12 17815     5.265800e+02 5.355000e+02
+6 17816     5.098300e+02 5.228000e+02
+10 17816     7.161100e+02 5.920000e+02
+6 17817     3.824200e+02 5.216300e+02
+10 17817     5.933800e+02 6.142600e+02
+12 17817     4.675200e+02 5.283300e+02
+6 17818     4.488800e+02 5.204000e+02
+10 17818     6.563000e+02 6.008900e+02
+12 17818     5.310500e+02 5.297300e+02
+6 17819     4.185400e+02 5.186400e+02
+7 17819     4.466200e+02 5.095100e+02
+10 17819     6.266100e+02 6.041500e+02
+6 17820     3.703400e+02 5.178900e+02
+8 17820     4.336000e+02 2.343100e+02
+9 17820     2.445000e+02 3.671600e+02
+10 17820     5.814700e+02 6.117200e+02
+11 17820     7.065601e+02 -3.787400e+02
+12 17820     4.562400e+02 5.243400e+02
+6 17821     -4.706900e+02 5.160100e+02
+12 17821     -2.965300e+02 5.035200e+02
+6 17822     -3.078900e+02 5.155400e+02
+12 17822     -1.395600e+02 4.960200e+02
+6 17823     3.785400e+02 5.152400e+02
+10 17823     5.884700e+02 6.076400e+02
+6 17824     5.781000e+02 5.121100e+02
+12 17824     6.572200e+02 5.252300e+02
+6 17825     2.984800e+02 5.081100e+02
+12 17825     3.994000e+02 5.024900e+02
+6 17826     4.546500e+02 5.058500e+02
+12 17826     5.368600e+02 5.148000e+02
+6 17827     -3.153200e+02 5.032300e+02
+12 17827     -1.465000e+02 4.852900e+02
+6 17828     -4.807900e+02 5.025600e+02
+12 17828     -3.061800e+02 4.920200e+02
+6 17829     -4.469400e+02 5.008800e+02
+12 17829     -2.740300e+02 4.890600e+02
+6 17830     -2.074700e+02 4.955800e+02
+12 17830     -4.183002e+01 4.737000e+02
+6 17831     3.871200e+02 4.881700e+02
+7 17831     4.200800e+02 4.854600e+02
+6 17832     3.846400e+02 4.865100e+02
+10 17832     5.900100e+02 5.759600e+02
+12 17832     4.702900e+02 4.936100e+02
+6 17833     4.883500e+02 4.863400e+02
+10 17833     6.883000e+02 5.566500e+02
+12 17833     5.695000e+02 4.963000e+02
+6 17834     3.787100e+02 4.835200e+02
+10 17834     5.838900e+02 5.737300e+02
+6 17835     4.465601e+02 4.811700e+02
+12 17835     5.292400e+02 4.899700e+02
+6 17836     3.964100e+02 4.784100e+02
+12 17836     4.814100e+02 4.854500e+02
+6 17837     5.813000e+02 4.780700e+02
+10 17837     7.792300e+02 5.294100e+02
+6 17838     3.631000e+02 4.767600e+02
+10 17838     5.686100e+02 5.695000e+02
+6 17839     3.930500e+02 4.755400e+02
+10 17839     5.960500e+02 5.629300e+02
+6 17840     -3.527400e+02 4.752400e+02
+12 17840     -1.826400e+02 4.616100e+02
+6 17841     -3.527400e+02 4.752400e+02
+12 17841     -1.826400e+02 4.616100e+02
+6 17842     3.868100e+02 4.713600e+02
+9 17842     2.585800e+02 3.343900e+02
+6 17843     4.087500e+02 4.699200e+02
+9 17843     2.753300e+02 3.356100e+02
+10 17843     6.100699e+02 5.543100e+02
+6 17844     3.929800e+02 4.676200e+02
+7 17844     4.230400e+02 4.673700e+02
+6 17845     2.114600e+02 4.616500e+02
+12 17845     3.195900e+02 4.562400e+02
+6 17846     3.167400e+02 4.554400e+02
+8 17846     3.918100e+02 1.658500e+02
+9 17846     1.967800e+02 2.883800e+02
+6 17847     4.999500e+02 4.544700e+02
+12 17847     5.809800e+02 4.640300e+02
+6 17848     2.769200e+02 4.508700e+02
+12 17848     3.797000e+02 4.467200e+02
+6 17849     4.489399e+02 4.510900e+02
+10 17849     6.444900e+02 5.264300e+02
+12 17849     5.317000e+02 4.600400e+02
+6 17850     4.528101e+02 4.496400e+02
+8 17850     4.948500e+02 1.907100e+02
+9 17850     3.094399e+02 3.258800e+02
+10 17850     6.482300e+02 5.236800e+02
+12 17850     5.352700e+02 4.585800e+02
+6 17851     4.763199e+02 4.437300e+02
+8 17851     5.117600e+02 1.878500e+02
+10 17851     6.702700e+02 5.129200e+02
+12 17851     5.579800e+02 4.532800e+02
+6 17852     4.786200e+02 4.416000e+02
+10 17852     6.717500e+02 5.103900e+02
+6 17853     3.515500e+02 4.408500e+02
+9 17853     2.338400e+02 3.064600e+02
+12 17853     4.390200e+02 4.477000e+02
+6 17854     4.575500e+02 4.396100e+02
+12 17854     5.400699e+02 4.487000e+02
+6 17855     5.108600e+02 4.356400e+02
+10 17855     7.016300e+02 4.971600e+02
+6 17856     3.675900e+02 4.339400e+02
+12 17856     4.543600e+02 4.416100e+02
+6 17857     -3.554100e+02 4.276900e+02
+7 17857     -1.224000e+02 4.881000e+02
+6 17858     1.534800e+02 4.273400e+02
+12 17858     2.675100e+02 4.221400e+02
+6 17859     3.683000e+02 4.203900e+02
+8 17859     4.345000e+02 1.635700e+02
+12 17859     4.548000e+02 4.280600e+02
+13 17859     7.763700e+02 2.823999e+01
+6 17860     2.011100e+02 4.199300e+02
+12 17860     3.106400e+02 4.157000e+02
+6 17861     3.315500e+02 4.199400e+02
+12 17861     4.202200e+02 4.267200e+02
+6 17862     3.315500e+02 4.199400e+02
+12 17862     4.202200e+02 4.267200e+02
+6 17863     4.638101e+02 4.173700e+02
+10 17863     6.534900e+02 4.870400e+02
+6 17864     3.713300e+02 4.168200e+02
+8 17864     4.360400e+02 1.605700e+02
+9 17864     2.496801e+02 2.905900e+02
+10 17864     5.675601e+02 5.050700e+02
+11 17864     7.103900e+02 -4.653800e+02
+12 17864     4.579200e+02 4.245200e+02
+15 17864     7.587900e+02 5.771900e+02
+6 17865     2.842000e+02 4.136700e+02
+9 17865     1.742200e+02 2.521700e+02
+6 17866     3.624000e+02 4.109100e+02
+12 17866     4.494500e+02 4.183400e+02
+6 17867     4.380100e+02 4.109100e+02
+7 17867     4.554900e+02 4.144000e+02
+6 17868     4.380100e+02 4.109100e+02
+7 17868     4.554900e+02 4.144000e+02
+8 17868     4.848500e+02 1.610100e+02
+12 17868     5.215699e+02 4.198500e+02
+6 17869     4.607800e+02 4.067400e+02
+10 17869     6.490900e+02 4.770200e+02
+15 17869     8.565300e+02 5.456300e+02
+6 17870     4.607800e+02 4.067400e+02
+8 17870     5.019399e+02 1.594600e+02
+10 17870     6.490900e+02 4.770200e+02
+6 17871     4.097400e+02 4.056400e+02
+15 17871     7.990601e+02 5.555400e+02
+6 17872     4.641200e+02 4.045100e+02
+12 17872     5.465100e+02 4.144600e+02
+6 17873     4.054100e+02 4.019900e+02
+12 17873     4.903300e+02 4.116400e+02
+6 17874     4.243200e+02 4.005000e+02
+10 17874     6.145100e+02 4.773600e+02
+15 17874     8.151100e+02 5.455500e+02
+6 17875     3.440900e+02 3.990200e+02
+15 17875     7.268101e+02 5.613500e+02
+6 17876     1.536400e+02 3.975000e+02
+12 17876     2.680601e+02 3.936000e+02
+6 17877     1.556500e+02 3.929400e+02
+12 17877     2.696400e+02 3.893400e+02
+6 17878     1.618400e+02 3.925700e+02
+12 17878     2.749800e+02 3.890200e+02
+6 17879     -1.758400e+02 3.881100e+02
+11 17879     3.634500e+02 -3.889100e+02
+6 17880     1.595400e+02 3.823000e+02
+7 17880     2.588900e+02 4.152900e+02
+14 17880     8.629301e+02 -4.399700e+02
+15 17880     5.771200e+02 5.867300e+02
+6 17881     -1.713800e+02 3.817600e+02
+14 17881     5.615800e+02 -3.892000e+02
+6 17882     1.662100e+02 3.799300e+02
+7 17882     2.637000e+02 4.124500e+02
+14 17882     8.693199e+02 -4.435200e+02
+15 17882     5.834500e+02 5.825800e+02
+6 17883     3.721400e+02 3.801500e+02
+10 17883     5.627300e+02 4.673600e+02
+6 17884     4.198100e+02 3.771900e+02
+9 17884     2.885300e+02 2.663200e+02
+12 17884     5.041100e+02 3.859600e+02
+6 17885     4.007300e+02 3.727900e+02
+10 17885     5.878700e+02 4.546700e+02
+12 17885     4.859900e+02 3.810200e+02
+15 17885     7.843199e+02 5.174300e+02
+6 17886     5.124900e+02 3.726700e+02
+12 17886     5.932200e+02 3.827200e+02
+6 17887     5.124900e+02 3.726700e+02
+12 17887     5.932200e+02 3.827200e+02
+6 17888     3.632000e+02 3.715200e+02
+12 17888     4.512900e+02 3.801800e+02
+6 17889     -5.009900e+02 3.697400e+02
+9 17889     -4.159600e+02 1.794200e+02
+6 17890     4.212300e+02 3.645000e+02
+12 17890     5.053400e+02 3.730000e+02
+6 17891     4.300800e+02 3.574500e+02
+15 17891     8.144100e+02 4.922900e+02
+6 17892     -2.088500e+02 3.542500e+02
+14 17892     5.226100e+02 -4.073300e+02
+6 17893     5.709600e+02 3.546400e+02
+12 17893     6.500900e+02 3.650800e+02
+6 17894     4.416000e+02 3.539900e+02
+10 17894     6.225400e+02 4.257600e+02
+6 17895     4.112700e+02 3.497200e+02
+10 17895     5.938199e+02 4.284900e+02
+15 17895     7.916400e+02 4.868300e+02
+6 17896     5.837100e+02 3.498700e+02
+10 17896     7.577100e+02 3.912900e+02
+12 17896     6.628600e+02 3.607200e+02
+6 17897     4.083400e+02 3.474700e+02
+10 17897     5.908800e+02 4.263600e+02
+12 17897     4.932100e+02 3.562900e+02
+6 17898     4.174400e+02 3.472800e+02
+10 17898     5.994100e+02 4.243000e+02
+6 17899     5.561200e+02 3.471200e+02
+8 17899     5.749000e+02 1.213100e+02
+9 17899     3.934700e+02 2.604100e+02
+6 17900     2.529900e+02 3.439700e+02
+15 17900     6.677100e+02 5.239200e+02
+6 17901     4.345400e+02 3.439100e+02
+8 17901     4.827400e+02 1.112300e+02
+9 17901     3.011400e+02 2.425800e+02
+12 17901     5.181801e+02 3.534300e+02
+15 17901     8.170900e+02 4.733300e+02
+6 17902     4.493600e+02 3.412500e+02
+15 17902     8.329800e+02 4.670200e+02
+6 17903     4.543700e+02 3.370100e+02
+8 17903     4.983800e+02 1.070000e+02
+9 17903     3.167800e+02 2.396200e+02
+10 17903     6.322200e+02 4.056700e+02
+6 17904     4.543700e+02 3.370100e+02
+8 17904     4.983800e+02 1.070000e+02
+9 17904     3.167800e+02 2.396200e+02
+6 17905     -5.556400e+02 3.355200e+02
+14 17905     2.260900e+02 -3.726200e+02
+6 17906     4.687800e+02 3.322800e+02
+10 17906     6.450100e+02 3.979700e+02
+15 17906     8.532900e+02 4.512700e+02
+6 17907     4.687800e+02 3.322800e+02
+10 17907     6.450100e+02 3.979700e+02
+15 17907     8.532900e+02 4.512700e+02
+6 17908     4.758300e+02 3.324200e+02
+12 17908     5.580100e+02 3.420700e+02
+6 17909     5.255300e+02 3.325600e+02
+12 17909     6.057000e+02 3.430100e+02
+6 17910     5.397900e+02 3.320000e+02
+10 17910     7.121000e+02 3.822600e+02
+12 17910     6.198101e+02 3.423700e+02
+6 17911     5.397900e+02 3.320000e+02
+10 17911     7.121000e+02 3.822600e+02
+12 17911     6.198101e+02 3.423700e+02
+6 17912     4.370200e+02 3.303800e+02
+7 17912     4.497200e+02 3.459800e+02
+12 17912     5.208800e+02 3.399200e+02
+15 17912     8.175699e+02 4.568600e+02
+6 17913     5.426700e+02 3.266800e+02
+12 17913     6.225100e+02 3.375500e+02
+6 17914     5.326000e+02 3.260000e+02
+10 17914     7.041500e+02 3.778100e+02
+12 17914     6.127100e+02 3.361100e+02
+6 17915     3.686100e+02 3.252100e+02
+7 17915     3.955900e+02 3.481300e+02
+6 17916     4.181200e+02 3.249300e+02
+10 17916     5.966899e+02 4.018000e+02
+12 17916     5.023700e+02 3.341200e+02
+15 17916     7.960400e+02 4.544300e+02
+6 17917     4.900800e+02 3.249000e+02
+10 17917     6.629900e+02 3.861000e+02
+6 17918     -2.783900e+02 3.233600e+02
+14 17918     4.553600e+02 -4.234900e+02
+6 17919     5.329800e+02 3.227900e+02
+9 17919     3.764301e+02 2.380700e+02
+10 17919     7.036200e+02 3.739600e+02
+6 17920     3.536700e+02 3.176700e+02
+9 17920     2.406000e+02 2.108800e+02
+12 17920     4.411700e+02 3.262000e+02
+6 17921     1.786300e+02 3.143100e+02
+15 17921     5.877800e+02 5.042800e+02
+6 17922     4.690000e+02 3.146600e+02
+12 17922     5.513000e+02 3.244000e+02
+15 17922     8.505900e+02 4.292400e+02
+6 17923     4.189800e+02 3.128000e+02
+8 17923     4.725800e+02 8.622000e+01
+10 17923     5.957800e+02 3.893500e+02
+15 17923     7.951000e+02 4.397400e+02
+6 17924     5.377200e+02 3.118700e+02
+10 17924     7.072100e+02 3.612800e+02
+12 17924     6.180900e+02 3.220100e+02
+6 17925     1.926600e+02 3.051200e+02
+15 17925     6.000900e+02 4.903000e+02
+6 17926     -1.788800e+02 3.042900e+02
+10 17926     9.425000e+01 4.974800e+02
+15 17926     2.007400e+02 5.537800e+02
+6 17927     5.622300e+02 3.031400e+02
+10 17927     7.294301e+02 3.468700e+02
+6 17928     -3.326200e+02 3.016800e+02
+10 17928     -4.244000e+01 5.174100e+02
+15 17928     3.987000e+01 5.740100e+02
+6 17929     4.097100e+02 3.017800e+02
+9 17929     2.846300e+02 2.063800e+02
+10 17929     5.859301e+02 3.802700e+02
+15 17929     7.834600e+02 4.284700e+02
+6 17930     4.097100e+02 3.017800e+02
+10 17930     5.859301e+02 3.802700e+02
+15 17930     7.834600e+02 4.284700e+02
+6 17931     4.166100e+02 2.962700e+02
+8 17931     4.716700e+02 7.273001e+01
+12 17931     5.016200e+02 3.052100e+02
+6 17932     5.789301e+02 2.951200e+02
+12 17932     6.579200e+02 3.056800e+02
+6 17933     -1.983900e+02 2.906300e+02
+10 17933     7.115997e+01 4.870900e+02
+15 17933     1.733800e+02 5.412500e+02
+6 17934     -2.230800e+02 2.855900e+02
+12 17934     -8.202002e+01 2.939300e+02
+6 17935     4.134000e+02 2.856700e+02
+15 17935     7.851200e+02 4.077800e+02
+6 17936     4.927300e+02 2.725600e+02
+12 17936     5.741200e+02 2.824500e+02
+15 17936     8.701700e+02 3.721000e+02
+6 17937     -2.832300e+02 2.702300e+02
+12 17937     -1.391800e+02 2.819000e+02
+6 17938     -8.795999e+01 2.663900e+02
+7 17938     5.147998e+01 3.412800e+02
+13 17938     4.273600e+02 -3.498999e+01
+14 17938     6.129500e+02 -5.049399e+02
+6 17939     3.622900e+02 2.646200e+02
+12 17939     4.499399e+02 2.736500e+02
+15 17939     7.271300e+02 3.960000e+02
+6 17940     3.588300e+02 2.617900e+02
+15 17940     7.229000e+02 3.933000e+02
+6 17941     3.588300e+02 2.617900e+02
+15 17941     7.229000e+02 3.933000e+02
+6 17942     5.219000e+01 2.584700e+02
+12 17942     1.005700e+02 3.016800e+02
+6 17943     -3.029400e+02 2.569800e+02
+14 17943     4.194200e+02 -4.769399e+02
+6 17944     3.377300e+02 2.560100e+02
+12 17944     4.270000e+02 2.650100e+02
+6 17945     5.228800e+02 2.514700e+02
+9 17945     3.726300e+02 1.825500e+02
+6 17946     5.474900e+02 2.508900e+02
+9 17946     3.931200e+02 1.834300e+02
+6 17947     5.657600e+02 2.478900e+02
+9 17947     4.063199e+02 1.843900e+02
+10 17947     7.226100e+02 2.898800e+02
+12 17947     6.451600e+02 2.577500e+02
+6 17948     5.821100e+02 2.441700e+02
+10 17948     7.381100e+02 2.824100e+02
+12 17948     6.610900e+02 2.542700e+02
+6 17949     5.457300e+02 2.435900e+02
+8 17949     5.695800e+02 4.194000e+01
+12 17949     6.253700e+02 2.533400e+02
+6 17950     5.457300e+02 2.435900e+02
+12 17950     6.253700e+02 2.533400e+02
+6 17951     4.630300e+02 2.417100e+02
+8 17951     5.060300e+02 3.489999e+01
+12 17951     5.456200e+02 2.513400e+02
+15 17951     8.328500e+02 3.430700e+02
+6 17952     -4.913000e+01 2.406900e+02
+12 17952     -4.179993e+00 2.874800e+02
+6 17953     3.140000e+02 2.363800e+02
+10 17953     4.927100e+02 3.366400e+02
+6 17954     3.140000e+02 2.363800e+02
+12 17954     4.046400e+02 2.463000e+02
+15 17954     6.729301e+02 3.741500e+02
+6 17955     3.140000e+02 2.363800e+02
+12 17955     4.046400e+02 2.463000e+02
+6 17956     3.111100e+02 2.354300e+02
+12 17956     4.019200e+02 2.455100e+02
+6 17957     3.295800e+02 2.354900e+02
+12 17957     4.195300e+02 2.456600e+02
+6 17958     3.248400e+02 2.325900e+02
+12 17958     4.145900e+02 2.424600e+02
+6 17959     3.977300e+02 2.315100e+02
+12 17959     4.837300e+02 2.413000e+02
+6 17960     5.398500e+02 2.295500e+02
+12 17960     6.194600e+02 2.395100e+02
+6 17961     -6.676001e+01 2.273700e+02
+14 17961     5.628600e+02 -5.475601e+02
+6 17962     4.065700e+02 2.263200e+02
+10 17962     5.725601e+02 3.061800e+02
+15 17962     7.689800e+02 3.391500e+02
+6 17963     4.134000e+02 2.227500e+02
+15 17963     7.758700e+02 3.328700e+02
+6 17964     4.419800e+02 2.218900e+02
+12 17964     5.255699e+02 2.325700e+02
+6 17965     4.419800e+02 2.218900e+02
+12 17965     5.255699e+02 2.325700e+02
+6 17966     -3.152500e+02 2.215800e+02
+14 17966     4.012700e+02 -5.053400e+02
+6 17967     5.259399e+02 2.205600e+02
+9 17967     3.774399e+02 1.577900e+02
+6 17968     5.259399e+02 2.205600e+02
+9 17968     3.774399e+02 1.577900e+02
+6 17969     -1.025300e+02 2.184100e+02
+14 17969     5.302300e+02 -5.492800e+02
+6 17970     -1.025300e+02 2.184100e+02
+14 17970     5.302300e+02 -5.492800e+02
+6 17971     -9.403000e+01 2.182200e+02
+14 17971     5.375500e+02 -5.507400e+02
+6 17972     5.740800e+02 2.175600e+02
+12 17972     6.532000e+02 2.272700e+02
+6 17973     -2.306700e+02 2.135700e+02
+14 17973     4.718700e+02 -5.275800e+02
+6 17974     3.651000e+02 2.123800e+02
+8 17974     4.335601e+02 5.600006e+00
+6 17975     3.682500e+02 2.129300e+02
+12 17975     4.560300e+02 2.233300e+02
+6 17976     4.410999e+01 2.102700e+02
+15 17976     1.445601e+02 3.526300e+02
+6 17977     1.672900e+02 2.062900e+02
+12 17977     2.070699e+02 2.505600e+02
+6 17978     5.204399e+02 2.038500e+02
+10 17978     6.730400e+02 2.565000e+02
+6 17979     4.309998e+01 2.035000e+02
+10 17979     5.415002e+01 3.160700e+02
+6 17980     3.680800e+02 2.037100e+02
+7 17980     3.884000e+02 2.466900e+02
+10 17980     5.353600e+02 2.926700e+02
+12 17980     4.555601e+02 2.140300e+02
+15 17980     7.249301e+02 3.225200e+02
+6 17981     5.826700e+02 2.037200e+02
+8 17981     5.980800e+02 1.332999e+01
+9 17981     4.221000e+02 1.520500e+02
+12 17981     6.613500e+02 2.134000e+02
+6 17982     3.699200e+02 2.013900e+02
+15 17982     7.264100e+02 3.193600e+02
+6 17983     3.780600e+02 1.998600e+02
+10 17983     5.435900e+02 2.865500e+02
+15 17983     7.348700e+02 3.156200e+02
+6 17984     5.761600e+02 1.926400e+02
+12 17984     6.549000e+02 2.020600e+02
+6 17985     3.920800e+02 1.919700e+02
+15 17985     7.479600e+02 3.028100e+02
+6 17986     3.920800e+02 1.919700e+02
+15 17986     7.479600e+02 3.028100e+02
+6 17987     5.708300e+02 1.904900e+02
+12 17987     6.492700e+02 1.995900e+02
+6 17988     5.083500e+02 1.885700e+02
+10 17988     6.593700e+02 2.442100e+02
+15 17988     8.742000e+02 2.673300e+02
+6 17989     5.519100e+02 1.881600e+02
+12 17989     6.309600e+02 1.978800e+02
+6 17990     -1.361500e+02 1.842700e+02
+14 17990     4.918000e+02 -5.744200e+02
+6 17991     5.591400e+02 1.835400e+02
+10 17991     7.061801e+02 2.266700e+02
+6 17992     -3.128900e+02 1.767800e+02
+14 17992     3.921700e+02 -5.451300e+02
+6 17993     1.663700e+02 1.752200e+02
+10 17993     1.582800e+02 2.625300e+02
+12 17993     2.005900e+02 2.216900e+02
+15 17993     2.612600e+02 2.840500e+02
+6 17994     4.805200e+02 1.714100e+02
+12 17994     5.625500e+02 1.814500e+02
+6 17995     4.450800e+02 1.704000e+02
+12 17995     5.284500e+02 1.805600e+02
+6 17996     5.690601e+02 1.700200e+02
+8 17996     5.888800e+02 -1.382001e+01
+6 17997     5.658400e+02 1.692500e+02
+10 17997     7.098900e+02 2.109000e+02
+6 17998     4.372900e+02 1.676000e+02
+12 17998     5.213800e+02 1.773800e+02
+6 17999     3.791800e+02 1.670900e+02
+15 17999     7.309900e+02 2.773800e+02
+6 18000     5.158300e+02 1.648100e+02
+12 18000     5.963500e+02 1.751800e+02
+6 18001     3.674000e+02 1.614500e+02
+15 18001     7.183900e+02 2.733800e+02
+6 18002     5.162800e+02 1.614400e+02
+12 18002     5.968300e+02 1.711400e+02
+6 18003     3.647100e+02 1.597500e+02
+10 18003     5.260100e+02 2.515700e+02
+12 18003     4.520699e+02 1.708500e+02
+15 18003     7.148500e+02 2.726600e+02
+6 18004     1.453800e+02 1.575500e+02
+7 18004     9.379999e+01 2.170200e+02
+15 18004     2.213600e+02 2.649400e+02
+6 18005     3.471400e+02 1.565000e+02
+10 18005     5.109900e+02 2.521800e+02
+6 18006     5.539399e+02 1.560500e+02
+12 18006     6.331899e+02 1.659200e+02
+6 18007     5.713500e+02 1.533800e+02
+12 18007     6.499399e+02 1.626500e+02
+6 18008     5.713500e+02 1.533800e+02
+12 18008     6.499399e+02 1.626500e+02
+6 18009     -3.558000e+02 1.519000e+02
+14 18009     3.494800e+02 -5.591000e+02
+6 18010     5.142600e+02 1.519300e+02
+12 18010     5.952300e+02 1.617900e+02
+6 18011     -9.067001e+01 1.492800e+02
+12 18011     -6.194000e+01 2.029000e+02
+6 18012     -5.390015e+00 1.478200e+02
+10 18012     -2.826001e+01 2.643000e+02
+15 18012     4.096997e+01 2.829000e+02
+6 18013     -1.919983e+00 1.477000e+02
+12 18013     2.240002e+01 2.008400e+02
+15 18013     4.439001e+01 2.819100e+02
+6 18014     3.758700e+02 1.456400e+02
+12 18014     4.629399e+02 1.567400e+02
+15 18014     7.244200e+02 2.534400e+02
+6 18015     5.609985e+00 1.440500e+02
+12 18015     2.946997e+01 1.972300e+02
+15 18015     4.991998e+01 2.750800e+02
+6 18016     5.609985e+00 1.440500e+02
+12 18016     2.946997e+01 1.972300e+02
+6 18017     5.005900e+02 1.416900e+02
+8 18017     5.364301e+02 -4.069000e+01
+10 18017     6.451899e+02 2.000900e+02
+6 18018     5.005900e+02 1.416900e+02
+12 18018     5.811801e+02 1.518000e+02
+6 18019     -6.487000e+01 1.415400e+02
+12 18019     -3.889001e+01 1.956300e+02
+15 18019     -1.895001e+01 2.888200e+02
+6 18020     -1.380200e+02 1.408600e+02
+15 18020     -8.152002e+01 3.058200e+02
+6 18021     2.343600e+02 1.392800e+02
+12 18021     2.717600e+02 1.820600e+02
+6 18022     4.367999e+01 1.391000e+02
+10 18022     1.248999e+01 2.451000e+02
+6 18023     3.827100e+02 1.390300e+02
+10 18023     5.393900e+02 2.265700e+02
+12 18023     4.693800e+02 1.501300e+02
+6 18024     3.827100e+02 1.390300e+02
+10 18024     5.393900e+02 2.265700e+02
+12 18024     4.693800e+02 1.501300e+02
+6 18025     5.787900e+02 1.385800e+02
+12 18025     6.567300e+02 1.480100e+02
+6 18026     -2.159003e+01 1.381200e+02
+12 18026     1.830017e+00 1.920200e+02
+6 18027     3.115002e+01 1.373000e+02
+12 18027     5.385999e+01 1.902100e+02
+6 18028     3.115002e+01 1.373000e+02
+12 18028     5.385999e+01 1.902100e+02
+6 18029     3.412300e+02 1.363500e+02
+10 18029     5.038900e+02 2.343600e+02
+12 18029     4.305699e+02 1.480100e+02
+15 18029     6.880000e+02 2.521000e+02
+6 18030     1.434998e+01 1.348900e+02
+15 18030     5.504999e+01 2.621200e+02
+6 18031     9.060999e+01 1.333800e+02
+15 18031     1.391000e+02 2.445700e+02
+6 18032     -9.845999e+01 1.322700e+02
+12 18032     -7.150000e+01 1.866700e+02
+6 18033     4.909000e+02 1.322700e+02
+10 18033     6.345100e+02 1.930800e+02
+15 18033     8.452600e+02 2.054900e+02
+6 18034     4.978400e+02 1.325300e+02
+10 18034     6.414900e+02 1.920400e+02
+15 18034     8.535000e+02 2.043600e+02
+6 18035     -6.903003e+01 1.320700e+02
+10 18035     -8.689001e+01 2.617000e+02
+12 18035     -4.409998e+01 1.863500e+02
+15 18035     -2.726001e+01 2.785200e+02
+6 18036     1.290300e+02 1.236500e+02
+12 18036     1.533500e+02 1.735300e+02
+6 18037     5.433800e+02 1.234900e+02
+12 18037     6.219700e+02 1.332800e+02
+6 18038     5.860800e+02 1.220000e+02
+12 18038     6.638800e+02 1.313000e+02
+6 18039     5.860800e+02 1.220000e+02
+12 18039     6.638800e+02 1.313000e+02
+6 18040     5.476500e+02 1.212600e+02
+12 18040     6.263000e+02 1.310600e+02
+6 18041     -2.821002e+01 1.187300e+02
+12 18041     -6.950012e+00 1.731100e+02
+6 18042     3.822600e+02 1.183500e+02
+10 18042     5.368199e+02 2.069200e+02
+6 18043     4.650100e+02 1.186100e+02
+15 18043     8.156801e+02 1.969500e+02
+6 18044     5.501200e+02 1.182200e+02
+8 18044     5.745900e+02 -5.623001e+01
+12 18044     6.289500e+02 1.280900e+02
+6 18045     -4.414001e+01 1.163100e+02
+12 18045     -2.252002e+01 1.708500e+02
+6 18046     4.572900e+02 1.164900e+02
+15 18046     8.062000e+02 1.976300e+02
+6 18047     5.468500e+02 1.165800e+02
+12 18047     6.256500e+02 1.264800e+02
+6 18048     -1.341300e+02 1.159800e+02
+12 18048     -1.061200e+02 1.708100e+02
+6 18049     -1.341300e+02 1.159800e+02
+12 18049     -1.061200e+02 1.708100e+02
+15 18049     -8.976001e+01 2.752700e+02
+6 18050     2.100000e+02 1.152600e+02
+12 18050     2.405500e+02 1.604000e+02
+6 18051     -5.989001e+01 1.136700e+02
+10 18051     -8.622998e+01 2.412600e+02
+6 18052     -5.989001e+01 1.136700e+02
+10 18052     -8.622998e+01 2.412600e+02
+15 18052     -2.679999e+01 2.545000e+02
+6 18053     4.535601e+02 1.085900e+02
+12 18053     5.362600e+02 1.195900e+02
+6 18054     5.377900e+02 1.054700e+02
+9 18054     3.922600e+02 6.790997e+01
+6 18055     4.090600e+02 1.049800e+02
+12 18055     4.941400e+02 1.164100e+02
+15 18055     7.537900e+02 1.970500e+02
+6 18056     -4.026001e+01 1.045800e+02
+10 18056     -7.308002e+01 2.276700e+02
+15 18056     -1.153998e+01 2.391300e+02
+6 18057     7.748999e+01 1.019400e+02
+10 18057     3.153003e+01 2.006600e+02
+12 18057     9.746002e+01 1.538800e+02
+6 18058     4.266400e+02 1.014500e+02
+10 18058     5.734399e+02 1.796500e+02
+15 18058     7.725300e+02 1.879100e+02
+6 18059     4.266400e+02 1.014500e+02
+10 18059     5.734399e+02 1.796500e+02
+6 18060     3.060900e+02 9.957001e+01
+12 18060     3.561100e+02 1.328900e+02
+6 18061     -3.797998e+01 9.783002e+01
+15 18061     -1.203003e+01 2.306700e+02
+6 18062     5.536200e+02 9.788000e+01
+12 18062     6.317100e+02 1.072800e+02
+6 18063     3.644800e+02 9.775000e+01
+12 18063     4.215601e+02 1.262200e+02
+6 18064     3.556700e+02 9.516998e+01
+12 18064     4.117600e+02 1.238300e+02
+6 18065     4.308000e+02 9.459003e+01
+7 18065     4.294200e+02 1.490800e+02
+10 18065     5.756000e+02 1.716700e+02
+6 18066     4.519500e+02 9.412000e+01
+15 18066     7.978101e+02 1.732400e+02
+6 18067     2.634600e+02 9.285999e+01
+10 18067     2.447900e+02 1.621800e+02
+6 18068     3.124200e+02 9.204999e+01
+12 18068     3.616700e+02 1.257200e+02
+15 18068     4.728300e+02 1.653400e+02
+6 18069     4.307001e+01 9.037000e+01
+10 18069     -4.809998e+00 1.962500e+02
+12 18069     6.103998e+01 1.434200e+02
+15 18069     6.802002e+01 2.033000e+02
+6 18070     -2.414100e+02 8.946997e+01
+12 18070     -1.890700e+02 1.403100e+02
+6 18071     4.565800e+02 8.904999e+01
+10 18071     5.974200e+02 1.605200e+02
+15 18071     8.014600e+02 1.655800e+02
+6 18072     6.923999e+01 8.750000e+01
+10 18072     1.898999e+01 1.880400e+02
+6 18073     1.042100e+02 8.720001e+01
+12 18073     1.243100e+02 1.382000e+02
+6 18074     4.572400e+02 8.633002e+01
+10 18074     5.978800e+02 1.576200e+02
+15 18074     8.018800e+02 1.626200e+02
+6 18075     -3.064800e+02 8.325000e+01
+10 18075     -2.277300e+02 2.756900e+02
+15 18075     -1.861800e+02 2.912900e+02
+6 18076     5.638300e+02 8.058002e+01
+12 18076     6.421500e+02 9.000000e+01
+6 18077     -2.387300e+02 8.007001e+01
+12 18077     -1.889000e+02 1.317400e+02
+6 18078     -3.150024e+00 7.683002e+01
+12 18078     1.365002e+01 1.309600e+02
+6 18079     -4.490000e+02 6.872998e+01
+7 18079     -2.748000e+02 2.114600e+02
+6 18080     -4.490000e+02 6.872998e+01
+7 18080     -2.748000e+02 2.114600e+02
+6 18081     2.551400e+02 6.781000e+01
+12 18081     2.896600e+02 1.087600e+02
+13 18081     6.088101e+02 -2.257900e+02
+6 18082     -2.444100e+02 6.559003e+01
+10 18082     -2.058900e+02 2.421400e+02
+15 18082     -1.617400e+02 2.525800e+02
+6 18083     -3.066998e+01 6.325000e+01
+12 18083     -1.408002e+01 1.181300e+02
+15 18083     -1.582001e+01 1.884800e+02
+6 18084     3.426001e+01 6.262000e+01
+10 18084     -2.046002e+01 1.705000e+02
+15 18084     4.996002e+01 1.730300e+02
+6 18085     -3.258002e+01 6.140997e+01
+10 18085     -7.914001e+01 1.833100e+02
+15 18085     -1.846002e+01 1.868400e+02
+6 18086     -2.473900e+02 6.015997e+01
+10 18086     -2.114600e+02 2.369500e+02
+12 18086     -2.014400e+02 1.136400e+02
+15 18086     -1.681200e+02 2.466600e+02
+6 18087     -3.059900e+02 5.909003e+01
+10 18087     -2.411600e+02 2.514300e+02
+12 18087     -2.474700e+02 1.115800e+02
+6 18088     -2.446800e+02 5.826001e+01
+10 18088     -2.103000e+02 2.343200e+02
+12 18088     -1.991400e+02 1.118700e+02
+6 18089     -2.574000e+02 5.575000e+01
+10 18089     -2.219700e+02 2.347000e+02
+15 18089     -1.802800e+02 2.440900e+02
+6 18090     -1.868200e+02 5.278003e+01
+12 18090     -1.573600e+02 1.083800e+02
+6 18091     6.381000e+01 5.325000e+01
+12 18091     7.965002e+01 1.053400e+02
+15 18091     7.878003e+01 1.547700e+02
+6 18092     -3.541998e+01 5.264001e+01
+15 18092     -2.420001e+01 1.773300e+02
+6 18093     1.770001e+01 4.921997e+01
+12 18093     3.252002e+01 1.026400e+02
+6 18094     5.624500e+02 4.791998e+01
+10 18094     6.876300e+02 9.298999e+01
+6 18095     5.689200e+02 4.434003e+01
+12 18095     6.464301e+02 5.365002e+01
+6 18096     5.689200e+02 4.434003e+01
+12 18096     6.464301e+02 5.365002e+01
+6 18097     -3.420700e+02 4.371002e+01
+15 18097     -2.462500e+02 2.518800e+02
+6 18098     -3.420700e+02 4.371002e+01
+10 18098     -2.798600e+02 2.424600e+02
+15 18098     -2.462500e+02 2.518800e+02
+6 18099     8.583002e+01 4.301001e+01
+12 18099     1.015100e+02 9.419000e+01
+6 18100     9.302002e+01 4.163000e+01
+12 18100     1.083300e+02 9.182001e+01
+6 18101     -2.551800e+02 4.083002e+01
+10 18101     -2.279800e+02 2.193500e+02
+12 18101     -2.130200e+02 9.597998e+01
+15 18101     -1.879400e+02 2.256800e+02
+6 18102     3.856400e+02 4.117999e+01
+12 18102     4.345500e+02 7.112000e+01
+6 18103     -1.321800e+02 4.001001e+01
+9 18103     -6.900000e+01 1.119600e+02
+12 18103     -1.110200e+02 9.629999e+01
+6 18104     1.002700e+02 3.971002e+01
+12 18104     1.164100e+02 9.059998e+01
+6 18105     -2.934000e+02 3.872998e+01
+12 18105     -2.402600e+02 9.247998e+01
+6 18106     -7.446997e+01 3.860999e+01
+15 18106     -6.366998e+01 1.714000e+02
+6 18107     3.690002e+01 3.734003e+01
+15 18107     4.523999e+01 1.432400e+02
+6 18108     -3.910999e+01 3.657001e+01
+12 18108     -2.415002e+01 9.135999e+01
+6 18109     -3.346200e+02 3.502002e+01
+12 18109     -2.794300e+02 9.046002e+01
+6 18110     7.513000e+01 3.490997e+01
+12 18110     8.985999e+01 8.645001e+01
+6 18111     7.513000e+01 3.490997e+01
+12 18111     8.985999e+01 8.645001e+01
+6 18112     -4.427002e+01 3.189001e+01
+12 18112     -2.940002e+01 8.689001e+01
+6 18113     2.761000e+02 2.953998e+01
+12 18113     3.110000e+02 6.894000e+01
+6 18114     1.665900e+02 2.609998e+01
+15 18114     1.959600e+02 1.008600e+02
+6 18115     5.006000e+01 2.209003e+01
+15 18115     5.535999e+01 1.216100e+02
+6 18116     2.509200e+02 2.188000e+01
+15 18116     3.162900e+02 8.094000e+01
+6 18117     6.159998e+01 1.946002e+01
+12 18117     7.519000e+01 7.140002e+01
+6 18118     6.159998e+01 1.946002e+01
+12 18118     7.519000e+01 7.140002e+01
+6 18119     1.392300e+02 1.948999e+01
+8 18119     2.848400e+02 -3.131000e+01
+6 18120     2.635999e+01 1.765997e+01
+12 18120     3.808002e+01 7.023999e+01
+6 18121     1.752500e+02 1.650000e+01
+10 18121     1.114300e+02 9.715002e+01
+15 18121     2.057400e+02 8.801001e+01
+6 18122     5.700012e+00 1.473999e+01
+12 18122     1.882001e+01 6.825000e+01
+6 18123     -1.685600e+02 1.071002e+01
+12 18123     -1.444500e+02 6.735999e+01
+6 18124     -1.685600e+02 1.071002e+01
+12 18124     -1.444500e+02 6.735999e+01
+6 18125     1.989700e+02 9.950012e+00
+15 18125     2.359500e+02 7.603003e+01
+6 18126     1.989700e+02 9.950012e+00
+15 18126     2.359500e+02 7.603003e+01
+6 18127     1.023200e+02 9.530029e+00
+8 18127     2.569800e+02 -3.685999e+01
+6 18128     -1.861900e+02 8.869995e+00
+12 18128     -1.593500e+02 6.522998e+01
+6 18129     3.283200e+02 9.020020e+00
+12 18129     3.657700e+02 4.478003e+01
+6 18130     8.490997e+01 8.039978e+00
+12 18130     9.842999e+01 5.859998e+01
+6 18131     4.165300e+02 7.520020e+00
+10 18131     4.066300e+02 5.014001e+01
+6 18132     2.769000e+01 6.700012e+00
+12 18132     3.922998e+01 5.925000e+01
+6 18133     -1.392500e+02 9.500122e-01
+12 18133     -1.193300e+02 5.728998e+01
+6 18134     1.084000e+02 5.999756e-01
+12 18134     1.235200e+02 4.997998e+01
+6 18135     1.257700e+02 6.300049e-01
+10 18135     5.460999e+01 9.083002e+01
+15 18135     1.385100e+02 8.004001e+01
+6 18136     -2.328900e+02 1.400146e-01
+10 18136     -2.321600e+02 1.733200e+02
+15 18136     -1.930900e+02 1.724200e+02
+6 18137     -6.948999e+01 -7.399902e-01
+8 18137     1.224700e+02 -4.400000e+01
+12 18137     -5.547998e+01 5.441998e+01
+6 18138     3.271900e+02 -6.039978e+00
+12 18138     3.620500e+02 3.010999e+01
+6 18139     3.140015e+00 -6.469971e+00
+9 18139     4.556000e+01 9.244000e+01
+6 18140     8.190002e+00 -7.760010e+00
+12 18140     1.953998e+01 4.571997e+01
+6 18141     3.944000e+01 -1.040997e+01
+12 18141     5.144000e+01 4.167999e+01
+6 18142     -1.170700e+02 -1.291998e+01
+8 18142     8.383002e+01 -5.645999e+01
+6 18143     2.161500e+02 -1.328998e+01
+8 18143     3.453500e+02 -6.465997e+01
+6 18144     3.203003e+01 -1.452002e+01
+8 18144     2.024300e+02 -5.323001e+01
+6 18145     -1.974400e+02 -1.594000e+01
+12 18145     -1.707600e+02 4.095001e+01
+6 18146     -3.208200e+02 -1.690997e+01
+10 18146     -2.936800e+02 1.777700e+02
+15 18146     -2.633400e+02 1.766600e+02
+6 18147     3.250000e+02 -1.723999e+01
+12 18147     3.579700e+02 1.910999e+01
+6 18148     1.373600e+02 -1.901001e+01
+15 18148     1.485900e+02 5.488000e+01
+6 18149     1.631600e+02 -1.921997e+01
+15 18149     1.815000e+02 5.001001e+01
+6 18150     1.631600e+02 -1.921997e+01
+12 18150     1.811200e+02 2.691998e+01
+6 18151     3.366500e+02 -1.939001e+01
+12 18151     3.727200e+02 1.571997e+01
+6 18152     3.209600e+02 -2.092999e+01
+12 18152     3.531600e+02 1.556000e+01
+6 18153     4.036400e+02 -2.185999e+01
+12 18153     4.445100e+02 9.190002e+00
+6 18154     -1.262300e+02 -2.466998e+01
+8 18154     7.639001e+01 -6.662000e+01
+6 18155     2.466300e+02 -2.503998e+01
+8 18155     3.679100e+02 -7.832001e+01
+10 18155     1.894200e+02 4.541998e+01
+13 18155     5.870300e+02 -2.942900e+02
+15 18155     2.994100e+02 2.753003e+01
+6 18156     -7.060999e+01 -2.723999e+01
+12 18156     -5.726001e+01 2.859003e+01
+6 18157     3.689200e+02 -2.682001e+01
+12 18157     4.079900e+02 5.979980e+00
+6 18158     -1.478100e+02 -3.115997e+01
+12 18158     -1.279500e+02 2.526001e+01
+6 18159     3.708100e+02 -3.083002e+01
+10 18159     3.354600e+02 1.750000e+01
+12 18159     4.088500e+02 1.570007e+00
+13 18159     6.936200e+02 -3.179200e+02
+6 18160     -3.390300e+02 -3.154999e+01
+10 18160     -3.157600e+02 1.669900e+02
+15 18160     -2.891700e+02 1.637900e+02
+6 18161     -4.365002e+01 -3.229999e+01
+12 18161     -3.184003e+01 2.209998e+01
+6 18162     -3.210700e+02 -3.713000e+01
+15 18162     -2.768800e+02 1.534800e+02
+6 18163     -3.210700e+02 -3.713000e+01
+10 18163     -3.048700e+02 1.584200e+02
+6 18164     1.064700e+02 -3.744000e+01
+10 18164     2.820001e+01 5.800000e+01
+6 18165     2.213500e+02 -3.800000e+01
+12 18165     2.443900e+02 3.960022e+00
+6 18166     2.326300e+02 -3.770001e+01
+12 18166     2.572900e+02 3.750000e+00
+6 18167     2.017000e+02 -4.776001e+01
+8 18167     3.337600e+02 -9.015997e+01
+6 18168     -1.787500e+02 -4.803998e+01
+12 18168     -1.598900e+02 9.609985e+00
+6 18169     -9.260010e+00 -4.783002e+01
+12 18169     4.799805e-01 5.130005e+00
+6 18170     1.840600e+02 -4.798999e+01
+10 18170     1.099300e+02 3.384003e+01
+15 18170     2.053500e+02 1.310999e+01
+6 18171     -2.738000e+02 -4.985999e+01
+12 18171     -2.414400e+02 9.460022e+00
+6 18172     -7.829999e+01 -5.901001e+01
+12 18172     -6.606000e+01 -3.919983e+00
+6 18173     -7.829999e+01 -5.901001e+01
+12 18173     -6.606000e+01 -3.919983e+00
+6 18174     -6.640997e+01 -6.913000e+01
+8 18174     1.249900e+02 -9.747998e+01
+6 18175     4.045400e+02 -7.023999e+01
+12 18175     4.387900e+02 -3.845001e+01
+6 18176     2.013000e+01 -7.433002e+01
+12 18176     3.034998e+01 -2.306000e+01
+6 18177     -1.228998e+01 -7.991998e+01
+12 18177     -1.650024e+00 -2.772998e+01
+6 18178     -5.727002e+01 -8.147998e+01
+12 18178     -4.621997e+01 -2.752002e+01
+6 18179     -1.866500e+02 -8.191998e+01
+15 18179     -1.882800e+02 6.771002e+01
+6 18180     -4.742999e+01 -8.909003e+01
+12 18180     -3.828998e+01 -3.523999e+01
+6 18181     2.260300e+02 -8.903998e+01
+12 18181     2.430900e+02 -4.766998e+01
+6 18182     2.223700e+02 -9.087000e+01
+12 18182     2.390601e+02 -4.928003e+01
+6 18183     -1.035000e+02 -9.173999e+01
+15 18183     -1.242700e+02 3.284998e+01
+6 18184     2.172100e+02 -9.271002e+01
+12 18184     2.331500e+02 -5.075000e+01
+6 18185     1.971800e+02 -9.384998e+01
+12 18185     2.118900e+02 -5.087000e+01
+6 18186     -2.438000e+01 -9.485999e+01
+12 18186     -1.604999e+01 -4.202002e+01
+6 18187     -2.438000e+01 -9.485999e+01
+12 18187     -1.604999e+01 -4.202002e+01
+6 18188     -2.788600e+02 -9.758002e+01
+12 18188     -2.564700e+02 -3.616998e+01
+6 18189     -2.426001e+01 -1.019500e+02
+12 18189     -1.734998e+01 -4.917999e+01
+6 18190     3.494200e+02 -1.031800e+02
+12 18190     3.766500e+02 -6.856000e+01
+6 18191     3.770900e+02 -1.038100e+02
+7 18191     2.702500e+02 -3.340997e+01
+12 18191     4.076300e+02 -7.203998e+01
+15 18191     4.426400e+02 -9.644000e+01
+6 18192     2.512700e+02 -1.091800e+02
+12 18192     2.703500e+02 -7.000000e+01
+15 18192     2.687400e+02 -7.407001e+01
+6 18193     2.512700e+02 -1.091800e+02
+12 18193     2.703500e+02 -7.000000e+01
+15 18193     2.687400e+02 -7.407001e+01
+6 18194     3.198600e+02 -1.091100e+02
+10 18194     2.383700e+02 -5.469000e+01
+15 18194     3.584700e+02 -9.039001e+01
+6 18195     -2.699000e+02 -1.107000e+02
+15 18195     -2.742100e+02 5.665002e+01
+6 18196     -2.474300e+02 -1.115400e+02
+12 18196     -2.301400e+02 -5.078998e+01
+6 18197     4.030200e+02 -1.117700e+02
+12 18197     4.363800e+02 -8.128998e+01
+6 18198     4.030200e+02 -1.117700e+02
+12 18198     4.363800e+02 -8.128998e+01
+6 18199     -2.780200e+02 -1.162300e+02
+10 18199     -3.107200e+02 7.039001e+01
+12 18199     -2.604600e+02 -5.378003e+01
+15 18199     -2.847500e+02 5.178998e+01
+6 18200     -2.257001e+01 -1.176700e+02
+8 18200     1.580800e+02 -1.296300e+02
+6 18201     -2.454600e+02 -1.181000e+02
+15 18201     -2.558200e+02 4.220001e+01
+6 18202     -2.542200e+02 -1.208000e+02
+10 18202     -2.937100e+02 6.146002e+01
+6 18203     -5.802002e+01 -1.216400e+02
+13 18203     3.375699e+02 -3.184200e+02
+15 18203     -8.984003e+01 -1.259003e+01
+6 18204     6.329999e+01 -1.227500e+02
+12 18204     6.853998e+01 -7.365002e+01
+6 18205     5.004999e+01 -1.229600e+02
+12 18205     5.447998e+01 -7.328003e+01
+6 18206     3.026900e+02 -1.255800e+02
+12 18206     3.237400e+02 -8.937000e+01
+15 18206     3.269399e+02 -1.066200e+02
+6 18207     1.300800e+02 -1.273700e+02
+12 18207     1.379100e+02 -8.183002e+01
+6 18208     1.300800e+02 -1.273700e+02
+12 18208     1.379100e+02 -8.183002e+01
+6 18209     -2.086400e+02 -1.280400e+02
+12 18209     -1.960600e+02 -6.809998e+01
+6 18210     -2.351100e+02 -1.289200e+02
+12 18210     -2.224400e+02 -6.769000e+01
+6 18211     -2.067900e+02 -1.304100e+02
+12 18211     -1.949800e+02 -7.050000e+01
+6 18212     -2.430700e+02 -1.309500e+02
+8 18212     -1.821997e+01 -1.422300e+02
+12 18212     -2.304500e+02 -6.895001e+01
+6 18213     3.321600e+02 -1.313800e+02
+10 18213     2.370400e+02 -8.204999e+01
+15 18213     3.569301e+02 -1.226600e+02
+6 18214     1.519500e+02 -1.320100e+02
+12 18214     1.607100e+02 -8.792999e+01
+6 18215     -2.172300e+02 -1.411000e+02
+12 18215     -2.072800e+02 -8.020001e+01
+15 18215     -2.422600e+02 8.750000e+00
+6 18216     8.419000e+01 -1.412500e+02
+12 18216     8.991998e+01 -9.392999e+01
+15 18216     5.395001e+01 -7.070001e+01
+6 18217     1.025700e+02 -1.420601e+02
+12 18217     1.091100e+02 -9.627002e+01
+6 18218     1.025700e+02 -1.420601e+02
+12 18218     1.091100e+02 -9.627002e+01
+6 18219     2.787600e+02 -1.419800e+02
+12 18219     2.963000e+02 -1.047400e+02
+6 18220     7.828003e+01 -1.443600e+02
+15 18220     4.709003e+01 -7.259003e+01
+6 18221     2.867400e+02 -1.547100e+02
+10 18221     1.789200e+02 -9.642999e+01
+12 18221     3.027500e+02 -1.182400e+02
+15 18221     2.867600e+02 -1.392000e+02
+6 18222     3.310200e+02 -1.578101e+02
+12 18222     3.485000e+02 -1.232800e+02
+6 18223     3.310200e+02 -1.578101e+02
+12 18223     3.485000e+02 -1.232800e+02
+6 18224     -1.763700e+02 -1.610699e+02
+12 18224     -1.713300e+02 -1.014600e+02
+6 18225     -8.539999e+01 -1.645200e+02
+12 18225     -8.203998e+01 -1.094500e+02
+6 18226     2.548500e+02 -1.666500e+02
+12 18226     2.672300e+02 -1.287300e+02
+6 18227     3.923200e+02 -1.694200e+02
+12 18227     4.266200e+02 -1.412300e+02
+6 18228     3.759200e+02 -1.699500e+02
+12 18228     4.098700e+02 -1.405700e+02
+6 18229     -1.997000e+02 -1.726899e+02
+8 18229     1.584998e+01 -1.743200e+02
+9 18229     -1.101400e+02 -4.946002e+01
+6 18230     -8.357999e+01 -1.753101e+02
+12 18230     -8.250000e+01 -1.206800e+02
+6 18231     2.294500e+02 -1.770699e+02
+15 18231     2.048500e+02 -1.516300e+02
+6 18232     1.546700e+02 -1.779500e+02
+12 18232     1.605700e+02 -1.349200e+02
+6 18233     -1.647500e+02 -1.784200e+02
+12 18233     -1.641600e+02 -1.191300e+02
+6 18234     -1.182800e+02 -1.786899e+02
+10 18234     -2.088900e+02 -2.602002e+01
+6 18235     2.008500e+02 -1.784900e+02
+10 18235     8.173999e+01 -1.007500e+02
+6 18236     2.522500e+02 -1.809500e+02
+12 18236     2.627100e+02 -1.431400e+02
+6 18237     -2.614001e+01 -1.819800e+02
+10 18237     -1.301900e+02 -5.066998e+01
+15 18237     -7.628998e+01 -8.757001e+01
+6 18238     2.132300e+02 -1.835000e+02
+10 18238     9.091998e+01 -1.088000e+02
+15 18238     1.824000e+02 -1.543100e+02
+6 18239     -6.213000e+01 -1.838900e+02
+15 18239     -1.144500e+02 -8.056000e+01
+6 18240     5.059998e+00 -1.841500e+02
+12 18240     5.260010e+00 -1.336000e+02
+15 18240     -4.502002e+01 -9.842999e+01
+6 18241     1.917800e+02 -1.843900e+02
+10 18241     7.028003e+01 -1.043600e+02
+15 18241     1.579900e+02 -1.494700e+02
+6 18242     -1.566300e+02 -1.857600e+02
+10 18242     -2.450700e+02 -2.485999e+01
+15 18242     -2.098100e+02 -5.834998e+01
+6 18243     1.141200e+02 -1.857300e+02
+12 18243     1.169900e+02 -1.408000e+02
+6 18244     -1.697200e+02 -1.873900e+02
+10 18244     -2.583800e+02 -2.359998e+01
+6 18245     2.308500e+02 -1.896300e+02
+12 18245     2.392400e+02 -1.510400e+02
+6 18246     2.524000e+02 -1.933300e+02
+7 18246     1.337400e+02 -9.852002e+01
+10 18246     1.348200e+02 -1.248700e+02
+15 18246     2.350200e+02 -1.734100e+02
+6 18247     1.415700e+02 -1.954800e+02
+10 18247     1.558002e+01 -1.042700e+02
+12 18247     1.434800e+02 -1.522300e+02
+15 18247     9.367999e+01 -1.494800e+02
+6 18248     1.586500e+02 -1.979700e+02
+12 18248     1.607100e+02 -1.554900e+02
+6 18249     2.271002e+01 -1.985500e+02
+12 18249     2.059003e+01 -1.490100e+02
+6 18250     1.012700e+02 -1.984800e+02
+15 18250     4.834003e+01 -1.413200e+02
+6 18251     2.194800e+02 -2.015400e+02
+7 18251     1.014000e+02 -1.023600e+02
+12 18251     2.270500e+02 -1.627200e+02
+6 18252     4.095001e+01 -2.032500e+02
+10 18252     -8.122998e+01 -8.828003e+01
+6 18253     2.667999e+01 -2.035200e+02
+12 18253     2.342999e+01 -1.540800e+02
+6 18254     1.094700e+02 -2.058900e+02
+10 18254     -2.014001e+01 -1.072100e+02
+15 18254     5.203998e+01 -1.530500e+02
+6 18255     9.139001e+01 -2.065100e+02
+12 18255     8.958002e+01 -1.605300e+02
+6 18256     2.637400e+02 -2.072800e+02
+12 18256     2.775900e+02 -1.714800e+02
+6 18257     3.311800e+02 -2.142400e+02
+12 18257     3.572200e+02 -1.835100e+02
+6 18258     3.311800e+02 -2.142400e+02
+12 18258     3.572200e+02 -1.835100e+02
+6 18259     3.549988e+00 -2.154000e+02
+12 18259     -2.020020e+00 -1.648800e+02
+6 18260     2.327800e+02 -2.193300e+02
+9 18260     2.424900e+02 -6.744000e+01
+10 18260     1.132900e+02 -1.439500e+02
+15 18260     2.102200e+02 -1.963100e+02
+6 18261     2.327800e+02 -2.193300e+02
+15 18261     2.102200e+02 -1.963100e+02
+6 18262     3.896600e+02 -2.265300e+02
+12 18262     4.258101e+02 -2.004400e+02
+6 18263     6.837000e+01 -2.275601e+02
+12 18263     6.607001e+01 -1.810400e+02
+6 18264     3.866500e+02 -2.279100e+02
+12 18264     4.220500e+02 -2.007800e+02
+6 18265     8.120001e+01 -2.284000e+02
+12 18265     7.971002e+01 -1.827700e+02
+6 18266     1.988800e+02 -2.317500e+02
+12 18266     2.055300e+02 -1.928900e+02
+6 18267     1.988800e+02 -2.317500e+02
+12 18267     2.055300e+02 -1.928900e+02
+6 18268     2.174600e+02 -2.327400e+02
+8 18268     3.495200e+02 -2.305700e+02
+12 18268     2.266000e+02 -1.950600e+02
+6 18269     9.644000e+01 -2.338900e+02
+12 18269     9.629999e+01 -1.894200e+02
+15 18269     3.976001e+01 -1.772500e+02
+6 18270     2.156800e+02 -2.384900e+02
+12 18270     2.249399e+02 -2.011700e+02
+6 18271     3.581200e+02 -2.410000e+02
+12 18271     3.907700e+02 -2.129900e+02
+6 18272     9.803998e+01 -2.446200e+02
+8 18272     2.534800e+02 -2.321500e+02
+9 18272     1.401100e+02 -8.596002e+01
+15 18272     4.319000e+01 -1.890600e+02
+6 18273     1.049200e+02 -2.474200e+02
+7 18273     -1.659973e+00 -1.265000e+02
+9 18273     1.450800e+02 -8.822998e+01
+6 18274     2.054600e+02 -2.472500e+02
+12 18274     2.137400e+02 -2.093100e+02
+6 18275     -9.735999e+01 -2.497300e+02
+8 18275     9.546997e+01 -2.374600e+02
+6 18276     1.656700e+02 -2.614399e+02
+8 18276     3.078600e+02 -2.503600e+02
+6 18277     6.997998e+01 -2.621700e+02
+12 18277     7.059003e+01 -2.170900e+02
+6 18278     9.903003e+01 -2.661600e+02
+8 18278     2.535500e+02 -2.535100e+02
+9 18278     1.407400e+02 -1.070300e+02
+12 18278     1.011300e+02 -2.228900e+02
+6 18279     2.449300e+02 -2.708800e+02
+12 18279     2.593900e+02 -2.363700e+02
+6 18280     2.480800e+02 -2.771600e+02
+12 18280     2.627700e+02 -2.433400e+02
+6 18281     1.500600e+02 -2.784100e+02
+12 18281     1.548800e+02 -2.382300e+02
+15 18281     1.062200e+02 -2.360300e+02
+6 18282     1.522300e+02 -2.802400e+02
+15 18282     1.093400e+02 -2.384300e+02
+6 18283     2.472100e+02 -2.845699e+02
+12 18283     2.620800e+02 -2.505100e+02
+6 18284     9.831000e+01 -2.850500e+02
+9 18284     1.408500e+02 -1.268300e+02
+6 18285     2.357500e+02 -2.962600e+02
+12 18285     2.489800e+02 -2.616800e+02
+6 18286     2.357500e+02 -2.962600e+02
+12 18286     2.489800e+02 -2.616800e+02
+6 18287     2.136400e+02 -2.988900e+02
+12 18287     2.253600e+02 -2.631000e+02
+6 18288     5.871002e+01 -3.063101e+02
+12 18288     6.139001e+01 -2.618900e+02
+6 18289     4.878003e+01 -3.088600e+02
+12 18289     5.125000e+01 -2.636300e+02
+15 18289     -1.859985e+00 -2.378500e+02
+6 18290     -8.620001e+01 -3.176100e+02
+12 18290     -8.115997e+01 -2.643800e+02
+6 18291     -7.875000e+01 -3.224100e+02
+12 18291     -7.453998e+01 -2.695500e+02
+6 18292     8.346002e+01 -3.226801e+02
+12 18292     8.728003e+01 -2.797800e+02
+6 18293     2.855700e+02 -3.231700e+02
+12 18293     3.058000e+02 -2.930100e+02
+6 18294     2.696700e+02 -3.233199e+02
+12 18294     2.881400e+02 -2.914300e+02
+6 18295     8.062000e+01 -3.269900e+02
+12 18295     8.402002e+01 -2.844200e+02
+6 18296     2.531300e+02 -3.290000e+02
+12 18296     2.700300e+02 -2.965500e+02
+6 18297     8.103998e+01 -3.310800e+02
+12 18297     8.416998e+01 -2.884100e+02
+6 18298     -1.022600e+02 -3.330601e+02
+8 18298     8.834998e+01 -3.132000e+02
+6 18299     -2.257001e+01 -3.509200e+02
+12 18299     -1.751001e+01 -3.021100e+02
+6 18300     -1.251800e+02 -3.526100e+02
+12 18300     -1.149700e+02 -2.971900e+02
+6 18301     -3.184003e+01 -3.560300e+02
+12 18301     -2.551001e+01 -3.066800e+02
+6 18302     4.665002e+01 -3.620400e+02
+12 18302     5.217999e+01 -3.174500e+02
+6 18303     -1.709500e+02 -3.769000e+02
+12 18303     -1.563800e+02 -3.186500e+02
+6 18304     3.060300e+02 -4.070200e+02
+12 18304     3.226100e+02 -3.785400e+02
+6 18305     -1.729900e+02 -4.406400e+02
+12 18305     -1.645700e+02 -3.809100e+02
+6 18306     -5.616100e+02 -4.484800e+02
+15 18306     -5.443500e+02 -2.004900e+02
+6 18307     -5.510100e+02 -4.514399e+02
+15 18307     -5.373400e+02 -2.059600e+02
+6 18308     1.738700e+02 -4.545900e+02
+12 18308     1.765500e+02 -4.191300e+02
+6 18309     1.952800e+02 -4.570500e+02
+12 18309     2.006899e+02 -4.230000e+02
+6 18310     1.541400e+02 -4.608500e+02
+12 18310     1.571600e+02 -4.241000e+02
+6 18311     1.634000e+02 -4.626200e+02
+12 18311     1.668700e+02 -4.262800e+02
+6 18312     1.556300e+02 -4.689500e+02
+12 18312     1.585900e+02 -4.320400e+02
+6 18313     1.517800e+02 -4.696200e+02
+12 18313     1.540900e+02 -4.327700e+02
+6 18314     1.156800e+02 -4.763300e+02
+12 18314     1.176100e+02 -4.367400e+02
+6 18315     1.603000e+02 -4.780601e+02
+12 18315     1.630300e+02 -4.416000e+02
+6 18316     1.603000e+02 -4.780601e+02
+12 18316     1.630300e+02 -4.416000e+02
+6 18317     2.047998e+01 -4.842500e+02
+12 18317     2.034998e+01 -4.381100e+02
+6 18318     -4.114100e+02 -4.904200e+02
+12 18318     -3.890900e+02 -4.111000e+02
+6 18319     -4.154600e+02 -4.911600e+02
+12 18319     -3.926000e+02 -4.111100e+02
+6 18320     4.909100e+02 -4.972600e+02
+7 18320     3.192700e+02 -3.733600e+02
+10 18320     3.336801e+02 -4.561700e+02
+6 18321     -3.317900e+02 -5.266801e+02
+10 18321     -3.989700e+02 -2.667100e+02
+15 18321     -3.825200e+02 -3.426800e+02
+6 18322     -2.045300e+02 -5.288700e+02
+12 18322     -2.036800e+02 -4.649800e+02
+6 18323     -1.925500e+02 -5.341400e+02
+12 18323     -1.927200e+02 -4.709700e+02
+6 18324     -1.828300e+02 -5.338101e+02
+12 18324     -1.835800e+02 -4.716300e+02
+6 18325     -1.178600e+02 -5.499600e+02
+12 18325     -1.231500e+02 -4.927900e+02
+6 18326     -2.651500e+02 -5.634200e+02
+12 18326     -2.646900e+02 -4.941600e+02
+15 18326     -3.407500e+02 -4.008100e+02
+6 18327     4.404500e+02 -5.633700e+02
+7 18327     2.579399e+02 -4.234900e+02
+10 18327     2.517300e+02 -5.070800e+02
+6 18328     4.404500e+02 -5.633700e+02
+7 18328     2.579399e+02 -4.234900e+02
+6 18329     3.218600e+02 -5.656200e+02
+7 18329     1.581200e+02 -4.081300e+02
+6 18330     3.203200e+02 -5.716000e+02
+10 18330     1.349000e+02 -4.804000e+02
+12 18330     3.202800e+02 -5.476801e+02
+6 18331     2.887300e+02 -5.752400e+02
+10 18331     1.043400e+02 -4.750300e+02
+6 18332     5.142400e+02 -5.902800e+02
+10 18332     3.089301e+02 -5.565500e+02
+6 18333     5.822400e+02 -5.983000e+02
+10 18333     3.714600e+02 -5.860800e+02
+12 18333     5.922400e+02 -5.944800e+02
+6 18334     -2.363500e+02 -6.024301e+02
+15 18334     -3.331700e+02 -4.504900e+02
+6 18335     3.054500e+02 -6.032100e+02
+10 18335     1.071000e+02 -5.065300e+02
+6 18336     -2.778100e+02 -6.075500e+02
+15 18336     -3.724500e+02 -4.430000e+02
+6 18337     -2.778100e+02 -6.075500e+02
+15 18337     -3.724500e+02 -4.430000e+02
+6 18338     -9.550000e+01 -6.099399e+02
+15 18338     -2.072600e+02 -5.012300e+02
+6 18339     -2.586900e+02 -6.109200e+02
+15 18339     -3.571100e+02 -4.529600e+02
+6 18340     -9.869000e+01 -6.119500e+02
+15 18340     -2.113800e+02 -5.021400e+02
+6 18341     4.696801e+02 -6.140400e+02
+7 18341     2.679900e+02 -4.720100e+02
+10 18341     2.541200e+02 -5.668500e+02
+6 18342     5.492200e+02 -6.198300e+02
+7 18342     3.333900e+02 -4.890000e+02
+10 18342     3.278700e+02 -5.972500e+02
+12 18342     5.540400e+02 -6.146500e+02
+6 18343     4.545400e+02 -6.237700e+02
+7 18343     2.521500e+02 -4.780900e+02
+10 18343     2.345900e+02 -5.718900e+02
+6 18344     -2.496000e+02 -6.334900e+02
+7 18344     -3.095600e+02 -3.797100e+02
+9 18344     -1.275500e+02 -4.337200e+02
+6 18345     4.845800e+02 -6.391200e+02
+10 18345     2.554500e+02 -5.965000e+02
+6 18346     5.105100e+02 -6.398400e+02
+10 18346     2.798500e+02 -6.051100e+02
+6 18347     -4.909973e+00 -6.430100e+02
+12 18347     -2.353998e+01 -5.951801e+02
+6 18348     -4.123800e+02 -6.529301e+02
+10 18348     -5.115700e+02 -3.596300e+02
+15 18348     -5.140000e+02 -4.505601e+02
+6 18349     5.578600e+02 -6.536700e+02
+7 18349     3.310000e+02 -5.195300e+02
+6 18350     4.939399e+02 -6.602500e+02
+7 18350     2.749500e+02 -5.158000e+02
+6 18351     -9.167001e+01 -6.640800e+02
+7 18351     -1.990700e+02 -4.285400e+02
+6 18352     3.090300e+02 -6.657900e+02
+7 18352     1.194100e+02 -4.918199e+02
+6 18353     3.142000e+02 -6.772100e+02
+7 18353     1.203200e+02 -5.021400e+02
+6 18354     -4.299600e+02 -6.815100e+02
+10 18354     -5.364100e+02 -3.808400e+02
+15 18354     -5.425700e+02 -4.758300e+02
+6 18355     -2.386700e+02 -6.847100e+02
+7 18355     -3.143600e+02 -4.227200e+02
+10 18355     -3.911300e+02 -4.321801e+02
+15 18355     -3.756200e+02 -5.361100e+02
+6 18356     2.020000e+02 -6.889600e+02
+10 18356     -2.813000e+01 -5.590900e+02
+6 18357     5.213500e+02 -7.091600e+02
+7 18357     2.834800e+02 -5.619600e+02
+6 18358     3.423500e+02 -7.186200e+02
+7 18358     1.315700e+02 -5.419800e+02
+6 18359     3.757300e+02 -7.324800e+02
+7 18359     1.553600e+02 -5.590400e+02
+6 18360     2.230900e+02 -7.828600e+02
+7 18360     1.658002e+01 -5.764301e+02
+6 18361     -1.649800e+02 -8.003800e+02
+7 18361     -2.893700e+02 -5.267500e+02
+6 18362     4.239990e+00 -8.032400e+02
+7 18362     -1.612900e+02 -5.574500e+02
+6 18363     3.619995e+00 -8.103800e+02
+7 18363     -1.635100e+02 -5.627000e+02
+9 18363     1.159400e+02 -5.390900e+02
+10 18363     -2.500400e+02 -6.125200e+02
+6 18364     -5.284500e+02 8.440300e+02
+11 18364     1.341800e+02 -6.142999e+01
+6 18365     -5.284500e+02 8.440300e+02
+11 18365     1.341800e+02 -6.142999e+01
+6 18366     -3.504999e+01 8.407500e+02
+11 18366     5.335800e+02 -8.295001e+01
+6 18367     2.632200e+02 8.316000e+02
+8 18367     3.497300e+02 4.206200e+02
+9 18367     1.419900e+02 5.548000e+02
+6 18368     -1.652300e+02 8.034300e+02
+14 18368     6.136899e+02 -4.645001e+01
+6 18369     -4.770001e+01 7.990000e+02
+9 18369     -1.034300e+02 4.474900e+02
+6 18370     3.401500e+02 7.961900e+02
+8 18370     4.030900e+02 4.024800e+02
+6 18371     -2.384100e+02 7.854200e+02
+8 18371     8.900024e+00 3.477400e+02
+6 18372     -7.525000e+01 7.774200e+02
+11 18372     4.970500e+02 -1.222800e+02
+14 18372     6.945900e+02 -7.169000e+01
+6 18373     2.509100e+02 7.659900e+02
+8 18373     3.413100e+02 3.763500e+02
+6 18374     -3.739990e+00 7.645400e+02
+11 18374     5.604100e+02 -1.349800e+02
+6 18375     -2.686200e+02 7.600600e+02
+14 18375     5.183600e+02 -7.169000e+01
+6 18376     4.151400e+02 7.480600e+02
+8 18376     4.605601e+02 3.992100e+02
+6 18377     -3.549988e+00 7.478100e+02
+11 18377     5.599100e+02 -1.471100e+02
+6 18378     2.789900e+02 7.452100e+02
+8 18378     3.612300e+02 3.644900e+02
+9 18378     1.562200e+02 4.955900e+02
+11 18378     6.705699e+02 -1.812400e+02
+6 18379     -2.720700e+02 7.436700e+02
+14 18379     5.140900e+02 -8.316998e+01
+6 18380     -3.566500e+02 7.429200e+02
+9 18380     -3.124000e+02 4.404900e+02
+11 18380     2.595800e+02 -1.303800e+02
+6 18381     1.977500e+02 7.391400e+02
+8 18381     3.041300e+02 3.547700e+02
+6 18382     3.946300e+02 7.324800e+02
+9 18382     2.521100e+02 5.268900e+02
+6 18383     -2.058800e+02 7.280800e+02
+8 18383     2.882001e+01 3.070400e+02
+9 18383     -2.095000e+02 4.132800e+02
+6 18384     3.804200e+02 7.196900e+02
+8 18384     4.365500e+02 3.777900e+02
+6 18385     -2.488600e+02 7.144800e+02
+13 18385     3.690800e+02 2.814200e+02
+6 18386     1.971400e+02 7.075900e+02
+8 18386     3.045200e+02 3.329300e+02
+6 18387     -1.308600e+02 7.065700e+02
+14 18387     6.376899e+02 -1.243600e+02
+6 18388     -4.460200e+02 7.045700e+02
+14 18388     3.619399e+02 -9.865997e+01
+6 18389     1.640300e+02 7.038700e+02
+9 18389     7.288000e+01 4.532100e+02
+6 18390     3.173500e+02 7.033800e+02
+9 18390     1.863900e+02 4.701200e+02
+6 18391     4.719971e+00 6.962200e+02
+8 18391     1.667700e+02 2.649400e+02
+6 18392     5.317400e+02 6.960900e+02
+9 18392     3.539900e+02 5.157200e+02
+6 18393     -1.846002e+01 6.939700e+02
+9 18393     -8.192999e+01 3.692400e+02
+14 18393     7.428800e+02 -1.436900e+02
+6 18394     -3.689001e+01 6.918500e+02
+8 18394     1.401800e+02 2.671900e+02
+6 18395     -3.905900e+02 6.904200e+02
+13 18395     2.657400e+02 2.730400e+02
+14 18395     4.059900e+02 -1.145500e+02
+6 18396     -5.875900e+02 6.869500e+02
+8 18396     -2.239000e+02 3.184800e+02
+6 18397     4.421300e+02 6.870100e+02
+9 18397     2.892100e+02 4.995200e+02
+6 18398     4.421300e+02 6.870100e+02
+9 18398     2.892100e+02 4.995200e+02
+6 18399     -9.579999e+01 6.857800e+02
+9 18399     -1.343300e+02 3.711900e+02
+6 18400     -2.565900e+02 6.770000e+02
+8 18400     -6.369995e+00 2.791000e+02
+9 18400     -2.442300e+02 3.828000e+02
+6 18401     2.179500e+02 6.757400e+02
+8 18401     3.193300e+02 3.130700e+02
+9 18401     1.136200e+02 4.389500e+02
+11 18401     6.284301e+02 -2.273000e+02
+6 18402     -4.363600e+02 6.621400e+02
+14 18402     3.653000e+02 -1.325300e+02
+6 18403     -5.438200e+02 6.612800e+02
+8 18403     -1.966200e+02 2.986100e+02
+6 18404     3.940400e+02 6.604000e+02
+8 18404     4.479100e+02 3.369400e+02
+9 18404     2.552100e+02 4.749100e+02
+11 18404     7.205800e+02 -2.644200e+02
+6 18405     -1.448500e+02 6.596500e+02
+12 18405     1.916998e+01 6.188800e+02
+6 18406     3.677100e+02 6.579400e+02
+8 18406     4.288700e+02 3.331700e+02
+6 18407     -3.244400e+02 6.565200e+02
+9 18407     -2.905400e+02 3.741900e+02
+6 18408     4.008700e+02 6.563900e+02
+8 18408     4.528600e+02 3.347300e+02
+6 18409     4.397600e+02 6.543700e+02
+8 18409     4.798500e+02 3.352200e+02
+9 18409     2.890601e+02 4.752000e+02
+6 18410     -1.035100e+02 6.488200e+02
+8 18410     9.469000e+01 2.455600e+02
+6 18411     -1.266600e+02 6.394000e+02
+9 18411     -1.546400e+02 3.411100e+02
+12 18411     3.658002e+01 5.993600e+02
+6 18412     -1.434100e+02 6.354700e+02
+12 18412     2.010999e+01 5.968600e+02
+6 18413     -1.352900e+02 6.348500e+02
+12 18413     2.808002e+01 5.959500e+02
+6 18414     1.843400e+02 6.333400e+02
+9 18414     9.060999e+01 4.038100e+02
+6 18415     -1.422400e+02 6.321500e+02
+12 18415     2.209998e+01 5.940700e+02
+6 18416     -1.453000e+02 6.310900e+02
+12 18416     1.895001e+01 5.931400e+02
+6 18417     -1.386300e+02 6.299400e+02
+12 18417     2.490002e+01 5.918400e+02
+6 18418     4.484301e+02 6.248000e+02
+9 18418     2.972500e+02 4.557200e+02
+6 18419     3.551200e+02 6.188600e+02
+8 18419     4.210200e+02 3.052800e+02
+6 18420     5.050500e+02 6.175100e+02
+9 18420     3.393500e+02 4.564800e+02
+6 18421     -1.181600e+02 6.137000e+02
+12 18421     4.469000e+01 5.766400e+02
+6 18422     4.530900e+02 6.117500e+02
+12 18422     5.329100e+02 6.213500e+02
+6 18423     4.530900e+02 6.117500e+02
+12 18423     5.329100e+02 6.213500e+02
+6 18424     4.757900e+02 6.103600e+02
+9 18424     3.182900e+02 4.480000e+02
+12 18424     5.564301e+02 6.197100e+02
+6 18425     -5.665997e+01 6.057800e+02
+8 18425     1.255500e+02 2.110200e+02
+12 18425     1.047700e+02 5.658700e+02
+6 18426     4.367600e+02 6.038200e+02
+12 18426     5.190400e+02 6.125800e+02
+6 18427     -2.289000e+02 6.022600e+02
+12 18427     -6.312000e+01 5.707500e+02
+6 18428     -4.387100e+02 6.013600e+02
+8 18428     -1.296400e+02 2.478900e+02
+12 18428     -2.658100e+02 5.791300e+02
+6 18429     3.766700e+02 6.006300e+02
+9 18429     2.449600e+02 4.291300e+02
+6 18430     -9.720001e+01 5.956200e+02
+8 18430     9.825000e+01 2.081400e+02
+12 18430     6.504999e+01 5.587200e+02
+6 18431     4.496000e+02 5.948600e+02
+9 18431     3.001400e+02 4.329800e+02
+12 18431     5.316801e+02 6.029000e+02
+6 18432     4.607600e+02 5.918400e+02
+7 18432     4.855900e+02 5.708600e+02
+9 18432     3.079800e+02 4.323900e+02
+6 18433     4.961200e+02 5.902300e+02
+8 18433     5.235601e+02 2.951400e+02
+9 18433     3.345300e+02 4.354700e+02
+6 18434     4.848600e+02 5.892100e+02
+7 18434     5.047500e+02 5.666000e+02
+8 18434     5.152400e+02 2.935700e+02
+9 18434     3.261100e+02 4.334900e+02
+12 18434     5.652800e+02 5.994400e+02
+6 18435     4.495699e+02 5.826600e+02
+9 18435     3.002200e+02 4.247200e+02
+12 18435     5.316899e+02 5.914200e+02
+6 18436     1.906400e+02 5.810100e+02
+8 18436     3.008800e+02 2.457200e+02
+9 18436     9.695001e+01 3.664400e+02
+11 18436     6.095300e+02 -2.961300e+02
+12 18436     3.000100e+02 5.691500e+02
+6 18437     -5.111400e+02 5.757300e+02
+12 18437     -3.349500e+02 5.588800e+02
+6 18438     -1.915100e+02 5.750800e+02
+12 18438     -2.613000e+01 5.447300e+02
+14 18438     5.709100e+02 -2.242500e+02
+6 18439     -3.788500e+02 5.726900e+02
+9 18439     -3.286100e+02 3.187300e+02
+6 18440     3.270700e+02 5.582800e+02
+8 18440     3.982200e+02 2.383500e+02
+9 18440     2.004500e+02 3.658100e+02
+6 18441     -4.298700e+02 5.552800e+02
+12 18441     -2.569900e+02 5.366900e+02
+14 18441     3.584700e+02 -2.152100e+02
+6 18442     4.516801e+02 5.524900e+02
+7 18442     4.754301e+02 5.364900e+02
+12 18442     5.336400e+02 5.615200e+02
+6 18443     3.760200e+02 5.456900e+02
+8 18443     4.374100e+02 2.545700e+02
+9 18443     2.475100e+02 3.885900e+02
+12 18443     4.611000e+02 5.521300e+02
+6 18444     3.462600e+02 5.441500e+02
+9 18444     2.249000e+02 3.835900e+02
+6 18445     4.426700e+02 5.367800e+02
+7 18445     4.672900e+02 5.240500e+02
+10 18445     6.530800e+02 6.202200e+02
+6 18446     -3.004100e+02 5.333100e+02
+12 18446     -1.318600e+02 5.119100e+02
+6 18447     4.418800e+02 5.294700e+02
+8 18447     4.849301e+02 2.477700e+02
+12 18447     5.242200e+02 5.379500e+02
+6 18448     -4.255300e+02 5.278200e+02
+7 18448     -1.800500e+02 5.702800e+02
+6 18449     3.937100e+02 5.246200e+02
+9 18449     2.615900e+02 3.748000e+02
+6 18450     3.937100e+02 5.246200e+02
+9 18450     2.615900e+02 3.748000e+02
+12 18450     4.783600e+02 5.318500e+02
+6 18451     4.512100e+02 5.221300e+02
+9 18451     3.045300e+02 3.800600e+02
+6 18452     4.512100e+02 5.221300e+02
+9 18452     3.045300e+02 3.800600e+02
+6 18453     -3.093900e+02 5.188200e+02
+12 18453     -1.407700e+02 4.991800e+02
+6 18454     4.305200e+02 5.173300e+02
+10 18454     6.382300e+02 6.004800e+02
+12 18454     5.126600e+02 5.256400e+02
+6 18455     4.407900e+02 5.117800e+02
+10 18455     6.471000e+02 5.925900e+02
+12 18455     5.237100e+02 5.204300e+02
+6 18456     2.559100e+02 5.104700e+02
+9 18456     1.486700e+02 3.217900e+02
+6 18457     5.119000e+01 5.074100e+02
+7 18457     2.240800e+02 5.249300e+02
+6 18458     2.612800e+02 5.072700e+02
+7 18458     3.420400e+02 5.111800e+02
+8 18458     3.511000e+02 1.990000e+02
+6 18459     -1.810600e+02 5.047900e+02
+14 18459     5.744700e+02 -2.835300e+02
+6 18460     -5.625000e+02 5.041900e+02
+12 18460     -3.843100e+02 4.966300e+02
+6 18461     -5.625000e+02 5.041900e+02
+12 18461     -3.843100e+02 4.966300e+02
+6 18462     3.988900e+02 4.996600e+02
+10 18462     6.051300e+02 5.869200e+02
+6 18463     -4.437600e+02 4.964400e+02
+12 18463     -2.704200e+02 4.849700e+02
+6 18464     -2.110800e+02 4.925200e+02
+12 18464     -4.528998e+01 4.708000e+02
+6 18465     -5.415200e+02 4.854400e+02
+9 18465     -4.441400e+02 2.700000e+02
+12 18465     -3.643800e+02 4.787700e+02
+6 18466     2.146200e+02 4.854300e+02
+7 18466     3.055000e+02 4.964100e+02
+8 18466     3.180400e+02 1.802700e+02
+9 18466     1.181700e+02 2.979000e+02
+10 18466     4.734100e+02 6.123600e+02
+6 18467     -5.311000e+02 4.805300e+02
+12 18467     -3.547200e+02 4.738000e+02
+6 18468     -5.311000e+02 4.805300e+02
+12 18468     -3.547200e+02 4.738000e+02
+6 18469     3.440200e+02 4.747200e+02
+9 18469     2.266000e+02 3.310400e+02
+6 18470     3.362800e+02 4.713000e+02
+7 18470     3.789000e+02 4.750500e+02
+6 18471     -5.387600e+02 4.624000e+02
+12 18471     -3.619300e+02 4.579600e+02
+6 18472     -5.667700e+02 4.523000e+02
+12 18472     -3.887100e+02 4.498000e+02
+6 18473     -5.231200e+02 4.497900e+02
+12 18473     -3.511700e+02 4.477500e+02
+6 18474     -4.637000e+02 4.370700e+02
+12 18474     -2.900200e+02 4.320500e+02
+6 18475     -4.523600e+02 4.346600e+02
+7 18475     -2.065500e+02 4.987600e+02
+9 18475     -3.809000e+02 2.215900e+02
+6 18476     3.281400e+02 4.311900e+02
+12 18476     4.167300e+02 4.379400e+02
+6 18477     -4.727800e+02 4.307700e+02
+7 18477     -2.238100e+02 4.967700e+02
+9 18477     -3.951000e+02 2.203900e+02
+13 18477     1.861200e+02 1.110800e+02
+14 18477     3.076700e+02 -3.078400e+02
+6 18478     3.806600e+02 4.303700e+02
+9 18478     2.559100e+02 3.026600e+02
+6 18479     1.432800e+02 4.299200e+02
+10 18479     4.036899e+02 5.668800e+02
+12 18479     2.580100e+02 4.240300e+02
+6 18480     4.714100e+02 4.255200e+02
+8 18480     5.096100e+02 1.738700e+02
+9 18480     3.248500e+02 3.094700e+02
+6 18481     4.175000e+02 4.180300e+02
+9 18481     2.849700e+02 2.973500e+02
+12 18481     5.017900e+02 4.264600e+02
+6 18482     4.220800e+02 4.173100e+02
+10 18482     6.152000e+02 4.953800e+02
+15 18482     8.154900e+02 5.669800e+02
+6 18483     4.324000e+02 4.114600e+02
+12 18483     5.156801e+02 4.201700e+02
+6 18484     4.414700e+02 4.114100e+02
+7 18484     4.585500e+02 4.142900e+02
+8 18484     4.878400e+02 1.608000e+02
+6 18485     1.822800e+02 4.057800e+02
+7 18485     2.769000e+02 4.330500e+02
+8 18485     2.956500e+02 1.204800e+02
+10 18485     4.343900e+02 5.372800e+02
+12 18485     2.933199e+02 4.017800e+02
+6 18486     2.213500e+02 4.014000e+02
+12 18486     3.287100e+02 3.984000e+02
+6 18487     4.204700e+02 3.987900e+02
+7 18487     4.411300e+02 4.054000e+02
+10 18487     6.098600e+02 4.770000e+02
+6 18488     3.351900e+02 3.981400e+02
+7 18488     3.739800e+02 4.132700e+02
+8 18488     4.101700e+02 1.441800e+02
+9 18488     2.230699e+02 2.713500e+02
+12 18488     4.241600e+02 4.052100e+02
+6 18489     4.042000e+02 3.952700e+02
+7 18489     4.278600e+02 4.042100e+02
+8 18489     4.604399e+02 1.466200e+02
+6 18490     4.199600e+02 3.924400e+02
+12 18490     5.038400e+02 4.016000e+02
+6 18491     1.584200e+02 3.860000e+02
+7 18491     2.581700e+02 4.186200e+02
+6 18492     1.584200e+02 3.860000e+02
+7 18492     2.581700e+02 4.186200e+02
+6 18493     5.224301e+02 3.850900e+02
+12 18493     6.030400e+02 3.955000e+02
+6 18494     -4.277900e+02 3.816600e+02
+10 18494     -1.029400e+02 6.058000e+02
+12 18494     -2.554600e+02 3.803500e+02
+6 18495     4.433300e+02 3.818200e+02
+8 18495     4.887800e+02 1.396200e+02
+9 18495     3.064000e+02 2.727200e+02
+12 18495     5.265601e+02 3.909300e+02
+6 18496     2.729600e+02 3.803100e+02
+8 18496     3.609400e+02 1.077600e+02
+10 18496     5.096100e+02 4.955100e+02
+12 18496     3.761899e+02 3.788700e+02
+6 18497     1.339200e+02 3.780300e+02
+7 18497     2.397900e+02 4.139100e+02
+13 18497     6.041801e+02 2.101001e+01
+14 18497     8.382500e+02 -4.398600e+02
+15 18497     5.509700e+02 5.865400e+02
+6 18498     1.457800e+02 3.758200e+02
+7 18498     2.482400e+02 4.110600e+02
+15 18498     5.626200e+02 5.821000e+02
+6 18499     -5.044900e+02 3.682800e+02
+9 18499     -4.186000e+02 1.779100e+02
+6 18500     -2.033400e+02 3.560400e+02
+12 18500     -5.395001e+01 3.544700e+02
+6 18501     -4.074100e+02 3.553000e+02
+9 18501     -3.476200e+02 1.567700e+02
+6 18502     1.528100e+02 3.472500e+02
+7 18502     2.520500e+02 3.874600e+02
+14 18502     8.544800e+02 -4.714600e+02
+15 18502     5.659800e+02 5.478700e+02
+6 18503     -2.051500e+02 3.463300e+02
+12 18503     -5.639001e+01 3.461900e+02
+6 18504     4.241000e+02 3.445200e+02
+8 18504     4.764000e+02 1.102000e+02
+10 18504     6.059000e+02 4.205000e+02
+12 18504     5.078800e+02 3.540200e+02
+15 18504     8.062000e+02 4.770900e+02
+6 18505     4.305200e+02 3.419600e+02
+12 18505     5.141600e+02 3.507300e+02
+15 18505     8.127400e+02 4.726900e+02
+6 18506     -2.386000e+02 3.394400e+02
+10 18506     5.756000e+01 5.416800e+02
+12 18506     -8.726001e+01 3.407600e+02
+6 18507     -2.386000e+02 3.394400e+02
+10 18507     5.756000e+01 5.416800e+02
+12 18507     -8.726001e+01 3.407600e+02
+6 18508     -5.638500e+02 3.379900e+02
+14 18508     2.194399e+02 -3.703900e+02
+6 18509     -5.697000e+02 3.366900e+02
+11 18509     6.046997e+01 -3.751100e+02
+6 18510     -5.697000e+02 3.366900e+02
+12 18510     -3.912400e+02 3.452500e+02
+6 18511     1.440300e+02 3.350500e+02
+15 18511     5.553199e+02 5.352400e+02
+6 18512     4.697100e+02 3.349300e+02
+10 18512     6.450500e+02 4.007900e+02
+12 18512     5.522400e+02 3.447500e+02
+15 18512     8.544200e+02 4.543500e+02
+6 18513     1.510000e+02 3.343000e+02
+15 18513     5.621600e+02 5.327900e+02
+6 18514     -5.826400e+02 3.294400e+02
+9 18514     -4.759900e+02 1.530900e+02
+6 18515     -3.005700e+02 3.031200e+02
+7 18515     -1.026100e+02 3.868400e+02
+14 18515     4.322500e+02 -4.372400e+02
+6 18516     2.582100e+02 3.033800e+02
+12 18516     3.630500e+02 3.045100e+02
+6 18517     3.389000e+02 3.026600e+02
+8 18517     4.138200e+02 7.279001e+01
+12 18517     4.277400e+02 3.116000e+02
+6 18518     4.122500e+02 2.874800e+02
+12 18518     4.969900e+02 2.970300e+02
+6 18519     4.122500e+02 2.874800e+02
+12 18519     4.969900e+02 2.970300e+02
+6 18520     -5.453400e+02 2.863000e+02
+8 18520     -2.153600e+02 4.189001e+01
+6 18521     -5.210022e+00 2.819500e+02
+13 18521     4.902800e+02 -3.289001e+01
+14 18521     6.940200e+02 -5.053199e+02
+6 18522     4.174900e+02 2.744600e+02
+9 18522     2.915601e+02 1.857600e+02
+6 18523     3.899200e+02 2.705400e+02
+9 18523     2.708101e+02 1.795600e+02
+12 18523     4.761100e+02 2.802000e+02
+15 18523     7.571899e+02 3.944500e+02
+6 18524     -2.391400e+02 2.570400e+02
+10 18524     1.839001e+01 4.598300e+02
+11 18524     2.642500e+02 -4.804300e+02
+6 18525     -2.681000e+02 2.560600e+02
+11 18525     2.440100e+02 -4.767000e+02
+6 18526     -2.432200e+02 2.540300e+02
+14 18526     4.703400e+02 -4.892200e+02
+6 18527     -2.502200e+02 2.491600e+02
+10 18527     5.460022e+00 4.537800e+02
+12 18527     -1.127000e+02 2.631400e+02
+6 18528     4.574301e+02 2.475700e+02
+12 18528     5.403300e+02 2.571500e+02
+6 18529     5.567800e+02 2.399300e+02
+9 18529     3.991000e+02 1.775200e+02
+12 18529     6.354000e+02 2.502900e+02
+6 18530     3.173500e+02 2.385400e+02
+10 18530     4.958500e+02 3.384100e+02
+6 18531     3.173500e+02 2.385400e+02
+7 18531     3.514700e+02 2.808900e+02
+10 18531     4.958500e+02 3.384100e+02
+12 18531     4.076000e+02 2.483400e+02
+15 18531     6.767100e+02 3.759700e+02
+6 18532     -4.807500e+02 2.343000e+02
+10 18532     -1.964800e+02 4.728100e+02
+15 18532     -1.400100e+02 5.186600e+02
+6 18533     -2.897400e+02 2.306500e+02
+10 18533     -3.638000e+01 4.417900e+02
+6 18534     -7.066998e+01 2.252900e+02
+14 18534     5.592300e+02 -5.489301e+02
+6 18535     -3.086700e+02 2.215600e+02
+14 18535     4.066700e+02 -5.063900e+02
+6 18536     4.530900e+02 2.200700e+02
+8 18536     4.993101e+02 1.729001e+01
+9 18536     3.221100e+02 1.474700e+02
+10 18536     6.133500e+02 2.884200e+02
+12 18536     5.363000e+02 2.299800e+02
+13 18536     8.273500e+02 -1.340500e+02
+6 18537     -2.975500e+02 2.130000e+02
+7 18537     -1.247000e+02 3.148400e+02
+10 18537     -5.154999e+01 4.256500e+02
+11 18537     2.051300e+02 -5.043800e+02
+14 18537     4.139900e+02 -5.161100e+02
+6 18538     5.599100e+02 2.112600e+02
+8 18538     5.798400e+02 1.737000e+01
+10 18538     7.112500e+02 2.538500e+02
+12 18538     6.393600e+02 2.205700e+02
+6 18539     5.599100e+02 2.112600e+02
+8 18539     5.798400e+02 1.737000e+01
+6 18540     -2.540800e+02 2.100100e+02
+7 18540     -9.204999e+01 3.090200e+02
+10 18540     -1.559003e+01 4.158200e+02
+14 18540     4.505400e+02 -5.265000e+02
+6 18541     3.893900e+02 2.094700e+02
+15 18541     7.487200e+02 3.243400e+02
+6 18542     3.429700e+02 2.049200e+02
+7 18542     3.691801e+02 2.506700e+02
+6 18543     -1.249800e+02 2.014400e+02
+14 18543     5.063400e+02 -5.606400e+02
+6 18544     4.360900e+02 1.959700e+02
+8 18544     4.869800e+02 -2.299988e+00
+6 18545     3.652900e+02 1.816000e+02
+12 18545     4.531200e+02 1.921700e+02
+6 18546     -3.678500e+02 1.807800e+02
+10 18546     -1.259700e+02 4.052300e+02
+6 18547     5.174900e+02 1.776600e+02
+8 18547     5.491100e+02 -1.123001e+01
+9 18547     3.735000e+02 1.224700e+02
+6 18548     5.155200e+02 1.750900e+02
+8 18548     5.477400e+02 -1.353000e+01
+12 18548     5.959500e+02 1.846500e+02
+6 18549     5.155200e+02 1.750900e+02
+15 18549     8.792800e+02 2.496700e+02
+6 18550     5.563500e+02 1.747500e+02
+8 18550     5.777400e+02 -1.145999e+01
+9 18550     4.028400e+02 1.252100e+02
+6 18551     5.563500e+02 1.747500e+02
+8 18551     5.777400e+02 -1.145999e+01
+9 18551     4.028400e+02 1.252100e+02
+6 18552     5.787600e+02 1.672700e+02
+12 18552     6.571700e+02 1.768800e+02
+6 18553     3.789000e+02 1.634100e+02
+12 18553     4.657400e+02 1.743800e+02
+6 18554     -1.256000e+02 1.583600e+02
+12 18554     -9.265997e+01 2.116300e+02
+6 18555     -3.971300e+02 1.561000e+02
+12 18555     -2.602600e+02 1.848300e+02
+6 18556     -1.341000e+02 1.516300e+02
+12 18556     -1.009800e+02 2.053900e+02
+6 18557     3.883400e+02 1.477600e+02
+12 18557     4.747200e+02 1.592900e+02
+6 18558     3.789000e+02 1.475500e+02
+15 18558     7.280300e+02 2.546200e+02
+6 18559     5.585900e+02 1.426300e+02
+12 18559     6.374000e+02 1.519800e+02
+6 18560     5.286300e+02 1.402800e+02
+8 18560     5.581801e+02 -3.998999e+01
+9 18560     3.845500e+02 9.364999e+01
+10 18560     6.710500e+02 1.914900e+02
+12 18560     6.084301e+02 1.500500e+02
+6 18561     5.337300e+02 1.314900e+02
+12 18561     6.134900e+02 1.414600e+02
+6 18562     -2.305700e+02 1.306100e+02
+13 18562     2.706801e+02 -1.158800e+02
+6 18563     -2.305700e+02 1.306100e+02
+13 18563     2.706801e+02 -1.158800e+02
+6 18564     5.345300e+02 1.280600e+02
+12 18564     6.137600e+02 1.380000e+02
+6 18565     -2.349000e+02 1.270800e+02
+12 18565     -1.743900e+02 1.743500e+02
+13 18565     2.680100e+02 -1.177800e+02
+6 18566     -2.311800e+02 1.267500e+02
+13 18566     2.700900e+02 -1.185300e+02
+6 18567     1.805900e+02 1.191000e+02
+13 18567     5.505900e+02 -1.765500e+02
+6 18568     -4.062200e+02 1.158100e+02
+13 18568     1.807100e+02 -1.030000e+02
+14 18568     2.979600e+02 -5.813300e+02
+6 18569     -2.936400e+02 1.104400e+02
+7 18569     -2.178300e+02 2.237500e+02
+12 18569     -2.244100e+02 1.579800e+02
+15 18569     -1.561400e+02 3.210600e+02
+6 18570     4.993400e+02 1.074400e+02
+8 18570     5.359301e+02 -6.764001e+01
+10 18570     6.389800e+02 1.673300e+02
+15 18570     8.509301e+02 1.747700e+02
+6 18571     2.017999e+01 1.035500e+02
+8 18571     1.929600e+02 3.331000e+01
+10 18571     -2.204999e+01 2.139500e+02
+15 18571     4.790997e+01 2.239500e+02
+6 18572     -2.388300e+02 9.859998e+01
+12 18572     -1.844800e+02 1.485700e+02
+6 18573     -2.394200e+02 9.475000e+01
+7 18573     -1.935800e+02 2.042500e+02
+12 18573     -1.858300e+02 1.454600e+02
+6 18574     1.292000e+02 9.256000e+01
+12 18574     1.504300e+02 1.426100e+02
+6 18575     -2.552000e+02 9.140002e+01
+7 18575     -2.069300e+02 2.029200e+02
+12 18575     -2.016000e+02 1.424700e+02
+15 18575     -1.544100e+02 2.861600e+02
+6 18576     -3.216100e+02 9.045001e+01
+12 18576     -2.549800e+02 1.406500e+02
+6 18577     5.561100e+02 9.057001e+01
+12 18577     6.344500e+02 1.003800e+02
+6 18578     4.733002e+01 8.851001e+01
+12 18578     6.534003e+01 1.417000e+02
+6 18579     5.327700e+02 8.734998e+01
+12 18579     6.119200e+02 9.712000e+01
+6 18580     3.584300e+02 8.446002e+01
+7 18580     3.116100e+02 1.376700e+02
+6 18581     -3.151001e+01 8.371002e+01
+12 18581     -1.309003e+01 1.386500e+02
+6 18582     2.248200e+02 8.137000e+01
+10 18582     1.885300e+02 1.544300e+02
+12 18582     2.547800e+02 1.254000e+02
+6 18583     9.975000e+01 7.846002e+01
+12 18583     1.187000e+02 1.298900e+02
+6 18584     2.013500e+02 7.671997e+01
+12 18584     2.279500e+02 1.224600e+02
+6 18585     5.754301e+02 7.613000e+01
+9 18585     4.233500e+02 4.929999e+01
+6 18586     2.028100e+02 7.334003e+01
+8 18586     3.341300e+02 2.010010e+00
+6 18587     1.520100e+02 7.253998e+01
+12 18587     1.737300e+02 1.215900e+02
+6 18588     -1.807001e+01 6.348999e+01
+12 18588     -2.179993e+00 1.179200e+02
+6 18589     -3.286400e+02 5.533002e+01
+7 18589     -2.625200e+02 1.809000e+02
+12 18589     -2.692300e+02 1.092600e+02
+6 18590     5.292999e+01 5.328003e+01
+12 18590     6.831000e+01 1.057800e+02
+6 18591     -2.300600e+02 5.267999e+01
+12 18591     -1.866500e+02 1.062500e+02
+6 18592     5.607600e+02 4.919000e+01
+9 18592     4.137400e+02 2.509003e+01
+6 18593     2.084998e+01 4.828998e+01
+12 18593     3.603003e+01 1.022300e+02
+6 18594     2.872998e+01 4.810999e+01
+12 18594     4.314001e+01 1.014100e+02
+6 18595     3.775000e+01 4.703003e+01
+8 18595     2.064700e+02 -7.209991e+00
+6 18596     -2.346200e+02 4.576001e+01
+12 18596     -1.922700e+02 9.959003e+01
+6 18597     -2.951400e+02 4.171002e+01
+7 18597     -2.420100e+02 1.660900e+02
+12 18597     -2.417000e+02 9.534998e+01
+6 18598     -2.982800e+02 3.878998e+01
+12 18598     -2.441900e+02 9.284003e+01
+6 18599     2.117999e+01 3.875000e+01
+12 18599     3.550000e+01 9.213000e+01
+6 18600     2.117999e+01 3.875000e+01
+12 18600     3.550000e+01 9.213000e+01
+6 18601     2.159600e+02 3.721002e+01
+7 18601     1.380600e+02 1.047100e+02
+8 18601     3.438900e+02 -2.578000e+01
+13 18601     5.683101e+02 -2.430500e+02
+6 18602     2.169300e+02 2.946002e+01
+7 18602     1.384100e+02 9.798001e+01
+6 18603     -3.331800e+02 2.141998e+01
+12 18603     -2.814400e+02 7.779999e+01
+6 18604     -2.220500e+02 9.030029e+00
+12 18604     -1.885700e+02 6.540997e+01
+6 18605     -1.587900e+02 9.070007e+00
+8 18605     5.213000e+01 -4.338000e+01
+6 18606     -1.705900e+02 6.770020e+00
+12 18606     -1.462500e+02 6.360999e+01
+6 18607     -1.866800e+02 4.340027e+00
+9 18607     -1.140400e+02 7.283002e+01
+6 18608     -4.679999e+01 -2.820007e+00
+12 18608     -3.352002e+01 5.197998e+01
+6 18609     -2.363100e+02 -7.000000e+00
+10 18609     -2.391800e+02 1.657700e+02
+15 18609     -2.012600e+02 1.642500e+02
+6 18610     -1.527900e+02 -1.435999e+01
+8 18610     5.628998e+01 -6.133002e+01
+6 18611     -1.527900e+02 -1.435999e+01
+12 18611     -1.318700e+02 4.196002e+01
+6 18612     -3.932001e+01 -1.469000e+01
+8 18612     1.457900e+02 -5.437000e+01
+10 18612     -1.004500e+02 1.124400e+02
+15 18612     -4.225000e+01 1.046600e+02
+6 18613     2.134800e+02 -1.642999e+01
+8 18613     3.428600e+02 -6.637000e+01
+6 18614     -1.906000e+01 -1.740002e+01
+12 18614     -7.080017e+00 3.612000e+01
+6 18615     3.203000e+02 -1.753998e+01
+12 18615     3.529900e+02 1.916998e+01
+6 18616     -3.131000e+02 -1.971997e+01
+15 18616     -2.586900e+02 1.710500e+02
+6 18617     -2.838900e+02 -2.302002e+01
+12 18617     -2.449200e+02 3.481000e+01
+6 18618     -1.711700e+02 -2.966998e+01
+12 18618     -1.482000e+02 2.689001e+01
+6 18619     4.419983e+00 -2.992999e+01
+8 18619     1.800700e+02 -6.523999e+01
+6 18620     -1.194600e+02 -3.094000e+01
+8 18620     8.239001e+01 -7.102002e+01
+6 18621     2.199600e+02 -3.246002e+01
+8 18621     3.480100e+02 -8.006000e+01
+6 18622     1.927000e+02 -3.509003e+01
+8 18622     3.273000e+02 -7.841998e+01
+6 18623     3.869995e+00 -3.595001e+01
+12 18623     1.463000e+01 1.690997e+01
+6 18624     -1.635200e+02 -3.628003e+01
+12 18624     -1.418900e+02 2.034998e+01
+6 18625     -1.638600e+02 -4.284003e+01
+12 18625     -1.440100e+02 1.429999e+01
+6 18626     -5.496997e+01 -4.556000e+01
+12 18626     -4.356000e+01 8.359985e+00
+6 18627     1.224200e+02 -4.871997e+01
+12 18627     1.368500e+02 -9.500122e-01
+6 18628     -2.281600e+02 -5.123999e+01
+12 18628     -2.035100e+02 7.039978e+00
+6 18629     1.457800e+02 -6.653003e+01
+8 18629     2.913900e+02 -9.990002e+01
+6 18630     1.098700e+02 -7.313000e+01
+8 18630     2.624400e+02 -1.019600e+02
+12 18630     1.226400e+02 -2.565997e+01
+6 18631     -3.377002e+01 -7.488000e+01
+12 18631     -2.285999e+01 -2.167999e+01
+6 18632     -4.440500e+02 -7.770001e+01
+13 18632     1.191000e+02 -2.284300e+02
+6 18633     9.410999e+01 -8.745001e+01
+8 18633     2.502000e+02 -1.132600e+02
+6 18634     -5.053998e+01 -9.047998e+01
+12 18634     -4.162000e+01 -3.653998e+01
+6 18635     -2.918800e+02 -9.090997e+01
+12 18635     -2.680700e+02 -2.881000e+01
+6 18636     2.518200e+02 -9.121997e+01
+12 18636     2.710900e+02 -5.098999e+01
+6 18637     3.621200e+02 -9.179999e+01
+10 18637     2.892900e+02 -4.596997e+01
+12 18637     3.895100e+02 -5.845001e+01
+6 18638     1.952000e+02 -9.746997e+01
+12 18638     2.090699e+02 -5.458002e+01
+6 18639     -5.590027e+00 -1.000700e+02
+7 18639     -7.316998e+01 1.101001e+01
+12 18639     2.049988e+00 -4.796997e+01
+15 18639     -2.803003e+01 -3.900146e-01
+6 18640     4.052600e+02 -1.006400e+02
+12 18640     4.387400e+02 -7.012000e+01
+6 18641     -9.204999e+01 -1.016100e+02
+8 18641     1.021200e+02 -1.178800e+02
+12 18641     -8.529999e+01 -4.545001e+01
+6 18642     -1.090002e+01 -1.039300e+02
+10 18642     -9.659003e+01 2.020001e+01
+6 18643     5.410999e+01 -1.080900e+02
+8 18643     2.187400e+02 -1.251200e+02
+12 18643     6.069000e+01 -5.928003e+01
+15 18643     2.895001e+01 -2.703998e+01
+6 18644     1.307700e+02 -1.104400e+02
+12 18644     1.401600e+02 -6.446002e+01
+6 18645     -2.845200e+02 -1.124700e+02
+12 18645     -2.654300e+02 -4.996002e+01
+6 18646     2.494400e+02 -1.134300e+02
+8 18646     3.726600e+02 -1.405100e+02
+15 18646     2.660800e+02 -7.860999e+01
+6 18647     7.714001e+01 -1.150800e+02
+12 18647     8.364001e+01 -6.654999e+01
+6 18648     4.013700e+02 -1.165400e+02
+12 18648     4.347300e+02 -8.667999e+01
+6 18649     2.548200e+02 -1.170400e+02
+7 18649     1.527100e+02 -3.240997e+01
+13 18649     5.797700e+02 -3.656700e+02
+15 18649     2.731600e+02 -8.382001e+01
+6 18650     3.786800e+02 -1.190700e+02
+12 18650     4.103900e+02 -8.829999e+01
+6 18651     -2.309003e+01 -1.212100e+02
+8 18651     1.573200e+02 -1.325500e+02
+6 18652     1.170200e+02 -1.260300e+02
+12 18652     1.244500e+02 -7.988000e+01
+6 18653     -2.127200e+02 -1.281500e+02
+12 18653     -1.996700e+02 -6.801001e+01
+6 18654     -7.856000e+01 -1.296300e+02
+8 18654     1.127600e+02 -1.409500e+02
+6 18655     -4.734300e+02 -1.380699e+02
+7 18655     -3.462600e+02 4.826001e+01
+10 18655     -3.488500e+02 1.207900e+02
+15 18655     -3.195800e+02 1.077800e+02
+6 18656     6.862000e+01 -1.390400e+02
+8 18656     2.303700e+02 -1.485600e+02
+10 18656     -3.334003e+01 -3.121997e+01
+12 18656     7.396002e+01 -9.073999e+01
+15 18656     3.678998e+01 -6.438000e+01
+6 18657     3.732400e+02 -1.469800e+02
+12 18657     4.061200e+02 -1.150800e+02
+6 18658     3.218900e+02 -1.472300e+02
+12 18658     3.398500e+02 -1.122800e+02
+6 18659     3.138900e+02 -1.543500e+02
+8 18659     4.257300e+02 -1.701100e+02
+10 18659     2.057200e+02 -1.031100e+02
+12 18659     3.305900e+02 -1.189300e+02
+15 18659     3.189500e+02 -1.479700e+02
+6 18660     3.188000e+02 -1.551600e+02
+8 18660     4.295601e+02 -1.707500e+02
+6 18661     3.617500e+02 -1.595400e+02
+12 18661     3.919100e+02 -1.284400e+02
+6 18662     -1.919800e+02 -1.681500e+02
+12 18662     -1.862600e+02 -1.080300e+02
+6 18663     -1.349200e+02 -1.765000e+02
+10 18663     -2.228200e+02 -2.059003e+01
+12 18663     -1.342200e+02 -1.188700e+02
+15 18663     -1.837600e+02 -5.303003e+01
+6 18664     -7.741998e+01 -1.850500e+02
+10 18664     -1.767400e+02 -4.195001e+01
+12 18664     -7.781000e+01 -1.306500e+02
+6 18665     1.100100e+02 -1.855000e+02
+12 18665     1.132500e+02 -1.407500e+02
+6 18666     4.794000e+01 -1.922900e+02
+12 18666     4.826001e+01 -1.438800e+02
+6 18667     2.289800e+02 -1.929100e+02
+7 18667     1.103800e+02 -9.656000e+01
+12 18667     2.374500e+02 -1.541300e+02
+6 18668     -7.009998e+01 -1.943900e+02
+7 18668     -1.430200e+02 -6.170001e+01
+12 18668     -7.287000e+01 -1.399500e+02
+6 18669     2.603200e+02 -2.055000e+02
+9 18669     2.626100e+02 -5.651001e+01
+12 18669     2.736000e+02 -1.690400e+02
+6 18670     5.029999e+01 -2.084800e+02
+7 18670     -4.921997e+01 -8.901001e+01
+12 18670     4.665002e+01 -1.601100e+02
+6 18671     2.538100e+02 -2.141500e+02
+9 18671     2.578600e+02 -6.440002e+01
+12 18671     2.665000e+02 -1.780100e+02
+6 18672     3.526200e+02 -2.160900e+02
+12 18672     3.822700e+02 -1.869000e+02
+6 18673     -1.487700e+02 -2.173000e+02
+12 18673     -1.458000e+02 -1.594000e+02
+6 18674     2.448500e+02 -2.191100e+02
+7 18674     1.277900e+02 -1.185100e+02
+6 18675     3.529600e+02 -2.202200e+02
+12 18675     3.840200e+02 -1.921900e+02
+6 18676     6.849976e+00 -2.222400e+02
+7 18676     -8.969000e+01 -9.578998e+01
+12 18676     -4.500122e-01 -1.719200e+02
+6 18677     2.149300e+02 -2.257300e+02
+12 18677     2.232600e+02 -1.877400e+02
+6 18678     2.509700e+02 -2.283400e+02
+12 18678     2.641700e+02 -1.927400e+02
+6 18679     2.933000e+02 -2.328300e+02
+12 18679     3.117300e+02 -1.999300e+02
+6 18680     5.165997e+01 -2.467000e+02
+7 18680     -4.602002e+01 -1.197200e+02
+12 18680     5.081000e+01 -2.003200e+02
+6 18681     -5.973999e+01 -2.489399e+02
+12 18681     -5.934003e+01 -1.962800e+02
+15 18681     -1.138100e+02 -1.472000e+02
+6 18682     6.014001e+01 -2.493500e+02
+7 18682     -3.928003e+01 -1.226500e+02
+8 18682     2.226900e+02 -2.355800e+02
+9 18682     1.096500e+02 -9.103998e+01
+6 18683     4.588000e+01 -2.510800e+02
+8 18683     2.116900e+02 -2.365500e+02
+6 18684     4.588000e+01 -2.510800e+02
+8 18684     2.116900e+02 -2.365500e+02
+6 18685     9.439001e+01 -2.653900e+02
+12 18685     9.582001e+01 -2.219000e+02
+13 18685     4.314500e+02 -4.483400e+02
+6 18686     9.439001e+01 -2.653900e+02
+12 18686     9.582001e+01 -2.219000e+02
+13 18686     4.314500e+02 -4.483400e+02
+6 18687     2.127400e+02 -2.664399e+02
+8 18687     3.441400e+02 -2.623200e+02
+9 18687     2.279100e+02 -1.113000e+02
+12 18687     2.231300e+02 -2.296900e+02
+6 18688     2.798999e+01 -2.683600e+02
+8 18688     1.963700e+02 -2.521300e+02
+9 18688     8.402002e+01 -1.106800e+02
+12 18688     2.741998e+01 -2.210700e+02
+6 18689     -2.080300e+02 -2.804301e+02
+8 18689     4.820007e+00 -2.716200e+02
+9 18689     -1.191900e+02 -1.547000e+02
+6 18690     -2.209003e+01 -2.877500e+02
+12 18690     -2.128998e+01 -2.377400e+02
+15 18690     -7.640997e+01 -1.962800e+02
+6 18691     -1.538900e+02 -2.878900e+02
+13 18691     2.526801e+02 -4.203400e+02
+6 18692     2.377300e+02 -2.909900e+02
+12 18692     2.519600e+02 -2.565200e+02
+6 18693     2.356900e+02 -2.942300e+02
+12 18693     2.488500e+02 -2.593500e+02
+6 18694     -1.536500e+02 -2.943800e+02
+12 18694     -1.463100e+02 -2.370500e+02
+6 18695     -1.501400e+02 -2.961600e+02
+7 18695     -1.939500e+02 -1.283200e+02
+8 18695     5.116998e+01 -2.817200e+02
+9 18695     -6.628998e+01 -1.587100e+02
+10 18695     -2.270300e+02 -1.158500e+02
+13 18695     2.550800e+02 -4.269500e+02
+6 18696     2.472600e+02 -2.970000e+02
+12 18696     2.619000e+02 -2.629300e+02
+6 18697     -1.966000e+02 -2.981200e+02
+8 18697     1.341998e+01 -2.880100e+02
+12 18697     -1.804500e+02 -2.394400e+02
+6 18698     7.690002e+01 -3.045800e+02
+8 18698     2.354500e+02 -2.881300e+02
+6 18699     6.209998e+01 -3.061200e+02
+8 18699     2.234400e+02 -2.886600e+02
+9 18699     1.116300e+02 -1.475500e+02
+6 18700     -8.954999e+01 -3.094600e+02
+12 18700     -8.460999e+01 -2.563600e+02
+6 18701     -8.954999e+01 -3.094600e+02
+7 18701     -1.504900e+02 -1.473000e+02
+13 18701     2.949500e+02 -4.469399e+02
+6 18702     2.252600e+02 -3.107500e+02
+8 18702     3.535100e+02 -3.043400e+02
+12 18702     2.384301e+02 -2.761000e+02
+6 18703     -5.782700e+02 -3.177200e+02
+15 18703     -4.984400e+02 -6.052002e+01
+6 18704     2.957500e+02 -3.176300e+02
+12 18704     3.147900e+02 -2.874700e+02
+6 18705     5.822998e+01 -3.207300e+02
+12 18705     6.158002e+01 -2.764400e+02
+6 18706     -3.303003e+01 -3.232000e+02
+8 18706     1.451100e+02 -3.036100e+02
+6 18707     2.033600e+02 -3.290400e+02
+8 18707     3.352200e+02 -3.189300e+02
+6 18708     1.037900e+02 -3.308000e+02
+12 18708     1.083300e+02 -2.895900e+02
+6 18709     -5.392900e+02 -3.364700e+02
+7 18709     -4.432300e+02 -1.033900e+02
+8 18709     -2.517300e+02 -3.275700e+02
+6 18710     -7.673999e+01 -3.390800e+02
+9 18710     -3.909973e+00 -1.892100e+02
+12 18710     -7.138000e+01 -2.867700e+02
+6 18711     -7.673999e+01 -3.390800e+02
+12 18711     -7.138000e+01 -2.867700e+02
+6 18712     8.362000e+01 -3.399500e+02
+8 18712     2.392700e+02 -3.201100e+02
+6 18713     1.981100e+02 -3.460300e+02
+8 18713     3.310800e+02 -3.344400e+02
+12 18713     2.102200e+02 -3.102300e+02
+6 18714     2.986000e+02 -3.623800e+02
+12 18714     3.199800e+02 -3.309100e+02
+6 18715     2.759998e+01 -3.647600e+02
+12 18715     3.287000e+01 -3.190100e+02
+6 18716     -1.212000e+02 -3.705500e+02
+9 18716     -4.201001e+01 -2.274200e+02
+6 18717     1.345300e+02 -3.865500e+02
+12 18717     1.433300e+02 -3.475600e+02
+15 18717     9.778998e+01 -3.372500e+02
+6 18718     1.473800e+02 -3.959399e+02
+12 18718     1.568200e+02 -3.584900e+02
+6 18719     2.107400e+02 -4.026899e+02
+9 18719     2.356500e+02 -2.277400e+02
+6 18720     2.271997e+01 -4.089700e+02
+15 18720     -2.075000e+01 -3.261500e+02
+6 18721     -1.533600e+02 -4.237800e+02
+12 18721     -1.481100e+02 -3.658100e+02
+6 18722     -1.784200e+02 -4.289399e+02
+7 18722     -2.223200e+02 -2.275400e+02
+6 18723     1.764600e+02 -4.357300e+02
+12 18723     1.781700e+02 -4.003400e+02
+6 18724     -4.746300e+02 -4.473500e+02
+7 18724     -4.258800e+02 -1.994500e+02
+6 18725     1.950012e+00 -4.526899e+02
+12 18725     -1.210022e+00 -4.057600e+02
+6 18726     -5.455100e+02 -4.563101e+02
+10 18726     -5.322500e+02 -1.540100e+02
+15 18726     -5.347700e+02 -2.123800e+02
+6 18727     1.606800e+02 -4.599200e+02
+12 18727     1.638700e+02 -4.232800e+02
+6 18728     1.688700e+02 -4.624600e+02
+12 18728     1.720500e+02 -4.261600e+02
+6 18729     1.374800e+02 -4.672200e+02
+12 18729     1.413600e+02 -4.292200e+02
+6 18730     5.000000e-01 -4.761200e+02
+12 18730     -9.199829e-01 -4.287500e+02
+6 18731     1.778900e+02 -4.766000e+02
+12 18731     1.810900e+02 -4.413600e+02
+6 18732     1.731600e+02 -4.803800e+02
+12 18732     1.765700e+02 -4.447700e+02
+6 18733     1.276001e+01 -4.876600e+02
+12 18733     1.203003e+01 -4.407800e+02
+6 18734     -1.969971e+00 -4.882100e+02
+12 18734     -2.469971e+00 -4.403300e+02
+6 18735     7.500000e+00 -4.880900e+02
+12 18735     7.140015e+00 -4.408900e+02
+6 18736     7.500000e+00 -4.880900e+02
+12 18736     7.140015e+00 -4.408900e+02
+6 18737     4.956801e+02 -5.010699e+02
+7 18737     3.222500e+02 -3.775500e+02
+10 18737     3.364100e+02 -4.609100e+02
+12 18737     5.123800e+02 -4.863300e+02
+6 18738     -1.881800e+02 -5.323300e+02
+12 18738     -1.881300e+02 -4.698600e+02
+6 18739     4.515000e+02 -5.344200e+02
+7 18739     2.754301e+02 -4.001100e+02
+9 18739     4.354301e+02 -3.248700e+02
+6 18740     4.358199e+02 -5.374200e+02
+10 18740     2.604100e+02 -4.801500e+02
+6 18741     1.424700e+02 -5.557300e+02
+10 18741     -2.503998e+01 -4.179500e+02
+6 18742     -3.524800e+02 -5.650900e+02
+15 18742     -4.196900e+02 -3.776800e+02
+6 18743     -2.639400e+02 -5.863800e+02
+15 18743     -3.511600e+02 -4.248700e+02
+6 18744     4.774301e+02 -5.966801e+02
+7 18744     2.795400e+02 -4.582600e+02
+6 18745     -3.358000e+02 -5.993900e+02
+7 18745     -3.642800e+02 -3.398500e+02
+15 18745     -4.210400e+02 -4.177500e+02
+6 18746     -2.727700e+02 -6.054200e+02
+7 18746     -3.190900e+02 -3.537800e+02
+15 18746     -3.669900e+02 -4.425000e+02
+6 18747     5.772300e+02 -6.144700e+02
+7 18747     3.586500e+02 -4.884600e+02
+6 18748     -2.826900e+02 -6.162100e+02
+7 18748     -3.289700e+02 -3.609100e+02
+10 18748     -3.964700e+02 -3.591400e+02
+15 18748     -3.813000e+02 -4.509900e+02
+6 18749     3.307100e+02 -6.220100e+02
+7 18749     1.497600e+02 -4.578800e+02
+10 18749     1.203100e+02 -5.322400e+02
+12 18749     3.236300e+02 -6.002300e+02
+6 18750     5.297800e+02 -6.243000e+02
+10 18750     3.062500e+02 -5.955800e+02
+6 18751     5.047400e+02 -6.388300e+02
+7 18751     2.895400e+02 -4.985000e+02
+10 18751     2.743101e+02 -6.019900e+02
+6 18752     4.059400e+02 -6.426500e+02
+7 18752     2.064500e+02 -4.866899e+02
+6 18753     5.170601e+02 -6.451801e+02
+7 18753     2.987100e+02 -5.059500e+02
+6 18754     2.342600e+02 -6.465601e+02
+12 18754     2.197700e+02 -6.187200e+02
+6 18755     3.723400e+02 -6.602800e+02
+7 18755     1.730300e+02 -4.968900e+02
+6 18756     3.881200e+02 -6.631801e+02
+7 18756     1.857500e+02 -5.015900e+02
+6 18757     3.586700e+02 -6.711100e+02
+7 18757     1.589500e+02 -5.044399e+02
+10 18757     1.216900e+02 -5.889900e+02
+6 18758     3.586700e+02 -6.711100e+02
+7 18758     1.589500e+02 -5.044399e+02
+6 18759     5.056801e+02 -6.734399e+02
+7 18759     2.807600e+02 -5.288500e+02
+6 18760     4.789500e+02 -6.783900e+02
+7 18760     2.567200e+02 -5.288400e+02
+6 18761     2.973000e+02 -6.801700e+02
+7 18761     1.053900e+02 -5.023900e+02
+6 18762     4.742300e+02 -6.826200e+02
+7 18762     2.515500e+02 -5.317900e+02
+6 18763     3.031500e+02 -6.834100e+02
+7 18763     1.096100e+02 -5.059100e+02
+6 18764     -6.470001e+01 -6.898800e+02
+7 18764     -1.850700e+02 -4.536000e+02
+6 18765     1.503000e+02 -6.907800e+02
+7 18765     -1.659003e+01 -4.879800e+02
+10 18765     -7.351001e+01 -5.452600e+02
+6 18766     4.943199e+02 -6.915800e+02
+7 18766     2.660000e+02 -5.428900e+02
+6 18767     3.706300e+02 -6.919301e+02
+7 18767     1.624500e+02 -5.235000e+02
+6 18768     -2.170400e+02 -6.923300e+02
+7 18768     -3.003300e+02 -4.322200e+02
+10 18768     -3.774100e+02 -4.448101e+02
+15 18768     -3.600700e+02 -5.511600e+02
+6 18769     -8.891000e+01 -7.019399e+02
+10 18769     -2.797000e+02 -4.882800e+02
+6 18770     -7.170001e+01 -7.059100e+02
+10 18770     -2.671500e+02 -4.964100e+02
+6 18771     -6.222998e+01 -7.073101e+02
+9 18771     4.338000e+01 -4.728400e+02
+6 18772     4.320700e+02 -7.111400e+02
+7 18772     2.084100e+02 -5.497000e+02
+6 18773     3.027800e+02 -7.180400e+02
+7 18773     9.942999e+01 -5.349600e+02
+6 18774     1.111200e+02 -7.186500e+02
+7 18774     -5.515002e+01 -5.049900e+02
+6 18775     5.258600e+02 -7.243900e+02
+7 18775     2.830300e+02 -5.758000e+02
+6 18776     1.606400e+02 -7.779200e+02
+7 18776     -3.197998e+01 -5.613101e+02
+6 18777     2.144000e+02 -7.781899e+02
+7 18777     1.101001e+01 -5.713900e+02
+6 18778     5.776001e+01 -7.857900e+02
+7 18778     -1.156300e+02 -5.512700e+02
+6 18779     -1.023300e+02 -8.384399e+02
+7 18779     -2.512600e+02 -5.679600e+02
+6 18780     -4.794700e+02 8.611600e+02
+11 18780     1.722200e+02 -5.271002e+01
+6 18781     -3.582001e+01 8.603100e+02
+13 18781     5.405699e+02 3.684000e+02
+6 18782     -3.773999e+01 8.542500e+02
+11 18782     5.314000e+02 -7.378998e+01
+13 18782     5.381801e+02 3.638300e+02
+14 18782     7.339301e+02 -1.572998e+01
+6 18783     -5.562600e+02 8.440500e+02
+8 18783     -1.950600e+02 4.149200e+02
+6 18784     2.075300e+02 8.358200e+02
+8 18784     3.100100e+02 4.188000e+02
+9 18784     1.006500e+02 5.519100e+02
+11 18784     6.198800e+02 -1.089200e+02
+6 18785     -3.386400e+02 8.283400e+02
+8 18785     -5.557001e+01 3.844900e+02
+6 18786     2.847300e+02 8.236600e+02
+8 18786     3.640100e+02 4.171600e+02
+6 18787     -8.580017e+00 8.196000e+02
+8 18787     1.594600e+02 3.459500e+02
+11 18787     5.566000e+02 -9.757001e+01
+13 18787     5.581000e+02 3.405100e+02
+14 18787     7.594399e+02 -4.303998e+01
+6 18788     1.291500e+02 8.152600e+02
+8 18788     2.489500e+02 3.287900e+02
+6 18789     1.291500e+02 8.152600e+02
+8 18789     2.489500e+02 3.287900e+02
+6 18790     -1.525300e+02 8.126300e+02
+11 18790     4.313101e+02 -9.612000e+01
+13 18790     4.483400e+02 3.416800e+02
+14 18790     6.260300e+02 -3.937000e+01
+6 18791     2.965900e+02 8.106900e+02
+8 18791     3.724000e+02 4.094200e+02
+9 18791     1.671500e+02 5.426600e+02
+6 18792     1.227600e+02 8.049300e+02
+8 18792     2.447600e+02 3.231300e+02
+6 18793     -2.077500e+02 7.681800e+02
+8 18793     2.853998e+01 3.341000e+02
+6 18794     -5.473900e+02 7.564100e+02
+11 18794     1.130900e+02 -1.126100e+02
+14 18794     2.843500e+02 -5.496997e+01
+6 18795     -4.721600e+02 7.524500e+02
+11 18795     1.697500e+02 -1.187500e+02
+6 18796     -5.355800e+02 7.445800e+02
+8 18796     -1.871500e+02 3.509300e+02
+6 18797     6.522998e+01 7.430200e+02
+8 18797     2.075000e+02 2.895100e+02
+6 18798     4.082300e+02 7.402500e+02
+9 18798     2.591500e+02 5.340600e+02
+6 18799     -1.337100e+02 7.392900e+02
+11 18799     4.444301e+02 -1.452400e+02
+6 18800     -1.337100e+02 7.392900e+02
+11 18800     4.444301e+02 -1.452400e+02
+6 18801     -6.398999e+01 7.378200e+02
+11 18801     5.058900e+02 -1.503200e+02
+6 18802     4.666998e+01 7.360900e+02
+8 18802     1.955200e+02 2.868100e+02
+9 18802     -3.965997e+01 3.920300e+02
+6 18803     -5.640997e+01 7.347500e+02
+11 18803     5.120800e+02 -1.522400e+02
+14 18803     7.084301e+02 -1.084800e+02
+6 18804     -6.396002e+01 7.317400e+02
+9 18804     -1.130100e+02 4.008500e+02
+6 18805     4.848700e+02 7.284500e+02
+8 18805     5.117700e+02 3.912100e+02
+6 18806     5.505100e+02 7.250200e+02
+8 18806     5.597300e+02 3.951000e+02
+6 18807     5.626500e+02 7.160500e+02
+8 18807     5.675100e+02 3.894600e+02
+6 18808     3.329200e+02 7.145900e+02
+8 18808     3.994500e+02 3.474500e+02
+9 18808     1.969700e+02 4.801800e+02
+6 18809     -2.079200e+02 7.134100e+02
+8 18809     2.734998e+01 2.979900e+02
+9 18809     -2.105300e+02 4.028000e+02
+11 18809     3.806500e+02 -1.576700e+02
+6 18810     2.297400e+02 7.131200e+02
+8 18810     3.273300e+02 3.407400e+02
+6 18811     4.555601e+02 7.023900e+02
+9 18811     2.978900e+02 5.120100e+02
+6 18812     -5.592600e+02 6.964000e+02
+8 18812     -2.047100e+02 3.220200e+02
+6 18813     -4.484500e+02 6.925400e+02
+14 18813     3.587000e+02 -1.090000e+02
+6 18814     -7.897998e+01 6.919400e+02
+9 18814     -1.226600e+02 3.739400e+02
+6 18815     -4.218000e+02 6.836500e+02
+11 18815     2.036900e+02 -1.640700e+02
+13 18815     2.438900e+02 2.701200e+02
+6 18816     3.835900e+02 6.831700e+02
+8 18816     4.391899e+02 3.531600e+02
+6 18817     -5.165997e+01 6.799500e+02
+11 18817     5.151600e+02 -1.903900e+02
+6 18818     -4.191300e+02 6.797500e+02
+13 18818     2.437200e+02 2.672300e+02
+6 18819     2.938200e+02 6.725700e+02
+8 18819     3.724700e+02 3.165200e+02
+11 18819     6.812100e+02 -2.378900e+02
+6 18820     3.057000e+02 6.725200e+02
+8 18820     3.802000e+02 3.178500e+02
+9 18820     1.794500e+02 4.471800e+02
+6 18821     3.057000e+02 6.725200e+02
+8 18821     3.802000e+02 3.178500e+02
+9 18821     1.794500e+02 4.471800e+02
+6 18822     -2.163300e+02 6.707800e+02
+9 18822     -2.162300e+02 3.724400e+02
+6 18823     -2.712600e+02 6.649100e+02
+8 18823     -1.670001e+01 2.727400e+02
+6 18824     -2.712600e+02 6.649100e+02
+8 18824     -1.670001e+01 2.727400e+02
+6 18825     -8.385999e+01 6.635700e+02
+12 18825     7.822998e+01 6.191400e+02
+6 18826     -5.065002e+01 6.635100e+02
+8 18826     1.305100e+02 2.493100e+02
+12 18826     1.103600e+02 6.176000e+02
+6 18827     -1.244900e+02 6.626500e+02
+9 18827     -1.533400e+02 3.574400e+02
+6 18828     4.627300e+02 6.594800e+02
+8 18828     4.973300e+02 3.414800e+02
+6 18829     -6.540002e+01 6.589300e+02
+9 18829     -1.129500e+02 3.490300e+02
+12 18829     9.603998e+01 6.140300e+02
+6 18830     -6.540002e+01 6.589300e+02
+9 18830     -1.129500e+02 3.490300e+02
+6 18831     -1.205600e+02 6.584400e+02
+9 18831     -1.505100e+02 3.539500e+02
+12 18831     4.265002e+01 6.161900e+02
+13 18831     4.592900e+02 2.369600e+02
+6 18832     -1.935400e+02 6.545000e+02
+8 18832     3.533002e+01 2.578900e+02
+9 18832     -2.000800e+02 3.588300e+02
+6 18833     -4.044300e+02 6.481900e+02
+8 18833     -1.053400e+02 2.750400e+02
+9 18833     -3.459000e+02 3.770000e+02
+6 18834     -4.044300e+02 6.481900e+02
+9 18834     -3.459000e+02 3.770000e+02
+6 18835     -5.746400e+02 6.464200e+02
+8 18835     -2.178100e+02 2.912300e+02
+6 18836     -1.123200e+02 6.414200e+02
+8 18836     9.009003e+01 2.415600e+02
+6 18837     4.608300e+02 6.320000e+02
+9 18837     3.058800e+02 4.616900e+02
+6 18838     -3.441300e+02 6.312200e+02
+11 18838     2.608600e+02 -2.034500e+02
+13 18838     2.934800e+02 2.319600e+02
+6 18839     -2.398000e+02 6.315400e+02
+8 18839     3.830017e+00 2.469700e+02
+6 18840     -4.763600e+02 6.285700e+02
+11 18840     1.573600e+02 -1.955200e+02
+6 18841     -9.789001e+01 6.284400e+02
+8 18841     9.885999e+01 2.307500e+02
+12 18841     6.481000e+01 5.882700e+02
+13 18841     4.744700e+02 2.159800e+02
+14 18841     6.628000e+02 -1.900500e+02
+6 18842     4.527300e+02 6.268200e+02
+8 18842     4.905699e+02 3.174600e+02
+9 18842     3.002800e+02 4.572300e+02
+6 18843     -3.782300e+02 6.184900e+02
+8 18843     -8.925000e+01 2.537400e+02
+9 18843     -3.266400e+02 3.529200e+02
+6 18844     -2.948600e+02 5.979600e+02
+9 18844     -2.692800e+02 3.285600e+02
+12 18844     -1.270500e+02 5.696400e+02
+6 18845     -3.174600e+02 5.962300e+02
+9 18845     -2.857800e+02 3.289700e+02
+6 18846     -2.713000e+02 5.959700e+02
+12 18846     -1.036200e+02 5.672700e+02
+6 18847     4.645900e+02 5.784500e+02
+9 18847     3.114800e+02 4.231900e+02
+6 18848     -2.430900e+02 5.774400e+02
+12 18848     -7.702002e+01 5.501000e+02
+6 18849     -2.388000e+02 5.751300e+02
+8 18849     3.179993e+00 2.110200e+02
+12 18849     -7.342999e+01 5.474600e+02
+6 18850     1.927700e+02 5.669500e+02
+8 18850     3.022500e+02 2.359300e+02
+9 18850     9.972998e+01 3.559400e+02
+12 18850     3.016500e+02 5.559000e+02
+6 18851     -4.513000e+02 5.657100e+02
+9 18851     -3.791900e+02 3.204400e+02
+11 18851     1.724200e+02 -2.376400e+02
+6 18852     -2.105000e+02 5.654600e+02
+14 18852     5.528700e+02 -2.302400e+02
+6 18853     -2.844900e+02 5.568000e+02
+12 18853     -1.175800e+02 5.331800e+02
+6 18854     -2.296300e+02 5.460500e+02
+9 18854     -2.244600e+02 2.815700e+02
+12 18854     -6.326001e+01 5.196500e+02
+14 18854     5.336400e+02 -2.442200e+02
+6 18855     -2.188300e+02 5.411300e+02
+9 18855     -2.166100e+02 2.785300e+02
+6 18856     -3.780500e+02 5.404400e+02
+8 18856     -9.152002e+01 2.007900e+02
+9 18856     -3.281000e+02 2.940500e+02
+12 18856     -2.070800e+02 5.217700e+02
+6 18857     -3.844600e+02 5.365500e+02
+12 18857     -2.132700e+02 5.188300e+02
+6 18858     4.194600e+02 5.322100e+02
+9 18858     2.800800e+02 3.835700e+02
+6 18859     3.231600e+02 5.300600e+02
+9 18859     1.985000e+02 3.442800e+02
+6 18860     -2.298400e+02 5.266800e+02
+9 18860     -2.245700e+02 2.682200e+02
+6 18861     -5.210300e+02 5.257900e+02
+12 18861     -3.452700e+02 5.143000e+02
+6 18862     3.895100e+02 5.236300e+02
+7 18862     4.240900e+02 5.163800e+02
+9 18862     2.583400e+02 3.734100e+02
+11 18862     7.215800e+02 -3.772400e+02
+12 18862     4.740800e+02 5.305800e+02
+6 18863     4.177400e+02 5.225400e+02
+8 18863     4.680900e+02 2.408300e+02
+9 18863     2.793700e+02 3.761200e+02
+11 18863     7.444100e+02 -3.827200e+02
+12 18863     5.019500e+02 5.295900e+02
+6 18864     4.342500e+02 5.223200e+02
+8 18864     4.794500e+02 2.418800e+02
+12 18864     5.169000e+02 5.304500e+02
+6 18865     5.427500e+02 5.106200e+02
+9 18865     3.734500e+02 3.819800e+02
+6 18866     4.113500e+02 5.072000e+02
+8 18866     4.632500e+02 2.293700e+02
+9 18866     2.757300e+02 3.638700e+02
+10 18866     6.180500e+02 5.924800e+02
+11 18866     7.397500e+02 -3.952100e+02
+12 18866     4.951100e+02 5.149500e+02
+6 18867     4.485000e+02 4.843200e+02
+9 18867     3.045500e+02 3.510400e+02
+6 18868     3.826500e+02 4.831100e+02
+7 18868     4.159399e+02 4.819300e+02
+9 18868     2.552700e+02 3.427000e+02
+12 18868     4.681400e+02 4.898400e+02
+13 18868     7.917100e+02 7.338000e+01
+6 18869     -4.995300e+02 4.754500e+02
+12 18869     -3.240000e+02 4.679700e+02
+6 18870     -5.118100e+02 4.718000e+02
+12 18870     -3.359000e+02 4.652100e+02
+6 18871     2.983200e+02 4.655600e+02
+12 18871     3.993000e+02 4.619500e+02
+6 18872     3.035600e+02 4.636000e+02
+9 18872     1.867000e+02 2.927200e+02
+12 18872     4.047300e+02 4.600900e+02
+6 18873     -5.418000e+02 4.584700e+02
+12 18873     -3.646400e+02 4.543600e+02
+6 18874     1.931700e+02 4.562900e+02
+7 18874     2.877500e+02 4.737300e+02
+9 18874     1.029600e+02 2.734300e+02
+12 18874     3.030300e+02 4.505600e+02
+6 18875     -4.748100e+02 4.472300e+02
+9 18875     -3.969500e+02 2.337700e+02
+6 18876     -4.748100e+02 4.472300e+02
+9 18876     -3.969500e+02 2.337700e+02
+6 18877     4.372300e+02 4.421300e+02
+9 18877     2.982700e+02 3.181700e+02
+6 18878     3.587800e+02 4.362400e+02
+8 18878     4.264800e+02 1.737700e+02
+9 18878     2.394399e+02 3.036600e+02
+10 18878     5.582600e+02 5.274900e+02
+6 18879     1.311500e+02 4.335700e+02
+7 18879     2.403199e+02 4.596200e+02
+6 18880     4.418199e+02 4.259800e+02
+7 18880     4.597500e+02 4.271700e+02
+8 18880     4.875400e+02 1.722200e+02
+9 18880     3.025800e+02 3.062700e+02
+10 18880     6.345000e+02 5.010100e+02
+12 18880     5.247900e+02 4.349000e+02
+15 18880     8.394301e+02 5.740300e+02
+6 18881     4.418199e+02 4.259800e+02
+9 18881     3.025800e+02 3.062700e+02
+12 18881     5.247900e+02 4.349000e+02
+6 18882     3.755100e+02 4.191700e+02
+9 18882     2.531801e+02 2.928900e+02
+12 18882     4.615699e+02 4.265400e+02
+6 18883     1.637200e+02 4.045700e+02
+12 18883     2.764700e+02 4.001100e+02
+6 18884     2.760000e+02 3.881900e+02
+12 18884     3.789800e+02 3.855500e+02
+6 18885     4.894900e+02 3.824400e+02
+8 18885     5.235300e+02 1.432100e+02
+9 18885     3.408800e+02 2.784900e+02
+12 18885     5.708500e+02 3.924300e+02
+6 18886     -5.021000e+02 3.771400e+02
+8 18886     -1.815500e+02 1.028000e+02
+6 18887     5.019800e+02 3.752000e+02
+8 18887     5.326400e+02 1.384900e+02
+9 18887     3.503900e+02 2.749100e+02
+6 18888     1.417300e+02 3.745500e+02
+7 18888     2.451300e+02 4.103400e+02
+13 18888     6.093600e+02 1.782001e+01
+15 18888     5.581801e+02 5.807800e+02
+6 18889     1.390800e+02 3.695000e+02
+7 18889     2.431500e+02 4.063900e+02
+13 18889     6.073900e+02 1.442999e+01
+14 18889     8.430200e+02 -4.485300e+02
+15 18889     5.550900e+02 5.752600e+02
+6 18890     3.694000e+02 3.629300e+02
+7 18890     3.986400e+02 3.795300e+02
+9 18890     2.510900e+02 2.484000e+02
+10 18890     5.577900e+02 4.509200e+02
+12 18890     4.565200e+02 3.719100e+02
+15 18890     7.486600e+02 5.122300e+02
+6 18891     4.709500e+02 3.630700e+02
+8 18891     5.103600e+02 1.272000e+02
+12 18891     5.530100e+02 3.724800e+02
+6 18892     3.756300e+02 3.577800e+02
+8 18892     4.390800e+02 1.167400e+02
+9 18892     2.553199e+02 2.456500e+02
+10 18892     5.615000e+02 4.445100e+02
+11 18892     7.149500e+02 -5.183700e+02
+6 18893     5.358000e+02 3.544200e+02
+7 18893     5.293400e+02 3.573500e+02
+9 18893     3.762300e+02 2.638900e+02
+6 18894     3.938200e+02 3.450600e+02
+9 18894     2.705100e+02 2.380200e+02
+6 18895     -4.374400e+02 3.387800e+02
+9 18895     -3.709800e+02 1.465700e+02
+6 18896     -5.667700e+02 3.331000e+02
+9 18896     -4.638900e+02 1.544800e+02
+6 18897     -2.848800e+02 3.330100e+02
+12 18897     -1.300400e+02 3.353800e+02
+13 18897     3.014600e+02 3.096997e+01
+14 18897     4.512700e+02 -4.138000e+02
+6 18898     -1.893700e+02 3.255400e+02
+9 18898     -1.824300e+02 1.459800e+02
+13 18898     3.664301e+02 1.653998e+01
+14 18898     5.340200e+02 -4.354301e+02
+6 18899     -4.060200e+02 3.247400e+02
+13 18899     2.197500e+02 3.653998e+01
+14 18899     3.488500e+02 -4.027000e+02
+6 18900     -3.081400e+02 3.134300e+02
+9 18900     -2.712300e+02 1.360000e+02
+14 18900     4.281300e+02 -4.271300e+02
+6 18901     -2.006000e+02 2.936000e+02
+7 18901     -2.826001e+01 3.719200e+02
+11 18901     3.074000e+02 -4.579400e+02
+6 18902     5.006200e+02 2.922300e+02
+9 18902     3.542900e+02 2.106700e+02
+12 18902     5.820601e+02 3.023100e+02
+6 18903     -2.677600e+02 2.865200e+02
+13 18903     3.045699e+02 -2.219971e+00
+14 18903     4.555100e+02 -4.565300e+02
+6 18904     -1.867800e+02 2.866000e+02
+7 18904     -2.031000e+01 3.650800e+02
+6 18905     5.718900e+02 2.838400e+02
+8 18905     5.878400e+02 7.475000e+01
+12 18905     6.510300e+02 2.940300e+02
+6 18906     -1.942700e+02 2.828000e+02
+12 18906     -5.597998e+01 2.915100e+02
+13 18906     3.548900e+02 -1.272998e+01
+6 18907     -2.078800e+02 2.818300e+02
+13 18907     3.453300e+02 -1.165997e+01
+14 18907     5.078000e+02 -4.708101e+02
+6 18908     4.692700e+02 2.776200e+02
+7 18908     4.718500e+02 2.978000e+02
+8 18908     5.105800e+02 6.294000e+01
+9 18908     3.314200e+02 1.958800e+02
+12 18908     5.513199e+02 2.878000e+02
+13 18908     8.455100e+02 -9.120001e+01
+15 18908     8.455000e+02 3.849400e+02
+6 18909     -3.184800e+02 2.759300e+02
+7 18909     -1.232600e+02 3.664000e+02
+6 18910     5.309200e+02 2.613400e+02
+8 18910     5.569301e+02 5.403000e+01
+9 18910     3.784700e+02 1.910800e+02
+12 18910     6.109800e+02 2.715100e+02
+6 18911     3.484600e+02 2.610800e+02
+7 18911     3.764200e+02 2.965300e+02
+8 18911     4.219301e+02 4.151001e+01
+12 18911     4.376600e+02 2.705300e+02
+6 18912     -3.062700e+02 2.598100e+02
+7 18912     -1.185900e+02 3.528100e+02
+9 18912     -2.655100e+02 1.073000e+02
+13 18912     2.740300e+02 -1.679999e+01
+14 18912     4.170300e+02 -4.738900e+02
+6 18913     3.296000e+02 2.594300e+02
+8 18913     4.070400e+02 3.920001e+01
+12 18913     4.193600e+02 2.689000e+02
+6 18914     4.861000e+02 2.572300e+02
+8 18914     5.237500e+02 4.817999e+01
+9 18914     3.447800e+02 1.816600e+02
+6 18915     1.121000e+02 2.413400e+02
+12 18915     1.586100e+02 2.836700e+02
+6 18916     1.167700e+02 2.413700e+02
+12 18916     1.630100e+02 2.833900e+02
+6 18917     4.150100e+02 2.385800e+02
+12 18917     4.999000e+02 2.487500e+02
+6 18918     1.567300e+02 2.214900e+02
+12 18918     1.978700e+02 2.652600e+02
+6 18919     -3.076600e+02 2.179100e+02
+9 18919     -2.626100e+02 8.457999e+01
+6 18920     4.043600e+02 2.165300e+02
+12 18920     4.896700e+02 2.265900e+02
+6 18921     5.845900e+02 2.101100e+02
+8 18921     5.992500e+02 1.801999e+01
+9 18921     4.229600e+02 1.572400e+02
+6 18922     5.666300e+02 2.100500e+02
+8 18922     5.853500e+02 1.732001e+01
+9 18922     4.089399e+02 1.546700e+02
+6 18923     1.961600e+02 2.031500e+02
+10 18923     2.138300e+02 2.895400e+02
+13 18923     5.819000e+02 -1.165600e+02
+15 18923     3.286000e+02 3.165600e+02
+6 18924     3.774900e+02 1.919000e+02
+12 18924     4.646100e+02 2.017200e+02
+6 18925     -4.015600e+02 1.910600e+02
+14 18925     3.209399e+02 -5.166899e+02
+6 18926     -1.075300e+02 1.893300e+02
+14 18926     5.170400e+02 -5.742800e+02
+6 18927     4.980601e+02 1.725000e+02
+9 18927     3.589700e+02 1.153900e+02
+12 18927     5.789900e+02 1.826800e+02
+6 18928     1.310300e+02 1.711500e+02
+12 18928     1.622900e+02 2.192500e+02
+6 18929     3.427600e+02 1.696300e+02
+12 18929     4.318900e+02 1.803900e+02
+6 18930     1.487300e+02 1.629900e+02
+7 18930     9.826001e+01 2.209800e+02
+6 18931     5.266600e+02 1.612000e+02
+8 18931     5.558900e+02 -2.388000e+01
+6 18932     2.857800e+02 1.577100e+02
+7 18932     2.715400e+02 2.112800e+02
+6 18933     5.052900e+02 1.539100e+02
+12 18933     5.860100e+02 1.637700e+02
+6 18934     2.354800e+02 1.460100e+02
+12 18934     2.733500e+02 1.887500e+02
+6 18935     5.386899e+02 1.434600e+02
+12 18935     6.181500e+02 1.532600e+02
+6 18936     -1.317600e+02 1.384800e+02
+7 18936     -1.339500e+02 2.268700e+02
+13 18936     3.260601e+02 -1.230000e+02
+6 18937     -3.569600e+02 1.381900e+02
+9 18937     -2.935200e+02 3.985999e+01
+13 18937     2.173900e+02 -9.394000e+01
+14 18937     3.450100e+02 -5.714399e+02
+6 18938     5.569600e+02 1.363400e+02
+7 18938     5.310601e+02 1.685600e+02
+8 18938     5.801000e+02 -4.042001e+01
+9 18938     4.060000e+02 9.491000e+01
+6 18939     1.798900e+02 1.359800e+02
+10 18939     1.547400e+02 2.172100e+02
+12 18939     2.098800e+02 1.823000e+02
+13 18939     5.541500e+02 -1.656100e+02
+6 18940     5.681200e+02 1.313200e+02
+8 18940     5.874600e+02 -4.348001e+01
+9 18940     4.142400e+02 9.248001e+01
+12 18940     6.466300e+02 1.407000e+02
+6 18941     -9.067999e+01 1.171600e+02
+8 18941     1.065800e+02 3.829999e+01
+12 18941     -6.607001e+01 1.723100e+02
+13 18941     3.494301e+02 -1.434000e+02
+6 18942     1.969300e+02 1.131300e+02
+12 18942     2.260800e+02 1.595000e+02
+6 18943     1.009800e+02 1.124100e+02
+8 18943     2.552100e+02 3.751999e+01
+10 18943     5.759998e+01 2.054700e+02
+6 18944     5.786000e+02 9.934998e+01
+8 18944     5.969399e+02 -6.894000e+01
+12 18944     6.565000e+02 1.085000e+02
+6 18945     1.099800e+02 9.672998e+01
+12 18945     1.304500e+02 1.478500e+02
+6 18946     5.814500e+02 9.529999e+01
+9 18946     4.267500e+02 6.588000e+01
+12 18946     6.591000e+02 1.044700e+02
+6 18947     5.844000e+01 8.797998e+01
+12 18947     7.665002e+01 1.404600e+02
+6 18948     -2.537800e+02 7.991998e+01
+8 18948     -1.914001e+01 -1.354001e+01
+10 18948     -2.052000e+02 2.581600e+02
+6 18949     1.429100e+02 7.644000e+01
+8 18949     2.879400e+02 9.600006e+00
+6 18950     -4.072300e+02 7.177002e+01
+9 18950     -3.279700e+02 -3.800049e-01
+6 18951     -5.800000e+01 7.128003e+01
+12 18951     -3.972998e+01 1.265400e+02
+6 18952     3.728200e+02 5.965002e+01
+7 18952     3.139000e+02 1.135900e+02
+10 18952     3.914500e+02 1.169100e+02
+12 18952     4.233199e+02 8.957001e+01
+13 18952     7.140500e+02 -2.481500e+02
+15 18952     5.450100e+02 1.135400e+02
+6 18953     2.599700e+02 5.870001e+01
+12 18953     2.946600e+02 9.932001e+01
+6 18954     -3.148800e+02 4.514001e+01
+13 18954     1.998300e+02 -1.638900e+02
+6 18955     2.679100e+02 4.421002e+01
+12 18955     3.028500e+02 8.415997e+01
+6 18956     3.776400e+02 4.271997e+01
+7 18956     3.134700e+02 9.801001e+01
+12 18956     4.265900e+02 7.329999e+01
+6 18957     3.503998e+01 4.209003e+01
+8 18957     2.048700e+02 -1.039001e+01
+12 18957     4.959003e+01 9.504999e+01
+6 18958     -1.243700e+02 3.857001e+01
+12 18958     -1.038300e+02 9.482001e+01
+6 18959     2.209998e+01 3.408002e+01
+12 18959     3.570001e+01 8.740002e+01
+6 18960     2.678003e+01 3.228003e+01
+12 18960     3.971997e+01 8.550000e+01
+6 18961     2.835300e+02 2.379999e+01
+8 18961     3.945900e+02 -5.200000e+01
+12 18961     3.196100e+02 6.201001e+01
+6 18962     -4.077600e+02 2.196997e+01
+9 18962     -3.242100e+02 -2.839001e+01
+6 18963     -4.077600e+02 2.196997e+01
+9 18963     -3.242100e+02 -2.839001e+01
+6 18964     -3.010600e+02 1.571002e+01
+12 18964     -2.523100e+02 7.156000e+01
+6 18965     -2.919900e+02 1.216998e+01
+12 18965     -2.459200e+02 6.781000e+01
+6 18966     -3.843800e+02 1.063000e+01
+8 18966     -1.171000e+02 -1.171000e+02
+6 18967     2.601200e+02 7.049988e+00
+12 18967     2.899800e+02 4.739001e+01
+13 18967     6.029600e+02 -2.723100e+02
+6 18968     3.882500e+02 3.739990e+00
+12 18968     4.321801e+02 3.531000e+01
+6 18969     -1.312300e+02 2.000000e+00
+8 18969     7.367999e+01 -4.564001e+01
+12 18969     -1.119700e+02 5.809998e+01
+6 18970     2.574700e+02 1.859985e+00
+7 18970     1.759900e+02 7.119000e+01
+12 18970     2.861500e+02 4.260999e+01
+6 18971     -2.288700e+02 1.130005e+00
+10 18971     -2.279100e+02 1.741300e+02
+12 18971     -1.969400e+02 5.785999e+01
+6 18972     5.221997e+01 8.599854e-01
+10 18972     -1.821997e+01 1.052700e+02
+15 18972     5.287000e+01 9.585001e+01
+6 18973     1.876400e+02 6.500244e-01
+13 18973     5.398700e+02 -2.667000e+02
+6 18974     -1.650800e+02 -2.450012e+00
+8 18974     4.694000e+01 -5.363000e+01
+6 18975     -1.610500e+02 -8.799988e+00
+8 18975     5.013000e+01 -5.751999e+01
+12 18975     -1.387000e+02 4.778998e+01
+6 18976     3.303400e+02 -9.369995e+00
+12 18976     3.649500e+02 2.717999e+01
+6 18977     1.416800e+02 -2.301001e+01
+8 18977     2.879800e+02 -6.406000e+01
+6 18978     -6.444000e+01 -2.633002e+01
+8 18978     1.256800e+02 -6.397998e+01
+6 18979     -9.472000e+01 -2.822998e+01
+12 18979     -8.010999e+01 2.723999e+01
+6 18980     3.734003e+01 -3.203003e+01
+12 18980     4.870001e+01 1.871997e+01
+6 18981     -9.880005e+00 -4.388000e+01
+12 18981     1.820007e+00 9.239990e+00
+6 18982     -1.881900e+02 -4.398999e+01
+12 18982     -1.675500e+02 1.403003e+01
+6 18983     1.467500e+02 -4.406000e+01
+12 18983     1.624100e+02 1.809998e+00
+6 18984     1.731000e+01 -4.679999e+01
+12 18984     2.776001e+01 5.280029e+00
+6 18985     -8.014999e+01 -4.775000e+01
+12 18985     -6.696002e+01 8.250000e+00
+6 18986     -1.857700e+02 -5.515997e+01
+12 18986     -1.677200e+02 3.099976e+00
+6 18987     -1.663600e+02 -5.495001e+01
+8 18987     4.415997e+01 -8.945001e+01
+6 18988     -8.100000e+01 -5.472998e+01
+12 18988     -6.819000e+01 -6.799927e-01
+6 18989     -2.337000e+02 -5.550000e+01
+9 18989     -1.496800e+02 2.509998e+01
+6 18990     -3.366998e+01 -5.853003e+01
+7 18990     -8.921002e+01 4.946002e+01
+8 18990     1.493400e+02 -8.809003e+01
+15 18990     -4.369000e+01 5.346997e+01
+6 18991     3.622500e+02 -8.454999e+01
+12 18991     3.923500e+02 -5.114001e+01
+6 18992     -7.513000e+01 -9.747998e+01
+12 18992     -6.785999e+01 -4.242999e+01
+6 18993     -2.452500e+02 -1.016000e+02
+7 18993     -2.510200e+02 3.866998e+01
+6 18994     1.542100e+02 -1.091400e+02
+12 18994     1.643000e+02 -6.415002e+01
+6 18995     1.436100e+02 -1.110900e+02
+12 18995     1.529400e+02 -6.553003e+01
+6 18996     -2.869100e+02 -1.201800e+02
+8 18996     -5.153003e+01 -1.359600e+02
+12 18996     -2.697800e+02 -5.695001e+01
+6 18997     7.240997e+01 -1.204200e+02
+8 18997     2.340100e+02 -1.329200e+02
+12 18997     7.767999e+01 -7.191998e+01
+6 18998     -2.220900e+02 -1.225800e+02
+8 18998     -5.999756e-01 -1.381100e+02
+6 18999     1.110200e+02 -1.350200e+02
+15 18999     8.459003e+01 -7.095001e+01
+6 19000     -2.479900e+02 -1.493300e+02
+9 19000     -1.534100e+02 -3.959998e+01
+6 19001     2.087500e+02 -1.705601e+02
+7 19001     9.672998e+01 -7.481000e+01
+6 19002     -2.288400e+02 -1.743800e+02
+8 19002     -7.890015e+00 -1.802900e+02
+9 19002     -1.371300e+02 -5.894000e+01
+6 19003     -1.737600e+02 -1.797800e+02
+7 19003     -2.213800e+02 -3.709998e+01
+6 19004     1.403400e+02 -1.977800e+02
+12 19004     1.423200e+02 -1.537000e+02
+13 19004     4.723900e+02 -4.067800e+02
+15 19004     9.129999e+01 -1.519100e+02
+6 19005     1.403400e+02 -1.977800e+02
+12 19005     1.423200e+02 -1.537000e+02
+13 19005     4.723900e+02 -4.067800e+02
+6 19006     2.107100e+02 -1.984900e+02
+8 19006     3.443700e+02 -1.970900e+02
+12 19006     2.169900e+02 -1.581800e+02
+6 19007     2.632500e+02 -2.114000e+02
+12 19007     2.765601e+02 -1.757200e+02
+6 19008     2.842900e+02 -2.178600e+02
+8 19008     4.017900e+02 -2.261800e+02
+6 19009     -3.576001e+01 -2.201700e+02
+12 19009     -3.867999e+01 -1.679800e+02
+6 19010     -5.609998e+01 -2.473800e+02
+12 19010     -5.596997e+01 -1.950900e+02
+6 19011     8.898999e+01 -2.525900e+02
+8 19011     2.460600e+02 -2.408100e+02
+9 19011     1.332700e+02 -9.259998e+01
+6 19012     2.658002e+01 -2.725400e+02
+13 19012     3.797800e+02 -4.413700e+02
+6 19013     1.676800e+02 -2.756801e+02
+8 19013     3.093900e+02 -2.620500e+02
+6 19014     2.868200e+02 -2.793300e+02
+8 19014     4.019200e+02 -2.841900e+02
+6 19015     2.456300e+02 -2.817300e+02
+12 19015     2.604200e+02 -2.476800e+02
+6 19016     1.550000e+01 -2.941600e+02
+9 19016     7.520001e+01 -1.370800e+02
+6 19017     2.403000e+02 -2.939200e+02
+8 19017     3.656900e+02 -2.900300e+02
+12 19017     2.537900e+02 -2.597900e+02
+6 19018     2.403000e+02 -2.939200e+02
+12 19018     2.537900e+02 -2.597900e+02
+6 19019     -8.773001e+01 -3.139100e+02
+13 19019     2.950601e+02 -4.503300e+02
+6 19020     -5.681500e+02 -3.178900e+02
+7 19020     -4.583300e+02 -8.512000e+01
+8 19020     -2.725400e+02 -3.140700e+02
+13 19020     -5.250000e+00 -3.712700e+02
+6 19021     -1.027900e+02 -3.234600e+02
+8 19021     8.798999e+01 -3.057100e+02
+6 19022     7.262000e+01 -3.257200e+02
+12 19022     7.606000e+01 -2.820500e+02
+6 19023     -1.322600e+02 -3.500300e+02
+12 19023     -1.218000e+02 -2.938900e+02
+13 19023     2.628700e+02 -4.681400e+02
+6 19024     -4.350000e+01 -3.535400e+02
+12 19024     -3.722998e+01 -3.033600e+02
+6 19025     1.781500e+02 -3.663199e+02
+12 19025     1.871900e+02 -3.304500e+02
+6 19026     -1.289600e+02 -3.694100e+02
+13 19026     2.629500e+02 -4.820400e+02
+6 19027     3.113000e+01 -3.744200e+02
+12 19027     3.566998e+01 -3.293300e+02
+6 19028     -4.656000e+02 -4.207500e+02
+7 19028     -4.127300e+02 -1.794900e+02
+6 19029     -4.923800e+02 -4.336801e+02
+7 19029     -4.337400e+02 -1.856600e+02
+8 19029     -2.233300e+02 -3.941400e+02
+13 19029     1.844000e+01 -4.615100e+02
+6 19030     -4.927200e+02 -4.377200e+02
+7 19030     -4.354500e+02 -1.890600e+02
+6 19031     1.607500e+02 -4.814301e+02
+12 19031     1.641400e+02 -4.449500e+02
+6 19032     1.448000e+02 -5.081899e+02
+12 19032     1.442200e+02 -4.712400e+02
+6 19033     -3.951400e+02 -5.117500e+02
+7 19033     -3.842300e+02 -2.614700e+02
+6 19034     -3.738700e+02 -5.165800e+02
+9 19034     -2.464900e+02 -3.609300e+02
+10 19034     -4.271500e+02 -2.476500e+02
+13 19034     7.745001e+01 -5.399000e+02
+15 19034     -4.134400e+02 -3.202900e+02
+6 19035     -4.562600e+02 -5.333700e+02
+7 19035     -4.336200e+02 -2.701200e+02
+6 19036     3.832500e+02 -5.443500e+02
+9 19036     3.839500e+02 -3.355100e+02
+6 19037     -2.923800e+02 -5.603000e+02
+15 19037     -3.630000e+02 -3.889000e+02
+6 19038     5.738101e+02 -5.679100e+02
+7 19038     3.693700e+02 -4.475000e+02
+6 19039     -2.158100e+02 -5.833101e+02
+7 19039     -2.722100e+02 -3.443900e+02
+15 19039     -3.058300e+02 -4.365100e+02
+6 19040     -2.123700e+02 -5.877200e+02
+7 19040     -2.697900e+02 -3.480300e+02
+6 19041     -3.462700e+02 -5.952900e+02
+9 19041     -2.145600e+02 -4.125700e+02
+15 19041     -4.289700e+02 -4.109700e+02
+6 19042     -3.553700e+02 -6.043000e+02
+15 19042     -4.403500e+02 -4.172600e+02
+6 19043     4.428800e+02 -6.331200e+02
+9 19043     4.473101e+02 -3.883100e+02
+6 19044     -8.648001e+01 -6.383900e+02
+9 19044     1.339001e+01 -4.267500e+02
+6 19045     -7.800293e-01 -6.771300e+02
+9 19045     9.181000e+01 -4.470699e+02
+6 19046     -7.800293e-01 -6.771300e+02
+9 19046     9.181000e+01 -4.470699e+02
+6 19047     5.723101e+02 -6.848300e+02
+7 19047     3.340100e+02 -5.483000e+02
+6 19048     5.297700e+02 -6.937400e+02
+7 19048     2.952500e+02 -5.499800e+02
+6 19049     4.646000e+02 -6.990400e+02
+7 19049     2.390000e+02 -5.443800e+02
+6 19050     -1.992400e+02 -7.011100e+02
+7 19050     -2.895400e+02 -4.423400e+02
+6 19051     2.858400e+02 -7.170400e+02
+7 19051     8.456000e+01 -5.315300e+02
+6 19052     -1.768200e+02 -7.183300e+02
+7 19052     -2.774800e+02 -4.588500e+02
+6 19053     -1.188400e+02 -7.450000e+02
+7 19053     -2.392000e+02 -4.904500e+02
+6 19054     -2.146300e+02 -7.617400e+02
+7 19054     -3.164200e+02 -4.882900e+02
+6 19055     1.149100e+02 -7.761899e+02
+7 19055     -6.777002e+01 -5.531700e+02
+6 19056     -1.580100e+02 -7.833500e+02
+7 19056     -2.794000e+02 -5.141700e+02
+6 19057     5.721002e+01 -7.994000e+02
+7 19057     -1.190000e+02 -5.624301e+02
+6 19058     5.721002e+01 -7.994000e+02
+7 19058     -1.190000e+02 -5.624301e+02
+10 19058     -2.007800e+02 -6.181100e+02
+6 19059     4.603998e+01 -8.031600e+02
+7 19059     -1.288800e+02 -5.640601e+02
+10 19059     -2.122400e+02 -6.189500e+02
+6 19060     4.603998e+01 -8.031600e+02
+7 19060     -1.288800e+02 -5.640601e+02
+6 19061     -9.792999e+01 -8.194301e+02
+7 19061     -2.433500e+02 -5.532300e+02
+6 19062     -2.022700e+02 8.574600e+02
+8 19062     3.371002e+01 3.893600e+02
+11 19062     3.908900e+02 -6.591998e+01
+6 19063     -1.315200e+02 8.572900e+02
+8 19063     7.984003e+01 3.826400e+02
+6 19064     1.886200e+02 8.394500e+02
+8 19064     2.976000e+02 4.200900e+02
+9 19064     8.690997e+01 5.523600e+02
+11 19064     6.088600e+02 -1.058500e+02
+6 19065     -1.200600e+02 8.330500e+02
+8 19065     8.740997e+01 3.662600e+02
+6 19066     -1.200600e+02 8.330500e+02
+8 19066     8.740997e+01 3.662600e+02
+6 19067     -1.109985e+00 8.314500e+02
+8 19067     1.646200e+02 3.537000e+02
+11 19067     5.635000e+02 -9.042999e+01
+13 19067     5.648101e+02 3.473600e+02
+14 19067     7.674301e+02 -3.528003e+01
+6 19068     -3.929993e+00 8.215100e+02
+8 19068     1.623900e+02 3.467400e+02
+11 19068     5.605900e+02 -9.700000e+01
+13 19068     5.616500e+02 3.411100e+02
+14 19068     7.643400e+02 -4.265002e+01
+6 19069     1.241300e+02 8.112600e+02
+8 19069     2.458400e+02 3.265900e+02
+6 19070     -1.619000e+02 7.965200e+02
+8 19070     5.940997e+01 3.470600e+02
+6 19071     2.597000e+02 7.904500e+02
+8 19071     3.471200e+02 3.928400e+02
+6 19072     -5.926001e+01 7.869600e+02
+8 19072     1.258700e+02 3.307100e+02
+6 19073     -5.425000e+01 7.832600e+02
+8 19073     1.296400e+02 3.274700e+02
+6 19074     -5.184998e+01 7.714900e+02
+11 19074     5.172900e+02 -1.275600e+02
+14 19074     7.160800e+02 -7.801001e+01
+6 19075     4.873999e+01 7.631100e+02
+8 19075     1.970100e+02 3.037200e+02
+9 19075     -3.871997e+01 4.110900e+02
+14 19075     8.123900e+02 -9.363000e+01
+6 19076     4.312500e+02 7.452800e+02
+8 19076     4.730601e+02 3.992700e+02
+6 19077     -3.209000e+02 7.411000e+02
+8 19077     -4.653003e+01 3.273500e+02
+9 19077     -2.880600e+02 4.355900e+02
+6 19078     2.584998e+01 7.347300e+02
+8 19078     1.811300e+02 2.876200e+02
+6 19079     -4.309998e+01 7.329200e+02
+8 19079     1.362200e+02 2.944000e+02
+6 19080     3.801200e+02 7.285000e+02
+9 19080     2.413199e+02 5.221500e+02
+6 19081     -1.213100e+02 7.243500e+02
+9 19081     -1.520800e+02 4.010000e+02
+6 19082     2.260300e+02 7.203000e+02
+8 19082     3.248100e+02 3.441400e+02
+6 19083     5.365800e+02 7.174300e+02
+8 19083     5.492400e+02 3.881000e+02
+9 19083     3.569800e+02 5.321900e+02
+6 19084     5.365800e+02 7.174300e+02
+8 19084     5.492400e+02 3.881000e+02
+9 19084     3.569800e+02 5.321900e+02
+6 19085     -1.059100e+02 7.049100e+02
+9 19085     -1.409100e+02 3.861300e+02
+6 19086     -2.789001e+01 6.924000e+02
+8 19086     1.461400e+02 2.665100e+02
+9 19086     -8.776001e+01 3.705700e+02
+6 19087     5.267600e+02 6.832900e+02
+9 19087     3.519100e+02 5.066400e+02
+6 19088     -1.870400e+02 6.802900e+02
+11 19088     3.971200e+02 -1.806200e+02
+6 19089     1.648400e+02 6.595600e+02
+8 19089     2.822500e+02 2.983200e+02
+13 19089     6.493000e+02 2.190200e+02
+6 19090     -2.963000e+02 6.499300e+02
+12 19090     -1.273500e+02 6.171900e+02
+6 19091     -5.102400e+02 6.364200e+02
+12 19091     -3.339100e+02 6.126500e+02
+6 19092     -2.271100e+02 6.082500e+02
+12 19092     -6.100000e+01 5.760100e+02
+6 19093     -2.271100e+02 6.082500e+02
+8 19093     1.196002e+01 2.306200e+02
+12 19093     -6.100000e+01 5.760100e+02
+6 19094     4.967600e+02 6.055700e+02
+9 19094     3.337900e+02 4.466900e+02
+6 19095     1.950100e+02 5.881200e+02
+7 19095     2.959000e+02 5.841600e+02
+9 19095     1.001100e+02 3.713100e+02
+11 19095     6.127600e+02 -2.924000e+02
+12 19095     3.050800e+02 5.740000e+02
+6 19096     -4.502200e+02 5.877600e+02
+9 19096     -3.782600e+02 3.368800e+02
+11 19096     1.744800e+02 -2.214400e+02
+14 19096     3.451000e+02 -1.855300e+02
+6 19097     -1.964900e+02 5.772900e+02
+12 19097     -3.128998e+01 5.467900e+02
+6 19098     -1.978100e+02 5.679300e+02
+12 19098     -3.239001e+01 5.384900e+02
+6 19099     -3.951300e+02 5.663000e+02
+9 19099     -3.394400e+02 3.158600e+02
+12 19099     -2.241200e+02 5.454200e+02
+6 19100     5.005300e+02 5.561200e+02
+9 19100     3.390800e+02 4.107000e+02
+12 19100     5.810699e+02 5.664400e+02
+6 19101     -2.386100e+02 5.510100e+02
+8 19101     3.159973e+00 1.936600e+02
+9 19101     -2.295700e+02 2.884100e+02
+14 19101     5.269399e+02 -2.376400e+02
+6 19102     -2.312100e+02 5.493400e+02
+12 19102     -6.459998e+01 5.231100e+02
+6 19103     -2.312100e+02 5.493400e+02
+8 19103     7.559998e+00 1.910900e+02
+9 19103     -2.259000e+02 2.855500e+02
+12 19103     -6.459998e+01 5.231100e+02
+6 19104     -3.195500e+02 5.470800e+02
+12 19104     -1.542200e+02 5.273400e+02
+6 19105     3.249100e+02 5.390400e+02
+8 19105     3.961500e+02 2.256200e+02
+9 19105     1.991400e+02 3.511900e+02
+6 19106     -4.272700e+02 5.292700e+02
+12 19106     -2.542900e+02 5.138100e+02
+6 19107     -2.230600e+02 5.266800e+02
+7 19107     -2.580017e+00 5.583200e+02
+14 19107     5.378500e+02 -2.600200e+02
+6 19108     -4.378800e+02 5.138700e+02
+12 19108     -2.651400e+02 5.005000e+02
+6 19109     -1.857100e+02 5.145500e+02
+9 19109     -1.934400e+02 2.547800e+02
+12 19109     -2.112000e+01 4.895300e+02
+6 19110     -1.857100e+02 5.145500e+02
+9 19110     -1.934400e+02 2.547800e+02
+12 19110     -2.112000e+01 4.895300e+02
+6 19111     -1.436800e+02 4.980900e+02
+8 19111     6.572998e+01 1.465600e+02
+14 19111     6.091700e+02 -2.929000e+02
+6 19112     -4.514800e+02 4.937200e+02
+12 19112     -2.781600e+02 4.828100e+02
+6 19113     4.018500e+02 4.943200e+02
+9 19113     2.688900e+02 3.533300e+02
+10 19113     6.070400e+02 5.817000e+02
+11 19113     7.323800e+02 -4.044600e+02
+12 19113     4.860000e+02 5.016100e+02
+6 19114     5.129900e+02 4.568500e+02
+12 19114     5.936400e+02 4.671100e+02
+6 19115     -1.838000e+01 4.030300e+02
+14 19115     7.050601e+02 -3.929800e+02
+6 19116     -4.994900e+02 3.980100e+02
+8 19116     -1.796500e+02 1.168600e+02
+9 19116     -4.148800e+02 2.000300e+02
+6 19117     3.458000e+02 3.942900e+02
+8 19117     4.176000e+02 1.416900e+02
+6 19118     2.570200e+02 3.732900e+02
+7 19118     3.320900e+02 4.004800e+02
+8 19118     3.496100e+02 1.008100e+02
+13 19118     6.960800e+02 5.880005e+00
+15 19118     6.769900e+02 5.577800e+02
+6 19119     -4.219800e+02 3.724900e+02
+9 19119     -3.594200e+02 1.702800e+02
+6 19120     -4.491800e+02 3.468400e+02
+8 19120     -1.473000e+02 7.367001e+01
+9 19120     -3.791400e+02 1.529600e+02
+11 19120     1.565800e+02 -3.829100e+02
+12 19120     -2.759700e+02 3.495500e+02
+6 19121     4.789301e+02 3.332100e+02
+9 19121     3.356300e+02 2.397000e+02
+6 19122     5.559301e+02 3.250300e+02
+8 19122     5.750000e+02 1.042400e+02
+9 19122     3.938500e+02 2.432500e+02
+6 19123     -2.055400e+02 3.001000e+02
+11 19123     3.067100e+02 -4.527600e+02
+12 19123     -6.384998e+01 3.064700e+02
+15 19123     1.702300e+02 5.529200e+02
+6 19124     -2.724000e+02 2.838000e+02
+11 19124     2.527900e+02 -4.543200e+02
+13 19124     3.012600e+02 -3.710022e+00
+14 19124     4.517100e+02 -4.583101e+02
+6 19125     -2.770700e+02 2.689800e+02
+7 19125     -9.475000e+01 3.580700e+02
+11 19125     2.430800e+02 -4.648400e+02
+13 19125     2.950200e+02 -1.359003e+01
+6 19126     3.542800e+02 2.627900e+02
+12 19126     4.423600e+02 2.727300e+02
+6 19127     3.837300e+02 2.629000e+02
+7 19127     4.040800e+02 2.946200e+02
+8 19127     4.470601e+02 4.551001e+01
+9 19127     2.661300e+02 1.728900e+02
+6 19128     4.191900e+02 2.595100e+02
+9 19128     2.938800e+02 1.746200e+02
+6 19129     4.041500e+02 2.586000e+02
+9 19129     2.822200e+02 1.721000e+02
+15 19129     7.708500e+02 3.792300e+02
+6 19130     4.041500e+02 2.586000e+02
+8 19130     4.622300e+02 4.379001e+01
+12 19130     4.895300e+02 2.678200e+02
+6 19131     5.458000e+02 2.572800e+02
+9 19131     3.897400e+02 1.893000e+02
+6 19132     -2.483200e+02 2.147600e+02
+7 19132     -8.553003e+01 3.130100e+02
+11 19132     2.410800e+02 -5.116400e+02
+13 19132     3.059500e+02 -5.319000e+01
+14 19132     4.576300e+02 -5.228199e+02
+6 19133     1.277700e+02 2.147800e+02
+12 19133     1.714600e+02 2.578200e+02
+6 19134     3.298500e+02 2.113600e+02
+12 19134     4.197500e+02 2.217500e+02
+6 19135     5.760699e+02 2.109300e+02
+8 19135     5.916100e+02 1.784000e+01
+9 19135     4.151700e+02 1.564100e+02
+6 19136     1.666600e+02 2.047300e+02
+12 19136     2.055200e+02 2.492900e+02
+6 19137     3.596400e+02 1.874200e+02
+7 19137     3.806000e+02 2.339000e+02
+6 19138     3.596400e+02 1.874200e+02
+10 19138     5.254800e+02 2.786700e+02
+13 19138     7.503800e+02 -1.461700e+02
+15 19138     7.133600e+02 3.057100e+02
+6 19139     2.856700e+02 1.577200e+02
+12 19139     3.507500e+02 1.851600e+02
+6 19140     5.658000e+02 1.578800e+02
+7 19140     5.393101e+02 1.853000e+02
+6 19141     3.441700e+02 1.471100e+02
+15 19141     6.919500e+02 2.636400e+02
+6 19142     1.330000e+02 1.462400e+02
+12 19142     1.602700e+02 1.955500e+02
+6 19143     2.424000e+02 1.384200e+02
+12 19143     2.809200e+02 1.803800e+02
+6 19144     4.463199e+02 1.240500e+02
+7 19144     4.432800e+02 1.714300e+02
+6 19145     4.463199e+02 1.240500e+02
+7 19145     4.432800e+02 1.714300e+02
+12 19145     5.292300e+02 1.350400e+02
+15 19145     7.960699e+02 2.084900e+02
+6 19146     5.634700e+02 1.242600e+02
+8 19146     5.849500e+02 -4.985001e+01
+12 19146     6.422600e+02 1.335500e+02
+6 19147     -1.454900e+02 1.225300e+02
+9 19147     -8.596002e+01 1.664600e+02
+6 19148     5.406899e+02 1.141300e+02
+9 19148     3.946801e+02 7.523999e+01
+10 19148     6.784700e+02 1.634200e+02
+12 19148     6.197900e+02 1.239400e+02
+6 19149     1.837900e+02 1.066000e+02
+7 19149     1.201800e+02 1.689400e+02
+8 19149     3.185300e+02 2.635999e+01
+13 19149     5.525300e+02 -1.867200e+02
+15 19149     2.508600e+02 1.949500e+02
+6 19150     2.538100e+02 1.056200e+02
+12 19150     2.900601e+02 1.468000e+02
+6 19151     4.293900e+02 1.054200e+02
+7 19151     4.290200e+02 1.582700e+02
+10 19151     5.753600e+02 1.828500e+02
+12 19151     5.132100e+02 1.167100e+02
+13 19151     7.980601e+02 -2.181600e+02
+15 19151     7.747400e+02 1.927400e+02
+6 19152     2.468400e+02 1.042900e+02
+12 19152     2.814500e+02 1.478100e+02
+6 19153     1.309100e+02 8.337000e+01
+8 19153     2.785200e+02 1.557001e+01
+12 19153     1.517600e+02 1.333500e+02
+6 19154     -1.128003e+01 7.625000e+01
+8 19154     1.687500e+02 1.392999e+01
+6 19155     -2.666300e+02 6.894000e+01
+8 19155     -2.965002e+01 -1.937000e+01
+6 19156     -3.510300e+02 6.789001e+01
+12 19156     -2.882600e+02 1.211800e+02
+6 19157     -2.917800e+02 6.115997e+01
+12 19157     -2.337100e+02 1.131100e+02
+6 19158     -4.447600e+02 5.798999e+01
+9 19158     -3.564100e+02 -9.419983e+00
+6 19159     -1.949400e+02 4.987000e+01
+7 19159     -1.892100e+02 1.592600e+02
+12 19159     -1.634000e+02 1.052800e+02
+6 19160     1.820500e+02 3.128998e+01
+8 19160     3.187400e+02 -2.612000e+01
+6 19161     2.158002e+01 2.101001e+01
+12 19161     3.454999e+01 7.419000e+01
+6 19162     -2.288100e+02 2.010999e+01
+12 19162     -1.925900e+02 7.583002e+01
+6 19163     2.829400e+02 1.829999e+01
+12 19163     3.189200e+02 5.626001e+01
+6 19164     -2.242999e+01 1.596997e+01
+8 19164     1.597100e+02 -3.029001e+01
+12 19164     -9.200012e+00 7.028998e+01
+6 19165     -1.728600e+02 1.559998e+00
+8 19165     4.113000e+01 -5.112000e+01
+6 19166     4.598400e+02 -1.590027e+00
+7 19166     4.301200e+02 6.322998e+01
+12 19166     5.340200e+02 1.366998e+01
+6 19167     1.293500e+02 -9.559998e+00
+12 19167     1.443500e+02 3.790002e+01
+6 19168     -3.034400e+02 -1.690997e+01
+8 19168     -5.990002e+01 -7.600000e+01
+6 19169     -1.317600e+02 -3.296002e+01
+8 19169     7.222998e+01 -7.322998e+01
+6 19170     1.253000e+02 -3.340997e+01
+8 19170     2.750800e+02 -7.142999e+01
+6 19171     4.619200e+02 -3.502002e+01
+12 19171     5.337500e+02 -1.833002e+01
+6 19172     -2.689001e+01 -3.615997e+01
+8 19172     1.542800e+02 -7.083002e+01
+12 19172     -1.540997e+01 1.778003e+01
+6 19173     3.900300e+02 -3.903003e+01
+7 19173     2.979500e+02 2.389001e+01
+12 19173     4.280601e+02 -6.979980e+00
+6 19174     -1.775700e+02 -4.306000e+01
+12 19174     -1.580500e+02 1.434998e+01
+6 19175     3.129200e+02 -4.496002e+01
+12 19175     3.428101e+02 -8.020020e+00
+6 19176     -1.676000e+02 -5.000000e+01
+12 19176     -1.494400e+02 7.330017e+00
+6 19177     1.253000e+02 -6.445001e+01
+8 19177     2.750900e+02 -9.613000e+01
+12 19177     1.391900e+02 -1.750000e+01
+6 19178     -5.533002e+01 -7.859998e+01
+10 19178     -1.217200e+02 5.617999e+01
+6 19179     -9.320007e+00 -8.294000e+01
+8 19179     1.682800e+02 -1.087400e+02
+6 19180     -1.001300e+02 -9.023999e+01
+12 19180     -9.091998e+01 -3.427002e+01
+6 19181     3.842000e+02 -9.547998e+01
+8 19181     4.756700e+02 -1.406400e+02
+12 19181     4.162300e+02 -6.346002e+01
+6 19182     7.883002e+01 -1.317700e+02
+8 19182     2.390000e+02 -1.429000e+02
+6 19183     1.839300e+02 -1.319300e+02
+12 19183     1.960000e+02 -8.967999e+01
+6 19184     2.487800e+02 -1.506200e+02
+8 19184     3.734900e+02 -1.662100e+02
+6 19185     -2.758800e+02 -1.669700e+02
+7 19185     -2.740300e+02 -9.760010e+00
+9 19185     -1.786500e+02 -6.469000e+01
+12 19185     -2.539100e+02 -1.053400e+02
+6 19186     -2.240200e+02 -1.709000e+02
+7 19186     -2.449100e+02 -2.065997e+01
+12 19186     -2.116500e+02 -1.104100e+02
+6 19187     -1.683200e+02 -1.795100e+02
+8 19187     4.048999e+01 -1.742800e+02
+6 19188     8.073999e+01 -1.876000e+02
+12 19188     8.203003e+01 -1.405600e+02
+6 19189     4.060999e+01 -1.995200e+02
+7 19189     -5.383002e+01 -7.953998e+01
+10 19189     -7.940997e+01 -8.358002e+01
+12 19189     3.919000e+01 -1.509200e+02
+6 19190     3.509700e+02 -2.115400e+02
+12 19190     3.810000e+02 -1.818200e+02
+6 19191     -5.737000e+01 -2.128300e+02
+7 19191     -1.328500e+02 -7.839001e+01
+12 19191     -5.946002e+01 -1.597000e+02
+15 19191     -1.169600e+02 -1.128500e+02
+6 19192     -1.533000e+02 -2.278700e+02
+8 19192     5.100000e+01 -2.190300e+02
+6 19193     3.472700e+02 -2.433199e+02
+12 19193     3.769700e+02 -2.150200e+02
+6 19194     3.472700e+02 -2.433199e+02
+7 19194     2.400200e+02 -1.413800e+02
+12 19194     3.769700e+02 -2.150200e+02
+6 19195     -5.159973e+00 -2.873600e+02
+8 19195     1.680600e+02 -2.691500e+02
+6 19196     1.673100e+02 -2.886899e+02
+8 19196     3.087800e+02 -2.739900e+02
+6 19197     -5.760999e+01 -2.920800e+02
+8 19197     1.260800e+02 -2.753900e+02
+12 19197     -5.434003e+01 -2.404900e+02
+6 19198     -1.284700e+02 -2.958199e+02
+7 19198     -1.775200e+02 -1.320000e+02
+8 19198     6.889001e+01 -2.814400e+02
+9 19198     -4.845001e+01 -1.558300e+02
+6 19199     -1.930900e+02 -3.017400e+02
+7 19199     -2.176900e+02 -1.248400e+02
+9 19199     -1.070000e+02 -1.772200e+02
+12 19199     -1.772300e+02 -2.420500e+02
+13 19199     2.279900e+02 -4.230500e+02
+6 19200     2.465900e+02 -3.044900e+02
+12 19200     2.615400e+02 -2.710100e+02
+6 19201     2.465900e+02 -3.044900e+02
+12 19201     2.615400e+02 -2.710100e+02
+6 19202     2.149400e+02 -3.069301e+02
+8 19202     3.441200e+02 -3.017500e+02
+12 19202     2.273199e+02 -2.713400e+02
+6 19203     2.118000e+02 -3.150699e+02
+8 19203     3.425700e+02 -3.074100e+02
+6 19204     2.118000e+02 -3.150699e+02
+8 19204     3.425700e+02 -3.074100e+02
+6 19205     3.017500e+02 -3.183800e+02
+12 19205     3.220100e+02 -2.886600e+02
+6 19206     -7.758002e+01 -3.301600e+02
+7 19206     -1.420200e+02 -1.658200e+02
+8 19206     1.082200e+02 -3.092200e+02
+6 19207     5.015002e+01 -3.499800e+02
+12 19207     5.515997e+01 -3.053300e+02
+6 19208     -5.177700e+02 -3.623700e+02
+7 19208     -4.350100e+02 -1.263900e+02
+13 19208     1.642999e+01 -4.089100e+02
+6 19209     -5.177700e+02 -3.623700e+02
+9 19209     -3.829300e+02 -2.667900e+02
+13 19209     1.642999e+01 -4.089100e+02
+6 19210     -4.451000e+02 -4.581000e+02
+9 19210     -3.129800e+02 -3.259100e+02
+6 19211     1.576600e+02 -4.707700e+02
+12 19211     1.612800e+02 -4.338400e+02
+6 19212     1.829100e+02 -4.782100e+02
+12 19212     1.871200e+02 -4.432900e+02
+6 19213     3.991800e+02 -5.247000e+02
+7 19213     2.338199e+02 -3.845000e+02
+6 19214     -2.941000e+02 -5.654500e+02
+15 19214     -3.672400e+02 -3.943000e+02
+6 19215     -2.158200e+02 -6.241500e+02
+9 19215     -9.814001e+01 -4.252400e+02
+6 19216     3.684700e+02 -6.238800e+02
+7 19216     1.802000e+02 -4.653500e+02
+12 19216     3.620601e+02 -6.058800e+02
+6 19217     4.328600e+02 -6.866000e+02
+7 19217     2.157900e+02 -5.283700e+02
+6 19218     -1.088600e+02 -7.002800e+02
+7 19218     -2.216600e+02 -4.546801e+02
+6 19219     -9.904999e+01 -7.050601e+02
+7 19219     -2.153000e+02 -4.607900e+02
+6 19220     4.807001e+01 -8.286899e+02
+9 19220     1.566200e+02 -5.492300e+02
+6 19221     -8.392999e+01 -8.353500e+02
+7 19221     -2.373400e+02 -5.681600e+02
+6 19222     2.706900e+02 8.759400e+02
+8 19222     3.533200e+02 4.479400e+02
+6 19223     6.725000e+01 8.604800e+02
+8 19223     2.084300e+02 3.644200e+02
+6 19224     -2.604400e+02 8.567200e+02
+8 19224     -3.539978e+00 3.948500e+02
+6 19225     -2.604400e+02 8.567200e+02
+8 19225     -3.539978e+00 3.948500e+02
+6 19226     -2.209003e+01 8.478400e+02
+11 19226     5.447900e+02 -7.934003e+01
+6 19227     1.628900e+02 8.439100e+02
+9 19227     6.765997e+01 5.522800e+02
+11 19227     5.905300e+02 -9.989001e+01
+6 19228     -1.372000e+02 8.385000e+02
+8 19228     7.609998e+01 3.709100e+02
+6 19229     -4.461700e+02 8.228400e+02
+8 19229     -1.255200e+02 3.918100e+02
+6 19230     1.923500e+02 8.161400e+02
+8 19230     2.999200e+02 4.051100e+02
+9 19230     8.919000e+01 5.355400e+02
+11 19230     6.101400e+02 -1.212800e+02
+6 19231     4.460300e+02 8.075900e+02
+8 19231     4.814900e+02 4.369600e+02
+6 19232     -4.948000e+02 7.807400e+02
+8 19232     -1.589300e+02 3.703700e+02
+6 19233     -6.572998e+01 7.684200e+02
+13 19233     5.103500e+02 3.086400e+02
+6 19234     -6.572998e+01 7.684200e+02
+9 19234     -1.150000e+02 4.276500e+02
+13 19234     5.103500e+02 3.086400e+02
+6 19235     -4.726300e+02 7.086900e+02
+8 19235     -1.476300e+02 3.213800e+02
+6 19236     -3.229500e+02 7.051200e+02
+8 19236     -4.860999e+01 3.051000e+02
+6 19237     -3.507001e+01 7.008200e+02
+8 19237     1.413100e+02 2.722200e+02
+6 19238     4.542800e+02 6.852500e+02
+9 19238     2.983101e+02 4.993200e+02
+6 19239     -1.817100e+02 6.672200e+02
+8 19239     4.325000e+01 2.648900e+02
+6 19240     -1.010800e+02 6.388000e+02
+12 19240     6.082001e+01 5.984300e+02
+6 19241     -1.010800e+02 6.388000e+02
+8 19241     9.765002e+01 2.388300e+02
+12 19241     6.082001e+01 5.984300e+02
+6 19242     -2.279800e+02 6.324600e+02
+8 19242     1.170001e+01 2.470600e+02
+9 19242     -2.237400e+02 3.459500e+02
+11 19242     3.574600e+02 -2.106600e+02
+12 19242     -6.304999e+01 5.987800e+02
+6 19243     -1.758000e+02 6.292700e+02
+12 19243     -1.095001e+01 5.922600e+02
+6 19244     -1.305000e+02 6.182100e+02
+12 19244     3.210999e+01 5.816000e+02
+6 19245     4.882400e+02 5.975300e+02
+12 19245     5.689100e+02 6.080700e+02
+6 19246     -4.039800e+02 5.955800e+02
+12 19246     -2.322700e+02 5.724100e+02
+6 19247     -4.039800e+02 5.955800e+02
+9 19247     -3.457600e+02 3.390700e+02
+12 19247     -2.322700e+02 5.724100e+02
+6 19248     -3.517000e+02 5.513100e+02
+12 19248     -1.827900e+02 5.300000e+02
+6 19249     4.669301e+02 5.402900e+02
+7 19249     4.867400e+02 5.243900e+02
+12 19249     5.481200e+02 5.497000e+02
+6 19250     4.669301e+02 5.402900e+02
+7 19250     4.867400e+02 5.243900e+02
+12 19250     5.481200e+02 5.497000e+02
+6 19251     -5.307300e+02 5.336900e+02
+8 19251     -1.942100e+02 2.120600e+02
+6 19252     3.512900e+02 5.268800e+02
+8 19252     4.203300e+02 2.391400e+02
+9 19252     2.287700e+02 3.711000e+02
+6 19253     2.575600e+02 5.069000e+02
+7 19253     3.394500e+02 5.118300e+02
+9 19253     1.500800e+02 3.196700e+02
+11 19253     6.578000e+02 -3.643300e+02
+6 19254     1.727500e+02 5.040800e+02
+9 19254     8.637000e+01 3.072600e+02
+12 19254     2.824100e+02 4.966300e+02
+6 19255     3.490997e+01 5.013400e+02
+13 19255     5.584900e+02 1.188000e+02
+6 19256     3.242999e+01 4.949100e+02
+7 19256     2.056899e+02 5.158600e+02
+13 19256     5.564399e+02 1.143400e+02
+6 19257     4.318300e+02 4.939600e+02
+9 19257     2.918500e+02 3.562800e+02
+12 19257     5.149399e+02 5.026800e+02
+6 19258     -4.848700e+02 4.802500e+02
+12 19258     -3.101000e+02 4.715000e+02
+6 19259     -5.192200e+02 4.778900e+02
+12 19259     -3.432300e+02 4.704800e+02
+6 19260     2.929200e+02 4.692100e+02
+8 19260     3.743500e+02 1.731400e+02
+9 19260     1.781700e+02 2.952200e+02
+12 19260     3.942200e+02 4.644700e+02
+6 19261     1.443900e+02 4.357600e+02
+13 19261     6.166200e+02 6.137000e+01
+6 19262     1.928700e+02 4.163200e+02
+8 19262     3.028900e+02 1.288400e+02
+13 19262     6.530800e+02 4.192999e+01
+6 19263     1.809700e+02 4.119600e+02
+8 19263     2.949400e+02 1.246600e+02
+12 19263     2.932500e+02 4.074000e+02
+6 19264     3.720900e+02 4.103200e+02
+7 19264     4.035300e+02 4.206300e+02
+8 19264     4.366400e+02 1.557700e+02
+9 19264     2.501100e+02 2.857200e+02
+12 19264     4.585500e+02 4.174600e+02
+13 19264     7.783300e+02 2.014001e+01
+15 19264     7.594301e+02 5.704700e+02
+6 19265     2.279200e+02 3.813600e+02
+7 19265     3.099301e+02 4.102500e+02
+8 19265     3.277000e+02 1.054800e+02
+10 19265     4.703500e+02 5.060300e+02
+13 19265     6.738800e+02 1.489001e+01
+6 19266     2.508100e+02 3.515900e+02
+7 19266     3.251899e+02 3.817400e+02
+8 19266     3.448500e+02 8.512000e+01
+12 19266     3.562000e+02 3.509300e+02
+6 19267     2.544000e+02 3.391400e+02
+7 19267     3.277000e+02 3.714000e+02
+6 19268     4.106200e+02 3.351600e+02
+12 19268     4.960300e+02 3.424800e+02
+6 19269     1.863100e+02 3.330100e+02
+7 19269     2.760400e+02 3.731100e+02
+13 19269     6.386200e+02 -1.600000e+01
+15 19269     5.978900e+02 5.254700e+02
+6 19270     2.507400e+02 3.299100e+02
+7 19270     3.239000e+02 3.652300e+02
+6 19271     1.982800e+02 3.269800e+02
+7 19271     2.846600e+02 3.670700e+02
+13 19271     6.469700e+02 -2.196002e+01
+15 19271     6.086500e+02 5.156800e+02
+6 19272     1.920000e+02 3.237200e+02
+7 19272     2.800601e+02 3.642700e+02
+13 19272     6.425400e+02 -2.432001e+01
+15 19272     6.026000e+02 5.114700e+02
+6 19273     -5.550200e+02 3.165700e+02
+7 19273     -2.969400e+02 4.120700e+02
+11 19273     6.981000e+01 -3.914500e+02
+12 19273     -3.777400e+02 3.271400e+02
+6 19274     -8.335999e+01 3.170800e+02
+13 19274     4.400400e+02 9.997559e-02
+14 19274     6.277700e+02 -4.598600e+02
+6 19275     4.252400e+02 3.149200e+02
+9 19275     2.959000e+02 2.186500e+02
+10 19275     6.022100e+02 3.911200e+02
+6 19276     -4.755200e+02 3.136100e+02
+7 19276     -2.310800e+02 4.061000e+02
+8 19276     -1.675100e+02 5.366000e+01
+6 19277     -1.812000e+02 2.838200e+02
+13 19277     3.651700e+02 -1.284003e+01
+6 19278     5.762400e+02 2.820700e+02
+8 19278     5.909200e+02 7.314001e+01
+9 19278     4.118600e+02 2.122500e+02
+10 19278     7.399200e+02 3.262600e+02
+6 19279     -2.152700e+02 2.702500e+02
+11 19279     2.867400e+02 -4.733800e+02
+6 19280     -2.280800e+02 2.429700e+02
+10 19280     2.232001e+01 4.462100e+02
+6 19281     3.814100e+02 2.312100e+02
+7 19281     4.002600e+02 2.685000e+02
+8 19281     4.457900e+02 2.131000e+01
+10 19281     5.508000e+02 3.171600e+02
+12 19281     4.679399e+02 2.407000e+02
+15 19281     7.430300e+02 3.522600e+02
+6 19282     5.843600e+02 2.201400e+02
+8 19282     5.990000e+02 2.616000e+01
+6 19283     4.690300e+02 1.875300e+02
+8 19283     5.123199e+02 -6.670013e+00
+9 19283     3.363300e+02 1.239500e+02
+12 19283     5.512300e+02 1.978100e+02
+6 19284     5.360699e+02 1.627600e+02
+12 19284     6.160300e+02 1.726400e+02
+6 19285     -4.129999e+01 1.375900e+02
+8 19285     1.451100e+02 5.398001e+01
+6 19286     5.529200e+02 1.276400e+02
+12 19286     6.318000e+02 1.373000e+02
+6 19287     9.067999e+01 1.261500e+02
+12 19287     1.137100e+02 1.775000e+02
+6 19288     5.268300e+02 1.141100e+02
+12 19288     6.063500e+02 1.238900e+02
+6 19289     -1.871400e+02 1.110000e+02
+12 19289     -1.516300e+02 1.654200e+02
+6 19290     4.393199e+02 1.019700e+02
+15 19290     7.846801e+02 1.861600e+02
+6 19291     -4.214300e+02 9.590997e+01
+7 19291     -2.480300e+02 2.300000e+02
+8 19291     -1.406600e+02 -6.669000e+01
+9 19291     -3.411100e+02 1.259998e+01
+6 19292     5.555400e+02 9.094000e+01
+12 19292     6.337500e+02 1.007800e+02
+6 19293     1.262600e+02 7.695001e+01
+8 19293     2.764800e+02 1.103000e+01
+6 19294     5.685500e+02 7.354999e+01
+8 19294     5.891400e+02 -8.964001e+01
+10 19294     6.967100e+02 1.165000e+02
+12 19294     6.464700e+02 8.291998e+01
+6 19295     -4.706700e+02 6.102002e+01
+7 19295     -2.925700e+02 2.077900e+02
+6 19296     1.364400e+02 3.669000e+01
+8 19296     2.830300e+02 -1.809000e+01
+12 19296     1.545500e+02 8.571002e+01
+6 19297     -4.008100e+02 2.697998e+01
+9 19297     -3.199700e+02 -2.545001e+01
+6 19298     -5.250000e+01 -5.940002e+00
+12 19298     -3.976001e+01 4.964001e+01
+6 19299     -1.773800e+02 -2.840002e+01
+12 19299     -1.536000e+02 2.870001e+01
+6 19300     9.979980e+00 -2.896002e+01
+12 19300     2.103998e+01 2.331000e+01
+6 19301     1.919600e+02 -3.114001e+01
+7 19301     1.074400e+02 4.764001e+01
+12 19301     2.118800e+02 1.321002e+01
+6 19302     -6.882001e+01 -3.716998e+01
+12 19302     -5.596002e+01 1.810999e+01
+6 19303     1.251400e+02 -4.359003e+01
+12 19303     1.398700e+02 3.460022e+00
+6 19304     7.453998e+01 -4.603998e+01
+13 19304     4.455601e+02 -2.837400e+02
+6 19305     -1.238000e+02 -6.994000e+01
+12 19305     -1.106300e+02 -1.334998e+01
+6 19306     -1.077900e+02 -7.252002e+01
+8 19306     9.146002e+01 -1.014200e+02
+12 19306     -9.459998e+01 -1.708002e+01
+6 19307     4.909003e+01 -7.412000e+01
+7 19307     -2.378003e+01 2.684998e+01
+8 19307     2.147600e+02 -1.006600e+02
+13 19307     4.230000e+02 -3.000700e+02
+6 19308     -8.612000e+01 -8.408002e+01
+8 19308     1.070600e+02 -1.076600e+02
+12 19308     -7.564001e+01 -2.879999e+01
+6 19309     1.562900e+02 -1.028900e+02
+8 19309     3.016300e+02 -1.244300e+02
+12 19309     1.673200e+02 -5.798999e+01
+6 19310     7.590997e+01 -1.065600e+02
+12 19310     8.414001e+01 -5.863000e+01
+6 19311     -2.110999e+01 -1.083000e+02
+12 19311     -1.542999e+01 -5.522998e+01
+6 19312     -8.931000e+01 -1.634700e+02
+12 19312     -8.484998e+01 -1.080100e+02
+6 19313     -9.314001e+01 -1.684700e+02
+10 19313     -1.812600e+02 -2.117999e+01
+12 19313     -9.065002e+01 -1.134200e+02
+15 19313     -1.358800e+02 -5.450000e+01
+6 19314     -9.314001e+01 -1.684700e+02
+10 19314     -1.812600e+02 -2.117999e+01
+12 19314     -9.065002e+01 -1.134200e+02
+15 19314     -1.358800e+02 -5.450000e+01
+6 19315     3.404500e+02 -2.445200e+02
+12 19315     3.686801e+02 -2.150600e+02
+6 19316     3.520400e+02 -2.478600e+02
+12 19316     3.833700e+02 -2.196200e+02
+6 19317     3.279900e+02 -2.505400e+02
+12 19317     3.540900e+02 -2.213600e+02
+6 19318     7.984998e+01 -2.570699e+02
+9 19318     1.255100e+02 -9.876001e+01
+13 19318     4.205800e+02 -4.395300e+02
+6 19319     1.603100e+02 -3.003800e+02
+8 19319     3.021700e+02 -2.876600e+02
+9 19319     1.898300e+02 -1.397500e+02
+12 19319     1.659200e+02 -2.618000e+02
+6 19320     -5.879999e+01 -3.324399e+02
+8 19320     1.235500e+02 -3.111000e+02
+9 19320     1.145001e+01 -1.799100e+02
+6 19321     2.627700e+02 -3.347100e+02
+12 19321     2.812500e+02 -3.023600e+02
+6 19322     3.291500e+02 -3.594100e+02
+8 19322     4.361700e+02 -3.514900e+02
+6 19323     -4.691700e+02 -3.642900e+02
+7 19323     -4.009700e+02 -1.339200e+02
+6 19324     1.613100e+02 -3.742500e+02
+12 19324     1.682000e+02 -3.361600e+02
+6 19325     -5.321300e+02 -4.095100e+02
+7 19325     -4.569800e+02 -1.626100e+02
+8 19325     -2.522900e+02 -3.764500e+02
+13 19325     -1.419983e+00 -4.389800e+02
+6 19326     -3.099976e+00 -4.225500e+02
+13 19326     3.442000e+02 -5.458800e+02
+6 19327     -4.625900e+02 -4.309100e+02
+8 19327     -2.000700e+02 -3.936500e+02
+6 19328     -5.210200e+02 -4.516899e+02
+7 19328     -4.590200e+02 -1.970100e+02
+6 19329     -3.986800e+02 -4.972800e+02
+7 19329     -3.846000e+02 -2.490600e+02
+9 19329     -2.709000e+02 -3.489100e+02
+15 19329     -4.283800e+02 -2.937500e+02
+6 19330     -2.819300e+02 -5.463199e+02
+15 19330     -3.472400e+02 -3.765400e+02
+6 19331     -3.930400e+02 -5.583600e+02
+7 19331     -3.947900e+02 -2.994400e+02
+6 19332     -3.202500e+02 -5.665300e+02
+15 19332     -3.905200e+02 -3.870200e+02
+6 19333     -3.554800e+02 -6.069800e+02
+9 19333     -2.222500e+02 -4.217500e+02
+6 19334     -9.257001e+01 -6.167100e+02
+9 19334     5.179993e+00 -4.124200e+02
+6 19335     -2.547300e+02 -6.383600e+02
+9 19335     -1.307800e+02 -4.372500e+02
+6 19336     -1.237200e+02 -6.470900e+02
+9 19336     -1.721002e+01 -4.352200e+02
+6 19337     5.345200e+02 -6.846100e+02
+7 19337     3.022100e+02 -5.426700e+02
+9 19337     5.294800e+02 -4.144500e+02
+6 19338     -1.441600e+02 -7.409900e+02
+9 19338     -2.209998e+01 -5.008600e+02
+6 19339     -1.541500e+02 -7.958800e+02
+7 19339     -2.799800e+02 -5.253800e+02
+6 19340     3.612000e+01 -8.001700e+02
+7 19340     -1.358200e+02 -5.597800e+02
+9 19340     1.425800e+02 -5.290200e+02
+6 19341     2.984003e+01 -8.076400e+02
+7 19341     -1.420200e+02 -5.651700e+02
+6 19342     -1.142200e+02 -8.197700e+02
+7 19342     -2.561600e+02 -5.508400e+02
+6 19343     3.721997e+01 -8.219900e+02
+7 19343     -1.410800e+02 -5.783300e+02
+9 19343     1.467400e+02 -5.454900e+02
+6 19344     -9.775000e+01 -8.301400e+02
+7 19344     -2.462000e+02 -5.620900e+02
+6 19345     1.767100e+02 8.532600e+02
+8 19345     2.894900e+02 4.287700e+02
+6 19346     -1.902002e+01 8.057600e+02
+13 19346     5.498199e+02 3.315400e+02
+6 19347     3.978000e+02 8.018500e+02
+8 19347     4.473199e+02 4.333500e+02
+6 19348     -4.601500e+02 8.008300e+02
+8 19348     -1.353300e+02 3.791100e+02
+6 19349     -3.762000e+01 7.742000e+02
+11 19349     5.301400e+02 -1.269900e+02
+14 19349     7.297100e+02 -7.721002e+01
+6 19350     5.464399e+02 7.731900e+02
+8 19350     5.540400e+02 4.227700e+02
+6 19351     5.570601e+02 7.496100e+02
+8 19351     5.648600e+02 4.131600e+02
+6 19352     2.380100e+02 7.492600e+02
+8 19352     3.322800e+02 3.636000e+02
+9 19352     1.257600e+02 4.935300e+02
+6 19353     1.270001e+01 7.428000e+02
+9 19353     -6.201001e+01 4.001400e+02
+14 19353     7.756899e+02 -1.084000e+02
+6 19354     -2.580017e+00 6.826800e+02
+8 19354     1.620300e+02 2.566300e+02
+6 19355     -5.612600e+02 6.763500e+02
+8 19355     -2.077800e+02 3.090700e+02
+6 19356     3.087000e+01 6.701100e+02
+8 19356     1.846800e+02 2.448800e+02
+12 19356     1.901100e+02 6.192900e+02
+6 19357     3.087000e+01 6.701100e+02
+8 19357     1.846800e+02 2.448800e+02
+6 19358     -1.243100e+02 6.204900e+02
+8 19358     8.204999e+01 2.292300e+02
+12 19358     3.851001e+01 5.831300e+02
+6 19359     4.554800e+02 5.737400e+02
+8 19359     4.942900e+02 2.805100e+02
+9 19359     3.054600e+02 4.186000e+02
+12 19359     5.379399e+02 5.832500e+02
+6 19360     -4.654400e+02 5.710300e+02
+8 19360     -1.486600e+02 2.298500e+02
+9 19360     -3.890600e+02 3.258100e+02
+13 19360     2.039800e+02 2.003300e+02
+6 19361     -2.451800e+02 5.581600e+02
+12 19361     -7.872998e+01 5.340800e+02
+6 19362     -2.451800e+02 5.581600e+02
+8 19362     -1.659973e+00 2.000200e+02
+6 19363     4.335300e+02 5.301200e+02
+9 19363     2.907900e+02 3.836600e+02
+6 19364     -4.502100e+02 5.109200e+02
+8 19364     -1.409900e+02 1.874700e+02
+6 19365     2.999500e+02 4.828800e+02
+8 19365     3.798900e+02 1.837400e+02
+9 19365     1.834301e+02 3.064100e+02
+6 19366     2.999500e+02 4.828800e+02
+9 19366     1.834301e+02 3.064100e+02
+12 19366     4.010300e+02 4.787300e+02
+6 19367     -4.877900e+02 4.296400e+02
+8 19367     -1.705600e+02 1.363900e+02
+9 19367     -4.069500e+02 2.216700e+02
+14 19367     2.940900e+02 -3.064100e+02
+6 19368     2.098200e+02 4.192800e+02
+7 19368     2.985800e+02 4.424700e+02
+10 19368     4.602400e+02 5.459000e+02
+12 19368     3.182900e+02 4.148300e+02
+13 19368     6.640400e+02 4.406000e+01
+6 19369     4.266600e+02 3.790200e+02
+8 19369     4.774301e+02 1.358600e+02
+9 19369     2.936801e+02 2.684900e+02
+10 19369     6.123600e+02 4.573200e+02
+12 19369     5.107100e+02 3.873000e+02
+6 19370     2.289200e+02 3.589300e+02
+7 19370     3.090900e+02 3.909000e+02
+15 19370     6.443600e+02 5.469600e+02
+6 19371     5.559800e+02 3.112000e+02
+8 19371     5.751000e+02 9.407001e+01
+12 19371     6.354301e+02 3.216900e+02
+6 19372     2.378300e+02 3.035000e+02
+7 19372     3.130300e+02 3.441400e+02
+6 19373     -2.820700e+02 2.866700e+02
+13 19373     2.956500e+02 -1.010010e+00
+14 19373     4.441600e+02 -4.544800e+02
+6 19374     -1.675500e+02 2.514500e+02
+10 19374     7.946997e+01 4.430800e+02
+6 19375     3.963600e+02 2.039200e+02
+10 19375     5.601100e+02 2.870700e+02
+12 19375     4.819600e+02 2.147900e+02
+13 19375     7.802000e+02 -1.373200e+02
+6 19376     4.158000e+02 1.923400e+02
+10 19376     5.758101e+02 2.710100e+02
+6 19377     1.663800e+02 1.819700e+02
+12 19377     2.018400e+02 2.276300e+02
+6 19378     1.582700e+02 1.777600e+02
+13 19378     5.457600e+02 -1.316900e+02
+6 19379     4.435500e+02 1.571400e+02
+7 19379     4.440500e+02 1.982500e+02
+8 19379     4.934200e+02 -3.250000e+01
+6 19380     1.636800e+02 1.423800e+02
+10 19380     1.374800e+02 2.264600e+02
+12 19380     1.930200e+02 1.895000e+02
+13 19380     5.415200e+02 -1.583000e+02
+6 19381     5.164700e+02 1.421700e+02
+7 19381     4.999200e+02 1.784400e+02
+10 19381     6.594900e+02 1.974900e+02
+12 19381     5.966200e+02 1.519700e+02
+6 19382     2.947998e+01 1.342500e+02
+12 19382     5.152002e+01 1.866500e+02
+6 19383     5.724900e+02 1.090800e+02
+12 19383     6.510601e+02 1.183800e+02
+6 19384     1.647700e+02 9.615002e+01
+8 19384     3.045100e+02 2.094000e+01
+6 19385     -4.093900e+02 7.984998e+01
+8 19385     -1.320100e+02 -7.627002e+01
+6 19386     2.296200e+02 5.078003e+01
+7 19386     1.542700e+02 1.152000e+02
+10 19386     1.868200e+02 1.242700e+02
+13 19386     5.821600e+02 -2.348400e+02
+6 19387     -8.840027e+00 4.971002e+01
+7 19387     -5.903998e+01 1.374800e+02
+15 19387     1.359985e+00 1.673900e+02
+6 19388     2.105200e+02 3.903998e+01
+7 19388     1.332100e+02 1.065900e+02
+6 19389     1.887900e+02 1.235999e+01
+7 19389     1.095900e+02 8.564001e+01
+8 19389     3.232400e+02 -4.151001e+01
+15 19389     2.241400e+02 8.041000e+01
+6 19390     -2.292900e+02 4.409973e+00
+12 19390     -1.966900e+02 6.071997e+01
+6 19391     -1.998800e+02 -3.913000e+01
+12 19391     -1.776100e+02 1.865002e+01
+6 19392     -2.577000e+02 -4.066998e+01
+12 19392     -2.250700e+02 1.684003e+01
+6 19393     -2.577000e+02 -4.066998e+01
+12 19393     -2.250700e+02 1.684003e+01
+6 19394     1.979500e+02 -4.234003e+01
+8 19394     3.314600e+02 -8.488000e+01
+12 19394     2.181400e+02 9.799805e-01
+6 19395     1.979500e+02 -4.234003e+01
+8 19395     3.314600e+02 -8.488000e+01
+12 19395     2.181400e+02 9.799805e-01
+6 19396     -1.454700e+02 -4.903003e+01
+12 19396     -1.272200e+02 7.510010e+00
+6 19397     -1.109000e+02 -5.640997e+01
+12 19397     -9.603003e+01 -1.030029e+00
+6 19398     -1.273100e+02 -5.682001e+01
+12 19398     -1.112600e+02 -2.999878e-01
+6 19399     -3.444000e+01 -6.265997e+01
+12 19399     -2.334998e+01 -8.969971e+00
+6 19400     1.746100e+02 -6.557001e+01
+8 19400     3.120700e+02 -1.014800e+02
+6 19401     -1.031700e+02 -1.010800e+02
+12 19401     -9.614001e+01 -4.550000e+01
+6 19402     -1.064001e+01 -1.008600e+02
+12 19402     -3.289978e+00 -4.891998e+01
+6 19403     1.763800e+02 -1.169600e+02
+12 19403     1.875300e+02 -7.354999e+01
+6 19404     3.681100e+02 -1.287000e+02
+12 19404     3.982700e+02 -9.620001e+01
+6 19405     -6.128003e+01 -1.497100e+02
+12 19405     -5.614001e+01 -9.614001e+01
+6 19406     3.259000e+02 -1.587100e+02
+12 19406     3.445800e+02 -1.234800e+02
+6 19407     -2.291200e+02 -1.630601e+02
+8 19407     -7.510010e+00 -1.691800e+02
+12 19407     -2.160900e+02 -1.026700e+02
+6 19408     -2.446002e+01 -1.660500e+02
+12 19408     -2.084998e+01 -1.137400e+02
+6 19409     9.882001e+01 -1.760500e+02
+12 19409     1.056300e+02 -1.288700e+02
+6 19410     3.058000e+02 -1.923000e+02
+8 19410     4.186100e+02 -2.049200e+02
+12 19410     3.232500e+02 -1.583300e+02
+6 19411     -1.511200e+02 -2.042600e+02
+8 19411     5.263000e+01 -1.969700e+02
+12 19411     -1.500400e+02 -1.461800e+02
+6 19412     2.875900e+02 -2.556100e+02
+12 19412     3.081000e+02 -2.207100e+02
+6 19413     3.431500e+02 -2.649100e+02
+12 19413     3.737900e+02 -2.373000e+02
+6 19414     -5.189300e+02 -3.232200e+02
+12 19414     -4.553300e+02 -2.446800e+02
+6 19415     -5.189300e+02 -3.232200e+02
+7 19415     -4.246600e+02 -9.514001e+01
+6 19416     5.607001e+01 -3.561899e+02
+12 19416     6.245001e+01 -3.133700e+02
+6 19417     -5.392800e+02 -3.631400e+02
+7 19417     -4.511000e+02 -1.254600e+02
+8 19417     -2.534700e+02 -3.445500e+02
+9 19417     -4.022100e+02 -2.690000e+02
+13 19417     3.059998e+00 -4.058500e+02
+6 19418     3.219000e+01 -4.027000e+02
+13 19418     3.739301e+02 -5.376801e+02
+6 19419     -2.748800e+02 -5.539200e+02
+15 19419     -3.431000e+02 -3.888900e+02
+6 19420     -3.442600e+02 -5.676400e+02
+7 19420     -3.593200e+02 -3.101100e+02
+15 19420     -4.106300e+02 -3.797000e+02
+6 19421     5.488199e+02 -5.947100e+02
+7 19421     3.404301e+02 -4.665699e+02
+10 19421     3.407600e+02 -5.729600e+02
+6 19422     2.273300e+02 -6.518700e+02
+7 19422     5.640997e+01 -4.678700e+02
+6 19423     5.644600e+02 -6.734301e+02
+7 19423     3.305800e+02 -5.374100e+02
+9 19423     5.509399e+02 -4.052700e+02
+6 19424     2.839200e+02 -7.004900e+02
+7 19424     8.815002e+01 -5.170100e+02
+9 19424     3.314100e+02 -4.432100e+02
+6 19425     3.777900e+02 -7.627500e+02
+9 19425     4.205300e+02 -4.768300e+02
+6 19426     -1.962000e+01 -8.046400e+02
+7 19426     -1.798900e+02 -5.543000e+02
+6 19427     2.412900e+02 7.766300e+02
+8 19427     3.348600e+02 3.828400e+02
+11 19427     6.435200e+02 -1.549400e+02
+6 19428     2.197998e+01 7.363600e+02
+8 19428     1.790100e+02 2.892200e+02
+6 19429     -5.763200e+02 5.148000e+02
+8 19429     -2.249900e+02 2.044600e+02
+6 19430     2.093800e+02 4.640200e+02
+8 19430     3.152700e+02 1.638500e+02
+12 19430     3.177900e+02 4.578400e+02
+6 19431     -4.635900e+02 4.280200e+02
+8 19431     -1.535200e+02 1.326400e+02
+9 19431     -3.888300e+02 2.179200e+02
+13 19431     1.919399e+02 1.086300e+02
+14 19431     3.153400e+02 -3.109600e+02
+6 19432     -1.760100e+02 2.936500e+02
+13 19432     3.702000e+02 -7.210022e+00
+6 19433     1.009600e+02 6.007001e+01
+8 19433     2.547200e+02 1.679993e+00
+12 19433     1.185000e+02 1.108500e+02
+13 19433     4.799600e+02 -2.103700e+02
+15 19433     1.253100e+02 1.540400e+02
+6 19434     -2.144400e+02 5.577002e+01
+13 19434     2.621300e+02 -1.707100e+02
+6 19435     -1.747800e+02 1.467999e+01
+12 19435     -1.504400e+02 7.119000e+01
+6 19436     -7.509003e+01 1.014001e+01
+12 19436     -6.040997e+01 6.540002e+01
+6 19437     -3.419000e+01 -2.021002e+01
+8 19437     1.494900e+02 -5.820999e+01
+12 19437     -2.270001e+01 3.397998e+01
+6 19438     5.010010e+00 -8.227002e+01
+12 19438     1.459998e+01 -3.053998e+01
+6 19439     2.990400e+02 -1.356300e+02
+12 19439     3.177900e+02 -9.866998e+01
+6 19440     2.579400e+02 -1.432400e+02
+12 19440     2.709700e+02 -1.020800e+02
+6 19441     -1.510999e+01 -1.686801e+02
+12 19441     -1.171002e+01 -1.170500e+02
+6 19442     -8.910999e+01 -1.752100e+02
+12 19442     -8.708002e+01 -1.205600e+02
+6 19443     2.953300e+02 -2.051200e+02
+9 19443     2.810000e+02 -6.240997e+01
+6 19444     1.044500e+02 -2.923700e+02
+8 19444     2.573000e+02 -2.774200e+02
+12 19444     1.082000e+02 -2.506400e+02
+13 19444     4.371600e+02 -4.703000e+02
+6 19445     -1.970500e+02 -3.194900e+02
+12 19445     -1.791800e+02 -2.618000e+02
+6 19446     -1.253200e+02 -3.422300e+02
+12 19446     -1.145500e+02 -2.877500e+02
+6 19447     -3.761100e+02 -5.062600e+02
+15 19447     -4.113500e+02 -3.099500e+02
+6 19448     -4.414900e+02 -5.259600e+02
+7 19448     -4.205800e+02 -2.662500e+02
+9 19448     -3.038300e+02 -3.717600e+02
+13 19448     3.176001e+01 -5.337900e+02
+6 19449     -5.987000e+01 -6.251200e+02
+9 19449     3.327002e+01 -4.167400e+02
+6 19450     -2.322500e+02 -6.494800e+02
+7 19450     -3.016800e+02 -3.958400e+02
+6 19451     -5.226900e+02 4.754700e+02
+12 19451     -3.458100e+02 4.679500e+02
+6 19452     -5.296200e+02 4.407900e+02
+8 19452     -1.981200e+02 1.499400e+02
+6 19453     3.456700e+02 4.328900e+02
+7 19453     3.849600e+02 4.413000e+02
+12 19453     4.337800e+02 4.396500e+02
+13 19453     7.592500e+02 3.990997e+01
+6 19454     4.346600e+02 3.593200e+02
+12 19454     5.186200e+02 3.680100e+02
+6 19455     4.275500e+02 3.450700e+02
+12 19455     5.114800e+02 3.544300e+02
+6 19456     -2.769000e+01 2.463200e+02
+12 19456     1.919000e+01 2.909500e+02
+6 19457     -3.065500e+02 1.017200e+02
+12 19457     -2.397200e+02 1.493800e+02
+6 19458     -3.191300e+02 8.570001e+01
+12 19458     -2.541200e+02 1.358300e+02
+6 19459     -3.049000e+02 8.120001e+01
+12 19459     -2.416800e+02 1.316900e+02
+6 19460     8.447998e+01 7.290997e+01
+7 19460     1.919000e+01 1.465100e+02
+9 19460     1.035300e+02 1.531400e+02
+15 19460     1.052000e+02 1.717200e+02
+6 19461     2.522998e+01 -2.797998e+01
+12 19461     3.339001e+01 2.388000e+01
+6 19462     2.194000e+02 -9.770001e+01
+8 19462     3.501600e+02 -1.241100e+02
+6 19463     1.629900e+02 -1.164400e+02
+8 19463     3.050800e+02 -1.339000e+02
+12 19463     1.726300e+02 -7.459998e+01
+6 19464     1.042400e+02 -1.235500e+02
+8 19464     2.597000e+02 -1.371700e+02
+6 19465     -1.085999e+01 -1.578300e+02
+12 19465     -7.710022e+00 -1.068700e+02
+6 19466     2.667800e+02 -1.637200e+02
+8 19466     3.882500e+02 -1.748800e+02
+12 19466     2.800500e+02 -1.259900e+02
+6 19467     1.140997e+01 -1.758600e+02
+8 19467     1.841200e+02 -1.777500e+02
+12 19467     1.340002e+01 -1.244600e+02
+6 19468     3.816200e+02 -2.222600e+02
+12 19468     4.163500e+02 -1.929900e+02
+6 19469     3.560500e+02 -2.290800e+02
+12 19469     3.888400e+02 -2.000100e+02
+6 19470     3.560500e+02 -2.290800e+02
+12 19470     3.888400e+02 -2.000100e+02
+6 19471     2.456500e+02 -2.886000e+02
+8 19471     3.700400e+02 -2.864600e+02
+12 19471     2.601500e+02 -2.546700e+02
+6 19472     2.854300e+02 -3.070300e+02
+8 19472     4.006500e+02 -3.073700e+02
+12 19472     3.059800e+02 -2.736300e+02
+6 19473     2.854300e+02 -3.070300e+02
+12 19473     3.059800e+02 -2.736300e+02
+6 19474     -1.880300e+02 -3.325300e+02
+7 19474     -2.138900e+02 -1.473200e+02
+12 19474     -1.721000e+02 -2.728700e+02
+13 19474     2.278500e+02 -4.449600e+02
+6 19475     2.877000e+02 -3.317100e+02
+12 19475     3.074301e+02 -3.012500e+02
+6 19476     -1.428200e+02 -3.402600e+02
+12 19476     -1.315000e+02 -2.848400e+02
+6 19477     -4.478700e+02 -4.945699e+02
+7 19477     -4.178900e+02 -2.398600e+02
+9 19477     -3.117000e+02 -3.501400e+02
+6 19478     -4.577200e+02 -5.107300e+02
+7 19478     -4.297000e+02 -2.519100e+02
+13 19478     2.395001e+01 -5.195500e+02
+6 19479     -2.133000e+02 -5.491500e+02
+12 19479     -2.149200e+02 -4.849500e+02
+6 19480     -3.026200e+02 -5.545400e+02
+15 19480     -3.706100e+02 -3.808600e+02
+6 19481     5.150601e+02 -6.043101e+02
+10 19481     3.051500e+02 -5.710200e+02
+6 19482     5.595100e+02 -6.278700e+02
+7 19482     3.396300e+02 -4.974100e+02
+9 19482     5.372600e+02 -3.767500e+02
+6 19483     1.579500e+02 8.088100e+02
+8 19483     2.766400e+02 3.989400e+02
+6 19484     -7.419983e+00 7.785000e+02
+8 19484     1.600300e+02 3.195500e+02
+6 19485     -2.673000e+02 7.241100e+02
+8 19485     -1.167999e+01 3.103900e+02
+6 19486     3.011200e+02 6.544100e+02
+8 19486     3.806100e+02 3.045000e+02
+9 19486     1.763300e+02 4.282700e+02
+6 19487     -2.150000e+02 5.950000e+02
+8 19487     2.079999e+01 2.215800e+02
+12 19487     -5.028998e+01 5.645500e+02
+6 19488     4.819700e+02 4.239700e+02
+12 19488     5.639399e+02 4.340700e+02
+6 19489     4.110500e+02 3.686600e+02
+8 19489     4.660900e+02 1.277100e+02
+10 19489     5.968500e+02 4.485400e+02
+12 19489     4.959000e+02 3.772900e+02
+15 19489     7.955400e+02 5.115000e+02
+6 19490     -1.941700e+02 3.019100e+02
+15 19490     1.827100e+02 5.542400e+02
+6 19491     -2.685900e+02 1.097100e+02
+12 19491     -2.058600e+02 1.607000e+02
+6 19492     9.073999e+01 8.969971e+00
+12 19492     1.047100e+02 5.964001e+01
+6 19493     2.087000e+02 -8.554999e+01
+8 19493     3.415700e+02 -1.152400e+02
+6 19494     -4.867400e+02 -3.543800e+02
+7 19494     -4.118400e+02 -1.235200e+02
+13 19494     3.727002e+01 -4.089000e+02
+6 19495     -1.781500e+02 -3.795200e+02
+12 19495     -1.689800e+02 -3.170700e+02
+6 19496     -1.674600e+02 -6.028500e+02
+7 19496     -2.394300e+02 -3.670100e+02
+6 19497     -3.186000e+02 -6.155000e+02
+15 19497     -4.135400e+02 -4.399200e+02
+6 19498     -2.518000e+02 8.401800e+02
+8 19498     2.130005e+00 3.829200e+02
+6 19499     -2.092800e+02 2.848500e+02
+11 19499     2.964100e+02 -4.633300e+02
+6 19500     3.247998e+01 6.192999e+01
+12 19500     4.727002e+01 1.140900e+02
+6 19501     3.056600e+02 -1.707700e+02
+12 19501     3.218600e+02 -1.348800e+02
+6 19502     2.665800e+02 -3.029200e+02
+8 19502     3.860300e+02 -3.035500e+02
+12 19502     2.848700e+02 -2.704000e+02
+13 19502     5.687900e+02 -5.133800e+02
+6 19503     -9.044000e+01 -3.112100e+02
+12 19503     -8.391998e+01 -2.579300e+02
+6 19504     -4.181100e+02 -5.038600e+02
+7 19504     -3.970300e+02 -2.526300e+02
+9 19504     -2.850900e+02 -3.561100e+02
+13 19504     5.263000e+01 -5.236400e+02
+6 19505     -4.181100e+02 -5.038600e+02
+7 19505     -3.970300e+02 -2.526300e+02
+9 19505     -2.850900e+02 -3.561100e+02
+13 19505     5.263000e+01 -5.236400e+02
+6 19506     -4.101200e+02 -5.292000e+02
+9 19506     -2.759900e+02 -3.714700e+02
+13 19506     5.095001e+01 -5.425500e+02
+6 19507     -2.809003e+01 7.905100e+02
+8 19507     1.466400e+02 3.301700e+02
+6 19508     -3.331600e+02 7.849700e+02
+8 19508     -5.285999e+01 3.559600e+02
+6 19509     2.207300e+02 7.398500e+02
+8 19509     3.199700e+02 3.562400e+02
+9 19509     1.143600e+02 4.856300e+02
+6 19510     2.654000e+02 6.625400e+02
+8 19510     3.524800e+02 3.047100e+02
+9 19510     1.476600e+02 4.304200e+02
+6 19511     -2.870400e+02 8.767999e+01
+12 19511     -2.307700e+02 1.350100e+02
+6 19512     7.630005e+00 1.523999e+01
+12 19512     2.138000e+01 6.897998e+01
+6 19513     3.568600e+02 1.225000e+01
+12 19513     3.925500e+02 4.928003e+01
+6 19514     2.414100e+02 -1.968400e+02
+12 19514     2.503500e+02 -1.583100e+02
+6 19515     8.820007e+00 -2.082100e+02
+8 19515     1.828900e+02 -1.951800e+02
+12 19515     3.840027e+00 -1.581400e+02
+6 19516     -1.630200e+02 -6.336000e+02
+7 19516     -2.444200e+02 -3.915700e+02
+6 19517     -1.512900e+02 5.724300e+02
+12 19517     1.251001e+01 5.381400e+02
+6 19518     -1.512900e+02 5.724300e+02
+12 19518     1.251001e+01 5.381400e+02
+6 19519     -4.372200e+02 4.944400e+02
+7 19519     -1.901500e+02 5.402100e+02
+6 19520     -4.523999e+01 2.739001e+01
+8 19520     1.437100e+02 -2.210999e+01
+12 19520     -2.781000e+01 8.297998e+01
+6 19521     3.155100e+02 -7.638000e+01
+12 19521     3.288600e+02 -3.692999e+01
+6 19522     1.736300e+02 -1.932000e+02
+8 19522     3.162100e+02 -1.921300e+02
+12 19522     1.763700e+02 -1.506800e+02
+6 19523     4.270001e+01 -1.561899e+02
+8 19523     2.050800e+02 -1.654300e+02
+12 19523     4.265002e+01 -1.053400e+02
+6 19524     4.270001e+01 -1.561899e+02
+8 19524     2.050800e+02 -1.654300e+02
+12 19524     4.265002e+01 -1.053400e+02
+7 19525     -1.994200e+02 5.779000e+02
+12 19525     -2.742900e+02 5.206700e+02
+7 19526     -4.293700e+02 5.740100e+02
+12 19526     -5.298400e+02 5.117600e+02
+7 19527     -2.657500e+02 5.690000e+02
+11 19527     1.121500e+02 -2.605400e+02
+7 19528     -6.194800e+02 5.657300e+02
+11 19528     -1.873900e+02 -2.396800e+02
+7 19529     -4.201000e+02 5.637900e+02
+12 19529     -5.195000e+02 5.002700e+02
+7 19530     -3.467400e+02 5.630700e+02
+12 19530     -4.374200e+02 5.002900e+02
+7 19531     -3.467400e+02 5.630700e+02
+12 19531     -4.374200e+02 5.002900e+02
+7 19532     -3.228300e+02 5.578700e+02
+11 19532     5.996997e+01 -2.663400e+02
+7 19533     2.889000e+02 5.356100e+02
+8 19533     3.013700e+02 2.104400e+02
+7 19534     -3.470000e+02 5.329000e+02
+12 19534     -4.369800e+02 4.654900e+02
+7 19535     4.087700e+02 5.282700e+02
+8 19535     4.325800e+02 2.475400e+02
+9 19535     2.428500e+02 3.819400e+02
+7 19536     3.669200e+02 5.249600e+02
+8 19536     3.744100e+02 2.148400e+02
+7 19537     -3.920000e+02 5.186900e+02
+11 19537     -4.549988e+00 -2.933500e+02
+13 19537     5.554999e+01 1.354300e+02
+14 19537     1.482500e+02 -2.716600e+02
+7 19538     -5.130900e+02 5.035400e+02
+12 19538     -6.241800e+02 4.295100e+02
+7 19539     5.274500e+02 5.019500e+02
+10 19539     7.236000e+02 5.865500e+02
+7 19540     -4.792800e+02 4.975600e+02
+11 19540     -8.158002e+01 -3.043100e+02
+12 19540     -5.843400e+02 4.217900e+02
+7 19541     -3.925200e+02 4.965600e+02
+14 19541     1.443600e+02 -2.935500e+02
+7 19542     -3.174900e+02 4.949400e+02
+14 19542     2.173300e+02 -3.020200e+02
+7 19543     4.574500e+02 4.951200e+02
+9 19543     2.919200e+02 3.638800e+02
+12 19543     5.159399e+02 5.117500e+02
+7 19544     -1.814500e+02 4.940100e+02
+14 19544     3.497700e+02 -3.143900e+02
+7 19545     2.708600e+02 4.923300e+02
+10 19545     4.321200e+02 6.107100e+02
+13 19545     6.378300e+02 8.835001e+01
+7 19546     -5.063600e+02 4.916400e+02
+8 19546     -3.856400e+02 1.512800e+02
+7 19547     -1.099600e+02 4.814000e+02
+11 19547     2.507700e+02 -3.445600e+02
+13 19547     2.769800e+02 9.407001e+01
+14 19547     4.203400e+02 -3.331200e+02
+7 19548     -1.071700e+02 4.778800e+02
+14 19548     4.232500e+02 -3.370200e+02
+7 19549     3.573500e+02 4.724600e+02
+9 19549     1.725500e+02 2.897900e+02
+7 19550     -4.358300e+02 4.684400e+02
+12 19550     -5.358900e+02 3.886400e+02
+7 19551     -3.117500e+02 4.632600e+02
+14 19551     2.169100e+02 -3.347200e+02
+7 19552     -4.933300e+02 4.532700e+02
+10 19552     -4.714700e+02 6.142400e+02
+7 19553     -4.933300e+02 4.532700e+02
+10 19553     -4.714700e+02 6.142400e+02
+7 19554     -3.078600e+02 4.529300e+02
+14 19554     2.190400e+02 -3.461100e+02
+7 19555     -6.191700e+02 4.515900e+02
+14 19555     -7.433002e+01 -3.151500e+02
+7 19556     -4.367100e+02 4.513800e+02
+14 19556     9.546002e+01 -3.346900e+02
+7 19557     -3.148100e+02 4.504800e+02
+14 19557     2.119399e+02 -3.474100e+02
+7 19558     -5.577100e+02 4.491600e+02
+10 19558     -5.484000e+02 6.128300e+02
+12 19558     -6.739300e+02 3.642200e+02
+7 19559     -4.669200e+02 4.483400e+02
+11 19559     -7.815002e+01 -3.452100e+02
+7 19560     -5.155600e+02 4.479700e+02
+11 19560     -1.201200e+02 -3.401900e+02
+7 19561     -6.033900e+02 4.468900e+02
+10 19561     -6.022100e+02 6.125600e+02
+7 19562     -6.125300e+02 4.460400e+02
+10 19562     -6.130100e+02 6.115200e+02
+7 19563     -5.397900e+02 4.459900e+02
+12 19563     -6.527500e+02 3.604700e+02
+14 19563     -2.650024e+00 -3.294500e+02
+7 19564     -5.194000e+02 4.438800e+02
+12 19564     -6.300700e+02 3.584500e+02
+7 19565     -7.564600e+02 4.432500e+02
+8 19565     -5.969100e+02 1.265600e+02
+14 19565     -1.985200e+02 -3.096600e+02
+7 19566     -5.040800e+02 4.369300e+02
+12 19566     -6.124600e+02 3.504900e+02
+7 19567     -8.125000e+01 4.364800e+02
+11 19567     2.718199e+02 -3.888800e+02
+7 19568     -8.427002e+01 4.347600e+02
+10 19568     1.647998e+01 5.740600e+02
+11 19568     2.680400e+02 -3.902200e+02
+7 19569     3.364399e+02 4.323900e+02
+10 19569     5.038400e+02 5.307600e+02
+7 19570     -5.651900e+02 4.291300e+02
+10 19570     -5.579600e+02 5.901500e+02
+7 19571     -5.047700e+02 4.270500e+02
+10 19571     -4.864900e+02 5.838300e+02
+7 19572     -4.461000e+02 4.257400e+02
+11 19572     -6.144000e+01 -3.657300e+02
+7 19573     -5.232500e+02 4.255800e+02
+12 19573     -6.344800e+02 3.373800e+02
+14 19573     8.099976e+00 -3.511300e+02
+7 19574     3.031801e+02 4.232000e+02
+10 19574     4.642200e+02 5.228900e+02
+7 19575     3.031801e+02 4.232000e+02
+10 19575     4.642200e+02 5.228900e+02
+7 19576     -4.817500e+02 4.211100e+02
+10 19576     -4.582100e+02 5.764100e+02
+12 19576     -5.870400e+02 3.321900e+02
+7 19577     -4.878400e+02 4.206500e+02
+8 19577     -3.760900e+02 8.417001e+01
+7 19578     -6.215000e+02 4.198800e+02
+14 19578     -8.389001e+01 -3.465200e+02
+7 19579     -3.310999e+01 4.199400e+02
+10 19579     7.457001e+01 5.513200e+02
+7 19580     -5.329100e+02 4.195500e+02
+8 19580     -4.140100e+02 8.773999e+01
+10 19580     -5.188600e+02 5.766800e+02
+7 19581     -5.936900e+02 4.186700e+02
+12 19581     -7.148500e+02 3.272900e+02
+14 19581     -5.859998e+01 -3.506500e+02
+7 19582     -3.039900e+02 4.169300e+02
+10 19582     -2.463000e+02 5.635700e+02
+14 19582     2.175000e+02 -3.834300e+02
+7 19583     -7.039400e+02 4.154500e+02
+8 19583     -5.561300e+02 9.616000e+01
+10 19583     -7.222400e+02 5.820900e+02
+7 19584     -1.479100e+02 4.153800e+02
+14 19584     3.802500e+02 -4.010300e+02
+7 19585     -4.921400e+02 4.114400e+02
+10 19585     -4.709300e+02 5.654400e+02
+7 19586     2.072300e+02 4.075900e+02
+10 19586     3.585400e+02 5.189900e+02
+7 19587     -1.887600e+02 4.063400e+02
+10 19587     -1.101100e+02 5.454100e+02
+7 19588     2.945000e+02 4.065800e+02
+10 19588     4.524800e+02 5.036700e+02
+7 19589     3.405100e+02 4.049700e+02
+12 19589     3.722300e+02 3.795000e+02
+7 19590     -6.507200e+02 4.046100e+02
+10 19590     -6.593600e+02 5.661700e+02
+14 19590     -1.139600e+02 -3.583000e+02
+7 19591     -5.202200e+02 4.043000e+02
+10 19591     -5.045700e+02 5.596400e+02
+7 19592     -3.031000e+02 4.026400e+02
+14 19592     2.165100e+02 -3.982400e+02
+7 19593     -6.802900e+02 3.984000e+02
+8 19593     -5.383400e+02 7.913000e+01
+10 19593     -6.941000e+02 5.604300e+02
+7 19594     -6.802900e+02 3.984000e+02
+8 19594     -5.383400e+02 7.913000e+01
+10 19594     -6.941000e+02 5.604300e+02
+7 19595     -4.194900e+02 3.958000e+02
+10 19595     -3.854800e+02 5.444300e+02
+7 19596     -6.667500e+02 3.943700e+02
+11 19596     -2.527300e+02 -3.694300e+02
+12 19596     -8.001400e+02 2.961500e+02
+7 19597     -1.377300e+02 3.933600e+02
+10 19597     -5.400000e+01 5.251900e+02
+7 19598     -1.767700e+02 3.931200e+02
+10 19598     -9.832001e+01 5.281500e+02
+7 19599     -4.792500e+02 3.914800e+02
+14 19599     8.090002e+01 -4.253000e+02
+7 19600     -5.117400e+02 3.910900e+02
+14 19600     1.207001e+01 -3.874600e+02
+7 19601     -1.027200e+02 3.899600e+02
+13 19601     2.856000e+02 1.485999e+01
+14 19601     4.312300e+02 -4.335100e+02
+7 19602     -3.695200e+02 3.877600e+02
+15 19602     -2.909800e+02 5.857700e+02
+7 19603     -1.591900e+02 3.870700e+02
+11 19603     1.902100e+02 -4.293000e+02
+7 19604     -4.049100e+02 3.862200e+02
+14 19604     1.135400e+02 -4.046000e+02
+15 19604     -3.395300e+02 5.850000e+02
+7 19605     -1.085900e+02 3.839900e+02
+15 19605     6.492999e+01 5.671000e+02
+7 19606     4.054700e+02 3.838300e+02
+9 19606     2.565900e+02 2.535800e+02
+10 19606     5.648600e+02 4.539500e+02
+12 19606     4.631500e+02 3.761100e+02
+15 19606     7.579301e+02 5.163400e+02
+7 19607     -1.276200e+02 3.828700e+02
+13 19607     2.640699e+02 9.669983e+00
+14 19607     4.039700e+02 -4.395400e+02
+15 19607     3.917999e+01 5.670800e+02
+7 19608     -1.276200e+02 3.828700e+02
+11 19608     2.182700e+02 -4.359500e+02
+15 19608     3.917999e+01 5.670800e+02
+7 19609     -1.341700e+02 3.790300e+02
+10 19609     -5.169000e+01 5.073200e+02
+7 19610     -1.397300e+02 3.782500e+02
+15 19610     2.132001e+01 5.604900e+02
+7 19611     3.246400e+02 3.773900e+02
+15 19611     6.634700e+02 5.258500e+02
+7 19612     4.557900e+02 3.772800e+02
+15 19612     8.290100e+02 5.017500e+02
+7 19613     4.557900e+02 3.772800e+02
+15 19613     8.290100e+02 5.017500e+02
+7 19614     -2.199700e+02 3.763300e+02
+10 19614     -1.505900e+02 5.104200e+02
+14 19614     3.035699e+02 -4.361200e+02
+7 19615     -2.237800e+02 3.737300e+02
+10 19615     -1.561100e+02 5.073300e+02
+15 19615     -9.273999e+01 5.595300e+02
+7 19616     -6.638200e+02 3.683800e+02
+10 19616     -6.770600e+02 5.246000e+02
+15 19616     -6.949500e+02 5.681400e+02
+7 19617     -2.961700e+02 3.685700e+02
+10 19617     -2.401000e+02 5.064900e+02
+7 19618     -6.290400e+02 3.659000e+02
+15 19618     -6.459300e+02 5.639800e+02
+7 19619     -6.290400e+02 3.659000e+02
+15 19619     -6.459300e+02 5.639800e+02
+7 19620     -6.137900e+02 3.657000e+02
+15 19620     -6.250400e+02 5.635100e+02
+7 19621     -4.970000e+02 3.655500e+02
+10 19621     -4.778900e+02 5.131700e+02
+7 19622     -2.442400e+02 3.655200e+02
+10 19622     -1.810200e+02 4.981600e+02
+13 19622     1.629500e+02 1.010010e+00
+14 19622     2.767600e+02 -4.450900e+02
+15 19622     -1.219700e+02 5.488600e+02
+7 19623     -1.638900e+02 3.656300e+02
+10 19623     -8.844000e+01 4.923100e+02
+11 19623     1.810900e+02 -4.491600e+02
+7 19624     -2.436500e+02 3.626600e+02
+10 19624     -1.809700e+02 4.949800e+02
+14 19624     2.774500e+02 -4.482700e+02
+15 19624     -1.220600e+02 5.446500e+02
+7 19625     -3.081300e+02 3.620600e+02
+10 19625     -2.546700e+02 4.993300e+02
+11 19625     5.216998e+01 -4.344500e+02
+7 19626     -3.081300e+02 3.620600e+02
+10 19626     -2.546700e+02 4.993300e+02
+7 19627     -1.958400e+02 3.614500e+02
+10 19627     -1.268700e+02 4.901400e+02
+15 19627     -5.896002e+01 5.400500e+02
+7 19628     -5.978800e+02 3.600000e+02
+15 19628     -6.039700e+02 5.553300e+02
+7 19629     -4.474600e+02 3.558100e+02
+14 19629     6.553998e+01 -4.313600e+02
+15 19629     -3.981900e+02 5.453200e+02
+7 19630     -4.502100e+02 3.551500e+02
+15 19630     -4.022700e+02 5.449800e+02
+7 19631     -3.057200e+02 3.532900e+02
+10 19631     -2.537400e+02 4.880600e+02
+11 19631     5.253003e+01 -4.435000e+02
+7 19632     -6.048100e+02 3.500000e+02
+10 19632     -6.060500e+02 5.007500e+02
+14 19632     -8.440002e+01 -4.186400e+02
+7 19633     6.628998e+01 3.485800e+02
+15 19633     2.990601e+02 5.042900e+02
+7 19634     -5.144600e+02 3.449900e+02
+10 19634     -4.990900e+02 4.917100e+02
+11 19634     -1.327300e+02 -4.264800e+02
+15 19634     -4.909300e+02 5.338400e+02
+7 19635     6.351200e+02 3.454100e+02
+9 19635     4.723400e+02 2.812500e+02
+7 19636     6.199200e+02 3.423600e+02
+10 19636     8.203300e+02 3.791700e+02
+7 19637     -4.080000e+02 3.405300e+02
+14 19637     1.023400e+02 -4.524800e+02
+7 19638     -4.967400e+02 3.393800e+02
+14 19638     1.553003e+01 -4.427000e+02
+7 19639     -2.941000e+02 3.397200e+02
+14 19639     2.247100e+02 -4.673700e+02
+15 19639     -1.932100e+02 5.148100e+02
+7 19640     -2.628100e+02 3.392000e+02
+14 19640     2.580900e+02 -4.721500e+02
+7 19641     -6.780100e+02 3.362300e+02
+10 19641     -6.893900e+02 4.910200e+02
+7 19642     -9.808002e+01 3.353900e+02
+11 19642     2.345300e+02 -4.874000e+02
+7 19643     -4.400000e+02 3.347400e+02
+15 19643     -3.885700e+02 5.170800e+02
+7 19644     -3.077900e+02 3.352400e+02
+14 19644     2.093101e+02 -4.709399e+02
+7 19645     -6.060400e+02 3.344500e+02
+10 19645     -6.071700e+02 4.830200e+02
+12 19645     -7.294200e+02 2.259000e+02
+15 19645     -6.145700e+02 5.217600e+02
+7 19646     -5.065800e+02 3.329700e+02
+14 19646     4.950012e+00 -4.483700e+02
+7 19647     -4.861700e+02 3.327200e+02
+11 19647     -1.096800e+02 -4.401000e+02
+14 19647     2.465997e+01 -4.508800e+02
+7 19648     -5.844200e+02 3.326200e+02
+8 19648     -4.644400e+02 8.790009e+00
+10 19648     -5.819300e+02 4.796400e+02
+11 19648     -1.955400e+02 -4.290300e+02
+12 19648     -7.047400e+02 2.240800e+02
+15 19648     -5.858700e+02 5.188700e+02
+7 19649     -4.446700e+02 3.308800e+02
+15 19649     -3.948700e+02 5.125900e+02
+7 19650     -4.953000e+02 3.303000e+02
+11 19650     -1.182500e+02 -4.411700e+02
+7 19651     -4.953000e+02 3.303000e+02
+11 19651     -1.182500e+02 -4.411700e+02
+7 19652     -2.334800e+02 3.296300e+02
+12 19652     -2.930600e+02 2.394500e+02
+13 19652     1.742000e+02 -3.047998e+01
+14 19652     2.906500e+02 -4.861500e+02
+7 19653     -6.653300e+02 3.282000e+02
+12 19653     -7.998500e+02 2.149200e+02
+15 19653     -6.915400e+02 5.173400e+02
+7 19654     -5.696200e+02 3.271400e+02
+10 19654     -5.649200e+02 4.737100e+02
+11 19654     -1.828200e+02 -4.357400e+02
+15 19654     -5.661500e+02 5.112900e+02
+7 19655     -7.236100e+02 3.265900e+02
+10 19655     -7.462700e+02 4.806000e+02
+14 19655     -1.997500e+02 -4.276400e+02
+7 19656     1.409301e+02 3.259200e+02
+10 19656     2.620400e+02 4.194100e+02
+7 19657     3.170100e+02 3.250900e+02
+10 19657     4.721300e+02 4.030100e+02
+15 19657     6.502600e+02 4.517600e+02
+7 19658     5.591100e+02 3.251100e+02
+10 19658     7.445400e+02 3.655900e+02
+7 19659     -3.605500e+02 3.247200e+02
+15 19659     -2.844100e+02 4.979800e+02
+7 19660     -3.605500e+02 3.247200e+02
+15 19660     -2.844100e+02 4.979800e+02
+7 19661     5.734000e+02 3.245200e+02
+12 19661     6.703900e+02 3.357400e+02
+7 19662     -3.860700e+02 3.238700e+02
+15 19662     -3.177500e+02 4.989800e+02
+7 19663     -2.112800e+02 3.237800e+02
+10 19663     -1.503300e+02 4.439900e+02
+7 19664     -4.865500e+02 3.223700e+02
+14 19664     2.200000e+01 -4.621300e+02
+7 19665     -8.619000e+01 3.212800e+02
+10 19665     -6.590027e+00 4.309300e+02
+7 19666     -3.324300e+02 3.209900e+02
+14 19666     1.827500e+02 -4.833101e+02
+7 19667     -5.676500e+02 3.201600e+02
+10 19667     -5.622300e+02 4.648800e+02
+15 19667     -5.634400e+02 5.014000e+02
+7 19668     -5.676500e+02 3.201600e+02
+10 19668     -5.622300e+02 4.648800e+02
+7 19669     -3.435800e+02 3.200100e+02
+13 19669     7.887000e+01 -3.195001e+01
+7 19670     -2.177400e+02 3.199300e+02
+10 19670     -1.582800e+02 4.396200e+02
+15 19670     -9.621997e+01 4.808800e+02
+7 19671     -5.503500e+02 3.193700e+02
+14 19671     -4.014001e+01 -4.567900e+02
+7 19672     -7.679200e+02 3.185300e+02
+10 19672     -7.985000e+02 4.744300e+02
+14 19672     -2.418400e+02 -4.298800e+02
+15 19672     -8.308300e+02 5.063100e+02
+7 19673     -5.459900e+02 3.184500e+02
+14 19673     -3.634003e+01 -4.590601e+02
+7 19674     -5.459900e+02 3.184500e+02
+11 19674     -1.639000e+02 -4.451700e+02
+7 19675     5.486300e+02 3.186700e+02
+10 19675     7.309600e+02 3.590500e+02
+12 19675     6.411700e+02 3.241100e+02
+7 19676     -5.951000e+02 3.175000e+02
+10 19676     -5.948900e+02 4.630700e+02
+7 19677     -5.296500e+02 3.164600e+02
+14 19677     -2.069000e+01 -4.628900e+02
+7 19678     -5.296500e+02 3.164600e+02
+11 19678     -1.501700e+02 -4.488100e+02
+7 19679     -6.727400e+02 3.143600e+02
+10 19679     -6.844100e+02 4.657600e+02
+15 19679     -7.017100e+02 4.997600e+02
+7 19680     -5.639600e+02 3.144500e+02
+14 19680     -5.407001e+01 -4.603300e+02
+7 19681     -5.087600e+02 3.144300e+02
+11 19681     -1.323000e+02 -4.534600e+02
+7 19682     -3.887600e+02 3.141800e+02
+15 19682     -3.231000e+02 4.852800e+02
+7 19683     -3.207300e+02 3.140000e+02
+15 19683     -2.339600e+02 4.797600e+02
+7 19684     6.075100e+02 3.140200e+02
+12 19684     7.128800e+02 3.287900e+02
+7 19685     -5.307500e+02 3.135600e+02
+14 19685     -2.256000e+01 -4.653900e+02
+7 19686     -5.256600e+02 3.129800e+02
+14 19686     -1.779999e+01 -4.670400e+02
+7 19687     -5.468500e+02 3.117000e+02
+14 19687     -3.838000e+01 -4.655900e+02
+7 19688     5.411801e+02 3.104600e+02
+9 19688     3.940800e+02 2.265200e+02
+7 19689     -5.552300e+02 3.099400e+02
+14 19689     -4.696002e+01 -4.663600e+02
+7 19690     -5.151800e+02 3.101900e+02
+13 19690     -6.492999e+01 -2.971997e+01
+14 19690     -8.349976e+00 -4.711899e+02
+7 19691     -4.874800e+02 3.096700e+02
+11 19691     -1.142300e+02 -4.597400e+02
+7 19692     -1.002800e+02 3.090300e+02
+10 19692     -2.467999e+01 4.167500e+02
+7 19693     -7.036200e+02 3.079000e+02
+10 19693     -7.229600e+02 4.581100e+02
+14 19693     -1.863100e+02 -4.486200e+02
+15 19693     -7.461100e+02 4.903200e+02
+7 19694     -7.098100e+02 3.073600e+02
+10 19694     -7.296500e+02 4.578600e+02
+14 19694     -1.918300e+02 -4.490200e+02
+15 19694     -7.537500e+02 4.897900e+02
+7 19695     -5.083100e+02 3.074800e+02
+14 19695     -2.260010e+00 -4.753000e+02
+7 19696     -7.441600e+02 3.066600e+02
+10 19696     -7.702100e+02 4.592600e+02
+11 19696     -3.301900e+02 -4.309200e+02
+15 19696     -7.994100e+02 4.892100e+02
+7 19697     -6.604300e+02 3.063800e+02
+12 19697     -7.940200e+02 1.894100e+02
+15 19697     -6.852900e+02 4.883100e+02
+7 19698     -5.273000e+02 3.060000e+02
+14 19698     -2.103998e+01 -4.741500e+02
+7 19699     -5.545700e+02 3.055500e+02
+14 19699     -4.696997e+01 -4.709900e+02
+7 19700     -5.545700e+02 3.055500e+02
+14 19700     -4.696997e+01 -4.709900e+02
+7 19701     5.686500e+02 3.030900e+02
+12 19701     6.673400e+02 3.096400e+02
+7 19702     -5.646300e+02 3.027600e+02
+11 19702     -1.819800e+02 -4.565900e+02
+7 19703     -3.815300e+02 3.014300e+02
+10 19703     -3.485800e+02 4.301500e+02
+11 19703     -2.735999e+01 -4.828400e+02
+14 19703     1.304800e+02 -4.986300e+02
+15 19703     -3.163700e+02 4.662100e+02
+7 19704     -2.392300e+02 3.006700e+02
+10 19704     -1.865200e+02 4.176200e+02
+15 19704     -1.287800e+02 4.546500e+02
+7 19705     -2.766800e+02 2.993000e+02
+11 19705     6.294000e+01 -4.998700e+02
+7 19706     2.639800e+02 2.968200e+02
+15 19706     5.694100e+02 4.145900e+02
+7 19707     6.257600e+02 2.967200e+02
+12 19707     7.364200e+02 3.107300e+02
+7 19708     -5.145600e+02 2.950100e+02
+11 19708     -1.405600e+02 -4.694300e+02
+7 19709     -7.778003e+01 2.929300e+02
+10 19709     -5.584003e+01 3.570200e+02
+15 19709     1.017999e+01 3.907800e+02
+7 19710     -7.186400e+02 2.923700e+02
+8 19710     -5.837800e+02 -1.964999e+01
+14 19710     -2.039600e+02 -4.630500e+02
+15 19710     -7.657200e+02 4.707500e+02
+7 19711     -6.657300e+02 2.917400e+02
+10 19711     -6.768100e+02 4.397300e+02
+7 19712     -5.633700e+02 2.913300e+02
+14 19712     -5.859998e+01 -4.849200e+02
+7 19713     -5.097200e+02 2.895500e+02
+14 19713     -7.309998e+00 -4.937800e+02
+7 19714     5.945000e+02 2.886900e+02
+10 19714     7.835000e+02 3.167200e+02
+7 19715     -5.842500e+02 2.870300e+02
+15 19715     -5.861900e+02 4.588300e+02
+7 19716     -1.453700e+02 2.868800e+02
+10 19716     -8.134003e+01 3.926600e+02
+7 19717     -7.438400e+02 2.856700e+02
+10 19717     -7.706800e+02 4.348400e+02
+15 19717     -7.988700e+02 4.627800e+02
+7 19718     -7.157500e+02 2.852700e+02
+8 19718     -5.819500e+02 -2.726001e+01
+10 19718     -7.375900e+02 4.338200e+02
+15 19718     -7.621000e+02 4.616900e+02
+7 19719     -5.122500e+02 2.855900e+02
+11 19719     -1.394700e+02 -4.781400e+02
+7 19720     -2.734000e+02 2.828200e+02
+10 19720     -2.288900e+02 3.986800e+02
+7 19721     -8.003500e+02 2.816100e+02
+13 19721     -2.919400e+02 -3.472998e+01
+14 19721     -2.898700e+02 -4.627300e+02
+7 19722     -7.342000e+02 2.817500e+02
+10 19722     -7.596300e+02 4.312600e+02
+14 19722     -2.211200e+02 -4.717500e+02
+15 19722     -7.864600e+02 4.578700e+02
+7 19723     -7.054700e+02 2.806000e+02
+15 19723     -7.484900e+02 4.549200e+02
+7 19724     -5.634000e+02 2.806000e+02
+14 19724     -6.113000e+01 -4.961500e+02
+7 19725     -7.326300e+02 2.775500e+02
+10 19725     -7.572500e+02 4.261300e+02
+15 19725     -7.843900e+02 4.528700e+02
+7 19726     -5.750000e+02 2.764200e+02
+10 19726     -5.722200e+02 4.154300e+02
+7 19727     -3.498300e+02 2.737000e+02
+10 19727     -3.169400e+02 3.935200e+02
+7 19728     -3.498300e+02 2.737000e+02
+10 19728     -3.169400e+02 3.935200e+02
+7 19729     -1.126400e+02 2.735100e+02
+10 19729     -9.803003e+01 3.367800e+02
+15 19729     -3.922998e+01 3.659800e+02
+7 19730     -2.543700e+02 2.731200e+02
+10 19730     -2.085400e+02 3.849500e+02
+7 19731     -5.829000e+02 2.726800e+02
+14 19731     -8.158002e+01 -5.018700e+02
+15 19731     -5.844600e+02 4.400400e+02
+7 19732     -5.978100e+02 2.720300e+02
+14 19732     -9.592999e+01 -5.004800e+02
+7 19733     5.011600e+02 2.708500e+02
+9 19733     3.625601e+02 1.796600e+02
+7 19734     -2.551300e+02 2.702800e+02
+10 19734     -2.097200e+02 3.813200e+02
+7 19735     5.138199e+02 2.672000e+02
+10 19735     6.841500e+02 3.008400e+02
+7 19736     2.583800e+02 2.655800e+02
+15 19736     5.532300e+02 3.679900e+02
+7 19737     1.350800e+02 2.634500e+02
+15 19737     2.922200e+02 3.307700e+02
+7 19738     5.273800e+02 2.596800e+02
+8 19738     5.663600e+02 4.059000e+01
+9 19738     3.888800e+02 1.771500e+02
+7 19739     1.501100e+02 2.575200e+02
+10 19739     2.016300e+02 2.942300e+02
+7 19740     1.616200e+02 2.534100e+02
+10 19740     2.158000e+02 2.892500e+02
+7 19741     5.619200e+02 2.517800e+02
+9 19741     4.214399e+02 1.800900e+02
+10 19741     7.405300e+02 2.762600e+02
+7 19742     4.550601e+02 2.504300e+02
+15 19742     8.183600e+02 3.190800e+02
+7 19743     -3.906800e+02 2.465700e+02
+14 19743     1.224500e+02 -5.577100e+02
+7 19744     2.676700e+02 2.462300e+02
+15 19744     5.616100e+02 3.386100e+02
+7 19745     1.851600e+02 2.409800e+02
+15 19745     3.646100e+02 2.981500e+02
+7 19746     2.779301e+02 2.397000e+02
+15 19746     5.746500e+02 3.279700e+02
+7 19747     1.085500e+02 2.380900e+02
+13 19747     5.403101e+02 -1.269800e+02
+15 19747     2.445800e+02 2.932400e+02
+7 19748     6.880601e+02 2.374400e+02
+9 19748     5.360601e+02 2.034900e+02
+7 19749     2.723800e+02 2.354100e+02
+15 19749     5.647200e+02 3.218600e+02
+7 19750     6.224301e+02 2.354300e+02
+12 19750     7.385100e+02 2.400100e+02
+7 19751     3.812000e+02 2.333100e+02
+10 19751     5.259900e+02 2.781000e+02
+15 19751     7.140200e+02 3.048400e+02
+7 19752     -1.117100e+02 2.329100e+02
+10 19752     -1.058000e+02 2.860700e+02
+7 19753     -1.660500e+02 2.290600e+02
+12 19753     -1.439500e+02 1.876700e+02
+13 19753     2.937400e+02 -1.195600e+02
+7 19754     -5.265400e+02 2.276800e+02
+15 19754     -5.180000e+02 3.734300e+02
+7 19755     -5.419500e+02 2.263700e+02
+15 19755     -5.377300e+02 3.730900e+02
+7 19756     -5.419500e+02 2.263700e+02
+15 19756     -5.377300e+02 3.730900e+02
+7 19757     -1.893700e+02 2.252900e+02
+10 19757     -1.756900e+02 2.968000e+02
+12 19757     -1.856600e+02 1.674600e+02
+7 19758     -1.918000e+02 2.224800e+02
+10 19758     -1.790800e+02 2.934400e+02
+15 19758     -1.296700e+02 3.127100e+02
+7 19759     -5.904800e+02 2.217800e+02
+11 19759     -2.228900e+02 -5.251000e+02
+7 19760     7.041000e+02 2.217500e+02
+9 19760     5.528800e+02 1.940900e+02
+7 19761     4.161000e+02 2.146700e+02
+10 19761     5.645000e+02 2.515700e+02
+7 19762     -5.464800e+02 2.131000e+02
+15 19762     -5.459700e+02 3.549500e+02
+7 19763     -4.144300e+02 2.082700e+02
+15 19763     -3.766400e+02 3.370600e+02
+7 19764     2.627000e+02 2.079300e+02
+10 19764     3.522000e+02 2.402100e+02
+7 19765     -4.629000e+02 2.070700e+02
+15 19765     -4.402600e+02 3.393300e+02
+7 19766     -6.584900e+02 2.057900e+02
+10 19766     -6.739600e+02 3.391100e+02
+7 19767     4.171899e+02 2.051600e+02
+15 19767     7.619000e+02 2.599000e+02
+7 19768     5.739800e+02 2.051600e+02
+9 19768     4.393700e+02 1.415800e+02
+10 19768     7.510400e+02 2.184900e+02
+12 19768     6.827700e+02 1.967500e+02
+7 19769     -4.029000e+02 2.014800e+02
+15 19769     -3.623200e+02 3.275800e+02
+7 19770     -3.971300e+02 2.009600e+02
+15 19770     -3.558100e+02 3.252000e+02
+7 19771     -1.444300e+02 1.988800e+02
+10 19771     -1.457200e+02 2.497300e+02
+7 19772     -7.610999e+01 1.986000e+02
+12 19772     -2.252002e+01 1.708500e+02
+15 19772     -1.096997e+01 2.539000e+02
+7 19773     -2.591500e+02 1.976900e+02
+13 19773     1.949900e+02 -1.409200e+02
+7 19774     6.152300e+02 1.973700e+02
+10 19774     8.000300e+02 2.035100e+02
+7 19775     2.112200e+02 1.970600e+02
+15 19775     3.949600e+02 2.335600e+02
+7 19776     -6.497700e+02 1.924500e+02
+10 19776     -6.658600e+02 3.222000e+02
+7 19777     -2.154400e+02 1.925300e+02
+15 19777     -1.682700e+02 2.716800e+02
+7 19778     -2.154400e+02 1.925300e+02
+15 19778     -1.682700e+02 2.716800e+02
+7 19779     2.785500e+02 1.914900e+02
+10 19779     3.673700e+02 2.191400e+02
+7 19780     9.015997e+01 1.903200e+02
+10 19780     1.162400e+02 2.151600e+02
+13 19780     5.270900e+02 -1.662300e+02
+15 19780     2.101400e+02 2.270600e+02
+7 19781     -3.627800e+02 1.883300e+02
+13 19781     6.906000e+01 -1.431900e+02
+7 19782     -1.845800e+02 1.886000e+02
+13 19782     2.767300e+02 -1.527000e+02
+7 19783     1.165700e+02 1.881400e+02
+10 19783     1.475900e+02 2.102200e+02
+7 19784     1.165700e+02 1.881400e+02
+10 19784     1.475900e+02 2.102200e+02
+7 19785     5.776500e+02 1.879300e+02
+9 19785     4.459200e+02 1.275000e+02
+7 19786     -3.787200e+02 1.869800e+02
+10 19786     -3.631100e+02 2.901300e+02
+7 19787     3.595200e+02 1.845200e+02
+15 19787     6.806801e+02 2.391800e+02
+7 19788     5.789100e+02 1.840400e+02
+10 19788     7.545601e+02 1.929900e+02
+7 19789     3.662100e+02 1.827700e+02
+10 19789     5.067500e+02 2.196100e+02
+13 19789     7.337600e+02 -1.926900e+02
+15 19789     6.906801e+02 2.353800e+02
+7 19790     3.662100e+02 1.827700e+02
+10 19790     5.067500e+02 2.196100e+02
+15 19790     6.906801e+02 2.353800e+02
+7 19791     4.492700e+02 1.808400e+02
+8 19791     5.003700e+02 -4.757999e+01
+15 19791     8.043600e+02 2.216900e+02
+7 19792     -1.823100e+02 1.781100e+02
+12 19792     -1.567000e+02 1.289300e+02
+7 19793     -3.609500e+02 1.773300e+02
+9 19793     -4.359100e+02 -3.807001e+01
+13 19793     7.107001e+01 -1.530400e+02
+15 19793     -3.130800e+02 2.888000e+02
+7 19794     3.645601e+02 1.771300e+02
+15 19794     6.860400e+02 2.273300e+02
+7 19795     5.948101e+02 1.749600e+02
+10 19795     7.730400e+02 1.798200e+02
+7 19796     3.633300e+02 1.745500e+02
+15 19796     6.847200e+02 2.230400e+02
+7 19797     1.719600e+02 1.741200e+02
+15 19797     3.272800e+02 2.002400e+02
+7 19798     3.010699e+02 1.733000e+02
+15 19798     5.440300e+02 2.049300e+02
+7 19799     5.436100e+02 1.729700e+02
+10 19799     7.116600e+02 1.843600e+02
+7 19800     -2.566500e+02 1.700800e+02
+15 19800     -2.204200e+02 2.472900e+02
+7 19801     1.824900e+02 1.692700e+02
+10 19801     2.271801e+02 1.853100e+02
+7 19802     -3.173700e+02 1.678800e+02
+10 19802     -2.975000e+02 2.618400e+02
+7 19803     -6.602900e+02 1.668300e+02
+10 19803     -6.813900e+02 2.921500e+02
+7 19804     -4.717000e+02 1.655200e+02
+15 19804     -4.589000e+02 2.821400e+02
+7 19805     -5.551500e+02 1.636700e+02
+10 19805     -5.640200e+02 2.784300e+02
+15 19805     -5.660700e+02 2.871900e+02
+7 19806     6.308199e+02 1.636600e+02
+9 19806     4.981400e+02 1.215900e+02
+7 19807     -5.041000e+02 1.583500e+02
+15 19807     -5.157100e+02 2.677300e+02
+7 19808     2.910400e+02 1.587500e+02
+15 19808     5.253101e+02 1.829600e+02
+7 19809     -3.767900e+02 1.580400e+02
+15 19809     -3.379900e+02 2.629500e+02
+7 19810     2.568199e+02 1.552600e+02
+10 19810     3.268400e+02 1.710700e+02
+15 19810     4.666899e+02 1.769600e+02
+7 19811     -5.822500e+02 1.541000e+02
+10 19811     -5.959500e+02 2.694800e+02
+7 19812     -2.229980e+00 1.513000e+02
+15 19812     7.713000e+01 1.798500e+02
+7 19813     1.328200e+02 1.508000e+02
+10 19813     1.619600e+02 1.650400e+02
+7 19814     3.904999e+01 1.466000e+02
+15 19814     1.322300e+02 1.698600e+02
+7 19815     -4.485000e+02 1.448400e+02
+10 19815     -4.474900e+02 2.460400e+02
+7 19816     -2.409700e+02 1.428900e+02
+10 19816     -2.501200e+02 2.007300e+02
+7 19817     -8.003998e+01 1.431600e+02
+15 19817     -2.420001e+01 1.773300e+02
+7 19818     -1.640800e+02 1.391900e+02
+10 19818     -1.732200e+02 1.829400e+02
+7 19819     3.116100e+02 1.376700e+02
+10 19819     3.942500e+02 1.477100e+02
+15 19819     5.482000e+02 1.499600e+02
+7 19820     -4.186500e+02 1.358200e+02
+10 19820     -4.150700e+02 2.330200e+02
+15 19820     -3.959900e+02 2.359400e+02
+7 19821     -4.301700e+02 1.345500e+02
+15 19821     -4.113100e+02 2.355100e+02
+7 19822     5.864001e+01 1.336000e+02
+15 19822     1.577200e+02 1.500100e+02
+7 19823     2.566200e+02 1.337300e+02
+10 19823     3.217000e+02 1.431900e+02
+15 19823     4.598800e+02 1.443700e+02
+7 19824     -4.469400e+02 1.328200e+02
+15 19824     -4.332200e+02 2.344400e+02
+7 19825     2.005900e+02 1.298200e+02
+10 19825     2.443300e+02 1.377200e+02
+7 19826     6.214000e+02 1.286000e+02
+10 19826     8.025500e+02 1.200700e+02
+7 19827     -4.587300e+02 1.263800e+02
+15 19827     -4.491900e+02 2.263200e+02
+7 19828     4.376899e+02 1.258500e+02
+15 19828     7.823000e+02 1.442500e+02
+7 19829     -4.982300e+02 1.226500e+02
+15 19829     -5.089900e+02 2.206000e+02
+7 19830     -6.259003e+01 1.214600e+02
+15 19830     -4.530029e+00 1.452700e+02
+7 19831     4.483700e+02 1.215400e+02
+15 19831     7.974301e+02 1.368100e+02
+7 19832     -2.821800e+02 1.169600e+02
+12 19832     -2.802200e+02 3.967999e+01
+7 19833     -1.789800e+02 1.154300e+02
+13 19833     2.824301e+02 -2.148000e+02
+7 19834     -4.714000e+02 1.137200e+02
+10 19834     -4.781900e+02 2.107500e+02
+15 19834     -4.685600e+02 2.103600e+02
+7 19835     -2.807700e+02 1.097100e+02
+15 19835     -2.662500e+02 1.640900e+02
+7 19836     1.347200e+02 1.063400e+02
+10 19836     1.592600e+02 1.132500e+02
+13 19836     5.654100e+02 -2.412800e+02
+7 19837     -3.283600e+02 1.049200e+02
+13 19837     1.021400e+02 -2.176400e+02
+7 19838     -3.868000e+02 1.039800e+02
+10 19838     -3.863400e+02 1.910700e+02
+7 19839     -3.599200e+02 1.035800e+02
+15 19839     -3.266500e+02 1.859800e+02
+7 19840     4.495601e+02 1.008200e+02
+10 19840     5.909200e+02 1.104100e+02
+15 19840     7.939200e+02 1.059600e+02
+7 19841     3.204800e+02 9.641000e+01
+15 19841     5.495699e+02 8.756000e+01
+7 19842     7.400200e+02 9.657999e+01
+9 19842     6.063800e+02 9.454001e+01
+7 19843     -4.582900e+02 9.325000e+01
+15 19843     -4.555100e+02 1.807800e+02
+7 19844     4.760900e+02 9.357999e+01
+15 19844     8.318900e+02 9.157001e+01
+7 19845     6.379900e+02 9.179999e+01
+9 19845     5.173900e+02 5.834998e+01
+7 19846     -5.320000e+02 8.879001e+01
+15 19846     -5.498400e+02 1.819500e+02
+7 19847     7.360800e+02 8.845999e+01
+9 19847     6.047400e+02 8.616000e+01
+7 19848     7.446200e+02 8.563000e+01
+9 19848     6.122100e+02 8.600000e+01
+7 19849     6.127800e+02 8.529999e+01
+10 19849     7.878900e+02 6.940002e+01
+7 19850     -3.893800e+02 8.320001e+01
+10 19850     -3.911700e+02 1.663600e+02
+7 19851     4.816500e+02 8.310999e+01
+10 19851     6.268300e+02 8.466998e+01
+7 19852     1.361300e+02 7.931000e+01
+15 19852     2.620500e+02 7.073999e+01
+7 19853     -3.939000e+02 7.790002e+01
+10 19853     -3.967300e+02 1.607600e+02
+15 19853     -3.750000e+02 1.534200e+02
+7 19854     -4.056000e+01 7.796997e+01
+10 19854     -4.670001e+01 9.652002e+01
+7 19855     9.083002e+01 7.792999e+01
+10 19855     1.039900e+02 8.309998e+01
+15 19855     1.967100e+02 7.158002e+01
+7 19856     2.510400e+02 7.682001e+01
+15 19856     4.348199e+02 6.102002e+01
+7 19857     -4.076700e+02 7.656000e+01
+13 19857     3.412000e+01 -2.359200e+02
+7 19858     -1.215000e+02 7.188000e+01
+10 19858     -1.351100e+02 9.913000e+01
+12 19858     -6.516998e+01 1.744000e+01
+7 19859     -4.092400e+02 6.969000e+01
+15 19859     -3.969400e+02 1.436600e+02
+7 19860     -3.578700e+02 6.878998e+01
+15 19860     -3.306700e+02 1.373800e+02
+7 19861     -4.611700e+02 6.696997e+01
+10 19861     -4.741700e+02 1.538900e+02
+15 19861     -4.638900e+02 1.445200e+02
+7 19862     7.320601e+02 6.633002e+01
+9 19862     6.049600e+02 6.483002e+01
+7 19863     -4.517500e+02 6.606000e+01
+10 19863     -4.634600e+02 1.519000e+02
+7 19864     -4.710700e+02 6.550000e+01
+10 19864     -4.849900e+02 1.532100e+02
+7 19865     7.449399e+02 6.529999e+01
+9 19865     6.159500e+02 6.777002e+01
+7 19866     -4.729600e+02 6.240997e+01
+10 19866     -4.878500e+02 1.502200e+02
+15 19866     -4.797600e+02 1.392300e+02
+7 19867     3.309200e+02 6.245001e+01
+10 19867     3.999600e+02 5.142999e+01
+7 19868     4.485000e+02 6.209998e+01
+15 19868     7.813500e+02 4.751001e+01
+7 19869     -3.634600e+02 5.781000e+01
+15 19869     -3.399900e+02 1.227000e+02
+7 19870     -2.004500e+02 5.440997e+01
+15 19870     -1.819600e+02 7.440997e+01
+7 19871     2.333500e+02 5.303998e+01
+10 19871     2.757200e+02 4.528003e+01
+7 19872     -4.594700e+02 5.010999e+01
+15 19872     -4.646900e+02 1.214900e+02
+7 19873     -2.093100e+02 5.001001e+01
+9 19873     -1.118700e+02 1.444000e+01
+7 19874     7.127100e+02 4.903998e+01
+9 19874     5.914301e+02 4.289001e+01
+7 19875     -1.730600e+02 4.853003e+01
+15 19875     -1.493300e+02 6.266998e+01
+7 19876     2.559399e+02 4.789001e+01
+10 19876     3.044000e+02 3.871997e+01
+7 19877     4.469000e+01 4.621997e+01
+10 19877     4.815997e+01 5.142999e+01
+7 19878     -5.246600e+02 4.123999e+01
+10 19878     -5.484900e+02 1.294800e+02
+15 19878     -5.492300e+02 1.154500e+02
+7 19879     -5.246600e+02 4.123999e+01
+10 19879     -5.484900e+02 1.294800e+02
+7 19880     -4.264200e+02 3.897998e+01
+15 19880     -4.243100e+02 1.029400e+02
+7 19881     -4.235800e+02 3.752002e+01
+13 19881     2.144000e+01 -2.681600e+02
+7 19882     -3.891400e+02 3.648999e+01
+15 19882     -3.770400e+02 9.576001e+01
+7 19883     2.755500e+02 3.246997e+01
+12 19883     4.001700e+02 1.150024e+00
+15 19883     4.648000e+02 -3.059998e+00
+7 19884     -1.751300e+02 3.151001e+01
+10 19884     -1.982500e+02 5.846002e+01
+15 19884     -1.550700e+02 3.953998e+01
+7 19885     -2.557000e+02 3.059003e+01
+10 19885     -2.826800e+02 6.908002e+01
+15 19885     -2.525300e+02 5.040997e+01
+7 19886     -2.557000e+02 3.059003e+01
+10 19886     -2.826800e+02 6.908002e+01
+15 19886     -2.525300e+02 5.040997e+01
+7 19887     -1.828300e+02 3.063000e+01
+10 19887     -2.055600e+02 5.941998e+01
+13 19887     2.794000e+02 -2.867600e+02
+15 19887     -1.634800e+02 4.034998e+01
+7 19888     3.131500e+02 2.839001e+01
+15 19888     5.183000e+02 -1.270001e+01
+7 19889     2.669800e+02 2.802002e+01
+15 19889     4.516000e+02 -8.489990e+00
+7 19890     -3.652700e+02 2.578998e+01
+10 19890     -3.733800e+02 9.573999e+01
+7 19891     5.532400e+02 2.195001e+01
+10 19891     7.039500e+02 7.000122e-01
+7 19892     2.771200e+02 1.553003e+01
+10 19892     3.241400e+02 -1.809998e+00
+15 19892     4.620800e+02 -2.759998e+01
+7 19893     2.414000e+02 1.344000e+01
+15 19893     4.104200e+02 -2.684998e+01
+7 19894     2.960601e+02 1.215002e+01
+15 19894     4.884600e+02 -3.459998e+01
+7 19895     2.960601e+02 1.215002e+01
+15 19895     4.884600e+02 -3.459998e+01
+7 19896     -4.099500e+02 8.409973e+00
+10 19896     -4.262800e+02 8.000000e+01
+7 19897     -2.535400e+02 8.510010e+00
+10 19897     -2.850900e+02 4.191998e+01
+15 19897     -2.555300e+02 1.912000e+01
+7 19898     4.415800e+02 6.719971e+00
+15 19898     7.557000e+02 -3.434998e+01
+7 19899     -2.035600e+02 3.760010e+00
+15 19899     -1.920500e+02 7.349976e+00
+7 19900     -2.035600e+02 3.760010e+00
+15 19900     -1.920500e+02 7.349976e+00
+7 19901     -1.296500e+02 3.309998e+00
+10 19901     -1.524000e+02 2.109998e+01
+15 19901     -1.020200e+02 -3.169983e+00
+7 19902     1.375400e+02 2.650024e+00
+10 19902     1.515400e+02 -7.950012e+00
+15 19902     2.541600e+02 -3.533002e+01
+7 19903     -1.155700e+02 2.070007e+00
+10 19903     -1.376300e+02 1.689001e+01
+7 19904     8.565997e+01 -1.000977e-02
+10 19904     9.058002e+01 -5.979980e+00
+7 19905     -4.744700e+02 -2.059998e+00
+10 19905     -4.991200e+02 7.354999e+01
+15 19905     -4.935900e+02 5.147998e+01
+7 19906     -2.530300e+02 -4.090027e+00
+15 19906     -2.540700e+02 2.890015e+00
+7 19907     -4.774300e+02 -6.780029e+00
+15 19907     -4.979900e+02 4.503998e+01
+7 19908     -4.321600e+02 -7.039978e+00
+15 19908     -4.406300e+02 4.045001e+01
+7 19909     6.599976e+00 -6.979980e+00
+15 19909     7.295001e+01 -3.395001e+01
+7 19910     2.760200e+02 -6.830017e+00
+10 19910     3.182200e+02 -2.959003e+01
+15 19910     4.546899e+02 -6.023999e+01
+7 19911     9.195001e+01 -7.770020e+00
+15 19911     1.885900e+02 -4.553003e+01
+7 19912     2.585999e+01 -8.460022e+00
+10 19912     2.015002e+01 -1.010999e+01
+15 19912     9.875000e+01 -3.890997e+01
+7 19913     2.815400e+02 -1.132001e+01
+8 19913     4.763300e+02 -1.258200e+02
+10 19913     3.237000e+02 -3.565997e+01
+7 19914     -2.491200e+02 -1.251001e+01
+12 19914     -2.167600e+02 -1.015700e+02
+7 19915     1.488700e+02 -1.270001e+01
+12 19915     2.688000e+02 -5.427002e+01
+7 19916     -2.517900e+02 -1.341998e+01
+15 19916     -2.524300e+02 -8.359985e+00
+7 19917     2.976801e+02 -1.509998e+01
+10 19917     3.418700e+02 -4.200000e+01
+7 19918     6.169301e+02 -1.526001e+01
+12 19918     7.659100e+02 -5.240997e+01
+7 19919     2.196700e+02 -2.034998e+01
+15 19919     3.704301e+02 -7.353998e+01
+7 19920     -1.477400e+02 -2.084998e+01
+15 19920     -1.262800e+02 -3.290002e+01
+7 19921     -8.682001e+01 -2.107001e+01
+15 19921     -5.040002e+01 -4.258002e+01
+7 19922     -1.412800e+02 -2.427002e+01
+15 19922     -1.182300e+02 -3.859003e+01
+7 19923     2.123000e+02 -2.421997e+01
+10 19923     2.388700e+02 -4.448999e+01
+12 19923     3.414301e+02 -6.465997e+01
+13 19923     6.329800e+02 -3.628400e+02
+15 19923     3.595100e+02 -7.841998e+01
+7 19924     -5.173900e+02 -3.060999e+01
+15 19924     -5.535300e+02 1.728998e+01
+7 19925     -4.660700e+02 -3.294000e+01
+15 19925     -4.884100e+02 8.989990e+00
+7 19926     -1.422400e+02 -3.306000e+01
+15 19926     -1.211100e+02 -5.072998e+01
+7 19927     -4.372800e+02 -3.503998e+01
+15 19927     -4.523000e+02 2.770020e+00
+7 19928     6.433000e+02 -3.627002e+01
+12 19928     8.008900e+02 -7.241998e+01
+7 19929     -5.607000e+02 -3.791998e+01
+15 19929     -6.091600e+02 1.134998e+01
+7 19930     -4.218900e+02 -3.932001e+01
+15 19930     -4.334600e+02 -4.590027e+00
+7 19931     5.052800e+02 -3.978998e+01
+15 19931     8.400699e+02 -1.108100e+02
+7 19932     -5.539900e+02 -4.053003e+01
+10 19932     -5.925300e+02 3.608002e+01
+15 19932     -6.014800e+02 7.619995e+00
+7 19933     2.138300e+02 -4.031000e+01
+10 19933     2.367400e+02 -6.442999e+01
+15 19933     3.565900e+02 -1.017600e+02
+7 19934     -2.181900e+02 -4.162000e+01
+10 19934     -2.554500e+02 -2.139001e+01
+12 19934     -1.686600e+02 -1.254300e+02
+7 19935     -5.838000e+02 -4.691998e+01
+15 19935     -6.402600e+02 1.849976e+00
+7 19936     -5.136500e+02 -4.792999e+01
+8 19936     -3.376100e+02 -2.888200e+02
+9 19936     -5.064800e+02 -2.235200e+02
+13 19936     -5.428998e+01 -3.341700e+02
+15 19936     -5.517400e+02 -7.020020e+00
+7 19937     1.975100e+02 -4.828003e+01
+10 19937     2.163300e+02 -7.215997e+01
+7 19938     -3.111300e+02 -5.248999e+01
+15 19938     -3.078900e+02 -4.128998e+01
+7 19939     -6.240000e+02 -5.365002e+01
+12 19939     -7.103000e+02 -2.167100e+02
+7 19940     -5.213500e+02 -5.542999e+01
+15 19940     -5.626100e+02 -1.566998e+01
+7 19941     5.694301e+02 -5.985999e+01
+10 19941     7.065800e+02 -1.033400e+02
+7 19942     -4.255500e+02 -6.832001e+01
+15 19942     -4.442800e+02 -4.371997e+01
+7 19943     1.860699e+02 -6.910999e+01
+15 19943     3.103000e+02 -1.394400e+02
+7 19944     -4.918900e+02 -7.040002e+01
+15 19944     -5.285300e+02 -3.953998e+01
+7 19945     -7.702002e+01 -7.260999e+01
+10 19945     -1.042500e+02 -7.303003e+01
+7 19946     -4.678600e+02 -7.369000e+01
+15 19946     -4.988000e+02 -4.631000e+01
+7 19947     -5.290100e+02 -7.577002e+01
+8 19947     -3.474000e+02 -3.120700e+02
+10 19947     -5.703500e+02 -7.510010e+00
+13 19947     -6.742999e+01 -3.570000e+02
+15 19947     -5.765600e+02 -4.289001e+01
+7 19948     -6.423100e+02 -7.879999e+01
+10 19948     -6.958800e+02 5.900269e-01
+13 19948     -1.659200e+02 -3.495000e+02
+15 19948     -7.195100e+02 -3.469000e+01
+7 19949     3.962600e+02 -7.954999e+01
+15 19949     6.634000e+02 -1.567400e+02
+7 19950     -5.002500e+02 -8.573999e+01
+15 19950     -5.426200e+02 -5.932001e+01
+7 19951     -1.010300e+02 -8.775000e+01
+15 19951     -7.876001e+01 -1.305400e+02
+7 19952     -2.481000e+01 -8.778003e+01
+15 19952     1.950000e+01 -1.412200e+02
+7 19953     -4.881600e+02 -8.989001e+01
+15 19953     -5.274700e+02 -6.634003e+01
+7 19954     -6.935999e+01 -9.009003e+01
+10 19954     -9.815997e+01 -9.462000e+01
+15 19954     -3.942999e+01 -1.386900e+02
+7 19955     8.045001e+01 -9.004999e+01
+15 19955     1.594600e+02 -1.570300e+02
+7 19956     8.045001e+01 -9.004999e+01
+15 19956     1.594600e+02 -1.570300e+02
+7 19957     1.165100e+02 -8.989001e+01
+10 19957     1.137000e+02 -1.139800e+02
+15 19957     2.094000e+02 -1.606200e+02
+7 19958     -8.584998e+01 -9.022998e+01
+10 19958     -1.171000e+02 -9.356000e+01
+15 19958     -6.167999e+01 -1.373200e+02
+7 19959     -2.300400e+02 -9.322998e+01
+10 19959     -2.610800e+02 -7.025000e+01
+15 19959     -2.247900e+02 -1.124200e+02
+7 19960     -6.703998e+01 -9.329999e+01
+15 19960     -3.665002e+01 -1.426700e+02
+7 19961     1.516000e+02 -9.540002e+01
+15 19961     2.605200e+02 -1.709900e+02
+7 19962     -6.229500e+02 -9.590002e+01
+10 19962     -6.767600e+02 -2.133002e+01
+13 19962     -1.490400e+02 -3.659400e+02
+15 19962     -6.983300e+02 -5.995001e+01
+7 19963     -5.086000e+02 -1.016500e+02
+10 19963     -5.517700e+02 -3.976001e+01
+7 19964     -6.184200e+02 -1.018300e+02
+8 19964     -4.371300e+02 -3.397300e+02
+7 19965     -6.205400e+02 -1.040900e+02
+10 19965     -6.750600e+02 -3.150000e+01
+15 19965     -6.961800e+02 -7.158002e+01
+7 19966     -7.254900e+02 -1.088500e+02
+15 19966     -8.275500e+02 -6.659998e+01
+7 19967     -5.102600e+02 -1.092000e+02
+15 19967     -5.592100e+02 -9.040997e+01
+7 19968     -5.274000e+02 -1.108600e+02
+15 19968     -5.812100e+02 -9.010999e+01
+7 19969     1.140600e+02 -1.160400e+02
+9 19969     2.410400e+02 -6.492999e+01
+7 19970     -4.510400e+02 -1.199400e+02
+13 19970     2.940002e+00 -4.014300e+02
+7 19971     5.007300e+02 -1.213500e+02
+15 19971     8.107100e+02 -2.320600e+02
+7 19972     -3.901200e+02 -1.259500e+02
+12 19972     -4.063000e+02 -2.766100e+02
+15 19972     -4.105600e+02 -1.260400e+02
+7 19973     2.834000e+02 -1.263700e+02
+10 19973     3.260100e+02 -1.607400e+02
+7 19974     5.018500e+02 -1.299800e+02
+15 19974     8.098500e+02 -2.449500e+02
+7 19975     5.320800e+02 -1.312400e+02
+15 19975     8.556100e+02 -2.513000e+02
+7 19976     2.439100e+02 -1.390400e+02
+10 19976     2.755500e+02 -1.736700e+02
+7 19977     -1.899200e+02 -1.416500e+02
+12 19977     -1.370200e+02 -2.573700e+02
+7 19978     5.956801e+02 -1.424900e+02
+12 19978     7.736899e+02 -1.925300e+02
+7 19979     9.657001e+01 -1.502300e+02
+10 19979     9.225000e+01 -1.765400e+02
+7 19980     -5.138800e+02 -1.573500e+02
+15 19980     -5.730600e+02 -1.544400e+02
+7 19981     -7.246997e+01 -1.600000e+02
+12 19981     1.653003e+01 -2.586900e+02
+7 19982     -2.958900e+02 -1.618500e+02
+13 19982     1.464500e+02 -4.525100e+02
+7 19983     -6.032800e+02 -1.625800e+02
+10 19983     -6.656500e+02 -1.010400e+02
+15 19983     -6.857600e+02 -1.514400e+02
+7 19984     -6.032800e+02 -1.625800e+02
+10 19984     -6.656500e+02 -1.010400e+02
+15 19984     -6.857600e+02 -1.514400e+02
+7 19985     -5.255100e+02 -1.691000e+02
+10 19985     -5.808100e+02 -1.163600e+02
+15 19985     -5.897500e+02 -1.690100e+02
+7 19986     5.286000e+02 -1.712400e+02
+12 19986     7.033000e+02 -2.308700e+02
+15 19986     8.395000e+02 -3.101000e+02
+7 19987     1.265800e+02 -1.837200e+02
+10 19987     1.269400e+02 -2.150200e+02
+7 19988     -6.059100e+02 -1.842200e+02
+10 19988     -6.719500e+02 -1.250200e+02
+15 19988     -6.932600e+02 -1.799600e+02
+7 19989     -3.991400e+02 -1.855600e+02
+15 19989     -4.339900e+02 -2.055300e+02
+7 19990     -4.885700e+02 -1.865200e+02
+8 19990     -2.805500e+02 -3.988700e+02
+9 19990     -4.164800e+02 -3.236000e+02
+10 19990     -5.430600e+02 -1.407500e+02
+15 19990     -5.470600e+02 -1.967600e+02
+7 19991     3.892999e+01 -1.870200e+02
+15 19991     1.067800e+02 -2.749300e+02
+7 19992     1.074500e+02 -1.945300e+02
+10 19992     1.044400e+02 -2.252900e+02
+7 19993     -4.623600e+02 -1.955900e+02
+10 19993     -5.155900e+02 -1.535600e+02
+15 19993     -5.158200e+02 -2.117000e+02
+7 19994     5.039500e+02 -2.012300e+02
+15 19994     7.939600e+02 -3.507400e+02
+7 19995     -6.925100e+02 -2.022100e+02
+15 19995     -8.040900e+02 -1.949700e+02
+7 19996     5.033199e+02 -2.037900e+02
+10 19996     5.914301e+02 -2.747400e+02
+15 19996     7.923600e+02 -3.543400e+02
+7 19997     -4.981600e+02 -2.088100e+02
+15 19997     -5.630800e+02 -2.250800e+02
+7 19998     4.204100e+02 -2.096300e+02
+15 19998     6.672400e+02 -3.493600e+02
+7 19999     7.770001e+01 -2.223500e+02
+10 19999     6.875000e+01 -2.528000e+02
+7 20000     3.359900e+02 -2.264300e+02
+10 20000     3.797600e+02 -2.829300e+02
+7 20001     3.792300e+02 -2.341800e+02
+15 20001     6.009100e+02 -3.785200e+02
+7 20002     3.792300e+02 -2.341800e+02
+10 20002     4.340000e+02 -2.955300e+02
+7 20003     3.518000e+02 -2.401500e+02
+10 20003     3.975900e+02 -3.005600e+02
+15 20003     5.568400e+02 -3.840300e+02
+7 20004     4.684301e+02 -2.455800e+02
+15 20004     7.289200e+02 -4.101900e+02
+7 20005     -1.299600e+02 -2.540300e+02
+10 20005     -1.700500e+02 -2.645600e+02
+7 20006     2.764001e+01 -2.640500e+02
+10 20006     5.349976e+00 -2.950400e+02
+12 20006     1.464100e+02 -3.778700e+02
+7 20007     5.263000e+01 -2.678800e+02
+12 20007     1.776200e+02 -3.795100e+02
+7 20008     3.439700e+02 -2.685900e+02
+10 20008     3.837800e+02 -3.331600e+02
+7 20009     -9.371002e+01 -2.710400e+02
+15 20009     -7.453998e+01 -3.676200e+02
+7 20010     4.672900e+02 -2.781900e+02
+15 20010     7.186500e+02 -4.578500e+02
+7 20011     -1.263800e+02 -2.789100e+02
+15 20011     -1.106700e+02 -3.712500e+02
+7 20012     -9.271997e+01 -2.820300e+02
+9 20012     7.006000e+01 -2.854400e+02
+7 20013     -4.394400e+02 -2.828600e+02
+10 20013     -5.045400e+02 -2.569900e+02
+7 20014     -2.562600e+02 -2.853700e+02
+15 20014     -2.747900e+02 -3.592400e+02
+7 20015     -4.922700e+02 -2.871500e+02
+15 20015     -5.714100e+02 -3.309600e+02
+7 20016     -4.922700e+02 -2.871500e+02
+15 20016     -5.714100e+02 -3.309600e+02
+7 20017     -4.354800e+02 -2.891500e+02
+10 20017     -5.011300e+02 -2.644900e+02
+7 20018     -3.788900e+02 -2.943700e+02
+15 20018     -4.302300e+02 -3.548300e+02
+7 20019     -5.804100e+02 -2.972800e+02
+15 20019     -6.835200e+02 -3.342200e+02
+7 20020     -3.567400e+02 -3.011100e+02
+15 20020     -4.037200e+02 -3.667100e+02
+7 20021     -6.735600e+02 -3.051900e+02
+15 20021     -8.001700e+02 -3.331300e+02
+7 20022     -2.735400e+02 -3.139700e+02
+15 20022     -3.007600e+02 -3.952200e+02
+7 20023     4.596000e+02 -3.172400e+02
+12 20023     6.596600e+02 -4.013300e+02
+7 20024     -5.637000e+02 -3.181300e+02
+15 20024     -6.667400e+02 -3.635200e+02
+7 20025     -5.456000e+01 -3.192400e+02
+15 20025     -2.310999e+01 -4.349399e+02
+7 20026     3.204900e+02 -3.192700e+02
+10 20026     3.464600e+02 -3.911700e+02
+7 20027     6.572998e+01 -3.217400e+02
+15 20027     1.361200e+02 -4.560400e+02
+7 20028     -5.503998e+01 -3.233500e+02
+15 20028     -2.453003e+01 -4.401500e+02
+7 20029     3.094200e+02 -3.246100e+02
+10 20029     3.317400e+02 -3.959000e+02
+7 20030     1.526001e+01 -3.277900e+02
+10 20030     -1.221997e+01 -3.643200e+02
+7 20031     -5.142600e+02 -3.465400e+02
+15 20031     -6.112200e+02 -4.076700e+02
+7 20032     -1.894000e+02 -3.485800e+02
+15 20032     -2.004600e+02 -4.535000e+02
+7 20033     -4.508100e+02 -3.491500e+02
+15 20033     -5.321200e+02 -4.190900e+02
+7 20034     -5.201000e+02 -3.510500e+02
+15 20034     -6.188100e+02 -4.128200e+02
+7 20035     -4.375900e+02 -3.522300e+02
+15 20035     -5.157300e+02 -4.255400e+02
+7 20036     -2.203300e+02 -3.527500e+02
+15 20036     -2.412600e+02 -4.547800e+02
+7 20037     -2.569100e+02 -3.536200e+02
+15 20037     -2.883100e+02 -4.507700e+02
+7 20038     -3.196900e+02 -3.564200e+02
+9 20038     -1.510400e+02 -4.184000e+02
+7 20039     -2.517700e+02 -3.581600e+02
+15 20039     -2.825200e+02 -4.577300e+02
+7 20040     -4.204999e+01 -3.725400e+02
+15 20040     -1.687000e+01 -5.085900e+02
+7 20041     3.054900e+02 -3.734600e+02
+10 20041     3.168400e+02 -4.537300e+02
+7 20042     -3.409700e+02 -3.771800e+02
+15 20042     -3.992600e+02 -4.708400e+02
+7 20043     -2.206800e+02 -3.770000e+02
+15 20043     -2.470200e+02 -4.876700e+02
+7 20044     -4.192500e+02 -3.800200e+02
+15 20044     -4.986300e+02 -4.647600e+02
+7 20045     -3.095600e+02 -3.797100e+02
+15 20045     -3.599800e+02 -4.786000e+02
+7 20046     5.367900e+02 -3.805700e+02
+10 20046     5.967600e+02 -4.980800e+02
+7 20047     1.338800e+02 -3.859000e+02
+10 20047     1.158300e+02 -4.460900e+02
+7 20048     6.174800e+02 -3.866400e+02
+10 20048     6.975100e+02 -5.187400e+02
+7 20049     5.325400e+02 -3.874200e+02
+10 20049     5.896500e+02 -5.053800e+02
+7 20050     -6.430200e+02 -3.987500e+02
+15 20050     -7.803100e+02 -4.606500e+02
+7 20051     -2.094100e+02 -4.022000e+02
+9 20051     -1.137000e+01 -4.266700e+02
+7 20052     -7.891998e+01 -4.024300e+02
+15 20052     -6.882001e+01 -5.431400e+02
+7 20053     -6.173700e+02 -4.028600e+02
+15 20053     -7.497900e+02 -4.694301e+02
+7 20054     -4.551700e+02 -4.041600e+02
+10 20054     -5.420300e+02 -3.950000e+02
+15 20054     -5.490500e+02 -4.920900e+02
+7 20055     -4.551700e+02 -4.041600e+02
+10 20055     -5.420300e+02 -3.950000e+02
+15 20055     -5.490500e+02 -4.920900e+02
+7 20056     1.383600e+02 -4.039300e+02
+15 20056     2.202500e+02 -5.807800e+02
+7 20057     4.155100e+02 -4.039800e+02
+10 20057     4.432000e+02 -5.072300e+02
+7 20058     -7.219971e+00 -4.043300e+02
+15 20058     2.510999e+01 -5.573500e+02
+7 20059     5.405900e+02 -4.059000e+02
+10 20059     5.959600e+02 -5.295500e+02
+7 20060     -4.446997e+01 -4.065800e+02
+15 20060     -2.440002e+01 -5.544000e+02
+7 20061     1.287100e+02 -4.065900e+02
+10 20061     1.060600e+02 -4.692300e+02
+7 20062     -5.085400e+02 -4.070300e+02
+15 20062     -6.159500e+02 -4.887900e+02
+7 20063     -3.133400e+02 -4.077100e+02
+9 20063     -1.174200e+02 -4.558400e+02
+10 20063     -3.874100e+02 -4.148600e+02
+15 20063     -3.713700e+02 -5.159900e+02
+7 20064     -4.540900e+02 -4.110000e+02
+10 20064     -5.418300e+02 -4.028600e+02
+7 20065     3.691899e+02 -4.107800e+02
+12 20065     5.763700e+02 -5.191000e+02
+7 20066     4.960022e+00 -4.116300e+02
+15 20066     3.971997e+01 -5.693900e+02
+7 20067     1.288000e+01 -4.150200e+02
+15 20067     4.917999e+01 -5.751400e+02
+7 20068     -3.051001e+01 -4.154900e+02
+15 20068     -9.400024e+00 -5.688500e+02
+7 20069     5.144900e+02 -4.160500e+02
+10 20069     5.612900e+02 -5.376300e+02
+7 20070     5.144900e+02 -4.160500e+02
+10 20070     5.612900e+02 -5.376300e+02
+7 20071     -5.160100e+02 -4.167800e+02
+15 20071     -6.272200e+02 -5.006200e+02
+7 20072     3.581000e+01 -4.171300e+02
+15 20072     7.901001e+01 -5.821000e+02
+7 20073     -4.640500e+02 -4.173800e+02
+10 20073     -5.529300e+02 -4.093199e+02
+15 20073     -5.623600e+02 -5.086200e+02
+7 20074     -2.224200e+02 -4.189700e+02
+15 20074     -2.579700e+02 -5.446500e+02
+7 20075     1.604399e+02 -4.213100e+02
+10 20075     1.398700e+02 -4.908199e+02
+7 20076     -7.101001e+01 -4.217200e+02
+15 20076     -6.309003e+01 -5.713500e+02
+7 20077     3.524301e+02 -4.228400e+02
+10 20077     3.631200e+02 -5.205800e+02
+7 20078     1.709800e+02 -4.237400e+02
+10 20078     1.521400e+02 -4.948700e+02
+7 20079     1.400800e+02 -4.242400e+02
+10 20079     1.155500e+02 -4.914500e+02
+7 20080     -3.003300e+02 -4.322200e+02
+10 20080     -3.774100e+02 -4.448101e+02
+7 20081     2.612800e+02 -4.323900e+02
+10 20081     2.540300e+02 -5.183000e+02
+7 20082     3.614600e+02 -4.350601e+02
+10 20082     3.713600e+02 -5.368700e+02
+7 20083     -3.060800e+02 -4.380300e+02
+15 20083     -3.684800e+02 -5.580601e+02
+7 20084     3.398800e+02 -4.400601e+02
+10 20084     3.450200e+02 -5.392800e+02
+7 20085     -4.688800e+02 -4.414900e+02
+10 20085     -5.635200e+02 -4.366000e+02
+15 20085     -5.737100e+02 -5.401300e+02
+7 20086     -3.710300e+02 -4.446000e+02
+15 20086     -4.516800e+02 -5.572100e+02
+7 20087     2.601400e+02 -4.462100e+02
+10 20087     2.500800e+02 -5.347300e+02
+7 20088     -2.330300e+02 -4.494200e+02
+10 20088     -3.065200e+02 -4.727900e+02
+7 20089     3.159200e+02 -4.511100e+02
+12 20089     5.228400e+02 -5.721200e+02
+7 20090     2.845699e+02 -4.558700e+02
+12 20090     4.868900e+02 -5.812400e+02
+7 20091     4.733600e+02 -4.589800e+02
+10 20091     5.018000e+02 -5.835800e+02
+7 20092     1.593101e+02 -4.600800e+02
+10 20092     1.308300e+02 -5.362800e+02
+7 20093     8.806000e+01 -4.604000e+02
+10 20093     4.963000e+01 -5.269900e+02
+7 20094     2.772100e+02 -4.635400e+02
+10 20094     2.665400e+02 -5.579200e+02
+7 20095     -3.263900e+02 -4.705400e+02
+10 20095     -4.124100e+02 -4.859100e+02
+7 20096     1.792400e+02 -4.711899e+02
+10 20096     1.515700e+02 -5.525699e+02
+7 20097     1.792400e+02 -4.711899e+02
+10 20097     1.515700e+02 -5.525699e+02
+12 20097     3.629900e+02 -6.128300e+02
+7 20098     -6.117500e+02 -4.714700e+02
+10 20098     -7.248100e+02 -4.560601e+02
+15 20098     -7.565300e+02 -5.602800e+02
+7 20099     2.679900e+02 -4.720100e+02
+10 20099     2.541200e+02 -5.668500e+02
+7 20100     4.957100e+02 -4.724301e+02
+10 20100     5.270100e+02 -6.039500e+02
+7 20101     3.186600e+02 -4.729500e+02
+10 20101     3.134700e+02 -5.758600e+02
+7 20102     -2.110100e+02 -4.733600e+02
+10 20102     -2.865300e+02 -5.030900e+02
+7 20103     5.218700e+02 -4.749900e+02
+10 20103     5.588199e+02 -6.114399e+02
+7 20104     -2.761100e+02 -4.758000e+02
+10 20104     -3.582000e+02 -4.976600e+02
+7 20105     2.552900e+02 -4.810100e+02
+12 20105     4.575000e+02 -6.148500e+02
+7 20106     -1.922400e+02 -4.818300e+02
+10 20106     -2.675600e+02 -5.154500e+02
+7 20107     2.287600e+02 -4.846400e+02
+10 20107     2.062100e+02 -5.754500e+02
+7 20108     -1.565002e+01 -4.853600e+02
+10 20108     -7.215002e+01 -5.424301e+02
+7 20109     -2.477600e+02 -4.894800e+02
+10 20109     -3.299400e+02 -5.171400e+02
+7 20110     8.900146e-01 -4.959700e+02
+10 20110     -5.569000e+01 -5.569200e+02
+7 20111     2.411700e+02 -5.020800e+02
+10 20111     2.173400e+02 -5.985300e+02
+7 20112     9.689001e+01 -5.039900e+02
+10 20112     5.137000e+01 -5.795300e+02
+7 20113     2.521600e+02 -5.170200e+02
+10 20113     2.273400e+02 -6.184800e+02
+7 20114     -1.837700e+02 -5.242600e+02
+10 20114     -2.662800e+02 -5.655800e+02
+7 20115     9.047998e+01 -5.269700e+02
+10 20115     3.946997e+01 -6.059200e+02
+7 20116     9.478003e+01 -5.353000e+02
+10 20116     4.279999e+01 -6.164600e+02
+7 20117     -1.860800e+02 -5.548500e+02
+10 20117     -2.734800e+02 -6.005601e+02
+7 20118     -2.311500e+02 -5.679301e+02
+10 20118     -3.250900e+02 -6.099800e+02
+7 20119     -1.658200e+02 5.874400e+02
+13 20119     2.409200e+02 1.840600e+02
+14 20119     3.757600e+02 -2.205700e+02
+7 20120     -2.069700e+02 5.759600e+02
+11 20120     1.653600e+02 -2.583100e+02
+7 20121     4.767200e+02 5.741500e+02
+9 20121     3.001400e+02 4.329800e+02
+12 20121     5.316801e+02 6.029000e+02
+7 20122     -2.964001e+01 5.725500e+02
+11 20122     3.319301e+02 -2.694900e+02
+7 20123     4.595400e+02 5.718800e+02
+9 20123     2.848101e+02 4.281800e+02
+7 20124     5.250000e+00 5.604000e+02
+12 20124     -4.860999e+01 5.052600e+02
+14 20124     5.461500e+02 -2.581100e+02
+7 20125     1.295300e+02 5.544800e+02
+9 20125     -1.170200e+02 2.579500e+02
+7 20126     3.099976e-01 5.406400e+02
+9 20126     -2.166300e+02 2.507600e+02
+14 20126     5.392700e+02 -2.782200e+02
+7 20127     -4.260999e+01 5.336400e+02
+9 20127     -2.507100e+02 2.454600e+02
+7 20128     -2.229500e+02 5.290400e+02
+13 20128     1.896600e+02 1.372200e+02
+7 20129     -3.749300e+02 5.261700e+02
+12 20129     -4.681900e+02 4.576000e+02
+7 20130     -4.396500e+02 5.256900e+02
+11 20130     -4.428998e+01 -2.843000e+02
+12 20130     -5.406700e+02 4.559100e+02
+7 20131     -4.396500e+02 5.256900e+02
+11 20131     -4.428998e+01 -2.843000e+02
+7 20132     -5.390700e+02 5.224000e+02
+11 20132     -1.286100e+02 -2.794000e+02
+7 20133     -1.881700e+02 5.200900e+02
+13 20133     2.169600e+02 1.288800e+02
+14 20133     3.460500e+02 -2.872500e+02
+7 20134     -2.440002e+00 5.132000e+02
+13 20134     3.694500e+02 1.181000e+02
+7 20135     -5.424900e+02 5.003100e+02
+11 20135     -1.344000e+02 -2.962300e+02
+7 20136     -6.585999e+01 4.948800e+02
+9 20136     -2.668800e+02 2.097100e+02
+11 20136     2.944301e+02 -3.355500e+02
+7 20137     -1.017300e+02 4.829800e+02
+11 20137     2.589100e+02 -3.443300e+02
+13 20137     2.841300e+02 9.473001e+01
+7 20138     3.110800e+02 4.710700e+02
+9 20138     1.270300e+02 2.767000e+02
+13 20138     6.772000e+02 6.875000e+01
+7 20139     3.475601e+02 4.644900e+02
+10 20139     5.200900e+02 5.684200e+02
+7 20140     9.450012e+00 4.635100e+02
+11 20140     3.606600e+02 -3.704500e+02
+14 20140     5.511000e+02 -3.629000e+02
+7 20141     -4.827600e+02 4.593800e+02
+11 20141     -8.972998e+01 -3.344100e+02
+12 20141     -5.884400e+02 3.776100e+02
+7 20142     3.418199e+02 4.579700e+02
+10 20142     5.124500e+02 5.610000e+02
+7 20143     -5.713700e+02 4.489300e+02
+11 20143     -1.659800e+02 -3.348600e+02
+7 20144     -5.960200e+02 4.485500e+02
+8 20144     -4.628900e+02 1.192300e+02
+12 20144     -7.178300e+02 3.625200e+02
+7 20145     -2.063100e+02 4.484400e+02
+12 20145     -2.773200e+02 3.706700e+02
+7 20146     -5.922000e+02 4.474500e+02
+11 20146     -1.829500e+02 -3.340100e+02
+12 20146     -7.134000e+02 3.613300e+02
+7 20147     4.668900e+02 4.448600e+02
+8 20147     4.932400e+02 1.882700e+02
+9 20147     3.075200e+02 3.235800e+02
+12 20147     5.326100e+02 4.565500e+02
+7 20148     -2.085400e+02 4.416300e+02
+10 20148     -1.305000e+02 5.894600e+02
+7 20149     3.492000e+02 4.346900e+02
+9 20149     1.686100e+02 2.540900e+02
+7 20150     -4.139800e+02 4.278900e+02
+10 20150     -3.775300e+02 5.817200e+02
+7 20151     -5.712700e+02 4.167700e+02
+10 20151     -5.648400e+02 5.771600e+02
+7 20152     -1.996700e+02 4.068300e+02
+10 20152     -1.226900e+02 5.469600e+02
+13 20152     1.992600e+02 3.439001e+01
+14 20152     3.230900e+02 -4.046400e+02
+7 20153     -1.566300e+02 4.017900e+02
+10 20153     -7.287000e+01 5.376200e+02
+11 20153     1.951700e+02 -4.152800e+02
+13 20153     2.372600e+02 2.790997e+01
+14 20153     3.707800e+02 -4.150100e+02
+7 20154     -5.268200e+02 4.001100e+02
+10 20154     -5.121200e+02 5.548700e+02
+7 20155     -1.989600e+02 3.945300e+02
+10 20155     -1.245800e+02 5.312300e+02
+7 20156     -1.989600e+02 3.945300e+02
+10 20156     -1.245800e+02 5.312300e+02
+7 20157     -3.394300e+02 3.927600e+02
+11 20157     2.903003e+01 -4.040400e+02
+7 20158     -3.069600e+02 3.920600e+02
+13 20158     1.092800e+02 2.704999e+01
+14 20158     2.107500e+02 -4.091400e+02
+7 20159     -1.182000e+02 3.875300e+02
+15 20159     5.273999e+01 5.729600e+02
+7 20160     -5.548400e+02 3.871900e+02
+8 20160     -4.356500e+02 5.923001e+01
+12 20160     -6.720000e+02 2.909300e+02
+7 20161     -1.641400e+02 3.860000e+02
+10 20161     -8.498999e+01 5.181600e+02
+7 20162     1.898000e+02 3.813500e+02
+10 20162     3.319200e+02 4.863300e+02
+7 20163     6.878998e+01 3.775200e+02
+10 20163     1.867200e+02 4.899700e+02
+7 20164     5.607600e+02 3.766300e+02
+8 20164     5.847200e+02 1.488200e+02
+7 20165     1.108800e+02 3.762600e+02
+10 20165     2.366100e+02 4.854000e+02
+7 20166     1.067700e+02 3.697900e+02
+10 20166     2.292900e+02 4.773000e+02
+7 20167     -6.221300e+02 3.679600e+02
+13 20167     -1.388800e+02 2.427002e+01
+7 20168     -6.221300e+02 3.679600e+02
+13 20168     -1.388800e+02 2.427002e+01
+7 20169     -2.955700e+02 3.604300e+02
+10 20169     -2.407300e+02 4.960900e+02
+11 20169     6.340002e+01 -4.381500e+02
+7 20170     -4.457100e+02 3.599400e+02
+15 20170     -3.958500e+02 5.510700e+02
+7 20171     -2.554600e+02 3.597700e+02
+13 20171     1.541600e+02 -3.869995e+00
+14 20171     2.660400e+02 -4.509301e+02
+7 20172     -5.940300e+02 3.586400e+02
+15 20172     -5.984700e+02 5.529500e+02
+7 20173     -2.419500e+02 3.574300e+02
+10 20173     -1.799100e+02 4.880300e+02
+7 20174     1.877700e+02 3.559200e+02
+10 20174     3.240000e+02 4.543300e+02
+7 20175     1.877700e+02 3.559200e+02
+10 20175     3.240000e+02 4.543300e+02
+7 20176     5.403101e+02 3.559900e+02
+10 20176     7.243199e+02 4.049700e+02
+7 20177     -5.899600e+02 3.548000e+02
+10 20177     -5.881700e+02 5.058000e+02
+12 20177     -7.108000e+02 2.502600e+02
+7 20178     -5.821200e+02 3.539100e+02
+8 20178     -4.601700e+02 2.975000e+01
+13 20178     -1.104500e+02 1.078003e+01
+7 20179     6.277400e+02 3.532700e+02
+9 20179     4.647500e+02 2.866900e+02
+10 20179     8.314700e+02 3.915100e+02
+7 20180     -3.175200e+02 3.479300e+02
+14 20180     1.984100e+02 -4.559900e+02
+7 20181     -4.795600e+02 3.439700e+02
+13 20181     -3.257001e+01 -3.869995e+00
+14 20181     3.320001e+01 -4.405900e+02
+7 20182     5.696700e+02 3.429500e+02
+8 20182     5.964399e+02 1.216200e+02
+7 20183     -3.550100e+02 3.411000e+02
+14 20183     1.570500e+02 -4.582000e+02
+7 20184     -5.029800e+02 3.394200e+02
+14 20184     9.539978e+00 -4.420800e+02
+7 20185     -2.974400e+02 3.381800e+02
+15 20185     -1.982100e+02 5.128600e+02
+7 20186     5.957600e+02 3.369600e+02
+10 20186     7.905699e+02 3.751100e+02
+12 20186     6.957000e+02 3.535200e+02
+7 20187     -5.406400e+02 3.355500e+02
+13 20187     -8.116998e+01 -6.780029e+00
+14 20187     -2.721997e+01 -4.411000e+02
+7 20188     -4.242600e+02 3.349900e+02
+13 20188     9.159973e+00 -1.440997e+01
+14 20188     8.435999e+01 -4.561200e+02
+7 20189     3.965500e+02 3.342800e+02
+10 20189     5.517200e+02 3.959400e+02
+12 20189     4.578600e+02 3.176500e+02
+7 20190     -5.934200e+02 3.249000e+02
+13 20190     -1.229900e+02 -1.260999e+01
+7 20191     -5.067100e+02 3.251700e+02
+14 20191     3.260010e+00 -4.565400e+02
+7 20192     -5.067100e+02 3.251700e+02
+11 20192     -1.287600e+02 -4.441500e+02
+14 20192     3.260010e+00 -4.565400e+02
+7 20193     -5.543100e+02 3.226600e+02
+11 20193     -1.703500e+02 -4.406100e+02
+7 20194     2.646200e+02 3.230000e+02
+15 20194     5.774399e+02 4.546200e+02
+7 20195     5.704100e+02 3.217800e+02
+8 20195     5.993000e+02 1.035800e+02
+12 20195     6.678000e+02 3.315800e+02
+7 20196     5.704100e+02 3.217800e+02
+12 20196     6.678000e+02 3.315800e+02
+7 20197     -4.719200e+02 3.179300e+02
+11 20197     -9.952002e+01 -4.547600e+02
+14 20197     3.550000e+01 -4.685000e+02
+7 20198     -5.169200e+02 3.132600e+02
+11 20198     -1.395000e+02 -4.533700e+02
+13 20198     -6.548999e+01 -2.682001e+01
+7 20199     -5.701100e+02 3.125100e+02
+10 20199     -5.655600e+02 4.559200e+02
+11 20199     -1.858900e+02 -4.475600e+02
+13 20199     -1.068700e+02 -2.435999e+01
+7 20200     -1.016400e+02 3.121600e+02
+10 20200     -2.615002e+01 4.205400e+02
+13 20200     2.916700e+02 -5.308002e+01
+14 20200     4.398900e+02 -5.216899e+02
+7 20201     -3.770300e+02 3.113700e+02
+11 20201     -2.009998e+01 -4.737600e+02
+7 20202     -4.610100e+02 3.090500e+02
+15 20202     -4.185600e+02 4.836100e+02
+7 20203     -4.911300e+02 3.071600e+02
+11 20203     -1.175600e+02 -4.618700e+02
+7 20204     -6.449100e+02 3.050300e+02
+10 20204     -6.515500e+02 4.540700e+02
+12 20204     -7.759100e+02 1.875700e+02
+7 20205     -2.206100e+02 3.027500e+02
+10 20205     -1.646200e+02 4.188900e+02
+7 20206     -3.700300e+02 3.016100e+02
+10 20206     -3.353600e+02 4.293500e+02
+7 20207     -4.929600e+02 3.008200e+02
+13 20207     -4.862000e+01 -3.884003e+01
+14 20207     1.117999e+01 -4.840100e+02
+7 20208     2.929399e+02 2.984900e+02
+15 20208     6.125900e+02 4.154300e+02
+7 20209     -5.717600e+02 2.981600e+02
+11 20209     -1.895500e+02 -4.595700e+02
+13 20209     -1.103800e+02 -3.590002e+01
+14 20209     -6.540002e+01 -4.765601e+02
+7 20210     -3.680600e+02 2.980500e+02
+10 20210     -3.336700e+02 4.250600e+02
+7 20211     2.866400e+02 2.980700e+02
+15 20211     6.027500e+02 4.150600e+02
+7 20212     -5.235500e+02 2.968500e+02
+13 20212     -7.322998e+01 -4.013000e+01
+7 20213     -5.204000e+02 2.917900e+02
+11 20213     -1.454600e+02 -4.711700e+02
+7 20214     -5.135200e+02 2.917800e+02
+13 20214     -6.588000e+01 -4.507001e+01
+7 20215     -3.811500e+02 2.919300e+02
+10 20215     -3.488400e+02 4.190500e+02
+13 20215     4.766998e+01 -5.348999e+01
+14 20215     1.309200e+02 -5.086500e+02
+7 20216     -5.693600e+02 2.904700e+02
+13 20216     -1.094300e+02 -4.284998e+01
+7 20217     -7.596002e+01 2.900500e+02
+15 20217     1.146002e+01 3.860500e+02
+7 20218     -4.103300e+02 2.876200e+02
+11 20218     -5.507001e+01 -4.918000e+02
+15 20218     -3.568500e+02 4.487300e+02
+7 20219     -5.800700e+02 2.862600e+02
+10 20219     -5.776900e+02 4.270200e+02
+7 20220     -5.506200e+02 2.814000e+02
+13 20220     -9.645001e+01 -5.159998e+01
+14 20220     -4.877002e+01 -4.970601e+02
+7 20221     -3.930700e+02 2.765600e+02
+10 20221     -3.649500e+02 4.009000e+02
+11 20221     -4.350000e+01 -5.042700e+02
+15 20221     -3.359200e+02 4.319000e+02
+7 20222     2.694700e+02 2.741300e+02
+15 20222     5.716400e+02 3.801400e+02
+7 20223     -2.734300e+02 2.737700e+02
+11 20223     5.983002e+01 -5.253101e+02
+7 20224     -7.391600e+02 2.725300e+02
+11 20224     -3.329600e+02 -4.599000e+02
+7 20225     -7.391600e+02 2.725300e+02
+11 20225     -3.329600e+02 -4.599000e+02
+7 20226     -6.935000e+02 2.685500e+02
+10 20226     -7.115800e+02 4.132900e+02
+7 20227     -4.148100e+02 2.673800e+02
+11 20227     -6.441998e+01 -5.100500e+02
+15 20227     -3.660700e+02 4.198700e+02
+7 20228     -5.736200e+02 2.658700e+02
+11 20228     -1.962200e+02 -4.870500e+02
+7 20229     -3.489900e+02 2.661000e+02
+10 20229     -3.162500e+02 3.844300e+02
+7 20230     2.724000e+02 2.642100e+02
+15 20230     5.735000e+02 3.651500e+02
+7 20231     -9.921002e+01 2.634900e+02
+10 20231     -8.673999e+01 3.219200e+02
+15 20231     -2.675000e+01 3.491800e+02
+7 20232     6.273101e+02 2.637900e+02
+9 20232     4.777300e+02 2.093200e+02
+7 20233     -6.635400e+02 2.624000e+02
+10 20233     -6.751100e+02 4.058100e+02
+7 20234     4.163300e+02 2.601200e+02
+8 20234     4.620500e+02 1.789999e+01
+7 20235     3.598900e+02 2.573600e+02
+10 20235     5.033400e+02 3.092400e+02
+13 20235     7.292600e+02 -1.235700e+02
+15 20235     6.862900e+02 3.418000e+02
+7 20236     6.140000e+02 2.529900e+02
+9 20236     4.685000e+02 1.964000e+02
+12 20236     7.273600e+02 2.586000e+02
+7 20237     -4.512700e+02 2.515300e+02
+11 20237     -9.915002e+01 -5.195699e+02
+13 20237     -1.091998e+01 -8.297998e+01
+7 20238     -5.551000e+02 2.457000e+02
+11 20238     -1.867900e+02 -5.083900e+02
+15 20238     -5.511000e+02 4.016500e+02
+7 20239     2.849700e+02 2.443900e+02
+15 20239     5.857900e+02 3.343300e+02
+7 20240     -6.828100e+02 2.402200e+02
+10 20240     -6.994600e+02 3.806600e+02
+14 20240     -1.847200e+02 -5.223101e+02
+7 20241     1.405500e+02 2.390200e+02
+13 20241     5.672000e+02 -1.275200e+02
+7 20242     1.780100e+02 2.359900e+02
+15 20242     3.516801e+02 2.899400e+02
+7 20243     -7.531000e+01 2.303000e+02
+10 20243     -6.770001e+01 2.769200e+02
+7 20244     -5.355300e+02 2.272900e+02
+10 20244     -5.322200e+02 3.543400e+02
+15 20244     -5.291500e+02 3.742000e+02
+7 20245     -5.928700e+02 2.248300e+02
+11 20245     -2.243300e+02 -5.222200e+02
+7 20246     -5.928700e+02 2.248300e+02
+11 20246     -2.243300e+02 -5.222200e+02
+7 20247     1.883900e+02 2.243800e+02
+13 20247     6.070699e+02 -1.424700e+02
+7 20248     1.883900e+02 2.243800e+02
+15 20248     3.659600e+02 2.742900e+02
+7 20249     -5.939100e+02 2.200900e+02
+13 20249     -1.325600e+02 -9.985999e+01
+14 20249     -9.772998e+01 -5.572100e+02
+7 20250     -3.971600e+02 2.142400e+02
+15 20250     -3.535600e+02 3.441700e+02
+7 20251     7.029800e+02 2.132500e+02
+9 20251     5.531500e+02 1.865000e+02
+7 20252     -1.489001e+01 2.127300e+02
+15 20252     7.023999e+01 2.669800e+02
+7 20253     7.023999e+01 2.115800e+02
+13 20253     5.097200e+02 -1.473500e+02
+7 20254     5.572200e+02 2.108400e+02
+10 20254     7.306100e+02 2.287400e+02
+7 20255     6.671002e+01 2.090800e+02
+10 20255     8.978998e+01 2.387300e+02
+7 20256     -3.701400e+02 2.077000e+02
+10 20256     -3.493500e+02 3.147200e+02
+15 20256     -3.191900e+02 3.322100e+02
+7 20257     2.022500e+02 2.035200e+02
+13 20257     6.191700e+02 -1.615100e+02
+7 20258     3.752000e+02 2.013400e+02
+10 20258     5.173300e+02 2.413500e+02
+13 20258     7.435100e+02 -1.756400e+02
+15 20258     7.038199e+02 2.610800e+02
+7 20259     3.185000e+02 2.005400e+02
+15 20259     6.242800e+02 2.663300e+02
+7 20260     7.696002e+01 1.953500e+02
+10 20260     1.005400e+02 2.215700e+02
+12 20260     1.600300e+02 1.819000e+02
+7 20261     3.289600e+02 1.917600e+02
+15 20261     6.375000e+02 2.522200e+02
+7 20262     1.116998e+01 1.881400e+02
+8 20262     2.266800e+02 4.114999e+01
+12 20262     8.416998e+01 1.687500e+02
+7 20263     5.825100e+02 1.854500e+02
+9 20263     4.515900e+02 1.270600e+02
+7 20264     6.305300e+02 1.849400e+02
+10 20264     8.178500e+02 1.862800e+02
+7 20265     -3.218000e+02 1.842100e+02
+10 20265     -2.988300e+02 2.821300e+02
+15 20265     -2.608000e+02 2.952300e+02
+7 20266     4.627600e+02 1.837500e+02
+10 20266     6.171500e+02 2.083700e+02
+7 20267     -7.379900e+02 1.816900e+02
+14 20267     -2.505300e+02 -5.768800e+02
+7 20268     4.611000e+02 1.808000e+02
+10 20268     6.160601e+02 2.042700e+02
+7 20269     4.513900e+02 1.763600e+02
+8 20269     5.025900e+02 -5.237000e+01
+7 20270     4.513900e+02 1.763600e+02
+8 20270     5.025900e+02 -5.237000e+01
+7 20271     -4.514900e+02 1.757700e+02
+10 20271     -4.463300e+02 2.837200e+02
+7 20272     -1.457500e+02 1.724200e+02
+10 20272     -1.506600e+02 2.188400e+02
+13 20272     3.165200e+02 -1.679800e+02
+7 20273     3.535200e+02 1.716900e+02
+15 20273     6.685500e+02 2.203100e+02
+7 20274     5.920400e+02 1.686200e+02
+9 20274     4.622900e+02 1.142800e+02
+10 20274     7.697400e+02 1.726000e+02
+12 20274     7.105500e+02 1.573200e+02
+7 20275     4.221100e+02 1.667300e+02
+10 20275     5.685500e+02 1.938500e+02
+7 20276     5.352200e+02 1.584600e+02
+9 20276     4.112600e+02 8.742001e+01
+10 20276     7.002600e+02 1.682700e+02
+12 20276     6.422600e+02 1.335500e+02
+7 20277     6.992300e+02 1.531100e+02
+9 20277     5.604301e+02 1.330400e+02
+7 20278     -3.811800e+02 1.501300e+02
+13 20278     5.438000e+01 -1.753500e+02
+7 20279     -3.811800e+02 1.501300e+02
+15 20279     -3.446200e+02 2.523100e+02
+7 20280     1.871400e+02 1.456900e+02
+12 20280     2.885000e+02 1.289400e+02
+7 20281     4.678000e+02 1.346600e+02
+15 20281     8.275800e+02 1.535500e+02
+7 20282     -3.911200e+02 1.264900e+02
+15 20282     -3.621000e+02 2.204300e+02
+7 20283     5.320200e+02 1.204800e+02
+9 20283     4.142100e+02 5.090002e+01
+10 20283     6.936500e+02 1.236600e+02
+7 20284     1.853998e+01 1.187100e+02
+10 20284     2.352002e+01 1.364000e+02
+13 20284     4.654000e+02 -2.232700e+02
+15 20284     1.009800e+02 1.334700e+02
+7 20285     4.741400e+02 1.139800e+02
+10 20285     6.256700e+02 1.240300e+02
+15 20285     8.357700e+02 1.224800e+02
+7 20286     3.139000e+02 1.135900e+02
+10 20286     3.914500e+02 1.169100e+02
+15 20286     5.450100e+02 1.135400e+02
+7 20287     -3.833002e+01 1.109200e+02
+10 20287     -4.207001e+01 1.335000e+02
+15 20287     2.392999e+01 1.306900e+02
+7 20288     -5.317000e+02 1.104700e+02
+15 20288     -5.456200e+02 2.111100e+02
+7 20289     -3.279000e+02 1.089600e+02
+13 20289     1.029400e+02 -2.141700e+02
+7 20290     -1.908900e+02 1.080600e+02
+10 20290     -2.024200e+02 1.516800e+02
+15 20290     -1.590500e+02 1.480900e+02
+7 20291     -1.814600e+02 1.062800e+02
+10 20291     -1.931900e+02 1.485200e+02
+15 20291     -1.490600e+02 1.441000e+02
+7 20292     -4.452700e+02 1.017900e+02
+15 20292     -4.368200e+02 1.913200e+02
+7 20293     -4.038000e+02 9.976999e+01
+13 20293     3.637000e+01 -2.164400e+02
+7 20294     -4.568700e+02 9.937000e+01
+15 20294     -4.519700e+02 1.891900e+02
+7 20295     -6.368500e+02 9.798999e+01
+13 20295     -1.649700e+02 -1.994800e+02
+7 20296     4.638101e+02 9.107001e+01
+10 20296     6.067400e+02 9.616998e+01
+7 20297     4.482000e+02 8.507001e+01
+15 20297     7.869000e+02 8.214001e+01
+7 20298     4.482000e+02 8.507001e+01
+15 20298     7.869000e+02 8.214001e+01
+7 20299     -1.792500e+02 8.367999e+01
+10 20299     -1.932800e+02 1.219600e+02
+15 20299     -1.490900e+02 1.130500e+02
+7 20300     1.729999e+01 8.353000e+01
+13 20300     4.632300e+02 -2.539500e+02
+15 20300     9.609003e+01 8.520001e+01
+7 20301     8.790997e+01 7.677002e+01
+10 20301     1.002000e+02 8.250000e+01
+13 20301     5.242200e+02 -2.635300e+02
+7 20302     -1.782600e+02 7.521002e+01
+10 20302     -1.944500e+02 1.112600e+02
+7 20303     -7.047600e+02 7.437000e+01
+15 20303     -7.702400e+02 1.782200e+02
+7 20304     -7.047600e+02 7.437000e+01
+15 20304     -7.702400e+02 1.782200e+02
+7 20305     -1.450200e+02 6.045001e+01
+15 20305     -1.110500e+02 7.694000e+01
+7 20306     5.025200e+02 5.796002e+01
+15 20306     8.628500e+02 3.572998e+01
+7 20307     -5.185500e+02 4.872998e+01
+10 20307     -5.399700e+02 1.372400e+02
+7 20308     -5.185500e+02 4.872998e+01
+15 20308     -5.401400e+02 1.252600e+02
+7 20309     -4.767100e+02 4.533002e+01
+15 20309     -4.878800e+02 1.163900e+02
+7 20310     -3.901200e+02 4.421002e+01
+13 20310     5.069000e+01 -2.649000e+02
+15 20310     -3.762900e+02 1.064000e+02
+7 20311     -5.278003e+01 4.292999e+01
+10 20311     -6.248999e+01 5.713000e+01
+7 20312     6.229399e+02 4.240002e+01
+9 20312     5.124301e+02 7.059998e+00
+7 20313     7.241300e+02 4.114001e+01
+9 20313     6.036200e+02 3.937000e+01
+7 20314     -4.301200e+02 3.875000e+01
+13 20314     1.576001e+01 -2.664700e+02
+7 20315     -5.089100e+02 3.845001e+01
+10 20315     -5.308200e+02 1.251800e+02
+15 20315     -5.299000e+02 1.102700e+02
+7 20316     -4.619600e+02 3.856000e+01
+15 20316     -4.704700e+02 1.057400e+02
+7 20317     -2.084000e+02 3.714001e+01
+10 20317     -2.302700e+02 7.110999e+01
+15 20317     -1.914300e+02 5.377002e+01
+7 20318     2.748300e+02 3.651001e+01
+10 20318     3.263400e+02 2.425000e+01
+7 20319     -4.476100e+02 3.545001e+01
+9 20319     -4.683200e+02 -1.500800e+02
+13 20319     7.800293e-01 -2.679600e+02
+15 20319     -4.529000e+02 1.000300e+02
+7 20320     -1.140600e+02 3.164001e+01
+15 20320     -7.663000e+01 3.288000e+01
+7 20321     -2.328500e+02 2.723999e+01
+10 20321     -2.585200e+02 6.244000e+01
+7 20322     -1.437600e+02 1.996002e+01
+15 20322     -1.183900e+02 1.969000e+01
+7 20323     -1.809700e+02 1.917999e+01
+15 20323     -1.621400e+02 2.488000e+01
+7 20324     -3.677600e+02 1.758002e+01
+9 20324     -3.735200e+02 -1.502500e+02
+10 20324     -3.767400e+02 8.663000e+01
+13 20324     7.128003e+01 -2.897200e+02
+7 20325     -3.660100e+02 1.467999e+01
+8 20325     -2.020500e+02 -2.305300e+02
+13 20325     7.328998e+01 -2.920900e+02
+7 20326     -1.770600e+02 1.234003e+01
+15 20326     -1.580700e+02 1.546997e+01
+7 20327     -2.240002e+01 1.084998e+01
+10 20327     -3.115997e+01 1.840002e+01
+13 20327     4.237400e+02 -3.142000e+02
+7 20328     5.083400e+02 8.580017e+00
+15 20328     8.578500e+02 -3.885999e+01
+7 20329     5.354700e+02 7.849976e+00
+10 20329     6.780100e+02 -1.546997e+01
+12 20329     6.671300e+02 -3.565002e+01
+7 20330     -3.839800e+02 2.969971e+00
+15 20330     -3.768800e+02 4.960999e+01
+7 20331     -6.113200e+02 2.600098e-01
+10 20331     -6.500800e+02 8.984998e+01
+7 20332     -4.052700e+02 6.300049e-01
+8 20332     -2.382900e+02 -2.437700e+02
+13 20332     3.896002e+01 -3.007700e+02
+7 20333     -3.732300e+02 -2.960022e+00
+10 20333     -3.869200e+02 6.192999e+01
+15 20333     -3.638600e+02 4.038000e+01
+7 20334     -6.041900e+02 -4.429993e+00
+13 20334     -1.350300e+02 -2.893800e+02
+15 20334     -6.582100e+02 6.144000e+01
+7 20335     -1.731000e+01 -4.260010e+00
+10 20335     -2.869000e+01 -4.799805e-01
+7 20336     -1.981200e+02 -5.349976e+00
+10 20336     -2.253700e+02 2.040002e+01
+13 20336     2.645900e+02 -3.165300e+02
+15 20336     -1.866700e+02 -5.859985e+00
+7 20337     -6.002000e+02 -7.799988e+00
+10 20337     -6.384300e+02 7.933002e+01
+7 20338     -2.013100e+02 -8.510010e+00
+10 20338     -2.308100e+02 1.642999e+01
+12 20338     -1.555600e+02 -8.740997e+01
+15 20338     -1.923800e+02 -1.020001e+01
+7 20339     -4.157800e+02 -1.123999e+01
+8 20339     -2.457100e+02 -2.532800e+02
+13 20339     2.985999e+01 -3.106800e+02
+7 20340     -2.115300e+02 -1.191998e+01
+13 20340     2.530500e+02 -3.209100e+02
+7 20341     9.510010e+00 -1.247998e+01
+10 20341     -4.099731e-01 -1.357001e+01
+13 20341     4.540000e+02 -3.362700e+02
+15 20341     7.542999e+01 -4.290002e+01
+7 20342     -4.140000e+02 -2.046997e+01
+8 20342     -2.416400e+02 -2.605300e+02
+13 20342     3.172998e+01 -3.188900e+02
+7 20343     -4.064000e+02 -2.716998e+01
+9 20343     -3.956800e+02 -1.892300e+02
+7 20344     -5.354000e+02 -3.121002e+01
+15 20344     -5.765200e+02 1.840002e+01
+7 20345     -5.354000e+02 -3.121002e+01
+15 20345     -5.765200e+02 1.840002e+01
+7 20346     -5.319700e+02 -3.265002e+01
+15 20346     -5.724900e+02 1.589001e+01
+7 20347     -2.010100e+02 -3.265002e+01
+8 20347     5.371997e+01 -1.696500e+02
+10 20347     -2.345000e+02 -1.303998e+01
+13 20347     2.643800e+02 -3.390900e+02
+15 20347     -1.971500e+02 -4.362000e+01
+7 20348     1.527100e+02 -3.240997e+01
+8 20348     3.773000e+02 -1.446200e+02
+13 20348     5.797700e+02 -3.656700e+02
+15 20348     2.731600e+02 -8.382001e+01
+7 20349     -4.433400e+02 -3.638000e+01
+13 20349     6.419983e+00 -3.309200e+02
+7 20350     -4.954400e+02 -3.717999e+01
+8 20350     -3.211600e+02 -2.786800e+02
+12 20350     -5.515900e+02 -1.857700e+02
+15 20350     -5.266300e+02 5.679993e+00
+7 20351     -1.344900e+02 -3.942999e+01
+13 20351     3.222100e+02 -3.505500e+02
+7 20352     -4.285100e+02 -4.122998e+01
+9 20352     -4.133300e+02 -2.037600e+02
+7 20353     -5.856700e+02 -4.413000e+01
+13 20353     -1.172600e+02 -3.247300e+02
+15 20353     -6.418500e+02 5.789978e+00
+7 20354     -5.654100e+02 -4.581000e+01
+8 20354     -3.921900e+02 -2.904900e+02
+10 20354     -6.059900e+02 3.120001e+01
+15 20354     -6.171000e+02 1.200012e+00
+7 20355     -4.270900e+02 -4.576001e+01
+13 20355     2.088000e+01 -3.398400e+02
+7 20356     3.158500e+02 -5.778003e+01
+10 20356     3.804000e+02 -8.140002e+01
+15 20356     5.345400e+02 -1.226200e+02
+7 20357     -6.363800e+02 -7.217999e+01
+10 20357     -6.883900e+02 7.510010e+00
+7 20358     5.285601e+02 -7.272998e+01
+15 20358     8.663700e+02 -1.635200e+02
+7 20359     6.409700e+02 -7.222998e+01
+12 20359     8.081000e+02 -1.112300e+02
+7 20360     -5.784000e+02 -7.394000e+01
+13 20360     -1.108700e+02 -3.511400e+02
+7 20361     -2.103003e+01 -8.038000e+01
+12 20361     7.866998e+01 -1.485100e+02
+13 20361     4.261801e+02 -3.940200e+02
+7 20362     -5.198200e+02 -8.334998e+01
+10 20362     -5.622000e+02 -1.653998e+01
+7 20363     4.368101e+02 -8.328998e+01
+15 20363     7.244500e+02 -1.667500e+02
+7 20364     -5.059000e+02 -8.510999e+01
+10 20364     -5.465600e+02 -2.104999e+01
+15 20364     -5.495800e+02 -5.826001e+01
+7 20365     -5.171900e+02 -8.819000e+01
+15 20365     -5.641100e+02 -6.106000e+01
+7 20366     -5.049400e+02 -8.909998e+01
+13 20366     -4.609998e+01 -3.705600e+02
+7 20367     -1.473000e+02 -9.019000e+01
+10 20367     -1.801400e+02 -8.244000e+01
+15 20367     -1.329100e+02 -1.255100e+02
+7 20368     -9.125000e+01 -9.871002e+01
+10 20368     -1.247700e+02 -1.027000e+02
+7 20369     -4.099800e+02 -1.043200e+02
+12 20369     -4.342200e+02 -2.549400e+02
+7 20370     5.186300e+02 -1.138400e+02
+15 20370     8.391600e+02 -2.239700e+02
+7 20371     5.186300e+02 -1.138400e+02
+15 20371     8.391600e+02 -2.239700e+02
+7 20372     4.313000e+02 -1.180400e+02
+15 20372     7.068500e+02 -2.172800e+02
+7 20373     -3.890400e+02 -1.306200e+02
+15 20373     -4.101300e+02 -1.323600e+02
+7 20374     -5.969500e+02 -1.312300e+02
+8 20374     -4.072800e+02 -3.623900e+02
+10 20374     -6.534200e+02 -6.544000e+01
+7 20375     -1.971700e+02 -1.313600e+02
+12 20375     -1.453600e+02 -2.416400e+02
+13 20375     2.523900e+02 -4.282800e+02
+7 20376     2.854399e+02 -1.314400e+02
+10 20376     3.289100e+02 -1.680200e+02
+7 20377     -5.824100e+02 -1.319800e+02
+8 20377     -3.921000e+02 -3.617100e+02
+10 20377     -6.375100e+02 -6.721002e+01
+7 20378     9.917999e+01 -1.349500e+02
+9 20378     2.296000e+02 -8.894000e+01
+7 20379     9.917999e+01 -1.349500e+02
+15 20379     1.879301e+02 -2.160600e+02
+7 20380     -5.881800e+02 -1.393200e+02
+10 20380     -6.454700e+02 -7.540997e+01
+13 20380     -1.180000e+02 -4.066800e+02
+7 20381     -5.828700e+02 -1.398000e+02
+10 20381     -6.388900e+02 -7.634998e+01
+13 20381     -1.123900e+02 -4.071300e+02
+15 20381     -6.558700e+02 -1.232000e+02
+7 20382     -5.710600e+02 -1.401800e+02
+10 20382     -6.262800e+02 -7.835999e+01
+7 20383     5.232100e+02 -1.429700e+02
+15 20383     8.391100e+02 -2.673200e+02
+7 20384     4.218900e+02 -1.500100e+02
+15 20384     6.849600e+02 -2.626100e+02
+7 20385     -4.424100e+02 -1.515200e+02
+13 20385     1.090997e+01 -4.306600e+02
+7 20386     -1.993500e+02 -1.584000e+02
+10 20386     -2.335600e+02 -1.473200e+02
+15 20386     -1.928300e+02 -2.024900e+02
+7 20387     -5.192400e+02 -1.635300e+02
+10 20387     -5.727600e+02 -1.104800e+02
+15 20387     -5.811300e+02 -1.623400e+02
+7 20388     -6.015400e+02 -1.822700e+02
+10 20388     -6.663400e+02 -1.241100e+02
+15 20388     -6.876600e+02 -1.782200e+02
+7 20389     -6.015400e+02 -1.822700e+02
+10 20389     -6.663400e+02 -1.241100e+02
+13 20389     -1.289000e+02 -4.423900e+02
+15 20389     -6.876600e+02 -1.782200e+02
+7 20390     -5.893200e+02 -1.829900e+02
+15 20390     -6.727500e+02 -1.799400e+02
+7 20391     -9.309998e+00 -1.984500e+02
+13 20391     4.215000e+02 -5.053800e+02
+7 20392     3.990601e+02 -2.026500e+02
+15 20392     6.376300e+02 -3.356300e+02
+7 20393     -5.276400e+02 -2.079400e+02
+10 20393     -5.888500e+02 -1.619500e+02
+15 20393     -6.000900e+02 -2.214100e+02
+7 20394     -4.777200e+02 -2.201300e+02
+10 20394     -5.371200e+02 -1.810600e+02
+7 20395     -5.032700e+02 -2.272200e+02
+15 20395     -5.735000e+02 -2.491100e+02
+7 20396     3.562100e+02 -2.365100e+02
+15 20396     5.640900e+02 -3.794800e+02
+7 20397     3.562100e+02 -2.365100e+02
+10 20397     4.039200e+02 -2.964200e+02
+7 20398     -4.876200e+02 -2.394900e+02
+15 20398     -5.562500e+02 -2.675200e+02
+7 20399     3.452100e+02 -2.496100e+02
+10 20399     3.879301e+02 -3.112600e+02
+7 20400     -2.471000e+02 -2.694100e+02
+13 20400     1.929200e+02 -5.516700e+02
+15 20400     -2.621800e+02 -3.403900e+02
+7 20401     -2.095700e+02 -2.727800e+02
+10 20401     -2.536000e+02 -2.729900e+02
+7 20402     -3.926700e+02 -2.767700e+02
+13 20402     5.701001e+01 -5.463900e+02
+7 20403     -3.719900e+02 -2.812100e+02
+13 20403     7.662000e+01 -5.513500e+02
+7 20404     -3.602800e+02 -2.835600e+02
+15 20404     -4.053000e+02 -3.419300e+02
+7 20405     -6.030100e+02 -2.945800e+02
+15 20405     -7.110900e+02 -3.275100e+02
+7 20406     -4.208500e+02 -2.945300e+02
+13 20406     3.264001e+01 -5.589399e+02
+7 20407     -4.940002e+00 -3.190600e+02
+10 20407     -3.308002e+01 -3.506700e+02
+7 20408     -4.017200e+02 -3.202400e+02
+15 20408     -4.644800e+02 -3.865500e+02
+7 20409     -3.958900e+02 -3.210100e+02
+15 20409     -4.569000e+02 -3.884800e+02
+7 20410     -2.631800e+02 -3.342800e+02
+15 20410     -2.917400e+02 -4.241000e+02
+7 20411     -4.409800e+02 -3.402400e+02
+15 20411     -5.180200e+02 -4.088300e+02
+7 20412     -5.656000e+02 -3.600800e+02
+15 20412     -6.774600e+02 -4.190100e+02
+7 20413     -3.352700e+02 -3.626900e+02
+15 20413     -3.893700e+02 -4.520900e+02
+7 20414     4.206801e+02 -3.630200e+02
+10 20414     4.567100e+02 -4.579000e+02
+7 20415     -3.599900e+02 -3.690100e+02
+15 20415     -4.218300e+02 -4.576801e+02
+7 20416     -4.763400e+02 -3.776900e+02
+15 20416     -5.705300e+02 -4.539500e+02
+7 20417     2.421300e+02 -3.779700e+02
+10 20417     2.423600e+02 -4.505100e+02
+7 20418     5.351899e+02 -3.837900e+02
+10 20418     5.931300e+02 -5.010601e+02
+7 20419     -3.476100e+02 -3.906600e+02
+15 20419     -4.112800e+02 -4.883800e+02
+7 20420     -4.834700e+02 -3.914000e+02
+10 20420     -5.699900e+02 -3.765800e+02
+15 20420     -5.817500e+02 -4.715800e+02
+7 20421     -4.041500e+02 -3.944900e+02
+15 20421     -4.831300e+02 -4.861700e+02
+7 20422     3.572900e+02 -4.012000e+02
+10 20422     3.731000e+02 -4.948199e+02
+12 20422     5.595300e+02 -5.096801e+02
+7 20423     -2.030200e+02 -4.016800e+02
+9 20423     -5.349976e+00 -4.244900e+02
+7 20424     2.066200e+02 -4.017100e+02
+10 20424     1.960500e+02 -4.737700e+02
+7 20425     -3.404900e+02 -4.081800e+02
+15 20425     -4.063700e+02 -5.129200e+02
+7 20426     -3.404900e+02 -4.081800e+02
+15 20426     -4.063700e+02 -5.129200e+02
+7 20427     -5.477002e+01 -4.092000e+02
+15 20427     -3.921997e+01 -5.565300e+02
+7 20428     -2.196200e+02 -4.114600e+02
+10 20428     -2.857900e+02 -4.310400e+02
+7 20429     9.840027e+00 -4.117900e+02
+15 20429     4.588000e+01 -5.703400e+02
+7 20430     -1.778003e+01 -4.126600e+02
+15 20430     8.659973e+00 -5.671000e+02
+7 20431     1.547700e+02 -4.174200e+02
+10 20431     1.337300e+02 -4.852900e+02
+7 20432     1.767700e+02 -4.193600e+02
+10 20432     1.591000e+02 -4.906899e+02
+7 20433     -2.241998e+01 -4.207100e+02
+15 20433     8.599854e-01 -5.775601e+02
+7 20434     3.477800e+02 -4.203800e+02
+10 20434     3.580000e+02 -5.159399e+02
+12 20434     5.537100e+02 -5.326801e+02
+7 20435     2.510699e+02 -4.254500e+02
+10 20435     2.430900e+02 -5.087000e+02
+7 20436     -4.569000e+02 -4.267300e+02
+15 20436     -5.559300e+02 -5.220800e+02
+7 20437     2.600900e+02 -4.263600e+02
+10 20437     2.534700e+02 -5.107300e+02
+12 20437     4.494000e+02 -5.490200e+02
+7 20438     2.859301e+02 -4.272600e+02
+10 20438     2.839500e+02 -5.151400e+02
+7 20439     3.552000e+02 -4.332200e+02
+9 20439     5.184700e+02 -3.314600e+02
+7 20440     1.632900e+02 -4.397500e+02
+10 20440     1.392300e+02 -5.131100e+02
+7 20441     1.632900e+02 -4.397500e+02
+10 20441     1.392300e+02 -5.131100e+02
+7 20442     -2.822900e+02 -4.463700e+02
+15 20442     -3.400600e+02 -5.727400e+02
+7 20443     3.818600e+02 -4.484100e+02
+12 20443     6.015601e+02 -5.613700e+02
+7 20444     3.984100e+02 -4.484700e+02
+12 20444     6.212200e+02 -5.594200e+02
+7 20445     4.495900e+02 -4.623101e+02
+10 20445     4.723000e+02 -5.834800e+02
+7 20446     2.869301e+02 -4.718199e+02
+10 20446     2.765100e+02 -5.693199e+02
+7 20447     -1.953003e+01 -4.817000e+02
+10 20447     -7.584003e+01 -5.375500e+02
+7 20448     -1.953003e+01 -4.817000e+02
+10 20448     -7.584003e+01 -5.375500e+02
+7 20449     1.945200e+02 -4.861801e+02
+10 20449     1.663200e+02 -5.727700e+02
+7 20450     3.071997e+01 -4.864200e+02
+10 20450     -2.009998e+01 -5.498300e+02
+7 20451     -7.409973e+00 -4.933101e+02
+10 20451     -6.465997e+01 -5.526500e+02
+7 20452     1.823101e+02 -4.999600e+02
+9 20452     4.066100e+02 -4.105900e+02
+10 20452     1.493900e+02 -5.871400e+02
+7 20453     -2.239800e+02 -5.309200e+02
+10 20453     -3.108700e+02 -5.679100e+02
+7 20454     -2.150600e+02 -5.396400e+02
+10 20454     -3.028100e+02 -5.787300e+02
+7 20455     -1.308000e+02 -5.410900e+02
+10 20455     -2.101200e+02 -5.923300e+02
+7 20456     -1.867800e+02 -5.465400e+02
+10 20456     -2.731100e+02 -5.911300e+02
+7 20457     -1.795800e+02 -5.621700e+02
+10 20457     -2.674100e+02 -6.102900e+02
+7 20458     -1.601000e+02 5.842000e+02
+13 20458     2.447600e+02 1.811200e+02
+7 20459     1.857300e+02 5.793600e+02
+11 20459     5.484301e+02 -2.692300e+02
+13 20459     5.343800e+02 1.706900e+02
+14 20459     7.397600e+02 -2.476600e+02
+7 20460     8.900024e+00 5.485000e+02
+11 20460     3.691000e+02 -2.906000e+02
+7 20461     1.450000e+01 5.179800e+02
+8 20461     2.633002e+01 1.386300e+02
+14 20461     5.531000e+02 -3.033400e+02
+7 20462     -1.841500e+02 5.148900e+02
+13 20462     2.195900e+02 1.245000e+02
+14 20462     3.492400e+02 -2.926900e+02
+7 20463     3.389800e+02 5.075100e+02
+9 20463     1.498800e+02 3.166600e+02
+7 20464     3.415400e+02 4.991700e+02
+9 20464     1.537800e+02 3.087400e+02
+10 20464     5.162500e+02 6.134900e+02
+11 20464     6.605900e+02 -3.761500e+02
+12 20464     3.652400e+02 4.883500e+02
+7 20465     -3.080300e+02 4.652300e+02
+13 20465     1.157900e+02 8.776001e+01
+7 20466     -1.758300e+02 4.544200e+02
+10 20466     -8.990997e+01 6.026700e+02
+11 20466     1.867900e+02 -3.637400e+02
+7 20467     -5.598700e+02 4.410900e+02
+10 20467     -5.506900e+02 6.032100e+02
+7 20468     -5.506600e+02 4.349100e+02
+10 20468     -5.399100e+02 5.958500e+02
+7 20469     5.669800e+02 4.310900e+02
+9 20469     3.995800e+02 3.364300e+02
+10 20469     7.642400e+02 4.941000e+02
+7 20470     -1.584800e+02 4.220500e+02
+11 20470     1.986100e+02 -3.948700e+02
+7 20471     -2.299400e+02 4.213300e+02
+10 20471     -1.566900e+02 5.663200e+02
+11 20471     1.331000e+02 -3.890500e+02
+13 20471     1.743300e+02 4.803998e+01
+14 20471     2.921600e+02 -3.859800e+02
+7 20472     3.397200e+02 4.195100e+02
+10 20472     5.062800e+02 5.135600e+02
+7 20473     -5.969900e+02 4.163200e+02
+13 20473     -1.135500e+02 6.241998e+01
+7 20474     -1.404900e+02 4.126800e+02
+10 20474     -5.271997e+01 5.500300e+02
+7 20475     -4.972900e+02 4.043800e+02
+10 20475     -4.783600e+02 5.576700e+02
+14 20475     2.852002e+01 -3.751200e+02
+7 20476     -2.140100e+02 4.045400e+02
+13 20476     1.872200e+02 3.278003e+01
+14 20476     3.080100e+02 -4.057000e+02
+7 20477     -5.648800e+02 3.993000e+02
+10 20477     -5.571300e+02 5.551800e+02
+7 20478     3.675500e+02 3.992600e+02
+8 20478     4.057100e+02 1.311000e+02
+9 20478     2.191400e+02 2.575700e+02
+13 20478     7.413000e+02 2.890015e+00
+7 20479     -5.224400e+02 3.948700e+02
+10 20479     -5.073000e+02 5.483800e+02
+7 20480     -6.769800e+02 3.903500e+02
+11 20480     -2.619400e+02 -3.715300e+02
+7 20481     -1.937600e+02 3.898600e+02
+10 20481     -1.188900e+02 5.252700e+02
+7 20482     -1.447700e+02 3.902300e+02
+10 20482     -6.247998e+01 5.218000e+02
+11 20482     2.038500e+02 -4.278200e+02
+7 20483     -8.020200e+02 3.884400e+02
+11 20483     -3.601300e+02 -3.592200e+02
+13 20483     -2.691000e+02 5.059003e+01
+14 20483     -2.525600e+02 -3.575300e+02
+7 20484     2.581400e+02 3.829700e+02
+15 20484     5.738600e+02 5.406900e+02
+7 20485     -5.233200e+02 3.767300e+02
+10 20485     -5.089600e+02 5.271500e+02
+7 20486     -1.912200e+02 3.760700e+02
+10 20486     -1.181800e+02 5.072300e+02
+11 20486     1.589300e+02 -4.359600e+02
+7 20487     -5.796000e+02 3.693000e+02
+10 20487     -5.752300e+02 5.212200e+02
+7 20488     -1.607001e+01 3.630800e+02
+15 20488     1.877000e+02 5.309100e+02
+7 20489     -1.607001e+01 3.630800e+02
+10 20489     8.409998e+01 4.784100e+02
+11 20489     3.175900e+02 -4.688400e+02
+7 20490     -3.691400e+02 3.626800e+02
+13 20490     5.644000e+01 5.349976e+00
+7 20491     -6.169900e+02 3.544400e+02
+10 20491     -6.197600e+02 5.058000e+02
+7 20492     5.885601e+02 3.526500e+02
+10 20492     7.819399e+02 3.948600e+02
+7 20493     -4.137500e+02 3.492900e+02
+10 20493     -3.802100e+02 4.894400e+02
+15 20493     -3.528100e+02 5.347600e+02
+7 20494     -2.546500e+02 3.454400e+02
+9 20494     -3.972000e+02 8.776999e+01
+7 20495     -5.130300e+02 3.397600e+02
+11 20495     -1.320900e+02 -4.318100e+02
+7 20496     -5.666600e+02 3.298800e+02
+10 20496     -5.627100e+02 4.762200e+02
+13 20496     -1.024000e+02 -1.026001e+01
+7 20497     3.697400e+02 3.284300e+02
+9 20497     2.288900e+02 1.936800e+02
+10 20497     5.204301e+02 3.924400e+02
+13 20497     7.415800e+02 -6.026001e+01
+15 20497     7.053300e+02 4.406800e+02
+7 20498     -2.587500e+02 3.247800e+02
+10 20498     -2.050500e+02 4.484000e+02
+7 20499     -4.912100e+02 3.226000e+02
+13 20499     -4.475000e+01 -2.115002e+01
+7 20500     1.851000e+02 3.222000e+02
+10 20500     3.147700e+02 4.112600e+02
+7 20501     1.417400e+02 3.184300e+02
+10 20501     2.617500e+02 4.099600e+02
+7 20502     -4.939300e+02 3.179700e+02
+13 20502     -4.728003e+01 -2.434998e+01
+14 20502     1.378998e+01 -4.655400e+02
+7 20503     2.072000e+02 3.161200e+02
+10 20503     3.403300e+02 4.018700e+02
+7 20504     3.032500e+02 3.152700e+02
+15 20504     6.305699e+02 4.392500e+02
+7 20505     -5.372000e+02 3.109900e+02
+13 20505     -8.169000e+01 -2.741998e+01
+14 20505     -2.921002e+01 -4.673500e+02
+7 20506     3.086400e+02 3.110800e+02
+15 20506     6.374700e+02 4.331100e+02
+7 20507     -6.693000e+02 3.065700e+02
+10 20507     -6.805800e+02 4.561400e+02
+15 20507     -6.982600e+02 4.887300e+02
+7 20508     -3.801300e+02 3.052300e+02
+15 20508     -3.133700e+02 4.715000e+02
+7 20509     -3.801300e+02 3.052300e+02
+10 20509     -3.462300e+02 4.345700e+02
+15 20509     -3.133700e+02 4.715000e+02
+7 20510     -3.667500e+02 3.048900e+02
+10 20510     -3.315100e+02 4.332400e+02
+13 20510     5.934998e+01 -4.329999e+01
+15 20510     -2.964100e+02 4.699600e+02
+7 20511     -1.209900e+02 3.024200e+02
+10 20511     -4.984998e+01 4.100400e+02
+11 20511     2.052600e+02 -5.174500e+02
+13 20511     2.753600e+02 -6.031000e+01
+14 20511     4.192700e+02 -5.304600e+02
+7 20512     1.729000e+02 2.996300e+02
+10 20512     2.943500e+02 3.833000e+02
+15 20512     4.384800e+02 4.248800e+02
+7 20513     1.729000e+02 2.996300e+02
+10 20513     2.943500e+02 3.833000e+02
+7 20514     -5.182000e+02 2.973100e+02
+11 20514     -1.430400e+02 -4.671300e+02
+14 20514     -1.406000e+01 -4.845400e+02
+7 20515     -5.813000e+02 2.936200e+02
+11 20515     -1.982400e+02 -4.623700e+02
+13 20515     -1.184300e+02 -3.904999e+01
+14 20515     -7.545001e+01 -4.798000e+02
+7 20516     -5.887800e+02 2.899600e+02
+11 20516     -2.053800e+02 -4.646200e+02
+7 20517     -5.536300e+02 2.844700e+02
+11 20517     -1.759200e+02 -4.737700e+02
+13 20517     -9.760999e+01 -4.846002e+01
+14 20517     -5.070001e+01 -4.933199e+02
+7 20518     -5.536300e+02 2.844700e+02
+11 20518     -1.759200e+02 -4.737700e+02
+14 20518     -5.070001e+01 -4.933199e+02
+7 20519     -5.486100e+02 2.775000e+02
+14 20519     -4.803998e+01 -5.014700e+02
+7 20520     -5.550100e+02 2.748100e+02
+11 20520     -1.785700e+02 -4.815000e+02
+13 20520     -1.004000e+02 -5.644000e+01
+14 20520     -5.432001e+01 -5.032600e+02
+7 20521     -7.124300e+02 2.605300e+02
+10 20521     -7.353600e+02 4.042700e+02
+7 20522     -6.119500e+02 2.535200e+02
+13 20522     -1.484000e+02 -7.054999e+01
+7 20523     -6.554200e+02 2.495500e+02
+10 20523     -6.665000e+02 3.898500e+02
+7 20524     2.899500e+02 2.440000e+02
+15 20524     5.927100e+02 3.333200e+02
+7 20525     -3.432000e+02 2.379800e+02
+8 20525     -2.326000e+02 -6.683002e+01
+13 20525     8.328003e+01 -1.028100e+02
+14 20525     1.740100e+02 -5.751100e+02
+15 20525     -2.786200e+02 3.726600e+02
+7 20526     -6.070400e+02 2.286000e+02
+11 20526     -2.347400e+02 -5.163000e+02
+14 20526     -1.113800e+02 -5.456801e+02
+7 20527     -2.734400e+02 2.281700e+02
+8 20527     -1.648000e+02 -7.022998e+01
+9 20527     -3.672000e+02 7.630005e+00
+7 20528     -3.586400e+02 2.186200e+02
+10 20528     -3.348700e+02 3.271000e+02
+7 20529     4.598700e+02 2.116000e+02
+9 20529     3.323400e+02 1.128800e+02
+10 20529     6.160100e+02 2.416600e+02
+7 20530     -4.614800e+02 2.109800e+02
+13 20530     -1.838000e+01 -1.170200e+02
+7 20531     -4.614800e+02 2.109800e+02
+13 20531     -1.838000e+01 -1.170200e+02
+7 20532     2.574000e+02 2.105100e+02
+10 20532     3.455100e+02 2.434700e+02
+15 20532     4.920200e+02 2.632700e+02
+7 20533     -2.831600e+02 2.095800e+02
+8 20533     -1.684500e+02 -8.321997e+01
+9 20533     -3.677400e+02 -5.559998e+00
+13 20533     1.372500e+02 -1.304300e+02
+7 20534     -4.934900e+02 2.082500e+02
+10 20534     -4.887400e+02 3.268700e+02
+7 20535     -4.955900e+02 2.044300e+02
+10 20535     -4.915800e+02 3.219000e+02
+15 20535     -4.825500e+02 3.387400e+02
+7 20536     -6.088300e+02 2.023300e+02
+13 20536     -1.441300e+02 -1.142000e+02
+7 20537     3.489301e+02 2.025800e+02
+10 20537     4.871400e+02 2.455200e+02
+13 20537     7.161000e+02 -1.735800e+02
+15 20537     6.686000e+02 2.645200e+02
+7 20538     1.632100e+02 1.976400e+02
+10 20538     2.070800e+02 2.199500e+02
+7 20539     -3.731000e+02 1.907400e+02
+10 20539     -3.563200e+02 2.941700e+02
+13 20539     5.972998e+01 -1.401400e+02
+7 20540     -3.677100e+02 1.879100e+02
+8 20540     -2.446200e+02 -1.028800e+02
+15 20540     -3.205500e+02 3.041300e+02
+7 20541     -6.568700e+02 1.878600e+02
+13 20541     -1.849000e+02 -1.227300e+02
+7 20542     -1.232500e+02 1.851000e+02
+10 20542     -1.256200e+02 2.311800e+02
+15 20542     -7.207001e+01 2.412800e+02
+7 20543     -5.285000e+02 1.816800e+02
+13 20543     -7.500000e+01 -1.369600e+02
+7 20544     -3.588700e+02 1.815100e+02
+13 20544     7.198999e+01 -1.494600e+02
+15 20544     -3.098300e+02 2.949100e+02
+7 20545     -1.858900e+02 1.788200e+02
+13 20545     2.760200e+02 -1.609800e+02
+7 20546     -5.359000e+02 1.669600e+02
+15 20546     -5.408400e+02 2.908400e+02
+7 20547     -4.273200e+02 1.628200e+02
+13 20547     1.314001e+01 -1.608700e+02
+7 20548     3.459200e+02 1.602200e+02
+15 20548     6.539000e+02 2.039800e+02
+7 20549     -4.493400e+02 1.601400e+02
+10 20549     -4.459100e+02 2.635900e+02
+7 20550     4.168101e+02 1.581500e+02
+10 20550     5.613000e+02 1.852400e+02
+15 20550     7.581500e+02 1.942500e+02
+7 20551     -5.518400e+02 1.571900e+02
+10 20551     -5.618200e+02 2.701100e+02
+15 20551     -5.629800e+02 2.775500e+02
+7 20552     3.980900e+02 1.561200e+02
+10 20552     5.389200e+02 1.839500e+02
+7 20553     -4.198100e+02 1.524100e+02
+10 20553     -4.134300e+02 2.523700e+02
+7 20554     -3.513700e+02 1.492900e+02
+15 20554     -3.058200e+02 2.487100e+02
+7 20555     2.050300e+02 1.490700e+02
+10 20555     2.525900e+02 1.604800e+02
+13 20555     6.236700e+02 -2.088300e+02
+7 20556     -4.147500e+02 1.415400e+02
+10 20556     -4.110100e+02 2.384400e+02
+15 20556     -3.901700e+02 2.426200e+02
+7 20557     2.940500e+02 1.384200e+02
+10 20557     3.722700e+02 1.499200e+02
+15 20557     5.222000e+02 1.526900e+02
+7 20558     -3.887000e+02 1.376200e+02
+10 20558     -3.815200e+02 2.323600e+02
+15 20558     -3.567000e+02 2.359700e+02
+7 20559     4.386200e+02 1.277300e+02
+15 20559     7.842700e+02 1.469800e+02
+7 20560     4.672600e+02 1.222500e+02
+10 20560     6.175900e+02 1.352700e+02
+12 20560     5.629700e+02 7.997998e+01
+15 20560     8.257700e+02 1.362400e+02
+7 20561     -7.485100e+02 1.189100e+02
+13 20561     -2.606400e+02 -1.729400e+02
+7 20562     4.803300e+02 1.147900e+02
+10 20562     6.311400e+02 1.254800e+02
+7 20563     4.771500e+02 1.040300e+02
+15 20563     8.368400e+02 1.079300e+02
+7 20564     -6.184000e+02 9.964001e+01
+10 20564     -6.433600e+02 2.085500e+02
+7 20565     4.886700e+02 9.801001e+01
+15 20565     8.527900e+02 9.770001e+01
+7 20566     7.370400e+02 9.710001e+01
+9 20566     6.035601e+02 9.403000e+01
+7 20567     -2.199200e+02 9.581000e+01
+10 20567     -2.356300e+02 1.409600e+02
+13 20567     2.438700e+02 -2.291600e+02
+15 20567     -1.973100e+02 1.348600e+02
+7 20568     -3.577200e+02 7.881000e+01
+8 20568     -2.091500e+02 -1.818500e+02
+13 20568     7.790997e+01 -2.377700e+02
+7 20569     1.162100e+02 7.828003e+01
+10 20569     1.345100e+02 8.208002e+01
+13 20569     5.490100e+02 -2.650500e+02
+15 20569     2.333400e+02 6.960999e+01
+7 20570     -2.595100e+02 7.634003e+01
+10 20570     -2.786500e+02 1.238000e+02
+15 20570     -2.467700e+02 1.146100e+02
+7 20571     -3.995400e+02 7.575000e+01
+15 20571     -3.831100e+02 1.509000e+02
+7 20572     -4.353400e+02 7.028998e+01
+10 20572     -4.447400e+02 1.556300e+02
+15 20572     -4.302300e+02 1.473000e+02
+7 20573     -5.240900e+02 6.553003e+01
+10 20573     -5.441300e+02 1.587000e+02
+15 20573     -5.445800e+02 1.494500e+02
+7 20574     -2.375700e+02 6.257001e+01
+10 20574     -2.567700e+02 1.057500e+02
+15 20574     -2.214300e+02 9.338000e+01
+7 20575     4.362300e+02 5.309998e+01
+10 20575     5.637300e+02 5.185999e+01
+7 20576     -3.538900e+02 4.990997e+01
+13 20576     8.228003e+01 -2.630700e+02
+7 20577     4.917100e+02 4.922998e+01
+10 20577     6.325300e+02 4.138000e+01
+15 20577     8.439800e+02 2.376001e+01
+7 20578     -5.108600e+02 4.856000e+01
+15 20578     -5.309500e+02 1.238900e+02
+7 20579     2.841200e+02 4.722998e+01
+9 20579     3.130300e+02 6.060999e+01
+7 20580     -2.221100e+02 3.266998e+01
+10 20580     -2.458700e+02 6.762000e+01
+15 20580     -2.089700e+02 4.910999e+01
+7 20581     5.065100e+02 2.926001e+01
+12 20581     6.288800e+02 -1.514001e+01
+7 20582     -2.218200e+02 2.737000e+01
+10 20582     -2.457500e+02 6.204999e+01
+15 20582     -2.094000e+02 4.258002e+01
+7 20583     7.081300e+02 2.719000e+01
+9 20583     5.924500e+02 2.176001e+01
+7 20584     -3.700700e+02 2.384003e+01
+10 20584     -3.789400e+02 9.353998e+01
+15 20584     -3.551900e+02 7.646997e+01
+7 20585     -4.754800e+02 1.746997e+01
+15 20585     -4.916400e+02 7.791998e+01
+7 20586     -2.257000e+02 1.620001e+01
+12 20586     -1.902100e+02 -6.338000e+01
+15 20586     -2.174500e+02 2.623999e+01
+7 20587     -4.061800e+02 1.140002e+01
+10 20587     -4.208500e+02 8.289001e+01
+7 20588     4.333600e+02 1.127002e+01
+15 20588     7.447700e+02 -2.690002e+01
+7 20589     -4.423999e+01 9.369995e+00
+10 20589     -5.703998e+01 1.856000e+01
+7 20590     -1.907000e+02 -2.719971e+00
+10 20590     -2.175400e+02 2.189001e+01
+15 20590     -1.769600e+02 -3.640015e+00
+7 20591     -1.766900e+02 -7.260010e+00
+15 20591     -1.597900e+02 -1.096997e+01
+7 20592     -1.951600e+02 -9.099976e+00
+10 20592     -2.235800e+02 1.517999e+01
+13 20592     2.673400e+02 -3.199500e+02
+15 20592     -1.841900e+02 -1.150000e+01
+7 20593     -4.717300e+02 -1.584003e+01
+13 20593     -1.794000e+01 -3.098400e+02
+7 20594     -2.056400e+02 -1.682001e+01
+10 20594     -2.368000e+02 7.030029e+00
+15 20594     -1.994500e+02 -2.148999e+01
+7 20595     5.550900e+02 -2.034003e+01
+9 20595     4.827100e+02 -4.503003e+01
+7 20596     -4.643200e+02 -2.166998e+01
+10 20596     -4.906500e+02 4.941998e+01
+15 20596     -4.841000e+02 2.385999e+01
+7 20597     -1.811400e+02 -2.415997e+01
+13 20597     2.806600e+02 -3.333600e+02
+15 20597     -1.700100e+02 -3.453998e+01
+7 20598     -4.495600e+02 -2.440002e+01
+8 20598     -2.762300e+02 -2.655500e+02
+13 20598     3.800049e-01 -3.194500e+02
+7 20599     -2.176900e+02 -3.240002e+01
+12 20599     -1.713700e+02 -1.157400e+02
+7 20600     2.237100e+02 -3.565997e+01
+15 20600     3.724200e+02 -9.606000e+01
+7 20601     -1.208000e+02 -3.650000e+01
+10 20601     -1.460000e+02 -2.557001e+01
+15 20601     -9.465002e+01 -5.756000e+01
+7 20602     -1.063300e+02 -3.759003e+01
+10 20602     -1.291600e+02 -2.828003e+01
+15 20602     -7.509998e+01 -6.147998e+01
+7 20603     -4.005000e+02 -3.842999e+01
+8 20603     -2.239300e+02 -2.732600e+02
+13 20603     4.426001e+01 -3.354900e+02
+7 20604     -4.754700e+02 -4.101001e+01
+8 20604     -2.998500e+02 -2.813600e+02
+13 20604     -2.184998e+01 -3.314600e+02
+15 20604     -5.021000e+02 -1.150024e+00
+7 20605     -4.754700e+02 -4.101001e+01
+13 20605     -2.184998e+01 -3.314600e+02
+7 20606     -5.116998e+01 -4.672998e+01
+15 20606     -6.059998e+00 -8.062000e+01
+7 20607     -8.254999e+01 -5.071002e+01
+15 20607     -4.725000e+01 -8.289001e+01
+7 20608     -5.206800e+02 -6.288000e+01
+9 20608     -5.076300e+02 -2.356200e+02
+7 20609     -4.492000e+02 -6.406000e+01
+15 20609     -4.736800e+02 -3.538000e+01
+7 20610     -4.847400e+02 -7.316998e+01
+13 20610     -2.878003e+01 -3.586600e+02
+7 20611     -4.720000e+02 -7.610999e+01
+13 20611     -1.722998e+01 -3.623400e+02
+15 20611     -5.051700e+02 -4.909003e+01
+7 20612     -4.819000e+02 -8.088000e+01
+15 20612     -5.182600e+02 -5.496997e+01
+7 20613     -4.951900e+02 -9.165002e+01
+8 20613     -3.095600e+02 -3.224200e+02
+12 20613     -5.448000e+02 -2.482300e+02
+15 20613     -5.382200e+02 -6.829999e+01
+7 20614     -5.277002e+01 -9.210999e+01
+13 20614     3.982100e+02 -4.016500e+02
+7 20615     -3.028998e+01 -9.821997e+01
+13 20615     4.181200e+02 -4.091800e+02
+7 20616     6.082001e+01 -1.108700e+02
+10 20616     4.528998e+01 -1.338100e+02
+7 20617     5.275400e+02 -1.451200e+02
+15 20617     8.449800e+02 -2.720200e+02
+7 20618     5.087600e+02 -1.629100e+02
+15 20618     8.118000e+02 -2.944100e+02
+7 20619     -1.520000e+02 -1.714300e+02
+13 20619     2.888900e+02 -4.693300e+02
+7 20620     -4.794700e+02 -1.828600e+02
+15 20620     -5.338600e+02 -1.923000e+02
+7 20621     -5.808400e+02 -1.933900e+02
+15 20621     -6.639200e+02 -1.952700e+02
+7 20622     -5.842100e+02 -1.960400e+02
+8 20622     -3.803600e+02 -4.151100e+02
+15 20622     -6.688200e+02 -1.984000e+02
+7 20623     -4.142100e+02 -2.094200e+02
+9 20623     -3.218900e+02 -3.251500e+02
+13 20623     3.794000e+01 -4.834500e+02
+7 20624     4.111000e+02 -2.102200e+02
+15 20624     6.520900e+02 -3.494300e+02
+7 20625     3.654000e+02 -2.216100e+02
+10 20625     4.175800e+02 -2.790200e+02
+15 20625     5.811000e+02 -3.591300e+02
+7 20626     -7.314500e+02 -2.460000e+02
+13 20626     -2.395900e+02 -4.849100e+02
+15 20626     -8.605000e+02 -2.483400e+02
+7 20627     -4.977700e+02 -2.461600e+02
+15 20627     -5.705000e+02 -2.760500e+02
+7 20628     -5.128900e+02 -2.556800e+02
+15 20628     -5.906500e+02 -2.866900e+02
+7 20629     -4.488700e+02 -2.675800e+02
+13 20629     7.700012e+00 -5.319399e+02
+7 20630     -4.288700e+02 -2.785200e+02
+9 20630     -3.067600e+02 -3.827300e+02
+13 20630     2.533002e+01 -5.439399e+02
+7 20631     -4.353400e+02 -2.828500e+02
+9 20631     -3.120900e+02 -3.873100e+02
+10 20631     -4.997100e+02 -2.574300e+02
+13 20631     1.951001e+01 -5.470601e+02
+7 20632     -3.781900e+02 -2.869400e+02
+13 20632     7.071002e+01 -5.563000e+02
+7 20633     -4.245300e+02 -2.982700e+02
+13 20633     3.010999e+01 -5.620000e+02
+7 20634     -4.245300e+02 -2.982700e+02
+9 20634     -2.924600e+02 -3.968700e+02
+13 20634     3.010999e+01 -5.620000e+02
+7 20635     -1.215997e+01 -2.995000e+02
+9 20635     1.483900e+02 -2.905300e+02
+7 20636     8.895001e+01 -3.043800e+02
+15 20636     1.684200e+02 -4.364399e+02
+7 20637     -3.284003e+01 -3.048200e+02
+15 20637     6.070007e+00 -4.187300e+02
+7 20638     -2.689600e+02 -3.320400e+02
+15 20638     -2.987700e+02 -4.204500e+02
+7 20639     5.618900e+02 -3.412000e+02
+10 20639     6.356200e+02 -4.533600e+02
+7 20640     -2.697900e+02 -3.480300e+02
+15 20640     -3.033500e+02 -4.419700e+02
+7 20641     -4.695800e+02 -3.557300e+02
+10 20641     -5.493700e+02 -3.381400e+02
+15 20641     -5.572000e+02 -4.259600e+02
+7 20642     2.373700e+02 -3.586900e+02
+10 20642     2.409500e+02 -4.267700e+02
+7 20643     -5.441200e+02 -3.596600e+02
+15 20643     -6.508600e+02 -4.212500e+02
+7 20644     -2.104700e+02 -3.610900e+02
+15 20644     -2.305000e+02 -4.675400e+02
+7 20645     -4.218600e+02 -3.616800e+02
+15 20645     -4.981700e+02 -4.399000e+02
+7 20646     -2.388500e+02 -3.615800e+02
+15 20646     -2.666000e+02 -4.647100e+02
+7 20647     -2.474600e+02 -3.722500e+02
+15 20647     -2.808600e+02 -4.774301e+02
+7 20648     2.282900e+02 -3.740300e+02
+10 20648     2.278600e+02 -4.437300e+02
+7 20649     2.385400e+02 -3.805800e+02
+10 20649     2.372200e+02 -4.533800e+02
+7 20650     2.782600e+02 -3.839900e+02
+9 20650     4.297900e+02 -3.134900e+02
+10 20650     2.834800e+02 -4.625400e+02
+7 20651     -2.029100e+02 -3.844600e+02
+10 20651     -2.629000e+02 -4.014000e+02
+7 20652     -3.476800e+02 -3.968600e+02
+15 20652     -4.123000e+02 -4.965800e+02
+7 20653     2.403500e+02 -3.982600e+02
+10 20653     2.360000e+02 -4.747600e+02
+7 20654     3.898300e+02 -3.992900e+02
+12 20654     5.983600e+02 -5.033199e+02
+7 20655     -3.109003e+01 -4.074400e+02
+15 20655     -7.849976e+00 -5.576300e+02
+7 20656     -3.765700e+02 -4.106200e+02
+15 20656     -4.516100e+02 -5.111801e+02
+7 20657     -4.135999e+01 -4.102600e+02
+15 20657     -2.191998e+01 -5.598199e+02
+7 20658     -3.444000e+01 -4.111900e+02
+15 20658     -1.276001e+01 -5.622000e+02
+7 20659     -2.863000e+01 -4.117400e+02
+15 20659     -4.869995e+00 -5.640699e+02
+7 20660     -2.863000e+01 -4.117400e+02
+15 20660     -4.869995e+00 -5.640699e+02
+7 20661     1.692400e+02 -4.207600e+02
+10 20661     1.497200e+02 -4.909900e+02
+7 20662     1.751400e+02 -4.256700e+02
+10 20662     1.558100e+02 -4.978199e+02
+7 20663     2.954900e+02 -4.338600e+02
+10 20663     2.934100e+02 -5.248199e+02
+12 20663     4.935200e+02 -5.545200e+02
+7 20664     -6.264600e+02 -4.418199e+02
+10 20664     -7.357800e+02 -4.204301e+02
+15 20664     -7.685900e+02 -5.195699e+02
+7 20665     -5.140400e+02 -4.440699e+02
+15 20665     -6.312800e+02 -5.373300e+02
+7 20666     -4.059003e+01 -4.490400e+02
+9 20666     1.782800e+02 -4.232000e+02
+7 20667     2.173400e+02 -4.588900e+02
+10 20667     1.986600e+02 -5.437400e+02
+7 20668     1.840300e+02 -4.678500e+02
+9 20668     3.912000e+02 -3.887200e+02
+7 20669     -4.991800e+02 -4.707300e+02
+15 20669     -6.181600e+02 -5.761500e+02
+7 20670     2.816300e+02 -4.710900e+02
+10 20670     2.697700e+02 -5.677700e+02
+7 20671     3.123500e+02 -4.721500e+02
+12 20671     5.249301e+02 -5.970300e+02
+7 20672     2.270800e+02 -4.753500e+02
+9 20672     4.331600e+02 -3.845900e+02
+7 20673     1.103000e+02 -4.804900e+02
+9 20673     3.326500e+02 -4.130600e+02
+7 20674     1.909399e+02 -4.877700e+02
+10 20674     1.616500e+02 -5.740601e+02
+7 20675     9.831000e+01 -4.899800e+02
+9 20675     3.269100e+02 -4.224700e+02
+7 20676     2.966200e+02 -4.929500e+02
+9 20676     5.005400e+02 -3.820200e+02
+7 20677     4.943300e+02 -5.167700e+02
+9 20677     6.703900e+02 -3.608600e+02
+7 20678     -2.047200e+02 -5.483600e+02
+10 20678     -2.924700e+02 -5.907200e+02
+7 20679     -1.459700e+02 -5.482300e+02
+10 20679     -2.277400e+02 -5.984100e+02
+7 20680     -1.181400e+02 -5.669100e+02
+9 20680     1.634100e+02 -5.305601e+02
+7 20681     1.487900e+02 5.556900e+02
+11 20681     5.094301e+02 -2.907700e+02
+7 20682     -6.406000e+01 4.814100e+02
+11 20682     2.956600e+02 -3.473700e+02
+7 20683     -3.324700e+02 4.797800e+02
+13 20683     9.851001e+01 1.014600e+02
+7 20684     -6.321002e+01 4.741100e+02
+11 20684     2.957200e+02 -3.542200e+02
+7 20685     3.156600e+02 4.729100e+02
+10 20685     4.830300e+02 5.820500e+02
+12 20685     3.372800e+02 4.523500e+02
+7 20686     3.340500e+02 4.735400e+02
+10 20686     5.045100e+02 5.803200e+02
+7 20687     -2.379700e+02 4.676500e+02
+9 20687     -4.028700e+02 1.980600e+02
+7 20688     -5.453300e+02 4.275200e+02
+10 20688     -5.332300e+02 5.865500e+02
+7 20689     5.623101e+02 4.269100e+02
+9 20689     3.951700e+02 3.314800e+02
+10 20689     7.569399e+02 4.887400e+02
+7 20690     -3.713400e+02 3.927600e+02
+8 20690     -2.820700e+02 5.023999e+01
+7 20691     3.018900e+02 3.779700e+02
+15 20691     6.334700e+02 5.289900e+02
+7 20692     -3.793000e+02 3.706000e+02
+13 20692     4.928003e+01 1.281000e+01
+7 20693     -3.793000e+02 3.706000e+02
+13 20693     4.928003e+01 1.281000e+01
+7 20694     -1.988700e+02 3.686800e+02
+10 20694     -1.283000e+02 4.996200e+02
+7 20695     -5.119800e+02 3.677900e+02
+10 20695     -4.953000e+02 5.161800e+02
+7 20696     1.833800e+02 3.660100e+02
+10 20696     3.213000e+02 4.667500e+02
+7 20697     -2.051100e+02 3.644900e+02
+10 20697     -1.363600e+02 4.939200e+02
+15 20697     -7.106000e+01 5.454600e+02
+7 20698     3.059003e+01 3.651100e+02
+10 20698     1.391100e+02 4.773800e+02
+15 20698     2.532300e+02 5.308400e+02
+7 20699     -6.204700e+02 3.617200e+02
+8 20699     -4.913700e+02 3.954001e+01
+11 20699     -2.198100e+02 -4.004700e+02
+7 20700     -5.150100e+02 3.570600e+02
+11 20700     -1.317700e+02 -4.167600e+02
+7 20701     -1.026500e+02 3.571100e+02
+11 20701     2.344700e+02 -4.646800e+02
+15 20701     6.698999e+01 5.273400e+02
+7 20702     2.500000e+01 3.544300e+02
+10 20702     1.297000e+02 4.640000e+02
+7 20703     -2.954300e+02 3.531000e+02
+11 20703     6.158002e+01 -4.451000e+02
+14 20703     2.228500e+02 -4.528800e+02
+7 20704     -5.089300e+02 3.415400e+02
+13 20704     -5.559003e+01 -4.619995e+00
+14 20704     4.820007e+00 -4.402900e+02
+7 20705     -4.742400e+02 3.376400e+02
+11 20705     -9.871997e+01 -4.374100e+02
+7 20706     -4.921900e+02 3.368700e+02
+11 20706     -1.143900e+02 -4.358100e+02
+7 20707     5.760100e+02 3.374100e+02
+9 20707     4.217700e+02 2.590900e+02
+7 20708     -6.720300e+02 3.361000e+02
+10 20708     -6.839300e+02 4.901100e+02
+7 20709     -5.098400e+02 3.303400e+02
+11 20709     -1.306500e+02 -4.398300e+02
+7 20710     1.372400e+02 3.262200e+02
+10 20710     2.579200e+02 4.197100e+02
+7 20711     1.372400e+02 3.262200e+02
+10 20711     2.579200e+02 4.197100e+02
+7 20712     -3.747400e+02 3.234700e+02
+15 20712     -3.028700e+02 4.974200e+02
+7 20713     -6.601200e+02 3.201100e+02
+10 20713     -6.683300e+02 4.709700e+02
+12 20713     -7.936800e+02 2.059500e+02
+15 20713     -6.847400e+02 5.068800e+02
+7 20714     -3.704500e+02 3.187600e+02
+15 20714     -2.988700e+02 4.905900e+02
+7 20715     -4.304200e+02 3.159200e+02
+15 20715     -3.777100e+02 4.908600e+02
+7 20716     -4.304200e+02 3.159200e+02
+15 20716     -3.777100e+02 4.908600e+02
+7 20717     -5.635100e+02 3.083900e+02
+11 20717     -1.805800e+02 -4.517400e+02
+13 20717     -1.023200e+02 -2.796002e+01
+7 20718     2.941801e+02 2.931800e+02
+15 20718     6.129399e+02 4.074000e+02
+7 20719     -5.781400e+02 2.645500e+02
+11 20719     -2.009200e+02 -4.875500e+02
+13 20719     -1.201500e+02 -6.335999e+01
+14 20719     -7.945001e+01 -5.109000e+02
+7 20720     -4.486900e+02 2.613200e+02
+11 20720     -9.515002e+01 -5.108500e+02
+7 20721     -5.215800e+02 2.565600e+02
+13 20721     -7.088000e+01 -7.415002e+01
+14 20721     -1.883002e+01 -5.279399e+02
+7 20722     1.735699e+02 2.484400e+02
+13 20722     5.928500e+02 -1.218900e+02
+7 20723     3.971300e+02 2.473900e+02
+8 20723     4.441000e+02 1.980011e+00
+10 20723     5.459900e+02 2.925700e+02
+13 20723     7.669000e+02 -1.336500e+02
+7 20724     -2.300500e+02 2.452200e+02
+9 20724     -3.290900e+02 2.508002e+01
+7 20725     2.766200e+02 2.412400e+02
+15 20725     5.728400e+02 3.306900e+02
+7 20726     3.550800e+02 2.334300e+02
+15 20726     6.787000e+02 3.078000e+02
+7 20727     3.640601e+02 2.280200e+02
+10 20727     5.056000e+02 2.738700e+02
+13 20727     7.327500e+02 -1.508200e+02
+15 20727     6.898700e+02 2.993500e+02
+7 20728     3.774500e+02 2.285100e+02
+10 20728     5.195400e+02 2.741700e+02
+15 20728     7.067600e+02 3.002400e+02
+7 20729     2.007600e+02 2.217300e+02
+13 20729     6.165200e+02 -1.460100e+02
+7 20730     -2.702300e+02 2.129300e+02
+8 20730     -1.567100e+02 -8.031000e+01
+13 20730     1.483199e+02 -1.284800e+02
+7 20731     -6.115800e+02 2.071000e+02
+13 20731     -1.471900e+02 -1.092100e+02
+14 20731     -1.169500e+02 -5.685900e+02
+7 20732     3.379399e+02 2.014800e+02
+10 20732     4.743600e+02 2.461900e+02
+15 20732     6.526600e+02 2.656400e+02
+7 20733     3.164600e+02 1.963400e+02
+15 20733     6.196700e+02 2.603100e+02
+7 20734     9.779999e+01 1.944200e+02
+8 20734     2.977400e+02 4.523001e+01
+13 20734     5.342500e+02 -1.636600e+02
+7 20735     -3.110400e+02 1.905700e+02
+13 20735     1.128400e+02 -1.445100e+02
+7 20736     -4.634500e+02 1.768900e+02
+10 20736     -4.596800e+02 2.859800e+02
+7 20737     2.144100e+02 1.711700e+02
+10 20737     2.684700e+02 1.870300e+02
+15 20737     3.947800e+02 1.965800e+02
+7 20738     4.492900e+02 1.674800e+02
+15 20738     8.036500e+02 2.028800e+02
+7 20739     3.009399e+02 1.559200e+02
+10 20739     3.864301e+02 1.711300e+02
+7 20740     -4.735000e+02 1.500800e+02
+10 20740     -4.756400e+02 2.548500e+02
+7 20741     -1.462900e+02 1.442200e+02
+9 20741     -6.247998e+01 1.146600e+02
+13 20741     3.154800e+02 -1.916800e+02
+7 20742     8.745001e+01 1.452500e+02
+15 20742     1.989500e+02 1.637300e+02
+7 20743     8.745001e+01 1.452500e+02
+15 20743     1.989500e+02 1.637300e+02
+7 20744     -3.677500e+02 1.323000e+02
+15 20744     -3.308300e+02 2.268000e+02
+7 20745     2.628300e+02 1.261800e+02
+15 20745     4.667100e+02 1.329800e+02
+7 20746     2.628300e+02 1.261800e+02
+15 20746     4.667100e+02 1.329800e+02
+7 20747     4.670800e+02 1.160100e+02
+10 20747     6.162600e+02 1.275000e+02
+15 20747     8.248500e+02 1.266500e+02
+7 20748     -2.717000e+02 1.124500e+02
+15 20748     -2.541400e+02 1.668900e+02
+7 20749     -4.168000e+02 1.104600e+02
+15 20749     -3.977200e+02 2.010300e+02
+7 20750     -1.900800e+02 1.044200e+02
+15 20750     -1.590800e+02 1.438200e+02
+7 20751     -4.663200e+02 9.981000e+01
+15 20751     -4.642500e+02 1.905700e+02
+7 20752     -4.243300e+02 9.681000e+01
+8 20752     -2.796100e+02 -1.725800e+02
+13 20752     1.827002e+01 -2.171200e+02
+7 20753     4.725900e+02 9.510001e+01
+10 20753     6.175500e+02 1.000100e+02
+15 20753     8.261500e+02 9.389001e+01
+7 20754     -4.620000e+02 9.372000e+01
+15 20754     -4.597100e+02 1.815000e+02
+7 20755     -4.210700e+02 8.594000e+01
+15 20755     -4.089800e+02 1.673900e+02
+7 20756     -3.982600e+02 8.353000e+01
+15 20756     -3.796600e+02 1.615300e+02
+7 20757     -4.870100e+02 8.256000e+01
+15 20757     -4.951300e+02 1.665900e+02
+7 20758     6.415300e+02 8.129001e+01
+10 20758     8.228700e+02 6.095001e+01
+7 20759     -1.340400e+02 7.177002e+01
+15 20759     -9.706000e+01 8.967001e+01
+7 20760     -1.929100e+02 6.470001e+01
+13 20760     2.694800e+02 -2.566800e+02
+7 20761     -5.272000e+02 6.053998e+01
+13 20761     -7.009998e+01 -2.399200e+02
+7 20762     -5.104600e+02 4.328003e+01
+15 20762     -5.318600e+02 1.170300e+02
+7 20763     -2.218300e+02 4.095001e+01
+15 20763     -2.065900e+02 6.084998e+01
+7 20764     -2.218300e+02 4.095001e+01
+15 20764     -2.065900e+02 6.084998e+01
+7 20765     1.834200e+02 3.128998e+01
+10 20765     2.116801e+02 2.263000e+01
+13 20765     6.070500e+02 -3.113600e+02
+15 20765     3.262200e+02 9.500122e-01
+7 20766     -5.118800e+02 1.896002e+01
+13 20766     -5.592999e+01 -2.771800e+02
+7 20767     5.236899e+02 1.763000e+01
+9 20767     4.415100e+02 -2.640997e+01
+7 20768     4.904100e+02 1.573999e+01
+15 20768     8.329399e+02 -2.640997e+01
+7 20769     -3.901700e+02 1.187000e+01
+10 20769     -4.033900e+02 8.160999e+01
+15 20769     -3.832900e+02 6.301001e+01
+7 20770     -3.707600e+02 6.429993e+00
+10 20770     -3.820400e+02 7.373999e+01
+15 20770     -3.592400e+02 5.234998e+01
+7 20771     -1.483700e+02 -1.928998e+01
+15 20771     -1.261400e+02 -3.108002e+01
+7 20772     -1.954300e+02 -2.295001e+01
+8 20772     5.590997e+01 -1.628300e+02
+10 20772     -2.273400e+02 -9.500122e-01
+12 20772     -1.454600e+02 -1.024400e+02
+13 20772     2.684600e+02 -3.314000e+02
+7 20773     -5.124800e+02 -3.534998e+01
+15 20773     -5.486700e+02 1.052002e+01
+7 20774     -4.642100e+02 -4.153998e+01
+15 20774     -4.879300e+02 -3.640015e+00
+7 20775     -5.820100e+02 -4.826001e+01
+15 20775     -6.382500e+02 -1.599731e-01
+7 20776     -5.820100e+02 -4.826001e+01
+15 20776     -6.382500e+02 -1.599731e-01
+7 20777     -5.472700e+02 -5.646997e+01
+10 20777     -5.878900e+02 1.697998e+01
+15 20777     -5.964300e+02 -1.488000e+01
+7 20778     -5.403100e+02 -5.890002e+01
+8 20778     -3.638100e+02 -3.002800e+02
+15 20778     -5.881900e+02 -1.906000e+01
+7 20779     -5.403100e+02 -5.890002e+01
+15 20779     -5.881900e+02 -1.906000e+01
+7 20780     -4.348800e+02 -6.138000e+01
+13 20780     1.504999e+01 -3.517200e+02
+15 20780     -4.544700e+02 -3.334003e+01
+7 20781     -4.906700e+02 -6.400000e+01
+13 20781     -3.319000e+01 -3.503500e+02
+7 20782     -6.387300e+02 -7.638000e+01
+8 20782     -4.625500e+02 -3.209800e+02
+10 20782     -6.910200e+02 2.190002e+00
+7 20783     1.653101e+02 -9.273999e+01
+8 20783     4.036700e+02 -1.935000e+02
+7 20784     6.142900e+02 -9.791998e+01
+12 20784     7.835000e+02 -1.419800e+02
+7 20785     5.165601e+02 -1.089400e+02
+15 20785     8.384800e+02 -2.162700e+02
+7 20786     5.224301e+02 -1.175500e+02
+15 20786     8.450300e+02 -2.302300e+02
+7 20787     -1.534500e+02 -1.503600e+02
+8 20787     9.652002e+01 -2.946300e+02
+9 20787     -1.738000e+01 -1.662900e+02
+13 20787     2.918600e+02 -4.487500e+02
+7 20788     6.066998e+01 -1.691600e+02
+8 20788     3.163400e+02 -2.807900e+02
+7 20789     -1.564300e+02 -2.303400e+02
+15 20789     -1.469700e+02 -3.030900e+02
+7 20790     3.496899e+02 -2.440200e+02
+15 20790     5.520601e+02 -3.895100e+02
+7 20791     -1.116900e+02 -2.483100e+02
+15 20791     -9.363000e+01 -3.342800e+02
+7 20792     -4.142200e+02 -2.497700e+02
+9 20792     -3.037700e+02 -3.567700e+02
+7 20793     -3.749500e+02 -2.532600e+02
+15 20793     -4.170800e+02 -3.005200e+02
+7 20794     1.142400e+02 -2.942400e+02
+9 20794     2.585000e+02 -2.653700e+02
+7 20795     1.142400e+02 -2.942400e+02
+9 20795     2.585000e+02 -2.653700e+02
+7 20796     5.547600e+02 -3.424800e+02
+10 20796     6.257200e+02 -4.535000e+02
+7 20797     -3.822900e+02 -3.535300e+02
+15 20797     -4.468300e+02 -4.342600e+02
+7 20798     -4.690300e+02 -3.920500e+02
+15 20798     -5.642400e+02 -4.743800e+02
+7 20799     -1.733002e+01 -4.015000e+02
+15 20799     1.079999e+01 -5.508800e+02
+7 20800     -1.392400e+02 -4.159400e+02
+9 20800     6.634003e+01 -4.207100e+02
+7 20801     -3.762300e+02 -4.230800e+02
+15 20801     -4.540200e+02 -5.278300e+02
+7 20802     3.357001e+01 -4.244600e+02
+12 20802     1.733500e+02 -5.758600e+02
+7 20803     3.588000e+01 -4.340699e+02
+12 20803     1.794400e+02 -5.868300e+02
+7 20804     -3.443600e+02 -4.443000e+02
+15 20804     -4.182600e+02 -5.610601e+02
+7 20805     -3.480600e+02 -4.521300e+02
+15 20805     -4.243500e+02 -5.710601e+02
+7 20806     4.049900e+02 -4.578800e+02
+10 20806     4.190601e+02 -5.703300e+02
+7 20807     -2.103400e+02 -4.687000e+02
+10 20807     -2.859700e+02 -4.975500e+02
+7 20808     -2.103400e+02 -4.687000e+02
+10 20808     -2.859700e+02 -4.975500e+02
+7 20809     3.163199e+02 -4.699500e+02
+9 20809     5.040400e+02 -3.633500e+02
+12 20809     5.278500e+02 -5.948199e+02
+7 20810     -1.229980e+00 -5.185300e+02
+9 20810     2.507400e+02 -4.648700e+02
+7 20811     4.611000e+02 -5.222700e+02
+9 20811     6.480000e+02 -3.709100e+02
+7 20812     -1.923000e+02 -5.276200e+02
+10 20812     -2.752700e+02 -5.674900e+02
+7 20813     4.485601e+02 -5.373700e+02
+9 20813     6.454301e+02 -3.826200e+02
+7 20814     4.259900e+02 -5.550400e+02
+9 20814     6.361100e+02 -3.991300e+02
+7 20815     1.963101e+02 5.738300e+02
+8 20815     1.643100e+02 1.792200e+02
+9 20815     -6.547998e+01 2.766700e+02
+11 20815     5.581000e+02 -2.739300e+02
+13 20815     5.433101e+02 1.673100e+02
+14 20815     7.510601e+02 -2.519400e+02
+7 20816     -1.045900e+02 5.282600e+02
+8 20816     -6.571997e+01 1.554100e+02
+7 20817     -4.014001e+01 5.133600e+02
+11 20817     3.198900e+02 -3.222100e+02
+7 20818     -4.222200e+02 5.023500e+02
+8 20818     -3.171800e+02 1.544700e+02
+7 20819     -3.537000e+02 4.950600e+02
+11 20819     2.765002e+01 -3.156800e+02
+7 20820     -4.840997e+01 4.797700e+02
+11 20820     3.116500e+02 -3.493300e+02
+7 20821     -3.477600e+02 4.734900e+02
+11 20821     3.063000e+01 -3.341600e+02
+7 20822     -1.828400e+02 4.662500e+02
+13 20822     2.163800e+02 8.434000e+01
+7 20823     -4.918600e+02 4.496200e+02
+10 20823     -4.702800e+02 6.082700e+02
+13 20823     -2.998999e+01 8.220999e+01
+7 20824     -5.512600e+02 4.488800e+02
+10 20824     -5.413900e+02 6.127800e+02
+7 20825     -2.304500e+02 4.477700e+02
+10 20825     -1.568300e+02 5.968600e+02
+7 20826     -1.940300e+02 4.361000e+02
+10 20826     -1.125000e+02 5.819600e+02
+7 20827     3.742500e+02 4.238800e+02
+9 20827     2.213400e+02 2.805900e+02
+13 20827     7.490300e+02 2.390002e+01
+7 20828     -1.584800e+02 4.059900e+02
+11 20828     1.936100e+02 -4.111100e+02
+13 20828     2.346700e+02 3.103998e+01
+14 20828     3.679200e+02 -4.102400e+02
+7 20829     2.723300e+02 4.029600e+02
+13 20829     6.365699e+02 1.007001e+01
+15 20829     5.948600e+02 5.679400e+02
+7 20830     4.431899e+02 4.012900e+02
+10 20830     6.127000e+02 4.710000e+02
+7 20831     -3.379700e+02 3.953300e+02
+11 20831     3.075000e+01 -4.017800e+02
+7 20832     -1.525000e+02 3.928500e+02
+10 20832     -7.082001e+01 5.253400e+02
+11 20832     1.977300e+02 -4.239600e+02
+7 20833     -3.838000e+02 3.783600e+02
+13 20833     4.671002e+01 1.971002e+01
+7 20834     1.199900e+02 3.758900e+02
+13 20834     4.872400e+02 -7.510010e+00
+7 20835     -5.217600e+02 3.714600e+02
+10 20835     -5.069900e+02 5.208900e+02
+7 20836     -6.167800e+02 3.699400e+02
+10 20836     -6.185600e+02 5.243300e+02
+11 20836     -2.145000e+02 -3.928100e+02
+13 20836     -1.345000e+02 2.712000e+01
+7 20837     -1.651100e+02 3.695200e+02
+11 20837     1.806100e+02 -4.453300e+02
+15 20837     -1.450000e+01 5.495600e+02
+7 20838     -3.586500e+02 3.600700e+02
+14 20838     1.545601e+02 -4.365400e+02
+7 20839     -2.084000e+02 3.591400e+02
+10 20839     -1.409000e+02 4.877800e+02
+7 20840     1.008300e+02 3.443200e+02
+10 20840     2.160100e+02 4.457600e+02
+7 20841     -6.684500e+02 3.433400e+02
+10 20841     -6.826600e+02 4.972500e+02
+7 20842     -5.020800e+02 3.425100e+02
+11 20842     -1.223600e+02 -4.300600e+02
+13 20842     -5.034003e+01 -3.539978e+00
+7 20843     -3.298000e+02 3.378100e+02
+10 20843     -2.839900e+02 4.705700e+02
+7 20844     6.362400e+02 3.358900e+02
+9 20844     4.753101e+02 2.738600e+02
+7 20845     -4.990900e+02 3.246300e+02
+11 20845     -1.222600e+02 -4.458400e+02
+13 20845     -5.015997e+01 -1.859998e+01
+14 20845     1.033002e+01 -4.580601e+02
+7 20846     1.221600e+02 3.195200e+02
+10 20846     2.378199e+02 4.130100e+02
+7 20847     -5.220700e+02 3.167800e+02
+11 20847     -1.451500e+02 -4.507900e+02
+7 20848     -7.117300e+02 3.135000e+02
+8 20848     -5.751200e+02 2.300110e-01
+11 20848     -3.028000e+02 -4.298000e+02
+7 20849     -6.610400e+02 3.128900e+02
+11 20849     -2.589700e+02 -4.337800e+02
+15 20849     -6.855800e+02 4.978700e+02
+7 20850     -5.772500e+02 3.107700e+02
+11 20850     -1.918700e+02 -4.481100e+02
+13 20850     -1.125800e+02 -2.508002e+01
+14 20850     -6.737000e+01 -4.625500e+02
+7 20851     -4.314600e+02 3.086300e+02
+15 20851     -3.802200e+02 4.804300e+02
+7 20852     -3.948300e+02 3.072500e+02
+11 20852     -3.510999e+01 -4.749200e+02
+15 20852     -3.338600e+02 4.757200e+02
+7 20853     -5.462500e+02 3.060200e+02
+11 20853     -1.660500e+02 -4.560000e+02
+13 20853     -8.988000e+01 -3.162000e+01
+14 20853     -3.959998e+01 -4.721400e+02
+7 20854     -5.686500e+02 2.973400e+02
+11 20854     -1.868400e+02 -4.609000e+02
+13 20854     -1.080600e+02 -3.685999e+01
+14 20854     -6.241998e+01 -4.774500e+02
+7 20855     -5.209800e+02 2.965900e+02
+11 20855     -1.454000e+02 -4.671700e+02
+13 20855     -7.112000e+01 -4.060999e+01
+14 20855     -1.675000e+01 -4.848000e+02
+7 20856     3.654600e+02 2.973000e+02
+15 20856     6.962300e+02 3.976700e+02
+7 20857     -4.310800e+02 2.931300e+02
+11 20857     -7.135999e+01 -4.839300e+02
+7 20858     9.240997e+01 2.831500e+02
+13 20858     5.187600e+02 -8.794000e+01
+7 20859     -4.481900e+02 2.810500e+02
+11 20859     -8.925000e+01 -4.919700e+02
+7 20860     6.475601e+02 2.765500e+02
+9 20860     4.947200e+02 2.256200e+02
+7 20861     3.738700e+02 2.717700e+02
+10 20861     5.203300e+02 3.259700e+02
+15 20861     7.066600e+02 3.605400e+02
+7 20862     -7.133700e+02 2.709500e+02
+11 20862     -3.128000e+02 -4.649200e+02
+13 20862     -2.228400e+02 -4.885999e+01
+7 20863     -7.185000e+02 2.653200e+02
+10 20863     -7.409500e+02 4.105800e+02
+13 20863     -2.256900e+02 -5.340002e+01
+14 20863     -2.099100e+02 -4.912100e+02
+7 20864     -6.982200e+02 2.649400e+02
+10 20864     -7.167500e+02 4.089900e+02
+7 20865     -5.496900e+02 2.649800e+02
+11 20865     -1.758200e+02 -4.915900e+02
+13 20865     -9.596002e+01 -6.466998e+01
+14 20865     -4.931000e+01 -5.138900e+02
+7 20866     -6.463700e+02 2.591200e+02
+10 20866     -6.558400e+02 4.009600e+02
+11 20866     -2.585800e+02 -4.828100e+02
+7 20867     -6.161400e+02 2.226200e+02
+14 20867     -1.215800e+02 -5.521600e+02
+7 20868     -4.764001e+01 2.220600e+02
+12 20868     8.090027e+00 1.990300e+02
+7 20869     5.729301e+02 2.222100e+02
+9 20869     4.370900e+02 1.568900e+02
+10 20869     7.519399e+02 2.385500e+02
+7 20870     3.206100e+02 1.949900e+02
+15 20870     6.255100e+02 2.575000e+02
+7 20871     1.265400e+02 1.841900e+02
+10 20871     1.591600e+02 2.047500e+02
+15 20871     2.617900e+02 2.163500e+02
+7 20872     5.932300e+02 1.837900e+02
+10 20872     7.721300e+02 1.900800e+02
+7 20873     7.122100e+02 1.781000e+02
+9 20873     5.675699e+02 1.585300e+02
+7 20874     -5.800200e+02 1.654400e+02
+13 20874     -1.195400e+02 -1.469800e+02
+7 20875     -5.800200e+02 1.654400e+02
+13 20875     -1.195400e+02 -1.469800e+02
+7 20876     4.915400e+02 1.648600e+02
+10 20876     6.495300e+02 1.810800e+02
+15 20876     8.633900e+02 1.919600e+02
+7 20877     -4.631500e+02 1.542800e+02
+10 20877     -4.629100e+02 2.591900e+02
+15 20877     -4.501600e+02 2.659900e+02
+7 20878     3.650601e+02 1.520800e+02
+10 20878     4.975500e+02 1.816100e+02
+7 20879     -3.898400e+02 1.471800e+02
+15 20879     -3.557500e+02 2.502400e+02
+7 20880     -3.447400e+02 1.459600e+02
+15 20880     -2.979000e+02 2.433800e+02
+7 20881     -2.030000e+02 1.412100e+02
+15 20881     -1.672300e+02 1.957900e+02
+7 20882     -4.728300e+02 1.373900e+02
+10 20882     -4.754100e+02 2.407200e+02
+15 20882     -4.656400e+02 2.446100e+02
+7 20883     4.489800e+02 1.337400e+02
+10 20883     5.969399e+02 1.514600e+02
+7 20884     4.503700e+02 1.260600e+02
+10 20884     5.976500e+02 1.415900e+02
+15 20884     8.014100e+02 1.433900e+02
+7 20885     -3.776700e+02 1.186600e+02
+15 20885     -3.464300e+02 2.083000e+02
+7 20886     6.713400e+02 1.176800e+02
+9 20886     5.423600e+02 9.237000e+01
+7 20887     -2.223900e+02 1.117100e+02
+13 20887     2.409000e+02 -2.159700e+02
+7 20888     4.665300e+02 1.094200e+02
+10 20888     6.147500e+02 1.190300e+02
+15 20888     8.234000e+02 1.161400e+02
+7 20889     -2.062700e+02 1.023100e+02
+10 20889     -2.203700e+02 1.469200e+02
+7 20890     4.672200e+02 9.898999e+01
+10 20890     6.123800e+02 1.061800e+02
+15 20890     8.200200e+02 1.009900e+02
+7 20891     5.061700e+02 8.492999e+01
+9 20891     3.967900e+02 1.133002e+01
+7 20892     8.839001e+01 8.176001e+01
+8 20892     3.080100e+02 -4.432001e+01
+13 20892     5.244000e+02 -2.600900e+02
+7 20893     1.628700e+02 7.225000e+01
+10 20893     1.916400e+02 7.142999e+01
+7 20894     4.367300e+02 7.059003e+01
+12 20894     5.402000e+02 2.221002e+01
+7 20895     -3.523600e+02 6.701001e+01
+10 20895     -3.527100e+02 1.442000e+02
+7 20896     -2.101600e+02 6.013000e+01
+13 20896     2.537600e+02 -2.588100e+02
+7 20897     -5.227100e+02 5.622998e+01
+15 20897     -5.441000e+02 1.360000e+02
+7 20898     3.097000e+02 5.607001e+01
+10 20898     3.726200e+02 4.517999e+01
+12 20898     4.371700e+02 2.906000e+01
+7 20899     -1.467300e+02 5.389001e+01
+10 20899     -1.628700e+02 8.201001e+01
+7 20900     1.414200e+02 4.809998e+01
+8 20900     3.522700e+02 -7.698999e+01
+10 20900     1.629500e+02 4.583002e+01
+12 20900     2.496400e+02 1.421002e+01
+7 20901     -2.054600e+02 4.540002e+01
+10 20901     -2.268500e+02 7.983002e+01
+13 20901     2.571801e+02 -2.728600e+02
+15 20901     -1.877100e+02 6.377002e+01
+7 20902     1.214900e+02 2.806000e+01
+15 20902     2.382000e+02 2.200012e+00
+7 20903     4.910999e+01 2.502002e+01
+13 20903     4.888900e+02 -3.066000e+02
+7 20904     -1.519800e+02 2.103003e+01
+15 20904     -1.277300e+02 2.167999e+01
+7 20905     5.367200e+02 -9.940002e+00
+9 20905     4.639800e+02 -4.144000e+01
+10 20905     6.778300e+02 -3.685999e+01
+7 20906     -1.392800e+02 -1.594000e+01
+10 20906     -1.635000e+02 1.229980e+00
+15 20906     -1.137800e+02 -2.794000e+01
+7 20907     -2.239100e+02 -1.839001e+01
+8 20907     2.727002e+01 -1.622000e+02
+12 20907     -1.810800e+02 -1.002800e+02
+7 20908     1.408800e+02 -2.181000e+01
+13 20908     5.696700e+02 -3.551100e+02
+7 20909     -1.544900e+02 -2.647998e+01
+15 20909     -1.355700e+02 -4.022998e+01
+7 20910     1.326200e+02 -2.654999e+01
+13 20910     5.618600e+02 -3.582400e+02
+7 20911     2.254999e+01 -6.013000e+01
+15 20911     8.958002e+01 -1.073300e+02
+7 20912     5.191600e+02 -7.464001e+01
+12 20912     6.685800e+02 -1.273600e+02
+7 20913     -6.322900e+02 -8.284998e+01
+10 20913     -6.852200e+02 -6.130005e+00
+7 20914     -5.874000e+02 -8.340997e+01
+8 20914     -4.073800e+02 -3.222300e+02
+13 20914     -1.179600e+02 -3.582400e+02
+7 20915     -4.698300e+02 -8.922998e+01
+13 20915     -1.496002e+01 -3.735300e+02
+7 20916     -5.385700e+02 -1.459700e+02
+15 20916     -6.011500e+02 -1.361400e+02
+7 20917     -5.541900e+02 -1.470300e+02
+15 20917     -6.216400e+02 -1.360600e+02
+7 20918     -4.078300e+02 -1.575400e+02
+8 20918     -2.023000e+02 -3.680900e+02
+7 20919     -1.468100e+02 -1.687100e+02
+13 20919     2.951500e+02 -4.667700e+02
+7 20920     -4.800300e+02 -1.742200e+02
+15 20920     -5.332500e+02 -1.814900e+02
+7 20921     6.005900e+02 -1.810800e+02
+9 20921     5.915500e+02 -1.349500e+02
+7 20922     -7.260010e+00 -1.959300e+02
+13 20922     4.243101e+02 -5.030300e+02
+7 20923     8.270020e+00 -2.271600e+02
+10 20923     -9.719971e+00 -2.495000e+02
+7 20924     -4.172800e+02 -2.580300e+02
+9 20924     -3.030600e+02 -3.639800e+02
+7 20925     2.265300e+02 -3.423200e+02
+10 20925     2.294000e+02 -4.070000e+02
+7 20926     -4.601400e+02 -3.567100e+02
+15 20926     -5.459600e+02 -4.279400e+02
+7 20927     -4.601400e+02 -3.567100e+02
+15 20927     -5.459600e+02 -4.279400e+02
+7 20928     -3.398200e+02 -3.639400e+02
+15 20928     -3.945100e+02 -4.530601e+02
+7 20929     1.215600e+02 -3.850700e+02
+9 20929     2.949900e+02 -3.441300e+02
+7 20930     6.533700e+02 -3.902800e+02
+9 20930     7.285000e+02 -2.529900e+02
+10 20930     7.429600e+02 -5.297500e+02
+7 20931     5.142200e+02 -3.915200e+02
+10 20931     5.672700e+02 -5.072500e+02
+7 20932     -6.956000e+01 -4.131800e+02
+15 20932     -5.945001e+01 -5.597200e+02
+7 20933     3.986300e+02 -4.542900e+02
+12 20933     6.235800e+02 -5.664900e+02
+7 20934     -2.299200e+02 -4.839700e+02
+10 20934     -3.095900e+02 -5.141500e+02
+7 20935     4.035999e+01 -5.006100e+02
+9 20935     2.809301e+02 -4.418700e+02
+7 20936     -2.669500e+02 -5.397600e+02
+9 20936     -3.300171e-01 -5.486500e+02
+7 20937     1.871997e+01 -5.501300e+02
+9 20937     2.857000e+02 -4.833300e+02
+7 20938     -1.572900e+02 -5.628300e+02
+9 20938     1.235700e+02 -5.376700e+02
+7 20939     -5.892999e+01 5.014400e+02
+9 20939     -2.619100e+02 2.157600e+02
+7 20940     -1.182800e+02 4.512200e+02
+11 20940     2.416700e+02 -3.702700e+02
+7 20941     2.686000e+02 4.436700e+02
+10 20941     4.257600e+02 5.515400e+02
+13 20941     6.340100e+02 4.558002e+01
+7 20942     -2.220200e+02 4.208400e+02
+10 20942     -1.471400e+02 5.653300e+02
+13 20942     1.818700e+02 4.807001e+01
+14 20942     3.016400e+02 -3.864000e+02
+7 20943     1.292900e+02 3.978300e+02
+13 20943     4.935200e+02 1.100000e+01
+14 20943     6.966600e+02 -4.481801e+02
+7 20944     1.155100e+02 3.913200e+02
+13 20944     4.817500e+02 5.619995e+00
+14 20944     6.809399e+02 -4.541801e+02
+7 20945     -2.401200e+02 3.609200e+02
+13 20945     1.673600e+02 -3.270020e+00
+14 20945     2.818800e+02 -4.504500e+02
+15 20945     -1.185200e+02 5.417700e+02
+7 20946     5.110900e+02 3.572200e+02
+9 20946     3.596500e+02 2.583200e+02
+7 20947     4.784900e+02 3.493600e+02
+9 20947     3.313800e+02 2.427900e+02
+7 20948     -1.377600e+02 3.333500e+02
+10 20948     -6.496002e+01 4.498600e+02
+11 20948     1.960200e+02 -4.846400e+02
+7 20949     3.578199e+02 3.294600e+02
+8 20949     4.007700e+02 6.800000e+01
+13 20949     7.284000e+02 -5.860999e+01
+7 20950     -3.383900e+02 3.047700e+02
+11 20950     1.088000e+01 -4.853200e+02
+13 20950     8.421002e+01 -4.441998e+01
+14 20950     1.773400e+02 -4.991801e+02
+15 20950     -2.600400e+02 4.670200e+02
+7 20951     -4.927400e+02 3.041400e+02
+11 20951     -1.202500e+02 -4.638500e+02
+7 20952     -5.749800e+02 3.028500e+02
+11 20952     -1.914400e+02 -4.552700e+02
+13 20952     -1.126400e+02 -3.209003e+01
+14 20952     -6.779999e+01 -4.712200e+02
+7 20953     -6.163000e+02 2.950300e+02
+11 20953     -2.272400e+02 -4.564500e+02
+12 20953     -7.417500e+02 1.768200e+02
+7 20954     -2.420200e+02 2.920900e+02
+10 20954     -1.905200e+02 4.067100e+02
+7 20955     -3.298800e+02 2.882800e+02
+11 20955     1.365002e+01 -5.026899e+02
+7 20956     -5.883500e+02 2.785900e+02
+11 20956     -2.065600e+02 -4.741400e+02
+13 20956     -1.258800e+02 -5.127002e+01
+14 20956     -8.584003e+01 -4.947100e+02
+7 20957     -6.616900e+02 2.532400e+02
+10 20957     -6.738000e+02 3.950200e+02
+11 20957     -2.696400e+02 -4.858200e+02
+7 20958     -6.738900e+02 2.396400e+02
+11 20958     -2.862300e+02 -4.963400e+02
+7 20959     -5.290000e+02 2.323600e+02
+10 20959     -5.244300e+02 3.591600e+02
+7 20960     1.350900e+02 2.172600e+02
+10 20960     1.744000e+02 2.441700e+02
+12 20960     2.206200e+02 2.073700e+02
+13 20960     5.634700e+02 -1.458400e+02
+15 20960     2.809700e+02 2.629900e+02
+7 20961     -4.399500e+02 2.023700e+02
+8 20961     -3.180000e+02 -9.664001e+01
+7 20962     -5.570400e+02 1.783900e+02
+13 20962     -9.914001e+01 -1.378200e+02
+7 20963     3.826400e+02 1.778400e+02
+10 20963     5.237500e+02 2.122800e+02
+7 20964     3.826400e+02 1.778400e+02
+10 20964     5.237500e+02 2.122800e+02
+7 20965     4.988101e+02 1.561800e+02
+10 20965     6.565699e+02 1.709200e+02
+7 20966     4.988101e+02 1.561800e+02
+10 20966     6.566000e+02 1.713700e+02
+7 20967     -5.594800e+02 1.541400e+02
+13 20967     -9.950000e+01 -1.574100e+02
+7 20968     -5.594800e+02 1.541400e+02
+13 20968     -9.950000e+01 -1.574100e+02
+7 20969     3.714700e+02 1.436300e+02
+10 20969     5.035601e+02 1.708500e+02
+7 20970     -7.400300e+02 1.426700e+02
+13 20970     -2.547500e+02 -1.540000e+02
+7 20971     9.500122e-01 1.357900e+02
+10 20971     5.719971e+00 1.571900e+02
+13 20971     4.500800e+02 -2.074800e+02
+15 20971     7.948999e+01 1.589400e+02
+7 20972     -3.765400e+02 1.088600e+02
+10 20972     -3.731300e+02 1.959800e+02
+13 20972     6.023999e+01 -2.104300e+02
+15 20972     -3.459400e+02 1.948800e+02
+7 20973     -3.683800e+02 1.005500e+02
+13 20973     6.732001e+01 -2.180300e+02
+7 20974     -3.683800e+02 1.005500e+02
+10 20974     -3.651200e+02 1.855800e+02
+13 20974     6.732001e+01 -2.180300e+02
+7 20975     4.951801e+02 8.970999e+01
+15 20975     8.624100e+02 8.229999e+01
+7 20976     -3.723900e+02 8.022000e+01
+15 20976     -3.479400e+02 1.552100e+02
+7 20977     -1.622400e+02 7.159998e+01
+13 20977     2.972800e+02 -2.537900e+02
+7 20978     4.228000e+02 5.698999e+01
+12 20978     5.270200e+02 6.729980e+00
+7 20979     -3.943200e+02 2.082001e+01
+9 20979     -4.060700e+02 -1.529300e+02
+7 20980     -1.127002e+01 -5.937000e+01
+15 20980     4.465997e+01 -1.024800e+02
+7 20981     -9.394000e+01 -7.734998e+01
+15 20981     -6.902002e+01 -1.179700e+02
+7 20982     -6.275000e+01 -7.758002e+01
+10 20982     -8.615002e+01 -7.671997e+01
+7 20983     -4.787900e+02 -9.790997e+01
+15 20983     -5.182300e+02 -7.883002e+01
+7 20984     -4.787900e+02 -9.790997e+01
+13 20984     -2.303003e+01 -3.806000e+02
+15 20984     -5.182300e+02 -7.883002e+01
+7 20985     -5.104800e+02 -9.917999e+01
+15 20985     -5.558300e+02 -7.608002e+01
+7 20986     5.315900e+02 -1.055600e+02
+15 20986     8.622300e+02 -2.138100e+02
+7 20987     -3.998300e+02 -1.112500e+02
+13 20987     4.747998e+01 -3.989300e+02
+7 20988     -3.998300e+02 -1.112500e+02
+13 20988     4.747998e+01 -3.989300e+02
+7 20989     -7.052100e+02 -1.806000e+02
+15 20989     -8.162600e+02 -1.649600e+02
+7 20990     -4.800600e+02 -1.875000e+02
+15 20990     -5.371600e+02 -1.988800e+02
+7 20991     5.982200e+02 -1.905900e+02
+9 20991     5.939700e+02 -1.406500e+02
+12 20991     7.884900e+02 -2.442300e+02
+7 20992     -3.831500e+02 -2.808500e+02
+13 20992     6.620001e+01 -5.504500e+02
+7 20993     -4.701400e+02 -3.349100e+02
+15 20993     -5.539400e+02 -3.970100e+02
+7 20994     -2.650000e+02 -3.435800e+02
+15 20994     -2.963600e+02 -4.362200e+02
+7 20995     -4.638400e+02 -3.484200e+02
+10 20995     -5.424500e+02 -3.307800e+02
+15 20995     -5.493900e+02 -4.172300e+02
+7 20996     -4.935600e+02 -3.591100e+02
+15 20996     -5.889200e+02 -4.267600e+02
+7 20997     -3.494300e+02 -3.714000e+02
+15 20997     -4.092300e+02 -4.629399e+02
+7 20998     -5.168300e+02 -3.805900e+02
+15 20998     -6.213000e+02 -4.536500e+02
+7 20999     2.467200e+02 -3.830800e+02
+9 20999     4.018101e+02 -3.199200e+02
+7 21000     4.538300e+02 -3.841200e+02
+10 21000     4.922300e+02 -4.880900e+02
+7 21001     3.279900e+02 -4.316800e+02
+10 21001     3.322200e+02 -5.262800e+02
+7 21002     -3.576900e+02 -4.422900e+02
+15 21002     -4.350500e+02 -5.562400e+02
+7 21003     7.640002e+01 -4.624500e+02
+9 21003     2.940100e+02 -4.072500e+02
+7 21004     3.556400e+02 5.261900e+02
+8 21004     3.627500e+02 2.135500e+02
+12 21004     3.811600e+02 5.197200e+02
+7 21005     3.295500e+02 4.260400e+02
+8 21005     3.445500e+02 1.248200e+02
+7 21006     -5.085200e+02 4.154600e+02
+11 21006     -1.169100e+02 -3.677700e+02
+12 21006     -6.187200e+02 3.263600e+02
+7 21007     6.184998e+01 3.851200e+02
+10 21007     1.804000e+02 5.003800e+02
+11 21007     3.971500e+02 -4.541200e+02
+7 21008     8.900146e-01 3.587100e+02
+10 21008     1.037700e+02 4.712300e+02
+11 21008     3.339800e+02 -4.754000e+02
+7 21009     1.191500e+02 3.309800e+02
+10 21009     2.364200e+02 4.273600e+02
+7 21010     1.569700e+02 3.275000e+02
+10 21010     2.812400e+02 4.200800e+02
+7 21011     -6.885200e+02 2.976300e+02
+10 21011     -7.048700e+02 4.446900e+02
+11 21011     -2.871600e+02 -4.455000e+02
+7 21012     -5.740200e+02 2.855500e+02
+11 21012     -1.935100e+02 -4.704500e+02
+7 21013     -5.466100e+02 2.831400e+02
+13 21013     -9.342999e+01 -4.959003e+01
+14 21013     -4.539001e+01 -4.952300e+02
+7 21014     -6.782100e+02 2.663800e+02
+8 21014     -5.513200e+02 -4.797000e+01
+10 21014     -6.940200e+02 4.106200e+02
+11 21014     -2.846700e+02 -4.707900e+02
+7 21015     -3.873700e+02 2.056700e+02
+15 21015     -3.419000e+02 3.313400e+02
+7 21016     -3.440300e+02 2.060400e+02
+10 21016     -3.215500e+02 3.104500e+02
+15 21016     -2.846400e+02 3.268000e+02
+7 21017     3.468700e+02 1.964900e+02
+10 21017     4.834900e+02 2.391100e+02
+15 21017     6.638000e+02 2.582000e+02
+7 21018     -5.468100e+02 1.498500e+02
+13 21018     -8.892999e+01 -1.624900e+02
+7 21019     -2.778500e+02 1.367500e+02
+10 21019     -2.873600e+02 1.990000e+02
+15 21019     -2.563100e+02 2.009500e+02
+7 21020     4.916899e+02 1.297300e+02
+10 21020     6.466400e+02 1.407800e+02
+7 21021     -3.833900e+02 1.267000e+02
+15 21021     -3.517200e+02 2.199200e+02
+7 21022     -4.909500e+02 3.282001e+01
+15 21022     -5.060200e+02 1.010800e+02
+7 21023     -1.985100e+02 3.103003e+01
+10 21023     -2.211200e+02 6.353003e+01
+15 21023     -1.807700e+02 4.450000e+01
+7 21024     -2.559998e+00 -1.245001e+01
+15 21024     5.965002e+01 -4.127002e+01
+7 21025     -1.520800e+02 -5.390997e+01
+13 21025     3.086899e+02 -3.611100e+02
+15 21025     -1.399500e+02 -7.860999e+01
+7 21026     -4.423200e+02 -9.231000e+01
+13 21026     8.609985e+00 -3.793700e+02
+7 21027     -2.619800e+02 -1.012900e+02
+13 21027     1.834800e+02 -3.976600e+02
+7 21028     -4.863200e+02 -1.348900e+02
+15 21028     -5.354900e+02 -1.275700e+02
+7 21029     5.296700e+02 -1.481500e+02
+15 21029     8.498600e+02 -2.768700e+02
+7 21030     -3.691100e+02 -2.599700e+02
+9 21030     -2.505000e+02 -3.554800e+02
+13 21030     7.814001e+01 -5.330200e+02
+7 21031     -4.369900e+02 -2.613400e+02
+13 21031     1.792999e+01 -5.278600e+02
+7 21032     4.502002e+01 -2.859000e+02
+9 21032     2.039700e+02 -2.541600e+02
+7 21033     5.284800e+02 -4.026500e+02
+10 21033     5.814500e+02 -5.237900e+02
+7 21034     5.284800e+02 -4.026500e+02
+10 21034     5.814500e+02 -5.237900e+02
+7 21035     4.774800e+02 -4.165900e+02
+10 21035     5.151100e+02 -5.332900e+02
+7 21036     1.861899e+02 -4.306500e+02
+10 21036     1.668600e+02 -5.056100e+02
+7 21037     4.676400e+02 -4.516200e+02
+10 21037     4.960699e+02 -5.725601e+02
+7 21038     3.810900e+02 -4.667700e+02
+9 21038     5.557400e+02 -3.477200e+02
+10 21038     3.882400e+02 -5.766300e+02
+12 21038     6.057900e+02 -5.818101e+02
+7 21039     4.996400e+02 -4.649200e+02
+9 21039     6.487800e+02 -3.261800e+02
+10 21039     5.336000e+02 -5.954100e+02
+7 21040     4.106600e+02 -4.685400e+02
+9 21040     5.813600e+02 -3.445200e+02
+10 21040     4.235800e+02 -5.853300e+02
+12 21040     6.410800e+02 -5.810400e+02
+7 21041     1.204100e+02 5.555900e+02
+8 21041     1.069400e+02 1.648400e+02
+7 21042     -1.384100e+02 4.599900e+02
+14 21042     3.881899e+02 -3.537200e+02
+7 21043     3.375000e+02 4.082800e+02
+8 21043     3.543000e+02 1.108500e+02
+7 21044     2.592400e+02 3.791200e+02
+13 21044     6.220000e+02 -1.001001e+01
+15 21044     5.754399e+02 5.357000e+02
+7 21045     4.520001e+01 3.646300e+02
+10 21045     1.561100e+02 4.758700e+02
+11 21045     3.758600e+02 -4.724800e+02
+7 21046     -4.617900e+02 3.262300e+02
+13 21046     -2.067999e+01 -1.977002e+01
+14 21046     4.690002e+01 -4.615800e+02
+7 21047     -4.710300e+02 3.143800e+02
+11 21047     -9.915002e+01 -4.579400e+02
+13 21047     -2.931000e+01 -2.829999e+01
+14 21047     3.584003e+01 -4.718199e+02
+7 21048     -1.394100e+02 2.361300e+02
+15 21048     -8.108002e+01 3.148200e+02
+7 21049     -6.656400e+02 2.308500e+02
+10 21049     -6.800700e+02 3.703800e+02
+11 21049     -2.804500e+02 -5.048600e+02
+13 21049     -1.917500e+02 -8.492999e+01
+14 21049     -1.707000e+02 -5.341500e+02
+7 21050     -7.359998e+01 2.026400e+02
+15 21050     -1.071002e+01 2.562200e+02
+7 21051     4.770500e+02 1.098600e+02
+10 21051     6.276200e+02 1.187700e+02
+15 21051     8.367600e+02 1.153500e+02
+7 21052     4.788700e+02 9.482001e+01
+15 21052     8.366500e+02 9.304001e+01
+7 21053     -8.049988e+00 8.528000e+01
+10 21053     -9.979980e+00 1.006400e+02
+13 21053     4.415400e+02 -2.501800e+02
+15 21053     6.256000e+01 9.135999e+01
+7 21054     -8.049988e+00 8.528000e+01
+10 21054     -9.979980e+00 1.006400e+02
+13 21054     4.415400e+02 -2.501800e+02
+15 21054     6.256000e+01 9.135999e+01
+7 21055     4.929100e+02 6.487000e+01
+9 21055     3.946600e+02 -1.650024e+00
+7 21056     4.357400e+02 2.025000e+01
+12 21056     5.500900e+02 -3.107001e+01
+7 21057     -2.317300e+02 -8.400024e+00
+10 21057     -2.644300e+02 2.014001e+01
+15 21057     -2.318700e+02 -6.200012e+00
+7 21058     -4.198999e+01 -9.510010e+00
+10 21058     -5.685999e+01 -4.080017e+00
+7 21059     -1.711700e+02 -3.128998e+01
+10 21059     -2.003400e+02 -1.396002e+01
+7 21060     -4.537300e+02 -6.003003e+01
+13 21060     -1.719971e+00 -3.499700e+02
+7 21061     -4.423100e+02 -6.895001e+01
+13 21061     7.849976e+00 -3.584400e+02
+7 21062     -4.423100e+02 -6.895001e+01
+13 21062     7.849976e+00 -3.584400e+02
+7 21063     -5.002500e+02 -7.207001e+01
+13 21063     -4.208002e+01 -3.560900e+02
+15 21063     -5.398500e+02 -4.037000e+01
+7 21064     -2.494900e+02 -9.764001e+01
+13 21064     1.993800e+02 -3.909700e+02
+7 21065     -4.218200e+02 -1.485800e+02
+13 21065     2.927002e+01 -4.305900e+02
+7 21066     1.615200e+02 -1.513900e+02
+9 21066     2.743101e+02 -1.109300e+02
+7 21067     9.497998e+01 -1.976000e+02
+10 21067     8.942999e+01 -2.270300e+02
+13 21067     5.173900e+02 -5.149200e+02
+15 21067     1.853600e+02 -2.965300e+02
+7 21068     -4.257400e+02 -2.293100e+02
+13 21068     2.734003e+01 -4.999200e+02
+7 21069     -3.779800e+02 -3.032300e+02
+9 21069     -2.398800e+02 -3.898900e+02
+7 21070     -4.661800e+02 -3.600600e+02
+15 21070     -5.534900e+02 -4.302800e+02
+7 21071     -5.071800e+02 -3.983600e+02
+15 21071     -6.134800e+02 -4.769399e+02
+7 21072     -1.018300e+02 -4.091100e+02
+9 21072     1.000500e+02 -4.081600e+02
+7 21073     2.154900e+02 -4.791200e+02
+9 21073     4.220100e+02 -3.899600e+02
+7 21074     2.163500e+02 -4.920800e+02
+9 21074     4.319301e+02 -3.984600e+02
+10 21074     1.886700e+02 -5.825601e+02
+7 21075     -1.902200e+02 6.390015e+00
+13 21075     2.703101e+02 -3.066700e+02
+7 21076     -1.626300e+02 -1.837200e+02
+10 21076     -1.950800e+02 -1.801100e+02
+13 21076     2.772800e+02 -4.828101e+02
+15 21076     -1.443000e+02 -2.394400e+02
+7 21077     -3.899400e+02 -2.913900e+02
+13 21077     5.873999e+01 -5.596400e+02
+7 21078     4.996801e+02 -3.883900e+02
+10 21078     5.492600e+02 -5.010000e+02
+7 21079     4.799700e+02 -4.361801e+02
+10 21079     5.136200e+02 -5.547100e+02
+7 21080     3.944700e+02 -4.623000e+02
+9 21080     5.641500e+02 -3.422100e+02
+12 21080     6.204301e+02 -5.743000e+02
+7 21081     3.580400e+02 -5.282900e+02
+9 21081     5.684301e+02 -3.936700e+02
+7 21082     -2.728998e+01 5.094800e+02
+8 21082     -6.780029e+00 1.318200e+02
+11 21082     3.318900e+02 -3.234900e+02
+7 21083     5.604399e+02 2.932000e+02
+10 21083     7.423300e+02 3.257200e+02
+7 21084     -2.027100e+02 1.202100e+02
+13 21084     2.576801e+02 -2.068800e+02
+7 21085     -1.141800e+02 -4.435999e+01
+10 21085     -1.391100e+02 -3.314001e+01
+15 21085     -8.712000e+01 -6.958002e+01
+7 21086     -2.310300e+02 1.203400e+02
+10 21086     -2.416700e+02 1.720400e+02
+13 21086     2.302400e+02 -2.083900e+02
+15 21086     -2.039600e+02 1.717900e+02
+7 21087     4.734003e+01 -4.891600e+02
+9 21087     2.816700e+02 -4.324400e+02
+7 21088     3.501001e+01 1.050500e+02
+15 21088     1.242000e+02 1.141700e+02
+7 21089     -1.756900e+02 4.570001e+01
+15 21089     -1.545900e+02 5.534998e+01
+7 21090     -4.552500e+02 3.942800e+02
+11 21090     -7.406000e+01 -3.920700e+02
+8 21091     -2.382001e+01 4.379500e+02
+14 21091     5.113000e+02 4.900000e+01
+8 21092     3.710900e+02 4.191800e+02
+9 21092     1.652400e+02 5.540300e+02
+8 21093     3.334500e+02 4.171800e+02
+11 21093     6.427500e+02 -1.165400e+02
+8 21094     4.098400e+02 4.090400e+02
+9 21094     2.056801e+02 5.449300e+02
+8 21095     1.412000e+02 3.968100e+02
+11 21095     5.316100e+02 -4.713000e+01
+8 21096     -4.744500e+02 3.833400e+02
+11 21096     -1.821400e+02 -1.037100e+02
+8 21097     1.321300e+02 3.713300e+02
+13 21097     5.276600e+02 3.637900e+02
+14 21097     7.214100e+02 -1.512000e+01
+8 21098     -1.678500e+02 3.665400e+02
+11 21098     1.447700e+02 -1.036700e+02
+13 21098     1.934800e+02 3.304500e+02
+14 21098     3.194200e+02 -4.459998e+01
+8 21099     5.257800e+02 3.519600e+02
+9 21099     3.345500e+02 4.938300e+02
+8 21100     3.795100e+02 3.487400e+02
+9 21100     1.765100e+02 4.798900e+02
+8 21101     3.857200e+02 3.273300e+02
+9 21101     1.840000e+02 4.580900e+02
+8 21102     5.259399e+02 3.149700e+02
+9 21102     3.359301e+02 4.561200e+02
+8 21103     -3.709600e+02 3.145200e+02
+11 21103     -8.145001e+01 -1.608500e+02
+8 21104     5.753400e+02 3.055500e+02
+9 21104     3.856899e+02 4.485400e+02
+8 21105     4.549800e+02 2.943900e+02
+12 21105     4.846400e+02 6.054400e+02
+8 21106     -2.758002e+01 2.903900e+02
+9 21106     -2.668300e+02 3.940200e+02
+8 21107     -3.603500e+02 2.848500e+02
+12 21107     -5.986400e+02 5.943200e+02
+8 21108     -3.352200e+02 2.806700e+02
+12 21108     -5.624300e+02 5.926200e+02
+8 21109     -3.352200e+02 2.806700e+02
+12 21109     -5.624300e+02 5.926200e+02
+8 21110     -1.939800e+02 2.754400e+02
+11 21110     1.104100e+02 -1.914500e+02
+8 21111     4.949399e+02 2.736000e+02
+9 21111     3.061700e+02 4.115900e+02
+8 21112     4.990200e+02 2.737300e+02
+9 21112     3.105300e+02 4.121100e+02
+8 21113     -3.550800e+02 2.637900e+02
+12 21113     -5.880100e+02 5.662900e+02
+8 21114     5.048000e+02 2.586800e+02
+9 21114     3.170699e+02 3.969000e+02
+8 21115     2.783100e+02 2.573400e+02
+9 21115     7.200000e+01 3.772700e+02
+8 21116     1.563000e+01 2.567100e+02
+9 21116     -2.208400e+02 3.572000e+02
+8 21117     -4.072700e+02 2.516800e+02
+12 21117     -6.608200e+02 5.426700e+02
+8 21118     -4.000000e+02 2.476200e+02
+12 21118     -6.490100e+02 5.377600e+02
+8 21119     -6.349976e+00 2.458800e+02
+13 21119     3.574200e+02 2.228900e+02
+8 21120     5.984000e+02 2.460000e+02
+9 21120     4.117300e+02 3.891800e+02
+8 21121     -4.022700e+02 2.455500e+02
+11 21121     -1.173800e+02 -2.217000e+02
+12 21121     -6.520800e+02 5.358500e+02
+8 21122     3.008800e+02 2.457200e+02
+12 21122     3.000100e+02 5.691500e+02
+8 21123     -1.376700e+02 2.318500e+02
+9 21123     -3.775700e+02 3.282500e+02
+8 21124     3.136900e+02 2.264100e+02
+9 21124     1.120200e+02 3.460700e+02
+11 21124     6.218900e+02 -3.220400e+02
+12 21124     3.168500e+02 5.411800e+02
+8 21125     -5.252002e+01 2.262200e+02
+9 21125     -2.891200e+02 3.234800e+02
+8 21126     5.902500e+02 2.260300e+02
+10 21126     7.823400e+02 5.379300e+02
+8 21127     1.278003e+01 2.140000e+02
+12 21127     -5.945001e+01 5.525000e+02
+8 21128     -8.981000e+01 2.107800e+02
+9 21128     -3.270200e+02 3.056400e+02
+8 21129     4.319399e+02 2.049100e+02
+9 21129     2.433800e+02 3.362000e+02
+8 21130     5.900800e+02 2.051700e+02
+9 21130     4.047800e+02 3.475600e+02
+8 21131     3.633000e+02 2.044500e+02
+9 21131     1.649600e+02 3.275000e+02
+8 21132     3.221800e+02 2.007100e+02
+9 21132     1.214100e+02 3.199100e+02
+8 21133     3.339000e+02 1.985700e+02
+12 21133     3.427500e+02 5.024400e+02
+8 21134     5.359500e+02 1.983800e+02
+10 21134     7.024301e+02 5.176700e+02
+12 21134     5.890200e+02 4.649400e+02
+8 21135     -4.378998e+01 1.950600e+02
+9 21135     -2.774700e+02 2.891100e+02
+8 21136     3.064800e+02 1.912600e+02
+12 21136     3.072900e+02 4.948900e+02
+8 21137     1.677900e+02 1.888500e+02
+13 21137     5.489800e+02 1.764600e+02
+8 21138     1.677900e+02 1.888500e+02
+13 21138     5.489800e+02 1.764600e+02
+8 21139     5.019000e+02 1.793700e+02
+9 21139     3.167900e+02 3.148000e+02
+8 21140     -2.004900e+02 1.755700e+02
+9 21140     -4.405100e+02 2.648800e+02
+8 21141     5.133101e+02 1.747600e+02
+9 21141     3.285200e+02 3.113600e+02
+8 21142     3.941000e+02 1.629800e+02
+9 21142     1.989500e+02 2.858500e+02
+8 21143     -5.072600e+02 1.603800e+02
+12 21143     -7.850000e+02 4.086200e+02
+8 21144     2.794900e+02 1.595700e+02
+9 21144     7.720001e+01 2.735600e+02
+14 21144     8.665000e+02 -3.664600e+02
+8 21145     -5.041500e+02 1.548000e+02
+11 21145     -2.244300e+02 -2.998100e+02
+12 21145     -7.789400e+02 4.019100e+02
+8 21146     4.723800e+02 1.313300e+02
+9 21146     2.889100e+02 2.633300e+02
+8 21147     4.409900e+02 1.295200e+02
+12 21147     4.638800e+02 3.829200e+02
+8 21148     4.342100e+02 1.235100e+02
+9 21148     2.497600e+02 2.517100e+02
+10 21148     5.573700e+02 4.544900e+02
+15 21148     7.478800e+02 5.165200e+02
+8 21149     -3.385400e+02 1.208900e+02
+12 21149     -5.466300e+02 3.828800e+02
+8 21150     2.956500e+02 1.204800e+02
+13 21150     6.418000e+02 3.656000e+01
+8 21151     5.799200e+02 1.190400e+02
+9 21151     3.986801e+02 2.584700e+02
+8 21152     4.508300e+02 1.170600e+02
+9 21152     2.669500e+02 2.457800e+02
+8 21153     -5.812000e+01 1.167300e+02
+9 21153     -2.895900e+02 2.019100e+02
+13 21153     2.901500e+02 9.685999e+01
+8 21154     -3.170800e+02 1.141400e+02
+12 21154     -5.164300e+02 3.761000e+02
+8 21155     4.402900e+02 1.140700e+02
+15 21155     7.559700e+02 4.991300e+02
+8 21156     -3.561600e+02 1.096100e+02
+11 21156     -7.815002e+01 -3.452100e+02
+13 21156     -9.979980e+00 8.181000e+01
+14 21156     6.565002e+01 -3.343000e+02
+8 21157     5.595699e+02 1.094300e+02
+9 21157     3.786100e+02 2.470400e+02
+10 21157     7.088800e+02 3.845100e+02
+8 21158     4.448400e+02 1.091100e+02
+12 21158     4.685601e+02 3.560500e+02
+8 21159     -3.754400e+02 1.033100e+02
+12 21159     -5.958300e+02 3.545600e+02
+8 21160     5.161801e+02 1.000200e+02
+15 21160     8.587500e+02 4.437900e+02
+8 21161     -4.983700e+02 9.773001e+01
+11 21161     -2.229800e+02 -3.506400e+02
+8 21162     -4.142100e+02 9.704001e+01
+12 21162     -6.484900e+02 3.408400e+02
+8 21163     -1.339100e+02 9.629001e+01
+12 21163     -2.594300e+02 3.807400e+02
+8 21164     4.750000e+02 9.392001e+01
+9 21164     2.929700e+02 2.243300e+02
+8 21165     -5.391600e+02 9.297000e+01
+12 21165     -8.204300e+02 3.195100e+02
+8 21166     -5.110300e+02 9.182999e+01
+10 21166     -6.571500e+02 5.784800e+02
+8 21167     2.169000e+01 9.126999e+01
+9 21167     -2.005000e+02 1.798600e+02
+8 21168     -5.938800e+02 9.094000e+01
+10 21168     -7.726200e+02 5.725100e+02
+14 21168     -1.998600e+02 -3.464500e+02
+8 21169     -5.326300e+02 9.128000e+01
+10 21169     -6.878300e+02 5.760500e+02
+12 21169     -8.097800e+02 3.178000e+02
+8 21170     -5.280000e+02 8.963000e+01
+10 21170     -6.823300e+02 5.734000e+02
+12 21170     -8.038700e+02 3.153500e+02
+8 21171     5.740200e+02 8.845001e+01
+9 21171     3.940800e+02 2.265200e+02
+8 21172     -5.081100e+02 8.725000e+01
+10 21172     -6.528500e+02 5.725800e+02
+12 21172     -7.753400e+02 3.162000e+02
+8 21173     -5.796700e+02 6.325000e+01
+10 21173     -7.491500e+02 5.390600e+02
+15 21173     -7.752700e+02 5.816500e+02
+8 21174     -2.362300e+02 6.200000e+01
+9 21174     -4.713800e+02 1.374300e+02
+8 21175     -4.481900e+02 5.632999e+01
+12 21175     -6.891100e+02 2.846500e+02
+15 21175     -5.670800e+02 5.832200e+02
+8 21176     -4.819900e+02 5.582001e+01
+14 21176     -8.356000e+01 -3.878500e+02
+8 21177     5.304800e+02 5.164001e+01
+9 21177     3.518199e+02 1.858000e+02
+12 21177     5.765100e+02 2.709900e+02
+8 21178     5.546400e+02 5.173999e+01
+10 21178     6.876300e+02 3.096900e+02
+8 21179     5.290000e+02 4.707999e+01
+9 21179     3.503000e+02 1.811500e+02
+8 21180     6.000000e+01 3.442999e+01
+9 21180     -9.097998e+01 1.631300e+02
+8 21181     2.050000e+02 3.467999e+01
+10 21181     -7.179993e+00 2.132400e+02
+13 21181     4.372200e+02 -1.678600e+02
+15 21181     6.514001e+01 2.231900e+02
+8 21182     5.829900e+02 2.807999e+01
+9 21182     4.059500e+02 1.661700e+02
+8 21183     -4.775100e+02 2.525000e+01
+10 21183     -6.026200e+02 4.986100e+02
+12 21183     -7.248600e+02 2.423700e+02
+15 21183     -6.097800e+02 5.397900e+02
+8 21184     1.838900e+02 2.569000e+01
+15 21184     3.335999e+01 2.146200e+02
+8 21185     -1.281400e+02 2.034000e+01
+9 21185     -3.473500e+02 9.975000e+01
+8 21186     2.250500e+02 1.984000e+01
+12 21186     7.841998e+01 1.379400e+02
+8 21187     -5.977900e+02 1.556000e+01
+15 21187     -7.955100e+02 5.153400e+02
+8 21188     -4.545700e+02 1.528000e+01
+10 21188     -5.699200e+02 4.877800e+02
+8 21189     5.587100e+02 1.135999e+01
+10 21189     6.844399e+02 2.556500e+02
+8 21190     -4.812800e+02 2.999878e-02
+12 21190     -7.261400e+02 2.109500e+02
+8 21191     -1.601300e+02 -1.779999e+00
+12 21191     -3.045700e+02 2.338700e+02
+13 21191     1.653300e+02 -3.379999e+01
+14 21191     2.796899e+02 -4.899700e+02
+15 21191     -1.300800e+02 4.900900e+02
+8 21192     5.814100e+02 -1.540009e+00
+12 21192     6.405699e+02 1.956800e+02
+8 21193     -5.524200e+02 -5.140015e+00
+10 21193     -7.020300e+02 4.594000e+02
+12 21193     -8.218900e+02 1.945600e+02
+15 21193     -7.224600e+02 4.920800e+02
+8 21194     -5.899500e+02 -1.588000e+01
+10 21194     -7.497700e+02 4.467800e+02
+11 21194     -3.177200e+02 -4.420100e+02
+15 21194     -7.755300e+02 4.758200e+02
+8 21195     5.577400e+02 -2.832999e+01
+9 21195     3.832800e+02 1.053700e+02
+8 21196     -7.365002e+01 -3.623999e+01
+9 21196     -2.382400e+02 7.210999e+01
+8 21197     5.923800e+02 -3.806000e+01
+10 21197     7.131100e+02 1.784600e+02
+8 21198     -6.031000e+01 -4.012000e+01
+9 21198     -2.225700e+02 6.982001e+01
+8 21199     5.520100e+02 -4.235999e+01
+10 21199     6.634900e+02 1.903200e+02
+8 21200     -5.607300e+02 -4.932001e+01
+13 21200     -2.046600e+02 -5.609003e+01
+14 21200     -1.841300e+02 -4.961500e+02
+8 21201     -7.651001e+01 -5.079001e+01
+9 21201     -2.367900e+02 5.878003e+01
+8 21202     -8.425000e+01 -5.201999e+01
+13 21202     1.810800e+02 -1.745600e+02
+8 21203     1.175100e+02 -6.889001e+01
+12 21203     -6.190997e+01 2.269000e+01
+8 21204     1.360800e+02 -7.250000e+01
+9 21204     3.400024e+00 6.312000e+01
+8 21205     -1.350000e+02 -7.603003e+01
+9 21205     -3.329000e+02 4.369995e+00
+8 21206     3.492200e+02 -8.483002e+01
+12 21206     2.443900e+02 3.960022e+00
+8 21207     1.411400e+02 -8.526001e+01
+15 21207     -5.288000e+01 6.084998e+01
+8 21208     2.521500e+02 -9.203003e+01
+10 21208     1.547998e+01 3.741998e+01
+8 21209     2.187400e+02 -1.251200e+02
+12 21209     6.069000e+01 -5.928003e+01
+8 21210     1.323600e+02 -1.422300e+02
+9 21210     8.409973e+00 -5.880005e+00
+8 21211     -3.469800e+02 -1.645800e+02
+10 21211     -4.981200e+02 2.109300e+02
+13 21211     -3.856000e+01 -1.990700e+02
+8 21212     1.679300e+02 -1.821700e+02
+9 21212     5.002002e+01 -4.139001e+01
+8 21213     1.580400e+02 -1.866300e+02
+12 21213     -2.390002e+01 -1.417300e+02
+8 21214     1.962500e+02 -2.143600e+02
+15 21214     -3.865997e+01 -1.521600e+02
+8 21215     3.359300e+02 -2.190300e+02
+15 21215     1.631300e+02 -1.931300e+02
+8 21216     -2.968200e+02 -2.259800e+02
+10 21216     -4.754200e+02 1.076100e+02
+15 21216     -4.658000e+02 9.089999e+01
+8 21217     2.226900e+02 -2.355800e+02
+9 21217     1.096500e+02 -9.103998e+01
+8 21218     -7.250000e+00 -2.513100e+02
+10 21218     -2.692400e+02 -5.841998e+01
+12 21218     -2.061000e+02 -1.938600e+02
+15 21218     -2.340700e+02 -9.881000e+01
+8 21219     -1.259003e+01 -2.533100e+02
+12 21219     -2.129000e+02 -1.954400e+02
+13 21219     2.075800e+02 -3.848800e+02
+8 21220     2.585200e+02 -2.534300e+02
+9 21220     1.455300e+02 -1.068700e+02
+12 21220     1.070600e+02 -2.234500e+02
+8 21221     2.318900e+02 -2.539900e+02
+9 21221     1.191000e+02 -1.099700e+02
+8 21222     7.352002e+01 -2.709900e+02
+9 21222     -4.415002e+01 -1.442900e+02
+8 21223     -3.271400e+02 -2.721800e+02
+9 21223     -4.987600e+02 -2.056600e+02
+8 21224     2.548800e+02 -2.746900e+02
+9 21224     1.429000e+02 -1.305300e+02
+8 21225     -2.268100e+02 -2.781900e+02
+9 21225     -3.859900e+02 -2.010900e+02
+13 21225     4.046997e+01 -3.414000e+02
+8 21226     7.135999e+01 -3.028500e+02
+9 21226     -4.489001e+01 -1.789900e+02
+8 21227     1.292400e+02 -3.099600e+02
+9 21227     1.657001e+01 -1.786400e+02
+8 21228     9.315002e+01 -3.106900e+02
+9 21228     -2.090997e+01 -1.834800e+02
+8 21229     -2.657400e+02 -3.159800e+02
+13 21229     -3.200073e-01 -3.740400e+02
+8 21230     -2.329900e+02 -3.162900e+02
+9 21230     -3.845900e+02 -2.384100e+02
+8 21231     -3.235100e+02 -3.880600e+02
+9 21231     -4.672200e+02 -3.182200e+02
+8 21232     -2.238300e+02 -3.970100e+02
+13 21232     1.706000e+01 -4.637800e+02
+8 21233     -1.998000e+02 -4.038500e+02
+9 21233     -3.271700e+02 -3.190000e+02
+8 21234     -1.655000e+02 -4.422300e+02
+13 21234     5.558002e+01 -5.201700e+02
+15 21234     -4.404600e+02 -2.912600e+02
+8 21235     2.764500e+02 4.122100e+02
+9 21235     6.359003e+01 5.424500e+02
+8 21236     -5.591300e+02 3.833600e+02
+13 21236     -1.830900e+02 3.160400e+02
+14 21236     -1.264300e+02 -4.463000e+01
+8 21237     9.217999e+01 3.811300e+02
+14 21237     6.650900e+02 -6.770020e+00
+8 21238     1.564400e+02 3.736300e+02
+14 21238     7.574000e+02 -9.479980e+00
+8 21239     1.521100e+02 3.731800e+02
+11 21239     5.467400e+02 -6.951001e+01
+8 21240     -1.046300e+02 3.579500e+02
+11 21240     2.101400e+02 -1.469600e+02
+8 21241     1.365100e+02 3.358300e+02
+11 21241     5.250400e+02 -1.113600e+02
+13 21241     5.296000e+02 3.265100e+02
+14 21241     7.255900e+02 -5.928998e+01
+8 21242     2.565997e+01 3.230300e+02
+9 21242     -2.133800e+02 4.307000e+02
+8 21243     5.170300e+02 3.159100e+02
+9 21243     3.268199e+02 4.563200e+02
+8 21244     -1.047000e+02 2.990200e+02
+9 21244     -3.469900e+02 4.038500e+02
+8 21245     5.978900e+02 2.751100e+02
+9 21245     4.102600e+02 4.191100e+02
+8 21246     -5.175000e+01 2.725700e+02
+9 21246     -2.905400e+02 3.741900e+02
+8 21247     -4.184700e+02 2.715200e+02
+11 21247     -1.326900e+02 -1.999300e+02
+12 21247     -6.789400e+02 5.681300e+02
+8 21248     -5.501100e+02 2.697000e+02
+11 21248     -2.613700e+02 -2.026600e+02
+14 21248     -1.315200e+02 -1.622000e+02
+8 21249     -6.869000e+01 2.647500e+02
+12 21249     -1.790500e+02 6.109900e+02
+8 21250     -2.540002e+01 2.575600e+02
+12 21250     -1.164100e+02 6.065200e+02
+8 21251     1.208500e+02 2.568200e+02
+11 21251     5.023400e+02 -1.941900e+02
+8 21252     4.957400e+02 2.515600e+02
+12 21252     5.388101e+02 5.424200e+02
+8 21253     -4.100000e+02 2.491300e+02
+11 21253     -1.251100e+02 -2.188100e+02
+12 21253     -6.631200e+02 5.397300e+02
+8 21254     -2.859985e+00 2.438700e+02
+9 21254     -2.388400e+02 3.438600e+02
+13 21254     3.614700e+02 2.228100e+02
+8 21255     4.805500e+02 2.330400e+02
+9 21255     2.931801e+02 3.694000e+02
+8 21256     -1.890015e+00 2.100900e+02
+12 21256     -8.065997e+01 5.452300e+02
+8 21257     -7.369995e+00 2.085000e+02
+9 21257     -2.409700e+02 3.045600e+02
+12 21257     -8.831000e+01 5.428500e+02
+8 21258     -3.795001e+01 2.076400e+02
+9 21258     -2.714800e+02 3.038700e+02
+8 21259     -4.864100e+02 2.056100e+02
+12 21259     -7.643000e+02 4.708300e+02
+8 21260     -2.500500e+02 1.946500e+02
+12 21260     -4.312700e+02 4.912900e+02
+8 21261     5.575900e+02 1.744200e+02
+9 21261     3.734800e+02 3.137100e+02
+8 21262     -3.392100e+02 1.661900e+02
+12 21262     -5.525900e+02 4.409500e+02
+8 21263     -2.421400e+02 1.636800e+02
+12 21263     -4.167800e+02 4.514100e+02
+8 21264     4.974301e+02 1.494600e+02
+9 21264     3.138800e+02 2.839100e+02
+12 21264     5.371500e+02 4.038700e+02
+15 21264     8.477300e+02 5.319300e+02
+8 21265     4.188100e+02 1.461900e+02
+9 21265     2.323101e+02 2.743000e+02
+8 21266     5.729000e+02 1.344500e+02
+12 21266     6.348400e+02 3.753700e+02
+8 21267     5.017700e+02 1.295800e+02
+12 21267     5.416899e+02 3.764300e+02
+8 21268     4.858400e+02 1.274500e+02
+9 21268     3.026801e+02 2.601600e+02
+8 21269     4.044800e+02 1.232700e+02
+12 21269     4.170100e+02 3.776900e+02
+8 21270     -4.589300e+02 1.179100e+02
+11 21270     -1.829500e+02 -3.340100e+02
+12 21270     -7.134000e+02 3.613300e+02
+8 21271     -4.807001e+01 1.179800e+02
+9 21271     -2.798500e+02 2.047600e+02
+8 21272     5.598500e+02 1.129300e+02
+9 21272     3.793700e+02 2.506200e+02
+12 21272     6.169100e+02 3.482300e+02
+8 21273     -1.698700e+02 1.048100e+02
+9 21273     -4.032600e+02 1.871600e+02
+8 21274     -1.178800e+02 8.332999e+01
+11 21274     1.920500e+02 -3.742400e+02
+8 21275     -4.823200e+02 8.300000e+01
+11 21275     -2.075800e+02 -3.637500e+02
+8 21276     -5.782900e+02 6.741000e+01
+11 21276     -3.017100e+02 -3.725700e+02
+8 21277     -5.799400e+02 5.469000e+01
+11 21277     -3.049500e+02 -3.838600e+02
+8 21278     -4.756500e+02 4.310001e+01
+11 21278     -2.026100e+02 -3.984500e+02
+8 21279     5.656100e+02 2.704001e+01
+9 21279     3.885601e+02 1.632100e+02
+8 21280     1.775700e+02 1.185001e+01
+12 21280     1.585999e+01 1.280700e+02
+8 21281     -7.789978e+00 -4.820007e+00
+9 21281     -1.701900e+02 1.100400e+02
+8 21282     -6.209003e+01 -1.498999e+01
+12 21282     -2.452900e+02 1.434300e+02
+8 21283     -1.921700e+02 -2.082001e+01
+13 21283     1.300900e+02 -5.269000e+01
+14 21283     2.350900e+02 -5.126700e+02
+8 21284     -4.256700e+02 -2.389999e+01
+10 21284     -5.369500e+02 4.358000e+02
+15 21284     -5.125100e+02 4.820800e+02
+8 21285     -5.908600e+02 -3.453000e+01
+10 21285     -7.482200e+02 4.247600e+02
+13 21285     -2.298100e+02 -4.356000e+01
+8 21286     8.316998e+01 -3.989001e+01
+12 21286     -1.007800e+02 6.566998e+01
+8 21287     -2.632200e+02 -4.700000e+01
+10 21287     -3.379900e+02 3.876800e+02
+15 21287     -3.050300e+02 4.172100e+02
+8 21288     -1.233000e+02 -4.923999e+01
+14 21288     3.050900e+02 -5.735200e+02
+8 21289     -7.658002e+01 -5.510999e+01
+9 21289     -2.360600e+02 5.464001e+01
+8 21290     3.567600e+02 -5.557999e+01
+12 21290     2.574399e+02 4.315002e+01
+8 21291     -1.219100e+02 -5.607999e+01
+9 21291     -3.235500e+02 2.482001e+01
+8 21292     4.260000e+02 -7.687000e+01
+12 21292     3.568800e+02 2.317999e+01
+8 21293     -1.622500e+02 -8.059998e+01
+9 21293     -3.622600e+02 -1.809998e+00
+13 21293     1.430400e+02 -1.277600e+02
+8 21294     2.232000e+02 -9.194000e+01
+13 21294     4.324900e+02 -2.936300e+02
+8 21295     5.270100e+02 -9.450000e+01
+12 21295     5.677500e+02 8.446002e+01
+8 21296     -3.034900e+02 -1.004500e+02
+10 21296     -4.150600e+02 3.066200e+02
+8 21297     2.280200e+02 -1.010100e+02
+9 21297     9.944000e+01 4.141998e+01
+8 21298     5.634600e+02 -1.036700e+02
+9 21298     3.929399e+02 2.929999e+01
+10 21298     6.632800e+02 1.118100e+02
+8 21299     9.162000e+01 -1.463200e+02
+13 21299     3.039000e+02 -3.205400e+02
+8 21300     -1.696500e+02 -1.592800e+02
+13 21300     1.175400e+02 -2.179300e+02
+8 21301     -1.948100e+02 -1.891200e+02
+10 21301     -3.451700e+02 1.452700e+02
+8 21302     1.244800e+02 -2.171800e+02
+9 21302     7.859985e+00 -8.090997e+01
+8 21303     1.676001e+01 -2.327900e+02
+9 21303     -1.073100e+02 -1.121400e+02
+8 21304     -3.172100e+02 -2.617700e+02
+9 21304     -4.902900e+02 -1.946400e+02
+8 21305     4.835999e+01 -2.616400e+02
+12 21305     -1.508400e+02 -2.180100e+02
+8 21306     -2.183100e+02 -2.650100e+02
+9 21306     -3.809100e+02 -1.878500e+02
+8 21307     -3.274000e+02 -2.758300e+02
+9 21307     -4.990200e+02 -2.094100e+02
+13 21307     -4.422998e+01 -3.220400e+02
+8 21308     -2.307900e+02 -2.776000e+02
+13 21308     3.706000e+01 -3.393200e+02
+8 21309     -2.469971e+00 -2.815900e+02
+13 21309     2.138500e+02 -4.102000e+02
+8 21310     8.409973e+00 -2.833500e+02
+9 21310     -1.148900e+02 -1.675400e+02
+8 21311     3.163400e+02 -2.873600e+02
+9 21311     2.045300e+02 -1.355000e+02
+8 21312     4.992800e+02 3.898700e+02
+9 21312     3.063600e+02 5.323700e+02
+8 21313     4.945500e+02 3.786200e+02
+9 21313     3.018000e+02 5.201400e+02
+8 21314     2.571002e+01 3.102900e+02
+9 21314     -2.130500e+02 4.169600e+02
+11 21314     3.796700e+02 -1.449000e+02
+8 21315     4.798700e+02 2.996600e+02
+9 21315     2.896801e+02 4.376200e+02
+8 21316     -5.732500e+02 2.740500e+02
+11 21316     -2.822900e+02 -1.990700e+02
+8 21317     6.969971e+00 2.690800e+02
+11 21317     3.533400e+02 -1.882500e+02
+8 21318     7.109985e+00 2.621200e+02
+9 21318     -2.295700e+02 3.631100e+02
+8 21319     7.109985e+00 2.621200e+02
+9 21319     -2.295700e+02 3.631100e+02
+8 21320     5.827600e+02 2.487100e+02
+10 21320     7.817700e+02 5.731700e+02
+8 21321     -2.989990e+00 2.329500e+02
+11 21321     3.394600e+02 -2.252000e+02
+12 21321     -8.257001e+01 5.776000e+02
+13 21321     3.602000e+02 2.117300e+02
+8 21322     2.922998e+01 2.102100e+02
+9 21322     -2.038200e+02 3.065100e+02
+8 21323     1.647300e+02 1.945800e+02
+9 21323     -6.631000e+01 2.925100e+02
+13 21323     5.462600e+02 1.827900e+02
+14 21323     7.540400e+02 -2.328900e+02
+8 21324     4.710699e+02 1.872900e+02
+12 21324     5.036200e+02 4.575700e+02
+8 21325     4.199900e+02 1.817300e+02
+12 21325     4.376801e+02 4.549700e+02
+8 21326     -5.971997e+01 1.817100e+02
+12 21326     -1.611000e+02 5.014200e+02
+8 21327     -5.975000e+01 1.751700e+02
+13 21327     2.941300e+02 1.524600e+02
+14 21327     4.412500e+02 -2.610600e+02
+8 21328     4.496700e+02 1.718900e+02
+9 21328     2.635400e+02 3.029600e+02
+8 21329     4.603400e+02 1.685500e+02
+9 21329     2.744500e+02 3.004700e+02
+8 21330     4.265002e+01 1.674700e+02
+11 21330     3.959200e+02 -2.899300e+02
+8 21331     5.709100e+02 1.420600e+02
+9 21331     3.891300e+02 2.808500e+02
+8 21332     -3.928500e+02 1.353800e+02
+11 21332     -1.132800e+02 -3.201200e+02
+8 21333     -7.153003e+01 1.178900e+02
+9 21333     -3.032100e+02 2.032900e+02
+8 21334     4.888000e+02 1.130700e+02
+9 21334     3.080000e+02 2.462800e+02
+12 21334     5.272300e+02 3.569400e+02
+8 21335     -4.774900e+02 1.122100e+02
+12 21335     -7.368400e+02 3.529300e+02
+8 21336     -4.735200e+02 1.076300e+02
+11 21336     -1.976400e+02 -3.424800e+02
+8 21337     5.140400e+02 9.532999e+01
+12 21337     5.568500e+02 3.297900e+02
+8 21338     4.580601e+02 9.510001e+01
+12 21338     4.852800e+02 3.359400e+02
+8 21339     3.478800e+02 9.164001e+01
+12 21339     3.596899e+02 3.591100e+02
+8 21340     -4.831200e+02 8.841000e+01
+11 21340     -2.090300e+02 -3.589200e+02
+8 21341     -5.374600e+02 8.748999e+01
+10 21341     -6.946800e+02 5.705200e+02
+11 21341     -2.610600e+02 -3.573000e+02
+8 21342     -3.033500e+02 5.253000e+01
+12 21342     -4.904400e+02 3.008100e+02
+8 21343     1.274200e+02 3.617999e+01
+13 21343     3.665400e+02 -1.510700e+02
+8 21344     1.274200e+02 3.617999e+01
+13 21344     3.665400e+02 -1.510700e+02
+8 21345     5.774100e+02 3.050000e+01
+12 21345     6.358700e+02 2.376700e+02
+8 21346     -1.080100e+02 -5.670013e+00
+10 21346     -1.274200e+02 4.313900e+02
+11 21346     1.453700e+02 -4.957800e+02
+15 21346     -6.006000e+01 4.721400e+02
+8 21347     2.499600e+02 -9.660004e+00
+12 21347     1.093400e+02 9.596997e+01
+13 21347     4.715000e+02 -2.195400e+02
+8 21348     -8.371002e+01 -4.384000e+01
+9 21348     -2.477600e+02 6.494000e+01
+8 21349     -1.318500e+02 -7.021002e+01
+9 21349     -3.312600e+02 1.094000e+01
+8 21350     -2.256000e+01 -1.115300e+02
+12 21350     -2.260000e+02 -1.746002e+01
+8 21351     2.922800e+02 -1.997500e+02
+9 21351     1.774100e+02 -4.815002e+01
+8 21352     -2.547200e+02 -2.634300e+02
+9 21352     -4.207600e+02 -1.899200e+02
+13 21352     2.016998e+01 -3.197500e+02
+8 21353     -2.881100e+02 -2.793900e+02
+13 21353     -1.135999e+01 -3.324200e+02
+8 21354     4.438000e+01 -3.150000e+02
+9 21354     -7.144000e+01 -1.943800e+02
+8 21355     -4.167000e+02 -3.306800e+02
+13 21355     -1.281500e+02 -3.653900e+02
+8 21356     -1.834800e+02 4.104600e+02
+11 21356     1.287700e+02 -6.322998e+01
+8 21357     -1.834800e+02 4.104600e+02
+11 21357     1.287700e+02 -6.322998e+01
+8 21358     2.639200e+02 2.579900e+02
+9 21358     5.681000e+01 3.763200e+02
+8 21359     5.596002e+01 2.416500e+02
+9 21359     -1.796600e+02 3.407700e+02
+8 21360     4.697998e+01 2.394000e+02
+9 21360     -1.879900e+02 3.382500e+02
+8 21361     -4.392999e+01 2.186300e+02
+9 21361     -2.795600e+02 3.162100e+02
+8 21362     4.033002e+01 2.184600e+02
+12 21362     -2.015002e+01 5.636000e+02
+8 21363     -1.582000e+02 1.735300e+02
+9 21363     -3.960300e+02 2.632000e+02
+11 21363     1.479600e+02 -2.871000e+02
+8 21364     -6.907001e+01 1.715200e+02
+12 21364     -1.739000e+02 4.867400e+02
+8 21365     5.097500e+02 1.713400e+02
+12 21365     5.536200e+02 4.317900e+02
+8 21366     -1.627900e+02 1.388600e+02
+9 21366     -3.990100e+02 2.243600e+02
+8 21367     -2.785800e+02 1.243000e+02
+12 21367     -4.632800e+02 3.955400e+02
+8 21368     4.238199e+02 8.254001e+01
+15 21368     7.240699e+02 4.571300e+02
+8 21369     -5.815800e+02 5.959000e+01
+11 21369     -3.041500e+02 -3.791600e+02
+8 21370     -4.574700e+02 9.209991e+00
+12 21370     -6.954800e+02 2.253600e+02
+8 21371     -1.078700e+02 -1.145999e+01
+9 21371     -3.188400e+02 6.977002e+01
+13 21371     2.129800e+02 -5.082001e+01
+14 21371     3.396000e+02 -5.145400e+02
+8 21372     4.934200e+02 -3.250000e+01
+12 21372     5.265601e+02 1.680900e+02
+8 21373     5.594500e+02 -4.385001e+01
+12 21373     6.105300e+02 1.455800e+02
+8 21374     5.594500e+02 -4.385001e+01
+12 21374     6.105300e+02 1.455800e+02
+8 21375     1.859800e+02 -7.785999e+01
+12 21375     2.284003e+01 8.039978e+00
+8 21376     5.459800e+02 -9.329999e+01
+12 21376     5.910300e+02 8.407001e+01
+8 21377     5.607600e+02 -9.884998e+01
+12 21377     6.107200e+02 7.531000e+01
+8 21378     4.061600e+02 -2.527000e+02
+12 21378     3.106700e+02 -2.134600e+02
+8 21379     -3.312300e+02 -3.196900e+02
+13 21379     -5.628998e+01 -3.681200e+02
+15 21379     -5.622700e+02 -5.828998e+01
+8 21380     -3.192000e+02 -3.279500e+02
+9 21380     -4.775200e+02 -2.607900e+02
+8 21381     -3.192000e+02 -3.279500e+02
+9 21381     -4.775200e+02 -2.607900e+02
+8 21382     -2.396700e+02 -3.282600e+02
+9 21382     -3.893100e+02 -2.511500e+02
+8 21383     -3.224700e+02 3.948800e+02
+14 21383     1.346500e+02 -2.235999e+01
+8 21384     -8.790002e+01 1.836300e+02
+12 21384     -1.939900e+02 5.032900e+02
+8 21385     -3.933800e+02 8.569000e+01
+12 21385     -6.185800e+02 3.306700e+02
+8 21386     4.937200e+02 4.844000e+01
+9 21386     3.148199e+02 1.796100e+02
+8 21387     3.658000e+02 -5.539999e+01
+12 21387     2.711500e+02 4.522998e+01
+8 21388     -7.220001e+01 -1.969700e+02
+9 21388     -2.162300e+02 -9.271002e+01
+8 21389     1.010200e+02 -3.158200e+02
+9 21389     -1.187000e+01 -1.886500e+02
+8 21390     -2.442500e+02 -3.511900e+02
+9 21390     -3.915000e+02 -2.736900e+02
+13 21390     8.979980e+00 -4.139400e+02
+8 21391     5.016200e+02 1.747200e+02
+12 21391     5.424399e+02 4.395400e+02
+8 21392     -9.667001e+01 1.653400e+02
+12 21392     -2.121100e+02 4.759600e+02
+8 21393     1.830700e+02 -7.269989e+00
+12 21393     2.060999e+01 1.000200e+02
+8 21394     2.733400e+02 -1.745001e+01
+12 21394     1.406600e+02 8.694000e+01
+8 21395     2.059998e+01 -1.472500e+02
+12 21395     -1.861900e+02 -7.663000e+01
+8 21396     8.481000e+01 -1.676900e+02
+12 21396     -1.103300e+02 -1.109100e+02
+8 21397     4.588300e+02 -1.841300e+02
+9 21397     3.264500e+02 -3.184998e+01
+8 21398     3.625700e+02 -3.015400e+02
+12 21398     2.509100e+02 -2.716400e+02
+8 21399     2.208900e+02 -3.080900e+02
+13 21399     4.027900e+02 -4.894301e+02
+8 21400     4.294800e+02 3.110700e+02
+9 21400     2.369700e+02 4.465800e+02
+8 21401     2.079999e+01 2.215800e+02
+12 21401     -5.028998e+01 5.645500e+02
+8 21402     -3.715800e+02 1.162700e+02
+12 21402     -5.913100e+02 3.716500e+02
+8 21403     -1.386700e+02 3.079987e+00
+9 21403     -3.556000e+02 8.191000e+01
+13 21403     1.879900e+02 -2.996997e+01
+14 21403     3.080900e+02 -4.865300e+02
+8 21404     5.736899e+02 -3.579001e+01
+12 21404     6.281400e+02 1.538600e+02
+8 21405     -3.642300e+02 2.854900e+02
+12 21405     -6.042300e+02 5.945100e+02
+8 21406     2.272900e+02 2.367700e+02
+9 21406     9.890015e+00 3.426500e+02
+8 21407     -1.529999e+01 3.078800e+02
+13 21407     3.552400e+02 2.851900e+02
+8 21408     1.457100e+02 3.018200e+02
+9 21408     -8.971002e+01 4.071000e+02
+13 21408     5.372100e+02 2.962500e+02
+14 21408     7.368300e+02 -9.250000e+01
+8 21409     5.753800e+02 1.363800e+02
+9 21409     3.947200e+02 2.758600e+02
+8 21410     -7.429993e+00 9.748999e+01
+13 21410     3.361200e+02 7.759998e+01
+14 21410     4.940000e+02 -3.559800e+02
+9 21411     -2.197100e+02 4.373300e+02
+14 21411     5.607200e+02 -7.502002e+01
+9 21412     -6.903003e+01 4.143000e+02
+14 21412     7.667700e+02 -9.134003e+01
+9 21413     -2.834900e+02 3.984800e+02
+11 21413     2.910100e+02 -1.661500e+02
+14 21413     4.724200e+02 -1.206500e+02
+9 21414     -2.831300e+02 3.739000e+02
+11 21414     2.893500e+02 -1.882800e+02
+14 21414     4.695900e+02 -1.464800e+02
+9 21415     -1.691000e+02 3.740300e+02
+11 21415     4.331400e+02 -1.821600e+02
+9 21416     -1.509100e+02 3.605300e+02
+11 21416     4.530500e+02 -1.946400e+02
+9 21417     -3.600300e+02 3.573500e+02
+11 21417     1.972200e+02 -2.057500e+02
+9 21418     -1.505100e+02 3.539500e+02
+13 21418     4.592900e+02 2.369600e+02
+9 21419     3.530601e+02 3.396200e+02
+12 21419     5.911000e+02 4.698900e+02
+9 21420     -1.673000e+02 3.367800e+02
+11 21420     4.298199e+02 -2.176400e+02
+9 21421     -1.334300e+02 2.965000e+02
+12 21421     6.496997e+01 5.479500e+02
+9 21422     7.939001e+01 2.827500e+02
+13 21422     6.335900e+02 8.745999e+01
+9 21423     8.228003e+01 2.823600e+02
+12 21423     2.791600e+02 4.653500e+02
+9 21424     -3.239500e+02 2.695800e+02
+11 21424     1.274000e+02 -3.301000e+02
+9 21425     -3.384600e+02 2.691000e+02
+11 21425     2.034800e+02 -2.864800e+02
+9 21426     4.665601e+02 2.395100e+02
+12 21426     7.298800e+02 3.152700e+02
+9 21427     4.657100e+02 2.335800e+02
+10 21427     8.138700e+02 3.215400e+02
+12 21427     7.273900e+02 3.084900e+02
+9 21428     4.703400e+02 2.331600e+02
+10 21428     8.200900e+02 3.191200e+02
+9 21429     4.568700e+02 2.158000e+02
+12 21429     7.138600e+02 2.873700e+02
+9 21430     4.953600e+02 2.125100e+02
+12 21430     7.646500e+02 2.750100e+02
+9 21431     2.541100e+02 1.979000e+02
+10 21431     5.489600e+02 3.847600e+02
+9 21432     2.477000e+02 1.936700e+02
+15 21432     7.291700e+02 4.311100e+02
+9 21433     2.854301e+02 1.776300e+02
+10 21433     5.798000e+02 3.435200e+02
+15 21433     7.771700e+02 3.839500e+02
+9 21434     4.510100e+02 1.774900e+02
+12 21434     7.017600e+02 2.400600e+02
+9 21435     2.697300e+02 1.701000e+02
+15 21435     7.530601e+02 3.830700e+02
+9 21436     4.528400e+02 1.432100e+02
+12 21436     7.014500e+02 1.945700e+02
+9 21437     4.532300e+02 1.377500e+02
+10 21437     7.664000e+02 2.070400e+02
+9 21438     4.526000e+02 1.234800e+02
+12 21438     6.983800e+02 1.702000e+02
+9 21439     8.103998e+01 1.091500e+02
+10 21439     -1.889001e+01 1.173800e+02
+9 21440     8.103998e+01 1.091500e+02
+10 21440     -1.889001e+01 1.173800e+02
+9 21441     4.477000e+02 1.086600e+02
+10 21441     7.503500e+02 1.740200e+02
+9 21442     4.500000e+02 1.070100e+02
+10 21442     7.519700e+02 1.706300e+02
+9 21443     4.371801e+02 9.801001e+01
+10 21443     7.337800e+02 1.671100e+02
+9 21444     4.445400e+02 8.444000e+01
+10 21444     7.390200e+02 1.468600e+02
+9 21445     -2.886800e+02 4.577002e+01
+10 21445     -1.242700e+02 3.716200e+02
+14 21445     3.546801e+02 -5.624500e+02
+9 21446     -2.991400e+02 2.685999e+01
+13 21446     2.083700e+02 -1.065600e+02
+9 21447     4.965500e+02 2.581000e+01
+12 21447     7.442600e+02 3.878998e+01
+9 21448     4.080400e+02 -1.383002e+01
+10 21448     6.357000e+02 3.526001e+01
+15 21448     8.475400e+02 1.694000e+01
+9 21449     -4.419500e+02 -3.053998e+01
+13 21449     6.906000e+01 -1.431900e+02
+9 21450     5.408600e+02 -8.859998e+01
+12 21450     7.502400e+02 -1.473400e+02
+9 21451     1.300600e+02 -1.254700e+02
+12 21451     8.859998e+01 -2.402500e+02
+9 21452     5.841899e+02 -1.433000e+02
+12 21452     7.752200e+02 -2.483800e+02
+9 21453     -1.384998e+01 -4.291500e+02
+10 21453     -2.766800e+02 -4.233900e+02
+9 21454     2.412600e+02 4.310300e+02
+12 21454     4.573600e+02 6.090600e+02
+9 21455     -2.259900e+02 3.715300e+02
+13 21455     3.784399e+02 2.495600e+02
+9 21456     -7.359998e+01 3.519800e+02
+13 21456     5.481500e+02 2.394000e+02
+14 21456     7.531200e+02 -1.638700e+02
+9 21457     -5.164001e+01 2.772300e+02
+13 21457     5.582200e+02 1.666700e+02
+14 21457     7.701300e+02 -2.527100e+02
+9 21458     3.515900e+02 2.671700e+02
+12 21458     5.835300e+02 3.746700e+02
+9 21459     1.090100e+02 2.604600e+02
+10 21459     4.542000e+02 5.665000e+02
+13 21459     6.578000e+02 5.819000e+01
+9 21460     2.361600e+02 2.574300e+02
+12 21460     4.400000e+02 3.861500e+02
+9 21461     2.108700e+02 2.102700e+02
+15 21461     6.850200e+02 4.756200e+02
+9 21462     5.286899e+02 2.078500e+02
+12 21462     8.089800e+02 2.617500e+02
+9 21463     2.540400e+02 2.069800e+02
+10 21463     5.517200e+02 3.959400e+02
+12 21463     4.578600e+02 3.176500e+02
+9 21464     -1.448100e+02 1.950900e+02
+13 21464     4.257400e+02 7.321002e+01
+9 21465     -1.448100e+02 1.950900e+02
+13 21465     4.257400e+02 7.321002e+01
+14 21465     6.073300e+02 -3.655700e+02
+9 21466     4.229600e+02 1.572400e+02
+12 21466     6.631400e+02 2.195300e+02
+9 21467     4.369301e+02 1.463100e+02
+12 21467     6.800000e+02 2.027200e+02
+9 21468     4.816100e+02 1.256200e+02
+12 21468     7.358900e+02 1.669200e+02
+9 21469     -4.987500e+02 1.160400e+02
+11 21469     2.084998e+01 -4.076400e+02
+9 21470     4.517400e+02 1.150700e+02
+12 21470     6.964200e+02 1.604100e+02
+9 21471     4.629900e+02 4.028998e+01
+12 21471     7.020500e+02 6.554999e+01
+9 21472     4.895400e+02 2.376001e+01
+12 21472     7.335900e+02 3.901001e+01
+9 21473     4.747900e+02 8.030029e+00
+12 21473     7.134700e+02 2.278998e+01
+9 21474     4.464600e+02 5.989990e+00
+12 21474     6.776000e+02 2.744000e+01
+9 21475     5.272900e+02 1.760010e+00
+12 21475     7.805900e+02 2.030029e+00
+9 21476     -3.769300e+02 -1.782400e+02
+13 21476     5.701001e+01 -3.188600e+02
+9 21477     2.273500e+02 -1.901900e+02
+15 21477     1.925900e+02 -3.183400e+02
+9 21478     -4.610000e+02 -2.313100e+02
+13 21478     -2.541998e+01 -3.533000e+02
+15 21478     -5.142700e+02 -3.601001e+01
+9 21479     4.556400e+02 -3.455200e+02
+12 21479     4.753000e+02 -5.550699e+02
+9 21480     -2.424400e+02 -3.755600e+02
+15 21480     -4.209700e+02 -3.427300e+02
+9 21481     -3.012600e+02 4.362800e+02
+11 21481     2.730000e+02 -1.331900e+02
+9 21482     -2.182900e+02 4.046200e+02
+14 21482     5.583900e+02 -1.105600e+02
+9 21483     -2.623200e+02 3.799500e+02
+11 21483     3.147100e+02 -1.819000e+02
+9 21484     -1.675400e+02 3.783200e+02
+11 21484     4.350000e+02 -1.788900e+02
+9 21485     2.781600e+02 3.448800e+02
+10 21485     6.158300e+02 5.649000e+02
+9 21486     3.467900e+02 3.387700e+02
+10 21486     6.979700e+02 5.223200e+02
+9 21487     -4.385999e+01 3.227300e+02
+13 21487     5.786400e+02 2.141800e+02
+9 21488     2.869600e+02 3.123700e+02
+12 21488     5.058900e+02 4.452600e+02
+9 21489     4.479000e+02 2.627900e+02
+12 21489     7.072300e+02 3.499400e+02
+9 21490     1.484900e+02 2.608000e+02
+12 21490     3.562900e+02 4.267600e+02
+9 21491     4.436300e+02 2.502100e+02
+12 21491     7.002000e+02 3.345400e+02
+9 21492     -2.789400e+02 2.196100e+02
+11 21492     2.802800e+02 -3.243400e+02
+9 21493     -4.089800e+02 2.160900e+02
+14 21493     2.911100e+02 -3.121300e+02
+9 21494     5.170300e+02 2.064600e+02
+12 21494     7.917500e+02 2.628700e+02
+9 21495     4.489399e+02 1.138600e+02
+12 21495     6.921400e+02 1.595600e+02
+9 21496     4.602400e+02 9.979001e+01
+10 21496     7.621300e+02 1.564900e+02
+9 21497     4.140200e+02 7.987000e+01
+10 21497     7.020900e+02 1.579500e+02
+9 21498     3.906801e+02 5.653998e+01
+10 21498     6.687900e+02 1.433300e+02
+9 21499     -3.084300e+02 4.157001e+01
+10 21499     -1.479700e+02 3.697400e+02
+9 21500     6.001200e+02 -1.337700e+02
+12 21500     8.036700e+02 -2.352200e+02
+9 21501     5.815900e+02 -1.464900e+02
+12 21501     7.698600e+02 -2.533800e+02
+9 21502     -4.461700e+02 -2.013800e+02
+13 21502     -5.030029e+00 -3.278100e+02
+9 21503     3.754700e+02 -3.482000e+02
+10 21503     1.844700e+02 -4.856801e+02
+9 21504     -1.143300e+02 -4.593500e+02
+15 21504     -3.711600e+02 -5.232600e+02
+9 21505     -2.175100e+02 4.265700e+02
+14 21505     5.623000e+02 -8.578003e+01
+9 21506     8.888000e+01 4.021100e+02
+12 21506     2.925800e+02 6.154000e+02
+9 21507     2.570400e+02 3.372900e+02
+10 21507     5.882300e+02 5.639500e+02
+9 21508     2.501100e+02 2.857200e+02
+12 21508     4.585500e+02 4.174600e+02
+9 21509     3.684998e+01 1.810300e+02
+13 21509     4.155300e+02 -1.559400e+02
+9 21510     4.430699e+02 1.612500e+02
+12 21510     6.896600e+02 2.210500e+02
+9 21511     5.053199e+02 5.598999e+01
+10 21511     8.037400e+02 7.878998e+01
+9 21512     -3.136000e+02 2.191998e+01
+13 21512     1.955699e+02 -1.083300e+02
+9 21513     -3.719700e+02 -1.595000e+02
+10 21513     -3.820400e+02 7.373999e+01
+15 21513     -3.592400e+02 5.234998e+01
+9 21514     -4.969200e+02 -2.093900e+02
+13 21514     -4.264001e+01 -3.223500e+02
+9 21515     5.406100e+02 -2.971900e+02
+12 21515     6.138400e+02 -4.968400e+02
+9 21516     2.327002e+01 -3.217400e+02
+15 21516     -1.213800e+02 -3.925200e+02
+9 21517     5.559700e+02 -3.383000e+02
+12 21517     6.122600e+02 -5.668000e+02
+9 21518     -2.756200e+02 2.107800e+02
+11 21518     2.821600e+02 -3.344100e+02
+13 21518     3.048600e+02 1.051600e+02
+9 21519     -1.706800e+02 1.652700e+02
+13 21519     3.859000e+02 3.859003e+01
+14 21519     5.584399e+02 -4.077600e+02
+9 21520     4.844700e+02 1.314400e+02
+12 21520     7.401400e+02 1.730400e+02
+9 21521     3.744301e+02 9.429001e+01
+12 21521     5.966200e+02 1.519700e+02
+9 21522     -3.870200e+02 9.206000e+01
+14 21522     2.798199e+02 -4.624301e+02
+9 21523     5.574399e+02 -3.035100e+02
+12 21523     6.368600e+02 -5.112700e+02
+9 21524     3.376899e+02 1.784800e+02
+10 21524     6.391899e+02 3.173500e+02
+9 21525     -3.575400e+02 2.739000e+02
+11 21525     1.861800e+02 -2.806700e+02
+9 21526     4.587000e+01 -2.575700e+02
+13 21526     3.254900e+02 -5.481100e+02
+9 21527     -3.117000e+02 -3.501400e+02
+13 21527     3.444000e+01 -5.101100e+02
+9 21528     5.335699e+02 -3.543400e+02
+12 21528     5.717100e+02 -5.867200e+02
+9 21529     4.570400e+02 2.372400e+02
+12 21529     7.169399e+02 3.160200e+02
+9 21530     -2.320200e+02 3.508800e+02
+11 21530     3.487400e+02 -2.056300e+02
+9 21531     -3.279600e+02 2.987600e+02
+11 21531     2.295400e+02 -2.561000e+02
+9 21532     -3.279600e+02 2.987600e+02
+11 21532     2.295400e+02 -2.561000e+02
+9 21533     -3.648800e+02 2.917200e+02
+11 21533     1.845600e+02 -2.614200e+02
+10 21534     6.525800e+02 6.086000e+02
+12 21534     5.265800e+02 5.355000e+02
+10 21535     -9.954999e+01 6.054500e+02
+12 21535     -2.520900e+02 3.796700e+02
+10 21536     -3.808600e+02 5.966000e+02
+12 21536     -5.138900e+02 3.559300e+02
+10 21537     -4.277200e+02 5.940900e+02
+14 21537     7.327002e+01 -3.466700e+02
+10 21538     -6.335200e+02 5.908700e+02
+12 21538     -7.560800e+02 3.362700e+02
+10 21539     -3.824300e+02 5.848600e+02
+12 21539     -5.149700e+02 3.451900e+02
+10 21540     -6.721600e+02 5.787600e+02
+12 21540     -7.937900e+02 3.215100e+02
+10 21541     -7.225000e+02 5.643700e+02
+14 21541     -1.632500e+02 -3.563500e+02
+10 21542     -1.628300e+02 5.502200e+02
+14 21542     2.864900e+02 -3.996700e+02
+10 21543     -1.578500e+02 5.393500e+02
+14 21543     2.926200e+02 -4.103800e+02
+10 21544     -5.013800e+02 5.312700e+02
+12 21544     -6.270400e+02 2.826400e+02
+10 21545     -5.399900e+02 5.295500e+02
+12 21545     -6.642100e+02 2.792700e+02
+10 21546     -6.214100e+02 5.189200e+02
+11 21546     -2.166300e+02 -3.971100e+02
+14 21546     -9.301001e+01 -4.014900e+02
+10 21547     -4.853998e+01 5.171700e+02
+11 21547     2.139500e+02 -4.316600e+02
+14 21547     3.988600e+02 -4.337600e+02
+15 21547     3.312000e+01 5.733200e+02
+10 21548     -4.816900e+02 5.051400e+02
+12 21548     -6.074600e+02 2.571300e+02
+15 21548     -4.713300e+02 5.501100e+02
+10 21549     6.273101e+02 5.025300e+02
+12 21549     5.174800e+02 4.343200e+02
+15 21549     8.299200e+02 5.752900e+02
+10 21550     -6.924500e+02 4.876500e+02
+12 21550     -8.175800e+02 2.205100e+02
+10 21551     -6.787900e+02 4.866500e+02
+12 21551     -8.035000e+02 2.204300e+02
+15 21551     -6.956000e+02 5.235900e+02
+10 21552     -6.045000e+02 4.829000e+02
+12 21552     -7.262900e+02 2.258000e+02
+10 21553     -6.045000e+02 4.829000e+02
+12 21553     -7.262900e+02 2.258000e+02
+10 21554     -6.038500e+02 4.786200e+02
+12 21554     -7.255000e+02 2.214400e+02
+10 21555     4.936000e+02 4.677400e+02
+12 21555     3.640100e+02 3.497300e+02
+10 21556     -6.327100e+02 4.655000e+02
+12 21556     -7.552500e+02 2.044400e+02
+15 21556     -6.438000e+02 5.006700e+02
+10 21557     -6.335400e+02 4.625800e+02
+12 21557     -7.555400e+02 2.014300e+02
+15 21557     -6.447700e+02 4.972600e+02
+10 21558     -8.008900e+02 4.586500e+02
+14 21558     -2.470100e+02 -4.438900e+02
+10 21559     -6.231300e+02 4.343700e+02
+12 21559     -7.448200e+02 1.720000e+02
+10 21560     -7.472100e+02 4.287000e+02
+14 21560     -2.112600e+02 -4.742200e+02
+10 21561     -7.532300e+02 4.245300e+02
+14 21561     -2.181300e+02 -4.779399e+02
+15 21561     -7.792000e+02 4.505800e+02
+10 21562     7.605699e+02 3.968900e+02
+12 21562     6.640699e+02 3.669600e+02
+10 21563     7.486400e+02 3.936100e+02
+12 21563     6.532900e+02 3.612200e+02
+10 21564     5.611000e+02 3.749500e+02
+12 21564     4.702300e+02 3.000800e+02
+10 21565     7.898300e+02 3.717700e+02
+12 21565     6.962100e+02 3.498700e+02
+10 21566     5.655601e+02 3.710200e+02
+12 21566     4.750300e+02 2.976500e+02
+10 21567     -3.570200e+02 3.672100e+02
+14 21567     1.306500e+02 -5.556600e+02
+10 21568     7.850900e+02 3.670300e+02
+12 21568     6.925601e+02 3.441000e+02
+10 21569     8.030699e+02 3.633400e+02
+12 21569     7.105000e+02 3.450500e+02
+10 21570     -6.516500e+02 3.569800e+02
+14 21570     -1.472700e+02 -5.479800e+02
+10 21571     7.810100e+02 3.559000e+02
+12 21571     6.903400e+02 3.334800e+02
+10 21572     7.321801e+02 3.390700e+02
+12 21572     6.464900e+02 3.069200e+02
+10 21573     -6.328900e+02 3.248600e+02
+14 21573     -1.265300e+02 -5.788101e+02
+10 21574     7.736200e+02 3.189300e+02
+12 21574     6.896600e+02 2.976200e+02
+10 21575     6.245601e+02 2.904200e+02
+12 21575     5.471801e+02 2.338300e+02
+10 21576     7.159301e+02 2.826000e+02
+12 21576     6.393900e+02 2.503000e+02
+10 21577     6.728400e+02 2.646400e+02
+12 21577     5.993800e+02 2.211700e+02
+10 21578     7.870800e+02 2.585300e+02
+12 21578     7.127000e+02 2.438700e+02
+10 21579     5.344500e+02 2.351000e+02
+12 21579     4.629399e+02 1.567400e+02
+10 21580     5.038900e+02 2.343600e+02
+12 21580     4.305699e+02 1.480100e+02
+15 21580     6.880000e+02 2.521000e+02
+10 21581     -2.100220e-01 2.339000e+02
+12 21581     5.640002e+01 1.790900e+02
+10 21582     1.247000e+02 2.301300e+02
+12 21582     1.797200e+02 1.919500e+02
+15 21582     2.202700e+02 2.450800e+02
+10 21583     7.689399e+02 2.287800e+02
+12 21583     6.996500e+02 2.106000e+02
+10 21584     -6.877002e+01 2.160000e+02
+12 21584     -1.198999e+01 1.496600e+02
+15 21584     -6.799988e+00 2.248500e+02
+10 21585     7.669500e+02 2.133100e+02
+12 21585     6.994399e+02 1.959000e+02
+10 21586     -1.710300e+02 2.026200e+02
+12 21586     -1.289300e+02 1.080500e+02
+15 21586     -1.241900e+02 2.078400e+02
+10 21587     2.740002e+01 1.973300e+02
+12 21587     9.389001e+01 1.500100e+02
+15 21587     1.057500e+02 2.049800e+02
+10 21588     2.740002e+01 1.973300e+02
+12 21588     9.389001e+01 1.500100e+02
+15 21588     1.057500e+02 2.049800e+02
+10 21589     -7.167999e+01 1.794700e+02
+12 21589     -6.760010e+00 1.142900e+02
+10 21590     5.789600e+02 1.733700e+02
+12 21590     5.176200e+02 1.078900e+02
+15 21590     7.790400e+02 1.808900e+02
+10 21591     8.212700e+02 1.443500e+02
+12 21591     7.642700e+02 1.429600e+02
+10 21592     1.067100e+02 1.363200e+02
+12 21592     1.841700e+02 1.014400e+02
+15 21592     1.996200e+02 1.343500e+02
+10 21593     6.403700e+02 1.258500e+02
+12 21593     5.875200e+02 7.702002e+01
+15 21593     8.535000e+02 1.246500e+02
+10 21594     -4.008500e+02 9.542999e+01
+12 21594     -4.306000e+02 -1.072200e+02
+15 21594     -3.805400e+02 7.803003e+01
+10 21595     -7.045100e+02 5.973999e+01
+13 21595     -1.798500e+02 -3.061000e+02
+15 21595     -7.293700e+02 3.327002e+01
+10 21596     -1.739100e+02 5.148999e+01
+12 21596     -9.695001e+01 -3.740997e+01
+15 21596     -1.271500e+02 3.128003e+01
+10 21597     -9.541998e+01 1.595001e+01
+12 21597     -1.520020e+00 -5.554999e+01
+10 21598     -2.133700e+02 5.330017e+00
+12 21598     -1.329700e+02 -9.435999e+01
+15 21598     -1.719200e+02 -2.277002e+01
+10 21599     -5.594300e+02 -1.630005e+00
+12 21599     -5.782100e+02 -2.256300e+02
+15 21599     -5.639700e+02 -3.595001e+01
+10 21600     -5.624300e+02 -3.530029e+00
+12 21600     -5.795800e+02 -2.277300e+02
+15 21600     -5.670400e+02 -3.834003e+01
+10 21601     -2.196200e+02 -8.460022e+00
+12 21601     -1.351600e+02 -1.079300e+02
+15 21601     -1.800700e+02 -3.887000e+01
+10 21602     6.743500e+02 -1.770001e+01
+12 21602     6.644301e+02 -3.825000e+01
+10 21603     1.610700e+02 -3.426001e+01
+12 21603     2.676600e+02 -6.289001e+01
+15 21603     2.660000e+02 -6.640002e+01
+10 21604     -1.301900e+02 -5.066998e+01
+12 21604     -2.604999e+01 -1.296700e+02
+15 21604     -7.628998e+01 -8.757001e+01
+10 21605     2.082800e+02 -1.000200e+02
+12 21605     3.328700e+02 -1.166300e+02
+15 21605     3.222200e+02 -1.440700e+02
+10 21606     -4.186500e+02 -3.836600e+02
+12 21606     -3.069200e+02 -5.739900e+02
+15 21606     -4.072100e+02 -4.790800e+02
+10 21607     3.664600e+02 -4.304100e+02
+12 21607     5.295100e+02 -4.514600e+02
+10 21608     3.820699e+02 -4.392100e+02
+12 21608     5.480900e+02 -4.560699e+02
+10 21609     3.620100e+02 -4.459900e+02
+12 21609     5.315400e+02 -4.664399e+02
+10 21610     3.239700e+02 -4.602300e+02
+12 21610     4.997400e+02 -4.877700e+02
+10 21611     2.543000e+02 -4.892000e+02
+12 21611     4.424399e+02 -5.295900e+02
+10 21612     1.764500e+02 -5.089100e+02
+12 21612     3.719700e+02 -5.653101e+02
+10 21613     3.526600e+02 -5.190500e+02
+12 21613     5.494500e+02 -5.359200e+02
+10 21614     3.118700e+02 -5.203400e+02
+12 21614     5.102700e+02 -5.463000e+02
+10 21615     3.118700e+02 -5.203400e+02
+12 21615     5.102700e+02 -5.463000e+02
+10 21616     2.649301e+02 -5.679900e+02
+12 21616     4.820000e+02 -6.014500e+02
+10 21617     5.914301e+02 6.100400e+02
+12 21617     4.666000e+02 5.243200e+02
+10 21618     2.380005e+00 6.043200e+02
+14 21618     4.290800e+02 -3.588700e+02
+10 21619     -8.304999e+01 5.739400e+02
+14 21619     3.559600e+02 -3.825800e+02
+10 21620     -7.600400e+02 5.701500e+02
+13 21620     -2.191500e+02 5.991998e+01
+14 21620     -1.906600e+02 -3.490500e+02
+10 21621     1.148900e+02 5.700100e+02
+13 21621     3.734301e+02 5.048999e+01
+14 21621     5.419200e+02 -3.921900e+02
+10 21622     -4.428003e+01 5.685500e+02
+14 21622     3.930300e+02 -3.890100e+02
+10 21623     -1.405900e+02 5.596100e+02
+14 21623     3.054200e+02 -3.930400e+02
+10 21624     -1.051500e+02 5.548500e+02
+13 21624     2.115800e+02 3.953998e+01
+14 21624     3.397300e+02 -3.988100e+02
+10 21625     -6.053000e+02 5.510000e+02
+13 21625     -1.206900e+02 4.422998e+01
+10 21626     -6.676300e+02 5.270700e+02
+13 21626     -1.637300e+02 2.902002e+01
+10 21627     -4.807000e+02 4.939700e+02
+14 21627     1.521002e+01 -4.327300e+02
+10 21628     -4.807000e+02 4.939700e+02
+14 21628     1.521002e+01 -4.327300e+02
+10 21629     -7.854300e+02 4.633500e+02
+13 21629     -2.483300e+02 -1.471002e+01
+10 21630     -6.443500e+02 4.527300e+02
+12 21630     -7.687100e+02 1.874700e+02
+10 21631     6.733600e+02 3.983700e+02
+12 21631     5.802500e+02 3.487200e+02
+10 21632     -7.169000e+01 3.950200e+02
+13 21632     2.610900e+02 -7.031000e+01
+10 21633     -6.993100e+02 3.674100e+02
+14 21633     -1.872400e+02 -5.355300e+02
+10 21634     -6.707600e+02 3.626100e+02
+14 21634     -1.648600e+02 -5.418000e+02
+10 21635     -5.087900e+02 3.614500e+02
+14 21635     -1.342999e+01 -5.520000e+02
+10 21636     -6.575500e+02 3.299900e+02
+13 21636     -1.734700e+02 -1.135800e+02
+10 21637     -1.804400e+02 2.901900e+02
+12 21637     -1.883100e+02 1.607500e+02
+10 21638     5.320601e+02 2.117800e+02
+12 21638     4.636300e+02 1.334500e+02
+10 21639     1.729200e+02 1.839500e+02
+13 21639     5.687800e+02 -1.896100e+02
+10 21640     3.297100e+02 1.568200e+02
+12 21640     3.612600e+02 1.219100e+02
+13 21640     6.667500e+02 -2.173600e+02
+10 21641     -7.164800e+02 1.468200e+02
+13 21641     -1.981800e+02 -2.427200e+02
+15 21641     -7.408800e+02 1.330600e+02
+10 21642     2.416700e+02 1.177300e+02
+12 21642     3.046700e+02 8.862000e+01
+13 21642     6.177200e+02 -2.406100e+02
+10 21643     -3.756500e+02 7.240997e+01
+13 21643     7.453998e+01 -3.001100e+02
+10 21644     -7.670800e+02 4.900000e+01
+13 21644     -2.261000e+02 -3.125200e+02
+10 21645     6.247200e+02 4.097998e+01
+12 21645     5.996500e+02 2.820007e+00
+10 21646     3.706100e+02 1.060999e+01
+12 21646     4.439600e+02 1.000977e-02
+15 21646     5.183000e+02 -1.270001e+01
+10 21647     -5.625900e+02 3.590027e+00
+13 21647     -6.342999e+01 -3.488700e+02
+10 21648     3.467700e+02 -3.201001e+01
+12 21648     4.387900e+02 -3.845001e+01
+10 21649     -1.856300e+02 -5.091998e+01
+13 21649     3.086200e+02 -3.674400e+02
+10 21650     4.515002e+01 -7.984003e+01
+13 21650     4.923600e+02 -3.877200e+02
+10 21651     -2.238400e+02 -1.392700e+02
+13 21651     2.535500e+02 -4.467600e+02
+10 21652     -2.581200e+02 -2.365000e+02
+13 21652     2.211200e+02 -5.293000e+02
+10 21653     3.601000e+02 -5.098500e+02
+12 21653     5.527800e+02 -5.259900e+02
+10 21654     3.207500e+02 -5.301200e+02
+12 21654     5.218700e+02 -5.530900e+02
+10 21655     8.256000e+01 6.102100e+02
+13 21655     3.430200e+02 7.756000e+01
+10 21656     -7.517700e+02 5.974800e+02
+11 21656     -2.959900e+02 -3.359300e+02
+13 21656     -2.097800e+02 7.839999e+01
+10 21657     -1.344900e+02 5.434900e+02
+13 21657     1.914600e+02 3.196002e+01
+14 21657     3.135000e+02 -4.071100e+02
+10 21658     -7.410000e+02 5.393000e+02
+13 21658     -2.107500e+02 3.784998e+01
+10 21659     9.428998e+01 5.199500e+02
+13 21659     3.664301e+02 1.653998e+01
+14 21659     5.340200e+02 -4.354301e+02
+10 21660     6.502002e+01 4.941100e+02
+14 21660     5.112700e+02 -4.586899e+02
+10 21661     -2.838400e+02 4.736400e+02
+13 21661     8.915997e+01 -1.631000e+01
+10 21662     -6.515500e+02 4.540700e+02
+12 21662     -7.759100e+02 1.875700e+02
+10 21663     -7.216400e+02 4.396000e+02
+13 21663     -2.103900e+02 -3.303998e+01
+14 21663     -1.892100e+02 -4.659900e+02
+10 21664     -1.761400e+02 4.365600e+02
+14 21664     2.929900e+02 -5.008800e+02
+10 21665     -3.315100e+02 4.332400e+02
+13 21665     5.934998e+01 -4.329999e+01
+14 21665     1.461899e+02 -4.963199e+02
+10 21666     -2.615002e+01 4.205400e+02
+13 21666     2.916700e+02 -5.308002e+01
+14 21666     4.398900e+02 -5.216899e+02
+10 21667     -7.063200e+02 4.011400e+02
+13 21667     -2.056000e+02 -6.159003e+01
+10 21668     -3.115400e+02 3.607200e+02
+13 21668     8.373999e+01 -9.460999e+01
+14 21668     1.748101e+02 -5.644301e+02
+15 21668     -2.746800e+02 3.859600e+02
+10 21669     -6.954700e+02 3.425300e+02
+13 21669     -2.025200e+02 -1.044000e+02
+14 21669     -1.859700e+02 -5.583800e+02
+10 21670     2.521000e+02 1.960800e+02
+13 21670     6.196200e+02 -1.835300e+02
+10 21671     1.741700e+02 1.911200e+02
+12 21671     2.335500e+02 1.591800e+02
+10 21672     -6.294600e+02 1.814800e+02
+13 21672     -1.356800e+02 -2.189700e+02
+15 21672     -6.414500e+02 1.747300e+02
+10 21673     1.768800e+02 1.458300e+02
+13 21673     5.754700e+02 -2.172000e+02
+10 21674     -6.207900e+02 1.406500e+02
+13 21674     -1.246100e+02 -2.485900e+02
+10 21675     -3.806600e+02 6.465997e+01
+13 21675     7.196002e+01 -3.055700e+02
+10 21676     1.888500e+02 6.003003e+01
+13 21676     5.872500e+02 -2.828500e+02
+15 21676     2.983900e+02 4.481000e+01
+10 21677     -4.928003e+01 4.525000e+01
+13 21677     4.095400e+02 -2.937400e+02
+10 21678     -1.179000e+02 2.490997e+01
+13 21678     3.566600e+02 -3.096300e+02
+10 21679     9.737000e+01 -1.122400e+02
+13 21679     5.377100e+02 -4.113000e+02
+15 21679     1.901100e+02 -1.581600e+02
+10 21680     -6.929400e+02 -1.352600e+02
+13 21680     -1.480200e+02 -4.506500e+02
+15 21680     -7.177300e+02 -1.913300e+02
+10 21681     -9.909973e+00 -1.928200e+02
+13 21681     4.410000e+02 -4.836100e+02
+10 21682     -7.894800e+02 -1.972500e+02
+13 21682     -2.151900e+02 -4.952600e+02
+15 21682     -8.266600e+02 -2.626600e+02
+10 21683     2.953199e+02 -5.158101e+02
+12 21683     4.928300e+02 -5.456899e+02
+10 21684     -7.648999e+01 5.668800e+02
+13 21684     2.305699e+02 4.801001e+01
+14 21684     3.625300e+02 -3.887500e+02
+10 21685     -7.265002e+01 5.630300e+02
+13 21685     2.345500e+02 4.572998e+01
+10 21686     -7.265002e+01 5.630300e+02
+13 21686     2.345500e+02 4.572998e+01
+10 21687     -6.521200e+02 3.746300e+02
+13 21687     -1.731200e+02 -8.228003e+01
+14 21687     -1.474000e+02 -5.318900e+02
+10 21688     -6.572500e+02 3.550000e+02
+13 21688     -1.761000e+02 -9.641998e+01
+10 21689     7.347300e+02 2.134500e+02
+12 21689     6.671200e+02 1.884900e+02
+10 21690     -6.188600e+02 1.730500e+02
+13 21690     -1.261400e+02 -2.249300e+02
+15 21690     -6.298400e+02 1.648500e+02
+10 21691     -2.870000e+02 1.626300e+02
+12 21691     -2.652500e+02 2.979999e+01
+10 21692     2.539100e+02 8.427002e+01
+13 21692     6.266000e+02 -2.670200e+02
+15 21692     3.773500e+02 7.384003e+01
+10 21693     -5.922300e+02 5.364001e+01
+13 21693     -9.177002e+01 -3.114400e+02
+10 21694     2.827100e+02 5.144000e+01
+13 21694     6.542800e+02 -2.911600e+02
+15 21694     4.119500e+02 3.529999e+01
+10 21695     -7.220000e+02 4.784003e+01
+12 21695     -7.712300e+02 -2.069400e+02
+10 21696     4.857200e+02 5.566100e+02
+12 21696     3.429700e+02 4.307100e+02
+10 21697     -1.468000e+02 3.598700e+02
+14 21697     3.348300e+02 -5.722700e+02
+10 21698     2.830900e+02 7.196997e+01
+13 21698     6.493900e+02 -2.768800e+02
+15 21698     4.120000e+02 5.946002e+01
+10 21699     1.032500e+02 5.977002e+01
+12 21699     1.932200e+02 2.306000e+01
+10 21700     -2.462400e+02 -9.750000e+00
+12 21700     -1.640300e+02 -1.124600e+02
+15 21700     -2.113100e+02 -4.002002e+01
+10 21701     2.548500e+02 -2.408002e+01
+13 21701     6.409301e+02 -3.480600e+02
+15 21701     3.785100e+02 -5.402002e+01
+10 21702     -4.190000e+02 -2.274500e+02
+13 21702     7.952002e+01 -5.238199e+02
+10 21703     -2.913000e+02 4.763200e+02
+11 21703     2.190997e+01 -4.502200e+02
+13 21703     8.282001e+01 -1.403998e+01
+14 21703     1.765601e+02 -4.598400e+02
+10 21704     -8.105800e+02 3.274900e+02
+13 21704     -2.873600e+02 -1.144900e+02
+10 21705     1.733300e+02 2.951600e+02
+13 21705     5.559200e+02 -1.118200e+02
+10 21706     -5.905200e+02 2.734800e+02
+13 21706     -1.170900e+02 -1.530100e+02
+10 21707     7.360900e+02 2.576800e+02
+12 21707     6.634800e+02 2.300600e+02
+10 21708     1.481300e+02 1.846700e+02
+12 21708     2.107800e+02 1.512200e+02
+10 21709     -7.070200e+02 -8.989001e+01
+13 21709     -1.635200e+02 -4.161400e+02
+15 21709     -7.330200e+02 -1.390600e+02
+10 21710     -8.099700e+02 3.165200e+02
+13 21710     -2.855200e+02 -1.221100e+02
+10 21711     7.758600e+02 1.859300e+02
+12 21711     7.133199e+02 1.714000e+02
+10 21712     -5.741300e+02 1.835800e+02
+13 21712     -9.201001e+01 -2.175000e+02
+15 21712     -5.779000e+02 1.783400e+02
+10 21713     -7.306300e+02 5.621002e+01
+13 21713     -1.988300e+02 -3.072200e+02
+10 21714     1.748600e+02 1.404999e+01
+13 21714     5.809000e+02 -3.169200e+02
+15 21714     2.807700e+02 -9.859985e+00
+10 21715     2.163800e+02 -1.605500e+02
+12 21715     3.402500e+02 -1.878800e+02
+15 21715     3.336899e+02 -2.172700e+02
+11 21716     -2.426001e+01 2.454000e+02
+14 21716     1.972998e+01 3.815300e+02
+11 21717     -6.726001e+01 2.427400e+02
+14 21717     -4.771002e+01 3.791400e+02
+11 21718     -2.094300e+02 1.956400e+02
+14 21718     -2.110700e+02 3.240600e+02
+11 21719     9.428998e+01 1.918600e+02
+14 21719     1.646300e+02 3.101200e+02
+11 21720     8.440002e+01 1.874100e+02
+14 21720     1.530601e+02 3.054100e+02
+11 21721     6.329999e+01 1.855300e+02
+14 21721     1.280900e+02 3.036000e+02
+11 21722     8.135999e+01 1.832500e+02
+14 21722     1.494000e+02 2.994700e+02
+11 21723     4.920800e+02 1.642300e+02
+14 21723     6.238300e+02 2.682800e+02
+11 21724     -3.230400e+02 1.588600e+02
+14 21724     -3.549000e+02 2.808300e+02
+11 21725     4.936600e+02 1.591600e+02
+14 21725     6.258900e+02 2.619400e+02
+11 21726     4.936600e+02 1.591600e+02
+14 21726     6.258900e+02 2.619400e+02
+11 21727     -3.668900e+02 1.386600e+02
+14 21727     -3.963000e+02 2.564400e+02
+11 21728     -9.384003e+01 1.073600e+02
+13 21728     -1.040600e+02 5.447700e+02
+14 21728     -2.029999e+01 2.093700e+02
+11 21729     -3.913700e+02 1.044100e+02
+14 21729     -3.788200e+02 2.114300e+02
+11 21730     -2.169800e+02 9.904001e+01
+13 21730     -1.815700e+02 5.384900e+02
+14 21730     -1.091300e+02 2.053800e+02
+11 21731     2.629200e+02 9.635001e+01
+14 21731     4.364100e+02 1.914300e+02
+11 21732     2.651600e+02 9.389001e+01
+13 21732     2.942800e+02 5.376600e+02
+14 21732     4.385699e+02 1.887000e+02
+11 21733     -3.230900e+02 8.207001e+01
+13 21733     -3.335800e+02 5.130700e+02
+14 21733     -2.837400e+02 1.852600e+02
+11 21734     -3.209800e+02 7.951001e+01
+13 21734     -3.317400e+02 5.101700e+02
+14 21734     -2.820000e+02 1.818000e+02
+11 21735     1.139000e+02 7.535001e+01
+14 21735     2.756300e+02 1.690400e+02
+11 21736     2.275500e+02 7.422000e+01
+13 21736     2.619399e+02 5.167800e+02
+14 21736     4.010699e+02 1.662200e+02
+11 21737     2.459700e+02 6.998999e+01
+14 21737     4.230900e+02 1.606400e+02
+11 21738     -3.411500e+02 6.457001e+01
+13 21738     -3.525400e+02 4.924800e+02
+14 21738     -3.069700e+02 1.636200e+02
+11 21739     3.074600e+02 6.439999e+01
+14 21739     4.923300e+02 1.531200e+02
+11 21740     -3.926000e+02 5.545001e+01
+13 21740     -4.224100e+02 4.792500e+02
+14 21740     -3.877600e+02 1.525700e+02
+11 21741     -3.926000e+02 5.545001e+01
+13 21741     -4.224100e+02 4.792500e+02
+14 21741     -3.877600e+02 1.525700e+02
+11 21742     -3.941100e+02 4.901999e+01
+14 21742     -3.894400e+02 1.449200e+02
+11 21743     1.959000e+02 4.314001e+01
+13 21743     2.381801e+02 4.839900e+02
+14 21743     3.732400e+02 1.302400e+02
+11 21744     -3.993100e+02 4.197000e+01
+13 21744     -4.256500e+02 4.635700e+02
+14 21744     -3.933500e+02 1.356400e+02
+11 21745     -5.087500e+02 3.759000e+01
+14 21745     -5.766300e+02 1.293500e+02
+11 21746     -4.285300e+02 3.776001e+01
+14 21746     -4.365300e+02 1.305000e+02
+11 21747     -4.661000e+02 3.417999e+01
+14 21747     -5.141700e+02 1.254400e+02
+11 21748     -4.721200e+02 3.045999e+01
+14 21748     -5.230400e+02 1.200800e+02
+11 21749     -5.116900e+02 2.981000e+01
+14 21749     -5.787800e+02 1.203100e+02
+11 21750     -4.908800e+02 2.748001e+01
+14 21750     -5.458600e+02 1.180100e+02
+11 21751     -4.225300e+02 1.672998e+01
+14 21751     -4.170100e+02 1.039800e+02
+11 21752     4.053700e+02 1.372998e+01
+13 21752     4.344301e+02 4.540800e+02
+11 21753     3.924100e+02 1.190997e+01
+14 21753     5.917400e+02 8.944000e+01
+11 21754     9.066998e+01 5.539978e+00
+14 21754     2.346100e+02 8.312000e+01
+11 21755     4.180300e+02 1.039978e+00
+14 21755     6.173000e+02 7.659998e+01
+11 21756     -4.395700e+02 -6.400024e+00
+13 21756     -4.548900e+02 4.087000e+02
+11 21757     2.573199e+02 -1.053998e+01
+13 21757     2.987700e+02 4.281000e+02
+11 21758     2.141600e+02 -1.077002e+01
+13 21758     2.609700e+02 4.278000e+02
+14 21758     4.001899e+02 6.570001e+01
+11 21759     4.155699e+02 -1.372998e+01
+14 21759     6.136700e+02 5.863000e+01
+11 21760     4.712100e+02 -1.363000e+01
+13 21760     4.899200e+02 4.260800e+02
+14 21760     6.731000e+02 5.800000e+01
+11 21761     4.893700e+02 -1.544000e+01
+14 21761     6.925400e+02 5.466998e+01
+11 21762     4.175000e+02 -1.991998e+01
+13 21762     4.422500e+02 4.193500e+02
+11 21763     2.618300e+02 -2.353003e+01
+14 21763     4.485601e+02 4.906000e+01
+11 21764     3.121100e+02 -3.009003e+01
+13 21764     3.472100e+02 4.079200e+02
+14 21764     5.026100e+02 4.066998e+01
+11 21765     3.206700e+02 -3.123999e+01
+13 21765     3.544600e+02 4.070100e+02
+14 21765     5.114100e+02 3.928003e+01
+11 21766     2.605400e+02 -3.764001e+01
+14 21766     4.465800e+02 3.231000e+01
+11 21767     2.386899e+02 -3.956000e+01
+14 21767     4.231300e+02 3.114001e+01
+11 21768     4.880800e+02 -4.933002e+01
+14 21768     6.893000e+02 1.515002e+01
+11 21769     2.586600e+02 -5.426001e+01
+14 21769     4.437400e+02 1.325000e+01
+11 21770     3.217000e+02 -5.534998e+01
+14 21770     5.101801e+02 1.034998e+01
+11 21771     5.739990e+00 -5.875000e+01
+13 21771     6.953003e+01 3.745100e+02
+11 21772     5.395699e+02 -6.000000e+01
+14 21772     7.433800e+02 2.059998e+00
+11 21773     -4.351600e+02 -6.577002e+01
+13 21773     -3.982400e+02 3.519300e+02
+14 21773     -3.738400e+02 8.270020e+00
+11 21774     4.164000e+02 -6.635999e+01
+14 21774     6.120100e+02 -3.500000e+00
+11 21775     4.438400e+02 -7.042999e+01
+13 21775     4.612000e+02 3.674500e+02
+14 21775     6.406700e+02 -9.239990e+00
+11 21776     2.856100e+02 -7.606000e+01
+14 21776     4.711801e+02 -1.415002e+01
+11 21777     -1.750200e+02 -9.641998e+01
+13 21777     -1.010400e+02 3.296500e+02
+14 21777     -2.941998e+01 -3.313000e+01
+11 21778     -3.826500e+02 -1.093900e+02
+13 21778     9.300000e+01 3.794500e+02
+14 21778     2.012600e+02 1.608002e+01
+11 21779     3.853800e+02 -1.152600e+02
+14 21779     5.758700e+02 -6.134998e+01
+11 21780     3.288300e+02 -1.194900e+02
+14 21780     5.152900e+02 -6.539001e+01
+11 21781     -3.750700e+02 -1.239300e+02
+14 21781     -2.582900e+02 -6.600000e+01
+11 21782     4.996300e+02 -1.244600e+02
+14 21782     6.972900e+02 -7.415997e+01
+11 21783     3.690900e+02 -1.269100e+02
+14 21783     5.575699e+02 -7.465997e+01
+11 21784     -8.392999e+01 -1.437100e+02
+14 21784     7.021997e+01 -9.020001e+01
+11 21785     -3.140600e+02 -1.441000e+02
+13 21785     -2.333700e+02 2.740200e+02
+14 21785     -1.892500e+02 -9.063000e+01
+11 21786     5.196500e+02 -1.464900e+02
+14 21786     7.177000e+02 -9.990002e+01
+11 21787     2.879900e+02 -1.527400e+02
+14 21787     4.696300e+02 -1.047100e+02
+11 21788     2.879900e+02 -1.527400e+02
+14 21788     4.696300e+02 -1.047100e+02
+11 21789     -2.349700e+02 -1.579200e+02
+14 21789     -9.959998e+01 -1.078000e+02
+11 21790     -6.442999e+01 -1.597600e+02
+13 21790     2.530029e+00 2.680000e+02
+11 21791     2.221200e+02 -1.621100e+02
+14 21791     3.997600e+02 -1.149500e+02
+11 21792     -3.395001e+01 -1.637000e+02
+14 21792     1.235800e+02 -1.149400e+02
+11 21793     2.157500e+02 -1.647400e+02
+13 21793     2.543800e+02 2.697600e+02
+14 21793     3.922500e+02 -1.179500e+02
+11 21794     2.114000e+02 -1.653800e+02
+13 21794     2.508101e+02 2.690200e+02
+14 21794     3.882700e+02 -1.186300e+02
+11 21795     -3.738600e+02 -1.672500e+02
+13 21795     -2.889000e+02 2.481500e+02
+14 21795     -2.577000e+02 -1.180100e+02
+11 21796     -9.741998e+01 -1.692100e+02
+12 21796     -6.370000e+02 6.188100e+02
+11 21797     -4.153800e+02 -1.732500e+02
+14 21797     -3.305800e+02 -1.286500e+02
+11 21798     -2.528100e+02 -1.819800e+02
+14 21798     -1.221000e+02 -1.373400e+02
+11 21799     -1.430900e+02 -1.819400e+02
+14 21799     2.000000e+00 -1.373600e+02
+11 21800     -1.430900e+02 -1.819400e+02
+14 21800     2.000000e+00 -1.373600e+02
+11 21801     -4.614001e+01 -1.903200e+02
+14 21801     1.080400e+02 -1.469300e+02
+11 21802     4.267400e+02 -2.110400e+02
+14 21802     6.149000e+02 -1.756700e+02
+11 21803     -1.630100e+02 -2.157400e+02
+14 21803     -2.226001e+01 -1.776200e+02
+11 21804     -3.172400e+02 -2.218300e+02
+14 21804     -1.960900e+02 -1.859000e+02
+11 21805     1.853100e+02 -2.223600e+02
+12 21805     -2.641200e+02 5.689800e+02
+11 21806     1.887200e+02 -2.258700e+02
+12 21806     -2.590800e+02 5.645800e+02
+11 21807     3.614000e+02 -2.269100e+02
+14 21807     5.442600e+02 -1.937700e+02
+11 21808     -3.070700e+02 -2.282100e+02
+14 21808     -1.855700e+02 -1.941700e+02
+11 21809     2.800800e+02 -2.311100e+02
+12 21809     -1.509700e+02 5.658600e+02
+11 21810     4.569900e+02 -2.395100e+02
+13 21810     4.604399e+02 1.993400e+02
+14 21810     6.460800e+02 -2.100300e+02
+11 21811     -5.059003e+01 -2.435400e+02
+12 21811     -5.573000e+02 5.134400e+02
+11 21812     2.034100e+02 -2.614800e+02
+14 21812     3.739399e+02 -2.341400e+02
+11 21813     -2.381400e+02 -2.850000e+02
+12 21813     -8.052600e+02 4.232100e+02
+11 21814     -3.417800e+02 -2.855500e+02
+14 21814     -2.287400e+02 -2.648100e+02
+11 21815     1.380005e+00 -2.930200e+02
+12 21815     -4.794000e+02 4.500400e+02
+11 21816     -4.549988e+00 -2.933500e+02
+13 21816     5.554999e+01 1.354300e+02
+11 21817     -4.315002e+01 -2.992600e+02
+13 21817     2.101001e+01 1.280900e+02
+11 21818     -5.144800e+02 -3.027100e+02
+13 21818     -5.311600e+02 7.907001e+01
+14 21818     -5.659900e+02 -3.034600e+02
+11 21819     -1.025500e+02 -3.311500e+02
+12 21819     -6.060300e+02 3.795800e+02
+11 21820     -1.789700e+02 -3.401900e+02
+12 21820     -7.060500e+02 3.532700e+02
+11 21821     -3.601300e+02 -3.592200e+02
+13 21821     -2.691000e+02 5.059003e+01
+11 21822     -1.195000e+02 -3.935900e+02
+12 21822     -6.143600e+02 2.885300e+02
+11 21823     2.169100e+02 -4.567900e+02
+14 21823     4.109900e+02 -4.619700e+02
+15 21823     4.009998e+01 5.370100e+02
+11 21824     -1.550200e+02 -4.592600e+02
+13 21824     -7.971002e+01 -3.370001e+01
+11 21825     2.154200e+02 -5.130100e+02
+14 21825     4.285000e+02 -5.256000e+02
+11 21826     4.717600e+02 1.740600e+02
+14 21826     5.975300e+02 2.807900e+02
+11 21827     4.661100e+02 1.693800e+02
+14 21827     5.899100e+02 2.751000e+02
+11 21828     -2.300000e+01 1.670000e+02
+14 21828     9.389001e+01 2.877900e+02
+11 21829     -3.445001e+01 1.639600e+02
+14 21829     3.778003e+01 2.833400e+02
+11 21830     -8.562000e+01 1.597400e+02
+14 21830     -2.171997e+01 2.788100e+02
+11 21831     -3.122500e+02 1.415400e+02
+14 21831     -2.848400e+02 2.602900e+02
+11 21832     1.824500e+02 1.410000e+02
+14 21832     3.379700e+02 2.449400e+02
+11 21833     1.565800e+02 1.391100e+02
+13 21833     1.810800e+02 5.860300e+02
+14 21833     3.076700e+02 2.450300e+02
+11 21834     1.256500e+02 1.308100e+02
+13 21834     1.525699e+02 5.770700e+02
+14 21834     2.747600e+02 2.361000e+02
+11 21835     -3.239500e+02 8.589001e+01
+13 21835     -3.347900e+02 5.171700e+02
+14 21835     -2.848300e+02 1.898400e+02
+11 21836     2.627100e+02 8.150000e+01
+14 21836     4.379500e+02 1.748300e+02
+11 21837     2.255699e+02 7.801001e+01
+13 21837     2.607400e+02 5.195900e+02
+11 21838     2.627100e+02 7.589001e+01
+13 21838     2.951600e+02 5.187200e+02
+14 21838     4.399000e+02 1.675700e+02
+11 21839     2.460800e+02 7.448001e+01
+13 21839     2.795601e+02 5.168800e+02
+14 21839     4.215200e+02 1.660600e+02
+11 21840     2.343101e+02 7.219000e+01
+13 21840     2.691899e+02 5.142700e+02
+14 21840     4.095200e+02 1.633200e+02
+11 21841     2.634900e+02 5.851999e+01
+13 21841     2.993600e+02 5.003900e+02
+11 21842     -1.695100e+02 5.820001e+01
+13 21842     -1.281600e+02 4.930200e+02
+14 21842     -5.095001e+01 1.532400e+02
+11 21843     -2.846100e+02 5.673999e+01
+13 21843     -2.464800e+02 4.881100e+02
+14 21843     -1.865700e+02 1.534100e+02
+11 21844     -3.835900e+02 4.906000e+01
+14 21844     -3.750600e+02 1.442800e+02
+11 21845     -3.858100e+02 4.414001e+01
+13 21845     -4.112500e+02 4.666400e+02
+14 21845     -3.765900e+02 1.383000e+02
+11 21846     -8.495001e+01 3.857999e+01
+13 21846     -3.022998e+01 4.747000e+02
+14 21846     6.077002e+01 1.289700e+02
+11 21847     -8.946997e+01 2.688000e+01
+14 21847     2.480601e+02 1.396400e+02
+11 21848     -4.230600e+02 7.539978e+00
+13 21848     -4.418200e+02 4.238000e+02
+14 21848     -4.160100e+02 9.216000e+01
+11 21849     1.923600e+02 -1.972998e+01
+13 21849     2.399900e+02 4.176700e+02
+14 21849     3.754000e+02 5.497998e+01
+11 21850     4.671300e+02 -2.271002e+01
+13 21850     4.855000e+02 4.163300e+02
+11 21851     3.224000e+02 -2.515997e+01
+14 21851     5.133000e+02 4.634003e+01
+11 21852     1.602300e+02 -3.102002e+01
+13 21852     2.119100e+02 4.061500e+02
+14 21852     3.420300e+02 4.238000e+01
+11 21853     1.678600e+02 -3.131000e+01
+13 21853     2.183800e+02 4.054400e+02
+14 21853     3.494500e+02 4.137000e+01
+11 21854     3.575900e+02 -8.779999e+01
+14 21854     5.479200e+02 -2.863000e+01
+11 21855     -1.813700e+02 -1.072000e+02
+13 21855     -1.065700e+02 3.184600e+02
+11 21856     4.580601e+02 -1.115700e+02
+13 21856     4.706700e+02 3.258500e+02
+11 21857     4.299900e+02 -1.150800e+02
+13 21857     4.456400e+02 3.222700e+02
+14 21857     6.232400e+02 -6.198999e+01
+11 21858     -1.443300e+02 -1.342100e+02
+13 21858     -7.115997e+01 2.915600e+02
+14 21858     3.609985e+00 -7.866998e+01
+11 21859     -2.563700e+02 -1.349200e+02
+13 21859     -1.772600e+02 2.861800e+02
+14 21859     -1.220900e+02 -7.989001e+01
+11 21860     -1.365800e+02 -1.356300e+02
+13 21860     -6.434003e+01 2.908200e+02
+11 21861     -8.288000e+01 -1.567000e+02
+13 21861     -1.453003e+01 2.703200e+02
+11 21862     -3.585000e+02 -1.600300e+02
+13 21862     -2.755500e+02 2.558900e+02
+14 21862     -2.410400e+02 -1.098400e+02
+11 21863     1.838600e+02 -1.624500e+02
+14 21863     3.584399e+02 -1.145200e+02
+11 21864     1.507800e+02 -1.633500e+02
+13 21864     1.970100e+02 2.696500e+02
+11 21865     -4.153600e+02 -1.674200e+02
+13 21865     -3.504300e+02 2.396200e+02
+14 21865     -3.304800e+02 -1.240200e+02
+11 21866     -4.760500e+02 -2.130200e+02
+13 21866     -5.146600e+02 1.739300e+02
+14 21866     -5.327700e+02 -1.903000e+02
+11 21867     -4.753900e+02 -2.189400e+02
+13 21867     -5.133000e+02 1.672900e+02
+14 21867     -5.320800e+02 -1.983500e+02
+11 21868     -2.047500e+02 -3.019600e+02
+12 21868     -7.525600e+02 4.037400e+02
+11 21869     -7.787000e+01 -3.271600e+02
+13 21869     -1.028998e+01 9.937000e+01
+14 21869     6.638000e+01 -3.128300e+02
+11 21870     1.506100e+02 -4.032500e+02
+14 21870     3.137400e+02 -4.033400e+02
+11 21871     -1.049800e+02 -4.295600e+02
+13 21871     -3.497998e+01 -2.349976e+00
+14 21871     3.029999e+01 -4.383500e+02
+11 21872     -2.005000e+02 -4.748300e+02
+14 21872     -7.866998e+01 -4.949900e+02
+11 21873     1.978600e+02 -5.266801e+02
+14 21873     4.137900e+02 -5.408300e+02
+11 21874     4.557001e+01 2.289400e+02
+14 21874     9.706000e+01 3.592000e+02
+11 21875     2.838900e+02 2.092200e+02
+14 21875     3.800900e+02 3.268900e+02
+11 21876     2.838900e+02 2.092200e+02
+14 21876     3.800900e+02 3.268900e+02
+11 21877     5.925000e+01 1.815200e+02
+14 21877     1.239100e+02 2.987700e+02
+11 21878     6.869995e+00 1.783300e+02
+14 21878     6.226001e+01 2.960300e+02
+11 21879     5.019800e+02 1.702100e+02
+14 21879     6.349900e+02 2.752400e+02
+11 21880     -1.743400e+02 1.471400e+02
+14 21880     -1.226200e+02 2.628800e+02
+11 21881     -3.095300e+02 1.430300e+02
+14 21881     -2.848400e+02 2.602900e+02
+11 21882     1.314500e+02 1.353500e+02
+13 21882     1.573700e+02 5.816900e+02
+11 21883     1.022600e+02 1.308600e+02
+13 21883     1.297900e+02 5.770800e+02
+14 21883     2.485200e+02 2.366900e+02
+11 21884     1.597800e+02 1.288100e+02
+13 21884     1.859500e+02 5.755300e+02
+14 21884     3.129600e+02 2.335400e+02
+11 21885     1.691900e+02 1.285100e+02
+13 21885     1.962600e+02 5.736800e+02
+14 21885     3.250699e+02 2.310400e+02
+11 21886     1.304500e+02 1.242500e+02
+13 21886     1.589700e+02 5.697900e+02
+14 21886     2.819700e+02 2.277300e+02
+11 21887     2.808101e+02 1.116600e+02
+13 21887     3.065100e+02 5.566900e+02
+14 21887     4.526700e+02 2.095700e+02
+11 21888     -2.882800e+02 1.055800e+02
+13 21888     -2.826200e+02 5.427900e+02
+14 21888     -2.228600e+02 2.147000e+02
+11 21889     1.077400e+02 1.049900e+02
+13 21889     1.408000e+02 5.491000e+02
+14 21889     2.607300e+02 2.056400e+02
+11 21890     2.593199e+02 9.807001e+01
+13 21890     2.887900e+02 5.422200e+02
+14 21890     4.320000e+02 1.938800e+02
+11 21891     2.596000e+02 8.601001e+01
+13 21891     2.909900e+02 5.296400e+02
+14 21891     4.348300e+02 1.798700e+02
+11 21892     -3.162200e+02 8.426999e+01
+14 21892     -2.755300e+02 1.876200e+02
+11 21893     2.701500e+02 8.320999e+01
+13 21893     3.008300e+02 5.264300e+02
+14 21893     4.463800e+02 1.759100e+02
+11 21894     2.322300e+02 8.094000e+01
+14 21894     4.046801e+02 1.741900e+02
+11 21895     -3.560500e+02 7.964999e+01
+13 21895     -3.698700e+02 5.091200e+02
+14 21895     -3.245900e+02 1.827100e+02
+11 21896     1.504800e+02 7.203000e+01
+13 21896     1.892900e+02 5.135400e+02
+14 21896     3.164200e+02 1.646500e+02
+11 21897     1.238400e+02 6.966000e+01
+14 21897     2.876899e+02 1.622500e+02
+11 21898     2.040300e+02 5.213000e+01
+13 21898     2.440400e+02 4.934600e+02
+14 21898     3.801899e+02 1.404400e+02
+11 21899     1.663000e+02 4.550000e+01
+13 21899     2.096801e+02 4.862400e+02
+11 21900     2.186700e+02 4.494000e+01
+14 21900     3.985800e+02 1.310900e+02
+11 21901     1.835000e+02 4.092999e+01
+13 21901     2.271000e+02 4.808300e+02
+11 21902     -3.481600e+02 3.579999e+01
+13 21902     -3.579900e+02 4.588800e+02
+14 21902     -3.165800e+02 1.267500e+02
+11 21903     2.392700e+02 3.132001e+01
+13 21903     2.825000e+02 4.712100e+02
+14 21903     4.253600e+02 1.144200e+02
+11 21904     3.404900e+02 2.237000e+01
+13 21904     3.766400e+02 4.630000e+02
+14 21904     5.367100e+02 1.027500e+02
+11 21905     -4.739500e+02 1.925000e+01
+14 21905     -5.054000e+02 1.077000e+02
+11 21906     -4.125300e+02 -4.520020e+00
+13 21906     -4.256600e+02 4.112100e+02
+14 21906     -3.987800e+02 7.706000e+01
+11 21907     2.644900e+02 -3.628998e+01
+13 21907     3.032500e+02 4.012900e+02
+14 21907     4.508101e+02 3.407001e+01
+11 21908     -4.657100e+02 -4.506000e+01
+13 21908     -4.746700e+02 3.639300e+02
+14 21908     -4.609400e+02 2.628998e+01
+11 21909     5.218400e+02 -6.603998e+01
+14 21909     7.240699e+02 -5.859985e+00
+11 21910     -1.397998e+01 -6.646997e+01
+13 21910     5.004999e+01 3.655500e+02
+14 21910     1.502500e+02 1.539978e+00
+11 21911     -1.234400e+02 -7.271002e+01
+13 21911     -5.306000e+01 3.555400e+02
+14 21911     2.879999e+01 -5.390015e+00
+11 21912     4.708900e+02 -8.445001e+01
+13 21912     4.843000e+02 3.537700e+02
+14 21912     6.692200e+02 -2.602002e+01
+11 21913     1.816700e+02 -9.012000e+01
+14 21913     3.604200e+02 -2.900000e+01
+11 21914     -1.659500e+02 -1.206800e+02
+13 21914     -9.179999e+01 3.048100e+02
+11 21915     -3.143300e+02 -1.399500e+02
+13 21915     -2.339200e+02 2.770900e+02
+14 21915     -1.894800e+02 -8.725000e+01
+11 21916     -1.054800e+02 -1.492700e+02
+14 21916     4.597998e+01 -9.696997e+01
+11 21917     -3.535300e+02 -1.605500e+02
+13 21917     -2.710000e+02 2.547100e+02
+14 21917     -2.355700e+02 -1.109100e+02
+11 21918     -1.246000e+02 -1.931900e+02
+13 21918     -5.263000e+01 2.310800e+02
+11 21919     -1.246000e+02 -1.931900e+02
+12 21919     -6.688400e+02 5.787000e+02
+14 21919     2.240997e+01 -1.508100e+02
+11 21920     -7.947998e+01 -1.923300e+02
+13 21920     -1.139001e+01 2.343400e+02
+14 21920     7.135999e+01 -1.489200e+02
+11 21921     4.632900e+02 -2.082000e+02
+14 21921     6.540699e+02 -1.727200e+02
+11 21922     -5.214900e+02 -3.005700e+02
+13 21922     -5.394300e+02 7.985001e+01
+14 21922     -5.759900e+02 -3.017700e+02
+11 21923     -4.408900e+02 -3.587500e+02
+13 21923     -4.229600e+02 3.221997e+01
+11 21924     -4.580000e+02 -3.611100e+02
+14 21924     -4.643200e+02 -3.727500e+02
+11 21925     2.907000e+02 -4.363100e+02
+12 21925     -9.022998e+01 3.196600e+02
+13 21925     3.305400e+02 1.426001e+01
+14 21925     4.890200e+02 -4.369100e+02
+15 21925     1.451600e+02 5.754600e+02
+11 21926     -1.845600e+02 -4.836900e+02
+13 21926     -1.057300e+02 -5.877002e+01
+14 21926     -6.126001e+01 -5.058800e+02
+11 21927     1.766998e+01 -4.847200e+02
+13 21927     8.971997e+01 -4.469000e+01
+14 21927     1.840100e+02 -4.996300e+02
+15 21927     -2.499400e+02 4.697700e+02
+11 21928     -2.871002e+01 -5.250699e+02
+12 21928     -4.437600e+02 1.519900e+02
+13 21928     5.900000e+01 -8.263000e+01
+14 21928     1.439100e+02 -5.475200e+02
+11 21929     -5.507001e+01 1.928900e+02
+14 21929     -2.046002e+01 3.150400e+02
+11 21930     6.914001e+01 8.698001e+01
+13 21930     1.031200e+02 5.279200e+02
+14 21930     2.169100e+02 1.832200e+02
+11 21931     2.031600e+02 6.579001e+01
+14 21931     3.774800e+02 1.559600e+02
+11 21932     6.382001e+01 1.757001e+01
+13 21932     1.121400e+02 4.551100e+02
+11 21933     4.870400e+02 1.531000e+01
+14 21933     6.917100e+02 9.145001e+01
+11 21934     2.561600e+02 1.108002e+01
+14 21934     4.452000e+02 9.064001e+01
+11 21935     3.521100e+02 6.510010e+00
+13 21935     3.855100e+02 4.465400e+02
+14 21935     5.474700e+02 8.389001e+01
+11 21936     2.817300e+02 -3.275000e+01
+14 21936     4.688600e+02 3.800000e+01
+11 21937     1.690300e+02 -3.534998e+01
+13 21937     2.196100e+02 4.012500e+02
+14 21937     3.505400e+02 3.653003e+01
+11 21938     2.626801e+02 -6.647998e+01
+14 21938     4.474100e+02 -1.859985e+00
+11 21939     -4.061500e+02 -9.690002e+01
+13 21939     -3.239700e+02 3.219900e+02
+14 21939     -2.907600e+02 -3.035999e+01
+11 21940     -3.368100e+02 -1.025300e+02
+13 21940     -2.555700e+02 3.171900e+02
+14 21940     -2.111800e+02 -3.946997e+01
+11 21941     8.276001e+01 -1.056900e+02
+13 21941     1.379800e+02 3.239500e+02
+11 21942     -4.338700e+02 -1.211100e+02
+13 21942     -3.979900e+02 2.882300e+02
+11 21943     -4.688200e+02 -1.649100e+02
+13 21943     -4.935600e+02 2.301900e+02
+14 21943     -5.003000e+02 -1.250800e+02
+11 21944     -2.893900e+02 -2.098700e+02
+13 21944     -2.073000e+02 2.075800e+02
+14 21944     -1.639200e+02 -1.706600e+02
+11 21945     -2.295500e+02 -3.199800e+02
+13 21945     -1.484300e+02 9.854001e+01
+14 21945     -1.019800e+02 -3.056200e+02
+11 21946     -1.211200e+02 1.815800e+02
+14 21946     -9.696002e+01 3.033700e+02
+11 21947     5.096300e+02 1.639500e+02
+14 21947     6.440900e+02 2.665300e+02
+11 21948     -5.322998e+01 1.324800e+02
+13 21948     -6.403998e+01 5.744600e+02
+11 21949     -5.322998e+01 1.324800e+02
+13 21949     -6.403998e+01 5.744600e+02
+14 21949     2.658002e+01 2.407000e+02
+11 21950     2.842500e+02 1.270000e+02
+13 21950     3.078300e+02 5.732200e+02
+14 21950     4.541300e+02 2.276900e+02
+11 21951     2.641899e+02 9.975000e+01
+13 21951     2.936500e+02 5.430900e+02
+14 21951     4.378800e+02 1.947800e+02
+11 21952     3.215800e+02 7.147000e+01
+13 21952     3.516899e+02 5.142000e+02
+14 21952     5.060699e+02 1.611500e+02
+11 21953     -8.181000e+01 -3.580017e+00
+13 21953     -2.433002e+01 4.315900e+02
+14 21953     6.578998e+01 8.010999e+01
+11 21954     1.525900e+02 -4.219000e+01
+13 21954     2.031500e+02 3.928400e+02
+14 21954     3.312800e+02 2.788000e+01
+11 21955     3.081600e+02 -6.932001e+01
+13 21955     3.412400e+02 3.670200e+02
+11 21956     -3.881800e+02 -7.042999e+01
+13 21956     -3.185500e+02 3.485600e+02
+14 21956     -2.821500e+02 1.500244e-01
+11 21957     -4.567999e+01 -7.013000e+01
+14 21957     1.147000e+02 -2.169983e+00
+11 21958     -3.850200e+02 -7.735999e+01
+13 21958     -3.123100e+02 3.415200e+02
+14 21958     -2.753600e+02 -8.630005e+00
+11 21959     2.130200e+02 -7.804999e+01
+13 21959     2.547300e+02 3.575100e+02
+14 21959     3.929900e+02 -1.475000e+01
+11 21960     -3.083800e+02 -3.173900e+02
+13 21960     -2.224700e+02 9.647000e+01
+14 21960     -1.914700e+02 -3.034400e+02
+11 21961     -2.463000e+01 1.948200e+02
+14 21961     2.303003e+01 3.143200e+02
+11 21962     -2.872998e+01 1.451000e+02
+14 21962     5.142999e+01 2.564900e+02
+11 21963     2.580200e+02 9.026001e+01
+13 21963     2.888300e+02 5.329000e+02
+14 21963     4.320699e+02 1.839600e+02
+11 21964     -2.151800e+02 -4.886300e+02
+13 21964     -1.333500e+02 -6.463000e+01
+14 21964     -9.620001e+01 -5.117500e+02
+11 21965     7.583002e+01 2.106900e+02
+14 21965     1.457900e+02 3.382500e+02
+11 21966     -9.165002e+01 1.623500e+02
+14 21966     -2.598999e+01 2.787500e+02
+11 21967     -2.175000e+02 1.398100e+02
+14 21967     -1.729400e+02 2.549600e+02
+11 21968     1.859100e+02 -1.904999e+01
+14 21968     3.687300e+02 5.653998e+01
+11 21969     5.326801e+02 -1.133500e+02
+14 21969     7.332700e+02 -6.087000e+01
+11 21970     5.194800e+02 1.707900e+02
+14 21970     6.554000e+02 2.760500e+02
+11 21971     5.194800e+02 1.707900e+02
+14 21971     6.554000e+02 2.760500e+02
+11 21972     2.968101e+02 1.201800e+02
+14 21972     4.684301e+02 2.207000e+02
+11 21973     2.859500e+02 9.101999e+01
+13 21973     3.132600e+02 5.361000e+02
+14 21973     4.597500e+02 1.872100e+02
+11 21974     2.859500e+02 9.101999e+01
+13 21974     3.132600e+02 5.361000e+02
+11 21975     -3.415200e+02 8.987000e+01
+13 21975     -3.535600e+02 5.206100e+02
+14 21975     -3.059500e+02 1.945600e+02
+11 21976     2.527800e+02 6.617001e+01
+13 21976     2.864000e+02 5.101400e+02
+14 21976     4.295800e+02 1.578100e+02
+11 21977     8.666998e+01 -3.626100e+02
+12 21977     -3.593500e+02 3.734300e+02
+11 21978     2.134500e+02 4.344000e+01
+13 21978     2.540000e+02 4.867900e+02
+14 21978     3.901400e+02 1.346000e+02
+11 21979     3.493900e+02 -2.388000e+01
+13 21979     3.813500e+02 4.179400e+02
+14 21979     5.434100e+02 5.070001e+01
+11 21980     -2.157200e+02 8.567001e+01
+13 21980     -1.814600e+02 5.281800e+02
+14 21980     -1.101000e+02 1.841900e+02
+11 21981     1.741100e+02 -1.834003e+01
+13 21981     2.244800e+02 4.169200e+02
+14 21981     3.570100e+02 5.467999e+01
+11 21982     2.096800e+02 -1.192000e+02
+13 21982     3.358500e+02 3.059200e+02
+14 21982     4.909600e+02 -7.758002e+01
+11 21983     3.037100e+02 -2.112000e+02
+14 21983     4.837800e+02 -1.765900e+02
+12 21984     -3.110300e+02 5.217300e+02
+14 21984     3.091200e+02 -2.237400e+02
+12 21985     -8.234100e+02 3.338400e+02
+14 21985     -1.415400e+02 -3.333400e+02
+12 21986     -6.677200e+02 2.775800e+02
+15 21986     -5.430100e+02 5.753600e+02
+12 21987     -6.677200e+02 2.775800e+02
+15 21987     -5.430100e+02 5.753600e+02
+12 21988     -6.456500e+02 2.774800e+02
+15 21988     -5.165500e+02 5.747800e+02
+12 21989     -6.090800e+02 2.769800e+02
+15 21989     -4.726400e+02 5.722500e+02
+12 21990     -6.096500e+02 2.740300e+02
+15 21990     -4.736000e+02 5.689900e+02
+12 21991     -6.096500e+02 2.740300e+02
+15 21991     -4.736000e+02 5.689900e+02
+12 21992     -6.986000e+02 2.730000e+02
+15 21992     -5.785500e+02 5.723300e+02
+12 21993     4.050800e+02 2.722200e+02
+15 21993     6.760200e+02 4.054500e+02
+12 21994     -7.755600e+02 2.451800e+02
+15 21994     -6.669000e+02 5.455500e+02
+12 21995     -7.194200e+02 2.451400e+02
+15 21995     -6.035600e+02 5.424000e+02
+12 21996     -7.194200e+02 2.451400e+02
+15 21996     -6.035600e+02 5.424000e+02
+12 21997     -5.841998e+01 2.408300e+02
+14 21997     5.291000e+02 -5.781700e+02
+12 21998     -7.275300e+02 2.194700e+02
+15 21998     -6.134000e+02 5.147800e+02
+12 21999     -7.172800e+02 2.192500e+02
+14 21999     -8.082001e+01 -4.416500e+02
+15 21999     -6.012100e+02 5.138900e+02
+12 22000     -7.288100e+02 2.138700e+02
+15 22000     -6.148900e+02 5.088500e+02
+12 22001     -7.629200e+02 2.015100e+02
+15 22001     -6.532500e+02 4.976200e+02
+12 22002     -7.617100e+02 1.988500e+02
+15 22002     -6.516700e+02 4.949700e+02
+12 22003     -7.861600e+02 1.946600e+02
+15 22003     -6.762000e+02 4.946800e+02
+12 22004     1.797200e+02 1.919500e+02
+15 22004     2.202700e+02 2.450800e+02
+12 22005     -2.630500e+02 1.765100e+02
+15 22005     -1.051700e+02 4.074300e+02
+12 22006     5.811801e+02 1.518000e+02
+15 22006     8.574600e+02 2.148000e+02
+12 22007     9.422998e+01 1.361900e+02
+15 22007     1.022700e+02 1.880400e+02
+12 22008     5.176200e+02 1.078900e+02
+15 22008     7.790400e+02 1.808900e+02
+12 22009     1.201100e+02 1.054100e+02
+15 22009     1.247000e+02 1.477500e+02
+12 22010     1.903101e+02 1.026100e+02
+15 22010     2.071300e+02 1.346800e+02
+12 22011     -4.101000e+02 8.723999e+01
+13 22011     7.904999e+01 -1.367700e+02
+12 22012     3.760000e+02 8.484998e+01
+13 22012     6.748600e+02 -2.492100e+02
+15 22012     4.657900e+02 1.058800e+02
+12 22013     5.834200e+02 7.988000e+01
+15 22013     8.491400e+02 1.296100e+02
+12 22014     5.882600e+02 7.028003e+01
+15 22014     8.529900e+02 1.172100e+02
+12 22015     2.012400e+02 2.071002e+01
+15 22015     2.059399e+02 4.029999e+01
+12 22016     2.541400e+02 1.539978e+00
+15 22016     2.712600e+02 1.334998e+01
+12 22017     3.052700e+02 -5.890015e+00
+15 22017     3.294000e+02 -4.200012e+00
+12 22018     6.295699e+02 -1.178003e+01
+15 22018     8.637800e+02 -2.750000e+00
+12 22019     1.276200e+02 -3.147998e+01
+15 22019     1.120000e+02 -5.549988e+00
+12 22020     9.953998e+01 -9.117999e+01
+15 22020     6.446002e+01 -7.009003e+01
+12 22021     -1.644200e+02 -9.631000e+01
+15 22021     -2.046000e+02 -1.921997e+01
+12 22022     -1.594200e+02 -1.181200e+02
+15 22022     -2.099900e+02 -4.750000e+01
+12 22023     1.877600e+02 -1.486300e+02
+15 22023     1.436801e+02 -1.538200e+02
+12 22024     2.204000e+02 -1.854400e+02
+15 22024     1.817700e+02 -1.958400e+02
+12 22025     2.861300e+02 -2.266900e+02
+15 22025     2.675100e+02 -2.439600e+02
+12 22026     8.434003e+01 -2.341500e+02
+15 22026     3.107001e+01 -2.173400e+02
+12 22027     -4.371900e+02 -2.355000e+02
+15 22027     -4.285200e+02 -7.291998e+01
+12 22028     -5.562500e+02 -2.378800e+02
+15 22028     -5.467800e+02 -5.390002e+01
+12 22029     -5.611200e+02 -2.403400e+02
+15 22029     -5.526700e+02 -5.596002e+01
+12 22030     -4.357900e+02 -2.404200e+02
+15 22030     -4.284600e+02 -7.885999e+01
+12 22031     -5.903300e+02 -2.418100e+02
+15 22031     -5.816000e+02 -5.284998e+01
+12 22032     7.084100e+02 -2.548400e+02
+15 22032     8.331400e+02 -3.424300e+02
+12 22033     -7.015800e+02 -2.589700e+02
+15 22033     -6.948300e+02 -5.325000e+01
+12 22034     1.082600e+02 5.816000e+02
+13 22034     5.077300e+02 2.091300e+02
+12 22035     -9.581000e+01 5.753600e+02
+13 22035     3.494000e+02 2.106200e+02
+12 22036     -1.683800e+02 5.553700e+02
+13 22036     2.932500e+02 1.978700e+02
+12 22037     -6.738200e+02 5.229900e+02
+14 22037     8.770020e+00 -1.943700e+02
+12 22038     -6.398500e+02 3.514100e+02
+14 22038     6.409973e+00 -3.385200e+02
+12 22039     -8.226000e+02 3.282700e+02
+14 22039     -1.421300e+02 -3.382400e+02
+12 22040     -8.055100e+02 3.011900e+02
+14 22040     -1.337600e+02 -3.621200e+02
+12 22041     -1.368600e+02 2.469800e+02
+13 22041     2.910200e+02 -4.059003e+01
+12 22042     -7.728800e+02 1.789800e+02
+15 22042     -6.611700e+02 4.779000e+02
+12 22043     2.093000e+02 1.509000e+02
+15 22043     2.450400e+02 1.913500e+02
+12 22044     -2.274400e+02 1.432300e+02
+13 22044     2.252700e+02 -1.330700e+02
+12 22045     -1.204900e+02 6.966998e+01
+15 22045     -1.244300e+02 1.612200e+02
+12 22046     -3.455200e+02 -1.898999e+01
+13 22046     1.190600e+02 -2.259200e+02
+12 22047     -6.050000e+01 2.609600e+02
+13 22047     3.602400e+02 -7.472998e+01
+14 22047     5.284301e+02 -5.547100e+02
+12 22048     2.222800e+02 2.479100e+02
+13 22048     5.693000e+02 -1.142900e+02
+15 22048     3.047200e+02 3.189100e+02
+12 22049     -6.482900e+02 1.844000e+02
+15 22049     -5.142200e+02 4.886100e+02
+12 22050     -2.203700e+02 -5.590997e+01
+13 22050     2.173300e+02 -2.869200e+02
+12 22051     -9.040002e+01 -7.678998e+01
+13 22051     3.095300e+02 -3.193900e+02
+15 22051     -1.259500e+02 -1.223999e+01
+12 22052     -7.957001e+01 -2.211900e+02
+15 22052     -1.295200e+02 -1.641900e+02
+12 22053     -4.293800e+02 -2.396100e+02
+13 22053     4.287000e+01 -3.814700e+02
+12 22054     -4.112000e+02 -2.755900e+02
+13 22054     5.319000e+01 -4.114000e+02
+15 22054     -4.150600e+02 -1.247500e+02
+12 22055     -6.589001e+01 3.019100e+02
+15 22055     1.675699e+02 5.467800e+02
+12 22056     -2.313900e+02 -2.495300e+02
+13 22056     1.859500e+02 -4.179100e+02
+12 22057     -2.408200e+02 3.850200e+02
+13 22057     2.239399e+02 7.769000e+01
+14 22057     3.541100e+02 -3.510100e+02
+12 22058     -5.960200e+02 3.155100e+02
+13 22058     -3.254999e+01 4.920001e+01
+12 22059     5.223800e+02 1.135300e+02
+15 22059     7.846801e+02 1.861600e+02
+12 22060     -4.192100e+02 -2.872700e+02
+15 22060     -4.260400e+02 -1.358300e+02
+12 22061     2.881300e+02 1.585100e+02
+13 22061     6.117600e+02 -1.874400e+02
+12 22062     -1.153600e+02 8.780029e+00
+13 22062     2.972800e+02 -2.537900e+02
+12 22063     1.802800e+02 5.973800e+02
+13 22063     5.683600e+02 2.207100e+02
+14 22063     7.793900e+02 -1.872000e+02
+13 22064     2.403199e+02 6.599731e-01
+15 22064     -1.429993e+00 5.502700e+02
+13 22065     9.066998e+01 -3.471002e+01
+14 22065     1.856300e+02 -4.869399e+02
+15 22065     -2.457200e+02 4.853300e+02
+13 22066     6.387000e+02 -5.437000e+01
+15 22066     5.966801e+02 4.643500e+02
+13 22067     -2.520700e+02 -5.721997e+01
+14 22067     -2.428200e+02 -4.944301e+02
+15 22067     -8.082100e+02 4.273600e+02
+13 22068     -1.008500e+02 -8.966998e+01
+14 22068     -5.752002e+01 -5.462000e+02
+15 22068     -5.554200e+02 3.868700e+02
+13 22069     3.371300e+02 -1.565800e+02
+15 22069     -7.259998e+01 2.442600e+02
+13 22070     -1.509900e+02 -2.296100e+02
+15 22070     -6.677100e+02 1.555800e+02
+13 22071     -2.067200e+02 -2.419600e+02
+15 22071     -7.530400e+02 1.337500e+02
+13 22072     -2.084800e+02 -2.446000e+02
+15 22072     -7.565000e+02 1.293000e+02
+13 22073     3.361500e+02 -2.759100e+02
+15 22073     -8.146002e+01 5.587000e+01
+13 22074     5.983002e+01 -2.790600e+02
+15 22074     -3.663300e+02 8.373999e+01
+13 22075     3.418800e+02 -2.791500e+02
+15 22075     -7.394000e+01 5.016998e+01
+13 22076     -7.927002e+01 -2.831700e+02
+15 22076     -5.751800e+02 7.284998e+01
+13 22077     5.121997e+01 -2.857100e+02
+15 22077     -3.813500e+02 7.392999e+01
+13 22078     3.679200e+02 -2.890300e+02
+15 22078     -3.883002e+01 3.396997e+01
+13 22079     -1.754700e+02 -2.927600e+02
+15 22079     -7.191700e+02 5.409998e+01
+13 22080     5.198800e+02 -3.184500e+02
+15 22080     1.850500e+02 -1.271002e+01
+13 22081     4.119500e+02 -3.230500e+02
+15 22081     1.595001e+01 -2.114001e+01
+13 22082     1.126800e+02 -4.855200e+02
+15 22082     -3.535400e+02 -2.381200e+02
+13 22083     6.044600e+02 -2.841998e+01
+15 22083     5.510800e+02 5.071200e+02
+13 22084     5.620001e+01 -2.698700e+02
+15 22084     -3.689400e+02 9.884000e+01
+13 22085     -2.541998e+01 -3.533000e+02
+15 22085     -5.142700e+02 -3.601001e+01
+13 22086     -1.955900e+02 -3.773300e+02
+15 22086     -7.698100e+02 -8.114001e+01
+13 22087     5.309003e+01 -2.096300e+02
+15 22087     -3.567100e+02 1.964500e+02
+13 22088     -1.722800e+02 -2.958000e+02
+15 22088     -7.155600e+02 4.906000e+01
+13 22089     -4.651001e+01 -3.769800e+02
+15 22089     -5.508800e+02 -7.258002e+01
+13 22090     6.371100e+02 -4.607001e+01
+15 22090     5.948101e+02 4.769100e+02
+13 22091     -9.215997e+01 -2.152800e+02
+15 22091     -5.756900e+02 1.820000e+02
+13 22092     -1.344900e+02 -2.470200e+02
+15 22092     -6.465600e+02 1.298700e+02
+13 22093     7.197998e+01 -2.940800e+02
+15 22093     -3.537400e+02 6.079999e+01
+13 22094     4.086400e+02 -2.287400e+02
+15 22094     1.708002e+01 1.250200e+02
+13 22095     7.952002e+01 -5.238199e+02
+15 22095     -4.078200e+02 -2.965800e+02
+13 22096     1.065500e+02 -5.634399e+02
+15 22096     -3.789600e+02 -3.549700e+02
+13 22097     9.940002e+01 -5.793700e+02
+15 22097     -3.944900e+02 -3.789900e+02
+13 22098     3.395300e+02 1.659973e+00
+15 22098     1.509301e+02 5.550700e+02
+14 22099     -2.492600e+02 -3.784700e+02
+15 22099     -8.605900e+02 5.703900e+02
+14 22100     6.095001e+01 -4.518600e+02
+15 22100     -3.997800e+02 5.197300e+02
+14 22101     8.408002e+01 -4.590699e+02
+15 22101     -3.668100e+02 5.134200e+02
+14 22102     6.578003e+01 -4.800800e+02
+15 22102     -3.920800e+02 4.843700e+02
+14 22103     1.808000e+02 -5.225200e+02
+15 22103     -2.593700e+02 4.393600e+02
+14 22104     8.235999e+01 -5.621600e+02
+15 22104     -3.864900e+02 3.803600e+02
+14 22105     2.212600e+02 -4.689200e+02
+15 22105     -1.963200e+02 5.126800e+02
+-1.6943983532198115e-02
+1.1171804676513932e-02
+2.4643508831711991e-03
+7.3030995682610689e-01
+-2.6490818471043420e-01
+-1.7127892627337182e+00
+1.4300319432711681e+03
+-7.5572758535864072e-08
+3.2377569465570913e-14
+1.5049725341485708e-02
+-1.8504564785154357e-01
+-2.9278402790141456e-01
+-1.0590476152349551e+00
+-3.6017862414345798e-02
+-1.5720340175803784e+00
+1.4321374541298685e+03
+-7.3171919892612292e-08
+3.1759419019880947e-14
+-3.0793597986873011e-01
+3.2077907982952031e-01
+2.2253985096991455e-01
+8.5034483295909009e+00
+6.7499603629668741e+00
+-3.6383814384447088e+00
+1.5720470590375264e+03
+-1.5962623661947355e-08
+-1.6507904848058800e-14
+-5.0745844824357222e-01
+4.5303458110886097e-01
+2.2317202418459384e-01
+9.1306864710351512e+00
+5.9515833258622060e+00
+-7.6457709870603523e+00
+1.5825296104485496e+03
+2.8396179128925302e-08
+-1.6632889946223164e-14
+-5.4190895666684902e-01
+1.5526677008664553e-02
+-1.6877622388014260e+00
+5.1389661257507346e-01
+-3.9361473252571764e+00
+1.8563465078437710e-01
+8.0950263306504257e+02
+-3.4787985043033058e-08
+1.5727329975251402e-14
+-4.6199749901824139e-01
+-1.3462678449565035e-01
+-2.7655989910677667e-03
+6.7036162401353909e+00
+-5.6950053120212196e-01
+-2.5772976969377024e+00
+1.6264890616332227e+03
+-6.4500853555528371e-08
+1.2672672554812731e-14
+-8.3522103675774007e-02
+3.1271352334539093e-01
+2.9408525721888279e-01
+6.2819486572771588e+00
+2.3896130273141107e+00
+-5.1263805197250427e+00
+1.8404919562538214e+03
+2.2936515038096812e-08
+-5.5180676319504426e-15
+1.9560326962733694e-02
+1.4581340754881897e-01
+1.7225925889972585e-01
+2.3258419016619349e+00
+1.0874497756865391e+00
+-8.8330321074721019e-01
+1.3803662776589658e+03
+-4.9548734853836975e-08
+4.1206653633014918e-15
+-3.0426031970123302e-01
+2.4306062967665967e-01
+1.9921491985566070e-01
+7.5686772770161372e+00
+5.6697767062140612e+00
+-2.7534424108541034e+00
+1.2658741730559138e+03
+-4.0731113548610113e-08
+1.4881640896710336e-14
+-2.4718370286368840e-01
+4.1250983665351643e-01
+3.2258686917584084e-01
+8.3906521818774866e+00
+7.6356324882750588e+00
+-4.0393146074189934e+00
+1.3006437482860154e+03
+7.2570774295224158e-08
+3.7861040149889573e-17
+7.4075332554964304e-02
+5.9446011231445044e-02
+9.6119588739598152e-02
+5.9440613097427708e-01
+-1.4752921963904655e-01
+-1.1034534058507917e+00
+1.6145816582805749e+03
+-9.9667148984180577e-09
+-7.3005873105562568e-15
+-5.5851768691647696e-01
+-1.2167381494725156e-01
+1.3881817493742199e-02
+1.6460164136564166e-02
+-1.3201099561474590e+00
+-1.6817742630030383e+00
+1.3005123781399852e+03
+-9.7618462555854297e-08
+4.3157312719854263e-14
+-9.5387279002022610e-02
+1.9945484628981378e-01
+2.3854411140028939e-01
+4.2154041550066710e+00
+2.9170530103473862e+00
+-8.6454120224582920e-01
+1.6148741715790500e+03
+-2.6553673156909878e-08
+-7.1183044217437357e-15
+-2.4777543527755438e-01
+-5.6493283071549855e-02
+7.3454943551223492e-02
+6.0519868979469198e+00
+4.4157699447496307e-01
+-3.4019703341060392e+00
+1.3214450945522510e+03
+-9.9403845264522475e-08
+3.7263163633599822e-14
+-5.2302816650376893e-01
+-9.7422865121392060e-02
+2.5749828963323750e-02
+5.9851423763289127e+00
+-5.9280499357722183e-01
+-2.3806835984882517e+00
+1.5639231366371853e+03
+-4.1766427572041569e-08
+-3.1300678552939753e-15
+5.1148629137208801e-02
+4.8788101061955271e-03
+1.0306485524990512e-01
+3.0650512995840401e-01
+-4.2021910347109205e-02
+-1.3305700705714003e+00
+1.9182461401585990e+03
+-6.0378231632301450e-09
+-5.4354572172859500e-15
+-1.2055995050700867e+01
+1.2838775976205760e+01
+-4.1099369264082803e+01
+6.4168905904672933e+00
+3.8897031177598462e-01
+-2.3586282709150449e+01
+1.3051100355717297e+01
+3.8387587111611952e+00
+-2.9777932175344951e+01
+1.3060946673472820e+01
+3.5910521225905803e+00
+-2.9759080795372942e+01
+1.4265764475421857e+01
+2.4096216156436530e+01
+-5.4823971067225500e+01
+-2.5292283211391348e-01
+2.2166082122808284e+00
+-2.1712127480255084e+01
+7.6465738085189585e+00
+1.4185331909846619e+01
+-5.2070299568846060e+01
+-4.5666860198903217e-02
+1.6364966985344431e+00
+-2.1119068394959317e+01
+-9.3922118197451177e-01
+2.2977836587647551e+00
+-2.2346238379188293e+01
+-9.3157405364960315e+00
+1.4418536429929048e+01
+-4.2521843836265795e+01
+8.1564293970067787e+00
+2.0335061262211823e+01
+-5.3988836851055702e+01
+-1.0195950900706562e+01
+1.3125515245629000e+01
+-4.3394209085130001e+01
+-4.1730772942150054e+00
+-7.5818063240023132e+00
+-2.2199790899712742e+01
+-1.0122509268375650e+01
+1.3791135927519628e+01
+-4.2557863769575434e+01
+-1.4733471293428423e+01
+8.2498352883047694e+00
+-4.3983924858521931e+01
+-1.2890269048582207e+01
+1.0937199532126284e+01
+-4.3350281232011326e+01
+-1.2130155071639640e+01
+1.1551505848632800e+01
+-4.3434133604149501e+01
+-1.5814797015635117e+01
+1.3201958628459549e+01
+-3.7137407503896320e+01
+-1.3001177442484771e+01
+1.3501147848008733e+01
+-3.9152214100669255e+01
+-1.5468058273119349e+01
+1.1027549427761569e+01
+-4.0372117516000088e+01
+-1.6610320588794348e+01
+9.7705664294087935e+00
+-4.0852062306923131e+01
+-1.6481451582601814e+01
+9.5629342531111892e+00
+-4.1351192635975259e+01
+-1.4323470851485515e+01
+1.2911499278327163e+01
+-3.9067355654727223e+01
+-1.3219379436074130e+01
+1.3121021480580271e+01
+-3.9985387621304490e+01
+-1.5489847438864381e+01
+1.1887964962601497e+01
+-3.9264257259844648e+01
+-1.2943776827852947e+01
+1.3458701680174595e+01
+-3.9497609861918917e+01
+-1.4997864583910502e+01
+1.2595589164373571e+01
+-3.8679760613069767e+01
+-1.3602623476812079e+01
+1.1732592955483705e+01
+-3.9913676039271593e+01
+-1.2092389175851441e+01
+1.1723676614569490e+01
+-4.3105032426072128e+01
+4.1722704944215270e+00
+-3.2355514855075138e+00
+-2.0898219813515972e+01
+-7.5215896148395629e+00
+1.5525287225060119e+01
+-4.3000464253671616e+01
+-1.4193607584275806e+01
+1.1655580363808896e+01
+-4.0948747148487250e+01
+-1.1977669054631800e+01
+1.2193591834706842e+01
+-4.2611000137875891e+01
+-1.1487376900222156e+01
+1.3800220881593839e+01
+-4.0895083677341830e+01
+-1.3101221233134449e+01
+1.3415578674361784e+01
+-3.9678421263843397e+01
+-1.0408154999016697e+01
+1.3570337113289430e+01
+-4.2295710253066346e+01
+-1.0336996754757942e+01
+1.3677535053393420e+01
+-4.2158040485577352e+01
+-1.4890345781564415e+01
+1.0640945436069295e+01
+-4.3869696180852856e+01
+-1.5439488017453542e+01
+1.3161187543066063e+01
+-3.7426151271358222e+01
+-1.0788785281819836e+01
+1.5314053582609729e+01
+-3.9316575501054110e+01
+-3.7236295344529440e+00
+1.7707485028874459e+01
+-4.3980166340165177e+01
+-1.0535545701472845e-01
+1.9539653279129492e+01
+-4.5144051535007371e+01
+5.2883253582039504e+00
+2.1603462628752677e+01
+-4.8776240921983828e+01
+-4.0334112678002327e+00
+1.8087465979340884e+01
+-4.3206029435357927e+01
+-6.5748298583804878e+00
+1.7013709501319390e+01
+-4.1776411731661675e+01
+2.2985879446252238e+00
+2.0715198418740531e+01
+-4.6164868002967481e+01
+2.2057190846131269e+00
+4.7901626202813220e-02
+-2.0187151302722192e+01
+9.5366671051919105e-01
+2.0774161648112677e+00
+-2.0944888029865126e+01
+-2.2038985290079229e+00
+2.7569485371045586e+00
+-2.5898552543004985e+01
+1.2338447180914434e+01
+5.7576604158414844e+00
+-3.0496971231187995e+01
+-2.5695777583071417e-02
+3.0275299881657238e+00
+-2.2235316062421788e+01
+2.8027973769428818e+00
+1.9863684518901450e+00
+-2.1102311636134566e+01
+1.6462312576693374e+00
+1.7697590450305434e+00
+-2.0652195002814363e+01
+9.8607815071822891e-01
+1.7879942743277102e+00
+-2.0718835852919678e+01
+8.3223132051627893e+00
+2.0237944718676395e+01
+-5.4112453578902787e+01
+-9.1448097318851826e-02
+2.7285698495380570e+00
+-2.1982568855817838e+01
+4.0683820631426565e-01
+1.5076206891564590e+00
+-2.0793763567888718e+01
+8.3223132051627893e+00
+2.0237944718676395e+01
+-5.4112453578902787e+01
+1.3305080128217671e+01
+1.0838832728765045e+01
+-3.6982374788689015e+01
+8.4444187354981626e+00
+1.9206696987701626e+01
+-5.5914419173348932e+01
+-1.1708282462479751e+00
+7.2967385675882690e-01
+-2.1819952111983557e+01
+9.7933230112498137e-01
+1.7086448322700956e+01
+-5.0523548919760465e+01
+1.2221727333307381e+01
+5.6733498240262046e+00
+-3.1125673707298319e+01
+1.9034310574744684e-01
+-1.8160404872239508e+00
+-2.0468195445088373e+01
+-2.1659953859785546e+00
+-3.1254009490401744e+00
+-2.2563815258905613e+01
+2.1384733347218603e+00
+-3.0802223067854055e+00
+-1.9908492133886853e+01
+1.7367879819631544e+00
+1.6469729569597105e+00
+-2.0520720987391282e+01
+5.2617880228908198e-01
+-6.9185819148783523e-01
+-2.0590099857964692e+01
+6.3874618867152544e-01
+-1.3187132697230937e+00
+-2.0647550589146711e+01
+1.2647733031011533e+01
+5.1961694448864311e+00
+-2.9399490753427564e+01
+1.3795378248902359e+00
+-7.6878425985502785e-01
+-2.0350595375182053e+01
+1.4315518877604346e+01
+-5.6136513091969042e-01
+-2.9519492877392064e+01
+1.1554678526175195e-01
+-9.3933505831206432e-01
+-2.0878668350677387e+01
+3.1644261673191467e+00
+3.4677192949276954e+00
+-2.3073814094687194e+01
+7.6882406288350680e+00
+1.3206124904342259e+01
+-5.0763019819668543e+01
+2.0722453780144736e+00
+-1.1063622264341091e+00
+-2.0592690518394654e+01
+1.2420505555534725e-01
+-8.2221311682338827e-01
+-2.0853589510220068e+01
+8.9454289801556425e-02
+-1.0902014182619606e+00
+-2.0872513815887075e+01
+9.2109599944383103e+00
+2.1619764559502414e+01
+-5.2653190142864638e+01
+1.3471765895096295e+01
+2.2713785522053577e+01
+-5.5856461814886401e+01
+1.2878639971896185e+01
+4.2293346902023181e+00
+-2.9273033260772596e+01
+1.6424063017948554e+00
+-1.0696515984778230e+00
+-2.0521171853086816e+01
+4.5505258987761508e+00
+1.7915737821097192e+01
+-5.3336332066950945e+01
+2.4139404567635800e+00
+8.3602803660871206e-01
+-2.0417231525096362e+01
+1.0602586010368089e+00
+-1.2230738496607149e-01
+-2.0352919808768640e+01
+1.0537807596836548e+00
+-3.3696180808966941e-01
+-2.0302524143369787e+01
+2.3338503782330360e+00
+-7.0010616085310717e-01
+-2.0447754385917694e+01
+-4.5357684073392418e-01
+-1.4028430277113899e-01
+-2.1126653703666761e+01
+-7.7741574788884782e-01
+-1.5436954178327000e-01
+-2.1433767879003202e+01
+3.4657260888591437e+00
+1.6625427812221439e+01
+-5.4267459065268689e+01
+1.2217594885681772e+01
+6.3634069254071735e+00
+-2.9849840378886029e+01
+-1.6281775499166812e+01
+1.2161130860425370e+01
+-3.8082881954625293e+01
+-5.2714654304547910e+00
+-7.2925951614546705e+00
+-2.2500218866281099e+01
+-1.4887580637326462e+01
+1.2177848537206634e+01
+-3.9415631100726387e+01
+-1.6241020094981028e+01
+1.1438473551387050e+01
+-3.9196459729528392e+01
+-1.0755821803942682e+01
+1.4975528553103645e+01
+-3.9860281668526056e+01
+-1.1569133258224912e+01
+1.4488562828307538e+01
+-3.9833794144943880e+01
+-1.1164764827057613e+01
+1.3460130612988104e+01
+-4.1898737599725060e+01
+-1.4799564429666667e+01
+1.2716342204815238e+01
+-3.8756177758914056e+01
+-1.5693807491168926e+01
+1.3085572859702195e+01
+-3.7598626768156365e+01
+-1.3153053873076177e+01
+1.2944703745244125e+01
+-4.0267692532305148e+01
+-1.2685490734300652e+01
+1.4582316925669394e+01
+-3.8343830443086986e+01
+-1.3648482585396600e+01
+1.2706023346091859e+01
+-4.0084660671339563e+01
+-1.4821562827306279e+01
+1.3540581912810882e+01
+-3.7648893303576969e+01
+-1.2621162946078076e+01
+1.4237577619987906e+01
+-3.8773171809243763e+01
+-1.3568320609496041e+01
+1.2868279969684632e+01
+-3.9770172126916364e+01
+-1.4605638191708904e+01
+1.2358588892360890e+01
+-3.9513860021573407e+01
+-1.5465940763607176e+01
+1.3280757278973054e+01
+-3.7227731324372130e+01
+-2.9645041367630705e+00
+2.9645903136982290e+00
+-2.7351028144358924e+01
+-1.2699204776009498e+01
+1.3441487554740725e+01
+-3.8854986215733675e+01
+-1.0116366597908868e+01
+1.4107396842048257e+01
+-4.2086211787765578e+01
+1.0132852109482511e-01
+-2.9393240849989750e+00
+-2.0148603436691761e+01
+-5.2754020594404649e-01
+-2.8330358293059699e+00
+-2.0401355367757379e+01
+1.6392895412941588e-01
+-2.9443932610560153e+00
+-2.0136490713040871e+01
+-9.4108889948283217e-02
+2.4550715619215966e+00
+-2.1744987173619080e+01
+-1.5113514739570715e+00
+1.8312788520119265e+00
+-2.2717046678258033e+01
+2.1188837496369479e+00
+1.9391318001295136e+01
+-4.8385941132088298e+01
+1.5295220196544932e+00
+8.2071655723559345e-01
+-2.0292263671506728e+01
+-1.3933848707282639e+00
+1.7937497338633300e+01
+-4.6569810356910011e+01
+1.2212860553927525e+01
+6.4778662498457820e+00
+-2.9643633908279320e+01
+-9.3221027128700715e-02
+1.8403209950468398e+01
+-4.7562533963813713e+01
+-1.5439544094304034e+00
+1.7832255240560727e+01
+-4.6070953372477248e+01
+1.3365429542626959e+00
+6.1282759788998176e-01
+-2.0439494058326538e+01
+1.2652449391346192e+01
+4.4247615911446765e+00
+-3.0606401453112500e+01
+-1.0654261664994600e+00
+1.8462661659407516e+01
+-4.6580900460391419e+01
+4.8499714453899063e+00
+1.8568013426587818e+01
+-5.2627449456835592e+01
+1.2282242161958600e+01
+2.3983398862768713e+01
+-5.2970029719063078e+01
+-3.8936535834289905e+00
+1.7436672358581486e+01
+-4.4374232546556321e+01
+1.4189750097466858e+00
+6.6465398066128070e-02
+-2.0238232819780393e+01
+2.0629234670780461e+00
+8.4337164209939774e-01
+-2.0312160718578209e+01
+1.3264535216331744e+01
+1.1153884499549482e+01
+-3.6799859977304692e+01
+1.2413831988157357e+01
+2.3233173258895029e+01
+-5.4266005042200177e+01
+1.7635174543172241e+00
+1.8868427463340656e+00
+-2.0714660316808178e+01
+6.6376804370839535e+00
+2.2127463262857201e+01
+-4.8454584602940294e+01
+1.6903070320606466e+00
+2.0770382504295647e+01
+-4.5657510178754855e+01
+1.3060174061005087e+01
+1.2229091824759962e+01
+-3.5503431454087739e+01
+2.1128577062159981e+00
+1.4160407525931848e+00
+-2.0394860450600291e+01
+1.3711342103387755e+01
+1.0426131146748835e+01
+-3.5351843674485160e+01
+-6.5255159702153065e-01
+4.4489534436489381e-01
+-2.1267180361104828e+01
+1.3015738373451009e+01
+3.5312745890192989e+00
+-3.0199774599691100e+01
+1.6083339504726066e+01
+2.3441898495168537e+01
+-5.8163435344457412e+01
+-1.8916793818364128e+00
+1.6197202840298370e+01
+-4.5358442895844618e+01
+-1.1808446363523881e+00
+2.7478119504869514e+00
+-2.3063284547707990e+01
+8.2830261207640437e+00
+2.0686127143512806e+01
+-5.2993127906546619e+01
+7.2239267710232076e+00
+2.2376012093108393e+01
+-4.9416529174175501e+01
+-5.2799551794695898e-01
+2.6723175378306407e-01
+-2.1163742170969805e+01
+1.1359557582860599e-02
+6.2495774696980011e-01
+-2.0771573699160619e+01
+8.3165255109637437e-01
+8.9484952385676525e-02
+-2.0362286766267658e+01
+1.8364105537716621e-01
+8.3342962280020694e-01
+-2.0717600684879191e+01
+8.0817898835022834e+00
+2.1360086686432830e+01
+-5.1952531410324021e+01
+1.3579678340577679e+00
+1.8684379995897480e+01
+-4.8406982600175624e+01
+1.2950478659711411e+01
+2.3760714148610127e+01
+-5.3711811558258518e+01
+4.6446443931631265e+00
+2.0393329264003452e+01
+-4.9525642622783110e+01
+9.8221440171510270e+00
+2.3183310541487153e+01
+-5.1642737825743453e+01
+1.2316214207168693e+01
+2.3343672653666669e+01
+-5.3621309075430268e+01
+2.6131163467521872e+00
+9.2699250520855991e-01
+-2.0365811241946520e+01
+1.8724715944674137e+00
+7.9540614630924633e-01
+-2.0216334505583141e+01
+1.2233017753125520e+01
+2.3268149603812784e+01
+-5.4444275671850285e+01
+1.6691799382087293e+01
+2.5323290914951254e+01
+-5.6093571819062731e+01
+1.7790032255381655e-01
+7.0078961614171575e-01
+-2.0646285315253515e+01
+1.5974105213886867e+00
+9.2471637369633064e-01
+-2.0288417924540262e+01
+1.8139099498207663e+01
+2.5854993561939736e+01
+-5.6545836308224168e+01
+1.3219061973314419e+01
+1.1294631142232275e+01
+-3.6504630330334201e+01
+9.6630225425999523e+00
+2.0932735809462883e+01
+-5.5049030902396964e+01
+1.0721776241660061e+01
+2.0923799387803530e+01
+-5.5481317748320535e+01
+-1.1457626906122384e-01
+8.8811252418346684e-02
+-2.0795155195437722e+01
+1.2138810166422033e+01
+2.3541225562269158e+01
+-5.3438532145399613e+01
+1.4365210488390003e+01
+2.4332218574541379e+01
+-5.4608766822275847e+01
+1.8364105537716621e-01
+8.3342962280020694e-01
+-2.0717600684879191e+01
+1.3657202805238461e+01
+9.9999150683369749e+00
+-3.6413837776974610e+01
+-3.5180310923762574e+00
+1.7454997714689590e+01
+-4.4556239485850597e+01
+3.2027749765198528e+00
+1.9591923566476787e+01
+-4.9086611502690268e+01
+1.6592168020179749e+00
+-1.6837630677471579e-01
+-2.0154734541425299e+01
+-3.7180025088283091e+00
+1.8377309901119506e+01
+-4.2880434712214083e+01
+1.7748961744599376e+00
+2.0550615212167433e+01
+-4.5922223848483107e+01
+-3.0455372177162672e+00
+1.7106789910236383e+01
+-4.5748797041009126e+01
+-3.5035514780351478e+00
+1.7682169830158649e+01
+-4.4458256317972214e+01
+1.2626734170577036e+01
+4.5598503355297160e+00
+-3.0583962630196361e+01
+1.3360271082856562e+01
+1.0885122855036675e+01
+-3.6394407990597280e+01
+-4.3619264411510955e-02
+2.2295447889349420e+00
+-2.1537045569232845e+01
+6.5370202788479648e-01
+1.8098384480115858e+01
+-4.9148787859699354e+01
+9.0603416677682291e-01
+1.4509319240341918e+00
+-2.0617245825255605e+01
+5.5657031507539090e-01
+4.7081511083515037e-01
+-2.0472121437404901e+01
+-1.8844622060592471e+00
+1.6407886524392016e+01
+-4.5542634884489281e+01
+6.3342953770384689e+00
+2.1050491217368791e+01
+-5.0608679347726770e+01
+4.8485503664595928e+00
+1.8708353026004136e+01
+-5.2242271095875111e+01
+-1.5021810008457659e+00
+1.3136872041027745e+00
+-2.2407958355095158e+01
+-1.6222935841791761e-01
+2.2123134228013357e+00
+-2.1584473614175014e+01
+-3.9159113456349250e+00
+1.6083267542541002e+01
+-4.5942063341724655e+01
+-3.7236295344529440e+00
+1.7707485028874459e+01
+-4.3980166340165177e+01
+-1.0538455370947828e+00
+1.7744415526991332e+01
+-4.7247178851168030e+01
+-8.8251591109232419e-01
+1.4662241029298635e+00
+-2.1717147092159493e+01
+1.1608502743640880e+01
+2.3730450717361602e+01
+-5.2353791750356478e+01
+7.6300073551691805e-01
+6.0536270926437974e-01
+-2.0409404278430610e+01
+-2.6036147537945342e-01
+1.8071940297688631e+01
+-4.7689128711943660e+01
+-3.9981656427510698e-01
+1.9910673638566885e+00
+-2.1645123037312700e+01
+3.2630227535330669e+00
+2.0866573986817752e+01
+-4.6700744146307358e+01
+6.4986533040911976e-01
+1.4958871330379156e-01
+-2.0419006853449467e+01
+-1.2288126734643152e+00
+1.8364061832020091e+01
+-4.6017967789331315e+01
+1.2683796642231936e+01
+5.2830497438786148e+00
+-2.9031410780016721e+01
+2.8521546299338723e+00
+4.1943561659907175e-01
+-2.0361700757077166e+01
+1.7787386189705662e-01
+1.5646000755805314e+00
+-2.0931100390442694e+01
+1.2314271371199098e+01
+6.0746537502619624e+00
+-2.9730689209976308e+01
+2.7735106031681163e+00
+1.4564824961116165e+00
+-2.0598284877726847e+01
+1.2652449391346192e+01
+4.4247615911446765e+00
+-3.0606401453112500e+01
+4.0951565383373451e-01
+2.6804085824571050e-01
+-2.0665870796920956e+01
+1.2776650556345495e+00
+1.4042740704093339e+00
+-2.0438716590528248e+01
+4.1875391895353364e-01
+1.8773211995608460e+01
+-4.6265248158975879e+01
+6.7459117718180972e-01
+1.7096074358066833e+01
+-5.0051230600861864e+01
+1.3394159243957109e+00
+2.0581755021224417e+01
+-4.5343013618808463e+01
+1.1939754452705591e+00
+1.2907718070272540e+00
+-2.0448373197523907e+01
+1.8932345495906318e+00
+1.9132966610944969e+01
+-4.8019509549208529e+01
+-8.5478772809575898e-01
+1.8882490348273699e+01
+-4.5426978085448326e+01
+1.3696180495422472e+00
+1.9662633733490662e+01
+-4.6979349009612463e+01
+4.1787466687453806e-01
+6.3162741286761548e-01
+-2.0554022365982988e+01
+1.3394159243957109e+00
+2.0581755021224417e+01
+-4.5343013618808463e+01
+9.3534255446752118e-02
+2.7195516223500382e-01
+-2.0637581304653168e+01
+1.3773442366017805e+00
+1.3954830934354681e+00
+-2.0351285295074177e+01
+1.5241464854169031e+00
+1.9958210372136769e+01
+-4.6519459046539239e+01
+1.1859739625431242e+01
+2.3724723765358437e+01
+-5.2466039590599706e+01
+3.9913617745083674e-01
+2.0172630795454540e+00
+-2.1023513117442612e+01
+8.1692238268417161e-01
+2.1781982724504800e+00
+-2.1099504646342037e+01
+9.1568432496149410e-01
+5.8191291178252991e-01
+-2.0338934855039088e+01
+1.3493702496442914e+01
+1.0909394430848192e+01
+-3.5524135330990568e+01
+-5.4991095705615389e-01
+2.2887477806152896e+00
+-2.1965755626577852e+01
+1.3062743779832616e+01
+3.1603029887265794e+00
+-3.0560029239026250e+01
+7.9493305342873652e+00
+2.0213873996924768e+01
+-5.2951369732391150e+01
+3.2249497859761878e+00
+1.9770823583739173e+01
+-4.8800490946093888e+01
+-3.2140463460687849e+00
+1.6908957053074072e+01
+-4.5715109161108273e+01
+1.2994826882297453e+01
+3.9021671317089712e+00
+-2.9659945936566618e+01
+1.8187617222918263e+01
+2.6106116650050730e+01
+-5.7355497603229381e+01
+1.2963765286340511e+01
+1.1948407636984070e+01
+-3.7149394360261965e+01
+1.4613571808531312e+01
+2.4674742545800733e+01
+-5.4554960772568108e+01
+-1.0627971828921456e+00
+2.3561453417405978e+00
+-2.2501425054956396e+01
+3.3617627781535973e+00
+9.1146429982883526e-01
+-2.0698677277232406e+01
+-6.4059143627651183e-01
+6.4098515889956453e-01
+-2.1374256841171899e+01
+-9.1194108390327655e-01
+1.1719285173397120e+00
+-2.1665304960731568e+01
+1.1878469651213361e+00
+6.9556071779582318e-01
+-2.0318882711963433e+01
+1.5317683178570505e+01
+2.3002912771663365e+01
+-5.6786938713737726e+01
+-6.3025826326966605e+00
+1.6945667519703523e+01
+-4.2081952435603498e+01
+-3.7679686612692515e-01
+1.7940133282027251e+01
+-4.7955784215035315e+01
+-3.1910675058790470e+00
+1.7054830959582837e+01
+-4.5524739381532207e+01
+-1.1985192362468586e+00
+1.9500660810919449e+01
+-4.4045041661371791e+01
+-9.4027125764285580e-01
+1.9773185974095636e+01
+-4.4197742576349050e+01
+7.8544395308665687e+00
+2.2046282225397686e+01
+-5.0743670152472809e+01
+1.6789380935150389e+00
+2.0045590417665647e+01
+-4.6851562603133765e+01
+-3.6763637558496134e+00
+1.8230186839900430e+01
+-4.3369664921023045e+01
+1.1200650174600922e+01
+2.3560911618736167e+01
+-5.3219923481468598e+01
+-3.6103688246674310e+00
+1.8145404899226687e+01
+-4.3584183512391185e+01
+-8.5893772455667250e+00
+1.5270282559401442e+01
+-4.2180623177655256e+01
+4.1889732607337105e-01
+-1.9143510918464115e+00
+-2.0420518094431234e+01
+6.3608694044772450e-03
+-1.8704534384387734e+00
+-2.0637727739069756e+01
+-1.7745693564487164e+00
+-3.1178239113427613e+00
+-2.2028757620014712e+01
+-7.6253542938347629e-01
+-2.9135861379667780e+00
+-2.0697188471297476e+01
+-1.9053981406318772e+00
+-3.5327303723844317e+00
+-2.2466730864396581e+01
+-4.9105691867580861e+00
+1.7826764845502012e+01
+-4.2353369757813972e+01
+1.0789592042862863e+00
+2.0153005244368124e+01
+-4.5755004688004092e+01
+1.4789900886510967e+01
+2.4833230388910870e+01
+-5.4577181793970425e+01
+3.8320080323132544e+00
+1.7833875498232896e+01
+-5.2725356924413724e+01
+-6.8445948060088471e+00
+1.4108067212013117e+01
+-4.5735562528199424e+01
+5.6205975665821983e-01
+1.6251076131729303e+00
+-2.0804900055844154e+01
+-1.0075900392588000e+00
+2.5535594419515140e+00
+-2.2633344539978435e+01
+8.5066477109371111e-02
+9.1054274271166413e-01
+-2.0769610268338226e+01
+9.0344478234132861e+00
+2.2768350697236595e+01
+-5.0511476548913073e+01
+8.2935892201375125e+00
+2.1339479485500313e+01
+-5.2189494960116868e+01
+3.9855801926926082e+00
+1.7775506715226328e+01
+-5.2799253068477789e+01
+2.1783408879967174e+00
+3.9914374091663150e+00
+-2.3588058073486188e+01
+8.5571376553256986e-02
+2.1030157920721653e+00
+-2.1329186177372947e+01
+2.1393513041675258e+00
+1.3657351893664433e+00
+-2.0406519352602832e+01
+1.0406341194169380e+00
+1.2329328357734346e+00
+-2.0509167070198878e+01
+2.8762704219640960e+00
+6.0453027561640937e-01
+-2.0352143505917912e+01
+6.4335405733057249e-01
+1.0162599295740535e+00
+-2.0509039058599715e+01
+-1.7882004269556673e-01
+1.1941531076290202e+00
+-2.1014211637689829e+01
+8.6083528164265755e-01
+-7.1064505196524896e-01
+-2.0491807178028445e+01
+3.4619521428367199e+00
+-1.3591283169362218e+00
+-2.0618700219163276e+01
+2.2854781101432356e-01
+1.8936101630959957e+01
+-4.7195594508298825e+01
+1.8197862515926262e+00
+1.8654957308402913e+01
+-4.7997304717464026e+01
+-2.9911881580023976e+00
+1.7580524521950739e+01
+-4.5235277567836611e+01
+1.3368723184558204e+01
+1.0579752303956232e+01
+-3.7019347471725858e+01
+3.7800043133072614e+00
+1.8143695591893909e+01
+-5.2067191212885376e+01
+2.0360309039251701e+00
+3.9940945388128752e+00
+-2.3753882300136624e+01
+2.8719823184376776e+00
+1.7239262601809684e+00
+-2.0754210489826651e+01
+1.9153743682547841e+00
+1.6981262947868809e+00
+-2.0540172986108693e+01
+-5.4123782155797393e+00
+1.4045253655315895e+01
+-4.7980129757236618e+01
+1.2879455557813449e+01
+3.4663664075158223e+00
+-3.0631151266031676e+01
+-5.7895369390424403e+00
+1.3147831400042799e+01
+-4.8119347703240081e+01
+2.9183965502044074e+00
+7.5880985248465715e-01
+-2.0446791014248827e+01
+3.0409112722189944e+00
+6.6839096366674644e-01
+-2.0472954121382891e+01
+3.2759711629299932e+00
+4.7401919471918641e-01
+-2.0555847018519120e+01
+4.5919642229571589e-01
+4.5693801989708627e-01
+-2.0529445865898929e+01
+6.0514598143442955e-01
+3.9409186815487784e-01
+-2.0472413296170853e+01
+-3.2929859259596888e+00
+2.5614653656586808e+00
+-2.6746304877530424e+01
+1.3101407891621259e+01
+2.2624954297147376e+01
+-5.5126095920390185e+01
+1.3034363239003891e+01
+1.1903195698507638e+01
+-3.6270307593718563e+01
+5.0216811694770982e+00
+1.9572590609266015e+01
+-4.8735149704944945e+01
+6.9856454570477611e-01
+1.8642737178965991e+01
+-4.6359144837645118e+01
+1.4027285385669508e-01
+1.8653357054601333e+01
+-4.7308451851144667e+01
+6.7191900478177979e-01
+1.8435858136170580e+01
+-4.7303489811463933e+01
+6.7630976810127108e-01
+1.8255285788507713e+01
+-4.7669272440588898e+01
+-2.5364471871881169e+00
+1.7466966607799744e+01
+-4.5596649475013329e+01
+4.0089753283825083e+00
+1.8010050252824232e+01
+-5.2321934640474993e+01
+6.9035010932187602e-01
+1.6648847522869300e+01
+-5.0891432611805683e+01
+-4.7723237264024556e+00
+1.4445044306578087e+01
+-4.7902771248468142e+01
+-4.4288532821769117e-01
+2.6105039793459608e+00
+-2.2181616134461795e+01
+3.1192586217778406e+00
+5.8788435186722587e-01
+-2.0499663977212506e+01
+5.4882986522697430e-01
+8.2195233776883503e-01
+-2.0548512678579460e+01
+8.2856001753155162e-01
+5.1426196989787321e-01
+-2.0385213016720034e+01
+-5.6655369527505597e+00
+1.6932341102213559e+01
+-4.2749566588492165e+01
+1.2488273488715700e+01
+4.5987824500807513e+00
+-3.1252654354394256e+01
+-7.9764059031944912e-01
+1.8778466354748802e+00
+-2.1970578455104008e+01
+2.0798103602684819e+00
+4.3108996868874416e-01
+-2.0217920233456837e+01
+-2.6553038804439744e-01
+1.7909957570519164e-01
+-2.0978038667091024e+01
+-5.7437839723147344e-01
+1.3371718677604932e-01
+-2.1267401593821980e+01
+-5.5599310771916155e+00
+1.6751766270223612e+01
+-4.3212810269586868e+01
+2.1039819323830891e+00
+1.7896439064170384e+00
+-2.0601156224477080e+01
+-2.3041817344798005e-01
+8.2556990762616678e-01
+-2.1177747369786207e+01
+3.5847284065313817e-01
+-7.0857336355788425e-01
+-2.0842184020710967e+01
+2.1277232761039175e+00
+9.8659016464895688e-01
+-2.0412215583780423e+01
+1.8870046097032040e+00
+2.2302593237706991e-01
+-2.0121842069512294e+01
+2.6409590991818050e+00
+6.5226468686137151e-01
+-2.0659792688209691e+01
+1.2127752392012761e+01
+2.3718850786729980e+01
+-5.3166124459759388e+01
+1.2255217209500842e+01
+2.3601640149663613e+01
+-5.3294938840858379e+01
+8.0721839815782719e+00
+2.1720331114611383e+01
+-4.9952741766643754e+01
+7.5189958338431744e+00
+2.2123973685706481e+01
+-4.9748141912365114e+01
+8.6705018714232587e+00
+2.1864031918486379e+01
+-5.0191664602205243e+01
+2.0676864740989771e+00
+2.0731030556442338e+01
+-4.6159646298358403e+01
+2.6807748936126159e+00
+2.1065557449655131e+01
+-4.6659721229229824e+01
+-4.7438075457377487e+00
+1.8023184736848265e+01
+-4.2301089108271803e+01
+8.6705018714232587e+00
+2.1864031918486379e+01
+-5.0191664602205243e+01
+1.2184700444536389e+01
+5.8074104260750419e+00
+-3.0305140163469115e+01
+-8.8864868499594021e+00
+1.5008862336950145e+01
+-4.2251811258943484e+01
+-1.2181537348830304e+01
+1.2133528305904022e+01
+-4.2494856013087009e+01
+-1.0099535602886077e+01
+1.3545208003418853e+01
+-4.3088188190485283e+01
+-1.6249599827024646e+01
+1.0873895104731192e+01
+-4.0005315074989966e+01
+-9.6637150159097267e+00
+1.3414549510414110e+01
+-4.3542291609739330e+01
+-1.1088893413785170e+01
+1.3421308295690562e+01
+-4.2163711063435336e+01
+-1.5358760030907092e+01
+1.3464860017846634e+01
+-3.7197549854587066e+01
+-1.2821607836431497e+01
+1.4067737012642949e+01
+-3.8943018395153786e+01
+-1.2509878577356201e+01
+1.4147104301400155e+01
+-3.9178792513768570e+01
+-8.5558101149716244e+00
+1.4880839587155394e+01
+-4.2601952491264257e+01
+-1.6774964521482001e+01
+1.0951111022756871e+01
+-3.8876476684861117e+01
+-1.6259199264003112e+01
+9.8641114315897553e+00
+-4.1065773595289755e+01
+-8.7039829719943693e+00
+1.4469272890788989e+01
+-4.2829386410174223e+01
+-9.2554452041964534e+00
+1.4834050368805121e+01
+-4.2027438052650382e+01
+-1.4383492939494339e+01
+1.1552282998489149e+01
+-4.0307587999723680e+01
+-1.3290732589580800e+01
+1.2891003293754530e+01
+-4.0198570585358574e+01
+-1.6435371429910184e+01
+1.2038878020715476e+01
+-3.8512797438514170e+01
+-9.9203001804927968e+00
+1.3701123335653531e+01
+-4.2926977099318940e+01
+-1.1934087971829349e+01
+1.2651059631424967e+01
+-4.0910987499536091e+01
+-1.0264347053183132e+01
+1.2713210747410040e+01
+-4.3921761261321770e+01
+-1.2522373289827462e+01
+1.3759769823204016e+01
+-4.0365558888372277e+01
+-1.1123669377102347e+01
+1.4194931900934838e+01
+-4.0807980018337432e+01
+1.3295673931202414e+01
+1.0007531138580935e+01
+-3.8800670963793529e+01
+-6.9546626919971004e+00
+1.3923140494983027e+01
+-4.5781784080690841e+01
+-7.4652365129249842e+00
+1.3067414479656598e+01
+-4.6585093889592109e+01
+-6.5909911066051539e+00
+1.2792798344405389e+01
+-4.8221635873796309e+01
+1.3433666933142401e+01
+9.5830098980498217e+00
+-3.8909357962790338e+01
+-3.7048177797166701e+00
+5.7256477406348250e+00
+-4.0406917795576334e+01
+1.2693679039918074e+01
+4.3918267094101573e+00
+-3.0424313118687376e+01
+-3.1360247746674323e+00
+2.7553121960159861e+00
+-2.7056713422381069e+01
+2.3561548656792217e+00
+1.8381970576326352e+00
+-2.0713530762362055e+01
+2.8037835429402724e+00
+1.0079199302121620e+00
+-2.0465414526359240e+01
+3.1430836973774321e+00
+9.0341808484349151e-01
+-2.0556351744479063e+01
+3.2606536544633782e+00
+7.3906275714492287e-01
+-2.0603834882872551e+01
+3.2273093859361417e+00
+6.7504136381152680e-01
+-2.0550150357311892e+01
+4.1171132564308932e+00
+7.0114731949810560e-01
+-2.1058800558467460e+01
+3.1309580611551087e+00
+5.2610035590101589e-01
+-2.0464965436843066e+01
+1.3592009333910569e+01
+4.6067265985745665e-01
+-3.2514164149238155e+01
+3.2693360507304230e+00
+2.9953490798511750e-01
+-2.0539140901224222e+01
+1.6765841040720932e+00
+1.0620021175388704e-01
+-2.0216905247445268e+01
+2.9906294890934406e+00
+3.2459658638663812e-02
+-2.0425995150050941e+01
+1.4035761594176872e+01
+-3.9399742815392508e-01
+-3.1316471304500549e+01
+3.6755594961994537e-01
+-4.9225401291890025e-01
+-2.0609083952175482e+01
+1.4354450657327318e+01
+-1.1039740428759135e+00
+-3.0294893132801832e+01
+8.5419099938889975e-01
+-9.3211114158925079e-01
+-2.0546412920499009e+01
+1.4507226553145236e+01
+-1.2981954797741437e+00
+-2.9549750255143046e+01
+1.5834151967047463e+00
+-1.1733019849846329e+00
+-2.0557538696909003e+01
+1.6716627367559309e+00
+-3.1493555250260226e+00
+-1.9899131802771077e+01
+1.8070074443303608e+00
+-3.5698119220462803e+00
+-2.0394687808609905e+01
+4.9449343780499442e+00
+-7.9390974247969588e+00
+-2.1691022915015083e+01
+-6.8512993209279838e+00
+1.3858742087451770e+01
+-4.6032939988919033e+01
+-6.8512993209279838e+00
+1.3858742087451770e+01
+-4.6032939988919033e+01
+1.3307590412957966e+01
+1.1004297243611449e+01
+-3.6591097795071299e+01
+-7.0938516247507719e+00
+1.3182785348261614e+01
+-4.7146422106504062e+01
+1.3173896445196888e+01
+1.0490083023016537e+01
+-3.8761631056935272e+01
+-1.3039048518791423e+01
+1.0912188448127500e+01
+-4.3256660627858011e+01
+1.3402930232165636e+01
+9.5394826627593208e+00
+-3.8314953435368018e+01
+1.3655685554673713e+00
+3.9536305772341054e+00
+-2.3546802598987433e+01
+-3.2538910241711374e+00
+2.7664373893740497e+00
+-2.7019692101015135e+01
+1.2600096405455480e+01
+3.5422968600723004e+00
+-3.2513151025540495e+01
+-7.8885651007042830e+00
+2.9895377909522547e+00
+-3.6760640679961440e+01
+6.4168148971676198e-01
+1.9597716420040072e+00
+-2.0961201699875918e+01
+1.2978367157399504e+01
+2.8640458308627026e+00
+-3.1753811046754965e+01
+1.2920004232845582e+01
+2.8434371310636157e+00
+-3.2234317233323559e+01
+1.3129383434197834e+01
+2.7622515532892282e+00
+-3.0878220107573263e+01
+1.3520950567529295e+00
+1.6924308679558975e+00
+-2.0601687200255846e+01
+2.6542992118846209e+00
+1.6850890558811453e+00
+-2.0702944063413643e+01
+2.8886395679299874e+00
+1.6262171234656657e+00
+-2.0751348735128929e+01
+-4.8970343645297459e-01
+9.8664419547275206e-01
+-2.1168047495927009e+01
+3.3912441277466079e+00
+7.8427953133964123e-01
+-2.0673437429612910e+01
+1.4511701972882793e+00
+4.8730386745798798e-01
+-2.0228272482056457e+01
+1.3497921805510344e+01
+5.5393384004999691e-01
+-3.2845764598431195e+01
+5.2062571522364829e+00
+3.2378570380476429e-01
+-2.2147731707182526e+01
+1.3548353215941157e+01
+3.4941843311859244e-01
+-3.2835048607845962e+01
+2.6962411062885994e+00
+-1.5726103042295689e-01
+-2.0302759947449776e+01
+2.1013406276805040e+00
+-2.6298744005037017e-01
+-2.0223062708681283e+01
+-3.2014375777587684e-01
+-4.6676521625036593e-01
+-2.0971684559364125e+01
+3.2878550657184795e+00
+-5.9345145251629228e-01
+-2.0534862643088886e+01
+-5.7614272317022497e-01
+-7.7208931269166636e-01
+-2.1285036422437422e+01
+3.5971348743989937e+00
+-7.5644082585334071e-01
+-2.0797734885422908e+01
+3.4137851237508623e+00
+-7.7986686530293226e-01
+-2.0709769404852310e+01
+2.9367949877411519e+00
+-9.3855050788352890e-01
+-2.0638142029950284e+01
+6.7148516291763372e+00
+-1.2011062487968907e+00
+-2.1981281411415811e+01
+6.2623385990793290e+00
+-2.1599132752342500e+00
+-2.2253173797284695e+01
+4.2376919348770503e+00
+-3.2724206946756427e+00
+-2.0966369464175312e+01
+3.5649791379994609e+00
+-3.4730468072733496e+00
+-2.0739232178176415e+01
+3.5880034772020535e+00
+-3.5417623644608147e+00
+-2.0834903034018161e+01
+1.2023556120679338e+01
+-4.6524920723758161e+00
+-2.6022781232319097e+01
+1.1465642711031380e+01
+-5.7124777792347556e+00
+-2.4462997988831336e+01
+-3.2766201845737779e+00
+-8.0600565897427856e+00
+-2.1492631953865327e+01
+-3.3366588731656379e+00
+-8.1445603659970480e+00
+-2.1447042881277007e+01
+-1.8043787171043386e+00
+-8.2232849763896070e+00
+-2.1163310108186216e+01
+1.7546089825583882e+00
+-8.1509978974204191e+00
+-2.1171727901032003e+01
+-1.8424984271929854e+00
+-8.3138618558778195e+00
+-2.1077391903177734e+01
+1.3145277890474310e+01
+1.1513804498306326e+01
+-3.7042549241258165e+01
+1.3145277890474310e+01
+1.1513804498306326e+01
+-3.7042549241258165e+01
+-9.4778451400034367e+00
+1.2840652434878166e+01
+-4.4642632806121497e+01
+1.3642453935809323e+01
+1.0397747725239666e+01
+-3.5482425012865882e+01
+1.3275520564727129e+01
+1.0465963076196072e+01
+-3.7994359322644577e+01
+1.3275520564727129e+01
+1.0465963076196072e+01
+-3.7994359322644577e+01
+-1.2966777747249450e+01
+1.0806006591837281e+01
+-4.3531132596133780e+01
+8.4336264897363957e+00
+1.0562360801667277e+01
+-4.6998613193829435e+01
+2.5472958757980240e+00
+9.9947730507966490e+00
+-4.6166131992531355e+01
+7.3480174210372127e+00
+8.4595803918693449e+00
+-4.4163984994489596e+01
+1.2184700444536389e+01
+5.8074104260750419e+00
+-3.0305140163469115e+01
+-1.9770521549076336e+00
+6.4079362250033967e+00
+-4.1329973939002322e+01
+-3.9249658886286443e+00
+5.6155414339705922e+00
+-4.0430640366360791e+01
+1.2878639971896185e+01
+4.2293346902023181e+00
+-2.9273033260772596e+01
+-2.3903229452863783e+00
+2.6876723498957591e+00
+-2.5862054918327843e+01
+-7.2655916698712746e+00
+2.6698214176759523e+00
+-3.6228470637809387e+01
+1.0724460288476547e+00
+1.3277900182527949e+00
+-2.0484913684186260e+01
+1.3448930530585194e+01
+7.5971515293743330e-01
+-3.2724907536050736e+01
+1.3531732086393555e+01
+4.3942209633755758e-01
+-3.2634959700024147e+01
+2.7596167857760063e+00
+1.9084661016470902e-01
+-2.0329937126546067e+01
+5.0561901107651011e+00
+1.5752499349643964e-01
+-2.1899524790594324e+01
+1.3842571188006996e+01
+-2.0867148807711927e-01
+-3.2070623318626303e+01
+4.1736648661459447e-01
+-5.5922257376457396e-01
+-2.0597044408149895e+01
+4.4960371279169520e-01
+-7.9276323043893404e-01
+-2.0656393443955995e+01
+-7.0509524424751655e+00
+-1.9797828664468049e+00
+-2.9874909013439307e+01
+-6.9612884121082121e+00
+-2.0784180974670452e+00
+-2.9798070518001893e+01
+-7.2285221152454353e+00
+-2.5091401714262824e+00
+-2.9158180824699564e+01
+-2.1582388421143572e+00
+-7.8034565050639086e+00
+-2.1813956763599837e+01
+-6.7881539769258490e+00
+1.3177380256505158e+01
+-4.6948574830339211e+01
+1.3717343982501047e+01
+9.8900256259226502e+00
+-3.6115808618492146e+01
+1.3901612103998687e+01
+8.5152859283870246e+00
+-3.7610163261319343e+01
+6.7108314465785606e+00
+8.8998980048863832e+00
+-4.4886297112655036e+01
+1.2929000070645323e+01
+3.9243963547150242e+00
+-2.9853319235566332e+01
+1.2827182429812007e+01
+3.6611155369976633e+00
+-3.1004846551498591e+01
+1.2661045455937476e+01
+3.3725203782432165e+00
+-3.2784626558579255e+01
+3.9094599062138409e+00
+2.3094205979264744e+00
+-2.1610456218740417e+01
+-8.0920487043016536e+00
+2.7144865134188843e+00
+-3.6389986615778390e+01
+-7.3218111943503521e+00
+2.2011011003198333e+00
+-3.5630446631308750e+01
+1.3130340820768284e+01
+1.8600608669387011e+00
+-3.2684166459857749e+01
+1.3489791630512677e+01
+1.7698307152560855e+00
+-3.0372143834390528e+01
+1.4013471533296993e+01
+4.1657493845673477e-01
+-2.9588318856199589e+01
+1.4087661299664552e+01
+2.4535192227940142e-01
+-2.9383515724832289e+01
+1.4003988051856687e+01
+2.2557313433347739e-01
+-2.9885580436638186e+01
+2.8296426411410303e+00
+1.4332643209455270e-01
+-2.0357196890050876e+01
+1.4613724516477172e+01
+-1.8298491624129190e+00
+-2.9622147472671170e+01
+1.8282188698786903e+00
+-4.0621266279268013e+00
+-2.0952502768663017e+01
+-1.6568456435191503e+00
+-8.4742428726792820e+00
+-2.0873885372476099e+01
+-1.2849702274646663e+01
+1.1022732445815670e+01
+-4.3465166640314465e+01
+1.3441900926345495e+01
+9.9919151609513470e+00
+-3.7612559170321497e+01
+-2.1304868507503647e+00
+1.1415069247073598e+01
+-4.8015960136301132e+01
+1.3450967306042891e+01
+9.4361557829167815e+00
+-3.8858007370852810e+01
+1.3699231644268417e+01
+9.2184955982189329e+00
+-3.7874251936897110e+01
+1.3992278809234451e+01
+8.4689370911360875e+00
+-3.7188541836781418e+01
+1.4932097650145582e+00
+9.3087521407530360e+00
+-4.5356241486163569e+01
+9.2091473499811407e+00
+7.0821857211370594e+00
+-4.2214433196287452e+01
+9.2091473499811407e+00
+7.0821857211370594e+00
+-4.2214433196287452e+01
+1.2457326052778585e+01
+5.1244965444432289e+00
+-3.0489019826124789e+01
+1.0330681362025003e+00
+2.1574444991446629e+00
+-2.0924761537729356e+01
+1.3085823155564948e+00
+1.5636513682899755e+00
+-2.0538497172899561e+01
+1.3040944662969004e+01
+2.2385643095365992e+00
+-3.2120953993635439e+01
+5.2652836727220516e+00
+8.0143151312928307e-01
+-2.2281505528068550e+01
+5.1024449753357786e+00
+7.7996058147639513e-01
+-2.2009290299294562e+01
+2.5356708980191596e+00
+-7.4055703580034393e-01
+-2.0480632677947870e+01
+1.1747566512801628e+01
+-4.9092665172909813e+00
+-2.5666489453389858e+01
+8.3934545619996310e+00
+-6.7857870637049746e+00
+-2.3185030049916623e+01
+1.3243103036949233e+01
+1.0169617787580087e+01
+-3.8904694804373499e+01
+1.3831993731892181e+01
+9.0737428193740151e+00
+-3.7052037624927635e+01
+1.4022556912643015e+01
+8.5854857432226090e+00
+-3.6839266225310453e+01
+1.5320332163914872e+00
+8.8913626424761887e+00
+-4.4691338705677715e+01
+2.0336509899442863e+00
+2.7187218995830813e+00
+-2.0482699754748428e+01
+1.2993258778321170e+01
+3.5383146799347291e+00
+-3.0482146653286620e+01
+1.4020553289009897e+01
+1.4077441436954957e-01
+-3.0324261069034495e+01
+6.5706591282805560e-01
+-5.6128562224401923e-01
+-2.0547566171472539e+01
+2.6760767903969955e+00
+-6.3595406650322295e-01
+-2.0445301166738858e+01
+8.0167847016367730e+00
+1.3379074962001502e+01
+-5.0702517044674451e+01
+1.2928807836568147e+01
+2.9797630068281480e+00
+-3.1701247790414826e+01
+1.1719956319473232e+01
+-4.7416868550624702e+00
+-2.6087966829805442e+01
+-1.6845528446135948e+01
+9.4889000302078976e+00
+-4.1086792185657266e+01
+-1.1330318800424063e+01
+1.1712764012225513e+01
+-4.4040978286720794e+01
+-1.5078504531466892e+01
+1.3517615285879952e+01
+-3.7410676646477015e+01
+-1.4970848120522749e+01
+1.3553952225514424e+01
+-3.7450613758846394e+01
+-1.5849653489325309e+01
+1.1182711640982815e+01
+-3.9170542066629011e+01
+4.4535979312296590e+00
+2.1020786671957513e+01
+-4.6983257885336073e+01
+1.7587745905652056e+01
+2.5732188194609993e+01
+-5.6265049039469893e+01
+1.1419349779647893e+01
+2.3430312240804419e+01
+-5.3438620368363210e+01
+1.3037702586808262e+01
+2.4444937891851463e+01
+-5.3461856759954060e+01
+1.1809974198775313e+01
+2.3626737097679250e+01
+-5.3080767156582837e+01
+5.7926534215392129e+00
+2.1998011289517461e+01
+-4.8329069743966805e+01
+1.4406857561250641e+00
+-5.8316397512383142e+00
+-2.1627514551568627e+01
+1.2429111721349919e+01
+5.7170921478467456e+00
+-2.9505989472217649e+01
+1.3257265987344057e+01
+1.1752052497541767e+01
+-3.5635220337593161e+01
+1.4779924220368173e+01
+2.1567861640232927e+01
+-5.9472550710992437e+01
+1.6197007024134727e+01
+2.3211417974873999e+01
+-5.8729809634229220e+01
+1.3611304996769064e+01
+1.0116438754383223e+01
+-3.5337640777368108e+01
+1.3441900926345495e+01
+9.9919151609513470e+00
+-3.7612559170321497e+01
+1.3139650949144119e+01
+1.0237156296559439e+01
+-3.9280904319832274e+01
+1.2431820770033408e+01
+2.3727618087772722e+01
+-5.3057085914458703e+01
+1.3250676002834162e+01
+1.1738036062355892e+01
+-3.5338972786631167e+01
+1.3073385578877351e+01
+1.2249119032153372e+01
+-3.5804173297746154e+01
+1.2933128774878812e+01
+1.1729819555149730e+01
+-3.7431863645336499e+01
+1.2631550651397168e+01
+5.3949679010953071e+00
+-2.9233691854473552e+01
+2.3931711257124641e-01
+2.0131378879007947e+01
+-4.6106631384661924e+01
+-8.3167220226855509e-01
+8.1895105862989459e-01
+-2.1465333071954557e+01
+-8.8629139842385456e+00
+1.3601183085965904e+01
+-4.3979901402449599e+01
+-1.0154692249912266e+01
+1.3803704286967713e+01
+-4.2399953916164641e+01
+-1.7117390597418300e+01
+1.0146376629174108e+01
+-3.9870571245128644e+01
+-1.5046246251986430e+01
+1.2331392393849910e+01
+-3.8985207332472676e+01
+-1.3869047792886931e+01
+1.0985200154048254e+01
+-4.3296199868253517e+01
+1.4475778169143343e+01
+2.1591080872273807e+01
+-5.8903774862159771e+01
+4.5741587646011315e+00
+1.7715944996863591e+01
+-5.3595823373517760e+01
+1.4779924220368173e+01
+2.1567861640232927e+01
+-5.9472550710992437e+01
+-5.2207002429312634e+00
+5.2658307213618150e+00
+-3.9732394099503082e+01
+4.1875391895353364e-01
+1.8773211995608460e+01
+-4.6265248158975879e+01
+-2.5492205748511085e+00
+1.6975776779952916e+01
+-4.6032930437065879e+01
+2.0981786382962593e+00
+1.1673301640383020e+00
+-2.0368689562952849e+01
+1.5135799141061380e+01
+2.1002370809922233e+01
+-6.0621609627865382e+01
+-6.9949390875370199e-01
+5.1897797843639820e-03
+-2.1225318786929179e+01
+-1.4016320326512767e+01
+1.2757437729234917e+01
+-3.9456999364571395e+01
+-3.4572104331825750e+00
+1.8426004879113130e+01
+-4.3264070045989044e+01
+-1.2482411127835800e+01
+1.3160044389352162e+01
+-4.0909675478962725e+01
+-1.4919570179071515e+01
+1.2241273868505543e+01
+-3.9241424880185335e+01
+-1.3989084590029220e+01
+1.2714971694479679e+01
+-4.0199936276591117e+01
+9.5891974771725041e-01
+1.9200069056512145e+01
+-4.6975196700910836e+01
+-1.8333969694163781e+00
+1.5909497028243374e+01
+-4.5736009434332558e+01
+-5.9693103456197942e+00
+1.5973675991526227e+01
+-4.3957972683356743e+01
+9.2417469080680950e-02
+1.5693259218042156e+01
+-5.1731133834686936e+01
+1.6371493377464610e+00
+2.0430975684886192e+01
+-4.6047751768278815e+01
+4.9140680867524678e+00
+1.8054703291580633e+01
+-5.3702562622895812e+01
+1.0252588648598630e-01
+2.3443363721068318e+00
+-2.1505337494032680e+01
+-3.8377274603885119e+00
+5.7451170628478643e+00
+-4.0467723483008719e+01
+2.2624369904744275e+00
+2.0965127255022903e+01
+-4.5880247755698456e+01
+-6.4636914921571007e+00
+1.6020526849523463e+01
+-4.3000338090928750e+01
+-7.9843689887637392e-01
+2.0775512625227481e+00
+-2.1978406077262459e+01
+6.9405179532278316e-01
+1.8994144223908904e+01
+-4.6110858882850195e+01
+-1.3612182832517796e+00
+1.8232261262029720e+01
+-4.6130010092688181e+01
+-1.8410427685986559e+00
+1.6140952551657932e+01
+-4.5380139489817971e+01
+-3.2786942771127769e+00
+6.5637787063203863e+00
+-4.1608405401666666e+01
+7.0175086390916708e-01
+2.2784482485556441e+00
+-2.1204767846104307e+01
+8.4239363487865482e-02
+1.6788534118115785e+00
+-2.1060165701759153e+01
+1.2992462324064804e+00
+1.3050328130673792e+00
+-2.0449262791110428e+01
+4.7168110523472495e-01
+1.9640611050213970e+01
+-4.4872737499916454e+01
+6.3298668130460900e-01
+2.0475116928678481e+00
+-2.1053705325775756e+01
+-7.2153037183709345e-01
+1.5253556756687343e+00
+-2.1590021634986996e+01
+1.0261057948852459e-01
+1.0743201361682564e+00
+-2.0823078000910709e+01
+1.1187248004857444e+00
+1.8025076882641786e+00
+-2.0694540585088138e+01
+-4.5846569355550998e-01
+1.8118110542100025e+00
+-2.1632930217188175e+01
+2.0446221968436257e-01
+1.4623661616876868e+00
+-2.0893343490028023e+01
+7.4403093173356782e-01
+1.3715836584560250e+00
+-2.0594309213931137e+01
+-3.7957656010059004e-01
+9.6023721361507142e-01
+-2.1153430959455228e+01
+1.8186845774738374e+00
+9.0932348027682308e-01
+-2.0239708054843184e+01
+7.6994974271146157e+00
+2.1713128824530106e+01
+-5.0916821503240044e+01
+2.9828952076950702e-02
+1.3339240583734007e+00
+-2.0928700522782375e+01
+-7.3452882564855493e-01
+2.2545815692607292e+00
+-2.2086134069988489e+01
+1.0545754500245905e-02
+2.0428599895926207e+00
+-2.1268228526396861e+01
+5.6160461167886255e-01
+1.6188998329397555e+00
+-2.0526661770299832e+01
+8.3243566888157494e-01
+1.1211096138218215e+00
+-2.0538257153482743e+01
+2.5088575548123164e+00
+2.1026337436242130e+01
+-4.5914431632099244e+01
+7.2483707842004730e-01
+1.9548283747462534e+01
+-4.5880988670126627e+01
+3.2080708835467009e+00
+2.3310373343349013e+00
+-2.1369255338814128e+01
+-1.6770610117989410e+01
+1.1991202369613879e+01
+-3.7746788499110060e+01
+-1.5791043721701680e+01
+1.0909032820710612e+01
+-4.0372828520762297e+01
+-9.4921458837539259e+00
+1.3521670850568212e+01
+-4.3352407007850125e+01
+-9.2761197002151210e+00
+1.3433680961037547e+01
+-4.3757475122719718e+01
+-1.2296254895529064e+01
+1.1621341316310401e+01
+-4.3189046841714386e+01
+6.8097398749064442e-01
+1.9992893739085677e+01
+-4.4930969017202187e+01
+1.4540298090071631e+00
+2.0663623877771169e+01
+-4.6228080800089110e+01
+7.4334673631841575e-01
+1.9800180861941019e+01
+-4.5203796963339776e+01
+-1.5769608789862021e+01
+1.0752561801691545e+01
+-4.0383564702064064e+01
+-1.1319872396374461e+01
+1.1749818380383497e+01
+-4.3644241807576101e+01
+-1.2649108991090682e+01
+1.4292210064910297e+01
+-3.8216860720287528e+01
+-1.5465940763607176e+01
+1.3280757278973054e+01
+-3.7227731324372130e+01
+-1.5465940763607176e+01
+1.3280757278973054e+01
+-3.7227731324372130e+01
+-1.4642798712243700e+01
+1.2875314035180757e+01
+-3.8424972407915952e+01
+-1.2975216028230673e+01
+1.3307810717649103e+01
+-3.9924634206788049e+01
+-1.6524406901423060e+01
+9.6625350589133863e+00
+-4.1821922401183727e+01
+-1.5489847438864381e+01
+1.1887964962601497e+01
+-3.9264257259844648e+01
+-1.4662753717527595e+01
+7.4245078900007053e+00
+-4.2881208078295927e+01
+-1.4603036697889884e+01
+7.2376624183405625e+00
+-4.2653211040707312e+01
+-1.3919026044272986e+01
+1.3093688059576596e+01
+-3.9409974001757661e+01
+-1.3216277989693166e+01
+1.3351087941311270e+01
+-3.9763319961750618e+01
+-1.4983584209888038e+01
+1.2414818647286875e+01
+-3.9043837471260296e+01
+-1.6492599753195968e+01
+1.2099529470625185e+01
+-3.7878084537913210e+01
+-1.1517616763485504e+01
+1.3368383835582136e+01
+-4.1467812833228905e+01
+2.4012820888873545e+00
+-8.4353686421686858e-01
+-2.0479706927182789e+01
+-1.1325136038933167e+01
+1.1877677434219358e+01
+-4.3572686085128282e+01
+-1.5475028471253619e+01
+1.0838222791522002e+01
+-4.0760241670062840e+01
+-1.4081940092593015e+01
+1.2877809787761629e+01
+-3.9361500502557313e+01
+-1.6855639943248775e+01
+1.0112417017265983e+01
+-4.0202455137119330e+01
+-1.6730722929057240e+01
+9.8116144473750921e+00
+-4.0867515660584026e+01
+-1.1670096233515794e+01
+1.2764297583524145e+01
+-4.2241559681802322e+01
+-1.3172307914238393e+01
+1.3279388013931998e+01
+-4.0184604691425761e+01
+-1.4203880483536402e+01
+1.2536146087764001e+01
+-3.9789479102902384e+01
+-1.1776907259393912e+01
+1.7568654416347984e+00
+-3.5000714811951958e+01
+-1.6730722929057240e+01
+9.8116144473750921e+00
+-4.0867515660584026e+01
+-1.5097546265485075e+01
+1.2391251135006909e+01
+-3.8868805501780436e+01
+-1.6295325929774076e+01
+9.7252640783098254e+00
+-4.1309393379071977e+01
+-8.1223065200597144e+00
+2.8811608041045496e+00
+-3.6544861615425482e+01
+-1.2015469867200748e+01
+1.3678886198130879e+01
+-4.0348531679344084e+01
+-9.2207632546493219e+00
+1.4335240990118498e+01
+-4.2817434560314389e+01
+-1.6390710439620904e+01
+1.0878560178138159e+01
+-4.0106243540727043e+01
+-1.6295325929774076e+01
+9.7252640783098254e+00
+-4.1309393379071977e+01
+-1.4991378266696332e+01
+1.2293183782556369e+01
+-3.9164694874183951e+01
+-9.3613900270460633e+00
+1.4915816754143130e+01
+-4.1679923897671415e+01
+-1.1242560663026085e+01
+1.2273422255129958e+01
+-4.3392446782333472e+01
+-1.4758583783504484e+01
+1.2281539064984790e+01
+-3.9442314725131396e+01
+-1.0689815990669940e+01
+1.4217278188318643e+01
+-4.0951749563863700e+01
+-1.6580853455871232e+01
+1.0393032903905027e+01
+-4.0100463796705561e+01
+-1.2634549730917774e+01
+1.4405523681481545e+01
+-3.8617642676812352e+01
+2.9707094942272338e-01
+-6.4494085040531712e-01
+-2.0702964237631491e+01
+1.3180958668042818e+01
+1.1853713503487297e+01
+-3.5310129752890674e+01
+1.3262956585652507e+01
+1.0512426354408845e+01
+-3.8395253767261572e+01
+1.3262956585652507e+01
+1.0512426354408845e+01
+-3.8395253767261572e+01
+1.3219926575748167e+01
+1.0187450003130373e+01
+-3.8320902601776645e+01
+1.3368723184558204e+01
+1.0579752303956232e+01
+-3.7019347471725858e+01
+1.2993453886390570e+01
+3.5545348762512186e+00
+-2.9867088687664918e+01
+1.9295557953056244e+00
+4.2308413076912396e-02
+-2.0192690962116970e+01
+1.3026369032967152e+01
+3.3128348216650778e+00
+-3.0574774025031832e+01
+1.3049010125639134e+01
+2.9525939742913287e+00
+-3.1014053805353488e+01
+1.3261062303404104e+01
+1.1564767499835703e+01
+-3.6036661447410737e+01
+1.3182450274726655e+01
+1.1508196054556707e+01
+-3.6741132182982632e+01
+1.3488657280612069e+01
+1.0389656739038951e+01
+-3.6721927334505651e+01
+1.2971778544985773e+01
+4.0246118146005285e+00
+-2.9536630156164090e+01
+1.6442245071380774e+00
+2.1878853574884818e-01
+-2.0119353399663137e+01
+-4.5349826873867161e-01
+-5.5764934430363688e-01
+-2.1171876713488228e+01
+1.2440450400723909e+01
+5.7757015492163690e+00
+-2.9943261927991333e+01
+-1.0788607162831838e+00
+1.3930890831319895e+00
+-2.1870023590236016e+01
+2.3897540009266409e+00
+-1.2969150624304907e-01
+-2.0213564813018522e+01
+2.1852570997607090e+00
+-3.4134722247193883e-01
+-2.0267292509841720e+01
+-1.0639602406725064e+00
+7.4414910646513910e-01
+-2.1751909046264565e+01
+-3.8337586645490079e-01
+2.6480607656374777e-01
+-2.0996983759763317e+01
+-2.6553038804439744e-01
+1.7909957570519164e-01
+-2.0978038667091024e+01
+-1.1457626906122384e-01
+8.8811252418346684e-02
+-2.0795155195437722e+01
+1.7619204853380390e+00
+-5.4711483997236243e-01
+-2.0383771937093481e+01
+1.7619204853380390e+00
+-5.4711483997236243e-01
+-2.0383771937093481e+01
+-7.4326430966225054e-01
+2.5262807949371835e-01
+-2.1281620667928440e+01
+1.6759934200178648e+00
+-6.5776795445881941e-01
+-2.0235437690239323e+01
+-1.5793463975234758e+00
+5.9807543140808861e-01
+-2.2335199069028253e+01
+1.3181269220904051e+01
+1.2060891921655543e+01
+-3.6150276121919404e+01
+-7.8521144620056627e-01
+4.9178335376996446e-01
+-2.1366873365446260e+01
+-1.2320758459164518e+00
+4.9820581332069513e-01
+-2.1879067521276450e+01
+4.0620554290009264e-01
+-3.4961712596038513e-01
+-2.0576672986811150e+01
+4.0620554290009264e-01
+-3.4961712596038513e-01
+-2.0576672986811150e+01
+7.8801429396820888e-01
+-6.4320347054753646e-01
+-2.0480510479463327e+01
+8.6915477121019635e-01
+-3.0002650239600104e-01
+-2.0369062835316203e+01
+-1.0027838169878919e+01
+1.3257237427213202e+01
+-4.3355321593955885e+01
+-1.2137945707439762e+01
+1.3721729945682998e+01
+-4.0021884837141705e+01
+-1.4081940092593015e+01
+1.2877809787761629e+01
+-3.9361500502557313e+01
+-1.3476225235303993e+01
+1.2753636074216251e+01
+-4.0145428472922113e+01
+-1.0169212853157070e+01
+1.4605985128066040e+01
+-4.1309810388774189e+01
+-1.6468590630581829e+01
+1.0746953800980666e+01
+-3.9619118089659203e+01
+-1.0278851570696828e+01
+1.3663140530706327e+01
+-4.2440917547453850e+01
+-1.4341226742119987e+01
+1.2566585724755589e+01
+-3.9542023048316501e+01
+-1.6612354363546761e+01
+1.0679511389541014e+01
+-3.9689140674196786e+01
+-1.1337025279864957e+01
+1.2051427019638469e+01
+-4.3428332780719735e+01
+-1.3262203375396776e+01
+1.3115780450216732e+01
+-3.9763338999344469e+01
+-1.6612354363546761e+01
+1.0679511389541014e+01
+-3.9689140674196786e+01
+-1.6430354880382502e+01
+1.1750022868181647e+01
+-3.8454962459740244e+01
+-1.6898405729644111e+01
+1.0896292004986517e+01
+-3.8988621180173489e+01
+-1.2482411127835800e+01
+1.3160044389352162e+01
+-4.0909675478962725e+01
+-1.2744764011124945e+01
+1.2941210725317516e+01
+-4.0663962108965187e+01
+-1.3604633861139435e+01
+1.2791160861445357e+01
+-4.0022878222410043e+01
+-1.2015469867200748e+01
+1.3678886198130879e+01
+-4.0348531679344084e+01
+-1.1033635747833687e+01
+1.3638537719738370e+01
+-4.1705961480229178e+01
+-1.6793137205848684e+01
+1.1056509313766419e+01
+-3.9314537110076657e+01
+-1.3741137367553101e+01
+1.2984424455098708e+01
+-3.9717452884448079e+01
+-1.1542569336495530e+01
+1.3761532477947476e+01
+-4.1174323327990550e+01
+-1.6334886596401294e+01
+1.0797274701506320e+01
+-4.0153786318510363e+01
+-1.5822091069141345e+01
+1.2466555435698794e+01
+-3.7954210031386189e+01
+-1.5606596409698930e+01
+6.2827279197990302e+00
+-4.1113995075634392e+01
+-1.5089745705703677e+01
+1.1947773625088558e+01
+-3.9250845066294538e+01
+-1.1248349819301920e+01
+1.3907172595955975e+01
+-4.0746118611105523e+01
+-1.6650842179089842e+01
+1.0228849507166363e+01
+-4.0254160783962845e+01
+-1.6650842179089842e+01
+1.0228849507166363e+01
+-4.0254160783962845e+01
+-1.6898405729644111e+01
+1.0896292004986517e+01
+-3.8988621180173489e+01
+-1.4633476103489958e+01
+1.2605026256389323e+01
+-3.9128651353861443e+01
+-1.1542569336495530e+01
+1.3761532477947476e+01
+-4.1174323327990550e+01
+-1.6805838389412571e+01
+1.0882577269915947e+01
+-3.9161996282885781e+01
+-1.5177280571854201e+01
+1.2489961359285067e+01
+-3.8478347774216786e+01
+-1.0913219415450630e+01
+1.4133256153037106e+01
+-4.1123538577565533e+01
+-1.3434766622126231e+01
+1.3169128231937895e+01
+-3.9597603874704824e+01
+-9.7373192621787172e+00
+7.2818140378010243e-01
+-3.3546310834039232e+01
+-2.3727467820923502e+00
+2.5594376902177296e+00
+-2.5623416950559356e+01
+1.0962385020043929e+01
+2.1839193877137973e+01
+-5.4743284857650302e+01
+9.8588880925468836e-01
+1.4660344277122026e+00
+-2.0656367630605093e+01
+1.6796475532624386e+00
+7.9915742870350437e-01
+-2.0271239094797167e+01
+2.3212752811150357e+00
+4.4942863093878083e-01
+-2.0252881949192119e+01
+3.3927104322637396e+00
+-5.2149344928963060e-01
+-2.0660593629386337e+01
+1.7479947696604818e+01
+2.2369069323677010e+01
+-6.1399567849624731e+01
+-7.2784706866933204e+00
+2.3988629195678954e+00
+-3.5818267086229291e+01
+-8.1960677242642905e+00
+1.4351896134958362e+00
+-3.4315807395251319e+01
+-7.1272059002412735e+00
+1.2989690380474492e+01
+-4.7570156814676750e+01
+3.9726162897881445e-01
+1.7684538979282550e+01
+-4.7542756196364351e+01
+-1.3607160901297346e+01
+1.3265993514134991e+01
+-3.9366765718353541e+01
+-2.4427775717423139e+00
+-7.7256887553275657e+00
+-2.2078210954414413e+01
+1.1561152304089941e+01
+2.3754526495298855e+01
+-5.2071034687077088e+01
+-8.9746186770989631e+00
+1.4433945286348010e+01
+-4.2864565013603645e+01
+-8.5311652999892171e+00
+1.4470840359009403e+01
+-4.3409258009065645e+01
+3.0235032497784875e+00
+7.2915248653878786e-02
+-2.0399388379164748e+01
+7.6071841912756799e-01
+3.5904124985565794e-01
+-2.0400463724744906e+01
+1.9072833026921734e+00
+-1.6813361910493034e+00
+-2.0166759165900348e+01
+1.3657202805238461e+01
+9.9999150683369749e+00
+-3.6413837776974610e+01
+4.5795895531859436e+00
+-1.0921752930025066e+00
+-2.1033389655643575e+01
+2.5731958017452787e+00
+-9.6356844402525876e-01
+-2.0550005401004263e+01
+-8.7878134544374156e+00
+1.4627927170614605e+01
+-4.2658305585159262e+01
+-8.7878134544374156e+00
+1.4627927170614605e+01
+-4.2658305585159262e+01
+-7.2153037183709345e-01
+1.5253556756687343e+00
+-2.1590021634986996e+01
+6.3608694044772450e-03
+-1.8704534384387734e+00
+-2.0637727739069756e+01
+1.7159690342633898e+00
+1.1653466308020590e+00
+-2.0334688646562913e+01
+1.7159690342633898e+00
+1.1653466308020590e+00
+-2.0334688646562913e+01
+1.3073357622883336e+01
+3.1123292359085033e+00
+-3.0820730585990923e+01
+1.3073357622883336e+01
+3.1123292359085033e+00
+-3.0820730585990923e+01
+-1.3519526563572175e+01
+1.2941232770442033e+01
+-3.9793236296443879e+01
+-8.6868356582360136e+00
+1.5141167766150796e+01
+-4.2120352638718693e+01
+1.6060716743647057e+00
+-2.0124806994832700e+00
+-2.0241020083827994e+01
+-7.9483674823837740e+00
+1.4158582735136038e+01
+-4.4188396814478004e+01
+-4.9417053036716396e+00
+1.3601150964637753e+01
+-4.9001462833658692e+01
+1.3989763860050723e+00
+2.0253818090005819e+01
+-4.5742069393073166e+01
+-6.7263058732902410e+00
+1.6764880791018332e+01
+-4.1921501231668806e+01
+9.8565283098445211e-01
+1.9761685301850520e+01
+-4.5962145833585893e+01
+-7.2760351184186378e+00
+1.4445039383333437e+01
+-4.4610250949426359e+01
+2.7335617455647565e+00
+-2.6719727638820473e-01
+-2.0410863144134833e+01
+3.3420603518413792e+00
+-2.5496787406289467e+00
+-2.0210877463808743e+01
+5.9666195573290137e-01
+-6.0015945969169171e-01
+-2.0535820371678749e+01
+7.4136016079623335e-01
+2.8809956688173349e-02
+-2.0378235794799913e+01
+-3.1903277217242416e+00
+2.6981061180551973e+00
+-2.6968064913544509e+01
+5.2916008068298188e+00
+-4.3058439259847486e-01
+-2.1852626273273316e+01
+1.4121816060484326e+01
+2.9081340954458323e-01
+-2.9169504356958665e+01
+1.6765759318248215e+00
+-3.3856400203081702e+00
+-2.0228351744894894e+01
+1.2519707346923552e+01
+4.4792813700558254e+00
+-3.1297340326596654e+01
+1.4697888931509400e+00
+-4.9368953155378245e-02
+-2.0225667825216743e+01
+2.3250978393144255e+00
+-1.1015310802980438e+00
+-2.0559280002264781e+01
+5.6803974710621252e-01
+-5.3829580582479652e-01
+-2.0539438444227912e+01
+2.0379794082072400e+00
+-1.2704270175030163e-01
+-2.0295069498970197e+01
+-1.3919578199292698e-01
+-1.7686602286570879e-01
+-2.0806135438659567e+01
+1.4447248945309136e+01
+-1.0333840934760288e+00
+-2.9856271753035966e+01
+2.3364236206449358e+00
+5.4384534152184888e-02
+-2.0319632429158631e+01
+-8.1223065200597144e+00
+2.8811608041045496e+00
+-3.6544861615425482e+01
+-8.6118254354075869e+00
+2.8024583320944800e+00
+-3.6385690781770840e+01
+-8.6118254354075869e+00
+2.8024583320944800e+00
+-3.6385690781770840e+01
+-7.9655718752245583e+00
+1.4628397949334209e+01
+-4.3480523685199543e+01
+-7.8951909867034828e+00
+9.4932664938429365e+00
+-4.6062287990622096e+01
+-7.3426011184912428e+00
+7.9312253052428296e+00
+-4.3570386592060267e+01
+-1.0879514781021419e+01
+2.8257959026131139e+00
+-3.6394535674692072e+01
+-1.1567036867979459e+01
+8.3702127018879686e+00
+-4.4230294809726423e+01
+-9.5277206963869983e+00
+1.3799881803463355e+01
+-4.2831374087756274e+01
+-8.1959530246274497e+00
+3.0064821722249087e+00
+-3.6608185879839546e+01
+-1.4483006854125176e+01
+1.1275594995635240e+01
+-4.2766041147024083e+01
+-1.5677504647030110e+01
+1.2352709406965410e+01
+-3.8359296191590950e+01
+-7.2477202481528336e+00
+1.5007817347867555e+01
+-4.3969608058542264e+01
+-1.5656679748644983e+01
+1.1293105576816524e+01
+-3.9305507641639863e+01
+-7.6746441866283854e+00
+1.5164496217040272e+01
+-4.3144720142778482e+01
+-7.5529913862283351e+00
+1.4183390936953442e+01
+-4.4616618472305944e+01
+-7.3056874020203058e+00
+1.4916206824502376e+01
+-4.4012345580861094e+01
+-8.6461740153264905e+00
+1.4826485050707401e+01
+-4.2822057514845312e+01
+-1.4053595215104124e+00
+-4.6526933868483766e-01
+-2.1697288991327543e+01
+-1.0714742367002724e+01
+1.2298173417700468e+01
+-4.4054993711320527e+01
+-1.2975216028230673e+01
+1.3307810717649103e+01
+-3.9924634206788049e+01
+-1.0617765248566720e+01
+1.1952769868281937e+01
+-4.5271400084453440e+01
+-7.2477202481528336e+00
+1.5007817347867555e+01
+-4.3969608058542264e+01
+-2.2615852784580599e+00
+-8.1249907464831406e+00
+-2.1373017886073701e+01
+-4.9530257794123518e+00
+-6.8928587229552010e+00
+-2.3129674286672490e+01
+-2.9750945271555516e+00
+-7.9863657801286312e+00
+-2.1597293460027014e+01
+-3.7046142137177296e+00
+-7.7494886038369852e+00
+-2.1853875688731677e+01
+-3.1503782014102164e+00
+-7.9287171853091509e+00
+-2.1682612548661261e+01
+6.4986533040911976e-01
+1.4958871330379156e-01
+-2.0419006853449467e+01
+-3.0168560960711179e+00
+-7.6450847625496667e+00
+-2.2046544237436514e+01
+-3.3163908992944595e+00
+-7.5534508728891101e+00
+-2.2092031857613456e+01
+-3.3972276847002489e+00
+-7.8723351313411545e+00
+-2.1691248926786571e+01
+-2.3083238902091923e+00
+-3.3507229504544611e+00
+-2.2750108816639987e+01
+9.4478647061248988e-01
+1.8580880235875499e+00
+-2.0754759862075602e+01
+-4.0537249870016939e-01
+-3.6621064600696829e+00
+-2.1357554390424667e+01
+-1.0239150988327292e+01
+1.3332827868146891e+01
+-4.2770391937860794e+01
+-1.1272454485311098e+01
+1.2072954671409367e+01
+-4.3495626043114449e+01
+-1.1500655194899537e+01
+1.1787179959944751e+01
+-4.3782984640378139e+01
+-2.2011837559491699e+01
+2.5296582246406922e+00
+-3.6070442094334993e+01
+-9.3342606794869312e+00
+1.5765397756830966e+01
+-4.0402099335160685e+01
+-1.3659458107321417e+01
+1.1288802872235557e+01
+-4.3093024826228138e+01
+-6.7681860285468245e+00
+1.5626075795541862e+01
+-4.3635022274325593e+01
+-7.9377576654245861e+00
+1.5020157761385752e+01
+-4.3071571903942598e+01
+-8.6490529767023538e+00
+1.3993530580753484e+01
+-4.3796210539938599e+01
+-8.1600550762706199e+00
+1.4387179673995130e+01
+-4.2570226563176107e+01
+-9.5102393719560538e+00
+1.3386543681734961e+01
+-4.3571840080143808e+01
+-1.6497908788209266e+01
+8.3535772658852316e+00
+-4.3342796566048456e+01
+-8.0395631286220919e+00
+1.5078781598805312e+01
+-4.2843027512397029e+01
+-1.4006331085482955e+01
+9.9633450113417723e+00
+-4.5222707382840994e+01
+-1.0617634411656029e+01
+1.2391416584980089e+01
+-4.3829135013864267e+01
+-1.2326727183163309e+01
+1.3582103423824766e+01
+-4.0370038924395359e+01
+-1.6814050241965028e+01
+1.2415565554405791e+01
+-3.7030195187670898e+01
+-1.0116214825203375e+01
+1.2210809457643787e+01
+-4.4609135582873975e+01
+2.0744954960490847e-01
+-4.8092480153888306e-01
+-2.0636863073259551e+01
+-1.6542675809024310e+01
+1.1309511723479959e+01
+-4.1067026243971206e+01
+-7.1621254247786954e+00
+1.4388086966467972e+01
+-4.4804061632296722e+01
+-1.2595033289940339e+01
+1.2299388979858561e+01
+-4.0927543840013684e+01
+-8.4531371456298263e+00
+1.4552150889554639e+01
+-4.2952781237649077e+01
+1.4179802301431343e+01
+-5.0603619432184541e-02
+-3.0099194121578165e+01
+-1.0252670760323310e+01
+7.1756710952547076e+00
+-4.2511003336160918e+01
+-1.2685490734300652e+01
+1.4582316925669394e+01
+-3.8343830443086986e+01
+-1.2649108991090682e+01
+1.4292210064910297e+01
+-3.8216860720287528e+01
+-1.2326727183163309e+01
+1.3582103423824766e+01
+-4.0370038924395359e+01
+-1.2112873866875939e+01
+1.1784741686053376e+01
+-4.2968899977825686e+01
+-9.8114568763266856e+00
+1.4400290532743064e+01
+-4.1940783217189548e+01
+-1.0174504851590294e+01
+1.5428300912031988e+01
+-3.9794961103823290e+01
+-8.6291580153616341e+00
+4.0227236540007443e+00
+-3.9134810987482226e+01
+-1.0008793054280337e+01
+8.0891192846108932e+00
+-4.3656575538089399e+01
+-1.4793814775032351e+01
+5.6264166567332836e+00
+-4.1040972637711342e+01
+-1.3437092697703664e+01
+5.5361857879681162e+00
+-4.0399476287916976e+01
+-1.4477540108846757e+01
+4.7369668386030526e+00
+-3.9307972122158453e+01
+-1.2490690257527486e+01
+1.0774543075988740e+01
+-4.4180749266425060e+01
+-1.3883445827138738e+01
+5.0007837195894886e+00
+-3.9617337097152557e+01
+-1.3456517348218552e+01
+5.7006232941593495e+00
+-4.0617072689123937e+01
+-9.5420468998512114e+00
+7.2914582821404563e+00
+-4.2755696575200176e+01
+-1.3218776033748018e+01
+5.1103806216487992e+00
+-3.9756847893634436e+01
+-1.2602663160449508e+01
+1.1170156193326342e+01
+-4.3535628465380313e+01
+-9.9282477546611041e+00
+1.4307475108415550e+01
+-4.1608098793364157e+01
+-1.4803146655312192e+01
+7.3696319694596513e+00
+-4.2798105104436431e+01
+-1.0787375246468191e+01
+1.4165957145509518e+01
+-4.1211477058655454e+01
+-1.0108944068259444e+01
+1.2622307502106326e+01
+-4.3932836061705729e+01
+-9.8114568763266856e+00
+1.4400290532743064e+01
+-4.1940783217189548e+01
+-1.2952712732753280e+01
+1.0507931474694644e+01
+-4.4092171486950228e+01
+4.4101951484084587e+00
+8.3737291431968464e-01
+-2.1321810500387123e+01
+4.2657674360295896e+00
+7.1328700485875973e-01
+-2.1180048845264022e+01
+4.7631356399154381e+00
+-4.2765419476153879e-02
+-2.1549381938421060e+01
+3.0109412415199499e-01
+-2.7357015838496133e+00
+-1.9977374016645328e+01
+8.7681188814929065e+00
+1.4701816118374758e+01
+-5.2538341288065773e+01
+1.3478499939860425e+01
+2.4497540970440759e+00
+-2.9487780128376833e+01
+-8.3090024195324685e-01
+1.6786426946260289e+00
+-2.1814282855792861e+01
+-1.0613481209110627e+00
+1.7094833200177677e+00
+-2.2099648683017975e+01
+2.9183965502044074e+00
+7.5880985248465715e-01
+-2.0446791014248827e+01
+3.0814298641773905e+00
+3.7482868080531817e-01
+-2.0451441793785690e+01
+1.3298805934342439e+00
+1.7962553614572918e+00
+-2.0662075620458030e+01
+4.5251560756119265e+00
+-1.1960906122218680e+00
+-2.0920009645104486e+01
+3.7213967177938612e+00
+1.7333585712695651e+01
+-5.2400133397276534e+01
+-6.0127114922218201e+00
+1.5026056585613459e+01
+-4.8053180986421104e+01
+-8.2053887242422192e+00
+1.3903816027270757e+01
+-4.3650144440581137e+01
+-1.3353598485330979e+01
+5.2341926014279245e+00
+-3.9927619883466946e+01
+-8.8555161147973056e+00
+6.7688175870490381e+00
+-4.1941438882863281e+01
+7.3284699129624649e+00
+1.4351643630770834e+01
+-5.2162509635124422e+01
+1.0593676745832374e+01
+1.3851652237485069e+01
+-5.1479102119813938e+01
+1.0593676745832374e+01
+1.3851652237485069e+01
+-5.1479102119813938e+01
+7.9717149305932420e+00
+1.4876218916888881e+01
+-5.2938783995612759e+01
+4.2958693675155164e+00
+1.8178918825247738e+01
+-5.2734913218500736e+01
+1.0899397914827642e+01
+2.1154704699986176e+01
+-5.5393165023302792e+01
+4.0402296404398204e+00
+1.7030259068963151e+01
+-5.4347887785629283e+01
+5.2428521946756028e+00
+1.8839252303438297e+01
+-5.2355125725476952e+01
+6.9871226698336952e-01
+1.6863054116320345e+01
+-5.0579306821201804e+01
+-6.9850697025261157e+00
+1.6551439820273981e+01
+-4.2131521564546965e+01
+-5.5031008776368129e+00
+1.6200987206140383e+01
+-4.4386512664842137e+01
+-6.8097523008233152e+00
+1.4665385863858988e+01
+-4.5073316382452290e+01
+-2.6378000069038099e+00
+1.7679881349962052e+01
+-4.5317321121293553e+01
+-4.5825677494372883e+00
+1.5401848936549294e+01
+-4.6446493264921244e+01
+2.8456529167642213e+00
+2.0892105041998381e+01
+-4.6692184356934447e+01
+1.5669533510846212e+00
+2.0851734245497184e+01
+-4.5235632635368574e+01
+4.7120727922046823e+00
+1.7640923374339270e+01
+-5.3886023264530110e+01
+3.4144614093345202e+00
+1.7932502620539179e+01
+-5.1891881906051005e+01
+-1.0970820861915234e+01
+1.2941625474417892e+01
+-4.2689021038115769e+01
+-1.1667978000467292e+01
+1.1212066848287490e+01
+-4.4265789386058117e+01
+-1.7025479649041186e+00
+9.9061925498929568e+00
+-4.6071725974172821e+01
+-3.1470704210563829e+00
+-8.5269253739193673e-01
+-2.2252571431529553e+01
+-2.9013592594888764e+00
+-9.5213662775264607e-01
+-2.2137009010580528e+01
+-2.9609628426955594e+00
+-7.7372006711598447e+00
+-2.1923624200328238e+01
+3.6901764980444507e-02
+-3.4628745947981848e-01
+-2.0749591958001449e+01
+8.0272072932027039e-01
+1.2493584738085042e+00
+-2.0533839964206731e+01
+4.2424040793267563e+00
+-2.2919312675465622e+00
+-2.0538179814658250e+01
+-6.6241509822984312e+00
+1.5191159220755843e+01
+-4.4588253362257667e+01
+-1.6557445205013777e-01
+1.7909635491126245e+01
+-4.8059725412402216e+01
+9.9648365981401774e+00
+2.1350788812699797e+01
+-5.1870889582896233e+01
+3.1015688678238189e+00
+2.1567242335737817e+00
+-2.1173539760762083e+01
+1.8925706561403346e+00
+-1.6609168104584696e-01
+-2.0238839270081908e+01
+2.9835172518190762e+00
+-2.1112955136251121e-01
+-2.0421643267093458e+01
+2.4049381855640681e+00
+-2.0935468269135837e+00
+-2.0330179367767613e+01
+4.1300224490759767e+00
+-3.1877524505339769e+00
+-2.0795854486800259e+01
+4.1300224490759767e+00
+-3.1877524505339769e+00
+-2.0795854486800259e+01
+3.0152267566634787e+00
+1.9965602798078619e+00
+-2.0971916986890765e+01
+1.6592168020179749e+00
+-1.6837630677471579e-01
+-2.0154734541425299e+01
+6.8825436190952538e-01
+-2.6370888025432893e-01
+-2.0433671102227798e+01
+1.5671594826432289e+00
+-5.4312915879496371e-01
+-2.0350245614359572e+01
+2.4583320802383843e+00
+-8.5204011310376671e-01
+-2.0428314202297244e+01
+2.1776343669956795e+00
+-1.0537957780600860e+00
+-2.0392364187961444e+01
+-6.4093355358485149e-01
+-2.7062864112218890e+00
+-2.0389044013305327e+01
+1.5063512585130296e+00
+-3.6158538039943364e+00
+-2.0447037659422133e+01
+5.5175955150422809e+00
+-5.2020067707270821e+00
+-2.2475779375270687e+01
+8.4739164947846779e-01
+-2.8409771273503930e+00
+-1.9690535976144979e+01
+1.6197007024134727e+01
+2.3211417974873999e+01
+-5.8729809634229220e+01
+5.6017142229949650e+00
+1.9340055888876524e+01
+-5.2467503561999735e+01
+-4.3641310547439305e-01
+-3.6907581726018166e+00
+-2.1328180375650469e+01
+-1.2782740904438283e+01
+1.1240366489961447e+01
+-4.3807508981459193e+01
+3.6133140784526063e-01
+-9.7886568857852796e-01
+-2.0729309335196522e+01
+1.4512774505119189e-01
+1.7428726615696349e-01
+-2.0630322967243060e+01
+1.9940061299459055e+00
+-5.2054896470903067e-01
+-2.0182919974224042e+01
+-9.6614309252224349e+00
+3.1379118468536684e+00
+-3.6859261856906237e+01
+-1.2849702274646663e+01
+1.1022732445815670e+01
+-4.3465166640314465e+01
+-1.2483807921131802e+01
+1.1224788232063476e+01
+-4.3789532305801799e+01
+-1.2786373208501512e+01
+1.1579297360449431e+01
+-4.2535407854684586e+01
+-1.2276495110679175e+01
+1.0961151201654246e+01
+-4.4209250162693607e+01
+-1.2295541236893570e+01
+1.1273091990927700e+01
+-4.3709518177157648e+01
+-1.0352329779761938e+01
+1.4530309256044184e+01
+-4.1037760731281423e+01
+-1.5196889098577568e+01
+1.3258825024686463e+01
+-3.7577611512413149e+01
+-8.4905478347363115e+00
+1.5263486467640481e+01
+-4.6630370133036671e+01
+-6.0127114922218201e+00
+1.5026056585613459e+01
+-4.8053180986421104e+01
+7.5616346462119415e+00
+1.7982457687314803e+01
+-5.6782649188817800e+01
+8.6257979403272405e+00
+1.8553343841216439e+01
+-5.7326445929398702e+01
+1.3214716945648208e+01
+1.1913493814825415e+01
+-3.5749725800685837e+01
+1.0468430425147503e+01
+2.0239827495854851e+01
+-5.6927111165864623e+01
+1.4456246714388577e+01
+2.1461047866211178e+01
+-5.9177905472975169e+01
+1.8390226927467102e+00
+-1.1569006033102054e+00
+-2.0525350273826561e+01
+3.4555479030091649e+00
+-6.4111676173942267e-01
+-2.0693924326207810e+01
+1.8165167807964995e+00
+1.7012811349399253e+00
+-2.0554900343998703e+01
+2.0072318031735286e+00
+-1.1794939199187628e+00
+-2.0594336170852841e+01
+7.3002380955024093e-01
+-2.7800067364279157e+00
+-1.9864123612774414e+01
+1.3266429564824341e+01
+2.6702279250542444e+00
+-3.0604407344616856e+01
+3.1488429377986242e+00
+-7.7266162875302336e-01
+-2.0591485276021398e+01
+4.9711711877617484e+00
+-2.2607384193584257e+00
+-2.0577268449781744e+01
+4.1314298298942367e+00
+-2.2844973645828985e+00
+-2.0531117998376445e+01
+-1.3253323272312043e-01
+-3.3594080999120308e+00
+-2.0766304479584907e+01
+1.2379499278078414e+00
+1.1401554571212442e+00
+-2.0421469068059498e+01
+1.3600711169058370e+01
+2.1878814693702222e+00
+-2.9156003634288030e+01
+8.6096767218341574e-01
+-1.9739358422716797e+00
+-2.0329844720742123e+01
+3.0566015295303886e+00
+-8.4000086596937840e-01
+-2.0574232226880042e+01
+3.1323992307903188e+00
+1.9902132494416470e+01
+-4.8978856663301457e+01
+2.0092746381127093e+00
+-9.5243487028534590e-01
+-2.0376744169515110e+01
+2.8771358958589217e+00
+-1.1115574800251136e+00
+-2.0689145244330671e+01
+1.3130430536092700e+01
+3.3001561188669455e+00
+-3.0052449758507578e+01
+1.4388766684583855e+01
+-5.4209601309096023e-01
+-2.9354423200034116e+01
+1.9648552235392815e+00
+-1.1348896714715140e+00
+-2.0540507249618493e+01
+1.5415375512164988e+00
+-8.7568078336903621e-01
+-2.0419078146925720e+01
+1.4670685671536836e+01
+-1.7463062981996362e+00
+-2.9650262339333921e+01
+1.3135622670880268e+01
+3.6547330108825618e+00
+-2.9142590543682758e+01
+3.1329796926158231e+00
+6.9294611922910565e-01
+-2.0475396352453043e+01
+4.3451435315858724e+00
+-3.9333424402994970e+00
+-2.1780198838358569e+01
+2.4736870096032759e+00
+-8.0581905049290725e-01
+-2.0454583615203415e+01
+1.3011968661581879e+01
+2.3505472817399056e+01
+-5.4330856710676194e+01
+1.3135622670880268e+01
+3.6547330108825618e+00
+-2.9142590543682758e+01
+9.9742629411840458e+00
+2.0249886525629570e+01
+-5.7329596964999496e+01
+2.5336741749336520e+00
+-3.1073748705952289e+00
+-1.9931513442697433e+01
+8.1785599006822896e+00
+1.9080726376604023e+01
+-5.5952768781845528e+01
+1.5232498152293818e+01
+2.1970167605086484e+01
+-5.9224230918037136e+01
+1.4882185979303591e+01
+2.3314087877830733e+01
+-5.6517535185142442e+01
+1.5244191294531912e+01
+2.2736226243078107e+01
+-5.8183220359596440e+01
+1.4567314128038271e+01
+-1.5462512248362130e+00
+-2.9703678922826757e+01
+2.3875843131468009e+00
+-2.0485360675441608e+00
+-2.0286836904925345e+01
+2.1337773819950971e+00
+-4.8283203192588081e-01
+-2.0288710600941023e+01
+1.5492394791832085e+01
+2.4366658482192950e+01
+-5.6964145370809966e+01
+1.3910607935379604e+01
+2.4029471955769836e+01
+-5.4791633121728715e+01
+1.5153812980022051e+01
+2.2924718111605621e+01
+-5.7826555282619886e+01
+1.4154580689323211e+00
+-1.9443315620704535e+00
+-2.0203495900206242e+01
+2.5791709831216960e+00
+-6.4777174232277113e-01
+-2.0406029736728666e+01
+1.3322760352263980e+01
+1.0505998738990444e+01
+-3.7792760191196201e+01
+1.2457326052778585e+01
+5.1244965444432289e+00
+-3.0489019826124789e+01
+9.1652349208184447e-01
+-1.1426189609064732e+00
+-2.0611085062678423e+01
+3.7626195029752734e+00
+-2.4946622972041244e+00
+-2.0271545377030993e+01
+2.7937629989174235e+00
+-4.2401321743692705e-01
+-2.0409994070452921e+01
+1.3169073333226352e+01
+1.1997611848708789e+01
+-3.5696408141615201e+01
+1.4515759778428755e+01
+-1.2157935331324206e+00
+-2.9603832994022326e+01
+1.3383147056936659e+01
+1.0327287043646152e+01
+-3.7650038999825902e+01
+1.1280234605039543e+00
+-7.3148969890982396e-01
+-2.0421952378374957e+01
+5.0443130091940280e-01
+-1.8790540256784987e+00
+-2.0371768325429148e+01
+2.9504778630315101e+00
+-1.0632112356852439e+00
+-2.0659324809608105e+01
+9.1652349208184447e-01
+-1.1426189609064732e+00
+-2.0611085062678423e+01
+1.4119107738333755e+01
+2.3848794575339326e+01
+-5.5313037548792202e+01
+1.2550489486205239e+01
+5.3588256464667179e+00
+-2.9517155074261357e+01
+3.0096354692608838e+00
+-6.3758198091797313e-01
+-2.0523898871946205e+01
+1.3409690734766947e+01
+1.0230814752240025e+01
+-3.7663122302007238e+01
+3.4638928808056568e+00
+-2.5723866611387360e+00
+-2.0134058178781800e+01
+9.6030589175874717e+00
+1.9424833561240501e+01
+-5.6937973058668085e+01
+1.3269233032200718e+01
+2.9553119763895843e+00
+-2.9637377880478347e+01
+6.7281310318173304e+00
+1.7188888554322425e+01
+-3.8773395173206438e+01
+-2.1495893980085938e+00
+2.8476801473362761e+00
+-2.5968135137730215e+01
+-4.1497667251717124e-01
+-2.4076136147092209e+00
+-2.0363225823283173e+01
+-1.7603869088727799e+00
+-1.7686113469558966e+00
+-2.1132351151777740e+01
+2.6777143884523511e+00
+-3.8814539250984450e+00
+-2.0802987980732752e+01
+1.2313591089366755e+01
+6.2772623665182588e+00
+-2.9072062305838266e+01
+-2.3650890579856707e+00
+7.6297444684573890e-01
+-2.3276188363167464e+01
+-2.1897128914711872e-01
+-1.1595643032510337e+00
+-2.0830476195047055e+01
+8.9230668115790868e-01
+-2.0598487039488189e+00
+-2.0343680732511707e+01
+-8.2122536649107292e-01
+-2.4330559318673775e+00
+-2.0267219883093581e+01
+2.5021072956880643e+00
+-4.8887131310866945e+00
+-2.1863891319221196e+01
+5.9388719764629383e-01
+-2.8016190507594487e+00
+-1.9897291595370380e+01
+-3.3332529463466853e-01
+-2.6348727363334246e+00
+-2.0120357750011305e+01
+-1.7668989952897822e+00
+-1.9256654270148195e+00
+-2.1059088193397514e+01
+-6.5350746773210122e-02
+-2.9873676562814118e+00
+-2.0360276257997679e+01
+-2.8116169733091262e-01
+-2.7816302381094284e+00
+-2.0195585081970687e+01
+-1.9991224035807089e+00
+-2.1570544165722194e+00
+-2.1391226438407177e+01
+1.3717847610694065e+01
+2.2466332599254777e+01
+-5.6648317483390642e+01
+2.2700041323977582e+00
+-4.2684638956283925e+00
+-2.1073789957231419e+01
+1.3186050025485061e+01
+3.6295677298835827e+00
+-2.9034349983134835e+01
+1.2894862262429658e+01
+-4.7821412827758101e+00
+-2.5711537953314377e+01
+-7.8567333649420430e+00
+1.5314601451085355e+01
+-4.2747229909901122e+01
+-1.1680990492004858e+01
+1.3864996193037449e+01
+-4.0661124480689303e+01
+-6.4149672688324726e+00
+1.5961504716712989e+01
+-4.3265586083979713e+01
+-1.0788785281819836e+01
+1.5314053582609729e+01
+-3.9316575501054110e+01
+-8.8289188139170205e-01
+-3.4231094290514641e-01
+-2.1483908797987159e+01
+-1.0445302402860768e+00
+1.4913323234089646e+00
+-2.1907956600219077e+01
+-4.5793479699191558e-01
+-3.6312142785199470e+00
+-2.1296983659805186e+01
+-3.2108412280462029e-01
+-3.0865983842024853e+00
+-2.0642577354198178e+01
+-1.2665635109337892e+00
+-1.1771300263430435e+00
+-2.1255984962422215e+01
+-2.6071344491918911e+00
+6.5582615902742544e-02
+-2.2980173271766088e+01
+-1.8714127943746868e+00
+-1.0418095730353267e+00
+-2.1784439819836379e+01
+-9.4071862502078463e-01
+1.8432758098879692e-01
+-2.1490245605951223e+01
+-2.0904625901599734e+00
+-3.2267067329585855e+00
+-2.2562566195895023e+01
+-1.3363345227345478e+00
+-1.2619107788319943e+00
+-2.1260756440367214e+01
+-2.8768642357126067e-01
+-3.3102427712546931e+00
+-2.0797369495618391e+01
+-1.2140234489441197e+00
+-1.1883505202184494e+00
+-2.1194406465100773e+01
+-5.9084706525882935e-01
+-3.7893655153795689e+00
+-2.1534011451175747e+01
+-7.8656734123429617e-01
+-1.4388807715050806e+00
+-2.0863434927569774e+01
+-1.6114080199439504e+00
+-1.1245829427386331e+00
+-2.1583358904368289e+01
+1.2605372794847777e-01
+-1.6480706545608628e+00
+-2.0444736382979890e+01
+1.4250844495805284e-01
+-1.9238852536014750e+00
+-2.0544587881544420e+01
+-1.1958100530324900e+00
+-1.3967195536379364e+00
+-2.1282780976165263e+01
+-1.1958100530324900e+00
+-1.3967195536379364e+00
+-2.1282780976165263e+01
+4.4020709503992922e-01
+-1.8555644400584079e+00
+-2.0389398788840971e+01
+-5.4886233705914234e-01
+-3.8603393984202623e+00
+-2.1550017857959379e+01
+4.0518164532143838e-02
+-1.7908709081314509e+00
+-2.0591367571298562e+01
+-7.4993764205877600e-01
+-3.8176993098394325e+00
+-2.1671389793261977e+01
+-5.9805471472714977e-01
+-3.3180355861391368e+00
+-2.0991582270688244e+01
+-1.9551609651830084e+00
+-3.6540894394300762e+00
+-2.2619433688214965e+01
+7.2068986613342212e-02
+-3.0091004505027028e+00
+-2.0254024482987361e+01
+7.3464167526331381e-01
+-1.9919315847013588e+00
+-2.0365509157639060e+01
+-1.5734673590289170e+00
+-3.3872783478882584e+00
+-2.1770298679691194e+01
+1.1637917633153714e+01
+2.3386892201973630e+01
+-5.3313940028688236e+01
+-9.8943987897637236e+00
+1.5773226460246105e+01
+-3.9791123710098240e+01
+-9.6601201049921546e+00
+1.5628700083003061e+01
+-4.0187995297470820e+01
+-9.8740377961882135e+00
+1.3301846212996704e+01
+-4.3398392624366764e+01
+-1.6489489606904240e+01
+9.7812163208273937e+00
+-4.1995572963186035e+01
+-1.0147145385327965e+01
+1.4036003070709242e+01
+-4.2443203769368075e+01
+-1.3948904700067292e+01
+1.1832611396780552e+01
+-4.0307067123403399e+01
+-8.8864868499594021e+00
+1.5008862336950145e+01
+-4.2251811258943484e+01
+-9.4393288992599338e+00
+1.4738728339036122e+01
+-4.1617419502548074e+01
+-5.7266046724056228e+00
+1.3086753911726106e+01
+-4.8696449984047803e+01
+-7.8567333649420430e+00
+1.5314601451085355e+01
+-4.2747229909901122e+01
+-7.1830378587702333e+00
+8.3195404975967548e+00
+-4.4120156452290843e+01
+-9.6488070139686162e+00
+1.4253503954787970e+01
+-4.2362163787232198e+01
+-7.4119784164247333e+00
+1.5549633404927549e+01
+-4.3050217182331444e+01
+-7.4970585409863517e+00
+1.3884909629724977e+01
+-4.5266874246353069e+01
+-5.9890003777037615e+00
+1.3736565796485808e+01
+-4.7341724760278616e+01
+-1.0435049784032389e+01
+1.4071681940221568e+01
+-4.1774262840564120e+01
+-1.1680990492004858e+01
+1.3864996193037449e+01
+-4.0661124480689303e+01
+-1.4887580637326462e+01
+1.2177848537206634e+01
+-3.9415631100726387e+01
+-1.2087111719022161e+01
+1.1068383390395882e+01
+-4.4161630556002393e+01
+-1.0762173857115638e+01
+7.6158429236032585e+00
+-4.3090660679649673e+01
+-1.9922100474923855e+01
+9.9934161480876638e-01
+-3.3856460894032502e+01
+-2.1266928604289717e+01
+1.3941049401512677e+00
+-3.4873490152535915e+01
+-2.1427806787706203e+01
+8.7719314825408146e-01
+-3.4154852747481407e+01
+-7.0846680799644792e+00
+1.3899308083995049e+01
+-4.6190195500834619e+01
+-6.4149672688324726e+00
+1.5961504716712989e+01
+-4.3265586083979713e+01
+-1.1753827704054050e+01
+1.4042629650566935e+01
+-4.0075195519994665e+01
+-8.0825927367654877e+00
+1.5194869640365672e+01
+-4.2813608944677952e+01
+-8.6961172892365184e+00
+1.4847284588073100e+01
+-4.2094974150066520e+01
+-7.1689371119945680e+00
+1.5822281308720710e+01
+-4.2891907116860189e+01
+-9.2639698243061144e+00
+6.7318946279717791e+00
+-4.1815131667869991e+01
+-1.4847801662790408e+01
+9.1890454442871476e+00
+-4.4286052542164427e+01
+-1.0117826875491492e+01
+7.0817850247210385e+00
+-4.2436829936827912e+01
+-1.0970820861915234e+01
+1.2941625474417892e+01
+-4.2689021038115769e+01
+-6.2732199124202062e+00
+1.5463288897340336e+01
+-4.4295511111432241e+01
+-6.2732199124202062e+00
+1.5463288897340336e+01
+-4.4295511111432241e+01
+-1.0108944068259444e+01
+1.2622307502106326e+01
+-4.3932836061705729e+01
+-6.8626114415527377e+00
+1.3051663854229703e+01
+-4.7617500081408565e+01
+-7.3183349167424359e+00
+1.4308422749329155e+01
+-4.4839155906778657e+01
+-1.0374024630425307e+01
+1.5126951921426137e+01
+-3.9985666378863357e+01
+-9.3280142509272785e+00
+1.4704838072725392e+01
+-4.2136271402423816e+01
+-1.0374024630425307e+01
+1.5126951921426137e+01
+-3.9985666378863357e+01
+-9.4935529980548949e+00
+1.3632528592116758e+01
+-4.2833203874035974e+01
+-9.5577274053794223e+00
+1.3166591630862287e+01
+-4.4233768289091664e+01
+-8.4256075659075638e+00
+1.5191442044786989e+01
+-4.2246991380311329e+01
+-7.6506399590589291e+00
+1.4088809976871179e+01
+-4.4922196972402951e+01
+-9.7803306556971599e+00
+1.2786863326972423e+01
+-4.4751624767341866e+01
+-8.4256075659075638e+00
+1.5191442044786989e+01
+-4.2246991380311329e+01
+-8.4550476150977207e+00
+1.4860755981309879e+01
+-4.2572821733396388e+01
+-1.0617634411656029e+01
+1.2391416584980089e+01
+-4.3829135013864267e+01
+-1.2975216028230673e+01
+1.3307810717649103e+01
+-3.9924634206788049e+01
+-1.1979209347862925e+01
+1.1721401218630948e+01
+-4.3279263061420338e+01
+-1.2483807921131802e+01
+1.1224788232063476e+01
+-4.3789532305801799e+01
+-1.2596044121552509e+01
+1.0785114785183426e+01
+-4.4135494965925517e+01
+-9.6186390437579909e+00
+1.2738854493140749e+01
+-4.4810642123866273e+01
+-7.6746441866283854e+00
+1.5164496217040272e+01
+-4.3144720142778482e+01
+-1.2898247286312149e+01
+1.4072081743680862e+01
+-3.8851515424109380e+01
+-7.6159989917602431e+00
+1.5332556620835774e+01
+-4.2864212304302285e+01
+-7.5215896148395629e+00
+1.5525287225060119e+01
+-4.3000464253671616e+01
+-6.4829931224134760e-02
+-3.3479013472589139e+00
+-2.0677268235774747e+01
+-1.8405470345680011e+00
+-3.1651567169041694e+00
+-2.2177448910158521e+01
+-4.3763364709846608e-01
+-3.3209094464517750e+00
+-2.0993373264573478e+01
+-1.7859591717803129e+00
+-3.2738192471428214e+00
+-2.2245221242920284e+01
+-1.3672688601257146e-01
+-3.5097542432854509e+00
+-2.0878994915864194e+01
+-7.0772862682407709e+00
+1.6489480698651661e+01
+-4.1854401225748234e+01
+-6.8130398343034582e+00
+1.4483328674883749e+01
+-4.5399698300948323e+01
+-6.2801929224472381e+00
+1.5691246628415973e+01
+-4.4291271051397622e+01
+-1.7258179297519696e+01
+1.0096323261008889e+01
+-3.9914274536474906e+01
+-1.2092389175851441e+01
+1.1723676614569490e+01
+-4.3105032426072128e+01
+-1.3893382705287895e+01
+1.0390753722845769e+01
+-4.3775554552628797e+01
+-1.3948904700067292e+01
+1.1832611396780552e+01
+-4.0307067123403399e+01
+-1.2339779489400751e+01
+1.2037481357950206e+01
+-4.2392692268237404e+01
+-2.4252983858569621e+00
+3.7726718423438610e-01
+-2.2815167069851416e+01
+3.5021317364815454e+00
+-3.7939593753973683e-01
+-2.0653197264490736e+01
+1.7763214359842734e+00
+-2.5128223564662795e+00
+-2.0211696417493005e+01
+3.6756229379136904e+00
+-2.2861012440450668e+00
+-2.0490301388911547e+01
+2.6278932153056886e+00
+-3.9495463419197558e+00
+-2.0891421663495173e+01
+-2.5437053979697324e+00
+7.6589256382242765e-01
+-2.3296300476813546e+01
+-2.4740528405582265e+00
+2.3109141563460778e+00
+-2.5269829199608775e+01
+5.3969131660018199e+00
+-3.2961211625830322e-01
+-2.1979407205554264e+01
+2.8147312821779349e+00
+-2.6474676699459656e+00
+-2.0105409602748370e+01
+2.5003080671199451e-01
+-1.3860190672432242e+00
+-2.0548234859590696e+01
+-9.1724060948838726e-01
+-2.2723816622309814e+00
+-2.0478592791009500e+01
+-1.6886919474006556e+00
+-1.8550079901918841e+00
+-2.1067778636903025e+01
+-3.8933322745355659e+00
+1.4665705856851352e+00
+-2.5392232496365619e+01
+-3.9817568151003924e+00
+-6.7527672577143552e+00
+-2.3267933980638883e+01
+2.6676844515937508e+00
+7.6315180169517460e-01
+-2.0358700123260157e+01
+2.1193015065437213e+00
+8.3861748251614951e+00
+-4.4047261927953599e+01
+3.0754936493555389e+00
+2.5683164610893239e-01
+-2.0461111803748576e+01
+-3.5289242865386622e-01
+3.5079079844217058e+00
+-2.3221941373012822e+01
+1.3119223332398137e+01
+2.2272774925447036e+00
+-3.1906556645173918e+01
+-3.3094916650592983e+00
+-3.4138827874808481e-01
+-2.2963866649206405e+01
+1.9648552235392815e+00
+-1.1348896714715140e+00
+-2.0540507249618493e+01
+1.4057928639375326e+00
+-2.9536319842094847e+00
+-1.9672352786544899e+01
+3.5295508596608642e+00
+2.0674850692990190e+00
+-2.1216841325138599e+01
+2.5313364947529395e+00
+-4.9416847679084768e+00
+-2.1875282737740605e+01
+1.6544956588154935e+00
+1.4055441776482616e+00
+-2.0428381230527464e+01
+2.3463876878837060e+00
+-2.0794233125054511e+00
+-2.0322632810073369e+01
+6.6192587122697211e-01
+3.5279626940813515e+00
+-2.3029114989315723e+01
+2.1530616878293252e+00
+8.5669319980471403e+00
+-4.4334325792142643e+01
+-1.9327454759049789e+00
+3.1244436992790874e+00
+-2.6385119451282740e+01
+1.3033172051862522e+01
+3.6821144500258991e+00
+-2.9722565352813291e+01
+-2.0167932297026092e+00
+-3.1593610695745360e+00
+-2.2404707109015270e+01
+-1.3842043965167430e+00
+-1.8807637183935173e+00
+-2.1000231189587645e+01
+8.4587251405776218e+00
+1.8660624752684971e+01
+-5.7756305245369319e+01
+-8.7302192052267777e+00
+1.3869817295193089e+01
+-4.3827772900760756e+01
+-1.0760151480679139e+00
+1.8437394560379019e+01
+-4.5833956478636424e+01
+-2.4682721198128168e+00
+1.7115716541606623e+01
+-4.5892133474391450e+01
+3.7001641926434675e-01
+1.3996090422450647e+00
+-2.0670682917127849e+01
+-4.2479426225059598e+00
+1.7145176250151248e+01
+-4.4372835402349779e+01
+1.9711169616354616e+00
+1.2014477621847923e+00
+-2.0354468410122958e+01
+2.7707927493437117e+00
+9.9270448656853372e+00
+-4.6134203410183460e+01
+-1.3945056739663328e+00
+-5.2713698990388205e-03
+-2.2086419145554885e+01
+2.2870714963391470e-01
+2.7286398607886539e+00
+-2.1763518897858322e+01
+-1.2352008856440245e+01
+2.7157418972375709e+00
+-3.6435428614030727e+01
+-1.0545545175703555e+01
+7.9872499440115907e-01
+-3.3711008058497114e+01
+3.4756392196884036e+00
+-3.3650994178670004e+00
+-2.0553881742636989e+01
+-1.0075201036708759e+00
+-4.3868180045606753e+00
+-2.2340075581975082e+01
+1.2780078088932157e+01
+4.9917498910100910e+00
+-2.9143675016914720e+01
+-1.1318639317622084e+01
+1.1684321635178312e+00
+-3.4238975999081283e+01
+-1.1701968226547622e+01
+6.5146790529161536e-01
+-3.3625374088800278e+01
+-5.7883287527886615e+00
+-7.4181939957897098e+00
+-2.2474212130533633e+01
+1.3707260026320352e+01
+1.0353076367427864e+01
+-3.5097872922032714e+01
+1.2240920604972720e+01
+6.3971644707693196e+00
+-2.9694680042452788e+01
+1.4056519828765273e+01
+4.0751825664821562e-01
+-2.9379200534258327e+01
+5.9821312554456529e+00
+-2.3133126697949447e+00
+-2.1994460711937990e+01
+1.9227856106745269e+00
+1.0015098441988478e+01
+-4.6266298845823400e+01
+-1.5052010499316241e+01
+6.8379209139674586e+00
+-4.2040577739239254e+01
+5.7298398715356678e+00
+-5.0790566960340549e+00
+-2.2645888226045034e+01
+-2.4834746540179191e+00
+-8.1053317955882900e+00
+-2.1425707811379986e+01
+2.6880544945991502e+00
+-4.8382377374619662e-01
+-2.0373553636914199e+01
+-3.5838298689434767e-01
+3.0119831990385872e+00
+-2.2481162259992701e+01
+7.9219672715685596e-01
+-1.4633744582035404e+00
+-2.0506871164266016e+01
+-1.6241020094981028e+01
+1.1438473551387050e+01
+-3.9196459729528392e+01
+-1.3280019729384225e+01
+1.0976844517524986e+01
+-4.2795032794090552e+01
+9.0773127464342551e-01
+-2.7357481555318213e+00
+-1.9902324112394794e+01
+-4.4171171270508394e+00
+5.8171273407457917e+00
+-4.0572904217028110e+01
+3.5149498553382221e+00
+7.6852215169397486e-01
+-2.0686198096306796e+01
+-5.1266146820773095e-01
+2.7836303201927790e+00
+-2.2383262521355242e+01
+2.4878445734729420e+00
+-4.7936836458995309e+00
+-2.1737307197707231e+01
+1.2320499672348570e+01
+5.4871293347577534e+00
+-3.0798893302253930e+01
+-8.3997521615732413e+00
+1.3707264558752231e+01
+-4.4142908618411070e+01
+-2.1897128914711872e-01
+-1.1595643032510337e+00
+-2.0830476195047055e+01
+3.9216275673873886e+00
+-4.0859846109097848e+00
+-2.1655370907613161e+01
+4.4525148307011158e+00
+2.2043078733232973e+00
+-2.1965331709492769e+01
+-2.0288234006900763e+00
+-1.5724754211504395e+00
+-2.1421128750644790e+01
+-3.1069673996707925e-01
+2.7040392642214375e+00
+-2.2102097493949255e+01
+4.5401919624077863e-01
+-2.8307208246433437e+00
+-1.9824917263824894e+01
+1.0951308577998622e+00
+2.5654919644290891e-01
+-2.0344745462452426e+01
+2.2343824623420270e+00
+-4.4500206664758917e+00
+-2.1305877479489453e+01
+-1.4513533476721496e-01
+-6.5658644876095282e-02
+-2.0907503224545270e+01
+-2.2615852784580599e+00
+-8.1249907464831406e+00
+-2.1373017886073701e+01
+1.9432780814665866e+00
+-1.6187291211246062e+00
+-2.0254200516990092e+01
+-2.6829648022075858e+00
+-8.1224042830518997e+00
+-2.1457725695299633e+01
+-7.4665870766368485e+00
+1.5795219454424986e+01
+-4.2394182089643721e+01
+-1.4933411616103274e+00
+1.8042460271539632e+01
+-4.6064884141612438e+01
+-5.2998712634417213e+00
+1.6470969570203398e+01
+-4.3915285231884873e+01
+-1.7148664917772451e+00
+1.7668042081710375e+01
+-4.6560620368531595e+01
+-1.2926430123876401e+01
+1.3923296440695539e+01
+-3.9150082698615819e+01
+6.1904358149529437e-01
+-1.8736479009923082e+00
+-2.0390885793663831e+01
+-4.2303522374611919e+00
+5.5516993619050572e+00
+-4.0153965449716210e+01
+-6.8107813284966658e+00
+7.5799942466081749e+00
+-4.2950895249602738e+01
+-3.5029091361549353e-01
+1.8485462233339295e+01
+-4.6601055258457883e+01
+1.9124827469853252e+00
+1.9230107790180949e+01
+-4.7831141220300204e+01
+-3.2930823140496104e+00
+2.6976798444013586e+00
+-2.6901436745178383e+01
+-2.1430030446191436e-01
+1.4064406244167289e+00
+-2.1094681951736479e+01
+1.2564972706444889e+01
+4.4302652303499750e+00
+-3.1261174963133463e+01
+1.3491529295522116e+00
+1.0803151079230677e+00
+-2.0310631221488595e+01
+1.3491529295522116e+00
+1.0803151079230677e+00
+-2.0310631221488595e+01
+2.3105822549994531e-01
+-1.6866272760767054e+00
+-2.0343511236788267e+01
+-3.7290899200877186e+00
+-8.0289925865705509e+00
+-2.1566087578204126e+01
+-3.7981931330323224e+00
+-8.0305479910469213e+00
+-2.1538325076904620e+01
+-2.5150655133561850e+00
+-8.2170739540014583e+00
+-2.1246461956503126e+01
+1.0958538237375568e+00
+1.5903270117415531e+00
+-2.0578173403125117e+01
+1.2852124075724230e+01
+4.0112313363271346e+00
+-3.0159900759113544e+01
+6.9214734469337436e-01
+2.2255719800092870e+00
+-2.1198066856126115e+01
+6.1763906288961989e-01
+-5.9120782279701185e+00
+-2.1324393949053558e+01
+-2.1922392001043675e-01
+-3.0089016254795437e-01
+-2.0906846890979821e+01
+1.0976778362234803e+00
+-8.2574138645604933e-01
+-2.0471691053460617e+01
+-1.3292365613283814e+00
+1.8960325435336682e+00
+-2.2493503341356750e+01
+-4.2226029639096687e+00
+-6.8929711962577196e+00
+-2.3192726056586931e+01
+-3.1299504059801246e+00
+-7.1803573639184815e-01
+-2.2431144898048412e+01
+1.7446823227844580e-01
+-1.9792157094862801e+00
+-2.0620061712391674e+01
+-2.7280610437986669e-01
+3.7913640484595890e-01
+-2.0945551919224602e+01
+2.6312364516672666e+00
+-1.7621874329613247e+00
+-2.0260319834127746e+01
+-7.2329693604469739e-02
+-2.5849936209907103e+00
+-2.0061290977076229e+01
+2.1797255455920630e+00
+1.4459319231296128e+00
+-2.0439394301149200e+01
+-3.3972276847002489e+00
+-7.8723351313411545e+00
+-2.1691248926786571e+01
+6.1700608833544175e+00
+-1.0962605344029264e+00
+-2.2089504149753559e+01
+-1.1153766528672913e+01
+1.4222635623764292e+01
+-4.0617082286823788e+01
+-1.8921028083926221e+00
+1.7980558934575694e+01
+-4.5589649474477596e+01
+8.0758757704561601e-01
+-2.6690376453230469e+00
+-1.9999641394437134e+01
+-2.4029955357445609e-01
+-3.7630681864377492e-02
+-2.0845577989348453e+01
+1.4341257993547329e+01
+-1.3518688827550414e+00
+-3.0593469596368369e+01
+1.2737067539679081e+00
+-4.3018553457082342e+00
+-2.1162244839608672e+01
+2.6466977231411613e+00
+4.9103198839372553e-01
+-2.0270824631024748e+01
+-7.4562499617473446e+00
+2.3430280675090969e+00
+-3.5830367561047467e+01
+-4.5870300168014353e+00
+1.5866811758807623e+01
+-4.5774141561177309e+01
+-4.9278504558056175e+00
+1.6003110997177519e+01
+-4.5119562385016827e+01
+-5.2000570403461888e+00
+1.6637087757592528e+01
+-4.3798636833861266e+01
+-5.9252521337814619e+00
+1.6962618516216917e+01
+-4.2432909331408638e+01
+-6.7003242961235712e+00
+1.6576084392200002e+01
+-4.1925519579868499e+01
+-6.4994355602241460e-01
+1.8388765566701789e+01
+-4.6497742712646016e+01
+-9.8387106574605863e+00
+1.2100983460777291e+01
+-4.5321523733210633e+01
+-9.7746909417518424e+00
+1.2373936672788981e+01
+-4.5193555420411862e+01
+-1.0535545701472845e-01
+1.9539653279129492e+01
+-4.5144051535007371e+01
+-4.9323015665882348e+00
+1.3668914328384670e+01
+-4.7982281665064100e+01
+6.0194096550787526e+00
+2.2045789182582414e+01
+-4.8816980618352424e+01
+1.7373955176006152e+01
+2.5680544262894607e+01
+-5.5944769540605016e+01
+-5.0049041818102447e-01
+-6.6417924536878259e-01
+-2.1141804525033404e+01
+-2.3230500044972097e-02
+2.9144575391226204e+00
+-2.2120807956391261e+01
+6.3308784456621110e+00
+-8.9958164306139410e-01
+-2.2315722663759292e+01
+-3.2469818139524569e+00
+2.6282184176038537e+00
+-2.6886066293306961e+01
+-3.0386770025714007e+00
+-7.4996535957300248e+00
+-2.2251145290570399e+01
+1.4013471533296993e+01
+4.1657493845673477e-01
+-2.9588318856199589e+01
+-3.9130016998475075e+00
+-7.0391227367449956e+00
+-2.2879305275321425e+01
+-6.4451064751829179e+00
+-4.1189463362791452e+00
+-2.7136336142642772e+01
+1.1387357750018150e+00
+-8.4288582234364622e+00
+-2.1145366421285686e+01
+1.5850735727106720e+00
+-4.4845602339687503e+00
+-2.1404107566630358e+01
+1.3910778530784162e+01
+2.4188541884911100e+01
+-5.4870729717111317e+01
+1.2107991728299727e+00
+-5.4140843333852917e-01
+-2.0360281453534565e+01
+7.9079715210099921e-01
+-5.1070626076753953e+00
+-2.1528643401730207e+01
+1.3762849602191270e+01
+1.2350135694017876e+00
+-2.9812842239839377e+01
+1.2355544602962359e+01
+5.9013384264460198e+00
+-3.0055265853397358e+01
+1.3299576678819344e+01
+2.2412862394142441e+00
+-3.0794326683180973e+01
+-1.4209599732608555e+00
+-2.1692712240225558e+00
+-2.0663289274757261e+01
+-1.7532164915190911e+00
+2.0448350072056587e+00
+-2.3370358062669357e+01
+1.2984347613527687e+01
+3.1366154816322234e+00
+-3.1306981917976085e+01
+1.3140918328314322e+01
+2.4063282653247802e+00
+-3.1682118168997548e+01
+1.2764364958031914e+01
+3.8128513414741509e+00
+-3.1313731896717968e+01
+4.5853651722994284e+00
+1.7375958147749024e+01
+-5.4462032283285964e+01
+-9.4317946207571151e+00
+1.5151656488049349e+01
+-4.1023011702931377e+01
+8.7979001879049479e-01
+1.9786729501620947e+01
+-4.6368561135051337e+01
+-5.7052556366286638e+00
+1.3485478285356244e+01
+-4.8675681734758378e+01
+8.7681188814929065e+00
+1.4701816118374758e+01
+-5.2538341288065773e+01
+1.5676345074498088e+00
+2.0517926963265211e+01
+-4.6021133325679671e+01
+1.0509280119811525e+01
+2.1587456818231715e+01
+-5.4692546784771061e+01
+-7.2997240522238700e+00
+1.1645714553055975e+00
+-3.4278436196315575e+01
+-1.0294823148783141e+00
+1.9229203603727768e+01
+-4.4942150566526529e+01
+-6.0776526080344850e-01
+1.8566109691116331e+01
+-4.5960030133880672e+01
+1.0921845119993514e+00
+1.7115093367061540e+01
+-5.0956853434469821e+01
+-4.6902408068374646e+00
+1.0062206680160420e+01
+-4.6470653649264399e+01
+7.4306319747773866e-02
+1.1389551379110570e+01
+-4.8105890311142211e+01
+2.8513619526008784e+00
+7.8628069977747517e-01
+-2.0380813494738188e+01
+-5.2496615835907443e+00
+1.0521001640479993e+01
+-4.6959988289204880e+01
+1.2784189091517961e+01
+6.5723656807681090e+00
+-4.1520902850869035e+01
+-7.5916714548542119e+00
+-1.8914582230534396e+00
+-2.9984650206120680e+01
+4.6881796688885247e-01
+-1.5690051699824543e+00
+-2.0304956406302090e+01
+-5.7015373479287854e+00
+8.2435465957166834e+00
+-4.3942026998923353e+01
+1.5656909700515305e+00
+-1.4095085216061527e+00
+-2.0549404969275724e+01
+6.4302505160100987e+00
+-1.2917749046576716e+00
+-2.1866809409817936e+01
+-7.6351501210507058e+00
+-2.0140801650151690e+00
+-2.9845951855448014e+01
+-6.5881718095023736e+00
+7.8233936828117709e+00
+-4.3370633630885948e+01
+3.5085984621097506e+00
+2.1491592486020288e+00
+-2.1311238374514499e+01
+-2.6770375015475154e+00
+1.7860487694415074e+01
+-4.5434902568811317e+01
+-1.4632151407277243e+01
+8.2406280623832693e+00
+-4.4001169385472217e+01
+-6.8730294239129490e+00
+7.7955981658612918e+00
+-4.3137457713450956e+01
+-1.2918817326745952e+01
+1.4296846961356595e+01
+-3.8792327554322227e+01
+-7.6674543949737233e+00
+2.2426793866722381e+00
+-3.5598202124251955e+01
+-2.6230938848555230e+00
+1.5162114475552713e+00
+-2.4259829264963802e+01
+-1.5450395349989772e+00
+1.7461492023660053e+01
+-4.6779539596591590e+01
+-2.1161043850652380e+01
+1.7770404086388276e+00
+-3.5298777734730258e+01
+-8.8669980772782377e+00
+3.0229624483501789e+00
+-3.6713513906493240e+01
+-5.6824786619736916e+00
+8.4054378926588509e+00
+-4.4094107802385714e+01
+3.5810060861005568e+00
+-1.3489041929395440e+00
+-2.0654733339576239e+01
+-1.1329507070861732e+01
+8.0504073708380375e+00
+-4.3586467961225537e+01
+-3.7525321645570511e+00
+1.0986034702273054e+01
+-4.7564993122481155e+01
+4.6865966544765607e+00
+2.0273420819867560e+00
+-2.2281395690832017e+01
+-1.5044803312861290e+00
+8.8071631809925517e+00
+-4.4627386922948119e+01
+1.4455782646024458e+01
+-1.2402562901026006e+00
+-2.9712573627305900e+01
+4.8728826824499967e+00
+-1.9444479777382409e+00
+-2.0946960447824427e+01
+6.4452005859711745e+00
+-1.0856165465483064e-01
+-2.3260512131310168e+01
+3.5413287032491301e+00
+1.1323579746089116e+01
+-4.8122694889816373e+01
+-1.1987695646089081e+01
+2.2238537892022912e+00
+-3.5734875853964731e+01
+6.5944820001955486e+00
+-6.5602911638775685e-01
+-2.2650255915687854e+01
+2.8713262031775848e+00
+-1.4416704590090896e+00
+-2.0474344788168910e+01
+9.0447092519692998e+00
+-5.9880714724673645e+00
+-2.4308293820000888e+01
+6.4696070144875029e-01
+-1.4632244557175234e+00
+-2.0474862837010864e+01
+1.3029915984057598e+00
+1.8609084800738926e+00
+-2.0732015742432740e+01
+7.8040572618747266e+00
+1.7234924918125998e+01
+-5.6073301872452774e+01
+2.4922099031603406e+00
+1.4138153318826949e+00
+-2.0539625955232520e+01
+-3.1951485426593731e+00
+2.0916847460998644e+00
+-2.6140194932336051e+01
+7.6591139464825604e+00
+1.6630756989838456e+01
+-5.5174891799952640e+01
+2.3526523228273657e+00
+1.9130780706897659e+00
+-2.0746246882681682e+01
+1.1719612076231023e+01
+1.5678949589100254e+01
+-5.3930150273695730e+01
+-4.9504796087345959e-01
+1.8437519606208390e+00
+-2.1573055948067132e+01
+-2.3136306299623000e-01
+-3.8130163760637239e+00
+-2.1331304109212574e+01
+-2.5603269710758441e+00
+7.5858542351667713e-01
+-2.3282074778934813e+01
+-3.8285350033180732e-01
+-1.1699512835723860e+00
+-2.0826049175848574e+01
+-3.4082385495985923e+00
+9.1264758424915300e+00
+-4.5080322971832011e+01
+-7.3362388763301194e+00
+6.9238144892288096e+00
+-4.2130040873692423e+01
+7.1074555780953874e-01
+1.7683066021801848e+00
+-2.0779629694676007e+01
+1.1627526970575097e+01
+1.6067105199193410e+01
+-5.4780696901049403e+01
+-4.3366559845339721e+00
+1.0714577219653652e+01
+-4.7103762825468323e+01
+-3.9748595359095082e+00
+9.4282067784044052e+00
+-4.5505692537150296e+01
+2.9905143343659377e+00
+-3.7334189611664779e+00
+-2.0619802347783327e+01
+-3.5159754473670501e+00
+-7.9851210880236687e+00
+-2.1590198991971420e+01
+4.4753831297303570e+00
+1.6801096740428652e+00
+-2.1664151812959069e+01
+1.6458837171547884e+00
+-1.5621243564685308e+00
+-2.0343523836377656e+01
+-5.0603237164656019e+00
+-7.1362165481668898e+00
+-2.2761094114859173e+01
+4.9467187601620077e+00
+1.9190984680895982e+00
+-2.2374655949484314e+01
+-3.3590486440907332e+00
+-7.7949518879148370e+00
+-2.1916562792014041e+01
+-1.4050035245238909e+01
+4.8290187983673638e+00
+-3.9382191102284580e+01
+8.9190286480180827e+00
+1.5984046119920110e+01
+-5.4231908634006736e+01
+-9.2587357736087998e+00
+2.6171614831495473e+00
+-3.6259129890359091e+01
+2.3849734098539543e+00
+-1.4201470559820903e+00
+-2.0499020819765811e+01
+-1.0982728183329078e+00
+2.1547746350988430e+00
+-2.2396141818636636e+01
+1.3167713262100607e+01
+-5.8289141946330201e+00
+-2.4017981751450826e+01
+-4.6849404769647673e+00
+8.8811317915112191e+00
+-4.4686194895730182e+01
+-2.6694163722275226e+00
+3.4872703192180765e+00
+-2.8011254962650487e+01
+-3.1218773282405663e+00
+8.1156828702374728e+00
+-4.3719090995533584e+01
+-4.4044829668281302e+00
+9.3753037514581656e+00
+-4.5393676117871230e+01
+4.8240437525695796e+00
+-2.1789624427882730e+00
+-2.0686162168900964e+01
+-3.1363143833873415e+00
+-8.1037495519702016e+00
+-2.1871412650843862e+01
+-1.4406294625105770e-01
+3.4881039748417626e+00
+-2.2992807576063985e+01
+1.7317592006444029e+00
+-8.3955907576725970e+00
+-2.1302754316197234e+01
+1.8169222695873657e+00
+-2.7027017169913394e+00
+-1.9969537243241358e+01
+6.1404766520541063e+00
+1.2742307581512142e+00
+-2.4053704630496188e+01
+2.1796264633353917e+00
+-2.5512683680145090e+00
+-2.0200515471727243e+01
+-6.5110569825551323e-01
+3.2322107704403753e+00
+-2.3105009194999905e+01
+-2.4957303818315797e+00
+-1.2694769800696861e+00
+-2.1829002749525312e+01
+4.0723389274186585e+00
+2.2483882939859061e+00
+-2.1755465601358335e+01
+-3.5221252234782092e+00
+-8.0359419020895864e+00
+-2.1561428006160007e+01
+4.6941393256941728e+00
+-1.9511157948035625e+00
+-2.0966383551058303e+01
+6.4496419168806334e+00
+-9.2044986484273128e-01
+-2.2284541470641507e+01
+-1.3485696553494643e+01
+4.5616412372866018e+00
+-3.8995540691466005e+01
+-7.5503812083001272e+00
+7.0582597617626881e+00
+-4.2519417004512093e+01
+-2.7153249614639083e+00
+-1.2132420148200509e+00
+-2.1863003625940575e+01
+-1.2087277459296475e+01
+1.7230084210568992e+00
+-3.5071928114988125e+01
+3.3558644796498633e+00
+-1.3098859252322187e-01
+-2.0585624570976979e+01
+1.8802598757729612e+00
+9.4782190991399862e+00
+-4.5413100028911444e+01
+-4.4785418880781949e+00
+1.0819223557668360e+01
+-4.7251108963770974e+01
+1.2997054071144122e+01
+2.4368602684718743e+00
+-3.2480003783405429e+01
+-9.2032784555554183e+00
+2.4525890936354187e+00
+-3.6016813992783284e+01
+1.3555931990281469e+01
+1.4338175338876054e+01
+-5.2165914204780286e+01
+-2.1634618215258685e+00
+2.6605122380215857e-01
+-2.2681494203363517e+01
+-5.4052714020055834e+00
+1.0899114634505393e+01
+-4.7672601081923830e+01
+-4.8552848760112681e+00
+-6.7264463268815229e+00
+-2.3340349162640663e+01
+-4.6698987115475763e+00
+-7.6299408653172422e+00
+-2.2068440649921779e+01
+-2.2122309351745923e+01
+2.2050564529145840e+00
+-3.5852800012630993e+01
+-2.1558809470108251e+01
+1.9152535097001828e+00
+-3.5445622591624250e+01
+-2.2376323299787266e+01
+8.1392893774616240e-02
+-3.3028986634136750e+01
+-2.1589550973350160e+01
+2.2656948553055405e+00
+-3.5698951915637956e+01
+3.8719821153340899e+00
+3.0738881167744081e+00
+-2.2424691544621517e+01
+4.3172358085341802e+00
+1.0751143749350922e-01
+-2.1110878813318305e+01
+-1.5694974228784460e+01
+-6.8668539766252259e+00
+-2.3107947964545886e+01
+-4.5849010777539121e+00
+-7.3528393527408804e+00
+-2.2494454606752406e+01
+-4.0529485912532763e+00
+-7.4987952730571985e+00
+-2.2144733732148566e+01
+-6.6565399995959718e-01
+1.9046004966740778e+01
+-4.5840078282613234e+01
+2.9438377800085407e+00
+2.0482231680889772e+01
+-4.7123867414162348e+01
+-8.5478772809575898e-01
+1.8882490348273699e+01
+-4.5426978085448326e+01
+-1.3058242412828720e+01
+-7.3759620688956105e+00
+-2.2399956208305280e+01
+-1.3723916101231511e+01
+1.1025190373071867e+01
+-4.3101269780122067e+01
+-1.3723916101231511e+01
+1.1025190373071867e+01
+-4.3101269780122067e+01
+-6.2801929224472381e+00
+1.5691246628415973e+01
+-4.4291271051397622e+01
+1.1660629301691609e+01
+2.3047859596922411e+01
+-5.3725941787245709e+01
+1.6119951618236762e+01
+2.1984960471546700e+01
+-6.0467962441589179e+01
+8.8334414656207620e+00
+1.8646684165382130e+01
+-5.7546609189865492e+01
+3.4524524764124980e+00
+1.9576753210570942e+01
+-4.9713542123799542e+01
+3.5921557660038483e+00
+-1.2345650117464195e+00
+-2.0790004356828906e+01
+4.0449136112223236e+00
+-3.4427345399332792e+00
+-2.1035902068163931e+01
+3.5914880859622320e+00
+-3.7811457520767369e+00
+-2.1013431997378728e+01
+-3.8341396552033844e+00
+-8.2239043858969261e+00
+-2.1294525209197161e+01
+-8.8902354129232375e+00
+6.9609064881289324e+00
+-4.2227867147419417e+01
+-3.1284013493179996e-01
+2.4327675566624491e+00
+-2.1844011641242975e+01
+-2.3414499484544833e+00
+6.4855080555629208e-01
+-2.3139349355764601e+01
+1.3802865263378685e+01
+-3.0836074485663811e-01
+-3.1987598174170692e+01
+-3.4968264199564061e+00
+-7.8149456788457350e+00
+-2.1473196404382641e+01
+1.2015247090710805e+01
+-4.7293992783021972e+00
+-2.5870175709639000e+01
+-1.8424984271929854e+00
+-8.3138618558778195e+00
+-2.1077391903177734e+01
+1.3211680387350130e+01
+1.0062910693694388e+01
+-3.9407400677688301e+01
+-1.6256495929855745e+00
+1.0344065225629218e+00
+-2.2467932925052121e+01
+2.4174614117714248e+00
+1.5692713302972303e+00
+-2.0583607162366789e+01
+4.7089954568021870e+00
+2.2529553178926864e+00
+-2.2359280982955262e+01
+-1.0449557974363179e+00
+-1.9007550188942806e+00
+-2.0950620927567023e+01
+2.8631901395469890e+00
+-6.9651297735798101e-01
+-2.0475716700595903e+01
+1.4374102978695671e+01
+-1.1975762032753197e+00
+-3.0366067565431646e+01
+3.9817971629479172e+00
+-3.4351216521303529e+00
+-2.0990478029755796e+01
+-3.9156189203031087e+00
+-7.1419031156612229e+00
+-2.2681369695106220e+01
+1.2668152504296049e+01
+-4.1779829012333192e+00
+-2.6612219998040334e+01
+4.7475634812527119e+00
+1.5590068723302009e+00
+-2.1914665866808768e+01
+4.5357486249483188e+00
+-4.3794994808927452e+00
+-2.2339500706151856e+01
+1.2505161953956170e+01
+-4.6719851031119992e+00
+-2.6123681234233732e+01
+1.0267768118165590e+01
+-6.5576528190676564e+00
+-2.3087636032264015e+01
+4.4753930467827194e+00
+2.4241511808616880e+00
+-2.2278384009077023e+01
+3.7625522919409802e+00
+-3.8715217709959120e+00
+-2.1267130490765958e+01
+-4.0501618922288181e+00
+-7.6907008572053606e+00
+-2.1929155724510444e+01
+3.3736377689908741e+00
+2.4774379221615579e+00
+-2.1496079415777874e+01
+6.8391288795914553e+00
+-3.3973199016583427e-01
+-2.3149652025541059e+01
+4.2818434002634431e+00
+-3.1993112416553222e+00
+-2.0928738042118400e+01
+4.2818434002634431e+00
+-3.1993112416553222e+00
+-2.0928738042118400e+01
+4.3736686113179584e+00
+-4.2789952481927100e+00
+-2.2049896322366134e+01
+4.4012001185667682e+00
+-4.4747700485344151e+00
+-2.2257584558844616e+01
+1.2529844524687883e+01
+-3.9798961848236467e+00
+-2.6870899557015701e+01
+1.3904642608493374e+00
+-2.9471629369627972e-01
+-2.0306217401494159e+01
+1.3904642608493374e+00
+-2.9471629369627972e-01
+-2.0306217401494159e+01
+1.6667487875475320e+01
+2.1515913391182384e+01
+-6.1611371173791781e+01
+-1.3970203140288209e+01
+1.1897789138729948e+01
+-3.9950056826122754e+01
+1.3584024956498725e+01
+9.2119247256438150e+00
+-3.8571880091296286e+01
+1.3599292899406016e+01
+8.7998080771613676e+00
+-3.8503166273219968e+01
+3.4312774549307892e+00
+1.9406669166430788e+01
+-5.0657130951575468e+01
+-4.7682791054175144e+00
+1.7922656670262818e+01
+-4.2437927853512704e+01
+1.0163548829227651e+01
+1.9355303527588003e+01
+-5.8033292990936559e+01
+1.3721104351926046e+01
+-5.2331466744516781e+00
+-2.4841464242073410e+01
+1.2607549718599405e+01
+4.1729403666483149e+00
+-3.1556236861406216e+01
+4.2044364762945907e+00
+1.7246497420667982e+01
+-5.4054688301457702e+01
+1.4177737423670624e+01
+2.2265730211450798e+01
+-5.7445525495719657e+01
+5.4572554600225018e+00
+2.1437005788584788e+01
+-4.8762530711673087e+01
+-1.2082888602168278e+01
+1.8564023555183258e+00
+-3.5335000201374640e+01
+-5.1092799237393756e+00
+1.3297359010217789e+01
+-4.9312802121451668e+01
+1.1671083868676970e+01
+2.3659591379238051e+01
+-5.2114534784743753e+01
+9.5519235320558438e-01
+2.0394389139006865e+01
+-4.5336931689000593e+01
+-9.9605863240488404e+00
+1.4106054074398873e+01
+-4.2441424142617699e+01
+-4.2411328275473039e+00
+-8.0834388058889157e+00
+-2.1582536265311759e+01
+3.7130571697213641e+00
+-1.1508033681273777e+00
+-2.0984586315317301e+01
+-2.6583504737053794e+00
+1.5821589908930175e-01
+-2.3080687192294498e+01
+-2.7416231441717693e+00
+2.7005314171733040e-02
+-2.3230084162287511e+01
+-9.3342606794869312e+00
+1.5765397756830966e+01
+-4.0402099335160685e+01
+-1.0250625735063624e+01
+1.1930661379101183e+01
+-4.5132990036035167e+01
+1.3355020548893146e+01
+1.5585862291260235e+00
+-3.1775360806624001e+01
+1.3408053827645354e+01
+1.4213654407475020e+00
+-3.1595274363314214e+01
+1.3182696938612215e+01
+3.3433960607092237e+00
+-2.9020844386023651e+01
+2.7249470837442202e+00
+-1.8888193538614750e+00
+-2.0226702468824829e+01
+1.3640952862160255e+01
+1.0487067470963711e+00
+-3.0975968216169754e+01
+1.3782827305005952e+01
+3.5412719475245902e-01
+-3.1513954034969494e+01
+-8.3619306545704060e+00
+1.3921534441191309e+01
+-4.4366581690373991e+01
+1.4557060386016998e+01
+-1.4270001922180471e+00
+-3.0179127711563130e+01
+1.4423751953265411e+01
+-7.3113671173845673e-01
+-2.8965136037263253e+01
+-7.1578904607400293e+00
+1.4492365583008091e+01
+-4.4550633977887422e+01
+-1.1164764827057613e+01
+1.3460130612988104e+01
+-4.1898737599725060e+01
+-2.4693250563654768e+01
+1.6213846158134494e+01
+-5.0130525408046957e+01
+-9.3478711929229750e+00
+1.2712716317072502e+01
+-4.5265738201847235e+01
+-4.5825677494372883e+00
+1.5401848936549294e+01
+-4.6446493264921244e+01
+6.2343308065739740e-02
+1.7494734400108463e+01
+-4.9202737243742142e+01
+4.2185304932516077e-01
+-1.2098694096096068e+00
+-2.0767157468418986e+01
+-5.9493848032176802e+00
+1.5586696827921008e+01
+-4.4547484614214831e+01
+1.5527581343564789e+01
+2.2074757024448079e+01
+-5.9725250268341263e+01
+7.1229427464305761e+00
+2.1457382293309081e+01
+-5.1330431832123665e+01
+1.5527581343564789e+01
+2.2074757024448079e+01
+-5.9725250268341263e+01
+1.5055960671051904e+01
+2.2459737321802272e+01
+-5.8420567575684970e+01
+-6.6565399995959718e-01
+1.9046004966740778e+01
+-4.5840078282613234e+01
+-4.4149003550681707e+00
+1.6440126164823127e+01
+-4.5299134128519505e+01
+8.6851868789073521e+00
+1.5083750195285845e+01
+-5.3089996974895321e+01
+1.4919955165168304e+01
+2.1452739867902284e+01
+-5.9717394955280412e+01
+-1.9660930566546608e+00
+-1.8332220152291967e+00
+-2.1052247157150319e+01
+-2.5394634537039793e+00
+2.1975839191407647e+00
+-2.5213376494951024e+01
+-5.1956315495743102e+00
+1.1208884385262625e+01
+-4.8002148480161566e+01
+3.6388381325372494e+00
+1.1550507862684924e+01
+-4.8414956182666153e+01
+9.1145679929424972e+00
+1.5764795032194979e+01
+-5.4144626162504323e+01
+-1.6114080199439504e+00
+-1.1245829427386331e+00
+-2.1583358904368289e+01
+9.9588646236862264e+00
+2.0432919827479584e+01
+-5.6572259475989974e+01
+-1.3119719618881345e-01
+-3.2242753849254363e-01
+-2.0903713153297769e+01
+-5.1830319522351926e+00
+1.1585790636294584e+01
+-4.8486271458954604e+01
+2.4184353045458313e+00
+-7.3598078674014888e-01
+-2.0429457986956063e+01
+-1.0687565005240376e+00
+-5.6892947073326694e-01
+-2.1565865325057135e+01
+1.4953246454858871e+00
+-1.0133922875701373e+00
+-2.0500815756422700e+01
+-1.3166973854001565e+00
+-7.1171621863096490e-01
+-2.1397074534691292e+01
+1.9874241831310635e+00
+1.5581764252762089e+00
+-2.0465494404056436e+01
+4.1662856821995753e+00
+-4.1190332512683510e+00
+-2.1824540663520150e+01
+1.3936082858835515e+01
+8.6979524506881212e-01
+-2.8966868551457257e+01
+-3.1903277217242416e+00
+2.6981061180551973e+00
+-2.6968064913544509e+01
+1.3473112309992382e+01
+1.4892667078123532e+00
+-3.1140442222968574e+01
+1.2764364958031914e+01
+3.8128513414741509e+00
+-3.1313731896717968e+01
+1.2842509602022096e+01
+3.0421404411841313e+00
+-3.2355784559757957e+01
+1.8029356981836264e+00
+-1.0988812893159516e+00
+-2.0538310687046486e+01
+3.1181325348085136e+00
+2.9809460650737484e-02
+-2.0443891911802098e+01
+2.2264069250454273e+00
+-8.3849288266742372e-01
+-2.0430099699254477e+01
+4.1625530825567756e+00
+-1.2589038055861386e+00
+-2.0879748098237918e+01
+3.9522058539658569e+00
+-1.0263245023887551e+00
+-2.1100796691937120e+01
+-1.5961499598969053e+00
+-1.8404199128035497e+00
+-2.1065254240358922e+01
+6.5150260301017511e+00
+-1.0280123988705903e+00
+-2.2154856813404859e+01
+2.5604228844661425e+00
+-1.6097328242074727e+00
+-2.0291504704707126e+01
+2.9160888067473287e+00
+-1.3669221619687648e+00
+-2.0598173501245547e+01
+1.2774355624798819e+00
+-1.4994331075852529e+00
+-2.0445774017269024e+01
+-3.3540822239366994e+00
+-4.1146701544810743e-01
+-2.2772530725374963e+01
+2.9577822388720199e-02
+-3.3020302672038175e+00
+-2.0632222060484001e+01
+-9.3761583917071301e-01
+-5.8401258266222822e-01
+-2.1469471559042891e+01
+2.9571325298931721e+00
+-1.2180692084225611e+00
+-2.0749428042464281e+01
+1.2494193825758472e+01
+4.6721504095975410e+00
+-3.0972865365980489e+01
+2.5416260114119287e+00
+-2.6001790523123671e+00
+-2.0119505985637922e+01
+-1.9303868822084922e+00
+-1.3690470243517550e+00
+-2.1759724646079704e+01
+1.7357235687539434e+00
+-1.6599810975522447e+00
+-2.0202641561005045e+01
+1.6574829077404625e+00
+-3.5090416595864737e+00
+-2.0335004488783692e+01
+4.1097145948549043e+00
+-2.1200979704714906e+00
+-2.0737440250647452e+01
+1.4953246454858871e+00
+-1.0133922875701373e+00
+-2.0500815756422700e+01
+-2.1115585000608472e-01
+-8.5902464162555492e-01
+-2.0888489719012902e+01
+-1.4489317320360995e+00
+-3.5029005311719497e-01
+-2.1665527464341761e+01
+-4.5770193651562707e-02
+-5.8612662473963273e-01
+-2.0876738526720192e+01
+5.5122971919263133e+00
+-5.1168217404238119e+00
+-2.2530900477114500e+01
+2.0743780616549745e-01
+-1.4505753489220414e+00
+-2.0492152998561295e+01
+-1.3638000872854157e+00
+-2.7368607701329639e-01
+-2.1920612141237420e+01
+-3.9505138141895851e-02
+4.0869657538242077e-01
+-2.0538461876322408e+01
+1.2311052456829577e+01
+5.8832512633535616e+00
+-3.0106858978743301e+01
+2.5722417269611983e+00
+5.4244465939029973e-01
+-2.0266322590803409e+01
+-1.1339859707800186e+00
+9.7097207933564453e-02
+-2.1738419663559203e+01
+-1.5319628257546769e-01
+7.0426561296425461e-01
+-2.0877127455983043e+01
+2.8294688679646942e+00
+-1.7420406082313877e-01
+-2.0357155737399328e+01
+1.2352415989330199e+01
+5.8497940388075005e+00
+-2.9795616211542914e+01
+1.2999717081855593e+01
+4.0062414100111603e+00
+-2.9296585795921487e+01
+1.4032743549466822e+01
+6.5512308062350211e-01
+-2.9258716419682379e+01
+1.4252544437280873e+01
+-2.9854581670583619e-01
+-2.9443191904462335e+01
+8.5589616684697845e+00
+1.4562234562340937e+01
+-5.2394968941309507e+01
+2.2165544192791855e+00
+-7.9549032676000442e+00
+-2.1636538289643639e+01
+-1.1115913988962978e+00
+-2.5350556442574348e+00
+-2.0105808870925163e+01
+4.1975770003017008e+00
+-1.8403928633364097e+00
+-2.0972869466447374e+01
+-9.3001722419118893e-01
+-4.7161939037956035e-01
+-2.1594308284723112e+01
+3.1097643280900642e+00
+-2.6209669156044670e+00
+-2.0015475564311235e+01
+-1.5606575823412103e+00
+5.4529682613389169e-02
+-2.2458481487809344e+01
+3.2086041838742037e+00
+1.8717971342305577e+00
+-2.1001304810515183e+01
+2.4638339196641073e+00
+1.7476355570411402e+00
+-2.0638572839326070e+01
+2.0529433066406666e+00
+1.8460109392221946e+00
+-2.0681525930300417e+01
+-3.1069673996707925e-01
+2.7040392642214375e+00
+-2.2102097493949255e+01
+9.1363967504357451e+00
+1.9284673329600018e+01
+-5.6790321156766709e+01
+2.7848869801533938e+00
+1.9744728884341065e+01
+-4.9255339139783075e+01
+1.3305094641360125e+01
+9.3053517564977462e-01
+-3.3079930081879098e+01
+1.3424483735177995e+01
+7.3887347156703420e-01
+-3.2976862134911336e+01
+-1.3988962752604264e+01
+-7.5007115541953624e+00
+-2.2155019522384123e+01
+-4.9566832813151205e+00
+1.3503466273706094e+01
+-4.9373057797910164e+01
+-4.8148975204379205e+00
+1.0719873058299791e+01
+-4.6882452577726824e+01
+-2.8039828235310353e+00
+-1.0880995556658524e+00
+-2.1991851940352401e+01
+-3.7490808565147749e+00
+1.1285931533629553e+01
+-4.8003071822085460e+01
+2.5161681490083563e+00
+1.5829601910247510e+01
+-5.3969966676142370e+01
+6.6746773936595449e+00
+-3.4435399384586857e-01
+-2.3058691764241640e+01
+1.3122298781718955e+01
+-5.8977781418884483e+00
+-2.4016637361716814e+01
+1.6834139677521214e+00
+1.4625784724597699e+00
+-2.0493465077010963e+01
+2.7615921086595159e+00
+-2.5572802131247796e+00
+-2.0188818970001414e+01
+-3.0595690839149992e-01
+-1.4252303309610692e+00
+-2.0556122508501307e+01
+1.4777101105508779e+01
+2.1203948078696268e+01
+-6.0530500620548082e+01
+2.6882836903739882e-01
+-1.4784575563182103e+00
+-2.0437006997942852e+01
+1.4014329034587050e+01
+8.2904727114187438e+00
+-3.7112900709863275e+01
+2.2678128738843770e+00
+1.3207016202561472e+00
+-2.0382477538928907e+01
+-4.8856401167747903e+00
+1.3188302493097295e+01
+-4.9628813311815144e+01
+-6.5075699243562104e+00
+1.6020994600085974e+01
+-4.2445116861345625e+01
+-1.7340189004310469e+00
+1.7722101721763689e+01
+-4.6261655476656323e+01
+1.9360671668146806e-01
+-1.2348892778902063e+00
+-2.0781823832560065e+01
+3.9100263860950548e+00
+-4.2716405180797672e+00
+-2.1787854622675781e+01
+-4.6909453254807216e+00
+1.3051623210076817e+01
+-4.8000605362282499e+01
+2.9045039508713782e-01
+-1.0210575936582526e-01
+-2.0598739745168960e+01
+-1.6940969904152754e+00
+-3.8151259928341874e-01
+-2.1776503288010918e+01
+2.5498820315401476e+00
+-3.1757167998885798e+00
+-2.0092756693698927e+01
+2.3916784158895057e+00
+6.1319060990741192e-01
+-2.0278840320993865e+01
+-5.4905959309592758e+00
+1.4053603318990396e+01
+-4.7759925016927021e+01
+1.0456997208053169e+01
+2.0581836210915920e+01
+-5.6366150959729246e+01
+4.8444184618974448e+00
+-9.1114257238575735e-01
+-2.1218265395298364e+01
+-3.8058340813899201e+00
+1.4713721995877858e+01
+-4.8344322779941997e+01
+-5.9252521337814619e+00
+1.6962618516216917e+01
+-4.2432909331408638e+01
+-6.9850697025261157e+00
+1.6551439820273981e+01
+-4.2131521564546965e+01
+-8.7013860774402796e-01
+8.5371303542752486e-01
+-2.1504343566957758e+01
+5.3946397879271997e+00
+1.9233124159319097e+01
+-5.2073052691993155e+01
+-1.4852218673218731e+00
+1.7949616022782855e+01
+-4.4422158746005735e+01
+9.1145679929424972e+00
+1.5764795032194979e+01
+-5.4144626162504323e+01
+-6.7263058732902410e+00
+1.6764880791018332e+01
+-4.1921501231668806e+01
+4.1904916343969374e+00
+-4.1628351405945798e+00
+-2.1813533481908490e+01
+1.3331858669072206e+01
+-5.6791370081326082e+00
+-2.4179529032871741e+01
+5.7433831713420052e+00
+1.9440764197909250e+01
+-5.2444253354035418e+01
+3.2803208887918704e+00
+3.3969307612574262e+00
+-2.2924216560263314e+01
+1.3731652184599962e+01
+9.1174022211664187e+00
+-3.7742589415501151e+01
+4.0268918502925271e+00
+-2.2881407411163912e+00
+-2.0507116877953813e+01
+7.0744471545164844e-01
+-1.7829663663856310e+00
+-2.0276875979190457e+01
+3.0096354692608838e+00
+-6.3758198091797313e-01
+-2.0523898871946205e+01
+-9.8029668250344337e-01
+-9.3634875630259140e-01
+-2.1115011881009078e+01
+6.2378932071970556e+00
+9.5811179664924717e-01
+-2.3696818469082185e+01
+-1.5374501939508312e+00
+-1.7255368989103788e+00
+-2.1229420680164701e+01
+4.8409862881608001e+00
+-6.7401299137721293e-01
+-2.1540730264148010e+01
+8.0825897624032645e+00
+1.8950954553345781e+01
+-5.6132250736139980e+01
+5.7522525163227989e-01
+1.8331293790534311e+01
+-4.7854588153552790e+01
+-6.2629247604507059e+00
+1.5087560356564419e+01
+-4.4603195306474007e+01
+-5.3773483454999349e+00
+1.3583242221868860e+01
+-4.7835282242265556e+01
+4.5229986074260431e+00
+-3.5004015541784606e+00
+-2.1428703378705162e+01
+-3.0044461016621722e+00
+8.3042344341422112e+00
+-4.4122970568801534e+01
+1.3135637798101932e+01
+9.8408004875296431e+00
+-3.9617302345602035e+01
+-4.0117381549440925e+00
+7.1802011944596176e+00
+-4.2485300635188167e+01
+-6.0522070178430443e-01
+-1.3204964124712555e+00
+-2.0630053317173704e+01
+-4.9378035351149213e-01
+-7.6012150791482980e-01
+-2.1234438737151436e+01
+-7.6059530483466267e+00
+1.5642393782332258e+01
+-4.2281312191895772e+01
+2.0617125953060365e+00
+-1.3723843009828542e+00
+-2.0566117070714704e+01
+-1.2394503335000973e+01
+1.0849576951844680e+01
+-4.4063625934237635e+01
+-1.3420614397897262e+01
+1.2141651101638423e+01
+-4.0094011505843589e+01
+2.1838033344219823e+00
+-1.5084080226905083e+00
+-2.0421240249824077e+01
+4.6397990198302361e+00
+-1.1254799045884545e+00
+-2.0996875204611474e+01
+4.8975443808722110e+00
+-2.1099558505243796e+00
+-2.0765774775666191e+01
+-2.1800037265028753e+00
+-1.7180250913920174e+00
+-2.1192387623594080e+01
+9.9493110056196805e+00
+1.1762280763391079e+01
+-4.8745177648622935e+01
+-3.2818671591099298e+00
+1.7532941844272123e+01
+-4.4488575452274006e+01
+5.7777659836939943e+00
+2.3573534078817707e-01
+-2.2721376129213006e+01
+1.0296855668858974e+01
+2.0440677775193656e+01
+-5.6417626756763127e+01
+-3.2073934745801758e+00
+3.4985210850782117e-01
+-2.4035985378784670e+01
+4.8939479641915806e+00
+1.9107689389270281e+01
+-5.1614927378017725e+01
+-1.2288126734643152e+00
+1.8364061832020091e+01
+-4.6017967789331315e+01
+4.0672977599588593e+00
+1.8257918920518719e+01
+-5.2216526988067038e+01
+-1.4680004304875709e+00
+-1.6631297256201081e+00
+-2.1290414462326570e+01
+-1.4091102098130777e+00
+-1.3844546113094267e+00
+-2.1477140820726003e+01
+9.7237931467933656e+00
+8.1302592051094358e+00
+-4.3611233100814154e+01
+-1.4882212953204748e+00
+-1.4749716500283330e+00
+-2.1490341120992355e+01
+-1.4134166080442964e-01
+1.7804845516872951e+00
+-2.1280387796235342e+01
+4.7556414481128169e+00
+-2.2151190005846209e+00
+-2.0628415328640365e+01
+-8.2417123320516552e+00
+1.4346716789473151e+01
+-4.3426509359288787e+01
+-1.3940512115614034e+00
+1.8243342392275718e+01
+-4.5546751754199434e+01
+-7.3056874020203058e+00
+1.4916206824502376e+01
+-4.4012345580861094e+01
+-8.6769959568503250e+00
+1.2072556129474382e+01
+-4.7191386308426388e+01
+1.3797837169921005e+01
+8.8248886313762931e+00
+-3.8004045718311858e+01
+-8.7751162701701642e+00
+1.1920482152023057e+01
+-4.7407104373514152e+01
+-7.1852276910493602e+00
+1.6150545946373942e+01
+-4.2060224810492535e+01
+-9.5474281552552114e+00
+1.2493260604203334e+01
+-4.4866486775331879e+01
+7.0430734561909381e+00
+4.0198548728924793e-01
+-2.4044793775136608e+01
+-7.1242621532142874e+00
+1.6371956700816572e+01
+-4.1682067278752641e+01
+1.3359610871663707e+01
+1.0553583202508195e+01
+-3.7082188783387885e+01
+1.3204385459377074e+01
+1.6385209670289924e+00
+-3.2399292905074503e+01
+1.3424483735177995e+01
+7.3887347156703420e-01
+-3.2976862134911336e+01
+1.9663429674338493e+00
+7.7981913222021959e-01
+-2.0239081305483293e+01
+2.3375386043054505e+00
+4.2528207710698429e-01
+-2.0251904280213253e+01
+3.6205961681892997e+00
+-2.4909385400249628e+00
+-2.0256293314429186e+01
+8.0829865860991357e-01
+-8.3658104348728024e+00
+-2.1043222128475584e+01
+1.2244684509077921e+01
+-4.6336390969163634e+00
+-2.5929487494587818e+01
+-2.4852498740263314e+00
+-8.1546615543355969e+00
+-2.1329858651835934e+01
+1.3613318188727382e+01
+1.8526176076026084e+00
+-2.9367846280647203e+01
+-2.1561115849670882e+00
+-1.4889547640601355e+00
+-2.1495430595095051e+01
+1.3891945194623400e+01
+4.3404883285181900e-01
+-3.0732957912405528e+01
+-1.4091102098130777e+00
+-1.3844546113094267e+00
+-2.1477140820726003e+01
+1.3886759660356029e+01
+5.2743405341296346e-01
+-3.0122235862593453e+01
+-5.6861949862274574e-01
+-7.2040352699958099e-01
+-2.1254979334031788e+01
+-1.1793256471128828e+00
+1.1868586368079122e-01
+-2.1790197812253858e+01
+1.3456373764438464e+01
+1.8440456435641126e+00
+-3.0493207531767901e+01
+-2.7712048956443218e+00
+-7.5068363789352226e+00
+-2.2211096251944632e+01
+-1.5506779570330900e-01
+6.0736015919246611e-01
+-2.0933611118631880e+01
+2.6567870069426025e-01
+-8.7515393452189716e-01
+-2.0769595241593940e+01
+1.2052368121684194e+00
+-1.0659282491157218e+00
+-2.0555378178303307e+01
+1.1540908617158385e+00
+-1.1661835405849861e+00
+-2.0612993314274650e+01
+1.0739434913175845e+00
+-1.2026199112380607e+00
+-2.0626383103674911e+01
+-6.0522070178430443e-01
+-1.3204964124712555e+00
+-2.0630053317173704e+01
+1.3688039155998815e+01
+9.9619703661080894e-01
+-3.0576159977352699e+01
+1.4449697096461199e+01
+-1.0320307046606680e+00
+-2.9654234635630367e+01
+1.4504039326497619e+01
+-1.5165163411502305e+00
+-3.0158180761016869e+01
+1.4298569793990387e+01
+-8.5780277186575216e-01
+-3.0054114428705152e+01
+-2.1013658805101443e+00
+-7.8470508724112795e+00
+-2.1785762910976356e+01
+1.1439460942806440e+01
+-4.1131133374629778e+00
+-2.6793988254186765e+01
+4.8546551575837144e-01
+1.2684292475342105e+00
+-2.0710427681526269e+01
+-4.3666546132329884e+00
+-6.7323436264842913e+00
+-2.3297398329478028e+01
+-1.4040527558804451e+01
+4.3576539517833179e+00
+-3.8649207217932407e+01
+1.8542278151736649e+00
+-1.7483326389707023e+00
+-2.0127174135281976e+01
+2.3393226935702343e+00
+-2.5744664225121450e+00
+-2.0144093293592562e+01
+6.9597605494378039e+00
+-3.3057085250674842e-02
+-2.3437694175845301e+01
+5.7031678191214787e+00
+-9.4791583666900336e-01
+-2.2075250970361218e+01
+5.1835027774659155e+00
+-2.1165315684904580e+00
+-2.0764861294381262e+01
+4.5819920525811950e+00
+-2.6409206611179519e+00
+-2.0544230264205332e+01
+1.5880886411436255e+00
+-2.9751625980136094e+00
+-1.9811992463532743e+01
+-3.8191588260968756e+00
+-7.2882437731569336e+00
+-2.2586408865598585e+01
+-3.2413049858617882e+00
+-7.9701350727547355e+00
+-2.1581196333233077e+01
+-3.3828618755137700e+00
+-8.0687526318811198e+00
+-2.1510178754365043e+01
+3.4091973208403283e+00
+3.0042864689410669e+00
+-2.2266201387823841e+01
+1.3090694132589773e+01
+2.4292064114567440e+00
+-3.1923290952874446e+01
+4.3160954660141284e+00
+1.2000324321463678e+00
+-2.1333171947461182e+01
+2.7023592347025414e+00
+-2.4938228706771466e+00
+-2.0205293950666150e+01
+-1.7593455710944861e+00
+-1.2893623400237914e-01
+-2.2128983088888504e+01
+-2.8484241574318387e+00
+4.2798240686122029e-02
+-2.3416193527282800e+01
+-1.2396318933140078e+00
+-4.6393356152750215e-01
+-2.1789083281789317e+01
+-7.0377375464256364e-01
+-1.0944037609150095e+00
+-2.0952780301361443e+01
+-7.4379070639215850e-01
+-2.0047087108404273e+00
+-2.0919799956460100e+01
+3.1981144758280871e+00
+-2.7324650336676135e+00
+-2.0051538111931134e+01
+5.5035593502925275e+00
+-2.0741175822631486e-01
+-2.2136510256416866e+01
+5.7168634405931167e+00
+-1.1533362521312811e+00
+-2.2023886375372768e+01
+3.6967585065420190e+00
+-1.3000598520126077e+00
+-2.0688771336610930e+01
+3.0966295677473390e+00
+-1.2892568955341377e+00
+-2.0569209047912150e+01
+1.2136027843822504e+01
+-5.8674388977377108e+00
+-2.4345891608210952e+01
+5.1004347563147761e+00
+-4.1992033776814064e-01
+-2.1918853336034573e+01
+6.4027627592761043e+00
+-7.2457756607805557e-01
+-2.2668178132688588e+01
+5.5134712941712962e+00
+-1.7884805738273648e+00
+-2.1167945387668201e+01
+4.9411665926718866e+00
+-1.9375394061027156e+00
+-2.0964616420756936e+01
+4.9411665926718866e+00
+-1.9375394061027156e+00
+-2.0964616420756936e+01
+4.5392195878995800e-01
+-1.4104957274065693e+00
+-2.0566691120493644e+01
+4.5189226865456389e+00
+-3.1217496101322313e+00
+-2.1036411099366656e+01
+2.4335505811536207e+00
+-4.9242558206277547e+00
+-2.1922490012672466e+01
+5.5143392366827939e+00
+-1.2707202891064766e+00
+-2.1740209335316049e+01
+-8.1418720141020515e-02
+-2.5816117500623612e+00
+-2.0062199735684512e+01
+-1.7911658938979977e+00
+-4.3106581911511075e+00
+-2.3110446817656392e+01
+3.2489691387011872e+00
+-3.5066886120033609e+00
+-2.0387769635482172e+01
+-2.1944007476189120e+00
+1.8247301048981117e+00
+-2.4360619525497700e+01
+1.2903817090593472e+00
+1.8876575718487276e-01
+-2.0172978394010634e+01
+-3.1074720225884306e-01
+1.7726701293898923e+01
+-4.7789876098818823e+01
+-5.4918332953809976e+00
+5.8410675154757685e+00
+-4.0532945053334466e+01
+-2.4155686509392447e+00
+1.7542261921449389e+00
+-2.4562701725927685e+01
+-2.8223767958214223e+00
+-1.3935104774718252e+00
+-2.1620198816605608e+01
+-7.3651443597479005e-01
+2.4495915787592057e+00
+-2.2218875142846446e+01
+-2.3739116603733543e+00
+2.1641673988625589e+00
+-2.5081618877729653e+01
+5.1899140904691432e-01
+1.6682488305487460e+01
+-5.0441603000722971e+01
+1.3085823155564948e+00
+1.5636513682899755e+00
+-2.0538497172899561e+01
+-1.5850013647954722e-01
+3.0231960429074305e+00
+-2.2266781094095542e+01
+3.5038996553362400e-01
+1.8910373356530130e+00
+-2.1025870586304549e+01
+-7.5861528156444846e+00
+-1.6918040081232233e+00
+-3.0395842835570651e+01
+-1.2112873866875939e+01
+1.1784741686053376e+01
+-4.2968899977825686e+01
+-1.1464033369579829e+01
+1.4013216531773940e+01
+-3.9827210024810064e+01
+2.2571804004341347e+00
+1.4186536037479782e+00
+-2.0442045936663490e+01
+3.2530938842934329e+00
+1.8166841423066304e+00
+-2.0917824571296908e+01
+1.3441594809301216e-01
+1.2796016165165505e+00
+-2.0843223975646513e+01
+1.0025059171938702e+01
+2.0141268476591137e+01
+-5.6645353443505243e+01
+2.0102863225114795e+00
+9.2246210815823071e-01
+-2.0266476021547060e+01
+-5.1835569401808246e-01
+-1.2225312973389770e+00
+-2.0752399514073836e+01
+1.5730922600108062e+01
+2.2528649093408973e+01
+-5.9113683536546397e+01
+-4.2322817684438005e-02
+-2.5145982578370605e+00
+-2.0169988818288360e+01
+4.4535979312296590e+00
+2.1020786671957513e+01
+-4.6983257885336073e+01
+-3.0536927435729377e+00
+1.7340669519696867e+01
+-4.5324636971110145e+01
+-3.6689746516679231e+00
+1.7135175560201752e+01
+-4.5039426683517803e+01
+-6.0129283143041667e-02
+-1.0545659792011741e-01
+-2.0772806691927531e+01
+6.5675434699573998e+00
+9.8018826330425082e+00
+-4.5993118602194123e+01
+8.1256118144377290e+00
+1.0143054959769550e+01
+-4.6371756267051992e+01
+7.1201142708181049e+00
+1.0050326770359687e+01
+-4.6342270244179282e+01
+3.8781560796149521e+00
+-3.3272495555912336e+00
+-2.0789622771417765e+01
+4.7631356399154381e+00
+-4.2765419476153879e-02
+-2.1549381938421060e+01
+-8.4354102234174402e+00
+2.9577461958302842e+00
+-3.6683104987504954e+01
+-2.4369608391423410e+00
+4.7652740009149386e-01
+-2.2913955343558843e+01
+-1.1457845830610095e+01
+6.9355309778005758e-01
+-3.3467903411573118e+01
+6.5734012426720181e+00
+2.9722173649641039e+00
+-2.7484417693909666e+01
+-1.1790449213909746e+00
+-4.7177007389147034e+00
+-2.2519696908942151e+01
+-8.8363277744604876e+00
+3.8707365361148329e+00
+-3.8021088381376771e+01
+1.3692474758280687e+01
+8.9073989592569855e+00
+-3.7938668133235915e+01
+6.1512466636063170e+00
+-6.9039607914662415e-01
+-2.2533506159294078e+01
+2.2290086912429610e+00
+8.2990955505391835e+00
+-4.3917828688860368e+01
+3.8770781973014010e+00
+-2.4167740715228097e+00
+-2.0342074455916329e+01
+5.0907242561038890e+00
+-3.4304872585822950e+00
+-2.1888824480537153e+01
+3.4720358529418518e+00
+2.5542947834797540e+00
+-2.1589800974021610e+01
+7.0228536887778392e-01
+-5.8847994035287483e+00
+-2.1475735325581503e+01
+-9.0511556283445371e-02
+-3.2564850234178122e+00
+-2.0631630108866673e+01
+2.2240531975187543e+00
+-4.6018259163526780e+00
+-2.1403685498573090e+01
+-9.8272251330591960e+00
+1.2690519649155421e+01
+-4.4347687298053692e+01
+-9.6152996470339289e+00
+1.3502665591518349e+01
+-4.3148208060445285e+01
+-1.3661230934276601e+01
+1.1141526614807015e+01
+-4.2763686609079592e+01
+-1.9162907958708735e+00
+-1.2538822640118996e+00
+-2.1797168051284778e+01
+-8.8758614020539977e+00
+1.3794877023616582e+01
+-4.3099293186473027e+01
+-5.6196888048598153e+00
+1.2695494894999044e+01
+-4.9660509457371838e+01
+1.5448139036865737e+01
+1.3547417494743044e+01
+-5.0934873883449221e+01
+1.2053122075419478e+00
+3.7429778469723844e+00
+-2.3549209980944045e+01
+-6.8676476484508528e+00
+1.5076194184297668e+01
+-4.5031874552247579e+01
+-4.2573007820210220e+00
+-7.0936649170258805e+00
+-2.2802631869997480e+01
+6.0053529284529548e+00
+5.3691362570638757e-01
+-2.3120000430893391e+01
+-7.7786941667047760e+00
+-2.0737614389954135e+00
+-2.9706951780799891e+01
+-5.6460053215345596e+00
+-7.4021103054669473e+00
+-2.2427334287288208e+01
+-2.6364922922858449e+00
+1.9644535664235516e+00
+-2.4866423792848565e+01
+1.3480955929689440e+01
+9.1859388689739436e+00
+-3.9007486918114004e+01
+-4.9820218312031512e+00
+4.8901821443126092e+00
+-3.9316560100353790e+01
+-1.7474632548388402e+00
+5.2434345892446454e-01
+-2.2608065217169155e+01
+-3.2059671900356128e+00
+8.8032165936940672e+00
+-4.4516649579559669e+01
+9.1009607616064034e+00
+-6.8062859049487647e+00
+-2.3178729137727927e+01
+1.1954615304478272e+01
+-2.8447962964251245e+00
+-2.8635175560988554e+01
+1.3694111169702984e+01
+1.1087607727692503e+00
+-3.0600974766540421e+01
+-5.7016558817838128e+00
+-6.7950873915835199e+00
+-2.3279948941455451e+01
+8.4514949903590946e+00
+9.5272738667159125e+00
+-4.5530288405424571e+01
+-9.9786566833603885e-01
+1.8466966466340948e+00
+-2.2080329317842917e+01
+-6.7241645598364590e+00
+1.5185374653641327e+01
+-4.4341723359275264e+01
+1.3765749544695423e+01
+-1.0077645433608190e-01
+-3.2183979653512374e+01
+-3.1583579170905667e+00
+-7.9772735547657989e+00
+-2.1560328944947280e+01
+-5.8970959271073609e+00
+1.3069224166642048e+01
+-4.9012415738219929e+01
+7.0184886114165250e+00
+1.1966753897223278e+01
+-4.9008098164144357e+01
+1.1747148727568057e+01
+-4.7602319666166055e+00
+-2.5664974962012277e+01
+-2.5913371570507104e+00
+1.1557931628108884e+01
+-4.8280626970133369e+01
+2.6982977001714041e+00
+9.5390229239195184e-02
+-2.0320786583052545e+01
+-2.8477593971672261e+00
+6.1485669764696089e+00
+-4.0970285775638011e+01
+1.8125356333227625e+00
+8.9115165085529284e+00
+-4.4742672726079959e+01
+-3.2413049858617882e+00
+-7.9701350727547355e+00
+-2.1581196333233077e+01
+1.2976815715227254e+01
+-5.9532723704511454e+00
+-2.3885249661347189e+01
+2.5884126470809754e+00
+3.8463587541724892e-01
+-2.0284238087263411e+01
+-1.3770488132498709e+01
+1.1452951411576327e+01
+-4.1940914005744652e+01
+1.2238235651688644e+01
+5.5948251894580343e+00
+-3.1235635448854691e+01
+1.3427976218557992e+01
+1.5993531964859646e+00
+-3.1078987831354368e+01
+2.7926294180899758e-01
+7.7079657212308028e-01
+-2.0660812486583961e+01
+-6.0060171731393941e-01
+-2.4565764733955784e+00
+-2.0333834649453891e+01
+1.7431264789024941e+00
+5.3511715748343969e-01
+-2.0262259541910502e+01
+-1.3794370598022642e+01
+1.0700608215174007e+01
+-4.3738616719927805e+01
+-2.1585121474578603e+01
+2.0233489463741305e+00
+-3.5352533441547145e+01
+-1.2162926363235444e+01
+3.6431189989442054e+00
+-3.7705225373194750e+01
+-1.5143224474482523e+01
+6.1607650087169974e+00
+-4.1229450918480907e+01
+-1.4741004243681601e+01
+5.9369003355830419e+00
+-4.0883430200716710e+01
+-1.2161171120865761e+01
+1.2108176341054197e+01
+-4.1341421503610540e+01
+4.3019482129270283e+00
+4.9961652205101720e-01
+-2.1202972257806930e+01
+-1.4827633286705217e+01
+8.2283432986472267e+00
+-4.3915748511802057e+01
+-1.4657624735706964e+01
+1.2748782074752945e+01
+-3.8825022209882292e+01
+-3.9847676252512096e+00
+-7.3039195772714667e+00
+-2.2515305915644849e+01
+1.3306509382983864e+00
+1.0024984323222443e+00
+-2.0517369327395318e+01
+-9.4297293775046409e+00
+1.1366275033523394e+01
+-4.5576297314566411e+01
+-1.4483006854125176e+01
+1.1275594995635240e+01
+-4.2766041147024083e+01
+-1.1884332437641201e+00
+1.7716973795981691e+01
+-4.6925794623877955e+01
+6.2816698309889318e+00
+1.9965138102652375e+01
+-5.1245752789280772e+01
+-8.8478420772551711e+00
+1.2458060041552187e+01
+-4.6648837145398595e+01
+-8.9454457196292019e+00
+1.5186762522223308e+01
+-4.1385357711597486e+01
+-1.3482977408361990e+01
+1.3102589510412407e+01
+-3.9491389657543337e+01
+-1.9104224520572024e+00
+1.7283442815798828e+01
+-4.6574484448999215e+01
+-6.6241509822984312e+00
+1.5191159220755843e+01
+-4.4588253362257667e+01
+-1.1025435119567764e+01
+1.1186071969790179e+00
+-3.4184006082766984e+01
+-1.2783095591157368e+01
+3.7362543260170455e+00
+-3.7754841064507637e+01
+-4.6494766802454972e+00
+-8.3448839806655268e+00
+-2.1159063607486427e+01
+-5.1135975924506907e+00
+-7.2108233773392412e+00
+-2.2730855102802384e+01
+7.0462269282273160e-01
+2.0209521361677307e+00
+-2.1019574589001625e+01
+-2.3189376223554903e+00
+1.9746151452599445e+00
+-2.4839018202763711e+01
+3.1293427362923127e+00
+-5.7800507810134662e-02
+-2.0452363373100461e+01
+-1.3767620182819678e+00
+-1.2230657606080184e+00
+-2.1375254017225835e+01
+4.7071200681504939e+00
+-3.3927256097821146e+00
+-2.1441144362780445e+01
+7.0468020651589010e+00
+8.8715868973808281e+00
+-4.4727796520925807e+01
+-6.2006455372718596e+00
+8.1781619271202537e+00
+-4.3959747366131438e+01
+-6.4413527706713296e+00
+7.7807018010377282e+00
+-4.3368120932350621e+01
+3.7907491866147929e+00
+2.9711091475679390e+00
+-2.2197026629180748e+01
+1.8165167807964995e+00
+1.7012811349399253e+00
+-2.0554900343998703e+01
+2.8143618442843152e+00
+1.4083824116356427e+00
+-2.0598846103362156e+01
+2.8143618442843152e+00
+1.4083824116356427e+00
+-2.0598846103362156e+01
+5.8420819289822443e+00
+3.0184894850774963e-01
+-2.2788441511525502e+01
+5.6389595563487251e+00
+1.1506678040674298e-01
+-2.2557738729982660e+01
+2.9697397983264966e+00
+1.9400949333154127e-01
+-2.0403013477947777e+01
+-2.6071344491918911e+00
+6.5582615902742544e-02
+-2.2980173271766088e+01
+2.8409093192472734e+00
+-5.5866965062148111e-01
+-2.0433477952218610e+01
+1.7484676740424798e-01
+-1.4783870494991853e+00
+-2.0469099988341714e+01
+1.6269765837171646e+00
+-3.1091765071124864e+00
+-1.9871715809820692e+01
+1.2971850704607334e+01
+-4.6579633730241294e+00
+-2.5865402372689147e+01
+-4.4729422723867174e+00
+8.7073157672146770e+00
+-4.4532024552697202e+01
+1.0138809191671466e+01
+7.4999793560835837e+00
+-4.2585679579025040e+01
+-6.2395595131352737e+00
+8.4416889250725067e+00
+-4.4093814476693453e+01
+9.4821318878765872e+00
+7.3211742780955991e+00
+-4.2409296679208438e+01
+8.6701040023510334e+00
+7.1192107167012484e+00
+-4.2325672824140952e+01
+8.5939477691628792e+00
+6.8640105369900750e+00
+-4.2031139422960905e+01
+1.3655685554673713e+00
+3.9536305772341054e+00
+-2.3546802598987433e+01
+3.8858180090633563e+00
+2.4195022338703098e+00
+-2.1723123613647790e+01
+-1.3515528307581096e+01
+3.6806507905208679e+00
+-3.7649149212607412e+01
+7.3375691143638022e+00
+1.3286184921222470e+00
+-2.5340740617615513e+01
+-2.4870539453206195e+00
+1.7435077165826065e+00
+-2.4585378826866435e+01
+2.7984883855221230e+00
+-9.5117519434423536e-01
+-2.0629527074194467e+01
+2.2795325659880250e+00
+-1.6029990296751442e+00
+-2.0282893448578744e+01
+4.6127383409049587e+00
+-3.2731184580232897e+00
+-2.1233562180379607e+01
+-4.1667257004975395e+00
+-6.8186284011463876e+00
+-2.3168986961068541e+01
+-7.7503949417709928e+00
+-8.0093739554911902e+00
+-2.1465976232517647e+01
+1.6367103874045124e+00
+3.9389764875998137e+00
+-2.3668715296667827e+01
+4.3392592123787903e+00
+1.7294508912959574e+00
+-2.1585575119878243e+01
+4.4219430593577513e+00
+-1.1709717716903294e+00
+-2.0978315114975242e+01
+6.3786473938186272e-01
+-1.2492933694359940e+00
+-2.0653373251767643e+01
+3.6878653873270353e+00
+-2.3330088203828989e+00
+-2.0450295951087984e+01
+1.4002251414481723e+00
+-2.6007713227748499e+00
+-2.0093351098235750e+01
+9.2397736680631866e+00
+-5.5559358433653552e+00
+-2.4800300956783612e+01
+-5.1999721957842278e+00
+-6.6945179554823797e+00
+-2.3514339729344091e+01
+3.6268843240026740e+00
+2.8642571721949164e+00
+-2.1920247576869329e+01
+-3.2819515127879817e+00
+1.9830171901982085e+00
+-2.6043549577199148e+01
+3.7498437027066274e+00
+1.2600540169261392e+00
+-2.0922930089986259e+01
+2.7517916249802536e+00
+-1.4816335085928889e+00
+-2.0511499491194861e+01
+1.8289279610115259e+00
+-1.6176774454393008e+00
+-2.0233311327316514e+01
+-2.6489042662753297e+00
+-7.8851675160025341e+00
+-2.1658319535836199e+01
+-7.3380831224305645e+00
+1.8804254505589704e+00
+-3.5140126178357932e+01
+1.2249195619893634e+01
+-5.3953739043230087e+00
+-2.4889907338297043e+01
+-4.9240294050039273e+00
+-6.8385701807916002e+00
+-2.3261053800525165e+01
+4.9426899716824577e+00
+1.5453485318439111e+00
+-2.2115887617445679e+01
+-7.2424659097971817e+00
+1.5750799942693356e+00
+-3.4667511848275019e+01
+-3.9342723607933281e+00
+-8.2961425318029693e+00
+-2.1196728861871133e+01
+6.9020526297379243e+00
+-3.4985239180583472e+00
+-2.4253183404799671e+01
+-2.3810826688249342e+00
+-7.8806326106166731e+00
+-2.1747900336311847e+01
+6.0818042940017829e+00
+-3.1925346300741553e+00
+-2.3087526744060323e+01
+-6.8346732215421735e+00
+-8.0625102492182990e+00
+-2.1481945114021922e+01
+2.5985348316190264e+00
+1.7659444485767889e-01
+-2.0265949149250687e+01
+-1.0583641665714847e+01
+1.0599693971548660e+00
+-3.3867915290303820e+01
+-9.5741169557357768e+00
+-1.5420601285331104e+00
+-3.0472190543742670e+01
+1.3402946553796841e+01
+2.7886037378806265e+00
+-2.9005333948913961e+01
+7.2186868587101047e+00
+1.8695437053646349e-01
+-2.3777370332732524e+01
+1.4922463356954667e+00
+-2.4172942572729577e+00
+-2.0303975236499639e+01
+1.0117170413749994e+01
+7.3544710111727793e+00
+-4.2558801690407449e+01
+5.7610865414361294e+00
+-3.8936759227885003e+00
+-2.3195235150042556e+01
+9.5631096186819970e+00
+-6.3036771419760580e+00
+-2.3772597700786111e+01
+4.4908948046879518e+00
+-2.8813764375712250e+00
+-2.0758575546875488e+01
+-3.9361372486445143e+00
+-2.1421597253211471e+00
+-2.5689943994318877e+01
+-9.1761325919379129e+00
+-2.4994604828059064e+00
+-2.9186721897380583e+01
+-2.7707200417637403e+00
+-1.3297628566354898e+00
+-2.1671648103940463e+01
+-1.5912965265233041e+00
+-2.0673936683673722e+00
+-2.0768406800849913e+01
+2.4990073639295538e+00
+-6.6415222760856540e-01
+-2.0369795757221549e+01
+8.2702488145531241e+00
+1.8951087857880854e+01
+-5.6399938266504506e+01
+-1.1156064710167060e+01
+1.0778368420347997e+00
+-3.4187255929727357e+01
+1.7074319586347395e+00
+-2.7423349211503290e+00
+-1.9944827858555282e+01
+-2.3321669734801984e-01
+-3.8841114679645474e+00
+-2.1407409877620697e+01
+-1.4059979597659568e-03
+-3.6226474349835134e+00
+-2.1021009231604392e+01
+3.0746525545800347e+00
+-2.9364578280295124e+00
+-1.9695545262083517e+01
+-1.6389089264323780e+00
+-8.5328681966136415e+00
+-2.0826261293605569e+01
+-1.7905396096571056e+00
+-8.3624284471635040e+00
+-2.1119579611064644e+01
+9.6032326317114269e-01
+2.0097446436702544e+01
+-4.5853137495288507e+01
+-1.5558291864869235e+01
+1.1983103654873444e+00
+-3.4396989113103658e+01
+7.2905071705829649e-01
+3.5356937489200293e+00
+-2.3065450739131425e+01
+1.0573739182705459e+00
+9.4226216510890259e-01
+-2.0380914756852775e+01
+1.4373799947943595e+00
+-3.2026095125695819e-01
+-2.0252409276173044e+01
+1.5671594826432289e+00
+-5.4312915879496371e-01
+-2.0350245614359572e+01
+1.6087106537978630e+00
+-7.7669219614530549e-02
+-2.0237188834057147e+01
+-1.6327563694228906e+00
+1.8224479937967082e+01
+-4.5844453269269181e+01
+1.2125327792526102e+01
+7.0100100754055541e+00
+-2.8959327837185970e+01
+3.0934454494768842e+00
+7.3688426835952014e-01
+-2.0448268702371834e+01
+8.6295164056277773e-01
+1.2049470698409488e+00
+-2.0532192359107171e+01
+-2.4547109937522889e+00
+2.0591214928144135e+00
+-2.5009940223143150e+01
+1.6112613556699554e+01
+2.2145001508279986e+01
+-6.0295752031787337e+01
+9.3541750446283753e+00
+2.1022897013363583e+01
+-5.4599454734171267e+01
+6.0194096550787526e+00
+2.2045789182582414e+01
+-4.8816980618352424e+01
+-1.2117676932916217e+00
+-2.5339761932365451e-01
+-2.1865991027648928e+01
+2.6565437531227465e-01
+2.8416522643592718e-01
+-2.0546644409072155e+01
+1.3890455887521582e+00
+8.7072417161153792e-01
+-2.0325068731854152e+01
+7.0627193655566334e-01
+5.7340354918629854e-01
+-2.0437349713829335e+01
+-9.5016158852580208e+00
+1.3702940800209173e+01
+-4.2330534803248270e+01
+-9.5790037948036879e+00
+1.3948974926760785e+01
+-4.1843764623776053e+01
+4.4922603120029443e+00
+2.0625986395096704e-01
+-2.1296578829158658e+01
+4.0607085912116263e+00
+1.4485319846225984e+00
+-2.1237510288903941e+01
+4.7971355961794133e+00
+5.5020647681068147e-01
+-2.1571189001410325e+01
+5.1228400161893717e+00
+-1.7786243066288789e+00
+-2.1162812444570520e+01
+3.5812394319487204e+00
+-4.4559578488195264e+00
+-2.1771686666175288e+01
+4.7515432258584385e+00
+1.3448766274672048e+00
+-2.1708317921470805e+01
+4.4770264840158474e+00
+1.3855932134149314e+00
+-2.1461809615237382e+01
+4.7182456940075808e+00
+1.7190572430987987e+00
+-2.1977203164248156e+01
+4.1595425733648126e+00
+-2.6175398438109636e+00
+-2.0298770158845517e+01
+3.6336371825825577e+00
+1.5169633211058033e+00
+-2.1047258283407619e+01
+2.3700679777990343e+00
+1.5126884863788677e+00
+-2.0487482618102916e+01
+2.1532053422120487e+00
+8.5687845055179956e-01
+-2.0266240211217159e+01
+-6.7717340290337402e+00
+1.4208932724183214e+01
+-4.5838361300920404e+01
+4.2707302666584450e+00
+1.7111039223773798e+01
+-5.4845667523981305e+01
+1.3588655811760514e+01
+-4.9375351815360968e-01
+-3.1719738030771278e+01
+5.0559398149647077e+00
+-4.8892387466852810e-01
+-2.1779574557119773e+01
+-1.6646250519468329e+00
+-1.6122458918344185e+00
+-2.1360542223520635e+01
+-2.3350199732663537e-01
+1.7377648846329262e+01
+-4.9072654774475730e+01
+-2.3350199732663537e-01
+1.7377648846329262e+01
+-4.9072654774475730e+01
+1.3074994120512086e+01
+1.0141723636749211e+01
+-4.0137062994296492e+01
+3.8905272979080050e+00
+1.6958550356465469e+01
+-5.4338300668854821e+01
+8.1300753451674286e+00
+9.1173570038926677e+00
+-4.4885306825947609e+01
+9.7052881581139410e+00
+8.5250122170456795e+00
+-4.4130122756142910e+01
+1.2920004232845582e+01
+2.8434371310636157e+00
+-3.2234317233323559e+01
+1.3254423714273099e+01
+2.2075959403683805e+00
+-3.1120583295701337e+01
+1.2901447053146089e+01
+2.4698932576880894e+00
+-3.2583295978683978e+01
+1.3644160450205774e+01
+1.0487348989063188e+00
+-3.0614913485887097e+01
+1.2981755000252003e+01
+-3.9198611601469119e-01
+-3.2077263243938425e+01
+2.4487615809207592e+00
+4.2008182231395769e-01
+-2.0312191722826810e+01
+1.4720241773669972e+01
+-2.1034837278707896e+00
+-2.9418853003148882e+01
+1.4751983206494888e+01
+-2.1634974439618353e+00
+-2.9318086660813115e+01
+2.0806503781208865e+00
+1.2966381610171135e-02
+-2.0184958448575696e+01
+6.0579541780589059e+00
+-1.0832773646711207e+00
+-2.2103182656408141e+01
+-7.7846478109476702e-01
+3.5764194170891012e-01
+-2.1374785450059310e+01
+5.3017022697528429e+00
+-1.6968602225142941e+00
+-2.1258200444470358e+01
+5.0683439475033332e+00
+-1.7119558651343372e+00
+-2.1255751794675007e+01
+4.6055023067344472e+00
+-2.2093265247858698e+00
+-2.0635129043170579e+01
+-6.3993484541630541e-01
+-1.1884561705350185e+00
+-2.0842597677044346e+01
+-6.6164120766217360e-01
+-1.2431961905985567e+00
+-2.0812029987427948e+01
+1.3467230955678541e-01
+-1.5029115577206122e+00
+-2.0336870155324267e+01
+1.1291736499004887e+01
+-4.9632901583347850e+00
+-2.5552664254600703e+01
+9.4204119332303655e+00
+-5.9200608330730642e+00
+-2.4325967343633597e+01
+6.8298438400508195e+00
+-7.4967418173781288e+00
+-2.2195391387257910e+01
+1.7801684268540907e+00
+-8.4017500514607306e+00
+-2.1018665427888038e+01
+-2.1215465841383949e+00
+-7.7600215600413947e+00
+-2.1869382178137894e+01
+-4.5494650695727730e+00
+-7.5744785157150218e+00
+-2.2239526373048111e+01
+4.3750533895912307e+00
+1.7275082317132604e+01
+-5.4200789014720677e+01
+1.5702984216021614e+01
+1.3773291058593053e+01
+-5.1389913628400052e+01
+1.3234638468490656e+01
+1.2232629871719720e+01
+-4.9485515052503033e+01
+1.2482623933878640e+01
+5.3607201575764076e+00
+-3.0022827503093552e+01
+-3.4184613548921252e+00
+8.9669897258457798e+00
+-4.4814869464311180e+01
+-9.5228941852565185e+00
+3.0719624842421331e+00
+-3.6852293025639661e+01
+1.4037271964976998e+01
+-4.7564604613199295e+00
+-2.5586855085326356e+01
+1.3330185514088836e+01
+-5.0789749035031981e+00
+-2.5285409226220217e+01
+1.0831825844107293e+01
+-5.5595940347418971e+00
+-2.4758305919015548e+01
+-4.6388530073373813e-01
+-3.3624513847596411e+00
+-2.1019612750684779e+01
+-5.1841019241029418e+00
+-6.8445217870814545e+00
+-2.3170714741687895e+01
+-3.8106854965461436e+00
+1.6115708125579406e+01
+-4.5909307096909593e+01
+2.9509649622990847e-01
+1.6694341717357233e+01
+-5.0303640895946231e+01
+1.2565127620271104e+01
+5.2653971921044578e+00
+-2.9591261987068648e+01
+1.3090694132589773e+01
+2.4292064114567440e+00
+-3.1923290952874446e+01
+-6.8155839689861928e+00
+1.9187131837735905e+00
+-3.5210808514420940e+01
+2.6834333210198538e+00
+-1.6035770509852003e+00
+-2.0260476059015847e+01
+-2.6841679776126255e+00
+-9.0995600567550317e-01
+-2.2363893208978826e+01
+-1.3813166059977153e+00
+-1.7858427700351711e+00
+-2.1115645163425988e+01
+8.9114089131542080e+00
+-6.1776806235558341e+00
+-2.4164498892551865e+01
+1.2373296692959639e+00
+-8.5637632712920428e+00
+-2.0830571884922854e+01
+4.1319596795644182e+00
+1.7247324508858696e+01
+-5.3522888781268115e+01
+1.0551429719169353e-01
+2.6683555277063964e+00
+-2.1862678505995888e+01
+9.1958488290482094e+00
+-6.0415510592301507e+00
+-2.4259254475547184e+01
+1.0024471612096043e+01
+9.3136391605843762e+00
+-4.5162917759252124e+01
+-2.8970323868777292e+00
+6.8744599838086771e+00
+-4.2096913696156697e+01
+9.6987367655323240e+00
+-6.3427248807693966e+00
+-2.3680777930485707e+01
+1.2112388603503071e+01
+-5.1014303436648456e+00
+-2.5340168456879550e+01
+-4.8008160901380439e+00
+-7.3719328148621637e+00
+-2.2402221109158226e+01
+1.1360970063239758e+01
+-5.4101940594776758e+00
+-2.4886219055065439e+01
+1.1340594794857173e+01
+-5.5270711722227288e+00
+-2.4384408287832173e+01
+9.1756907719074228e+00
+-5.8160178497520718e+00
+-2.4436832167520006e+01
+-4.5447684876437426e+00
+-7.1866750120682923e+00
+-2.2659838784482538e+01
+1.3241327859265308e+01
+1.0843490733523322e+00
+-3.3411711232599288e+01
+3.0261763502878796e+00
+-1.1552762815255695e+00
+-2.0749405063891214e+01
+9.1958488290482094e+00
+-6.0415510592301507e+00
+-2.4259254475547184e+01
+-8.2688831879144420e+00
+1.4954335268843998e+01
+-4.2738883521090457e+01
+1.7201984464123254e-01
+-2.6041462561776108e+00
+-2.0116958335114564e+01
+1.3575872296462538e+01
+9.7526354821616703e+00
+-3.7462867405973064e+01
+-7.3609015844059753e-02
+1.1218204321455885e+00
+-2.0977395960112666e+01
+-2.5670275867506369e+00
+-7.7471686432529463e+00
+-2.2068972834458751e+01
+7.7990148874748284e+00
+1.3064267051355261e+01
+-5.0377666632712170e+01
+1.7421293221392851e+00
+-1.4445970486609405e+00
+-2.0487972236737924e+01
+1.8336451610868783e+00
+1.0115605411207760e+01
+-4.6347147329108189e+01
+6.6263264363190215e+00
+-1.4004071799677922e+00
+-2.1838352836851222e+01
+1.2965020782860803e+01
+-5.1679134048068907e+00
+-2.5242018729775701e+01
+8.7477548007662982e+00
+-6.5571096636253738e+00
+-2.3454353830912755e+01
+-2.6567737745759263e+00
+-7.9185152339059810e+00
+-2.1643416740253489e+01
+-1.8902530359096539e+00
+-7.9716777562598544e+00
+-2.1548342465766488e+01
+-3.2720465669528980e+00
+-7.8087149348086600e+00
+-2.1921273895876830e+01
+-3.8800374914954676e+00
+-7.7620207504243348e+00
+-2.1946667427408904e+01
+-1.0755811680142675e+00
+-6.2882086512111393e+00
+-2.2770178359045584e+01
+1.0082832398324955e+01
+8.5794082891248689e+00
+-4.4315444479760799e+01
+6.0644338124384389e-01
+-2.0698249751421263e+00
+-2.0443376421380666e+01
+-4.5770193651562707e-02
+-5.8612662473963273e-01
+-2.0876738526720192e+01
+1.3636773675309954e+01
+-5.2074012664223064e+00
+-2.4908572502997963e+01
+1.8422734666417382e+00
+-6.5310694725324669e+00
+-2.2099265812805047e+01
+-5.1521651745754644e+00
+-7.1829776653800437e+00
+-2.2728540882551471e+01
+-7.4124833717421250e+00
+-3.6235876768029782e+00
+-2.7670923071328655e+01
+-1.3148968325296350e+01
+1.1293361929866478e+01
+-4.1965154715635705e+01
+4.7199507389063005e+00
+1.7927909101439408e+01
+-5.3508306124460383e+01
+5.0216811694770982e+00
+1.9572590609266015e+01
+-4.8735149704944945e+01
+1.0459908414620918e+01
+2.1254460579930779e+01
+-5.4987229601143881e+01
+1.2127752392012761e+01
+2.3718850786729980e+01
+-5.3166124459759388e+01
+1.3398543415242383e+01
+2.2697283426784811e+01
+-5.5185815929659448e+01
+1.0459908414620918e+01
+2.1254460579930779e+01
+-5.4987229601143881e+01
+5.2643207601659174e+00
+1.0793017471341821e+00
+-2.2343996010499218e+01
+3.5810060861005568e+00
+-1.3489041929395440e+00
+-2.0654733339576239e+01
+3.3315415160490955e+00
+-1.4249408843788289e+00
+-2.0550049008232325e+01
+1.0688058270567971e+01
+2.3405333563411666e+01
+-5.1930690930965135e+01
+-3.1888251847986524e+00
+-8.1522843577183846e+00
+-2.1274618432727166e+01
+-3.8520289213613865e+00
+1.5293539617649040e+01
+-4.8217265343203422e+01
+1.3795419147185514e+01
+2.4226909784231896e+01
+-5.3889378612289612e+01
+1.3604395562837881e+01
+2.3717494745481044e+01
+-5.4947852121109385e+01
+1.3016634523775164e+01
+1.1086944873255128e+01
+-3.9053211680809724e+01
+1.3401737749690481e+01
+2.3252338685731533e+00
+-2.9570874176860869e+01
+-5.2430620530819727e+00
+1.3512149789171609e+01
+-4.9141140270665325e+01
+2.8850253723045167e+00
+2.0467596134259139e+01
+-4.7345654866769685e+01
+-3.5155938380680971e+00
+-7.8439386409534286e+00
+-2.1772118739485418e+01
+1.7188387159442271e+00
+-4.5970492355298207e+00
+-2.1507698847726736e+01
+9.0619567519613256e+00
+2.0137239748606206e+01
+-5.4398809705958335e+01
+-5.0765676052208661e+00
+1.3130052016948667e+01
+-4.9623960187263577e+01
+2.9509649622990847e-01
+1.6694341717357233e+01
+-5.0303640895946231e+01
+-3.9325543200142734e+00
+-8.0792330465333695e+00
+-2.1488374786935740e+01
+-4.1211884501049747e+00
+-7.1309348509941035e+00
+-2.2736302594985368e+01
+-2.3896410950441354e+00
+-7.8710324570094246e+00
+-2.1891956967647328e+01
+1.4532332739811814e+01
+-1.3754122372892181e+00
+-2.9593181130309333e+01
+-3.5206931106924451e+00
+-7.5521274189441554e+00
+-2.2228185411536973e+01
+-3.4484139973593457e+00
+-7.6223724600207685e+00
+-2.1938068448746129e+01
+1.3123926552757760e+01
+7.8609914680572979e-01
+-3.3245992999994343e+01
+-2.2468495570283813e+00
+6.6215984778381953e+00
+-4.1560200591101527e+01
+-2.2530693478889670e+00
+2.5205069582080362e+00
+-2.5550487380484011e+01
+1.3415511271328254e+01
+5.7968218041974384e-01
+-3.3183742073141985e+01
+1.2540946421603815e+01
+3.7336969182725825e+00
+-3.2675047077358215e+01
+-1.6141595518879715e+01
+1.0768800638748580e+01
+-3.9895442616072359e+01
+5.8875002566088863e+00
+2.0660319538673871e+01
+-5.0598957906260168e+01
+9.6779741323769048e+00
+2.0960020912009089e+01
+-5.4237856064597075e+01
+1.6203922804342195e+01
+1.5393959642036725e+01
+-5.3575282640153588e+01
+1.3902785637012597e+01
+1.3771707762905050e+01
+-5.0985736979929783e+01
+7.5750938059485673e+00
+1.2449795300760014e+01
+-4.9522481933403142e+01
+8.9265336901164272e+00
+1.0322628800627824e+01
+-4.6710651151426831e+01
+1.7574797741607071e+01
+2.3187689194625388e+01
+-6.0342916848239341e+01
+7.8919497276348185e+00
+9.4562519710547353e+00
+-4.5279674907609589e+01
+8.9020006170488077e+00
+2.1274144773379149e+01
+-5.3528949608907979e+01
+6.2816698309889318e+00
+1.9965138102652375e+01
+-5.1245752789280772e+01
+8.7654227238710192e+00
+1.4335099566335485e+01
+-5.2588722608192910e+01
+-6.9013895978043251e+00
+1.3721651255813381e+01
+-4.6321649729185083e+01
+1.1146870571841401e+01
+1.5302236470937634e+01
+-5.3256997759953087e+01
+7.6465738085189585e+00
+1.4185331909846619e+01
+-5.2070299568846060e+01
+8.6838952717524052e+00
+2.0759216771378274e+01
+-5.4004020428912931e+01
+7.5991289749357316e+00
+1.3786586011200015e+01
+-5.1315102312705370e+01
+-7.8439085102441899e+00
+1.5718766461346533e+01
+-4.1716024316519942e+01
+-1.5001530092220239e+01
+1.1246708621757534e+01
+-4.3183652392733727e+01
+-1.4211090328488286e+01
+1.1064749971329103e+01
+-4.4334933802432587e+01
+7.3440068648344363e+00
+2.2377478343052566e+01
+-4.9805564337812143e+01
+4.9121864869187970e+00
+-2.3584338474192315e+00
+-2.0561134481922817e+01
+-3.4923846756181325e+00
+-7.4428956535370139e+00
+-2.2381699687998708e+01
+-5.0698834664306727e+00
+-6.6440391124614830e+00
+-2.3445057909264548e+01
+6.4246942550452601e-01
+1.1619986696847466e+00
+-2.0554994777610464e+01
+4.9589212072315529e+00
+1.6662637793696225e-01
+-2.1790086717923398e+01
+4.8440771571618519e+00
+2.4925514100704511e+00
+-2.2823735439542386e+01
+1.3341397295348608e+01
+1.0134577055600120e+00
+-3.3271178874414503e+01
+6.5361784577199611e+00
+-3.4626701765136358e+00
+-2.4144596364610933e+01
+-1.3361167711606330e+00
+-1.8558922634950166e+00
+-2.1090636391173721e+01
+-1.4668878692738284e+01
+5.8066662914402780e+00
+-4.0656581715312569e+01
+1.0775363735527039e+01
+-5.5348276994506307e+00
+-2.4779990291308266e+01
+3.2164999927485565e+00
+1.3391803828279458e+00
+-2.0735006045563360e+01
+4.7324092734453558e+00
+1.7294313842273549e+01
+-5.4480309882556320e+01
+5.0779686504154604e+00
+-4.6082043705573259e+00
+-2.2683415214164093e+01
+-3.4651185954234238e+00
+1.6204607280940748e+00
+-2.5640373547818090e+01
+1.3960844457275631e+01
+8.3716766782648140e+00
+-3.8346309805916242e+01
+-7.2074105030114577e+00
+-1.7576307166597287e+00
+-3.0184650376862965e+01
+1.3288159283509140e+01
+9.7129166397516120e-01
+-3.3278793826515162e+01
+1.2494821796850221e+01
+-5.9661243463329940e+00
+-2.3903482215017952e+01
+3.0891577179401861e+00
+-2.8559746025746358e+00
+-1.9789676115969812e+01
+7.9610384168061552e+00
+1.5286197642627915e+01
+-5.3508523884631678e+01
+5.0165834183183211e+00
+-2.4359993206648607e+00
+-2.0472949971648433e+01
+1.0541036965222534e+00
+1.7899376705307293e+00
+-2.0697152213112027e+01
+8.1221870610085389e+00
+-7.0038673607467281e+00
+-2.2876803877693362e+01
+-7.4232461177167250e+00
+1.4027648533200518e+01
+-4.5139678002164580e+01
+4.3132707596949960e+00
+-3.3268207967483785e+00
+-2.1084409551225615e+01
+-8.8346182445592198e+00
+1.4113701503329308e+01
+-4.3121965354600277e+01
+6.2527844700167909e+00
+-1.2223162913987793e+00
+-2.1912901975491980e+01
+1.1677671768044068e+01
+-5.2251625609460435e+00
+-2.5306544048478226e+01
+1.0369575993179247e+00
+1.4993192563436568e+00
+-2.0633679751955924e+01
+8.0782957954953130e+00
+1.4491692117730951e+01
+-5.2308653359782177e+01
+1.3288159283509140e+01
+9.7129166397516120e-01
+-3.3278793826515162e+01
+6.0586123746078986e+00
+-2.3706474189937867e+00
+-2.2137177186527342e+01
+3.7491917559821388e+00
+2.3738979404838760e+00
+-2.1582846893306439e+01
+-7.5035621525000460e+00
+-2.1085569984469554e+00
+-2.9649371537126690e+01
+4.2281463440261158e+00
+-3.4030638060765610e+00
+-2.1104090474541920e+01
+9.7550334186326293e-01
+6.0269025096775286e-02
+-2.0316338453583551e+01
+-2.2962347506280998e+00
+2.8205135844035287e+00
+-2.5910532213363009e+01
+-8.6013848964721724e+00
+-2.5514346923987348e+00
+-2.9212302487833309e+01
+1.1382971053956004e+01
+-5.6974422263045037e+00
+-2.4585109399219458e+01
+1.3269233032200718e+01
+2.9553119763895843e+00
+-2.9637377880478347e+01
+1.1782340923204877e+01
+-5.7774419002296602e+00
+-2.4544956923281447e+01
+-5.7599429935042625e+00
+5.7135415500048605e+00
+-4.0287194105117813e+01
+-4.0636373342045857e+00
+-7.0616651756074438e+00
+-2.2916908874392497e+01
+1.3261062303404104e+01
+1.1564767499835703e+01
+-3.6036661447410737e+01
+1.3061174501071331e+01
+1.4598054238519627e+00
+-3.3870708103048749e+01
+1.3311119754051596e+01
+1.0779540150294519e+01
+-3.7390052261729544e+01
+1.2644338102084840e+00
+-2.6608894775322263e+00
+-2.0024549508842831e+01
+5.3194977732616957e+00
+3.8200328816351409e-01
+-2.2362857287750401e+01
+2.9923113525813205e+00
+-4.7088687096431556e+00
+-2.1622542963382017e+01
+9.4583123248877243e-01
+1.0950245381257064e+00
+-2.0463754633962946e+01
+1.1427181833981259e+00
+3.8321936452028291e+00
+-2.3968840948463242e+01
+1.1905909679712499e+01
+-6.1755491676394412e+00
+-2.3682751524194082e+01
+-3.6500004804526665e+00
+-7.6725717325930294e+00
+-2.2045946835516791e+01
+1.2970332452232217e+01
+3.4059446761016878e+00
+-3.0802356648816961e+01
+8.0284724057902923e-01
+7.6093637469471567e+00
+-4.2991625929080762e+01
+-1.2810836427783839e+01
+3.6031563316082029e+00
+-3.7617458270301661e+01
+4.5450002643540950e+00
+5.9169320790784896e-01
+-2.1335319549537036e+01
+4.5022941582775573e+00
+-3.7848996436998505e-01
+-2.1479908229212597e+01
+1.6741005114413248e+00
+3.1077215655059733e+00
+-2.2112269188064012e+01
+4.8440771571618519e+00
+2.4925514100704511e+00
+-2.2823735439542386e+01
+3.2205827386141168e+00
+-2.8132060028080939e+00
+-1.9970568241941304e+01
+3.5418830114080442e+00
+-4.3625833597562487e+00
+-2.1620816016394699e+01
+-4.5520324737979472e+00
+-7.0165757582644455e+00
+-2.3044983374893246e+01
+8.3372543832339763e-01
+-8.2890715975845797e-01
+-2.0540502282571602e+01
+1.2986006420666543e+01
+1.0430294665196289e+01
+-4.0249458607200808e+01
+-4.0636373342045857e+00
+-7.0616651756074438e+00
+-2.2916908874392497e+01
+-1.1059615021393854e+00
+3.0830234804149010e+00
+-2.3446712629004050e+01
+9.5445989261343644e-01
+1.5215146430849043e+00
+-2.0658155327176594e+01
+2.2444555101487311e+00
+1.2060299511851225e+00
+-2.0351857743603020e+01
+4.5339899866827889e+00
+-4.2341460669150548e+00
+-2.2151273239457669e+01
+-3.6253568407289674e+00
+-7.7449791966312116e+00
+-2.1930341870669235e+01
+2.7582264699898378e+00
+1.1025965713371182e+00
+-2.0399790491234633e+01
+4.5863904164629679e+00
+-4.6351742910077327e+00
+-2.2594756035593299e+01
+-4.7497346310300754e+00
+-7.0828462539460819e+00
+-2.2980294834771886e+01
+-2.9345424021358237e+00
+-1.2930469520963324e+00
+-2.1913971354518996e+01
+-5.8128556633532549e+00
+5.6244403030194814e+00
+-4.0241219519016376e+01
+-2.4334974815440771e+00
+-7.8369718364023182e+00
+-2.1810317971276724e+01
+-2.6685806131129062e+00
+2.0662340523714318e+00
+-2.4979665441510438e+01
+-3.7162770377250931e+00
+6.7448206160164392e-01
+-2.4307704934898357e+01
+-3.6144029473993271e+00
+-6.3015145719822516e-02
+-2.3245400294703725e+01
+2.4989041616442447e+00
+1.7939117067068691e+00
+-2.0648706237333663e+01
+-6.4288188187438655e-01
+2.0217218401356809e+00
+-2.1835602695482940e+01
+4.9562786665158720e+00
+-1.9537932184273366e+00
+-2.0931759525275019e+01
+-3.2936924747002170e+00
+-7.7203689966365516e+00
+-2.1867679612719744e+01
+4.2051574002773791e+00
+1.4507127979323684e+00
+-2.1371721044279806e+01
+1.4563392357249339e-02
+1.2843143707876332e+00
+-2.0933064205452023e+01
+-1.2539192481779526e+01
+3.8367977983916157e+00
+-3.7951709536214928e+01
+3.9960047836876660e+00
+1.3747927635331618e+00
+-2.1160576477049919e+01
+6.4611603947262655e+00
+-7.4267674976254110e+00
+-2.2245413678137584e+01
+9.4299369613006778e+00
+2.0870759524417359e+01
+-5.4495330862345646e+01
+9.4299369613006778e+00
+2.0870759524417359e+01
+-5.4495330862345646e+01
+9.3127342620831755e+00
+2.0522094657635535e+01
+-5.4879711503794553e+01
+1.7007203029444820e+01
+2.2578077632762266e+01
+-6.0867568676263893e+01
+5.1451905393241404e+00
+1.8845209990544497e+01
+-5.1835535897730850e+01
+8.8913093120529219e+00
+1.9270786464918480e+01
+-5.6885318091561921e+01
+-1.5039661991627598e+01
+1.1273587067733951e+01
+-4.2985596234079033e+01
+-7.5395144527654345e-01
+3.3501137185788883e+00
+-2.3384572597956062e+01
+-2.5603269710758441e+00
+7.5858542351667713e-01
+-2.3282074778934813e+01
+1.3932493952328981e+01
+3.5152244513554354e-01
+-3.0340285316275221e+01
+4.3153423694316322e+00
+-2.3159185695319877e+00
+-2.0497209025799545e+01
+1.2556974703592566e+01
+-4.2573453784071500e+00
+-2.6436392667533497e+01
+1.2931879279996854e+01
+-5.8763819111330919e+00
+-2.3974060638931732e+01
+6.0905487980606035e+00
+1.9743390358655681e+01
+-5.2277796459002964e+01
+1.7008469229551775e+01
+2.2992161200073305e+01
+-6.0100440306077992e+01
+-2.1180907472054646e+00
+1.7064982602272647e+01
+-4.6346036522711778e+01
+-3.3842270313225264e-01
+1.7415240224514378e+01
+-4.8442402498681183e+01
+8.0805906793066029e+00
+1.9398369157596427e+01
+-5.5206671426368644e+01
+3.6740585078484043e+00
+1.8036945283479014e+01
+-5.2282683390501866e+01
+8.6400010907954581e+00
+1.8400650061396664e+01
+-5.7368438763753183e+01
+1.5879006045501680e+00
+7.8687143122261070e+00
+-4.3402076516036530e+01
+9.0373810635770582e+00
+6.9405103926570852e+00
+-4.1925648486712710e+01
+-1.3928232742270819e+01
+4.7148688281239002e+00
+-3.9219330808959221e+01
+-1.2019442717803889e+01
+3.4344084460395683e+00
+-3.7214660308785056e+01
+2.5509033294968830e+00
+1.7663875806268443e+00
+-2.0631860238098319e+01
+1.3516242837073717e+01
+7.2452923734319152e-01
+-3.2363205480351944e+01
+9.1656023466166481e+00
+-4.2622331228066015e+00
+-2.6307373412609667e+01
+1.1798896789761551e+01
+-4.9358285858737050e+00
+-2.5517438122345332e+01
+1.3628326577968103e+01
+-5.1688166168159482e+00
+-2.5011163666677035e+01
+7.4912879890158921e+00
+-7.3037530237261468e+00
+-2.2403983074247044e+01
+1.8103139998739557e+00
+-8.3580463065192010e+00
+-2.1037840804864999e+01
+-1.5305382142934551e+01
+1.1300021261420586e+01
+-4.3562001621287280e+01
+9.0764147563338966e+00
+1.3798497907097852e+01
+-5.1539029055298130e+01
+1.3670759923019073e+01
+8.8698174847578759e+00
+-3.8137502766355688e+01
+1.3830211769242560e+00
+9.3308791907343629e+00
+-4.5405504989412727e+01
+-1.4122683463371361e+01
+8.7401312744261936e+00
+-4.4240132428643726e+01
+1.2429111721349919e+01
+5.7170921478467456e+00
+-2.9505989472217649e+01
+-1.5036647661397833e+01
+6.4465874269962473e+00
+-4.1499460951861629e+01
+-2.4071183440254247e+00
+6.2416933957616658e+00
+-4.1125628222204057e+01
+-1.2580906297497828e+01
+4.0832380387096121e+00
+-3.8196142759566307e+01
+2.8598221452773148e-01
+2.4969598830717383e+00
+-2.1512005861589536e+01
+4.0511856304833227e-01
+1.6126263900622604e+00
+-2.0907101397320975e+01
+1.3263882013338991e+01
+1.4664948191355622e+00
+-3.2645962756715392e+01
+-2.5107891466275163e+00
+8.3014802692682066e-01
+-2.3376256293481767e+01
+1.3493904409726863e+01
+1.2088739703868059e+00
+-3.1189306413779221e+01
+1.3493904409726863e+01
+1.2088739703868059e+00
+-3.1189306413779221e+01
+-3.4958454658726694e+00
+-4.2276850047345566e-01
+-2.2873285337464505e+01
+1.2664735500389777e+00
+-4.4306475741515028e+00
+-2.1305993193485410e+01
+1.3949619388009310e+01
+-5.1825595294712885e+00
+-2.4912922142319939e+01
+6.5398047154622123e+00
+-7.4774730931654529e+00
+-2.2299786737173040e+01
+-1.3702052302020391e+01
+4.6732246344262673e+00
+-3.9171459086651438e+01
+8.5903665049249298e+00
+1.9001718579021048e+01
+-5.6493304434290202e+01
+8.5111416355054736e-01
+-1.2234186634552349e+00
+-2.0663281817509791e+01
+-6.3193636002860583e+00
+7.5341600679009835e+00
+-4.2980564656077590e+01
+1.0964117335836409e+01
+-5.8914612225528309e+00
+-2.4169910388538860e+01
+8.0110196503297502e+00
+1.3906531403609042e+01
+-5.1423735803525503e+01
+1.1292983527785337e+01
+-5.7276997928704318e+00
+-2.4480580688832404e+01
+-1.4696686514123559e+01
+1.1023891676269479e+01
+-4.2764998359090384e+01
+1.1752855672851929e+01
+-5.4943781621676848e+00
+-2.5011260853270834e+01
+1.1106722273572277e+01
+-2.4299436926496232e+00
+-2.9280800659867129e+01
+-6.2514588416441148e+00
+5.9308933046690040e+00
+-4.0778704454338673e+01
+3.3166558936139876e+00
+3.4550567809149464e+00
+-2.2704211465668600e+01
+1.3318228231687849e+01
+8.3215675567779124e-01
+-3.3186443679272735e+01
+5.0978228099470915e+00
+-2.4452539410075578e+00
+-2.0324432364518195e+01
+2.1338533823954555e+00
+7.8799458227697556e+00
+-4.3346149429469975e+01
+4.7271470141012017e-01
+-2.1146456969337224e-01
+-2.0508315393579299e+01
+-5.2180431126187266e+00
+4.9876386531246446e+00
+-3.9479924709062310e+01
+-6.3774465691787974e-01
+3.2916438622863153e+00
+-2.3094523565554834e+01
+1.1306336578093720e+01
+-5.9333320182252924e+00
+-2.4128871424998586e+01
+4.9985484022576427e+00
+-7.9716945361821834e+00
+-2.1575277062940412e+01
+8.8824138653643949e+00
+1.1701656196373158e+01
+-4.8652059619990837e+01
+8.8824138653643949e+00
+1.1701656196373158e+01
+-4.8652059619990837e+01
+-2.0966486345053648e+00
+2.9057165435796217e+00
+-2.6039420170603403e+01
+1.3603107657138956e+01
+6.2026612627885114e-01
+-3.2416951277624904e+01
+1.2338077752307319e+01
+-4.2891201239115224e+00
+-2.6253537644877166e+01
+-3.7065844984128429e+00
+1.1521493087045162e+01
+-4.8306876057804551e+01
+2.1417864313970769e+00
+1.0037606356649851e+01
+-4.6262474376180620e+01
+2.0458107241435650e+00
+8.3041103488948789e+00
+-4.4234122648003904e+01
+8.3935159451930890e+00
+5.9414448574343721e+00
+-4.0646577043035521e+01
+1.1974111504695995e+00
+1.6404931505830527e+00
+-2.0584606353315060e+01
+-3.7155611436326659e+00
+1.4290165570228817e+00
+-2.5404624649614899e+01
+-9.5627933909219571e+00
+9.5414426334167024e-01
+-3.3926196611918101e+01
+6.2378932071970556e+00
+9.5811179664924717e-01
+-2.3696818469082185e+01
+4.2185780374490083e+00
+5.1482562513815244e-01
+-2.1087698587777819e+01
+8.9913767047383519e+00
+1.5843943300622728e+01
+-5.4878598999998573e+01
+1.3341086973646249e+01
+9.4796402175396466e+00
+-3.9090515977461529e+01
+-7.4382518979079464e+00
+-1.7114681819650011e+00
+-3.0224130861688646e+01
+1.2408724821554758e+01
+-4.4256156611571988e+00
+-2.6100282034722401e+01
+1.2394450161042021e+01
+-4.8151487090869995e+00
+-2.5653548745855083e+01
+-4.7839512676642643e-01
+1.2546000166380276e+00
+-2.1215659744244647e+01
+-1.1488056990097069e+01
+8.3720955246417050e-01
+-3.3891506997631723e+01
+1.8103139998739557e+00
+-8.3580463065192010e+00
+-2.1037840804864999e+01
+1.7954850833738827e+00
+-8.2990548709461791e+00
+-2.1103904422283524e+01
+1.3160725769870512e+01
+1.0552288630840215e+01
+-3.9850461058075126e+01
+1.3179098490976285e+01
+1.0518919410756589e+00
+-3.3856867622128561e+01
+1.2171176172240802e+01
+-5.0067599819966997e+00
+-2.5539152397795689e+01
+4.0648404391446116e+00
+1.7660859672497541e+01
+-5.3480732980376970e+01
+9.6043040873215380e-01
+7.6920765576648957e+00
+-4.3046466053387306e+01
+1.3762836868057676e+01
+1.0553372885311652e+00
+-3.0014589505828521e+01
+1.3357085788029910e-01
+-7.0292673611688700e-02
+-2.0662979128922824e+01
+1.2015247090710805e+01
+-4.7293992783021972e+00
+-2.5870175709639000e+01
+8.9354366639452412e+00
+-6.5379402965628408e+00
+-2.3498280770543634e+01
+8.3009257053916787e+00
+1.5339617430757844e+01
+-5.3230511123768110e+01
+1.3263429564236485e+01
+2.2024377562864315e+00
+-3.1400603393447096e+01
+3.0291487985690346e+00
+-3.1717206915719104e-01
+-2.0408221525699755e+01
+1.3271882228092290e+01
+9.8477021228524162e+00
+-3.9758218237869819e+01
+-7.5053877311417869e+00
+2.1458795937944473e+00
+-3.5535628195139154e+01
+9.8616155810930728e+00
+8.3031126545561342e+00
+-4.3664681622763098e+01
+-1.4284906278022563e+01
+4.8292784594384965e+00
+-3.9361839454314406e+01
+3.1037723426307888e+00
+7.9966899281386417e-01
+-2.0501330933365843e+01
+2.2434011589569871e+00
+-2.7938148473457907e+00
+-1.9869190389266116e+01
+-5.3208688520254954e+00
+-7.2722748680994087e+00
+-2.2616195981515965e+01
+7.0116796500545142e+00
+1.3508679764815367e+01
+-5.0937466358844574e+01
+-1.3759303661254910e+01
+4.8638646800544576e+00
+-3.9464536602641530e+01
+3.6447776936977290e+00
+-5.0857946115779713e+00
+-2.3090409709202621e+01
+-4.4382349786019812e+00
+-6.7440186388070025e+00
+-2.3270173887304864e+01
+9.9359006126196565e+00
+7.9758993809099845e+00
+-4.3405847537359548e+01
+1.0241113081942251e+01
+7.7113908124088555e+00
+-4.3001103991705989e+01
+9.0447092519692998e+00
+-5.9880714724673645e+00
+-2.4308293820000888e+01
+-4.4909896861159098e+00
+-6.8724050664241672e+00
+-2.3108934565718798e+01
+-1.5743094616210440e+00
+-1.6682707015354972e+00
+-2.1263121710078867e+01
+1.3013461588896147e+01
+1.2475992595816065e+01
+-3.5564616096648990e+01
+-1.4555104731375357e+01
+1.0994496924900673e+01
+-4.3859595866255887e+01
+-9.4509639939295553e+00
+1.2418969036634985e+01
+-4.5108450107187984e+01
+-1.4339468751624098e+01
+6.0038845176848534e+00
+-4.1090341723953649e+01
+-6.7823527410745674e+00
+8.0805711367149229e+00
+-4.3601850923488904e+01
+-1.0830296038200238e+01
+7.8624292449450204e+00
+-4.3510729044401401e+01
+-1.1868401868346989e+01
+1.1792532887649196e+01
+-4.3903242262845467e+01
+-1.3891162713796371e+01
+1.2392483708280208e+01
+-4.2523490493178372e+01
+-9.2032784555554183e+00
+2.4525890936354187e+00
+-3.6016813992783284e+01
+-1.1918877058758172e+01
+1.2747254698288964e+01
+-4.1399661299578050e+01
+-1.3893382705287895e+01
+1.0390753722845769e+01
+-4.3775554552628797e+01
+-1.4741004243681601e+01
+5.9369003355830419e+00
+-4.0883430200716710e+01
+-1.1507345496623614e+01
+1.5480015595370675e+00
+-3.4672613903269713e+01
+1.0042690015000376e+01
+-5.2289285838542332e+00
+-2.5337389981938664e+01
+7.7456812110012041e-01
+-8.3537518997527958e+00
+-2.1099456298468716e+01
+-3.8865535103122122e+00
+-8.0351894650624196e+00
+-2.1529545186353225e+01
+6.5692083812016451e+00
+-4.1189600396648557e-01
+-2.2977677027019929e+01
+-5.6174247318127852e+00
+-6.8730921630130846e+00
+-2.3168825867852018e+01
+2.3403361659543149e+00
+8.4496231610269890e-01
+-2.0298091640145866e+01
+-1.1958940949508195e+01
+-7.9781770209316614e+00
+-2.1509594114983333e+01
+4.2222698826765690e+00
+1.0209912711984941e+00
+-2.1178233244684119e+01
+-4.8652082464933253e+00
+-1.6683181694806248e+00
+-2.7185311936182334e+01
+-1.0631247037282385e+00
+-1.9825906150864017e+00
+-2.0848389309033042e+01
+1.2096609926758215e+00
+-4.9805972137907091e+00
+-2.1900069759923387e+01
+-2.8039828235310353e+00
+-1.0880995556658524e+00
+-2.1991851940352401e+01
+3.9065765217816186e+00
+-2.2978421373572657e+00
+-2.0471828306903515e+01
+8.9228164771846996e-01
+-2.9545095364758618e+00
+-1.9584222707019482e+01
+-4.6098509173599052e+00
+-7.8195859374296619e+00
+-2.1846702719209507e+01
+2.5723531633014236e+00
+-1.0903145774099459e+00
+-2.0555162436160337e+01
+1.0310139966982959e+00
+-3.9082541459066444e+00
+-2.0493295260218503e+01
+2.4151200151072256e+00
+-4.8453448150413658e+00
+-2.1812908364978391e+01
+6.3053326004754873e-01
+-2.7782906408992716e+00
+-1.9821245717196685e+01
+-1.1666855069624726e+01
+-7.8267416090264730e+00
+-2.1775493461471886e+01
+3.1205709924114022e+00
+-3.0269648385290480e+00
+-1.9555840518310109e+01
+1.5059053360798051e+00
+-2.9947472053132137e-02
+-2.0209533121337799e+01
+-5.6419209308858633e+00
+-8.3823679000049633e+00
+-2.1033014428861396e+01
+2.1526040318765691e+00
+1.9174011797833795e-01
+-2.0177854159910485e+01
+2.3732465147213802e+00
+3.9477148153655878e-01
+-2.0218587908576847e+01
+-2.8106545444992714e+00
+-8.1342803688558352e+00
+-2.1266276509012695e+01
+-1.0631247037282385e+00
+-1.9825906150864017e+00
+-2.0848389309033042e+01
+4.2222698826765690e+00
+1.0209912711984941e+00
+-2.1178233244684119e+01
+-1.5114391087087109e+01
+-7.0141439364391465e+00
+-2.2916930562927650e+01
+7.2289746295786186e+00
+1.6668222965157564e+00
+-2.5760881530064999e+01
+3.5914880859622320e+00
+-3.7811457520767369e+00
+-2.1013431997378728e+01
+3.0938573159823073e+00
+8.3003778796933003e-01
+-2.0499261502081289e+01
+1.5254136353441676e+00
+-5.8302051553390810e-01
+-2.0324865103133774e+01
+1.6669235710254400e+00
+6.5622110148331492e-01
+-2.0253640932777024e+01
+1.9705423046840083e+00
+-1.6630140749258546e+00
+-2.0205926877767780e+01
+-4.8624933584377290e+00
+-7.1515795556335338e+00
+-2.2754974296532936e+01
+1.3253829581599383e+01
+1.0810959347325333e+00
+-3.3249590595006794e+01
+2.4221915626642825e+00
+-3.0027407658711885e-01
+-2.0293202127022653e+01
+-4.0539655992638117e+00
+-7.8488272429732913e+00
+-2.1577153895080428e+01
+2.5750630073127301e+00
+4.3923317445077131e-01
+-2.0269358854630735e+01
+3.9981536001123557e+00
+4.3479579231106003e-01
+-2.0884255205775339e+01
+-4.6594441238042172e+00
+-8.3068351293044138e+00
+-2.1208035389287083e+01
+-3.4889658807346118e+00
+-7.7722603933277670e+00
+-2.1838655124324969e+01
+2.5059432158109813e+00
+7.6281022128200004e-01
+-2.0302820787290958e+01
+-5.7269945890475045e+00
+-7.3103224783837657e+00
+-2.2566614717293049e+01
+9.7550334186326293e-01
+6.0269025096775286e-02
+-2.0316338453583551e+01
+-1.1274593233235868e+00
+-2.3861248646509345e+00
+-2.0186684657512462e+01
+5.8938744463796433e-01
+-2.5790472150644010e+00
+-2.0087017415817744e+01
+9.1950394416793746e-01
+-2.9972014855124112e+00
+-1.9575410640846492e+01
+1.3435824114824896e+01
+-5.2734737006403360e+00
+-2.4892593259297382e+01
+-3.7906116896556181e+00
+-8.0645716751807033e+00
+-2.1487260672663023e+01
+-2.5752919556837877e+00
+-8.1053529327964249e+00
+-2.1425835134687361e+01
+4.3258237852244701e+00
+-5.0460728784981546e-01
+-2.1201337074350938e+01
+3.6403334045384472e+00
+-1.7935843259620676e+00
+-2.0616107547992886e+01
+-1.3486289397360482e+01
+-5.9978959185780534e+00
+-2.4342271871398939e+01
+4.4159224744180809e+00
+-2.8165918815182809e+00
+-2.0613927242704303e+01
+3.5852991356578983e+00
+-4.0853524843588058e+00
+-2.1379914171086998e+01
+1.2458558478417242e+01
+-4.5762611817549006e+00
+-2.6050682121107979e+01
+-4.0456272663881361e+00
+-8.0438753476350122e+00
+-2.1572210102443130e+01
+-1.9014424310636218e+00
+-8.3419561906815911e+00
+-2.1041805618012098e+01
+1.3874226982278620e+01
+3.1195399574295224e-01
+-3.1041334882783335e+01
+4.8372219589277918e+00
+-1.3399039825993764e+00
+-2.1248434878331633e+01
+4.4403501668561782e+00
+-2.3897041448235705e+00
+-2.0387082195220902e+01
+1.0567794480802002e+00
+-4.9641686246965069e+00
+-2.1740172680080015e+01
+-3.6253568407289674e+00
+-7.7449791966312116e+00
+-2.1930341870669235e+01
+1.2399093190942750e+01
+-4.6125605586763738e+00
+-2.5710575382380060e+01
+3.2256121910512880e+00
+-5.6347822106894951e-01
+-2.0569289111224300e+01
+3.1794385360386150e+00
+-5.3321499108596337e-01
+-2.0573774152983891e+01
+3.2319758474670000e+00
+-6.9427695061720729e-01
+-2.0644672016433077e+01
+3.9308843854627571e+00
+-3.1927909261170515e+00
+-2.0616544007543251e+01
+-3.9325543200142734e+00
+-8.0792330465333695e+00
+-2.1488374786935740e+01
+-3.3163908992944595e+00
+-7.5534508728891101e+00
+-2.2092031857613456e+01
+3.1646128779260030e+00
+-1.0929551707971894e+00
+-2.0744337643177058e+01
+9.3301469373042478e-01
+-2.9332010772871002e+00
+-1.9608614246702292e+01
+-2.1340440459105348e+00
+-7.8760768457409949e+00
+-2.1740767539276209e+01
+-6.6038001239388044e-01
+-3.7940512370094082e-01
+-2.1285279719955508e+01
+6.5836545086603127e-01
+-3.1259148464267228e-01
+-2.0429115572348955e+01
+4.2721945939893260e+00
+7.9063202653962106e-01
+-2.1178565797797368e+01
+4.9711711877617484e+00
+-2.2607384193584257e+00
+-2.0577268449781744e+01
+2.1888879734701212e+00
+-3.1044541535400465e+00
+-1.9941835375025200e+01
+-3.3366588731656379e+00
+-8.1445603659970480e+00
+-2.1447042881277007e+01
+-2.5860774069680170e+00
+-8.2289652307678551e+00
+-2.1357376849666636e+01
+-2.5860774069680170e+00
+-8.2289652307678551e+00
+-2.1357376849666636e+01
+-7.3178414440644177e+00
+-3.1630148063138677e+00
+-2.8251518794117722e+01
+3.5397090461772733e+00
+-2.5410343689140618e+00
+-2.0211109912125071e+01
+2.2434011589569871e+00
+-2.7938148473457907e+00
+-1.9869190389266116e+01
+-4.6498902029268629e+00
+-6.6924832316279321e+00
+-2.3362454256217461e+01
+2.9702333977074797e+00
+-5.0823351850515266e+00
+-2.1986761659880944e+01
+1.3048138000112697e+01
+-4.6154169209874896e+00
+-2.5924114166532924e+01
+-3.5695731664688179e+00
+-7.4705689294472757e+00
+-2.2278732111923798e+01
+4.0977354447030194e+00
+9.9446596505292173e-01
+-2.1089169895077838e+01
+5.8563178329507437e+00
+-7.0143454917780479e-01
+-2.2187267700660673e+01
+1.9163362624045617e+00
+-1.3984888846917263e+00
+-2.0538962542729557e+01
+3.7197542694787606e+00
+-2.5024200388656719e+00
+-2.0182084182412893e+01
+4.5357486249483188e+00
+-4.3794994808927452e+00
+-2.2339500706151856e+01
+3.3063790358364842e+00
+-4.4219664058674324e+00
+-2.1389041065813068e+01
+4.6525671995839684e+00
+-4.4629431185990498e+00
+-2.2545461053005987e+01
+2.3295725319386302e+00
+-4.7390228840007662e+00
+-2.1624073914633264e+01
+3.4388684097422217e+00
+-4.7728154575476358e+00
+-2.1969356443602884e+01
+1.2342661534666666e+01
+-4.7075338943001288e+00
+-2.5836517197260580e+01
+-2.4013286687013675e+00
+-7.9202479849286505e+00
+-2.1678306725935677e+01
+4.8365422131977578e+00
+1.0258381277756476e+00
+-2.1749144684431545e+01
+4.8365422131977578e+00
+1.0258381277756476e+00
+-2.1749144684431545e+01
+5.0636753825798060e+00
+1.0355299019085775e+00
+-2.2021481943969150e+01
+3.2036687856103243e+00
+-3.1187483018511410e+00
+-1.9710702926116440e+01
+-3.3614421396736764e+00
+-7.9991330263198632e+00
+-2.1557219301704446e+01
+-2.7376328704697159e+00
+-8.1824250307885293e+00
+-2.1336678151250592e+01
+3.0109412415199499e-01
+-2.7357015838496133e+00
+-1.9977374016645328e+01
+-4.7848666862141531e+00
+-7.2795721819600505e+00
+-2.2578652154582798e+01
+6.1321609723028994e+00
+-6.4481806931466668e-01
+-2.2529805616506099e+01
+-2.6829648022075858e+00
+-8.1224042830518997e+00
+-2.1457725695299633e+01
+8.4739164947846779e-01
+-2.8409771273503930e+00
+-1.9690535976144979e+01
+5.0907242561038890e+00
+-3.4304872585822950e+00
+-2.1888824480537153e+01
+6.2407311715735627e+00
+-2.9902640131572813e+00
+-2.3130412926073408e+01
+5.3977402751110821e+00
+-2.9595156383118009e+00
+-2.1473191017388892e+01
+-3.1066355991829324e+00
+-7.8251124869151694e+00
+-2.1980012970103076e+01
+1.1033653264510974e+01
+-2.4858268761521845e+00
+-2.9184724223849667e+01
+-5.2072421239368119e+00
+-7.2128455386642223e+00
+-2.2738750894594123e+01
+3.3103219296255229e+00
+-8.1919316297221076e+00
+-2.1252620152721047e+01
+9.6952948183416972e+00
+-5.1310524655935588e+00
+-2.5361419295132208e+01
+1.0743856366662536e+01
+-6.2121624269260298e+00
+-2.3559592076612063e+01
+2.8774541946385401e+00
+2.6175487590016788e-01
+-2.0350260737277193e+01
+-2.5852535897137372e+00
+-7.8489130790016146e+00
+-2.1817604864169876e+01
+1.3200579920839935e+01
+1.6923955376636566e+00
+-3.2179613536181520e+01
+1.9830812895689591e+00
+-2.5083368273800133e-01
+-2.0221129298488613e+01
+-3.3590486440907332e+00
+-7.7949518879148370e+00
+-2.1916562792014041e+01
+1.4602846279300122e+01
+-1.4648400628726796e+00
+-2.9625599557407011e+01
+2.5874722320910846e+00
+2.7158870501989679e-01
+-2.0278689957237155e+01
+1.1660629301691609e+01
+2.3047859596922411e+01
+-5.3725941787245709e+01
+1.3910607935379604e+01
+2.4029471955769836e+01
+-5.4791633121728715e+01
+9.3097130539461972e+00
+2.0237909859638826e+01
+-5.5227347218465859e+01
+3.0964355135197907e+00
+1.9774970538545624e+01
+-4.9224284018070058e+01
+9.1494019431347215e+00
+2.0064131475514820e+01
+-5.5637196764843011e+01
+1.4799294288135419e+01
+2.1337472323516639e+01
+-6.0170465461075892e+01
+1.6322659833894612e+01
+2.2974888830552921e+01
+-5.9206746434869117e+01
+1.1902551523621256e+01
+2.3439133139746595e+01
+-5.3321046678220327e+01
+9.4124616179643255e+00
+2.2842129106103201e+01
+-5.2084272646145273e+01
+9.2119937285609943e+00
+1.9835519289761731e+01
+-5.6012535089864450e+01
+9.5519235320558438e-01
+2.0394389139006865e+01
+-4.5336931689000593e+01
+1.6199577935180077e+01
+2.1716794423381288e+01
+-6.1262657679775174e+01
+2.0339228278996757e+01
+2.4587899508555846e+01
+-6.1880459758375679e+01
+1.7167905038614499e+01
+2.3547743169270994e+01
+-5.9240768733563613e+01
+1.9519133649107449e+01
+2.2727686698558454e+01
+-6.3076191774191948e+01
+4.5337067559683044e+00
+1.9839955475219544e+01
+-5.0518284708350890e+01
+1.8620177832816047e+01
+2.2242597402121145e+01
+-6.2656899098132129e+01
+5.2052895870449500e+00
+1.8699308192572349e+01
+-5.2714009580978718e+01
+8.9236016423436961e+00
+2.0373462240544669e+01
+-5.4835025372651167e+01
+3.7761841498685560e+00
+1.8302749540611757e+01
+-5.1972603909939423e+01
+1.9647509297258441e+01
+2.2692078837118750e+01
+-6.3342622407054172e+01
+1.5703202606061886e+01
+2.1496342049228083e+01
+-6.0822707595696627e+01
+9.8803530725750424e+00
+2.1616966681072896e+01
+-5.1876091663901498e+01
+9.8803530725750424e+00
+2.1616966681072896e+01
+-5.1876091663901498e+01
+5.7079459752896220e+00
+2.0189499678528225e+01
+-5.0771887755984061e+01
+1.4293065373250652e+01
+1.8178182725007577e+01
+-5.7435055024773327e+01
+4.8245344363510476e+00
+1.9942954877846297e+01
+-4.9222009563225861e+01
+1.9866822457190736e+01
+2.3308713929839108e+01
+-6.4396612216642154e+01
+1.9556084214135343e+01
+2.3290498662729821e+01
+-6.4215458999539550e+01
+6.1489079251854930e+00
+2.1167576489337087e+01
+-5.0736883770817002e+01
+-3.6689746516679231e+00
+1.7135175560201752e+01
+-4.5039426683517803e+01
+-2.6790562059687223e-01
+1.7806140610526207e+01
+-4.7698695936754277e+01
+-6.7263058732902410e+00
+1.6764880791018332e+01
+-4.1921501231668806e+01
+-1.3876572588760052e+00
+1.7682807432754519e+01
+-4.6896931881171518e+01
+-6.4531025201537027e+00
+1.5062591510793911e+01
+-4.4591783502413385e+01
+-1.3690360232673466e+00
+1.9115674505046542e+01
+-4.4423929919066325e+01
+-9.1951998582506107e+00
+1.5352354107480782e+01
+-4.0995285033673071e+01
+8.1025036515945947e-01
+1.4751529900191709e+00
+-2.0659453366992860e+01
+1.1558779002185624e+00
+1.2607699581506024e+00
+-2.0448995338556916e+01
+-7.1968679386323675e-02
+3.4234251884250715e+00
+-2.2783372588573823e+01
+-2.5939172759193752e+00
+2.0638364578912127e+00
+-2.4993726146356369e+01
+1.4511701972882793e+00
+4.8730386745798798e-01
+-2.0228272482056457e+01
+-1.3762650861705122e-01
+2.0768327808103981e+00
+-2.1610792379343192e+01
+-8.2350703988850071e-01
+2.7432806339292575e+00
+-2.2701177563726983e+01
+-6.2581293554406014e-01
+2.6020899903769648e+00
+-2.2279655439173094e+01
+-1.2223387204561469e+00
+-2.0914655143360781e+00
+-2.0714773329204423e+01
+-2.8141615783987199e+00
+-1.0294180061018374e+00
+-2.2091448307029307e+01
+4.3368295489963216e-01
+-2.4915210280850797e+00
+-2.0212464466665583e+01
+1.3726730996277108e+00
+-2.7423603027074597e+00
+-1.9977767626446195e+01
+3.3344097875782375e-01
+2.9125821228152109e+00
+-2.2356929344368051e+01
+1.4495366343373648e+01
+2.2422067545205373e+01
+-5.7492689919924885e+01
+-2.7848271056022895e-02
+1.8284844262011028e+01
+-4.7034193332098987e+01
+-5.7689837208511294e+00
+5.3775708905373900e+00
+-3.9965286260958180e+01
+-1.5999195522317483e-01
+-4.9104945064183725e-01
+-2.0962631929888150e+01
+4.4284709236176170e+00
+1.1102629904349361e+00
+-2.1460457653052927e+01
+4.7120727922046823e+00
+1.7640923374339270e+01
+-5.3886023264530110e+01
+3.6680888429495915e+00
+1.9181019151354086e+01
+-4.9886005108789320e+01
+1.4483950280227409e+01
+2.2586428806170034e+01
+-5.7204588938571973e+01
+1.3855588178177083e+01
+-1.2798342565651494e-01
+-3.1912600508593261e+01
+1.2960465399175254e+01
+1.0584819103940713e+01
+-3.9899891760152570e+01
+-1.6467625173753213e+01
+8.5476790365781028e+00
+-4.3037000316229438e+01
+-9.3365135222360252e+00
+-6.9142670559890433e+00
+-2.3030838983877246e+01
+-1.0578872620269877e+01
+-7.3684923139254721e+00
+-2.2371549465263449e+01
+1.3915038038725044e+01
+-3.2022747898448839e-01
+-3.1868014320612321e+01
+1.3104432905573586e+00
+2.0545353846210084e+01
+-4.6206702044858169e+01
+1.3205139586079692e+01
+1.1844485087911602e+01
+-3.6343997707380311e+01
+-9.3365135222360252e+00
+-6.9142670559890433e+00
+-2.3030838983877246e+01
+7.1804883064273879e+00
+2.1299865352717770e+01
+-5.0552625520733038e+01
+-9.1118087577147637e+00
+3.3136760312299036e+00
+-3.7361316722552893e+01
+-1.3933848707282639e+00
+1.7937497338633300e+01
+-4.6569810356910011e+01
+1.3037702586808262e+01
+2.4444937891851463e+01
+-5.3461856759954060e+01
+1.2715200409184488e+01
+3.9055335952735266e+00
+-3.1540467492040104e+01
+-9.1949937501977050e+00
+3.2595810690946743e+00
+-3.6884850018962020e+01
+-2.9750945271555516e+00
+-7.9863657801286312e+00
+-2.1597293460027014e+01
+-7.3680195636654995e+00
+-2.1663973669890120e+00
+-2.9631840874712857e+01
+-1.1248026876512398e+00
+1.1193717421097653e+00
+-2.1864934202987587e+01
+-2.0511902201770984e+00
+-1.6533493367747496e+00
+-2.1303248101104639e+01
+-2.8586084831126417e+00
+-3.2913415826312531e+00
+-2.3638593361484958e+01
+-1.0221597603121511e+01
+1.8590492718869103e-02
+-3.2624906073438289e+01
+-1.1554251362069449e+01
+2.3081743193303228e+00
+-3.6085107764623345e+01
+8.2169374439177414e+00
+9.6668267832897694e+00
+-4.5720330383796508e+01
+1.3274533106429757e+01
+9.5736827059355800e-01
+-3.3474448961644136e+01
+-7.6230033943814739e+00
+2.4610163915945389e+00
+-3.5927936132385817e+01
+1.2960465399175254e+01
+1.0584819103940713e+01
+-3.9899891760152570e+01
+3.2247649478667251e+00
+-2.5350087425851071e+00
+-2.0192474647537143e+01
+-2.4335776857066782e+00
+-1.2023912308880913e+00
+-2.1850555270040978e+01
+-3.3036101229872559e+00
+-7.4108832590417144e+00
+-2.2453112769332392e+01
+-9.8883433431976542e+00
+-1.0109191560477737e+00
+-3.1425746533414710e+01
+-4.3840756266655054e+00
+-7.0354409272681764e+00
+-2.2900294040581819e+01
+-2.0040468158203439e+00
+-8.5757610452385560e+00
+-2.0782653609124999e+01
+-2.9384583776215725e+00
+-7.9085388245100896e+00
+-2.1646666850194340e+01
+-4.8020105465236975e+00
+-7.1929017997942326e+00
+-2.2697147591853007e+01
+-3.9515838874682085e+00
+-7.4482308594593238e+00
+-2.2355501385153506e+01
+-3.5984981490621957e+00
+-7.5135158482289492e+00
+-2.2166009940383471e+01
+1.1376532256276466e+01
+-6.2243168845470240e+00
+-2.3750776668723024e+01
+-7.9466628877395760e+00
+1.4094944814618135e+01
+-4.4589357324150086e+01
+2.0003214114334287e+00
+-3.0961357854288396e+00
+-1.9839536031260774e+01
+1.4685215359552168e+00
+-4.5757670931108252e-01
+-2.0293771207288117e+01
+-4.6052694114521548e+00
+1.7951919611063843e+01
+-4.2523754417936800e+01
+-1.2918446598662070e+00
+2.0490934487882898e-01
+-2.1930684244210848e+01
+1.1090708118878478e+01
+2.2996995411670877e+01
+-5.3150657625255086e+01
+-9.3764365700655361e+00
+2.4403905467857907e+00
+-3.6004000216268857e+01
+2.6989967233660739e+00
+2.1213395136445286e+00
+-2.1124463676070963e+01
+4.8742833535298580e-01
+2.1603412919635541e+00
+-2.1161259144310900e+01
+-7.5035621525000460e+00
+-2.1085569984469554e+00
+-2.9649371537126690e+01
+6.6885169929453978e+00
+-1.7045690278232412e-01
+-2.3267293242127909e+01
+1.4213093824689436e+01
+2.1529845152445358e+01
+-5.9038473088206651e+01
+-1.2813241400212751e+00
+4.5559734371783145e-01
+-2.1889356502093751e+01
+-1.1109630566613056e+01
+3.2195585579501067e+00
+-3.6752941549606319e+01
+1.2445299649373368e+01
+5.3875876850807574e+00
+-2.9382437043453891e+01
+1.1467548520356379e+01
+2.2781171130702660e+01
+-5.3691950714412251e+01
+1.3730640136319977e+01
+9.1897694374299839e+00
+-3.7589239387353793e+01
+1.0780072914556969e+01
+-2.8718784230737193e+00
+-2.8655792755823704e+01
+1.3016021828426789e+01
+1.3846185409024574e+00
+-3.4106260676408901e+01
+1.3487911949117155e+00
+9.3978582780412867e-01
+-2.0246196913749593e+01
+-6.2624111951824863e+00
+-4.3962735561242772e+00
+-2.6523649790429975e+01
+2.5077540683907755e+00
+-6.1723053374590933e+00
+-2.1859757561420579e+01
+1.3915038038725044e+01
+-3.2022747898448839e-01
+-3.1868014320612321e+01
+6.5489496845156303e+00
+2.1045845476320839e+01
+-5.1110512633982225e+01
+2.5701985996796228e+00
+1.6840679115236727e+00
+-2.0668339821335767e+01
+1.3646317966915948e+01
+9.6098299305088126e+00
+-3.7619388945402271e+01
+1.9481634356890942e+00
+-1.5627927062938363e+00
+-2.0328953525573812e+01
+3.7461458825913447e+00
+1.7522756123847895e+01
+-5.2792503396480697e+01
+-1.7226773416962524e-01
+3.2874103921678168e+00
+-2.2620990478873040e+01
+1.2961069421563579e+01
+2.7743150837047619e+00
+-3.1652399275233854e+01
+-1.5543818093683472e+01
+6.9299825518409088e+00
+-4.2185309094543562e+01
+-8.6099882817824493e+00
+1.4184715438098344e+01
+-4.3274619236020072e+01
+-5.2496615835907443e+00
+1.0521001640479993e+01
+-4.6959988289204880e+01
+1.4974688826593811e+01
+1.3648002505225264e+01
+-5.1315588911625575e+01
+-8.5860275291938564e+00
+1.1894772758731484e+01
+-4.7464706949791172e+01
+3.0955928683259200e+00
+1.9492018627884207e+01
+-4.9288605043090264e+01
+1.6053100705051175e+01
+2.2891696275047980e+01
+-5.9055726072674453e+01
+1.6683528185377526e+01
+2.2730052261304134e+01
+-6.0085830466663616e+01
+2.4674221496705360e+00
+1.9182089182145596e+01
+-4.9030424628147529e+01
+-5.3022941867225981e+00
+1.5843506478856305e+01
+-4.4756849746947417e+01
+-3.0107337529022327e-01
+1.7532729674653275e+01
+-4.9186838125829986e+01
+1.0228704093038790e+01
+2.0229397221307682e+01
+-5.7076294795885651e+01
+-5.1512495654173769e+00
+1.3181329773544604e+01
+-4.9418764441055536e+01
+-8.8107473326728574e+00
+1.1721406703263373e+01
+-4.7851545620603453e+01
+9.9796811397020626e+00
+1.9405655076247324e+01
+-5.7511832177720038e+01
+-1.0044166705141970e+01
+1.3647180871666171e+01
+-4.2659347203495003e+01
+1.0517378990831508e+01
+2.0821394107165414e+01
+-5.5728121464106081e+01
+1.0228704093038790e+01
+2.0229397221307682e+01
+-5.7076294795885651e+01
+1.2614540865026973e+00
+1.7090188631705796e+01
+-5.1095798332516928e+01
+-5.5376041742924329e+00
+8.4304840039888500e+00
+-4.4029788202574842e+01
+8.1185346765446411e+00
+1.9587123696642205e+01
+-5.4877759417152980e+01
+-3.6859049967132971e+00
+1.6145535980166645e+01
+-4.5903096090200933e+01
+1.5202308298317805e+01
+2.1285041856953658e+01
+-6.0293136139825492e+01
+1.6712100677519925e+00
+1.9196829397060760e+01
+-4.8506136567703045e+01
+9.6908737314880504e+00
+1.9199033244875629e+01
+-5.7440615961127882e+01
+4.0672977599588593e+00
+1.8257918920518719e+01
+-5.2216526988067038e+01
+-1.0116366597908868e+01
+1.4107396842048257e+01
+-4.2086211787765578e+01
+-8.5658146954560999e-01
+1.7919325902180002e+01
+-4.7217819225476738e+01
+-2.5384486548677310e+00
+1.7661504159322849e+01
+-4.5537031483646494e+01
+-8.7141972555347091e-01
+1.7669835295772682e+01
+-4.7296820206435726e+01
+-3.5029091361549353e-01
+1.8485462233339295e+01
+-4.6601055258457883e+01
+1.0586386198046137e+01
+2.1151132342087273e+01
+-5.5744280852739116e+01
+1.6570821638514875e+01
+2.1895929382631568e+01
+-6.1473289101314244e+01
+1.5103265338138426e+01
+2.2068235261418671e+01
+-5.9262288420195134e+01
+-3.5275616806954155e+00
+1.6971242738843220e+01
+-4.5362607830617698e+01
+-1.3876572588760052e+00
+1.7682807432754519e+01
+-4.6896931881171518e+01
+-3.0444966237707867e+00
+1.7034979776664180e+01
+-4.6094749697458447e+01
+-4.2767284326996728e+00
+1.5602156568584023e+01
+-4.6687828644446697e+01
+-6.1088506841646950e+00
+1.2838381983931802e+01
+-4.8946453691616192e+01
+-1.2821312630746135e+01
+1.3996267904596378e+01
+-3.9100427856786261e+01
+1.1809974198775313e+01
+2.3626737097679250e+01
+-5.3080767156582837e+01
+8.1268823562677674e+00
+1.8112825839462413e+01
+-5.7074211908403420e+01
+1.6571645591222829e+01
+2.1977395812067801e+01
+-6.1118723135849798e+01
+3.2015974115959245e+00
+1.9377624955235529e+01
+-4.9230247836063640e+01
+1.6389449327555038e+01
+2.1500172807642031e+01
+-6.1792327946596664e+01
+4.5951910844975243e+00
+-6.7916868229928179e-02
+-2.1403355459080768e+01
+-2.9736233892701751e+00
+1.7482440371968359e+01
+-4.5307333226147932e+01
+1.3090432829752803e+01
+2.3444455124794472e+00
+-3.2067907590419942e+01
+1.2789427052596047e+01
+2.7740479421423809e+00
+-3.2963841284818827e+01
+1.3712267297729898e+01
+2.1948896597534080e-02
+-3.2389556037845765e+01
+6.7782919752498492e+00
+-3.0455617939944946e-01
+-2.3078771696080633e+01
+-3.6470151286056200e+00
+4.4031793964120508e-01
+-2.4016757817571637e+01
+6.2421315238892605e+00
+-7.3270296501384213e-01
+-2.2457499269747338e+01
+1.2627240245327028e+01
+3.4974039738060507e+00
+-3.2950192917609044e+01
+1.5104831630083644e+00
+-7.1757457560296711e-01
+-2.0390821334075763e+01
+1.3627709758609464e+01
+3.8257572243464194e-01
+-3.2154376357131405e+01
+-1.0476938524522554e+01
+8.8441102768377056e-01
+-3.3842067674955430e+01
+-2.4516160934777029e+00
+2.5460003030299307e+00
+-2.5644495564265437e+01
+-3.3610945794332987e+00
+1.3088026802454060e+00
+-2.5061468159079070e+01
+4.0070664003364413e+00
+2.8683052682565555e+00
+-2.2239570223129910e+01
+6.2340101096147360e-01
+1.4895461681873992e+00
+-2.0792979435955445e+01
+9.3543756976301973e-01
+-2.8539927896216502e+00
+-1.9726841902177352e+01
+4.3195840363775559e+00
+2.5368668841749482e+00
+-2.2205596356869794e+01
+6.4351859455813267e+00
+-4.1220391144480661e-01
+-2.2953689487863567e+01
+4.2723050615127818e+00
+-1.2042550852524558e+00
+-2.0768899292642470e+01
+4.2479727786673784e+00
+2.0465157235694096e+00
+-2.1720040202666979e+01
+4.3555477449545243e+00
+-9.8429200749803003e-01
+-2.1167197245757528e+01
+3.1348868172200501e+00
+-2.9371009473319925e+00
+-1.9690335865788573e+01
+-1.8363981976343207e+00
+-1.7332355663701120e+00
+-2.1170533218435111e+01
+3.9862393872668873e+00
+-1.2837499332686237e+00
+-2.0774728868641041e+01
+5.4870378946543841e-01
+1.9087190688625493e+00
+-2.0976447538052909e+01
+3.2962736648823934e+00
+-1.9902078463405068e-01
+-2.0562621099981421e+01
+-3.6045401441079541e+00
+-7.2334094012535184e+00
+-2.2634758629464955e+01
+3.4477701409750106e+00
+-2.0913802095770051e-01
+-2.0615269154143281e+01
+-2.6490029398466088e+00
+1.8260871970888042e+00
+-2.4637792576335812e+01
+2.6259249457176645e+00
+1.4162538714225479e+00
+-2.0515404383640142e+01
+5.6296120981293827e+00
+-1.6952057572358441e+00
+-2.1303427854454256e+01
+3.2557971177118827e+00
+-1.5119841871237103e+00
+-2.0399112365635613e+01
+4.3102328902655724e+00
+1.9214759458771944e+00
+-2.1695296736190009e+01
+7.5516563728827384e+00
+8.8099386822170835e+00
+-4.4603437303996508e+01
+5.7560376466313059e+00
+-1.1007347920644295e-01
+-2.2269399607029769e+01
+4.1139109515244016e-01
+-1.3925169841049132e+00
+-2.0473060102520986e+01
+-8.2261775659396292e+00
+7.1826379863571743e+00
+-4.2674793176182625e+01
+4.0350168746830786e+00
+3.0381725390120864e+00
+-2.2497460895006242e+01
+4.9292814566550414e+00
+1.1338212143145481e+00
+-2.1876218863968269e+01
+-9.4942403043813126e+00
+-2.2873881378904430e+00
+-2.9551864989975623e+01
+2.4009505302322993e+00
+1.8254181705421175e+00
+-2.0676856386738208e+01
+2.0223545662977349e+00
+-2.7234098016555932e+00
+-1.9891744079627166e+01
+2.8501547141161478e+00
+1.3012466648646290e+00
+-2.0565806537088250e+01
+7.9131367394000562e-01
+-2.4441096558648461e+00
+-2.0265169444589219e+01
+2.4392471622867062e+00
+1.0351098907017782e+00
+-2.0398988956730975e+01
+-6.9097232239267932e+00
+8.2399258785463392e+00
+-4.3875723092611175e+01
+2.9382468790999003e+00
+2.0355428966001345e+00
+-2.0951093606932787e+01
+4.1126031841247537e+00
+1.6233109118348483e+00
+-2.1274639217268060e+01
+4.4524440472475710e+00
+-1.0160030898154579e+00
+-2.1062699158913432e+01
+4.3119842355712157e+00
+1.5842957053299749e+00
+-2.1451408185254365e+01
+-1.2223387204561469e+00
+-2.0914655143360781e+00
+-2.0714773329204423e+01
+5.8938744463796433e-01
+-2.5790472150644010e+00
+-2.0087017415817744e+01
+-2.5940533170809958e+00
+-3.0053299503764550e+00
+-2.2987875469521640e+01
+-3.0094091462176653e+00
+-4.8879819999932528e-01
+-2.2692105596964769e+01
+2.8919375121991164e+00
+-1.6119527628206558e+00
+-2.0287260732358828e+01
+3.5095026031710765e+00
+1.2116139504193144e+00
+-2.0829616922448071e+01
+4.4089055151092307e+00
+2.4526132911002558e+00
+-2.2231271483966758e+01
+2.0710391117420732e+00
+-1.4156559319013489e+00
+-2.0536874144290472e+01
+3.5107078645102892e+00
+1.9960083760024971e+00
+-2.1191543702519205e+01
+3.8821398525698076e+00
+1.6608321883281389e+00
+-2.1235350891391260e+01
+6.1280534829917128e+00
+-7.9359599312258400e-01
+-2.2452201864572153e+01
+3.6917702264072565e+00
+8.0234380402858785e-01
+-2.0747172222902158e+01
+4.8710493838713766e+00
+3.5351306314559267e-03
+-2.1647691766823193e+01
+3.6752709360391744e+00
+-1.8482670841273068e+00
+-2.0671973840818918e+01
+6.2428714023170819e+00
+-5.5549315676667921e-01
+-2.2752200647932554e+01
+1.3763011911173968e+00
+-2.5534028928756043e+00
+-2.0147963350296113e+01
+3.9996455421174852e+00
+-1.2296193389514729e+00
+-2.0828107022450823e+01
+3.1892117450683455e+00
+-1.0772158759405703e+00
+-2.0805858620243288e+01
+1.0313058484085453e+00
+-1.4696078677272941e+00
+-2.0448789394660736e+01
+6.6144967877825032e+00
+-1.0514947642912049e+00
+-2.2194079514497620e+01
+3.2881986560904188e+00
+1.0794027541299156e+00
+-2.0695384753806184e+01
+-3.5270714567819126e+00
+-7.1721510291570434e+00
+-2.2705215583509336e+01
+3.1715157689848361e+00
+-1.5283154455770962e+00
+-2.0452122054666525e+01
+-7.3934356966247050e-01
+-3.7263892484141254e+00
+-2.1568855475540300e+01
+4.6725317108066813e+00
+5.8447053716974362e-01
+-2.1468603856378646e+01
+3.2329150433833731e+00
+-1.4066961438673051e+00
+-2.0580316266512721e+01
+3.1348868172200501e+00
+-2.9371009473319925e+00
+-1.9690335865788573e+01
+4.5014872296127875e+00
+2.7301769462619752e+00
+-2.2636302094002385e+01
+4.8710493838713766e+00
+3.5351306314559267e-03
+-2.1647691766823193e+01
+3.8870750051406844e-01
+-2.5028871287421106e+00
+-2.0220479880382150e+01
+-2.8879381551028240e+00
+-1.3313864428798590e+00
+-2.1665308771661735e+01
+-3.5295655454107862e+00
+-7.2087984962510747e+00
+-2.2647898701028367e+01
+4.7556414481128169e+00
+-2.2151190005846209e+00
+-2.0628415328640365e+01
+1.2147162538629901e+00
+-2.5553747226956807e+00
+-2.0102140454951286e+01
+1.5355052217975471e+00
+-1.6032675028495187e+00
+-2.0304809700783728e+01
+6.5331636161077107e+00
+-8.2163022424401910e-01
+-2.2452159986096191e+01
+4.6493856924589032e+00
+2.1201878098235620e+00
+-2.2164958905238539e+01
+1.0313058484085453e+00
+-1.4696078677272941e+00
+-2.0448789394660736e+01
+6.0053529284529548e+00
+5.3691362570638757e-01
+-2.3120000430893391e+01
+4.9315294527502260e+00
+2.9181420549168002e-01
+-2.1787713305644246e+01
+-2.6195341798895297e+00
+-1.1877446900635751e+00
+-2.1937109005232287e+01
+3.8311497579889369e+00
+3.3706360809770222e+00
+-2.2826814166218483e+01
+-3.6962402412650683e+00
+-7.2534829969223757e+00
+-2.2612359957963246e+01
+5.6039705728676834e+00
+-1.2296418045038063e-01
+-2.2279524029239546e+01
+4.9029091057805951e+00
+2.2338765205165747e+00
+-2.2581351169814063e+01
+5.0581085865185464e+00
+1.7830647412474840e+00
+-2.2423785502144234e+01
+2.2564226137492396e+00
+4.2634401603073513e-01
+-2.0228611280158336e+01
+4.3287356409886808e+00
+2.2825787644651281e+00
+-2.1969551306146641e+01
+6.0843791352363308e+00
+2.3392070744446043e+00
+-2.5520764320324094e+01
+1.9705423046840083e+00
+-1.6630140749258546e+00
+-2.0205926877767780e+01
+3.2689310755310581e+00
+-2.6181247622770027e+00
+-2.0060816936341705e+01
+6.8774320925506771e+00
+-2.2736342278824220e-01
+-2.3215593101219881e+01
+-1.7358814085294012e+00
+-1.6218099001639563e+00
+-2.1381881067216934e+01
+-5.5305927991702841e-01
+-1.0514881040562170e+00
+-2.0967716164096608e+01
+6.2428714023170819e+00
+-5.5549315676667921e-01
+-2.2752200647932554e+01
+1.4002251414481723e+00
+-2.6007713227748499e+00
+-2.0093351098235750e+01
+-8.4218015887475559e+00
+1.6572111764139454e+00
+-3.4837033737455833e+01
+4.8106009443384847e+00
+1.1579508535867347e+00
+-2.1734468665119429e+01
+4.9681457761207461e+00
+6.7875733240412761e-01
+-2.1803693589338881e+01
+6.5567811070236939e+00
+-1.3652653561089567e+00
+-2.1868337230297833e+01
+3.9640735540500209e+00
+-2.5209901798952288e+00
+-2.0256130072255321e+01
+9.1491656750220929e-01
+-2.6228534715882090e+00
+-2.0070637323298342e+01
+-2.9012217068822483e+00
+-1.2061384942326687e+00
+-2.1800091578049507e+01
+3.5820243637890861e+00
+1.9114667805738332e+00
+-2.1138075461314990e+01
+4.5100744299945292e+00
+1.5723807883905021e+00
+-2.1612368351202850e+01
+4.3102328902655724e+00
+1.9214759458771944e+00
+-2.1695296736190009e+01
+3.0160090639832666e+00
+-2.5206916232650016e+00
+-2.0266872407280847e+01
+5.5672454471553570e+00
+-1.8729376995841465e-01
+-2.2172485543152856e+01
+3.5820243637890861e+00
+1.9114667805738332e+00
+-2.1138075461314990e+01
+6.5987144603235803e+00
+-5.6689299457140008e-01
+-2.2762129747161218e+01
+5.0376652397177608e+00
+-2.0024772043195918e+00
+-2.0935852498723310e+01
+1.3436932990313448e+00
+-3.4188690648845417e+00
+-2.0190410537522599e+01
+2.3498245215448277e+00
+-3.1142716098083345e+00
+-1.9929380726282815e+01
+7.5755884469954415e-01
+-3.5043072471398007e-01
+-2.0420491219608671e+01
+-5.6946758855387480e-01
+-6.3354882856267880e-01
+-2.1341543841694413e+01
+4.4725479050171995e+00
+2.7647360955677797e-01
+-2.1258114447179075e+01
+3.0530359179290043e+00
+4.5843373118740388e-01
+-2.0435792957921002e+01
+1.2211218375976426e+01
+5.8156089636604982e+00
+-3.0647467000665085e+01
+7.4591002308680898e-01
+-1.3419534827554127e+00
+-2.0685777452471989e+01
+5.3004164389207080e+00
+-1.8613084549546304e+00
+-2.1062601993604062e+01
+-1.2265470450636929e+01
+-5.9588239578060715e+00
+-2.4283921812966998e+01
+6.9544472802923583e+00
+-3.5459205984598543e+00
+-2.4248091864086476e+01
+5.0470653970146655e+00
+-2.3945092162293289e+00
+-2.0395084382021224e+01
+1.8654495478783506e-02
+-1.2889420838096377e+00
+-2.0644878106843777e+01
+1.3148127296771424e+01
+2.2917307742272497e+00
+-3.1520156042887255e+01
+3.5844361318458007e+00
+2.6878405794073164e+00
+-2.1756252884861322e+01
+5.0778781458890352e+00
+-2.1322854654865049e+00
+-2.0752952790192904e+01
+7.0670370256714863e+00
+5.2313294086063522e-01
+-2.4197136057719355e+01
+3.6953012328447699e-01
+-1.1955294749541039e+00
+-2.0782081008175417e+01
+5.7146491022728130e+00
+-9.9852618028959034e-02
+-2.2347236824785693e+01
+7.2063188331151533e+00
+1.8682592596412717e+00
+-2.6080589109954271e+01
+2.4423549060800744e+00
+-2.5431193286830900e+00
+-2.0254548071282667e+01
+5.7565265146135127e+00
+-3.6226499279527236e+00
+-2.2861775338858997e+01
+2.2795325659880250e+00
+-1.6029990296751442e+00
+-2.0282893448578744e+01
+-1.6833588534264636e+00
+-1.8004762098493352e+00
+-2.1109008710605984e+01
+-1.1903413693724950e+01
+1.6950000588806613e+00
+-3.5021718766065206e+01
+4.9511673640683336e+00
+1.2953020186602606e+00
+-2.1941893757763793e+01
+4.4260446961584217e+00
+-3.3163125440394636e+00
+-2.1169860981956134e+01
+3.1430836973774321e+00
+9.0341808484349151e-01
+-2.0556351744479063e+01
+2.7984044254248932e+00
+-5.8485583462294388e-01
+-2.0411819108182435e+01
+-2.4870539453206195e+00
+1.7435077165826065e+00
+-2.4585378826866435e+01
+-4.4044829668281302e+00
+9.3753037514581656e+00
+-4.5393676117871230e+01
+3.9925784364398909e+00
+1.6120072449707865e+00
+-2.1276825043963242e+01
+1.6071854622444681e+00
+-3.5250021282583428e+00
+-2.0377854200881551e+01
+5.4662858129317082e-01
+-2.7138369948887333e+00
+-1.9948470010503023e+01
+1.3695891644112056e+01
+7.3982926118430103e-01
+-3.1133759644211459e+01
+1.3078320121115986e+01
+1.3122262631459556e+00
+-3.3899513449682971e+01
+3.9133100009234614e+00
+-1.0829394634064429e+00
+-2.1029316651740714e+01
+6.5021318406039024e+00
+-1.2654834797630750e+00
+-2.1899516817339823e+01
+4.0332241400294295e+00
+6.7533040023633639e-01
+-2.0877880173712491e+01
+1.2211218375976426e+01
+5.8156089636604982e+00
+-3.0647467000665085e+01
+5.1061546849380219e+00
+-6.4585761517908780e-01
+-2.1520695466768860e+01
+1.4032743549466822e+01
+6.5512308062350211e-01
+-2.9258716419682379e+01
+-5.6981365381193934e+00
+-7.2297168292388783e+00
+-2.2665209775258269e+01
+4.6908105287034445e+00
+7.9260406521243487e-01
+-2.1549089206783211e+01
+3.9393336435803867e+00
+-3.1257595001899201e+00
+-2.0518813616058754e+01
+-1.4748117992177783e+00
+1.2976981280086028e-01
+-2.2195808275567597e+01
+4.8335319551720977e+00
+1.0856479762032631e-01
+-2.1633648833807793e+01
+4.0748140004465094e+00
+2.3391605653988599e+00
+-2.1814967520114507e+01
+6.6974460576746813e+00
+-4.0624551889294458e-01
+-2.2932128771594808e+01
+4.0748140004465094e+00
+2.3391605653988599e+00
+-2.1814967520114507e+01
+-4.7476494598849373e+00
+-6.5904332264947456e+00
+-2.3569081528220483e+01
+-3.3741543310493469e+00
+2.3513812890181165e+00
+-2.6472739672536406e+01
+-4.6831755522777589e+00
+9.8580195114389308e+00
+-4.6044041547016541e+01
+-1.4190549484959142e-01
+-1.2389008089477753e+00
+-2.0729783743193924e+01
+4.0921167598864461e+00
+1.3410695151432117e+00
+-2.1185257756187720e+01
+2.6285549212772228e+00
+5.6383054488289952e-01
+-2.0375059505859479e+01
+2.3783915397001723e+00
+5.5000729111134650e-01
+-2.0321942116839931e+01
+3.7466266008003317e+00
+1.3985940536371759e+00
+-2.1037471868162992e+01
+1.6399063057928882e+00
+-2.5815766006662537e+00
+-2.0086549299495672e+01
+6.5831620501563455e+00
+-2.9702714788756461e+00
+-2.3726612624525220e+01
+6.7151789888046256e+00
+-2.2807581408609690e-01
+-2.3173269972386787e+01
+4.9347634191552556e+00
+3.7084684727569744e-01
+-2.1760050220042633e+01
+-1.2131181394485250e+01
+1.9787800884461380e+00
+-3.5576816032906173e+01
+-3.5911012684091792e-01
+-1.1092718373310351e+00
+-2.0901714907471131e+01
+6.6954883177190165e+00
+-9.8549578794518033e-02
+-2.3340640543645105e+01
+1.8023804559137147e+00
+-2.7507475593101072e+00
+-1.9850828535650564e+01
+5.2275485405721112e+00
+-1.6279161182522253e+00
+-2.1327771368859981e+01
+3.3464214014481217e+00
+5.6439311121170466e-01
+-2.0569059283680303e+01
+3.2446474145715682e+00
+-5.7293413920839628e-02
+-2.0484329494822671e+01
+7.3868671035928282e+00
+3.0036904133688530e-01
+-2.3979925604212877e+01
+4.9821645044010996e+00
+2.6653988529870132e-01
+-2.1777109575047540e+01
+6.4749934069701309e+00
+-1.2313905714737285e+00
+-2.1924555660594979e+01
+9.8607815071822891e-01
+1.7879942743277102e+00
+-2.0718835852919678e+01
+3.3104178577523515e+00
+-1.3870952501460301e+00
+-2.0651443647124573e+01
+3.2086756130235417e+00
+-5.7657212932842130e+00
+-2.1638385912529245e+01
+6.9751758397439845e-01
+-1.4768304679651032e+00
+-2.0407044054178613e+01
+4.8608611687271285e-02
+-2.5379638412567145e+00
+-2.0159124890374514e+01
+1.1878469651213361e+00
+6.9556071779582318e-01
+-2.0318882711963433e+01
+4.5800325719681005e+00
+2.8822459223536673e-01
+-2.1396938081540856e+01
+3.1332261970592827e+00
+-1.4145761659927782e+00
+-2.0559980313270103e+01
+-2.2765570299946269e-01
+-1.9607684398726202e+00
+-2.0781990071117292e+01
+3.9925784364398909e+00
+1.6120072449707865e+00
+-2.1276825043963242e+01
+-2.6435627831543211e+00
+2.1399267694623028e+00
+-2.5101355963676284e+01
+3.0777029687341568e+00
+-1.4389543306720038e+00
+-2.0449995367396589e+01
+7.9096806372407009e+00
+9.3256040036956538e+00
+-4.5395944737703282e+01
+1.2794147883530593e+01
+4.2325911489234436e+00
+-3.0032887894809036e+01
+1.2794147883530593e+01
+4.2325911489234436e+00
+-3.0032887894809036e+01
+2.7421956975013373e+00
+4.0214244348251080e+00
+-2.3356809005564642e+01
+2.6231269376538404e+00
+3.9952743524591394e+00
+-2.3432340915051999e+01
+1.9420190195671152e+00
+4.0119780919688601e+00
+-2.3634871574396367e+01
+1.9671040666683393e+00
+3.9594650213277358e+00
+-2.4005341606880176e+01
+1.2687608737637218e+01
+3.9658908291040600e+00
+-3.1248746440140792e+01
+1.6340113684929942e+00
+1.5997420361598731e+00
+-2.0469343115970695e+01
+1.3920916714546017e+01
+-3.4790393099072663e-02
+-3.1294321279087811e+01
+3.1343051962606703e+00
+6.3429406358111395e-01
+-2.0495329019330981e+01
+2.3375386043054505e+00
+4.2528207710698429e-01
+-2.0251904280213253e+01
+-1.2268890880555670e+01
+1.8886327641577090e+00
+-3.5238676895261193e+01
+2.6274067445569949e+00
+-2.0601143017620904e+00
+-2.0294126375693825e+01
+-1.6124478235725599e+00
+-1.7800887020668092e+00
+-2.1129893840625538e+01
+1.0572762839042200e+01
+-5.4552650398581450e+00
+-2.4896252130988820e+01
+1.0508309449715725e+01
+-6.4612004393293754e+00
+-2.3380225524748649e+01
+2.4939773839371666e+00
+4.0457628687918570e+00
+-2.3549226021840887e+01
+3.0226000067378909e+00
+3.7766624422631123e+00
+-2.3160233283031307e+01
+1.3327220673195039e+00
+3.7014572820164853e+00
+-2.3073877829910316e+01
+8.9649419725178348e-01
+3.7647259896100032e+00
+-2.3266581838212065e+01
+6.5984705721076518e+00
+3.0615911238638338e+00
+-2.7620858882107186e+01
+7.2418007768271924e+00
+1.7653461691234869e+00
+-2.6011636416067994e+01
+2.9437519793100648e+00
+1.5950288979036649e+00
+-2.0741135050242459e+01
+1.3762836868057676e+01
+1.0553372885311652e+00
+-3.0014589505828521e+01
+1.3063333944129136e+01
+1.3955662045236386e+00
+-3.3983604998945736e+01
+-7.2262500913229379e+00
+2.4419691326322415e+00
+-3.5974480104233116e+01
+1.4078812283258170e+01
+-3.0893992178013530e-01
+-3.1450308845299347e+01
+3.4592329590450484e+00
+-1.4747648520341228e+00
+-2.0538927218079824e+01
+-6.7632662657561637e-01
+-2.0375671497027104e+00
+-2.0763181990247645e+01
+1.1945249556443661e+01
+-4.5539030596615042e+00
+-2.6181685291770499e+01
+9.2399978375106215e+00
+-6.7969083010809506e+00
+-2.2969522393529015e+01
+-4.9407310507003324e+00
+-6.6294634506265249e+00
+-2.3445789338892823e+01
+1.7491230280987685e-01
+2.8727769083760131e+00
+-2.1898739127353782e+01
+1.4028331652301915e+01
+-7.3481103375196005e-02
+-3.0897681987070449e+01
+-5.1709142219482880e+00
+-6.6308862669970248e+00
+-2.3528160002825018e+01
+-5.0426750585118540e+00
+7.2629551179879019e+00
+-4.2820043070310042e+01
+1.3895465898654001e+01
+-2.1590436527657406e+00
+-2.9390092110245028e+01
+1.1416072409376767e+01
+-4.6302434182987691e+00
+-2.6013870464052932e+01
+1.3329464936850005e+01
+1.6812430735457005e+00
+-3.1643342664267472e+01
+-1.2856055022622612e+00
+1.7168094030732695e+00
+-2.2429673781288315e+01
+-2.8506125645244040e-01
+1.1816867079740587e+00
+-2.1100001612409649e+01
+2.3364236206449358e+00
+5.4384534152184888e-02
+-2.0319632429158631e+01
+1.0082876775744660e+00
+3.7055541534538246e+00
+-2.3159454291092111e+01
+2.6374138575752757e+00
+-8.5533467513098105e-01
+-2.0540762534016544e+01
+4.4115034399807005e+00
+-1.3636189838577908e+00
+-2.0885556862241621e+01
+-4.1302644263129924e+00
+-6.9373331276071095e+00
+-2.2984482815849603e+01
+-1.1076359627126482e+00
+5.9964113194337765e-01
+-2.1597838116464739e+01
+3.6971368603672090e+00
+1.5896824536812448e-01
+-2.1195980987342136e+01
+-1.1471120253837785e+01
+1.3116369114260658e+00
+-3.4435957635288574e+01
+-1.5722485005001049e+01
+1.1129227288893166e+01
+-3.9227556671440880e+01
+-1.4177999138180768e+01
+1.1688385773651445e+01
+-4.0578654144025045e+01
+-9.5924049130110678e+00
+-1.2494070106830035e+00
+-3.0929171008665769e+01
+-6.9891575069547844e+00
+2.8904413574169925e+00
+-3.6666137744729610e+01
+4.4382559348502959e-01
+-1.7526474870254598e+00
+-2.0376755989394294e+01
+1.4446783368847798e+01
+-1.3431635496960437e+00
+-3.0527874161417135e+01
+-3.1717570972124287e-01
+-6.4644429254609759e-01
+-2.1092423415620772e+01
+7.2520158304608939e-01
+-4.6853108417606004e-01
+-2.0465232914008880e+01
+1.2866530552873350e+01
+4.1139414794572486e+00
+-2.9659392358536167e+01
+2.0234339283521491e-01
+-9.0049491205548804e-01
+-2.0789599754044126e+01
+7.6332211176051171e-02
+2.3968256512198596e-01
+-2.0685482755454668e+01
+-4.9378035351149213e-01
+-7.6012150791482980e-01
+-2.1234438737151436e+01
+1.3503698366244986e+01
+1.6216432046205700e+00
+-3.0671809905149857e+01
+1.2269291155304700e+01
+6.4263981534001324e+00
+-2.9574871081642968e+01
+1.3945696636131593e+01
+8.4630447140465801e+00
+-3.7207870345390219e+01
+1.3610091525624284e+01
+1.1178867483691894e+00
+-3.1040045049189438e+01
+5.8516939208341856e-01
+1.0723660286523697e+00
+-2.0606581699957516e+01
+1.3792349723977940e+01
+1.0159456402316460e+00
+-3.0539625938423001e+01
+-1.1884332437641201e+00
+1.7716973795981691e+01
+-4.6925794623877955e+01
+6.3569845274324566e-01
+1.1382639355050536e+01
+-4.8086480390785525e+01
+-2.1772171049430264e+00
+6.4819818555961168e+00
+-4.1439428054164225e+01
+-5.3011511204841044e+00
+6.6305670710867748e+00
+-4.1693075903226884e+01
+-5.1099891991508848e+00
+6.2971107205917001e+00
+-4.1190285233266145e+01
+1.1187248004857444e+00
+1.8025076882641786e+00
+-2.0694540585088138e+01
+-3.6738843576576206e+00
+1.7322414373384742e+01
+-4.4741516969442465e+01
+1.1631016657030520e+01
+2.2058047311632134e+01
+-5.4865661923372386e+01
+2.0196644226328893e+00
+1.7067916179921443e+00
+-2.0556838990532501e+01
+-2.2472348005599558e+00
+6.8838559155323100e+00
+-4.2034202548502130e+01
+-6.9572260918772741e+00
+1.3592237759888638e+01
+-4.6429108818920035e+01
+-6.8630739974202930e+00
+8.0323519120525102e+00
+-4.3604986207162618e+01
+-1.3505675184255936e+00
+1.7435719463047283e-01
+-2.2023826584404571e+01
+7.6831886001384941e-01
+-4.1508452981076145e-02
+-2.0388990339072812e+01
+5.2236600038177106e-01
+1.6149725509541778e+01
+-5.1276263850245243e+01
+1.8458521946448641e+00
+9.3867783420455431e-01
+-2.0262293046756191e+01
+-2.2857865115948289e-01
+1.5416039977517539e+00
+-2.1201874666608514e+01
+-4.6992247004602943e+00
+6.4305839232304374e+00
+-4.1282494397276679e+01
+-9.8931170365346555e-01
+-3.8712037479904739e-02
+-2.1546462713492257e+01
+-1.4756347046582237e+01
+6.8814433277477054e+00
+-4.2051921937140392e+01
+-2.1300738641498079e+01
+1.2266607514420318e+00
+-3.4444329309074554e+01
+-2.1480891774548223e+01
+1.0167398950628916e+00
+-3.4541086864847465e+01
+-1.3397101524491712e+01
+5.0393319192285615e+00
+-3.9676253961853412e+01
+1.9476867939238593e+00
+4.7407284345998335e-01
+-2.0222112802936714e+01
+2.5105400482203971e-02
+2.9762098626941089e+00
+-2.2137047973836076e+01
+-1.6561003845252258e+00
+9.6205916945611509e+00
+-4.5431461005939632e+01
+-2.6139867131657804e+00
+3.3317440239884375e+00
+-2.7734701151960795e+01
+8.1836461614070655e-01
+4.0499396624819134e-01
+-2.0359334539223948e+01
+6.1206680948450320e-01
+6.2944679300794704e-01
+-2.0491409089131999e+01
+3.5975123617532528e-01
+-3.3390166629194801e-01
+-2.0595894897352096e+01
+7.6831886001384941e-01
+-4.1508452981076145e-02
+-2.0388990339072812e+01
+-8.1114080892149385e+00
+1.4021094295894812e+01
+-4.4450650400999649e+01
+-1.4513533476721496e-01
+-6.5658644876095282e-02
+-2.0907503224545270e+01
+-6.1946474050048570e+00
+7.6463153287194991e+00
+-4.2934477001859634e+01
+-6.1946474050048570e+00
+7.6463153287194991e+00
+-4.2934477001859634e+01
+2.4661157409239420e+00
+3.3937599230978366e-01
+-2.0255445180829977e+01
+2.7869896528104543e+00
+4.9099899165203242e-02
+-2.0324145546966683e+01
+1.3187731330300665e+00
+-7.1913071778254434e-01
+-2.0357638072336037e+01
+1.0025059171938702e+01
+2.0141268476591137e+01
+-5.6645353443505243e+01
+-3.8933322745355659e+00
+1.4665705856851352e+00
+-2.5392232496365619e+01
+-8.3021700517869712e-01
+1.4953376674968675e+00
+-2.1658357822240774e+01
+2.5935456746633956e+00
+-1.1457801927354403e+00
+-2.0612376669547029e+01
+1.6600726490371926e+01
+2.2460841858839146e+01
+-5.9766842462672621e+01
+1.4419377857080865e-01
+-1.0518261157798698e+00
+-2.0899272025214405e+01
+-9.8797673541075670e-01
+1.9173039086380803e+00
+-2.2069710952531974e+01
+2.3897540009266409e+00
+-1.2969150624304907e-01
+-2.0213564813018522e+01
+2.6760767903969955e+00
+-6.3595406650322295e-01
+-2.0445301166738858e+01
+-7.9850298786178109e-01
+-5.6930109920837502e-01
+-2.1474382873880923e+01
+1.4121816060484326e+01
+2.9081340954458323e-01
+-2.9169504356958665e+01
+-2.3566536592892677e+00
+1.7415692312250304e+01
+-4.5779483222791796e+01
+-2.6064412411420528e+00
+1.6994200232280017e+00
+-2.4490047494939649e+01
+5.9467335681615729e-01
+-1.3998287392910524e+00
+-2.0567595829641238e+01
+1.7081859633960941e+00
+1.7748875757821954e+00
+-2.0640399462164108e+01
+1.0922393366233512e+01
+-6.4864527738713500e+00
+-2.3388660742460409e+01
+-3.0536927435729377e+00
+1.7340669519696867e+01
+-4.5324636971110145e+01
+1.5924629281619740e+00
+1.8136781795393002e+00
+-2.0666321354166612e+01
+3.3107990014267634e+00
+2.5752005474879885e-01
+-2.0592060081470251e+01
+4.5709627787159119e+00
+-9.7736036971381868e-01
+-2.1124674015898357e+01
+-4.2697937352517199e+00
+1.3999923877199890e+01
+-4.9360415198577883e+01
+-4.2594829897218851e+00
+1.1015817806772892e+01
+-4.7704554182725914e+01
+9.7265101030541923e-01
+-1.5478681078317766e-01
+-2.0369237666026166e+01
+3.2871753934332806e+00
+3.4902247775490558e-01
+-2.0582332024506808e+01
+2.4472029343834785e+00
+-2.2985782409373573e-01
+-2.0301350459444603e+01
+1.2819955224588767e+01
+4.0692481177078639e+00
+-3.0773495476165291e+01
+1.3355400249406673e+01
+2.7585263393278425e+00
+-3.0005601540543239e+01
+1.4062116902744924e+01
+6.2256724202113711e-01
+-2.9178465502386004e+01
+3.6901764980444507e-02
+-3.4628745947981848e-01
+-2.0749591958001449e+01
+5.2457132464422240e-01
+-1.2483111019080948e+00
+-2.0708441353041831e+01
+-1.5743094616210440e+00
+-1.6682707015354972e+00
+-2.1263121710078867e+01
+1.2774355624798819e+00
+-1.4994331075852529e+00
+-2.0445774017269024e+01
+1.2970332452232217e+01
+3.4059446761016878e+00
+-3.0802356648816961e+01
+3.2943938834470994e+00
+-7.3585427157604855e-01
+-2.0708901477844659e+01
+-2.7050318582114130e+00
+-1.3854994931293207e+00
+-2.1629069488171634e+01
+1.2259463050222228e+01
+5.7011026098102651e+00
+-3.0658410591449197e+01
+2.9935915023345379e+00
+-4.6154993241479897e-01
+-2.0450266771379134e+01
+1.3181664200422455e-01
+1.7380941864128630e+00
+-2.1122521179552656e+01
+1.2565127620271104e+01
+5.2653971921044578e+00
+-2.9591261987068648e+01
+2.4213646295966784e+00
+-2.8385723146049942e+00
+-1.9829267743723758e+01
+-1.4569910516718091e+01
+1.1238433853193811e+01
+-4.2867987635041182e+01
+-1.7122883131033024e+01
+1.1322125031624568e+01
+-3.7511983343603880e+01
+-1.7138899178437427e+01
+1.1392660707282714e+01
+-3.8095595968764329e+01
+-1.5188394186462498e+01
+1.1206210703976524e+01
+-4.2626205896007498e+01
+-4.0752397702894783e+00
+1.4564577674226142e+00
+-2.5404186027161174e+01
+7.8857313563971427e+00
+1.3254660529796812e+01
+-5.0669833900330893e+01
+7.5656403140676423e+00
+1.2836152341105594e+01
+-5.0116416002561046e+01
+8.7068095788523650e+00
+6.8564905277628609e+00
+-4.1896184473493371e+01
+3.5128146889607259e+00
+1.5100877148189027e+00
+-2.0950054249285511e+01
+3.5128146889607259e+00
+1.5100877148189027e+00
+-2.0950054249285511e+01
+4.0474979096261654e+00
+1.2699673745873898e+00
+-2.1105574056235589e+01
+3.5935456367442868e+00
+7.9179331878459380e-01
+-2.0728479393088875e+01
+3.2599590371178797e+00
+4.9216982212071902e-01
+-2.0536476776493544e+01
+4.4922603120029443e+00
+2.0625986395096704e-01
+-2.1296578829158658e+01
+2.9394247001512128e+00
+-1.5248824503447084e-01
+-2.0428612899213707e+01
+2.8075061149128682e+00
+-6.8809477794808027e-01
+-2.0490261294204331e+01
+6.8922219261037467e+00
+1.0427559425074423e-01
+-2.3656199234899592e+01
+-1.4233159047754633e+00
+-1.9514698108958415e+00
+-2.0957586670162556e+01
+4.3914309799900773e+00
+-1.2459949942091331e+00
+-2.0839409736716121e+01
+5.3017022697528429e+00
+-1.6968602225142941e+00
+-2.1258200444470358e+01
+-3.5972587107917731e+00
+-7.9666694398505742e+00
+-2.1639079230479158e+01
+-3.7776080027613776e+00
+-8.1843749602287357e+00
+-2.1346400673827468e+01
+1.3526824370236719e+01
+8.9489355431529738e+00
+-3.9218242749739112e+01
+1.0340026287149938e+01
+-3.4674145922223047e+00
+-2.7774286378223099e+01
+1.7323573332256361e+00
+1.7773617761044240e+00
+-2.0623838978558361e+01
+6.0539856046263321e+00
+-9.9618990904629490e-01
+-2.2216673528866863e+01
+6.5295098650630328e+00
+-1.1673056094978411e+00
+-2.1958587295416237e+01
+2.9247939680070130e+00
+1.3562394843594927e+00
+-2.0611424889953476e+01
+2.9581246655192635e+00
+1.1634749431084992e+00
+-2.0523436371113540e+01
+2.7802351707552346e+00
+8.9731147260699440e-01
+-2.0463463802389366e+01
+2.5899728557928428e+00
+1.9426467056035963e+00
+-2.0778462397491246e+01
+4.6145108750416153e+00
+1.3307143970642921e+00
+-2.1641160749481731e+01
+1.4673583315317420e+00
+-6.7291599903706867e-01
+-2.0364587684153626e+01
+1.0541036965222534e+00
+1.7899376705307293e+00
+-2.0697152213112027e+01
+3.1751799931221725e+00
+2.6821364566190559e-01
+-2.0461629498993148e+01
+2.8905263164174628e+00
+8.4090994329053004e-01
+-2.0394571602229050e+01
+3.9456837009951955e+00
+8.2461512585909602e-01
+-2.0957840224215161e+01
+1.9235375193433426e+00
+3.0172214399502323e-01
+-2.0229423070706861e+01
+1.5014300209615532e+00
+-3.3504168768765269e-01
+-2.0266306747827787e+01
+4.1680142510946583e-01
+-1.1405672593326079e+00
+-2.0771694768513889e+01
+-4.6012591094728759e+00
+9.0431606262834983e+00
+-4.4928505161397084e+01
+5.2495375896516094e-01
+-1.7819019149079363e-01
+-2.0470931250659721e+01
+-1.4472572761548383e+01
+5.1126803194840917e+00
+-3.9650770365428514e+01
+-1.0486382535004988e+00
+-2.1409227831138673e+00
+-2.0628208531492007e+01
+-6.4266715460134649e-01
+-2.2610345234051050e+00
+-2.0476044781854508e+01
+-3.3436122460793567e+00
+-2.7014679999069802e-01
+-2.2932915265786182e+01
+-9.0898607642518261e+00
+2.4921454497038846e+00
+-3.6038983533744371e+01
+-1.3103683894440426e+01
+-8.5672023287917192e+00
+-2.0688090055003840e+01
+-7.5349146315005520e+00
+1.5143240646161393e+00
+-3.4497743846917857e+01
+-1.3861423317563897e+01
+5.1393994110778971e+00
+-3.9781325737237069e+01
+-9.1325566920914572e+00
+2.6363712614530725e+00
+-3.6231663649575822e+01
+-1.3151385808415927e+01
+-7.2712340840776397e+00
+-2.2545413297024961e+01
+3.9960047836876660e+00
+1.3747927635331618e+00
+-2.1160576477049919e+01
+2.9504467264964309e+00
+1.9569724415140264e+01
+-4.8599303937376249e+01
+2.7758325903171142e+00
+-1.0286532086977640e-01
+-2.0399873878643003e+01
+-1.6524406901423060e+01
+9.6625350589133863e+00
+-4.1821922401183727e+01
+3.0415297855027226e+00
+1.9669105513647441e+01
+-4.8636489293514686e+01
+4.8271527618724424e+00
+-2.0880136703751213e+00
+-2.0785681031948435e+01
+9.8441825085549384e-01
+-2.7526868743721553e+00
+-1.9827335555090261e+01
+-7.6011433879118844e+00
+1.5667263354549657e+01
+-4.2585830916155494e+01
+-3.8267922847895375e+00
+8.0732210966698208e+00
+-4.3567870692044835e+01
+1.4673583315317420e+00
+-6.7291599903706867e-01
+-2.0364587684153626e+01
+-1.7683604385648684e+00
+-8.0611655599942029e+00
+-2.1460824117587016e+01
+2.0798657575453374e+00
+2.0237598638716914e+01
+-4.7157835554599416e+01
+-1.6114080199439504e+00
+-1.1245829427386331e+00
+-2.1583358904368289e+01
+6.9508927224951633e-01
+1.2309414171409796e+00
+-2.0568980531617918e+01
+1.3597354380333138e+01
+3.3317405204424289e-01
+-3.2444466349697123e+01
+-4.8836841968830056e+00
+-7.2329907453632734e+00
+-2.2651365997237189e+01
+-1.8828328369632594e+00
+-8.5935975057540475e+00
+-2.0640108054079189e+01
+1.0610483603474128e+01
+2.0169941172052564e+01
+-5.7034863718673755e+01
+1.0061247816487581e+01
+1.9956100533045493e+01
+-5.7113557071982250e+01
+-2.8972749593213312e+00
+1.7450997415677712e+01
+-4.5361978657642787e+01
+-3.8637386413202925e+00
+1.7062408870257372e+01
+-4.4696751193066603e+01
+1.3418128544185167e+01
+9.4796215504078383e+00
+-3.9041592884612669e+01
+2.7097395250664849e+00
+5.3829356184887067e-01
+-2.0257115378634897e+01
+6.9090866893452352e-01
+-3.6617621236963721e-01
+-2.0486516829874805e+01
+-2.1409214584201215e+00
+-8.4351754752178500e+00
+-2.0949421717221774e+01
+3.2015974115959245e+00
+1.9377624955235529e+01
+-4.9230247836063640e+01
+-9.8501700443195328e-01
+1.8120576697022351e+01
+-4.7037831668741305e+01
+-9.8501700443195328e-01
+1.8120576697022351e+01
+-4.7037831668741305e+01
+8.6928178002715786e+00
+1.8811560031470510e+01
+-5.6396555577503271e+01
+1.3882365291486959e+01
+1.4102930526518588e+01
+-5.1889351423792782e+01
+6.4899988281955707e+00
+-1.1543469861621827e+00
+-2.2034216218757461e+01
+-4.8817334506566723e-01
+-1.0423758641356928e+00
+-2.0943882970638217e+01
+3.0003996021868469e+00
+1.0131843743450109e+01
+-4.6460809737190864e+01
+1.7343793179652476e+00
+8.4598461577036073e+00
+-4.4220524571832229e+01
+-1.2306976051718008e+00
+5.4339072205879801e-01
+-2.1915390935633930e+01
+-1.5672601637822432e+00
+-4.4838631805322615e-01
+-2.1766956759830496e+01
+-1.3890969807596488e+01
+-6.0614853405191091e+00
+-2.4304847790598398e+01
+4.3377532372845531e+00
+1.8645720453238667e+01
+-5.1721040950154148e+01
+-2.7954241757105884e+00
+1.7713382245054152e+01
+-4.5182332542578436e+01
+-8.3443863842715018e+00
+1.4441106242541561e+01
+-4.3437246783742886e+01
+1.2517322187604805e+01
+-4.2629823120142216e+00
+-2.6478985414832053e+01
+1.2403548944585848e+01
+-4.1515758522289312e+00
+-2.6807891331241734e+01
+-7.6059530483466267e+00
+1.5642393782332258e+01
+-4.2281312191895772e+01
+-9.6511105728197002e+00
+3.2143966457490332e+00
+-3.7034217828081395e+01
+3.1309580611551087e+00
+5.2610035590101589e-01
+-2.0464965436843066e+01
+-1.1025435119567764e+01
+1.1186071969790179e+00
+-3.4184006082766984e+01
+8.5803169204355303e+00
+1.7184510749327018e+01
+-5.6011788640708545e+01
+1.3271882228092290e+01
+9.8477021228524162e+00
+-3.9758218237869819e+01
+1.1618717418119155e+00
+2.1801685350577724e+00
+-2.1152906453578698e+01
+-5.3358912628025401e-01
+2.4577029375838362e+00
+-2.2052570045336513e+01
+1.4227103158055943e+00
+1.7233607586226685e+00
+-2.0615923680119405e+01
+1.4227103158055943e+00
+1.7233607586226685e+00
+-2.0615923680119405e+01
+1.9343948142702390e+00
+1.5719324151298069e+00
+-2.0537473608369734e+01
+4.2398565617359001e+00
+5.9862399274736100e-01
+-2.1104844706862497e+01
+1.3517034511406310e+01
+5.4901205493967820e-01
+-3.2664572327907187e+01
+2.6397878588773818e+00
+7.1501021881425086e-01
+-2.0338329587613085e+01
+1.3597354380333138e+01
+3.3317405204424289e-01
+-3.2444466349697123e+01
+1.3864683371437185e+00
+7.1188541887860024e-01
+-2.0286005108593628e+01
+4.5738590614811745e+00
+1.7018019650801783e-01
+-2.1364577651801952e+01
+1.3039928237950365e+01
+6.2176788383513343e-02
+-3.2547901480511491e+01
+5.3313042449875008e+00
+-3.7352928692783655e-01
+-2.1895117307526778e+01
+2.1411821783611305e+00
+-2.3373567503780831e-02
+-2.0211119980137553e+01
+6.4785953372010763e+00
+-1.0811486374677608e+00
+-2.2075595959305932e+01
+5.4975881897177752e+00
+-1.2033955204519733e+00
+-2.1882423642102705e+01
+-2.4525501739312738e+00
+7.7595916725399527e-01
+-2.3307948872262919e+01
+2.6145588235970947e+00
+-1.0227955676026492e+00
+-2.0555954839635998e+01
+2.1554179111335587e+00
+-9.4868297878841779e-01
+-2.0463733558885153e+01
+-2.0972883586577740e+00
+2.6757874589347747e-01
+-2.2654084889524714e+01
+-2.0972883586577740e+00
+2.6757874589347747e-01
+-2.2654084889524714e+01
+1.3444757871612050e+00
+-1.1130041694515276e+00
+-2.0529786755944439e+01
+-1.1330974627277148e+00
+-6.0961160399631897e-01
+-2.1539275399680410e+01
+1.1692754940039679e-01
+-9.9502585029440671e-01
+-2.0898505636173624e+01
+-2.7530103038954081e+00
+-1.1643562270758816e+00
+-2.1861728090372125e+01
+-1.5312275539936118e+00
+-1.5647370758220713e+00
+-2.1398595424777842e+01
+-1.6858062891659751e+00
+-1.7373088126309055e+00
+-2.1164827393958589e+01
+-1.0735420236694029e+00
+-2.3564863459971450e+00
+-2.0318292797416703e+01
+9.1950394416793746e-01
+-2.9972014855124112e+00
+-1.9575410640846492e+01
+1.3194455158514998e+01
+3.3890643453712745e+00
+-2.9271787509027433e+01
+1.3838818227429634e+01
+1.8459937930780490e-02
+-3.1258488511964245e+01
+1.4311239168291937e+01
+-5.0952156036178164e-01
+-2.9124795546801764e+01
+1.3458807390426296e+01
+2.6074965792072902e-01
+-3.2653472992109123e+01
+2.8296426411410303e+00
+1.4332643209455270e-01
+-2.0357196890050876e+01
+5.5072480062600038e+00
+-1.4168552205260878e+00
+-2.1565342098790090e+01
+-1.1027531454089738e+00
+-1.0349963835901321e+00
+-2.1038793413419995e+01
+4.5210306794050963e+00
+-3.3300946708602464e+00
+-2.1247397832185467e+01
+-1.9150292779206064e+00
+-1.7340122875344841e+00
+-2.1192975293533632e+01
+1.2284470631692407e+01
+5.9422454233369084e+00
+-3.0267305016999192e+01
+1.3266429564824341e+01
+2.6702279250542444e+00
+-3.0604407344616856e+01
+1.3467987579269840e+01
+1.2040728213383707e+00
+-3.1799559792775607e+01
+1.3789362292829438e+01
+-4.8884723189715172e-02
+-3.1956384106948878e+01
+1.3885980307041612e+00
+-3.5619352878175881e-01
+-2.0311327060604430e+01
+-2.5518154715268468e+00
+-1.5537523104691444e+00
+-2.1482235584843167e+01
+3.3218462385148242e+00
+-8.1351650085005591e+00
+-2.1481084170527794e+01
+1.3090706279687927e+01
+2.5407447752542440e+00
+-3.1615864011815273e+01
+1.3204321091340681e+01
+2.0671487279637946e+00
+-3.1991991780930327e+01
+-1.5904332934491858e+00
+-2.5134868665474530e-01
+-2.1915315749017015e+01
+-1.2479510702913965e+00
+-3.5240352548949805e-01
+-2.1803866433726331e+01
+-3.0711857470235043e-01
+-1.2441560178389315e+00
+-2.0737980354226082e+01
+-2.0077934618472106e+00
+-1.1966811900128880e+00
+-2.1885825312085192e+01
+1.1043765388993725e+01
+-5.9669879603784093e+00
+-2.4090608627455683e+01
+9.3059750548499949e+00
+-5.9744709846489759e+00
+-2.4242111604920009e+01
+1.3992278809234451e+01
+8.4689370911360875e+00
+-3.7188541836781418e+01
+3.2273351736285472e-01
+-1.3853765334300991e+00
+-2.0541007134520733e+01
+1.0640075401449169e+01
+-5.0412384149055374e+00
+-2.5630974570664556e+01
+9.5095845607657967e+00
+-6.3963878512278844e+00
+-2.3596060877928245e+01
+1.0360149463426254e+00
+-1.2553662606124254e+00
+-2.0641372848812161e+01
+-3.3413391474371873e-01
+-2.5266454527436246e+00
+-2.0073523602902863e+01
+-3.1862239300992670e+00
+1.7222644572407777e+01
+-4.5360505828683969e+01
+9.0619567519613256e+00
+2.0137239748606206e+01
+-5.4398809705958335e+01
+1.4576969150049848e+01
+2.1306496978785937e+01
+-5.9939953445360104e+01
+2.6889352928266201e+00
+1.9227143723747474e+01
+-4.9099835706919407e+01
+1.4162053238573245e+01
+2.3386211762418622e+01
+-5.5294627779384996e+01
+-7.1896128051006505e+00
+-2.1178961147313866e+00
+-2.9737753112062105e+01
+1.3001803550730447e+01
+2.3637770199164017e+00
+-3.2484486282444891e+01
+2.1210695913591153e+00
+6.0689910238313471e-01
+-2.0195799653886723e+01
+-9.4609998325442746e-01
+-1.6402100999091878e+00
+-2.1080382383286306e+01
+1.3178199208517938e+01
+1.5745366835858843e+00
+-3.2730047923077599e+01
+1.3515664672005354e+01
+6.3358281031539543e-01
+-3.3159071869152754e+01
+-1.3867712447742935e+01
+9.0561054065561439e+00
+-4.5119452957633470e+01
+1.3532192584085371e+01
+4.3676885126897669e-01
+-3.2963645042765982e+01
+-1.1383685994695306e+01
+1.3396130669703681e+00
+-3.4467744354433933e+01
+-3.6500004804526665e+00
+-7.6725717325930294e+00
+-2.2045946835516791e+01
+-4.1215472629830927e+00
+-8.0203227381327462e+00
+-2.1550006907993115e+01
+1.3796256067828933e+01
+1.0785450382543762e+00
+-2.9840664472145900e+01
+1.3747530433819469e+01
+6.3944422841228221e-01
+-3.1075409771299022e+01
+1.4566163313169801e+01
+-1.6769498689134146e+00
+-2.9883522595984925e+01
+-6.0856539721338587e-01
+-8.0051057740812970e-01
+-2.1305433994946874e+01
+1.2860967363808825e+01
+-4.8754825051425685e+00
+-2.5628252185557283e+01
+-3.8387086674669728e+00
+-7.9585552090462999e+00
+-2.1594246826324056e+01
+1.3902925068608404e+01
+8.8238548999127762e+00
+-3.7059870798300437e+01
+1.3401737749690481e+01
+2.3252338685731533e+00
+-2.9570874176860869e+01
+1.1807804185271408e+01
+-5.0765952749071195e+00
+-2.5179657420981162e+01
+-3.1784495273014253e-02
+-1.7176743360136365e-01
+-2.0719291312008444e+01
+1.3295673931202414e+01
+1.0007531138580935e+01
+-3.8800670963793529e+01
+2.8521546299338723e+00
+4.1943561659907175e-01
+-2.0361700757077166e+01
+4.3435020053446299e-01
+1.7071846811830582e+00
+-2.0887151768647740e+01
+2.3117771810515744e-01
+6.1123830771190302e-01
+-2.0611695244577721e+01
+9.5090538317684210e+00
+-5.3091471215746644e+00
+-2.5271507075286930e+01
+-9.0105456994444844e-01
+-1.9130396233469866e+00
+-2.0978763157472091e+01
+1.4145845908147379e+01
+7.7621619477504726e+00
+-3.7300424273652681e+01
+1.3305094641360125e+01
+9.3053517564977462e-01
+-3.3079930081879098e+01
+1.4567314128038271e+01
+-1.5462512248362130e+00
+-2.9703678922826757e+01
+-3.1741644671473368e-01
+-5.7131986848949967e-01
+-2.1058772894856144e+01
+1.1049612991388797e+00
+-1.1436849051917604e+00
+-2.0586779180384823e+01
+1.4168127837373947e+00
+-5.8417140316865002e-01
+-2.0314814337276513e+01
+1.3327796746569266e+01
+1.0594544386465115e+00
+-3.2797516401963847e+01
+8.3179937270995126e+00
+2.1220055542936205e+01
+-5.2590123270895056e+01
+6.0820972409379537e-01
+1.9093691213366345e+01
+-4.6560740066997482e+01
+1.1206342402070000e+01
+2.3497904930564900e+01
+-5.2326929734118586e+01
+1.0520174717922961e+01
+2.0955447282330770e+01
+-5.5688921453720326e+01
+1.3144178848704966e+01
+1.0058829557454050e+01
+-4.0386892987562817e+01
+1.3645231961046186e+01
+1.4146444646852980e+00
+-3.0199354290207733e+01
+4.3160954660141284e+00
+1.2000324321463678e+00
+-2.1333171947461182e+01
+2.7996882949745951e+00
+7.9086193112677317e-01
+-2.0415450936822580e+01
+6.4005669011397293e-01
+2.5753855436732997e-01
+-2.0412766424271400e+01
+2.4457224239655639e+00
+-6.3547530310306222e-01
+-2.0377281744616205e+01
+4.4736876649784953e+00
+-1.1150732169171691e+00
+-2.0957613625411767e+01
+-3.2152779287008570e+00
+-6.3037924697306635e-01
+-2.2557617026465984e+01
+1.0302123892829158e+01
+2.0797231692705410e+01
+-5.5748612935977903e+01
+1.3692474758280687e+01
+8.9073989592569855e+00
+-3.7938668133235915e+01
+-3.7984502343723054e+00
+1.4289557270664620e+01
+-4.8319935420206463e+01
+3.0236144550761588e+00
+8.5887301953688444e-01
+-2.0499807547490825e+01
+1.3665366818955063e+01
+2.2347594156436043e-01
+-3.2413995056233077e+01
+1.9920001139637697e-01
+9.4114761201824781e-01
+-2.0783677965541582e+01
+2.8169387159881425e+00
+2.7093803060200045e-01
+-2.0315884237168891e+01
+3.9022357702514450e+00
+-1.6280718539716539e+00
+-2.0701566670730305e+01
+5.0094372792914510e-01
+-2.8085931905315515e+00
+-1.9829278005205797e+01
+1.5087777621871739e+01
+2.1730413453894261e+01
+-5.9635576159735230e+01
+2.8652479024391417e+00
+3.7221299912659704e+00
+-2.3374627246376853e+01
+3.2769873246167234e+00
+3.4881854196377842e+00
+-2.2918363713769846e+01
+4.4997500607538292e+00
+6.7032731225114872e-01
+-2.1316246299891876e+01
+6.7793544904019221e-01
+7.1241579413505229e-01
+-2.0445597893908445e+01
+-1.5319628257546769e-01
+7.0426561296425461e-01
+-2.0877127455983043e+01
+1.3885980307041612e+00
+-3.5619352878175881e-01
+-2.0311327060604430e+01
+1.4645610390365801e+01
+2.3698910635311840e+01
+-5.5815694798585113e+01
+5.0997269765820556e+00
+1.9324836194474440e+01
+-4.8753074300172102e+01
+3.4875493133058844e+00
+2.7393330883945994e+00
+-2.1703874795039503e+01
+1.3006182578353858e+01
+2.6049500099070637e+00
+-3.2148086786648321e+01
+1.3199116105731147e+01
+1.2847928890623446e+00
+-3.2543251132684397e+01
+1.3147276456679458e+01
+1.0537858982004400e+01
+-3.9382431644687976e+01
+-1.7565728939475460e+00
+1.2103478869400655e+00
+-2.2780163703968711e+01
+1.7464579526478508e+00
+2.5764545391642753e-02
+-2.0156206535915494e+01
+-4.0359378533374652e+00
+1.5950095724434870e+01
+-4.6164519187505128e+01
+1.3792930305601054e+01
+8.6575389803600853e+00
+-3.7837957700858851e+01
+1.2540928214714382e+01
+4.0162733251895206e+00
+-3.2475603753600602e+01
+1.4086898396545211e+00
+-1.4045626921654488e+00
+-2.0663605758065316e+01
+-4.4077617040661599e+00
+-7.9470147391240449e+00
+-2.1715786058407438e+01
+1.4701108355088512e+00
+1.2665465334743402e+00
+-2.0463871867218611e+01
+1.3446631799352440e+01
+1.9748365078861583e+00
+-3.0054017154668362e+01
+1.1558779002185624e+00
+1.2607699581506024e+00
+-2.0448995338556916e+01
+7.2429534199745049e-01
+-1.2192550358979763e+00
+-2.0746786022286322e+01
+8.0637990941484483e-01
+-6.0205177496164664e-01
+-2.0354369268819489e+01
+8.2384220347263448e-01
+-1.2991036149425357e+00
+-2.0665722055600160e+01
+5.8250476783637861e-01
+-1.9410581071900572e+00
+-2.0488521829757691e+01
+1.2866530552873350e+01
+4.1139414794572486e+00
+-2.9659392358536167e+01
+1.0468430425147503e+01
+2.0239827495854851e+01
+-5.6927111165864623e+01
+-7.5314259786783495e+00
+1.5766120028291274e+01
+-4.2586060677667106e+01
+1.2586890096020738e+01
+4.5747257397617753e+00
+-3.0673635646157670e+01
+1.1925424013814251e-01
+9.9290631638168469e-01
+-2.0747203637960475e+01
+1.3064734896156742e+00
+4.5659519991152059e-01
+-2.0247690409121507e+01
+1.4630845418106594e+01
+-1.7592292225405921e+00
+-2.9845803047615739e+01
+1.7400592055664269e+01
+2.3054963572611417e+01
+-6.1275300740349088e+01
+-4.7997999391344998e-01
+-1.7186571843032175e-01
+-2.1063215977344782e+01
+-4.8553468720581422e-01
+-8.7888948511226728e-01
+-2.1163054474228161e+01
+-4.7716996729480101e+00
+6.1675637135057251e+00
+-4.1171636746995453e+01
+1.4388766684583855e+01
+-5.4209601309096023e-01
+-2.9354423200034116e+01
+2.1626526614924768e-01
+-1.1532336079709842e+00
+-2.0796271043478299e+01
+1.2956746466016551e+00
+-8.4383943748447212e+00
+-2.0922847090273873e+01
+2.8701396492619619e-01
+-1.0804084998468368e+00
+-2.0785006013859338e+01
+1.1337175075303638e+00
+-8.2930714582259810e+00
+-2.1133719208303113e+01
+1.6967134723063928e+01
+2.2213773893726810e+01
+-6.2464951672803465e+01
+1.6667487875475320e+01
+2.1515913391182384e+01
+-6.1611371173791781e+01
+-4.3619264411510955e-02
+2.2295447889349420e+00
+-2.1537045569232845e+01
+3.8570027481960265e+00
+-1.2615165299598459e+00
+-2.0848762974438159e+01
+2.9233437585233797e+00
+-2.7487338313832059e+00
+-1.9921291821972499e+01
+-2.1447112258650942e+00
+3.1421121098784938e-01
+-2.2714925563644076e+01
+2.1915769313671274e+00
+9.4947101669498157e-02
+-2.0248720855009608e+01
+1.0251022824235128e+00
+3.3622405030195818e-01
+-2.0333401582665196e+01
+8.1836461614070655e-01
+4.0499396624819134e-01
+-2.0359334539223948e+01
+9.4663918691246032e+00
+-6.3658871161548962e+00
+-2.3836508759605106e+01
+2.6062688245983540e-01
+3.9427139225627189e-01
+-2.0623808452327157e+01
+4.3462311844134696e-03
+2.7329127298105987e-01
+-2.0799454860418486e+01
+5.1595951232779846e-01
+1.8749299402652983e-01
+-2.0488634077241542e+01
+-2.4101922337619469e-01
+3.6910539452058522e-01
+-2.0904848106614335e+01
+9.9487481743999473e-01
+7.4553380180392126e-01
+-2.0344885032879279e+01
+9.9487481743999473e-01
+7.4553380180392126e-01
+-2.0344885032879279e+01
+1.4756623509501416e+00
+9.9976100018223074e-02
+-2.0232685151051207e+01
+-2.5108992462822006e+00
+-9.7663456846315755e-01
+-2.2160099474529037e+01
+1.7980437671378948e+00
+-3.7752577827497658e-01
+-2.0255551624807733e+01
+1.4437040906022901e+01
+-1.0752326871403262e+00
+-3.0138998374235523e+01
+1.3092894773361653e+01
+3.4334382168600044e+00
+-2.9759024304751364e+01
+-2.7280610437986669e-01
+3.7913640484595890e-01
+-2.0945551919224602e+01
+5.7816951869108024e-01
+-7.7011451949068954e-01
+-2.0581381982197666e+01
+4.0807220131042339e+00
+5.9882382309430238e-01
+-2.0980403023562406e+01
+1.1513917683419994e+00
+1.4445890451844610e+00
+-2.0479315474907562e+01
+1.9247872215476058e+00
+1.4618072164881808e+00
+-2.0422514631981464e+01
+1.2600096405455480e+01
+3.5422968600723004e+00
+-3.2513151025540495e+01
+-7.8656734123429617e-01
+-1.4388807715050806e+00
+-2.0863434927569774e+01
+1.3617861673173461e+01
+1.2416627651094772e+00
+-3.0949974683278437e+01
+2.7582264699898378e+00
+1.1025965713371182e+00
+-2.0399790491234633e+01
+4.6399994323082633e-01
+-7.1696257055022572e-01
+-2.0635151101062004e+01
+1.1520771368618577e+01
+-4.0520226308675937e+00
+-2.6955200501031069e+01
+-2.3380473155292796e+00
+-7.9612086730676754e+00
+-2.1646337739658357e+01
+2.3802848616572119e+00
+-7.9418941649145969e-01
+-2.0509909083227694e+01
+-2.0285201908342714e+00
+1.7896382750585406e+01
+-4.5212898798765572e+01
+1.4397901875645310e+01
+-5.2200527192684176e-01
+-2.9118396062704175e+01
+5.9201632833670059e-01
+-5.3495505888503825e-01
+-2.0533325619925826e+01
+-6.5183877034956550e-01
+-1.7793367142034930e-01
+-2.1270910499215166e+01
+6.3076063057300069e-02
+-2.8917477123154384e-01
+-2.0762894942162369e+01
+1.2830186932625208e+01
+4.3374991676795309e+00
+-2.9516573268671539e+01
+8.7920594298493215e-01
+1.9000406279613983e+01
+-4.7224133980526283e+01
+4.1688990029260120e+00
+-4.1902668128700888e+00
+-2.1875171308061933e+01
+-2.5238510720290845e+00
+1.5350582623962741e+00
+-2.4284742007094668e+01
+3.2594857953357854e+00
+1.9631037441263235e+00
+-2.1087888792537704e+01
+8.8758620944239797e-01
+1.2605895281753894e+00
+-2.0610056597907967e+01
+-1.2970662108605553e+00
+-7.6795298236230669e-01
+-2.1364981973955675e+01
+7.3820080774453549e+00
+8.8118862501464559e+00
+-4.4465835252943755e+01
+2.0974074188038418e+00
+-3.1104901239936944e+00
+-1.9931473926301653e+01
+1.2920634160718089e+01
+2.8329013048144165e+00
+-3.1932603318043494e+01
+-7.4562499617473446e+00
+2.3430280675090969e+00
+-3.5830367561047467e+01
+3.0236144550761588e+00
+8.5887301953688444e-01
+-2.0499807547490825e+01
+-3.3283218426925443e-01
+-2.5747474208440186e+00
+-2.0076507038373499e+01
+1.4711343054044124e+00
+7.7689873248363330e+00
+-4.3122034548572195e+01
+-2.7504364232132055e+00
+-3.6445994579553878e+00
+-2.3840836368449455e+01
+-8.0520514334319273e+00
+2.5169574295598545e+00
+-3.5776102775652497e+01
+2.7996882949745951e+00
+7.9086193112677317e-01
+-2.0415450936822580e+01
+1.2140027328789298e+01
+-4.8427928428014120e+00
+-2.5573328241632016e+01
+1.4450777156945245e+01
+-1.6020247239919372e+00
+-3.0128340965672106e+01
+-4.1215472629830927e+00
+-8.0203227381327462e+00
+-2.1550006907993115e+01
+8.1791962570619736e-01
+1.1654174712200875e+00
+-2.0496562644034206e+01
+1.3711112615261733e+01
+9.0676803467548996e+00
+-3.7975008978736419e+01
+-3.2640359009620217e+00
+-8.1253056687332670e+00
+-2.1494106647240205e+01
+1.3747530433819469e+01
+6.3944422841228221e-01
+-3.1075409771299022e+01
+-3.7981931330323224e+00
+-8.0305479910469213e+00
+-2.1538325076904620e+01
+1.2777735463945191e+01
+3.1437782909166674e+00
+-3.1755194310362281e+01
+-3.6720043463687064e+00
+-7.9161213812236548e+00
+-2.1685248802901299e+01
+-3.7894947393334366e+00
+-7.8799479725334285e+00
+-2.1755093020553424e+01
+-2.3056808379653417e+00
+-3.0855319223964601e+00
+-2.2706115944345449e+01
+-6.3046635929247397e-01
+-1.0402815884081764e+00
+-2.0935162365607106e+01
+4.1759082264915848e-01
+-2.7683296535632151e+00
+-1.9851600456842643e+01
+-1.2958492641413570e+00
+-2.0809060810174111e+00
+-2.0825806151776110e+01
+1.4346151327364115e+01
+-1.0911746132266826e+00
+-3.0454532285780278e+01
+6.6678849714328775e-02
+-4.0107782050352929e+00
+-2.1398538643318950e+01
+6.1155378359149717e+00
+-8.8244827271038584e-01
+-2.2342851602559694e+01
+-4.3952088754841750e-01
+9.4778477259453764e-01
+-2.1149295822292160e+01
+4.1544232323765371e+00
+-1.1426708622757582e+00
+-2.1004268589988911e+01
+1.4064112424459802e+01
+-5.2509610107239479e-01
+-3.1085734990737038e+01
+9.9194594415723214e-01
+-2.6603814241747465e+00
+-2.0009410538495622e+01
+1.3590271322581808e+01
+9.9752865085733493e+00
+-3.6617705792243996e+01
+1.4569031228499568e+01
+-1.4765845753773632e+00
+-2.9739952300137375e+01
+1.4439404812025767e+01
+-1.1864826454825415e+00
+-2.9918246088255898e+01
+8.1516735414019925e-01
+1.2903486760106340e+00
+-2.0520751064253126e+01
+1.2551663587473609e+00
+1.7563849716789417e+00
+-2.0657127703221828e+01
+1.9147184507103252e+00
+1.3728456662750734e+00
+-2.0424778727509029e+01
+-1.4418906709813444e+00
+7.5284074348183561e-01
+-2.2211259038750175e+01
+-2.5107891466275163e+00
+8.3014802692682066e-01
+-2.3376256293481767e+01
+1.8480112477953177e+00
+-1.5357644402311030e+00
+-2.0342270487942155e+01
+-3.7679686612692515e-01
+1.7940133282027251e+01
+-4.7955784215035315e+01
+1.3831993731892181e+01
+9.0737428193740151e+00
+-3.7052037624927635e+01
+1.3510728556530385e+01
+9.8930705584641139e+00
+-3.7708921215733660e+01
+1.3055104197325566e+01
+2.9164144247999899e+00
+-3.1622206915655166e+01
+1.4077154098202666e+01
+2.0738654030851966e-01
+-2.9698322553588174e+01
+-3.6253568407289674e+00
+-7.7449791966312116e+00
+-2.1930341870669235e+01
+-1.4841129620458609e+01
+5.3901453631855762e+00
+-4.0126276706660775e+01
+3.4205499849674652e+00
+-5.8072828591254968e+00
+-2.2752228931514306e+01
+2.0303478699565090e+00
+1.6619301713834982e+00
+-2.0524171071947702e+01
+1.7051824886123375e+00
+1.6718440756480808e+00
+-2.0588981369199040e+01
+8.9520235848595819e-01
+2.9704978122499992e-01
+-2.0299410124365057e+01
+2.2105671400475959e+00
+8.0914974368872483e-01
+-2.0208479416511601e+01
+1.6867292777294876e+00
+5.7389713094087358e-01
+-2.0189828829162145e+01
+1.7803115146433384e+00
+1.4942246562336012e+00
+-2.0379695441947788e+01
+-1.3220869050229208e+01
+1.2010246289173448e+01
+-4.1725207162477354e+01
+-1.5475028471253619e+01
+1.0838222791522002e+01
+-4.0760241670062840e+01
+-1.0195950900706562e+01
+1.3125515245629000e+01
+-4.3394209085130001e+01
+-1.5147544388726102e+01
+1.1349496253357062e+01
+-4.2804268523978024e+01
+-5.3439422005708668e+00
+1.3011574541083796e+01
+-4.9567018994308846e+01
+9.8588880925468836e-01
+1.4660344277122026e+00
+-2.0656367630605093e+01
+-2.1749586021643754e+01
+1.1855728430622594e+00
+-3.4670789436116706e+01
+-1.4525086575125938e+01
+1.2392779541452952e+00
+-3.4488889858206406e+01
+-1.1514581264070527e+01
+1.9618209137840330e+00
+-3.5336571772918312e+01
+-1.3674424831793909e+01
+4.1664881508945388e+00
+-3.8453524585560928e+01
+-1.1556659447859751e+01
+2.0373706438056383e+00
+-3.5449427710362471e+01
+-8.2776549634852099e+00
+7.4531861142046036e+00
+-4.2787087551441424e+01
+-6.9738888873818734e+00
+7.9632668140816367e+00
+-4.3527685906234098e+01
+-1.5970047779794122e+01
+1.3655891343176596e+00
+-3.4688031186195715e+01
+-1.5763984485893371e+01
+1.3864976144156169e+00
+-3.4642215456551575e+01
+-1.4978991267732159e+01
+6.3060293941076120e+00
+-4.1230922294682919e+01
+-1.6374689346668443e+01
+2.0166262822303951e+00
+-3.5388327278894479e+01
+-1.5269140915535569e+01
+6.0292341103268825e+00
+-4.1030822649142408e+01
+-1.6317068297831792e+01
+1.7732305496502734e+00
+-3.5508504294654564e+01
+1.3048245509482951e+01
+1.2541086663343858e+01
+-3.4999079942317124e+01
+-3.9930068743623162e+00
+9.0525542909264907e+00
+-4.5246135638163068e+01
+-3.2059671900356128e+00
+8.8032165936940672e+00
+-4.4516649579559669e+01
+-1.1649588911765942e+01
+1.2243167871988629e+00
+-3.4119008424330566e+01
+-5.3145153485135657e+00
+1.0898251525722149e+01
+-4.7475010802446270e+01
+-1.3491504121178743e+01
+4.7766260107701495e+00
+-3.9324911429455803e+01
+-1.3125139194639974e+01
+1.1961123524779467e+01
+-4.1609786972082532e+01
+-1.0786228124185104e+01
+8.1468648959803325e+00
+-4.3605526262661542e+01
+-2.2085028699321182e+01
+2.2803653540033157e+00
+-3.5861270420561553e+01
+-2.2191360328467422e+01
+5.9673273976623496e-02
+-3.2931589574668834e+01
+-2.2060404951128607e+01
+1.3308244549665440e+00
+-3.4737079092699801e+01
+-7.7208300564934342e+00
+7.2901492899400431e+00
+-4.2474656580833724e+01
+2.4644884039945198e+00
+7.8874895920190136e-01
+-2.0310587985674793e+01
+7.8620838968238056e+00
+2.1885337241803839e+01
+-5.0201692263578529e+01
+-1.3875131554937992e+01
+1.1995224530760275e+01
+-3.9926067887737268e+01
+-1.2376354615529754e+01
+1.1892612310980789e+01
+-4.2577003522936771e+01
+9.9044286936046557e+00
+-4.8256407778063073e+00
+-2.5818138321445257e+01
+7.7579181394766916e+00
+2.0881323041591919e+01
+-5.3916834899444481e+01
+-1.5187510154449106e+01
+5.7661341152600452e+00
+-4.0714915834842479e+01
+-1.4603572646445846e+01
+1.3949840425647484e+00
+-3.4640813800477275e+01
+-1.3587738325614881e+01
+4.4968316168152329e+00
+-3.8804812168518417e+01
+6.8561696944249553e+00
+2.0191626604400923e+01
+-5.1556634655548002e+01
+5.6208634857824604e+00
+1.9627135983397977e+01
+-5.0607154587884772e+01
+-4.6980840767935943e+00
+-8.3259795972485549e+00
+-2.1251760952933346e+01
+1.5463510685574389e+00
+8.3054144774839269e+00
+-4.4017753507454167e+01
+-7.1905056104307192e+00
+1.6758330634627434e+01
+-4.1289538781939562e+01
+2.1700513357699253e-02
+2.6838592228114999e+00
+-2.1835182079217677e+01
+-6.5110569825551323e-01
+3.2322107704403753e+00
+-2.3105009194999905e+01
+-6.3978459650183854e+00
+-8.1367993448683684e+00
+-2.1360248068859484e+01
+9.8700319155979201e+00
+1.4768944980768813e+01
+-5.2546786880832144e+01
+8.2236858801507839e+00
+1.4300549850370581e+01
+-5.2062174259630424e+01
+9.2444991290888652e+00
+7.1596913704662031e+00
+-4.2465428651178122e+01
+3.0913775647430723e+00
+3.5290907539094589e+00
+-2.3141419430919978e+01
+3.5004595823383058e+00
+2.9408940155743362e+00
+-2.1987721143456543e+01
+-1.4443990906707906e+00
+2.3943249934221700e+00
+-2.3096454176751671e+01
+4.3555477449545243e+00
+-9.8429200749803003e-01
+-2.1167197245757528e+01
+2.6361072451645526e+00
+-2.7139519591920007e+00
+-1.9919731786282448e+01
+3.4689403818642583e+00
+-3.8695793825558131e+00
+-2.1049725055589484e+01
+1.0335288095886892e+01
+-4.7922724751489181e+00
+-2.5948882404110229e+01
+9.9517246705901936e+00
+-5.1423894048351446e+00
+-2.5260305487764878e+01
+2.1463804908419521e+00
+-6.4697360291086428e+00
+-2.2033080146734434e+01
+3.9239475503574028e+00
+3.0230725482155432e+00
+-2.2357666300163224e+01
+1.0198774013430514e+01
+-4.8509141173439101e+00
+-2.5907427237844846e+01
+9.5425681550692651e+00
+-5.6171009190158037e+00
+-2.4793204434841392e+01
+-3.8408314446447172e+00
+-7.9029761029408787e+00
+-2.1676602581861079e+01
+1.0922393366233512e+01
+-6.4864527738713500e+00
+-2.3388660742460409e+01
+6.6088555784262804e+00
+-7.4669393331509939e+00
+-2.2224179614715634e+01
+6.6088555784262804e+00
+-7.4669393331509939e+00
+-2.2224179614715634e+01
+-2.3202780971091190e+00
+1.1078325648576977e+01
+-4.7745117571865649e+01
+8.5249570600548541e+00
+1.0123507134074799e+01
+-4.6317597923259257e+01
+-2.0987515408919868e-01
+2.9651338618038765e+00
+-2.2259561710018268e+01
+-9.6644999304180885e+00
+8.0428671819574471e-01
+-3.3792060897869533e+01
+1.0775323215708383e+00
+-1.5122059837686328e+00
+-2.0450706637018811e+01
+5.0592108030537499e+00
+-1.8011374400838276e+00
+-2.1133562443055954e+01
+1.2996709476507199e+01
+1.0796420466025355e+01
+-3.9663443649868199e+01
+3.6268843240026740e+00
+2.8642571721949164e+00
+-2.1920247576869329e+01
+-1.8493016041568768e+00
+-7.9999155860798812e+00
+-2.1623712563126599e+01
+1.5210089385825611e+01
+1.7822343683536104e+01
+-5.6910402668422002e+01
+1.5567855843182343e+01
+1.6420501972874874e+01
+-5.5117415385155766e+01
+4.1177179186688395e+00
+-6.2346179517782685e-01
+-2.1316795896445225e+01
+1.1649791359269794e+00
+-5.1297667368495743e+00
+-2.1946409056080007e+01
+6.9894567577508511e+00
+9.1912818932466042e-02
+-2.3597311674647202e+01
+-4.6992247004602943e+00
+6.4305839232304374e+00
+-4.1282494397276679e+01
+-2.7987396819028545e+00
+-8.1062336132631181e+00
+-2.1365222702384440e+01
+3.2308566455985956e+00
+-1.6289578781716523e+00
+-2.0384091761352760e+01
+1.0541279735380112e+01
+-6.5105890018657053e+00
+-2.3366961546596240e+01
+-9.4509639939295553e+00
+1.2418969036634985e+01
+-4.5108450107187984e+01
+-6.1037448996199850e-01
+3.1405265600378467e+00
+-2.2892947407733800e+01
+9.5031431355934248e-01
+-2.9002144997369959e+00
+-1.9683759758714736e+01
+2.9004522940459858e+00
+-5.1409531289632433e+00
+-2.1994707678170233e+01
+2.6306332946014943e+00
+4.0430937083488478e+00
+-2.3439495173950743e+01
+3.2113781414618434e+00
+-6.4723350947900595e+00
+-2.2047134110031720e+01
+2.9017711924821392e+00
+-3.1130270574005845e+00
+-1.9915047106426950e+01
+3.4974467402758056e+00
+-3.6693465618151921e+00
+-2.0869607308501415e+01
+2.3396980530904079e+00
+3.8560867118429876e+00
+-2.3867107048126858e+01
+4.4611475751638672e+00
+-4.0910663962427503e+00
+-2.1878939855004365e+01
+6.6773416274974791e+00
+-1.0728047552246656e+00
+-2.2109380274897511e+01
+4.0976934926117057e+00
+-4.2717933189653854e+00
+-2.1814208320904189e+01
+6.1924353009548936e+00
+-4.7601991909822444e-01
+-2.2794423253001877e+01
+-1.1900951029346940e+00
+-5.4382398028782557e+00
+-2.3286656398750157e+01
+-1.7108350863920729e+00
+-3.6739854910497640e+00
+-2.2336273519342395e+01
+3.1830913457285690e+00
+3.6182061805262911e+00
+-2.2998235333162100e+01
+3.8316193508402474e+00
+-7.5584362890847046e-01
+-2.0856579071645339e+01
+4.4012001185667682e+00
+-4.4747700485344151e+00
+-2.2257584558844616e+01
+4.2770685962352788e+00
+-6.7078246212384596e-01
+-2.1469430599733208e+01
+6.7353999690286868e+00
+-3.8041642078631410e+00
+-2.4565910014989495e+01
+3.7305204387486168e-01
+-5.8449569457721280e+00
+-2.1643688686863470e+01
+6.0146957583416381e+00
+-1.6356882319966208e+00
+-2.1371278068881338e+01
+-1.4870132626150586e+01
+3.9805614589797700e+00
+-3.8254625559363895e+01
+-1.5787975766107580e+01
+6.1916042379302620e+00
+-4.1279428127592290e+01
+1.1510493234843302e+00
+1.8434194014276436e+01
+-4.8196366192257429e+01
+2.3051538673836838e+00
+2.0250315766269011e+01
+-4.7080692064227200e+01
+8.4063752756478838e+00
+2.1169455522027427e+01
+-5.1725751469351920e+01
+-1.4827633286705217e+01
+8.2283432986472267e+00
+-4.3915748511802057e+01
+3.2095875420157367e+00
+-2.4754973332914290e+00
+-2.0252800723822556e+01
+2.6786733858570013e+00
+-7.1658478152938143e-01
+-2.0423282220578006e+01
+4.1235373587179103e+00
+-1.9328429638131810e+00
+-2.0924883368105242e+01
+5.2589739137814178e+00
+-1.5042900555018148e+00
+-2.1514462284927394e+01
+1.3038418979933420e+01
+1.1037065175558145e+00
+-3.3944311494392025e+01
+5.6101310748003614e+00
+-1.4373087854630633e+00
+-2.1602594265189310e+01
+5.1846290691170083e-01
+-2.2602547751171702e+00
+-2.0534392934847691e+01
+3.4805924935840502e+00
+3.0204851810446187e+00
+-2.2178177137279604e+01
+-2.7749254286585884e-01
+-2.0981672905105211e+00
+-2.0774982254545407e+01
+9.8926373368196785e-01
+-2.3633564438159635e+00
+-2.0363929009061511e+01
+-4.6885842126427582e+00
+-7.4273507261818619e+00
+-2.2337138960217523e+01
+-9.2682728495224453e-01
+-2.6157627196609772e+00
+-2.0492897724468005e+01
+7.0761247444508353e+00
+1.2170793264336158e+01
+-4.9064969602480367e+01
+1.2438502586055840e+00
+-8.1586567629446738e-01
+-2.0465632245106558e+01
+-2.0994441659517499e+01
+1.2842506234314854e+00
+-3.4653034453872969e+01
+-2.1896457743910734e+01
+2.5298724333809854e+00
+-3.6235418381128646e+01
+-2.0675532818646282e+01
+9.3087107602281560e-01
+-3.4126439606729868e+01
+-3.4184613548921252e+00
+8.9669897258457798e+00
+-4.4814869464311180e+01
+-3.9288148242882226e-01
+7.0841353151844555e-01
+-2.1039612330153105e+01
+-1.4790941024684310e+01
+6.0497022082503760e+00
+-4.0570080345224511e+01
+1.4025036167516655e+01
+-3.7708951968483345e-01
+-3.1086781058247919e+01
+1.2189736571691608e+01
+-4.1882707576845650e+00
+-2.6759798385881993e+01
+1.2623624887163633e+01
+3.7813953199125909e+00
+-3.2462691235518946e+01
+-2.0487238243094530e+00
+-8.0168532148607135e+00
+-2.1437853376132427e+01
+5.4485261966491718e+00
+-4.7308540249277655e+00
+-2.3007340207575030e+01
+1.6252257407151987e+00
+-4.8646511418201976e+00
+-2.1766977900933966e+01
+-4.4801332619563947e+00
+-7.8961767049442875e+00
+-2.1781540544373172e+01
+2.4192555254775590e+00
+-2.7048974983921048e+00
+-2.0008342266322632e+01
+-1.9113864539423673e+00
+-8.4593523061357878e+00
+-2.0879730797022571e+01
+1.1911154753162624e+01
+-6.1457464415631469e+00
+-2.3644531656344306e+01
+1.2695502300183229e+01
+-5.9853967709376352e+00
+-2.3833015310352341e+01
+1.1825422592271709e+01
+-5.7400712145812278e+00
+-2.4609009502947423e+01
+1.2422547889918221e+01
+-4.0611715803612158e+00
+-2.6761733810556183e+01
+1.3747565478785848e+00
+-8.4933150452346311e+00
+-2.0921611837780485e+01
+1.3273652585075640e+01
+-5.8446878061383361e+00
+-2.3971056519707975e+01
+-4.8985470365585853e+00
+-1.4887636120550247e+00
+-2.7496458992477240e+01
+-6.1995357022293875e+00
+-4.3997363337096118e+00
+-2.6713639148836396e+01
+-1.7870798689600267e+00
+-8.4571421685702539e+00
+-2.0963035572615695e+01
+1.2505161953956170e+01
+-4.6719851031119992e+00
+-2.6123681234233732e+01
+-1.5322941412725435e+00
+-8.5124696392823243e+00
+-2.0842192762622773e+01
+5.0816658603409737e+00
+-4.4331618398652912e+00
+-2.2846252528745534e+01
+-1.2334975879559639e+01
+-7.5803246013788073e+00
+-2.2166538807959945e+01
+-4.9283769931502395e+00
+-8.1069227716903889e+00
+-2.1436316235453980e+01
+6.2388008637221697e+00
+-9.8472510494892629e-01
+-2.2208832760637719e+01
+1.3196484639619719e+01
+1.2035362083551480e+01
+-3.4992522615595171e+01
+2.3776544907181102e-01
+3.8353447860790428e+00
+-2.3403767045408145e+01
+-5.5558338452011524e+00
+5.5465985641517568e+00
+-4.0406042241818056e+01
+1.9874241831310635e+00
+1.5581764252762089e+00
+-2.0465494404056436e+01
+3.2164999927485565e+00
+1.3391803828279458e+00
+-2.0735006045563360e+01
+-3.3772738769076582e+00
+-4.3694637474303066e-01
+-2.2831539953651816e+01
+-2.4225945659118131e+00
+-1.5767511604645443e+00
+-2.1378745002933059e+01
+1.9506910742713397e+00
+-3.1162943417491218e+00
+-1.9901294812942709e+01
+-1.0527883846203989e+00
+-3.6901215156338720e+00
+-2.1557444583853446e+01
+4.8430658579858514e+00
+-2.8527022587093773e+00
+-2.0949715332426067e+01
+-2.7779276368564605e+00
+-2.9546678152075900e+00
+-2.3187478741588261e+01
+4.4831865497663665e+00
+-4.4213294447894080e+00
+-2.2312907542389151e+01
+-1.4443990906707906e+00
+2.3943249934221700e+00
+-2.3096454176751671e+01
+-1.5513143491691992e+00
+2.1577840837483224e+00
+-2.3055584309136297e+01
+-1.6805769494368763e+00
+1.5911710328560809e+00
+-2.2850670257426390e+01
+-4.5547284910830244e-01
+-1.1977779581110268e+00
+-2.0783904890925179e+01
+4.8019545247691253e+00
+-3.5076856797827665e+00
+-2.1564586972399240e+01
+-1.9607645125369952e+00
+1.4885873293249656e+00
+-2.3405602374328868e+01
+-9.3738832160941108e+00
+-2.8933689259434381e+00
+-2.8805342599063199e+01
+3.9100263860950548e+00
+-4.2716405180797672e+00
+-2.1787854622675781e+01
+-8.2238520690979229e+00
+1.6620757350598998e+00
+-3.4838709640741058e+01
+1.2963778618651743e+01
+2.7556190838069070e+00
+-3.2026790224671899e+01
+2.6901761337798022e-02
+-9.9620336616403593e-01
+-2.0976693455407382e+01
+3.8570027481960265e+00
+-1.2615165299598459e+00
+-2.0848762974438159e+01
+-1.7492419071914767e+00
+8.2499035326964176e-01
+-2.2662585365360446e+01
+2.1698620656152188e+00
+-3.0318343376520276e+00
+-1.9822379334349773e+01
+9.5031431355934248e-01
+-2.9002144997369959e+00
+-1.9683759758714736e+01
+3.8569210399570015e+00
+-3.9798849354392014e+00
+-2.1486201092688297e+01
+4.4831865497663665e+00
+-4.4213294447894080e+00
+-2.2312907542389151e+01
+1.7659937790357083e-01
+-1.5280738991667446e+00
+-2.0375018614750545e+01
+1.3921172223946088e+00
+-1.2793108299089023e-01
+-2.0276160160228756e+01
+-9.1667474455588707e+00
+-2.9700006372905059e+00
+-2.8675446517191112e+01
+-5.7883287527886615e+00
+-7.4181939957897098e+00
+-2.2474212130533633e+01
+-1.2593971651867544e+00
+-1.7508542425759772e+00
+-2.1128166049604594e+01
+-3.8430780599027203e+00
+2.7052260688793222e-02
+-2.3478888304345706e+01
+1.5115828444787605e+01
+2.0776587143442264e+01
+-6.0820239280757221e+01
+4.7863507348811245e+00
+1.7552260832801871e+01
+-5.4144013588784254e+01
+7.6286718559604569e+00
+1.3592009868149701e+01
+-5.1087290276705112e+01
+-1.0796678880057812e+01
+1.0659099613728445e+01
+-4.3895442391138914e+01
+-1.0757239891278738e+01
+1.0477937929082763e+01
+-4.4217881113323152e+01
+-1.0861810745069130e+01
+1.0410362150931469e+01
+-4.4336424633611827e+01
+-1.0992594746550479e+01
+1.0297319516713182e+01
+-4.4116946646509483e+01
+1.3035610243097116e+01
+9.3211051088169441e+00
+-4.0092346717857872e+01
+-1.1408173771920637e+01
+1.0093959383012988e+01
+-4.3917710737533660e+01
+-1.2855090588807213e+01
+1.0077379165851927e+01
+-4.4839092619538640e+01
+1.3378393927164289e+01
+8.3831299892696727e+00
+-4.0759854984459551e+01
+1.9108710396147437e+00
+9.0112107530039740e+00
+-4.4959469605960386e+01
+1.3213496008156492e+01
+8.3054461371958332e+00
+-4.0726117038581826e+01
+1.3497880879431431e+01
+8.2213162377933564e+00
+-4.0473528876278095e+01
+1.3567129318989133e+01
+7.9576882223172358e+00
+-4.0181944553370322e+01
+9.8885414990682126e+00
+8.6509445499062103e+00
+-4.4432500147137084e+01
+6.4004564013025620e+00
+8.5988027148017316e+00
+-4.4320066687380091e+01
+1.3762857426764413e+01
+7.7776731792875315e+00
+-3.9752200912548417e+01
+1.3565393940896143e+01
+7.7191166091523229e+00
+-4.0754105800508633e+01
+1.3563234781667527e+01
+7.6139916279014894e+00
+-4.0541810819120819e+01
+-1.0198657595628960e+01
+7.2781977343199982e+00
+-4.2707968198825498e+01
+-7.7981409707888316e+00
+6.9136854092065398e+00
+-4.2206611016041265e+01
+-7.4661512980910976e+00
+6.8825209230913202e+00
+-4.2082111768975594e+01
+-6.3384350502307809e+00
+6.5760563201239757e+00
+-4.1814144372543410e+01
+-4.3951941052129753e+00
+6.4536086250268729e+00
+-4.1470544814452950e+01
+-6.3093399796569321e+00
+6.4240264392189097e+00
+-4.1410400097099455e+01
+3.0913775647430723e+00
+3.5290907539094589e+00
+-2.3141419430919978e+01
+1.4354820763127156e+01
+5.3472018048876597e+00
+-3.9609489921888503e+01
+1.2637564209647946e+01
+3.6119103431099644e+00
+-3.2465395090035130e+01
+-3.3008512223504263e+00
+2.4893294520117513e+00
+-2.6673048036135498e+01
+1.8259355789302045e-01
+2.0252267420688845e+00
+-2.1234420629039896e+01
+-8.7537761109440275e+00
+2.7189472267496155e+00
+-3.6256558327492833e+01
+2.3243203563846224e+00
+1.5119566124425325e+00
+-2.0495946329288568e+01
+-8.7201730957939407e+00
+2.3071230468584520e+00
+-3.5777099963723451e+01
+3.7466266008003317e+00
+1.3985940536371759e+00
+-2.1037471868162992e+01
+1.3148282740063950e+01
+9.2406041589923649e-01
+-3.3710876790240498e+01
+1.3400928345710300e+01
+1.8235292879308757e-01
+-3.2640979523017982e+01
+-1.0221597603121511e+01
+1.8590492718869103e-02
+-3.2624906073438289e+01
+-1.0387558281785633e+01
+-1.1429846455209997e-01
+-3.2476615839741257e+01
+4.0318032399333639e+00
+-1.0521434986887352e+00
+-2.1073521585214770e+01
+4.9984242186784318e+00
+-1.6752976013658651e+00
+-2.1297274381766861e+01
+1.1870250795214229e+01
+-4.0751018819096840e+00
+-2.6748211629845830e+01
+1.2609057633985854e+01
+-4.1772516312508277e+00
+-2.6683941503181849e+01
+1.2399859104428471e+01
+-4.5089335980465011e+00
+-2.6125104234023578e+01
+1.2069910974683120e+01
+-4.9862631855429047e+00
+-2.5510495772296608e+01
+-1.1506375879880695e+00
+-5.7180097110007857e+00
+-2.2277844236162643e+01
+8.9354366639452412e+00
+-6.5379402965628408e+00
+-2.3498280770543634e+01
+9.1360421412231059e+00
+-6.6313306805238792e+00
+-2.3397318782682039e+01
+8.1401113436176384e+00
+-7.0386709810493704e+00
+-2.2758244710899369e+01
+-3.3343784614656191e+00
+-8.1843830356430480e+00
+-2.1364522761090804e+01
+-1.8677322916946835e+00
+-8.1622538465489161e+00
+-2.1249236833740138e+01
+-2.5227543215478971e+00
+-8.2692275764677294e+00
+-2.1180859991254366e+01
+-1.5906793605607894e+00
+-8.4557259003596457e+00
+-2.0902079767883883e+01
+-1.5322941412725435e+00
+-8.5124696392823243e+00
+-2.0842192762622773e+01
+1.5758821864643378e+01
+2.1083725423500393e+01
+-6.1422428946915240e+01
+1.5314901197793803e+01
+2.0855420820544406e+01
+-6.0910379899238642e+01
+7.5500188168862437e+00
+1.7719061732506287e+01
+-5.6740719802715788e+01
+8.5143261715192811e+00
+1.6846217078192335e+01
+-5.5497346810345071e+01
+7.2144659362672243e+00
+1.4096522217442361e+01
+-5.1724716676623487e+01
+7.2144659362672243e+00
+1.4096522217442361e+01
+-5.1724716676623487e+01
+9.2247252743048964e+00
+1.2621975852491646e+01
+-5.0028529325245266e+01
+-1.0622306672112284e+01
+1.0949925122348827e+01
+-4.4076067596896692e+01
+1.3198975420224986e+01
+9.4377775071041992e+00
+-4.0381799877957476e+01
+1.6850192718725665e+00
+8.9890328035331404e+00
+-4.4812305509517650e+01
+1.3736192755108501e+01
+7.7646265154816554e+00
+-3.7822045327943194e+01
+-1.4831882195875709e+01
+8.4303279992829214e+00
+-4.4311068410092318e+01
+1.3914467306322718e+01
+7.5090038026897377e+00
+-3.9434217984851777e+01
+-5.6906500667966853e+00
+8.0725753709308083e+00
+-4.3774367887748873e+01
+1.3871745735138191e+01
+7.2100192699195960e+00
+-4.0745203935550414e+01
+-7.2240022537815216e+00
+7.3295763973542636e+00
+-4.2623050075853563e+01
+1.3790214719471246e+01
+6.9935738084007983e+00
+-4.0713343247779179e+01
+1.3507389629580050e+01
+6.8223906092924560e+00
+-4.1746236935137993e+01
+-7.4133430627805330e+00
+6.6608282235584007e+00
+-4.1722197380845913e+01
+-4.6927539511621781e+00
+6.3334228155854788e+00
+-4.1250859031323998e+01
+1.3299763569308263e+01
+1.8151397734247572e+00
+-3.1261475606481362e+01
+-7.1169852985619997e+00
+1.8530325231206175e+00
+-3.5160828084486113e+01
+1.3810476099263486e+01
+7.0362533883761069e-01
+-3.0490110196733383e+01
+1.3501005315357421e+01
+7.0353277523300017e-01
+-3.2092338787048298e+01
+1.1239392782896623e+01
+-1.8346580461194151e+00
+-3.0011588755681924e+01
+-1.6317577195757615e+00
+-1.3941829365298066e+00
+-2.1672126780305511e+01
+-8.4977531002671878e+00
+-2.6354019476428694e+00
+-2.9004661269491748e+01
+1.0754744022475492e+01
+-3.0515514195328346e+00
+-2.8222007681200338e+01
+3.1727539863234284e+00
+-2.1571544468406167e+00
+-2.0503671279142033e+01
+1.1360579064282531e+01
+-3.8596571649219378e+00
+-2.7075031633278346e+01
+-9.6385068817228188e+00
+-4.2866949055137384e+00
+-2.6735958057539232e+01
+9.6342002670603186e+00
+-6.1868301780159181e+00
+-2.4020080901543626e+01
+9.6342002670603186e+00
+-6.1868301780159181e+00
+-2.4020080901543626e+01
+1.1567678010099320e+01
+-6.2754677266070242e+00
+-2.3593260878099528e+01
+9.6763139055468788e+00
+-6.3021661893057779e+00
+-2.3714942797143991e+01
+-1.6166765474935252e+00
+-7.7601135528937766e+00
+-2.1919018510224817e+01
+-2.4393604544483587e+00
+-8.0041339297508198e+00
+-2.1600805595196547e+01
+-2.1285879734403541e+00
+-8.3350853434644527e+00
+-2.1075087909663843e+01
+8.0857779651284556e+00
+1.8709223445305263e+01
+-5.6188012313935054e+01
+7.3264100775045682e+00
+1.5915989326008159e+01
+-5.4157213155014269e+01
+1.3554566076740764e+01
+1.0357099454693738e+01
+-3.6168229586944655e+01
+-1.4926254352791366e+01
+8.3510995085680939e+00
+-4.4159572068365136e+01
+-4.1904464782071953e+00
+8.1775038064031484e+00
+-4.3812556073957957e+01
+1.3789374691031815e+01
+6.8702275255380494e+00
+-4.0430911960414122e+01
+-6.7797470608145325e+00
+6.0966092331661788e+00
+-4.1048256205923018e+01
+6.0922899546588010e+00
+1.0115505599346399e+00
+-2.3696913954100786e+01
+7.3375525543964377e+00
+1.0041351985498492e+00
+-2.4863250453415144e+01
+1.3343884948725448e+01
+7.0936034849973895e-01
+-3.3342085723084004e+01
+-8.3792262046122428e+00
+-2.8675691974218487e+00
+-2.8489868029980066e+01
+-8.6234858486527912e+00
+-2.8949669442375643e+00
+-2.8606092871722712e+01
+1.9232199782275786e-01
+-2.3451594091805896e+00
+-2.0418084164961929e+01
+1.2465976127834667e+01
+-3.8749215771235703e+00
+-2.6826357454694094e+01
+1.1925707142991065e+01
+-4.0204685847316419e+00
+-2.6861286475117016e+01
+1.2629463266620753e+01
+-4.9455280273572351e+00
+-2.5540062235935046e+01
+1.2065693979376308e+01
+-5.1547251659888689e+00
+-2.5283537316160643e+01
+8.3125980999931794e+00
+-6.3676989271592062e+00
+-2.3690980695010253e+01
+-3.0503369734412074e+00
+-8.0185284425936914e+00
+-2.1591983206387987e+01
+-2.5150655133561850e+00
+-8.2170739540014583e+00
+-2.1246461956503126e+01
+-2.5785833618864835e+00
+-8.3439056567124688e+00
+-2.1051112178682217e+01
+1.4067123538408275e+00
+-8.4342155864046937e+00
+-2.0980132542980861e+01
+8.1268823562677674e+00
+1.8112825839462413e+01
+-5.7074211908403420e+01
+8.0935858411742316e+00
+1.7790432717991983e+01
+-5.6822761890914080e+01
+1.4874501161402481e+01
+1.5043028003948997e+01
+-5.3050940045896738e+01
+1.3885537602490460e+01
+1.3829653857698482e+01
+-5.1625974609741064e+01
+-1.0032292713399439e+01
+1.1977791990313786e+01
+-4.5310258981784223e+01
+-1.0350707680431697e+01
+1.0808266432135129e+01
+-4.4518759030707045e+01
+-4.7757398178654613e+00
+6.7996709936978155e+00
+-4.1836254564185943e+01
+-5.9007552503814473e+00
+6.7936124346081526e+00
+-4.2017330107751128e+01
+-4.5798524343603821e+00
+6.2403542295365702e+00
+-4.1345457019145535e+01
+-5.5962495404996702e+00
+6.0603658845592170e+00
+-4.0813881997872549e+01
+-4.9993456045980231e+00
+6.0493227006815058e+00
+-4.0986301183791824e+01
+1.6613953029015820e+00
+-2.6921435934213060e+00
+-2.0011871258948197e+01
+1.2078538359998175e+01
+-3.9506468325501003e+00
+-2.7070993653425582e+01
+1.3762988244135157e+01
+-5.3079752478843281e+00
+-2.4688968898400070e+01
+1.1106462204302991e+01
+-5.5141897226314232e+00
+-2.4993852712533712e+01
+2.4969975207304738e+00
+-5.2029191953313987e+00
+-2.2074156067072408e+01
+9.7197608015571575e+00
+-6.2610168901375296e+00
+-2.3876206322160751e+01
+9.5884662143308201e+00
+-6.4350425944888512e+00
+-2.3476233107111234e+01
+1.6788784131356312e+01
+1.6423080423635039e+01
+-5.5711645416390802e+01
+1.5209704783528043e+01
+1.5663680888883544e+01
+-5.3829823741024285e+01
+-6.3959795753866668e+00
+6.1492334995940787e+00
+-4.1123881711875882e+01
+-1.1447748467120773e+01
+1.0343655027005491e+01
+-4.4402271508302448e+01
+-1.1447748467120773e+01
+1.0343655027005491e+01
+-4.4402271508302448e+01
+1.1387357750018150e+00
+-8.4288582234364622e+00
+-2.1145366421285686e+01
+-1.1146901436479080e+01
+1.0888531240121052e+01
+-4.3387004094116790e+01
+-1.1018153596234392e+01
+1.0609137189898286e+01
+-4.3611330995883279e+01
+-1.4630626426310339e+01
+9.5677982199861642e+00
+-4.4460476806985653e+01
+-1.0613306518532580e+01
+1.0648445620602297e+01
+-4.4152853727665885e+01
+4.6505858527995763e+00
+-3.7308805302228092e+00
+-2.1743828600721294e+01
+1.2733532783279244e+01
+4.8364490695069584e+00
+-2.9328203827186357e+01
+4.6567791229622308e+00
+-4.0208275542220234e-01
+-2.1495673249416658e+01
+-3.8499546192421668e+00
+-7.1734232326805660e+00
+-2.2717843743802234e+01
+-4.4292823726893502e+00
+-8.6097916131461432e+00
+-2.0654053793700911e+01
+1.7669371628729820e+00
+1.8788148650898666e+01
+-4.8552085182922113e+01
+5.6372719185204705e+00
+-5.0564785809503503e+00
+-2.2655929309822891e+01
+1.4486386993634708e+01
+2.3903393849029964e+01
+-5.5465497106855864e+01
+-5.8542263232211198e+00
+1.2608564587652223e+01
+-4.9253347471413768e+01
+6.1126360162729174e+00
+2.0790514515327725e+01
+-5.0078635910049741e+01
+1.2938025537927118e+01
+2.3492471942531392e+01
+-5.4621295819722512e+01
+5.7061900682186542e+00
+2.0152508035655922e-01
+-2.2705701901857100e+01
+3.7792289738871916e+00
+6.2294353177003281e-01
+-2.0848994363692565e+01
+2.4197225533317295e+00
+1.8882891729755100e+00
+-2.0705493339402533e+01
+-1.2188504519068053e+01
+-6.1619709403538652e+00
+-2.4096317974665233e+01
+4.8566569146000937e-01
+-6.1571556255427529e-01
+-2.0600267415676338e+01
+1.6679025812749025e+01
+2.2733223709973995e+01
+-5.9581894182882380e+01
+-8.9703720205816762e+00
+1.2297060187450960e+01
+-4.6747712274751436e+01
+1.5083562583363948e+01
+2.4076653233055612e+01
+-5.5919496188192170e+01
+1.7148051821928064e+01
+2.2912420108510819e+01
+-6.0393487683510720e+01
+1.3736529526171701e+01
+2.2727463301218698e+01
+-5.6405970949610413e+01
+-8.6224426678485538e-02
+-5.3527030793851127e-01
+-2.0895544233453982e+01
+3.2528020518111314e+00
+1.2175970767208288e+00
+-2.0714111851585542e+01
+1.0563310660050655e+01
+2.0410509257024973e+01
+-5.6614461269920604e+01
+5.5119183515413610e+00
+1.9390529034941210e+01
+-5.2267526007872299e+01
+-1.0755821803942682e+01
+1.4975528553103645e+01
+-3.9860281668526056e+01
+3.7465082303576653e+00
+5.5956408162099569e-01
+-2.0801680995910228e+01
+1.5290217205481509e+01
+2.1926970274607644e+01
+-5.9628582274025959e+01
+7.8508179025854172e+00
+1.4327780234857041e+01
+-5.2110842078649867e+01
+1.5416936665940728e+01
+2.2461304862494924e+01
+-5.8828534418127710e+01
+1.1297552589531039e+01
+2.2464084707575857e+01
+-5.3707779877381832e+01
+1.9663429674338493e+00
+7.7981913222021959e-01
+-2.0239081305483293e+01
+7.6752320417240210e+00
+2.0276290528333369e+01
+-5.3795623326427545e+01
+2.3347677207387951e-01
+1.2185980836786272e+00
+-2.0762624379564716e+01
+3.1009795037186660e+00
+-2.4836537629927360e+00
+-2.0283032377333811e+01
+9.3938317073582187e+00
+1.8759818750781832e+01
+-5.7628356980532175e+01
+9.2119937285609943e+00
+1.9835519289761731e+01
+-5.6012535089864450e+01
+5.5789228901790668e+00
+2.0726339066341840e+01
+-5.0225225314216992e+01
+4.1453910272151999e+00
+1.9829425613491139e+01
+-4.9994816437931391e+01
+7.0190204429634484e+00
+2.1328883927995765e+01
+-5.0749796202222548e+01
+9.0898903928120607e+00
+1.9659150003006157e+01
+-5.6090376929174703e+01
+1.4768652719924120e+01
+2.3758114133832350e+01
+-5.5828167990483777e+01
+1.4999304393696244e+01
+2.4015781880294064e+01
+-5.6071667375476792e+01
+9.6218595337869193e+00
+2.1357522539953198e+01
+-5.3008200331516875e+01
+1.2438502586055840e+00
+-8.1586567629446738e-01
+-2.0465632245106558e+01
+1.2605372794847777e-01
+-1.6480706545608628e+00
+-2.0444736382979890e+01
+1.0839196894036252e+01
+-2.8952311123359231e+00
+-2.8569608771716329e+01
+-1.0079039319683465e+01
+-3.9294263122553761e+00
+-2.7279214473798401e+01
+1.3882365291486959e+01
+1.4102930526518588e+01
+-5.1889351423792782e+01
+6.9593582821261224e+00
+2.0066429122338814e+01
+-5.1858150256594961e+01
+9.6067310653027960e+00
+1.4905415049117108e+01
+-5.3215548529336807e+01
+1.3253170921844939e+01
+9.5481098156291200e+00
+-4.0026409321749362e+01
+-4.4149003550681707e+00
+1.6440126164823127e+01
+-4.5299134128519505e+01
+-2.6490029398466088e+00
+1.8260871970888042e+00
+-2.4637792576335812e+01
+-1.5056325786876790e+00
+3.6843866503582612e-01
+-2.2188824837405257e+01
+1.1122654543580397e+00
+1.8253486955938424e+01
+-4.8364192528440078e+01
+-1.0270028499849180e+00
+-2.1958076816110688e+00
+-2.0653598062050197e+01
+-3.0373775131388825e-01
+-2.7060147347892420e+00
+-2.0141032793785651e+01
+-3.9981656427510698e-01
+1.9910673638566885e+00
+-2.1645123037312700e+01
+-2.2344212234017309e+01
+3.3962744519939220e-01
+-3.3299167527195806e+01
+-2.1969848243422813e+01
+-1.1958710002535219e-01
+-3.2674666832920387e+01
+-2.2436668025807702e+01
+2.5619327481194654e-01
+-3.3240758353633282e+01
+-2.1457811354413433e+01
+-7.0127638970141071e-01
+-3.1940506601841086e+01
+-9.8733090976035989e+00
+6.3156131400203668e+00
+-4.1378281566939606e+01
+-8.7040385562133906e+00
+6.8640745032835806e+00
+-4.2016706204676510e+01
+-2.1589550973350160e+01
+2.2656948553055405e+00
+-3.5698951915637956e+01
+-1.2993569794827769e+01
+3.3639261422154494e+00
+-3.7346598104805835e+01
+-2.2147471482967948e+01
+1.7453951884744656e-01
+-3.3090657111423994e+01
+-1.2062351642245241e+01
+2.1622075070380289e+00
+-3.5655879421328137e+01
+-1.2062351642245241e+01
+2.1622075070380289e+00
+-3.5655879421328137e+01
+-1.1126331941686313e+01
+2.1791691026712199e+00
+-3.5572338403697429e+01
+-1.5208352319395749e+01
+1.0343295224491122e+01
+-4.4008490429451371e+01
+-1.1617969253107484e+01
+7.3495977270042534e-01
+-3.3651713274893638e+01
+1.1203198118323368e+01
+-2.3976012532104742e+00
+-2.9313122370680539e+01
+-4.9504796087345959e-01
+1.8437519606208390e+00
+-2.1573055948067132e+01
+-2.2713196736331671e+01
+5.0541496074708103e-01
+-3.3576626775275791e+01
+-2.7760450285802797e+01
+1.7776232132681066e+01
+-5.5763636082864593e+01
+8.8320159424058389e+00
+7.1282264635958565e+00
+-4.2404818144814833e+01
+1.0020970959704238e+01
+8.1478320747247022e+00
+-4.3639636497580867e+01
+9.2129360171911472e+00
+1.3788221762303472e+01
+-5.1211508412337736e+01
+1.5438467170173016e+01
+2.3006978983981767e+01
+-5.8321862717162382e+01
+-7.3311799240145694e+00
+-1.9642981698684689e+00
+-2.9859637975333573e+01
+-2.8553181328152339e+00
+8.3564324251102171e+00
+-4.4321792426117312e+01
+-9.9329272677810803e+00
+-8.5533841392662391e-01
+-3.1417323984683609e+01
+1.4085261639329302e+01
+2.3870273290414428e+01
+-5.4033722090577477e+01
+-6.2581293554406014e-01
+2.6020899903769648e+00
+-2.2279655439173094e+01
+3.2989299633671991e+00
+-6.2366598377521152e+00
+-2.1741544459490182e+01
+-4.6349487205883309e+00
+-7.9212330618682190e+00
+-2.1752890782940124e+01
+1.5127594585903037e+01
+2.2352805237122581e+01
+-5.8012926873855250e+01
+-1.4925182465105967e+01
+1.0382570354221028e+00
+-3.4348130807560089e+01
+1.4433800332519557e+01
+2.3060227517952772e+01
+-5.6401576416545915e+01
+-1.9244917127687433e+01
+-2.8438518483146078e+00
+-2.8907030074216948e+01
+-1.5188096418513972e+01
+1.0487084108610961e+01
+-4.3332749478707768e+01
+-1.1690193083064788e+01
+8.2265507667099536e-01
+-3.4009119780125317e+01
+-9.6511105728197002e+00
+3.2143966457490332e+00
+-3.7034217828081395e+01
+7.8226751719345824e+00
+2.0967946222102178e+01
+-5.2140800215662161e+01
+1.1415144652651797e+01
+2.1164123166314930e+01
+-5.6109423497829781e+01
+7.2692280360271191e+00
+2.1083973384651095e+01
+-5.1719925801366543e+01
+1.2072070434222454e+01
+2.2256298927578101e+01
+-5.7506342991958419e+01
+-5.0454481485648506e+00
+9.0854369161895097e+00
+-4.5001697233187322e+01
+-5.3986792027647672e+00
+1.0923077593876510e+01
+-4.7304267781877719e+01
+8.6180150884375948e+00
+1.0739795900184895e+01
+-4.7308667436112501e+01
+-4.8552848760112681e+00
+-6.7264463268815229e+00
+-2.3340349162640663e+01
+-3.9525336129725526e+00
+9.6234470013577749e+00
+-4.5903619882216908e+01
+-1.8446812421425391e+00
+1.1927244844264591e+01
+-4.8879413648791179e+01
+-7.7139199915079697e+00
+7.1949206710927482e+00
+-4.2620392605231181e+01
+-3.9748595359095082e+00
+9.4282067784044052e+00
+-4.5505692537150296e+01
+4.0285005854918099e+00
+-1.2990212714499252e+00
+-2.0723042217313406e+01
+-2.5176661542013226e+00
+1.1090080979198971e+01
+-4.7671676644900522e+01
+-4.0615740110380978e+00
+-7.4846377739395509e+00
+-2.2345538567308765e+01
+-7.4235253797151639e+00
+6.2331229014909990e+00
+-4.1303277342992558e+01
+-4.4195658329868763e+00
+5.5381383925926757e+00
+-4.0208570182604014e+01
+-6.7136130481661711e+00
+8.7773366181842434e+00
+-4.4592734376249119e+01
+3.6336371825825577e+00
+1.5169633211058033e+00
+-2.1047258283407619e+01
+-1.5284779554155886e+01
+6.5656685692740586e+00
+-4.1756292151515105e+01
+1.3810722701388517e+01
+7.8292077507278601e-01
+-3.0452078652643642e+01
+9.8544562620268170e+00
+2.0576929469001481e+01
+-5.5464969803017993e+01
+5.6033176197583678e+00
+-2.3655797743545823e-01
+-2.2122154788469771e+01
+1.2201291500439226e+01
+6.1880256598028236e+00
+-2.9917429743226879e+01
+1.2104828839567510e+01
+5.9302520670940737e+00
+-3.0276790250808439e+01
+-2.5646751025910275e+00
+-7.8106571190601581e+00
+-2.1775931898458733e+01
+4.4105056752238614e+00
+-2.6622734180073477e+00
+-2.0438713727839811e+01
+5.9277266726126703e+00
+1.0820731994094293e+00
+-2.3820446214838409e+01
+2.7430847488532206e-01
+-5.8692716697133474e+00
+-2.1519362780382931e+01
+8.9463568033063705e+00
+7.3183109284917673e+00
+-4.2497514627543374e+01
+5.5516142774810726e+00
+-1.3315419628087133e+00
+-2.1741027365365472e+01
+2.3071684595453461e+00
+3.9513087877846425e+00
+-2.3588531324379389e+01
+6.4078140804885200e+00
+-1.6408416029035644e-03
+-2.3378576267605670e+01
+2.4622687241213002e+00
+9.6099059872351198e+00
+-4.5611001980705588e+01
+2.8017572213271049e+00
+9.2822214799447322e-01
+-2.0400669709614913e+01
+-3.6451115300336960e+00
+-7.6129895843704425e+00
+-2.2108460232144793e+01
+-1.1059615021393854e+00
+3.0830234804149010e+00
+-2.3446712629004050e+01
+-1.9868337427777771e+00
+8.8183396657930899e+00
+-4.4565782998991985e+01
+3.4523411563872157e+00
+2.8934170031776514e+00
+-2.2123902956691307e+01
+1.3858772466335422e+01
+5.3810621401059555e-01
+-3.0172112275131727e+01
+1.3697780859858158e+01
+2.9768360442899872e-01
+-3.2143626912562141e+01
+3.5178336665926229e+00
+2.3236301391041492e+00
+-2.1409122017733726e+01
+-2.2070333074550899e+00
+6.7596165292879942e+00
+-4.2016672315615928e+01
+1.4797937675209569e+01
+-1.9675140056292781e+00
+-2.9157243534786236e+01
+1.3113275074746564e+00
+-5.2600245396331902e+00
+-2.2069449138466339e+01
+3.8742897910200833e+00
+-4.4336588804366386e+00
+-2.1955970426487426e+01
+-3.2551811240822437e-01
+-3.9260589770723229e+00
+-2.1490699324044371e+01
+-3.6117654798036249e+00
+-1.6393952400154610e-01
+-2.3193522605212948e+01
+7.9610384168061552e+00
+1.5286197642627915e+01
+-5.3508523884631678e+01
+9.1713468107499043e+00
+1.1701077023290077e+01
+-4.8740449560573936e+01
+7.3972563642608034e+00
+1.3037656053781188e+01
+-5.0507310314986611e+01
+-2.7987396819028545e+00
+-8.1062336132631181e+00
+-2.1365222702384440e+01
+1.3036016380442250e+01
+2.4415541354119330e+01
+-5.3682972922411061e+01
+8.7946838524088182e+00
+2.1058984932529118e+01
+-5.2625891939440450e+01
+8.4808699231538061e+00
+2.0945583207271458e+01
+-5.2486760209993207e+01
+1.1235502997896052e+01
+2.3400994410517466e+01
+-5.2214995331389900e+01
+1.8591111255528538e+00
+9.3469088491711485e+00
+-4.5410681534638954e+01
+-1.2516719540531270e+01
+3.5876110550754485e+00
+-3.7584699967859315e+01
+-4.3479632707500073e+00
+1.3893676537207751e+01
+-4.9194779236641921e+01
+8.9235786152740815e+00
+1.4364687556932317e+01
+-5.1998105983585070e+01
+1.2238960560227936e+01
+6.0921315391666164e+00
+-3.0163257099823237e+01
+-8.8289188139170205e-01
+-3.4231094290514641e-01
+-2.1483908797987159e+01
+1.2790979594556477e+01
+-4.1976616476628115e+00
+-2.6628569636884357e+01
+-1.7584467962701780e+00
+6.8541718279136576e+00
+-4.1958596845139290e+01
+-2.6995951748020302e+00
+-7.5409486093806546e+00
+-2.2140733582983298e+01
+3.6258529758817217e+00
+3.4583644262821460e+00
+-2.2775382209146379e+01
+2.9706953426524607e+00
+-6.0707128494943765e+00
+-2.1719433523024211e+01
+1.4120267177774832e+00
+-3.2354668254088961e+00
+-2.0075460424169076e+01
+3.0955928683259200e+00
+1.9492018627884207e+01
+-4.9288605043090264e+01
+-8.5394040451652309e+00
+2.3241124244147446e+00
+-3.5796092805711496e+01
+-8.8080853352242681e+00
+6.5994019857928476e+00
+-4.1663784002071033e+01
+-1.3702052302020391e+01
+4.6732246344262673e+00
+-3.9171459086651438e+01
+-1.3491504121178743e+01
+4.7766260107701495e+00
+-3.9324911429455803e+01
+-2.0530144456127864e+01
+1.0532164437485749e+00
+-3.4073318673457145e+01
+1.4209803549960432e+01
+2.4638457765174675e+01
+-5.3490180613902844e+01
+-3.2920790942418314e+00
+8.6176106391458802e+00
+-4.4488846170602791e+01
+-6.0216013399158879e+00
+8.4963909998336415e+00
+-4.4323947396306075e+01
+6.1727197516438768e+00
+-8.6760105269146803e-01
+-2.2367364529031303e+01
+1.2934916338855370e+01
+-5.3226097371250978e+00
+-2.4805143727325500e+01
+1.3952249032018342e+01
+-5.2161702004276114e+00
+-2.4777354848624142e+01
+-2.5085677423717261e+00
+-7.8718629110573577e+00
+-2.1695574494955380e+01
+1.2298723053766887e+01
+-4.9335865533556724e+00
+-2.5722631930971378e+01
+6.5295098650630328e+00
+-1.1673056094978411e+00
+-2.1958587295416237e+01
+4.9347083190548000e+00
+1.5416586572083377e+00
+-2.2064318068957178e+01
+1.2050550928147125e+01
+-6.0462833705373624e+00
+-2.3874594116862053e+01
+5.1446978547101079e+00
+-1.3037831323083879e+00
+-2.1548779372457822e+01
+-7.5789912809735824e+00
+2.7139209721306305e+00
+-3.6267433414457500e+01
+-1.0008793054280337e+01
+8.0891192846108932e+00
+-4.3656575538089399e+01
+-6.2514588416441148e+00
+5.9308933046690040e+00
+-4.0778704454338673e+01
+1.1520612268986808e+01
+-4.9271715570727501e+00
+-2.5774343280132229e+01
+-5.2998712634417213e+00
+1.6470969570203398e+01
+-4.3915285231884873e+01
+1.6520523637365812e+01
+2.4433477938590883e+01
+-5.7109122366981239e+01
+1.2929142247448816e+01
+2.3210957118073622e+01
+-5.4991894008525875e+01
+7.5239642829758955e+00
+2.0261395205235882e+01
+-5.3171186029221396e+01
+7.5403507211776271e+00
+2.0509873591588129e+01
+-5.2077133919306888e+01
+5.7743631991601445e+00
+1.9719823920270766e+01
+-5.1542764038783496e+01
+3.5287831420078930e-01
+6.6581188394121527e-01
+-2.0590463115858462e+01
+7.1638216413670763e+00
+8.5300913192428194e+00
+-4.4043818110781068e+01
+1.2716420370358250e+01
+2.3097859511270475e+01
+-5.4806767626633928e+01
+6.0728897559341251e+00
+2.0590266788511428e+01
+-5.0965578717390940e+01
+1.4540976497311577e+01
+2.4120082873719031e+01
+-5.5497105458896669e+01
+1.1737875645966499e-01
+3.1770268160649011e+00
+-2.2324858457097882e+01
+-1.3156394254178117e+01
+3.6547955515512460e+00
+-3.8096594815412949e+01
+-5.1395363100010867e+00
+6.3079499866987776e+00
+-4.1314409616821955e+01
+8.2169374439177414e+00
+9.6668267832897694e+00
+-4.5720330383796508e+01
+3.5166519259777068e-01
+2.4432854927476710e+00
+-2.1422431522096812e+01
+-4.1552447026267600e+00
+-7.5287283557769626e+00
+-2.2270397851041729e+01
+1.3167209056614121e+01
+9.1817419896047632e+00
+-4.1733829237311291e+01
+8.2912556249137417e+00
+9.8472184051517928e+00
+-4.6053482093403105e+01
+-4.7941819764435145e+00
+8.5090743902363464e+00
+-4.4253902845525587e+01
+5.0236032655688918e+00
+1.3132057874838618e-01
+-2.1842319889662729e+01
+-5.0319328516455997e+00
+-6.8214459373455920e+00
+-2.3177093934353962e+01
+-4.3297672591221490e+00
+8.6695830246569265e+00
+-4.4470239781643841e+01
+-1.5371978280087781e+01
+5.0892346578079319e+00
+-3.9824015843448457e+01
+1.9808928720560455e+00
+-8.2637217995672003e+00
+-2.1189509732814717e+01
+2.0986303917071618e+00
+9.7932895166558591e+00
+-4.5945191538867633e+01
+1.4577689219746160e+01
+-1.3920066948426202e+00
+-2.9438593140202880e+01
+1.2540928214714382e+01
+4.0162733251895206e+00
+-3.2475603753600602e+01
+-1.5619755460137756e+00
+-8.4549824375315996e+00
+-2.0886792461085392e+01
+1.9421317758033059e+01
+2.3050430433756695e+01
+-6.2995251789738212e+01
+5.4822253308488609e+00
+-9.0690853759574341e-01
+-2.1797309607847655e+01
+1.5236055266808990e+00
+-2.1607749937025678e+00
+-2.0290579228325285e+01
+4.0422563410391321e+00
+-4.2455363834430555e+00
+-2.2079380224719966e+01
+6.4136018058101385e-01
+3.4166681954306575e+00
+-2.3078634764160697e+01
+1.0035894294266170e+01
+1.0638526386343758e+01
+-4.7234661249672293e+01
+5.9507610621149114e+00
+1.9850436905624044e+01
+-5.1113790060615969e+01
+-1.3811874017053597e+01
+-6.0248133344869439e+00
+-2.4257559926478013e+01
+7.0157407646207650e+00
+-3.3813598328527843e+00
+-2.4340474837648127e+01
+1.1781188002393568e+01
+2.3526174194616580e+01
+-5.3250975965633188e+01
+-4.2835664766399617e+00
+9.7766485693560146e+00
+-4.6223958288981059e+01
+1.8383584643861855e+01
+2.2396998095869264e+01
+-6.1890568493040007e+01
+9.4232713624375055e+00
+-5.5299243523906991e+00
+-2.4942230581564495e+01
+1.4442905939186339e+01
+2.4491889336176886e+01
+-5.4347155640817320e+01
+3.4722772350721526e-01
+2.0157616451596258e+01
+-4.4664095374628943e+01
+1.3453583759068135e+01
+2.4051812031752416e+01
+-5.3927230689860309e+01
+1.8036808831156495e+01
+2.5019957379947762e+01
+-5.7525652656323821e+01
+1.4200899874321252e+01
+2.4393930040033744e+01
+-5.4472891229401284e+01
+1.8025917077509803e+01
+2.4896264453388703e+01
+-5.7751276185180458e+01
+1.3011968661581879e+01
+2.3505472817399056e+01
+-5.4330856710676194e+01
+5.3441666125139502e+00
+2.1941605985682031e+01
+-4.7737319341664573e+01
+6.6921366226954504e+00
+2.0999799832606900e+01
+-5.1157281059294611e+01
+1.9519133649107449e+01
+2.2727686698558454e+01
+-6.3076191774191948e+01
+8.9244492601262753e+00
+2.0820057783615255e+01
+-5.4108590684106311e+01
+1.5455019673184358e+01
+2.1826591855470213e+01
+-5.9603658907278160e+01
+1.7305499684867161e+01
+2.2135735794300839e+01
+-6.1662790002427535e+01
+1.2914684417271419e+01
+1.7605870775748222e+01
+-5.6731190695387909e+01
+-3.5299319627927322e-01
+1.4121933150023001e+00
+-2.1188425872126235e+01
+-1.5080694183185077e+00
+-8.4163045677858968e+00
+-2.1110573241495327e+01
+-1.6352054622755101e+00
+-8.3529161583884477e+00
+-2.0981150827526385e+01
+3.5135058780425839e+00
+-1.0639121240146832e+00
+-2.0818948579295640e+01
+7.7601044491557465e+00
+1.1550593824165865e+01
+-4.8289814629881008e+01
+-2.0191994737530294e+01
+6.5916153904333974e-01
+-3.3593654464276199e+01
+-1.4943460501663088e+01
+7.6713437509989746e-01
+-3.3814812933339020e+01
+2.8315711957973319e-02
+-1.3686225286203497e+00
+-2.0591256932058307e+01
+2.4794411804684930e+00
+9.0961497204600636e+00
+-4.4974113392692303e+01
+5.0936231110740469e+00
+-2.2021551708973455e+00
+-2.0659123273297983e+01
+-1.2958492641413570e+00
+-2.0809060810174111e+00
+-2.0825806151776110e+01
+-9.9812423450984822e-01
+-5.3337173949363867e+00
+-2.3150362010794098e+01
+6.6779325639860705e+00
+4.5291017222671431e-01
+-2.3713326089783639e+01
+2.6428231410383050e+00
+-5.5868262385350604e+00
+-2.2659850882752583e+01
+2.8359200348478479e+00
+-5.8557727609187920e+00
+-2.2546884118004030e+01
+9.8970710128996746e+00
+-4.7314947509136331e+00
+-2.6016275952258972e+01
+8.9755659506539089e+00
+-6.1779465929614652e+00
+-2.4048047684169159e+01
+1.1139115527991720e+01
+-5.9283492081180009e+00
+-2.4236237572815195e+01
+1.5320332163914872e+00
+8.8913626424761887e+00
+-4.4691338705677715e+01
+7.8725209214405405e+00
+2.1113218591473082e+01
+-5.2144011490980162e+01
+1.2102342675244763e+01
+2.2711041066065945e+01
+-5.4409843615410580e+01
+3.6055162333293369e+00
+-1.6448484026951051e+00
+-2.0485584324298312e+01
+1.3885537602490460e+01
+1.3829653857698482e+01
+-5.1625974609741064e+01
+1.5588614986576754e+00
+3.8107668358167670e+00
+-2.3608604914001830e+01
+-1.3559579402061605e+01
+-8.2348007500326634e+00
+-2.1230020049700467e+01
+-1.1820965346963600e+01
+-8.6910485235932011e+00
+-2.0612080590596264e+01
+-5.0460486830048978e+00
+1.0458569163809306e+01
+-4.6927443735272483e+01
+-6.4413527706713296e+00
+7.7807018010377282e+00
+-4.3368120932350621e+01
+9.9517426044518871e+00
+-4.5021406184078900e+00
+-2.6267175431356971e+01
+-1.4535084121328751e+01
+1.0421949668409769e+00
+-3.4173947848132983e+01
+-1.7607243025741848e+00
+-4.1086412194218278e+00
+-2.2885542394326624e+01
+-3.0503369734412074e+00
+-8.0185284425936914e+00
+-2.1591983206387987e+01
+-1.6111858344804135e+00
+-1.5815268112098333e+00
+-2.1432882167370270e+01
+6.1836402343471064e-01
+3.8127359013572265e-01
+-2.0444320958720212e+01
+-9.0066484422795268e-01
+-4.7136357480620861e+00
+-2.2650954855579847e+01
+1.3645425450500728e+01
+-5.6185752165189085e+00
+-2.4369653837425670e+01
+1.3078320121115986e+01
+1.3122262631459556e+00
+-3.3899513449682971e+01
+6.7421209356441780e+00
+1.0171734849280783e+01
+-4.6381339784563494e+01
+1.0775323215708383e+00
+-1.5122059837686328e+00
+-2.0450706637018811e+01
+6.4458417230303064e+00
+-4.5851258898727290e+00
+-2.3340930213596330e+01
+-3.7288901184638825e+00
+9.0746056310330641e+00
+-4.5024829137968744e+01
+-1.0036094624850934e+01
+1.1794521026488106e+01
+-4.5432729543008506e+01
+1.3221239035140682e+00
+-2.6981834386721544e+00
+-1.9994429921483846e+01
+2.1238879003768529e+00
+8.0617358994844572e+00
+-4.3586855689837527e+01
+1.5758483776919277e+01
+2.2002947969135334e+01
+-6.0849473498371715e+01
+1.4520906816265406e+01
+2.3007101769174930e+01
+-5.6843003833515645e+01
+1.1954615304478272e+01
+-2.8447962964251245e+00
+-2.8635175560988554e+01
+1.4999304393696244e+01
+2.4015781880294064e+01
+-5.6071667375476792e+01
+5.8249062124689823e+00
+1.9531410325498921e+01
+-5.2324629019104719e+01
+1.5758483776919277e+01
+2.2002947969135334e+01
+-6.0849473498371715e+01
+1.6673445953292411e+01
+1.6882450661924494e+01
+-5.5960219208499858e+01
+8.4126221727475965e+00
+9.6724478656434947e+00
+-4.5768072543120105e+01
+4.3681653718915516e+00
+1.8442099744483581e+01
+-5.2360011380949004e+01
+1.7257212090614509e+01
+2.3365377115514036e+01
+-5.9192514613093046e+01
+7.0192586960058252e+00
+1.2570644874782953e+01
+-4.9736222073877045e+01
+1.0990307596795562e+01
+-2.3385436720945325e+00
+-2.9385267097908848e+01
+9.1323305573108211e+00
+1.3958835654776992e+01
+-5.1687260819574888e+01
+4.3766648517403750e+00
+-2.7621264830779899e+00
+-2.0544703877393392e+01
+-4.9766903805266001e+00
+4.7692387617526739e+00
+-3.9053712121537139e+01
+6.2388008637221697e+00
+-9.8472510494892629e-01
+-2.2208832760637719e+01
+4.3235914885775744e+00
+-2.4430042610408380e+00
+-2.0331338324548472e+01
+-2.2648612643567647e+00
+6.5476206620239283e+00
+-4.1481254071323370e+01
+1.3717023543741789e+01
+4.6423174498922154e-01
+-3.1536963389968477e+01
+-1.1156064710167060e+01
+1.0778368420347997e+00
+-3.4187255929727357e+01
+4.4341759659976354e+00
+2.5884506130566036e+00
+-2.2422945707577167e+01
+1.4335485257346592e+00
+3.0815128400585362e-01
+-2.0210645593767683e+01
+-1.5694974228784460e+01
+-6.8668539766252259e+00
+-2.3107947964545886e+01
+-5.9847548233585766e+00
+6.1853732317518260e+00
+-4.0920133094751087e+01
+1.0104004830058503e+01
+8.6887959873479677e+00
+-4.4287049475329212e+01
+1.0416875634147695e+01
+2.1583827331896924e+01
+-5.4202784502002288e+01
+9.8616155810930728e+00
+8.3031126545561342e+00
+-4.3664681622763098e+01
+8.9020006170488077e+00
+2.1274144773379149e+01
+-5.3528949608907979e+01
+7.1896025922666889e+00
+2.0372346101534184e+01
+-5.1894096264405846e+01
+1.0183536234498765e+01
+2.1511777867123666e+01
+-5.4357461062842560e+01
+5.8875031123530643e+00
+-1.3866914025148056e+00
+-2.1598521485689314e+01
+2.6248685825376783e+00
+-2.5178523870203153e+00
+-2.0214610207751392e+01
+-5.6174247318127852e+00
+-6.8730921630130846e+00
+-2.3168825867852018e+01
+-5.0136836708719477e+00
+7.5142686914169330e+00
+-4.2919662449487909e+01
+5.3736365338632819e+00
+-1.2854582247683199e+00
+-2.1737592832674622e+01
+-5.0069977837155015e+00
+8.3428526595969590e+00
+-4.3992194183162923e+01
+-3.5640095877191391e+00
+9.0710322061928430e+00
+-4.4777864948699744e+01
+1.1662885394300107e+01
+-4.3101930846054781e+00
+-2.6727959374017459e+01
+1.4149603156460190e+01
+1.3719951955292199e+01
+-5.1060017264739294e+01
+-1.0768497561174891e+01
+1.0774844860674250e+01
+-4.3679837706515563e+01
+9.4694207783594653e+00
+2.1116951565325241e+01
+-5.3488850295567204e+01
+8.5518283783477838e+00
+2.0778884034563173e+01
+-5.2971158477796067e+01
+5.7611391982739830e+00
+1.9709332772105867e+01
+-5.2007059989899517e+01
+1.7305499684867161e+01
+2.2135735794300839e+01
+-6.1662790002427535e+01
+-4.7434366421439291e+00
+1.6340670709606059e+01
+-4.4879306823729820e+01
+-1.6467625173753213e+01
+8.5476790365781028e+00
+-4.3037000316229438e+01
+-9.3342606794869312e+00
+1.5765397756830966e+01
+-4.0402099335160685e+01
+6.3203886770717128e+00
+2.1008785441496695e+01
+-5.1006695120542098e+01
+-2.3414499484544833e+00
+6.4855080555629208e-01
+-2.3139349355764601e+01
+1.6290841768223199e+01
+2.1831846023035361e+01
+-6.1399010813932364e+01
+9.2723212709430882e+00
+2.0348577825432201e+01
+-5.5306156458227754e+01
+8.0629061559093191e+00
+1.0815404755132350e+01
+-4.7365508761130741e+01
+-4.7327978432742874e+00
+-6.7117363337143425e+00
+-2.3340328374028605e+01
+1.4494086118732179e+00
+-8.4589324565432573e+00
+-2.0943345347076775e+01
+5.8926723662801894e+00
+-3.3318469926671748e+00
+-2.2865085772056311e+01
+-2.5775930684359629e+00
+-8.0577385251527236e+00
+-2.1486037997050925e+01
+-1.8122447870869043e+00
+-1.5839005238297035e+00
+-2.1444298448710562e+01
+6.5424161571074668e-01
+1.8304103507871268e+00
+-2.0841279227195422e+01
+-1.6475018798663890e+00
+-2.5605209383824501e-01
+-2.1966019129604856e+01
+4.3555477449545243e+00
+-9.8429200749803003e-01
+-2.1167197245757528e+01
+3.9977182399179811e-01
+3.7373852280165485e+00
+-2.3072822319309804e+01
+5.7138758242896017e+00
+-2.2414942440423413e+00
+-2.1407842612473161e+01
+7.3973830331600610e+00
+1.4606040143664723e+01
+-5.2550915685264997e+01
+-2.8059016856856740e+00
+-7.5789656525969953e+00
+-2.2026850538235902e+01
+-1.6479494357877518e+00
+1.1457073103520679e+01
+-4.8265951316428691e+01
+-6.9842064965913924e+00
+1.5571876285018693e+00
+-3.4363148782311718e+01
+6.5119372362548447e+00
+9.9808969043281692e+00
+-4.6220528517191681e+01
+-5.3448527914918342e+00
+-6.8362616767246687e+00
+-2.3248205351557186e+01
+8.9236016423436961e+00
+2.0373462240544669e+01
+-5.4835025372651167e+01
+8.9874254097462725e+00
+1.0483553688668973e+01
+-4.6807163488478452e+01
+-3.9931587206690304e+00
+1.6153220924079430e+00
+-2.5557078794046429e+01
+-9.1448097318851826e-02
+2.7285698495380570e+00
+-2.1982568855817838e+01
+8.2236858801507839e+00
+1.4300549850370581e+01
+-5.2062174259630424e+01
+6.1377138973550887e+00
+-2.4564818136808939e+00
+-2.2390505626952976e+01
+6.6510591681641342e+00
+-7.4419267357806405e+00
+-2.2364568708097693e+01
+-1.6439869555906654e+00
+1.1184100651414161e+01
+-4.7863297923134496e+01
+1.3435824114824896e+01
+-5.2734737006403360e+00
+-2.4892593259297382e+01
+-1.4718544533797751e-01
+-9.3425395735318673e-01
+-2.0987335985864373e+01
+-2.6987358487044251e+00
+-1.1626117196175951e+00
+-2.1918724663435647e+01
+1.4252544437280873e+01
+-2.9854581670583619e-01
+-2.9443191904462335e+01
+6.2262307134654229e+00
+1.0234131378895239e+00
+-2.3774256059073110e+01
+1.3427976218557992e+01
+1.5993531964859646e+00
+-3.1078987831354368e+01
+-3.0057827064175551e+00
+6.3832882667762592e-01
+-2.4193350183079904e+01
+-1.1643482123993046e+01
+7.6954511987813055e+00
+-4.3220509368080812e+01
+5.7442322869830198e+00
+-1.2738180120668241e+00
+-2.1767224821836983e+01
+3.5293546233708830e+00
+-1.3817846630086810e+00
+-2.0671322093367667e+01
+6.9371917150391038e+00
+-4.5601331293899205e-01
+-2.2929352293667257e+01
+1.1354603793439995e+01
+-4.3212645818158899e+00
+-2.6609596060175818e+01
+-6.2893841201402196e+00
+1.4186341045134981e+01
+-4.5753771867160488e+01
+2.9397880014464599e+00
+-8.2925603181740009e+00
+-2.1239030327796872e+01
+-1.4727866606322731e+01
+-5.1627815224232165e+00
+-2.5583220729056027e+01
+1.3449678757783925e+01
+2.3438618455774851e+01
+-5.5369531566170089e+01
+1.2526442568698460e+01
+5.5946969559144115e+00
+-2.9280834327371302e+01
+6.3310870629710827e+00
+9.5271830217271916e+00
+-4.5662967122563884e+01
+3.9854437708158250e+00
+-2.2577420061419948e+00
+-2.0555287101382063e+01
+1.2534742087059172e+01
+-5.9449130547649371e+00
+-2.3877101861263231e+01
+5.1275677436288039e+00
+-2.3927933115399620e+00
+-2.0377926733830513e+01
+6.3735059110583325e+00
+-1.1054888581103782e-01
+-2.3288744035029556e+01
+-1.8441329401591580e+00
+1.1046510476599035e+01
+-4.7772357491501637e+01
+3.5362053564085492e+00
+1.6146711241707912e+01
+-5.4622615661027822e+01
+-3.9930068743623162e+00
+9.0525542909264907e+00
+-4.5246135638163068e+01
+6.6880056022602528e+00
+2.0431024304811501e+01
+-5.1132757097004458e+01
+1.2646295494792472e+01
+2.2971547168613316e+01
+-5.4841574898578315e+01
+1.2577021996493086e+01
+2.2000527048886958e+01
+-5.7809482456523405e+01
+1.5861410511707291e+01
+2.1931373814642004e+01
+-6.0637783051714251e+01
+1.7996592541165857e+01
+2.2375317015835918e+01
+-6.1258514202515478e+01
+9.8048029659929608e+00
+2.1320467612498380e+01
+-5.3778598104480004e+01
+6.3958260287343602e+00
+2.0309857355878616e+01
+-5.0859054142971850e+01
+5.4807825334540530e+00
+1.9535649151489309e+01
+-5.1661446312212512e+01
+1.5861410511707291e+01
+2.1931373814642004e+01
+-6.0637783051714251e+01
+6.5235441620003334e+00
+2.0701065002215451e+01
+-5.1245001409187431e+01
+1.5112076817339839e+01
+2.4379493740409014e+01
+-5.5333583391806556e+01
+1.6319257346427317e+01
+2.2262561089234087e+01
+-5.9695800608088831e+01
+7.3596265410352881e+00
+2.0680767049983899e+01
+-5.1555324088623593e+01
+4.7923003285245853e+00
+2.0006970030200293e+01
+-5.1588575377624785e+01
+1.6274799691404613e+01
+2.2057249421747727e+01
+-6.0367688049732678e+01
+2.0155432857574663e+01
+2.3085622688801561e+01
+-6.3793123224057453e+01
+7.1295526712144284e+00
+2.0525345486342019e+01
+-5.1300383539559881e+01
+9.7032287016310512e+00
+2.1117237537478044e+01
+-5.2099814415876828e+01
+1.1213503092578568e+01
+2.2276210082855840e+01
+-5.5115812804870146e+01
+1.9773527236505132e+01
+2.2947985734056580e+01
+-6.3291630733605537e+01
+2.0308113299033543e+01
+2.3148377535106537e+01
+-6.5072486289692236e+01
+1.1297552589531039e+01
+2.2464084707575857e+01
+-5.3707779877381832e+01
+1.1213503092578568e+01
+2.2276210082855840e+01
+-5.5115812804870146e+01
+9.4971608520161244e+00
+2.1992897213206348e+01
+-5.3025649221156471e+01
+1.0088009492951507e+01
+2.1445789413261696e+01
+-5.3971588150558098e+01
+7.1354207990872176e+00
+2.1228407120603457e+01
+-5.1220844464961480e+01
+9.5198398792621610e+00
+2.1058556139518497e+01
+-5.1877764086478592e+01
+5.8464385282368729e+00
+2.0353759327061670e+01
+-5.0733114323520603e+01
+4.7923003285245853e+00
+2.0006970030200293e+01
+-5.1588575377624785e+01
+-3.5159754473670501e+00
+-7.9851210880236687e+00
+-2.1590198991971420e+01
+6.8247412752331709e+00
+8.4876647197064106e+00
+-4.4197586296820134e+01
+1.0477667063126084e+01
+1.0176968087231243e+01
+-4.6542358004188735e+01
+6.8247412752331709e+00
+8.4876647197064106e+00
+-4.4197586296820134e+01
+-4.6531261204320788e+00
+-7.5378404878703327e+00
+-2.2266331179035358e+01
+8.0629061559093191e+00
+1.0815404755132350e+01
+-4.7365508761130741e+01
+1.1177349822193170e+01
+-4.6281756483681447e+00
+-2.6059579636983361e+01
+-1.6264229197452909e+00
+-7.9640858210697099e+00
+-2.1562485809808923e+01
+6.8051057512606690e+00
+1.0078457752317870e+01
+-4.6646779146761006e+01
+-3.8784862034192518e+00
+-8.4593423711378737e+00
+-2.0911040300949338e+01
+1.0126403502585179e+01
+-5.4947045413275450e+00
+-2.4964672767299817e+01
+-5.2399378899973934e+00
+-7.1125623801525188e+00
+-2.2960291511763817e+01
+6.8855948368063782e+00
+-7.4664859118102189e+00
+-2.2219527706738585e+01
+8.1256118144377290e+00
+1.0143054959769550e+01
+-4.6371756267051992e+01
+-1.8013856199417571e+00
+6.9824643524200525e+00
+-4.2162648212751009e+01
+-2.6615778772516725e+00
+7.1545720640097601e+00
+-4.2353242053651627e+01
+-2.0658882515005650e+00
+7.1343684183322900e+00
+-4.2211838575928823e+01
+1.1262159863746309e+01
+-4.6439503400145794e+00
+-2.6039469734890453e+01
+1.8510431694729539e+00
+8.2090295484876261e+00
+-4.3778410217843373e+01
+7.8436968608109057e+00
+9.6883929568941891e+00
+-4.5867189779590028e+01
+-4.3876488697133826e+00
+-8.3492477355401302e+00
+-2.1166741062976403e+01
+4.4215230183250940e+00
+2.2790813748251995e+00
+-2.2020550344234401e+01
+-1.3046674848248543e-01
+3.2744110081313287e+00
+-2.2636592546524245e+01
+1.3255232665218985e+01
+9.0902548364183378e-01
+-3.3691204160725128e+01
+-3.2407583408180747e+00
+-7.8861932650118254e+00
+-2.1693423844498717e+01
+9.0406767634802812e+00
+-6.6975846633880218e+00
+-2.3357713903167134e+01
+4.8216805797245295e+00
+-1.4691710464138645e+00
+-2.1260155743262402e+01
+9.9648745103279666e+00
+-4.7428451840963781e+00
+-2.6018184664838007e+01
+-1.1113142330506343e-01
+3.3280797414257131e+00
+-2.2668850280838463e+01
+1.6420634296409990e+01
+2.2072775938429835e+01
+-6.0817332718088657e+01
+1.0678560040317777e+00
+-2.7569704135524784e+00
+-1.9937110512496666e+01
+2.1102260966606168e+00
+9.2239227807663315e+00
+-4.5055131612652666e+01
+8.2013611002181825e+00
+1.0708575682940941e+01
+-4.7269308985976785e+01
+1.0187494981071614e+01
+8.4117089667379474e+00
+-4.3922306001904772e+01
+-4.8817334506566723e-01
+-1.0423758641356928e+00
+-2.0943882970638217e+01
+-1.9207745443695838e+01
+-2.7689362113576657e+00
+-2.9046067372906546e+01
+3.2238342016962420e+00
+-5.8393708082924212e+00
+-2.1615579274618089e+01
+-7.1905056104307192e+00
+1.6758330634627434e+01
+-4.1289538781939562e+01
+1.0205195926652927e+01
+8.8396994278520431e+00
+-4.4520255384388626e+01
+-7.1974559526125601e+00
+-1.9002171379790884e+00
+-3.0017342418497044e+01
+1.0293194358776251e+01
+-5.0399366564659038e+00
+-2.5481490276840777e+01
+-1.4971228851042209e+01
+5.5601396353412156e+00
+-4.0472299854705312e+01
+4.6528041068416970e+00
+8.6607068872621917e-01
+-2.1520554734030320e+01
+-1.4788447130077188e+01
+6.2337064185900930e+00
+-4.1365216635779852e+01
+-5.2162339457468336e+00
+8.0138232455199230e+00
+-4.3602710892146199e+01
+-1.3067696862776579e+01
+-8.5623565184585964e+00
+-2.0747496773995948e+01
+-7.4186102615122342e+00
+7.4392403040806627e+00
+-4.2926022275511926e+01
+3.6166471535881972e+00
+-2.9872608795376134e+00
+-2.0257095168487794e+01
+4.5469462134016840e+00
+-2.7620180310812512e+00
+-2.0704443416623523e+01
+-1.3996720450489052e+01
+-7.4932425932571194e+00
+-2.2306317924870743e+01
+-1.5196858461965876e+01
+-7.0468890660686769e+00
+-2.2855149620670758e+01
+-6.7705298567742505e+00
+8.4938699760322738e+00
+-4.4258245976642634e+01
+7.4112017073376721e+00
+1.2685330934493221e+01
+-4.9913370317026157e+01
+-1.3719173452248244e+01
+-7.2693604380733294e+00
+-2.2591625676567915e+01
+-1.1793634462873399e+01
+-7.7765809864248920e+00
+-2.1900449083810802e+01
+2.6291843049496744e+00
+-4.0713798070722779e-01
+-2.0336773858725842e+01
+-3.0238100279877860e+00
+1.0900460308140703e+01
+-4.7363186320331039e+01
+9.1717428110194010e-01
+-8.4061785860875968e+00
+-2.1085811414932678e+01
+-5.2191227203305335e+00
+-6.7615384284710602e+00
+-2.3284585458354520e+01
+1.6741198130045354e+00
+9.2368023989793802e+00
+-4.5120947853506948e+01
+-6.7143449387651113e-02
+-2.2063781523645507e+00
+-2.0603752961008983e+01
+-1.3446123647028003e+01
+-7.5262276192615190e+00
+-2.2268438438181530e+01
+-5.1841019241029418e+00
+-6.8445217870814545e+00
+-2.3170714741687895e+01
+-2.1958334344832964e+00
+-8.5148703983655061e+00
+-2.0772121920108166e+01
+-1.3221723112603028e+01
+-8.3984022781406740e+00
+-2.0994040286544934e+01
+-1.4788447130077188e+01
+6.2337064185900930e+00
+-4.1365216635779852e+01
+-5.1521651745754644e+00
+-7.1829776653800437e+00
+-2.2728540882551471e+01
+-1.3145431525402184e+01
+-8.4300677493963345e+00
+-2.0897760748823877e+01
+-2.6601889143943720e+00
+1.1414184274202910e+01
+-4.8181184107650481e+01
+-7.1400895772276121e+00
+6.2927168871320172e+00
+-4.1213040211626165e+01
+6.9327995240054747e+00
+2.0585824907856125e+00
+-2.6252815164289316e+01
+-1.3616777844156474e+01
+-8.2412340471340588e+00
+-2.1200443296594592e+01
+-1.4948846508846703e+01
+1.1781547016572615e+00
+-3.4513575545297329e+01
+7.3945231962599776e+00
+1.3916671613021012e+00
+-2.5432026147174476e+01
+-9.9598539794136958e+00
+-4.0801812100178774e+00
+-2.7083490469551720e+01
+-9.2428743656759131e+00
+-4.5848874324064743e+00
+-2.6423976405048759e+01
+3.0272994026183619e+00
+-5.9026095737224340e+00
+-2.2549425771465579e+01
+6.8094006440744632e+00
+5.1002556076828331e-01
+-2.4175385569533461e+01
+-2.3404137736718331e+00
+-7.8398558544989791e+00
+-2.1764000510252586e+01
+-3.5680379994087308e+00
+-7.9944315248050959e+00
+-2.1579189312943381e+01
+-4.9980628804808962e+00
+6.7443533825089013e+00
+-4.1817504815630393e+01
+1.3714641622528351e+01
+-2.0874790238000915e-01
+-3.2154420744142655e+01
+-8.0530601335049532e+00
+7.1624410272526253e+00
+-4.2436801946593647e+01
+1.6319257346427317e+01
+2.2262561089234087e+01
+-5.9695800608088831e+01
+1.2546459881904267e+01
+2.1650488218916720e+01
+-5.7732502587260228e+01
+-5.3192885421258511e+00
+-8.5332247115395834e+00
+-2.0858067126029514e+01
+-2.4004548048865377e+00
+7.0364834274996690e+00
+-4.2182386943639500e+01
+-1.5184633114096055e+01
+8.0339195274163688e-01
+-3.3945325899188198e+01
+-3.8013146524080739e+00
+-7.7326731111707243e+00
+-2.1963836545663284e+01
+-1.3457733278422779e+01
+8.4162866868909223e+00
+-4.4122048977885221e+01
+-1.6635992530604121e+01
+6.3502271635726304e+00
+-4.1542007609146850e+01
+1.2556507218460970e+01
+-3.6874983055709354e+00
+-2.7396075527285010e+01
+-3.6558814320722242e+00
+-8.3852389330071393e+00
+-2.1074557883126911e+01
+-4.2673858356794954e+00
+9.4046917476827421e+00
+-4.5539870136872231e+01
+-1.3406256641496217e+01
+-5.7107391231189530e-01
+-3.2016783834787844e+01
+-1.3174958925291271e+01
+-8.5339826797509790e+00
+-2.0733616678818400e+01
+-1.2808118167887660e+01
+-8.5106624860883731e+00
+-2.0758562891063210e+01
+1.1339573798422542e+01
+-5.6042175012415383e+00
+-2.4488505332591579e+01
+1.2688356502772265e+01
+-5.4092207861510291e+00
+-2.4881262711333367e+01
+-1.0644176075705619e+01
+-7.5797980801856237e+00
+-2.2303431923776699e+01
+-1.8810292686746346e+00
+-2.1791208340144635e-01
+-2.2051702901964330e+01
+-1.3058242412828720e+01
+-7.3759620688956105e+00
+-2.2399956208305280e+01
+3.4754420571241194e+00
+3.3728638908570767e+00
+-2.2483613467526400e+01
+1.3762888723053775e+01
+-5.6321277438361017e+00
+-2.4503495269587486e+01
+4.1106777155927814e+00
+-1.0122535185703625e+00
+-2.1102344603985500e+01
+8.5901166359341588e+00
+1.3143211601173290e+01
+-5.0553269885274261e+01
+1.0417766428272923e+01
+-3.3530879380640499e+00
+-2.7891163999264414e+01
+1.1539851196519191e+01
+-4.9223690172793830e+00
+-2.5629518613551451e+01
+3.7800043133072614e+00
+1.8143695591893909e+01
+-5.2067191212885376e+01
+-6.8107813284966658e+00
+7.5799942466081749e+00
+-4.2950895249602738e+01
+-4.3196111976034217e+00
+-6.7814084170318409e+00
+-2.3295477989914556e+01
+5.8963985962222409e+00
+-9.8164807663158482e-01
+-2.2231051734626558e+01
+4.0491026990668555e+00
+-2.3794287992971994e+00
+-2.0340571605151343e+01
+3.1177012734951384e+00
+-2.4291514669802661e+00
+-2.0352926555877474e+01
+-3.5383888698620622e+00
+9.9866444026665544e+00
+-4.6248080117551076e+01
+-1.3511572390997884e+01
+-6.9745952541863483e+00
+-2.2970913510465465e+01
+3.0135169873574004e+00
+-5.8444567294315055e+00
+-2.1553875676362939e+01
+-1.3439782339831090e+01
+-8.0663234941960358e+00
+-2.1348307703855394e+01
+-2.1014596560445331e+00
+-8.3343351701925457e+00
+-2.1029758465939299e+01
+9.3643592081015896e+00
+-5.3733263938727776e+00
+-2.5116024366344512e+01
+-9.1486180299204758e+00
+-4.4525729158729952e+00
+-2.6471569569567372e+01
+-2.6779635181530366e+00
+7.5129642505425398e+00
+-4.2826056589188276e+01
+1.5637182378486509e+01
+1.4943768836225509e+01
+-5.2668911603628310e+01
+9.9013858556283409e+00
+1.2485760403517300e+01
+-4.9640295960327727e+01
+-1.8493016041568768e+00
+-7.9999155860798812e+00
+-2.1623712563126599e+01
+5.2066105192522381e+00
+-6.2139081046192135e-01
+-2.1563434619586140e+01
+8.4034710034421654e+00
+-6.7121440991082588e+00
+-2.3258369710968250e+01
+6.1377138973550887e+00
+-2.4564818136808939e+00
+-2.2390505626952976e+01
+1.0223537033667375e+01
+-3.6011543037349893e+00
+-2.7722366826752033e+01
+3.6465790275662391e+00
+3.1923521195493869e+00
+-2.2330898135389571e+01
+1.3173666323867202e+01
+-5.8804124975723839e+00
+-2.3894762692697672e+01
+1.3370442448630847e+01
+8.6244973262468978e+00
+-3.8992035480098359e+01
+1.3555161955919282e+01
+8.5625697147421516e+00
+-3.9169207738388572e+01
+-3.4733336060991569e+00
+-8.3564327684696345e+00
+-2.1259053216144032e+01
+1.3555161955919282e+01
+8.5625697147421516e+00
+-3.9169207738388572e+01
+-1.4477238262432364e+01
+5.8337875595167050e+00
+-4.0616320916608927e+01
+1.3333881501589335e+01
+1.1462158143280860e+01
+-3.5965692994303559e+01
+1.1536452718511951e+00
+-8.2293136454985358e+00
+-2.1320343070206562e+01
+1.3134251798776203e+01
+1.3469956767751464e+01
+-5.0968672433862608e+01
+-6.4496344855430054e+00
+6.7674841669212835e+00
+-4.2035032448072272e+01
+1.4475041532913737e+01
+-1.5376416411553395e+00
+-3.0452056611083641e+01
+-2.9844309206364588e+00
+-8.1786170243087586e+00
+-2.1336349785814047e+01
+5.3894751730679173e+00
+-4.0267944365592960e+00
+-2.2549117398560679e+01
+-4.4615729069337178e+00
+-6.4945617169381791e+00
+-2.3655837062257177e+01
+-7.0212630833529248e+00
+-3.3124594989946323e+00
+-2.8069716333488341e+01
+-3.1267570747753077e+00
+9.2975648762058050e-01
+-2.4588284604601302e+01
+-3.9200810926492484e+00
+-5.6931959676012180e+00
+-2.3893156978077442e+01
+1.4058033388842789e+01
+4.6331210173033566e-01
+-3.0040340029174377e+01
+6.3234926831920966e+00
+-2.0297355145120549e-01
+-2.3174933771096537e+01
+-1.9032745304786307e+00
+1.6958340819933559e+00
+-2.3411690239739702e+01
+-4.0065004073216635e+00
+-2.3355017772785742e+00
+-2.5783515007371065e+01
+5.1262129292447201e+00
+3.4179480497953446e-01
+-2.2017245652633104e+01
+1.2645263064645813e+00
+-2.1898613687668447e-01
+-2.0242733488619177e+01
+-3.0786252809274304e+00
+8.7571149165250306e-01
+-2.4570394577702359e+01
+-1.2618942511161572e+01
+-5.4276888524877140e+00
+-2.5099710808148000e+01
+1.4100994584547910e+00
+-1.3840370334408953e+00
+-2.0539350286533438e+01
+-1.8170103768429895e+00
+-3.6256550753754073e+00
+-2.2185526669200726e+01
+-4.5243681241308691e+00
+6.3850259517460399e+00
+-4.1297935067941090e+01
+8.4317397262911378e+00
+1.9951407078339958e+01
+-5.4189766578904901e+01
+-3.9035658667075119e+00
+1.1590076474312799e+01
+-4.8559559489778891e+01
+1.1031831256624919e+01
+1.5098811320343563e+01
+-5.3390327717854007e+01
+1.4974688826593811e+01
+1.3648002505225264e+01
+-5.1315588911625575e+01
+2.9492056658696968e+00
+-3.9304895702813396e+00
+-2.0832348180094222e+01
+5.4775230116039508e-01
+-5.8910525295232992e+00
+-2.1421572939968566e+01
+-4.6993485751326425e+00
+-7.9723397572126826e+00
+-2.1606056201348004e+01
+-1.5473837136616234e+01
+7.5503976760156633e+00
+-4.3095769924321431e+01
+-1.4396580935728027e+00
+-1.6080946037750699e+00
+-2.1319785271569394e+01
+3.1727539863234284e+00
+-2.1571544468406167e+00
+-2.0503671279142033e+01
+-4.1960373800195718e+00
+6.3736912997338013e+00
+-4.1332519516113614e+01
+6.1333618693558387e+00
+1.5733370787666603e+00
+-2.4447296689626743e+01
+9.9464023291139014e+00
+1.3509830353468194e+01
+-5.0860988102852161e+01
+9.8953712425547025e+00
+1.3336028954494138e+01
+-5.1630519700762051e+01
+6.4406745647057511e+00
+8.5447085782501446e+00
+-4.4185430791124972e+01
+-6.7222419760797445e+00
+2.0001333792346072e+00
+-3.5326349286335642e+01
+1.6242445111663802e+01
+1.4447948097064771e+01
+-5.2318711011457907e+01
+6.4690970061760771e+00
+1.9655052693847527e+01
+-5.2543180982721758e+01
+9.5511967896712875e+00
+-5.4296877015101286e+00
+-2.4842738912273649e+01
+2.2389589808045907e+00
+-8.5786273337844285e+00
+-2.0731669516062738e+01
+1.5115222543182142e+01
+1.5715038508921563e+01
+-5.4071768266699436e+01
+7.4694514433296035e+00
+1.6199348396514662e+01
+-5.4597899989334429e+01
+7.0732600795257730e+00
+1.3155242420643440e+01
+-5.0546406874577649e+01
+1.0570622188242229e+01
+9.3230818434054381e+00
+-4.5150190523347327e+01
+-6.9749234722466369e+00
+1.9713883508068859e+00
+-3.5310983359402265e+01
+1.0943307722732253e+01
+-3.5025952776003559e+00
+-2.7527885296118065e+01
+-6.9909827418792441e+00
+1.8862764383366299e+00
+-3.5206547236619073e+01
+1.4717604917371608e+01
+1.1952809795061588e+01
+-4.8606733205672079e+01
+-2.7070487312976854e+00
+7.0237437720561342e+00
+-4.2186854556800562e+01
+9.6176728942269563e+00
+-5.9732420125935661e+00
+-2.4273961874956342e+01
+1.2885386815399599e+01
+1.7260343649031764e+01
+-5.6412061161337490e+01
+-8.1512965914549940e-01
+-1.8946480343542902e+00
+-2.1042254251555015e+01
+1.0191716821890976e+01
+-6.2243985546709464e+00
+-2.4011463709397944e+01
+9.8340616640516139e+00
+8.1732384827625140e+00
+-4.3900309851427487e+01
+9.3096619394397511e+00
+1.2659566756398398e+01
+-4.9674207713059594e+01
+-2.6246262515180314e+00
+6.4958952933569396e+00
+-4.1449550873143195e+01
+-1.5120040812989521e+01
+1.1083377643091563e+00
+-3.4155964631855866e+01
+1.0104327630725352e+01
+-4.8723578253191677e+00
+-2.5793916865271058e+01
+1.3575872296462538e+01
+9.7526354821616703e+00
+-3.7462867405973064e+01
+6.7453814427304168e+00
+1.4736110394965516e+01
+-5.2602812000476661e+01
+1.7153282032769883e+00
+-8.2620337043364334e+00
+-2.1221237043585258e+01
+-6.6592467806538247e+00
+-4.0783316591526200e+00
+-2.7025612187329035e+01
+-1.4359694599515629e+00
+2.1448010082880278e+00
+-2.2923545297513652e+01
+1.0237203984057290e+00
+-5.0976548407196223e+00
+-2.1858212084410674e+01
+-4.8938874922208138e+00
+9.9383301665432313e+00
+-4.6076814315159723e+01
+-3.2721546601401177e+00
+8.5955582714321854e-01
+-2.4589622182247524e+01
+1.0162477757333351e+01
+-6.3319675097131132e+00
+-2.3693521462704052e+01
+-2.8137223983850799e+00
+-4.1827520411635968e+00
+-2.4363839312917666e+01
+1.3491418757419867e+01
+8.4510980583018203e+00
+-4.0244956830176811e+01
+1.3558970325445820e+01
+7.4929171247343325e+00
+-4.1473815356421710e+01
+4.6055023067344472e+00
+-2.2093265247858698e+00
+-2.0635129043170579e+01
+-5.0124916883740278e+00
+-7.8696697699431635e+00
+-2.1767840613748458e+01
+-2.8193968732678565e+00
+-8.2381058123324635e+00
+-2.1265578096881985e+01
+1.3598113122918249e+01
+8.1590214224751154e+00
+-3.9696640360394007e+01
+-2.8971438549228195e+00
+-8.2057053609809145e+00
+-2.1240093063077566e+01
+1.3833766464141496e+01
+7.6278494235457455e+00
+-3.9289180962611177e+01
+1.3318713499677466e+01
+7.0594224833816099e+00
+-4.1091609888107946e+01
+1.6170229731426151e+01
+1.5679947932448323e+01
+-5.3738105113809986e+01
+1.4081487606600213e+01
+-4.8377923161643963e+00
+-2.5396378666457238e+01
+9.1502057755058388e+00
+1.2210228349883890e+01
+-4.9222159739041025e+01
+-4.4403384747263992e+00
+-8.7022811695693427e+00
+-2.0676492667038310e+01
+-1.8693941067910984e+01
+-3.3963324286935630e+00
+-2.8221391265251061e+01
+2.5161681490083563e+00
+1.5829601910247510e+01
+-5.3969966676142370e+01
+-1.3069007557589293e+01
+4.6096668643771732e+00
+-3.9005769239672482e+01
+9.4925453396290109e+00
+2.0531707918308982e+01
+-5.5845920441805532e+01
+8.5803541344105980e+00
+6.5429225656235666e+00
+-4.1484973596089311e+01
+1.3299763569308263e+01
+1.8151397734247572e+00
+-3.1261475606481362e+01
+3.5008373515771916e+00
+-1.3121226297527309e+00
+-2.0743621662591455e+01
+1.0794225554556416e+01
+-4.2666330921992053e+00
+-2.6389066547414075e+01
+5.6033176197583678e+00
+-2.3655797743545823e-01
+-2.2122154788469771e+01
+1.6171562965700154e+01
+1.8440498137385614e+01
+-5.7837752829759481e+01
+-1.4876083058319736e+01
+4.8968221414982445e+00
+-3.9529873932036523e+01
+-1.2098698557016920e+01
+2.2699020509290055e+00
+-3.5702174686538413e+01
+9.2562786722911667e+00
+-6.1265156164533670e+00
+-2.4104673589456951e+01
+1.1095378363990621e+01
+2.2343550524576223e+01
+-5.3865514219900263e+01
+-1.3476045609305535e+01
+5.8976284430609516e+00
+-4.0778533226241755e+01
+1.7057627061558652e+01
+1.5993462064127135e+01
+-5.4513658253998898e+01
+2.1852616444505659e+00
+-8.5829962715465395e+00
+-2.0796452704290822e+01
+1.0725088870300626e+01
+-5.0017699570714456e+00
+-2.5731436270465760e+01
+-7.4914056927831023e+00
+1.6638863573398943e+00
+-3.4785512773772005e+01
+1.7478618280351721e+01
+2.1981191995462286e+01
+-6.2187539208398164e+01
+8.4898023868479289e+00
+-6.8096197071794613e+00
+-2.3027626547034519e+01
+2.6576558805463550e+00
+1.9056144589857837e+01
+-5.0544551268811567e+01
+1.1130467024603426e+01
+1.3369380718467212e+01
+-5.0645833056639589e+01
+1.7578487761285771e+01
+2.2692805455472602e+01
+-6.1068181692096644e+01
+-8.0505108701936834e+00
+2.3793493361171523e+00
+-3.5897656852896269e+01
+4.8071239471022720e+00
+1.5761438865707813e+01
+-5.4101223731633930e+01
+9.3794887231347666e+00
+-4.5607062224282542e+00
+-2.6294778369792290e+01
+1.3198612315831523e+01
+4.9415154566822272e-01
+-3.3155997111396765e+01
+-6.1506417327119642e+00
+6.6793168008648092e+00
+-4.1825897948499097e+01
+-1.7632826979244527e+00
+-7.7368087122496245e+00
+-2.1939506389463880e+01
+-5.3709329412678990e+00
+-8.6753367023762902e+00
+-2.0609389506497774e+01
+1.3559213368945036e+01
+-5.3265209345746323e+00
+-2.5031645897342329e+01
+-5.8634704799363284e+00
+-7.3565275023998993e+00
+-2.2552310720088947e+01
+6.6275641024049774e+00
+-4.4786940762701324e+00
+-2.3541172765567502e+01
+-1.8919997752058317e+00
+8.9421817863594804e+00
+-4.4737612854981464e+01
+9.1348795680224804e+00
+-6.4062665337473401e+00
+-2.3576348651063626e+01
+-5.7762754456468164e+00
+6.6583182087609583e+00
+-4.1849700768082371e+01
+1.4462774974370170e+01
+1.6965744872614536e+01
+-5.6080946008549653e+01
+-2.5085677423717261e+00
+-7.8718629110573577e+00
+-2.1695574494955380e+01
+7.1265187237280569e+00
+7.5428068861874200e+00
+-4.2809831528435630e+01
+1.0123324331044097e+01
+9.6615179523358936e+00
+-4.5782562026694762e+01
+-7.1952088537631207e+00
+7.1842986199619983e+00
+-4.2408457086853730e+01
+8.9073727738135098e+00
+-6.2627544848265737e+00
+-2.3861374678760146e+01
+-1.8401854080898747e+00
+6.6418599171848252e+00
+-4.1639744141538806e+01
+-8.9921579306863482e+00
+3.8353830365344193e+00
+-3.7913650188508107e+01
+8.9976603206821011e+00
+1.1464553566327641e+01
+-4.8220866256362839e+01
+9.4160403960089027e+00
+7.8250208204513312e+00
+-4.3232437409196415e+01
+2.3302815100301624e+00
+1.8363301952136595e+01
+-5.0425603509563821e+01
+-5.3245628230762394e+00
+-7.0765790422595654e+00
+-2.2742933890826947e+01
+1.3339516501220235e+01
+-4.9491611512435361e+00
+-2.5321298367563621e+01
+-1.3911563747266348e+01
+-7.6889541685043827e+00
+-2.1946245913376863e+01
+1.2840279808921983e+01
+-4.7767489540647325e+00
+-2.5748515229517167e+01
+-3.8556950910055603e+00
+6.4163628275971778e+00
+-4.1411908233854248e+01
+1.3780835789208467e+01
+2.4848507250302868e-01
+-3.1841615845368992e+01
+-3.0035372131608464e+00
+-7.4494133570913030e+00
+-2.2247553041306716e+01
+1.3012607356951598e+01
+-4.8873797663197367e+00
+-2.5579471781170735e+01
+-5.4670124011260368e+00
+5.2888030254075282e+00
+-3.9858786097362980e+01
+1.2074218447111303e+01
+5.0298365381160339e+00
+-3.8644475800548349e+01
+-5.5364263154503224e+00
+-7.5548002425265093e+00
+-2.2221226755387722e+01
+-1.1701727326103779e+01
+-8.1785176295580406e+00
+-2.1229809313583473e+01
+1.0603716352803543e+01
+-5.9310334700715934e+00
+-2.4196180338423517e+01
+1.7761204975531030e+01
+2.2282792472912021e+01
+-6.1905876157109745e+01
+8.1401113436176384e+00
+-7.0386709810493704e+00
+-2.2758244710899369e+01
+1.0551173917787795e+01
+1.0086598600604605e+01
+-4.6390457399765502e+01
+-1.1958971079610984e+01
+3.4882063689528793e+00
+-3.7358744130091310e+01
+-2.6779635181530366e+00
+7.5129642505425398e+00
+-4.2826056589188276e+01
+-1.1313358301093633e+01
+3.2535860611522320e+00
+-3.7298878742184073e+01
+1.3226493419221551e+01
+1.7402306115068136e+01
+-5.6513920004369581e+01
+1.5998995104005948e+01
+1.5103602551493802e+01
+-5.3137861917742782e+01
+-3.3742192562588773e+00
+1.4413488150383535e+00
+-2.5250365971131544e+01
+-2.3423801287181933e+00
+1.8361895159128065e+00
+-2.4683127891554054e+01
+8.3128683070813327e+00
+2.0633834002010268e+01
+-5.2420346329178983e+01
+-1.1517875476399761e+01
+1.6927224425665315e+00
+-3.5021263365130885e+01
+-9.1777654460382401e+00
+6.1099228256803917e+00
+-4.0887255449066288e+01
+8.8608974022054241e+00
+1.2561313266167280e+01
+-4.9695220855111060e+01
+-1.4835442285674429e+01
+4.3902907585980273e+00
+-3.8790045563552923e+01
+-2.9608463754187277e+01
+1.8618125274502738e+01
+-5.8751506732216200e+01
+1.0248362915974198e+01
+-4.6243315069570743e+00
+-2.6149132243631627e+01
+-8.8666533632633371e+00
+2.1638618775158784e+00
+-3.5245734115408958e+01
+-1.1115947802721015e+01
+2.2985239129329393e+00
+-3.5893745367343413e+01
+1.0597530735917227e+01
+9.5853124638539189e+00
+-4.5675894729928721e+01
+-2.8806225000756966e+00
+-7.8131696584673946e+00
+-2.1756311293710432e+01
+1.5567855843182343e+01
+1.6420501972874874e+01
+-5.5117415385155766e+01
+-6.7699280511325934e+00
+7.0180234325457000e+00
+-4.2191243183194601e+01
+-7.3588115296311996e+00
+6.5272783584313760e+00
+-4.1637360962392435e+01
+1.6673445953292411e+01
+1.6882450661924494e+01
+-5.5960219208499858e+01
+-1.0615489097774397e+01
+-7.3802028800406747e+00
+-2.2312852317146906e+01
+-3.9866727340457748e+00
+-7.5757936989459456e+00
+-2.2123018897772990e+01
+-8.3526044775185397e+00
+2.4668379723165201e+00
+-3.5982414273926103e+01
+-6.6205673859660106e+00
+6.5172578614334462e+00
+-4.1526632000779870e+01
+-6.1832600517696532e+00
+6.8567677191973591e+00
+-4.2024571729502455e+01
+1.2758154178074463e+01
+7.0155753147042876e+00
+-4.1906372066093965e+01
+9.3355422645804236e+00
+1.8397497065984957e+01
+-5.7045128976414340e+01
+1.1847482676825063e+01
+-5.6093617711474177e+00
+-2.4605701630892305e+01
+1.6728194040504103e+01
+2.0745554314919051e+01
+-6.0773092616620133e+01
+-1.1363613336730296e+01
+-2.1488965870998631e+00
+-2.9914540965371778e+01
+-8.9475687960002386e+00
+-4.9871644691570260e+00
+-2.5828142837690081e+01
+1.4081487606600213e+01
+-4.8377923161643963e+00
+-2.5396378666457238e+01
+-9.6750931343918971e+00
+-7.1636275189322707e-01
+-3.1627013850899271e+01
+-1.2802158724171393e+01
+-5.6738669605775103e+00
+-2.4791680273598534e+01
+-7.1197089645683258e+00
+-3.5202239975587637e+00
+-2.7723633939791199e+01
+1.2821419773167285e+01
+-5.4444990803137312e+00
+-2.4745190294897714e+01
+7.1020406612131062e+00
+1.2498804909963818e+01
+-4.9715994426729310e+01
+6.1421033471599582e+00
+6.6575735560097649e-01
+-2.3300733305002815e+01
+-1.3636525134360172e+01
+-8.0349104309585275e+00
+-2.1477729397065300e+01
+3.0942165920065769e+00
+1.7501887935748190e+01
+-5.3341125778857773e+01
+1.3014395308821294e+01
+-5.8809055790309737e+00
+-2.4045085848702033e+01
+9.2445058637539237e+00
+-5.5586503944569836e+00
+-2.4876835713299183e+01
+1.0689762334074155e+01
+-3.4025218639965393e+00
+-2.7907301026931155e+01
+7.9066120872064243e+00
+1.0809119763244869e+01
+-4.7299920588578935e+01
+-9.3187641238556331e+00
+-3.0460204814337568e+00
+-2.8493680392745073e+01
+2.8179903906102517e+00
+1.0048283836391803e+01
+-4.6272576505390816e+01
+-7.6996083007878298e+00
+1.8704286150858502e+00
+-3.5290443048897743e+01
+1.1840238576481850e+01
+-3.6710483628722845e+00
+-2.7444461737662252e+01
+8.7911098756833610e+00
+1.7038640444039562e+01
+-5.5968255607497952e+01
+-1.2505471331702745e+01
+-7.5387146064560806e+00
+-2.2175583817094701e+01
+-7.1087870460068725e+00
+-3.7912061770575227e+00
+-2.7334125832393497e+01
+-1.0605521905004984e+01
+-2.7635142287738632e+00
+-2.8993745140804990e+01
+1.8175180761717697e+00
+-3.1655615735279183e+00
+-1.9950692465107963e+01
+-9.4655480535728387e+00
+-1.8512086360996178e+00
+-3.0283486076719853e+01
+9.6423372981908688e+00
+-6.6647537998789552e+00
+-2.3054614628712276e+01
+1.3409917667692303e+01
+8.1431280196546254e+00
+-4.0661555995794551e+01
+1.2965020782860803e+01
+-5.1679134048068907e+00
+-2.5242018729775701e+01
+-1.3150324176199673e+01
+-7.3427343417881810e+00
+-2.2477976081244094e+01
+9.8270016633956470e+00
+1.5543080884051466e+01
+-5.3642893906039212e+01
+-1.4326891534423694e+01
+9.6971607324295199e+00
+-4.4523526104135293e+01
+1.2184946499985685e+01
+-5.3008189012908984e+00
+-2.5151365725556378e+01
+1.6841531308622429e+01
+2.1846756076090816e+01
+-6.1668048579734311e+01
+-7.4584370413452845e+00
+-3.0170307294919745e+00
+-2.8438791421246165e+01
+1.1570426601626188e+01
+1.4038170794923648e+01
+-5.1942912042393360e+01
+9.2562786722911667e+00
+-6.1265156164533670e+00
+-2.4104673589456951e+01
+2.2209339102920427e+00
+-8.0148694114829482e+00
+-2.1623594061500683e+01
+-8.8658255501746748e+00
+1.7749263028964704e+00
+-3.5049170427912962e+01
+1.0766953568977968e+01
+-5.8888699285063133e+00
+-2.4266664971548266e+01
+9.8121851364875656e+00
+1.2160325017041769e+01
+-4.9220911055513419e+01
+5.9645897504600747e+00
+1.9957441837521515e+01
+-5.1102407517974562e+01
+1.1408167664042340e+01
+-2.8321061068263838e+00
+-2.8838144710133268e+01
+4.0458595725435460e+00
+1.7118071860746120e+01
+-5.4115696586105955e+01
+1.2299676886806372e+01
+5.0360728924070877e+00
+-3.8902119525202281e+01
+9.4241084492669618e+00
+-6.7235227242877009e+00
+-2.3156559491420552e+01
+-9.0196049957456257e+00
+-4.8523431514849689e+00
+-2.6009105580037822e+01
+-8.8411741106211306e+00
+-4.7605648336002560e+00
+-2.6099903479943048e+01
+-6.8130039718703275e+00
+-3.4938456828165783e+00
+-2.7821349176906917e+01
+9.5660191447981209e+00
+8.2641904147191028e+00
+-4.3704751152402025e+01
+-1.6472549701366241e+01
+1.8677617969472771e+00
+-3.5413642408284481e+01
+1.2953977793589525e+01
+-4.7294416572943332e+00
+-2.5722851924748788e+01
+1.0221889876613229e+01
+-6.3044799404322838e+00
+-2.3784341111152553e+01
+1.8495326396114184e+01
+2.1978020129445888e+01
+-6.2385046426451559e+01
+1.5823734246718555e+01
+1.6856029090114372e+01
+-5.5678082727985142e+01
+9.2623139913787647e+00
+7.8590148805091111e+00
+-4.3373102747376130e+01
+4.6382117068317665e+00
+1.9588114954205256e+01
+-5.1000716415499767e+01
+4.2951127246578151e+00
+1.8930074322681008e+01
+-5.1665746783646711e+01
+1.3896601831024432e+01
+-4.8736435209935802e+00
+-2.5409839674840843e+01
+-8.9934927259997703e+00
+2.0135678065102831e+00
+-3.5399499573629576e+01
+1.5783880239488064e+00
+8.4255740434559048e+00
+-4.4031682167764998e+01
+-1.3756037695368947e+01
+3.8696612256331999e+00
+-3.8047178162763458e+01
+-7.6863395768085763e+00
+-7.1147153909336858e+00
+-2.2785060395869053e+01
+9.9056760924060789e+00
+-5.7226124872139916e+00
+-2.4488597006494739e+01
+4.2097355218507282e+00
+3.3769405904538469e-01
+-2.1034561696424781e+01
+7.2328001504877815e+00
+1.0736630213799813e+01
+-4.7367089380661497e+01
+-5.6228168561311953e-01
+2.7671012854229247e+00
+-2.2407318763153125e+01
+-7.3886881977272392e+00
+-1.8562726166823647e+00
+-3.0055915452635496e+01
+1.2677012474731738e+01
+-5.3453247927186576e+00
+-2.5012339383632021e+01
+1.3515933224132565e+01
+-5.4738359999002899e+00
+-2.4539975268914507e+01
+1.0684209453305892e+01
+-5.5737229663021974e+00
+-2.4655984474043134e+01
+-5.2241783627034177e+00
+-7.4494888883904293e+00
+-2.2383518428290127e+01
+1.1828182216695602e+01
+-3.1653667058519614e+00
+-2.8116788035085694e+01
+-4.0843228294676788e+00
+7.5109337225101065e+00
+-4.2894617254210587e+01
+-1.4585355481632490e+01
+-5.4991196062548084e+00
+-2.4896873382745568e+01
+-1.3266621435388821e+01
+-7.1644774327020500e+00
+-2.2647754855838329e+01
+1.3712166654381804e+01
+7.9600520881626897e+00
+-3.9255314076207632e+01
+9.3077068610346689e+00
+-5.7241470217572576e+00
+-2.4680155298272712e+01
+9.6655961825118943e+00
+-6.0571634478033447e+00
+-2.4184608361805854e+01
+9.6642046523628373e+00
+-6.5900353580080608e+00
+-2.3330263053214225e+01
+-4.2061065534069657e+00
+-7.0184457015210562e+00
+-2.2970045680384455e+01
+-3.9476372573839802e+00
+-5.3848085615367198e+00
+-2.4285120004097802e+01
+1.0836700167291294e+01
+-4.9238460333398075e+00
+-2.5717145201933384e+01
+1.3491418757419867e+01
+8.4510980583018203e+00
+-4.0244956830176811e+01
+1.4071350723212470e+01
+-4.9857468259362783e+00
+-2.5318297913646358e+01
+1.0924862167270547e+01
+-1.5537455438901424e+00
+-3.0445254062602945e+01
+-1.2977240663427306e+01
+-7.4420376737752321e+00
+-2.2303413726988140e+01
+2.4278811157650848e+00
+1.8533460876562984e+01
+-5.0059041322690234e+01
+1.0408466401098574e+01
+-4.5742470466428502e+00
+-2.6208066946623834e+01
+-5.2619016564996040e+00
+-7.0049615179450075e+00
+-2.2976625958405815e+01
+1.3167209056614121e+01
+9.1817419896047632e+00
+-4.1733829237311291e+01
+9.7219747387090933e+00
+-6.1217484273976677e+00
+-2.4144774922123705e+01
+1.0755920129658035e+01
+-4.6474807785429331e+00
+-2.6085897297400141e+01
+4.2146991101723907e+00
+1.9017026849131884e+01
+-5.1103038764941779e+01
+1.0400606822583114e+01
+9.6225876120203377e+00
+-4.5619475364481168e+01
+-1.8112640487230562e+00
+1.1287982338357244e+01
+-4.8322346570478246e+01
+-2.9608463754187277e+01
+1.8618125274502738e+01
+-5.8751506732216200e+01
+-9.0600669593883367e+00
+5.1600333033741350e+00
+-3.9692440638875780e+01
+-1.3732063937164321e+01
+-7.3337554379747933e+00
+-2.2539818909212116e+01
+-6.9776833714357416e+00
+6.7044517223177751e+00
+-4.1776287913299228e+01
+-1.6935788480812096e+01
+2.3686012777859431e+00
+-3.6145574834506903e+01
+-2.0999945005899638e+00
+9.2858126774185457e-01
+-2.3459846402142766e+01
+-8.1303574653632307e+00
+1.2186453532842977e+01
+-4.7725898474062276e+01
+1.1798896789761551e+01
+-4.9358285858737050e+00
+-2.5517438122345332e+01
+1.0085005472641702e+01
+9.1183300310434703e+00
+-4.5139870425505116e+01
+-6.1612840675319038e+00
+7.2312723972228525e+00
+-4.2512946546790744e+01
+1.3032871183467485e+01
+1.0134915381124829e+01
+-4.0640522548108457e+01
+-3.2056580539027335e+00
+1.3263278215972500e+00
+-2.5216153764907233e+01
+-8.6125769859098327e+00
+1.2889078407196044e+01
+-4.6137224156673071e+01
+1.0995430299736485e+01
+-1.9912674843966680e+00
+-2.9797129190955459e+01
+1.0148758840087746e+01
+-6.3005126809053102e+00
+-2.3775892296141450e+01
+4.0721578377244771e+00
+1.9107497271284682e+01
+-5.1304586473435400e+01
+-8.8411741106211306e+00
+-4.7605648336002560e+00
+-2.6099903479943048e+01
+1.1103370726560733e+01
+2.1828657023288280e+01
+-5.4284058716090236e+01
+-3.0238100279877860e+00
+1.0900460308140703e+01
+-4.7363186320331039e+01
+7.3945231962599776e+00
+1.3916671613021012e+00
+-2.5432026147174476e+01
+6.1710269687275394e+00
+7.7696387794227126e+00
+-4.3139595208280774e+01
+1.3577599946542380e+01
+8.0292470615690412e+00
+-4.0047185164214653e+01
+1.1459282452821741e+01
+-5.1072111995419203e+00
+-2.5381478962933265e+01
+1.8900569422800364e+00
+1.6265710710850229e+01
+-5.4341296676160702e+01
+8.6464733508896696e+00
+1.7442775586380801e+01
+-5.6359028608069835e+01
+-7.1942802072348666e+00
+-1.3009928622370386e+00
+-3.0757280753853955e+01
+6.9044365041606124e+00
+1.6133616303690776e+01
+-5.4554756503416307e+01
+1.4771456562050499e+01
+2.0596125610187794e+01
+-6.0508377719251968e+01
+7.9574748651984573e+00
+1.0579287238969238e+01
+-4.7017379475731246e+01
+-7.2839737568831566e+00
+-3.3989937842185771e+00
+-2.8052560659312210e+01
+-1.3952857554828251e+01
+-7.8570934377611588e+00
+-2.1702529007767094e+01
+9.4241084492669618e+00
+-6.7235227242877009e+00
+-2.3156559491420552e+01
+1.2597106200658645e+01
+-3.8219666114365620e+00
+-2.7146591862071720e+01
+1.3664536147525725e+01
+7.3030302546162886e+00
+-4.0846163737633169e+01
+-4.0447451765112019e+00
+5.8768326076190203e+00
+-4.0704695380520469e+01
+9.3479956955284926e+00
+1.6100141537500786e+01
+-5.4601439868294229e+01
+1.3112426757118387e+01
+1.2496864141137980e-02
+-3.2581878221694318e+01
+5.2504681068782446e+00
+-7.8399979262994153e+00
+-2.1783547992118390e+01
+1.1872387211312992e+01
+-4.7783181532541832e+00
+-2.5797815485406520e+01
+6.9746057184992303e+00
+7.7369281291029877e+00
+-4.3158923134381716e+01
+1.3157899163845400e+01
+-4.8201779914177836e+00
+-2.5639893019045402e+01
+-8.6594811024465272e+00
+3.6809418505188525e+00
+-3.7623246935387144e+01
+-4.7327978432742874e+00
+-6.7117363337143425e+00
+-2.3340328374028605e+01
+1.0720655172698102e+01
+1.3205648269296926e+01
+-5.0581208099075319e+01
+-1.0695026327679832e+01
+-7.3536788631381693e+00
+-2.2377984754518518e+01
+1.3944052970405101e+01
+-7.3736163479181174e-02
+-3.1482223739291975e+01
+7.8064096690395210e+00
+2.0647059490376034e+01
+-5.2062632133914882e+01
+-1.2587881273864806e+01
+-7.0489441417427523e+00
+-2.2870433340100039e+01
+-4.2451609005592950e+00
+-7.0289938276422887e+00
+-2.2915282750087531e+01
+7.9096806372407009e+00
+9.3256040036956538e+00
+-4.5395944737703282e+01
+1.2872940985087796e+01
+-5.7961404671561452e+00
+-2.4151041341751164e+01
+8.3162828484863951e+00
+6.2658982354866719e+00
+-4.0942998324925327e+01
+8.8981251304980464e+00
+1.2458039489371183e+01
+-4.9774258685336846e+01
+1.0319075957140763e+01
+-5.1047035939468408e+00
+-2.5490465388298869e+01
+4.6552374497609961e+00
+9.2897255673854684e-01
+-2.1504923175914964e+01
+9.0717094523189861e+00
+6.7775703552939701e+00
+-4.1545292744181012e+01
+-7.7800004928851010e+00
+-7.1313026485542537e+00
+-2.2805636418410593e+01
+-1.1101027202711354e+01
+1.5017840403792011e+00
+-3.4583168508717840e+01
+1.4072178714076411e+01
+1.8158054931187337e-01
+-2.9674326384365163e+01
+1.3046428496591730e+01
+1.7820753112031650e+01
+-5.6982194662685814e+01
+1.2578635563006172e+01
+1.8130220421522729e+01
+-5.7370019438645954e+01
+4.9569072346044392e+00
+-1.2218229282859923e-01
+-2.1787991712007894e+01
+1.1463940886998337e+01
+-4.3894370889353578e+00
+-2.6408211443618519e+01
+9.1426618674333682e+00
+-6.2224601441728495e+00
+-2.3981699266338531e+01
+9.6138207739079551e+00
+1.2661770404504743e+01
+-4.9828066342927478e+01
+1.1752855672851929e+01
+-5.4943781621676848e+00
+-2.5011260853270834e+01
+-4.9652282485287547e+00
+7.6849950651784988e+00
+-4.3166878811233765e+01
+6.7732336877285695e+00
+-3.8570874567888569e+00
+-2.4381406463508384e+01
+-3.0942193335915378e+00
+5.2860814496844322e-01
+-2.4096596227690458e+01
+3.2208037783184138e+00
+-8.1869266770343287e+00
+-2.1476503767285706e+01
+-3.3021036866596294e+00
+7.8921443526985842e+00
+-4.3403260045437811e+01
+1.1740392511657404e+01
+-4.3203918505561694e+00
+-2.6569454246057013e+01
+1.2031838273638209e+01
+4.5231118805586901e+00
+-3.8693381395549338e+01
+-8.3697105359645789e+00
+-2.6332058643958516e+00
+-2.9029856358414321e+01
+1.2840279808921983e+01
+-4.7767489540647325e+00
+-2.5748515229517167e+01
+-2.6615778772516725e+00
+7.1545720640097601e+00
+-4.2353242053651627e+01
+-1.1435795727729815e+01
+-8.3118661788667936e+00
+-2.1054412283704369e+01
+1.3791682607493154e+01
+7.7426818347681570e+00
+-4.0001240797096081e+01
+-3.9782654683483853e+00
+6.1973544819085324e+00
+-4.1183108054723760e+01
+1.3973059689112301e+01
+7.2446018174739377e+00
+-3.9060246490131796e+01
+7.7779701972796493e+00
+1.0358862142529803e+01
+-4.6900496758662904e+01
+1.3786229512877425e+01
+-1.9123740295764868e+00
+-2.9656816490960363e+01
+-9.4332132161896110e-01
+-1.7928745977888512e+00
+-2.1162278740038690e+01
+2.1793966561097249e+00
+-8.5249349165639927e+00
+-2.0798839983401500e+01
+-3.2633774215099303e+00
+-7.4416001058404042e+00
+-2.2304636225404145e+01
+5.2520758549107889e+00
+1.9313084034892963e+01
+-5.1931910111442278e+01
+1.1852932478450873e+01
+1.4763989697894655e+01
+-5.2685094608239723e+01
+1.0326411322102068e+01
+-4.2331055865342044e+00
+-2.6735824554140422e+01
+6.6094217788554275e+00
+7.1242796454843100e+00
+-4.2210015310361307e+01
+3.8580834946315452e+00
+1.9564511643754056e+01
+-4.9907275187033086e+01
+1.0615970654172930e+01
+-6.0599590398047392e+00
+-2.4116906152542668e+01
+1.0229365456169290e+01
+-4.4964456658834644e+00
+-2.6371240336767865e+01
+-1.3575276782447606e+01
+3.8612459171115092e+00
+-3.8276181141386047e+01
+-2.0632750834371683e+00
+-3.0884468228914042e+00
+-2.2370101035127206e+01
+1.7417683843502734e+00
+9.1621659214520097e+00
+-4.5176610196731353e+01
+7.8396948481695086e+00
+1.7806580141308057e+01
+-5.6744910604509798e+01
+-1.7448268473564961e+00
+7.0554047523780028e+00
+-4.2164708569176675e+01
+1.9108710396147437e+00
+9.0112107530039740e+00
+-4.4959469605960386e+01
+8.7788879041836285e+00
+1.3476621162934142e+01
+-5.1064921507675685e+01
+6.2579627845423422e+00
+1.4012707408049422e+01
+-5.1699809311056391e+01
+1.5622592913957289e+00
+-7.7239063357124511e+00
+-2.1556081847543020e+01
+7.1837687346227792e+00
+1.4956309654418392e+01
+-5.3079838294434118e+01
+3.0623719212976459e+00
+-2.5345634748591266e+00
+-2.0247891148287717e+01
+-9.3212738717770112e+00
+2.0672070218793994e+00
+-3.5538506156906251e+01
+-9.4834358919747910e+00
+-1.3552431539346750e+00
+-3.0811562794849674e+01
+-1.4200791210515673e+01
+9.6259505914013381e+00
+-4.4482555385960829e+01
+1.6410661069966725e+01
+2.1290383724578803e+01
+-6.1566962819807941e+01
+8.6017954369115923e+00
+1.0303802759421313e+01
+-4.6958525966899316e+01
+1.3065505265676508e+01
+-5.1068389963790590e+00
+-2.5204449216040729e+01
+1.6111852815098093e+01
+1.6502549765788480e+01
+-5.5339601013302946e+01
+1.3621433421659548e+01
+7.4535633979355662e+00
+-4.0899538282316058e+01
+8.2334874645477711e+00
+-6.7597643645434724e+00
+-2.3196891094443615e+01
+1.0370419381545650e+01
+-5.7063924532948027e+00
+-2.4588104513255800e+01
+9.0921984731101873e+00
+-6.4306697282511056e+00
+-2.3653230601170769e+01
+7.1142418927213598e+00
+1.0540173968396498e+01
+-4.7096616204320576e+01
+-5.0788857363216104e+00
+4.7054397394642580e+00
+-3.9131412316848831e+01
+1.3665213028203574e+01
+6.9423018316833813e+00
+-4.1357695845489125e+01
+-1.4698264894780046e+01
+-7.0987316129609566e+00
+-2.2814345834397258e+01
+1.0152127160408948e+01
+-5.3451040521122826e+00
+-2.5106331620653698e+01
+-4.2920839360473835e+00
+7.4777670595876762e+00
+-4.3033611471639517e+01
+1.0939481769990287e+01
+-5.8519984874530717e+00
+-2.4373001988266640e+01
+-1.4186171113835705e+01
+4.2192705600310010e+00
+-3.8515600706984984e+01
+1.0922489630154558e+01
+-4.4514405001751358e+00
+-2.6227379943762550e+01
+1.0694735674320063e+01
+-5.5413513994928882e+00
+-2.4863304331903226e+01
+1.2878390613200434e+01
+2.2554080606467622e-01
+-3.3006678452862396e+01
+-1.3199655515992202e+01
+-8.2145341992107195e+00
+-2.1358157743271011e+01
+1.3587814068333424e+01
+7.4514051777564578e+00
+-4.1215321352113982e+01
+9.4204119332303655e+00
+-5.9200608330730642e+00
+-2.4325967343633597e+01
+1.3692517374072528e+01
+7.2578600570333123e+00
+-4.0291561977355514e+01
+-7.5923504554629879e+00
+-3.1951915924567977e+00
+-2.8281178799967456e+01
+1.3712166654381804e+01
+7.9600520881626897e+00
+-3.9255314076207632e+01
+1.3933070159864180e+01
+7.4145289158064820e+00
+-3.9139232896595487e+01
+6.5985184711062148e+00
+2.4050251048977500e-01
+-2.3661696407251164e+01
+1.0202398760619749e+01
+-6.0541324520426265e+00
+-2.3985241271305359e+01
+-1.4585355481632490e+01
+-5.4991196062548084e+00
+-2.4896873382745568e+01
+7.5476056904759279e+00
+1.9631199432188831e-01
+-2.3840826014398232e+01
+1.0069556995517299e+01
+-4.6527117663969184e+00
+-2.6110130618748734e+01
+8.3091260424379119e+00
+-6.9003046920592785e+00
+-2.3013175110743077e+01
+1.0869870733878217e+01
+-5.7719360898243339e+00
+-2.4333549652623677e+01
+1.0518460947358836e+01
+-2.3675257030679786e+00
+-2.9388144599331071e+01
+1.0748827319129908e+00
+8.0065682792193051e+00
+-4.3393427162304945e+01
+-7.2839737568831566e+00
+-3.3989937842185771e+00
+-2.8052560659312210e+01
+-1.4520988470040498e+01
+-5.7818352400594373e+00
+-2.4633414660690157e+01
+3.2818000985104674e+00
+1.8764378703263276e+01
+-4.9583982395349061e+01
+3.4102386270820366e+00
+1.8542078147554705e+01
+-4.9263010918463856e+01
+1.3517790378900134e+01
+2.3405265193165317e+01
+-5.5194194467038947e+01
+1.0352729129007885e+01
+-5.3734663011123018e+00
+-2.5086721957380604e+01
+-4.0746512795929295e+00
+-7.7853701820911327e+00
+-2.1915012754704883e+01
+-8.0260066531799055e+00
+1.9123264670777462e+00
+-3.5226356321688861e+01
+-3.1540249428228502e+00
+-7.8319854312005264e+00
+-2.1799725488736737e+01
+1.3415511271328254e+01
+5.7968218041974384e-01
+-3.3183742073141985e+01
+1.5942241798403062e+01
+1.8173704521512395e+01
+-5.7737976959688375e+01
+9.4891206343710603e+00
+1.6389894328491387e+01
+-5.4953956528123250e+01
+-9.0168416644228326e+00
+6.5513766115800545e+00
+-4.1546687734663713e+01
+-1.1236058136686879e+01
+7.8457188758342395e+00
+-4.3406852005609053e+01
+7.0523034480916893e+00
+5.8140045404750806e-01
+-2.4240238031219370e+01
+2.2425052649217707e+00
+-2.5305877473542204e+00
+-2.0201453813245898e+01
+9.8782667627380523e+00
+7.7536290849467848e+00
+-4.3149792025934865e+01
+-2.5913371570507104e+00
+1.1557931628108884e+01
+-4.8280626970133369e+01
+9.0908724443636775e+00
+-5.6525772510454235e+00
+-2.4692845785935550e+01
+-1.3251239588574672e+01
+-4.0922369774362446e+00
+-2.6946380513826110e+01
+1.0057617359898684e+01
+-6.1288220473059063e+00
+-2.3977209834618414e+01
+1.0200753818662573e+01
+-5.5982541902176362e+00
+-2.4746984822106803e+01
+1.3381127650560432e+01
+-5.1318196260402109e+00
+-2.5240102113285431e+01
+1.2810650567698321e+01
+1.2208281217220508e+01
+-3.7380374900124693e+01
+-4.2920839360473835e+00
+7.4777670595876762e+00
+-4.3033611471639517e+01
+-1.3415966505697233e+01
+-6.6644346958903657e+00
+-2.3439675689668672e+01
+6.0416834482495991e+00
+7.3714050887755489e+00
+-4.2706863727942824e+01
+-7.1875302889947585e+00
+2.0049103560725774e+00
+-3.5388893944521179e+01
+1.3152235593793726e+01
+1.1660509140837672e+01
+-4.8385580084695960e+01
+-7.3249752954275111e+00
+-2.3828016849709117e+00
+-2.9272029355480907e+01
+8.6511309822066007e+00
+6.6768484919669202e+00
+-4.1669095568978229e+01
+1.2750600044801445e+01
+4.9711699501774218e+00
+-2.9507580346319024e+01
+-2.2047691494495960e+00
+-8.0234008187231147e+00
+-2.1528153207924248e+01
+-4.0843228294676788e+00
+7.5109337225101065e+00
+-4.2894617254210587e+01
+-2.0189245879690180e+01
+-1.2719067036306730e+00
+-3.0990063717744508e+01
+-8.6042577537609493e+00
+-2.4389064278902333e+00
+-2.9333484373263811e+01
+-3.2431296024656389e+00
+7.4301467464329756e+00
+-4.2928208066508674e+01
+1.0883151828096125e+01
+-1.4949139137145055e+00
+-3.0514847378788183e+01
+-4.9304808667155982e+00
+1.1327742980233563e+01
+-4.8116283376428797e+01
+9.1694774909107437e+00
+-6.4579041287230883e+00
+-2.3585205067729451e+01
+3.6997804904718530e+00
+1.8523630514682544e+01
+-5.1422958141311234e+01
+-1.3911917562522129e+01
+-7.3834174680738975e+00
+-2.2520535242966641e+01
+5.1275677436288039e+00
+-2.3927933115399620e+00
+-2.0377926733830513e+01
+-4.1194411131565074e+00
+8.6201028557933679e+00
+-4.4264753973394008e+01
+-9.1934075766950816e+00
+4.3568328752291992e+00
+-3.8568702017036529e+01
+1.3993871733346360e+01
+7.3502624590156236e+00
+-3.8988835133128099e+01
+1.7111779393549501e+01
+1.6436061642807722e+01
+-5.4838908883841455e+01
+7.8913575879668354e+00
+2.0504044378661487e+01
+-5.3076479737942996e+01
+-4.5714745676504798e+00
+-6.2128052742224433e+00
+-2.4082988024958837e+01
+1.4118010659115384e+01
+1.5307702248256545e+01
+-5.3343185444156319e+01
+6.1626952767645591e+00
+8.1538119729025365e+00
+-4.3750546566600129e+01
+1.0923165094507624e+01
+-2.0016723699286336e+00
+-2.9877982813870105e+01
+1.4058315304531742e+01
+5.2789904600888180e+00
+-3.9738817981902301e+01
+1.2052975969717387e+01
+-5.3085547745997239e+00
+-2.5260545098595141e+01
+-5.9921235544629914e+00
+6.1002248295245982e+00
+-4.1172358374593870e+01
+1.6502867801298926e+01
+1.6547150112064354e+01
+-5.5426203192453762e+01
+-5.2204749835395310e+00
+-8.5596705733329514e+00
+-2.0839022100386014e+01
+-6.7854961611635360e+00
+-1.6581338576512947e+00
+-3.0412532447117886e+01
+-2.2217664806279355e+01
+3.5871977713421344e-01
+-3.3296154393693051e+01
+-6.6237699499433349e+00
+7.2224473624968262e+00
+-4.2474721571472031e+01
+2.2819065526070039e+00
+1.8177821341651729e+01
+-5.0731423811695059e+01
+-8.7690572620214251e+00
+2.2439216492199123e+00
+-3.5634994115705531e+01
+-5.4730390465161580e+00
+7.2246006532697189e+00
+-4.2490859860210300e+01
+-4.2254048044624986e+00
+1.0031329449492549e+01
+-4.6476217783149437e+01
+1.0169138537907997e+01
+-5.1255774842122461e+00
+-2.5348168431987880e+01
+-2.4246752968497152e+00
+-8.0569656864530845e+00
+-2.1510855385263135e+01
+1.0221889876613229e+01
+-6.3044799404322838e+00
+-2.3784341111152553e+01
+-4.9351330003930851e+00
+-8.1573283563865715e+00
+-2.1423524004321802e+01
+2.1215105326617913e+00
+1.8839946450028478e+01
+-4.9838960280446145e+01
+-1.1133581855850988e+01
+8.7222190080829449e+00
+-4.4422976143921993e+01
+-5.3866762955461356e+00
+-6.8908423821755926e+00
+-2.3099808841739858e+01
+-7.0578785677516569e+00
+6.4650779864632089e+00
+-4.1474814458995340e+01
+6.1931826702346147e+00
+-7.4822288956645249e+00
+-2.2237656255887078e+01
+-4.2303777604397901e+00
+7.3533187612517681e+00
+-4.2717800475074462e+01
+1.3371322989139028e+01
+1.7501023090897785e+01
+-5.6462598214313360e+01
+1.3917926804363905e+01
+6.3782421426607483e-01
+-2.9974764118417355e+01
+-7.7800004928851010e+00
+-7.1313026485542537e+00
+-2.2805636418410593e+01
+7.1020406612131062e+00
+1.2498804909963818e+01
+-4.9715994426729310e+01
+-3.8661192768008439e+00
+-7.5849864234013964e+00
+-2.2193239793152021e+01
+-1.3081668609768352e+01
+-7.3099534687401322e+00
+-2.2494604326559230e+01
+-4.2303522374611919e+00
+5.5516993619050572e+00
+-4.0153965449716210e+01
+-1.3817854969453904e+01
+-6.4615435406635555e+00
+-2.3752452663745505e+01
+-9.7594846213165329e+00
+-4.1935849692773663e+00
+-2.6903989453675432e+01
+-7.4094097741776315e+00
+-5.7710400156151982e+00
+-2.4741694287508661e+01
+1.3012598871032905e+01
+-5.0964165129365533e+00
+-2.5319007076535250e+01
+9.4574470667668304e+00
+-5.8493734777035709e+00
+-2.4462335686349146e+01
+6.2185704247052893e+00
+-4.6159182227330167e+00
+-2.3241022174630839e+01
+1.2631194451088875e+01
+-4.4979205242975739e+00
+-2.6054206671200848e+01
+9.7589151610268718e+00
+-5.8882330630591255e+00
+-2.4231279843001889e+01
+1.0573720761647781e+01
+-5.5488996038798746e+00
+-2.4787634490769594e+01
+9.3339786369314552e+00
+-5.9605795797670860e+00
+-2.4315911221106798e+01
+1.3091310622255440e+01
+-5.3769363014183797e+00
+-2.4673227964924735e+01
+9.3285906932983611e+00
+-6.3302255276299197e+00
+-2.3791691319778771e+01
+-1.3590744102649738e+01
+-7.4474763297245623e+00
+-2.2369404305874141e+01
+2.4448764884033700e+00
+1.4771953960315395e+01
+-5.2729977563803637e+01
+9.5421934367048884e+00
+-4.9816552497461997e+00
+-2.5707218758513974e+01
+-3.0082036246394939e+00
+-7.7909837974152980e+00
+-2.1899736129586117e+01
+1.8362880508262759e+01
+2.1480843534542071e+01
+-6.1841210552738936e+01
+-1.1785863341745268e+01
+9.6684291918831704e+00
+-4.2964521434895360e+01
+1.4286972949246406e+01
+5.8543370586028285e+00
+-3.9919590572571579e+01
+9.2888283364990816e+00
+-6.3419871638014387e+00
+-2.3968871906980176e+01
+1.5962411604175001e+01
+1.8499739699788748e+01
+-5.7919910769082378e+01
+1.4171808445419678e+00
+-8.6049251430736202e+00
+-2.0804715162816201e+01
+3.0884117991378979e+00
+1.8427479080400822e+01
+-5.1678481799857401e+01
+1.4998664259410218e+01
+1.5056381953565417e+01
+-5.3231941126497397e+01
+-1.2810836427783839e+01
+3.6031563316082029e+00
+-3.7617458270301661e+01
+-8.3952951004496565e+00
+-2.9892575684881053e+00
+-2.8531324069186354e+01
+1.3748735335482433e+01
+-5.0817501647454613e+00
+-2.5154216135299720e+01
+6.8340004246269146e+00
+-3.8404885340291872e-01
+-2.3039148004287291e+01
+-9.7668022699216692e+00
+2.6180266383698108e+00
+-3.6102022001600865e+01
+1.3643766921434564e+01
+6.7997771540142615e+00
+-3.9744025879017940e+01
+5.1262129292447201e+00
+3.4179480497953446e-01
+-2.2017245652633104e+01
+1.3377541558637995e+01
+-5.0597786103437752e+00
+-2.4714026666125122e+01
+-3.0998573252868260e+00
+-8.5299445552520670e+00
+-2.0805132041212673e+01
+-1.0328005620090904e+01
+1.1125839269293625e+01
+-4.4272868871098893e+01
+-7.0711713772682909e+00
+-8.5012551245834107e+00
+-2.0820059377080018e+01
+-6.8591842113485111e+00
+7.7856692281837403e-01
+-3.3653555855847770e+01
+-4.7440070974429887e+00
+7.0286041970158299e+00
+-4.2011553120425958e+01
+-3.6904826722757758e+00
+8.8916140585204086e+00
+-4.4719796204220437e+01
+1.0126403502585179e+01
+-5.4947045413275450e+00
+-2.4964672767299817e+01
+-4.3632602518546992e+00
+7.6212173611855460e+00
+-4.3050906263511237e+01
+1.1456424093950590e+01
+-2.5770113633327609e+00
+-2.8971718343517505e+01
+1.1408167664042340e+01
+-2.8321061068263838e+00
+-2.8838144710133268e+01
+-3.2229099938447852e+00
+5.7949110439253648e-01
+-2.4163132506349886e+01
+7.9951325465542968e+00
+2.0440213110283224e+01
+-5.3646937287050982e+01
+1.2809811782779237e+01
+-5.1327663654269191e+00
+-2.5224321492723934e+01
+-2.1506484048891492e+00
+8.6787846479257413e-01
+-2.3405446170524893e+01
+-5.0083198514973679e+00
+6.3109851805642849e+00
+-4.1233156644878882e+01
+8.5201074422565277e+00
+9.8573053492950429e+00
+-4.6023775015131271e+01
+1.1999108100384461e+01
+-4.1062140963227725e+00
+-2.6821713843404758e+01
+1.2611261194307625e+01
+-5.2626505718582433e+00
+-2.5030674307546999e+01
+-7.1830378587702333e+00
+8.3195404975967548e+00
+-4.4120156452290843e+01
+1.0777966219804608e+01
+2.2461749489042784e+01
+-5.3699475434707736e+01
+-1.5706410183499194e+01
+-6.9621133842671679e+00
+-2.2957798339878117e+01
+1.0269762931641319e+01
+1.8491047679112576e+01
+-5.7786864073199631e+01
+-1.6291859882924404e+00
+-8.6686043502302237e+00
+-2.0597174910890519e+01
+-3.1402527386972614e+00
+5.0155809358176939e-01
+-2.4019911059454884e+01
+1.3833706083729549e+01
+1.4246064018698837e+01
+-5.1932885748568374e+01
+9.3693040693358629e+00
+-6.1133305849775388e+00
+-2.4040386015116006e+01
+1.3388114244252439e+01
+-5.1923944649290270e+00
+-2.5168202422163873e+01
+-8.4122698358019328e+00
+-2.9636686468397935e+00
+-2.8371670506410940e+01
+9.4160403960089027e+00
+7.8250208204513312e+00
+-4.3232437409196415e+01
+9.7284532295122634e+00
+7.9629884477895416e+00
+-4.3495222195600007e+01
+-6.7854961611635360e+00
+-1.6581338576512947e+00
+-3.0412532447117886e+01
+-1.0976893284599937e+01
+-2.3533186397063268e+00
+-2.9522053222428433e+01
+-9.7313048689885040e+00
+-4.2775790016121009e+00
+-2.6768614499422561e+01
+-4.8670156972375906e+00
+-7.6934443866520654e+00
+-2.1969192953874369e+01
+1.4064705071539500e+01
+-4.9775204705930181e+00
+-2.5131553657855807e+01
+1.9034257794604951e+01
+2.1533752885750626e+01
+-6.2309974761033466e+01
+-2.8265164745453037e+00
+7.5042344436332664e+00
+-4.2916362517265604e+01
+5.2066105192522381e+00
+-6.2139081046192135e-01
+-2.1563434619586140e+01
+1.3804644261329042e+01
+-5.5989407839293452e+00
+-2.4281727126057913e+01
+-3.5943159736708878e+00
+1.5901389781142898e+01
+-4.5742700045697035e+01
+1.0521930916011184e+01
+-5.9842223074352647e+00
+-2.4214099887702528e+01
+-1.6429962574923218e+00
+-6.2789842555281217e+00
+-2.2943025895042400e+01
+-1.6103175424620080e+01
+1.2457608196636436e+00
+-3.4624505220094832e+01
+1.1254960799711188e+01
+1.5130234792531715e+01
+-5.3290658331809411e+01
+-1.0376228153872340e+01
+1.0742559218006061e+01
+-4.4558954209722394e+01
+1.3355681978754574e+00
+7.7609674403825313e+00
+-4.3189072467013247e+01
+-1.5417993194995553e+01
+4.7923976254423586e+00
+-3.9349984970459914e+01
+1.3559494319267516e+01
+-4.6059285980698954e+00
+-2.5859782003085282e+01
+-4.2489030688814209e+00
+-6.9640519840324178e+00
+-2.2977185649923037e+01
+6.1727197516438768e+00
+-8.6760105269146803e-01
+-2.2367364529031303e+01
+-1.3493588512659111e+01
+-7.5141073917969878e+00
+-2.2227233764135722e+01
+-4.5407027877855057e+00
+1.2394074902720106e+01
+-4.9529811553470495e+01
+7.0166037411290496e+00
+8.3352316814351006e+00
+-4.4147127446374164e+01
+9.4811747650504330e+00
+-6.0366619596649178e+00
+-2.4230707045809417e+01
+-9.4500505672313384e+00
+1.1658512468080028e+01
+-4.7047833744365199e+01
+-6.9997729111888534e+00
+-3.6670858056864004e+00
+-2.7710225997722421e+01
+-5.0564069747757427e+00
+4.5863080025373533e+00
+-3.8831384089052833e+01
+-1.0179939386897452e+01
+1.1877573731620254e+01
+-4.5628467165259345e+01
+-8.9475687960002386e+00
+-4.9871644691570260e+00
+-2.5828142837690081e+01
+-1.0514972888072684e+01
+1.1477785957150735e+01
+-4.5036651584781616e+01
+1.2798160855272625e+01
+-5.1794537330233776e+00
+-2.5063124091770238e+01
+-1.3039050654442280e+01
+3.2881788339216063e+00
+-3.7237614700672950e+01
+-1.1384585175857101e+01
+9.0672605360710123e-01
+-3.3951891145357123e+01
+-1.0072665807641563e+01
+1.1103617157531934e+01
+-4.5312272320015353e+01
+6.6094217788554275e+00
+7.1242796454843100e+00
+-4.2210015310361307e+01
+-1.2089869155644242e+00
+-1.5194381088256466e+00
+-2.1319900847628109e+01
+-4.3480982456371220e-01
+1.0918305612491825e+01
+-4.7560306051733598e+01
+1.8284202176923479e+00
+8.5544668231164227e+00
+-4.4244571007150327e+01
+-4.0560745162393879e+00
+1.1681425320644767e+01
+-4.8555967980698846e+01
+-4.7838486846701809e+00
+-7.7019835664471028e+00
+-2.1943900872785200e+01
+-5.3866762955461356e+00
+-6.8908423821755926e+00
+-2.3099808841739858e+01
+9.6382852208021870e+00
+-6.3370560853906257e+00
+-2.3677743103891249e+01
+2.5971649741584790e+00
+1.5535590376206578e+01
+-5.3825250975124078e+01
+-1.3630559169155262e+01
+-7.3951475516669181e+00
+-2.2401553767477481e+01
+-6.8000385293029373e+00
+6.2066142807315849e-01
+-3.0148538929131576e+01
+9.5236009195980262e+00
+1.1091269608220138e+01
+-4.7781570285876462e+01
+-4.7344992629321085e+00
+1.2295697000353091e+01
+-4.9410926130207848e+01
+-1.4498625394207759e+01
+4.5874034760682445e+00
+-3.9155700996166480e+01
+-1.2843611314016504e+01
+-8.5509736970198631e+00
+-2.0749765752035813e+01
+1.3446495910363513e+01
+8.0831258858920674e-01
+-3.2459444633552771e+01
+6.7681048629284479e+00
+8.3003663082591235e+00
+-4.3854215422716344e+01
+1.3069757012725780e+01
+-5.0363479878295543e+00
+-2.5209000730144531e+01
+3.3824258276662542e+00
+2.3529379279874418e+00
+-2.1382372932098885e+01
+-1.3306056855352304e+01
+4.8977733391649450e+00
+-3.9308415451196389e+01
+-6.0586681475410398e+00
+6.7866557248415358e+00
+-4.1920407037620400e+01
+9.1056998579691477e+00
+-6.4996164845488336e+00
+-2.3569660085850344e+01
+-1.8552574466612781e+00
+-7.6850048963801569e+00
+-2.2074076308814728e+01
+1.3379560184408026e+01
+1.1244126528381875e+00
+-3.2224235121439506e+01
+9.4246663768867869e+00
+7.5000996327204854e+00
+-4.2821550104825796e+01
+1.2481012701969259e+01
+-5.3416012343140133e+00
+-2.5048147313879330e+01
+9.5660191447981209e+00
+8.2641904147191028e+00
+-4.3704751152402025e+01
+7.9314403364356316e+00
+1.1943642849440547e+01
+-4.8680982882457386e+01
+-5.2029707582547466e+00
+5.9241034239470949e+00
+-4.0540520916674588e+01
+-2.7068404702764468e+00
+-7.6347385184873087e+00
+-2.2096028537655371e+01
+-4.0482799563841674e+00
+1.2334488226819214e+01
+-4.9562728486048016e+01
+-8.9786612850142582e+00
+-4.9167181015750359e+00
+-2.5982122135100347e+01
+9.4624675808384371e+00
+8.5378309655934093e+00
+-4.4187176761792067e+01
+7.9015763773346430e+00
+9.9633184996436874e+00
+-4.6314368715191449e+01
+-4.1757224240266320e+00
+-6.3054274464935309e+00
+-2.3852267208954430e+01
+-1.3967673619399715e+01
+-6.8924564829906636e+00
+-2.3099561418138201e+01
+-1.4991658630409598e+01
+-7.0283317805620920e+00
+-2.2919841282690960e+01
+1.5075361756110460e+01
+2.2372860901238916e+01
+-5.8612444932086447e+01
+1.3764793598050129e+01
+-4.9164762117768590e-01
+-3.1548340372663109e+01
+6.9562341363088622e+00
+5.3825419232242622e-01
+-2.4175968406361129e+01
+1.0995265341376708e+01
+-5.5818116604650498e+00
+-2.4760262428579573e+01
+-4.6558797540708312e+00
+-6.8049038175690146e+00
+-2.3227536882509835e+01
+-3.9716509035963128e+00
+8.7911452491790012e+00
+-4.4718039458430773e+01
+9.3406904929546961e+00
+-5.9994009254260208e+00
+-2.4228451762509557e+01
+1.3152075821157110e+01
+1.1707112441104467e+01
+-4.8575166500603011e+01
+-5.0323071406604596e+00
+1.2059382872246736e+01
+-4.9107752780572994e+01
+-1.6010792914255592e+01
+-4.5930888185947003e+00
+-2.6459987390638293e+01
+1.4286972949246406e+01
+5.8543370586028285e+00
+-3.9919590572571579e+01
+1.4499833247722266e+01
+-1.6987272996796725e+00
+-3.0018893759708153e+01
+1.4145974071568999e+01
+1.5859892318652692e+01
+-5.3981624295275921e+01
+-4.0586760447717278e+00
+1.1893721122481910e+01
+-4.8868283186718806e+01
+-3.7443123883814433e+00
+-5.4249783627043033e+00
+-2.4169079315892684e+01
+-8.5228870617491861e+00
+2.1116172681240708e+00
+-3.5578385903460649e+01
+8.6395369872070678e+00
+1.2119402457497948e+01
+-4.9242769086779681e+01
+-4.3465389217528969e+00
+-7.2903346591587708e+00
+-2.2567234988711458e+01
+7.6286718559604569e+00
+1.3592009868149701e+01
+-5.1087290276705112e+01
+-5.3716275799303910e+00
+4.6069452403399076e+00
+-3.8931271759841273e+01
+-2.8299950078960321e+00
+7.5932505883051507e+00
+-4.2858946365199223e+01
+1.1351542349593402e+01
+2.3697944674424800e+01
+-5.2532383765091048e+01
+6.9852806250877713e+00
+8.1935883598743828e+00
+-4.3657233367871825e+01
+1.0858220747150080e+01
+2.1658841177747558e+01
+-5.4877620299152539e+01
+-5.4456452740470898e+00
+-7.0541114830340357e+00
+-2.2911487622473850e+01
+3.1465322040934245e+00
+-8.2432402152829045e+00
+-2.1185903778100140e+01
+-1.2958492641413570e+00
+-2.0809060810174111e+00
+-2.0825806151776110e+01
+-8.6667534436562423e+00
+3.3559384971857682e+00
+-3.7287099303088873e+01
+3.4068527856651691e+00
+1.6826402002774653e+01
+-5.3663042283860030e+01
+1.0235708956441625e+01
+-3.4602864693436044e+00
+-2.7941434039590831e+01
+1.6200191213883414e+01
+1.9814592750535631e+01
+-5.9972652917893711e+01
+3.3174141079362727e+00
+1.5416575606482159e+01
+-5.3842679590769926e+01
+-1.0328005620090904e+01
+1.1125839269293625e+01
+-4.4272868871098893e+01
+1.0728652051919033e+01
+-6.0243534548071453e+00
+-2.4168633273113748e+01
+1.3973059689112301e+01
+7.2446018174739377e+00
+-3.9060246490131796e+01
+-7.1197089645683258e+00
+-3.5202239975587637e+00
+-2.7723633939791199e+01
+-4.2986303959420944e+00
+8.9192174709227370e+00
+-4.4836434797588026e+01
+1.2977446782073251e+01
+-5.5217096876278129e+00
+-2.4521138853577529e+01
+-7.6996083007878298e+00
+1.8704286150858502e+00
+-3.5290443048897743e+01
+1.6395086606069880e+00
+9.6013821140546085e+00
+-4.5831953796273105e+01
+4.6239314974335430e+00
+1.8985451780494781e+01
+-5.1569941071679516e+01
+-1.4889748307013690e+01
+9.8763527181592359e+00
+-4.4756043761607707e+01
+1.3603749680626008e+01
+8.2584684364779903e+00
+-3.9374201185521819e+01
+1.3953116407756765e+01
+7.5437818203297882e+00
+-3.8777730651693226e+01
+1.2546459881904267e+01
+2.1650488218916720e+01
+-5.7732502587260228e+01
+-2.2044683853508729e+01
+7.9967399861249095e+00
+-4.4177367500734128e+01
+9.2831493207557454e+00
+1.2023549538676345e+01
+-4.9018318079790482e+01
+1.1128414059398230e+01
+-5.4580389647711804e+00
+-2.4888157370750989e+01
+-8.2947237552835311e+00
+6.7330076035227622e+00
+-4.1863210575990266e+01
+-1.3162678424605868e+01
+4.0599559294392895e+00
+-3.8189287357363611e+01
+1.2481012701969259e+01
+-5.3416012343140133e+00
+-2.5048147313879330e+01
+8.4660087969701614e+00
+6.3708861497949636e+00
+-4.1162821130930027e+01
+8.2912556249137417e+00
+9.8472184051517928e+00
+-4.6053482093403105e+01
+-1.1585120325788230e+01
+1.0160607054797699e+01
+-4.3801050301823629e+01
+-1.6416236901202865e+01
+1.1976470066925013e+00
+-3.4541430863361292e+01
+1.4717604917371608e+01
+1.1952809795061588e+01
+-4.8606733205672079e+01
+1.2064299397589320e+01
+-4.1687941872887535e+00
+-2.6793775767510159e+01
+-5.6022157357390725e+00
+7.8537876088147787e+00
+-4.3458264021692543e+01
+-1.0003463294906894e+01
+1.0848067471132376e+01
+-4.4488758161721762e+01
+9.6158933423718000e+00
+1.4527495623081801e+01
+-5.2208441144747901e+01
+1.7057627061558652e+01
+1.5993462064127135e+01
+-5.4513658253998898e+01
+-8.7113852350079313e+00
+1.6848991336760031e+00
+-3.4909320668345622e+01
+7.0911435527003626e+00
+1.0507163325912943e+01
+-4.6908073872382637e+01
+9.6242092713039344e+00
+-6.5399571844313114e+00
+-2.3349764204439797e+01
+-3.1746020005734672e+00
+-7.9322465885192974e+00
+-2.1633237668260904e+01
+-3.3961823339642505e+00
+-7.9386608184346947e+00
+-2.1631890413090126e+01
+-7.1627871488697483e+00
+-7.3226483831198932e+00
+-2.2456043978703750e+01
+-1.3776852905296810e+01
+1.2538974231905751e+01
+-4.0224607599621010e+01
+9.5809579766394553e+00
+-5.3258603516095668e+00
+-2.5244618649620644e+01
+-7.5863787795868518e+00
+-7.0427619123064051e+00
+-2.2868940723325526e+01
+-1.3104902357182098e+01
+-8.4553739082326818e+00
+-2.0926160586764592e+01
+-3.5006941775961535e+00
+8.7760330087472411e+00
+-4.4689043769905702e+01
+5.2504681068782446e+00
+-7.8399979262994153e+00
+-2.1783547992118390e+01
+9.1746827504872819e+00
+-5.8825471620613881e+00
+-2.4426147927505518e+01
+9.8734394283007685e+00
+-6.4527510722265937e+00
+-2.3516947009894832e+01
+-1.5405851776667792e+01
+4.6132466975803572e+00
+-3.9060968348228975e+01
+1.2212860553927525e+01
+6.4778662498457820e+00
+-2.9643633908279320e+01
+7.1979992778263897e+00
+9.4640821169796698e+00
+-4.5609931043903472e+01
+2.2228602231513364e+00
+1.8294603769638918e+01
+-5.0538455576219079e+01
+-7.5349146315005520e+00
+1.5143240646161393e+00
+-3.4497743846917857e+01
+4.2943946096316106e+00
+1.8599231769689474e+01
+-5.2253822358269936e+01
+-1.3199655515992202e+01
+-8.2145341992107195e+00
+-2.1358157743271011e+01
+1.2261789375731270e+01
+1.6067154096779873e+01
+-5.4437604358761476e+01
+-1.5570978064340277e+00
+9.1014774741324960e+00
+-4.5038223191035165e+01
+9.2034868879064149e+00
+-6.5667634775203343e+00
+-2.3463798085277425e+01
+1.1239392782896623e+01
+-1.8346580461194151e+00
+-3.0011588755681924e+01
+9.9216404582362632e+00
+1.1551109899051164e+01
+-4.7988006165875063e+01
+7.0475483550355422e+00
+7.9653290789102407e+00
+-4.3538132556890339e+01
+1.5753172326968402e+01
+1.4705736598396323e+01
+-5.2444436992611102e+01
+-4.2451609005592950e+00
+-7.0289938276422887e+00
+-2.2915282750087531e+01
+-4.9938687352044129e+00
+-6.5393598512994320e+00
+-2.3506463772932975e+01
+7.2118895075521374e+00
+2.5639022129138145e-01
+-2.3898069384804902e+01
+6.6725350760511999e+00
+1.0478622217663226e+01
+-4.6958301804196942e+01
+1.3677067999767404e+01
+7.8014498891162711e+00
+-4.0351904099423521e+01
+-1.7441866992145345e+00
+4.2283287042824416e+00
+-2.8935767070349975e+01
+1.2748888920380898e+01
+-5.2219215821887364e+00
+-2.4921367877531861e+01
+1.7903382210427498e+01
+1.9693987423961218e+01
+-5.9367848211315518e+01
+-1.8703305440774245e+00
+8.7675904178570043e+00
+-4.4647711174982781e+01
+-9.4610256039518639e+00
+2.8942735558905803e+00
+-3.6515597791454624e+01
+-1.2309545663376426e+01
+8.8026857355894492e+00
+-4.4743020879024336e+01
+2.1700513357699253e-02
+2.6838592228114999e+00
+-2.1835182079217677e+01
+7.0166037411290496e+00
+8.3352316814351006e+00
+-4.4147127446374164e+01
+9.6599137858225568e+00
+-4.6075968287530387e+00
+-2.6173906420544533e+01
+4.8708249459468611e+00
+1.9183202664486902e+01
+-5.1656677474035590e+01
+1.1226342110290352e+01
+2.3026919632379144e+01
+-5.3633683961158809e+01
+1.3523852146794976e+01
+7.8023674957461804e+00
+-4.0886956441146801e+01
+1.3763412316867370e+01
+6.9861595912751850e+00
+-4.0342684228192546e+01
+-1.5737384768890967e+00
+9.2523036581446760e+00
+-4.5084746626863982e+01
+1.0126403502585179e+01
+-5.4947045413275450e+00
+-2.4964672767299817e+01
+-7.0524910373274530e+00
+-3.6824692016622009e+00
+-2.7546393265880528e+01
+-7.4094097741776315e+00
+-5.7710400156151982e+00
+-2.4741694287508661e+01
+-2.3405098196406623e+01
+1.1012388261093908e+00
+-3.4439995763637533e+01
+1.3189347280544222e+01
+-5.4032012407324599e+00
+-2.4629799475967378e+01
+1.4305272099615827e+01
+5.9392134053246934e+00
+-3.9727379871149417e+01
+8.2804227500359087e+00
+-6.4814556811183106e+00
+-2.3733563802180207e+01
+-1.6831576231205421e+01
+2.5057179242870333e+00
+-3.6235961695418823e+01
+8.4917691514507148e+00
+-7.0199814974687422e+00
+-2.2824446268347870e+01
+8.8461588586594573e+00
+2.1639366361498290e+01
+-5.2744295285077165e+01
+-1.3984491611902651e+01
+-6.4685957554075841e+00
+-2.3806566065510808e+01
+-4.5133230187112217e+00
+8.1852042350639014e+00
+-4.3808980564713508e+01
+2.9126364708598076e+00
+-6.3128765747461415e+00
+-2.1968947899497174e+01
+-5.8026151073345620e+00
+-4.7445345833246071e+00
+-2.6101197099645852e+01
+1.4188594043378952e+01
+1.4614892234598303e+01
+-5.2516848874118956e+01
+1.2945386375649186e+01
+2.8483755098247932e-01
+-3.2946443679718719e+01
+8.7960609940734606e+00
+-6.2741757743550384e+00
+-2.3932274995029413e+01
+1.3221239035140682e+00
+-2.6981834386721544e+00
+-1.9994429921483846e+01
+-1.3808157668671036e+01
+-7.2815479657654221e+00
+-2.2610292164818965e+01
+-2.1068588457514362e+01
+1.8099361135846623e+00
+-3.5323409155723390e+01
+-8.2947237552835311e+00
+6.7330076035227622e+00
+-4.1863210575990266e+01
+-1.1236309770674449e+01
+-8.3173331882635573e+00
+-2.0951639301568175e+01
+-6.6666656882494149e+00
+-4.0067609226464240e+00
+-2.7148755607947162e+01
+-7.0378677111720451e+00
+-1.7822444841680520e+00
+-3.0185669353712548e+01
+5.6896795959591140e+00
+-6.2184597606350112e+00
+-2.3171247227371548e+01
+-4.8018278844689322e+00
+6.0273121030204946e+00
+-4.1019318651553263e+01
+9.7808158015128583e+00
+-4.5826942792246381e+00
+-2.6218412180603057e+01
+-5.0788857363216104e+00
+4.7054397394642580e+00
+-3.9131412316848831e+01
+3.5006165482418847e+00
+-8.1306750252505626e+00
+-2.1452412313899494e+01
+-1.5233880112071192e+01
+9.9002721507875950e+00
+-4.4605623387434697e+01
+1.2563451251723537e+01
+7.1251073543053440e+00
+-4.2119252361023598e+01
+1.4640797745768197e+01
+1.7043006072182692e+01
+-5.5305318262324882e+01
+6.0645771886727156e+00
+8.1441229112481199e+00
+-4.3939319629966015e+01
+-1.1669019770305841e+01
+-7.8601532587989000e+00
+-2.1710580043994561e+01
+3.3428840233248334e+00
+1.5681812338372941e+01
+-5.4015313785937373e+01
+6.5513787798103644e+00
+9.3045319497656358e+00
+-4.5524973941232965e+01
+-1.3702056821924865e+01
+-7.6204124883782942e+00
+-2.2143461630046815e+01
+1.3627574108755333e+01
+7.8110272868672723e+00
+-3.8049053080751783e+01
+1.6221015134561605e+00
+8.6868712155720633e+00
+-4.4345685250182378e+01
+1.6467146624912136e+01
+1.7232399476267027e+01
+-5.6053540522905521e+01
+-4.7633518135855422e+00
+-8.3808514631415587e+00
+-2.1158007555417861e+01
+1.2875586037740469e+01
+-5.7610900295954677e+00
+-2.4225242804445511e+01
+-1.5248193735514278e+01
+1.0189066256213811e+01
+-4.4173382894997495e+01
+6.4308864813429185e+00
+-7.3348697283168844e+00
+-2.2465797420579573e+01
+6.8419763810844900e+00
+-5.9676633637959065e-01
+-2.2813695620596835e+01
+1.1443838266990985e+01
+-1.3402256980484313e+00
+-3.0714366688294501e+01
+-4.6698987115475763e+00
+-7.6299408653172422e+00
+-2.2068440649921779e+01
+-3.3666666062794062e+00
+-8.3548363874336999e+00
+-2.1105677616157152e+01
+-2.4427775717423139e+00
+-7.7256887553275657e+00
+-2.2078210954414413e+01
+1.3276183074244726e+01
+-5.1052224666314023e+00
+-2.5296045075859759e+01
+3.0265898471809396e+00
+-8.2967194310868777e+00
+-2.1534625106648036e+01
+1.2249195619893634e+01
+-5.3953739043230087e+00
+-2.4889907338297043e+01
+1.0444919534656790e+01
+-6.6175031077753754e+00
+-2.3194752561207419e+01
+-2.8612166606374720e+00
+-8.1099624406295518e+00
+-2.1433940439701420e+01
+-2.9561291051197420e+00
+-7.9420030381200473e+00
+-2.1638766637603545e+01
+2.6697996007942888e+00
+1.4382763561949467e+01
+-5.2250202755338123e+01
+2.6697996007942888e+00
+1.4382763561949467e+01
+-5.2250202755338123e+01
+1.2821532149129274e+01
+-5.9856084857251544e+00
+-2.3855726417279953e+01
+1.0175920166575963e+01
+-4.8744548345078087e+00
+-2.5747424271096477e+01
+-5.5651509822376264e+00
+-6.4413643381534795e+00
+-2.3752560939345305e+01
+-5.1308414779525551e+00
+4.8199874999054693e+00
+-3.9181764466777224e+01
+3.3844229770627248e+00
+-8.0720167915826373e+00
+-2.1489427600159903e+01
+1.3604395562837881e+01
+2.3717494745481044e+01
+-5.4947852121109385e+01
+9.3794029590394050e+00
+-5.9084217120687272e+00
+-2.4396584120228020e+01
+2.1859299279305668e+00
+-8.5136235176406085e+00
+-2.0939641890031869e+01
+-5.1022178758728973e+00
+-6.6910833344724008e+00
+-2.3374806032272197e+01
+9.5980494037261153e+00
+-5.7948017843901516e+00
+-2.4507379586202951e+01
+9.1155913292843369e+00
+-6.3257308297010617e+00
+-2.3878849446503462e+01
+-3.4159836448197320e+00
+7.0935037102616549e+00
+-4.2474399889599930e+01
+9.7042006158698957e+00
+-5.8611984948375895e+00
+-2.4498453955058604e+01
+2.1836846938270725e+01
+2.7331854910504990e+01
+-5.8653686999438804e+01
+-1.3472832944519158e+01
+1.5990363341613801e+01
+-3.4053754121031979e+01
+-1.3472832944519158e+01
+1.5990363341613801e+01
+-3.4053754121031979e+01
+-3.3570378880080822e+00
+1.9507421584565126e+01
+-4.2354004531320157e+01
+1.6150065083020444e+01
+2.6186978077609993e+01
+-5.6592044027824961e+01
+2.2808375388402073e+01
+3.1658553349885057e+01
+-6.8949254719872641e+01
+-1.0723074521813247e+01
+1.7194333845488732e+01
+-3.6778410514499932e+01
+1.4486433109280188e+01
+2.7476124549417673e+01
+-5.9912326030461841e+01
+-3.7114332859018910e+00
+1.9424048322084641e+01
+-4.2137508029638788e+01
+-1.6024631107347712e+01
+1.6036579390742833e+01
+-3.3861072958521802e+01
+2.0427701457860081e+01
+2.7597639457024918e+01
+-5.9911136003698694e+01
+-1.4706305097186540e+01
+1.6357754709964340e+01
+-3.4724452033787500e+01
+-1.2946207298673382e+01
+1.6433019020643727e+01
+-3.5182335918326622e+01
+-4.8158851538652989e+00
+1.9054719917839353e+01
+-4.1403002410956177e+01
+1.8071121531464456e+01
+2.5716375509167065e+01
+-5.6045944633800744e+01
+-3.6215983806827103e+00
+1.9362664330477052e+01
+-4.2294807138382865e+01
+-3.6215983806827103e+00
+1.9362664330477052e+01
+-4.2294807138382865e+01
+1.3980820234059554e+01
+1.4644400972543437e+01
+-3.0856428086575928e+01
+1.3980820234059554e+01
+1.4644400972543437e+01
+-3.0856428086575928e+01
+-6.8501505304064390e+00
+1.8354500778284844e+01
+-4.0109494733223883e+01
+-3.9017412416078683e+00
+1.9214343925396747e+01
+-4.2525048741437423e+01
+-1.3829398244709658e+01
+1.5759241105583003e+01
+-3.4186684251181390e+01
+-9.3814650470293230e+00
+1.7563110228167996e+01
+-3.8159477260041179e+01
+-9.3814650470293230e+00
+1.7563110228167996e+01
+-3.8159477260041179e+01
+-7.4600126028073577e+00
+1.7954545507087062e+01
+-3.9207958454752294e+01
+1.6054283946723469e+01
+2.6620172598724306e+01
+-5.8639865285688501e+01
+1.8205158713450032e+01
+2.5659622505731928e+01
+-5.6266962748173114e+01
+1.3177824414274802e+01
+1.4673310660163763e+01
+-3.1359366000854063e+01
+5.5205537737262915e+00
+2.2433533382691849e+01
+-5.0124092199663949e+01
+1.2644202737966316e+01
+2.5927879669664435e+01
+-5.7641758327821407e+01
+1.4860822505465237e+01
+2.4728925842278411e+01
+-5.4638000224190648e+01
+6.9130982756782302e+00
+2.2541409125010350e+01
+-5.0004534168996869e+01
+-1.2854675472336906e+01
+1.6260763174115027e+01
+-3.5468745746948890e+01
+1.7515974899817159e+01
+2.8390282998755922e+01
+-6.3453386263407630e+01
+1.3812743451048870e+01
+1.4990470159105241e+01
+-3.2060315270862567e+01
+2.2649876375983084e+01
+3.1285711388382840e+01
+-7.0328792921309486e+01
+1.3351476110552914e+01
+1.5300982635933183e+01
+-3.3165661254532225e+01
+1.3379922102664475e+01
+1.5331425057466387e+01
+-3.3233178266048007e+01
+-1.0483967465751569e+01
+1.7162480872380552e+01
+-3.7717544368582367e+01
+1.4032257087246872e+01
+1.4737050332594420e+01
+-3.1570899418871711e+01
+-1.0638259484305879e+01
+1.6845139923305588e+01
+-3.7157454398618057e+01
+-3.8098705593717441e+00
+1.8997956997479644e+01
+-4.2779142950937725e+01
+-1.3232785670725130e+01
+1.6428431679271810e+01
+-3.5934905977114433e+01
+-1.2972728492353912e+01
+1.6094558360800171e+01
+-3.5289672302474422e+01
+-1.0553834397850633e+01
+1.7039818959207523e+01
+-3.7825591168391277e+01
+1.9077624035112353e+00
+2.0788524576186340e+01
+-4.6607453904911544e+01
+1.2510472128792832e+01
+1.5439101661787861e+01
+-3.3537583952438467e+01
+-1.3347504124349332e+01
+1.6241608957721837e+01
+-3.5619316962194148e+01
+-1.1013166779652984e+01
+1.6942863829046676e+01
+-3.7440973293844287e+01
+-9.4799395498234418e+00
+1.7063987884924277e+01
+-3.8023509507547999e+01
+-9.3873350514301936e+00
+1.7018078073068310e+01
+-3.8204298268311355e+01
+1.3707046813847239e+01
+1.3885914569680018e+01
+-3.0053904021164861e+01
+1.8854798676375296e+01
+2.6013226562450665e+01
+-5.8408768101602227e+01
+-1.2830732842716737e+01
+1.5815708263171786e+01
+-3.5113244113614861e+01
+2.5915286705699291e+01
+3.2777207043600562e+01
+-7.4039244443832388e+01
+-4.7103612091891609e+00
+1.8680708978226999e+01
+-4.1932703468632269e+01
+2.7624352000114034e+00
+2.0948121462133280e+01
+-4.7112898770846307e+01
+1.2006110368645565e+01
+2.3741364763690147e+01
+-5.3352802579213041e+01
+1.2006110368645565e+01
+2.3741364763690147e+01
+-5.3352802579213041e+01
+2.1511534646876132e+01
+3.0275024288280711e+01
+-6.8417830168663357e+01
+-1.3476561126773827e+01
+1.5922868310584754e+01
+-3.5563552790720827e+01
+1.3542479863551662e+01
+1.4674088425431798e+01
+-3.1756056191085740e+01
+3.7134204026095134e+00
+2.1111518538142523e+01
+-4.7759819214495131e+01
+9.3590807826261955e+00
+2.4117524844046297e+01
+-5.4606699794873286e+01
+-1.3323294877605818e+01
+1.6250122834825991e+01
+-3.6434342956971115e+01
+1.3547577340902627e+01
+1.4672892978306274e+01
+-3.1921947603320085e+01
+1.3547577340902627e+01
+1.4672892978306274e+01
+-3.1921947603320085e+01
+5.7134493301354077e+00
+2.2384005600080883e+01
+-5.0886499897189410e+01
+-1.1637458515370152e+01
+1.6196678885111325e+01
+-3.6336526622823271e+01
+-1.0684425751791757e+01
+1.7077009779579186e+01
+-3.8327326480635683e+01
+-1.0578191182069148e+01
+1.6702849238098572e+01
+-3.7405148964570209e+01
+-9.0229568937170264e+00
+1.7408822038314060e+01
+-3.9041217965070885e+01
+-6.7666321851872215e+00
+1.7813242374008240e+01
+-4.0484578394276312e+01
+1.2687678213049482e+01
+2.3747717082125995e+01
+-5.3760152975697473e+01
+1.3562676570039432e+01
+1.3853584373241786e+01
+-3.0240332072768496e+01
+-1.0869271727128378e+01
+1.6757814199077352e+01
+-3.7723875326364862e+01
+-1.0869195251838731e+01
+1.6792438129651295e+01
+-3.7828532153235216e+01
+1.9774498373542340e+00
+2.0485740193556303e+01
+-4.6357989081332711e+01
+2.5533024863326613e+01
+3.2326908708286638e+01
+-7.3723378697992359e+01
+-9.2474142466186287e+00
+1.7201936955709392e+01
+-3.8725458440370637e+01
+5.4163659295074709e+00
+2.1436432824022962e+01
+-4.8897261100673738e+01
+-5.6324501068554351e+00
+1.8230744068272863e+01
+-4.1420943251756704e+01
+1.7821863523028976e+00
+2.0486871885666204e+01
+-4.6480220387398575e+01
+-1.3966318420619087e+01
+1.6099968755729108e+01
+-3.5900029242097006e+01
+2.0166281079234036e+01
+2.7587963455463278e+01
+-6.2739349552542109e+01
+1.3497284390160758e+01
+1.4084103846501250e+01
+-3.0987737676019279e+01
+-1.1062102236456713e+01
+1.6460569348459810e+01
+-3.7642505422060594e+01
+-8.9931955693896377e+00
+1.6994992090858691e+01
+-3.8970228282400925e+01
+1.6526622139827147e+01
+2.7343980570872642e+01
+-6.2958462329803282e+01
+-1.4165814016778370e+01
+1.5527009461042351e+01
+-3.4956276216909913e+01
+-8.9056224739877052e+00
+1.7127775730207848e+01
+-3.9187546350870264e+01
+1.3510489844214124e+01
+1.5013939864514285e+01
+-3.3386711321887311e+01
+-1.5307560114090778e+01
+1.5607981995195932e+01
+-3.4947698704720224e+01
+-9.0444192702337052e+00
+1.6831313709840348e+01
+-3.8884264837444867e+01
+-1.2511144168505046e+01
+1.6041708765000589e+01
+-3.6304912566734657e+01
+1.3904452104933499e+01
+1.4471356226613707e+01
+-3.2158372992483187e+01
+-9.5920880532254564e+00
+1.7087202133601803e+01
+-3.9436519366839448e+01
+-9.4321654630680722e+00
+1.7436273577030690e+01
+-4.0608884238957998e+01
+1.3567840975874169e+01
+1.3799587586894653e+01
+-3.0700714562106384e+01
+-1.2644001563516715e+01
+1.5975688122950848e+01
+-3.6226708308435647e+01
+-1.1767357369302948e+01
+1.5902680491566370e+01
+-3.6464626880401845e+01
+1.1730662693967860e+01
+2.3229960893367995e+01
+-5.3928001187831235e+01
+-7.0548480959432505e+00
+1.7455388515069178e+01
+-4.0559422693920055e+01
+-7.0025149393661943e+00
+1.7322069280542298e+01
+-4.0360371630610551e+01
+1.3963453605091816e+01
+1.3814808885771676e+01
+-3.0744991659988518e+01
+1.8180327900639160e+01
+2.5995351953916078e+01
+-6.0568491311297244e+01
+1.5136502819207776e+01
+2.6353725546000728e+01
+-6.1886779452499731e+01
+1.3906445652474906e+01
+2.3768853242446998e+01
+-5.5472869775036315e+01
+-1.0409259407179642e+01
+1.6785056944339949e+01
+-3.9139780761679873e+01
+1.6952364929541517e+01
+2.7197903082253248e+01
+-6.3963541549036051e+01
+-1.8613756320021267e+01
+1.6251338494153039e+01
+-3.7000330134575137e+01
+-1.6821977568434654e+01
+1.5496234941619626e+01
+-3.5127384827333344e+01
+-1.6583474122017073e+01
+1.5144167437296884e+01
+-3.4381042745483946e+01
+-1.2904033346881128e+01
+1.5861165742981578e+01
+-3.6493314127183545e+01
+1.4591124693563655e+01
+2.6024017929538655e+01
+-6.1282011832087164e+01
+2.4519313820453338e+01
+3.1131498122313126e+01
+-7.3271779009096718e+01
+1.3524426508309794e+01
+1.3667724631144052e+01
+-3.0887950375694075e+01
+-1.1789938751869254e+01
+1.6141302787461310e+01
+-3.7581493633828096e+01
+-6.7613393373339994e+00
+1.7452935440837440e+01
+-4.1070398177019086e+01
+-9.2091022207223094e+00
+1.6699636265576729e+01
+-3.9689779331748738e+01
+1.0559898867935285e+01
+2.3906996237099083e+01
+-5.6459861588161615e+01
+-4.7927220622212019e+00
+1.7963600461991660e+01
+-4.2176741364757504e+01
+1.3758510108690729e+01
+1.3321573677527931e+01
+-3.0223255602961984e+01
+-9.6096413394865916e+00
+1.6481551831605962e+01
+-3.9017633662074360e+01
+8.4183755569015195e-01
+1.9808610566863496e+01
+-4.7031436068699492e+01
+1.4553209914727288e+01
+1.4055425564779419e+01
+-3.1917107224579187e+01
+-1.4864416127130491e+01
+1.5480010910620937e+01
+-3.5651806318376323e+01
+-1.0898814064952431e+01
+1.5826385525857654e+01
+-3.7758657459744029e+01
+-1.2736570147741483e+01
+1.5633620107747223e+01
+-3.6802996016351628e+01
+1.6870092329366191e+01
+2.4333393557618191e+01
+-5.7728105269860286e+01
+8.2518585356387302e+00
+2.2673793221365692e+01
+-5.4003611551147387e+01
+1.2447679979797728e+01
+1.1332746769557525e+01
+-2.5424871952407099e+01
+-9.1590384784405661e+00
+1.6440902860469549e+01
+-3.9300349200540673e+01
+-6.6902642792288001e+00
+1.7073842038024033e+01
+-4.1082694812479737e+01
+-1.6607221433551445e+01
+1.5273452616088944e+01
+-3.5148709905006541e+01
+-1.5344916563426617e+01
+1.5264053597092632e+01
+-3.5323725705378628e+01
+-1.4531319647331271e+01
+1.5381073508429623e+01
+-3.5617476585978928e+01
+-4.0999483812453308e+00
+1.8132761365879684e+01
+-4.3465291540637118e+01
+-4.0999483812453308e+00
+1.8132761365879684e+01
+-4.3465291540637118e+01
+1.9989706874789672e+01
+2.8458186822504459e+01
+-6.8008862922849914e+01
+5.8727124056893887e+00
+2.1175272102775896e+01
+-5.0552087248781298e+01
+7.3715443284273352e+00
+2.1467614144855528e+01
+-5.1136849573255866e+01
+-6.6205799234088003e+00
+1.7731760655060715e+01
+-4.2680673010410544e+01
+6.1272987911341241e+00
+2.2672491971474717e+01
+-5.4497592291655472e+01
+-2.6816428711972026e+01
+2.1505628731774841e+01
+-5.0645445198793489e+01
+-5.5890357590610540e-01
+1.9229872767101575e+01
+-4.6035812231231247e+01
+1.8434311371151797e+01
+2.6308214748416319e+01
+-6.2918879241016782e+01
+-9.4346646701665975e+00
+1.6383231663650747e+01
+-3.9413030751478281e+01
+-9.5627457680087193e+00
+1.6647715478552765e+01
+-3.9824165294999119e+01
+-6.9404163617025878e+00
+1.7013043091827676e+01
+-4.1056571636144859e+01
+2.1089492084327027e+01
+2.6609726613173834e+01
+-6.3896038784113053e+01
+-9.9005489927869341e+00
+1.6363967861451460e+01
+-3.8799819261311299e+01
+-3.3364830207830898e+00
+1.8236347155259292e+01
+-4.4218528962068476e+01
+-3.3727909080405198e+00
+1.8313533540764325e+01
+-4.4156313214800768e+01
+-3.3364830207830898e+00
+1.8236347155259292e+01
+-4.4218528962068476e+01
+-1.4896569908110106e+01
+1.5270591478038776e+01
+-3.5713193689730765e+01
+1.4211475904276726e+01
+1.3359882778194944e+01
+-3.0840774094026848e+01
+1.4241832372816351e+01
+1.3161163179163205e+01
+-3.0287252884303726e+01
+1.2951390199625253e+01
+1.0707498159610095e+01
+-2.4273829916177693e+01
+-1.2697379023086741e+01
+1.5869164568274105e+01
+-3.7558037245076726e+01
+-7.1682517403268982e+00
+1.7255565430819779e+01
+-4.2190110111478972e+01
+3.1530627415563806e+00
+2.0079227107830960e+01
+-4.8530709442929663e+01
+1.8386921023682234e+01
+2.6017313024063142e+01
+-6.2873849510791331e+01
+-1.5773978762371319e+01
+1.5938866664874883e+01
+-3.8108497226899750e+01
+1.4242039875928423e+01
+1.3248025961949477e+01
+-3.0789902518557295e+01
+-6.8462278198402213e+00
+1.6991921303297474e+01
+-4.1342766389158363e+01
+1.4704068908448265e+01
+1.3507941839296503e+01
+-3.1381836139860983e+01
+1.2996922582764073e+01
+1.0688889772011441e+01
+-2.4352477789873411e+01
+-9.5245932419772075e+00
+1.6211642886323553e+01
+-3.9070475131741020e+01
+-9.4142735042324865e+00
+1.6122334366706873e+01
+-3.9323009657682441e+01
+9.4363981803577812e-01
+1.9492846368819468e+01
+-4.7509771976353143e+01
+1.2370900012956906e+01
+1.1350541069515884e+01
+-2.5868795968901253e+01
+7.5362397716461194e-01
+1.9405416569113459e+01
+-4.7396241592735677e+01
+-1.4505324945310949e+01
+1.5044199533500402e+01
+-3.6283493380865551e+01
+-1.1567054407369811e+01
+1.5555675408415055e+01
+-3.8163876566739830e+01
+-9.3344775927390806e+00
+1.6256083537472406e+01
+-3.9922748523039566e+01
+3.2831833899093171e-01
+1.9135179003068547e+01
+-4.7041633019753952e+01
+2.0671476545852102e-01
+1.9105990950005062e+01
+-4.6895384354329281e+01
+2.6530829092228898e+00
+1.9703373070834200e+01
+-4.8440295890314921e+01
+2.6347534538419688e+00
+1.9966508985943889e+01
+-4.9238744772784642e+01
+2.3923266321474790e+00
+1.9502935884573315e+01
+-4.8157892682422158e+01
+-5.2096667978937168e+00
+1.7263131204255782e+01
+-4.2774136580671680e+01
+-5.2096667978937168e+00
+1.7263131204255782e+01
+-4.2774136580671680e+01
+-1.5460850798834494e+01
+1.4969499325687647e+01
+-3.5967208380410398e+01
+3.6302891457073377e-01
+1.9503013775226787e+01
+-4.8503880244636193e+01
+2.6560622917846852e+00
+1.9787616037589792e+01
+-4.8877824060891022e+01
+-9.5020272673347623e+00
+1.5910758965188537e+01
+-3.9674446671220359e+01
+2.3857776504293726e+00
+1.9428812980573621e+01
+-4.8226022757209734e+01
+1.2070611803829310e+01
+1.1104750238480875e+01
+-2.5774839553386112e+01
+-3.4323327691987564e+00
+1.7907559691231949e+01
+-4.4336311441359740e+01
+-9.9408544511480468e+00
+1.5862878329407735e+01
+-3.9416466823383409e+01
+1.6550594229298137e+00
+1.9225743477418423e+01
+-4.7785638802529483e+01
+2.5874097418025670e+00
+1.9523937116451627e+01
+-4.8961312359272014e+01
+1.4143307231491308e+01
+1.2848780788817264e+01
+-3.0581830904148298e+01
+1.3432810821157481e+01
+1.3395252374731701e+01
+-3.2371420479610983e+01
+2.1953620333711386e+00
+1.9372392113203119e+01
+-4.8567410735206316e+01
+4.0780763177992121e+00
+2.0318936691192462e+01
+-5.1309579526419370e+01
+2.7296670413203895e+01
+3.1394473666941053e+01
+-7.8822504022579309e+01
+-1.1803368092367057e+01
+1.5381243555240653e+01
+-3.8431142731333829e+01
+2.3669958258331580e+00
+2.0121379819819122e+01
+-5.1070221119062438e+01
+1.3568338923216036e+01
+1.0866995123304825e+01
+-2.5467490271910563e+01
+-6.0097233896818212e+00
+1.6819110273559989e+01
+-4.2486299614156032e+01
+3.4632264268413850e+00
+1.9919515389967792e+01
+-5.0295457781637829e+01
+-1.3313756115733060e+00
+1.9082409570628801e+01
+-4.8728999158736379e+01
+1.4014069658522434e+01
+1.3603941691295573e+01
+-3.2881484455626072e+01
+9.8784567830981040e-01
+1.9200437132368005e+01
+-4.8796083825813248e+01
+-2.7434932832240605e+01
+2.1496852724321752e+01
+-5.3200901206751446e+01
+-3.3167838861334107e+00
+1.7609552091248457e+01
+-4.4330132598805655e+01
+-1.6384210543749615e+00
+1.8431997463016295e+01
+-4.6861389129151831e+01
+-2.2360215499855447e+00
+1.8672270270726244e+01
+-4.7903467829617014e+01
+-8.3946834785941826e-01
+1.8405834943851975e+01
+-4.6877114289734799e+01
+2.2747299860565229e+00
+1.9364280716543703e+01
+-4.9269623541091534e+01
+1.2317805027702384e+01
+1.0635356309656302e+01
+-2.5247675538275196e+01
+1.3138255304730047e+01
+1.0561650600463080e+01
+-2.4937684251087866e+01
+1.3273138275420465e+01
+1.4109803071928287e+01
+-3.4722366185711586e+01
+1.3189980060492694e+01
+1.0124603842529883e+01
+-2.4087635700811177e+01
+-2.3144811725591126e+00
+1.7849372457631539e+01
+-4.5716405582309513e+01
+2.2867558774680226e+00
+1.9846891761800865e+01
+-5.1091718601987544e+01
+1.4700861651974302e+01
+1.3092208586483931e+01
+-3.2021684376149985e+01
+1.4700861651974302e+01
+1.3092208586483931e+01
+-3.2021684376149985e+01
+-2.7441410066652008e+01
+2.0956327223117825e+01
+-5.2667076206499061e+01
+-6.8673671562299061e+00
+1.6382278368610134e+01
+-4.2133108884011840e+01
+-1.0199104991237839e+01
+1.5949556362140243e+01
+-4.1160396322811557e+01
+-9.8292552760410281e+00
+1.5111964877269381e+01
+-3.9205417364677494e+01
+-6.4576190674542122e+00
+1.6738457730056865e+01
+-4.3607418466256071e+01
+-6.4576190674542122e+00
+1.6738457730056865e+01
+-4.3607418466256071e+01
+1.4209143642642090e+01
+1.0197144436680555e+01
+-2.4327182383111339e+01
+-1.0924330157730548e+01
+1.5401216457536401e+01
+-3.9170664913200618e+01
+-1.0856862802804748e+01
+1.5464876725797884e+01
+-3.9680274326659351e+01
+-3.7919298911405073e+00
+1.7254770573480162e+01
+-4.4574845834032608e+01
+-1.1829143204260752e+01
+1.5541323020339959e+01
+-4.0262396458136919e+01
+1.2154473932364105e+01
+1.0156079384792438e+01
+-2.4438161515585428e+01
+1.2792875802741792e+01
+1.0369242964812097e+01
+-2.5301577590531998e+01
+-1.4524578453881025e+01
+1.3548689564775984e+01
+-3.4775338995885122e+01
+-1.4524578453881025e+01
+1.3548689564775984e+01
+-3.4775338995885122e+01
+-9.5538375012633416e+00
+1.5563800266265405e+01
+-4.0490151770920164e+01
+1.4162594157413695e+01
+1.0010933039472066e+01
+-2.4094039961374175e+01
+1.2905762603996772e+01
+1.0290848807795662e+01
+-2.4801647337914254e+01
+-2.8134236808703075e+00
+1.7604578013129345e+01
+-4.5711100031788099e+01
+-1.5632099531502659e+00
+1.7636086716068007e+01
+-4.6429357583301801e+01
+1.4421820110248873e+01
+1.2901824331842128e+01
+-3.2208744799319817e+01
+1.3383742334079697e+01
+1.0328990145213869e+01
+-2.5088233593124926e+01
+1.3025412210419752e+01
+1.4029523725044491e+01
+-3.5772078376878461e+01
+-5.0105736892429418e+00
+1.6682011645325211e+01
+-4.3843580400723383e+01
+1.4939168695664740e+01
+2.3331645980892617e+01
+-6.0773066281707891e+01
+-1.2234916372117944e+01
+1.4656022015878735e+01
+-3.7864054506769889e+01
+-1.2234916372117944e+01
+1.4656022015878735e+01
+-3.7864054506769889e+01
+-9.7780483040844013e-01
+1.8026443934444231e+01
+-4.7301495628134738e+01
+1.2327953255576931e+01
+1.0383913188894745e+01
+-2.5522321227266481e+01
+1.2903500673321830e+01
+1.0450232423714748e+01
+-2.5530365519562835e+01
+1.2903500673321830e+01
+1.0450232423714748e+01
+-2.5530365519562835e+01
+-2.3266278615056479e+00
+1.7510226362923206e+01
+-4.6133863774571630e+01
+-2.3119625660374723e+00
+1.7349788900766047e+01
+-4.5992103045808001e+01
+1.2724102078634042e+01
+1.0136443267030190e+01
+-2.4743807501073992e+01
+-3.6177226795943755e+00
+1.6965458509328258e+01
+-4.4883201587360979e+01
+-2.1535780529138289e+00
+1.7686612554718177e+01
+-4.6364717748740695e+01
+-2.1721417701946057e+00
+1.7563030981433730e+01
+-4.6208576061160386e+01
+-8.6958620157993760e-01
+1.7950943563651197e+01
+-4.7214605582617956e+01
+-1.2506804667495501e+01
+1.4783467718477432e+01
+-3.8648376672055136e+01
+1.3576371117636224e+01
+1.3705507125789529e+01
+-3.5069755795256697e+01
+1.3870740739052923e+01
+1.3914642562672430e+01
+-3.5681174756644282e+01
+5.9263845403128967e-01
+1.8511697772421339e+01
+-4.9203831395103478e+01
+-1.8548066262046000e+01
+1.4893894152380156e+01
+-3.8207017939285556e+01
+-1.8548066262046000e+01
+1.4893894152380156e+01
+-3.8207017939285556e+01
+-3.2350821447290983e+00
+1.7671877608742943e+01
+-4.7349753532097047e+01
+1.2865115057741553e+01
+9.9631485288491639e+00
+-2.4459510214182764e+01
+1.6080061021955320e+01
+2.2275499466802529e+01
+-5.9151717374761901e+01
+-1.2922705078959649e+00
+1.7683817772634079e+01
+-4.7004808785282613e+01
+-2.6824747266366571e+00
+1.7382047590062967e+01
+-4.6463898065078247e+01
+-1.8020933225174942e+00
+1.7855055245455361e+01
+-4.7653124604290149e+01
+1.2748743306427126e+01
+1.0091589352430624e+01
+-2.4813373647618747e+01
+-1.5279356192168130e+01
+1.4772791116787465e+01
+-3.8806434784266919e+01
+-2.2355611045395318e+00
+1.7381079682754287e+01
+-4.6175244993332484e+01
+1.5497686415719794e+01
+2.2422239985438910e+01
+-5.9807493806178414e+01
+1.3949018930307718e+01
+9.1823134286920727e+00
+-2.2616320101491418e+01
+5.5681975673470196e+00
+1.9642633762914578e+01
+-5.2417889198800971e+01
+-3.4818442423785281e+00
+1.6863840564354366e+01
+-4.5268303344880970e+01
+1.6323343788970682e+01
+2.4802205020287460e+01
+-6.6464800229212074e+01
+-1.6166022888120867e+01
+1.5066801783468641e+01
+-4.0001296305521763e+01
+-1.0105098184899095e+01
+1.4652869612644169e+01
+-3.9640972103328870e+01
+-2.7591031568287261e+00
+1.7262330098874141e+01
+-4.6296877394791899e+01
+-1.1812267213500146e+01
+1.4522594253578234e+01
+-3.8590768580404742e+01
+5.8161183654504960e+00
+1.9048395634521313e+01
+-5.1524551895999316e+01
+1.3119875771385651e+01
+9.7779338037812362e+00
+-2.4670105325498351e+01
+1.4397689457780279e+01
+9.5910402318364572e+00
+-2.3899482671757518e+01
+-1.4761453811568956e+01
+1.4145621440563861e+01
+-3.7224315858306980e+01
+-1.2946810952428320e+00
+1.8132035084910079e+01
+-4.9695963128584701e+01
+-1.2839236950324620e+00
+1.7993731151207253e+01
+-4.8975297222129527e+01
+-9.7767080349498237e+00
+1.5094465013579129e+01
+-4.0881091772342806e+01
+1.5173848724858285e+01
+2.1860337606422199e+01
+-5.9209286059880732e+01
+-8.0728969663124666e+00
+1.5326216195275881e+01
+-4.1674946338725491e+01
+1.3203953791923629e+01
+1.0368325052385526e+01
+-2.6392486640504451e+01
+-1.2094805599390007e+01
+1.4249561608905585e+01
+-3.8565570961105941e+01
+-1.0891469099220261e+01
+1.4551390706244595e+01
+-3.9522568790528737e+01
+-1.0600672532987364e+01
+1.4103495005201415e+01
+-3.8607264586219301e+01
+-1.5751390681057677e+01
+1.4702080226563702e+01
+-3.9792275270072174e+01
+1.6068529016051922e+01
+2.4344004811238783e+01
+-6.6638618594404576e+01
+1.2814262774370945e+01
+9.8018311403836087e+00
+-2.4968423740373773e+01
+-5.0737900385429553e+00
+1.6162065513672246e+01
+-4.4509797504441558e+01
+1.2795620933333829e+01
+9.6147910716772760e+00
+-2.4404266611766872e+01
+-7.9907181374826326e+00
+1.5351370284001373e+01
+-4.2368374691460069e+01
+1.3808881673392110e+01
+1.2661331108880622e+01
+-3.3465230377058383e+01
+-1.2476775618995458e+01
+1.4104453903892178e+01
+-3.8251302781863316e+01
+-1.2476775618995458e+01
+1.4104453903892178e+01
+-3.8251302781863316e+01
+-7.9454550498539582e+00
+1.5548227455379545e+01
+-4.2528966200387785e+01
+-8.4728547578140603e+00
+1.5349542295442999e+01
+-4.1917233545121618e+01
+1.3056972385623510e+01
+9.6616870109747257e+00
+-2.4876540271318248e+01
+1.4801627832728769e+01
+9.3418810457887727e+00
+-2.3570640611412788e+01
+8.1812821132693738e+00
+1.9740312622416333e+01
+-5.4892063896863959e+01
+1.7522814365327452e+01
+2.4726939951683434e+01
+-6.8552155569533440e+01
+-1.2631750993883502e+01
+1.4445228169600014e+01
+-3.9475669418114521e+01
+-3.3365208199610058e-01
+1.7800895067175876e+01
+-4.9368468059164343e+01
+1.2823714669832505e+01
+1.0334366650768166e+01
+-2.6973673181350410e+01
+1.3788634707877959e+01
+8.5489995501851475e+00
+-2.1653407002572010e+01
+1.8347120748761277e+01
+2.5085133076770479e+01
+-7.0274834282754298e+01
+1.3160177287864194e+01
+9.6943923083269645e+00
+-2.5163303159786537e+01
+8.4301272315643576e+00
+2.0094184769958463e+01
+-5.6229844108030001e+01
+1.2455032448782665e+01
+1.0258790279585687e+01
+-2.6944609412730543e+01
+-1.5809409140790246e+01
+1.3600546178509047e+01
+-3.7138175363560741e+01
+-9.7010141976521265e+00
+1.4674322533700931e+01
+-4.0939039623043186e+01
+-9.7010141976521265e+00
+1.4674322533700931e+01
+-4.0939039623043186e+01
+-8.6330223966834758e+00
+1.4912831114119268e+01
+-4.2217805969652659e+01
+1.3306739378726883e+01
+9.9995712097320464e+00
+-2.6304971609682461e+01
+-2.2720654848127269e+00
+1.6416139471655971e+01
+-4.6190447891514033e+01
+1.2726281678408649e+01
+9.9823392231368615e+00
+-2.6345793481730045e+01
+1.2713431275229899e+01
+9.4921719680657457e+00
+-2.5143389913341693e+01
+-1.2534807751025538e+01
+1.3965280684381945e+01
+-3.8737208096116497e+01
+1.3357125439888296e+01
+1.2681448138631106e+01
+-3.4632923366703658e+01
+1.2186144210828935e+01
+9.6438748142617907e+00
+-2.5681443197818055e+01
+-1.2484656336026513e+01
+1.3945169327307239e+01
+-3.9060871375257321e+01
+1.3229585605056497e+01
+1.2236535610981093e+01
+-3.3798024696493115e+01
+1.2539106394038380e+00
+1.8119691240941719e+01
+-5.2018851704700509e+01
+1.2793502671730058e+01
+1.2338903515446979e+01
+-3.4088714694008360e+01
+-9.4267297485043340e+00
+1.4744021240353877e+01
+-4.1537882616143001e+01
+-8.1108667812734545e+00
+1.4884203264464034e+01
+-4.2662059479924125e+01
+-8.1108667812734545e+00
+1.4884203264464034e+01
+-4.2662059479924125e+01
+-9.6183978949410083e+00
+1.4718287060861078e+01
+-4.1986015852779659e+01
+9.0162635280415522e+00
+2.0525918638313264e+01
+-5.8901523217559294e+01
+-6.1038595522669556e+00
+1.5379844124356513e+01
+-4.4359941580757102e+01
+-1.9117246218921446e+00
+1.5992498548507031e+01
+-4.6014324213498313e+01
+-7.1721870530856116e+00
+1.5156475693896956e+01
+-4.3643967236910008e+01
+-9.6570721272107640e+00
+1.4414806027564291e+01
+-4.1266852251050338e+01
+1.0445103527976663e+01
+1.9703162128079327e+01
+-5.7222114245123187e+01
+1.3726325845339128e+01
+9.1220622165986907e+00
+-2.4456296693634222e+01
+1.3726325845339128e+01
+9.1220622165986907e+00
+-2.4456296693634222e+01
+-1.5138256373791949e+01
+1.3375187896523764e+01
+-3.8226882370903802e+01
+-4.6268207101020593e+00
+1.5637059140341551e+01
+-4.5303382285893221e+01
+-1.1268554020830269e+01
+1.3125074758285786e+01
+-3.8226054911276897e+01
+1.6442664804268905e+01
+2.3546401005848704e+01
+-6.8603962515082145e+01
+-7.0331415215787096e+00
+1.5120795773912828e+01
+-4.4055144042514925e+01
+-1.1244308142476758e+01
+1.3772527173291492e+01
+-4.0130766335611440e+01
+1.3403431805324400e+01
+1.2025141732923133e+01
+-3.3654199180867657e+01
+-4.7904322258882583e+00
+1.5479104671454678e+01
+-4.5771486769439328e+01
+1.3746847512063686e+01
+1.1944634588730130e+01
+-3.3827201442291404e+01
+-1.6169038561195766e+01
+1.3499103018488169e+01
+-3.9272088137316160e+01
+1.3374162929806337e+01
+1.2226300257577456e+01
+-3.5052579106999282e+01
+4.9010642730496627e+00
+1.8642646516501394e+01
+-5.5238597236575828e+01
+1.2321052871118418e+01
+9.7886424516775339e+00
+-2.7205419755068696e+01
+1.2381563874617719e+01
+9.7009993627821220e+00
+-2.7061104751309145e+01
+-6.8723704556827450e+00
+1.4932615099010867e+01
+-4.4520061116736912e+01
+-1.0507909837442954e+01
+1.3361625131529893e+01
+-3.9729257210892101e+01
+-1.0507909837442954e+01
+1.3361625131529893e+01
+-3.9729257210892101e+01
+-2.2002585815140986e+01
+1.5601422593851357e+01
+-4.5192460512431509e+01
+-6.5885428274866147e+00
+1.4991980576512992e+01
+-4.4862876438356246e+01
+-6.5885428274866147e+00
+1.4991980576512992e+01
+-4.4862876438356246e+01
+1.0007180725934601e+00
+1.6979554897143217e+01
+-5.0474924804089277e+01
+-1.0803039902166853e+01
+1.3861533373720464e+01
+-4.0885686367480098e+01
+-7.5599431081970776e+00
+1.4596368089937533e+01
+-4.3700832187285108e+01
+-9.6400025396139437e+00
+1.4263485263863036e+01
+-4.2304209077743863e+01
+-9.7238284364682954e+00
+1.4587508342660730e+01
+-4.3766499305973646e+01
+-1.0901940647539730e+01
+1.3599525786044012e+01
+-4.0832608927066609e+01
+-1.0901940647539730e+01
+1.3599525786044012e+01
+-4.0832608927066609e+01
+-1.0580604203974204e+01
+1.3142089086437114e+01
+-3.9512051457156154e+01
+-7.8642946810502599e+00
+1.4632574588454384e+01
+-4.3905756626164575e+01
+8.9163326859476868e+00
+1.9728746938445109e+01
+-6.0045832092325156e+01
+1.3293803998287782e+01
+1.2636687517132156e+01
+-3.6988957242143414e+01
+1.4236284233736225e+01
+8.8283843700500846e+00
+-2.4505019997924943e+01
+-1.3838962694303412e+01
+1.3222719308304693e+01
+-3.9225631949866070e+01
+4.7484335275111622e+00
+1.7543163329323527e+01
+-5.3265275844484655e+01
+-1.2407323371082406e+01
+1.3481805418846683e+01
+-4.0367863489757518e+01
+-9.9972812291486921e+00
+1.3363769019646396e+01
+-4.0760439255161117e+01
+1.4076275443848225e+01
+8.9453032326122965e+00
+-2.5082836665092699e+01
+1.2814166596874140e+01
+1.2165200932823319e+01
+-3.5694631070854676e+01
+-8.5886443343797794e+00
+1.4116920203932551e+01
+-4.3154139530236456e+01
+1.3089876082602688e+01
+8.6072269664023331e+00
+-2.4305631978304362e+01
+1.3089876082602688e+01
+8.6072269664023331e+00
+-2.4305631978304362e+01
+-9.5587269121591039e+00
+1.3968077567296463e+01
+-4.2630716410140153e+01
+1.3384767758711574e+01
+8.6568182019696494e+00
+-2.4657909172755353e+01
+1.3363962195420244e+01
+8.6552181103704218e+00
+-2.4630100939120354e+01
+-1.3120761903230100e+01
+1.2918609702621968e+01
+-3.9445107549875260e+01
+-7.0364059852721557e+00
+1.4881486200774328e+01
+-4.5769609708756462e+01
+-9.7324208584237013e+00
+1.3862783670637116e+01
+-4.2502688400961446e+01
+-9.7554600575981780e+00
+1.3964046571789181e+01
+-4.2745803095437694e+01
+-1.3262379351024084e+01
+1.2871306353832926e+01
+-3.9502878495349698e+01
+-9.9670185920965544e+00
+1.3802322930242374e+01
+-4.2675512277062190e+01
+1.2649358619145891e+01
+8.4632385904904996e+00
+-2.4460139327769646e+01
+1.2760293573520428e+01
+8.7495247396451905e+00
+-2.5632425561308430e+01
+1.3369042067508630e+01
+8.5023309757643979e+00
+-2.4575213603794090e+01
+1.6711251670889936e+01
+1.3463939414888630e+01
+-4.1125671227368535e+01
+-1.2570147485487682e+01
+1.2969790318722678e+01
+-3.9972470462730172e+01
+1.2385399493540779e+01
+8.9693470106996429e+00
+-2.6316074514445379e+01
+1.2540175022020154e+01
+8.8488628128297968e+00
+-2.5875035135273389e+01
+1.2682969180670019e+01
+8.8776452604878742e+00
+-2.5672669202795817e+01
+-9.1774091232163943e+00
+1.3847953400263053e+01
+-4.3149222235463306e+01
+-1.1877904174566631e+01
+1.2940206371745017e+01
+-4.0540192652978966e+01
+1.2691446509392375e+01
+8.3600861288516004e+00
+-2.4735957579319045e+01
+-8.7578043521121334e+00
+1.3224769104712012e+01
+-4.1694804026659611e+01
+-9.4231502496939417e+00
+1.3183302338843232e+01
+-4.1625284074790819e+01
+1.2091683458839966e+00
+1.6395123347540856e+01
+-5.2273479454803066e+01
+1.6253226525480265e+01
+1.3241354308107869e+01
+-4.0988716644881983e+01
+-8.7705638822027634e+00
+1.4076789155609138e+01
+-4.4456381565729338e+01
+-6.6350116245270643e+00
+1.4299149623974692e+01
+-4.5191907595419423e+01
+-6.6341008182945789e+00
+1.4290193021743306e+01
+-4.5255409860528729e+01
+-1.8863942949757863e+01
+1.3632835008632151e+01
+-4.2234616199866423e+01
+-1.1032563696959055e+01
+1.3152033562292841e+01
+-4.1252859687091302e+01
+-1.1086419724983847e+01
+1.3075708093534329e+01
+-4.1402324632687936e+01
+-9.6113547097953109e+00
+1.3673750864272613e+01
+-4.3045961613418470e+01
+-9.6618319437127891e+00
+1.3664828718756203e+01
+-4.2754386756826889e+01
+-1.5889364955625313e+01
+1.2753592103093300e+01
+-4.0175033805845224e+01
+1.2479243798618262e+01
+8.9371966261001194e+00
+-2.6587167030365435e+01
+-1.0463976014304290e+01
+1.3151828008900416e+01
+-4.1994788199100988e+01
+-1.0466633327025310e+01
+1.3175229118378219e+01
+-4.2045904787539342e+01
+-1.0466633327025310e+01
+1.3175229118378219e+01
+-4.2045904787539342e+01
+-9.2686136393602734e+00
+1.3531906086273192e+01
+-4.3004358402411256e+01
+-8.9207199967151372e+00
+1.3666590341597388e+01
+-4.3212511403436260e+01
+-8.5016798656449968e+00
+1.3634026621977323e+01
+-4.3689894497675780e+01
+1.2721425616659804e+01
+8.9751987034812615e+00
+-2.7368150823994270e+01
+-1.4550409149114362e+01
+1.2327796793545586e+01
+-3.9166403408969707e+01
+-1.4044339109968638e+01
+1.2557848183270139e+01
+-3.9692888751881036e+01
+-9.4809603058980230e+00
+1.3024982819602112e+01
+-4.1879790324102878e+01
+-9.8365964709828884e+00
+1.3622802026679986e+01
+-4.3647531070746851e+01
+-1.3083956915340421e+01
+1.2693301743316148e+01
+-4.0361920757605034e+01
+-1.2989179540085807e+01
+1.2727938767522295e+01
+-4.0461396767395570e+01
+-1.2958062673523125e+01
+1.2635131302359662e+01
+-4.0314688015921583e+01
+1.7137579977360417e+01
+1.2897888818209397e+01
+-4.0589130005113354e+01
+-8.3936305505030955e+00
+1.3713463693270917e+01
+-4.4187429547443095e+01
+-8.6439164119493714e+00
+1.3784661106218849e+01
+-4.4543760137830105e+01
+7.6261389407881452e-01
+1.5884322719851198e+01
+-5.1490563082526975e+01
+7.4548806521491184e-01
+1.5892063843028918e+01
+-5.1582208433406834e+01
+1.3616794287432914e+01
+8.3652460819182028e+00
+-2.5326256011493623e+01
+-9.9218818431335301e+00
+1.3115006897160017e+01
+-4.2646691442809662e+01
+-9.8312483840562930e+00
+1.3229907244929091e+01
+-4.2962135987474461e+01
+-4.7374667035016191e+00
+1.4589372490141541e+01
+-4.7403149527353939e+01
+-1.4102342151985626e+01
+1.2265546311229603e+01
+-3.9238023171531125e+01
+-1.0909936244571959e+01
+1.3402786576478960e+01
+-4.3630552952134252e+01
+-1.0761882190166657e+01
+1.3163724419555802e+01
+-4.2744654841858271e+01
+1.2924696225056529e+01
+9.0177595015783609e+00
+-2.7556065181738301e+01
+-9.0847965922762945e+00
+1.3551777315086888e+01
+-4.4440554997822204e+01
+-1.5378681254534477e+01
+1.2229348604333358e+01
+-3.8932580783998588e+01
+1.3693596735773028e+01
+1.0701534750075846e+01
+-3.4008739347070765e+01
+-6.7006289652743067e+00
+1.3996714019419503e+01
+-4.5886154224986306e+01
+-6.7368318358507731e+00
+1.4014683782820228e+01
+-4.5735584215561190e+01
+8.6826048714872717e-01
+1.5900728028612553e+01
+-5.2072366423751177e+01
+9.4605135658359729e-01
+1.6111465199842389e+01
+-5.2981856284677093e+01
+-9.8411790938894956e+00
+1.3270589744803846e+01
+-4.3133142220486512e+01
+-1.1207052748300759e+01
+1.2799498494802499e+01
+-4.1952103063418150e+01
+1.3600521609503121e+01
+8.5640054416106608e+00
+-2.6232190923231848e+01
+1.2731717632922468e+01
+7.9404298330760179e+00
+-2.4717815334016972e+01
+-8.8773085314035054e+00
+1.3402463719642801e+01
+-4.3892304345217276e+01
+8.5765806437925218e-01
+1.5750204236978991e+01
+-5.2216856787860166e+01
+1.3346149716517630e+01
+1.0429839991777540e+01
+-3.3339302548624239e+01
+1.2844197663053796e+01
+8.8022968005778779e+00
+-2.7267305554863970e+01
+1.3621858167520619e+01
+8.2221969057971851e+00
+-2.5221658744407698e+01
+1.3917492307842201e+01
+1.0424462992325035e+01
+-3.3761397610592518e+01
+-1.4875410677836555e+01
+1.2761960405448102e+01
+-4.2124402914791183e+01
+-1.6969079591537017e+01
+1.1704988097533969e+01
+-3.7996947333468469e+01
+-6.9939235807468751e+00
+1.3353240051927267e+01
+-4.5042477159818390e+01
+1.3398595043040482e+01
+7.9229313855919381e+00
+-2.4984057261701913e+01
+-7.3859289561141699e+00
+1.3641035863182674e+01
+-4.5891377589528830e+01
+1.2737329069680094e+01
+8.0137600148213437e+00
+-2.4766518429192569e+01
+1.3028157969034572e+01
+7.9607794860066141e+00
+-2.5182637391627040e+01
+-1.1548090293725005e+01
+1.2462099604249412e+01
+-4.1845337540475015e+01
+-1.0977750758768792e+01
+1.2716234116185053e+01
+-4.2568695099117782e+01
+1.3462222909626977e+01
+1.0145147140197707e+01
+-3.3098975613229058e+01
+1.2994801943969339e+01
+8.1803881414601172e+00
+-2.5969992750968881e+01
+-6.8870586672123730e+00
+1.3405793043705536e+01
+-4.6019544345284288e+01
+-1.5465067318640802e-01
+1.5305406717881793e+01
+-5.2517644945362029e+01
+1.4185721783541405e+01
+7.4481688961231090e+00
+-2.3675190057078083e+01
+-1.6861278904252188e+01
+1.1761319470920537e+01
+-3.9795758956513843e+01
+1.3688306260745797e+01
+1.0329238580677822e+01
+-3.3633064659702384e+01
+1.3046359924124232e+01
+7.9866376550523599e+00
+-2.5872719548238539e+01
+1.2313533589563777e+01
+8.2972686824093831e+00
+-2.7217908806439620e+01
+1.2597767472807185e+01
+8.5005554415426090e+00
+-2.7859334294824865e+01
+1.2639076198460641e+01
+7.7385959117845360e+00
+-2.5134055473047280e+01
+-1.0006654952457479e+01
+1.2618111710874569e+01
+-4.3610900452897226e+01
+-1.2235396356445772e+01
+1.1986851153548900e+01
+-4.1195890075615097e+01
+1.3468217209412929e+01
+7.1717801347831509e+00
+-2.3337489935342049e+01
+-1.3087294338747306e+01
+1.2334638273587501e+01
+-4.2459078560602187e+01
+1.4239722679093235e+01
+1.0067617068553437e+01
+-3.3566022745165633e+01
+1.3814209057955429e+01
+1.1429328193291846e+01
+-3.8755910929882198e+01
+1.2804172618611608e+01
+7.7840807957685785e+00
+-2.5326311869335786e+01
+-9.9290341707462471e+00
+1.2641515683752825e+01
+-4.4090947288015343e+01
+-9.6250366693394156e+00
+1.2745418704772648e+01
+-4.4071217348579339e+01
+2.0500710891560303e-01
+1.5005040823608320e+01
+-5.2595515945605136e+01
+-1.1907678264548748e+01
+1.1950202685538825e+01
+-4.1874114686570643e+01
+1.3470681119017430e+01
+9.9538266058283824e+00
+-3.3600669349314700e+01
+-1.2233584411937407e+01
+1.1944076027347485e+01
+-4.1409278355127924e+01
+-5.4933994742358925e+00
+1.3757685291474148e+01
+-4.8525412554851023e+01
+-1.1900363476366673e+01
+1.1990870507737704e+01
+-4.1994777597288746e+01
+-1.0063581292191676e+01
+1.2119139399098296e+01
+-4.2782832541862824e+01
+-6.7996496491852634e+00
+1.3216090589616670e+01
+-4.6967058026290282e+01
+-6.8556297063192773e+00
+1.3385984679432863e+01
+-4.7572802592365100e+01
+1.2670887501477635e+01
+8.1705648053177615e+00
+-2.7472347394520764e+01
+1.2940128392758284e+01
+8.1090320635631628e+00
+-2.7420592870634170e+01
+1.2342506002705857e+01
+8.1408515977256926e+00
+-2.6934337660937594e+01
+1.2828291864919468e+01
+8.1532532808564362e+00
+-2.7599088011651926e+01
+-1.0269123467952880e+01
+1.1953800732468036e+01
+-4.2770319078180023e+01
+-9.4363774604039730e+00
+1.2366393705351760e+01
+-4.4220821901594853e+01
+-6.1043634833244438e+00
+1.3279638329368160e+01
+-4.7523256105280268e+01
+-4.3550022103366208e+00
+1.3829955989072651e+01
+-4.9534072840104535e+01
+1.1943815927574054e+01
+8.0748341899582208e+00
+-2.7265625943110734e+01
+-4.1492327008820089e+00
+1.3548336653545434e+01
+-4.9161398095500047e+01
+1.3448991627134884e+01
+9.8010091364209693e+00
+-3.4119553376535443e+01
+-1.6490115455934955e+01
+1.1322738998781885e+01
+-4.0437089581977098e+01
+1.3267341038214525e+01
+7.7626072454542712e+00
+-2.6568259836166693e+01
+1.3394603403167432e+01
+7.3978864828695077e+00
+-2.5179603359779328e+01
+-1.6698595360741056e+01
+1.1357570717860128e+01
+-4.0454313718737680e+01
+1.2828371046191061e+01
+8.0443773269637049e+00
+-2.7356023122392937e+01
+1.2280278738502501e+01
+7.8142926334943894e+00
+-2.6791359009540919e+01
+6.9383221710139447e+00
+1.4089721451996695e+01
+-5.1434418255471762e+01
+-1.5712351736002072e+01
+1.1237661714493893e+01
+-4.0176033564314061e+01
+-5.3678735622153901e+00
+1.3288307776021728e+01
+-4.8493924178604679e+01
+9.0755256199847061e+00
+1.4734133184785952e+01
+-5.2986696794352760e+01
+1.2526223847924896e+01
+7.7756822438669309e+00
+-2.7211137483147368e+01
+1.4711100339246332e+01
+7.3174793201764174e+00
+-2.4484083357587785e+01
+8.5114815242411854e+00
+1.5799863876833541e+01
+-5.7850042169112292e+01
+-5.9743644255157955e+00
+1.2783009687051720e+01
+-4.7512308061275093e+01
+-3.7180980195618432e+01
+1.5699893318872757e+01
+-5.6213181227272656e+01
+1.2373714622806872e+01
+7.7815219361585939e+00
+-2.7408967782180738e+01
+1.4574821782125319e+01
+9.3702475516049830e+00
+-3.3516951778511604e+01
+1.5574414722332714e+01
+9.1417603856292526e+00
+-3.2556557137254643e+01
+1.2676700514206459e+01
+7.6464535397726472e+00
+-2.6906917422748641e+01
+-1.7010330901961090e+01
+1.0915189159096478e+01
+-3.9421156903422343e+01
+1.2789318702263921e+01
+1.0705339100978362e+01
+-3.9362735901250936e+01
+1.2589879998625186e+01
+7.8000092374452867e+00
+-2.7532617527683858e+01
+1.7012029816319988e+01
+8.8472073510107467e+00
+-3.1438270033384953e+01
+-5.9615938320339028e+00
+1.3138170993490858e+01
+-4.9036496165291162e+01
+1.2620728356780837e+01
+7.6304532627546813e+00
+-2.6795397821459304e+01
+-1.4636332725816397e+01
+1.1201708311682360e+01
+-4.1297142326151025e+01
+-1.0762329243521858e+01
+1.1646082653818780e+01
+-4.3483674534348047e+01
+1.2464864555119364e+01
+7.5841990414298293e+00
+-2.6888516918108586e+01
+1.3449873572795484e+01
+7.1875657008449103e+00
+-2.5299987110427953e+01
+-1.1621873516782109e+01
+1.0806285477496932e+01
+-4.0495209030301631e+01
+-1.6042734297172505e+01
+1.0931372331681819e+01
+-4.0314835243022038e+01
+-1.3807868447937022e+01
+9.4826181233766977e+00
+-3.5715562438386328e+01
+-1.2850935176612813e+01
+1.1542703352784820e+01
+-4.3250537720521287e+01
+-9.9630959257321319e+00
+1.1724852165983387e+01
+-4.4580004899529101e+01
+-9.7071010919303955e+00
+1.1381848019860552e+01
+-4.3235593617898722e+01
+-9.9630959257321319e+00
+1.1724852165983387e+01
+-4.4580004899529101e+01
+-1.1705222837757708e+01
+1.0765571094582180e+01
+-4.0858279828021885e+01
+-1.5651801854271680e+01
+1.1036779235285140e+01
+-4.1569803352635347e+01
+-1.2060683529079038e+01
+1.1605803289752568e+01
+-4.3781561224131977e+01
+1.3382994658360049e+01
+6.9887170778939458e+00
+-2.4982747004800359e+01
+1.7283152688797401e+01
+8.0891546945811896e+00
+-2.9252357552132235e+01
+-1.3929658967914163e+01
+1.0732940761458289e+01
+-4.0998081000054995e+01
+-1.4026174797890915e+01
+1.0705047605746628e+01
+-4.1039953761950116e+01
+7.4153970667049327e+00
+1.3131845149783477e+01
+-5.0319484113224888e+01
+1.2783225585780418e+01
+7.3889889915426208e+00
+-2.6920573517097381e+01
+-1.0525627040960572e+01
+1.1696337673073067e+01
+-4.4663696314703280e+01
+1.2440553811889265e+01
+7.5556768420985652e+00
+-2.7294034925178000e+01
+1.2388176919596775e+01
+7.4856044315052408e+00
+-2.7145265347182075e+01
+-1.4144357895645893e+01
+1.0679602420221501e+01
+-4.1100105220307547e+01
+1.4863633801211773e+01
+1.0627323966769739e+01
+-4.0482575624943827e+01
+-1.6241819174138268e+01
+1.0789242377787474e+01
+-4.1385222459124563e+01
+-1.7188427869540117e+01
+1.0492888448302500e+01
+-3.9504029680047402e+01
+-1.6330056149088389e+01
+1.0910418053702179e+01
+-4.1918749200783566e+01
+1.3674907087414990e+01
+6.6084000718695926e+00
+-2.4112468821056815e+01
+1.4462028482497066e+01
+6.3800983409275931e+00
+-2.2818196477088019e+01
+-1.5488681111899927e+01
+1.0672129713976387e+01
+-4.1196660965832741e+01
+-1.3506849488540004e+01
+1.0134831978041452e+01
+-3.9518295060987285e+01
+9.4328789147510073e-01
+1.2847044004784312e+01
+-5.0365821345837524e+01
+1.4139773906772996e+01
+9.0624539273137081e+00
+-3.4423292555739167e+01
+1.2561262710654669e+01
+7.2780877683348955e+00
+-2.7319935049901716e+01
+-1.5948009977750543e+01
+1.0793521261201745e+01
+-4.1981064431387871e+01
+-1.5941939246845340e+01
+1.0685425053476939e+01
+-4.1595650974038350e+01
+2.9199844503735801e+00
+1.2675383318790383e+01
+-5.0519523919426831e+01
+1.1815223021062145e+01
+7.6056877742356503e+00
+-2.8738034926787837e+01
+-6.9509290378217559e+00
+1.1946133528202543e+01
+-4.8114749596012096e+01
+-1.1113404441674035e+01
+1.0426670609034153e+01
+-4.1818789762307453e+01
+-7.4431998725580293e+00
+1.1704487639125308e+01
+-4.7589527125526935e+01
+-7.4722363127397662e+00
+1.1862608248046669e+01
+-4.7960274133117267e+01
+1.2378867945599385e+01
+1.2140048066161448e+01
+-4.8687124137747738e+01
+-1.2173981622041918e+01
+1.0003735296368163e+01
+-4.0318736904273216e+01
+1.2327815530396935e+01
+7.1691522513860226e+00
+-2.7141947800302514e+01
+1.2907510878043301e+01
+1.1984071309408298e+01
+-4.8299857604316202e+01
+-1.7406625203261996e+01
+1.0281522416075477e+01
+-4.0892187615700912e+01
+1.4662559374292556e+01
+1.0604703527011162e+01
+-4.2536203233701123e+01
+-7.5275651553091842e+00
+1.1781977330874538e+01
+-4.7968102678268252e+01
+1.2624589391958933e+01
+7.2791593348865025e+00
+-2.8216697542879370e+01
+-1.6761491085584453e+01
+1.0326743883566873e+01
+-4.1949820100194152e+01
+-7.8706349912107143e+00
+1.1633526130991472e+01
+-4.7828159769968238e+01
+1.2080819222290129e+01
+7.3064590677207866e+00
+-2.9018110279198748e+01
+1.2525997575925272e+01
+7.1270311760528848e+00
+-2.7930736196195198e+01
+1.2414539442599278e+01
+7.0601096074709604e+00
+-2.7860226376732072e+01
+1.5157912843028161e+01
+6.6667742662802629e+00
+-2.5739012810950261e+01
+-1.3434533598394124e+01
+9.6971817271286653e+00
+-4.0292337043237474e+01
+1.2498101209506853e+01
+7.2056156760292662e+00
+-2.8737704197789860e+01
+1.2746443548500370e+01
+6.6318030804500472e+00
+-2.5684056846737793e+01
+1.3169986683542156e+01
+6.8495411610077630e+00
+-2.7242327691596255e+01
+-1.5875991362730437e+01
+1.0046191080474509e+01
+-4.1592250269856152e+01
+1.3948172163442230e+01
+6.7510790977071862e+00
+-2.6323064899591337e+01
+-1.1754029586979209e+01
+1.1960733614071437e+01
+-5.1304728520165362e+01
+-9.6781024217325164e+00
+9.6649400198666076e+00
+-4.1221028576517149e+01
+1.4012677703927002e+01
+1.1777135041811638e+01
+-4.9755567090308709e+01
+-5.0296661672593146e+00
+1.1044131318648823e+01
+-4.7152928955059707e+01
+1.2191974654786931e+01
+7.3150229036266694e+00
+-2.9659504576445674e+01
+1.2741374013883993e+01
+6.6701864957838142e+00
+-2.6295421727928268e+01
+1.2808966243913533e+01
+6.7078276967719663e+00
+-2.6343572604382519e+01
+1.4152205458905314e+01
+6.1289827946159798e+00
+-2.4158411531919707e+01
+3.1200367170690613e+00
+1.1101570098948496e+01
+-4.7227731888139921e+01
+2.4025219736736521e+00
+1.1175426651186788e+01
+-4.7638806305237729e+01
+9.4097301916329601e-01
+1.1204583847061503e+01
+-4.7845037345641430e+01
+1.4691498222322583e+01
+9.9606507436088396e+00
+-4.1673357663936521e+01
+1.2671929475951098e+01
+6.4905629305717021e+00
+-2.6043053195385774e+01
+-1.4505877485725529e+01
+8.5874749012100295e+00
+-3.6701215947333843e+01
+2.0869931607331114e+00
+1.1025913313356522e+01
+-4.6880000783235090e+01
+1.5552846742204604e+01
+7.7568293948273626e+00
+-3.2058505462076226e+01
+1.3174659835651063e+01
+6.7345022421708807e+00
+-2.7440618750452106e+01
+-1.4921479069865594e+01
+8.4172570823433244e+00
+-3.6041117205997928e+01
+2.8351824778934489e+00
+1.0770987099515338e+01
+-4.6754391097718234e+01
+-1.9549538776336846e+01
+1.0483471700061818e+01
+-4.5768390072559839e+01
+-1.5978745636728398e+01
+9.6849697805840549e+00
+-4.1977730639686193e+01
+-1.4180842862537171e+01
+8.3152596363765117e+00
+-3.6608089312817128e+01
+1.6045630686956930e+01
+7.3946334278590662e+00
+-3.1468916951974698e+01
+-7.2669657159721952e+00
+1.0342119185303030e+01
+-4.6134014354122023e+01
+1.2853702382264188e+01
+6.3824715059403623e+00
+-2.7238001146140395e+01
+1.2853702382264188e+01
+6.3824715059403623e+00
+-2.7238001146140395e+01
+1.1180422168188743e+01
+1.0319454526612144e+01
+-4.6236026132142115e+01
+1.3297264436669577e+01
+6.2919539375008879e+00
+-2.6589733433243893e+01
+-1.2993148654316713e+01
+1.0208723890691738e+01
+-4.5575027441898634e+01
+-1.6918043850397734e+01
+9.4043928284567766e+00
+-4.2169249850624659e+01
+-1.4861374156254804e+01
+8.1234762656861257e+00
+-3.6520092226410185e+01
+1.1372634657246374e+01
+1.0230117137303187e+01
+-4.5978696571148802e+01
+1.2554214292930272e+01
+6.3036195158826578e+00
+-2.6758508521810523e+01
+-5.2828187058397647e-01
+1.0189413034479456e+01
+-4.6482286539079738e+01
+-6.6740683385437851e+00
+1.0210770670869776e+01
+-4.6082146433758581e+01
+1.2525157559945633e+01
+6.4846431296702809e+00
+-2.8155533092158084e+01
+9.8796979774380915e+00
+1.0061298418400105e+01
+-4.5943826220697254e+01
+-1.6012301203336129e+01
+9.3529587487863459e+00
+-4.3222670601782724e+01
+1.2408911782174542e+01
+6.2753602207840258e+00
+-2.7551520425048142e+01
+1.3758883072164757e+01
+6.3737076001184869e+00
+-2.7811962324547387e+01
+6.5264468778729405e+00
+9.7707035077859672e+00
+-4.5741102295464962e+01
+1.2367738722633055e+01
+6.3767315008260352e+00
+-2.8153499466880394e+01
+1.2767898868151311e+01
+6.0899183784341187e+00
+-2.7150229234329991e+01
+-2.0567291468149045e+00
+9.8861182142862756e+00
+-4.6332714004676113e+01
+1.3567929089851710e+01
+5.9613080122911741e+00
+-2.6340212264545713e+01
+-2.5129658290435142e+01
+1.0244298462957563e+01
+-4.7159358405208344e+01
+-1.2807103898827270e+01
+9.7478049332953134e+00
+-4.6077762136554782e+01
+-6.6719178637840688e+00
+9.3325325871270852e+00
+-4.4506073176157642e+01
+1.0286149260647106e+01
+9.5427143328313999e+00
+-4.5142860534909609e+01
+1.2092018110329860e+01
+6.4287391525523754e+00
+-2.8730967264837076e+01
+1.2607898751320658e+01
+6.1971288619768510e+00
+-2.8194625328578567e+01
+1.2658699070624770e+01
+6.0839975975391081e+00
+-2.7597941532278181e+01
+-1.2585300833124748e+01
+9.4992604639044700e+00
+-4.4912657377086440e+01
+-1.1895457438177719e+00
+9.5228544183076771e+00
+-4.5421890802933881e+01
+1.5538478153756076e+01
+5.4643723866641585e+00
+-2.3445986683049551e+01
+1.2653605864645483e+01
+6.3193150480340075e+00
+-2.9018080269501660e+01
+1.2669801693112811e+01
+6.2763740684838698e+00
+-2.8943108465116246e+01
+-7.0791498956085048e+00
+9.1962609530634083e+00
+-4.4743741501993952e+01
+-6.8135823237737645e+00
+9.4842597357423077e+00
+-4.5752943354209741e+01
+1.4394725042614562e+01
+4.9537582169879615e+00
+-2.2327625164538485e+01
+1.4352521347281769e+01
+4.9391013250399878e+00
+-2.2366344579494427e+01
+-1.7318181007237904e+01
+8.6766702724578035e+00
+-4.1195846507491069e+01
+1.4220942209567729e+01
+5.6583896191921488e+00
+-2.4962979207059981e+01
+1.3946132882351664e+01
+5.4206384205160036e+00
+-2.4645050236089070e+01
+1.5000648404315077e+01
+5.3041284612276343e+00
+-2.3164921143328666e+01
+1.2688532974166998e+01
+6.1746374610334467e+00
+-2.8853135778230467e+01
+1.4810477832049800e+01
+4.8815395005632585e+00
+-2.2333379506822151e+01
+1.2452381247453392e+01
+6.1644985358945377e+00
+-2.9009718395741206e+01
+1.2905025169278819e+01
+5.8283651091443494e+00
+-2.7235188256499672e+01
+1.2513403710838253e+01
+5.9590692679327493e+00
+-2.7149995211528545e+01
+1.2107990350116154e+01
+6.3413534668280409e+00
+-3.0314667016541300e+01
+1.3006344975080022e+01
+5.7027781306515255e+00
+-2.7056374765014013e+01
+-1.5609953236373553e+00
+9.0014160954178468e+00
+-4.4969724496191816e+01
+1.2721632596526579e+01
+5.8610923231109062e+00
+-2.7406332768591085e+01
+1.3393992288271210e+00
+8.9016647135387856e+00
+-4.4708355496461998e+01
+1.5074420277332219e+01
+6.3825926772557979e+00
+-3.0813273769762528e+01
+1.5494505671446243e+01
+5.2338389961531275e+00
+-2.3669968026628442e+01
+-6.7825609676932097e-01
+8.8149798608705510e+00
+-4.4682249563025302e+01
+1.3151581532848446e+01
+5.7470834765126479e+00
+-2.7748602977507076e+01
+1.4799164918059338e+01
+4.8653991784170723e+00
+-2.2614849328888681e+01
+1.4657913550058369e+01
+4.7961621592558643e+00
+-2.1905929876012731e+01
+-2.4207876874773120e+01
+9.3381485233636958e+00
+-4.6050449206920142e+01
+-2.4207876874773120e+01
+9.3381485233636958e+00
+-4.6050449206920142e+01
+-1.6027012204025073e+01
+8.7672605451534285e+00
+-4.4545814646930260e+01
+-7.1388887428794554e+00
+8.4357059882675127e+00
+-4.3393875602896784e+01
+-2.1112703500592698e+00
+8.6797352400568144e+00
+-4.4697586898258074e+01
+1.3069049376130483e+01
+6.5087297702161884e+00
+-3.2676796268105704e+01
+1.3086701700659262e+01
+5.3961197233944445e+00
+-2.6493758068253577e+01
+1.3184659008557057e+01
+5.4449271998854165e+00
+-2.6821982484058818e+01
+1.2898575650306038e+01
+5.7939478118611971e+00
+-2.8717136417343749e+01
+1.3975203463638627e+01
+7.1548176945494530e+00
+-3.6459955987968996e+01
+1.3100806217664239e+01
+5.7656686235008729e+00
+-2.8371208433004210e+01
+-4.7832975117557081e-01
+8.6522564161932607e+00
+-4.4819536838369238e+01
+1.2914255265941852e+01
+5.4928277026145036e+00
+-2.7800382301146819e+01
+1.2851187613025774e+01
+5.6038541345814865e+00
+-2.7954963690937110e+01
+1.2834448551777630e+01
+5.5393494867404049e+00
+-2.7865022605160721e+01
+-2.3569521878854111e-01
+8.2228808371644160e+00
+-4.3839050106178767e+01
+-1.6100309091383970e+01
+8.3513302110598939e+00
+-4.3758169493518139e+01
+-3.8645679370917492e+00
+8.1922675114951495e+00
+-4.3935484222094942e+01
+-4.7909645919403826e-01
+8.2245615502796312e+00
+-4.3880514141628417e+01
+-5.0337117486133309e-01
+8.2021046720294226e+00
+-4.3536658517341323e+01
+1.3448776583592537e+01
+5.3830070532519798e+00
+-2.7567073863443863e+01
+1.7554309771892346e+01
+5.6851927861121032e+00
+-2.9080712282541249e+01
+1.4257824071218279e+01
+5.0938497768058504e+00
+-2.5593095316667423e+01
+1.2597510987694688e+01
+5.4384348940561331e+00
+-2.7872617885969582e+01
+1.4071892306754609e+01
+5.2685579361105699e+00
+-2.6596818789714586e+01
+1.2924981718887771e+01
+5.4146247188579224e+00
+-2.8182568808544026e+01
+-1.2483028124307993e+00
+7.9818810632012873e+00
+-4.2910151690042056e+01
+1.3818154158058713e+01
+4.9058364461941109e+00
+-2.5370492512803377e+01
+1.2791282650307826e+01
+5.3494647093943657e+00
+-2.8799514153071957e+01
+1.4597197406541758e+01
+6.0032177964367639e+00
+-3.2504259462431968e+01
+1.3697877366372129e+01
+4.8812029053527013e+00
+-2.5870020662505905e+01
+8.9467048383104841e-01
+7.5992191815465571e+00
+-4.2982636163128390e+01
+-7.7696273516891141e+00
+7.3875644416264921e+00
+-4.2300529000531171e+01
+6.5704282179816220e-01
+7.6155218640018765e+00
+-4.3069218631792083e+01
+1.3506392355953357e+01
+4.9338669588040132e+00
+-2.6641287635467421e+01
+-6.7441354903511419e+00
+7.3908057244110550e+00
+-4.1941879722355495e+01
+1.2621244000755127e+01
+5.2482470144999116e+00
+-2.9172522201997211e+01
+1.3691731809529555e+01
+4.9042019238447763e+00
+-2.6595327546255749e+01
+1.4048713268937965e+01
+5.0797885515636452e+00
+-2.7319808843995315e+01
+1.3595880286836840e+01
+5.1757832169937483e+00
+-2.8192751159114547e+01
+1.2438085645687709e+01
+5.1672691069392833e+00
+-2.7836376339049046e+01
+-5.2855170620817153e+00
+7.2027812117746981e+00
+-4.2021024308721060e+01
+1.3211327582340219e+01
+5.0976020229813681e+00
+-2.8379659751214334e+01
+-8.2223144681018989e-01
+7.3012994123661183e+00
+-4.2494652423461531e+01
+2.8686799344475949e-01
+7.2177157410892976e+00
+-4.2512381018244447e+01
+-1.4374262089540693e+01
+7.2700276401257939e+00
+-4.2625704350554280e+01
+-7.9060529229351928e-01
+7.1615170330150990e+00
+-4.2204726824416362e+01
+1.2295148663317470e+01
+5.2526006551305855e+00
+-3.0364947384864220e+01
+-9.8118457881126524e+00
+6.8075631721499033e+00
+-4.0729624533000703e+01
+-1.5771912767797895e+00
+7.2046439851341120e+00
+-4.2162469874053727e+01
+-1.4347698150312165e+00
+7.1388974424402347e+00
+-4.2308107353636714e+01
+1.2065859079257383e+01
+5.3790174283218741e+00
+-3.1337270973124213e+01
+1.3041384688074075e+01
+5.0326379861556854e+00
+-2.9204550957608852e+01
+1.2715138215921455e+01
+4.9358142422635227e+00
+-2.9250329256165482e+01
+1.3690346337265796e+01
+5.1086711473590416e+00
+-2.9989723001929342e+01
+-2.1145551037314858e+00
+6.8512378223403214e+00
+-4.2044162050243749e+01
+1.2899918363525511e+01
+4.7524479826347807e+00
+-2.8557848915500831e+01
+1.9054538458858406e+01
+5.0326776540948099e+00
+-2.9532409019221536e+01
+1.2934726833516930e+01
+4.6853626069540946e+00
+-2.8305164295546685e+01
+1.4077833454964935e+01
+4.3592482161474777e+00
+-2.6257945086156745e+01
+-3.3757880337061841e+00
+6.6567074295923945e+00
+-4.1451816648880310e+01
+-4.7438100892637589e+00
+6.6018205443022824e+00
+-4.1510429655031452e+01
+1.2964043936608146e+01
+4.6759330873313401e+00
+-2.8908064584585627e+01
+3.1756722519768354e+00
+3.7902555026568105e+00
+-2.3337935700196322e+01
+1.4748972561673018e+01
+3.9317788117307706e+00
+-2.3417434811055589e+01
+-8.0018758728167789e+00
+6.2213207269940849e+00
+-4.0464711801636867e+01
+1.4002541422640505e+01
+4.2751916423676262e+00
+-2.6343822301978896e+01
+1.2549790173912554e+00
+3.8104639978123425e+00
+-2.3584243346847302e+01
+1.6487623563765943e+01
+4.7257861248971560e+00
+-2.9694662759922004e+01
+1.3029694875795736e+01
+4.3568858936104915e+00
+-2.8134825093278934e+01
+1.3911256952766795e+01
+4.1055926094940336e+00
+-2.6142294550999939e+01
+-4.5046700772433921e+00
+6.0446837544512890e+00
+-4.1031775115260650e+01
+1.4087463281784984e+01
+4.1678696871276451e+00
+-2.6653421506685071e+01
+-2.5691030139726930e+01
+6.2802430187278393e+00
+-4.1099723570505880e+01
+1.3211680186398189e+01
+4.3215018312871276e+00
+-2.8430867335592545e+01
+1.4283626248603303e+01
+4.0244633864855253e+00
+-2.5853375033179603e+01
+1.3673613240039623e+01
+4.0276455036852807e+00
+-2.6479500402421554e+01
+1.3092213554517389e+01
+4.3709380451867412e+00
+-2.9117481615205577e+01
+1.3162914111078072e+01
+4.4146211162175604e+00
+-2.9258830080538115e+01
+1.4380756081011620e+01
+4.1266762407302862e+00
+-2.6510329675994790e+01
+-2.5333905507406207e+01
+6.0809181333920206e+00
+-4.0468856536605287e+01
+1.8576657277063187e+01
+4.4960232521740124e+00
+-2.9562489712803824e+01
+1.3949225361683411e+01
+3.9046875627957305e+00
+-2.5918552422225847e+01
+1.2551528090490681e+01
+4.4156459729621700e+00
+-3.0540413087521319e+01
+-1.3506597158875005e+01
+5.2405868391933543e+00
+-3.7114095642639079e+01
+1.2725347112086713e+01
+4.3996850019500755e+00
+-3.0098485798312304e+01
+1.4094877706554932e+01
+4.3534013443723341e+00
+-2.9350338363370586e+01
+1.9048432082772209e+01
+4.4000653061613813e+00
+-2.9480240406106688e+01
+1.3337408115250490e+01
+4.0486686605574054e+00
+-2.7816082384956925e+01
+1.6069494475023859e+01
+4.5231375134910845e+00
+-3.0873523347279075e+01
+1.3364061187949355e+01
+3.9876865934177368e+00
+-2.7421354990973533e+01
+1.4350843499273910e+01
+4.3060843936404813e+00
+-3.0327902312896725e+01
+1.3984423284571712e+01
+3.6949251293786451e+00
+-2.5534548118253607e+01
+1.3901234907742630e+01
+4.0581589998283834e+00
+-2.8433827938056744e+01
+1.3478233012624608e+01
+3.9580489359293618e+00
+-2.7793331752094616e+01
+1.3470148860825153e+01
+3.9336908571581883e+00
+-2.7748600681971215e+01
+1.4150529769561194e+01
+3.8063788055032783e+00
+-2.6568402368258052e+01
+1.3986848759332471e+01
+3.6497020751207270e+00
+-2.5570349177051455e+01
+1.8746685709695566e+01
+4.2212894740419431e+00
+-2.9438327961104349e+01
+1.5654735099082760e+01
+3.4905712930219051e+00
+-2.3520782329587259e+01
+1.3002403202587567e+01
+4.0556567733725624e+00
+-2.9376100203128455e+01
+1.4028232330326670e+01
+3.5739884131099191e+00
+-2.5078711957523609e+01
+1.3324070502950876e+01
+3.8106868002050240e+00
+-2.7342712525107277e+01
+1.3742652480074025e+01
+3.9085425129993809e+00
+-2.7871413208411735e+01
+1.3937374837422730e+01
+3.8095565834167520e+00
+-2.7230004311017620e+01
+1.5426819874691239e+01
+4.3745727701564379e+00
+-3.1722524622341432e+01
+1.4187346925839570e+01
+3.7194556539971240e+00
+-2.6513062738440048e+01
+1.4145885657227415e+01
+3.6025781250886157e+00
+-2.5585475781417962e+01
+1.5769069384179490e+01
+3.5759835505583677e+00
+-2.3862376382127710e+01
+-3.4293715351570691e+00
+5.0270056839185102e+00
+-3.8818494032727784e+01
+-3.4826666408882740e+00
+5.2000524661830925e+00
+-3.9757848270911786e+01
+1.3754555062447984e+01
+3.7697389126855434e+00
+-2.7611391819724592e+01
+3.3857961023805987e+00
+3.1465956362027447e+00
+-2.2827283705356550e+01
+1.4143844270550632e+01
+3.4856136047535839e+00
+-2.5278548281958841e+01
+2.0734868051567714e+00
+3.3419966585174881e+00
+-2.3264072831967582e+01
+1.4098118003277477e+01
+3.6169542059474287e+00
+-2.6323357306057407e+01
+1.3155359149710520e+01
+4.0742798381458352e+00
+-3.0139094439725771e+01
+1.3505164290627176e+01
+3.9309641437375249e+00
+-2.8613502350366854e+01
+1.4716972932989147e+01
+3.1634252288733502e+00
+-2.2847667438217684e+01
+1.9020881297713821e+00
+3.1088175298228822e+00
+-2.2319803806943476e+01
+1.4984822591194243e+01
+3.4106970501736358e+00
+-2.3990742679024702e+01
+1.4717321919200630e+01
+3.3432654760689280e+00
+-2.3871174018878758e+01
+1.2938161584288702e+01
+4.3337209594980877e+00
+-3.3062068688320110e+01
+-1.2346808846101371e+01
+4.5517084419656442e+00
+-3.6067671310908182e+01
+1.4634883471509657e+01
+3.1041424143680598e+00
+-2.2886365890139857e+01
+-1.3370533544411300e+01
+5.0188990179892139e+00
+-3.8874508666099942e+01
+1.3734182721721561e+01
+3.5930984644180839e+00
+-2.7402887080835441e+01
+1.5339515430157050e+01
+3.1084011906170863e+00
+-2.2985022844043794e+01
+-1.2053211219117694e+00
+3.2020886037411671e+00
+-2.3833226484869453e+01
+-6.1698731276749286e-01
+2.9996820622091360e+00
+-2.2735276421560261e+01
+1.4411099016502169e+01
+3.6088534851450476e+00
+-2.7325151697710552e+01
+1.3549585601893321e+01
+4.2687365292496056e+00
+-3.3849169363491001e+01
+1.4576205510798843e+01
+3.2267657328060269e+00
+-2.4210531674192957e+01
+1.4122445868330777e+01
+3.4939508225136438e+00
+-2.6702611528673042e+01
+1.4100453787715205e+01
+3.4605144895011919e+00
+-2.6683847346545846e+01
+1.4012303625633889e+01
+3.4350015215680210e+00
+-2.6554586196153515e+01
+-1.3232249055397108e-01
+3.0255390652896366e+00
+-2.2680504380178032e+01
+1.4971606644562065e+01
+3.2768145745360640e+00
+-2.4881574417644011e+01
+1.2551794363123630e+01
+3.9131965503733941e+00
+-3.1547921410446559e+01
+1.4175540088883084e+01
+3.3652279348384142e+00
+-2.6333063278734624e+01
+-1.2297168319859551e+01
+4.2350970844721436e+00
+-3.5397618582887254e+01
+1.4335643675342359e+01
+3.1848957111294256e+00
+-2.4947506629374150e+01
+1.6035196547570280e+01
+3.7366198498253338e+00
+-2.9867842562389704e+01
+1.4412089592872494e+01
+3.3392759941425769e+00
+-2.6182251299800853e+01
+1.6402450509275141e+01
+3.7175827992658466e+00
+-2.9639936990068552e+01
+1.4596793913289343e+01
+3.1797906806503726e+00
+-2.4865373132612604e+01
+-5.3183034732697854e-01
+2.8773055085460757e+00
+-2.2528693310142920e+01
+1.6366421677455413e+01
+3.8145090968259581e+00
+-3.0788463884855847e+01
+1.6366421677455413e+01
+3.8145090968259581e+00
+-3.0788463884855847e+01
+1.4494175050125268e+01
+3.1661594651391471e+00
+-2.4961428679272519e+01
+1.5862899277754977e+01
+3.2194179338079767e+00
+-2.4062567797345213e+01
+1.5862899277754977e+01
+3.2194179338079767e+00
+-2.4062567797345213e+01
+-1.1939724397933594e+01
+4.2239628704429721e+00
+-3.5883290316693852e+01
+-1.3889897424227868e+00
+3.0069268876141311e+00
+-2.3832950574813275e+01
+-1.3700111467439497e+00
+2.9585268176800956e+00
+-2.3771528923751294e+01
+1.4011501591992454e+01
+3.3603987245213447e+00
+-2.6949502618610250e+01
+1.8620172892481133e+01
+3.7063642153355159e+00
+-2.9503129382631016e+01
+1.4284713309081226e+01
+3.2016075439032035e+00
+-2.5587349839059033e+01
+1.4186393236670266e+01
+3.3262131610397550e+00
+-2.6807220632280725e+01
+-1.3001224006605153e+01
+4.0105585795277738e+00
+-3.4500031475958870e+01
+1.5270088923226062e+01
+3.2429527407434744e+00
+-2.5017553116641416e+01
+-6.7194279371539016e+00
+4.5170812494959476e+00
+-3.8910875177148043e+01
+-3.3425877239435420e-01
+2.7352270678247850e+00
+-2.2224918243518545e+01
+-3.3425877239435420e-01
+2.7352270678247850e+00
+-2.2224918243518545e+01
+1.7342929739804383e+01
+3.4819862146258092e+00
+-2.8819160048422450e+01
+1.4812827771100299e+01
+2.7684201659502872e+00
+-2.2845233110278997e+01
+1.3288054945888211e+01
+3.4356693901244570e+00
+-2.8778521189437981e+01
+1.4519435242114035e+01
+3.0368244821858394e+00
+-2.4989819896619810e+01
+1.4298833866941647e+01
+3.2430745618455452e+00
+-2.7318838077320375e+01
+1.2839493641812654e+01
+3.4718445837171688e+00
+-3.0519969934734998e+01
+1.3657581162738646e+01
+3.2811410555382774e+00
+-2.8175348700154974e+01
+1.8393906453809553e+01
+3.5026869448198132e+00
+-2.9464967552033276e+01
+1.5136562111331346e+01
+2.8325904489725708e+00
+-2.3822681978793288e+01
+1.4805815246870083e+01
+2.8401469486815536e+00
+-2.3694097068576742e+01
+1.3510687529274721e+01
+3.2232824210742432e+00
+-2.8057215559238728e+01
+1.3510687529274721e+01
+3.2232824210742432e+00
+-2.8057215559238728e+01
+1.3509305855251375e+01
+3.2471080773244245e+00
+-2.7853155388808851e+01
+1.4031002647213180e+01
+2.9379579190906733e+00
+-2.5421971590548843e+01
+1.3477243235594507e+01
+3.2688920496926559e+00
+-2.8370040191980948e+01
+3.6590951812135257e+00
+2.5515802243774388e+00
+-2.1908594273251243e+01
+1.3963980285653363e+01
+3.0824496414389135e+00
+-2.7173944064974968e+01
+1.5263668857866497e+01
+2.9221260867715704e+00
+-2.4681981443774550e+01
+1.4509648584357818e+01
+2.8418871269452195e+00
+-2.4755410430609903e+01
+-2.0160775792026353e+00
+2.9567616210225722e+00
+-2.6111878425891103e+01
+1.4350777717363911e+01
+3.0784117427749633e+00
+-2.7020002587172439e+01
+1.5503870550095893e+01
+2.6878918837897081e+00
+-2.3224762499187360e+01
+1.4064856273968028e+01
+2.8598980293537557e+00
+-2.6013422128989838e+01
+1.3558063227650779e+01
+3.1172140530671104e+00
+-2.8391796050670241e+01
+1.4690565754329199e+01
+2.7889335934468744e+00
+-2.4803228174303211e+01
+1.4246921529084775e+01
+2.8344599484766220e+00
+-2.5609086845437773e+01
+1.4528105888713220e+01
+2.7988100379022067e+00
+-2.4839941037999072e+01
+1.4528105888713220e+01
+2.7988100379022067e+00
+-2.4839941037999072e+01
+1.5082914026955427e+01
+2.6587082745779571e+00
+-2.3414872906591249e+01
+-7.6222291501374553e+00
+3.9890890944924164e+00
+-3.7511709251125609e+01
+1.4006860883752488e+01
+2.8451583733745780e+00
+-2.6147102146260778e+01
+1.8158279271593234e+01
+3.2322342057253461e+00
+-2.9548389577410784e+01
+-2.8131902766675760e+00
+2.9610062854043950e+00
+-2.7268721655083986e+01
+-2.8138555014256403e+00
+2.9577307430157322e+00
+-2.7244029225598659e+01
+1.3596110005630589e+01
+3.0260902045770712e+00
+-2.7860794978630025e+01
+1.5601356373792763e+01
+2.8939976323371424e+00
+-2.6623604072213020e+01
+1.5601356373792763e+01
+2.8939976323371424e+00
+-2.6623604072213020e+01
+1.3527488503470185e+01
+2.9356342157920534e+00
+-2.8114596551406045e+01
+1.3682989861793224e+01
+3.0324827491499837e+00
+-2.8731046733349736e+01
+1.4714932348891622e+01
+2.9473934143345684e+00
+-2.6580769763029899e+01
+1.4858644045657545e+01
+2.6458687140252386e+00
+-2.4008179937378863e+01
+1.4873944849597807e+01
+2.7844940701554499e+00
+-2.5631603688531516e+01
+1.4169305164681170e+01
+2.7405113174409115e+00
+-2.6013260118309692e+01
+-8.3435734860885571e+00
+3.7374693881302430e+00
+-3.7440001994674674e+01
+1.3851430334188275e-01
+2.2981064378501674e+00
+-2.1554700066807872e+01
+1.3851430334188275e-01
+2.2981064378501674e+00
+-2.1554700066807872e+01
+1.3368581106291431e+01
+2.9299335175396783e+00
+-2.8600305335650372e+01
+-2.8693630717588476e+00
+2.7751111618979443e+00
+-2.7008217172944743e+01
+1.4943946674232890e+01
+2.4792650636570879e+00
+-2.3418904521580746e+01
+1.3787355167596605e+01
+2.8477669901390250e+00
+-2.8644047390432785e+01
+1.9425578310465603e+01
+2.9725946985162528e+00
+-2.8941910728666716e+01
+-1.6127178234679740e+00
+2.4632753502377853e+00
+-2.3506713824625908e+01
+1.4341163852110892e+01
+2.5952396102542088e+00
+-2.5657845030386493e+01
+1.6325770012350219e+01
+2.9207094539308742e+00
+-2.9638159095021770e+01
+1.4391032308116660e+01
+2.4692313094960938e+00
+-2.5020344882042291e+01
+1.8684211842361012e+01
+2.9104473348382047e+00
+-2.9222641401151659e+01
+1.2132708899853075e+01
+3.4349467286458126e+00
+-3.7198295123895313e+01
+1.4216713092581990e+01
+2.4544357096475307e+00
+-2.5537894700914112e+01
+1.3486505485220530e+01
+2.7289706415407364e+00
+-2.8375677253225774e+01
+1.5554237739471780e+01
+2.6218187868494485e+00
+-2.6874324918450611e+01
+1.4956811590737615e+01
+2.4183772703709252e+00
+-2.4968344236468859e+01
+1.5807443836060111e+01
+2.5143501265605122e+00
+-2.4283325709040007e+01
+1.3252981565651066e+01
+3.1162758607226260e+00
+-3.3181686435418115e+01
+1.4696979139280957e+01
+2.8117597478301022e+00
+-3.0283687177809686e+01
+1.3669078244962922e+01
+2.6005376424890421e+00
+-2.8199885238108504e+01
+-3.5438307108307754e-01
+2.2135412284090386e+00
+-2.1817944274277977e+01
+-3.1141628978974373e-01
+2.1169701057813519e+00
+-2.1687298466841288e+01
+-1.0402412876848366e+00
+2.2139636659425128e+00
+-2.2413491959044318e+01
+1.3270027357092829e+01
+2.6816812776069034e+00
+-2.9912143160770633e+01
+1.4657507458180739e+01
+2.4896914716170175e+00
+-2.6351812628055736e+01
+1.4685679614904110e+01
+2.5040248053961891e+00
+-2.6426043680538122e+01
+1.6485675748504789e+01
+2.7058816730910520e+00
+-2.9687576092289554e+01
+5.0301483133206726e-01
+2.0356175447982920e+00
+-2.1321283126109378e+01
+1.3908292815827421e+01
+2.4781588702253856e+00
+-2.7692177375580673e+01
+1.3605909905477031e+01
+3.0071596591291296e+00
+-3.4218507405048811e+01
+-1.2176070466617151e+01
+2.8697066256812609e+00
+-3.3397927025595422e+01
+1.8675478516911664e-01
+2.1244213730898815e+00
+-2.1553836574841188e+01
+1.4608762102584105e+01
+2.8869899809651067e+00
+-3.2571778725384164e+01
+1.4604349802187434e+01
+2.2984276942261430e+00
+-2.5655152140231703e+01
+3.1401200753833964e+00
+1.9579295263738317e+00
+-2.1148134325753592e+01
+1.3885510831865661e+01
+2.4286462504154254e+00
+-2.7648785206193427e+01
+1.5425869250552740e+01
+2.3163256505168088e+00
+-2.4778278061061869e+01
+-2.9289975539200084e+00
+2.3040306228184466e+00
+-2.6228027630500975e+01
+4.3067734285509573e-01
+1.9626538926353692e+00
+-2.1077748470047975e+01
+4.9333370679455940e-01
+2.0138645796188324e+00
+-2.1207881282322784e+01
+1.4192432684718820e+01
+2.2486833205479657e+00
+-2.6536563265077888e+01
+1.6565840780393078e+01
+2.5556341240422302e+00
+-2.9505886122406153e+01
+1.4694460584359613e+01
+2.3286768691190236e+00
+-2.6307249674295623e+01
+3.9548361636598578e-01
+1.9771837516628690e+00
+-2.1094121461331810e+01
+1.4353373718612600e+01
+2.2232691950133043e+00
+-2.5847360101817110e+01
+1.4353373718612600e+01
+2.2232691950133043e+00
+-2.5847360101817110e+01
+1.5415464583519407e+01
+2.3405081227219262e+00
+-2.7103774057544701e+01
+1.5081402543687927e+00
+1.8433377470453145e+00
+-2.0829304047917816e+01
+-1.3871155220822815e+00
+1.9674826871362208e+00
+-2.2600445241184158e+01
+2.0673676382884856e-01
+2.0067888792918001e+00
+-2.1826891727777941e+01
+1.4906152503626279e+01
+2.1111647519705623e+00
+-2.4364864033193488e+01
+-2.3133875489961420e+00
+2.1933233569965611e+00
+-2.5299279180897688e+01
+1.3606602126771598e+01
+2.4380289302513041e+00
+-2.9549676403389068e+01
+1.7640709105581156e+01
+2.4806719540799107e+00
+-2.9751381146168612e+01
+1.2267786657089369e-01
+1.8259338490718746e+00
+-2.1182292691871506e+01
+1.4436808273549993e+01
+2.0919427776185247e+00
+-2.5419784553697522e+01
+1.4374825822365937e+01
+2.0801074979780827e+00
+-2.5350450142229551e+01
+1.2643960026059217e+01
+2.5974385204716675e+00
+-3.3256504395797421e+01
+1.4974394786212425e+01
+2.1345903955285666e+00
+-2.5833995702111888e+01
+3.0170055783887757e+00
+1.7583635512641353e+00
+-2.1055770923624333e+01
+-1.0360802429960923e+01
+2.6137444362391755e+00
+-3.4407442409685871e+01
+-1.0360802429960923e+01
+2.6137444362391755e+00
+-3.4407442409685871e+01
+1.5233991310320867e+01
+1.9740143891791930e+00
+-2.3976620412843033e+01
+-6.9077678756157690e+00
+2.7398924408697867e+00
+-3.5944035970404705e+01
+1.3294918545371264e+01
+2.2685221977648178e+00
+-3.0302755656842379e+01
+1.4209458286925443e+01
+2.1153819810322876e+00
+-2.7093367123328999e+01
+1.4773588398844918e+01
+2.0402858162106532e+00
+-2.5616981275713467e+01
+1.4554497107714932e+01
+1.9852886355085348e+00
+-2.5374361707923004e+01
+1.5524408315249516e+01
+2.1160232920396855e+00
+-2.5319109199483240e+01
+1.3100762466681475e+01
+2.6315130787749008e+00
+-3.4913090302128481e+01
+1.6474871074343882e+00
+1.6639268065538357e+00
+-2.0615289879510296e+01
+1.5134680242330441e+01
+3.0575026519644819e+00
+-4.0338472827380578e+01
+1.4518872840714046e+01
+2.1834380560643663e+00
+-2.8622902296053045e+01
+-7.8389036636494360e+00
+2.5414339685073992e+00
+-3.5187533601095808e+01
+1.4115406256177463e+01
+2.0704620259899760e+00
+-2.7705939993076463e+01
+-7.0690602187010585e+00
+2.5603976258999563e+00
+-3.5357382602893544e+01
+-7.0690602187010585e+00
+2.5603976258999563e+00
+-3.5357382602893544e+01
+1.6012645754821769e+01
+2.0093286270199364e+00
+-2.4068938884172656e+01
+1.4236179516230862e+01
+1.9768835656402017e+00
+-2.7103585082398766e+01
+1.6095150632127343e+01
+1.9957607594285995e+00
+-2.3993201836090353e+01
+1.4625487836707733e+00
+1.5980470788152989e+00
+-2.0627762691418713e+01
+1.4035411276540406e+01
+2.0254797489209762e+00
+-2.8138157638906549e+01
+2.8634276565321448e+00
+1.5930998878841109e+00
+-2.0820002576691365e+01
+1.4134318771961389e+01
+1.9307543964008891e+00
+-2.7051607521844794e+01
+1.5907741657093606e+01
+1.9563950829361314e+00
+-2.4354224810865475e+01
+-1.2716750352058682e+01
+2.4170847243059619e+00
+-3.5368791528576921e+01
+1.0987097875496410e+00
+1.5525517461427079e+00
+-2.0664770103737478e+01
+1.3920079170448282e+01
+1.8472600993993462e+00
+-2.7547328246614402e+01
+1.3564130890558403e+01
+2.4343757835520474e+00
+-3.5051833296904903e+01
+1.3676985984843931e+01
+2.2688842884375076e+00
+-3.3950640694114803e+01
+1.7173863983213771e+01
+2.0078099475501689e+00
+-2.9111999588991697e+01
+1.4604816838352821e+01
+1.7033247226539561e+00
+-2.4910395688567068e+01
+1.4302110396233413e+01
+1.8676317074624305e+00
+-2.7506489310522142e+01
+1.5833922213637829e+01
+2.0626499170669219e+00
+-3.0372028102809882e+01
+1.4803634214799160e+01
+2.7656888332244587e+00
+-4.1211653880028756e+01
+-3.3148918918795558e+00
+1.7616281386530765e+00
+-2.5545253265665629e+01
+1.7258320420688847e+01
+1.9517409063464732e+00
+-2.9114774638162313e+01
+1.4006919196381380e+01
+1.8401914049895323e+00
+-2.8325215448898348e+01
+1.4194499973131631e+01
+1.9099460920087272e+00
+-2.8631174668127041e+01
+1.3854472924458550e+01
+1.9172520854448241e+00
+-2.8425476875913954e+01
+1.4551037237574368e+01
+1.8034823587813864e+00
+-2.7001874138314108e+01
+7.5913217212129680e-01
+1.4407998212913178e+00
+-2.0724426443710307e+01
+1.4287527022850277e+01
+1.7988788739768675e+00
+-2.7962239053424369e+01
+1.4194288665882588e+01
+1.7409724823158943e+00
+-2.7249081162578275e+01
+1.4998387419154554e+01
+1.8887217066363495e+00
+-2.8567611591121707e+01
+1.4163726673264890e+01
+1.7071542261095911e+00
+-2.7117244481769124e+01
+-6.8440783731239474e+00
+2.2108043768339054e+00
+-3.5730484077650935e+01
+1.4585234139595773e+01
+1.5512545692781310e+00
+-2.4517752918625028e+01
+1.4498134976879518e+01
+1.7405901904294736e+00
+-2.7136132816824762e+01
+1.4884862170054769e+01
+1.5857462264742979e+00
+-2.4295307092751795e+01
+1.4884862170054769e+01
+1.5857462264742979e+00
+-2.4295307092751795e+01
+1.4882551493136841e+01
+1.5416596849798252e+00
+-2.4866181198509608e+01
+1.4473980287700000e+01
+1.6154976926340618e+00
+-2.6744638046954208e+01
+1.7980249553319741e+01
+1.7856763126547737e+00
+-2.9553441922314938e+01
+1.4767523730750273e+01
+1.7057023140429255e+00
+-2.7937871019717171e+01
+1.4637046810795923e+01
+1.6290012682492376e+00
+-2.7676069376343364e+01
+1.4290979542566465e+01
+1.6342467594222831e+00
+-2.8196478259044508e+01
+1.4082784967665855e+01
+1.5749175615409547e+00
+-2.7882655963491406e+01
+1.4685847937422126e+01
+1.5408569387304687e+00
+-2.6847032961924839e+01
+-1.5879547667972196e+00
+1.3880046892977356e+00
+-2.2601531686898145e+01
+4.8003538451815175e-01
+1.2948135019363212e+00
+-2.0737327048038125e+01
+1.4511853942997030e+01
+1.4871096376981832e+00
+-2.6648190630729925e+01
+1.4343579490154813e+01
+1.4630588391650938e+00
+-2.6357280090003631e+01
+1.7970322652134669e+01
+1.7234268780217072e+00
+-2.9550150556469806e+01
+1.5931611652308625e+01
+2.3525128195983380e+00
+-4.1910960252725019e+01
+-1.1887436186673707e+01
+1.7513798788675128e+00
+-3.2456860842003898e+01
+-1.2795580361805875e+01
+1.9126673234281502e+00
+-3.5295697786605317e+01
+8.2112097697448572e-01
+1.2394300633325230e+00
+-2.0586376721740017e+01
+8.1829493829720135e-01
+1.2570477889129406e+00
+-2.0612654590182018e+01
+1.5139747457806260e+01
+2.2920120677851199e+00
+-4.1244661791059436e+01
+1.4276863816421653e+01
+1.4888118527119290e+00
+-2.7006784731481623e+01
+1.4251339456688319e+01
+1.4712056422182949e+00
+-2.6950348938682914e+01
+-1.7762362009539714e+00
+1.3425143878133032e+00
+-2.2939891896281917e+01
+1.2908568337293485e+01
+1.7057845382530126e+00
+-3.2920211000089495e+01
+1.4009461234487841e+01
+1.5250425881571952e+00
+-2.8489268105973313e+01
+1.4473416474948911e+01
+1.4086414497185578e+00
+-2.6348185981068628e+01
+-1.1899624504569972e+00
+1.2567079021576926e+00
+-2.2001141621642844e+01
+1.3961391939888086e+01
+1.4630485581202086e+00
+-2.8648410102322497e+01
+1.2883653566433100e+00
+1.1769877144308858e+00
+-2.0476908986138358e+01
+1.3991319740554664e+01
+1.7499701015525662e+00
+-3.2728792903490216e+01
+1.1773938958838541e+00
+1.1684309171786100e+00
+-2.0481868682125572e+01
+1.8144403450751170e+01
+1.5745957137029245e+00
+-2.9487389294275921e+01
+1.8144403450751170e+01
+1.5745957137029245e+00
+-2.9487389294275921e+01
+1.2834668013536875e+01
+1.6339030160054426e+00
+-3.3517426947934268e+01
+1.4004021903913168e+01
+1.4408363817243168e+00
+-2.8845988218826310e+01
+1.4583418523661338e+01
+1.2973608406758441e+00
+-2.5558051021422134e+01
+1.5252020714581814e+01
+1.2402814160373543e+00
+-2.4767369753605777e+01
+1.4757426769324484e+01
+1.3517698059959715e+00
+-2.6427515936724191e+01
+1.5579455160243649e+01
+1.2693687093323602e+00
+-2.3506327117426508e+01
+1.4054095292224206e+01
+1.3674774849870033e+00
+-2.8068365482744323e+01
+-4.2743264647330792e-01
+1.1633104392409592e+00
+-2.1288546415989181e+01
+1.4551876539128971e+01
+1.4214873245454318e+00
+-2.7462453428615564e+01
+1.4323404142182470e+01
+1.3747520030930407e+00
+-2.7079528899526149e+01
+1.5081454944455141e+01
+1.4349706005863869e+00
+-2.7962907632333071e+01
+1.3920969859557648e+00
+1.1543301819410914e+00
+-2.0557798526024015e+01
+1.3893290511862098e+01
+1.3473617535040900e+00
+-2.8766590553301654e+01
+1.4732426679418527e+01
+1.3412041211677046e+00
+-2.6145150516544287e+01
+1.5168334758991119e+01
+1.4178801634100870e+00
+-2.6347096815929948e+01
+1.4684371084981915e+01
+1.2613569277720029e+00
+-2.5662580457125962e+01
+1.4481714988071028e+01
+1.3172062101605582e+00
+-2.6614177339826622e+01
+1.4032242367781027e+01
+1.4009829344790647e+00
+-2.8929986227243777e+01
+1.4021988160953052e+01
+1.2783710137576527e+00
+-2.7904386440550045e+01
+1.4479537990637724e+01
+1.1834240078427030e+00
+-2.5685382266063215e+01
+-1.9014285548346830e+00
+1.1646829676227117e+00
+-2.2961962428449027e+01
+1.3825149737589779e+01
+1.7755189374853493e+00
+-3.6886041016983491e+01
+-2.0427464248947808e-01
+1.0909983540096211e+00
+-2.1030491672693579e+01
+2.3232910225834340e+00
+1.1693466723060477e+00
+-2.1596145734262929e+01
+2.3232910225834340e+00
+1.1693466723060477e+00
+-2.1596145734262929e+01
+1.2862221533827180e+01
+1.4527841244743107e+00
+-3.3621402294338012e+01
+-9.6065352306382898e+00
+1.4707762494542005e+00
+-3.3246528253841667e+01
+-9.6065352306382898e+00
+1.4707762494542005e+00
+-3.3246528253841667e+01
+1.6817555765499293e+01
+1.3781659157200852e+00
+-3.0293846483799012e+01
+1.4546793707574908e+01
+1.1845776072719001e+00
+-2.6124028172273963e+01
+1.6592734472545118e+01
+1.3377026815885396e+00
+-2.9805448349393895e+01
+1.4378871232734175e+01
+1.1859821465912164e+00
+-2.7279415644409845e+01
+-8.4328358208575072e+00
+1.4430535058283303e+00
+-3.3565305388998837e+01
+-2.4266774014853625e+00
+1.1253057578633352e+00
+-2.3754390043912490e+01
+-1.3986866567467706e+00
+1.0842486234974729e+00
+-2.2199874341776134e+01
+1.5126365737250300e+01
+1.2876213906104750e+00
+-2.8603239599041792e+01
+1.5093296779377834e+01
+1.2765663060653030e+00
+-2.8655094455244718e+01
+1.5771176390106216e+01
+1.2719951159429945e+00
+-2.5029963037153475e+01
+7.6888861170260570e-01
+9.9043204289722320e-01
+-2.0512271811252166e+01
+1.4499351861226463e+01
+1.2856881910300948e+00
+-2.9264629816895997e+01
+1.0511790958941489e+00
+9.3776044960298743e-01
+-2.0451051594091947e+01
+1.4611878089903495e+01
+1.1661013724258249e+00
+-2.8040149189338798e+01
+1.4504156642026681e+01
+1.1526959926253051e+00
+-2.7486429387168339e+01
+1.5018483672979269e+01
+1.0228925920814651e+00
+-2.4506465471252163e+01
+1.3711169529231141e+01
+1.1650819023665202e+00
+-2.8839059018617270e+01
+-2.3121973335542036e+00
+1.0115574433666736e+00
+-2.3555374804149182e+01
+1.4624513406412065e+01
+1.0222698841475559e+00
+-2.6850936512586042e+01
+1.4961888801987186e+01
+1.0974201943988282e+00
+-2.6715255824742734e+01
+2.0245925732723888e+00
+8.9617739719420730e-01
+-2.0391616919065392e+01
+1.4874498314580539e+01
+1.0961543190276686e+00
+-2.6900836170679007e+01
+1.4244879555824323e+01
+9.5875040358410513e-01
+-2.7350234205105483e+01
+1.4244879555824323e+01
+9.5875040358410513e-01
+-2.7350234205105483e+01
+4.4103023151995829e-01
+8.6428594677683557e-01
+-2.0562817018223825e+01
+-1.3198829054725319e+01
+9.8680205595945447e-01
+-2.8422195460153361e+01
+-9.9260500146538377e-01
+8.9750463571095562e-01
+-2.1676146713308626e+01
+4.7405948166686471e+00
+8.8118563627262880e-01
+-2.1905321687358946e+01
+1.5373969894172282e+01
+8.8136243505674206e-01
+-2.3992537296536792e+01
+1.5192252597616845e+01
+9.2902582855463822e-01
+-2.3736113353203343e+01
+1.4254493293327206e+01
+9.7614617997932340e-01
+-2.8455937461783385e+01
+1.4231658811386763e+01
+1.0106220842460691e+00
+-2.8439981695356312e+01
+1.8565173933694727e+01
+1.1108036397278156e+00
+-2.9257798158582851e+01
+-8.1823856980951355e+00
+1.1803687770904849e+00
+-3.3414538392281592e+01
+-8.1823856980951355e+00
+1.1803687770904849e+00
+-3.3414538392281592e+01
+2.4688708477189540e+00
+8.3469572975324624e-01
+-2.0410048704309570e+01
+1.5457283051748544e+01
+1.0536948151922252e+00
+-2.8012971761000816e+01
+1.7642293134361346e+01
+1.0983968416217751e+00
+-2.9817362461380704e+01
+1.4980390996613641e+01
+1.0533241502297537e+00
+-2.7179481785296332e+01
+1.4973148385412030e+01
+9.9984202671489575e-01
+-2.6719718818959677e+01
+4.1428936386710619e-01
+8.1679572345208706e-01
+-2.0599407979601974e+01
+1.4168425246761787e+01
+9.6500436960764158e-01
+-2.9483463807098996e+01
+-8.1528844128091205e+00
+1.1202167753824706e+00
+-3.2937245128107755e+01
+-9.2322361229880805e+00
+1.0925623077415001e+00
+-3.2725740036397056e+01
+-9.2322361229880805e+00
+1.0925623077415001e+00
+-3.2725740036397056e+01
+-8.5256267487466868e+00
+1.1206581413423220e+00
+-3.3732536542138398e+01
+-8.0521179382703316e+00
+1.1040511210118000e+00
+-3.3098467512716596e+01
+1.3938702007785048e+01
+1.2511032961801662e+00
+-3.5540585589059518e+01
+1.4528668093613664e+01
+8.9610662565321053e-01
+-2.7392454814189403e+01
+1.4701313785539693e+01
+8.4943346761738847e-01
+-2.6113918928576503e+01
+1.4246134135894433e+00
+7.4426649151788016e-01
+-2.0356708190944413e+01
+3.2639723180114828e+00
+7.5369484617544191e-01
+-2.0695814328134514e+01
+7.2197109512511695e+00
+8.2145784967143920e-01
+-2.4991770774607232e+01
+7.2197109512511695e+00
+8.2145784967143920e-01
+-2.4991770774607232e+01
+1.5254527647109475e+01
+9.6725516227215902e-01
+-3.2051294939690173e+01
+1.3606893788652911e+01
+1.0787464365545079e+00
+-3.3728721539982274e+01
+1.5342664520696395e+01
+8.1255187272893681e-01
+-2.3983479819097717e+01
+1.5336407603061529e+01
+8.1789965631782791e-01
+-2.4035933373346612e+01
+1.5053084369511856e+01
+7.2117317372834033e-01
+-2.3585546204612108e+01
+1.4455401564735178e+01
+7.5059015089304393e-01
+-2.7265098497724420e+01
+1.4361269761988000e+01
+7.8198831558435822e-01
+-2.7815385022393556e+01
+1.4413678679005633e+01
+8.3184929489884818e-01
+-2.8391256481249197e+01
+1.4584258145647357e+01
+7.2716181343240682e-01
+-2.6862048394206447e+01
+1.4542789046783144e+01
+6.6509218355152255e-01
+-2.6767408559382751e+01
+1.4996449299078833e+01
+7.6950743507730812e-01
+-2.6815453318102382e+01
+-9.0847833887537437e+00
+8.0764371968702076e-01
+-3.3434376112593974e+01
+1.5640739781725975e+01
+7.6896857381332107e-01
+-3.1066595572196391e+01
+1.5450673517395330e+01
+7.0862525369115470e-01
+-2.8339515307216494e+01
+1.4048509827018270e+01
+7.1062047276325091e-01
+-2.9509529781736560e+01
+1.5402531495560689e+01
+6.2592589730891568e-01
+-2.7826017888673878e+01
+1.4461789536794909e+01
+5.3345827961214909e-01
+-2.6748599244877333e+01
+1.4524497739340712e+01
+5.6492535789317011e-01
+-2.8189483691510780e+01
+1.4449845092029577e+01
+5.1816751797768013e-01
+-2.8023606963575830e+01
+1.4811073642315748e+01
+5.9563098781942636e-01
+-2.7467185683451763e+01
+1.4811073642315748e+01
+5.9563098781942636e-01
+-2.7467185683451763e+01
+2.3207066733808639e+00
+5.0217916936699136e-01
+-2.0358887066899729e+01
+2.8855399579224488e-02
+5.0168043500316872e-01
+-2.0692856909521122e+01
+4.5110062300247540e+00
+4.8237769158524585e-01
+-2.1533180696894984e+01
+1.4175966436131267e+01
+4.6789923866724437e-01
+-2.8999385728495305e+01
+1.8817253315809541e+01
+5.5491124656036850e-01
+-2.9238471889196759e+01
+7.2033142063138857e+00
+4.4975751166924366e-01
+-2.4199718757666009e+01
+-1.5814712782573392e+00
+4.5648738951826429e-01
+-2.2354666882159371e+01
+9.6879782208633580e-01
+4.3588950529078829e-01
+-2.0348439949847105e+01
+9.7393578597805774e-01
+4.5193185963308768e-01
+-2.0430654999584259e+01
+1.4196155976876222e+01
+4.1380115534500594e-01
+-2.9211965546165423e+01
+9.8544752484394094e-01
+4.6038020789257267e-01
+-2.0418282743203097e+01
+1.5405448595237084e+01
+4.6090399960448591e-01
+-2.8297662471997175e+01
+1.4527786952087284e+01
+2.9407215415168814e-01
+-2.6836173817017308e+01
+1.4527786952087284e+01
+2.9407215415168814e-01
+-2.6836173817017308e+01
+1.5499415456573677e+01
+3.9144070078250448e-01
+-2.3136857099952170e+01
+-9.4722685029364158e+00
+4.5859991704725911e-01
+-3.1753090209480757e+01
+2.5316279359046545e-01
+4.2398450749161271e-01
+-2.0675367550159638e+01
+1.4713160879649877e+01
+3.4186554363256716e-01
+-2.7984292872584781e+01
+-9.2392935385632899e+00
+3.1709953340971647e-01
+-3.1637898624250244e+01
+1.4734195702777967e+01
+1.9596749836847310e-01
+-2.6907097915177445e+01
+1.8999344505690843e-01
+2.4169414608483664e-01
+-2.0666765000648162e+01
+3.0249136228188639e-01
+2.4134644980658068e-01
+-2.0583019287423181e+01
+3.1020798989800848e+00
+2.3336390659486805e-01
+-2.0576556265689721e+01
+1.4733843413926808e+01
+4.4979420485257653e-02
+-2.7714738595613301e+01
+1.4285771147194883e+01
+1.4887555838058322e-01
+-2.8937733520415620e+01
+1.4520600037606565e+01
+9.3378621952728530e-02
+-2.7913099563355974e+01
+1.4481550760403403e+01
+1.1378163796276990e-01
+-2.7837771366075785e+01
+-2.3757725307214050e+00
+2.2540293506668446e-01
+-2.2646074820114514e+01
+1.4669818004715896e+01
+3.3171312578901123e-02
+-2.7213264084196343e+01
+1.4623166292120874e+01
+7.5321395665083099e-02
+-2.7332948256580252e+01
+1.5483399075935138e+01
+2.2498088123909621e-01
+-2.6450554809817881e+01
+-2.3506744581578651e+00
+2.0985057898925108e-01
+-2.2780572340604536e+01
+1.4483675860882537e+01
+6.3519336998591205e-02
+-2.8903097907820303e+01
+1.7673168772490033e+01
+1.4299229562842447e-01
+-2.9912551298083347e+01
+-8.8279156986540297e-01
+1.8115861764750801e-01
+-2.1428735428656964e+01
+2.9153586067184021e+00
+1.6915768605745299e-01
+-2.0548830298791263e+01
+1.4824183714014277e+01
+1.1984803755400121e-01
+-2.8158834351773358e+01
+1.5121253115028074e+01
+1.5701041438698107e-01
+-2.7487381082011492e+01
+1.4829540858449942e+01
+5.6247320039142901e-02
+-2.5632916184333880e+01
+1.4875554290064100e+01
+6.2913226248843990e-02
+-2.5561727796273757e+01
+1.5107808751782979e+01
+9.8932515820841074e-02
+-2.5592431779047267e+01
+1.4804112789140840e+01
+-8.8259632704261431e-02
+-2.7673484143924561e+01
+1.5085872636824631e+01
+2.3015703502869828e-02
+-3.2434949940560571e+01
+1.6033466313915035e+01
+1.9128534988825344e-01
+-2.4960450811973235e+01
+1.6033466313915035e+01
+1.9128534988825344e-01
+-2.4960450811973235e+01
+-2.3474641714316191e+00
+1.1889404008924524e-01
+-2.2401120340077625e+01
+3.1969861236852162e+00
+1.1851465644317095e-01
+-2.0585392192672632e+01
+4.0205138765999155e+00
+1.0722686083201864e-01
+-2.1366084665699706e+01
+1.4591547194225065e+01
+-8.0998281231912064e-02
+-2.7011242680870208e+01
+1.5553420617058018e+01
+1.3127952495393078e-01
+-2.6210664669577305e+01
+3.2324889000520676e+00
+8.6744472200909750e-02
+-2.0651107484480558e+01
+1.4880531262231361e+01
+-3.9369853489653113e-02
+-2.6440390601549705e+01
+1.4735157126645083e+01
+-6.4682613029277941e-02
+-2.7682609428214626e+01
+-2.3083948191495209e+00
+5.7842545042564662e-02
+-2.2306480597854151e+01
+1.4446547464595202e+01
+-9.1779382103906945e-02
+-2.8838070637875550e+01
+1.4316380772235666e+01
+-1.8026955690182381e-01
+-2.8849049890080067e+01
+1.6869359611952419e+01
+-1.0892883295064375e-01
+-2.9892857451420490e+01
+-3.8255377562709314e+00
+-1.1683708801329429e-02
+-2.3146468891283082e+01
+1.9399362135278448e+01
+-8.8311474494130279e-02
+-2.8997972316786189e+01
+4.2727523424415015e+00
+-2.0334499132369302e-02
+-2.1322106549369785e+01
+3.2461211848263405e+00
+-2.2982272887617287e-02
+-2.0646719604122488e+01
+1.4634234965078742e+01
+-2.4773698045835957e-01
+-2.8047680943815294e+01
+1.5608976684236142e+01
+-3.9447929902960567e-02
+-2.4697347334050434e+01
+1.9244233368092907e+01
+-1.1712672524567135e-01
+-2.9090053165237961e+01
+1.1095245546898631e+00
+-1.7185351521773223e-02
+-2.0331388551480977e+01
+3.2643553012562001e+00
+-5.2921013192914521e-02
+-2.0616659462945140e+01
+1.5246191814377244e+01
+-1.8469378624371449e-01
+-2.4400118217219219e+01
+3.2427044892538355e+00
+-6.5568387547982276e-02
+-2.0659404842303918e+01
+3.2427044892538355e+00
+-6.5568387547982276e-02
+-2.0659404842303918e+01
+-3.6089552465632804e+00
+-9.4572978679235031e-02
+-2.3253628956435229e+01
+2.5066998091934281e+00
+-9.9556999207211644e-02
+-2.0378030616965095e+01
+1.4626534555027568e+01
+-3.2758409283411921e-01
+-2.8356679567428667e+01
+-8.0838896733589412e+00
+-3.1956553205517080e-01
+-3.1934853329769535e+01
+1.5562040087844943e+01
+-3.1571044737947007e-01
+-2.4471506605600254e+01
+-4.9098016852777959e-01
+-1.0940855057909354e-01
+-2.1057805131296579e+01
+1.4044360862888565e+01
+-4.0592216008045201e-01
+-3.1563307401296246e+01
+1.4029978498719871e+01
+-4.0221796657818454e-01
+-3.1549684542081081e+01
+1.4867319683899366e+01
+-4.7606994491716947e-01
+-2.7468133423676900e+01
+1.1598559842395382e+00
+-1.5593276759899416e-01
+-2.0335220392265160e+01
+1.4607780590723523e+01
+-4.6455764396681015e-01
+-2.8994609856784098e+01
+-2.1441543282349409e+00
+-1.9405029220197831e-01
+-2.1985066501845420e+01
+-1.1261312106540018e+00
+-2.0025795743684649e-01
+-2.1673639461139459e+01
+5.7857824857977489e+00
+-2.3919957552047269e-01
+-2.2503075105608016e+01
+1.5728807958800669e+01
+-4.6743929080547747e-01
+-2.4723512680175382e+01
+1.6630628343450006e+01
+-3.0193755509813369e-01
+-2.6299646891448962e+01
+-3.8595528755267607e+00
+-2.5651270326066422e-01
+-2.3102611970170532e+01
+1.4537780429033637e+01
+-4.7931074017306768e-01
+-2.8914046800877195e+01
+1.4970080209491123e+01
+-4.6374640193188088e-01
+-2.9702892073476288e+01
+5.1992765067742557e+00
+-2.8854616265062139e-01
+-2.2246791440861564e+01
+-9.1990992929318338e+00
+-5.3440399701997432e-01
+-3.1601590759768481e+01
+-8.6081724042848418e+00
+-4.7313849446411882e-01
+-3.0808138681789181e+01
+1.5357212579431415e+01
+-4.6123800390337094e-01
+-2.5698892075479382e+01
+5.4288555427870469e+00
+-3.2623803540729190e-01
+-2.2153768768480127e+01
+2.0665131976277191e+00
+-2.7933986857825038e-01
+-2.0326291565508239e+01
+1.6376068408647342e+01
+-5.9423305249150493e-01
+-3.1108913947622273e+01
+1.9053197909158964e+01
+-5.4211928455723712e-01
+-2.9058806608009210e+01
+-3.5305730857899618e+00
+-3.4376684732683804e-01
+-2.2922526558316626e+01
+1.5214808220754518e+01
+-5.3974661920012224e-01
+-2.5404087725846111e+01
+-7.5182399466172301e-01
+-3.5934880903096905e-01
+-2.1304659426250385e+01
+-7.7440226883407881e-01
+-3.3210738142663193e-01
+-2.1355260188395132e+01
+1.4677276484676900e+01
+-7.2242856811324674e-01
+-2.7510427074047445e+01
+1.4627324680863881e+01
+-6.3054758502902664e-01
+-2.7549655091700327e+01
+-3.5508822396926782e+00
+-4.1091215994207242e-01
+-2.2981153163231586e+01
+1.4729788436900026e+01
+-6.9898610062784705e-01
+-2.8192641891678878e+01
+-8.6430223545644658e-01
+-3.8150805499141760e-01
+-2.1473288582763924e+01
+1.6329401757156198e+01
+-7.3871949645630253e-01
+-3.0622991585752366e+01
+1.4853810844484027e+01
+-7.5504850344644636e-01
+-2.7879081370167906e+01
+1.4864145357783382e+01
+-7.1174874887034156e-01
+-2.7964262352515977e+01
+1.4901569629731972e+01
+-7.3042984395154098e-01
+-2.8245981737583662e+01
+-5.9976550796904227e-01
+-4.6713344498919313e-01
+-2.1210162256778919e+01
+-6.8628157498480524e-01
+-5.2438879841841646e-01
+-2.1334404909631044e+01
+1.4654837436833565e+01
+-1.0013615419727577e+00
+-2.9204358764330074e+01
+4.3049895898474286e+00
+-5.0758732369747006e-01
+-2.1854707875542836e+01
+1.7581038874229090e+01
+-8.9328918547668079e-01
+-3.0093309530516255e+01
+2.5619938673620055e+00
+-5.3442743395800618e-01
+-2.0465961384844515e+01
+6.8123163359021026e+00
+-6.6849762225405385e-01
+-2.3043076982369826e+01
+-3.3078248978987070e+00
+-6.1379340541161975e-01
+-2.2348477758935246e+01
+1.4834605973791275e+01
+-9.5454484393698746e-01
+-2.8417566553243162e+01
+8.9133838023290091e-01
+-5.6477331992877156e-01
+-2.0425052346524620e+01
+-1.0019449730596813e+01
+-1.0206578703779241e+00
+-3.0991274540959964e+01
+1.4941165500682521e+01
+-1.0399998699196409e+00
+-2.8086026816902866e+01
+-3.5175809520551415e+00
+-7.0861520865916572e-01
+-2.3136299843830908e+01
+1.5487459739766809e+01
+-9.4338743426370097e-01
+-2.6673435799742634e+01
+1.5120193883180324e+01
+-1.1464429330650201e+00
+-2.7004329230157424e+01
+1.0299635231736375e-01
+-6.8703887157649446e-01
+-2.0794187334159517e+01
+7.0187404530751812e-02
+-6.5902315994393079e-01
+-2.0801028252388587e+01
+3.6236691619343078e+00
+-7.1316452855969148e-01
+-2.0734574123009970e+01
+1.5520330507893208e+01
+-1.2872381666413066e+00
+-3.2376494807819924e+01
+-1.9191812718519818e+00
+-7.3647519951315599e-01
+-2.1729410989261215e+01
+4.0460267606441841e-01
+-7.0881623058410237e-01
+-2.0734843622370200e+01
+-9.4446702727867891e+00
+-1.1655243754074349e+00
+-2.9442545402401791e+01
+-9.4446702727867891e+00
+-1.1655243754074349e+00
+-2.9442545402401791e+01
+-3.0515811518683247e+00
+-8.4180391412785016e-01
+-2.2290760995155548e+01
+1.4684836008481780e+01
+-1.4530272584224502e+00
+-2.9811523057886674e+01
+1.1372984071434966e+00
+-7.9096013704270141e-01
+-2.0468263220414212e+01
+2.3734691530360688e+00
+-7.8633378085955041e-01
+-2.0465947400610865e+01
+1.4988282651805791e+01
+-1.2471069128848087e+00
+-2.8893463583886337e+01
+2.0042226969868020e+00
+-8.3488690128489651e-01
+-2.0464322847807793e+01
+-1.5436762135168665e+00
+-8.6408544607266047e-01
+-2.1378019252227091e+01
+6.0724753301131278e+00
+-9.6868700371432404e-01
+-2.2615278430763890e+01
+-9.3173958267841661e-01
+-8.8657761193003382e-01
+-2.1096765636011089e+01
+-9.2984532265598407e-01
+-8.9093633685525653e-01
+-2.1095196310497290e+01
+1.8527608951665254e+01
+-1.3753502833577340e+00
+-2.9549210297687249e+01
+-1.4875042948005879e+00
+-9.0192802600003519e-01
+-2.1234165777797848e+01
+1.9308732192116571e+00
+-8.9248389289149155e-01
+-2.0471888387827672e+01
+1.5008088200907832e+01
+-1.5079603189999546e+00
+-3.0529205925897777e+01
+1.4612907686884792e+01
+-1.5222096974307997e+00
+-2.9639396369589448e+01
+-2.8192182908457850e+00
+-9.7102349106224350e-01
+-2.1905567671442217e+01
+-3.4190146858409300e+00
+-1.0230107558258845e+00
+-2.3178275876065261e+01
+6.0432458378974969e+00
+-1.0490267524646228e+00
+-2.2412206254349744e+01
+1.5007478428248820e+01
+-1.4673421082664704e+00
+-2.9036720236444129e+01
+6.8466241904861311e+00
+-1.0946195197847388e+00
+-2.2663120064618852e+01
+1.6045976318763991e+01
+-1.3733593740861745e+00
+-2.5311530894561169e+01
+-2.9395065791975079e+00
+-1.0805870875630046e+00
+-2.1944310932232906e+01
+4.5771815291284668e+00
+-1.0903774959029069e+00
+-2.1148097658794288e+01
+1.6555931122626748e+00
+-1.0415898414999525e+00
+-2.0478791339178230e+01
+-1.2480861010722530e+00
+-1.0781312075772838e+00
+-2.1141776706138586e+01
+-1.2463314887215058e+00
+-1.0807480905688196e+00
+-2.1147651614240186e+01
+3.2699426357333445e+00
+-1.0689666546020129e+00
+-2.0867850294962121e+01
+-3.2897214189734969e-01
+-1.0763137886360032e+00
+-2.0799162809035199e+01
+-1.0070802421403098e+00
+-1.0883307319849860e+00
+-2.0823678065501902e+01
+1.5105393157483579e+01
+-1.8168663066954067e+00
+-2.8755551343437073e+01
+1.5394844519806618e+01
+-1.6494132498938463e+00
+-2.8073365953540304e+01
+1.5293647458173997e+01
+-1.7408964629975252e+00
+-2.7907340248203408e+01
+2.3624631183578413e+00
+-1.1407304576715445e+00
+-2.0586525008386719e+01
+-1.2686447665077196e+00
+-1.1615435630945765e+00
+-2.1239726043674334e+01
+5.1911745163162291e+00
+-1.2362924216200377e+00
+-2.1778412633727886e+01
+1.8937720684697744e+01
+-1.7911416352648224e+00
+-2.9341619306405448e+01
+1.5201019979102503e+01
+-1.4878857770860185e+00
+-2.2846730697968145e+01
+6.0146406151746346e-01
+-1.1632201757179945e+00
+-2.0764647026543592e+01
+-2.5531972560012570e+00
+-1.2655024726819977e+00
+-2.1614284252777619e+01
+-7.5152129441689497e-01
+-1.2340772248143812e+00
+-2.0665978419968301e+01
+-7.5152129441689497e-01
+-1.2340772248143812e+00
+-2.0665978419968301e+01
+6.4001375781549852e+00
+-1.3867244119517381e+00
+-2.2157164972930591e+01
+-2.3859672765781275e+00
+-1.3287330738544594e+00
+-2.1611485078524961e+01
+-2.3346363900821210e+00
+-1.3347918519059014e+00
+-2.1566733879873187e+01
+3.0215314178394173e+00
+-1.3107741898384104e+00
+-2.0740369865486400e+01
+1.5433615064732152e+01
+-1.8674144518518885e+00
+-2.7644173462053782e+01
+-6.8508675160701085e+00
+-2.0668506647080758e+00
+-2.9652972333835013e+01
+1.5941060674357152e+01
+-1.7644610126944855e+00
+-2.5990136303086551e+01
+-8.9892019200523148e+00
+-1.9139091279081548e+00
+-2.8296281137832157e+01
+-2.9387016793797112e+00
+-1.3976432758807136e+00
+-2.1405091293873642e+01
+1.6905135267177741e+01
+-2.2261528120504130e+00
+-3.1048640200707236e+01
+6.3937163871096629e+00
+-1.5164266621928542e+00
+-2.2055109331453810e+01
+1.8393144377056907e+00
+-1.3863705154645543e+00
+-2.0567797039890941e+01
+1.5525328001421610e+01
+-1.8305269591637410e+00
+-2.3140274038132141e+01
+1.8649223611178353e+01
+-1.9968465662087465e+00
+-2.7913623554719823e+01
+1.5715351820112575e+01
+-1.9944496539542254e+00
+-2.7433681757565658e+01
+-1.7447504421993567e+00
+-1.4842031774623705e+00
+-2.1438705691582321e+01
+6.4073397737739968e-01
+-1.4182687134136858e+00
+-2.0482185662310918e+01
+1.5503614134927725e+01
+-2.1958853872541639e+00
+-2.7593406839968150e+01
+5.8344554567911215e+00
+-1.5969196370374275e+00
+-2.1557111610940883e+01
+-2.4620200285465295e+00
+-1.5650720340434128e+00
+-2.1183039798935532e+01
+-5.7365193184402030e-01
+-1.5312503339275270e+00
+-2.0628381963331130e+01
+-5.7338737195948108e-01
+-1.5295291507168536e+00
+-2.0630876730504490e+01
+1.4909003897856495e+01
+-2.3311595381008576e+00
+-2.8723157023941635e+01
+1.8716695360692100e+01
+-2.3404720945642854e+00
+-2.9613226961552535e+01
+1.5399437146971334e+01
+-2.2629029145551613e+00
+-2.8017513768322598e+01
+2.4042552092445777e+00
+-1.5520019286717235e+00
+-2.0356873339258623e+01
+-8.8565354605181834e-01
+-1.6248989879649220e+00
+-2.0979309188829944e+01
+1.5898321445137519e+01
+-2.1603356650711714e+00
+-2.5556314172568872e+01
+-2.1534464570400864e+00
+-1.6677500719304674e+00
+-2.1202464563776580e+01
+1.2964658962639177e+00
+-1.6026781646920860e+00
+-2.0233004769408286e+01
+1.5732444973019694e+01
+-2.2278377697570049e+00
+-2.5331432394709520e+01
+1.1053000536446842e+01
+-2.4923454231425852e+00
+-2.9017295168554920e+01
+-6.9225301197331728e+00
+-2.3920766241651439e+00
+-2.9086808591514391e+01
+-7.1004664452043897e+00
+-2.3823134090476765e+00
+-2.8590381238276549e+01
+-2.2243443316329055e+00
+-1.7148603034640824e+00
+-2.1390363962557625e+01
+1.7285753667473262e+01
+-2.6990438676038746e+00
+-3.0672874016969917e+01
+1.6093024125860779e+01
+-2.5219356415662189e+00
+-2.8630360620468561e+01
+-2.3934599943665815e+00
+-1.8567958827529125e+00
+-2.1526975471472127e+01
+-2.3541331162423944e+00
+-1.8243119153000762e+00
+-2.1437975082656905e+01
+8.7355615615976018e-02
+-1.7588061668615955e+00
+-2.0460113115027866e+01
+1.5286200059879612e+01
+-2.7354039882910524e+00
+-2.8382684909052269e+01
+1.8245041001056599e+01
+-2.7565119773904718e+00
+-3.0052802956725674e+01
+1.5777504996328952e+01
+-2.2563848769309018e+00
+-2.3947805923843468e+01
+1.6207751215508456e+01
+-2.3866153032477930e+00
+-2.4430608397478540e+01
+1.9224337331098777e+01
+-2.7035727573663579e+00
+-2.9357563683222356e+01
+7.0654312504599082e-01
+-1.7818875205161704e+00
+-2.0193935655566193e+01
+1.6230213423073515e+01
+-2.5538220848360158e+00
+-2.5261162524590041e+01
+-1.7806689014886656e+00
+-1.8564287994305626e+00
+-2.0927421077462458e+01
+1.0972479244261370e-01
+-1.8443278580402647e+00
+-2.0502193986758666e+01
+1.5843249992611586e+01
+-2.6081426741140779e+00
+-2.5969359646843348e+01
+1.7484914013420259e+01
+-2.9402020707205812e+00
+-3.0259062116115562e+01
+1.5496065127843710e+01
+-2.8705549144574438e+00
+-2.8410672292421072e+01
+-4.3121273506794552e-02
+-1.9203179135766701e+00
+-2.0588423759826803e+01
+1.5560012421725999e+01
+-2.8196089901683798e+00
+-2.8500097199789071e+01
+2.6923621285328156e+00
+-1.9260558845298641e+00
+-2.0269416686474777e+01
+2.7284403934554073e+00
+-1.9591192970670681e+00
+-2.0286948325890656e+01
+1.9144068893806431e+01
+-3.0194023026052257e+00
+-2.9685851808767495e+01
+1.9144068893806431e+01
+-3.0194023026052257e+00
+-2.9685851808767495e+01
+1.6200187051917155e+01
+-2.7346660191539618e+00
+-2.4801905642695782e+01
+1.5514357437230894e+01
+-2.9952424358945251e+00
+-2.8330833578366082e+01
+4.7172865112211184e+00
+-2.1345250195601015e+00
+-2.0853938643124472e+01
+1.6228838079771023e+01
+-2.7928985543733411e+00
+-2.4544058764655283e+01
+5.3767365418214412e+00
+-2.1659781811915217e+00
+-2.0981337288435938e+01
+1.5949605379993004e+01
+-2.7691227289527807e+00
+-2.4483773208642511e+01
+-3.3559895021669885e+00
+-2.4711127734029184e+00
+-2.3894565376778626e+01
+1.4528638668741054e+00
+-2.1046400405808345e+00
+-2.0311545287603092e+01
+1.5671033056447333e+01
+-2.9944680125278440e+00
+-2.6456821515858728e+01
+6.4166416939807158e-01
+-2.1433171228914105e+00
+-2.0511684991289773e+01
+1.5883524941256612e+01
+-2.9289850982401933e+00
+-2.6564141876315603e+01
+1.6313592518448683e+01
+-2.9423208607853213e+00
+-2.4791002965318899e+01
+1.6279033633442207e+01
+-2.9736715269762457e+00
+-2.6505634635073363e+01
+5.3184022109919944e+00
+-2.3055471297977079e+00
+-2.0800511676803975e+01
+1.5808919398984235e+01
+-3.1072462669437524e+00
+-2.5435889581926681e+01
+1.6304768204202535e+01
+-3.0242680650181804e+00
+-2.4844726173428331e+01
+1.6019088670272925e+01
+-2.9765001966770095e+00
+-2.4427920712500956e+01
+4.9657657624336196e+00
+-2.3463794122141470e+00
+-2.0574208382751362e+01
+1.7408984649953074e+00
+-2.3232563655874587e+00
+-2.0349483484758323e+01
+1.6165796201239040e+01
+-3.1078566412302693e+00
+-2.6357885058886083e+01
+-3.5831852324848140e-01
+-2.3494718883129542e+00
+-2.0285563366605675e+01
+3.6155460841677063e+00
+-2.3972102288885697e+00
+-2.0376382931533122e+01
+1.6164894167248491e+01
+-3.2718933515769502e+00
+-2.5243627602291955e+01
+4.7619373942882977e+00
+-2.4390392276071453e+00
+-2.0536269331507505e+01
+3.9304253871278476e+00
+-2.4313488648781312e+00
+-2.0436493770203640e+01
+-3.4600660078382894e-01
+-2.4137609567905129e+00
+-2.0289153980737815e+01
+1.6504634171856562e+01
+-3.5629226642165790e+00
+-2.8435022122025629e+01
+4.6595360948313544e+00
+-2.5512686475831940e+00
+-2.0594706610115498e+01
+1.6516670688218191e+01
+-3.6172406144110809e+00
+-2.8407804569549409e+01
+1.8815342769422656e+01
+-3.8352624947001996e+00
+-2.9878928066627143e+01
+-2.7772801146697277e+00
+-2.7936279135947255e+00
+-2.3046369244004797e+01
+-2.7403600854412185e+00
+-2.8327909990709426e+00
+-2.2945834579267316e+01
+-2.5860138690811885e-01
+-2.4792888999151996e+00
+-2.0159399771640004e+01
+7.6623075754208769e-01
+-2.4908436276999995e+00
+-2.0163747044038178e+01
+4.7709673572568931e+00
+-2.5846212125762107e+00
+-2.0691575600521254e+01
+-3.5862522621186405e-01
+-2.4986468979558834e+00
+-2.0177389824155476e+01
+-7.2744435837892496e+00
+-3.3760264692151360e+00
+-2.6918503444856473e+01
+-8.6966169238365687e+00
+-3.5213325663417998e+00
+-2.7513182938347899e+01
+-2.5182933327348822e-01
+-2.5249959648913447e+00
+-2.0145231102214716e+01
+1.6172716875636869e+01
+-3.5819020544214055e+00
+-2.7358450969225032e+01
+1.6129963053931451e+01
+-3.4203259766093841e+00
+-2.4587924972916184e+01
+1.5859627259363135e+01
+-3.6170448658189089e+00
+-2.7018903782021937e+01
+-7.0390995264010714e-01
+-2.6134774899245659e+00
+-2.0228598417824941e+01
+4.0218389497791209e+00
+-2.6412992729806564e+00
+-2.0219240441745939e+01
+1.6008779846761822e+01
+-3.6846669244060406e+00
+-2.7398109173856952e+01
+1.6025227476957877e+01
+-3.6057043577086705e+00
+-2.5182039433059636e+01
+2.8103446679993085e+00
+-2.6418502027662778e+00
+-2.0082990534840249e+01
+-8.4707746752382518e-01
+-2.6547151821493795e+00
+-2.0362671550335300e+01
+3.7657090578283641e+00
+-2.6032597705523162e+00
+-2.0177364342050065e+01
+-7.3328450602201203e+00
+-3.5419099226851696e+00
+-2.6317017631537919e+01
+-7.3328450602201203e+00
+-3.5419099226851696e+00
+-2.6317017631537919e+01
+1.6106162928633616e+01
+-3.5699614973358602e+00
+-2.4882838314558150e+01
+8.7247692449786984e-01
+-2.6820678604327517e+00
+-1.9895162023200768e+01
+8.7247692449786984e-01
+-2.6820678604327517e+00
+-1.9895162023200768e+01
+-6.9051051993764567e-01
+-2.7588683913671894e+00
+-2.0405946088464919e+01
+1.6177300156483867e+01
+-3.9116787130665371e+00
+-2.7605017584479832e+01
+2.4862933160686778e+00
+-2.6776060651438152e+00
+-2.0202819774896653e+01
+1.2700578334284531e+00
+-2.7946465472256916e+00
+-1.9857117687422740e+01
+-7.4031705640303782e+00
+-3.9103962073038878e+00
+-2.7230415355779641e+01
+1.7285706441104753e+00
+-2.8171755841555255e+00
+-1.9750243405021763e+01
+3.0133518518737192e+00
+-2.8469333892047555e+00
+-1.9852749384696942e+01
+2.2987330655761640e+00
+-2.8683349947889041e+00
+-2.0011245778405115e+01
+1.5833974760379474e+00
+-2.9094297913107838e+00
+-1.9704271268677189e+01
+2.2705453019466408e+00
+-2.9108106964877800e+00
+-1.9735573217335947e+01
+-2.8415711603256808e+00
+-3.4783176507785729e+00
+-2.3560390273931599e+01
+4.1813738262624636e+00
+-3.1522837971730286e+00
+-2.0867364071883323e+01
+2.3981018522702531e+00
+-2.9955452234225288e+00
+-1.9777090222274587e+01
+-5.4861037294604298e-01
+-3.1311136661725487e+00
+-2.0770681820268926e+01
+4.0525349357167375e+00
+-3.1472963053118752e+00
+-2.0671169891221968e+01
+5.0335652251996441e+00
+-3.3151377756522269e+00
+-2.1608046425168421e+01
+1.6652306787796320e+00
+-3.0864199427587020e+00
+-1.9790437777809878e+01
+-8.2290677456123884e-01
+-3.2212923101920494e+00
+-2.1383574420584864e+01
+2.2811334417449221e+00
+-3.1187299153174100e+00
+-1.9892175721316153e+01
+-6.3402118333824337e-02
+-3.2599042971072469e+00
+-2.0591894067361178e+01
+-2.5179205912709812e+00
+-3.7749001448161668e+00
+-2.3624647668627304e+01
+1.8102911134396709e+00
+-3.3087557895364199e+00
+-2.0067047470203079e+01
+3.0247444312753755e+00
+-3.4071670199190187e+00
+-2.0128960020179868e+01
+1.9377446126484561e+00
+-3.5053703592266166e+00
+-2.0343947206338406e+01
+1.1236573067929990e+01
+-4.7228264741127681e+00
+-2.6169951223351696e+01
+1.2249098740239516e+01
+-4.7871995988878560e+00
+-2.6966472740237656e+01
+1.1322559746447670e+01
+-4.7394257602865393e+00
+-2.6151488150638372e+01
+1.0818925621212699e+01
+-4.8133879257572696e+00
+-2.6011016011261187e+01
+2.9576433526366044e+00
+-3.6775503706077561e+00
+-2.0510357197128972e+01
+-2.3909723172848335e-01
+-3.8702461307020477e+00
+-2.1321271924445462e+01
+-1.0800345047102260e+01
+-4.1549995583602293e+00
+-2.2489546329093432e+01
+4.0917472143655464e+00
+-4.0776326404533272e+00
+-2.1587577912548575e+01
+2.6929059670523006e+00
+-3.9439077858984732e+00
+-2.0698647926162987e+01
+3.9584499629086753e+00
+-4.4542128417185376e+00
+-2.1868358204481794e+01
+1.7198429659239480e+01
+-5.9805635195778803e+00
+-2.8760007882816964e+01
+4.1139802046433793e+00
+-4.7040068772374015e+00
+-2.3454914556083704e+01
+1.5658728162018618e+00
+-4.4490348517350009e+00
+-2.1479905327429186e+01
+1.6517553088179959e+01
+-6.0787919412906213e+00
+-2.8239951028372641e+01
+-1.2537466892006135e+00
+-4.6632561732861220e+00
+-2.2364801373638503e+01
+-7.7370725108158200e-01
+-4.7273028824532286e+00
+-2.2354478158835960e+01
+-8.2200805178105807e-01
+-4.7919840461413061e+00
+-2.2527892222393714e+01
+2.1632148306652432e+00
+-4.6390719233525983e+00
+-2.1340751843650143e+01
+1.3718164445286883e+01
+-5.9848297576007372e+00
+-2.6846822753817413e+01
+1.3246645813830000e+01
+-6.3351766426745435e+00
+-2.6111827478568014e+01
+1.6356244767401375e+01
+-6.8382241591155593e+00
+-2.7501455382846316e+01
+1.6356244767401375e+01
+-6.8382241591155593e+00
+-2.7501455382846316e+01
+8.7752653757507759e-01
+-5.3672909668628437e+00
+-2.1674696578846774e+01
+1.4642780885941173e+01
+-6.9858349820012355e+00
+-2.6373358903769049e+01
+-1.5613294003115910e+00
+-6.0632802024286034e+00
+-2.2767748761833310e+01
+8.1318851500758331e+00
+-6.5889503989384126e+00
+-2.3717488121930728e+01
+-5.5631858181323368e+00
+-6.4995554675123888e+00
+-2.3784549002820476e+01
+-4.9231427886142658e+00
+-6.2335530137813828e+00
+-2.2895767530058848e+01
+5.5150185717531164e+00
+-6.3409962348015201e+00
+-2.2914870409667625e+01
+8.3696251855889903e-01
+-6.0795198433161159e+00
+-2.1329584626189074e+01
+1.8086361993733480e+01
+-7.9853530689018823e+00
+-2.7473709161401324e+01
+1.4703437592048887e+01
+-7.5422600760117833e+00
+-2.5875443522895093e+01
+8.1612131711417302e+00
+-6.9035520826636976e+00
+-2.3274699176762574e+01
+1.5371240009445762e+01
+-7.6831522604826645e+00
+-2.6104104214421621e+01
+1.5820255916891355e+01
+-7.7572095606069649e+00
+-2.6354301173463053e+01
+-4.7529962825831534e-01
+-6.5215051218847604e+00
+-2.2353510834951386e+01
+8.0053228689024163e+00
+-6.9746452810375352e+00
+-2.3183704629563341e+01
+8.0053228689024163e+00
+-6.9746452810375352e+00
+-2.3183704629563341e+01
+-4.1036154759115480e+00
+-6.5713289628526370e+00
+-2.2462878311601898e+01
+1.7023938457623739e+01
+-8.2328151620579799e+00
+-2.6662819825264521e+01
+7.3325236304840509e+00
+-7.1213913517179019e+00
+-2.3052188031575405e+01
+7.2013471518176848e+00
+-7.1520417045368747e+00
+-2.2835117522864550e+01
+7.3036509093068069e+00
+-7.3261716927852065e+00
+-2.2665459639613164e+01
+7.2879031957530609e+00
+-7.3422401046024977e+00
+-2.2898588716346090e+01
+7.2262932392817474e+00
+-7.3644444831030285e+00
+-2.2654366980329733e+01
+-3.4527087240037844e+00
+-7.0434605058866886e+00
+-2.1973299446139986e+01
+-3.8949213067833779e+00
+-7.3369072465851524e+00
+-2.2622359299928256e+01
+1.5320327481257053e+01
+-8.4696834760882673e+00
+-2.5469453134839224e+01
+8.0353005496746164e+00
+-7.5757163382462904e+00
+-2.2833674243360903e+01
+-5.4392833734224295e+00
+-6.9813124663787871e+00
+-2.0865540058157087e+01
+-2.7352784946406175e+00
+-7.2421715552572126e+00
+-2.1630441531682255e+01
+-5.4503383491066355e+00
+-7.5294342463610793e+00
+-2.2396394254619047e+01
+1.3532989457467881e+01
+-8.3743181325446692e+00
+-2.4439853379271078e+01
+-4.7008766860236983e+00
+-7.5743871923556307e+00
+-2.2232351418152692e+01
+-3.1197185088233823e+00
+-7.5031042751318431e+00
+-2.2063854846384125e+01
+6.7025166236059608e+00
+-7.7101331888389826e+00
+-2.1978504128088073e+01
+1.3557095647982894e+01
+-8.5729605783302780e+00
+-2.4426751820905846e+01
+-3.7831230923586809e+00
+-7.7067931033372323e+00
+-2.2052972801656193e+01
+6.6684479480475982e+00
+-7.8073449826970789e+00
+-2.1974693308732512e+01
+-5.1677974749739359e+00
+-7.7516731435524555e+00
+-2.2042263430053747e+01
+1.2598722758455937e+01
+-8.4949399244684685e+00
+-2.3746074094946636e+01
+-2.5852864905164781e+00
+-7.8084362385026607e+00
+-2.1908736067575564e+01
+6.8506811662007667e+00
+-7.9163638195363601e+00
+-2.2050000094504064e+01
+8.4399012699388543e+00
+-8.1520305816041567e+00
+-2.2241854786521724e+01
+-5.8665595099625643e+00
+-7.8886793756957827e+00
+-2.1849772947897140e+01
+-3.5183467109490940e+00
+-7.5409262643607802e+00
+-2.0803757241303703e+01
+-1.1086954070413286e+00
+-7.7564488350169336e+00
+-2.1212508314275709e+01
+8.4676163890756797e+00
+-8.0772546908832510e+00
+-2.1649651168696145e+01
+1.3786553067756161e+01
+-9.0717157659512289e+00
+-2.4085104428173118e+01
+-3.6712430615020204e+00
+-7.7261574052463500e+00
+-2.0599450300289760e+01
+1.5565833595726254e+01
+-9.4786566307949567e+00
+-2.4772931735789321e+01
+-2.7740081751104948e+00
+-8.1411041141791483e+00
+-2.1454726160597385e+01
+-7.0815440065202475e+00
+-6.9990119337511745e+00
+-1.8310080718313490e+01
+-2.0099266734473002e+00
+-8.1631824099609709e+00
+-2.1475240042822684e+01
+5.4565772774445440e+00
+-8.1193300592849127e+00
+-2.1190544372109684e+01
+-2.5982494538520227e+00
+-8.1332432613064007e+00
+-2.1358778455982950e+01
+1.2605903872431508e+00
+-8.2565778171596715e+00
+-2.1336909398752308e+01
+-1.8204786869928451e+00
+-8.2709635367495409e+00
+-2.1288818957380137e+01
+1.2104312352837157e+01
+-9.0889508024350434e+00
+-2.2983055996172407e+01
+4.4734583741171718e-01
+-8.1815570976798409e+00
+-2.0762144909211703e+01
+5.3419933770079604e+00
+-8.2471285723256376e+00
+-2.1013060515122351e+01
+-3.6946317860320512e+00
+-7.8457191164009883e+00
+-2.0133973011810095e+01
+5.1049347588187723e+00
+-8.3071390891323045e+00
+-2.1122845171489164e+01
+-7.5928593184053894e-01
+-8.0691652137075618e+00
+-2.0697975779101768e+01
+4.1385408400046086e-01
+-8.2248356617281519e+00
+-2.1228870612009498e+01
+1.8197776152512239e+00
+-8.2043625890011285e+00
+-2.0868699602293717e+01
+-4.4060547758893138e+00
+-7.8582001454940285e+00
+-2.0057816318281684e+01
+2.0834958491984912e+00
+-8.3929233779306518e+00
+-2.1197655083313212e+01
+-1.7558143586937269e+00
+-8.2534177730270244e+00
+-2.1142498567750454e+01
+1.2493154442472201e+00
+-8.1664811292717605e+00
+-2.0734672673094739e+01
+4.8113692193995172e+00
+-8.2869274294082906e+00
+-2.0929196984712874e+01
+3.3843781279807126e+00
+-8.3991167535706364e+00
+-2.1129424995040704e+01
+-9.0871295888605000e-02
+-8.2264751381760846e+00
+-2.0647235283352764e+01
+1.0987880150093071e+01
+-9.0920007629927788e+00
+-2.2594292277333722e+01
+9.3661596686390141e+00
+-8.8340748611056892e+00
+-2.1860825603495059e+01
+1.5441886913946470e-01
+-8.2635707268843035e+00
+-2.0575991231308425e+01
+2.0278786484425818e-01
+-8.3883053497622289e+00
+-2.0832674174016280e+01
+2.5289715306178917e+00
+-8.3188676874538636e+00
+-2.0607603730827851e+01
+6.7362043871128838e+00
+-8.6276939663351708e+00
+-2.1244608697539068e+01
+6.3209017192168426e+00
+-8.5896393041711772e+00
+-2.1153509078884856e+01
+1.1999493375301330e-02
+-8.3158602962452246e+00
+-2.0504882180473881e+01
+1.5836539341551157e+00
+-8.4955094203224970e+00
+-2.0980889272496196e+01
+3.3595085196903618e+00
+-8.3995479225427943e+00
+-2.0737245705337138e+01
+3.3882460635520566e+00
+-8.4644562832675163e+00
+-2.0826515455239267e+01
+3.3882460635520566e+00
+-8.4644562832675163e+00
+-2.0826515455239267e+01
+-8.6608072172479067e-01
+-8.4197553551564308e+00
+-2.0947569276441385e+01
+1.0627786689171732e+01
+-9.1345948932774110e+00
+-2.2200838998677472e+01
+1.7791044495383184e+00
+-8.5905252175883184e+00
+-2.0995682733681562e+01
+1.3108309705327784e+01
+-9.5694266952144282e+00
+-2.3312443993217883e+01
+-8.8655883231629462e-01
+-8.5322848658057175e+00
+-2.0922321496956044e+01
+1.3735780351866915e+00
+-8.6038502766067797e+00
+-2.0900918996784483e+01
+-8.6235875585099675e-01
+-8.2859920339823603e+00
+-2.0326873960139196e+01
+-8.4687101172350909e-01
+-8.5331059690844597e+00
+-2.0887705535941802e+01
+5.6441432731928298e+00
+-8.7123581454548855e+00
+-2.0827751955534691e+01
+5.0100301445715822e-01
+-8.4325790466444168e+00
+-2.0178731911339586e+01
+5.8270619985436838e+00
+-8.6330406844236744e+00
+-2.0492179557357069e+01
+4.4684744731056902e-01
+-8.5014013750508077e+00
+-2.0231483261918168e+01
+1.0979791360005386e+01
+-9.4526822516970661e+00
+-2.2078209296608989e+01
+1.0979791360005386e+01
+-9.4526822516970661e+00
+-2.2078209296608989e+01
+-1.5566433253078296e+01
+1.6251950028652434e+01
+-3.4046041648400134e+01
+9.3365353589664934e+00
+2.3690016724854793e+01
+-5.1307231185466435e+01
+-1.3934525501109485e+01
+1.6265445091310191e+01
+-3.4439434818639761e+01
+-1.3978195579524993e+01
+1.5967371102393273e+01
+-3.4083696881125391e+01
+1.4635271525998334e+01
+2.4734636673946678e+01
+-5.3756817255030924e+01
+-9.6279000064801732e+00
+1.7645843170323147e+01
+-3.8095583130398836e+01
+-9.7311828347786005e+00
+1.7915888135301273e+01
+-3.8693444214951882e+01
+-5.7712612432602715e+00
+1.8820036952837913e+01
+-4.0732492341834408e+01
+1.8411518765476195e+01
+2.5845829504716612e+01
+-5.6138323697623946e+01
+1.8804931054558306e+01
+2.6193784247194269e+01
+-5.6894978272895600e+01
+-1.0056654801011087e+01
+1.7368806780849457e+01
+-3.7335853657049668e+01
+-1.2803631839010022e+01
+1.6400896096174574e+01
+-3.5198999615019218e+01
+-1.3096759363462969e+01
+1.6303567478776568e+01
+-3.4930314227637325e+01
+-1.3393379928975204e+01
+1.6653650937367836e+01
+-3.5561653758761381e+01
+2.6652799696977345e+00
+2.1362243609385761e+01
+-4.6739591170771547e+01
+2.6652799696977345e+00
+2.1362243609385761e+01
+-4.6739591170771547e+01
+9.7241199756098844e+00
+2.3417353664612815e+01
+-5.1183300775583469e+01
+-9.1529173150654053e+00
+1.7822227683531327e+01
+-3.8743428351559992e+01
+-7.3684500060553502e+00
+1.8250968159752926e+01
+-3.9924447974488871e+01
+-1.5219649450414058e+01
+1.6115356438786510e+01
+-3.4376327946172218e+01
+-5.8700509462897319e+00
+1.8548019022955639e+01
+-4.0677019031385228e+01
+-5.8300427891540254e+00
+1.8654371474530180e+01
+-4.0927959716593300e+01
+1.0546170129772740e+01
+2.3604548680686502e+01
+-5.1924943789759602e+01
+-1.2161004554522341e+01
+1.6497856369868330e+01
+-3.5825524260791823e+01
+1.0591391936864509e+01
+2.3789898523132884e+01
+-5.2768451540549307e+01
+-1.3608153511215864e+01
+1.6027559569283778e+01
+-3.4835527005588020e+01
+1.5542675678305564e+01
+2.4695104733119784e+01
+-5.4702681214731776e+01
+1.7421835114476487e+01
+2.5204448939408181e+01
+-5.5713864349944721e+01
+1.8549533241883797e+01
+2.5972937925671733e+01
+-5.7388371690303011e+01
+1.4763715272728977e+01
+2.4417271105612855e+01
+-5.4285836991568232e+01
+-7.0042098384986593e+00
+1.8399095206054831e+01
+-4.1082285828379241e+01
+1.3248344026163592e+01
+1.4632993339960114e+01
+-3.1605916845918134e+01
+-4.7402866945395319e+00
+1.8764733471271136e+01
+-4.1863176772231192e+01
+9.9916172379169961e+00
+2.2917307594172822e+01
+-5.1279733941298808e+01
+9.5368830469084944e+00
+2.3021551187449109e+01
+-5.1418050976546219e+01
+-1.2334214203467871e+01
+1.6225621790035319e+01
+-3.5766616973607938e+01
+1.8215278234430873e+01
+2.5283482637757363e+01
+-5.6636153607311634e+01
+-1.2427289680534907e+01
+1.6225131007224135e+01
+-3.5871663531979955e+01
+4.3438611024563256e+00
+2.1420765091927599e+01
+-4.8129024014138267e+01
+-3.3784143559602198e+00
+1.9193369426634909e+01
+-4.3258374444322854e+01
+1.2350188260870983e+01
+1.5334913281843253e+01
+-3.3540406670311057e+01
+9.5691574632767367e+00
+2.2714090332338703e+01
+-5.1545031757017327e+01
+9.3360350749954151e+00
+2.2705800943974264e+01
+-5.1475813441781575e+01
+1.3612987374496059e+01
+1.4022669607744984e+01
+-3.0651968047735568e+01
+1.0347952698184228e+01
+2.2961147865690037e+01
+-5.2376904088693394e+01
+8.5683218614791112e+00
+2.2516014810839287e+01
+-5.1520316231687268e+01
+1.0270020017188211e+01
+2.3388112040542747e+01
+-5.3683951963104590e+01
+1.3341619574751066e+01
+1.4599150165272320e+01
+-3.2156175888458328e+01
+1.9829893819851645e+01
+2.7676976167584492e+01
+-6.3247383553846021e+01
+-1.2541888191865338e+01
+1.5940531141143737e+01
+-3.5774347367830444e+01
+-1.2774614065886574e+01
+1.6969924922051039e+01
+-3.8515362525919286e+01
+1.0131702392386668e+01
+2.2681597575626544e+01
+-5.2055333311053964e+01
+-1.2553675045069225e+01
+1.7047222442633235e+01
+-3.8747788751241892e+01
+9.7027721289378022e-01
+2.0206926999416751e+01
+-4.6071186871964187e+01
+1.2868069449041295e+01
+2.4785347301268715e+01
+-5.6936750436606872e+01
+-1.2072521004890980e+01
+1.6096819384748066e+01
+-3.6307772967615882e+01
+1.3673608293862687e+01
+2.4970866204806725e+01
+-5.7717874124231358e+01
+1.2899129813378016e+01
+2.3679362870714321e+01
+-5.4439931990470733e+01
+1.2436523122405870e+01
+1.5285650684620126e+01
+-3.4041463827428551e+01
+1.8401970741111981e+01
+2.5091657052083754e+01
+-5.7658374250509070e+01
+2.6399629371990979e+01
+3.2539040986458240e+01
+-7.5022713090035850e+01
+-1.2572137638026396e+01
+1.6160919172481531e+01
+-3.6385232932378969e+01
+-1.6561786310650273e+01
+1.5555951748013507e+01
+-3.4596693607654259e+01
+-1.6561786310650273e+01
+1.5555951748013507e+01
+-3.4596693607654259e+01
+1.0467448886164572e+00
+1.9835252116670652e+01
+-4.5718627210699637e+01
+9.5208487364746990e+00
+2.4161022656362427e+01
+-5.5946608854486705e+01
+1.2555928447650095e+01
+2.3300299861151117e+01
+-5.3801455615486930e+01
+2.6441121667889128e+01
+3.2702701640209199e+01
+-7.6014486257090454e+01
+7.7708764072534064e+00
+2.2365309503147621e+01
+-5.1685617288979650e+01
+1.3756463776183407e+01
+1.4362178491866823e+01
+-3.1951678503345267e+01
+-3.3340782597005131e+01
+2.6676762617968741e+01
+-6.0839472791462342e+01
+-9.6540443509531819e+00
+1.7049070538120532e+01
+-3.9216276103616430e+01
+-9.5866468644234875e+00
+1.6835075236298863e+01
+-3.9258504476359043e+01
+1.2612509644040907e+01
+1.1499179332489318e+01
+-2.4891128123230089e+01
+1.2165131623005736e+01
+1.1294126154999098e+01
+-2.4627439499648037e+01
+1.3197239001635461e+01
+1.4533509576987658e+01
+-3.2650811786293062e+01
+1.6847720659987944e+00
+2.0040098488840282e+01
+-4.6507588588715791e+01
+1.6654692537654709e+00
+2.0068228452357495e+01
+-4.6467376913116716e+01
+1.2852889879133413e+01
+1.4615509105259651e+01
+-3.3058961712340789e+01
+1.2109215918899157e+01
+1.1366862453385963e+01
+-2.4887019692492178e+01
+1.2543057284664497e+01
+1.1418430899044679e+01
+-2.5183541353352066e+01
+1.2201390969024606e+01
+1.1236055126402682e+01
+-2.4835383725970733e+01
+-1.6051002828530120e+01
+1.5329084491571143e+01
+-3.4713222515230278e+01
+2.6033978784594641e+01
+3.1853730889105364e+01
+-7.5405677216107620e+01
+1.9879413868354771e+01
+2.5357787373874270e+01
+-6.0049138677054707e+01
+6.0211643938166732e+00
+2.1469751883163230e+01
+-5.1254824232581832e+01
+1.2460717086201681e+01
+1.1293994531806154e+01
+-2.4995384595063893e+01
+1.2593412849604672e+01
+1.1395811327237881e+01
+-2.5265628461256952e+01
+5.8110815141724625e+00
+2.1468432340567130e+01
+-5.1337538405364619e+01
+1.1522657293618089e+01
+2.1486712810705708e+01
+-5.0947338395827487e+01
+-1.2766946222323929e+01
+1.5857487168247731e+01
+-3.7097534415322457e+01
+2.0344470058025159e+01
+2.5346567908713034e+01
+-6.0642297324560346e+01
+-9.9221573485049686e-01
+1.9015350776732646e+01
+-4.5485227814432399e+01
+-1.2461494198441292e+01
+1.5483930722018055e+01
+-3.6861131514395524e+01
+1.4542983130614699e+01
+1.3977817338764698e+01
+-3.2463293716422477e+01
+-1.6456206129670715e+01
+1.4860837411517249e+01
+-3.4576562060268031e+01
+1.2591143503500064e+01
+1.0433897536840631e+01
+-2.3657854800931467e+01
+-1.6219460959426552e+01
+1.6387402330692488e+01
+-3.9166950042133386e+01
+1.9768803373646801e+01
+2.4953929880145061e+01
+-6.0934774995986075e+01
+-8.8671172874409034e+00
+1.6319231782592624e+01
+-3.9814143433615840e+01
+1.5526118557104164e+01
+2.3373782681770290e+01
+-5.7527373674836056e+01
+1.7352854097363075e+01
+2.4065677194009691e+01
+-5.8908750852658557e+01
+4.9892939095819773e-02
+1.8931995339728157e+01
+-4.6695632864701295e+01
+2.9266821878495029e-02
+1.8847267259765125e+01
+-4.6569216087867360e+01
+-6.5750403712403553e+00
+1.6981401836529255e+01
+-4.1520414277018922e+01
+-5.6648708178860536e+00
+1.7602875046407860e+01
+-4.3563519688532821e+01
+-5.6135495995145028e+00
+1.7341532324686277e+01
+-4.2945357694997490e+01
+1.2144121900870646e+01
+1.0730948685045915e+01
+-2.4910465757444516e+01
+-6.3280231477615745e-01
+1.8542626421073837e+01
+-4.6215851481560847e+01
+-6.3280231477615745e-01
+1.8542626421073837e+01
+-4.6215851481560847e+01
+-9.2151195036844182e+00
+1.6181848634869088e+01
+-4.0204655092947469e+01
+-9.2151195036844182e+00
+1.6181848634869088e+01
+-4.0204655092947469e+01
+-1.4580999067916904e+01
+1.4856796949205583e+01
+-3.6399580836280748e+01
+-1.4444770084503118e+01
+1.4920149187371310e+01
+-3.6581917080801539e+01
+1.2100263589366588e+01
+1.0698411635896397e+01
+-2.5054871679815005e+01
+1.4701789498074973e+01
+2.2612438578495421e+01
+-5.6652891831725896e+01
+1.4669294107211163e+01
+2.2494557293972615e+01
+-5.6424786896425175e+01
+-1.4424711533617089e+01
+1.4729830317798264e+01
+-3.6321357355303078e+01
+-2.8142372792748198e+01
+2.2031363372210635e+01
+-5.4192741728315205e+01
+5.9565149504574844e-01
+1.9074977904047717e+01
+-4.7836041023734033e+01
+1.3359757718726756e+01
+1.0497153499237573e+01
+-2.4673918052997021e+01
+-2.4176906624885284e+01
+1.8978788984450329e+01
+-4.6950840644090995e+01
+1.4155424842689985e+01
+1.3555665439565731e+01
+-3.3029785546123769e+01
+1.4487136594753967e+01
+2.2730228438747023e+01
+-5.7749401690683484e+01
+-2.7026393291960936e+01
+2.1044054882779594e+01
+-5.2516070147162125e+01
+1.2734664331093949e+01
+1.0347889761520513e+01
+-2.4901696701213854e+01
+1.3717600562508382e+01
+9.9191727145605011e+00
+-2.3591920821851460e+01
+-1.6895987943857708e+01
+1.4143088102867306e+01
+-3.5221632716886049e+01
+-1.2867954363582930e+00
+1.7850347837968670e+01
+-4.6242631613527223e+01
+-1.2867954363582930e+00
+1.7850347837968670e+01
+-4.6242631613527223e+01
+1.3683335364437770e+01
+9.5249672000788745e+00
+-2.2832307896058502e+01
+1.3431012089048592e+01
+1.3703164824240867e+01
+-3.4063868249453208e+01
+1.3448056678432229e+01
+1.3782841810678576e+01
+-3.4413830296984067e+01
+-9.2427694010684824e+00
+1.5554781725225467e+01
+-4.0421229448336206e+01
+-7.1816177788423801e+00
+1.6277125476930195e+01
+-4.2350233757215683e+01
+-5.7466583787017864e+00
+1.6498343328802129e+01
+-4.3149672814327246e+01
+-1.2095611194749438e+01
+1.5078905682826067e+01
+-3.8574877644076054e+01
+-1.0674073599828148e+01
+1.5435718485827339e+01
+-3.9860401928459531e+01
+1.2228299972591433e+01
+1.0205929622792970e+01
+-2.4939566958235943e+01
+1.2349990811620332e+01
+1.0214979110612658e+01
+-2.5177081761629026e+01
+1.3141322782710462e+01
+9.9269136318966407e+00
+-2.4466428934194262e+01
+1.3624826285470093e+01
+9.5870670110855976e+00
+-2.3504192295575965e+01
+-1.5589712993491063e+00
+1.7482402130061033e+01
+-4.6659238963847145e+01
+-1.5327303948004714e+00
+1.7691225849824590e+01
+-4.7041434997606075e+01
+8.7153300642081066e-01
+1.9087344238413689e+01
+-5.1268959929673805e+01
+8.7153300642081066e-01
+1.9087344238413689e+01
+-5.1268959929673805e+01
+-2.2281670602329221e+01
+1.7126980200897531e+01
+-4.4501902977794465e+01
+-1.5560753288056839e+01
+1.4176226924828629e+01
+-3.6573378181699240e+01
+-9.0135869679253453e+00
+1.5422397491291777e+01
+-4.1013839234509192e+01
+1.3168132269969620e+01
+1.3692036317078221e+01
+-3.5521586195307769e+01
+1.0466987702520749e+01
+2.0462517745730704e+01
+-5.5397426961356551e+01
+1.1967206844507372e+01
+1.0170047364322455e+01
+-2.5747880230623974e+01
+-1.4172319545374374e+00
+1.7886479170761113e+01
+-4.8721546921170727e+01
+1.2769593301759325e+01
+9.8656520411111952e+00
+-2.4857492617471035e+01
+1.2769593301759325e+01
+9.8656520411111952e+00
+-2.4857492617471035e+01
+1.4332632180981397e+01
+9.7540992777755040e+00
+-2.4354518282332240e+01
+1.3521990689532275e+01
+1.2935905188214653e+01
+-3.3767420580982346e+01
+8.7757297668362639e+00
+2.0163601902377508e+01
+-5.4956144407797801e+01
+8.0663910758966413e+00
+1.9754899260986750e+01
+-5.4191377867589296e+01
+-6.1400435297558218e+00
+1.6021888909544405e+01
+-4.3708754050086860e+01
+1.4355567212417615e+01
+9.0627034881603716e+00
+-2.2592562511630565e+01
+2.6014241075297317e-01
+1.7684616624399187e+01
+-4.8803891009358175e+01
+1.4400316870554869e+01
+8.8161580806668010e+00
+-2.2139172537181601e+01
+6.9999404512989483e-01
+1.7669420329292617e+01
+-4.9117480118182442e+01
+1.4382346042425011e+01
+8.8431112886872842e+00
+-2.2256831359007482e+01
+1.5825299203883024e+01
+2.1433887850828338e+01
+-5.9736384721128609e+01
+1.5349979246356941e+01
+2.1244638809622487e+01
+-5.8831712736002302e+01
+1.4649194272203740e+01
+8.8430939588038857e+00
+-2.2476019769731533e+01
+1.4423997502778281e+01
+8.7504451827258389e+00
+-2.2143617899459102e+01
+1.4042056558774592e+01
+1.2800281643150955e+01
+-3.4516878174402102e+01
+1.2593437948928607e+01
+9.4931529364293663e+00
+-2.4874392863938528e+01
+1.4388168148456222e+01
+8.5520965545808885e+00
+-2.2185614490264619e+01
+9.2084451962571183e+00
+1.9574931578589336e+01
+-5.5809834297610607e+01
+1.3986065737787019e+01
+8.1760641828189300e+00
+-2.0983800046392599e+01
+-7.3644787606166915e+00
+1.5091483959129931e+01
+-4.3545485892244585e+01
+-4.2278786254758405e+00
+1.5889556304759099e+01
+-4.5707625917496372e+01
+1.2596281914519182e+01
+9.7244086769738889e+00
+-2.6244632464135609e+01
+-1.2976698254617856e+01
+1.3846999399110050e+01
+-3.9088879131999271e+01
+1.2147710185025089e+01
+9.6191157802874212e+00
+-2.6188471758823198e+01
+1.2703687978106210e+01
+9.7932332031814404e+00
+-2.6500687765134465e+01
+1.3779526831962956e+01
+9.1318042224542335e+00
+-2.4407442687491635e+01
+1.4446130028581120e+01
+8.2983572655982432e+00
+-2.2225940904617726e+01
+1.3983314386132669e+01
+8.0548549834118575e+00
+-2.1295176228521747e+01
+1.3680813570578771e+01
+9.0344187848201418e+00
+-2.4318917146187598e+01
+1.3680813570578771e+01
+9.0344187848201418e+00
+-2.4318917146187598e+01
+-2.2770227655612494e+01
+1.6152122414421310e+01
+-4.6287675335131141e+01
+-8.7992724723261926e+00
+1.4227367013491248e+01
+-4.1954978006278921e+01
+1.3678502961058255e+01
+9.6100365642735586e+00
+-2.6313143984095372e+01
+-3.8785079339296438e+00
+1.5788538653903263e+01
+-4.6577178614662266e+01
+7.9650000780870620e+00
+1.8897188165839840e+01
+-5.6061030238497516e+01
+1.3332791308175196e+01
+8.5658806441305604e+00
+-2.3322329540435728e+01
+-3.8525997887410992e+00
+1.5714014359649616e+01
+-4.6619246425997481e+01
+-6.1979007888902755e+00
+1.4995615425061809e+01
+-4.4708123917306835e+01
+1.2752335385293375e+01
+9.1908851272836714e+00
+-2.5128113384146427e+01
+1.2667181150873525e+01
+8.9288644893057967e+00
+-2.4841946135785761e+01
+-6.5177771742315924e+00
+1.4968882441451871e+01
+-4.5034318298016608e+01
+-1.1486219412046051e+01
+1.4206542820985263e+01
+-4.2362678557002759e+01
+-1.2189928788422181e+01
+1.3391988603147613e+01
+-3.9866679307720702e+01
+-1.2188633312493810e+01
+1.3486176282895491e+01
+-4.0345056132417142e+01
+-8.9048137093088719e+00
+1.4807242847502607e+01
+-4.4422689350487985e+01
+1.4161341786627215e+01
+7.7244226688734559e+00
+-2.1110435695071747e+01
+1.2726386919103158e+01
+9.3997866172814728e+00
+-2.6908716447153694e+01
+1.2842574817924636e+01
+8.7699909690719675e+00
+-2.4605240646417396e+01
+1.2718351461601422e+01
+1.1941362791947805e+01
+-3.5470966609164741e+01
+1.3164786935751792e+01
+1.1663170103065140e+01
+-3.5037507876724113e+01
+1.3165429411832736e+01
+1.1337378592874026e+01
+-3.3877107672280381e+01
+-1.0990237208725702e+01
+1.3616517812798618e+01
+-4.1506099917867942e+01
+1.3687592039609788e+01
+7.9453854145971166e+00
+-2.2594875036674509e+01
+-3.4257867555978059e+01
+2.0436679717767216e+01
+-6.2698021527056603e+01
+1.6677946636974951e+01
+1.3467530002195113e+01
+-4.1248270542111776e+01
+1.6677946636974951e+01
+1.3467530002195113e+01
+-4.1248270542111776e+01
+-2.2138577630546745e+01
+1.5622712591742713e+01
+-4.8219110400861254e+01
+1.3002754430790562e+01
+1.2373468735140937e+01
+-3.8016976348431001e+01
+1.2006842187836508e+01
+9.1522831821279738e+00
+-2.7546030992203651e+01
+-8.8836150072045381e+00
+1.3859372915844576e+01
+-4.3507958131393210e+01
+-8.9068715413293518e+00
+1.4023089399865576e+01
+-4.4412508404726900e+01
+9.4773947671771219e-01
+1.6609169811432665e+01
+-5.2905150766007715e+01
+-9.6382822421962064e+00
+1.3457679610790814e+01
+-4.2845556016727841e+01
+1.1974289621629469e+01
+8.8929726145746937e+00
+-2.6943304799695134e+01
+-1.2485976684606936e+01
+1.2989464711212330e+01
+-4.0919951367727251e+01
+-1.2328454502939481e+01
+1.2690158350845865e+01
+-4.0144079556908764e+01
+-1.2608927684193166e+01
+1.3355309695263342e+01
+-4.2399605845011905e+01
+-8.9658191612089517e+00
+1.3640351594736805e+01
+-4.3767965784276683e+01
+1.3122875547181671e+01
+1.0871076786350104e+01
+-3.4005350567452801e+01
+-1.6253211251775610e+01
+1.2184263480129953e+01
+-3.8397737535496788e+01
+1.1790772611404215e+01
+8.9469291050320425e+00
+-2.7300492776784552e+01
+1.2407934982905136e+01
+8.5684756982154759e+00
+-2.6336500634606068e+01
+-1.6247371198352226e+01
+1.2495111227485467e+01
+-3.9582176896206434e+01
+-3.5484309513748666e+00
+1.4764139030596056e+01
+-4.8368750388581127e+01
+1.2198270255483042e+01
+8.4165087517100972e+00
+-2.5924936165731484e+01
+-1.4872343082323120e+01
+1.2250863021367683e+01
+-3.9172956958926299e+01
+-1.6003896708657127e+01
+1.2046071559340279e+01
+-3.8653858063154537e+01
+-1.5986829417987257e+01
+1.2027580729007791e+01
+-3.8608792794242291e+01
+-1.5119287088925736e+01
+1.2298140209125819e+01
+-3.9724094101454064e+01
+-1.4819590557861153e+01
+1.2092518751618007e+01
+-3.9535185164477653e+01
+1.3482609549808087e+01
+1.0405053281540596e+01
+-3.3620491859150462e+01
+1.4692444339882835e+01
+7.4790415714583647e+00
+-2.2661222601150268e+01
+1.4161117074579980e+01
+7.1325689695056509e+00
+-2.2206857500863435e+01
+1.2472936626384024e+01
+8.3955518342588142e+00
+-2.6940055582200735e+01
+1.3995631197251027e+01
+1.0213962326861250e+01
+-3.3575596082246612e+01
+-5.1216326582041010e+00
+1.3913689393667035e+01
+-4.7175273735126474e+01
+-1.6203147647848425e+01
+1.1935107592421096e+01
+-4.0103871281549516e+01
+-4.0420170938676732e+00
+1.4323316127076410e+01
+-4.8577145601962933e+01
+1.3384301975420286e+01
+1.0734955916818670e+01
+-3.5711564599600962e+01
+1.3519114442138688e+01
+1.0270908992884333e+01
+-3.3539787365770593e+01
+1.3763564992412864e+01
+1.0091201084077547e+01
+-3.3227335718494423e+01
+-1.1598433700678489e+01
+1.1032252557732820e+01
+-3.7755356288297975e+01
+-1.2206005104353583e+01
+1.1517880510342225e+01
+-3.9349757354235201e+01
+1.3714961635998240e+01
+9.9180083669544157e+00
+-3.3190666775208356e+01
+-6.7927191060764658e+00
+1.3307882199032786e+01
+-4.5960940958940320e+01
+-6.8473143550505275e+00
+1.3512504193914426e+01
+-4.6501748632710758e+01
+-3.1536529600612944e+01
+1.6973273795492325e+01
+-5.7614634788124675e+01
+-5.4133514413449975e+00
+1.3760076740542017e+01
+-4.7889267034393043e+01
+1.3031946477442438e-01
+1.5022169595166348e+01
+-5.2379540663152405e+01
+1.3705148579503446e+01
+7.1838446432845338e+00
+-2.3402020346644793e+01
+-2.1168212706511154e-02
+1.5221967746546012e+01
+-5.3874021070668327e+01
+-1.7065529548909364e+01
+1.1619136576740530e+01
+-4.0545035046572771e+01
+1.2738361830943132e+01
+7.7297994333106770e+00
+-2.5874194873990312e+01
+1.3059957101983668e+01
+7.8010091484546189e+00
+-2.6020881262072674e+01
+1.3031794944948739e+01
+7.7855501739446664e+00
+-2.6026251277027047e+01
+-1.2145450535344908e+01
+1.2025674369790176e+01
+-4.2330867978947346e+01
+-9.0349864701499616e+00
+1.2483969760168453e+01
+-4.4772890268131476e+01
+-1.1899555956640201e+01
+1.2347129205329450e+01
+-4.3394034585837645e+01
+7.1516483957077535e+00
+1.4571495015917201e+01
+-5.2224531007050246e+01
+-1.3183670180932426e+01
+1.2168000257469039e+01
+-4.3082535758578921e+01
+7.2620558247599531e-01
+1.4530941259399352e+01
+-5.2505597994256391e+01
+1.3829328513848013e+01
+7.0431387327644162e+00
+-2.3584184627295986e+01
+1.2713381401770091e+01
+7.4632066942861011e+00
+-2.5380973039525799e+01
+1.3354154077105385e+01
+7.0374829215183849e+00
+-2.3875378962956233e+01
+1.4803242488520066e+01
+7.3570618892105495e+00
+-2.4272616908328914e+01
+1.3857258633796226e+01
+6.8488485056207562e+00
+-2.3164267563679005e+01
+1.5170946281511148e+01
+9.3313636744716870e+00
+-3.2739241363103197e+01
+1.2570812466576063e+01
+7.9321298188040874e+00
+-2.7184670276483367e+01
+1.4233100761082033e+01
+7.1998580515125328e+00
+-2.3915996304883560e+01
+1.3518144203379400e+01
+7.0801162503877055e+00
+-2.4155595747609222e+01
+1.2786367197280486e+01
+8.1036926753558056e+00
+-2.7853956720384641e+01
+-5.1847851718314857e+00
+1.3160114598729903e+01
+-4.8954032063658595e+01
+1.1556583328798542e+00
+1.3775618839469999e+01
+-5.1808275014482795e+01
+-1.0856804839393345e+01
+1.1781591379786001e+01
+-4.3803412388318762e+01
+1.2115576519215217e+01
+7.8967426108953402e+00
+-2.7526677710170201e+01
+1.3074379835304669e+01
+7.1936603563139574e+00
+-2.5504381903215052e+01
+-1.5403136813774974e+01
+1.1057421537523242e+01
+-4.0821761282183964e+01
+1.4665430778368533e+01
+6.9155027069482893e+00
+-2.3545384072423609e+01
+1.4281068737253600e+01
+6.6877016138975574e+00
+-2.3272805938411292e+01
+1.2727521613701194e+01
+7.4214546535269887e+00
+-2.6365242955889247e+01
+1.4067124674359910e+01
+6.5320620355577246e+00
+-2.2796742145901987e+01
+1.4067124674359910e+01
+6.5320620355577246e+00
+-2.2796742145901987e+01
+1.2113200645095501e+01
+8.0650223168097561e+00
+-2.9021650958025376e+01
+1.3838810349395118e+01
+6.4404274083162747e+00
+-2.2772961208249679e+01
+-1.4629745335747623e+01
+1.1176455572732101e+01
+-4.1779942572200625e+01
+1.2482341353900356e+01
+7.3691473184990297e+00
+-2.6247829888124102e+01
+-1.4168852461405605e+01
+1.0710649511257211e+01
+-4.0677631855652209e+01
+-1.0564883306555041e+01
+1.1818511323594850e+01
+-4.4996552818083003e+01
+-8.2760426417983961e+00
+1.1874612325374919e+01
+-4.5499120071353488e+01
+-5.5145922578816577e+00
+1.2977118767248577e+01
+-4.9454974515285855e+01
+1.3658746538658503e+01
+6.7985530960242508e+00
+-2.4324079619238152e+01
+1.3727912423828977e+01
+6.8121489431085465e+00
+-2.4417214371750074e+01
+-1.4522562151089250e+01
+1.0946928524830627e+01
+-4.1612694480142011e+01
+1.2141529566028106e+01
+7.6935921197281516e+00
+-2.8454038657331143e+01
+-1.5957214392318832e+01
+1.0740376287438481e+01
+-4.1294081588883834e+01
+-1.7538910240401119e+01
+1.0844783385080181e+01
+-4.1135804206931773e+01
+-1.2790613921225397e+01
+1.1052071721166476e+01
+-4.2912937826042814e+01
+1.4417424841783268e+01
+6.2864468766493324e+00
+-2.2679716108775608e+01
+1.3677457953951540e+01
+6.9700113872862000e+00
+-2.5708986177342570e+01
+1.3961315987509423e+01
+7.1777903033813839e+00
+-2.6027312280477965e+01
+-7.0899772698013130e+00
+1.2047934242027459e+01
+-4.7944945967580857e+01
+2.5498967693100987e+00
+1.2369758510746628e+01
+-4.9275483550081539e+01
+1.2774816313876089e+01
+7.0030113297338970e+00
+-2.6216401539281861e+01
+1.2213749435798189e+01
+7.2178276742831269e+00
+-2.7253308232335872e+01
+-6.5044020875128536e+00
+1.1806714881184728e+01
+-4.7780484703344769e+01
+-1.7589227923198546e+01
+1.0132340349341661e+01
+-4.0792058364190346e+01
+1.3010266826842626e+01
+1.2322349573044118e+01
+-4.9777714794662607e+01
+1.2454861759762982e+01
+9.6365656016381251e+00
+-3.8509270745091854e+01
+1.2157438037048621e+01
+7.0311633473644415e+00
+-2.7551929255745801e+01
+1.3209110474250316e+01
+6.8925825366613207e+00
+-2.6750361368938961e+01
+-1.2179957364277254e+01
+1.0739983566933839e+01
+-4.4410816856749200e+01
+-1.4296019728195681e+01
+1.0377590725860175e+01
+-4.2975705650197881e+01
+2.9127659097536367e+00
+1.1368009201062250e+01
+-4.7839400676859270e+01
+1.4618278665619693e+01
+6.4626375734411949e+00
+-2.5223019611347453e+01
+1.3986638626493198e+01
+6.2047793236482347e+00
+-2.4011217238689355e+01
+1.5065252017020287e+01
+6.0127912764982616e+00
+-2.2544575545925269e+01
+1.7441577145558814e+01
+7.3353194029915834e+00
+-2.9480659300395605e+01
+1.3975954041904378e+01
+1.0147925719097968e+01
+-4.1825214726948516e+01
+1.4451239545732737e+01
+1.0211482348508854e+01
+-4.2854585345335430e+01
+-1.4533082673672350e+01
+8.8240326889262892e+00
+-3.7085583499055581e+01
+-7.7250298485038504e+00
+1.1137666373067331e+01
+-4.7630204815647616e+01
+-1.4146481927395723e+01
+8.5730766354993424e+00
+-3.6489989460007287e+01
+1.4035794847527205e+01
+5.9982541476524869e+00
+-2.3914052558380174e+01
+1.4090262518681968e+01
+6.0700420391992953e+00
+-2.4224045379258378e+01
+-1.3729765395336440e+01
+9.2142681842064853e+00
+-3.9827498875997257e+01
+1.3811868426973300e+01
+5.7820126997997292e+00
+-2.3449556473554718e+01
+1.0170991597049170e+01
+1.1853628420436142e+01
+-5.1632753753802220e+01
+-1.2335708745441130e+01
+9.3835926318764411e+00
+-4.0965830603999770e+01
+1.3644087522817941e+01
+8.9510243525519524e+00
+-3.8272467666658535e+01
+-1.7178482177470258e+01
+9.5915874937136056e+00
+-4.0867493677475849e+01
+1.2963755527812365e+01
+6.4595491778491851e+00
+-2.6711150116237377e+01
+-1.6223257725586233e+01
+9.5117880458417030e+00
+-4.1137596432272666e+01
+1.2406644209945098e+01
+6.8335224303371120e+00
+-2.8988973899562502e+01
+1.2613526538066465e+01
+6.8954406697321025e+00
+-2.9063306500585838e+01
+1.2499224773027146e+01
+6.7998280554029558e+00
+-2.8771182553484401e+01
+1.2870254750892503e+01
+6.3125055626935094e+00
+-2.6536932403579787e+01
+1.2912181264163101e+01
+6.3195086265378073e+00
+-2.6503959643143673e+01
+1.2103180645372982e+01
+6.6850344641077264e+00
+-2.8704263217744263e+01
+1.4716658844772587e+01
+6.0575233298202837e+00
+-2.5330679654642452e+01
+2.6091259705234577e+00
+1.0013790316825201e+01
+-4.5800566428550582e+01
+1.4324205289483732e+01
+6.5030996136054524e+00
+-2.8173570213203124e+01
+-6.2491314475377377e+00
+1.0087457206347660e+01
+-4.6060889600785849e+01
+1.4675812186561160e+01
+5.6928128536606089e+00
+-2.3714582999705012e+01
+-5.6478401788225021e+00
+9.7429185141499186e+00
+-4.5305161750107949e+01
+1.3789946129853295e+01
+5.5032180676360625e+00
+-2.3994599917010635e+01
+1.4895797462675564e+01
+5.2779505332801415e+00
+-2.2608037782541157e+01
+1.4300729117527231e+01
+5.0638953117972223e+00
+-2.1949282601295206e+01
+1.3368014856479210e+01
+6.0752602470200676e+00
+-2.6894843235721446e+01
+1.4948195095991462e+01
+5.2134381985521765e+00
+-2.2540367226282520e+01
+1.2737526588425162e+01
+6.1270460294460012e+00
+-2.7699498146605862e+01
+-1.4625000648967290e+00
+9.4137412468227417e+00
+-4.5115834220311001e+01
+1.4049221518137491e+01
+5.5475974548197104e+00
+-2.4551284693413169e+01
+9.7156903270628199e+00
+9.3898260807381373e+00
+-4.5042413237382597e+01
+-1.7230051466908265e+01
+8.7425112620707743e+00
+-4.1025487898811392e+01
+1.4085906624603656e+01
+5.4350408090519684e+00
+-2.4493683949015601e+01
+-7.1040232697637096e-01
+9.3551975936666718e+00
+-4.5344938259087449e+01
+-1.6581373616631566e+01
+8.6886845071018417e+00
+-4.1056555441439421e+01
+-1.9251454136265302e+00
+9.1881774160956393e+00
+-4.4849208641925102e+01
+1.3307286182546081e+00
+9.1220378313103954e+00
+-4.4465218843143099e+01
+1.4221992193488044e+01
+6.6801007122062215e+00
+-3.1429043490344043e+01
+-7.6915134688000331e+00
+9.4359035891820042e+00
+-4.5843654837341326e+01
+1.4899148174630488e+01
+7.9996224598692054e+00
+-3.8730360988328854e+01
+1.2466687050139505e+01
+5.8643135119722656e+00
+-2.7081619975272755e+01
+9.9918849776864960e+00
+8.7226642458782990e+00
+-4.2374088358718318e+01
+1.2975813310245661e+01
+5.9196012662243698e+00
+-2.8085313300364472e+01
+-1.4992795376583112e+00
+8.8616034612315211e+00
+-4.4716964443750356e+01
+1.5003705308042194e+01
+4.8542913349083854e+00
+-2.2598240110793945e+01
+-1.3767488331700434e+01
+8.8232393520606784e+00
+-4.4365724832996868e+01
+-2.4221429334191713e+00
+8.3855921227861092e+00
+-4.3742970118822662e+01
+-1.6969633331407274e+00
+8.5477050800559073e+00
+-4.4396223000152020e+01
+-3.5349649521766496e-01
+8.4729815506887487e+00
+-4.4085478032955642e+01
+-7.6267885121235024e-01
+8.5036557177007044e+00
+-4.4296962694365206e+01
+1.4423774952410106e+01
+4.9263866072314579e+00
+-2.3582163153702162e+01
+1.4661768487739499e+01
+7.5273132888748844e+00
+-3.8836964066923954e+01
+1.3279066244392123e+01
+5.4267223930692614e+00
+-2.7101089161068018e+01
+1.3761227981293979e+01
+5.1707937957775156e+00
+-2.5359741514540708e+01
+1.3851710365519720e+01
+5.1750078498506173e+00
+-2.5448932206590293e+01
+1.3641866456693588e+01
+5.1703567226714675e+00
+-2.5755940679605548e+01
+1.3643201933994430e+01
+5.1811178930618969e+00
+-2.5756589201479887e+01
+-1.1392894448675577e+01
+8.2650082954757700e+00
+-4.3180439742873794e+01
+-1.5971709989347922e+01
+8.3821635577583979e+00
+-4.3867716470114999e+01
+1.2603564632478129e+01
+5.8322696010730661e+00
+-3.0304124316501017e+01
+-4.3350497024616419e-01
+7.9225710700444205e+00
+-4.3317256645310152e+01
+1.2316033616574710e+01
+5.4061794557729277e+00
+-2.7963366519656667e+01
+1.2889156095695895e+01
+5.5161795148308999e+00
+-2.8570196942476890e+01
+-1.0873497105884167e+00
+7.8369310970993142e+00
+-4.3439707141570416e+01
+-1.0624370604677999e+01
+7.5491122592420679e+00
+-4.2799373736670297e+01
+1.4924106079471271e+01
+5.8528684869477763e+00
+-3.2172656243158563e+01
+-1.5788923044458072e+00
+7.4581879507569067e+00
+-4.2551968944837277e+01
+1.3574627735720416e+01
+4.8506696027712284e+00
+-2.6803822293748961e+01
+-5.2154360675708444e+00
+7.1495998270092098e+00
+-4.2176079511654230e+01
+1.5564496573459452e+01
+4.5249816853459155e+00
+-2.3923941782021519e+01
+1.3893471488845194e+01
+4.5086257577546718e+00
+-2.5268056034389105e+01
+-7.6577097488495971e-01
+7.1292072510149254e+00
+-4.2202075001774666e+01
+1.4470940157220015e+01
+4.5966861725632926e+00
+-2.6221900792937856e+01
+-9.5457881088413488e-01
+6.8812413874221878e+00
+-4.1599000172277975e+01
+1.0019278615219023e+00
+4.2341902347782625e+00
+-2.4289642146228474e+01
+1.5823599451541803e+00
+3.9717363153387759e+00
+-2.3746794844381789e+01
+-1.4102988278324581e+01
+6.7462261199353080e+00
+-4.2232462971487536e+01
+1.3040025903353785e+01
+4.6918763499066971e+00
+-2.8641593241597445e+01
+1.3020579948582599e+01
+4.5695405122342798e+00
+-2.8247172789811277e+01
+1.2659920703342427e+01
+4.8409075876212251e+00
+-2.9829936706229965e+01
+-8.4263936977750475e-02
+3.8397358168058777e+00
+-2.3802934062266552e+01
+1.2803053714463525e+01
+4.5403366518990005e+00
+-2.8869653396237069e+01
+1.3618094290214250e+01
+4.1786941443671513e+00
+-2.6585257803805860e+01
+1.3721337120932299e+01
+4.2579959221207337e+00
+-2.6882931079042173e+01
+1.2818758184204453e+01
+4.5256219922580101e+00
+-2.9119034677197522e+01
+1.6442651178875963e+01
+4.6231312523186272e+00
+-2.9615694011033444e+01
+-9.8306127691384724e+00
+5.9815249225386502e+00
+-4.0340533629224844e+01
+1.4812224770289424e+01
+3.7871582076404136e+00
+-2.3719635851386460e+01
+1.3132020661386340e+01
+4.2622919855069190e+00
+-2.7823001226806788e+01
+1.2445160080125586e+01
+4.8207588865698092e+00
+-3.1634158200959504e+01
+1.3113640849363293e+01
+4.2858489048844044e+00
+-2.8153680115453874e+01
+-3.1458899663176076e+00
+6.1492682941166583e+00
+-4.1265245902752113e+01
+1.3869489737809431e+01
+3.9714462460584468e+00
+-2.6123209063103705e+01
+1.3858494657335942e+01
+3.9047571125144001e+00
+-2.6171344739455645e+01
+1.3998442014547029e+01
+3.9660052382253279e+00
+-2.6614103664952985e+01
+1.5141405037065068e+01
+3.5142091784978322e+00
+-2.3140020164314638e+01
+1.5863525471555620e+01
+4.3889905755279397e+00
+-3.0102521498144085e+01
+1.3818650039701460e+01
+3.8919739162074336e+00
+-2.6417273745620207e+01
+1.4296402654327126e+01
+3.9258238882588801e+00
+-2.6334706893902315e+01
+1.3901808232050128e+01
+3.8162326472245742e+00
+-2.6184705034415508e+01
+1.3901808232050128e+01
+3.8162326472245742e+00
+-2.6184705034415508e+01
+1.6980468793217980e+01
+4.2261608848157790e+00
+-2.9349934054463425e+01
+1.7539559169707548e+01
+4.3737805980648785e+00
+-3.0194298993508063e+01
+1.4420194770829736e+01
+3.4175130113354975e+00
+-2.3313877583336147e+01
+1.4420194770829736e+01
+3.4175130113354975e+00
+-2.3313877583336147e+01
+1.4979266312531989e+01
+3.3350218801779592e+00
+-2.2952493693522428e+01
+1.8451802919420743e+01
+4.2319934852788306e+00
+-2.9585875561857595e+01
+1.5123658064290167e+01
+3.5848774717416281e+00
+-2.4504847977339608e+01
+-1.6257248328185592e+00
+3.9335136602603233e+00
+-2.8515779899849424e+01
+1.2941045625956376e+01
+3.8349796371158842e+00
+-2.7677381984937607e+01
+1.3902182837932470e+01
+3.6525830113826032e+00
+-2.6352219894300589e+01
+1.5111956693483894e+01
+3.4951925426493387e+00
+-2.4575493157293476e+01
+-6.3875798292740678e+00
+5.0578391917057735e+00
+-3.9243924577292610e+01
+1.4878749927816752e+01
+3.3291565246061374e+00
+-2.3855967950912568e+01
+1.3563601776240485e+01
+3.6416571155150632e+00
+-2.7144335246067712e+01
+-1.8382873921615208e+00
+3.7343403415970688e+00
+-2.8194454492616778e+01
+1.4673436285287213e+01
+3.3382225766128855e+00
+-2.3940524223748788e+01
+1.3613650883943603e+01
+3.6929073200942675e+00
+-2.7436789888520011e+01
+1.3613650883943603e+01
+3.6929073200942675e+00
+-2.7436789888520011e+01
+1.8463134231433285e+00
+3.0608970709877608e+00
+-2.2252038502405433e+01
+1.4152634134158312e+01
+3.4249432357118312e+00
+-2.5318879575280167e+01
+1.4046960374543300e+01
+3.4988622380014234e+00
+-2.5967940183239229e+01
+1.4957258414416314e+01
+3.2592821739045905e+00
+-2.3780699981002204e+01
+1.4973589158074168e+01
+3.4227134263673578e+00
+-2.4886286862048525e+01
+1.4560139197700048e+01
+3.3125691660398489e+00
+-2.4366035302744759e+01
+1.4826241501415513e+01
+3.2578101979950866e+00
+-2.4088557460279663e+01
+1.4714402760271824e+01
+3.2737009488719839e+00
+-2.3941124813463432e+01
+1.4202196046225728e+01
+3.3514235684525584e+00
+-2.5236761590464340e+01
+-2.1557433616852840e+01
+5.1101839805236997e+00
+-3.9023561462274344e+01
+1.4483001553917020e+01
+3.4781021757438348e+00
+-2.6300822254138595e+01
+1.4483001553917020e+01
+3.4781021757438348e+00
+-2.6300822254138595e+01
+1.2584622328069365e+01
+4.2868614904555100e+00
+-3.3427395621876798e+01
+1.4660335235800090e+01
+3.1416029310947073e+00
+-2.3776472062437250e+01
+1.4379973273655546e+01
+3.2869977956082459e+00
+-2.5189567402934106e+01
+-2.1213328378953737e+00
+3.5126565655582827e+00
+-2.7841843897154142e+01
+1.3656188754001420e+01
+3.4505019129538872e+00
+-2.7216317778862905e+01
+1.4593924917899633e+01
+3.1078587787947352e+00
+-2.3963233968820816e+01
+1.8413048050135927e+01
+3.7535999147558492e+00
+-2.9535203308894769e+01
+1.3014479033918317e+01
+3.5236210469838354e+00
+-2.9184549782490226e+01
+1.4602904433379821e+01
+3.0359604371643676e+00
+-2.4025700420910770e+01
+1.4451764684011524e+01
+3.2646792641151365e+00
+-2.6020791564594013e+01
+1.4221700039032788e+01
+3.1501068760976887e+00
+-2.5693390412432539e+01
+1.7452171174707050e+01
+3.7023730643172028e+00
+-3.0431735438028475e+01
+1.4071252902607707e+01
+3.1556509419751380e+00
+-2.5865355791390112e+01
+1.4151111996194210e+01
+3.1841536121162561e+00
+-2.5984060614598398e+01
+-7.5142418357837286e+00
+4.3828812744366790e+00
+-3.8123934867842920e+01
+1.4449422059905320e+01
+3.0189875620625846e+00
+-2.4757006850035090e+01
+1.4713198781894272e+01
+2.9870068418394515e+00
+-2.4414033369475089e+01
+1.4659248996357055e+01
+3.2027448223237109e+00
+-2.6273833981172949e+01
+-2.7824334537935465e+00
+3.4729130130810066e+00
+-2.8301702037189091e+01
+1.7891796118445981e+01
+3.5395676840649992e+00
+-2.9617916633804366e+01
+1.3476851819279824e+01
+3.3026476621220553e+00
+-2.8573824467821126e+01
+1.4359476597607772e+01
+2.8513321997318100e+00
+-2.4275197125234037e+01
+1.4459887579360762e+01
+2.8917235533562264e+00
+-2.4554869088767465e+01
+1.7803691904590153e+01
+3.4564018475414695e+00
+-2.9509677810625231e+01
+1.4336956047989787e+01
+2.9323572596881595e+00
+-2.5276672485213393e+01
+1.4488430868718378e+01
+2.9660411256728416e+00
+-2.5525565402941869e+01
+1.4790275239407753e+01
+2.8646107488753807e+00
+-2.4037887964116337e+01
+1.4790275239407753e+01
+2.8646107488753807e+00
+-2.4037887964116337e+01
+-1.2297811369079472e+01
+3.6564367074503048e+00
+-3.3912492192980899e+01
+-2.6821116673964052e+00
+3.1534491486326095e+00
+-2.7678334748440221e+01
+1.3312242433511816e+01
+3.1875166558942598e+00
+-2.8441820581640819e+01
+1.4235656342296281e+01
+4.9226104387221934e+00
+-4.4827091999054552e+01
+1.3363704022771216e+01
+3.1529520697254463e+00
+-2.8378547500591846e+01
+1.5656851027189330e+01
+2.7846048012589164e+00
+-2.3816858469848633e+01
+1.4278543854722272e+01
+2.8176158337531607e+00
+-2.5538647077417338e+01
+-8.0094532533757672e+00
+3.8700410552373428e+00
+-3.7058308027768078e+01
+1.3564699508546436e+01
+3.1941920187868016e+00
+-2.9009151290382910e+01
+-3.4407292860320271e-01
+2.5275241648778239e+00
+-2.2103499580292414e+01
+1.3184165014609835e+01
+3.1578438573753509e+00
+-3.0275957954238191e+01
+1.4773843941331869e+01
+2.6042640522229590e+00
+-2.4070560086525383e+01
+1.4724543402826317e+01
+2.6409353894604530e+00
+-2.4567245425570100e+01
+1.3586755305306012e+01
+2.9348050098766696e+00
+-2.8382942645844224e+01
+1.4803942933370587e+01
+2.5204423870319297e+00
+-2.4123075576784505e+01
+1.5214329162180936e+01
+2.7104380170129776e+00
+-2.4847876368413075e+01
+7.2846813038861868e-01
+2.3126946932036261e+00
+-2.1265078742375685e+01
+1.9138811912216898e+01
+3.0984107369853460e+00
+-2.9159626090231455e+01
+1.3605555124100267e+01
+2.8593841905205881e+00
+-2.8253219419523887e+01
+1.4461288452081861e+01
+2.5749780203352328e+00
+-2.5106658057207017e+01
+1.3444380867133168e+01
+2.8585590870562738e+00
+-2.8562634125066069e+01
+1.4797726629345183e+01
+2.4964229565220961e+00
+-2.4828869846564565e+01
+1.3056131545715893e+01
+3.0246839205469049e+00
+-3.1792922258771242e+01
+-2.0140988513378186e+00
+2.5163312133636642e+00
+-2.5582626054247356e+01
+1.4657106839060379e+01
+2.4214647154755564e+00
+-2.4608099989668361e+01
+-1.1680738423769704e+01
+3.1365295357760901e+00
+-3.4306271092900204e+01
+1.3005242845355337e+01
+3.1535914143921469e+00
+-3.4363993744168802e+01
+1.4947987379040352e+01
+2.2721012638901881e+00
+-2.3513473052966230e+01
+-2.0422187734693602e+00
+2.3618965662921121e+00
+-2.5201455940953089e+01
+1.4178624698602116e+01
+2.4136515576713462e+00
+-2.6319597083641163e+01
+1.4689145003220366e+01
+2.4836659568935060e+00
+-2.6294737297966133e+01
+1.4649919331704346e+01
+2.2507176771232631e+00
+-2.4843113711771238e+01
+1.5257093925090807e+01
+2.4456714011316003e+00
+-2.5708092609108395e+01
+3.0602857442740148e+00
+1.9559668353363682e+00
+-2.1253940283983539e+01
+1.2670615635086500e+01
+2.7205955678523130e+00
+-3.2749981946847534e+01
+1.3816199197613805e+01
+2.4490788935706034e+00
+-2.8803592195851813e+01
+1.4391796619416995e+01
+2.2591946753299523e+00
+-2.6670761687173428e+01
+1.4849246318840976e+01
+1.9278089005251400e+00
+-2.3378089047815177e+01
+1.4024700365729183e+01
+2.2148993156372776e+00
+-2.7398755675333753e+01
+1.4202606862962885e+01
+2.1811432149482384e+00
+-2.6783206396644697e+01
+1.9450506121181554e+01
+2.4155654986619677e+00
+-2.9011093555129559e+01
+-3.0410959071259156e+00
+2.1010912148705478e+00
+-2.5856428868203508e+01
+2.2686592569624575e+00
+1.7699479382973737e+00
+-2.0746023316963864e+01
+1.4472248980291516e+01
+2.1122642954574764e+00
+-2.5884792633430660e+01
+1.4422857185563389e+01
+2.0784521598987498e+00
+-2.5824572870935466e+01
+-1.5450924060155331e+00
+1.9072327518074668e+00
+-2.3161469754241416e+01
+1.7210436433240606e+01
+2.3184835202902656e+00
+-2.9107008427799300e+01
+1.5487625457478282e+01
+1.8824819590034123e+00
+-2.3377208861941451e+01
+1.0986072887542999e+00
+1.7189278443416538e+00
+-2.0755800342241301e+01
+1.4312041082602770e+01
+2.0696549049267410e+00
+-2.7202804700485423e+01
+1.4769761506155936e+00
+1.7560300341020010e+00
+-2.1583165173290904e+01
+2.2170718041960278e+00
+1.6222914752726734e+00
+-2.0694612302110862e+01
+1.3927113541156190e+01
+2.0187839123290625e+00
+-2.8026474499980509e+01
+-7.8522500260198500e+00
+2.5642926945547262e+00
+-3.5478067089286199e+01
+-1.2045467799255693e+01
+2.2571301060855919e+00
+-3.2681996481943116e+01
+1.4700012517293390e+01
+1.8141842397516923e+00
+-2.4755606770200856e+01
+-1.0200171539538103e+00
+1.7313059950952689e+00
+-2.2105901976024494e+01
+1.4530897746733238e+00
+1.5296549481168440e+00
+-2.0620092767559264e+01
+1.4447596345004441e+00
+1.5392785853757676e+00
+-2.0601943419317998e+01
+2.3829234008707564e-01
+1.5349910664076014e+00
+-2.0974287952387350e+01
+3.7525782959098670e+00
+1.5143097690369702e+00
+-2.1349836689371685e+01
+1.2987697653901506e+01
+2.2882204473726815e+00
+-3.5467209420271523e+01
+-9.9308222155053301e+00
+2.2359648833583976e+00
+-3.4763945270693256e+01
+1.4446015566448228e+01
+1.6322150464975858e+00
+-2.5343421591116400e+01
+2.6558423538336617e+00
+1.4268519037772767e+00
+-2.0853479544591462e+01
+1.5575519561816217e+01
+2.5037170181347035e+00
+-4.0021354771891367e+01
+2.5389801804182821e+00
+1.4642404400872076e+00
+-2.1786301274251407e+01
+1.5056630756093323e+01
+2.4025254501118427e+00
+-4.1214839476045441e+01
+1.3977827349523478e+01
+1.5893479726871982e+00
+-2.8396675147890178e+01
+1.6454711712919522e+01
+1.7679633969224517e+00
+-3.0510474914242753e+01
+7.1123293129395799e+00
+1.4977862478215167e+00
+-2.5806481574223213e+01
+1.5114096375923420e+01
+1.6174116095968338e+00
+-2.7517033759769873e+01
+1.4229476963367183e+01
+1.5525636080347220e+00
+-2.7567436632332839e+01
+1.4248137209950889e+01
+1.5179188639698162e+00
+-2.7401946341694273e+01
+1.5798479774064440e+01
+2.3682581016306825e+00
+-4.2813565099111315e+01
+1.2654877004409091e+01
+1.8061818251842128e+00
+-3.4229832963021387e+01
+1.4033333228281272e+01
+1.5409205572874289e+00
+-2.8478375964601174e+01
+1.4511836371773216e+01
+1.5017302641976740e+00
+-2.7266037147942622e+01
+-3.6922182107366903e+00
+1.4175233025455685e+00
+-2.5197979807287670e+01
+1.4373812681190351e+01
+1.4765578225415765e+00
+-2.7464346208501134e+01
+1.5242930783078664e+01
+1.3277200178608046e+00
+-2.3480397623099918e+01
+-8.1504753371921645e-01
+1.2798278329408457e+00
+-2.1652591537537369e+01
+-1.2920403563277672e+01
+1.8473135724901772e+00
+-3.4986824747618606e+01
+1.5772353748310822e+01
+1.5721091917927912e+00
+-3.0593520310844415e+01
+1.4519299495676243e+01
+1.4277020828163434e+00
+-2.7652345878348473e+01
+1.4305941194756414e+01
+1.3432284980217211e+00
+-2.7054713830542610e+01
+1.4988866565366472e+01
+1.2405842523250381e+00
+-2.4355306226308358e+01
+1.5385002619171766e+01
+1.1965725186217351e+00
+-2.3248986153425896e+01
+1.4259502678809580e+01
+1.3195270891789943e+00
+-2.7585467426970464e+01
+1.4326233014374873e+01
+1.2952497917355492e+00
+-2.6851606514611884e+01
+1.5317087408957235e+01
+2.0115927865111551e+00
+-4.1151445483615596e+01
+1.4559702559591649e+01
+1.2612473996494118e+00
+-2.6205477406242448e+01
+1.5818237322799131e+01
+1.2952006306293165e+00
+-2.4271551643072190e+01
+1.4033518389262388e+01
+1.3121403667870666e+00
+-2.8459547699020163e+01
+1.4372324009370395e+01
+1.2829420976489092e+00
+-2.7129333729970945e+01
+1.5005820508129581e+01
+1.1923403277873266e+00
+-2.4383284920665062e+01
+1.5005820508129581e+01
+1.1923403277873266e+00
+-2.4383284920665062e+01
+1.4454309005538111e+01
+1.1587914506421131e+00
+-2.6459229424978911e+01
+1.7422682493917815e+01
+1.3471071396277232e+00
+-2.9876045563141357e+01
+-3.3043265278117486e+00
+1.1320907596088794e+00
+-2.4660020663024053e+01
+1.3907681258036508e+01
+1.1637269289578491e+00
+-2.8331565168391691e+01
+1.4008566693180526e+01
+1.1663837322325337e+00
+-2.8578099070942226e+01
+1.4320572101019884e+01
+1.1710723850389102e+00
+-2.7408162434612137e+01
+1.5377899267686308e+01
+1.0390683238274565e+00
+-2.3426493278603512e+01
+1.4182794223499078e+01
+1.4723332847049793e+00
+-3.4539984824317123e+01
+-8.3633541257290034e+00
+1.3783410449402997e+00
+-3.4045833926194256e+01
+1.9008465675222641e-01
+9.6645021156224387e-01
+-2.0783195775378086e+01
+1.6292222198619193e+01
+1.1995698714193845e+00
+-3.0028247823144913e+01
+-8.9921843427129389e+00
+1.3379562600893440e+00
+-3.4007891506245990e+01
+1.6158056814508811e+01
+1.1899601497645691e+00
+-3.0242543996735215e+01
+-9.5454226536238433e+00
+1.2872867489252113e+00
+-3.4040536450222248e+01
+1.4555591612325943e+01
+9.6250796005106998e-01
+-2.6436852092021034e+01
+1.4452732547136412e+01
+9.6087656815995115e-01
+-2.6393145691558267e+01
+-8.8667019991763674e+00
+1.2505124267789263e+00
+-3.3118028362477666e+01
+1.0678891360908114e+00
+9.2061463053841641e-01
+-2.0460485552429414e+01
+1.7871249149194021e+01
+1.1708904366499961e+00
+-2.9715872096113685e+01
+1.4052830990919668e+01
+9.7003775691817851e-01
+-2.9421249158111635e+01
+-9.0074232216162819e+00
+1.1475482007333839e+00
+-3.3956690891400079e+01
+-9.0097866392238668e+00
+1.2086523576197636e+00
+-3.3734350990277271e+01
+1.6242318229610287e+01
+1.5505965258505663e+00
+-4.1630319491879689e+01
+1.4673637954379050e+01
+1.0581996622585714e+00
+-2.8987098082105579e+01
+1.4821629594313961e+01
+9.2957843374398463e-01
+-2.7101362045882421e+01
+1.5592829383471100e+01
+7.4838021097678176e-01
+-2.4072477588636254e+01
+-1.9000059091293664e+00
+8.3352188914510683e-01
+-2.3005558162697064e+01
+1.4336875191498226e+01
+8.7187539842372563e-01
+-2.8185296619284593e+01
+-2.0153240821929828e+00
+7.7260869161310308e-01
+-2.3112177831988397e+01
+-8.1574535166462034e+00
+9.7675726576625188e-01
+-3.3451029341004293e+01
+-8.3887083152224484e+00
+9.4525842576682650e-01
+-3.3817975386600168e+01
+-9.1142137312765517e+00
+8.8576671330252843e-01
+-3.3627684731718475e+01
+1.5686613725629414e+01
+8.1963230120045960e-01
+-2.4076864551143835e+01
+1.5296900068952851e+01
+6.9928946183681751e-01
+-2.3784117836600629e+01
+1.3946439296250919e+01
+9.1772762813055042e-01
+-3.1968504848390253e+01
+1.5273256619675907e+01
+6.8664045428842935e-01
+-2.3873206388989750e+01
+1.5479397850012436e+01
+7.5025160497713961e-01
+-2.5326058911898688e+01
+-2.1440155610782448e+00
+6.7938831621959195e-01
+-2.2995641698529756e+01
+1.4335218025367329e+01
+6.7098590645016365e-01
+-2.8222760877477423e+01
+1.4905401187251810e+01
+7.7130948805184640e-01
+-2.9337096984525370e+01
+1.5650044253616798e+01
+6.3692353135464119e-01
+-2.3851233093687537e+01
+2.0586632437628984e+00
+6.1240923745392772e-01
+-2.0373413871467683e+01
+1.3367971764361961e+01
+6.6743646713431248e-01
+-3.2092194593625990e+01
+5.9191222808676596e+00
+5.8549132845295604e-01
+-2.3360083291676919e+01
+1.4374144038074117e+01
+5.7585555554793610e-01
+-2.7098390372685301e+01
+-1.1345366647345546e+01
+6.1656391629908536e-01
+-3.2979108184096205e+01
+1.4277461410880175e+01
+5.0486603599113644e-01
+-2.8454197022484948e+01
+1.0489539188319461e+00
+5.1040406196784849e-01
+-2.0399794529820106e+01
+1.4483118829938478e+01
+5.3521926805778330e-01
+-2.8285970352046203e+01
+-3.6742575923227188e+00
+5.2006536346085752e-01
+-2.4059591112882142e+01
+-9.6861683199990196e+00
+5.9260984009583173e-01
+-3.3199873365610308e+01
+-2.4297722792537062e+00
+4.8513827313690383e-01
+-2.2899315324450217e+01
+1.4353529857390782e+01
+3.3592853234435066e-01
+-2.8464451386325610e+01
+4.0982146435574371e+00
+4.8790955619995030e-01
+-2.1804430369469017e+01
+1.4472126666431926e+01
+3.4810512180388514e-01
+-2.8652354182871935e+01
+-9.5707099361409735e+00
+3.8684973043571175e-01
+-3.2960632038336755e+01
+-1.5857734036566626e+00
+3.7620994413646430e-01
+-2.2282029364169087e+01
+-1.5683929158075063e+00
+3.6465032101035622e-01
+-2.2213521832480570e+01
+1.5596908972867643e+01
+3.0065663662914699e-01
+-2.4207456559025566e+01
+4.6441127653826969e-01
+2.8579827000822533e-01
+-2.0532975928336327e+01
+1.4367650596890112e+01
+2.4800926248860741e-01
+-3.1379910209038393e+01
+-2.1517211257619828e+00
+2.6334157090456500e-01
+-2.2584852736599053e+01
+3.3124438679686756e+00
+1.9671732640859385e-01
+-2.0705943357750375e+01
+1.4512343872019001e+01
+8.1201387451301718e-02
+-2.7714531486376437e+01
+1.1535239033620692e+00
+2.3211672448851073e-01
+-2.0343034104712672e+01
+1.4620329131798906e+01
+1.0865582225125614e-01
+-2.7487830404723560e+01
+1.4634383134419837e+01
+6.1668160811305293e-02
+-2.7920262178251342e+01
+1.4498264638925962e+01
+8.7828534711720738e-02
+-2.9138337844045331e+01
+1.4560998464494192e+01
+8.7669322943878775e-02
+-2.9249898977376116e+01
+1.4696990134051783e+01
+2.1710956076940451e-02
+-2.7139026783064200e+01
+1.5497359978529964e+01
+5.2241490933238592e-02
+-2.3812316786960977e+01
+1.5883191377104856e+01
+1.1921562930595730e-01
+-2.4701662330576529e+01
+1.5466644892960723e+01
+1.2834798812865604e-02
+-2.3929876598035623e+01
+1.5916754412958573e+01
+9.9688165397593342e-02
+-2.4640901930692419e+01
+1.4471901789682688e+01
+-8.3634243425319624e-02
+-2.9665393897061936e+01
+-1.7630485909722446e+00
+6.0772734809270319e-02
+-2.2165414802402342e+01
+1.5015876479333592e+01
+-6.5763236457553387e-02
+-2.5906341799137547e+01
+1.5027214975089080e+01
+-7.7210843547888916e-02
+-2.5872316648208578e+01
+-6.4893934467078527e+00
+-3.6048592451595474e-02
+-3.2230447950325427e+01
+-6.4627481073051332e+00
+-2.7313986894275690e-02
+-3.2024443366462663e+01
+5.0687929054729464e-01
+8.1770133318769866e-02
+-2.0556207460142051e+01
+7.5161305595797936e+00
+-1.8994624387397983e-02
+-2.4157334770304523e+01
+1.4426567866639394e+01
+-2.3785810743431696e-01
+-2.8157811989428378e+01
+-1.0924696921245825e+01
+-1.6342070484974316e-01
+-2.9421150773271918e+01
+-1.0020521714852130e+01
+-1.3203443561161313e-01
+-3.2166126013286338e+01
+1.5191950046427422e+01
+-1.5212899344570688e-01
+-2.3988639111014699e+01
+1.5661838639997498e+00
+-1.3872485587407540e-04
+-2.0384149005858006e+01
+1.4744644777223172e+01
+-1.8549131529690777e-01
+-2.9748263598440921e+01
+1.4725904455349864e+01
+-2.8653029881153591e-01
+-2.7324388213703838e+01
+1.4995398143030817e+01
+-2.5328202780740200e-01
+-2.6325220389132724e+01
+-5.7123382594574201e-01
+-8.4155286384539160e-02
+-2.1109661721961018e+01
+-1.0670795016409073e+01
+-2.7596157129390342e-01
+-2.9167793262081187e+01
+-3.6876642465853182e+00
+-1.2613362506971834e-01
+-2.3237613542127271e+01
+-1.2896761283682783e+00
+-7.3474387739970587e-02
+-2.2232603489125324e+01
+-9.1426609148171529e+00
+-4.6565159803279360e-01
+-3.1842878094231253e+01
+1.5729964236000335e+01
+-4.2568428011040865e-01
+-2.3923993925653690e+01
+1.4634152362109083e+01
+-5.2836634731029053e-01
+-2.7997846655911349e+01
+-3.4962650659890060e+00
+-2.6719686001192766e-01
+-2.3034835636678704e+01
+-1.1309272518483702e+01
+-5.2673191657020613e-01
+-3.1665725446198390e+01
+-9.0448159222098887e+00
+-6.0171914208034316e-01
+-3.1706609360610830e+01
+-1.0627766720008246e+01
+-6.1956686713616782e-01
+-3.1583476028681435e+01
+-4.8760290371987752e-01
+-3.1965920694714206e-01
+-2.1073796772238577e+01
+-1.1492024505246137e+00
+-3.3478251753081473e-01
+-2.1665121518400895e+01
+1.4639811789196509e+01
+-6.8663307810273400e-01
+-2.9319171953532130e+01
+1.4620332480594330e+01
+-6.5981782247849730e-01
+-2.8262579425380046e+01
+-1.6000738246527128e+01
+-6.1593660174544540e-01
+-3.1466925158747006e+01
+-9.9971637622065863e+00
+-7.1674633304227087e-01
+-3.1444929383276325e+01
+-3.1569160445811657e+00
+-3.9734197788129066e-01
+-2.2857645925083212e+01
+-2.1203915142839307e+00
+-3.9390214060496892e-01
+-2.1979396164848591e+01
+1.4961955662434072e+01
+-6.2613488843028853e-01
+-2.6451754501662951e+01
+1.5050161669210764e+01
+-6.0613521222231737e-01
+-2.6618153086568643e+01
+4.3277667821990171e+00
+-3.8071519905567641e-01
+-2.1319366796390160e+01
+1.5231145621955662e+01
+-5.9664944311030110e-01
+-2.5716067671791734e+01
+-1.7756471959303685e-01
+-4.2714308802782569e-01
+-2.0883866101822139e+01
+1.8174135733154809e+01
+-7.5196157481845893e-01
+-2.9630394874596771e+01
+-1.0098087071333635e+01
+-7.9472836457859353e-01
+-3.1304348444536419e+01
+1.0668632826229807e+00
+-4.4793764586654217e-01
+-2.0396003503410476e+01
+1.5779131262528530e+01
+-7.4547152455243915e-01
+-2.4014421112094222e+01
+-8.9205735675973443e+00
+-7.9211047625631970e-01
+-2.9835068035696565e+01
+-8.9205735675973443e+00
+-7.9211047625631970e-01
+-2.9835068035696565e+01
+6.2435864360851658e+00
+-5.7861144380348106e-01
+-2.3083176668800039e+01
+1.4661444070939663e+01
+-8.7507161178726633e-01
+-2.8940021385012045e+01
+1.7248643848094083e+01
+-8.6921787506068260e-01
+-2.9961712543373952e+01
+4.6960449965609925e+00
+-4.9439736882672469e-01
+-2.3210629147240333e+01
+1.5317254382716646e+01
+-8.0156145282560776e-01
+-2.6765449997240946e+01
+-1.0293601551941105e+01
+-8.6413493293061017e-01
+-3.1378306403330313e+01
+1.5727615966456701e+01
+-7.9802872531037616e-01
+-2.4281298858416509e+01
+1.1068620056364811e+00
+-4.6787753325459402e-01
+-2.0430465847956125e+01
+1.4761691956463702e+01
+-1.0394438233711236e+00
+-2.9006314337463241e+01
+1.5769033327621198e+01
+-8.8674249785098236e-01
+-2.4724022855032132e+01
+-3.8278241166730167e+00
+-7.6784327411017450e-01
+-2.3908515495566427e+01
+5.0887334951573910e+00
+-7.2142389675922558e-01
+-2.1807682239492618e+01
+1.6107069195836822e+01
+-1.0025617655480508e+00
+-2.4039480578239491e+01
+-1.4249897742461473e-01
+-7.8943900118273924e-01
+-2.1019063385588630e+01
+-9.8534075418631897e+00
+-1.2725741083182753e+00
+-3.0779832658773557e+01
+1.4635735260694689e+01
+-1.4558086485348474e+00
+-2.9350259483469465e+01
+1.4707638613909163e+01
+-1.3988010259865256e+00
+-2.8598333743640804e+01
+-7.8776307808269808e+00
+-1.2938738187510161e+00
+-3.0486421405951017e+01
+1.4773524711579636e+01
+-1.3839295625554082e+00
+-2.8417273125995312e+01
+1.2003145941750182e+00
+-8.3126974125461794e-01
+-2.0463328457929741e+01
+2.0664398557611365e+00
+-8.0616562702468531e-01
+-2.0464454088431026e+01
+3.3379342999317410e+00
+-8.7132312622185937e-01
+-2.2248577765800800e+01
+-9.8106372950455825e+00
+-1.4286820548824979e+00
+-3.0513259338416162e+01
+-1.0898333438550070e+01
+-1.4850081941670794e+00
+-3.0628552220212914e+01
+-1.1065794441791860e+01
+-1.4557143057457824e+00
+-3.0660775909807146e+01
+1.7433983822330884e+01
+-1.5373642356651165e+00
+-3.0328761225698422e+01
+1.6519959792517560e+00
+-9.6525574295353611e-01
+-2.0450157341640871e+01
+-9.2058970126743436e+00
+-1.4648889000096752e+00
+-3.0369411398173384e+01
+4.2132335280750938e-01
+-9.5865814925487591e-01
+-2.0789348435935985e+01
+6.4557831351292174e+00
+-1.1379399974455191e+00
+-2.2234584468164712e+01
+1.4722965774965273e+01
+-1.6660480673192666e+00
+-2.8773234224517687e+01
+-9.6987481909427551e+00
+-1.5043503306138237e+00
+-2.8577864349907379e+01
+3.2980379861156801e+00
+-1.0228059277086443e+00
+-2.0861157291805615e+01
+1.5179091539205041e+01
+-1.5984359210512604e+00
+-2.7837245314463448e+01
+6.3949061548541968e+00
+-1.1971265023012756e+00
+-2.2116854396927405e+01
+4.5611685656201360e+00
+-1.0749223208219840e+00
+-2.1516190993938103e+01
+5.1352541138590819e+00
+-1.1560393413934418e+00
+-2.3258297528078067e+01
+1.6600609052012725e+00
+-1.1421977619312571e+00
+-2.0514066964462220e+01
+4.1102582479107550e+00
+-1.1757563496414134e+00
+-2.1038928428913849e+01
+6.4052576883471115e+00
+-1.2559819804611809e+00
+-2.2161923721731366e+01
+3.6090288445585834e+00
+-1.1520424795715321e+00
+-2.2426052191863075e+01
+1.5399894786378026e+01
+-1.7540496193197315e+00
+-2.6464947030166591e+01
+-9.1560197336557125e-01
+-1.2397466482318176e+00
+-2.0909989400613334e+01
+-7.3258035412244960e-01
+-1.3078700992877317e+00
+-2.0700336308685184e+01
+1.1658298237576117e+00
+-1.3325563315138163e+00
+-2.1401735195291618e+01
+-6.9520143421860929e+00
+-2.1304120711182835e+00
+-2.9588472382073551e+01
+-2.2650935690089624e+00
+-1.4838382888915902e+00
+-2.1365647861520607e+01
+-2.8738140044334437e+00
+-1.5280750320564278e+00
+-2.1296107805066665e+01
+3.3746418266192375e+00
+-1.5429958747572368e+00
+-2.0532249003771717e+01
+1.5022736263394188e+01
+-2.5160911668375521e+00
+-2.9258011583684148e+01
+3.7314941224090790e+00
+-1.6358604533953729e+00
+-2.2050825284664683e+01
+1.6201067716054613e+01
+-2.2110647699296884e+00
+-2.4473445490326860e+01
+1.2214886030211189e+00
+-1.6604466081974500e+00
+-2.0133854216127475e+01
+1.1664468003242001e+00
+-1.7048448592987917e+00
+-2.0155785322840071e+01
+1.5914819072824267e+01
+-2.3828058044508920e+00
+-2.5692829841652141e+01
+-2.1550393175743401e+00
+-1.7648654572791480e+00
+-2.1207302144799662e+01
+2.0385094192802025e+00
+-1.7452758984302290e+00
+-2.1265997031947158e+01
+1.5646044563271879e+01
+-2.5963991066693524e+00
+-2.7446101612455774e+01
+1.5327658459154346e+01
+-2.6869256097023815e+00
+-2.8625904872473200e+01
+-1.5344175892092402e+00
+-1.8315337075113447e+00
+-2.1140978657393230e+01
+-2.7460529925807937e+00
+-1.9526516197054204e+00
+-2.2093543207114266e+01
+5.7719538044109040e+00
+-1.9889740019492748e+00
+-2.1406436845044411e+01
+1.5936495831469548e+01
+-2.6193622866499005e+00
+-2.6620543219439483e+01
+7.7920350091192275e-02
+-1.8851454199339250e+00
+-2.0544014097918176e+01
+-7.2804187624443728e-01
+-1.9049337276245921e+00
+-2.0779268665095032e+01
+1.7113538453406640e+01
+-3.0684587182512923e+00
+-3.1105591115575677e+01
+1.9488277210772310e+01
+-2.8780300222054547e+00
+-2.9370711829112619e+01
+1.9488277210772310e+01
+-2.8780300222054547e+00
+-2.9370711829112619e+01
+1.8824207050653445e+01
+-3.0862214631314138e+00
+-2.9815767361112474e+01
+1.7678383780149282e+01
+-3.2170870125788600e+00
+-3.0557809165873095e+01
+1.6005832066272308e+01
+-2.7925907530385929e+00
+-2.6646956363574937e+01
+1.6005832066272308e+01
+-2.7925907530385929e+00
+-2.6646956363574937e+01
+-1.5098335875319056e+00
+-2.0921453464492146e+00
+-2.0711339338995220e+01
+1.5464182157473667e+01
+-3.0362052320811972e+00
+-2.7607443554512166e+01
+1.5772290959694141e+01
+-3.0176243879516531e+00
+-2.6888875097896879e+01
+-7.2327346607741622e-03
+-2.1207663651892457e+00
+-2.0624444445591767e+01
+1.5278790901729201e+01
+-3.0388490118853171e+00
+-2.7160758093995060e+01
+1.0282626184311214e+00
+-2.1643867282628451e+00
+-2.0255148009278724e+01
+2.7504639505274957e+00
+-2.1655019522113852e+00
+-2.0393863201758066e+01
+1.5697898160737038e+01
+-3.2026463835678278e+00
+-2.7767493287046801e+01
+1.5630231076204835e+01
+-3.2143968696456215e+00
+-2.7690769879286041e+01
+1.5697916991039031e+01
+-3.1876404740802475e+00
+-2.7804000818249204e+01
+4.0343184511655000e-01
+-2.2055785284618330e+00
+-2.0376906627058162e+01
+1.9022352150636145e+01
+-3.4340780480401287e+00
+-2.9830721258841429e+01
+-1.9941074302573536e+00
+-2.3536679024604936e+00
+-2.1461537898792063e+01
+2.8089748537622303e+00
+-2.2845515763833322e+00
+-2.0474994694465188e+01
+-8.9672213361629662e+00
+-2.9764167755053803e+00
+-2.6600823704511217e+01
+4.7102835657617010e+00
+-2.3576734051488084e+00
+-2.0557027796573475e+01
+1.5912433940188800e+01
+-3.1199283089031771e+00
+-2.5020612989538488e+01
+4.6889770158727746e+00
+-2.4018520204069609e+00
+-2.0349011488357196e+01
+4.7180297533057018e+00
+-2.4050232248215093e+00
+-2.0507708805826301e+01
+-1.8029940646988154e+00
+-2.5013058009878351e+00
+-2.1378768780416305e+01
+1.8147420839032357e+01
+-3.7372156806221022e+00
+-3.0369104026722617e+01
+-1.9600758125730628e+00
+-2.5472053197068254e+00
+-2.1661050582812852e+01
+-1.2953483414035527e+00
+-2.4331366967668879e+00
+-2.0531000557058835e+01
+4.4892425553145587e+00
+-2.4679305203446900e+00
+-2.0433226360312318e+01
+5.1661151143877317e+00
+-2.5335692542894970e+00
+-2.0540599012405398e+01
+-1.6607525552685415e-01
+-2.4682359097090800e+00
+-2.0216984894202582e+01
+4.5954750238582722e+00
+-2.5586868131948597e+00
+-2.0563844757583475e+01
+1.6596183273361710e+01
+-3.6558565482118044e+00
+-2.8224795766190990e+01
+1.6039559257415924e+01
+-3.5673646833899912e+00
+-2.7694024842005916e+01
+1.6033793078895261e+01
+-3.5757709412153100e+00
+-2.7754471541848837e+01
+4.8180123326869817e-01
+-2.5080984973659386e+00
+-2.0123487514751091e+01
+1.5775426117556785e+01
+-3.6198813192529857e+00
+-2.6678773205951369e+01
+1.6359925062478602e+01
+-3.5763725037976264e+00
+-2.5308421807811175e+01
+1.2706529678085394e+00
+-2.5958043109612174e+00
+-2.0014576306416654e+01
+3.5319065460784769e+00
+-2.6329242523766090e+00
+-2.0145964880117976e+01
+1.1828975834626339e+00
+-2.6121157252544118e+00
+-2.0779826073117665e+01
+3.2738930364282548e+00
+-2.5987136381055409e+00
+-1.9975900947946670e+01
+1.6420220523739175e+01
+-3.6619677610373835e+00
+-2.5185846257928031e+01
+3.6319830652280101e+00
+-2.6572627425515569e+00
+-2.0192105441816757e+01
+-1.2726714331345776e-01
+-2.6611746153755100e+00
+-2.0612504942281934e+01
+-5.3787861041009055e-01
+-2.7573841959180316e+00
+-2.0312645299634958e+01
+6.9049898946443555e-01
+-2.6982352654140889e+00
+-1.9776411977225035e+01
+3.6409497991505479e-01
+-2.6512027479848821e+00
+-1.9891386604329291e+01
+1.3621346705275683e+00
+-2.7227235812164685e+00
+-1.9850404350305023e+01
+1.2590969827733869e+00
+-2.6670181857919943e+00
+-1.9814981210352720e+01
+5.9351511097842180e-01
+-2.8557419350098616e+00
+-2.0538991090993271e+01
+-9.0074415245578514e+00
+-3.9901009606491353e+00
+-2.7111783021358381e+01
+2.1843848040306306e+00
+-3.0095511039928065e+00
+-2.0736472562619841e+01
+1.5693500784364491e+00
+-3.0109880996079927e+00
+-2.0673580121838498e+01
+2.1308720231788270e+00
+-2.9928066430543265e+00
+-1.9858632157438482e+01
+2.6789208863132612e+00
+-3.0922853293881993e+00
+-1.9949561155635237e+01
+-7.0181319577000922e-01
+-3.2434936673784791e+00
+-2.0843840069587255e+01
+-3.7862451119482582e-01
+-3.1836839629578533e+00
+-2.0738658537131226e+01
+1.9428746074474768e+00
+-3.1460010922798300e+00
+-1.9973896740400374e+01
+1.6208937071442708e+01
+-4.2895868511341835e+00
+-2.5377323399805167e+01
+1.6125993491920747e+00
+-3.1634406823741075e+00
+-2.0546472914096736e+01
+-2.1579716518502301e+00
+-3.6351436044020886e+00
+-2.2737059618582368e+01
+-2.8217003540093581e+00
+-3.7910359283986250e+00
+-2.3615848077073593e+01
+-4.1497478238100965e-01
+-3.3882928286195870e+00
+-2.0896271419037259e+01
+1.6126841947418374e+01
+-5.2110956384112157e+00
+-2.8893015083620654e+01
+-2.1068312528113206e-01
+-4.1301664459024465e+00
+-2.1512980282777335e+01
+-6.3842783167072019e+00
+-4.8504690482273363e+00
+-2.4885909973530065e+01
+1.1502205295069999e+01
+-5.1767798549657753e+00
+-2.5434591950619495e+01
+5.1287783497084005e+00
+-4.5715330740862230e+00
+-2.2686993442759007e+01
+5.1113665009611609e+00
+-4.5593680877009781e+00
+-2.2645247699104491e+01
+4.1881345721771677e+00
+-4.7102436913462151e+00
+-2.3623207525549891e+01
+3.8099281522132631e+00
+-4.5699305366602454e+00
+-2.1966016490945123e+01
+1.7341221444132998e+01
+-6.1756167275298646e+00
+-2.8598813730406018e+01
+9.5847736523218323e+00
+-5.6245129566166074e+00
+-2.4957001008046493e+01
+9.4975650906559181e+00
+-5.7551468132048242e+00
+-2.5128083937013631e+01
+2.1788729755698690e+00
+-4.8491016946923162e+00
+-2.1465449706721131e+01
+2.2881557420091929e+00
+-4.9512136594720726e+00
+-2.1696495321756949e+01
+2.6107511727073152e+00
+-5.1408598482380805e+00
+-2.2050261035570283e+01
+5.6284548685528701e+00
+-5.4757212292608557e+00
+-2.2595074343494105e+01
+2.6986038044441072e+00
+-5.3510972909660328e+00
+-2.2180138928022693e+01
+1.5023939970033528e+01
+-6.6042232154326088e+00
+-2.6938503034462187e+01
+8.7571134791461613e-01
+-5.2195841472826094e+00
+-2.1533908121590898e+01
+1.4210895647644165e+01
+-6.7497223526991545e+00
+-2.6395849222642035e+01
+1.8765571562526951e+01
+-7.4013538716465668e+00
+-2.8397309637931535e+01
+1.4067333219997053e+01
+-6.8460628229914828e+00
+-2.6216986482636703e+01
+1.3201411793806747e+01
+-6.4376487379376757e+00
+-2.4689447117316764e+01
+8.4802056618634474e+00
+-6.3837861539120384e+00
+-2.3973008333254324e+01
+1.5785156388666428e+01
+-7.1578614263100002e+00
+-2.6799009809140486e+01
+1.6318520225898833e+01
+-7.2338170895496683e+00
+-2.7022558197879984e+01
+1.4460385421554827e+01
+-7.0433549414330736e+00
+-2.6228065521380969e+01
+1.3247228796313038e+01
+-6.9162239579030782e+00
+-2.5635245614228349e+01
+-7.2880392196415125e+00
+-6.0484114053963118e+00
+-2.2522798957347103e+01
+1.5190051069180248e+01
+-7.3182130130256553e+00
+-2.6332836844999857e+01
+-7.5626214942004211e+00
+-6.4836818936815366e+00
+-2.3768930705947962e+01
+1.3773995807438938e+01
+-7.1925301470676821e+00
+-2.5712225609931949e+01
+4.9527521003463066e+00
+-6.3975713635964251e+00
+-2.2870612575968774e+01
+-7.4252138132747891e-01
+-6.2032069071023797e+00
+-2.2273075168909564e+01
+1.3614852157396124e+01
+-7.3044590128000193e+00
+-2.5526626469714209e+01
+8.2962238527603756e+00
+-6.8715511087150558e+00
+-2.3336062829773692e+01
+-2.5087335525206100e-01
+-6.4294902528200915e+00
+-2.2336476174498188e+01
+1.3037153603782798e+01
+-7.4160400503075499e+00
+-2.5142244045663585e+01
+1.7365833079217623e+00
+-6.4140688126367031e+00
+-2.1773760175201623e+01
+2.1640903003392569e+00
+-6.8106245370088851e+00
+-2.2193843556480971e+01
+-4.0353089302054883e+00
+-6.9589987851473092e+00
+-2.3000360721560998e+01
+1.1417821783491048e+01
+-7.4977902485605812e+00
+-2.4193555895245279e+01
+1.0553159530357341e+01
+-7.2195802476653155e+00
+-2.3143602347580590e+01
+1.7138351899272664e+01
+-8.3502687541763905e+00
+-2.6623201072729469e+01
+1.0726095474286867e+01
+-7.2759113511290900e+00
+-2.3079657711634749e+01
+1.4715234240232698e+01
+-8.0337459406491440e+00
+-2.5461433281149301e+01
+6.7984344004972872e+00
+-7.3430027275792007e+00
+-2.2695858567610347e+01
+6.6450635521057002e+00
+-7.1959627370517509e+00
+-2.2340641897200882e+01
+-3.7971224837453312e+00
+-7.2805258897572527e+00
+-2.2414544347583607e+01
+-5.3091853413590346e+00
+-7.3124639878688287e+00
+-2.2595156594811094e+01
+-3.9780748816497260e+00
+-7.3017192892651277e+00
+-2.2599633802564544e+01
+-2.9257872158275009e+00
+-7.4858357847731609e+00
+-2.2343100003498154e+01
+-2.5428579540147114e+00
+-7.2656321981033036e+00
+-2.1576278881120299e+01
+8.9768528308816098e+00
+-7.7746097617262038e+00
+-2.2067504832043628e+01
+1.2919807317604299e+01
+-8.5129022465241757e+00
+-2.4125725519281854e+01
+1.5194583324264633e+01
+-8.8694754984294484e+00
+-2.5094553761833595e+01
+1.2490901084461425e+01
+-8.4742171950909544e+00
+-2.3744124014018624e+01
+7.9901279076862197e+00
+-7.6918832483100257e+00
+-2.1698964024679761e+01
+1.6658577941949982e+01
+-9.1880950832319783e+00
+-2.5625567142066458e+01
+-2.4163478000442371e+00
+-7.6767827889318907e+00
+-2.1688780601800893e+01
+1.3455841083507615e+01
+-8.7425747148475885e+00
+-2.4162164947632210e+01
+1.3455841083507615e+01
+-8.7425747148475885e+00
+-2.4162164947632210e+01
+-4.5263259298682597e+00
+-7.8403325155871437e+00
+-2.1824904777567287e+01
+-1.4810449395766758e+00
+-7.6523013784507388e+00
+-2.1291978824417953e+01
+-3.1827306952168031e+00
+-7.6185983907170334e+00
+-2.0735946538823026e+01
+8.3818079892726907e+00
+-8.1390947262072260e+00
+-2.1635074417836577e+01
+1.3832484834357199e+01
+-9.1228029829776371e+00
+-2.4071559479136013e+01
+-5.4581121073066816e+00
+-7.4261198019963253e+00
+-1.9744623820846904e+01
+-2.2852134567255131e+00
+-7.9992797913386067e+00
+-2.1472193833560667e+01
+-5.7107021923573900e+00
+-8.1330674820682365e+00
+-2.1585931350268421e+01
+-4.8342427161803476e+00
+-7.6740961670440626e+00
+-2.0369846384933481e+01
+-1.7988986553442137e+00
+-7.8731443879587362e+00
+-2.0855170100255361e+01
+6.1475159774919552e+00
+-8.2652120260877080e+00
+-2.1374763037683724e+01
+-2.4720749061991145e+00
+-8.2493404412124249e+00
+-2.1323333944736451e+01
+2.2645568733009769e-01
+-8.1217002290140865e+00
+-2.0806315388651875e+01
+1.3243713898806446e+01
+-9.2935900498766717e+00
+-2.3582522828934376e+01
+2.6910381849177467e-01
+-8.1175600760292657e+00
+-2.0853682971151571e+01
+9.2700629137718273e+00
+-8.4613150817468714e+00
+-2.1342398156763299e+01
+6.8570386528402039e-01
+-8.3316123263140636e+00
+-2.1182174768452299e+01
+1.6639091654889826e+00
+-8.1680875719190222e+00
+-2.0710157096840373e+01
+-1.0160141956837467e+00
+-8.3899802308915046e+00
+-2.1169902705585550e+01
+1.9084487941861390e+00
+-8.2541803049707685e+00
+-2.0683459409766940e+01
+2.8586558074825996e+00
+-8.2649226933310000e+00
+-2.0828697586584966e+01
+1.0762552977848660e+01
+-9.0421820131078565e+00
+-2.2520935121710266e+01
+2.4038035053974582e-01
+-8.1366351955870364e+00
+-2.0484822304631159e+01
+1.5666592322095938e+00
+-8.2501449079579192e+00
+-2.0711309118142648e+01
+-7.9117839429445946e-01
+-8.1368981413850623e+00
+-2.0426984203644725e+01
+-8.1995099330699961e-01
+-8.3451869746294545e+00
+-2.1083701569202766e+01
+3.4029543445083932e+00
+-8.4645334121305371e+00
+-2.1032106749848325e+01
+3.4317454964909087e+00
+-8.5275755912505549e+00
+-2.1063051285887934e+01
+1.2475337186900584e+01
+-9.3514352902968554e+00
+-2.3096117304970399e+01
+2.4861744064402056e+00
+-8.2615511305217968e+00
+-2.0753347562090546e+01
+7.5257551097344078e-01
+-8.2817876445553686e+00
+-2.0587852866186118e+01
+2.4103801920138350e+00
+-8.3256238299499916e+00
+-2.0615898660049208e+01
+2.2973374720241408e+00
+-8.5725573116313694e+00
+-2.1011078286354021e+01
+1.5144531710604278e-01
+-8.5597932412283111e+00
+-2.0970892587693790e+01
+1.3513975446767523e+01
+-9.6569707042786064e+00
+-2.3445650250131528e+01
+-1.3407244318853186e+00
+-8.2287542080249150e+00
+-2.0240673381883315e+01
+-1.3407244318853186e+00
+-8.2287542080249150e+00
+-2.0240673381883315e+01
+8.2286389510347870e+00
+-8.8689278742577073e+00
+-2.1531613911683454e+01
+1.1052775192486633e+01
+-9.3339740832216709e+00
+-2.2411422692091953e+01
+8.5286079847051397e+00
+-9.0090179971336770e+00
+-2.1495500438095764e+01
+1.3155776987826568e+01
+-9.7346854411098445e+00
+-2.3177672023081524e+01
+1.3155776987826568e+01
+-9.7346854411098445e+00
+-2.3177672023081524e+01
+-1.4496885667530834e+00
+-8.3401056873651989e+00
+-2.0001664396152869e+01
+-1.4967711929609779e+00
+-8.5980144341380864e+00
+-2.0907401365894419e+01
+-1.2210588247516101e+00
+-8.5960964034303711e+00
+-2.0737855166167023e+01
+-1.1842501274723440e+00
+-8.3536670572172564e+00
+-2.0033515988261229e+01
+1.1469710810403965e+01
+-9.4973702176083705e+00
+-2.2305500371882999e+01
+6.5642489715722823e+00
+-8.8168919098373397e+00
+-2.0799915800362324e+01
+1.2843740955378301e+01
+-9.7595720952385285e+00
+-2.2986507201287903e+01
+8.9454900489853006e-01
+-8.4956981827423856e+00
+-2.0207833879645289e+01
+-1.2416007763573578e+00
+-8.6336829203123244e+00
+-2.0681635939053272e+01
+1.5035671814528484e+01
+2.5384347308333513e+01
+-5.4860999567429964e+01
+-1.4995647393007008e+01
+1.6502650629534855e+01
+-3.4777046163355621e+01
+3.1765231819745177e+00
+2.1732165479654110e+01
+-4.7299916212037338e+01
+3.1452920733363490e+00
+2.1673614348616482e+01
+-4.7158169595292755e+01
+1.6893709752575813e+01
+2.5346704177487887e+01
+-5.5092191372399959e+01
+2.7370694417686718e+00
+2.1352817203930879e+01
+-4.6397283067902777e+01
+-1.2386304040873421e+01
+1.6486078488167205e+01
+-3.5358487111494256e+01
+1.0899589827140385e+01
+2.3606331951103630e+01
+-5.1799491562649735e+01
+1.9589916814740498e+00
+2.1060573071848466e+01
+-4.6203100584801355e+01
+-4.7468280766367414e+01
+3.8092395093147559e+01
+-8.3981457962639368e+01
+4.8821905867817894e-01
+2.0920986725680311e+01
+-4.6628526871117778e+01
+1.3226202123738080e+01
+1.4795296772596298e+01
+-3.1542924570135895e+01
+1.5277975980033069e+01
+2.4611536566365015e+01
+-5.4656280909225686e+01
+-9.7279624004567857e+00
+1.7467217965096928e+01
+-3.8614417956520263e+01
+2.0447122257885720e+01
+2.6158454422166699e+01
+-5.8220723740847113e+01
+5.7517024079907229e+00
+2.1770866676008879e+01
+-4.8755722705823935e+01
+1.9187690162611414e+01
+2.5853560012083452e+01
+-5.8181993701598500e+01
+1.3185057412225742e+01
+1.4616762847210081e+01
+-3.1756757207827178e+01
+-1.0495233357717904e+00
+1.9857878318782507e+01
+-4.4758080224558263e+01
+-1.0596466741711619e+00
+1.9777775023618503e+01
+-4.4582963192341076e+01
+-1.3479570460333337e+00
+1.9761962963153227e+01
+-4.4383296165813903e+01
+1.7576645252278801e+01
+2.4970272415026230e+01
+-5.6434186155681978e+01
+2.5918833132328587e+01
+3.2676998362736128e+01
+-7.4010663926147970e+01
+-1.0329233264813428e+01
+1.7022823430165321e+01
+-3.8079161253298118e+01
+1.3947167625682203e+01
+1.4774006849230069e+01
+-3.2619719102385474e+01
+1.7342733331881707e+01
+2.4833016991912849e+01
+-5.6716328308887256e+01
+9.4137718906785608e+00
+2.2439829063205142e+01
+-5.1694616729449962e+01
+1.7058325105235159e+01
+2.4738780833325297e+01
+-5.6612223819540802e+01
+1.3436842433617974e+01
+1.3922471759850668e+01
+-3.0632034633477843e+01
+1.6714088222976130e+01
+2.4528737400861829e+01
+-5.6435696359666970e+01
+-1.2655529946104892e+01
+1.6011162535848147e+01
+-3.6047848188004316e+01
+2.3815638929879230e+00
+2.0589601501991254e+01
+-4.7447219688460962e+01
+1.3622627733696767e+01
+1.3789942180860178e+01
+-3.0346577953911115e+01
+9.3209787772593415e+00
+2.4247792765025761e+01
+-5.6239011061796191e+01
+1.2583643625727895e+01
+1.4959903999708752e+01
+-3.3488942871723566e+01
+1.1886217453808385e+01
+1.1569668282079325e+01
+-2.5250294139268320e+01
+1.0684749807528528e+01
+2.4455567473886457e+01
+-5.7222248376444121e+01
+1.8305867778622602e+01
+2.6469050586681554e+01
+-6.1561883604817098e+01
+-1.8182669698687505e+01
+1.6013112762174558e+01
+-3.6312595946184672e+01
+1.1911758073679783e+01
+1.1400511369166116e+01
+-2.5213263735518058e+01
+1.7348630909274179e+00
+2.0016308909562927e+01
+-4.6977124446251224e+01
+1.2654913822345707e+01
+1.1172926414387170e+01
+-2.4991829182852275e+01
+-9.6175543159336723e+00
+1.6612207882283990e+01
+-3.9212287319039454e+01
+-5.9038255765226237e+00
+1.7443438171756593e+01
+-4.1399824544328887e+01
+-5.8615449972158116e+00
+1.7698900897931864e+01
+-4.2267441544610456e+01
+-3.4739563863955949e+00
+1.8236021471017892e+01
+-4.3479916235374986e+01
+-3.7827061472740682e+00
+1.8203689899819800e+01
+-4.3507543801998899e+01
+1.9883950221915999e+01
+2.4930166707166737e+01
+-6.0450358109873669e+01
+-1.2521981095426094e+01
+1.5467965318571760e+01
+-3.7121930078519320e+01
+1.2875156701639588e+01
+1.0597437531280033e+01
+-2.4110368555621680e+01
+1.3346534929972201e+01
+1.3612593713715091e+01
+-3.2322803140298220e+01
+6.2254682383169975e+00
+2.1154109264126667e+01
+-5.2026211151716559e+01
+-6.4982367521627327e-01
+1.8965793034647181e+01
+-4.7072256771332846e+01
+-2.8103723119622416e+01
+2.2170625362665636e+01
+-5.3741848908760318e+01
+-9.6164762224890277e-01
+1.8551608274215120e+01
+-4.6082667918949852e+01
+-9.7366571934500279e-01
+1.8550141412037497e+01
+-4.6051472087982148e+01
+-3.1010220130885231e+00
+1.7828077840840855e+01
+-4.4602742710782508e+01
+-7.8386485970385389e-01
+1.8395015358693350e+01
+-4.6234317180129004e+01
+-1.0371521323639337e+01
+1.5947302747283508e+01
+-3.9529161519491190e+01
+1.3723427998438501e+01
+1.3015300958820079e+01
+-3.1627812521957356e+01
+2.0945483354439034e+01
+2.6299463918294308e+01
+-6.7280064114704217e+01
+1.5861554559035864e+00
+1.9125620732329693e+01
+-4.8655736342323408e+01
+1.3386068198801254e+01
+1.0400813092662670e+01
+-2.4661408990722389e+01
+-2.2042263545238980e+00
+1.8243280108543658e+01
+-4.6944241781107330e+01
+2.2415150694682717e+00
+1.9055044673326783e+01
+-4.8804613345074706e+01
+1.3743803757397576e+01
+9.9247084888212349e+00
+-2.3507436811237135e+01
+1.5770915330598565e+00
+1.8760533416360438e+01
+-4.8482802452193923e+01
+1.3735529622712800e+01
+1.2568312897718981e+01
+-3.1118502481446004e+01
+-1.8187310855090979e+00
+1.7960684273308221e+01
+-4.6491198409917203e+01
+-1.8267053168068945e+00
+1.7980012148910347e+01
+-4.6527554521322521e+01
+1.2602000622734158e+01
+1.0366388318894826e+01
+-2.5157885711173247e+01
+1.3809785015896376e+01
+9.8320399661789359e+00
+-2.3515820322743178e+01
+1.2731782189506241e+01
+9.9517175295576994e+00
+-2.4210045397731321e+01
+7.9992742124590945e+00
+2.0260949250813947e+01
+-5.2985348128890735e+01
+1.2717947738102437e+01
+2.3476831979892886e+01
+-6.1381781725501469e+01
+1.4068484918285733e+01
+9.6804471765275135e+00
+-2.3416007293729439e+01
+2.2017747810180299e-01
+1.8215657267402531e+01
+-4.7824330340924298e+01
+-1.4271842227063694e+00
+1.7965246029487858e+01
+-4.7385370632482605e+01
+1.5480666025121106e+01
+2.2162988366302301e+01
+-5.7932560855406507e+01
+1.3879516173694080e+01
+9.7338150562515846e+00
+-2.3501508536846075e+01
+1.3857162657426956e+01
+9.3199977695996576e+00
+-2.2463547634125316e+01
+1.3997352043620099e+01
+9.5248595153762849e+00
+-2.3102944775469094e+01
+1.4028597980995862e+01
+9.3897085521243451e+00
+-2.2610467061779548e+01
+1.4028597980995862e+01
+9.3897085521243451e+00
+-2.2610467061779548e+01
+1.3212820740501606e+01
+9.4419863486859921e+00
+-2.3048160649757392e+01
+1.4107921476208226e+01
+9.3703765770753744e+00
+-2.2979202827572944e+01
+1.3810594170822661e+01
+1.2898247204030044e+01
+-3.3403186955254540e+01
+1.4142671426988993e+01
+9.3149647441298367e+00
+-2.2880259754226767e+01
+-1.2500948236492105e+01
+1.4521493444382838e+01
+-3.8838578930395947e+01
+1.3636232105749666e+01
+8.6541532597891884e+00
+-2.1258554456948008e+01
+1.3642494453100330e+01
+2.1178580580482194e+01
+-5.7499435102042675e+01
+1.3305667505908712e+01
+9.1858378634863804e+00
+-2.2992861264650497e+01
+1.4294470291271717e+01
+8.9898749453886495e+00
+-2.2174262947947366e+01
+1.3764222591191540e+01
+9.2648202443054757e+00
+-2.3380628439947195e+01
+1.4315756820701141e+01
+9.1336718338709115e+00
+-2.2678027126691557e+01
+1.1762683127075029e+01
+9.9214448915759714e+00
+-2.5075434617988940e+01
+1.4279890717128378e+01
+8.9325030448424609e+00
+-2.2238471519980816e+01
+-1.6360170711215865e+01
+1.4627330241127206e+01
+-3.9374955014060419e+01
+1.3477504729971326e+01
+8.9079950405661172e+00
+-2.2712194838855545e+01
+1.4259808724724701e+01
+1.3698571932227026e+01
+-3.7079197373056523e+01
+1.4576086824538574e+01
+9.1228244992352057e+00
+-2.3134654795658012e+01
+1.2854193112269089e+01
+1.2838159800472930e+01
+-3.4757581850935992e+01
+1.3762913911377080e+01
+1.3616400702259721e+01
+-3.6838775668745065e+01
+1.2787854850422036e+01
+1.2786558079332268e+01
+-3.4690350360308706e+01
+-2.7333718008280552e+01
+1.9538778397708555e+01
+-5.3802577816985618e+01
+1.3934910084103960e+01
+8.2311313235323080e+00
+-2.0915996533063435e+01
+1.4052914031647662e-01
+1.7324407317228346e+01
+-4.8977093214149669e+01
+-9.4099553969967271e+00
+1.4713952794004905e+01
+-4.1476349679644564e+01
+1.4524461569155795e+01
+8.5841686773330768e+00
+-2.1970527637559609e+01
+1.4640896047883098e+01
+8.6119016392144268e+00
+-2.1930261129392360e+01
+-9.8195871599688704e+00
+1.4658512672777974e+01
+-4.1462739037166820e+01
+1.3066353398942685e+01
+1.2309506371199909e+01
+-3.3687891307653011e+01
+1.5098556824462040e+01
+8.8991650999803316e+00
+-2.3144072590594277e+01
+1.4694169854262968e+01
+8.3540975918196558e+00
+-2.1704518705681870e+01
+1.3126203089595229e+01
+1.3038522834787535e+01
+-3.6474998217898843e+01
+6.8893603556068536e-02
+1.7054018402331529e+01
+-4.9218511599542282e+01
+1.2584115318332749e+01
+9.2030246844748156e+00
+-2.4611849469106275e+01
+-1.1995268953825825e+01
+1.3985972418469331e+01
+-4.0192224632608024e+01
+1.2774721910251666e+01
+1.2291793416633659e+01
+-3.4817658535974083e+01
+1.2743452243548699e+01
+1.2254849465992248e+01
+-3.4734588323254684e+01
+-3.7579215207543246e+00
+1.5856496765360705e+01
+-4.6211262453897227e+01
+-4.9447282507230934e+00
+1.6066843330953240e+01
+-4.7190342638589570e+01
+1.3986320363009517e+01
+1.2912221289607015e+01
+-3.7063549743639115e+01
+1.2526860676726667e+01
+9.5983644653912208e+00
+-2.6527040240967938e+01
+1.2109854265241589e+01
+9.5926050786375345e+00
+-2.6265339850166455e+01
+-6.9819997271122922e+00
+1.4976172237968143e+01
+-4.4108506686482848e+01
+1.2394190741284731e+01
+1.2596140455070756e+01
+-3.6225626446848281e+01
+1.3068915436040138e+01
+1.1746170526912865e+01
+-3.3434262491595184e+01
+1.1978501384348631e+01
+9.4149953407361604e+00
+-2.6241396768637959e+01
+-7.4421512435249610e+00
+1.4916506884271175e+01
+-4.4097463038421679e+01
+1.2565699190574124e+01
+9.5165017496232309e+00
+-2.6719026528075609e+01
+7.8617892510416594e+00
+1.8321079621305735e+01
+-5.5218781404807004e+01
+1.2055160758246739e+01
+9.2452182557443123e+00
+-2.6055553358598107e+01
+1.3275558005920285e+01
+8.8624236218582233e+00
+-2.4807797168652993e+01
+1.3038138725665613e+01
+9.2016222851275806e+00
+-2.5851680419668256e+01
+3.9186754806955486e+00
+1.7205218827841666e+01
+-5.2911257500255175e+01
+-1.4400507160610033e+01
+1.2896235261794240e+01
+-3.9019767500334289e+01
+-1.4606141660084861e+01
+1.2811646451270853e+01
+-3.8616548795892577e+01
+1.2886427910971443e+01
+8.6938666441142960e+00
+-2.5379979611484334e+01
+-1.0536005615273101e+01
+1.3921165423552520e+01
+-4.2979966663460068e+01
+1.4184704686487830e+01
+7.4972229812316984e+00
+-2.1096178694432457e+01
+-1.5006227173942174e+01
+1.1828622358813938e+01
+-3.6106702098557115e+01
+1.3001699798238020e+01
+1.1136279468980627e+01
+-3.4359824519821267e+01
+5.6100235726791003e-01
+1.5983501814558466e+01
+-5.1271761564022299e+01
+-8.5905285198327075e+00
+1.3850062852330232e+01
+-4.4063972913313279e+01
+1.3188503474218294e+01
+1.1091835442909090e+01
+-3.4303872317399083e+01
+1.3805969231205200e+01
+7.9055014113843711e+00
+-2.3724870396710308e+01
+1.4359273589503960e+01
+8.0211913744194927e+00
+-2.3602987026464472e+01
+-1.6751664163403042e+01
+1.2525383306256172e+01
+-3.9376714281375001e+01
+-1.6588443910705461e+01
+1.2311272355648287e+01
+-3.8863899455580984e+01
+1.2664436346951160e+01
+8.4736887687505433e+00
+-2.5615564778420655e+01
+1.1346863304292485e+00
+1.6028985391332391e+01
+-5.2335865042732344e+01
+1.9983388791203410e+01
+1.9481863778693715e+01
+-6.2795909328016648e+01
+-2.5598766865214735e+00
+1.4230820345621401e+01
+-4.6335300027242205e+01
+2.6105561488828699e-01
+1.5662543815156541e+01
+-5.1597408265511866e+01
+1.3216232339799179e+01
+1.0632751444214218e+01
+-3.3693116943138079e+01
+-1.5845366703730100e+01
+1.2134823393851304e+01
+-3.8768065524011625e+01
+-1.6058552250126308e+01
+1.2450971933867894e+01
+-3.9614392666267328e+01
+-3.1030377199560277e+01
+1.7951835237532393e+01
+-5.8123675560467085e+01
+1.0712708365485837e+00
+1.6145265831096388e+01
+-5.3375821637592686e+01
+-7.0128800635045412e+00
+1.3813696589929068e+01
+-4.5593662904699229e+01
+1.3303295646036815e+01
+1.0468726272367663e+01
+-3.3531113437106434e+01
+1.3159287263196472e+01
+8.5206400242253970e+00
+-2.6347234126102702e+01
+1.2596524564315184e+01
+1.1474579617899851e+01
+-3.6744573140285389e+01
+1.2011714401320505e+01
+8.5314876241253330e+00
+-2.6998012965613299e+01
+1.1888618178248603e+01
+8.5535650940526686e+00
+-2.6867292979357885e+01
+1.3997813396769496e+01
+1.1047044879371406e+01
+-3.5834349922091299e+01
+5.2562345123315435e-01
+1.5534086783901207e+01
+-5.2101022194234545e+01
+1.3436289600694542e+01
+1.0342963162369898e+01
+-3.3461452632680469e+01
+1.0577864097707790e+00
+1.5426381370060634e+01
+-5.2336479410195885e+01
+-1.1686043899032209e-01
+1.5249425541491238e+01
+-5.1701029946253016e+01
+1.2822026624243732e+01
+8.1140425677813379e+00
+-2.5637755922081496e+01
+1.3085169620898288e+01
+7.5660692132081451e+00
+-2.4354072912626567e+01
+1.4230959078332171e+01
+7.6088088915866479e+00
+-2.3962089705977757e+01
+1.4318824234361859e+01
+7.6584644647858262e+00
+-2.3922959309155978e+01
+1.6918551551158541e-03
+1.5136234067441816e+01
+-5.2011792898780996e+01
+-7.3380898761408142e+00
+1.3441249809222048e+01
+-4.6220729035819900e+01
+-6.9667537085758910e+00
+1.3297926325074421e+01
+-4.6074696252908709e+01
+-6.9521158104948135e+00
+1.3248436628630303e+01
+-4.5978815310185261e+01
+-3.0114097528679466e+01
+1.6670552805518241e+01
+-5.6978435324667849e+01
+-1.2390409799086768e+01
+1.2017002067617060e+01
+-4.1630638608375307e+01
+-5.8128913577882884e+00
+1.3646154822538829e+01
+-4.7758201793385155e+01
+-5.8415039377444584e+00
+1.3641478527630028e+01
+-4.7659181331363854e+01
+-1.1069683405261447e+01
+1.2291533439335456e+01
+-4.2943970206475655e+01
+-7.2971037324754509e+00
+1.3057704395129271e+01
+-4.6339663052829728e+01
+-1.3380776456698326e+01
+1.1332652311765100e+01
+-4.0213248735887298e+01
+1.1891450724119391e+01
+8.1438650322635677e+00
+-2.7940363606981411e+01
+-1.2962432752841291e+01
+1.2267174865974388e+01
+-4.3530668012855685e+01
+-4.4649865318350690e+00
+1.3466880297287005e+01
+-4.9247623097333225e+01
+-9.9391967780837991e+00
+1.2121759468293968e+01
+-4.4136685297860012e+01
+1.3829098211843920e+01
+6.5956263872041205e+00
+-2.2599668216385428e+01
+-1.6947346407334535e+01
+1.1350758326864019e+01
+-4.0882785769316577e+01
+-1.7205030715825565e+01
+1.1298921492921483e+01
+-4.0911484665495436e+01
+1.2103655259342329e+01
+7.7567541404972049e+00
+-2.7036109623199700e+01
+1.2106624862185075e+01
+7.7581965171976783e+00
+-2.7045560471899915e+01
+1.2091882753303461e+01
+7.8112860527975512e+00
+-2.7274918378631298e+01
+1.4116180419632762e+01
+6.5933523301571961e+00
+-2.2712190545727267e+01
+-1.3434479004352466e+01
+1.1257265050267327e+01
+-4.1373980025247782e+01
+2.5503683186704929e+00
+1.3769551211145901e+01
+-5.1432972122171570e+01
+1.2223240939231870e+01
+7.6295921140316381e+00
+-2.7140994932064096e+01
+-1.2428001826197088e+01
+1.1619678436000283e+01
+-4.3243679562456371e+01
+1.2889650787498141e+01
+7.3190576409926615e+00
+-2.5945256443351898e+01
+1.2982968594756860e+01
+7.3723810307407485e+00
+-2.6092327579942317e+01
+-7.1290718470303664e+00
+1.2517381286028794e+01
+-4.7315059785082191e+01
+1.2658161609028337e+01
+7.9945894222233127e+00
+-2.8285134356341167e+01
+1.5536928266510683e+01
+1.3468950235695516e+01
+-5.0294003860962924e+01
+-1.5970411167709099e+01
+1.1074710133984667e+01
+-4.1259925806977876e+01
+1.3869557100911965e+01
+6.3899335824482106e+00
+-2.2643248029177183e+01
+1.3333300346120424e+01
+1.0216475970857076e+01
+-3.8177788115519284e+01
+-1.3900299243355324e+01
+1.0750258503750523e+01
+-4.1309244949476351e+01
+1.2307991871752886e+01
+7.3846116488478950e+00
+-2.6758138081022349e+01
+-6.5845630908804802e+00
+1.2078264880819743e+01
+-4.7290425106888918e+01
+1.4553186569869773e+01
+1.0525969426796660e+01
+-4.0946131924574736e+01
+1.3889760176746503e+01
+9.1042705838726423e+00
+-3.5280042819468655e+01
+1.5648071394086907e+01
+1.0186640480811917e+01
+-3.9547491218550128e+01
+1.4371494223586687e+01
+6.6434205872792793e+00
+-2.4228129039544587e+01
+6.9577986328809807e-02
+1.2356357179419820e+01
+-4.9521919226146082e+01
+-1.7340005683361575e+01
+1.0185205327684560e+01
+-3.9686370204430105e+01
+2.6902166179031828e+00
+1.2125753300734006e+01
+-4.8368847928488627e+01
+1.3818432561863302e+01
+6.3816967556774307e+00
+-2.4199897079501838e+01
+-1.3554169581989541e+01
+9.8458013819291761e+00
+-4.0161330559924259e+01
+1.2609827482682205e+01
+7.0473592814474388e+00
+-2.7374496138740501e+01
+1.3274754849095631e+01
+9.5010177220547813e+00
+-3.8412641624370323e+01
+2.2712832073002471e+00
+1.1511449450443271e+01
+-4.8276141841054965e+01
+-1.2724579866093327e+01
+1.0850069058442983e+01
+-4.4671211332940516e+01
+1.4992713000564294e+01
+6.3225790023479291e+00
+-2.4008290777059667e+01
+1.4639911099978383e+01
+5.7902489441441478e+00
+-2.2373229937677038e+01
+1.4170172899020649e+01
+8.5076848286146127e+00
+-3.5347379894057752e+01
+-1.7021433686957522e+01
+1.0225312308127357e+01
+-4.2008389214365934e+01
+1.3999100993555301e+01
+8.5513816060898851e+00
+-3.5678873944275580e+01
+1.4159016516706515e+01
+8.6260116837619343e+00
+-3.5893120725730043e+01
+1.4692227980883120e+01
+5.7028448047487270e+00
+-2.2279429892093390e+01
+-1.2783138636116565e+01
+1.0507813206481995e+01
+-4.4670869792082676e+01
+-1.7146646847145451e+01
+1.0068406796298827e+01
+-4.2803175631393792e+01
+1.2411344433834431e+01
+6.6743127894975842e+00
+-2.7895206142629746e+01
+1.4187972951361356e+01
+6.1768835886507416e+00
+-2.4718622113687172e+01
+1.3917242621062009e+01
+8.6014895014081336e+00
+-3.6722545329495766e+01
+-1.2074973559326121e+01
+9.5401768107113032e+00
+-4.1663800500235205e+01
+-1.2681753209074328e+01
+1.0178793885442333e+01
+-4.4386060159592077e+01
+7.7261970769841817e+00
+1.0751261174178062e+01
+-4.7136442912993061e+01
+1.3918392685003891e+01
+5.8686517010558159e+00
+-2.3578356568452566e+01
+-1.6771050401585093e+01
+9.8597488036955756e+00
+-4.3699224500881655e+01
+1.3555293844896530e+01
+6.3239960766811620e+00
+-2.6788763088040557e+01
+1.2998807392634463e+01
+6.1779080863577462e+00
+-2.6475475793333153e+01
+2.7811843573417421e+00
+9.8963900320245237e+00
+-4.4729004827552551e+01
+1.4601890018004115e+01
+7.0722276041659953e+00
+-3.1121688732878368e+01
+1.2836852999542794e+01
+6.3073186930866552e+00
+-2.7507528360025841e+01
+1.2320885981051205e+01
+6.2790694623523002e+00
+-2.6792728060488141e+01
+2.5265817982911756e+00
+1.0145598588845758e+01
+-4.6464272632702638e+01
+1.2671510907699309e+01
+6.4371991081036803e+00
+-2.8455810832712260e+01
+-6.2433086267045121e+00
+1.0079567494075864e+01
+-4.6694558838404042e+01
+1.2564551420494318e+01
+6.6218109046838007e+00
+-2.9270569618430599e+01
+1.2462453497561761e+01
+6.5475144676461010e+00
+-2.9116155876611458e+01
+-1.2846449193129478e+01
+8.7336979227135814e+00
+-4.0818354055787836e+01
+1.3880787185747526e+01
+5.6363660372030866e+00
+-2.4500224525020968e+01
+-1.6435791040231909e+01
+9.1239039693951725e+00
+-4.1961822575893144e+01
+1.2906011725190801e+01
+6.1102887550976783e+00
+-2.7699452160495600e+01
+-1.4082054122038182e+01
+7.8125374959186153e+00
+-3.7230093512536413e+01
+1.3904449862280842e+01
+5.5332668745451592e+00
+-2.4579917812427887e+01
+7.5000099885404339e+00
+9.4888834192070561e+00
+-4.5330712302591749e+01
+-6.8211755384808912e+00
+9.3402751645781628e+00
+-4.5066479550291291e+01
+-1.6020503114200519e+01
+9.1537195476020905e+00
+-4.3519036028164741e+01
+-1.4183988386197267e+01
+7.7669306709304387e+00
+-3.7772033990665449e+01
+-1.3637403817554352e+01
+9.2954582135636930e+00
+-4.5285160508071925e+01
+1.9409730422098712e+00
+9.2488495250025995e+00
+-4.5308535360701143e+01
+-1.0080969851844690e+00
+8.8816417276615951e+00
+-4.4335275418668019e+01
+-1.0673696529266978e+00
+9.1490005583094955e+00
+-4.4948747992964563e+01
+-5.5127598825244295e+00
+8.8420468247748936e+00
+-4.4430314389625316e+01
+1.4622984826142586e+01
+4.7130247561488412e+00
+-2.2256106826504872e+01
+3.6261343482421474e-03
+8.1646985254137441e+00
+-4.3811255152588522e+01
+-2.6854949665417094e-01
+8.0703463606943036e+00
+-4.3689228037364522e+01
+1.4726585205184382e+00
+7.9857531210731620e+00
+-4.2934774818314651e+01
+1.3091620000811588e+01
+5.2530230845060650e+00
+-2.7455336241360182e+01
+-1.3042673190317358e+00
+7.9986980122350149e+00
+-4.3852816495901465e+01
+1.3087203465161183e+01
+5.2246386026648919e+00
+-2.7670788681302788e+01
+-6.4476993188308473e-01
+7.7650740991341003e+00
+-4.3306712012640595e+01
+-6.0207988887828801e-01
+7.6226914952395317e+00
+-4.3097728994138521e+01
+-7.6542446220871507e-01
+7.5714042867557279e+00
+-4.3007375121324010e+01
+1.2387309937510921e+01
+5.2345116732133032e+00
+-2.8848340572301090e+01
+1.2309773232584224e+01
+5.2216126185733174e+00
+-2.8752223351874051e+01
+1.2862261197146614e+01
+4.9867132026808472e+00
+-2.8267169930390605e+01
+2.2498704849956308e+00
+4.4427739383219471e+00
+-2.4976875099868966e+01
+1.2785640995512713e+01
+4.9660235299212596e+00
+-2.8815899422383218e+01
+1.4819029110560034e+01
+3.9885337188638896e+00
+-2.2650817990583501e+01
+1.2907329266488444e+01
+4.7578355858816517e+00
+-2.8425999077082682e+01
+1.4941421490380874e+01
+4.1638008623526197e+00
+-2.3612946072843538e+01
+-9.9666589668762509e+00
+6.4470452228536805e+00
+-4.1441732092984182e+01
+1.5930035320734511e+01
+4.8040036817969369e+00
+-2.9720386539953520e+01
+-1.5944838443523703e+00
+6.4578569917700843e+00
+-4.1255642105659533e+01
+-1.6228912955798787e+00
+6.5008757911764175e+00
+-4.1344535859103779e+01
+1.5998703004498756e+01
+4.6793986498773883e+00
+-2.9568248821240836e+01
+-2.8268935167007281e+00
+6.0984013220645492e+00
+-4.0774556336775056e+01
+-3.3377913954642904e+00
+6.0505887730789825e+00
+-4.0631243117050047e+01
+3.0868134849285433e+00
+3.6350282233062465e+00
+-2.3295212030255268e+01
+1.2584388827922165e+01
+6.0810817190484210e+00
+-4.1156587397423799e+01
+1.2850180152801475e+01
+5.0033226982503258e+00
+-3.3285186778413056e+01
+1.5083876568546545e+01
+3.9116616588046829e+00
+-2.4498980758000574e+01
+1.4624079492295706e+01
+3.7954206801461714e+00
+-2.3790811198379636e+01
+-7.0796774305433781e+00
+5.8209685759205838e+00
+-4.0159414084421385e+01
+1.4942326266945159e+01
+3.5316617114541877e+00
+-2.2536836480042620e+01
+1.4921124558548788e+01
+3.6647414121808382e+00
+-2.3729013098504247e+01
+1.6246097097732289e+01
+4.4049289395963571e+00
+-2.9339820488235613e+01
+-3.4973627211375171e+00
+5.9017921504015494e+00
+-4.0511669197630653e+01
+-3.4532404180300618e+00
+5.8404227548736012e+00
+-4.0473695236498273e+01
+1.3825839708090346e+01
+3.9343092268109974e+00
+-2.6244244182235949e+01
+1.3296716898195688e+01
+4.0382508691305308e+00
+-2.7186505155133911e+01
+1.3207695746224863e+01
+4.0833690223574797e+00
+-2.7995695120900237e+01
+3.2999823194303182e+00
+3.4289131098424526e+00
+-2.3518453068562600e+01
+-5.4349009723846295e+00
+5.6941516635086336e+00
+-4.0702049136046739e+01
+-3.5586771273491631e+00
+5.5218995749581108e+00
+-4.0025378651245809e+01
+-3.7737773038131541e+00
+5.3382178787534675e+00
+-3.9587374092381594e+01
+1.3846679268293185e+01
+3.7449882219439123e+00
+-2.6420249614062097e+01
+1.4064948920554672e+01
+3.6678877043260760e+00
+-2.5733889686579516e+01
+-3.6625789012471226e+00
+5.3852988361828480e+00
+-3.9823886270909746e+01
+-3.6365366580005305e+00
+5.3496765170984748e+00
+-3.9803092524072589e+01
+-6.5574377917386757e+00
+5.2589382783138481e+00
+-3.9459759691303120e+01
+1.4077473865128889e+01
+3.7966340830482586e+00
+-2.7021401208053472e+01
+-8.3269450277451789e+00
+5.1299267197604550e+00
+-3.9174010427777880e+01
+1.4727030769687294e+01
+3.2948659475605475e+00
+-2.3494239992332691e+01
+1.3964654106140907e+01
+3.6235767139390673e+00
+-2.6418917342115364e+01
+1.4622841004220442e+01
+3.3753186353163880e+00
+-2.4181483200758080e+01
+1.3417840834024972e+01
+3.6588616157071567e+00
+-2.7344406233915933e+01
+1.4346253025738346e+01
+3.5174207072187205e+00
+-2.5726127832687347e+01
+-6.2325512914600694e+00
+4.8270114643743254e+00
+-3.8523015592030134e+01
+-3.9465986050720214e-01
+3.1039909032238855e+00
+-2.3109041204368978e+01
+-3.9129252264283326e-01
+3.0475807605761664e+00
+-2.2746757543981786e+01
+1.4076872778877732e+01
+3.5372042021600572e+00
+-2.6529856945671618e+01
+-3.6356852104599606e+00
+5.0785119022985983e+00
+-3.9507141769305242e+01
+-3.6486426227803292e+00
+5.0532694859848002e+00
+-3.9456225244669355e+01
+1.4269482748804974e+01
+3.3879517869233822e+00
+-2.5703160801540889e+01
+-2.0986127470664179e-01
+2.9933214532620878e+00
+-2.2344187021580357e+01
+1.4251594683249824e+01
+3.3246933642382288e+00
+-2.5144046529945538e+01
+-1.3863628775628600e+01
+4.9889214282649528e+00
+-3.9555235341079502e+01
+1.4056576481369323e+01
+3.4002331099039163e+00
+-2.5926285126926032e+01
+1.7298771222738448e+01
+3.7600243832366087e+00
+-2.9003778586057031e+01
+1.3685948615254436e+01
+3.4542044525569713e+00
+-2.7068182479045991e+01
+1.4012554030398213e+01
+3.3680633771675699e+00
+-2.6268704098604474e+01
+1.4012554030398213e+01
+3.3680633771675699e+00
+-2.6268704098604474e+01
+1.4134518160164358e+01
+3.2925294328914121e+00
+-2.5676041198840966e+01
+-6.3280674049036731e+00
+4.6208666010039581e+00
+-3.8271789665267889e+01
+-6.5830045841720750e+00
+4.6132614984019993e+00
+-3.8685097385971737e+01
+-6.7737158337836345e-01
+2.8714762672082106e+00
+-2.2779103068514640e+01
+1.6745140083284927e+01
+3.5800408421400403e+00
+-2.9471839512637839e+01
+1.4377068620952951e+01
+3.1403315432758538e+00
+-2.5467992958661704e+01
+1.4014197546292040e+01
+3.2223026627843927e+00
+-2.6375761644816055e+01
+1.4026105625489322e+01
+3.2220083963993167e+00
+-2.6384267887839542e+01
+1.4942050998484538e+01
+2.8905948575780016e+00
+-2.3066571257321090e+01
+1.4475054526487327e+01
+3.0214130970875837e+00
+-2.4983000217885298e+01
+-1.3745291509619063e+01
+4.5580596506282038e+00
+-3.9117486472813610e+01
+1.4261378968246238e+01
+3.0440133315548605e+00
+-2.5381996519991123e+01
+1.4645513658662535e+01
+2.9506864333134910e+00
+-2.4268205307492412e+01
+1.4645513658662535e+01
+2.9506864333134910e+00
+-2.4268205307492412e+01
+1.4108554953014226e+01
+2.9694735972796757e+00
+-2.5184123304045062e+01
+1.4108554953014226e+01
+2.9694735972796757e+00
+-2.5184123304045062e+01
+-7.9581336420197086e+00
+4.2707322740068987e+00
+-3.7544431546103141e+01
+1.3872924624777848e+01
+3.1651851325052434e+00
+-2.6974624555161085e+01
+-6.5416103663577641e+00
+4.2133982074896545e+00
+-3.7688877869308826e+01
+1.4215653942692775e+01
+2.9750543640253682e+00
+-2.5603713034305944e+01
+1.5082551859483033e+01
+2.7188198296819044e+00
+-2.2848944714221979e+01
+1.3917664757562328e+01
+3.0562033453939264e+00
+-2.6805749386906022e+01
+1.4644128599687292e+01
+2.6783780268085042e+00
+-2.3518149134726432e+01
+1.5663249937682203e+01
+3.0043432798992065e+00
+-2.4675267643542036e+01
+1.5074242483486797e+01
+2.9369099102125733e+00
+-2.4405186624426531e+01
+1.4293071502168189e+01
+2.7959921043903000e+00
+-2.4966874749972654e+01
+-1.1214128605527669e+00
+2.6779072781882927e+00
+-2.2879503426479786e+01
+1.3214020540242128e+01
+3.2026362186411412e+00
+-2.8916485427332624e+01
+1.7989494117770803e+01
+3.3233750844627847e+00
+-2.9570867712720222e+01
+1.3450584128811288e+01
+3.1412090116682783e+00
+-2.9290320420588017e+01
+1.3381276668902935e+01
+3.0945263381708448e+00
+-2.9120511617000702e+01
+1.4489290214087685e+01
+2.7154998140653204e+00
+-2.4897382073046966e+01
+1.4509556561514644e+01
+2.7352422840088391e+00
+-2.4631676624713190e+01
+1.4404207372581210e+01
+2.6230634058536562e+00
+-2.4193729073927141e+01
+7.4903638806947748e-01
+2.3438744945257155e+00
+-2.1423353484852790e+01
+4.5208505463933761e+00
+2.5646851001463964e+00
+-2.3616042614625410e+01
+1.4454254852361849e+01
+2.7330250975589139e+00
+-2.5485957405994789e+01
+1.4416216954718488e+01
+2.6590836460452514e+00
+-2.5090702731154853e+01
+1.4599617305512973e+01
+2.6093873620788535e+00
+-2.4696961087865841e+01
+1.4057588355940071e+01
+2.7543231234715964e+00
+-2.6437059630877364e+01
+1.5119268491198399e+01
+2.4563910108278826e+00
+-2.2577736965148244e+01
+1.4835190088352455e+01
+2.6338130491146075e+00
+-2.5005259258340566e+01
+-6.9061189456952843e-01
+2.3400078194529557e+00
+-2.2226795209467770e+01
+1.3659450944999604e+01
+2.7019941106603378e+00
+-2.8206417596745634e+01
+1.4532443121207132e+01
+2.5462702403988677e+00
+-2.5746199875588154e+01
+1.5486507715063224e+01
+2.5036425986949116e+00
+-2.4500093061717639e+01
+1.6371824102472235e+01
+2.6123011799409124e+00
+-2.5771339409328053e+01
+1.5972820652853509e+01
+2.8535515317352806e+00
+-2.9755057750223102e+01
+1.4644077105511291e+01
+2.3855732110092722e+00
+-2.4778008302543721e+01
+1.4644077105511291e+01
+2.3855732110092722e+00
+-2.4778008302543721e+01
+1.4182686423829299e+01
+2.4378495113485195e+00
+-2.6007016931394517e+01
+-7.5890236126450672e-01
+2.1338504110447714e+00
+-2.1992353417227211e+01
+-1.5454938806179292e+00
+2.1433331076515691e+00
+-2.2953979914904878e+01
+1.4470101621147231e+01
+2.3435801830418543e+00
+-2.5974858754244227e+01
+1.4330888804798924e+01
+2.3157949124021888e+00
+-2.5740588163531626e+01
+1.2620279003690772e+01
+2.8250558141080480e+00
+-3.2770800593885241e+01
+1.2579159477374677e+01
+2.8201679828993136e+00
+-3.2760496262041933e+01
+-7.3694052326835946e+00
+3.0839841875691718e+00
+-3.6604302991107510e+01
+1.4977258232927756e+01
+2.3360650774795757e+00
+-2.5925660802329531e+01
+1.4977258232927756e+01
+2.3360650774795757e+00
+-2.5925660802329531e+01
+1.2989582836838949e+01
+2.9384663856493072e+00
+-3.4527722201098619e+01
+1.3378722325269521e+01
+2.4756870114941312e+00
+-2.9216680126312919e+01
+1.4644076557799387e+01
+2.1266077766510594e+00
+-2.5422228710598894e+01
+1.4600165959569180e+01
+2.1289005228103743e+00
+-2.5382498830474027e+01
+-1.1514648321325485e+00
+1.9151616083234204e+00
+-2.2377933589342817e+01
+-9.9754097472612191e-01
+1.8950109009933536e+00
+-2.2477366258230273e+01
+-6.8591826911757570e-01
+1.8170709904998401e+00
+-2.1747993005980536e+01
+-1.2459389402542804e+01
+2.7940925069589420e+00
+-3.6538159554422492e+01
+1.5037953074393563e+01
+1.7294913046962477e+00
+-2.2697375658712826e+01
+1.3222144707568205e+01
+2.3703582695885519e+00
+-3.2330975530818556e+01
+1.7283221010205594e+01
+2.2216546427988075e+00
+-2.9822407395039708e+01
+1.7437990844238811e+00
+1.5976870318584744e+00
+-2.0650417006845426e+01
+-1.2349431323963447e+01
+2.5319881368309574e+00
+-3.6118436926825112e+01
+1.4608773198466960e+01
+1.8268609632289503e+00
+-2.5270226245962970e+01
+1.4771624609115230e+01
+1.7620003353356415e+00
+-2.4562292691846075e+01
+1.4853427522824022e+01
+2.8177442560882127e+00
+-4.1084429632803783e+01
+1.4684029379480943e+01
+1.7126051151185928e+00
+-2.5216512805332886e+01
+1.5134534014053486e+01
+1.6132648466086432e+00
+-2.4731118671476057e+01
+1.4747086534368517e+01
+1.6404025738068622e+00
+-2.4789144665815183e+01
+-3.5748968994913581e+00
+1.7045948149555181e+00
+-2.5624311887566172e+01
+-1.2924315713840102e+00
+1.5658283950227774e+00
+-2.2305271842601826e+01
+1.4309696859189041e+01
+1.6958958761758915e+00
+-2.6915864206426399e+01
+-1.2924478943572753e+01
+2.1835116414549218e+00
+-3.5518079265990494e+01
+1.4087431611608208e+01
+2.0292172288172559e+00
+-3.3684385058678380e+01
+1.4269205094046802e+01
+1.6583656807055400e+00
+-2.7078828734761647e+01
+1.4959479195445795e+01
+1.4573962739253183e+00
+-2.3701748580519983e+01
+1.3700062904489908e+01
+2.2652293243562545e+00
+-3.6969081191441852e+01
+-1.2412854211053917e+01
+2.0348328492007699e+00
+-3.4858575559541137e+01
+-1.9602484964866920e+00
+1.5281025797726377e+00
+-2.3383099044158488e+01
+2.9710903538031390e+00
+1.4630428340998234e+00
+-2.1812959856540314e+01
+1.4782187037168857e+01
+1.4823051717674658e+00
+-2.4923411028981494e+01
+1.4943609800639651e+01
+1.4250951797958347e+00
+-2.4463196550829611e+01
+1.5248918053576899e+01
+1.3823726951401865e+00
+-2.3457436256541300e+01
+1.5208529465806116e+01
+1.3881340455625730e+00
+-2.3475308224340139e+01
+1.4560127313100040e+01
+1.6816491153441855e+00
+-2.8789951212322400e+01
+1.4870583963783842e+01
+1.4671378391735204e+00
+-2.5938564587069163e+01
+1.4892569030431362e+01
+1.3449670432952501e+00
+-2.4793971864780048e+01
+-1.4107674183320901e+01
+1.6005693040745570e+00
+-3.0375883077974695e+01
+-1.3620466657803860e+01
+1.4903438001042437e+00
+-2.9105242182534816e+01
+1.2646593517327858e+01
+1.8312541353057152e+00
+-3.5247951913521540e+01
+1.4091637733473327e+01
+1.4290078067608953e+00
+-2.7281496138714722e+01
+1.5127425741425753e+01
+1.3061794626657610e+00
+-2.4418281842577656e+01
+-4.0218833460598278e+00
+1.3648261599148894e+00
+-2.5303015088428108e+01
+1.4630467647556085e+01
+1.4525330117142718e+00
+-2.7216917811330799e+01
+1.3410173112352071e+01
+1.5218691045337387e+00
+-3.0771030217227185e+01
+1.3410173112352071e+01
+1.5218691045337387e+00
+-3.0771030217227185e+01
+-2.4717920080470601e+00
+1.2807224649755495e+00
+-2.3955893539286649e+01
+3.4310617038929498e+00
+1.2285718390704592e+00
+-2.2226735149135322e+01
+1.5231757341911138e+01
+1.2396503802190242e+00
+-2.4563237382592703e+01
+1.5446719260397288e+01
+1.9412505315345088e+00
+-4.1178950449597686e+01
+-2.2491759190294129e+01
+1.6049280028732531e+00
+-3.4852946205643491e+01
+1.5031144824523874e+01
+1.1165103759634045e+00
+-2.4453344536481779e+01
+1.6269868132098535e+00
+1.0805361724105869e+00
+-2.1248105975271951e+01
+1.6663037408981638e+00
+1.1082669407498449e+00
+-2.1411183843140119e+01
+1.5618707474114547e+01
+1.1630794705403642e+00
+-2.4319470542317681e+01
+1.5138255372156703e+01
+1.0833592071944602e+00
+-2.4124856381661488e+01
+1.3772637395262883e+01
+1.4510438769369878e+00
+-3.3838773642662026e+01
+1.5074551132963899e+01
+1.0382736517740474e+00
+-2.4359809536030394e+01
+1.3580642766717148e+01
+1.1872999241533275e+00
+-3.1412817746376163e+01
+1.4148183019055505e+01
+1.0096743654488052e+00
+-2.8350159522946829e+01
+3.2319534997833066e+00
+9.4984235732480615e-01
+-2.1341647403055354e+01
+1.4602027437071239e+01
+9.0539605839678305e-01
+-2.7006606309101624e+01
+-2.5956336823657975e+00
+8.6594185303420079e-01
+-2.3419119915452733e+01
+1.3961552831886358e+01
+8.8588768069697743e-01
+-2.9270556258528096e+01
+1.5084044768788043e+01
+7.3165419425033307e-01
+-2.3768450987447348e+01
+1.4021358441084310e+01
+7.9328252598847182e-01
+-2.9689525001359684e+01
+1.4284697424379205e+01
+8.1288302793405476e-01
+-2.8917989921366335e+01
+1.4204201311292605e+01
+8.0796296855821514e-01
+-2.8839470073330116e+01
+1.5376996635778136e+01
+6.7669641305032235e-01
+-2.3605503269347640e+01
+1.3727801736989370e+01
+8.5208013136209571e-01
+-3.4492898112197146e+01
+1.3727801736989370e+01
+8.5208013136209571e-01
+-3.4492898112197146e+01
+1.4197129480712654e+01
+7.0217701709196656e-01
+-2.8743978312560746e+01
+-9.2553762400754955e+00
+9.1652331822000022e-01
+-3.3316262256575371e+01
+1.4362418099250963e+01
+6.3426486072515054e-01
+-2.8552255222992976e+01
+1.4352083230458783e+01
+6.2642337473989840e-01
+-2.8515124667377577e+01
+1.4644892969456718e+01
+6.8769227182907855e-01
+-3.1368687105464307e+01
+2.7284241147255134e-01
+5.6123545050215629e-01
+-2.0501153410978766e+01
+1.5467571004800446e+01
+5.6358101655260651e-01
+-2.3472927712056961e+01
+-4.3418531189010823e-01
+5.7059827986821687e-01
+-2.1125766510597572e+01
+1.5436050851788485e+01
+5.4624893416869136e-01
+-2.3575739500441546e+01
+1.4151645727762206e+01
+6.1798463776646273e-01
+-3.2509463101092734e+01
+1.4395370527583392e+01
+4.2707118860430965e-01
+-2.6927976591426699e+01
+1.5421742065081578e+01
+4.9122557427134644e-01
+-2.3660315871719668e+01
+-1.4285457251782539e+01
+7.0941189141128935e-01
+-3.3896581558548320e+01
+1.5486182908443498e+01
+4.0302788057755146e-01
+-2.3934101994054579e+01
+-1.4234999442447252e+01
+6.8801687941756962e-01
+-3.3268997260246813e+01
+2.4168634313327614e-01
+4.6891303631371062e-01
+-2.0634682357241857e+01
+-2.1997251326061300e+00
+4.6676763362509677e-01
+-2.2682653454935654e+01
+1.4606625958694822e+01
+3.9193301449784979e-01
+-2.7800493499378202e+01
+1.4384539480027517e+01
+3.2758393541791359e-01
+-2.7458394480047776e+01
+1.9173901788784494e+01
+5.0897076742749348e-01
+-2.8951328762457347e+01
+1.3890080693996156e+01
+4.7875750815005436e-01
+-3.1622898537105247e+01
+1.4686294434266626e+01
+5.9104152671716259e-01
+-3.6267794612797367e+01
+-6.6228384897964894e+00
+4.0006008485072253e-01
+-3.2490867063498598e+01
+3.4465127151101913e+00
+3.9447259760401493e-01
+-2.2084494673558613e+01
+-9.0057667172391731e-01
+3.1767114668716545e-01
+-2.1493006157463483e+01
+-9.6421822372366961e+00
+2.8209105366489129e-01
+-3.2803023939419724e+01
+1.4587520381198258e+01
+1.5270362101732571e-01
+-2.7375756790310710e+01
+1.3804587565014534e+01
+1.3203808031785158e-01
+-3.3340097668786356e+01
+-9.2502860910480322e+00
+1.1654978205423658e-01
+-3.2663757435859218e+01
+4.1601918245066880e+00
+1.8902722134329797e-01
+-2.1124490224620608e+01
+-1.4121738696914825e+00
+1.4476083353765903e-01
+-2.2058807145112553e+01
+1.4400236468663126e+01
+-7.6578590401800636e-02
+-2.8568248330009091e+01
+1.4548442554111013e+01
+-7.6693491774795758e-02
+-2.7575757563233999e+01
+1.4548442736824228e+01
+-7.6693382372330768e-02
+-2.7575757806237004e+01
+1.4680698389566157e+01
+-1.0408331984098590e-01
+-2.8684112316397353e+01
+1.8483616002812833e+00
+1.1338763220080161e-01
+-2.0168337376729923e+01
+-9.3012667885951235e+00
+-2.2725490046109687e-03
+-3.2325576890931245e+01
+-9.0088749633384904e+00
+-4.0446161060883626e-02
+-3.1188533336165264e+01
+1.4327846145045996e+01
+-1.3735084480454973e-01
+-2.9179077623804083e+01
+-2.4178699642131902e+00
+-1.5293614862313001e-02
+-2.2676725163107307e+01
+-1.1521873709800499e+01
+-2.3586576889496627e-01
+-3.2138597425872369e+01
+-1.4503334227654488e-01
+-5.5934662630746208e-02
+-2.0831726131785029e+01
+-2.8893581067070171e+00
+-1.3699020992330796e-01
+-2.2958864022282938e+01
+-8.2723650560813180e+00
+-3.7794334349535980e-01
+-3.1982343531355838e+01
+-2.8113965576788837e+00
+-2.1271464023689618e-01
+-2.2901363356080548e+01
+-1.1457822364770234e+01
+-3.8804596751595000e-01
+-3.2117542509801872e+01
+4.1560505994593795e+00
+-1.7522007616050972e-01
+-2.1385393755332537e+01
+1.4692884888703071e+01
+-6.1278105351775991e-01
+-2.8206086033348637e+01
+1.4754776083903286e+01
+-6.0091261627780113e-01
+-2.7280171931648496e+01
+2.1719444907886283e+00
+-2.9478446782631185e-01
+-2.0332720732691378e+01
+-1.0608605385766692e+01
+-7.7865316634045234e-01
+-3.1523306887234071e+01
+1.4883639978736213e+01
+-8.9680650025245223e-01
+-2.8107615210931499e+01
+1.9077426081766021e+01
+-8.4903199875465341e-01
+-2.9150509156822491e+01
+1.1707911432631752e+00
+-4.9114671411843619e-01
+-2.0435199425579924e+01
+-1.0817489447570468e+01
+-1.0351810618041672e+00
+-3.1019089634845255e+01
+3.3315317024272453e+00
+-5.4092626051290227e-01
+-2.0989591119346226e+01
+1.3967897819250639e+00
+-5.4557950440805525e-01
+-2.0465318826318036e+01
+-1.7778385225681401e+00
+-6.2030534725247444e-01
+-2.1430242902522419e+01
+3.3549072293641937e+00
+-6.0247304448097194e-01
+-2.0739651963861608e+01
+1.6108875090153791e+01
+-1.1596819027813667e+00
+-3.0994971264803976e+01
+1.4690747473039966e+01
+-1.1614697077425038e+00
+-2.8274108397864200e+01
+5.4071984599918066e-01
+-7.4402309047567983e-01
+-2.0628228958377292e+01
+6.5179599812330720e+00
+-8.6745334797157125e-01
+-2.3110126999894998e+01
+1.1454082587592902e-01
+-8.0657935649391665e-01
+-2.0829634659691759e+01
+9.3516003962286987e-02
+-7.8601769947159805e-01
+-2.0874162686534323e+01
+-1.0068783145144600e+00
+-8.5696654821007423e-01
+-2.1102871833487637e+01
+-1.0068783145144600e+00
+-8.5696654821007423e-01
+-2.1102871833487637e+01
+1.4998887604772365e+01
+-1.3282747982180403e+00
+-2.8988112561350217e+01
+1.1950708876972982e+01
+-1.5191591817043915e+00
+-3.0485308123229427e+01
+-9.7947186680763632e-01
+-9.2985966991246216e-01
+-2.0988809317509638e+01
+1.5202031639421955e+01
+-1.4649079110832377e+00
+-2.7593938955525452e+01
+1.4946381316191024e+01
+-1.5206163660339154e+00
+-2.7431176711212562e+01
+1.5079794747887433e+01
+-1.5124888559413454e+00
+-2.7661460953369765e+01
+1.6376388010994255e+01
+-1.6665294419464640e+00
+-3.1394888525780210e+01
+1.2468730878767701e+01
+-1.6790325115666869e+00
+-3.0288570750115436e+01
+-1.9609131016769050e+00
+-1.1002557292274648e+00
+-2.1733753447731431e+01
+1.1809630883711415e+01
+-1.7196289721388556e+00
+-3.0296622304028851e+01
+4.2252068269815002e+00
+-1.1954328820052402e+00
+-2.0984954104952802e+01
+1.5736474928184455e+01
+-1.9952474196438488e+00
+-3.2219113133002949e+01
+-1.7943985959125013e+00
+-1.2524891693634976e+00
+-2.1578758588712468e+01
+1.6904629933526902e+01
+-2.0100042569379313e+00
+-3.1046446314155691e+01
+-7.5091102696104661e+00
+-1.9423623543314064e+00
+-2.9818417709494643e+01
+5.4129445993128233e-01
+-1.2869869422644151e+00
+-2.1389756305692405e+01
+1.1759891449192903e+01
+-2.1158097973000771e+00
+-2.9476471304093707e+01
+1.1494735048493396e+01
+-1.9665111537102746e+00
+-2.9473977997811556e+01
+-2.2289569680566981e+00
+-1.4827880032770908e+00
+-2.1464812252721025e+01
+1.1990005087472039e+01
+-2.2373975388587821e+00
+-2.9626074518413557e+01
+1.1990005087472039e+01
+-2.2373975388587821e+00
+-2.9626074518413557e+01
+1.5453429454345375e+01
+-2.1612247869119883e+00
+-2.7275396400574273e+01
+1.5506117692603972e+01
+-2.1326331790306901e+00
+-2.7373915592443339e+01
+5.3910692151787287e-01
+-1.5367602014438095e+00
+-2.0272443405747914e+01
+-2.4984852710266892e+00
+-1.7480192540759338e+00
+-2.1517437733626526e+01
+4.1040474381268810e+00
+-1.6727099462623831e+00
+-2.2462581092064998e+01
+1.5723741410895597e+01
+-2.2864365595317055e+00
+-2.5405418048017943e+01
+-6.9177361779325874e-01
+-1.8135967569114402e+00
+-2.0847909349285757e+01
+-6.9177361779325874e-01
+-1.8135967569114402e+00
+-2.0847909349285757e+01
+-1.8741447265410385e+00
+-1.8728267011316935e+00
+-2.0960662300330551e+01
+-2.8190707221837434e+00
+-2.0176618094762495e+00
+-2.2271395917882167e+01
+1.6017379465405273e+01
+-2.6757315773392385e+00
+-2.5448676812666509e+01
+1.6191746774257510e+01
+-2.6135156034570803e+00
+-2.4393291258413740e+01
+5.1308236352043339e+00
+-2.0681250076040061e+00
+-2.0928124972294075e+01
+5.3475619387287097e+00
+-2.0808793556978040e+00
+-2.0869800979564641e+01
+-4.2079447715764778e-01
+-2.0269012904048029e+00
+-2.0644027060804156e+01
+-8.1622545313639949e-01
+-2.0705010215905144e+00
+-2.0578557936417553e+01
+-9.5813761951930629e-02
+-2.0975535695210876e+00
+-2.0598961861243968e+01
+1.4682271013761822e+01
+-3.3556092198441303e+00
+-3.0179785615898162e+01
+4.2209678560989552e+00
+-2.2958534050215444e+00
+-2.2420681821663742e+01
+1.5998394688584085e+01
+-3.0943931809117933e+00
+-2.5833318468890273e+01
+1.8617375744511691e+01
+-3.4051641114377005e+00
+-2.9977492294433116e+01
+-8.2783908747295343e-01
+-2.2270419057580257e+00
+-2.0572479448080518e+01
+1.6034528105647560e+01
+-3.0687231420264109e+00
+-2.4578844723441968e+01
+1.9436177348561397e+01
+-3.5005079716285818e+00
+-2.9483128231521565e+01
+2.8461825883454240e-02
+-2.3542547882566791e+00
+-2.0280454464549408e+01
+-1.8681186426735776e+00
+-2.6487363370781623e+00
+-2.1585210938222026e+01
+4.2821371216603064e+00
+-2.4480040274230723e+00
+-2.0347156189382407e+01
+2.8933162172194264e+00
+-2.5373928169524333e+00
+-2.1483180736134575e+01
+-1.2076996342262332e+00
+-2.5491860338625227e+00
+-2.0075008984290982e+01
+7.6302412524035157e-01
+-2.5856583794074113e+00
+-2.0274243919362291e+01
+7.8573128572178186e-01
+-2.6343216431826182e+00
+-2.0054988965286348e+01
+1.3540878685996464e+01
+-3.8985077718047836e+00
+-2.7831891679994158e+01
+-9.9691407787680060e+00
+-3.6903678449340456e+00
+-2.7095424097869525e+01
+-6.9880244180545947e+00
+-3.6510701713897196e+00
+-2.6456260977059504e+01
+3.4161029319525809e+00
+-2.7122396558176303e+00
+-1.9921004328160073e+01
+-6.7934794838734671e+00
+-3.7142206812908927e+00
+-2.6323810725703897e+01
+-1.2336560867320797e-02
+-2.9149624811347969e+00
+-2.0139936007978775e+01
+3.1877978816371235e+00
+-2.8989413787763816e+00
+-1.9746246356222944e+01
+3.1948911740271351e+00
+-2.9073685583115076e+00
+-1.9761948317060131e+01
+-1.0034012151025527e+01
+-3.9127728527876555e+00
+-2.6915281414590687e+01
+-6.7328000795891771e+00
+-3.8668881235512269e+00
+-2.6360796744640979e+01
+-7.0127837100986090e+00
+-3.8885535468337951e+00
+-2.6014567251282113e+01
+1.6499265087863724e+00
+-2.9582470872905335e+00
+-1.9720243296157623e+01
+1.1090103121347662e+01
+-4.1996926143765254e+00
+-2.6722753080433044e+01
+-2.9299320123775779e-01
+-3.1917730544337646e+00
+-2.0587169572076562e+01
+-1.9929059355257142e+00
+-3.5910879681244654e+00
+-2.2645336979836053e+01
+1.9698513689864554e+00
+-3.3735616055649795e+00
+-2.0128370289929773e+01
+5.0285344540748973e+00
+-3.8060711170529120e+00
+-2.2174822626762911e+01
+-6.2431572846513506e+00
+-4.4602434497282486e+00
+-2.6100608914768738e+01
+-1.9707166290652505e+00
+-3.9236178485045659e+00
+-2.2716284322162004e+01
+1.2235327851399756e+01
+-4.6275815513902581e+00
+-2.6262718378447854e+01
+4.2326762540707996e+00
+-3.9640191298935554e+00
+-2.1705389924709817e+01
+2.7515989545150075e+00
+-3.9041357496378226e+00
+-2.1650417123903800e+01
+-5.2683883740320372e+00
+-4.6315946183866066e+00
+-2.5160365191941583e+01
+1.6374904075514547e+01
+-5.6246853838750956e+00
+-2.8610294742674952e+01
+2.1405109552062926e+00
+-4.4384935619668680e+00
+-2.1109183414809777e+01
+2.2299322484149133e+00
+-4.4916575607335458e+00
+-2.1201806776596829e+01
+2.2229872271844999e+00
+-4.4870808532205961e+00
+-2.1167890709394715e+01
+2.1994015085055976e+00
+-4.6534229830351475e+00
+-2.2408864856556654e+01
+2.1111836384091078e+00
+-4.5742340434893123e+00
+-2.1227773937607310e+01
+-1.1792049776896121e+00
+-4.7796581812207535e+00
+-2.2411911075816292e+01
+2.7770823875089845e+00
+-4.6631638796440367e+00
+-2.1377432432061230e+01
+2.9178018991817818e+00
+-4.8909110905740398e+00
+-2.1842193786272979e+01
+5.2220081089488957e-01
+-4.9996106063259669e+00
+-2.1956261170284982e+01
+1.3365025435028139e+01
+-6.4908333359085262e+00
+-2.4676630077333044e+01
+-7.4614582535442286e-01
+-5.5573830112393168e+00
+-2.1599398635370097e+01
+8.5605954326774647e+00
+-6.4708085242554114e+00
+-2.3886831311614667e+01
+8.1799825944037412e+00
+-6.5107059424430895e+00
+-2.3737942210154195e+01
+8.3219747282014129e+00
+-6.5572246941086574e+00
+-2.4129735404144075e+01
+8.3062223050167727e+00
+-6.5625531377145716e+00
+-2.3772583621975159e+01
+1.1097039580004424e+01
+-6.6516677480211017e+00
+-2.3979025512611162e+01
+-5.0555052593141303e+00
+-6.5903083393629025e+00
+-2.3695276435755037e+01
+-8.0965642069219657e-01
+-6.2568607625134396e+00
+-2.2307446450358569e+01
+1.0964821698889171e+01
+-6.9687314107445415e+00
+-2.4209048604461717e+01
+7.5397754380692676e+00
+-6.8086536964946704e+00
+-2.3440433616564224e+01
+1.5734367979524924e+01
+-7.6414735616654337e+00
+-2.6431743255106486e+01
+-2.9354067164595468e+00
+-6.4938354079877874e+00
+-2.2579922629491417e+01
+9.4676365313336621e+00
+-6.8827947012639239e+00
+-2.3320610569814928e+01
+7.8428521605207449e+00
+-6.9660038001442057e+00
+-2.3111895460247773e+01
+1.1074958106987902e+01
+-7.0560253434151541e+00
+-2.3481485167417734e+01
+9.4857468590400340e-01
+-6.6058664203051833e+00
+-2.1872709994923138e+01
+1.6727160398720891e+01
+-8.2308438165462618e+00
+-2.6411390726308557e+01
+7.3568648900004030e+00
+-7.2278025470716747e+00
+-2.2926873647496425e+01
+1.4392561314355051e+01
+-8.0194641465920462e+00
+-2.5256474970434194e+01
+9.0981260755984668e+00
+-7.7995929016802332e+00
+-2.2130623311519308e+01
+7.1375714273718565e+00
+-7.8888416894291886e+00
+-2.1943481491781402e+01
+-3.4481122538098021e+00
+-7.7787601212120041e+00
+-2.1950113638719024e+01
+6.0633975999058540e+00
+-7.7912746591580726e+00
+-2.1427346676620722e+01
+1.4764176906009139e+00
+-7.8906383860617586e+00
+-2.1165810163312482e+01
+-5.2938721710151917e+00
+-7.4468449619628068e+00
+-1.9897577954296217e+01
+-4.5422057679548233e-01
+-7.9445836388047679e+00
+-2.0840598468605542e+01
+1.3031384120580777e+01
+-9.1518132572413293e+00
+-2.3598173905239857e+01
+-1.9570482410845452e-01
+-8.3005968589738561e+00
+-2.1324331905831901e+01
+-1.6577338024579855e+00
+-8.1890620488278696e+00
+-2.1294826479328915e+01
+-9.2476233126473267e-02
+-8.2750754438184284e+00
+-2.1004749821045191e+01
+-1.4054724977899783e+01
+-8.8667358093628756e+00
+-2.2391110443455631e+01
+7.8184981651330423e+00
+-8.4047535499865837e+00
+-2.1130789214759361e+01
+-7.9005367902292944e-01
+-8.2969363401428513e+00
+-2.1142484503518286e+01
+9.5120269149645491e+00
+-8.9170209726585412e+00
+-2.1995383496937929e+01
+-8.0379855074818130e-01
+-8.3846749489507495e+00
+-2.0987374603031363e+01
+9.7173823468442055e-01
+-8.4388705786384364e+00
+-2.0283820147901128e+01
+5.8854173311069289e+00
+-8.7344470873241775e+00
+-2.0863790292504341e+01
+-5.1162235625885533e+00
+-8.6747035914401565e+00
+-2.0847827776978985e+01
+2.4116772623999747e-01
+-8.5528629474291726e+00
+-2.0708424103720208e+01
+2.6750373197880500e-01
+-8.4249475989649287e+00
+-2.0228463617590759e+01
+1.3425253134612085e+01
+1.4886487564983504e+01
+-3.0930567300294708e+01
+-9.2628854606529654e+00
+1.7765450919196777e+01
+-3.8470282649136159e+01
+-7.0890350626609608e+00
+1.8088511466308578e+01
+-3.9235268046752743e+01
+1.5049079057628658e+01
+2.4862995190188329e+01
+-5.4411045012700974e+01
+-1.2492861076700008e+01
+1.6574596448526368e+01
+-3.5794013130315747e+01
+-1.2479332905372274e+01
+1.6513033727503345e+01
+-3.5707775185427003e+01
+2.9574584025681627e+00
+2.1220202739898895e+01
+-4.6662887002684208e+01
+1.4090331576096832e+01
+1.4790323257385136e+01
+-3.1375258149926076e+01
+1.3238509256157101e+01
+2.4791073908267421e+01
+-5.5349643250521062e+01
+-1.5683069231579855e+01
+1.5806650472289585e+01
+-3.4074828999489974e+01
+-1.5835680865017926e+01
+1.6065261571060812e+01
+-3.4642304278788835e+01
+-1.1419564883156939e+01
+1.6879900180262556e+01
+-3.7309642555740297e+01
+-5.2566765876782995e+00
+1.8564949657345739e+01
+-4.1605570464729155e+01
+3.3787926114493605e-01
+2.0267240008283711e+01
+-4.5728579395483344e+01
+8.8829076583362241e+00
+2.2738028770619245e+01
+-5.1590719893066641e+01
+8.8829076583362241e+00
+2.2738028770619245e+01
+-5.1590719893066641e+01
+-1.3192632354493751e+01
+1.5860748900827197e+01
+-3.5087854542856384e+01
+1.7444757024279241e+01
+2.5404702975662268e+01
+-5.7636849474692148e+01
+-1.0036534955005184e+01
+1.6743917625945791e+01
+-3.7716342023429036e+01
+1.8128928329351744e+01
+2.5001359193709803e+01
+-5.6679527148420128e+01
+1.3421597186721218e+01
+1.4483654843303411e+01
+-3.1786893179159758e+01
+-1.2407060538448698e+01
+1.6159150392194093e+01
+-3.6447516554523425e+01
+-1.5220020855413994e+01
+1.5605185084423594e+01
+-3.4924155400182364e+01
+1.0579732793704897e+01
+2.3655516194984507e+01
+-5.4781933470234506e+01
+1.2560530669404164e+01
+1.4753903997056153e+01
+-3.3060404621828056e+01
+7.7908571986134705e+00
+2.1873042659543440e+01
+-5.0743672781987598e+01
+1.3643499559483091e+01
+1.3697431201106957e+01
+-3.0426256077904700e+01
+-9.0721421869214165e+00
+1.6579914105370801e+01
+-3.8790886797896377e+01
+-9.2465699642592032e+00
+1.6960938382845882e+01
+-3.9303904398241528e+01
+7.7668763543201100e+00
+2.1680864822363745e+01
+-5.1063094192670654e+01
+-1.2559965507301630e+01
+1.5999232937414572e+01
+-3.7265454289983083e+01
+-3.7510617202714682e+00
+1.8458650661909836e+01
+-4.3426386831261027e+01
+-3.7204536709377432e+00
+1.8408415515449637e+01
+-4.3373613116991031e+01
+1.2699505461965787e+01
+1.1182336698516579e+01
+-2.4771307675431171e+01
+1.1887657383906745e+01
+1.1385261667419982e+01
+-2.5399507463790322e+01
+1.0613909193614303e+01
+2.3746309005108706e+01
+-5.6528862300071360e+01
+1.2358185421869530e+01
+1.0957649556150528e+01
+-2.4520558483273053e+01
+9.1522446681972411e+00
+2.2008781662710124e+01
+-5.2496456455712710e+01
+-9.6102551517050827e+00
+1.6439733167252886e+01
+-3.9629251878813761e+01
+-9.7522210775967135e+00
+1.6473146065487995e+01
+-3.9297973064541196e+01
+-1.2411948868212827e+01
+1.5621969199093320e+01
+-3.7188688648153409e+01
+-9.1389630560497039e+00
+1.6282373084453017e+01
+-3.9692176763006621e+01
+-9.1813222102171750e+00
+1.6439894562122578e+01
+-4.0001851974596100e+01
+-1.2528729781520175e+01
+1.5348976788877092e+01
+-3.6716530934752996e+01
+-6.6621489556641764e+00
+1.7128366828833332e+01
+-4.1935246958990753e+01
+6.3543275234150642e-01
+1.9233954046234164e+01
+-4.7635507113507586e+01
+1.3931063380473459e+01
+1.0518717882901493e+01
+-2.4111444077160986e+01
+-9.6689536790029074e+00
+1.6012851482373520e+01
+-3.9862031032502266e+01
+1.9696540639017318e+01
+2.3893656092573625e+01
+-5.9182359125061915e+01
+-2.3314755298962411e-01
+1.8606365945927596e+01
+-4.6579519393530219e+01
+1.2979737492026263e+01
+1.3436381791345715e+01
+-3.2455268689610890e+01
+1.3196549301277226e+01
+1.0680586193907670e+01
+-2.5038519124348049e+01
+1.2840206433980340e+01
+1.0228155547701501e+01
+-2.3799371798547821e+01
+3.8318766162629316e+00
+1.9654578881372327e+01
+-4.9531368768346383e+01
+2.6651009311937809e+01
+3.0874683357325068e+01
+-7.8637344201946732e+01
+-2.6688117892344344e+01
+2.0481459615552804e+01
+-5.0834166863716028e+01
+1.0319229787986697e+00
+1.8694586558045970e+01
+-4.7779092595509553e+01
+1.3534789804940665e+01
+1.0235594075076939e+01
+-2.4112725263320083e+01
+-2.8290874932213850e+01
+2.1686130998846462e+01
+-5.4294813867339116e+01
+1.2681164504928729e+01
+1.0671709846250000e+01
+-2.5716963118629263e+01
+4.7228861852194198e-01
+1.8728128485071423e+01
+-4.8796034667144980e+01
+3.9881522950799525e-01
+1.8183144396324490e+01
+-4.7229345285461868e+01
+-2.1584747402982294e+00
+1.7838249776535420e+01
+-4.6497072554135102e+01
+4.2362031296733100e+00
+1.9161770429311201e+01
+-4.9996226812077992e+01
+1.3872407827840991e+01
+9.2325462292947904e+00
+-2.2211613390342247e+01
+-9.3968258305680035e+00
+1.5729914586196326e+01
+-4.0949577689081707e+01
+-1.2429547471363014e+00
+1.7912316279994123e+01
+-4.6635037204539735e+01
+-1.2382252709915744e+00
+1.7925215684414038e+01
+-4.6697134080677912e+01
+7.4782936427944300e+00
+2.0245242260137864e+01
+-5.2768212273912631e+01
+1.3125886301392971e+01
+1.3687513425428261e+01
+-3.4681737845280828e+01
+1.2895462601516005e+01
+1.3665038323235263e+01
+-3.4760121371638490e+01
+1.2505676089235754e+01
+1.0048342118259377e+01
+-2.4668588165676560e+01
+1.3421830347988021e+01
+1.3366104814072008e+01
+-3.3950198578717647e+01
+1.3421830347988021e+01
+1.3366104814072008e+01
+-3.3950198578717647e+01
+-3.4857595098321763e+00
+1.7095681322980440e+01
+-4.5107263907343338e+01
+-2.0534599574290167e+00
+1.7679530198321299e+01
+-4.6645420398977876e+01
+1.4071495784113575e+01
+9.6498256984324726e+00
+-2.3411124117974488e+01
+-1.6200703415191896e+01
+1.4938016867913056e+01
+-3.8937055151114386e+01
+9.4162062013776282e+00
+2.0465609824628974e+01
+-5.4577756567506896e+01
+-1.0700510664772494e+01
+1.4999932749898228e+01
+-3.9475695009030680e+01
+-1.0700510664772494e+01
+1.4999932749898228e+01
+-3.9475695009030680e+01
+7.8001814226887110e+00
+1.9991652639184050e+01
+-5.3531985550918193e+01
+1.9772778183148415e-01
+1.8101700061613499e+01
+-4.8429351571899943e+01
+-3.3428226648226613e+00
+1.7016209912379718e+01
+-4.5638073300595259e+01
+-1.2366399413784045e+01
+1.4654193934960482e+01
+-3.8578361381217732e+01
+-6.1769157681166806e+00
+1.6264641903026391e+01
+-4.3721987677429063e+01
+-3.6452677924834642e+00
+1.6727696134760258e+01
+-4.5244526181377829e+01
+-3.6311498108401201e+00
+1.6665124430354705e+01
+-4.5157094454398383e+01
+-3.6417998317574063e+00
+1.6880297724448418e+01
+-4.5683839334800574e+01
+-1.4455753923490942e+01
+1.3308287638057545e+01
+-3.4872143195587547e+01
+-3.1650468180774078e+00
+1.6723160793595472e+01
+-4.5812408592311677e+01
+3.2591847827718817e-01
+1.7714856704388193e+01
+-4.8498464609962035e+01
+-7.3399102981331605e+00
+1.5712027341142472e+01
+-4.2978657257362023e+01
+-1.5700552845193537e+01
+1.4847373062335119e+01
+-4.0023965932065039e+01
+1.3919186527299555e+01
+9.0881022195682970e+00
+-2.3078907053402489e+01
+1.2612614671915990e+01
+1.3047539361770333e+01
+-3.4832689340955667e+01
+-1.8890775178840375e+00
+1.6448977708345225e+01
+-4.5589801498425274e+01
+3.0562396274210812e-01
+1.7477843371609008e+01
+-4.8881176995302013e+01
+1.4478378706873736e+01
+9.2632722174948388e+00
+-2.3809972660264567e+01
+1.4411835011137732e+01
+8.7498387302962861e+00
+-2.2257512763961419e+01
+1.4504112921828748e+01
+8.5474421110704775e+00
+-2.1634350671408068e+01
+-2.9809708125372754e+01
+2.1079916131870263e+01
+-5.8134812484511926e+01
+1.2668428281402349e+01
+1.2696408209959811e+01
+-3.4867120788953258e+01
+1.2688991017600426e+01
+1.2707400740310472e+01
+-3.4856171274208570e+01
+1.3520015887083652e+01
+1.2704057197235237e+01
+-3.4684516473693819e+01
+-1.6407785318557799e-01
+1.7196049656062609e+01
+-4.8861117019916016e+01
+3.0665885284866429e-01
+1.7239266737188601e+01
+-4.9084615397335227e+01
+-9.9340203144996408e+00
+1.4703687550261959e+01
+-4.2232878191677294e+01
+-6.7599205971298160e+00
+1.5496678614819205e+01
+-4.4556433968918803e+01
+-6.8703510618277903e+00
+1.5248279383055685e+01
+-4.4590906444853388e+01
+-7.4839381179845352e+00
+1.5042276194691121e+01
+-4.3807260182193502e+01
+-9.8888819220219997e+00
+1.4244566785066636e+01
+-4.2140145206016889e+01
+-1.2666944479487828e+01
+1.3602409337727954e+01
+-3.9978721971200279e+01
+-7.5173974728770032e+00
+1.4778577695576898e+01
+-4.4210742117069458e+01
+-1.3090047440492109e+01
+1.3184647325964741e+01
+-3.9193754081380852e+01
+-8.2114545261263050e+00
+1.4661329983538959e+01
+-4.4138114818501634e+01
+-4.0649748624586941e+00
+1.5581781700551987e+01
+-4.6923225030905414e+01
+-1.1945833929803189e+01
+1.3388103539413843e+01
+-4.0227282291569871e+01
+-1.1945833929803189e+01
+1.3388103539413843e+01
+-4.0227282291569871e+01
+-7.8549156753973781e+00
+1.4367472573834375e+01
+-4.3310688776724234e+01
+-7.7942317758602941e+00
+1.4469896728462267e+01
+-4.3666335279325736e+01
+-1.1033169869789761e+01
+1.3791077387028023e+01
+-4.1544364536976190e+01
+1.2338208641778028e+01
+8.8754714797047924e+00
+-2.5405305726876680e+01
+-9.3664824200729981e+00
+1.3823328051377034e+01
+-4.2258092330450381e+01
+-8.1027951123785975e+00
+1.4061864009465653e+01
+-4.3811503045660970e+01
+1.1928548159186132e+01
+9.0600441714697286e+00
+-2.6942024013717102e+01
+1.1783322963155449e+01
+9.0005044509649732e+00
+-2.6904607791237893e+01
+-3.6945621695532247e+00
+1.4994683830888958e+01
+-4.7704275639535808e+01
+-9.9495802969886462e+00
+1.3422462994281256e+01
+-4.2845828650273212e+01
+-9.9419311375807080e+00
+1.3510284626631478e+01
+-4.3156357530289817e+01
+-9.9618151312944967e+00
+1.3116501487312791e+01
+-4.2773094083477908e+01
+-1.0002325137676541e+01
+1.3240723127984399e+01
+-4.2894779880913738e+01
+6.2262421074566754e-01
+1.5808496108730481e+01
+-5.1834161726124044e+01
+5.9776423056438921e-01
+1.5856006864645975e+01
+-5.1906542706720650e+01
+-1.6604430861506959e+01
+1.2605283854670255e+01
+-4.0742241624754968e+01
+-1.0420242447464187e+01
+1.3343527255508551e+01
+-4.3450699737213426e+01
+1.3146938166377444e+01
+1.0685542662862391e+01
+-3.4135079982733572e+01
+-1.4629135601425570e+01
+1.2326091695850167e+01
+-3.9693125155376705e+01
+-1.4560125739787168e+01
+1.2289060389941261e+01
+-3.9549351146409535e+01
+1.3512832854885326e+01
+1.0359639842373651e+01
+-3.3964674659350543e+01
+-7.4597109237027297e+00
+1.3507099387917689e+01
+-4.5955887742196808e+01
+1.3044340730604004e+01
+9.9742784457171005e+00
+-3.2471909740957742e+01
+1.2558005520313770e+01
+7.9546509856882706e+00
+-2.5491782115229316e+01
+1.3876329587570158e+01
+9.9629623778401566e+00
+-3.3507262403073163e+01
+1.3329073194986487e+01
+1.0053050325685559e+01
+-3.3689622509300371e+01
+-1.4208189418495115e+01
+1.1892443417649892e+01
+-4.1033069510795009e+01
+1.2978011917275181e+01
+1.0648661333540897e+01
+-3.6211839296859708e+01
+1.5151645742399838e+01
+7.4220577693608352e+00
+-2.3553318166974151e+01
+-2.9661715458676266e+01
+1.6523120280009330e+01
+-5.7059405512017769e+01
+1.3620470089774800e+01
+9.8077287284971320e+00
+-3.3771378252003196e+01
+1.3424813533220918e+01
+9.8322681152930080e+00
+-3.3578200513196684e+01
+1.2402911222051683e+01
+7.7163253397417204e+00
+-2.5665006033651473e+01
+-1.7049719253314262e+01
+1.1582647622501497e+01
+-4.0032750314065190e+01
+-1.7091909679141885e+01
+1.1588610580152269e+01
+-4.0147286064494224e+01
+-1.2934239301189038e+01
+1.1843292409028104e+01
+-4.2127924477964719e+01
+-1.1499470526493344e+01
+1.1886755454046902e+01
+-4.2646835713669432e+01
+1.3957665678816291e+01
+7.1095277469870268e+00
+-2.3907191899703427e+01
+-1.6924484715714065e+01
+1.1548430035899122e+01
+-4.0966304910695037e+01
+1.4065702261832831e+01
+6.6734344335035312e+00
+-2.2740957899600815e+01
+1.4042427032028229e+01
+6.7051698064013801e+00
+-2.2741460078588005e+01
+1.4589526614124187e+01
+6.6505579024239028e+00
+-2.2518752831822958e+01
+1.3648764365347381e+01
+1.3467742691353651e+01
+-5.0339586032583895e+01
+-1.1516403198088822e+01
+1.1761241632034903e+01
+-4.4379648670164244e+01
+-6.2612815410072420e+00
+1.2373393499029914e+01
+-4.8236031399218099e+01
+-1.6982656990396553e+01
+1.0953182774904441e+01
+-4.1104943646868300e+01
+-1.5721582219846923e+01
+1.0933234835281326e+01
+-4.2087295706327311e+01
+-1.4188178915760236e+01
+1.0453275806394892e+01
+-4.1243994907477017e+01
+-1.4234506060437763e+01
+1.0853210480815138e+01
+-4.2452527817256858e+01
+-2.6130039572857310e+01
+1.3381108436191461e+01
+-5.2156526845106981e+01
+1.2348380029037417e+01
+7.1746833912601646e+00
+-2.7558086179733081e+01
+1.2176422333062972e+01
+7.1839530161186271e+00
+-2.7371515039662174e+01
+1.3051409376567733e+01
+6.7941362664535339e+00
+-2.6219364741062098e+01
+1.3891206764662998e+01
+6.3106798963649409e+00
+-2.3911489877477230e+01
+1.2275109811878639e+01
+7.1061224479286622e+00
+-2.7546999094453678e+01
+1.4917092986619357e+01
+6.7105667283893995e+00
+-2.5093337700221326e+01
+8.7946598041736757e-01
+1.1781347774787944e+01
+-4.8742167351505088e+01
+1.4912538893984420e+01
+6.0858744465378374e+00
+-2.2804065378630106e+01
+1.4769666250365059e+01
+5.9083959983151919e+00
+-2.2621402312986884e+01
+2.7090403155105238e+00
+1.1248963474954433e+01
+-4.7668549966923052e+01
+1.3312107410411274e+01
+6.4315941015010525e+00
+-2.5633413854061992e+01
+2.1665215276554579e+00
+1.1279572017172377e+01
+-4.8070997095439488e+01
+1.1979218590404694e+01
+6.8883991721222797e+00
+-2.7670440351323347e+01
+-1.7556151135602914e+01
+9.8105744379992341e+00
+-4.1996715289674789e+01
+2.5931655723575826e+00
+1.0743925275403610e+01
+-4.6886445790981895e+01
+-8.6146524219618019e+00
+1.0709387273318743e+01
+-4.6731783518612900e+01
+1.2597544641982326e+01
+7.0789748656606823e+00
+-2.9563599300826127e+01
+2.4333459929126056e+00
+1.0394332552488963e+01
+-4.6002462123474231e+01
+2.7947988792010832e+00
+1.0714034778542150e+01
+-4.7283114678519510e+01
+2.7260276835785797e+00
+1.0518733170350083e+01
+-4.6425952037244642e+01
+1.4000636976655450e+01
+5.9310148756182883e+00
+-2.4506715393637624e+01
+-7.0299719827199745e+00
+1.0337281488431817e+01
+-4.6252050768038607e+01
+-4.0560989505475364e-01
+1.0381881865495178e+01
+-4.6500682970346787e+01
+-3.9364836317664215e-01
+1.0389678669808337e+01
+-4.6815212303287524e+01
+2.9350732929401859e+00
+1.0311483908153157e+01
+-4.6190636111010427e+01
+-1.1152633434371482e+00
+1.0184435544134475e+01
+-4.6112566810562569e+01
+-2.3969876483960896e+01
+1.0771501072641103e+01
+-4.7779451726578174e+01
+-1.6275481786388248e+01
+9.2069355411020464e+00
+-4.1639721441028527e+01
+1.0103719859312399e+01
+9.8025269194812612e+00
+-4.5463767368619877e+01
+-6.4253468050475835e+00
+9.9055792274860632e+00
+-4.6284270449053707e+01
+-1.6938266520162632e+01
+8.7483626107492132e+00
+-4.0805725993137763e+01
+-2.3327259749520078e+01
+9.9955978072363738e+00
+-4.6692589648368333e+01
+1.4372379611042918e+01
+4.9603726870647389e+00
+-2.2079286733825978e+01
+-1.6706365956966884e+01
+8.6343071022880107e+00
+-4.0687374922426656e+01
+1.3050123930558680e+01
+5.8368933463200303e+00
+-2.7140545580371800e+01
+1.4686035906894453e+01
+4.9368057677546728e+00
+-2.2215196810374223e+01
+-4.8753891166835644e-01
+9.1573908152003369e+00
+-4.4685084369153884e+01
+7.7058917021889899e+00
+9.5849516314908882e+00
+-4.6299950351841900e+01
+-1.7476045038331240e+01
+8.5967326232801629e+00
+-4.2366660551643250e+01
+1.4668446757849571e+01
+4.9046020016535623e+00
+-2.2916789729395276e+01
+1.4607833379711149e+01
+4.7960825269102676e+00
+-2.2470689356512359e+01
+-2.4991219875100779e+00
+8.7406323162249979e+00
+-4.4880516037702257e+01
+1.4831110738931994e+01
+4.8750125224275447e+00
+-2.2898663031772394e+01
+1.4702436943337743e+01
+4.7534187288832950e+00
+-2.2646066902125170e+01
+1.4584075711410017e+01
+4.7248041324747296e+00
+-2.2634205851147932e+01
+1.4494368646050907e+01
+4.5712336182038511e+00
+-2.2119445505212823e+01
+1.5561876006339622e+01
+5.0304711355920686e+00
+-2.3723889898833487e+01
+1.5561876006339622e+01
+5.0304711355920686e+00
+-2.3723889898833487e+01
+-1.0563496000321205e+01
+7.6952057631540036e+00
+-4.1569479892048008e+01
+1.3072542631802138e+01
+6.0088178535274333e+00
+-3.2079217924053737e+01
+1.2888955726200397e+01
+5.3727288859913802e+00
+-2.8301238881012466e+01
+1.3919029796445754e+01
+4.9799199975961583e+00
+-2.5685495932106924e+01
+1.5378186154654864e+01
+4.8581924038351794e+00
+-2.3975627245171978e+01
+1.4574888531475848e+01
+4.4415808034522772e+00
+-2.2796645096430264e+01
+-6.7927353645536204e-01
+7.4521955469689445e+00
+-4.2655531436709047e+01
+1.2786330280773340e+01
+5.0830112713786830e+00
+-2.8747581035124380e+01
+1.2747271235368622e+01
+5.0099309527142708e+00
+-2.8682468631192954e+01
+1.6250889213853132e+01
+5.0813682322298650e+00
+-2.9637232595218578e+01
+1.2775453140177461e+01
+4.8087759526181992e+00
+-2.8833212354980727e+01
+-1.8168169133161765e+00
+6.6834681526646946e+00
+-4.1638540066909528e+01
+1.4276202675326218e+01
+4.4710651703768480e+00
+-2.6101843976571462e+01
+1.4023706064202289e+01
+4.3723832480955283e+00
+-2.5626677919378974e+01
+1.1663162574503907e+00
+3.9936149368609137e+00
+-2.4309696915412509e+01
+1.4394525286461800e+01
+3.7641217613164013e+00
+-2.2932156286228601e+01
+1.4610581017465144e+01
+3.8515403156648973e+00
+-2.3296629658303722e+01
+-9.6358473865986358e+00
+6.0243010733264972e+00
+-3.9636014843320801e+01
+1.3712529725245682e+01
+4.2562614071346090e+00
+-2.6305780592105720e+01
+1.3641920474361035e+01
+4.2247313139344209e+00
+-2.6459397203585457e+01
+-7.3347416578466680e+00
+5.8789989702725167e+00
+-4.0024448908552543e+01
+1.3895995852172000e+01
+3.9771194803492986e+00
+-2.5494830989165244e+01
+-3.3106665201043346e+00
+5.9537212584295887e+00
+-4.0612914517138208e+01
+-1.4508779178925259e+01
+4.9682589856093351e+00
+-3.4537110911540353e+01
+-8.1693030679645098e+00
+5.7294800520459859e+00
+-4.0235252614776464e+01
+1.2690407072497822e+01
+4.4308731926659144e+00
+-2.9181635992115876e+01
+-7.4395032670095018e+00
+5.6497855296020738e+00
+-4.0321706356530292e+01
+-6.5738727033188935e+00
+5.5486332858077958e+00
+-3.9304516024220746e+01
+-7.8662829049346419e+00
+5.3002555194978402e+00
+-3.9148850081571034e+01
+1.5094368613533502e+01
+3.4375454638519485e+00
+-2.3506073892778375e+01
+1.3180813359561229e+01
+3.9013069216166287e+00
+-2.8276939886499438e+01
+-2.4641563772233336e+01
+5.4402925851644941e+00
+-3.9305603368135536e+01
+-9.7904725820782745e-01
+3.2922809987930113e+00
+-2.3901466890379183e+01
+1.3754670396859819e+01
+3.6809168648918242e+00
+-2.7358335931258633e+01
+-4.6570351475754475e+00
+4.9116272691049900e+00
+-3.9188244053627614e+01
+1.3982619990047933e+01
+3.5528545654118289e+00
+-2.6622519937199641e+01
+1.4076981480679379e+01
+3.5634667237638316e+00
+-2.6769368031138590e+01
+-1.2940729222326860e+01
+4.8392134462597349e+00
+-3.8255517320187543e+01
+-8.6714581910361090e+00
+4.7202526254882136e+00
+-3.7911158219433617e+01
+1.4389563298033146e+01
+3.6084855930140147e+00
+-2.7027482693402703e+01
+1.3989280892488058e+01
+3.2739364487182798e+00
+-2.5573830003823605e+01
+1.4123887837779833e+01
+3.3485675617047739e+00
+-2.5852362387058502e+01
+1.4165661175702621e+01
+3.0729062695540148e+00
+-2.4137213896342463e+01
+1.3886913769704977e+01
+3.1509844264843796e+00
+-2.5932733723494763e+01
+1.4311186056645653e+01
+3.1560301283250793e+00
+-2.5248130909695533e+01
+1.4058197036352423e+01
+3.0786695675555227e+00
+-2.5186176181975529e+01
+-1.7230666313199390e+00
+3.1287473526808700e+00
+-2.6024502597013907e+01
+1.3871482577679672e+01
+3.0546487953640198e+00
+-2.6562827974748611e+01
+1.3871482577679672e+01
+3.0546487953640198e+00
+-2.6562827974748611e+01
+-1.9569457147753158e+00
+3.0657466498680632e+00
+-2.6410351608868609e+01
+1.4820900201815915e+01
+2.7331187935753842e+00
+-2.3689183272513258e+01
+1.5013413785785904e+01
+2.7692677243249952e+00
+-2.3981562482123564e+01
+1.5013413785785904e+01
+2.7692677243249952e+00
+-2.3981562482123564e+01
+1.3935390677415858e+01
+2.8833112184290575e+00
+-2.6103860140402819e+01
+1.4000983365665089e+01
+2.9182472624249112e+00
+-2.6686280975923644e+01
+1.4448266768396826e+01
+2.7929326567989490e+00
+-2.5321861859225564e+01
+1.4388874438232444e+01
+2.7616093722053301e+00
+-2.5255514337195677e+01
+2.8491367247797317e-01
+2.4749890148914981e+00
+-2.1705596967333349e+01
+1.3453874561242388e+01
+3.0495023171660982e+00
+-2.9092122194211761e+01
+-1.9220052408892387e+00
+2.7263789749006615e+00
+-2.5788318948011433e+01
+1.3099175271770049e+01
+3.0501684120736603e+00
+-3.0340642879723642e+01
+1.3085922457853886e+01
+3.1087947418927975e+00
+-3.0381091644419826e+01
+1.4209574984688802e+01
+2.6229011411986827e+00
+-2.5202898952473173e+01
+1.4525062437725595e+01
+2.6035477418197264e+00
+-2.4912007500760367e+01
+1.4540514700546359e+01
+2.4974942320500295e+00
+-2.4083896393577604e+01
+4.3905768103111482e+00
+2.4146441188528875e+00
+-2.3408469268252329e+01
+1.4744850506900015e+01
+2.4400656574933217e+00
+-2.5092521085001021e+01
+1.4129067703216993e+01
+2.4960744042256211e+00
+-2.6706015102198883e+01
+-7.7222936411756917e+00
+3.3354130040022545e+00
+-3.6552350044189012e+01
+1.4500949574537012e+01
+2.4838545493170536e+00
+-2.5857517818598456e+01
+1.4360833275481312e+01
+2.4547009754856162e+00
+-2.5623099519777014e+01
+-7.7599127866682833e+00
+3.2838656439498601e+00
+-3.6745347083248305e+01
+1.3384547003656378e+01
+3.0027974116461533e+00
+-3.3404841020829068e+01
+1.4532265006816422e+01
+2.3664733356786924e+00
+-2.6207260387627294e+01
+1.4592806289239597e+01
+2.2519185133714394e+00
+-2.5100206579254717e+01
+1.3106982097835223e+01
+2.7673627134719361e+00
+-3.2349096540952146e+01
+-7.0677684732473205e+00
+2.9859951944614638e+00
+-3.6151395080363400e+01
+9.6961720205631452e-01
+2.0087805175406857e+00
+-2.1465792292793747e+01
+1.3893918895124434e+01
+2.2812812231568196e+00
+-2.7609417218725284e+01
+1.4337919168260026e+01
+2.1657400520425139e+00
+-2.5691755297137963e+01
+1.3680394546525262e+01
+2.8587688417067660e+00
+-3.4928005025451412e+01
+1.3925721738821718e+01
+2.1498269270704795e+00
+-2.7412914402517636e+01
+1.4164147427042460e+01
+2.1833247086183243e+00
+-2.7607414435501205e+01
+1.5137201777282552e-01
+1.6882546286112790e+00
+-2.1166363159206824e+01
+-7.7847620144789387e+00
+2.3708387883344915e+00
+-3.5601081362320080e+01
+1.4064196787874113e+01
+1.9183908744079985e+00
+-2.8187001943794616e+01
+1.5717084429523208e+01
+2.1402493988482529e+00
+-3.1332320682438620e+01
+-1.2890242863081001e+01
+2.3885566825631201e+00
+-3.5661521428328747e+01
+1.4310758449580547e+01
+1.8105165214279921e+00
+-2.7120454502614027e+01
+1.4043603563195708e+00
+1.5812929624434353e+00
+-2.0759001290889930e+01
+1.4228588156109836e+01
+1.6938162617559258e+00
+-2.7495997686290497e+01
+1.9879985393352404e+00
+1.4404237244723079e+00
+-2.1204420950613134e+01
+1.5140109807020096e+01
+1.6079181101314606e+00
+-2.4507069414283741e+01
+-1.1718827210190437e+01
+2.0209400655349992e+00
+-3.4875802468539511e+01
+1.4174670116228000e+01
+1.6307156931693607e+00
+-2.7806515906562403e+01
+1.4449359544620567e+01
+1.5858988702390953e+00
+-2.7213391202214421e+01
+1.4951249966891645e+01
+1.3021226779289898e+00
+-2.4355223490303096e+01
+1.4034605219267061e+01
+1.3939023976437925e+00
+-2.8353470786903021e+01
+1.5245122408428580e+01
+1.2814211082921270e+00
+-2.4232010534240182e+01
+1.4572026408519498e+01
+1.2951038206570638e+00
+-2.6488502798103458e+01
+1.4086991732561232e+01
+1.3255854043087234e+00
+-2.8798076964090800e+01
+1.3357264920674483e+01
+1.5125283514898484e+00
+-3.5148842493821746e+01
+1.4634483636634158e+01
+1.1621095169969868e+00
+-2.6289731969711486e+01
+1.4634483636634158e+01
+1.1621095169969868e+00
+-2.6289731969711486e+01
+-2.0660163609141332e+01
+1.5041975238118825e+00
+-3.4475625874207481e+01
+-7.8952222608060403e+00
+1.4447595776428783e+00
+-3.3856955512192066e+01
+-1.4559369046564221e+00
+1.0172271478966579e+00
+-2.2356975557144725e+01
+3.1866477045468353e+00
+1.0218311498987656e+00
+-2.2006435643395097e+01
+1.4359965387214315e+01
+1.0282239719299853e+00
+-2.7451436632893749e+01
+1.5068514166900753e+01
+9.7423907674690902e-01
+-2.4271404017304594e+01
+1.4884893297240961e+01
+8.9583507694648534e-01
+-2.6260416799422799e+01
+1.1824089172772771e+01
+1.1649508108164690e+00
+-3.4157693193958046e+01
+1.3252150467743114e+01
+9.9788773571386136e-01
+-3.2223512569601404e+01
+1.4223196488245136e+01
+1.1449005805080483e+00
+-3.2226169805057388e+01
+1.4339175450075548e+01
+8.8388996767486860e-01
+-2.7679281467450224e+01
+1.4339175450075548e+01
+8.8388996767486860e-01
+-2.7679281467450224e+01
+4.1206753516609034e+00
+8.0193651786399489e-01
+-2.1227816223319849e+01
+1.4678797935251760e+01
+8.1276473364241986e-01
+-2.6241162321256095e+01
+-8.9968724203715347e+00
+1.0779122520036206e+00
+-3.3454212940376820e+01
+1.4403884549008342e+01
+7.6035243371508954e-01
+-2.6926325250839525e+01
+-1.0306299447975968e+01
+9.6822056436310222e-01
+-3.3537811214514470e+01
+-1.0671447292616438e+01
+8.9269528917158236e-01
+-3.3416681410873267e+01
+-1.9109016633169020e+00
+7.3065403840462284e-01
+-2.2817719882751206e+01
+-8.5556113236036531e+00
+9.0773206961031427e-01
+-3.3263623079594829e+01
+4.4459735870222188e+00
+6.7855130386632578e-01
+-2.1510053392332125e+01
+1.4511118061057951e+01
+6.9291036476891643e-01
+-2.7492155945213462e+01
+1.4511118061057951e+01
+6.9291036476891643e-01
+-2.7492155945213462e+01
+1.5322043668962682e+01
+7.4538892608362384e-01
+-2.4124111793154576e+01
+1.5241890660372439e+01
+6.9404716220431839e-01
+-2.3983425816035268e+01
+1.3859852430279691e+01
+7.7208584008051895e-01
+-2.9310993577302401e+01
+1.3773310431621399e+01
+7.5871531264150627e-01
+-2.9195759470946861e+01
+1.5558881153019554e+01
+7.7297345851725219e-01
+-2.7773124651008274e+01
+1.4661203550473727e+01
+7.0507203994390366e-01
+-2.6268258582507229e+01
+1.4646442705944219e+01
+6.6259955338760157e-01
+-2.6212579605743322e+01
+-1.0532616055167489e+01
+8.1458445814649083e-01
+-3.3335247489994394e+01
+1.2921155042988049e+01
+8.1853931258468227e-01
+-3.4129367183806899e+01
+-1.0791445429026219e+01
+8.0295094096257191e-01
+-3.3372756474493791e+01
+1.4233428907278780e+01
+5.9077828308791513e-01
+-2.9136319705395874e+01
+1.4048764155106364e+01
+6.2650164192971713e-01
+-2.8849598020056931e+01
+-1.1798150446398935e+01
+7.8995226635156401e-01
+-3.3674205132281287e+01
+1.5399728367343364e+01
+5.5403895360717781e-01
+-2.3991778869667634e+01
+-1.0146949438105855e+01
+7.0882106987956972e-01
+-3.3263900690099973e+01
+1.3899969145268539e+01
+6.7872710122717694e-01
+-3.3205641165591935e+01
+-8.4511144186008114e+00
+5.0968870249759979e-01
+-3.2633421761267591e+01
+1.4209382639307981e+01
+3.8533353446098639e-01
+-3.0028739043653040e+01
+1.5374976817738856e+01
+2.7841755410904240e-01
+-2.3265262056708973e+01
+-8.5113733169329375e+00
+4.3818737443001182e-01
+-3.2447535440818214e+01
+1.4377732007173643e+01
+2.5040807450421326e-01
+-3.1997623488148083e+01
+1.4760978196435969e+01
+2.6431043225167961e-01
+-3.2738959377205553e+01
+1.4610935111019984e+01
+1.8069629119183842e-01
+-2.7182969160145337e+01
+1.4930959028637846e+01
+1.8481648550407578e-01
+-2.6662963036033130e+01
+1.4247981203509811e+01
+2.5869196811350448e-01
+-3.0502966397217676e+01
+-1.2349404225747083e+01
+2.6441761742403708e-01
+-3.2695172217135564e+01
+1.4564493913617003e+01
+1.1551787967796177e-01
+-2.8215666036554627e+01
+1.4659660843696571e+01
+-6.2836552625152614e-02
+-2.7329632035679406e+01
+1.4672047698865823e+01
+-7.2893436030304709e-02
+-2.7305972928326668e+01
+1.4774129253734207e+01
+-6.9356822198765572e-02
+-2.7376182123982058e+01
+1.4319385213096606e+01
+-9.5408326731705351e-02
+-2.8727248965327860e+01
+2.7227218526993355e+00
+1.3274170943265545e-01
+-2.1581647146568180e+01
+6.1830230472565919e+00
+5.2476802111613215e-02
+-2.5033712744692956e+01
+4.2745849753354985e+00
+-6.7982049555412804e-04
+-2.1988512826405785e+01
+-9.0995783667732635e+00
+-2.1507975638450436e-01
+-3.2205647471644134e+01
+-9.0703796341689795e+00
+-2.3921162135130830e-01
+-3.2143648938644560e+01
+-1.1895386872780671e+00
+-5.8023987199694753e-02
+-2.1803429223165821e+01
+-1.0506592628933443e+01
+-3.2018671552221822e-01
+-3.1883695393296112e+01
+-3.4825238024509293e+00
+-1.5167195005889772e-01
+-2.3088021297783609e+01
+-1.4873252624431959e+00
+-1.6680472688365533e-01
+-2.2260341635994664e+01
+2.7635123554007470e+00
+-1.5518808123494296e-01
+-2.0448942197829780e+01
+-9.8448121783772695e+00
+-3.8127149201224320e-01
+-3.0216196868415043e+01
+-8.9735248882539800e+00
+-3.7718422441614624e-01
+-3.1900297589175572e+01
+1.5468917361124884e+01
+-4.2709782073533559e-01
+-2.8581053834889666e+01
+1.4776966064542464e+01
+-4.7385203869532871e-01
+-2.7354553376866011e+01
+-1.0632772303405519e+01
+-4.9511512163637089e-01
+-3.1776679952692596e+01
+4.2254451552644650e+00
+-3.6301132729959834e-01
+-2.1410100063720151e+01
+-8.1304709147793552e+00
+-8.6151152597596792e-01
+-3.1273789683499974e+01
+1.5617586457122430e+01
+-6.0217334160566549e-01
+-2.6410919096531835e+01
+-8.0283487668212654e+00
+-8.0286196397112453e-01
+-3.1441995952180935e+01
+-3.3972798748470217e+00
+-4.8613529428771873e-01
+-2.2794996052890685e+01
+-3.3863933145849470e+00
+-4.9557028066622200e-01
+-2.2710844812414596e+01
+1.4556168593818490e+00
+-4.2875136479824638e-01
+-2.0516088618490059e+01
+1.4218519783064658e+00
+-4.3208910406986223e-01
+-2.0354676773568631e+01
+1.6142632922887248e+01
+-8.6795967161866006e-01
+-3.1095959249584030e+01
+1.4660773498736699e+01
+-9.7537152161374252e-01
+-2.9095960649599341e+01
+1.5595770693461041e+01
+-8.2545195588702958e-01
+-2.5263132397568491e+01
+-1.1140807703403379e+01
+-1.2359227214948758e+00
+-3.1025245720535249e+01
+1.4820583712674670e+01
+-1.4000168035648961e+00
+-2.8726658468074778e+01
+-9.3265219973495288e+00
+-1.7190064525209612e+00
+-3.0095358467661782e+01
+4.4362517058448390e+00
+-1.1712396657012418e+00
+-2.1045938864132960e+01
+1.2097798289236705e+01
+-1.9138155388683644e+00
+-3.0669893855778284e+01
+1.5484451738272568e+01
+-1.7757155658653418e+00
+-2.6926930867983344e+01
+-9.1325077335999505e-01
+-1.3432516060822137e+00
+-2.0898127880931973e+01
+-9.2938539576659736e+00
+-1.9165775772355893e+00
+-2.7889550955491025e+01
+1.4862425063732216e+01
+-2.2800565645079605e+00
+-2.9013171960293022e+01
+-8.9253968890496704e+00
+-1.9886855112204327e+00
+-2.8315940336033336e+01
+1.5709666855000833e+01
+-2.3302490006224184e+00
+-2.6003414173679264e+01
+1.5550236842380354e+01
+-2.2103381188991174e+00
+-2.5792173460854730e+01
+1.5879310038491861e+00
+-1.6200372854702780e+00
+-2.0263030475884452e+01
+2.9262339421476113e+00
+-1.7193432022990953e+00
+-2.1729573190109452e+01
+1.9421470813261348e+00
+-1.6490614445547742e+00
+-2.0729519366078385e+01
+-3.7077069262245295e+00
+-2.1435672203936300e+00
+-2.4883045851291641e+01
+4.1655781307442530e-01
+-1.7444455618288552e+00
+-2.0287920848694970e+01
+4.0172595171915884e+00
+-1.7886746727728817e+00
+-2.0888992784797580e+01
+1.5988226489738603e+01
+-2.4587408977631875e+00
+-2.5468584984539174e+01
+2.2666247677873481e+00
+-1.8229357107188824e+00
+-2.1393626089648528e+01
+1.7901004686141238e+01
+-2.8776796098507491e+00
+-3.0146390331190418e+01
+1.6238299382673130e+01
+-2.4596318340359224e+00
+-2.4241580390458680e+01
+1.5331441005958141e+01
+-3.0112187719893257e+00
+-2.8525503756664548e+01
+-7.4427944669491064e-01
+-1.9837991188417545e+00
+-2.0713168943092963e+01
+-9.4979432288625532e+00
+-2.8658778440522017e+00
+-2.8535017550914276e+01
+-7.0896841481131068e-01
+-2.1644970338908123e+00
+-2.0613007154494177e+01
+1.6088912282720010e+01
+-2.9702264517085992e+00
+-2.5442543288810139e+01
+3.6579374389964663e+00
+-2.2627941017693858e+00
+-2.0600301435977091e+01
+-9.3683758572138078e+00
+-2.9821527779072339e+00
+-2.6231935451268441e+01
+-1.2285523853882450e+00
+-2.3553571331873426e+00
+-2.0356540667327220e+01
+-2.7869467099532907e+00
+-2.7426613641433950e+00
+-2.2885517074178683e+01
+-6.8156265408823768e-01
+-2.4620780994800957e+00
+-2.0646474487051695e+01
+4.2430473133823821e+00
+-2.5261488432406192e+00
+-2.0358963432718600e+01
+-1.2452638888202228e+00
+-2.4577674706046544e+00
+-2.0185286271685026e+01
+-1.2264618135865670e+00
+-2.4793659847561678e+00
+-2.0171449134562021e+01
+1.6023383137600771e+01
+-3.3809605756248917e+00
+-2.4954749679661951e+01
+-8.9263286136082165e+00
+-3.2636952090785694e+00
+-2.5356099093791681e+01
+3.9759626658066693e+00
+-2.5998623610065232e+00
+-2.0261028074119327e+01
+1.6100905638650982e+01
+-3.6562796887361224e+00
+-2.7693029839955319e+01
+1.6119584663803010e+01
+-3.6638876171684629e+00
+-2.4938174162258640e+01
+-3.8381394016592502e-01
+-2.8779620785304694e+00
+-2.0707817437364113e+01
+2.1672094413734824e+00
+-2.9571753998711108e+00
+-2.0894603575976316e+01
+3.0206181741137095e+00
+-2.9421232922050389e+00
+-1.9801682679175677e+01
+1.8576345633762548e+00
+-3.1112534971310533e+00
+-1.9933816789932965e+01
+4.0053926433524305e+00
+-3.7809330534422712e+00
+-2.1706978960791556e+01
+-7.2411295293566025e-01
+-3.9419500055701162e+00
+-2.1833384693035445e+01
+2.7399633409578661e-01
+-4.1333572428918819e+00
+-2.1215643456653293e+01
+4.5567900941245787e+00
+-4.5217537289628096e+00
+-2.2435901889472667e+01
+5.0930229860163276e+00
+-4.7429140753038705e+00
+-2.2660799180288670e+01
+5.5337351777121322e+00
+-5.0433103122899468e+00
+-2.2596184892992341e+01
+1.4826023377946713e+01
+-6.5109836464585511e+00
+-2.6863026438595146e+01
+6.3613244616304367e+00
+-5.9882557718727725e+00
+-2.3640248363044456e+01
+6.3070939900107970e+00
+-5.9608126218111961e+00
+-2.3440940169526829e+01
+4.7306098192912643e-01
+-5.8569770597817881e+00
+-2.1225677297477390e+01
+8.0120218634679254e+00
+-6.8542660869279093e+00
+-2.3739410982843118e+01
+7.5570954102936012e+00
+-6.9686296309956184e+00
+-2.3228078857526782e+01
+1.4825342572388186e+01
+-7.8193191618743541e+00
+-2.5688486191432123e+01
+-5.0896912293637557e+00
+-6.9800986475022908e+00
+-2.3181212856968433e+01
+1.3736804073853472e+01
+-8.1500021372670695e+00
+-2.4718461688176852e+01
+-4.6121972058726772e+00
+-7.4080018360780455e+00
+-2.2359948242265734e+01
+1.3351742306398625e+01
+-8.4598922413872053e+00
+-2.4362901612457897e+01
+-2.5681870881452871e+00
+-7.7641549972748045e+00
+-2.1835892871754041e+01
+-2.5153291102415016e+00
+-7.8657769988172364e+00
+-2.1856230776457441e+01
+-3.6615876717625380e+00
+-7.8359493719694235e+00
+-2.1771720298592562e+01
+6.4356334450106631e+00
+-8.0634380260527951e+00
+-2.1678122553946139e+01
+-1.9081491452281925e+00
+-8.1931768569876233e+00
+-2.1420518893312927e+01
+-1.3406582455439962e+00
+-8.2468208271339591e+00
+-2.1326388057152652e+01
+-5.2439630836056779e+00
+-7.5919423189964608e+00
+-1.9623336463558793e+01
+1.9256969130640282e+00
+-8.2726851562746084e+00
+-2.1041097575472293e+01
+-2.7036669152593035e-01
+-8.2600183331903647e+00
+-2.0980482020898105e+01
+-1.8179899059912203e+00
+-8.2514688549469764e+00
+-2.1148084940724104e+01
+2.1246984548990651e+00
+-8.4622344367747839e+00
+-2.1126158599644722e+01
+2.3661279029987264e-01
+-8.2379742453895801e+00
+-2.0617922314655090e+01
+6.2122785366647859e-01
+-8.2463131803909864e+00
+-2.0800798187145233e+01
+-6.6108281993533891e-01
+-8.5188633790819939e+00
+-2.1066883474660774e+01
+1.3128442860004048e+00
+-8.4273806630676305e+00
+-2.0728984768843148e+01
+1.3939164934244573e+01
+-9.6646532050454734e+00
+-2.3613558111191129e+01
+8.0839764980074467e+00
+-8.9331131840512246e+00
+-2.1363902762052955e+01
+1.3106990268870998e+01
+1.4897153971083274e+01
+-3.1280851534998860e+01
+-1.3675901711297644e+01
+1.6341799445887691e+01
+-3.4870659298150812e+01
+1.0020673189890500e+01
+2.3336658245850916e+01
+-5.1255235197704366e+01
+1.9467150882034069e+01
+2.6469019549685122e+01
+-5.7982788958515080e+01
+2.0430804196084381e+01
+2.6583259443960380e+01
+-5.8241257290361787e+01
+7.0730996216020365e+00
+2.2270493807122765e+01
+-4.9647214301598240e+01
+9.7773606101133890e+00
+2.3123331075014338e+01
+-5.1481829981310277e+01
+-2.6966763033713772e+01
+2.2342389308349748e+01
+-4.9123105047235072e+01
+-1.0272473586651623e+01
+1.7174167087274039e+01
+-3.7857345947120798e+01
+1.3672869639160274e+01
+1.4110348250992820e+01
+-3.0435149316223118e+01
+1.3484783683802981e+01
+1.3950467951684089e+01
+-3.0049952220112129e+01
+-1.5975328767945259e+01
+1.5847634655100240e+01
+-3.4399035770580824e+01
+-4.7518260258027256e+00
+1.8649143538961411e+01
+-4.1723745478502131e+01
+-4.7518260258027256e+00
+1.8649143538961411e+01
+-4.1723745478502131e+01
+1.5303353777151841e+01
+2.4468447953407686e+01
+-5.4854340756354503e+01
+-5.1509873537717903e+00
+1.8578303239124633e+01
+-4.1618615172991056e+01
+-5.1255973580008751e+00
+1.8594948528719730e+01
+-4.1718785224497083e+01
+6.9162716265476509e-01
+1.9976537411377720e+01
+-4.6232236693431084e+01
+8.3067426956054131e+00
+2.2027845985399331e+01
+-5.1124372527526504e+01
+8.2833934438044405e+00
+2.1954099642294949e+01
+-5.0970825278880071e+01
+-1.1768246897152736e+01
+1.6379287348605800e+01
+-3.7731967912830321e+01
+8.8265918307984439e+00
+2.2001461292677686e+01
+-5.1601538518898181e+01
+8.8792994335490825e+00
+2.2267088090899360e+01
+-5.2372026820003697e+01
+8.8792994335490825e+00
+2.2267088090899360e+01
+-5.2372026820003697e+01
+1.6489708808269807e-01
+1.9529467569001099e+01
+-4.6075060324090984e+01
+9.8153438354710350e+00
+2.1502164937426347e+01
+-5.0518962373948810e+01
+1.1312741635150058e+01
+2.5143548886378259e+01
+-5.9830827944257372e+01
+1.3634970188289266e+01
+1.3502144385774500e+01
+-3.0656021517539944e+01
+1.3433716028003467e+01
+1.3515691158861529e+01
+-3.0848083056910927e+01
+4.8985360700866307e+00
+2.1347023303785647e+01
+-5.1051491002118595e+01
+6.2749873821284829e+00
+2.1591245454112716e+01
+-5.1815817271034710e+01
+-1.6362629818582665e+01
+1.5417483779064645e+01
+-3.5529551775286279e+01
+-1.6200018665282986e+01
+1.5176396583659933e+01
+-3.4955489032824509e+01
+-1.6511367239821151e+01
+1.4954901240895609e+01
+-3.4693162513154014e+01
+1.9565302855806443e+01
+2.4942416972810790e+01
+-6.0031004977927999e+01
+1.4351931217285710e+01
+1.3793248402360550e+01
+-3.1988070073281076e+01
+1.2313046805522113e+01
+1.0885676238977750e+01
+-2.5003555284070242e+01
+1.2313046799077796e+01
+1.0885676232240565e+01
+-2.5003555276313691e+01
+-3.5692677480214945e+00
+1.7957822259746631e+01
+-4.4117509133150520e+01
+1.3447071450582239e+01
+1.4179226740395221e+01
+-3.3674755895396842e+01
+9.0722495957185441e+00
+2.1289026075830439e+01
+-5.3025341914226615e+01
+1.2229161230254162e+01
+1.0984617122505449e+01
+-2.5951182446848261e+01
+1.2059347996234065e+01
+1.0643184763293123e+01
+-2.5180564153155522e+01
+4.1363745580503786e-01
+1.8702268804075814e+01
+-4.7482368133159305e+01
+3.8797024947538872e-01
+1.8621450421160056e+01
+-4.7352620545915350e+01
+-1.7480516686702803e+01
+1.5379234382960664e+01
+-3.8463789858991376e+01
+-1.5913990558380398e+01
+1.4369681976418264e+01
+-3.5688053166476820e+01
+1.5935981251947062e-01
+1.8417933774075777e+01
+-4.7435126180715862e+01
+-3.1646201259124435e+01
+2.4056509254617993e+01
+-6.0597919019669675e+01
+-1.2051423773349793e+01
+1.4780913063907059e+01
+-3.8547553002784852e+01
+-2.3452975409043606e+01
+1.8145289743419514e+01
+-4.6882159023470287e+01
+-1.5304318895921934e+01
+1.4046019940053487e+01
+-3.6194255504073155e+01
+-1.7141492136598576e+01
+1.4147647286503201e+01
+-3.6423084542609807e+01
+1.3939351904464019e+01
+9.4334174386712508e+00
+-2.3240370892331882e+01
+1.2080537486509792e+01
+1.0118639914988853e+01
+-2.5650802284965760e+01
+1.3654900862197856e+01
+9.7476652839153797e+00
+-2.4427441095913693e+01
+1.2130907878841843e-01
+1.7778552396389927e+01
+-4.8445117824408449e+01
+1.3001863999829464e+01
+1.2847286914310159e+01
+-3.3992025200329429e+01
+1.3001863999829464e+01
+1.2847286914310159e+01
+-3.3992025200329429e+01
+1.9390509425795042e+01
+2.4058171157034163e+01
+-6.6036201730583358e+01
+-7.9269341308285126e+00
+1.5525337775951501e+01
+-4.2726054805845166e+01
+1.3487545263812370e+01
+8.7868722825790382e+00
+-2.2537701055120152e+01
+-5.0783358042350635e+00
+1.6109229557463724e+01
+-4.5231727219411738e+01
+1.2927024088444961e+01
+1.2705472577514707e+01
+-3.4272824673335812e+01
+-8.3088756105479931e+00
+1.5069685756220208e+01
+-4.2730383887717359e+01
+-7.3006483125591659e+00
+1.5376329556056367e+01
+-4.3623325316389078e+01
+-6.1032930465677904e+00
+1.5706817536144337e+01
+-4.4554078575757664e+01
+-1.2728519400351791e+01
+1.3921619346981027e+01
+-3.9361074109358164e+01
+-1.5529641631145919e+01
+1.3676637845775900e+01
+-3.8168483820255048e+01
+-1.6994827654867407e+01
+1.3047215883482444e+01
+-3.6588850873827333e+01
+-7.8428597941079046e+00
+1.4929836080778756e+01
+-4.3716641760231539e+01
+1.2172681800859278e+01
+9.2331813639731593e+00
+-2.6544873080181109e+01
+-9.7249643873388827e+00
+1.4057673520994875e+01
+-4.2327138843622762e+01
+1.3291040865749158e+01
+9.0382075752917910e+00
+-2.5633045110514995e+01
+-1.1539158096540916e+01
+1.3601788206053673e+01
+-4.1331312243913551e+01
+-7.2558491192051431e+00
+1.4540063172576136e+01
+-4.4935009585016005e+01
+6.5879560051006802e-01
+1.6342753205269656e+01
+-5.0807468742651082e+01
+3.4953289917068529e+00
+1.7411571432319207e+01
+-5.5085254109560054e+01
+-1.0279134211826275e+01
+1.3502678988137983e+01
+-4.2810889624993209e+01
+-3.1189417297829884e+01
+1.8363081279992478e+01
+-5.8721880426216799e+01
+1.2664686403758118e+01
+8.0116499839320863e+00
+-2.4936265970929149e+01
+-2.9283530446022766e+01
+1.8072451821373114e+01
+-5.8734839502868617e+01
+-4.7513898489277970e+00
+1.4527469768326721e+01
+-4.8283522272737279e+01
+1.2775953601692253e+01
+1.1615285251185790e+01
+-3.7746651296456761e+01
+1.5037006204672977e+01
+1.1215172199182598e+01
+-3.6310346916337984e+01
+2.4600572842974611e-01
+1.5079961067926272e+01
+-5.2259897708726172e+01
+-1.0060419941920726e+01
+1.2511571702184684e+01
+-4.4392170444955255e+01
+-1.0037471294311285e+01
+1.2469226273443828e+01
+-4.4111721535045007e+01
+7.6905850662140667e+00
+1.4552163862113208e+01
+-5.2247156815489468e+01
+7.7012819237818162e+00
+1.4620125832447775e+01
+-5.2402950862893974e+01
+-2.9179338970766690e+01
+1.5827782593294227e+01
+-5.5363449958295270e+01
+-2.6918168934316160e+01
+1.5659719472427739e+01
+-5.5140309025465633e+01
+1.3531102386797190e+01
+9.9517121976415428e+00
+-3.4856191639662043e+01
+-1.0788246863290475e+01
+1.2197789772468655e+01
+-4.4011122749380689e+01
+1.3831014345602446e+01
+6.7900362950095570e+00
+-2.3274045516889547e+01
+-6.4375369354809582e+00
+1.2786492644803740e+01
+-4.7669606147386858e+01
+-1.0744529522929144e+01
+1.1912015633848828e+01
+-4.3868138490095170e+01
+1.3447977051894096e+01
+7.1368492153063565e+00
+-2.5134777866454325e+01
+1.7228151669207673e+01
+1.1795795737865875e+01
+-4.3816254111276869e+01
+1.5426967460579448e+01
+1.0586381266405109e+01
+-3.9342221429137084e+01
+1.2302384009485200e+01
+7.4738466367012864e+00
+-2.6520832548237021e+01
+1.2528599097967939e+01
+7.3189209724330864e+00
+-2.6051615861592246e+01
+-4.5694306707154775e+00
+1.3055402457188165e+01
+-4.9713814106198534e+01
+7.5867379261671131e+00
+1.3142540592848290e+01
+-5.0269710172235214e+01
+1.9147766140603177e+00
+1.2910769147292058e+01
+-4.9755842514874132e+01
+1.2334125743891111e+01
+7.2242879513605684e+00
+-2.6665978501541268e+01
+-6.0577414752061136e+00
+1.2347031596240813e+01
+-4.9008486378873087e+01
+-1.6921127135237668e+01
+1.0839743338661263e+01
+-4.1791204009430373e+01
+-1.6921127135237668e+01
+1.0839743338661263e+01
+-4.1791204009430373e+01
+-1.7541509943691231e+01
+1.0662587065796862e+01
+-4.1664521522104181e+01
+-1.3393546716862739e+01
+1.0486813676898885e+01
+-4.2116379455192707e+01
+1.5481366709144710e+01
+9.7765523432734334e+00
+-3.9156279980207309e+01
+-1.2834122772099260e+01
+1.1014690433678327e+01
+-4.4589173311304222e+01
+-8.8002139767342076e+00
+1.1583171350124230e+01
+-4.7986523123281039e+01
+-3.8982812612175644e-01
+1.1562339541794865e+01
+-4.8195750393239571e+01
+-3.7011471290999454e-01
+1.1642372791600275e+01
+-4.8592102644012613e+01
+1.3775806455650104e+01
+6.1822121288744691e+00
+-2.4221872400117444e+01
+2.6549757837319663e+00
+1.1503521845372152e+01
+-4.8700581707072523e+01
+-1.6104778357673400e+01
+9.9139956801182674e+00
+-4.1189057553470441e+01
+-1.7870488607926617e+01
+9.8137132205173359e+00
+-4.2541245830604176e+01
+-1.6998577084149588e+01
+9.7848382069950635e+00
+-4.2786368128684074e+01
+-1.7239740705630339e+01
+9.5199271948635538e+00
+-4.2017456704818841e+01
+2.2561902746122255e+00
+1.0141362319011288e+01
+-4.6049076825957201e+01
+1.2368706196031050e+01
+6.7215399659932844e+00
+-2.9193882329288829e+01
+7.7070397874671128e+00
+9.7576959237254801e+00
+-4.5132996475481931e+01
+-2.4184101839377767e+01
+1.0242626412780442e+01
+-4.7300264446928857e+01
+7.2705540675326290e+00
+1.0123022134486122e+01
+-4.7760307443229841e+01
+1.2446197701901193e+01
+6.2084848795771377e+00
+-2.8374024636706277e+01
+1.3040938244365154e+01
+6.1479055483391303e+00
+-2.8142503680256432e+01
+1.2627124046945427e+01
+6.0750389369708255e+00
+-2.7702475616557475e+01
+-2.4948926999013398e+01
+1.0050013308664013e+01
+-4.6918607181418018e+01
+1.2460177642251734e+01
+6.0394160252295590e+00
+-2.8836681824362365e+01
+-2.9999243451424018e+00
+8.9611683024578213e+00
+-4.4611603427544026e+01
+1.2997907361572663e+01
+5.7076832744693595e+00
+-2.7006320798692627e+01
+-1.6950544638708454e+01
+8.4021832076024623e+00
+-4.1236557868217226e+01
+1.3256366133286745e+01
+5.7589436201248949e+00
+-2.7743085270333779e+01
+1.3267011068127202e+01
+5.5976277399590408e+00
+-2.6940122105751328e+01
+1.3571643975712385e+01
+5.4794260655088900e+00
+-2.6223950092694164e+01
+1.3047586707365769e+01
+5.8853421660183551e+00
+-2.8639368134792893e+01
+1.2528408041049573e+01
+5.7770110406119599e+00
+-2.9336645825318236e+01
+1.2487632495104700e+01
+5.7549330371550118e+00
+-2.9282976312948623e+01
+1.2787019760616044e+01
+5.5324987766388576e+00
+-2.8086043107487125e+01
+-1.2508099728616451e+00
+8.0910258135737614e+00
+-4.3866242508108868e+01
+1.2231601819378055e+01
+5.6588253701783247e+00
+-3.0435284119671540e+01
+-2.8495358121500400e+00
+7.4229166799112081e+00
+-4.1708734918849402e+01
+1.3459146596899274e+01
+4.9896073146582598e+00
+-2.6533991461518035e+01
+1.3510698354196007e+01
+4.8998343689931430e+00
+-2.6292118267409634e+01
+-1.0918787620331139e+01
+7.5398980763439605e+00
+-4.2744632836984927e+01
+-1.0536180210813592e+01
+7.2377603471698002e+00
+-4.1392924244260968e+01
+1.2757850945981779e+01
+5.2103262505160375e+00
+-2.8478631647621000e+01
+1.2636665395996873e+01
+5.2215856750115197e+00
+-2.9455143243543787e+01
+1.3667091248068144e+00
+4.2992795590682249e+00
+-2.4664167629041046e+01
+-9.8076133337298064e+00
+6.6018633862769409e+00
+-4.0686237488616491e+01
+-9.8076133337298064e+00
+6.6018633862769409e+00
+-4.0686237488616491e+01
+1.2759266659408834e+01
+4.7523973240364077e+00
+-2.9199886766129698e+01
+9.1556666564368572e-01
+4.0232814276867135e+00
+-2.4250988397976613e+01
+1.4159193018381266e+01
+3.8634940926430654e+00
+-2.6398913742246215e+01
+1.5946501280716683e+01
+4.2976183615250880e+00
+-2.9991656773886913e+01
+1.3874637321084034e+01
+3.8102012080305445e+00
+-2.6288915016022198e+01
+1.3874637321084034e+01
+3.8102012080305445e+00
+-2.6288915016022198e+01
+3.4039768913448056e+00
+3.2868625223769663e+00
+-2.2595642317195505e+01
+1.3385579582639105e+01
+3.8382693368170173e+00
+-2.7735733444724605e+01
+1.2945848654922813e+01
+4.0013431469979688e+00
+-2.9721504613788525e+01
+1.4097926782632941e+01
+3.7209425577129100e+00
+-2.6758903416658271e+01
+1.4062378367771821e+01
+3.5813850231937665e+00
+-2.5864327302255827e+01
+1.3844196975691752e+01
+3.6463157368459367e+00
+-2.6789613453446307e+01
+1.8501754668360018e-01
+3.0127148010798037e+00
+-2.2079446249059998e+01
+-2.5324648774224244e+01
+5.4274984831530624e+00
+-4.0667584108123478e+01
+-2.5324648774224244e+01
+5.4274984831530624e+00
+-4.0667584108123478e+01
+1.4011327631480400e+01
+3.4958678023775138e+00
+-2.6152116542263077e+01
+1.4127203276767496e+01
+3.4577052639204080e+00
+-2.5696909573045687e+01
+-6.4867725473308910e+00
+4.7222404999352303e+00
+-3.8393211162352003e+01
+1.3844993845443087e+01
+3.4881085660564395e+00
+-2.6687250717007775e+01
+-8.1830756778448688e+00
+4.6887564139886209e+00
+-3.8413899533351419e+01
+1.3276832100682890e+01
+3.5055223880768982e+00
+-2.8007156216288816e+01
+-6.8617002664098852e+00
+4.5572755848389930e+00
+-3.8502029265374475e+01
+1.3749443832736890e+01
+3.2671041331127495e+00
+-2.6529074035269716e+01
+1.3135472009264886e+01
+3.4887522176283090e+00
+-2.8541396656133408e+01
+1.3135472053853158e+01
+3.4887522365914299e+00
+-2.8541396722487747e+01
+1.4260080237248891e+01
+3.0032445948246504e+00
+-2.4367222651239281e+01
+1.3893736589112937e+01
+3.1791134024603500e+00
+-2.6435425526555331e+01
+1.4331781372815772e+01
+2.9953608630088295e+00
+-2.5292106287841492e+01
+1.4318845484431442e+01
+3.0026982175861989e+00
+-2.5084593395659709e+01
+-1.2016324544302732e+00
+2.8710066936119416e+00
+-2.3476523267538816e+01
+1.4657261638746117e+01
+2.8505606878134095e+00
+-2.4124740729208060e+01
+1.4691559869527024e+01
+2.8400910748520110e+00
+-2.3978813085305276e+01
+-8.2293526650638480e+00
+4.0977501467608324e+00
+-3.7427700184409275e+01
+-7.4022259475137311e-02
+2.6699645071775917e+00
+-2.2022822738716719e+01
+1.4188014600001216e+01
+3.0084090103956012e+00
+-2.5994979132726286e+01
+1.3504571857013225e+01
+3.2601136028838993e+00
+-2.8926235551183524e+01
+1.4281523498130200e+01
+2.9321999131417007e+00
+-2.5463307849430485e+01
+1.4425994965352338e+01
+2.8585466236338353e+00
+-2.4969131619933808e+01
+1.3417610078497320e+01
+3.1347233908409042e+00
+-2.8289899393070641e+01
+1.3651615769427199e+01
+3.2308403099983392e+00
+-2.8780912178424536e+01
+1.3852093421578466e+01
+3.2188201354527139e+00
+-2.8508956911675565e+01
+1.4225647953550634e+01
+2.8274606822915755e+00
+-2.5685151768508405e+01
+1.4098195705048834e+01
+2.8485082664819035e+00
+-2.6163269084398230e+01
+1.4317958183309791e+01
+2.7715403415436608e+00
+-2.5404759272494029e+01
+-2.0943453512847623e+00
+2.8532212893853530e+00
+-2.5970478918378436e+01
+1.4330355050622540e+01
+2.7877806619930885e+00
+-2.6222004513326858e+01
+5.1329746740113889e-02
+2.2734582011525815e+00
+-2.1480633647451590e+01
+1.4297412499225008e+01
+2.5767046522698518e+00
+-2.5788749127290306e+01
+1.4648350484346947e+01
+2.4209843665805502e+00
+-2.4681522757290047e+01
+1.4648350484346947e+01
+2.4209843665805502e+00
+-2.4681522757290047e+01
+1.4270887086974676e+01
+2.4593304312186359e+00
+-2.5890513159161337e+01
+-8.0779694926581644e+00
+3.3162848251433714e+00
+-3.6882832394114295e+01
+1.4525500434330711e+01
+2.3632850416334432e+00
+-2.5144407838655169e+01
+-2.2650406606120793e+01
+3.2557334535509748e+00
+-3.7142733705612073e+01
+-1.6043782230301991e+00
+2.1892102550302335e+00
+-2.3108351368288474e+01
+1.4531678774779344e+01
+2.1860555407038911e+00
+-2.5378206391344481e+01
+1.3928827786557209e+01
+2.5252493773467646e+00
+-3.0473470633550534e+01
+1.4666924166494798e+01
+2.1363962454459076e+00
+-2.4934420677357263e+01
+1.4371699472947613e+01
+2.1065037650915475e+00
+-2.5975213093402452e+01
+-7.7016783898326437e+00
+2.7041597911892525e+00
+-3.5774023041751029e+01
+3.0423357928441725e+00
+1.8568029398633050e+00
+-2.1971192554884180e+01
+1.4605149632549512e+01
+2.0064916537588386e+00
+-2.5167776269684055e+01
+1.5017213062024563e+01
+1.8284372160689388e+00
+-2.3770717592547019e+01
+-3.6022751934869490e-01
+1.8128288995654107e+00
+-2.1597695748585448e+01
+1.4272383929678222e+01
+1.9614634978320833e+00
+-2.6845019038499778e+01
+1.4600711353183717e+01
+1.8364461662479632e+00
+-2.5376282005288054e+01
+1.4754185721698109e+01
+1.7913584867408878e+00
+-2.4960587906230423e+01
+1.4067809872461769e+01
+1.8785579570549120e+00
+-2.7592120784563196e+01
+2.7797182120166704e+00
+1.5453937187114022e+00
+-2.1198542188589371e+01
+-4.4095332518061586e-01
+1.5386672797298664e+00
+-2.1581883502239876e+01
+1.7671412774846913e+00
+1.5764698450858203e+00
+-2.0854746062681368e+01
+1.6416948382677188e+00
+1.6085356240272297e+00
+-2.0629649243777145e+01
+1.3538640763997030e+01
+1.8293447099486886e+00
+-2.9673602000401498e+01
+1.5058864116041997e+01
+1.5988344932690317e+00
+-2.4725944282762871e+01
+2.9573719687580353e+00
+1.3649065336955442e+00
+-2.0835231568061015e+01
+1.4073188423612949e+01
+1.6422339354920437e+00
+-2.8244320912533809e+01
+1.5115713977375481e+01
+1.3833216334275753e+00
+-2.3046554618740604e+01
+1.2841579601870622e+01
+1.8851698139578219e+00
+-3.2995413010003823e+01
+1.2988559537980169e+01
+1.9056842927564002e+00
+-3.3323192341292867e+01
+1.4214851279688052e+01
+2.0741414081995928e+00
+-3.4277120911195382e+01
+1.4151888786045946e+01
+1.5302055938877446e+00
+-2.7015734556814891e+01
+1.5340727269368127e+01
+2.2812814065366802e+00
+-4.0739275633825748e+01
+1.2982383120747523e+01
+1.8562871621503902e+00
+-3.4531990683222958e+01
+-2.4762578738285077e+00
+1.4239861523475514e+00
+-2.4239086217178599e+01
+1.9723370839419851e-01
+1.2818342763843933e+00
+-2.0923430120125182e+01
+1.4332126129443330e+01
+1.3647814506918534e+00
+-2.6920900739513154e+01
+-3.9078610671629255e+00
+1.3483545391319058e+00
+-2.5140601497802077e+01
+1.4408553000869661e+01
+1.3036494781552930e+00
+-2.7415405289479917e+01
+1.4119960369022161e+01
+1.2520977370719115e+00
+-2.8137491111270474e+01
+1.4134447571811121e+01
+1.2487191758791789e+00
+-2.8134306470016043e+01
+-2.6035823064364116e+00
+1.1675621581766100e+00
+-2.3775827160240773e+01
+-2.3364243320543250e+00
+1.1276231633196863e+00
+-2.3617939880547144e+01
+8.2955967704999944e-01
+1.0508213518889555e+00
+-2.0497042681620016e+01
+3.0671397653040642e+00
+1.0386004896620249e+00
+-2.0825973928589672e+01
+3.0615715862057957e+00
+1.0297194281478352e+00
+-2.0728827717706096e+01
+-1.1384212038783645e+01
+1.4082043696044417e+00
+-3.4438420376596767e+01
+1.4374383762224063e+01
+9.9772706177157222e-01
+-2.6793891032150906e+01
+-3.7324454056477938e+00
+1.0505035282951087e+00
+-2.4672146339463556e+01
+1.4279608801933005e+01
+1.0373990160556741e+00
+-2.7862965163562809e+01
+1.5379478989945067e+01
+9.3629409513124862e-01
+-2.3507525815883096e+01
+-1.7712357522441595e+00
+9.2783252960011020e-01
+-2.2615605370763756e+01
+1.5168259828526354e+01
+9.5255692080309251e-01
+-2.5000765169621914e+01
+1.5112493153792038e+01
+8.6865794295803256e-01
+-2.4800319129336177e+01
+-3.2791789000340490e+00
+9.4031731887744396e-01
+-2.4473904682502475e+01
+1.4547916768344670e+01
+8.1183149932803345e-01
+-2.6717645212137679e+01
+1.4442108100943454e+01
+5.9885609187660505e-01
+-2.7767489318558638e+01
+-2.4298608935698662e+00
+6.2221115624034984e-01
+-2.2962973657817358e+01
+-1.2196488136230114e+01
+6.0912604134741521e-01
+-3.2933040603615488e+01
+1.4636769934882059e+01
+5.0545566179068335e-01
+-2.6790477513866293e+01
+-9.4465773313200074e+00
+6.0763654932644895e-01
+-3.3194058921138101e+01
+-9.4779403251909145e+00
+6.5476409133576108e-01
+-3.3097959285626295e+01
+1.4252469896954540e+01
+5.0447567867163223e-01
+-2.8538664659114190e+01
+1.3937794102212560e+01
+4.9976155895524205e-01
+-2.9457913674090182e+01
+1.4481746892680439e+01
+4.1184402602837739e-01
+-2.7477948862965157e+01
+-9.1978469193714840e+00
+4.4755157325225164e-01
+-3.3144529427907941e+01
+-9.3608594084857391e+00
+4.1114684474923380e-01
+-3.3042735930742417e+01
+1.4380558305479434e+01
+2.8513284635754238e-01
+-2.8275021742534260e+01
+1.4631941621627037e+01
+2.6397203890501542e-01
+-2.7953345912945331e+01
+-1.8607167192277647e+00
+2.5810873309523313e-01
+-2.2417288494563955e+01
+-1.1114712396124629e+01
+2.8292885153588238e-01
+-3.2802535385896192e+01
+1.4513552587202652e+01
+1.1902223308533834e-01
+-2.7466476297849479e+01
+1.4571602372764968e+01
+8.9728095447812559e-02
+-2.7548842502660573e+01
+-9.8338843874005804e+00
+6.7851762488254169e-02
+-3.2455909495578723e+01
+-1.0606577607896678e+01
+5.9679815678207682e-02
+-3.2310374417893279e+01
+1.4441508827668644e+01
+2.3560534726579083e-02
+-2.8415944658878448e+01
+1.4296058531246892e+01
+-2.4639541846107338e-02
+-2.8074902629941857e+01
+-1.7070662593774892e+00
+6.8907986916374106e-02
+-2.2300600202346107e+01
+-1.0360813271028941e+00
+6.7945949913766499e-02
+-2.1614278115205771e+01
+1.5979078933634483e+01
+-1.3788698098594221e-01
+-2.4071609374862280e+01
+5.2582744369754589e-02
+5.1777446300939403e-02
+-2.1283395050050814e+01
+-1.1199958535296400e+01
+-1.7187647227916930e-01
+-3.2445860845488021e+01
+1.4543622324967549e+01
+-2.3283760425878292e-01
+-2.8103859637714024e+01
+1.5336769548368146e+01
+-1.6098441522237178e-01
+-2.4466367097124611e+01
+1.4587773227693379e+01
+-2.5194819694522025e-01
+-2.7855130250668982e+01
+1.4778998518491633e+01
+-2.8536312797716856e-01
+-2.8074704945173618e+01
+1.4380301661041930e+01
+-3.8013811680574444e-01
+-2.8820513846314668e+01
+1.8889069375047398e+00
+-1.4889832296738933e-01
+-2.0270579867496451e+01
+1.4526767329493726e+01
+-5.8245812614156722e-01
+-2.7972554796914910e+01
+1.4703749057179881e+01
+-6.0565645172291482e-01
+-2.8090544834110467e+01
+-1.1423563943397895e+01
+-5.7517134249130908e-01
+-3.1543620597728069e+01
+-1.0886806443398074e+01
+-5.6740015321540782e-01
+-3.1474859873478810e+01
+2.5456982092111700e+00
+-2.7905374867077198e-01
+-2.1718086417721572e+01
+2.1939221117480332e+00
+-3.4208405760930954e-01
+-2.0358650748111206e+01
+1.4544646090007149e+01
+-6.9842790610326355e-01
+-2.8915070252040170e+01
+1.5502248614329710e+01
+-6.8820177730282195e-01
+-2.5585730911409936e+01
+1.8138867821017612e+01
+-7.6013296632847283e-01
+-2.9682432279508706e+01
+-9.7447293533163055e+00
+-7.9393515656757752e-01
+-3.1280146994234897e+01
+2.5091561088229870e+00
+-4.2288441925562392e-01
+-2.0802053071855472e+01
+2.4797266783257501e+00
+-4.7043413484904134e-01
+-2.0393210618900309e+01
+1.4822514256659193e+01
+-8.9240924944824407e-01
+-2.7729094589384587e+01
+1.4621796677591833e+01
+-9.6219885876371358e-01
+-2.8456406446852728e+01
+1.5507408458672813e+01
+-7.9751892470170682e-01
+-2.3771733420030184e+01
+1.5844678090909293e+01
+-7.3012891704483041e-01
+-2.5334112061907916e+01
+-9.9248053900915352e+00
+-1.1024766104187729e+00
+-3.0989124018731349e+01
+-4.3895976394420433e-01
+-6.6862021255502224e-01
+-2.1167491797639997e+01
+-3.2337061980512660e-01
+-7.9695764684312753e-01
+-2.1105388237593871e+01
+-9.5421904285761627e+00
+-1.3036458762963326e+00
+-3.0563764883096734e+01
+2.6048700224361294e+00
+-8.1991006875944561e-01
+-2.0606908404188207e+01
+9.1278088433236271e-01
+-8.2443158468613287e-01
+-2.0520965676913697e+01
+-1.6241819094023087e+00
+-9.7800039405529782e-01
+-2.1693941571667192e+01
+-8.3225261637322601e-01
+-1.0170114871909002e+00
+-2.0825313240888054e+01
+1.5418248620051070e+01
+-1.5323915901472227e+00
+-2.7179093437074393e+01
+1.7264732502075105e+01
+-1.6353573211833141e+00
+-3.0299401677135322e+01
+1.4847020699550015e+01
+-1.7341672424417149e+00
+-2.8244246341431538e+01
+1.5590072086793684e+01
+-1.5493548137999682e+00
+-2.4494089946129147e+01
+3.7340377009458403e+00
+-1.2080148361848324e+00
+-2.2513029700646136e+01
+3.5438200147176935e+00
+-1.2816237169936724e+00
+-2.2475161887288564e+01
+3.0838282939647828e+00
+-1.3298842068823822e+00
+-2.2157604211541575e+01
+1.5392018669153115e+01
+-1.8608358361062738e+00
+-2.6545572185355219e+01
+2.7325345701312846e+00
+-1.2744751583433906e+00
+-2.1943295570277360e+01
+-2.1644005462064864e+00
+-1.4341427319265725e+00
+-2.1471502349069478e+01
+1.3728810999589152e+00
+-1.6267436958800856e+00
+-2.1116676948056611e+01
+4.5853210591759073e+00
+-1.9173473938740475e+00
+-2.2933942438541116e+01
+1.6268768452854012e+01
+-2.5050564608917152e+00
+-2.4948449706802979e+01
+1.5596230265931821e+01
+-2.7076435578195892e+00
+-2.7223407557044546e+01
+-9.0480732147767640e+00
+-2.6409118982228295e+00
+-2.7238631049693971e+01
+-9.2590425325268377e+00
+-3.1084942262331423e+00
+-2.6144716418717952e+01
+-8.8711226760388726e+00
+-3.6184539871554047e+00
+-2.7520469541637908e+01
+-2.0877221644005739e+00
+-2.9569262300197954e+00
+-2.2305166486487334e+01
+6.1806516626232000e-01
+-2.6725473765594616e+00
+-1.9896092159197138e+01
+-6.2591198408066240e-01
+-2.8390583528223838e+00
+-2.0355126560061798e+01
+1.6589648542172906e+00
+-2.7102515844969837e+00
+-2.0063335169211001e+01
+-2.2929152172890612e+00
+-3.1582158523391399e+00
+-2.2615037896220816e+01
+1.4426993094262470e+00
+-2.7689385784593785e+00
+-1.9751401360311970e+01
+-9.0693960223818202e+00
+-3.8248100210561629e+00
+-2.6615187672822696e+01
+1.0131313609163479e+00
+-2.8857374449090010e+00
+-1.9702603477475815e+01
+7.3495900424601313e-01
+-2.9208006845226615e+00
+-1.9700400038283298e+01
+9.4511307205018669e-01
+-3.0532562675313670e+00
+-1.9490122221657792e+01
+-7.0465992672783320e-03
+-3.3136605818652942e+00
+-2.0563764798082165e+01
+8.7491034001375356e-01
+-3.1542553907617057e+00
+-1.9486267047409665e+01
+-2.1476155122034242e+00
+-3.7946682285538249e+00
+-2.2989625166172431e+01
+5.5084696545224368e-02
+-3.4881759988880736e+00
+-2.0658495765044716e+01
+-1.7917883054536617e+01
+-5.0823566051106841e+00
+-2.7135809862296629e+01
+1.3292049728370497e+01
+-5.3878258060180464e+00
+-2.7402179265599603e+01
+1.7091017731794128e+01
+-6.1101892065584620e+00
+-2.8537357059857669e+01
+1.5937541851801699e+01
+-6.2190205441719266e+00
+-2.7866792804951576e+01
+2.0783959007298729e+00
+-4.7135094872708914e+00
+-2.1301578447681994e+01
+1.5379338551263782e+01
+-6.4665740044182440e+00
+-2.7191199005903641e+01
+1.4662163500617053e+01
+-6.6903933609421538e+00
+-2.6831041839680399e+01
+4.5066039435975735e+00
+-5.6656851916323641e+00
+-2.2000762337176614e+01
+1.3141793714235188e+01
+-6.8541945914030542e+00
+-2.5761490767778717e+01
+-4.0303873272208675e+00
+-6.7318524744024444e+00
+-2.2308370098342913e+01
+-3.3643278355541399e+00
+-7.2476587723454831e+00
+-2.2636098727608168e+01
+1.3798541788258419e+01
+-8.3896539466508742e+00
+-2.4726058514137737e+01
+9.1877432184198327e+00
+-7.5203485569149926e+00
+-2.2102078139664627e+01
+7.7275944375847159e+00
+-7.7131841729120287e+00
+-2.2457832594979863e+01
+1.6370308964573288e+00
+-7.7205940256824581e+00
+-2.1231573527904008e+01
+1.5628928360890675e+00
+-8.0753856892280371e+00
+-2.1686328549290135e+01
+-2.0513383272296895e+00
+-8.2028998814396719e+00
+-2.1420878867360329e+01
+7.0676569579837736e+00
+-8.3579639489478872e+00
+-2.1669758455096616e+01
+-2.5121962849233120e-01
+-8.1648812000228030e+00
+-2.1170118198078622e+01
+-5.7893902305696203e+00
+-8.1657863043800916e+00
+-2.1186812062258795e+01
+1.2400157285168175e+01
+-9.0648476187152696e+00
+-2.3307538321040518e+01
+7.0757319495931341e+00
+-8.1459932019011330e+00
+-2.0938560282682371e+01
+3.3241088706283856e-01
+-8.1507336991470005e+00
+-2.0687631836340096e+01
+5.1770835531155635e-01
+-8.1846161490073470e+00
+-2.0720857653087084e+01
+-4.2303726981846307e-01
+-8.3816326296362558e+00
+-2.1180239443304270e+01
+7.7339303270705084e-01
+-8.2908838141448022e+00
+-2.0811372274581426e+01
+1.3999302240181069e+00
+-8.3155421659357351e+00
+-2.0560879404433113e+01
+9.0247468182268076e+00
+-8.8670513649189946e+00
+-2.1851425064914981e+01
+3.3794955373195441e-02
+-8.2878855303317724e+00
+-2.0526634881333319e+01
+7.3728982085558226e-02
+-8.3913510976838932e+00
+-2.0611286348633733e+01
+-4.8829235148419139e+00
+1.9096528052326057e+01
+-4.1403381665998374e+01
+2.5937026645165151e+00
+2.1759638217679633e+01
+-4.7585563093625829e+01
+-1.3933126374511517e+01
+1.6239669083760532e+01
+-3.4708398750664301e+01
+1.0595002353631505e+01
+2.3636389981562907e+01
+-5.2071530884008766e+01
+-1.4090751242745993e+01
+1.5881871229432887e+01
+-3.4234356828720031e+01
+-1.2751993450171703e+01
+1.6527815051522559e+01
+-3.5642838989909187e+01
+-1.2645607204754473e+01
+1.6315319295914982e+01
+-3.5304526418607637e+01
+-7.7115249804981145e+00
+1.8034936516643263e+01
+-3.9422032405195260e+01
+1.3522914668985914e+01
+1.6420800585120098e+01
+-3.5467737595782729e+01
+-1.0371549156556593e+01
+1.7189191794919950e+01
+-3.7455053759248138e+01
+-1.0310480905203042e+01
+1.7163720554386948e+01
+-3.7386734063277906e+01
+2.0503769946597131e-01
+2.0296120087425354e+01
+-4.5214826189771905e+01
+1.4537288876057156e+01
+2.4133092829970110e+01
+-5.4267169719018625e+01
+1.3507941854357624e+01
+1.4240842213344978e+01
+-3.0999982431657244e+01
+4.7368102660205897e+00
+2.1397987137887657e+01
+-4.8529476894882492e+01
+1.2521467293418400e+01
+1.5134671519661195e+01
+-3.3222027012422771e+01
+1.2817807277399355e+01
+1.4797044082748885e+01
+-3.2460466977643556e+01
+-1.4035694108387698e+01
+1.5831828136647443e+01
+-3.5123890227637851e+01
+7.3658676156197078e+00
+2.2038009873586862e+01
+-5.0300880048550482e+01
+1.2307820255061911e+01
+2.3186021390246093e+01
+-5.3056395800398910e+01
+1.1153100554530213e+00
+2.0462229758316777e+01
+-4.7540425545505094e+01
+1.3424068593012008e+01
+1.4220528928630955e+01
+-3.1932666363084799e+01
+1.3444271894912506e+01
+1.3679278842145617e+01
+-3.0714420974675544e+01
+-2.9546689522171292e+01
+2.3862685105075506e+01
+-5.4716367422780344e+01
+1.7527934653345746e+01
+2.4073224938336491e+01
+-5.6981612758033407e+01
+8.3563146725582431e+00
+2.1680258087951831e+01
+-5.1597992708502275e+01
+-2.8054731646518036e+01
+2.2583833732630957e+01
+-5.2653789102087920e+01
+1.3454522297946250e+01
+2.2624307215811204e+01
+-5.4141248201055632e+01
+1.2119620422923470e+01
+1.1012045473467374e+01
+-2.4816016282085204e+01
+8.5270247195329318e+00
+2.1667471143576691e+01
+-5.2135044851753634e+01
+2.2248511819633605e+00
+1.9472641495936795e+01
+-4.8386141428601086e+01
+-2.4910685838812412e+01
+1.9595489393309979e+01
+-4.8655055655803743e+01
+-2.4910685838812412e+01
+1.9595489393309979e+01
+-4.8655055655803743e+01
+-5.0991980697353272e+00
+1.6831037605586694e+01
+-4.3185163278782106e+01
+1.2560116901758542e+01
+1.3575098533769868e+01
+-3.4647190325170911e+01
+1.2717979633626959e+01
+1.3606633791867687e+01
+-3.4949906437785195e+01
+1.2018100722201504e+01
+1.0347190165024672e+01
+-2.5853444142125650e+01
+1.2757680136832317e+01
+1.2991498733851580e+01
+-3.4263654053277129e+01
+1.3854558863684534e+01
+1.2179882447050764e+01
+-3.2156465978123009e+01
+1.3156060608306978e+01
+1.2464526535629485e+01
+-3.3716075424447304e+01
+-1.6907020053040558e+01
+1.3422562377470703e+01
+-3.6054918390171231e+01
+1.2542864670894707e+01
+9.5671475681405784e+00
+-2.5040943284249778e+01
+-3.0143183470473298e+00
+1.6511351482320443e+01
+-4.6653766962395956e+01
+-2.3971712779321692e+01
+1.7674704723724446e+01
+-4.8786056289570581e+01
+-1.6731042367267456e+01
+1.4287040851620597e+01
+-3.9927003493145591e+01
+1.4468590720593825e+01
+8.6097650944321096e+00
+-2.2341133048290704e+01
+1.4588310629477014e+01
+8.4273473305389768e+00
+-2.2131660233273262e+01
+1.3620669942502580e+01
+9.0767212389101424e+00
+-2.4904512012099918e+01
+1.2656798217654512e+01
+8.6506060050745557e+00
+-2.5444540374376626e+01
+1.2513291903494459e+01
+8.5577734554138303e+00
+-2.5199913805873098e+01
+1.3370198036182090e+01
+8.6332257057245272e+00
+-2.4926272632356557e+01
+1.3452887094023096e+01
+8.7123527285237419e+00
+-2.5100764621921083e+01
+-8.7533528268895520e+00
+1.3187952500014230e+01
+-4.2399947591481400e+01
+1.2709400304513933e+01
+8.2081709182370375e+00
+-2.4781582406758400e+01
+1.2131424263280216e+01
+8.5458995748692725e+00
+-2.5953521443155442e+01
+1.2028056025364858e+01
+8.6466957284886483e+00
+-2.6424432705118900e+01
+1.2028056025364858e+01
+8.6466957284886483e+00
+-2.6424432705118900e+01
+1.2993941811964858e+01
+8.3694297647749138e+00
+-2.6185589756960333e+01
+1.3779664654739085e+01
+7.4594584848203764e+00
+-2.3154981288461883e+01
+-1.5772053720150140e+01
+1.2016667342342952e+01
+-4.0176712563853911e+01
+1.3766878223152519e+01
+7.3274553984718587e+00
+-2.3582045581591380e+01
+1.2710107071578760e+01
+7.7570954213018322e+00
+-2.5418314496360651e+01
+-1.6689932066460699e+01
+1.1616975364220401e+01
+-4.0478624177493884e+01
+1.3447086707689452e+01
+9.6760217381779992e+00
+-3.4206277424350588e+01
+1.3997053145709977e+01
+6.9958008804699601e+00
+-2.3978681861429614e+01
+1.4223021907628731e+01
+6.5904602407972854e+00
+-2.2307109766874273e+01
+1.4223021907628731e+01
+6.5904602407972854e+00
+-2.2307109766874273e+01
+1.3484231617790133e+01
+9.7764562030152344e+00
+-3.5354182090691587e+01
+1.2745149063304179e+01
+7.4212076013346815e+00
+-2.5961349159725611e+01
+1.2781983059559549e+01
+7.3335024963040905e+00
+-2.5663356722201854e+01
+1.6496198688437163e+00
+1.4007265521092432e+01
+-5.2384587420462751e+01
+1.4019131741911544e+01
+6.5061427071353721e+00
+-2.2935416999987790e+01
+1.2122074264073612e+01
+7.5080549010356199e+00
+-2.7557374141944369e+01
+1.5487516997172248e+00
+1.2763008276827888e+01
+-4.9474416285890392e+01
+1.3793519286821581e+01
+1.1009642215571505e+01
+-4.1616060410156855e+01
+1.2471853254025294e+01
+7.0187410222909961e+00
+-2.5936968959787770e+01
+1.3516938333719851e+01
+6.5327820428361623e+00
+-2.4568350998749548e+01
+1.2888825329855360e+01
+6.7941869261914887e+00
+-2.6536605789812125e+01
+1.2869115936788008e+01
+6.8156821447346534e+00
+-2.6491921106577095e+01
+1.2060538904941293e+01
+7.1042012572525790e+00
+-2.7926884845714969e+01
+1.5298937583837802e+01
+7.6321729597797061e+00
+-3.0589229286452230e+01
+1.4894056765552680e+01
+7.9791432713298995e+00
+-3.2683221499800986e+01
+-1.2410738859006861e+01
+1.0331881544814225e+01
+-4.3703251545437752e+01
+1.3392839260653908e+01
+6.2901817998513208e+00
+-2.5548385620799582e+01
+-4.7391571406735320e+00
+1.0557091289870538e+01
+-4.6414620627474029e+01
+1.8422289373115994e+00
+1.0086358586630208e+01
+-4.6720949175026604e+01
+1.2320887138057467e+01
+6.3593000658068837e+00
+-2.7800426106481186e+01
+1.2632872050140056e+01
+6.0822141946405415e+00
+-2.6723978441296392e+01
+-1.4514021141322436e+01
+1.0101832259693943e+01
+-4.7409770975172634e+01
+-1.3494438440980360e+01
+9.5171996055687753e+00
+-4.5781298234894940e+01
+-2.2328524644638512e+00
+8.4278117526070773e+00
+-4.3834330967502844e+01
+1.3709792231316648e+01
+5.1208139673340760e+00
+-2.5500472808690439e+01
+-2.4279580146835165e+00
+7.7986206556579960e+00
+-4.2371137771757368e+01
+1.2911784950303378e+01
+5.3632025353235546e+00
+-2.7844355436999091e+01
+1.3770000306292962e+01
+4.8818388577637393e+00
+-2.5685973899163454e+01
+1.7076616611246315e+01
+5.5296144853596800e+00
+-2.9389755596097277e+01
+1.3709428726894524e+01
+4.6254866464888487e+00
+-2.6170251115591050e+01
+-1.7034113368652054e+01
+7.1078819795585444e+00
+-4.2434582950732171e+01
+1.8240718714593481e+01
+5.2241201906109307e+00
+-2.9990886075404593e+01
+1.1548816175865675e+00
+4.1674169649403945e+00
+-2.4486019948487197e+01
+-8.4782594430910354e+00
+6.0287792318300957e+00
+-3.9617083933742691e+01
+-7.8599111938925050e+00
+6.0210189669375840e+00
+-3.9892488601094044e+01
+1.3740609485529964e+01
+3.8691148927876644e+00
+-2.6546916551091535e+01
+1.4620832042023013e+01
+3.2374344770631516e+00
+-2.4152802316789202e+01
+1.3780834207169214e+01
+3.4843069919027703e+00
+-2.6932906429454160e+01
+1.3780834207169214e+01
+3.4843069919027703e+00
+-2.6932906429454160e+01
+1.4393687653851245e+01
+3.2133503544323663e+00
+-2.4927743019243920e+01
+1.4684619962018958e+01
+2.9882092476739968e+00
+-2.3813500454368658e+01
+1.4290061699493878e+01
+3.2920236882341412e+00
+-2.6468268514207065e+01
+1.4204367054288864e+01
+3.1699498038787519e+00
+-2.5465105618960436e+01
+1.4533200965020310e+01
+2.6989005148304828e+00
+-2.4771925863785548e+01
+1.5305374971269156e+01
+2.4828248724591768e+00
+-2.3243688966195194e+01
+1.4874286399227689e+01
+2.5537441181140701e+00
+-2.3712649022708209e+01
+-1.2335053548279758e+01
+3.2352692534088265e+00
+-3.3633913371903212e+01
+1.2904553665658979e+01
+2.9739941054775065e+00
+-3.1768652148317077e+01
+1.4439164251493702e+01
+2.4029157192212556e+00
+-2.5648801885179029e+01
+1.8689017112019535e+01
+2.7750108436467968e+00
+-2.9461333186412620e+01
+1.8689017112019535e+01
+2.7750108436467968e+00
+-2.9461333186412620e+01
+1.4133478423216255e+01
+2.3287355247614436e+00
+-2.6743161133583012e+01
+1.4566464522074151e+01
+2.1592358722017706e+00
+-2.5204655593123011e+01
+1.4566464522074151e+01
+2.1592358722017706e+00
+-2.5204655593123011e+01
+1.4693039335270667e+01
+1.9837314653860552e+00
+-2.4199561950642611e+01
+1.5195122103435160e+01
+1.8179474464338263e+00
+-2.3193248010171050e+01
+-1.1956253991900773e+01
+2.4164460267363754e+00
+-3.5989947165637318e+01
+-1.0509452593640106e+01
+2.2204639598414713e+00
+-3.5487930007791576e+01
+1.3014825165067888e+01
+1.9728616171655582e+00
+-3.2126382913816123e+01
+1.3993037356441100e+01
+2.2073902691245251e+00
+-3.4740547600516436e+01
+-1.2656678568703748e+01
+2.1943815885367681e+00
+-3.5402880979054082e+01
+-1.2451886928569271e+01
+2.0902042457916399e+00
+-3.4877747595722404e+01
+-9.0713846928044166e+00
+2.1764267515120692e+00
+-3.4774706136614853e+01
+1.5765922886622668e+01
+2.6012176543935777e+00
+-4.1909381348781523e+01
+-1.1114480046914395e+01
+1.9551460237030880e+00
+-3.4901275194383622e+01
+-1.2463545512894916e+01
+1.8727666776367515e+00
+-3.4732418929253065e+01
+-1.4465595054977129e+00
+1.2745464386110195e+00
+-2.2595410442060128e+01
+-2.3109769984886505e+01
+1.7228518742449941e+00
+-3.4765304663651172e+01
+1.3739894648974316e+01
+1.1666700547221311e+00
+-2.9229186435178374e+01
+-2.0875128695037272e+01
+9.8492119537615586e-01
+-3.3782829487537434e+01
+-8.0524218664104696e-01
+5.2925415400678921e-01
+-2.1364602382721912e+01
+-8.3926441576245270e-01
+3.4703437097137024e-01
+-2.1402581014986882e+01
+-8.4813714785703120e-01
+3.6141250622171406e-01
+-2.1453920454420651e+01
+2.7504621904855484e+00
+3.5596836539027976e-01
+-2.0569337852862102e+01
+1.5344238974172114e+01
+2.7638623117552863e-01
+-2.5005579915881970e+01
+2.3577710912885244e+00
+2.9625666263310940e-01
+-2.0427137201556882e+01
+-8.4496608480312965e+00
+2.0707538257527791e-01
+-3.2455246657583729e+01
+1.5397537552051109e+01
+1.1567697279614617e-01
+-2.4052926131574839e+01
+1.5397537552051109e+01
+1.1567697279614617e-01
+-2.4052926131574839e+01
+-8.8366396943852656e+00
+1.2544370417618020e-01
+-3.2626807362007476e+01
+-3.0030122779987494e+00
+1.1292153512914005e-01
+-2.3221106992068265e+01
+1.4844092356756821e+01
+2.1150684954836631e-03
+-2.6306778170860962e+01
+1.5374364491448267e+01
+-3.7179563944071022e-02
+-2.4268232071303633e+01
+1.5374364491448267e+01
+-3.7179563944071022e-02
+-2.4268232071303633e+01
+1.4919762909083207e+01
+-1.3189286689877525e-01
+-2.6401230301353241e+01
+1.4751654294633401e+01
+-2.2840286932608475e-01
+-2.7630947364080956e+01
+-1.1369188438481828e+01
+-3.4514026182644669e-01
+-3.1854655889273094e+01
+5.0534750022082884e+00
+-2.9551462357381081e-01
+-2.2110876769479919e+01
+-9.5821267378872239e+00
+-8.0330513271815862e-01
+-3.1445382994547561e+01
+-1.6331161729612162e-01
+-4.5470128336377613e-01
+-2.1538798875246432e+01
+-9.9217913248736256e+00
+-9.2900749134938165e-01
+-3.1268266009016727e+01
+5.4605548518021019e+00
+-6.9276317391051367e-01
+-2.3873354375758300e+01
+1.4793857677421535e+01
+-1.1569738136906464e+00
+-2.8183514940183645e+01
+3.8169665125345618e+00
+-1.0429261832040204e+00
+-2.2503374144122770e+01
+4.1949103862769705e+00
+-1.2213259118982756e+00
+-2.2587737552698318e+01
+5.1067322815133300e+00
+-1.2530963586361359e+00
+-2.1710425775704500e+01
+2.1200076177822442e+00
+-1.2045617552794914e+00
+-2.0694098726064279e+01
+1.5977780148478708e+01
+-1.9143253745037390e+00
+-2.5347940903914399e+01
+9.7667544567951803e-01
+-1.3634414438245148e+00
+-2.0523911333505296e+01
+2.9485831219969256e+00
+-1.4527088250807922e+00
+-2.0460123707820422e+01
+1.5840743763064085e+01
+-2.0775234733562717e+00
+-2.6615875600998326e+01
+-8.8682015418378812e-01
+-1.6550214847927480e+00
+-2.0951984986681030e+01
+-4.1194168441061398e+00
+-2.0443701642197580e+00
+-2.5394444735762615e+01
+4.0563171712207984e+00
+-1.8774250758013080e+00
+-2.1084182875415056e+01
+1.5780883811065786e+01
+-2.7644676488223072e+00
+-2.7280352760319445e+01
+-9.1877014969726840e+00
+-2.7364472872285677e+00
+-2.6876719396514467e+01
+4.6702117189010668e+00
+-2.2220074327635304e+00
+-2.2480749188484953e+01
+1.8658287099092707e+01
+-3.3080727222671609e+00
+-2.9798753981208502e+01
+2.9352284815363334e+00
+-2.1922148684848066e+00
+-2.1725479718616050e+01
+1.0884358119257818e+00
+-2.7778700507733585e+00
+-1.9724761867963469e+01
+1.9305968777945941e+00
+-2.8343158033464881e+00
+-2.0826346990714843e+01
+1.8613303774055145e+00
+-2.8708418980128001e+00
+-1.9811224673820565e+01
+4.2320696471623931e-01
+-3.9808411902450369e+00
+-2.0941346010787242e+01
+-3.4725433897331032e-01
+-4.0687889518597355e+00
+-2.1551783374579657e+01
+4.0488906450925716e-01
+-4.3777180423811961e+00
+-2.1292869116587283e+01
+1.2553214654781253e+00
+-4.4056616588714164e+00
+-2.1741996977680778e+01
+1.5579589021692875e+00
+-4.5468046822676236e+00
+-2.2282123962877428e+01
+1.1452857571140578e+01
+-6.1354096480831766e+00
+-2.5344144151888550e+01
+1.5605023469752943e+01
+-6.7219470369829981e+00
+-2.7152093986460613e+01
+1.6019117541344524e+01
+-6.8018022382550170e+00
+-2.7316002701759288e+01
+-5.2500719113853158e+00
+-6.9799353884466555e+00
+-2.3222722062397644e+01
+1.5210224773978876e+01
+-7.9397111914988905e+00
+-2.5710338368877750e+01
+7.6413426894979439e+00
+-7.1095782592268089e+00
+-2.2952405632886610e+01
+7.3895822586816315e+00
+-7.2970809899754885e+00
+-2.2678647518209836e+01
+7.0144617517121901e+00
+-7.2723124935953534e+00
+-2.2262497459385507e+01
+1.4017746904669039e+01
+-8.2864493506650909e+00
+-2.4882527887298135e+01
+-2.8957654965439317e+00
+-7.5340287851366297e+00
+-2.2332536862935015e+01
+8.5073383877030153e+00
+-7.9467898214979211e+00
+-2.1972728957497008e+01
+-1.4178380378305393e+01
+-8.7168582846879694e+00
+-2.2552229855266287e+01
+7.3425242881555342e+00
+-8.6283134871338021e+00
+-2.1570598182017253e+01
+1.2958034281431196e+01
+-9.5458895710917346e+00
+-2.3302095697484422e+01
+-1.4001584983082472e+01
+1.6182568055779086e+01
+-3.5846426335550881e+01
+-1.3735935819217087e+01
+1.5876525243491324e+01
+-3.5203550344527237e+01
+1.1828844705354646e+01
+2.3369883185357644e+01
+-5.3861577392671478e+01
+1.3152513202373262e+01
+1.4601295339197764e+01
+-3.2192266719437569e+01
+1.3352470730101432e+01
+1.4116814651451438e+01
+-3.1372319746387127e+01
+1.6101012291635218e+01
+2.3910413849034267e+01
+-5.6121897301548721e+01
+1.2773829534512995e+01
+1.0347329787122103e+01
+-2.3710665576331792e+01
+1.4690904169285451e+01
+2.2585250801430835e+01
+-5.7066194310619863e+01
+1.3359717140855777e+01
+1.0211716975098691e+01
+-2.4519995359150236e+01
+-6.0446687717227601e+00
+1.6555071480801502e+01
+-4.3617621530629265e+01
+4.8508322251782330e+00
+2.0884761045688244e+01
+-5.5526779111626603e+01
+1.3937404996823584e+01
+9.8218036914622360e+00
+-2.3932072193938126e+01
+1.3589150163346632e+01
+9.6419242435378596e+00
+-2.3760920905026172e+01
+1.4163729307721098e+01
+9.0862064556464315e+00
+-2.2285154206653974e+01
+9.2328821876171863e-01
+1.7711372184722087e+01
+-4.7542148136175882e+01
+1.1921392986871476e+01
+1.0100559290817946e+01
+-2.5929978992942459e+01
+1.4276063618548855e+01
+9.5148635370908643e+00
+-2.4137093880817197e+01
+1.3527145246650006e+01
+9.4525251521151414e+00
+-2.4061317285094308e+01
+1.3527145246650006e+01
+9.4525251521151414e+00
+-2.4061317285094308e+01
+1.2787711393186699e+01
+9.1139484059280775e+00
+-2.4516805006844642e+01
+1.3645070861383832e+01
+8.9667526128105095e+00
+-2.4527771639103634e+01
+1.2261359175570410e+01
+8.9889416097622981e+00
+-2.5538173123032013e+01
+1.2649363918647307e+01
+8.9015884224225008e+00
+-2.5812072446490287e+01
+1.3974375477412703e+01
+1.1302264131059477e+01
+-3.4937273469743658e+01
+1.7052275436781628e+01
+1.2467379066365298e+01
+-4.0024925349391680e+01
+-2.1639913983597800e+01
+1.4504900564413626e+01
+-4.6538254643902022e+01
+-3.0131145091488115e+01
+1.7034871842368755e+01
+-5.7557591340639796e+01
+1.3778783080039178e+01
+6.9707058079066035e+00
+-2.2599365317051738e+01
+-2.9940872272955112e+01
+1.6387453270786072e+01
+-5.6458530907582073e+01
+-2.9940872272955112e+01
+1.6387453270786072e+01
+-5.6458530907582073e+01
+-1.6803213898005694e+01
+1.1219866238439106e+01
+-3.7999399417237548e+01
+1.3103783456558553e+01
+7.3143950297943299e+00
+-2.4505664219930299e+01
+1.4190300786032870e+01
+6.9544486063910957e+00
+-2.3359732438641181e+01
+1.4336375165622794e+01
+6.4311170960440167e+00
+-2.2548003262735179e+01
+1.4081535455167286e+01
+6.7819329796905263e+00
+-2.4247298507957733e+01
+1.3084437354836968e+01
+6.9327920121041346e+00
+-2.5698514046258826e+01
+1.2578376195250851e+01
+7.1676652667033505e+00
+-2.7422975142517668e+01
+-1.3336242354133322e+01
+9.6323735330777733e+00
+-3.9258190990316081e+01
+-6.8998213856792994e+00
+1.1559243284763818e+01
+-4.7306164745587722e+01
+-6.8998213856792994e+00
+1.1559243284763818e+01
+-4.7306164745587722e+01
+1.2367265870794192e+01
+6.7934059355285914e+00
+-2.7073399513184039e+01
+1.2788112833333209e+01
+6.7310027914589519e+00
+-2.7179063270400299e+01
+1.2037505018128806e+01
+7.0891323976131790e+00
+-2.8878312986209199e+01
+1.2589856733208000e+01
+6.4111479384548566e+00
+-2.6595221740562586e+01
+1.3798193790367463e+01
+5.9790965405436962e+00
+-2.5354339261993960e+01
+-1.6452173076802250e+01
+8.9066684096343227e+00
+-4.1359160729141273e+01
+1.8415901940982535e+00
+9.3993983997851540e+00
+-4.4655581130240286e+01
+1.3127838593986597e+01
+4.7080847320408896e+00
+-2.8869370038725037e+01
+1.3201309797691859e+01
+4.7401473197947963e+00
+-2.8922484827916499e+01
+1.3871380832706507e+01
+5.0520339326615069e+00
+-3.1343299102682206e+01
+1.4694588342193557e+01
+3.8749769401818548e+00
+-2.3080749410208817e+01
+1.3790362428103544e+01
+4.0336339420262197e+00
+-2.6320122858949428e+01
+1.3758640881582787e+01
+3.9615869492743849e+00
+-2.5667864316212075e+01
+-7.8743682409119540e+00
+5.5907561004503155e+00
+-3.9181906342284734e+01
+1.3962104053133684e+01
+3.8546929592728412e+00
+-2.5662112658819666e+01
+1.5553665282960234e+01
+3.2062334786029338e+00
+-2.3968964350690307e+01
+1.3674429966411907e+01
+3.3436662913294466e+00
+-2.7536282134344841e+01
+1.4829217692812538e+01
+2.9516485889038018e+00
+-2.3444997977035879e+01
+1.4348144159461421e+01
+3.1139922276052143e+00
+-2.7553980033991142e+01
+1.4793982959408943e+01
+2.3755150844343960e+00
+-2.4568332563651261e+01
+-6.7278548734413512e-01
+2.1095079957237708e+00
+-2.2000408439067538e+01
+-6.7463057877343124e-01
+2.1080121906528397e+00
+-2.2014553419923690e+01
+1.5503961196949678e+01
+2.2672411132757269e+00
+-2.4570931640397887e+01
+1.5075515324012729e+01
+1.9357007415873084e+00
+-2.3467802146787335e+01
+-1.0766399232250278e+01
+2.4962965878780325e+00
+-3.5722587942634036e+01
+1.5421243966332655e+01
+1.6369227353193083e+00
+-2.3766628200709665e+01
+1.4207583240384986e+01
+1.5599937600072000e+00
+-2.7696263861863468e+01
+1.4365339790201883e+01
+1.5401205758851089e+00
+-2.7829091250745783e+01
+1.5223468480635322e+01
+1.5124341800875805e+00
+-2.4323033022805674e+01
+1.3897167906788859e+01
+1.5221101981077596e+00
+-2.8911898027345671e+01
+-9.0783348345232735e+00
+1.0710627903666825e+00
+-3.3236114640217650e+01
+-3.4949102376123760e+00
+8.2069009912345225e-01
+-2.4547396738927695e+01
+1.5308509837939011e+01
+7.9495945208901564e-01
+-2.5859372114016065e+01
+-1.0809405998425841e+01
+7.2079224474846282e-01
+-3.3241794980151234e+01
+-8.8355312090677298e+00
+6.0766515268342569e-01
+-3.2231981763376837e+01
+-1.0650411461910208e+01
+3.3222500197777599e-01
+-3.2690742496583155e+01
+2.7341373707833094e+00
+3.4796336265207173e-01
+-2.0489574772365668e+01
+1.5450941101522691e+01
+2.1848659201579698e-01
+-2.3826089813364877e+01
+1.6310282351235490e+01
+-4.9441834297593013e-01
+-3.0671384483499487e+01
+1.4756059303038079e+01
+-4.4609355211478124e-01
+-2.7852758123342742e+01
+1.4608432646167213e+01
+-7.3787453579117313e-01
+-2.8241054946766855e+01
+1.5202864056566463e+01
+-7.5383226857765817e-01
+-2.7257529468600342e+01
+1.5261108063121787e+01
+-7.5764364806164208e-01
+-2.7336425671829836e+01
+-1.0900101741655876e+01
+-8.7412115137384272e-01
+-3.1397131329266209e+01
+-9.5793434068428596e+00
+-1.1269988665752548e+00
+-3.1051347076933272e+01
+-9.9648675735866963e+00
+-1.2630184113594904e+00
+-3.0413328335954539e+01
+3.0972133020226726e+00
+-9.0288464545070313e-01
+-2.0757245618950304e+01
+-1.3871085445599127e+00
+-1.0312842670556168e+00
+-2.1115455170935522e+01
+-1.0000370329503216e+01
+-1.7320588451501977e+00
+-2.9847734559385390e+01
+-1.1395901508139226e+00
+-1.1916136889879168e+00
+-2.0930046467686868e+01
+-1.0357552598659847e+01
+-1.8433319654981786e+00
+-2.9978637295368600e+01
+1.5253443684654579e+01
+-1.8240060132149769e+00
+-2.7040350683136182e+01
+1.7245202682629774e+01
+-2.1197266097373801e+00
+-3.1095303412969567e+01
+2.5092680975147998e+00
+-1.4120573484144814e+00
+-2.1860120538909946e+01
+1.5906154237385509e+01
+-1.9837997092882620e+00
+-2.5204386316599518e+01
+-1.3154644789793113e+00
+-1.6273579815943326e+00
+-2.1259076506236486e+01
+-1.9681912240335051e+00
+-1.7632843846262003e+00
+-2.1052277723577749e+01
+-9.5863229461646053e+00
+-2.5871119390822974e+00
+-2.6923449223184569e+01
+1.6028061940452865e+00
+-1.9431551240046334e+00
+-2.1154633797726181e+01
+1.6028061940452865e+00
+-1.9431551240046334e+00
+-2.1154633797726181e+01
+1.0877309691551797e+01
+-2.9196991731468476e+00
+-2.9263651429010917e+01
+1.6224376353323532e+01
+-3.2977500732909366e+00
+-2.4951518875820234e+01
+2.0579809795218793e+00
+-2.7763967619216414e+00
+-2.1056689386407765e+01
+2.5851911106725911e+00
+-2.9306322667149871e+00
+-2.1176359436694138e+01
+4.7612718358017663e+00
+-3.3187489973308821e+00
+-2.1376619846506955e+01
+-1.7043579176977901e+00
+-3.9532691909003348e+00
+-2.2441958721586449e+01
+5.0225493287467513e+00
+-4.0643926558970538e+00
+-2.3082194785548374e+01
+5.5020632688810833e+00
+-4.5269006837347625e+00
+-2.2864900360464219e+01
+-8.1464902860875565e-01
+-4.3142732518728177e+00
+-2.2099471068566928e+01
+-1.0801131497547456e+00
+-5.0174198816261999e+00
+-2.3021157397636550e+01
+1.3553557305665516e+01
+-6.0481692321413529e+00
+-2.5317783482365954e+01
+1.5252275304010713e+01
+-6.6206944203581077e+00
+-2.6991631309509231e+01
+2.8369986881172653e+00
+-5.2809988444009068e+00
+-2.1919462290733975e+01
+8.4356854106514145e+00
+-7.0341422744172775e+00
+-2.3775621453283549e+01
+7.3200839130778759e+00
+-7.2508852188850543e+00
+-2.2787094341888018e+01
+7.7896102190631469e+00
+-7.2145155684839741e+00
+-2.2998306217253667e+01
+9.1194467187409280e+00
+-7.2722185613725570e+00
+-2.2863401959569867e+01
+9.3329053633956054e+00
+-7.3077085690672563e+00
+-2.2773155468181127e+01
+1.6631662307370270e+01
+-8.5649666949058467e+00
+-2.6087096867771567e+01
+1.6631662307370270e+01
+-8.5649666949058467e+00
+-2.6087096867771567e+01
+1.4248236993708268e+01
+-8.3228500973185753e+00
+-2.4849062999146462e+01
+-3.5462399468604167e+00
+-7.0676385502357064e+00
+-2.1504416837585708e+01
+-2.8293879404532425e+00
+-7.5823318506637811e+00
+-2.2445200144139552e+01
+-2.8867618789095042e+00
+-7.9132336062949573e+00
+-2.1683129606901506e+01
+1.2160158644735796e+01
+-8.5739497152895616e+00
+-2.1499614162084729e+01
+-2.5035459059449539e-01
+-8.1862328661731798e+00
+-2.0741867156634861e+01
+-2.5035459059449539e-01
+-8.1862328661731798e+00
+-2.0741867156634861e+01
+6.2414375316107451e+00
+-8.3023124326875823e+00
+-2.0719852632703589e+01
+1.2673989849804878e+01
+-9.5330180080596207e+00
+-2.3147246647749427e+01
+1.3603502859587554e+01
+1.0067730817467609e+01
+-2.3375809826858909e+01
+1.4068488885131453e+01
+9.3651647769923159e+00
+-2.3244781304637510e+01
+1.3866638171189321e+01
+1.1644408032421026e+01
+-3.2284634603218116e+01
+-1.5688939983911883e+01
+1.3141232867176171e+01
+-3.9243487220618945e+01
+1.2267020621329808e+01
+9.0877680141341060e+00
+-2.6275688023809511e+01
+-1.6932296234411520e+01
+1.2328777744645679e+01
+-3.7223222794472818e+01
+1.3823052754345696e+01
+1.0659916468562354e+01
+-3.3004993358222244e+01
+1.4160889922026444e+01
+8.0323396831463576e+00
+-2.3492638812465138e+01
+-1.5885206887137578e+01
+1.2566806744547302e+01
+-3.9715526851023171e+01
+1.2361656179246641e+01
+8.3856804951121724e+00
+-2.5820917611794549e+01
+1.2325706903473844e+01
+8.4797570175626493e+00
+-2.5868274205536999e+01
+-1.3022910724813331e+01
+1.0564068561378257e+01
+-3.7192264691698533e+01
+1.2252545726802300e+01
+7.3575091240405595e+00
+-2.8598906065675521e+01
+1.4184946148193298e+01
+6.1012254833427635e+00
+-2.3949421253711030e+01
+1.3193793767417024e+01
+6.4227198264545793e+00
+-2.6093094379004864e+01
+1.2896450136595099e+01
+6.1559798212091543e+00
+-2.6601152774932476e+01
+1.3365323847439067e+01
+5.6779750691920743e+00
+-2.6094633485355683e+01
+-2.7249619503338001e+00
+8.3128659504882219e+00
+-4.3758677564765101e+01
+-1.7472257893443917e+01
+8.0535493538944873e+00
+-4.2272706496546434e+01
+1.3000830781264400e+01
+5.3326002910967771e+00
+-2.7315155607250070e+01
+1.3098619413567015e+01
+5.3778907281482198e+00
+-2.7503562312081755e+01
+1.3529550717950309e+01
+6.3261717835774869e+00
+-3.3607551867287178e+01
+1.4384184375665155e+01
+4.5206304492595031e+00
+-2.4810507042177605e+01
+-5.4702009752102043e+00
+6.1376926972925316e+00
+-4.0539205420180352e+01
+1.7103116543097290e+01
+4.7941796606997125e+00
+-2.9992453744888511e+01
+-7.6300700042760807e+00
+5.7633887157933161e+00
+-3.9955932362100995e+01
+1.3026700125248128e+01
+4.2598007057621778e+00
+-2.8485014232761678e+01
+1.6588957165711061e+01
+4.4312756893471930e+00
+-2.9526545590084840e+01
+1.4623338935993244e+01
+3.2468271046298502e+00
+-2.3749982331120950e+01
+1.4253754347675764e+01
+2.7040541872553199e+00
+-2.5745004321690427e+01
+3.2622368562705883e-01
+1.8449433757725606e+00
+-2.0981314820981158e+01
+1.4622611901040111e+01
+1.7983600712982848e+00
+-3.3266629069567635e+01
+-2.9182890422142027e-01
+1.1267281460638130e+00
+-2.1123191279694808e+01
+1.4881272041571428e+01
+1.1706046597718420e+00
+-2.4767390662875041e+01
+-2.1583981946173047e+01
+1.5288346141618787e+00
+-3.4584715525750987e+01
+1.3934097707499598e+01
+1.1786407822113045e+00
+-2.8691547655601923e+01
+-8.5277233898190445e+00
+7.5776100699984861e-01
+-3.2821495788320995e+01
+-1.5897158912321678e+00
+3.6641187462872116e-01
+-2.2235207613184549e+01
+-1.5897158912321678e+00
+3.6641187462872116e-01
+-2.2235207613184549e+01
+-9.0244109607238663e+00
+2.4530819430208303e-01
+-3.2633382605735406e+01
+4.6686062922784579e+00
+-6.8418870018288835e-01
+-2.3442804396236536e+01
+-9.3066388054503619e+00
+-1.3576975045077573e+00
+-2.9486394604558935e+01
+-2.9033042939911615e+00
+-1.0772218667457307e+00
+-2.1768382066619328e+01
+-9.3579370631960863e+00
+-1.8927060487038894e+00
+-2.7747131773344936e+01
+4.9744682232734938e+00
+-2.5190097100785622e+00
+-2.0497158163381012e+01
+2.9508340478698063e+00
+-2.8188691296437933e+00
+-1.9769835253733557e+01
+1.3236316505556973e+00
+-2.8784515047163834e+00
+-1.9783481886006221e+01
+-6.2905998688261660e+00
+-4.1490141022185636e+00
+-2.6282705811930761e+01
+-5.6150182399410997e-01
+-3.3417072438943487e+00
+-2.1076104771190920e+01
+-1.1045765551766959e-01
+-3.7565435449133302e+00
+-2.1139117108653416e+01
+-1.2491749526947254e-01
+-3.7436311792417882e+00
+-2.0980746905878149e+01
+5.2753437974067339e+00
+-4.5365868066569188e+00
+-2.3089063924669176e+01
+-1.3327328614928102e+00
+-4.9163483521334417e+00
+-2.2551881212378010e+01
+1.5637122875280330e+01
+-6.3293511988444529e+00
+-2.7440015953595790e+01
+-1.0242598437912556e+00
+-5.2825741377723467e+00
+-2.2309834517822686e+01
+1.7485535658759680e+01
+-7.8661089536123887e+00
+-2.7202716713371696e+01
+-3.0344777537990297e+00
+-7.6261233123553804e+00
+-2.2235310769688382e+01
+-1.0068147231501634e+00
+-8.0929116082646892e+00
+-2.0277839890100459e+01
+-1.0068147231501634e+00
+-8.0929116082646892e+00
+-2.0277839890100459e+01
+-2.0594097090320651e+00
+-8.1745498251626394e+00
+-2.0138055361163474e+01
+-4.6527730253644597e+00
+1.8917747015986201e+01
+-4.1891553765880914e+01
+-4.6527730253644597e+00
+1.8917747015986201e+01
+-4.1891553765880914e+01
+5.3833525483176077e+00
+2.1537578936244088e+01
+-4.9577657285639155e+01
+1.8221075296385642e+01
+2.4775964861849431e+01
+-5.6936521982840659e+01
+1.2047527056574371e+01
+1.1109343734788860e+01
+-2.4928791442803139e+01
+4.3988411045328935e+00
+1.9711682150997142e+01
+-4.9266141605210649e+01
+3.2574823417236032e+00
+1.9571295837503701e+01
+-4.9256102409648165e+01
+1.3487415552408651e+01
+9.9473509615737594e+00
+-2.3709290692828500e+01
+1.4455387770731456e+01
+8.2098215122955924e+00
+-2.3326348775362465e+01
+1.3074055044349810e+01
+1.0673535413423895e+01
+-3.4263269493855901e+01
+1.3359591332604799e+01
+9.6899976583188323e+00
+-3.5552562690487633e+01
+1.4517689536897022e+01
+2.4188540388235800e+00
+-2.5042549160657625e+01
+1.3797874579293381e+01
+2.4744148721374883e+00
+-2.8955379588052221e+01
+1.5101218092537930e+01
+1.6940248390977717e+00
+-2.4072088321360717e+01
+-1.0071543208058211e+00
+1.3816008354763287e+00
+-2.1800316927368499e+01
+-1.5645176311286135e+00
+1.1377001897803334e+00
+-2.2508704612629970e+01
+-1.1229213808154730e+00
+6.2290276714779369e-01
+-2.1767112904571245e+01
+4.7679803801660254e+00
+7.6119430439177363e-02
+-2.3058083334898136e+01
+3.0332222118798144e+00
+-7.0873792527292301e-01
+-2.0997392984081582e+01
+-1.2188086646291090e+00
+-2.8977725738194415e+00
+-2.0436113319438885e+01
+4.1192415520662209e+00
+-3.7958197785976138e+00
+-2.1367089941857923e+01
+1.1900737750942238e+01
+-4.7858843406052447e+00
+-2.6576742911506528e+01
+1.3501418491180894e+00
+-6.2409646879586598e+00
+-2.2797847165941096e+01
+1.1385141738329398e+01
+-7.0898186097077547e+00
+-2.3541520218278176e+01
+-2.1010653176558973e+00
+-7.6995018771908734e+00
+-2.0783307174105065e+01
+1.4932848883540226e+01
+2.4765796912624481e+01
+-5.9325519126867334e+01
+5.7160511204824465e+00
+2.0295775673076179e+01
+-4.9961256069706621e+01
+1.3984742818301561e+01
+9.6447631800216591e+00
+-2.3792744641365758e+01
+1.3522219982370045e+01
+8.2876354305645830e+00
+-2.5174260908463307e+01
+-8.0585486987696218e+00
+1.2007464328922371e+01
+-4.7554239419066320e+01
+1.3775943569963848e+01
+2.9228174412918739e+00
+-2.8550763146505005e+01
+1.4721662035423217e+01
+1.5726067281556522e+00
+-2.4811393561417070e+01
+-1.8844961574576085e-02
+4.4139112916021800e-01
+-2.1210724042384058e+01
+-1.0630938470239291e+00
+-2.3413233496157098e+00
+-2.0337563231713933e+01
+9.3450738566487257e-01
+-2.9395857677786519e+00
+-2.0089469790614860e+01
+-9.1507036209762160e-01
+-3.0965524727509872e+00
+-2.0450282448081616e+01
+6.4979439857797006e-01
+-3.1398421473911964e+00
+-1.9661650391133058e+01
+3.3443429806783526e-01
+-3.9503338123388958e+00
+-2.1024367366758732e+01
+2.8477274681243336e-01
+-5.0356321997974378e+00
+-2.2039388355250466e+01
+8.5835060446255240e-01
+-5.3815684010580984e+00
+-2.2158069941236207e+01
+1.2025909933997638e+00
+-5.8402544028422829e+00
+-2.2230754280351089e+01
+-4.1336944258993036e+00
+-7.0556393645366304e+00
+-2.1405226940825237e+01
+1.4237788898517154e+00
+1.9633464050316125e+01
+-4.9802694657710191e+01
+1.4016776936921187e+00
+1.9048112760748211e+01
+-4.8423291437991097e+01
+1.4095582646283917e+01
+2.9536356383531697e+00
+-2.5853650156201631e+01
+1.4883964899501136e+01
+2.9197466742043736e+00
+-2.4696279342317691e+01
+1.5683145949951774e+01
+2.8713057562880255e+00
+-3.0397954244454329e+01
+1.4658601263556564e+01
+2.0683410727338867e+00
+-2.4419656359925238e+01
+1.4571745655207312e+01
+1.9980896830352795e+00
+-2.4169727764325454e+01
+3.0715669264786789e+00
+2.2438594005025181e-01
+-2.0646530869262982e+01
+-1.7357894620872245e+00
+-1.4786442980540613e+00
+-2.1159293140419461e+01
+7.1094831524283822e-02
+-2.2879452909579667e+00
+-2.0800955284990842e+01
+6.3481058758650741e+00
+2.1601911031216044e+01
+-4.9743471958029950e+01
+2.4167568134963933e+00
+2.0146874338635808e+01
+-4.7976015473385310e+01
+2.4943425656215785e+00
+2.0489135031004480e+01
+-4.8857889125755172e+01
+4.1192844151313013e+00
+2.1544468486796138e+01
+-5.3335266898279073e+01
+4.0422655029631054e+00
+2.1070534601414042e+01
+-5.2297599454613952e+01
+1.4126516474408255e+01
+2.4365476154811837e+01
+-6.3019072658480198e+01
+1.3422108147712942e+01
+1.0194114170852835e+01
+-2.4511500647794236e+01
+1.4355984652571488e+01
+1.8346715104490905e+00
+-2.6127611075649135e+01
+3.1437680594180692e+00
+-3.1056045469170013e-01
+-2.0691643570349949e+01
+1.1517856204545531e+00
+-1.4950254522336435e+00
+-2.1294895951125469e+01
+-7.6231809729151569e+00
+1.5107763069935624e+01
+-4.2705872899318038e+01
+-7.5295845759910174e+00
+1.4979205636053942e+01
+-4.2648818132466737e+01
+1.4330822811684591e+01
+4.2110256078738741e+00
+-2.4388200456764366e+01
+1.6637055476834064e+01
+2.6889621903322900e+00
+-3.0363826055478722e+01
+-4.0536093972088887e+00
+1.8467079884593137e+01
+-4.2882334911283536e+01
+3.0191893467860891e+00
+2.1849964863278228e+01
+-4.6298243196702799e+01
+6.7321832172814808e+00
+2.3402463079499995e+01
+-4.7946034701112445e+01
+-1.2304639798099581e+01
+1.4370406046041122e+01
+-3.8335221011826697e+01
+-1.2199587958520731e+01
+1.4244063832160691e+01
+-3.8122670882415918e+01
+-1.1208668302249299e+01
+1.5206335708170016e+01
+-3.9096701344253901e+01
+6.7295346638366338e+00
+2.3801320677152951e+01
+-4.9005201110121881e+01
+3.2869008453613295e+00
+2.1740005776046239e+01
+-4.6240885706942365e+01
+-9.2743571262972626e+00
+1.5630900767673667e+01
+-3.9920977697267041e+01
+-9.1685109547044981e+00
+1.5391281836245973e+01
+-3.9148095822451083e+01
+-9.0761307062869196e+00
+1.5232510170960687e+01
+-3.9047941910346843e+01
+6.1308486784985750e+00
+2.3010564991352609e+01
+-4.7775446058027292e+01
+6.7457220792539987e+00
+2.4512036350136789e+01
+-5.1060565224528851e+01
+6.2637184154894907e+00
+2.3161227538304949e+01
+-4.7927789860707655e+01
+-4.0656445998231430e+00
+1.8346080240918344e+01
+-4.3124180663059860e+01
+-4.1273687999707640e+00
+1.8404184866240705e+01
+-4.3060159813221119e+01
+-4.0509852502408448e+00
+1.8244731339191596e+01
+-4.2976340280043445e+01
+6.3099422053720424e+00
+2.3232491095193282e+01
+-4.8324617621054109e+01
+6.3301060513572098e+00
+2.3184724373018980e+01
+-4.8315696032388409e+01
+-1.2701731150205971e+01
+1.4334360154413382e+01
+-3.8629215192514302e+01
+-1.1450843167632401e+01
+1.3043718515475870e+01
+-3.5626518642894240e+01
+9.8933243755876976e+00
+2.4631876070029442e+01
+-5.0423668148259139e+01
+-1.4892706563096151e+01
+1.3235511225687025e+01
+-3.7671927514176204e+01
+-1.0766384184215269e+01
+1.4930013701059570e+01
+-4.0053101196272571e+01
+-1.0766384184215269e+01
+1.4930013701059570e+01
+-4.0053101196272571e+01
+-1.2659968001390446e+01
+1.3900474625528213e+01
+-3.8558300022469545e+01
+-5.1233236002026556e+00
+1.7258796432869406e+01
+-4.2880025272657420e+01
+-1.5713736033801956e+01
+1.3232033580922538e+01
+-3.8425844284960192e+01
+-1.3472846507390820e+01
+1.1282353482507871e+01
+-3.3021548117253303e+01
+-1.5739049144855779e+01
+1.3230429098315717e+01
+-3.9190043918743783e+01
+7.9338048314973939e+00
+2.3889525516899045e+01
+-5.0649384838250782e+01
+-1.2551224941340692e+01
+1.3781075873018706e+01
+-3.8782591658582454e+01
+9.1213543322701618e+00
+2.3771832474036707e+01
+-5.0352917526461596e+01
+1.2098474487631157e+00
+2.0230843505203666e+01
+-4.7001952466832414e+01
+-6.3758944110978559e+00
+1.5808934990651814e+01
+-4.1485911497377479e+01
+9.7822668836407676e+00
+2.4653735771382713e+01
+-5.2698087596204914e+01
+7.6716861610112383e+00
+2.2837566343186811e+01
+-4.9723849839127951e+01
+9.8518867843850513e-02
+1.9347496538546025e+01
+-4.6404693446597129e+01
+-1.3288672158399690e+01
+1.3365111617981693e+01
+-3.9550123631246933e+01
+-1.2880563796225054e+01
+1.3113526859041968e+01
+-3.8564853178574687e+01
+-1.6192316111122661e+01
+1.2397115952265642e+01
+-3.8548857416783761e+01
+-1.0530188931004130e+01
+1.3041720262573655e+01
+-3.7653314077676335e+01
+1.1789358188250849e+00
+2.0425947337424844e+01
+-4.8264263681392336e+01
+9.7519598356839197e+00
+2.3766013559494588e+01
+-5.1301095776540670e+01
+8.2421602213459833e-01
+1.9659547017285263e+01
+-4.6396935973585911e+01
+-1.1325036961555478e+01
+1.3898000654637530e+01
+-3.9848912596880318e+01
+-2.3507347985843112e+00
+1.7764090666955759e+01
+-4.4897443764216739e+01
+-9.1792628656913120e+00
+1.5028065946261272e+01
+-4.1675563972562195e+01
+-5.7491788344929473e+00
+1.6421514885554796e+01
+-4.3170861080271393e+01
+-1.4819958165929979e+01
+1.2731881663646220e+01
+-3.9493598819710080e+01
+-2.8160276975747496e+00
+1.7731402967288219e+01
+-4.4960947991560097e+01
+-1.4924320664826528e+01
+1.2396736751944596e+01
+-3.8677040798783970e+01
+-1.5397973761986032e+00
+1.8143339949362755e+01
+-4.5778013116408665e+01
+-2.6691901163473024e+00
+1.7802259549504871e+01
+-4.5229089977466337e+01
+-1.3407410443723117e+01
+1.0973959020805921e+01
+-3.4979487909462435e+01
+-1.0987150260406466e+01
+1.2447338268905634e+01
+-3.6998052936575959e+01
+-2.0022765662986215e+00
+1.7886318466384083e+01
+-4.5555072864685272e+01
+1.4107454621270739e+01
+2.6288003485070252e+01
+-5.6063326852326213e+01
+-1.4275026630698331e+01
+1.0390650525480771e+01
+-3.3749791142665444e+01
+-8.9090302584929582e+00
+1.4888399010512193e+01
+-4.2101874302138860e+01
+-1.5744084880840776e+00
+1.8232088035955545e+01
+-4.5799887293243430e+01
+-1.2629846304911005e+01
+1.1373447190252442e+01
+-3.5473643568063864e+01
+-7.7763546453171415e+00
+1.4510241726395034e+01
+-4.1074192019007185e+01
+-8.8287226570978152e+00
+1.4816509202522710e+01
+-4.2217271659118758e+01
+1.4746432981624726e+00
+1.9516524802789075e+01
+-4.7887195464796861e+01
+-1.0995384225339340e+01
+1.2487585529948813e+01
+-3.8093905558073828e+01
+-1.1588537296088894e+01
+1.3226092289595016e+01
+-4.0315146279188795e+01
+-2.8408373133152263e+00
+1.7535574012660387e+01
+-4.5737133750766269e+01
+-9.9521961455989185e+00
+1.4357613288162112e+01
+-4.1689988203358318e+01
+-7.9854837919282762e+00
+1.4774994644741160e+01
+-4.2030660353070886e+01
+-3.3355424445974382e+00
+1.7350275676464939e+01
+-4.5281235631383637e+01
+3.5200263048868713e-01
+1.8904604972054624e+01
+-4.7773281597557130e+01
+-1.6791538330196134e+00
+1.7947681386206540e+01
+-4.6129381369352089e+01
+-8.9008735870705920e+00
+1.4431884331619662e+01
+-4.2084311942429899e+01
+1.5230832259702556e+00
+1.9543057722044903e+01
+-4.8117463255067783e+01
+-8.3951780504258942e+00
+1.4664444629395513e+01
+-4.2423074753571235e+01
+-8.2438900795001135e+00
+1.4921909591151701e+01
+-4.2903769050496336e+01
+-1.5240396545834228e+01
+1.2018695037089348e+01
+-3.9628418952830238e+01
+8.1634217123706598e+00
+2.2185364575591404e+01
+-5.1057582727638753e+01
+1.6173880529732546e+01
+2.5877121172130245e+01
+-5.5172931485137561e+01
+-3.0679774909020425e+00
+1.7288939961543882e+01
+-4.5584764343326981e+01
+-1.3125728322645621e+01
+1.1662017389480440e+01
+-3.8058795750649104e+01
+-3.7660474488207489e+00
+1.6718773594974309e+01
+-4.5227872630077073e+01
+8.7398282042057271e+00
+2.2369440197242355e+01
+-5.1377971273181231e+01
+-1.5440463748314968e+01
+1.1877922245817842e+01
+-3.9595909524957968e+01
+1.8150630274876136e+01
+2.8618958556234070e+01
+-6.1612221710480696e+01
+-1.3590506817186398e+01
+1.1553664403752563e+01
+-3.7936471662447182e+01
+-1.7568115799100383e+00
+1.7773491388267225e+01
+-4.6307703415469817e+01
+3.0242311150299903e+00
+2.0107551556746923e+01
+-4.9394223817183658e+01
+-1.3735028020324666e+01
+1.2560393054268651e+01
+-4.0535829574893803e+01
+-1.3735028020324666e+01
+1.2560393054268651e+01
+-4.0535829574893803e+01
+-2.2596507503551722e-01
+1.8488857168409300e+01
+-4.7593082169894586e+01
+-5.9813506406392705e+00
+1.5489274612792753e+01
+-4.3786825338944382e+01
+8.1130718950536576e+00
+2.2015127409164226e+01
+-5.1519735119148258e+01
+1.4467374341049086e+00
+1.9098489883576491e+01
+-4.8006401592408487e+01
+1.1229159268358643e+01
+2.3308387150535602e+01
+-5.2515786249515060e+01
+1.2441653966757436e+01
+2.4138410125316252e+01
+-5.4185526385014299e+01
+-9.3868553471289022e+00
+1.3182887442464052e+01
+-3.9950829984880457e+01
+-1.0968705802184765e+01
+1.3434815365086070e+01
+-4.1878216789848601e+01
+1.2780352459101330e+01
+2.3926851144349882e+01
+-5.3496456472660306e+01
+1.2890732606216611e+01
+2.4025827151008770e+01
+-5.3836087118841903e+01
+7.0455362508280617e+00
+2.2020998948535375e+01
+-5.2662667836487785e+01
+1.0890689533709054e+01
+2.4176066857629525e+01
+-5.5771537049380420e+01
+1.4453851680338992e+01
+2.4391487788970210e+01
+-5.3629477950137158e+01
+1.1509841156991935e-01
+1.8290839232267942e+01
+-4.8116045216010392e+01
+-1.6237568967501850e-01
+1.8339148828086675e+01
+-4.7751791082846587e+01
+1.7232149196172148e+00
+1.9010619559314172e+01
+-4.8347441987787661e+01
+1.1799436643423034e+01
+2.3800639415840177e+01
+-5.4795597369324021e+01
+-6.8995341633727199e+00
+1.4529369380489358e+01
+-4.2839893392351428e+01
+-8.6541608948020876e+00
+1.4232262017544391e+01
+-4.2914563509725838e+01
+-7.2520070393493610e+00
+1.4740399877744984e+01
+-4.3772135236571003e+01
+-1.0198161308274461e+01
+1.3483544113987589e+01
+-4.2140340135261887e+01
+-1.0316172329672476e+01
+1.3409142169754178e+01
+-4.2097256720490080e+01
+7.8323135113862516e+00
+2.2302797180540590e+01
+-5.3622464920759434e+01
+1.7191920039766735e+01
+2.5642717048759717e+01
+-5.6105618486983204e+01
+6.1431249527089733e+00
+2.1422686487703999e+01
+-5.2447950607554198e+01
+-6.6088393785030100e+00
+1.5100557286511496e+01
+-4.4270491733382379e+01
+-8.8873151885251680e+00
+1.3231537839590896e+01
+-4.1292662489299794e+01
+-3.9743720723771603e-01
+1.7859965625299939e+01
+-4.7664055451294665e+01
+-7.7719141740750279e+00
+1.3844907483187054e+01
+-4.2024444678000208e+01
+-7.7448490063058548e+00
+1.3781822852118051e+01
+-4.2106256246213206e+01
+2.7212811751500112e+00
+1.9381968917446287e+01
+-5.0309695686163039e+01
+2.6280317905946107e+00
+1.9025794569352147e+01
+-4.9224352919686943e+01
+-1.1817566194548165e+01
+1.1143252722021057e+01
+-3.7644948457884936e+01
+1.7463018091151717e+01
+2.5531824732780347e+01
+-5.6558139108552609e+01
+-1.0030216753063071e+01
+1.3417198184583127e+01
+-4.2691583396045353e+01
+-8.9281739217192850e+00
+1.3694933918234838e+01
+-4.3022679847563708e+01
+-9.2942818542458872e-01
+1.7258922389778647e+01
+-4.7709061409077748e+01
+-8.8374349525347178e+00
+1.3837286471297359e+01
+-4.3317058390301433e+01
+-1.0091813407030166e+01
+1.3184854865638663e+01
+-4.2664847428564258e+01
+-8.2912370660692947e+00
+1.3989251597253915e+01
+-4.3677703994590004e+01
+-7.8990474996361488e+00
+1.3456732379669097e+01
+-4.2113732644268659e+01
+-6.3271356083281178e+00
+1.4727557523713282e+01
+-4.4715888931471106e+01
+1.5087149357020376e+01
+2.5825656377287977e+01
+-6.0146129572246046e+01
+-8.3162873065222733e+00
+1.4096241925805385e+01
+-4.4138494828554698e+01
+-8.1171395179461836e+00
+1.4040821659516880e+01
+-4.4056115939542934e+01
+-1.2580562108006902e+01
+1.1413493638313707e+01
+-4.0077303975922611e+01
+-1.6662322587566695e+01
+1.0606774137289566e+01
+-4.0708561383595885e+01
+-1.6584795974694188e+01
+1.0529183342254933e+01
+-4.0375057964226748e+01
+-1.3838051732926234e+01
+9.7325071333275766e+00
+-3.6662446700021775e+01
+-1.8633269775103258e+00
+1.6094873299845094e+01
+-4.6124218992898484e+01
+-1.4582442372866735e+01
+9.3510961624563311e+00
+-3.6013707429370463e+01
+-8.7424312913713322e+00
+1.3282445821887960e+01
+-4.3789029038940058e+01
+-7.2473297289565979e+00
+1.4008761763067994e+01
+-4.4766971137826623e+01
+-8.1665205479950487e+00
+1.3200787898140826e+01
+-4.3017048915368498e+01
+-3.2894048178194990e-01
+1.7055316157496488e+01
+-4.9128988880251867e+01
+-6.5540091439199140e+00
+1.4102178167402283e+01
+-4.4904815854617233e+01
+-9.5922871740307976e+00
+1.2835440156611391e+01
+-4.3750107793045714e+01
+-6.9511137390837625e+00
+1.4186109348985774e+01
+-4.5784276284938315e+01
+7.5642151849622574e-01
+1.7376695134441135e+01
+-4.9523543410398318e+01
+5.7690587179946036e+00
+1.9579127954725163e+01
+-5.2414651119065937e+01
+-9.6612613592547341e+00
+1.2848536557971910e+01
+-4.4118143963001188e+01
+2.1202786420104104e+01
+2.8461767069134424e+01
+-6.7185928189225393e+01
+5.5675545052677009e+00
+1.9618162609551259e+01
+-5.3569540723589853e+01
+5.7399540013856019e+00
+1.9453288139381112e+01
+-5.2533218544375494e+01
+-1.1980520243480973e+01
+1.0862014661395129e+01
+-4.0332037971314421e+01
+-1.1980520243480973e+01
+1.0862014661395129e+01
+-4.0332037971314421e+01
+4.4093875409756740e-02
+1.6818152090103670e+01
+-4.9443101803099175e+01
+-4.0716780244619715e+00
+1.5176055504734258e+01
+-4.7826991493054095e+01
+7.8431082195582658e+00
+2.0556920940664565e+01
+-5.4309537781508965e+01
+3.6428860018875470e-01
+1.7136410299575754e+01
+-5.0452765009785175e+01
+-9.6215578627774079e+00
+1.2368478345164277e+01
+-4.4020406765272710e+01
+1.0136939068327184e+01
+2.2487697260951698e+01
+-5.8866150609624924e+01
+9.6758139004025026e+00
+2.1567911871264126e+01
+-5.6539762438451127e+01
+7.8047960365038298e+00
+2.0180844128649444e+01
+-5.3891160294806404e+01
+-1.0135285829043811e+01
+1.2398719661113560e+01
+-4.4482130288475773e+01
+7.9180933490066998e+00
+2.0199205625785112e+01
+-5.4315285681990403e+01
+2.2637507052415150e-02
+1.6583785766723462e+01
+-4.9999223448712435e+01
+-1.6693980535911717e+01
+9.6860355247870000e+00
+-4.1826493412991908e+01
+5.4429863120577622e+00
+1.8872364522521295e+01
+-5.2985483339819844e+01
+1.1685392556002436e+00
+1.7303122908310893e+01
+-5.1266338722549797e+01
+-4.0181822095053565e+00
+1.5004662819423709e+01
+-4.8701320137892054e+01
+-1.2464709969906101e+01
+1.0985471799645852e+01
+-4.3199459568111443e+01
+-6.7862528965114048e+00
+1.3331262795413691e+01
+-4.6170740021864034e+01
+-1.1685602888629841e+01
+1.0825227070764280e+01
+-4.1883585546305987e+01
+-9.6618375867031840e+00
+1.2172344600914011e+01
+-4.4620696170900985e+01
+1.0242644727591561e+01
+2.1780924363654197e+01
+-5.8309082861827818e+01
+-1.1233940892732033e+01
+1.1465886435403171e+01
+-4.3937824551087829e+01
+-1.3610618764671170e+01
+9.6878197966381645e+00
+-4.0413399982187904e+01
+9.7247227660559989e+00
+2.0685475968245669e+01
+-5.5967073515970135e+01
+1.4311088837119119e+01
+2.3536627902369506e+01
+-6.0399441612253909e+01
+1.0061735873980396e+01
+2.0756034524707292e+01
+-5.5929136689473033e+01
+1.0061735873980396e+01
+2.0756034524707292e+01
+-5.5929136689473033e+01
+1.0341288870406512e+01
+2.2473164581230233e+01
+-6.0972877809211390e+01
+-2.6943870335067965e-01
+1.6264478271657257e+01
+-5.0659839530463096e+01
+1.6417650177659542e+01
+2.4854644087349257e+01
+-6.4019964092426449e+01
+1.5381496037097648e+01
+2.3331584965732603e+01
+-5.9843145306962960e+01
+-1.1556145179157904e+00
+1.5576729156017503e+01
+-5.0087501123001850e+01
+9.5820250450267590e+00
+2.0220276778065642e+01
+-5.5628138969022935e+01
+9.6451482293914736e+00
+2.0377427379188198e+01
+-5.6013158397546775e+01
+9.9435947314530644e+00
+2.0496274759626981e+01
+-5.6167178030085772e+01
+1.0130026399007242e+01
+2.0539329685334678e+01
+-5.6168116487494800e+01
+1.6370907671772439e+01
+2.4708684129277120e+01
+-6.4193410297500904e+01
+1.6137529221207924e+01
+2.4128107117587209e+01
+-6.2190242118103974e+01
+1.8229253635249520e+01
+2.5705191792935796e+01
+-6.6037619906997790e+01
+4.6536305491294430e+00
+1.7986198555644748e+01
+-5.3179928161417223e+01
+9.5748087135985127e+00
+2.0246375390397798e+01
+-5.5721977436214829e+01
+-5.3110233224694010e+00
+1.3655249125495075e+01
+-4.7736606276038366e+01
+1.9783599821239555e+01
+2.6478207096026310e+01
+-6.7484892110027715e+01
+-1.2704453525262050e+01
+1.0488083514472246e+01
+-4.3833811887064329e+01
+-5.8517155195192210e+00
+1.3570819162563312e+01
+-4.7920328396535645e+01
+1.5509037916679240e+01
+2.3996231234236149e+01
+-6.3716886251606674e+01
+4.4189811365658249e+00
+1.7479096012894463e+01
+-5.2865921674558997e+01
+4.3374200441663993e+00
+1.7673287463107883e+01
+-5.2977330587313752e+01
+1.0274714992918017e+01
+2.0405000763337316e+01
+-5.6585228887029757e+01
+9.9144837681538593e+00
+2.0347071230103676e+01
+-5.8010356773486102e+01
+-3.8873396672425335e+00
+1.3966270861062524e+01
+-4.9144150102935519e+01
+-6.4589984680794510e+00
+1.2485369799543466e+01
+-4.7093327215208085e+01
+1.7609694378558178e+01
+2.2959573689485545e+01
+-6.0366676421032196e+01
+-5.9783890226866259e+00
+1.3042290014440761e+01
+-4.8306811480843265e+01
+1.6164871973857771e+01
+2.2262579107337050e+01
+-5.9820053322590269e+01
+1.6344757765758281e+01
+2.2428607039962937e+01
+-6.0440800382889570e+01
+1.5497591920301641e+01
+2.2864444922616435e+01
+-6.2304598843804094e+01
+-9.8811162601874436e+00
+1.0217251943471906e+01
+-4.3049045713310555e+01
+-9.8811162601874436e+00
+1.0217251943471906e+01
+-4.3049045713310555e+01
+9.7544460440839220e+00
+1.9565459002589762e+01
+-5.7024227264980532e+01
+1.2381231145478644e+01
+2.0494013221511977e+01
+-5.7954307019387258e+01
+1.3146214217116256e+01
+2.1413454781829437e+01
+-6.1109227123590337e+01
+1.5264681070087406e+01
+2.1615698154461199e+01
+-5.8995036698142556e+01
+5.8209142358936106e+00
+1.8213472599129581e+01
+-5.7022840232654112e+01
+-8.6381643724433381e+00
+1.1632017454816518e+01
+-4.7460544198256393e+01
+6.1874339449660454e+00
+1.7866295950880179e+01
+-5.6287517184276794e+01
+-8.4462644928596973e+00
+1.1581655592581612e+01
+-4.7786628291998618e+01
+1.1029517950066374e+01
+1.9720302373122486e+01
+-5.8134121001695121e+01
+1.0303691596513174e+01
+1.9628847475862461e+01
+-5.9441841308380738e+01
+9.3463567801872731e+00
+1.9153958497544551e+01
+-5.8744551864949536e+01
+1.5572764814919275e+01
+2.2930451840950440e+01
+-6.5551108370522357e+01
+-1.3433699699486157e+01
+9.1369250401047371e+00
+-4.5065832719544680e+01
+1.3916540021480749e+01
+2.0735859916870499e+01
+-6.1225779962690659e+01
+1.3513904728284373e+01
+1.3945762902986830e+01
+-3.7360815579161361e+01
+-1.9190297987088019e+01
+5.8651546536117065e+00
+-4.1793560738086740e+01
+1.3250325823280184e+01
+1.3021837163792990e+01
+-3.5879436550500856e+01
+1.3250325823280184e+01
+1.3021837163792990e+01
+-3.5879436550500856e+01
+-1.5995490868088085e+01
+4.9185681013377085e+00
+-3.5793859572322802e+01
+-1.3558160153931178e+01
+7.2243149264237587e+00
+-4.2339995537694101e+01
+-1.2188927894891853e+01
+6.8152367584664235e+00
+-4.0395310055609635e+01
+1.3715590139326164e+01
+1.2725964506039862e+01
+-3.7092049754866181e+01
+1.3569569188913858e+01
+1.2489705834031430e+01
+-3.6156528533847336e+01
+1.3569569188913858e+01
+1.2489705834031430e+01
+-3.6156528533847336e+01
+5.5223272114494213e+00
+1.3629403337995083e+01
+-5.0447204311074849e+01
+3.9620701601221011e+00
+1.3089196142924665e+01
+-5.0251541621885167e+01
+6.0083436658023643e+00
+1.3197213740332568e+01
+-5.0096229677402881e+01
+1.3366277541009485e+01
+1.1679408161453940e+01
+-3.5926951520751793e+01
+4.1865334792970055e+00
+1.1315651019383839e+01
+-4.8227395509279589e+01
+6.9940999195505755e+00
+1.2310173426426092e+01
+-4.9754179463395360e+01
+4.8049261498986295e+00
+1.1083946125684921e+01
+-4.7770495041265193e+01
+3.5900483879625660e+00
+1.0572115777751939e+01
+-4.7411652585224381e+01
+3.4944193193284230e+00
+1.0248896901338991e+01
+-4.6115737128683683e+01
+1.1840018745773824e+01
+1.3135391807579177e+01
+-5.0133659263024228e+01
+3.9888373325664701e+00
+1.0425838709629438e+01
+-4.7750315765850829e+01
+4.9073327245630507e+00
+1.0402482275782981e+01
+-4.6729405338243225e+01
+1.4339908763376011e+01
+1.1725490347606133e+01
+-4.0167071147730752e+01
+-1.8752812580264941e+01
+1.8056714117664285e+00
+-3.5772197946561903e+01
+1.2556661786069682e+01
+1.3226428245388783e+01
+-5.2008274883920400e+01
+-1.7265608086656716e+01
+2.0533855666235024e+00
+-3.5479001598718483e+01
+1.3352121242638562e+01
+1.0666589523189099e+01
+-3.7090899627581429e+01
+3.7256988197840588e+00
+9.5855867428321400e+00
+-4.6478034601289352e+01
+1.3598515302015361e+01
+1.0336932276048035e+01
+-3.5332961380805088e+01
+-6.1104936214659817e+00
+5.9082560403976832e+00
+-4.1625206119135974e+01
+-1.3734316478902670e+01
+2.1237500914685508e+00
+-3.2764738979434156e+01
+4.0012277838860939e+00
+9.3661191489583899e+00
+-4.6280899761430668e+01
+6.6065359846897689e+00
+1.0142867564129999e+01
+-4.7058969337003504e+01
+1.3708061646533166e+01
+1.0039674755454422e+01
+-3.5590677994211930e+01
+2.5380393235579759e+00
+8.2413767928030044e+00
+-4.3760949520583750e+01
+4.3374439349363092e+00
+9.2261279376342600e+00
+-4.5564780683615005e+01
+2.0059829713481858e+00
+8.1180075054418133e+00
+-4.3093775124372684e+01
+7.2133614901361547e+00
+1.0113069377441031e+01
+-4.7468580710011324e+01
+7.5545732580620388e+00
+1.0087480835047986e+01
+-4.6998537249501943e+01
+1.3931982076365269e+01
+1.0826344479560019e+01
+-4.0776047855263279e+01
+9.2912871906979824e+00
+1.0520960608850292e+01
+-4.7735727043371135e+01
+1.3572235659768864e+01
+9.7970733753221904e+00
+-3.5838750114259788e+01
+1.3402885404574659e+01
+9.8532503057183973e+00
+-3.5678470316268090e+01
+1.3195293902102765e+01
+1.0192155819421798e+01
+-3.9153395108052983e+01
+8.0714615809582302e+00
+9.6177379312817735e+00
+-4.5528216169067903e+01
+3.1469135933210306e+00
+7.7749552738667802e+00
+-4.3134843502134082e+01
+9.0190365108951305e+00
+1.0069573450735581e+01
+-4.7170762227538447e+01
+1.3718448951144698e+01
+9.6301034374257188e+00
+-3.6210169267897314e+01
+1.2531492328590870e+01
+1.0722307921815807e+01
+-4.6714624993581452e+01
+4.7255885251361418e+00
+8.0473359826667767e+00
+-4.4102252247304101e+01
+-1.1255311844636706e+01
+2.2769949522870236e+00
+-3.5500748493218211e+01
+-2.2689907520178139e+00
+3.6414344916656196e+00
+-2.8085685141256846e+01
+-2.1725181959163753e+00
+3.7457898095367357e+00
+-2.8346360757444184e+01
+-7.7605844746915720e+00
+3.1541779923957338e+00
+-3.6664405930217001e+01
+1.4450511085316137e+01
+9.9081908470619027e+00
+-4.0247201984601823e+01
+1.4450511085316137e+01
+9.9081908470619027e+00
+-4.0247201984601823e+01
+6.7791559764584863e-01
+3.5743536869066146e+00
+-2.3056691768786024e+01
+-2.9118794255584044e+00
+3.0097494290006104e+00
+-2.7235748418361368e+01
+2.1397346025298378e+00
+4.2000907294504426e+00
+-2.5046616434397887e+01
+2.1397346025298378e+00
+4.2000907294504426e+00
+-2.5046616434397887e+01
+2.7065800631237154e+00
+4.0876492872955392e+00
+-2.3691263036770742e+01
+-3.0977600450367717e+00
+2.8800945803179374e+00
+-2.7157856003748378e+01
+2.5766043417913371e+00
+4.0021203826528398e+00
+-2.3592850702976278e+01
+2.5786391762272367e+00
+3.9967227726907417e+00
+-2.3617798242414821e+01
+6.3334670414347288e-02
+3.0716940121708554e+00
+-2.2192129363341785e+01
+-8.3964895804204864e-01
+2.7990679014309707e+00
+-2.2662055248874754e+01
+1.4184436954132451e+01
+9.3899472908959449e+00
+-4.0817782106242291e+01
+-6.4028897143732397e+00
+2.9196681598587051e+00
+-3.6308416500026674e+01
+1.5024383260399031e+01
+9.1507596215958973e+00
+-3.8062640314688366e+01
+-1.1952262671569937e+01
+8.1141406725578213e-01
+-3.2454395695358031e+01
+1.1559025726461451e+01
+8.7898602076905679e+00
+-4.4131812386691415e+01
+-1.1098149441137798e+01
+1.0657299046229791e+00
+-3.3812880156409712e+01
+-2.1421060991382048e+00
+2.5682555565073968e+00
+-2.5631238154003803e+01
+1.3647313380784428e+01
+8.6140252027555437e+00
+-3.8642505535584519e+01
+3.2220953928546332e+00
+3.8100093559080550e+00
+-2.3399768014163001e+01
+6.7036384039523638e+00
+6.9938958963077198e+00
+-4.2055433479548597e+01
+9.9450666609599221e+00
+8.1286379047292705e+00
+-4.4157090863003745e+01
+3.2421818685222896e+00
+3.7097793007771838e+00
+-2.3187878340549233e+01
+1.2348672100861103e+01
+7.0356014555626381e+00
+-2.9876758824688086e+01
+2.0537513853629337e+00
+3.4010118805418754e+00
+-2.3121543157188480e+01
+-1.6970585672165002e+00
+2.1295807279269789e+00
+-2.3175862200528126e+01
+1.0145751117730013e-01
+2.6047989793600443e+00
+-2.1876617870084026e+01
+1.4057588555191982e+01
+8.6089554630196172e+00
+-4.1596197732833133e+01
+-2.5183999726940232e+00
+2.0018118152615081e+00
+-2.4811250962198688e+01
+3.7012066066790563e+00
+3.6329109388882785e+00
+-2.3365340758918837e+01
+1.8542224243305210e+00
+2.9486328939101472e+00
+-2.2157184507727468e+01
+1.4668160627664346e+01
+8.4155536324385896e+00
+-3.9663408884871885e+01
+3.8862040264484756e+00
+3.6320270226679057e+00
+-2.3620620863210007e+01
+-3.7742791216019742e+00
+1.4291505011992458e+00
+-2.5082636344224870e+01
+9.4084983736428711e+00
+6.8659302735510748e+00
+-4.2080768227282881e+01
+-7.5471187361905645e-01
+1.9985023371217525e+00
+-2.1965410615583725e+01
+1.0216205395058518e+01
+6.9417814343539836e+00
+-4.2519356718379058e+01
+3.3289116739599938e+00
+3.1496218896225292e+00
+-2.2822394126450796e+01
+4.2783897056128067e-01
+2.1572073341838212e+00
+-2.1199817582909713e+01
+3.9343599250606148e-01
+2.2568261910946346e+00
+-2.1702825762351466e+01
+1.0967683667353391e+01
+6.9508224608436819e+00
+-4.3294808634342687e+01
+1.3276714402593953e+01
+7.7551025351799661e+00
+-4.5057602763098878e+01
+-9.7578048323147728e-03
+2.1075225059750098e+00
+-2.2508528288923255e+01
+-6.2529018744417408e+00
+1.0931030617369626e+00
+-3.3912565925241282e+01
+-6.2350368168251604e+00
+1.0842115932283358e+00
+-3.3916260353741151e+01
+-1.0742131662342957e+00
+1.6367495631675371e+00
+-2.2259321200079022e+01
+1.2978841835215665e+01
+6.5354265463990791e+00
+-3.2508801642336870e+01
+-7.1637817161047346e-01
+1.6164776413125681e+00
+-2.1548088508695923e+01
+-7.3246407137534575e-01
+1.6416593571555573e+00
+-2.1695395453731400e+01
+1.0263280285596787e+01
+6.3806398970042499e+00
+-4.1599684989198828e+01
+-1.6149581493382701e+00
+1.3819632568680393e+00
+-2.2517422920625183e+01
+1.2052929741558371e+01
+6.0475063659521604e+00
+-2.9868553526141184e+01
+1.0182865960006278e+00
+2.0990456876529229e+00
+-2.1504977628804053e+01
+8.8574938316566385e+00
+5.7908762223670971e+00
+-4.1205297260648194e+01
+3.8273382185134008e+00
+2.8658401831472387e+00
+-2.2350629721285785e+01
+4.8897249330246767e-01
+1.8381488140477842e+00
+-2.1026271967050288e+01
+8.1648031294598000e-01
+1.8983016684012859e+00
+-2.0954406543909560e+01
+9.7379170413116096e+00
+5.8758034079689061e+00
+-4.0989649721112322e+01
+4.1305649616852813e+00
+2.9215176342776723e+00
+-2.2734683978016992e+01
+4.1260106945448580e+00
+2.9259256746061562e+00
+-2.2701786656234741e+01
+9.0882950047365796e+00
+5.6792569375708961e+00
+-4.1498204292994956e+01
+4.3177577412749901e+00
+2.9736300813861356e+00
+-2.2924725083610788e+01
+4.1701305387213905e+00
+2.8885661848826856e+00
+-2.2714892969668107e+01
+4.1701305387213905e+00
+2.8885661848826856e+00
+-2.2714892969668107e+01
+9.0088531117060977e-01
+1.9344585067727464e+00
+-2.1367261557468712e+01
+1.3668306703395404e+01
+6.2607866963554502e+00
+-3.2142638770947734e+01
+-2.4891627591817045e+00
+7.5824652418703542e-01
+-2.3202886876445195e+01
+-1.7672084403486182e-01
+1.3335833305467275e+00
+-2.1084974252769857e+01
+1.2229406122718188e+01
+5.5872429520345985e+00
+-2.9666092036782842e+01
+1.6710950413275500e+00
+1.8322102140119891e+00
+-2.0695460096685007e+01
+1.5413541558734869e+01
+7.0805120598499753e+00
+-4.1635111561632669e+01
+1.2529428908328139e+01
+5.4693747331620424e+00
+-2.9395693575868055e+01
+1.5226688200130685e+01
+6.9747671154029227e+00
+-4.2228738172350624e+01
+1.4084465569655796e+01
+6.4475276253802107e+00
+-3.8806186274469994e+01
+4.8589795178717293e-01
+1.4203672903448656e+00
+-2.0805747406840929e+01
+4.0331307773366296e+00
+2.5066274243758855e+00
+-2.2079010500847435e+01
+4.8023656956661354e-01
+1.3525308155793130e+00
+-2.0700589257964875e+01
+1.2809230433142437e+01
+5.4547157669406898e+00
+-2.9662718902001110e+01
+1.2228443379318925e+00
+1.5023027421646300e+00
+-2.0620242457681158e+01
+3.4561201863616930e+00
+2.1759583955737889e+00
+-2.1441008984026567e+01
+1.2913488219767919e+01
+5.3654437160638615e+00
+-3.0408009916985751e+01
+2.4219955210650421e+00
+1.7775880574372425e+00
+-2.0724458120328372e+01
+2.6406384030215260e+00
+1.8417692849708778e+00
+-2.0889378735318992e+01
+4.8812043109667336e+00
+2.6175568772012188e+00
+-2.3238274557610723e+01
+1.4070694122826228e+00
+1.4903345108752912e+00
+-2.0605216627425300e+01
+-1.7323820015691635e-01
+1.0300749444854618e+00
+-2.1355179817697959e+01
+-2.3588290567912940e+00
+3.9831654923919302e-01
+-2.2724000664060082e+01
+-2.3581076573808986e+00
+3.9646656919687467e-01
+-2.2709322312631528e+01
+-2.3658117164844499e+00
+4.0413791562139861e-01
+-2.2789428269931705e+01
+-2.3666707544753800e+00
+4.0610193550374973e-01
+-2.2788707658923755e+01
+-2.3060648138707975e+00
+3.9391321021589160e-01
+-2.2758829957073331e+01
+-2.3060648138707975e+00
+3.9391321021589160e-01
+-2.2758829957073331e+01
+1.2759837724091064e+01
+5.3911996598280219e+00
+-3.1998079626676237e+01
+4.5139056654120555e+00
+2.3909743287317413e+00
+-2.2442787903527616e+01
+-2.1583657683371826e+00
+4.2469928129452478e-01
+-2.2814692539824261e+01
+-5.2938995978903580e-01
+7.9289879773838301e-01
+-2.1060606035855372e+01
+1.9657419892187145e+00
+1.5114341211195950e+00
+-2.0539955151154135e+01
+9.5196536475035287e-01
+1.1932988062855094e+00
+-2.0542181611838135e+01
+9.5117854048390749e-01
+1.1952017159154271e+00
+-2.0542345906228181e+01
+3.6139505390388584e+00
+1.9791589615431560e+00
+-2.1296641386378841e+01
+1.9174041097451049e+00
+1.4115648076952343e+00
+-2.0464377811924344e+01
+2.7777391623906413e+00
+1.6350394995811939e+00
+-2.0780121579462037e+01
+7.4886728870617170e-01
+1.0491026484985986e+00
+-2.0632318973686480e+01
+2.6204070708357747e+00
+1.5346896272206880e+00
+-2.0643621002983426e+01
+3.7020856005732394e+00
+1.8391730252994933e+00
+-2.1391496080661959e+01
+1.2454669469971054e+00
+1.0606575837282977e+00
+-2.0389546263585185e+01
+6.3437509839710571e-01
+9.0152254765921414e-01
+-2.0566105901555353e+01
+3.6918306397578253e+00
+1.7797724668500670e+00
+-2.1357717874531811e+01
+3.7418925905870046e+00
+1.7858229122318112e+00
+-2.1381059414261347e+01
+1.2784303825381048e+01
+4.6653909055299847e+00
+-2.9584529188307023e+01
+1.3476986850973107e+01
+4.9111883247469370e+00
+-3.1277831326753525e+01
+1.1022679854665689e+01
+4.4018864653555054e+00
+-3.9444571712361387e+01
+-8.3765552756273447e+00
+-1.7661035607479858e+00
+-3.0101203285366974e+01
+-3.3005595872489355e+00
+-4.0216610752820570e-01
+-2.2726437584530608e+01
+1.2652486790832413e+01
+4.5269040439619355e+00
+-3.0775969622207608e+01
+1.2589746443512688e+01
+4.5262771207759895e+00
+-3.0998645528578873e+01
+3.4482361955425361e-01
+6.3112530515558596e-01
+-2.0612792258224310e+01
+3.8275365955810976e+00
+1.6571450302217359e+00
+-2.1315544826288605e+01
+2.3123238496922744e+00
+1.1548296582600519e+00
+-2.0403972099908902e+01
+1.3482677112102539e+00
+8.4067593462856982e-01
+-2.0225378670224725e+01
+1.2670777410418191e+01
+4.4368178746627818e+00
+-3.0555985218026802e+01
+1.0707834967531399e+01
+3.9637816980631819e+00
+-3.8883569107614321e+01
+1.5200923802075530e+00
+8.5373231503628266e-01
+-2.0363175427936866e+01
+4.0501307643728977e+00
+1.6021133605469895e+00
+-2.1415071911965089e+01
+5.6320774443909072e-01
+5.1668766362287633e-01
+-2.0487606831852094e+01
+9.7144020277457521e-01
+6.5473581784357826e-01
+-2.0427341751623945e+01
+4.0067451843605904e+00
+1.5574856117631937e+00
+-2.1445825931210784e+01
+1.3029627495115832e+01
+4.4605984031067178e+00
+-3.4675658835726118e+01
+3.8339957156234221e+00
+1.4860940722833111e+00
+-2.1252356688379017e+01
+-9.4780567215498024e-01
+3.8891782719650304e-02
+-2.1471376646487236e+01
+2.6331889298074340e-01
+3.9951025569381826e-01
+-2.0685499729030180e+01
+1.0377323481899904e+01
+3.6637496506200415e+00
+-3.7957445938587455e+01
+4.7936776399355994e+00
+1.7424464475802577e+00
+-2.2207052130813420e+01
+1.3275421668796552e+01
+4.4437871368136621e+00
+-3.4092938835506757e+01
+4.0333880664948589e+00
+1.4906348881145866e+00
+-2.1401049065777858e+01
+4.4522561495810296e+00
+1.6145564838036350e+00
+-2.1788428659015757e+01
+1.0578938472655481e+00
+5.5221142059367168e-01
+-2.0374265843653401e+01
+2.1055717665349388e-01
+2.9260141899945424e-01
+-2.0629017552416858e+01
+6.8602749664842355e-01
+4.3223881043058693e-01
+-2.0459314410642069e+01
+6.6397355774479627e-01
+4.4401252945733805e-01
+-2.0501860683766552e+01
+1.3777541484684514e+01
+4.4724963394859527e+00
+-3.2647435354758358e+01
+1.2901320131798789e+01
+4.1895159635509573e+00
+-3.0372641204452677e+01
+4.6334126725775038e-01
+3.5508656989469051e-01
+-2.0564297330337553e+01
+1.2841136979939130e+01
+4.1209952623295933e+00
+-3.0619899819939526e+01
+3.5991943221592786e+00
+1.2531290907330668e+00
+-2.1012408145037412e+01
+1.5940134922336593e+00
+6.3768305744401943e-01
+-2.0310187033768017e+01
+-2.1781917352049845e-01
+6.4228425999650160e-02
+-2.0876170925487923e+01
+1.3255220762857714e+01
+4.1714284217737481e+00
+-3.4294866022364090e+01
+1.3125122085973326e+01
+4.0908271447805227e+00
+-3.4614786707393939e+01
+1.2437588225583164e+01
+3.8746075270664742e+00
+-3.2645133780154964e+01
+1.3076446144789540e+00
+4.3770737909655461e-01
+-2.0225188871529706e+01
+1.3042358129905591e+00
+4.4798932507551414e-01
+-2.0309561019324370e+01
+-4.8886485207350366e-01
+-1.1769509785664840e-01
+-2.1090496335786675e+01
+1.0207209474913017e+00
+3.4554016227272311e-01
+-2.0353829593057956e+01
+1.0675100827074244e+00
+3.4729960075296340e-01
+-2.0221952637161465e+01
+2.2612131408508302e+00
+7.0926496231929814e-01
+-2.0331841668649059e+01
+1.2873393128609438e+01
+3.9927979268494536e+00
+-3.0492962416028991e+01
+3.4770826544727917e+00
+1.0218551477754261e+00
+-2.0869096659759599e+01
+1.9299378508245564e+00
+5.4750571330572517e-01
+-2.0236870683022300e+01
+-7.1199374263963389e-01
+-3.1649367219982533e-01
+-2.1378377761732509e+01
+3.0802929636530001e+00
+8.0998458698965869e-01
+-2.0640294053125071e+01
+1.2789701231044550e+01
+3.6010890024567122e+00
+-3.1273818882697693e+01
+2.1986423175567511e+00
+5.1434481591043901e-01
+-2.0313714819948860e+01
+4.8541777694357116e+00
+1.2930999522074407e+00
+-2.2023510747054353e+01
+1.2893303979322321e+01
+3.6136149116685257e+00
+-3.0277235185421521e+01
+2.3193707577030622e+00
+5.3051340195227104e-01
+-2.0207708840695748e+01
+2.8471181265240539e+00
+6.8847615273685003e-01
+-2.0520166096275091e+01
+1.2870107243603984e+01
+3.5881640672062765e+00
+-3.0924362151137618e+01
+-9.9879796364756213e-01
+-5.3017991870939263e-01
+-2.1588324253798071e+01
+1.3110428929528625e+01
+3.6160217555398311e+00
+-3.3785190142012617e+01
+3.4979075509169784e+00
+8.2599807767136013e-01
+-2.0798688374699744e+01
+3.4979075509169784e+00
+8.2599807767136013e-01
+-2.0798688374699744e+01
+-1.7492525870095652e+00
+-7.8679801215300793e-01
+-2.1529017133456602e+01
+4.3029525004455191e+00
+1.0600497270870139e+00
+-2.1398664547776654e+01
+2.7484858326507453e+00
+5.8383254864051715e-01
+-2.0430517840283184e+01
+2.2139479075465758e+00
+3.8223574151727485e-01
+-2.0186258096690352e+01
+2.1645584602378145e+00
+3.5688088435265403e-01
+-2.0165988563891194e+01
+-7.8525185498142580e+00
+-2.8805053947836581e+00
+-2.8727286619811402e+01
+3.4299705235334121e+00
+7.2830270793516327e-01
+-2.0747303160915695e+01
+-8.8272419448664046e+00
+-3.1500236401696133e+00
+-2.8120336177409204e+01
+2.3265575486372141e+00
+3.7084318664564170e-01
+-2.0267760550090035e+01
+3.1322062646705744e+00
+6.6449956820636324e-01
+-2.1656525925969376e+01
+7.0453472086022662e-01
+-1.4378404253167007e-01
+-2.0336161089185296e+01
+7.0334135191523783e-01
+-1.4162550086465001e-01
+-2.0408349904802410e+01
+1.3862397093092213e-01
+-3.0358568325937235e-01
+-2.0761847203223887e+01
+3.9516456590775055e+00
+7.8184075106610551e-01
+-2.1066259640359991e+01
+1.2325828623676087e+00
+-5.6123953524536786e-02
+-2.0306192732667594e+01
+2.8590003582598431e+00
+4.2355310280372327e-01
+-2.0457158469029054e+01
+4.2143331866525315e+00
+7.9061657216036674e-01
+-2.1278267108898536e+01
+4.2143331866525315e+00
+7.9061657216036674e-01
+-2.1278267108898536e+01
+6.0330391302546662e+00
+1.2606001522171741e+00
+-2.4433147264379176e+01
+4.7081830893261030e+00
+9.0613440133497258e-01
+-2.1757494817087281e+01
+1.3210812073861593e+01
+3.2875087123655180e+00
+-3.0106763601030753e+01
+5.0295219756860654e-01
+-3.5351821474443018e-01
+-2.0571303288377504e+01
+4.5194787434705121e+00
+7.8596168726963034e-01
+-2.1500440551398619e+01
+7.5312481487414362e-01
+-4.2375179762542453e-01
+-2.0418412783072704e+01
+3.1391804080184897e+00
+2.8998298092027613e-01
+-2.0510805782066303e+01
+1.2902992107942541e+01
+2.8937431039346100e+00
+-3.2131620534364664e+01
+1.9682666465527693e-01
+-7.1152905988314841e-01
+-2.0737174158340636e+01
+-1.3621288732955086e+00
+-1.2350002669995259e+00
+-2.1313217820455161e+01
+2.4206043059871054e+00
+-1.3655003908799467e-02
+-2.0324402043590126e+01
+1.5436738358571749e+00
+-3.0516573710519029e-01
+-2.0276703241817447e+01
+1.8695774041091031e+00
+-2.3322270210121124e-01
+-2.0240897705519107e+01
+1.4066298957262293e+00
+-4.1391045985773572e-01
+-2.0197507574799204e+01
+1.7977769924496925e+00
+-2.9785573953629835e-01
+-2.0280189437989243e+01
+1.9802226098335971e+00
+-2.4235138304590123e-01
+-2.0269815715794433e+01
+4.4202213124078824e+00
+4.3754073597638626e-01
+-2.1371845704784210e+01
+1.9463383065745847e+00
+-2.8001601841883117e-01
+-2.0288545505373001e+01
+1.3267176476817911e+01
+2.6332685213131768e+00
+-3.3269603848604028e+01
+1.3283023344303125e+01
+2.6347256078303545e+00
+-3.3298344681341852e+01
+-6.8154014402668075e+00
+-3.4606810713036715e+00
+-2.7701998677898317e+01
+1.3139091135275228e+01
+2.5962051622450479e+00
+-3.0917116477488111e+01
+3.1264394575542784e+00
+2.9738947238174631e-02
+-2.0538709361248905e+01
+1.1467369820673672e+00
+-5.7869818424207342e-01
+-2.0357642001905386e+01
+4.3420839043355501e+00
+3.6531060725208409e-01
+-2.1184483353032050e+01
+3.1877992602676932e+00
+3.3844810266465297e-02
+-2.0459060209100222e+01
+-1.1949474470252481e+01
+-4.9229352874182064e+00
+-2.3296209152272908e+01
+-5.1609081096688325e-01
+-1.2157032140439274e+00
+-2.0710591743182555e+01
+-1.9714466582716270e+00
+-1.7068136417538453e+00
+-2.1275899722923779e+01
+1.4724593705156146e+00
+-6.2169220082832544e-01
+-2.0359548889313317e+01
+1.3112545239053896e+01
+2.3837614416698734e+00
+-3.1699424543284437e+01
+2.1022705616095174e+00
+-4.2642474635147204e-01
+-2.0298713965169949e+01
+3.3176143005928096e+00
+-8.7151470844482118e-02
+-2.0649756362581019e+01
+1.3244052379914477e+01
+2.3910255899788564e+00
+-3.1871631588875477e+01
+4.8451033105242098e+00
+3.0673184612629961e-01
+-2.1787871967253640e+01
+2.1176618483263604e-01
+-1.0601830972483903e+00
+-2.0874837712774401e+01
+4.1946926488857272e+00
+1.2980606781021423e-01
+-2.1120518123861817e+01
+1.3575576428193703e+01
+2.5598562854160858e+00
+-2.9529132283033654e+01
+1.3159128812548204e+01
+2.3009745311214553e+00
+-3.1516724027360397e+01
+3.1764039630955740e+00
+-1.8837795380376224e-01
+-2.0501697690146504e+01
+-1.5247920232857086e+00
+-1.7119107265512163e+00
+-2.1118953688155578e+01
+-1.1662034813108804e+01
+-5.0593051357827363e+00
+-2.3450471847709771e+01
+-1.6053383388888975e+00
+-1.7748492182261664e+00
+-2.1088344526410243e+01
+1.1602171913609154e+00
+-8.8398146528304977e-01
+-2.0472626020625931e+01
+-1.7505638347334633e+00
+-1.8239852268454040e+00
+-2.1044552273616659e+01
+1.4237034211568869e+01
+2.4875451635924928e+00
+-3.2087551201768896e+01
+1.3577876602997174e+01
+2.2100479578549779e+00
+-3.2903026689982667e+01
+1.3905005336639933e+00
+-8.3978887311432593e-01
+-2.0435838346162726e+01
+1.3477186863240316e+01
+2.2793695964670273e+00
+-2.9563498216568238e+01
+2.2148337256133304e+00
+-6.0389673713178604e-01
+-2.0372654081212325e+01
+1.1494296504668882e+00
+-9.0734844233992140e-01
+-2.0499455296909456e+01
+3.7527851967937322e+00
+-1.8850010454932450e-01
+-2.1054696033281491e+01
+2.6376574407559792e+00
+-5.0247658947803331e-01
+-2.0382287539100584e+01
+1.9944212414348652e+00
+-7.1697160934370174e-01
+-2.0380733038605047e+01
+3.4939101667147837e-02
+-1.3735024786943983e+00
+-2.0542068762497490e+01
+1.7020036492716570e+00
+-8.5043635583971389e-01
+-2.0409970571738910e+01
+4.8601479414719879e+00
+3.2224849445304425e-02
+-2.1757644836627730e+01
+2.9007549071475327e+00
+-4.9559114918703373e-01
+-2.0417564847975505e+01
+7.3041870806884974e+00
+5.7063088504569159e-01
+-2.4564221227025747e+01
+1.3821745951859294e+00
+-1.0243154930826242e+00
+-2.0483362033962560e+01
+7.3204867639790479e+00
+5.2309481588767393e-01
+-2.4647531751171645e+01
+3.2153028589650861e+00
+-5.0444883363734794e-01
+-2.0597981765015220e+01
+4.9658804776306891e+00
+-6.8235744812148558e-02
+-2.1926277191963916e+01
+3.2545133371600272e+00
+-5.1610145081166003e-01
+-2.0587286971320719e+01
+-1.1038632723586446e+00
+-1.9609489756199379e+00
+-2.0842841628730561e+01
+1.8503211419740822e+00
+-1.0063306079296515e+00
+-2.0466819031207894e+01
+1.3551963391820058e+01
+1.8343687969168230e+00
+-3.0721909033672787e+01
+1.3296831398402524e+01
+1.5459101429773006e+00
+-3.3511120183509028e+01
+4.7258854222405722e+00
+-2.3704118260829940e-01
+-2.1616656486817675e+01
+6.4826707381174575e-01
+-1.4517028957023426e+00
+-2.0402855997043648e+01
+7.5233518734930795e+00
+3.8521427715416967e-01
+-2.4403409131924771e+01
+5.0130225796564565e+00
+-2.2210751785959987e-01
+-2.1978287006264601e+01
+2.1006858076641999e+00
+-1.0340441628276926e+00
+-2.0503715076413734e+01
+2.3025931260116446e+00
+-9.3633150232772677e-01
+-2.0529466147240512e+01
+2.7503492229262614e+00
+-8.2595222888508901e-01
+-2.0519520261507783e+01
+4.9819315256509338e+00
+-2.7481774037331197e-01
+-2.2040168423040761e+01
+2.7878755363060495e+00
+-8.3534144324783266e-01
+-2.0486418134655001e+01
+2.3345619136835576e+00
+-1.0038986015854583e+00
+-2.0527026690986673e+01
+2.1448732913126536e+00
+-1.0654751801460347e+00
+-2.0524232246000096e+01
+3.4192441037295045e+00
+-6.8288477928016023e-01
+-2.0663885037643119e+01
+2.7178635367241686e+00
+-9.2852145810026987e-01
+-2.0539466291778481e+01
+7.4513633272258808e+00
+2.5339987720603441e-01
+-2.4161828724920607e+01
+1.3744937218013208e+01
+1.5032194717754708e+00
+-3.2726690185009801e+01
+1.3150672516462988e+01
+1.2594190635742768e+00
+-3.2808977956589821e+01
+5.2495789904450225e+00
+-3.2204782728209941e-01
+-2.2090204711498213e+01
+1.3384739078361090e+01
+1.2619661231511501e+00
+-3.3378299513420714e+01
+1.4115479303247897e+01
+1.5001179289522732e+00
+-3.3291731761854194e+01
+1.3491548659364765e+00
+-1.4228684008287344e+00
+-2.0494058682873483e+01
+1.4185296800626048e+01
+1.4974369836283674e+00
+-3.3190952507690064e+01
+-2.6560919865179189e-01
+-1.9047309274938489e+00
+-2.0862552227712563e+01
+4.3728932015855140e+00
+-5.6724250228011108e-01
+-2.1403239491024948e+01
+-9.4730300490812258e+00
+-5.2945348697584649e+00
+-2.4433745146903803e+01
+2.7221043689048479e+00
+-1.0950950051647899e+00
+-2.0635696607413252e+01
+1.3997141601860343e+00
+-1.5743124345855346e+00
+-2.0341883387301870e+01
+4.8390438333391721e+00
+-6.3336342794949585e-01
+-2.1682575344740918e+01
+-1.0175882201368913e+00
+-2.3853355172224417e+00
+-2.0302317114381719e+01
+4.1298116167327703e-01
+-1.9426856600803950e+00
+-2.0381195804912334e+01
+4.0720169896234154e-01
+-1.9412794179884145e+00
+-2.0406131969353073e+01
+1.3591382690886933e+01
+1.2059035976796140e+00
+-3.0705502119482428e+01
+4.0882650968083993e+00
+-8.5503408758856392e-01
+-2.1341038156866670e+01
+6.4442371017161886e+00
+-3.1514595741213286e-01
+-2.3249215038932405e+01
+-1.0633372524103919e+00
+-2.4396735168692261e+00
+-2.0379930885718608e+01
+5.1575181409497519e+00
+-6.1535885241237531e-01
+-2.1632940274673643e+01
+1.3607914031461080e+01
+1.1082675903523993e+00
+-3.0703607952167030e+01
+-1.4676385709670050e+00
+-2.6871618496482479e+00
+-2.1178827364386102e+01
+3.4587655563737414e+00
+-1.1166775917700562e+00
+-2.0848753461729014e+01
+2.0182397729643240e+00
+-1.5249299791523310e+00
+-2.0342451642782031e+01
+3.0483376666855757e+00
+-1.2646388825377608e+00
+-2.0762818674509973e+01
+1.6751943849219408e+00
+-1.7131912216991518e+00
+-2.0141767568991590e+01
+3.0645083409963356e+00
+-1.3360190427234024e+00
+-2.0636670093184208e+01
+1.3800999959917402e+01
+1.0228476463935423e+00
+-2.9918418476952994e+01
+1.3764468148080351e+01
+9.4377981369550212e-01
+-3.0678447661666866e+01
+1.4414774160093311e+00
+-1.7831483897903870e+00
+-2.0838526224133329e+01
+2.4637333182823240e+00
+-1.5456098696108371e+00
+-2.0378140133538395e+01
+4.1926492513130569e+00
+-1.0904700766744995e+00
+-2.1131735721082684e+01
+8.4424440714159443e-01
+-2.0909500432728501e+00
+-2.0294161877128815e+01
+3.2466295056481576e+00
+-1.3693694965426695e+00
+-2.0577541690915126e+01
+1.3835754822767852e+01
+7.1117247524373306e-01
+-3.1904347336739242e+01
+2.4831687878107127e+00
+-1.5991319506665835e+00
+-2.0322291512349071e+01
+4.5888358816126482e+00
+-1.0305543135846305e+00
+-2.1200735061282952e+01
+2.1329905769866868e+00
+-1.7313638015066779e+00
+-2.0159542122525252e+01
+3.6890568457303003e+00
+-1.3171942499520741e+00
+-2.0643888439958200e+01
+-4.5798056093281209e-01
+-2.5637845356694524e+00
+-2.0449017620981614e+01
+5.0875768812884814e-01
+-2.3336277154088974e+00
+-2.0425664633358366e+01
+6.2718460515040109e+00
+-7.8674721300663941e-01
+-2.2631596114877887e+01
+2.0774546090163972e+00
+-1.8704957048790061e+00
+-2.0181477452715168e+01
+2.0774546090163972e+00
+-1.8704957048790061e+00
+-2.0181477452715168e+01
+1.5992216050093429e+00
+-2.0760244942897841e+00
+-2.0288047054223032e+01
+1.3864503053991676e+01
+4.4601018596058334e-01
+-3.1713512265574437e+01
+1.3864503053991676e+01
+4.4601018596058334e-01
+-3.1713512265574437e+01
+1.3638036035144673e+01
+2.1052016632215481e-01
+-3.2203346330183066e+01
+5.1617321458155718e+00
+-1.1641302216524450e+00
+-2.1600931853402795e+01
+-6.3825411419437428e+00
+-5.3126005731331549e+00
+-2.4556489394464069e+01
+7.9108201339419415e-01
+-2.4417368601295255e+00
+-2.0252817317516083e+01
+1.3887560070448844e+01
+3.9432337263572692e-01
+-3.0111324411800194e+01
+1.4141232443948981e+01
+5.2684170268768404e-01
+-2.9739589457442882e+01
+6.2218713000236789e+00
+-1.0521036984583925e+00
+-2.2309509635227354e+01
+1.3721106313823256e+01
+6.0715589051658081e-02
+-3.1760099304076256e+01
+1.4002974858415312e+01
+4.7557987603595275e-01
+-2.9545910378261095e+01
+1.4182308346048700e+01
+4.6114719140204458e-01
+-2.9711604558694066e+01
+1.4118728297309925e+01
+4.6743571202966377e-01
+-2.9636135924000918e+01
+2.0760846257309034e+00
+-2.1556315091417759e+00
+-2.0321403299789253e+01
+1.7051267992414956e+00
+-2.3068266364518375e+00
+-2.0443063695000465e+01
+1.7051267992414956e+00
+-2.3068266364518375e+00
+-2.0443063695000465e+01
+-8.5021359720768008e-01
+-3.2168017657525931e+00
+-2.1083069765591798e+01
+5.1024378280173821e-01
+-2.6455972809835551e+00
+-1.9951533354617414e+01
+5.1024378280173821e-01
+-2.6455972809835551e+00
+-1.9951533354617414e+01
+1.4215976178462130e+01
+-1.2713046222009383e-01
+-3.3665425271570435e+01
+1.4034636489508641e+01
+2.8703616336617355e-01
+-2.9803993406557094e+01
+-7.7000015356804798e+00
+-5.8090379835347878e+00
+-2.3070897630118342e+01
+1.4265412438749784e+01
+2.9308120363668339e-01
+-2.9320546781997098e+01
+1.4262128409285152e+01
+2.9194279614239316e-01
+-2.9305437790655358e+01
+3.8891937806645482e+00
+-1.7891514074173531e+00
+-2.0743064406332653e+01
+3.8891937806645482e+00
+-1.7891514074173531e+00
+-2.0743064406332653e+01
+1.4054650065867108e+01
+9.9201116281460833e-02
+-3.0191628000774145e+01
+1.4936185491398934e+00
+-2.5132108314852291e+00
+-2.0247445048584392e+01
+3.4203757405709205e+00
+-1.9242965217209309e+00
+-2.0490909651847893e+01
+5.8773002657877100e+00
+-1.3256493484762548e+00
+-2.1855996863543940e+01
+1.4897161223173187e+01
+1.0058143953657572e-01
+-3.2051955289877661e+01
+1.4307345753189592e+01
+1.7710913694891611e-01
+-2.9400252795944986e+01
+4.0295470260155417e+00
+-1.8108552471628581e+00
+-2.0780989295930713e+01
+1.3870251124272185e+01
+-2.8516764555008545e-01
+-3.1743045569841733e+01
+1.3227840152538934e+00
+-2.6140167169208599e+00
+-2.0004974614755767e+01
+1.0703919817662257e+00
+-2.7541366890979644e+00
+-1.9869018297472724e+01
+5.3399205205127842e+00
+-1.6146409764668999e+00
+-2.1469898189967836e+01
+1.4335476649888882e+01
+1.2011144652179844e-02
+-2.9378768823508821e+01
+1.4575994536419110e+01
+1.0454200544081167e-01
+-2.9958286647666004e+01
+1.4134289025360887e+01
+-1.5278983233094115e-01
+-2.9817559079668211e+01
+1.4134289025360887e+01
+-1.5278983233094115e-01
+-2.9817559079668211e+01
+-3.0353823393931922e-01
+-3.5144510075397881e+00
+-2.1067418969677970e+01
+1.0314887250194542e+00
+-2.8794432406152199e+00
+-1.9674876104131581e+01
+-6.5163650124685253e+00
+-6.1803081781941414e+00
+-2.4188012730701132e+01
+9.6473290740375017e-01
+-2.9465600657168789e+00
+-1.9520827608791638e+01
+3.4957137478897278e+00
+-2.2699563222128014e+00
+-2.0420472436831776e+01
+-9.5639199501124459e+00
+-6.6128622271940314e+00
+-2.0128139199318365e+01
+2.4424353476236087e+00
+-2.6094993820323755e+00
+-2.0101727735915730e+01
+2.9370605578332167e+00
+-2.4688400731059046e+00
+-2.0175938988847243e+01
+3.0923337465457470e+00
+-2.4620210366284301e+00
+-2.0323160484310577e+01
+6.0831651755162417e+00
+-1.7261303917261541e+00
+-2.1619110053711591e+01
+1.4117488226783070e+01
+-7.0560671136891007e-01
+-3.1076778879060484e+01
+1.4102914677504307e+01
+-7.0402811229754225e-01
+-3.1025002644963266e+01
+1.4231503328077570e+01
+-7.4854722275785612e-01
+-3.1346924074530957e+01
+-5.8681861564836435e+00
+-6.2034619699593572e+00
+-2.4149788773863094e+01
+3.7483178172514195e+00
+-2.4155661862457527e+00
+-2.0391948687149917e+01
+3.7483178172514195e+00
+-2.4155661862457527e+00
+-2.0391948687149917e+01
+4.4192911126577634e+00
+-2.2310926401280620e+00
+-2.0636171962969918e+01
+4.3545193855125675e+00
+-2.2891151367466001e+00
+-2.0518967387799801e+01
+4.3545193855125675e+00
+-2.2891151367466001e+00
+-2.0518967387799801e+01
+3.6222926910105877e+00
+-2.4891630842827066e+00
+-2.0286769558693518e+01
+1.8790594807632859e+00
+-3.0137007331166257e+00
+-1.9848254368751292e+01
+4.3948093549219056e+00
+-2.3429819621252861e+00
+-2.0568513351595428e+01
+3.9691603700956208e+00
+-2.4331048887589262e+00
+-2.0242562965264504e+01
+1.5916424262439590e+00
+-3.1656116856401821e+00
+-1.9922083712940637e+01
+3.8671150196869553e+00
+-2.5105154026638190e+00
+-2.0222964044272626e+01
+5.1584568097537842e+00
+-2.1929374867727542e+00
+-2.0736356879079739e+01
+1.4484990881241593e+01
+-9.4746203099041293e-01
+-3.0859154402296582e+01
+-1.2658466341646513e+01
+-8.4713436057165268e+00
+-2.1719265084852239e+01
+-4.3430645583187086e+00
+-5.9765869129411806e+00
+-2.4075173950423469e+01
+-2.0247511519530534e+00
+-5.0558044254464169e+00
+-2.2684099301934065e+01
+6.0975529178452170e+00
+-2.2604012203695865e+00
+-2.2180059704470587e+01
+-5.4903108511235237e+00
+-6.5197953924486649e+00
+-2.3692770836647895e+01
+-2.6687670132993926e+00
+-5.3314871464185103e+00
+-2.3424373037002557e+01
+2.4690370117883247e+00
+-3.0911813607084264e+00
+-1.9767515199501631e+01
+1.5042653665741886e+01
+-1.3632481415485929e+00
+-3.2295696189480324e+01
+1.4530774055691586e+01
+-1.2233109387471122e+00
+-2.9870689699644416e+01
+-5.4379779726387856e+00
+-6.6590337159620558e+00
+-2.3506164848024397e+01
+6.1837696745237372e+00
+-2.5641444788334691e+00
+-2.2604509643194167e+01
+4.0846781434652017e+00
+-2.8359153908192658e+00
+-2.0379392990479719e+01
+1.4648163042523235e+01
+-1.4355010416958029e+00
+-3.0098386260751774e+01
+1.4546448406783295e+01
+-1.4407034881596072e+00
+-2.9833796045964725e+01
+2.7240485333006181e+00
+-3.4359889749946797e+00
+-2.1007076335018244e+01
+4.6278095761591880e+00
+-2.9063851589828769e+00
+-2.0869015612508683e+01
+-5.5249588212462486e+00
+-6.6644454603251075e+00
+-2.2537533360583563e+01
+-6.0138271558093557e+00
+-6.8195473974137197e+00
+-2.2187322608570156e+01
+4.6525760679672832e+00
+-2.9507177664782267e+00
+-2.0901491170216456e+01
+1.4681364236801812e+01
+-1.7160651945183052e+00
+-2.9798191311480487e+01
+1.4838850198390709e+01
+-1.6993624738489348e+00
+-3.0111840529876563e+01
+-5.9889960724032667e+00
+-7.2049175272660673e+00
+-2.2691712502772599e+01
+3.4320604017179503e+00
+-3.5360843813132097e+00
+-2.0758166766466399e+01
+1.4803026849565009e+01
+-1.7529554713135658e+00
+-2.9729953325887195e+01
+1.4823777094520960e+01
+-1.9150902813612452e+00
+-2.9487431652163682e+01
+4.3859000593797237e+00
+-3.4459914346365932e+00
+-2.1288675093877934e+01
+3.9529488840473110e+00
+-3.6004084488505415e+00
+-2.1102870990352233e+01
+2.9479818661827744e+00
+-3.9272646115848873e+00
+-2.0827081971364425e+01
+2.5006841751712980e+00
+-4.2004677401503852e+00
+-2.1109813666339676e+01
+1.6759684309566860e+00
+-4.5217947278674444e+00
+-2.1326078349947210e+01
+4.6190569486216067e+00
+-3.6029730607105943e+00
+-2.1629191888071926e+01
+3.8841828721498990e+00
+-3.9338071030730455e+00
+-2.1425077537573653e+01
+3.8746305233247185e+00
+-3.9217175639009767e+00
+-2.1341597380165574e+01
+3.8514571209807165e+00
+-3.9713404938342043e+00
+-2.1441942390886844e+01
+1.1483865799772097e+00
+-5.1026546083207620e+00
+-2.1984447513939358e+01
+1.3906801738439233e+01
+-2.7939410778474962e+00
+-3.0293186433745262e+01
+1.2973167889484916e+01
+-2.8281436544840743e+00
+-2.9022386978641624e+01
+-7.8866677648405279e+00
+-8.2003791017813512e+00
+-2.1161550374982095e+01
+1.2592402386896566e+01
+-3.0657910217523199e+00
+-2.9360979415758376e+01
+3.7972000033782591e+00
+-4.5364062986197942e+00
+-2.1977851507630003e+01
+1.3313892966624042e+01
+-3.1227529925659296e+00
+-2.8176733449812225e+01
+4.7515383107168869e+00
+-4.7041806739992049e+00
+-2.2714939287812573e+01
+-1.1795847039966448e+01
+-1.0035084671309876e+01
+-1.9713183057254746e+01
+3.2212713895087388e+00
+-5.1614466341819236e+00
+-2.1791046134946868e+01
+-2.6179664610186015e+00
+-7.6244532463365342e+00
+-2.2149582140392280e+01
+8.2785525530924335e+00
+-4.8868999954721524e+00
+-2.5318545657678730e+01
+1.2845011222637844e+01
+-4.0624199448919676e+00
+-2.7014273454177566e+01
+1.2761783948159380e+01
+-4.0774821080232506e+00
+-2.6908268643275782e+01
+1.2761783948159380e+01
+-4.0774821080232506e+00
+-2.6908268643275782e+01
+1.2733908113436199e+01
+-4.4701645006892132e+00
+-2.7612936656931694e+01
+-1.8783448535727645e+00
+-7.7564425816553610e+00
+-2.1399365499905588e+01
+2.6955274837900460e+00
+-6.6143209705493051e+00
+-2.2133922676401223e+01
+7.3020938195601504e-01
+-7.3432107581283175e+00
+-2.1685360595710936e+01
+7.5653734204051233e+00
+-5.8466721249240283e+00
+-2.4041778438503719e+01
+-4.2603563817258392e+00
+-8.8821658036671494e+00
+-2.0333504671378087e+01
+9.4821790375465618e+00
+-5.5082943718046709e+00
+-2.4794188672771213e+01
+-8.9908972798170534e+00
+-1.0310441161786786e+01
+-1.8834738553895949e+01
+-3.9422377096865948e+00
+-8.6262858836224972e+00
+-1.9652031470005312e+01
+-3.9422377096865948e+00
+-8.6262858836224972e+00
+-1.9652031470005312e+01
+8.3633964608109390e-01
+-7.5920942954956674e+00
+-2.1676498462547951e+01
+1.2287624343349501e+01
+-4.9631999493887298e+00
+-2.5639586001493981e+01
+1.1782244928404149e+01
+-5.3235632785184013e+00
+-2.6193951870989487e+01
+1.0620978961431486e+00
+-7.5828322156184509e+00
+-2.1687364501482090e+01
+9.0540149515712365e+00
+-5.9462488858061402e+00
+-2.4534298154753209e+01
+-1.8073374963655420e+00
+-8.3772731537024789e+00
+-2.0370777449928926e+01
+-1.0116375348843507e+01
+-1.0954571037042713e+01
+-1.8311508268307442e+01
+1.1547769595354426e+01
+-5.5610701268344407e+00
+-2.5813864198620045e+01
+3.6528069407536297e+00
+-7.0424644330358515e+00
+-2.1832649936554965e+01
+2.1701327895865328e+00
+-7.9231984098748995e+00
+-2.1599342490848493e+01
+9.5165315865195288e-01
+-8.1642923189830139e+00
+-2.1038703566445644e+01
+-2.7166928619406669e+00
+-9.1567108360953675e+00
+-1.9982055694742680e+01
+2.6329768843159949e+00
+-8.1072526718274851e+00
+-2.1354729703854186e+01
+2.1892463069962331e+00
+-8.3316758030777596e+00
+-2.1297909958062601e+01
+1.2484628902518988e+01
+-6.0243658131970639e+00
+-2.4830563496090647e+01
+1.1812092278088134e+01
+-6.2277711154357034e+00
+-2.4460680440479393e+01
+1.0781501934340254e+01
+-6.4375681072075617e+00
+-2.3811027072599455e+01
+3.5540247275072936e+00
+-8.1636988238637205e+00
+-2.1305353541055620e+01
+1.4462216690253835e+00
+-8.7631137283544192e+00
+-2.0302484079180566e+01
+6.0711434411910377e+00
+2.3481360863599622e+01
+-4.8511387912710710e+01
+2.5484773825281066e+00
+2.1922482484166284e+01
+-4.7061337425320936e+01
+-1.0644309547951030e+01
+1.5171480383415371e+01
+-3.9260984067972743e+01
+5.8223964790808491e+00
+2.2967989840085906e+01
+-4.7845325960066432e+01
+7.6700112352529262e+00
+2.3643268462561046e+01
+-4.8669089420319985e+01
+7.7479083078711701e+00
+2.4004230086176332e+01
+-4.9546684252598503e+01
+1.5352674767149294e+01
+2.8665598627689555e+01
+-5.6492397907506806e+01
+1.3820785102046417e+01
+2.6453135951465555e+01
+-5.2362355856686911e+01
+7.6411535445362420e+00
+2.4116103287943965e+01
+-5.0481610723260616e+01
+1.4329566620996745e+01
+2.6873814673030026e+01
+-5.3206652620860254e+01
+6.8634553001999183e+00
+2.3556675154774720e+01
+-4.9627063044526857e+01
+6.6439243074180636e+00
+2.3019593417096914e+01
+-4.8371852041100880e+01
+1.4246790993387934e+01
+2.7864107852978776e+01
+-5.5755532610474013e+01
+-1.5828635661623149e+01
+1.3372265288733143e+01
+-3.8152802781532486e+01
+-1.2692378705516150e+01
+1.4431443842831577e+01
+-3.9112708603802538e+01
+9.7248426452387848e-01
+2.0317763271090257e+01
+-4.5498437757694845e+01
+9.9120938863206420e-01
+2.0357289942535761e+01
+-4.5592473183649709e+01
+5.7731411199956524e+00
+2.2857944086691564e+01
+-4.8885119895414441e+01
+5.7731411199956524e+00
+2.2857944086691564e+01
+-4.8885119895414441e+01
+-1.2864219389948364e+01
+1.4073520917788979e+01
+-3.8797676395589356e+01
+9.9585460810632096e+00
+2.4425264000666790e+01
+-5.0494480402818944e+01
+1.5954496216810218e+01
+2.8689319832489211e+01
+-5.7467518029418414e+01
+9.6033390242611516e-01
+1.9975132542855484e+01
+-4.6292356354751078e+01
+-8.9390667947806790e+00
+1.5230875769718137e+01
+-4.1222475307349562e+01
+2.4398876178140396e+00
+2.0365179408856509e+01
+-4.7003934335333803e+01
+-1.6804055161324683e+01
+1.2068521991038496e+01
+-3.7801212451374589e+01
+2.8420798586079721e-01
+1.9353166220391330e+01
+-4.6662769495969478e+01
+-1.5842663859360240e+01
+1.2735766517733239e+01
+-3.9982632553186804e+01
+-1.5540937095951834e+01
+1.2374895147350889e+01
+-3.9225649172008964e+01
+1.3414363495026960e+01
+2.5197629757975420e+01
+-5.3158840989907077e+01
+5.5492896030011485e+00
+2.1658358622565665e+01
+-4.9393281789600600e+01
+1.7039099707261258e+01
+2.6990835702703265e+01
+-5.5803568864177137e+01
+-2.7530733740761093e+00
+1.7813159329450066e+01
+-4.5592892300460264e+01
+-1.2083929405936658e+01
+1.3651826327444901e+01
+-4.1236415844186325e+01
+1.6597421471236885e+01
+2.6138298764372774e+01
+-5.4802115194254199e+01
+-6.6323488185135093e-01
+1.8427179508865045e+01
+-4.6578511999728960e+01
+1.2665876725246656e+01
+2.5442546706736763e+01
+-5.6287332532404797e+01
+8.6906242025994036e+00
+2.2566476562451928e+01
+-5.1386130937327543e+01
+-5.4346246093244517e+00
+1.6083765317125213e+01
+-4.4134510773285271e+01
+1.1499829496128756e+01
+2.3705481624777679e+01
+-5.2674421379965324e+01
+1.9745402752875588e+01
+2.9547477398751255e+01
+-6.2899666024090074e+01
+-9.9722973730682281e+00
+1.4046411568260861e+01
+-4.1959583206401994e+01
+1.8898378876769424e+01
+2.8912787574453020e+01
+-6.2800615510548518e+01
+-9.9789648486001283e+00
+1.3941443208568806e+01
+-4.2420185401632047e+01
+1.6767295610063002e+00
+1.9233637832509221e+01
+-4.8536224685587264e+01
+-3.3327129415094805e+00
+1.6541518026179567e+01
+-4.5980718554973564e+01
+-7.9582866249081592e+00
+1.3803509730265647e+01
+-4.2025650630200758e+01
+-8.2394871270846330e+00
+1.4485301042390944e+01
+-4.3975472573217374e+01
+-1.0708311857387440e+00
+1.7631877025132766e+01
+-4.8187582864421898e+01
+-7.8581831395226658e+00
+1.3724676158981575e+01
+-4.3413133080917092e+01
+-1.6047127347749885e+01
+1.1143621966656374e+01
+-4.1103600179451341e+01
+-9.7482990727799912e+00
+1.3184902073358476e+01
+-4.3561741434342785e+01
+-1.4419410956742890e+01
+9.9708781656621586e+00
+-3.7502820345000345e+01
+6.3123260862394490e+00
+2.0337815942486657e+01
+-5.3960837550854869e+01
+-1.2245988253891975e+01
+1.1694318016815485e+01
+-4.2931256339928261e+01
+-1.2179513528384415e+01
+1.1549080716888069e+01
+-4.2647672918131519e+01
+9.3465063339723127e+00
+2.1622405548490072e+01
+-5.6717966528322961e+01
+-1.2693194886342173e+01
+1.1373279573375754e+01
+-4.2897486212088083e+01
+1.4544553706261201e+01
+2.3225502431930767e+01
+-5.6847116986667743e+01
+-1.2605377229058391e+01
+1.0320945884104614e+01
+-3.9677456476672127e+01
+-9.4690948358609059e+00
+1.2252190367538754e+01
+-4.3730621076084965e+01
+1.4740128507378532e+01
+2.2967412257655077e+01
+-5.7034216904871293e+01
+1.4740128507378532e+01
+2.2967412257655077e+01
+-5.7034216904871293e+01
+-1.1328449966982676e+01
+1.1253058303152859e+01
+-4.2687561292824164e+01
+-4.2058840494350251e+00
+1.4636328057921002e+01
+-4.7720445200568953e+01
+-4.1781788921149854e+00
+1.4549037092158903e+01
+-4.7685955914347105e+01
+-9.5199310368274332e+00
+1.2414367519784387e+01
+-4.5009859550306082e+01
+-3.6733352613911377e-02
+1.6514435949103127e+01
+-5.0120661456524473e+01
+3.6992466538773994e+00
+1.7936335149346348e+01
+-5.2293749710368878e+01
+7.7346250808325436e+00
+2.0658302869740261e+01
+-5.7310434178801465e+01
+9.1184797007026788e+00
+2.0311009453040519e+01
+-5.5545644765478841e+01
+-9.4673612556958240e+00
+1.2334036054215444e+01
+-4.5572193743159161e+01
+-5.9625653290305483e+00
+1.3757728798842960e+01
+-4.7488347606979481e+01
+-3.7123340566319230e+00
+1.4636544954135561e+01
+-4.8502361195523086e+01
+-1.5026151208200828e+01
+8.0819021410112821e+00
+-3.6950034287689334e+01
+-3.6241599795962904e+00
+1.4545479098998419e+01
+-4.8377784425174198e+01
+-1.5019631861438429e+00
+1.5469353326435279e+01
+-4.9804868006980094e+01
+-1.7421928071139131e+01
+9.1469902884457586e+00
+-4.2176845974436723e+01
+-6.0640493267542217e-01
+1.6032805067260799e+01
+-5.0841266190080241e+01
+7.2272147914007485e+00
+1.9427933876002523e+01
+-5.4801387540626195e+01
+-3.6212719205880464e+00
+1.4476055794786358e+01
+-4.8954830653890355e+01
+-1.2394857024230259e+01
+1.0740200940060459e+01
+-4.3846927750254146e+01
+-3.9715052255859842e+00
+1.4432198365880460e+01
+-4.9111155047268753e+01
+-3.9461350920853837e+00
+1.4347449010743583e+01
+-4.8766839076590294e+01
+-6.6321593520909365e+00
+1.2826254279444349e+01
+-4.6794885388310448e+01
+9.7282842112547048e+00
+1.9955559546665221e+01
+-5.5657603184115459e+01
+9.6902120549531539e+00
+1.9931589376653577e+01
+-5.5520673261716126e+01
+5.0176426115636854e+00
+1.8165492587260811e+01
+-5.3997109946683558e+01
+1.0110772403910183e+01
+1.9983217119373347e+01
+-5.6022679715670364e+01
+1.0134465285053817e+01
+2.0050756411503503e+01
+-5.6181753721804178e+01
+1.6339329164822281e+01
+2.3274141956402854e+01
+-6.1947018719480646e+01
+9.0832298865557508e+00
+1.9334462366246743e+01
+-5.5723193081385759e+01
+1.1181082891397672e+01
+2.0986027532239891e+01
+-5.9150102464755747e+01
+1.1175320483969390e+01
+1.9758001848152240e+01
+-5.6353752205501017e+01
+1.3020391758169170e+01
+2.2079593948530714e+01
+-6.2588343690801885e+01
+5.0226018832635893e+00
+1.7513133756752485e+01
+-5.4203210042944768e+01
+5.1488451898554626e+00
+1.7424400170492593e+01
+-5.4098209851976470e+01
+5.8229757676004761e+00
+1.7624337821672118e+01
+-5.4507160917374286e+01
+6.2270389783486140e+00
+1.7757984845451592e+01
+-5.4889642175460764e+01
+1.0646598736482758e+01
+1.9682750422573005e+01
+-5.7697692502567016e+01
+1.0872763812680095e+01
+1.9573338778064613e+01
+-5.7142553409758960e+01
+1.0681897731768872e+01
+1.9624556856428452e+01
+-5.7881030121615154e+01
+6.6580374876659993e+00
+1.8510092566877876e+01
+-5.7905935051779146e+01
+1.2425261009667439e+01
+2.1344696137050562e+01
+-6.2408697400077791e+01
+1.0812104719431041e+01
+1.9477853010377700e+01
+-5.7580394438080148e+01
+-3.2758009905234835e+00
+1.3254941981891490e+01
+-5.0225083029914252e+01
+-1.2757849918071090e+01
+8.4551550292543318e+00
+-4.2497455534036725e+01
+-4.7128321289853163e+00
+1.1840961870648361e+01
+-4.8882130621531267e+01
+-4.7128321289853163e+00
+1.1840961870648361e+01
+-4.8882130621531267e+01
+-1.2798505450289790e+01
+8.2575964043730785e+00
+-4.3207097061132082e+01
+-1.9136039423118273e+01
+5.8638595145745338e+00
+-4.1161937535650971e+01
+3.5843109030690030e+00
+1.4748032988775073e+01
+-5.2540705824839414e+01
+-1.3126267101023686e+01
+6.9269337739499184e+00
+-4.0258298742882261e+01
+4.9226027752964114e+00
+1.5094553260873859e+01
+-5.3941007524952070e+01
+4.9456743994433090e+00
+1.5187199291969543e+01
+-5.4222922375034862e+01
+5.4271591010784821e+00
+1.3883777105705041e+01
+-5.1077651263863260e+01
+6.4656744438876412e+00
+1.3809124361224344e+01
+-5.1719843028783757e+01
+6.4656744438876412e+00
+1.3809124361224344e+01
+-5.1719843028783757e+01
+5.9487674473322940e+00
+1.3588723313236168e+01
+-5.0994887639662949e+01
+4.1334274357104182e+00
+1.2929287190856886e+01
+-5.0675437669169334e+01
+4.0045917657964631e+00
+1.3050602952319096e+01
+-5.0909958525243539e+01
+6.5021417321583579e+00
+1.3797348411091239e+01
+-5.1331848536338448e+01
+4.1841424085572498e+00
+1.2877612497958822e+01
+-5.0238336286452274e+01
+4.6721348007612375e+00
+1.2898662190906801e+01
+-4.9737462075342329e+01
+-9.3729410444525225e+00
+6.9209903238586303e+00
+-4.1388174386312365e+01
+3.4488002948262242e+00
+1.2223916699885315e+01
+-4.9273853676083824e+01
+4.6570598261239144e+00
+1.2580599664908796e+01
+-4.9059696849185769e+01
+-6.2066702271311662e+00
+8.2562244360301502e+00
+-4.3705976304554170e+01
+1.3183870729738942e+01
+1.1751875189352699e+01
+-3.6549525790883763e+01
+-1.2646425505661687e+01
+5.2250215309353338e+00
+-3.9796157710979735e+01
+6.1571722541791791e+00
+1.2301874509164952e+01
+-4.9184526419668195e+01
+-1.2576317817005458e+01
+5.1656906531925424e+00
+-3.9300400258798007e+01
+3.8976299724679002e+00
+1.2226915214181100e+01
+-5.1921915394455986e+01
+5.5043824215937631e+00
+1.2188002472426755e+01
+-5.0682725456901110e+01
+-1.4839687366886336e+01
+3.1026822763038870e+00
+-3.3686266350659935e+01
+6.3140504091112728e+00
+1.2001431056515791e+01
+-4.8804714413455848e+01
+4.0304096522822315e+00
+1.1199695288913816e+01
+-4.8237129236200147e+01
+3.9580227026190813e+00
+1.1251495742075633e+01
+-4.8376616081125370e+01
+4.6464390980015891e+00
+1.1169975096415456e+01
+-4.7747885258036590e+01
+4.3641945359944776e+00
+1.0979740246076441e+01
+-4.7460212887441905e+01
+3.4963466696048875e+00
+1.0591645111248566e+01
+-4.7107335488164708e+01
+3.9440479346104662e+00
+1.0544268097777907e+01
+-4.7033045123677347e+01
+3.9007372099274589e+00
+9.9006039693331669e+00
+-4.6052282451326526e+01
+-1.9641776973705362e+01
+1.3552445574496534e+00
+-3.4412443508608469e+01
+2.3644259399132594e+00
+9.2136585576492305e+00
+-4.4747001498983977e+01
+4.4534947039280448e+00
+9.4241092006957565e+00
+-4.5542567966024087e+01
+9.2919414850726891e+00
+1.0901633187957300e+01
+-4.7249875208001086e+01
+3.8459632780851774e+00
+9.1574420921386643e+00
+-4.5064866115687025e+01
+4.3212378004888619e+00
+9.2034534234887158e+00
+-4.4954872794634895e+01
+4.3595870981799294e+00
+8.7188963874537464e+00
+-4.4475151360902792e+01
+-6.2378380931683335e+00
+4.9092343067712791e+00
+-3.9733502411058055e+01
+9.1674225665263442e+00
+9.7741818660196600e+00
+-4.5631778010475472e+01
+1.0152801472126674e+01
+9.9908257254232211e+00
+-4.5824255548624919e+01
+8.0949584808051966e+00
+9.0909825958262136e+00
+-4.4014187695685713e+01
+1.4103594332634380e+01
+9.3236758742950485e+00
+-3.5670531293104638e+01
+-1.1618870333714113e+01
+1.9301618385017789e+00
+-3.4840509834641253e+01
+7.8261303619487244e-01
+3.6411094850331369e+00
+-2.3088363923092611e+01
+-3.1893869032228488e+00
+3.1153422824338661e+00
+-2.7744017797052681e+01
+7.4809538642868767e-01
+3.7296350602001316e+00
+-2.3935565728241169e+01
+8.2212825148716675e+00
+8.1709228301380499e+00
+-4.3726391584732312e+01
+-6.7309183112381410e+00
+2.5280996835242924e+00
+-3.5847546687055051e+01
+-3.1159561449519444e+00
+2.4873014051954314e+00
+-2.6595254526838737e+01
+-6.3535827311219304e+00
+2.6583777601578875e+00
+-3.5981616416097623e+01
+-9.9059940920229228e-01
+2.5307213016107397e+00
+-2.2457786089732640e+01
+-3.5142234015448492e+00
+2.2323246909594285e+00
+-2.6571163235695014e+01
+2.9409941070875369e+00
+3.6565350085858430e+00
+-2.3856112699708181e+01
+-8.4598650665938635e+00
+1.4898227009105354e+00
+-3.4396537704616385e+01
+7.4961983389419435e+00
+6.7021613168513214e+00
+-4.1858379912507253e+01
+3.8290594280062500e+00
+3.6556615890608497e+00
+-2.3621203260981755e+01
+7.5200198549767139e+00
+6.5474454276556013e+00
+-4.1673024840800764e+01
+1.0307948256636957e+01
+6.9520697785745709e+00
+-4.3141342532068158e+01
+1.3161452526350045e+01
+6.8789417939841186e+00
+-3.3084001785272179e+01
+1.2252755710427239e+01
+6.3786285089042067e+00
+-3.0229360120441768e+01
+3.8868537739646798e+00
+3.1221962977804147e+00
+-2.2655351201231884e+01
+-6.9404463428273635e+00
+7.5741949913826045e-01
+-3.3336570335390043e+01
+-4.6119513175789867e-01
+1.6920254173145701e+00
+-2.1454226729462544e+01
+-4.6119513175789867e-01
+1.6920254173145701e+00
+-2.1454226729462544e+01
+1.0271617674140417e+01
+6.3765874717258386e+00
+-4.2331563934179620e+01
+-1.6581883410193465e+00
+1.3310803257133026e+00
+-2.2611390139900060e+01
+9.5047840159533585e+00
+5.9251105262629586e+00
+-4.0842422650521058e+01
+-6.7120111548387440e+00
+6.1527768510959602e-01
+-3.3417862013518480e+01
+1.2512501454109325e+01
+5.9757348153171481e+00
+-3.0797616137628168e+01
+9.2017315235405039e+00
+5.7272197573208254e+00
+-4.0965819712088120e+01
+-2.2173808673555104e+00
+1.1423441835459380e+00
+-2.3748348194165153e+01
+9.7710510102726378e+00
+5.6990203040509302e+00
+-4.0706888177631491e+01
+-6.5159737396657613e+00
+3.3609836896527689e-01
+-3.2650827971330330e+01
+-3.7167248544256850e+00
+5.8448476882258815e-01
+-2.3955007243295878e+01
+1.1598879068994266e+01
+6.0957171618886532e+00
+-4.1002655807355310e+01
+3.4808189828851543e+00
+2.4724885092778250e+00
+-2.1629856062097669e+01
+1.2592321807886215e+01
+5.6388896526787606e+00
+-3.0147924379289154e+01
+1.1743619747383105e+01
+5.9510883131878369e+00
+-4.0790245706960128e+01
+1.1647931408551804e+01
+5.8446739513161061e+00
+-4.0663868826859456e+01
+1.2843178576299028e+00
+1.6236400945380947e+00
+-2.0609397364332445e+01
+1.2843178576299028e+00
+1.6236400945380947e+00
+-2.0609397364332445e+01
+-2.5520205158107485e+00
+6.3325665609278581e-01
+-2.3077149883892130e+01
+1.4095405698743289e+00
+1.8073391819421978e+00
+-2.0919116706275435e+01
+1.2322916497037559e+01
+5.5143770253809574e+00
+-2.9115396923832357e+01
+1.2229045175079724e+01
+5.3835592094704694e+00
+-3.1389959180438808e+01
+-2.9841749335282053e+00
+4.4192127822766752e-01
+-2.3798556588672767e+01
+1.3404897247509785e+01
+6.2254773048891652e+00
+-4.4571228960053830e+01
+3.4700562841043050e+00
+2.0056099519981410e+00
+-2.1369283205649428e+01
+6.1740045840661661e-01
+1.1128246592025153e+00
+-2.0582998194818835e+01
+-1.6594566582778918e+00
+4.5920225831464367e-01
+-2.2400503659599206e+01
+-1.0017690537852149e+00
+5.6647010446154122e-01
+-2.1685972757177634e+01
+2.3732806526687762e+00
+1.5119831792679659e+00
+-2.0554642728160488e+01
+3.3476201930430065e+00
+1.7860767995447866e+00
+-2.1006641276973163e+01
+1.3266396315853877e+00
+1.1587161994339501e+00
+-2.0467810981630208e+01
+1.5499176795561667e-01
+7.4398426247082050e-01
+-2.0778051731238175e+01
+1.2634325332856417e+01
+4.6128546478095931e+00
+-3.2062144251345913e+01
+3.5330196817218691e+00
+1.5212032440692564e+00
+-2.1157127087867789e+01
+-1.4989445081758546e+00
+9.2857208823296476e-03
+-2.2120353851977320e+01
+-9.1228681882281055e+00
+-2.2770598677123686e+00
+-2.8344741732857624e+01
+-8.0738011822976397e+00
+-2.1001809898244899e+00
+-2.9740020687671922e+01
+-3.1447930577312189e+00
+-6.0822685520111119e-01
+-2.2536153441416023e+01
+9.1917769440011857e-02
+3.0973087129303822e-01
+-2.1105080992538667e+01
+1.3173935294262936e+01
+4.3847049029460567e+00
+-3.3765547625598764e+01
+9.4887868751976934e-01
+4.7066833517087003e-01
+-2.0381735356741672e+01
+9.4887868751976934e-01
+4.7066833517087003e-01
+-2.0381735356741672e+01
+5.3260443772909545e+00
+1.8128653479862791e+00
+-2.3098187850692838e+01
+1.9047330771249416e+00
+5.9428840958100027e-01
+-2.0242580892800522e+01
+4.9780572595579367e+00
+1.4516279260409237e+00
+-2.2307080325396775e+01
+-1.2432073166984200e+01
+-3.8719034021424283e+00
+-2.4887034680667508e+01
+1.3669553350857366e+00
+1.4119376179365764e-01
+-2.0184849572819097e+01
+2.4482693769894870e+00
+4.2581508288249831e-01
+-2.0340203676305975e+01
+-2.9059908271070269e+00
+-1.3482624833951140e+00
+-2.1522061063296480e+01
+1.3069357793745098e+01
+3.2077962717103756e+00
+-3.0671701128754439e+01
+2.6770373091963768e+00
+2.3827419742327124e-01
+-2.0266413660603948e+01
+1.3618187987986957e+01
+2.8893816307498708e+00
+-3.3897018466024029e+01
+-5.5242353580068015e-01
+-1.0474610970908134e+00
+-2.0956896973307000e+01
+2.3633149895939796e+00
+-1.2270658224806158e-01
+-2.0322557521420269e+01
+-1.4439377169849474e+00
+-1.4164565125283739e+00
+-2.1352473331193671e+01
+4.3620180038787719e+00
+3.8171381524162318e-01
+-2.1296175854380195e+01
+1.3485270689800929e+01
+2.7719281635806006e+00
+-2.9372651670128807e+01
+-9.5076973696122131e-03
+-1.0331121070389533e+00
+-2.0971848453136261e+01
+8.2113772039604641e-02
+-1.0175257315874688e+00
+-2.0852553582952922e+01
+5.8539071857805354e+00
+5.8322010643719746e-01
+-2.3393395533188723e+01
+2.5067048251330228e+00
+-3.5366883252180903e-01
+-2.0300265520860830e+01
+2.7517297211232612e+00
+-2.3428506070229962e-01
+-2.1421665409907195e+01
+-1.8646145894000485e-01
+-1.2629566901171041e+00
+-2.0686597225118497e+01
+2.1010286287065285e+00
+-5.2403256675701870e-01
+-2.0356471937202436e+01
+2.2127723347032817e+00
+-4.9938021970118351e-01
+-2.0384088371153947e+01
+4.8570117966255308e+00
+2.1414564172557976e-01
+-2.1743500377679521e+01
+5.3232430047517791e+00
+2.2481087998300522e-01
+-2.2434225493260389e+01
+6.7507206182654900e-01
+-1.1605526494211642e+00
+-2.0643723467412190e+01
+-1.5724324770861891e+00
+-1.8870961227609897e+00
+-2.0983833717589988e+01
+-1.3522072037639943e+00
+-1.9237037912914530e+00
+-2.0890828962087216e+01
+1.1241757765745912e-01
+-1.5427958185346384e+00
+-2.0403723464601253e+01
+-5.8208456329708564e+00
+-3.9052969024633830e+00
+-2.6467276839259764e+01
+4.7092560723370678e+00
+-3.4282366056829977e-01
+-2.1602662275711591e+01
+5.3895503658693897e+00
+-2.0689868970409886e-01
+-2.2369252283596595e+01
+1.0436237088790691e-01
+-1.6963829913363808e+00
+-2.0462697866603040e+01
+5.8013709603320125e+00
+-1.1592143761229219e-01
+-2.2501961585171617e+01
+1.4300181854428963e+01
+1.7004628372881636e+00
+-3.2755575438910050e+01
+2.2533404562094712e+00
+-1.0964316794005076e+00
+-2.0539995043773580e+01
+1.3501280131107960e+01
+1.4650954489504593e+00
+-3.1280474727385855e+01
+1.5072708451311873e-01
+-1.8367524570072087e+00
+-2.0523000447183065e+01
+3.5572411009166593e+00
+-8.1218932437835434e-01
+-2.0842898266507575e+01
+2.9478421360665674e+00
+-1.0597790949401928e+00
+-2.0636064884922423e+01
+3.2922362791295874e+00
+-9.9779549676081869e-01
+-2.0763141997009747e+01
+3.2928508886100301e+00
+-9.9081964589272842e-01
+-2.0780441789578489e+01
+3.3732859206932062e+00
+-1.0039462014136555e+00
+-2.0859100653090387e+01
+1.4078718512124873e+01
+9.8118512746080178e-01
+-3.3612891882792852e+01
+-1.4349241526109923e+01
+-7.2557513731328669e+00
+-2.3486752411495051e+01
+1.4004216135974581e+00
+-1.8104507223074631e+00
+-2.0088490400682257e+01
+-1.0604378604385783e+01
+-6.1113668296195289e+00
+-2.2092875392108613e+01
+2.5226823119849620e+00
+-1.7025670073902193e+00
+-2.0212921154248392e+01
+4.1215302761208665e+00
+-1.2674601824380372e+00
+-2.0894304132255499e+01
+3.2327279400931275e+00
+-1.5645097059975908e+00
+-2.0399715984569774e+01
+3.8540301445881568e+00
+-1.4404494911287089e+00
+-2.0564935688860047e+01
+3.4332333154149746e+00
+-1.6084176361864120e+00
+-2.0411291726685999e+01
+5.5786590199926209e+00
+-1.1494800517281361e+00
+-2.2075985991649979e+01
+-8.8251077905092821e+00
+-5.9564834570688738e+00
+-2.2349710407920632e+01
+8.7520361753162645e-01
+-2.4898919380429012e+00
+-2.0752580004233433e+01
+8.6700658410444742e-01
+-2.4875994204925806e+00
+-2.0144908301866408e+01
+1.7436312022246869e+00
+-2.3323135962271486e+00
+-2.0442114864717464e+01
+1.8363939007634597e-01
+-2.7169667794919854e+00
+-2.0394092034527358e+01
+-6.0783123037166586e-01
+-3.3331334139211970e+00
+-2.1099867479506909e+01
+-1.3624784169801972e+01
+-7.9496047295873469e+00
+-2.2538164015356799e+01
+-1.3624755679554211e+01
+-8.1373053254727772e+00
+-2.2443715465159706e+01
+-6.6675784618216767e+00
+-5.9752005960442283e+00
+-2.3512622702935776e+01
+5.1426463948042977e+00
+-1.7805083211168007e+00
+-2.1276045692162182e+01
+1.6311651292559077e+00
+-2.7468300029422443e+00
+-1.9901769722616525e+01
+1.4180044465270141e+01
+-5.1058613223770866e-01
+-3.1594431011548252e+01
+2.3360536167403412e+00
+-2.5650802189340025e+00
+-2.0097247864358366e+01
+1.4962256693732959e+01
+-4.2011681928863615e-01
+-3.2324353362400991e+01
+-1.0001599733998567e+01
+-6.8664513356374739e+00
+-2.0994024115164869e+01
+-7.5598983197750087e+00
+-6.3837423743052542e+00
+-2.3106193885748020e+01
+-5.9380000020151753e+00
+-5.9696101243348236e+00
+-2.3753044586866363e+01
+-5.9380000020151753e+00
+-5.9696101243348236e+00
+-2.3753044586866363e+01
+-1.3184358260015435e+01
+-8.2655862162064313e+00
+-2.2092425458580962e+01
+-5.8316161449817621e+00
+-6.0724654644910290e+00
+-2.4126675644951902e+01
+-1.0070800074885420e+00
+-4.0952176671757679e+00
+-2.2351406990865986e+01
+1.4529387061447288e+01
+-6.3295069366770307e-01
+-3.1432804860150359e+01
+-9.7731504712568351e-01
+-4.2645808550298545e+00
+-2.2245065027272311e+01
+1.4263123370827323e+01
+-8.5278136434706353e-01
+-3.1421802179933067e+01
+6.0332491289263830e+00
+-1.9694616278912247e+00
+-2.1740221293129252e+01
+5.8815311537628672e+00
+-1.9909357148046916e+00
+-2.1501017763881933e+01
+1.7167962738796374e+00
+-3.1066850321319071e+00
+-1.9895969509936684e+01
+-9.0285773344393783e-01
+-4.4504585691579628e+00
+-2.2488138671331193e+01
+1.8582925452498724e+00
+-3.0927840638574282e+00
+-1.9797811482520412e+01
+-5.6310142277066229e+00
+-6.3743813577340820e+00
+-2.4078804659751839e+01
+5.8955133672998894e+00
+-2.2577820143607741e+00
+-2.1841268881810286e+01
+5.2071865418616401e+00
+-2.2967878892202380e+00
+-2.0636956332797045e+01
+4.3032491536595341e+00
+-2.5610894653278713e+00
+-2.0327818020971669e+01
+3.0493224388671609e+00
+-2.8771298990830707e+00
+-1.9760034157127510e+01
+-1.2255123259392390e+01
+-8.5068023210283883e+00
+-2.1545721639557868e+01
+6.0219392358560979e+00
+-2.5108137462764559e+00
+-2.2297123967878672e+01
+4.4800225284775568e+00
+-2.7025265224176569e+00
+-2.0547180341187598e+01
+4.4800225284775568e+00
+-2.7025265224176569e+00
+-2.0547180341187598e+01
+1.8552726904008965e+00
+-3.5550153200380947e+00
+-2.0344836988829535e+01
+6.2356438292551228e+00
+-2.6650383719992630e+00
+-2.2837604279236558e+01
+1.1278244284314129e+01
+-2.4216927822337584e+00
+-2.9298729627657131e+01
+-8.0671539133517740e+00
+-7.3839112663250015e+00
+-2.1433318973826772e+01
+-5.9879147400728652e+00
+-7.0344070201203444e+00
+-2.3000781070936494e+01
+1.3316113916647428e+01
+-2.2293060170398880e+00
+-3.0132924910568395e+01
+3.9117307600109994e+00
+-3.5540336161500843e+00
+-2.1052009567039057e+01
+-5.4295919137978341e+00
+-7.1601181932903541e+00
+-2.2402648586216166e+01
+6.6922022113793469e+00
+-3.5325996344716959e+00
+-2.4327776508625327e+01
+-1.2002858276797463e+01
+-9.3587776779108580e+00
+-2.0581862990772940e+01
+2.1155920247614395e+00
+-4.5099662207912132e+00
+-2.2017562944477497e+01
+1.3217735156307496e+01
+-2.8075845647605968e+00
+-2.9877394191999432e+01
+-3.8149715008713914e+00
+-7.2347869355017407e+00
+-2.3017063103313731e+01
+-1.2398458559613735e+01
+-9.7832040015948092e+00
+-2.0200255593954342e+01
+3.8487463576618932e+00
+-4.3870232671040377e+00
+-2.1740040752549195e+01
+9.3073959797199723e+00
+-3.8570221572205901e+00
+-2.6715565852505581e+01
+2.6743354888750583e+00
+-5.0876802047088727e+00
+-2.2832280605572670e+01
+3.6565533300139395e+00
+-4.8262908407388156e+00
+-2.2397892669754491e+01
+3.6189515904734169e+00
+-4.8529046198821675e+00
+-2.2174999486754555e+01
+-6.9751080339047045e+00
+-8.4732414324457661e+00
+-2.0816738292683588e+01
+9.0145603187927836e+00
+-4.3780489494708874e+00
+-2.6303572996763695e+01
+-1.1820749365815123e+01
+-1.0093511152641902e+01
+-1.9681831949566206e+01
+-1.0944594269880852e+01
+-9.9464203442234620e+00
+-1.9639866361467448e+01
+-3.5338648415710465e+00
+-7.7252321543840354e+00
+-2.1760459397742881e+01
+-3.4861670798503037e+00
+-8.0185361047505577e+00
+-2.1610360123640348e+01
+-1.0978642129543321e+01
+-1.0218025089623056e+01
+-1.9351398444168872e+01
+-5.8522731557613277e+00
+-8.2930560401316988e+00
+-1.9524779832631221e+01
+-1.1285618089154598e+01
+-1.0466589753826050e+01
+-1.9100209189971171e+01
+-3.2699205643566884e+00
+-8.0973881844206108e+00
+-2.1409016670387587e+01
+-1.1238277685141933e+01
+-1.0500897170820620e+01
+-1.9034463390600209e+01
+1.4138007683622019e+01
+-4.2986002753679369e+00
+-2.7432189829417833e+01
+1.2405911987516886e+01
+-4.9643161768966104e+00
+-2.6781876947087301e+01
+-4.7708328511686400e+00
+-9.0999738390799827e+00
+-2.0133235796987062e+01
+8.6741138484731906e+00
+-5.9979940264497600e+00
+-2.4616930651955769e+01
+3.0326258534244226e+00
+-7.9593260126655645e+00
+-2.1166206399257412e+01
+1.2806742261653772e+01
+-6.0383884161768089e+00
+-2.4077030733550359e+01
+1.6971007146222550e+00
+-8.7760577444803456e+00
+-2.0568767378743335e+01
+6.1513955834795366e+00
+2.3144248430051682e+01
+-4.7881221189373747e+01
+1.7714302671929754e+00
+2.1053387941608143e+01
+-4.5437573476833713e+01
+6.8922557876500914e+00
+2.3426955654841567e+01
+-4.8283088897522113e+01
+7.3570657124058156e+00
+2.3633852129357987e+01
+-4.8527131792040940e+01
+6.8390806801211061e+00
+2.3387209803891366e+01
+-4.8468208633298339e+01
+6.7994424859121185e+00
+2.3296569022774431e+01
+-4.8343589733156776e+01
+7.2297329094433556e+00
+2.3487718104220360e+01
+-4.8638234066978583e+01
+6.6044282410915525e+00
+2.3945116118501939e+01
+-5.0375006130147185e+01
+6.2308585710852400e+00
+2.3012150590977253e+01
+-4.8222223399381285e+01
+1.7406508976319440e+01
+2.9985352927553404e+01
+-5.9068318083711652e+01
+5.8628780817518997e+00
+2.2778482841992471e+01
+-4.8060499369151280e+01
+5.6138135023885791e+00
+2.2637437447934172e+01
+-4.8143817997223778e+01
+5.9796181327904243e+00
+2.2705429073096010e+01
+-4.8184426534449692e+01
+1.3204687136000645e+01
+2.5989197437916651e+01
+-5.1877405605972392e+01
+6.3953876179524416e+00
+2.2971558543629708e+01
+-4.8743816671125003e+01
+7.1936157729775365e+00
+2.3461952194130127e+01
+-4.9506608682827178e+01
+6.8296358104772095e+00
+2.3120728378050497e+01
+-4.8769302695078288e+01
+9.6988364385880494e+00
+2.5308868370212824e+01
+-5.3045972167719739e+01
+7.2513051982756860e+00
+2.3175681864800950e+01
+-4.9109301035872001e+01
+7.3235668052454201e+00
+2.3246337274707962e+01
+-4.9294294714167350e+01
+8.0772877926416431e+00
+2.3425934230677129e+01
+-5.0036060878287827e+01
+9.6733773581566940e+00
+2.4622483661507978e+01
+-5.2663719440250603e+01
+9.6745143682562524e+00
+2.4665039427031488e+01
+-5.2827368038620541e+01
+9.3671013618274372e+00
+2.4396910064669520e+01
+-5.3131690975519696e+01
+-1.2392941812601981e+01
+1.1639170278885448e+01
+-3.4854984956290181e+01
+1.8198005831434362e+01
+2.9473051724075155e+01
+-6.0890316745459572e+01
+-1.2662775550902223e+01
+1.3265468731975169e+01
+-3.9495264629690226e+01
+-1.2001523869843904e+01
+1.3564671580763026e+01
+-4.0323903648095872e+01
+-5.5733954956663156e+00
+1.6421724391519462e+01
+-4.3788624445022791e+01
+-2.4151417993730799e+00
+1.7863772310644872e+01
+-4.5302954390520512e+01
+-1.3583023850223418e+01
+1.3028774153991455e+01
+-3.9670621712560830e+01
+8.9767927618783467e+00
+2.2732487653046050e+01
+-5.1303712164790937e+01
+-8.7872842559905013e+00
+1.4769239823948718e+01
+-4.2651313115345232e+01
+-6.7303110117347087e+00
+1.5671604805257575e+01
+-4.3815661999272670e+01
+1.6221043711176332e+01
+2.5664599089238035e+01
+-5.4987189673857742e+01
+1.6011426811805272e+01
+2.5440674078906198e+01
+-5.4890906303050741e+01
+-1.1874607518363865e+01
+1.3109944670571034e+01
+-4.1647463535026723e+01
+-8.8827956593180506e+00
+1.4461693828466732e+01
+-4.3042818354322954e+01
+1.6981716396283211e+01
+2.5591025958542414e+01
+-5.5538150494692410e+01
+1.3939076918471596e+01
+2.4680349156145226e+01
+-5.5134211666075593e+01
+-1.2717695403134597e+01
+1.1285656841313788e+01
+-3.7896739672749582e+01
+-1.1151068519987696e+01
+1.1547706040589190e+01
+-3.8027058025028573e+01
+3.8744725823223329e+00
+2.0573877713025357e+01
+-5.2375501305952888e+01
+-1.1386788160105528e+00
+1.7420901442178724e+01
+-4.7672314328691861e+01
+-9.3579579035601803e+00
+1.3217314543769966e+01
+-4.1757343538282058e+01
+-1.3031620678812070e+01
+1.0150473694810428e+01
+-3.6139046704345226e+01
+-8.1987486188494660e+00
+1.3865723750332446e+01
+-4.4408037914765963e+01
+-1.0154356123737879e+01
+1.2703150031181838e+01
+-4.3890940239366451e+01
+-1.1609184877595144e+01
+1.1873689278304267e+01
+-4.3199717335054650e+01
+1.4735832059868335e+01
+2.3134782517252017e+01
+-5.7305540588787167e+01
+3.5460687153696324e+00
+1.8044880131653265e+01
+-5.1703296494658517e+01
+-9.5819397337992314e+00
+1.2280424122474189e+01
+-4.4635495630406133e+01
+1.9754219212401935e+01
+2.5132281032676147e+01
+-6.0908905833260029e+01
+-3.6574987408049591e+00
+1.4911386058299165e+01
+-4.8241276600530021e+01
+-4.1145656504776635e+00
+1.4545764095100266e+01
+-4.7671799352335988e+01
+-4.0909742548631201e+00
+1.4569358171153649e+01
+-4.8016475800816302e+01
+-1.3888585933742353e-02
+1.6443081050005954e+01
+-5.0085957346038654e+01
+1.8804209051068668e-01
+1.6392681386091631e+01
+-5.0519278358138607e+01
+1.7146433733212827e+01
+2.5164051566427883e+01
+-6.4732935486893837e+01
+-1.3637282915226527e+00
+1.5566926367188831e+01
+-4.9923374081156673e+01
+-3.8425880949322053e+00
+1.4445168810496449e+01
+-4.8714585064807579e+01
+4.2480660187178030e+00
+1.7775796859343167e+01
+-5.3029507058592230e+01
+3.0800695188166449e-01
+1.6155019198440328e+01
+-5.1275018638965278e+01
+5.2451090067024584e+00
+1.8320580886120883e+01
+-5.4155411465444743e+01
+-4.1909668197852046e+00
+1.4078333053088363e+01
+-4.8639680361772427e+01
+1.8888494892160704e+01
+2.5712003822893148e+01
+-6.7010895676923553e+01
+9.7752179185234329e+00
+2.1145310484546542e+01
+-6.0453937630654771e+01
+-3.2711582562611959e+01
+5.3207700088353080e+00
+-4.1979283396358142e+01
+1.5308599218466753e+01
+2.1735805060743761e+01
+-5.8595472923512737e+01
+1.7224691660151056e+01
+2.3615820068876232e+01
+-6.2720379190872791e+01
+1.0763572908771367e+01
+2.0100014351559594e+01
+-5.6866012963445343e+01
+-3.9537202071465143e+00
+1.3850601200006487e+01
+-4.9319479122770630e+01
+1.0710162992963042e+01
+2.0097144555409816e+01
+-5.7472265223748998e+01
+4.7758848281731012e+00
+1.7442747159950507e+01
+-5.4252722243702422e+01
+1.0194900384974147e+01
+1.9662150538673842e+01
+-5.7074728907767714e+01
+1.1013912120432298e+01
+1.9721233016052437e+01
+-5.7005993787501012e+01
+1.3351680397738050e+01
+2.2091721631563093e+01
+-6.3319215897883005e+01
+4.7377186470222794e+00
+1.7126019849894789e+01
+-5.4131784952923994e+01
+6.0090087575317668e+00
+1.7651176138726871e+01
+-5.5162606352578358e+01
+4.7163441190160613e+00
+1.6897250148334017e+01
+-5.4411873450073706e+01
+4.9821772841577445e+00
+1.7610779208531714e+01
+-5.6724585944282119e+01
+6.2602007574430774e+00
+1.7566472171200079e+01
+-5.5506904776467302e+01
+4.9227900938734876e+00
+1.5677098131567822e+01
+-5.4534103166285192e+01
+-1.1927185394166274e+01
+7.9852877383622562e+00
+-4.3315674569514123e+01
+-1.3827132877351007e+01
+6.9720919918690694e+00
+-4.1812795209528289e+01
+-1.3999366307627971e+01
+6.8739982862602771e+00
+-4.2231187347751181e+01
+1.2981569837279036e+01
+1.2830095964512950e+01
+-3.6503878084405791e+01
+1.4231088129711276e+01
+1.8758465326077044e+01
+-6.0822920339922014e+01
+6.5065538692133087e+00
+1.4370352964896780e+01
+-5.2644640019902035e+01
+4.7202085871834205e+00
+1.3332922475352690e+01
+-5.0312570317632002e+01
+7.8384633959280592e+00
+1.4360061821191545e+01
+-5.1693842567430742e+01
+4.7020942608047127e+00
+1.2977774960197989e+01
+-4.9609701998181215e+01
+-1.5099064307908025e+01
+3.7547360235514669e+00
+-3.4669049770405458e+01
+3.4532434303164896e+00
+1.1135766494652067e+01
+-4.7424628608982516e+01
+-1.7831639298953942e+01
+2.9708593163482822e+00
+-3.6776250298693782e+01
+-1.7769698180972988e+01
+2.9342142734497236e+00
+-3.7248106876506846e+01
+-1.3487376754051782e+01
+4.0487382031030172e+00
+-3.7367774166353364e+01
+3.4392978791467725e+00
+1.0534249172164758e+01
+-4.6324750202852336e+01
+3.4461859227398679e+00
+1.0550223393917017e+01
+-4.6426608098381692e+01
+3.6815701437908066e+00
+1.0861413466736728e+01
+-4.7534592532272498e+01
+3.1311264759034350e+00
+1.0112409554338555e+01
+-4.5868353696224325e+01
+3.5672355293807794e+00
+1.0069278601320038e+01
+-4.6255044949407420e+01
+4.1590170501105952e+00
+1.0306562618145733e+01
+-4.5862447424336871e+01
+1.4079275641284867e+00
+9.4486214050225588e+00
+-4.6524398304647939e+01
+2.2368683716733924e+00
+9.2896367785893670e+00
+-4.5259862291763341e+01
+-1.4732921149347606e+01
+1.9467561690693220e+00
+-3.1872067138549724e+01
+1.3442475986680952e+01
+1.0488925087988566e+01
+-3.6047346858531384e+01
+1.4669050883822055e+00
+8.7334061561053673e+00
+-4.4525883549802202e+01
+-1.9956501781136179e+01
+6.2297814893696746e-01
+-3.3325427215519582e+01
+-1.1995519040780774e+01
+3.2678985083786869e+00
+-3.6889008338668006e+01
+2.5980263434175583e+00
+8.5513240068862686e+00
+-4.4429928106311031e+01
+2.6112287472301245e+00
+8.6876088065223858e+00
+-4.4995176252390905e+01
+2.7624834919963899e+00
+8.6391188672617822e+00
+-4.4634829813291411e+01
+-2.1301547387817137e+00
+6.4249728153804435e+00
+-4.1256502335710607e+01
+4.2883975069918536e+00
+8.5940286654043962e+00
+-4.4252849995373360e+01
+-4.1352918299710630e+00
+5.5030333110170311e+00
+-4.0238804270835367e+01
+-1.6687539808273396e+01
+1.1120531424683300e+00
+-3.4037694000719597e+01
+8.7280434378306726e+00
+9.9669582287701619e+00
+-4.7640422551257295e+01
+4.9141125036541426e+00
+8.1530883783897057e+00
+-4.4620728757874687e+01
+-7.7943046355402812e+00
+3.1096484354144858e+00
+-3.6608910720266095e+01
+8.1432427852042788e-01
+3.7600114208907316e+00
+-2.4018619154338712e+01
+7.9340144447381633e-01
+3.5802388671036476e+00
+-2.3254876972572077e+01
+1.3711940666830420e+01
+8.9654085726544785e+00
+-3.8698533913017712e+01
+-6.5747380564518592e+00
+2.5788931423919137e+00
+-3.5830875726674897e+01
+-6.5747380564518592e+00
+2.5788931423919137e+00
+-3.5830875726674897e+01
+8.1358707269860733e-02
+2.8342014867978618e+00
+-2.2059431231761888e+01
+-7.6195693850482362e+00
+1.9130507418352907e+00
+-3.4712515094723223e+01
+-3.3094324230320957e+00
+2.2390429642442915e+00
+-2.6326036114337601e+01
+-3.3306415849615347e+00
+2.3162873611560029e+00
+-2.6598814478846776e+01
+1.0578934408449520e-01
+2.6685809095996333e+00
+-2.1858378351567158e+01
+2.5164540646677136e-01
+2.5668768199392802e+00
+-2.1637626602758690e+01
+1.0886067914477144e+01
+7.5804221733375341e+00
+-4.3123948921201276e+01
+-1.6348239416398258e+00
+1.7305805587411418e+00
+-2.2866362680261467e+01
+-1.6348239416398258e+00
+1.7305805587411418e+00
+-2.2866362680261467e+01
+-7.2023415198603780e-01
+1.8482204567538159e+00
+-2.1982511975540092e+01
+-1.0117196977560200e+01
+-2.7453147055137839e-01
+-3.1716195356967287e+01
+1.0500852586683679e+01
+6.4034750838124133e+00
+-4.1330616072480197e+01
+1.1653204906008337e+01
+6.5661086854755695e+00
+-4.1706454133994576e+01
+-4.3469126187918949e-01
+1.5282204203756864e+00
+-2.1361444953720902e+01
+1.2587022210790437e+01
+5.5979762816708893e+00
+-2.9597969863376200e+01
+3.1471301830934018e-01
+1.4498862762131335e+00
+-2.0881463635873384e+01
+-1.3255242391909716e+01
+-2.1937674116007089e+00
+-2.7379154838856582e+01
+-1.9196611894554110e+00
+7.3371243181493884e-01
+-2.2974766094870446e+01
+9.3405164766824349e+00
+4.8824181456220792e+00
+-3.9178086937018151e+01
+1.8853847650545319e+00
+1.6723851178171647e+00
+-2.0608253099247797e+01
+-9.8320630496242234e-02
+9.9138881752141694e-01
+-2.0891074636623561e+01
+3.9533220086493568e+00
+2.2113726265495481e+00
+-2.1844843318883076e+01
+3.9575320431544472e+00
+2.2100951566616329e+00
+-2.1877444264698660e+01
+-3.5485585298724933e+00
+3.0662252647465620e-02
+-2.3386642258753398e+01
+-2.3865185896815855e+00
+3.4002676474817167e-01
+-2.2658017065095411e+01
+-3.0828224943183056e+00
+-8.2224984791562997e-02
+-2.3143611630657144e+01
+-1.1377096081645854e+00
+4.0179010670099558e-01
+-2.1697013251445185e+01
+-8.6508521100183984e+00
+-1.6553685132727034e+00
+-2.9500186637547781e+01
+1.2819724345250362e+01
+4.2015648143466384e+00
+-2.9936399936734034e+01
+4.6787015869419353e+00
+1.5298233476268357e+00
+-2.1936812043976879e+01
+-7.8864285857744836e+00
+-2.4292992759879901e+00
+-2.9241870216860036e+01
+3.1325388120756683e+00
+9.6081920320282721e-01
+-2.0497271621887254e+01
+-7.8851737437796858e+00
+-2.5634837812175486e+00
+-2.9050452113918894e+01
+1.3554702441677602e+01
+3.9066497321115832e+00
+-3.1686004631442419e+01
+4.6463719782946615e+00
+1.2606832156493206e+00
+-2.1778176869918276e+01
+1.0560095711686401e+00
+1.3932601813235621e-01
+-2.0728542443437920e+01
+1.2726398261543245e-01
+-1.8530381134204993e-01
+-2.0702318837983199e+01
+1.3202861604360825e+01
+3.5044455916735564e+00
+-2.9917954638997234e+01
+-2.5827612460719149e+00
+-1.2604760791273086e+00
+-2.1767239107041910e+01
+2.8014192708911847e+00
+3.8322743779513058e-01
+-2.0415579623606376e+01
+2.7930597070186614e+00
+3.6902424785787502e-01
+-2.0298045344207608e+01
+3.8643946225180698e-01
+-4.0009276086876006e-01
+-2.0561049332609926e+01
+4.4491838040441465e+00
+8.0534702846467099e-01
+-2.1447284365220515e+01
+4.7389901974709120e-01
+-5.8607086118371055e-01
+-2.0656251070426503e+01
+-1.3288629348000354e+00
+-1.3034535013451125e+00
+-2.1396142421163933e+01
+7.0628175385973146e-01
+-6.6766604706385024e-01
+-2.0540308685961957e+01
+3.0739187680051514e+00
+-5.2249587519984153e-02
+-2.0545516727629717e+01
+3.0723640241843930e+00
+-4.7244201165307927e-02
+-2.0527313467715487e+01
+1.2767878493527147e+00
+-7.0447355143822432e-01
+-2.0364217307106852e+01
+2.8241378677758253e+00
+-3.1280509963587766e-01
+-2.0482827360348637e+01
+2.5066890046715260e+00
+-5.8444305817717679e-01
+-2.0432872837904515e+01
+2.5066890046715260e+00
+-5.8444305817717679e-01
+-2.0432872837904515e+01
+5.9913503408520077e+00
+7.5323644531606809e-02
+-2.2718288651694294e+01
+2.0043277329788936e+00
+-1.0473721271193126e+00
+-2.0656402024806976e+01
+-1.0850274715648322e+01
+-5.3478308440684108e+00
+-2.1651936605591967e+01
+4.3624524333245557e-01
+-1.5981332209527501e+00
+-2.0137969774316726e+01
+1.3919206367495269e+01
+1.4948930179685493e+00
+-3.2022467451923902e+01
+1.3907887748564066e+01
+1.4914816814667384e+00
+-3.2029760533726524e+01
+-9.6900260272941718e-01
+-2.1948725345205293e+00
+-2.0524918875047852e+01
+5.1419956851386894e+00
+-4.4959130636969757e-01
+-2.1993013932502336e+01
+7.4266185369368056e+00
+6.2661770794037633e-02
+-2.4046086594324244e+01
+-1.9710760460363428e+00
+-2.8786327731327295e+00
+-2.1968627345211807e+01
+1.2424541564602354e+00
+-1.7180482069316472e+00
+-2.0129472885017694e+01
+-9.1398362381850795e+00
+-5.4503468043554752e+00
+-2.3001194101780264e+01
+1.7344156265007686e+00
+-1.6556058594856087e+00
+-2.0198986198216780e+01
+1.3870085531380777e+01
+8.6424487936989969e-01
+-3.2027744065150017e+01
+-2.2688170612299001e+00
+-3.4720326017221974e+00
+-2.3025284793181459e+01
+-1.4220986106658206e+01
+-7.7876491428962682e+00
+-2.2804901894756092e+01
+6.3507983814269959e+00
+-1.0497184813325242e+00
+-2.2390667491002201e+01
+5.3823145210200141e-01
+-2.6278394527718461e+00
+-2.0035279063660209e+01
+-6.8062425266511664e+00
+-5.5749361586728554e+00
+-2.4520627303326989e+01
+-6.2837388441067867e+00
+-5.9286833201231861e+00
+-2.4512080276764891e+01
+-1.3457344841784186e+01
+-8.1231354735983778e+00
+-2.2328837973771201e+01
+5.0779026743669897e+00
+-1.8007723464663299e+00
+-2.1263190724254152e+01
+-1.3451137172393496e+01
+-8.3098115518785072e+00
+-2.2100993038564955e+01
+-8.3097838000958379e+00
+-6.4269399323390122e+00
+-2.1579082428625114e+01
+-9.6449716266068297e-01
+-4.0790533482637992e+00
+-2.2120126749959823e+01
+-2.9138055040793946e+00
+-5.0593580401928708e+00
+-2.3520831206595034e+01
+1.4305254748595525e+01
+-6.3937559516614628e-01
+-3.0697310705595562e+01
+-1.3064522248903710e+01
+-8.3457029868785071e+00
+-2.1949720365969014e+01
+6.2960839366567951e+00
+-1.8742336083966595e+00
+-2.2094594503125212e+01
+1.4962941213519002e+01
+-9.1714209459839058e-01
+-3.2599927262883192e+01
+-1.2784816585335486e+01
+-8.3792014276292033e+00
+-2.1873027405794307e+01
+4.7023455924455506e+00
+-2.2718738879386624e+00
+-2.0542133223399240e+01
+-5.6627391747053384e+00
+-6.3286421429903070e+00
+-2.3725473176482588e+01
+-8.0914638654208897e+00
+-6.7207762041635997e+00
+-2.1283044655871667e+01
+1.4325093145533721e+01
+-9.2114109404429412e-01
+-3.1176843258191703e+01
+4.2399300067217895e+00
+-2.4227905456040357e+00
+-2.0344441166289311e+01
+4.0507555150269008e+00
+-2.5814018778062833e+00
+-2.0264134794691316e+01
+3.4806261705129486e+00
+-2.7609188224617291e+00
+-1.9970899014157421e+01
+1.4390873554313057e+01
+-1.3108751210497054e+00
+-3.0803926088827485e+01
+1.4579294309530061e+01
+-1.5840164764965645e+00
+-3.0389437527314339e+01
+-1.2860075365012563e+01
+-9.5144628449374675e+00
+-2.0506902030312865e+01
+-1.2756339338566864e+01
+-9.5373579175313807e+00
+-2.0483201744191032e+01
+2.0417231155333018e+00
+-4.4529501134884288e+00
+-2.2141382825062326e+01
+7.0336466088675085e+00
+-3.4733049315456594e+00
+-2.4389761869209373e+01
+4.0742193675016596e+00
+-3.9652070632571523e+00
+-2.1581661476264745e+01
+-1.2976090532659208e+01
+-9.7794882353622761e+00
+-2.0280599632627307e+01
+-4.6169826715147266e+00
+-7.3635024324432070e+00
+-2.2529084710313210e+01
+-1.1729550104051068e+01
+-9.4948228432844139e+00
+-2.0333962634265930e+01
+-3.7831329839023828e+00
+-7.2005885454616863e+00
+-2.2547654782739261e+01
+3.4475095032586691e+00
+-4.4290244258991356e+00
+-2.1650970830519210e+01
+1.3464876601298316e+01
+-2.9342750854283173e+00
+-2.8948336521778565e+01
+3.5547027506719946e+00
+-4.8748386348647204e+00
+-2.2187726258771391e+01
+3.6485862936378317e+00
+-4.9321791038746499e+00
+-2.2241606785283885e+01
+3.7902099887707530e-01
+-5.8573105659193878e+00
+-2.1356104023304738e+01
+-3.4213607437235520e+00
+-7.5428314770947260e+00
+-2.2129841843913233e+01
+-2.9055307664436163e+00
+-7.5887003460641189e+00
+-2.1979575246910560e+01
+-3.2638860169653414e+00
+-7.7345366370853519e+00
+-2.2038363136464799e+01
+9.4771481238079218e+00
+-4.5824922847211687e+00
+-2.7487092830121529e+01
+-1.1129624806855613e+01
+-9.9964933046250977e+00
+-1.9599638131493869e+01
+-2.2449007228965963e+00
+-7.7349007602202313e+00
+-2.1787276184168928e+01
+-4.8080976248866953e+00
+-8.5508209972832123e+00
+-1.9564198293665964e+01
+1.4092107369146150e+01
+-4.4453947941612588e+00
+-2.6678247509406678e+01
+1.4878964284906097e+01
+-5.0100642237903159e+00
+-2.7473063595791459e+01
+-4.6168364061788791e+00
+-9.4607892984356941e+00
+-1.9560523557984343e+01
+1.1462458017204456e+01
+-5.9276328117850721e+00
+-2.5260625016131190e+01
+1.2604056076169618e+01
+-5.6348595011799398e+00
+-2.5416888843313103e+01
+1.4863605507073451e+01
+-5.5350354101595416e+00
+-2.6821634523174957e+01
+1.3747224883720973e+01
+-5.7818085636844261e+00
+-2.6113651015286216e+01
+-1.9123023490605601e-01
+-8.7003089914317346e+00
+-2.0072565943901264e+01
+9.7504138523047388e+00
+2.5293846023217505e+01
+-5.0771879516907859e+01
+7.9244302620031242e+00
+2.3914053281761873e+01
+-4.8834939085108353e+01
+6.2158334650667957e+00
+2.3228483812724470e+01
+-4.8465065845049317e+01
+6.0903386283646670e+00
+2.3014449712654311e+01
+-4.7915971332641881e+01
+5.9702047909080376e+00
+2.2863857185990675e+01
+-4.7855988890416846e+01
+1.7345377034286752e+01
+3.0248279750241402e+01
+-5.9577315876028862e+01
+6.6180234435941632e+00
+2.3138593834151695e+01
+-4.8306897974025659e+01
+-2.5706759616059287e+01
+1.7308886675945821e+01
+-5.1855851260533207e+01
+7.4373907092371772e+00
+2.3498477778506960e+01
+-4.8870653495531386e+01
+8.3318730347226122e-01
+2.0339963473144497e+01
+-4.5590747398113471e+01
+-4.2118581745789449e+01
+1.5266427888851444e+01
+-5.5335893064462645e+01
+1.9324123348369984e+00
+2.0434920213528979e+01
+-4.6782029555183996e+01
+7.4533592721719373e+00
+2.3110623139625456e+01
+-5.0087705108481174e+01
+9.5570592181844205e+00
+2.3861341090595303e+01
+-5.1176843001781251e+01
+9.3552410317823433e+00
+2.3545015826452524e+01
+-5.0511386589303662e+01
+-2.5159942485835916e+00
+1.7978784851634185e+01
+-4.5417849750292262e+01
+1.3438126579761031e+01
+2.4685139077245800e+01
+-5.3333888922485457e+01
+7.8396092400965980e+00
+2.2195254164176429e+01
+-5.0587706865484208e+01
+1.6317096344278614e+01
+2.6045423055185445e+01
+-5.5267570443007052e+01
+-9.2321687261149066e+00
+1.4632171737594360e+01
+-4.2670371716573520e+01
+1.2532832641497148e+01
+2.4327266155817750e+01
+-5.4464498971558328e+01
+9.7354837631348214e+00
+2.3645993745704189e+01
+-5.4800436521454870e+01
+1.3563492300435174e+01
+2.4682666430002627e+01
+-5.4770198997647611e+01
+-8.1079784079770096e+00
+1.4469228417929381e+01
+-4.3517482576852203e+01
+-1.3250953501801904e+01
+1.2195887296578887e+01
+-4.1022667946662793e+01
+-8.4725126165461244e+00
+1.3844855606847707e+01
+-4.2917955169511309e+01
+1.1631416964871914e+01
+2.3029745012336164e+01
+-5.4077541624382015e+01
+-3.8988669362628553e-01
+1.7115624559637649e+01
+-4.8576792022371819e+01
+5.1229720456619543e-01
+1.7393204842792972e+01
+-4.9023553962444751e+01
+1.1931882077477482e+01
+2.2395534895742252e+01
+-5.6406070428955353e+01
+-2.3702682365659253e+01
+3.3214757078475063e+00
+-2.5864577450861670e+01
+3.7913118684947228e-01
+1.6729541410738221e+01
+-5.0682080659114810e+01
+5.0087499675976206e+00
+1.9049967622104820e+01
+-5.4904911090507397e+01
+1.0941294398151625e+01
+2.0930469926276409e+01
+-5.5726841805202220e+01
+8.8572754292911586e+00
+2.0407036845907381e+01
+-5.6815348297246956e+01
+4.9807264243785667e+00
+1.8603233924120282e+01
+-5.4561538153823044e+01
+-6.6375293743879160e+00
+1.3052944286838994e+01
+-4.7431144930862644e+01
+1.6389907286478973e+01
+2.4164598211053239e+01
+-6.4476289703092036e+01
+-3.2118556547555592e+01
+5.7357057109299401e+00
+-4.2349826084993900e+01
+1.0724321589081015e+01
+2.0211620086406533e+01
+-5.5982158672096467e+01
+5.0398246190232641e+00
+1.7809621983864471e+01
+-5.3409219806442394e+01
+1.3941735349422325e+01
+2.2986344439672571e+01
+-6.2336907564533220e+01
+1.1355598638111342e+01
+2.0457193137483880e+01
+-5.6745648986291613e+01
+1.1317859865538566e+01
+2.0390236895981563e+01
+-5.6646768607363668e+01
+-4.0915948593406304e+00
+1.3896864527713397e+01
+-4.9116938687244414e+01
+3.6627435722947972e+00
+1.7111901658753492e+01
+-5.3379612529365879e+01
+-5.8919068838210560e+00
+1.2719260894350700e+01
+-4.8111968566689050e+01
+8.4101543726961587e+00
+1.8884085998311615e+01
+-5.6118128485152738e+01
+-3.0721875205332793e+01
+4.9286568614026711e+00
+-4.1036722250315165e+01
+1.2271730485805220e+01
+2.1504769778948699e+01
+-6.2339303000990270e+01
+1.5648620815723723e+01
+2.1635912950549454e+01
+-5.9656376035331370e+01
+1.5586996235471151e+01
+2.1817514641393014e+01
+-5.9983320643620338e+01
+1.7275094071925146e+01
+2.2503566356781715e+01
+-6.1968673480653422e+01
+-3.0069994415805912e+01
+4.6753552100969786e+00
+-4.0711438366484302e+01
+1.1013927520001200e+01
+1.9591119023755596e+01
+-5.7712145955127326e+01
+-1.9831759170402425e+01
+7.1105952702045689e+00
+-4.2261534022070023e+01
+4.1596307107149135e+00
+1.5876422541340689e+01
+-5.4270123848142198e+01
+-2.0527064721312929e+01
+5.8884470965765772e+00
+-4.0497982736445955e+01
+-2.8953247225710129e+01
+3.5498560089552034e+00
+-3.9122584169262083e+01
+-4.7952815601974956e+00
+1.0565795783228074e+01
+-4.7095159901425070e+01
+-1.2320405458461638e+01
+6.7378611370972603e+00
+-4.0380777593663581e+01
+6.3749056535137392e+00
+1.4155641636539242e+01
+-5.1328468195641562e+01
+6.3875479012714855e+00
+1.4079603589748972e+01
+-5.1088078861955829e+01
+7.0760726743378797e+00
+1.4293717558370320e+01
+-5.1523570708903542e+01
+4.2450012911542059e+00
+1.3174992824015344e+01
+-5.0016660012447502e+01
+5.6540408964220008e+00
+1.2813412861217190e+01
+-5.0058967963755599e+01
+-6.1599177260953564e+00
+8.0001208949791813e+00
+-4.2898092361177632e+01
+-1.2794781853129360e+01
+5.0757672378087042e+00
+-3.9173384028070870e+01
+-1.3153839780703949e+01
+4.2901664897015488e+00
+-3.6662942520575804e+01
+-1.4247822638021159e+01
+3.3744576034692488e+00
+-3.4567181262728205e+01
+-1.2246433054362234e+01
+4.8962841359976030e+00
+-3.9073170572666406e+01
+-1.8962082892072711e+01
+2.4454134997385792e+00
+-3.6882220094763980e+01
+3.1740054895440388e+00
+1.0337141283202605e+01
+-4.5812951771942309e+01
+-1.1922666765341768e+01
+3.9913562150186075e+00
+-3.7728496350133462e+01
+-1.2051936731596145e+01
+3.9213625212169836e+00
+-3.7476683736189862e+01
+2.7854913292369847e+00
+9.4233840009980110e+00
+-4.5260443606498853e+01
+3.4429446586937877e+00
+9.5177557410787053e+00
+-4.5709938440266022e+01
+3.3187616873328345e+00
+9.3585939827868803e+00
+-4.5698290348440153e+01
+4.6732234174735243e+00
+9.5762754973805766e+00
+-4.5506862621497355e+01
+-3.2445846082275245e+00
+6.5518421844045376e+00
+-4.1462484464723538e+01
+3.9942919214586516e+00
+9.3636496074062574e+00
+-4.5643633362766359e+01
+4.0430724970960732e+00
+9.1032951665359239e+00
+-4.4937507283985482e+01
+4.6983881425121625e+00
+9.8466398991666946e+00
+-4.7178679093318522e+01
+2.9029268291156050e+00
+8.5741433017850142e+00
+-4.4150850390490717e+01
+9.8185739224660367e+00
+1.0951294251940157e+01
+-4.9578217727785876e+01
+7.7168674123730323e+00
+9.6120330727004806e+00
+-4.5131076442021239e+01
+1.3534279687529203e+01
+9.9402588415332502e+00
+-3.8399695822086464e+01
+7.6030791994708631e+00
+9.1421639711113212e+00
+-4.5056649283449772e+01
+-5.7623262419024872e+00
+4.0791150194430390e+00
+-3.8073669309649098e+01
+7.5006458686454733e+00
+9.0628552662225506e+00
+-4.5792947469372876e+01
+-1.3854553922061578e+01
+3.5164551932850774e-01
+-2.9877316621924980e+01
+-7.0307534896225254e+00
+2.6800019134774704e+00
+-3.5816072623415984e+01
+-2.9442833618986852e-01
+2.4306879639797412e+00
+-2.1845112423741572e+01
+9.2239954417224137e+00
+6.6910134951031210e+00
+-4.1993647156729175e+01
+3.9744925671298774e+00
+3.3534256927072286e+00
+-2.3117965880737724e+01
+9.1693711136053775e+00
+5.8438378228669041e+00
+-4.0952152253841803e+01
+1.2069240879600565e+01
+6.0220107454518121e+00
+-2.9705545069333539e+01
+-2.4863341541947329e-01
+1.0170266166232145e+00
+-2.1028100762895690e+01
+4.8382874485775700e+00
+2.2149469075832475e+00
+-2.2686661941671716e+01
+4.8435013389424411e+00
+2.2206631581911118e+00
+-2.2720456763370802e+01
+3.9695036986076477e+00
+1.9825354001143569e+00
+-2.2662617229853218e+01
+-2.6297114319386483e+00
+-1.0769991167158699e-01
+-2.3006461311435558e+01
+3.5480547623796550e+00
+1.4200540445427952e+00
+-2.1089292727713538e+01
+2.4419889367005143e+00
+1.0376700840698352e+00
+-2.0467185428995663e+01
+4.7134443266299346e+00
+1.6583750679406277e+00
+-2.2128143007848848e+01
+4.8093426317291401e+00
+1.6530096564409711e+00
+-2.2139845982056460e+01
+-7.8465266648140259e+00
+-2.2879383339716810e+00
+-2.8754866978852139e+01
+-7.5370280103961704e+00
+-2.3428447693903514e+00
+-2.9257695974868376e+01
+-7.6624082669834170e-02
+-2.9896795556192113e-01
+-2.1118916478948329e+01
+1.3029106883824207e+01
+3.3897415957384509e+00
+-3.0561657712321814e+01
+2.5775316897106588e+00
+4.0800265443082412e-01
+-2.0372156079332719e+01
+1.3891520474755048e+00
+1.9487150838322677e-02
+-2.0351086573805482e+01
+9.1563250340571167e-01
+-3.4098646586541004e-01
+-2.0426919450767503e+01
+1.3072831454138617e+01
+2.9655372912097144e+00
+-3.0478941934309479e+01
+-1.6576128659055723e+01
+-6.1320156360995846e+00
+-2.5136139732845628e+01
+1.0639781228387837e+00
+-6.2303837818470542e-01
+-2.0393410409055875e+01
+1.9196482365277951e+00
+-2.7365338306432518e-01
+-2.0343735192917034e+01
+4.7400961722847390e-01
+-8.0591959343210651e-01
+-2.0991810029024542e+01
+9.7709924048404084e-01
+-7.3759928682890519e-01
+-2.0409981914033992e+01
+4.9633180061919511e+00
+3.6775383077766260e-01
+-2.1939690176977305e+01
+3.3877791302754883e+00
+-1.0380755861158221e-01
+-2.1038744076100276e+01
+5.2188161176696051e+00
+2.0894392992899108e-01
+-2.2344171506620714e+01
+5.2188161176696051e+00
+2.0894392992899108e-01
+-2.2344171506620714e+01
+8.5262592218244238e-01
+-1.2139089036305277e+00
+-2.0696053098375689e+01
+1.5021396673624599e+00
+-1.0300719064466410e+00
+-2.0478528979597101e+01
+5.5896794547843376e+00
+-1.6571262922388669e-02
+-2.2646491669900808e+01
+-6.4602893551791816e+00
+-4.2169801760240144e+00
+-2.6354572288240917e+01
+-4.1497914183978094e-02
+-1.7770643254648604e+00
+-2.0535865249236043e+01
+-2.7574767726996581e+00
+-2.8961697995069802e+00
+-2.3164580110059969e+01
+6.2868266506964590e+00
+-1.5253005829630845e-01
+-2.3291551026114899e+01
+1.6873265632564900e+00
+-1.4926402574578477e+00
+-2.0420298598893130e+01
+4.7205117312417189e+00
+-6.9102261788815522e-01
+-2.1662880791361385e+01
+-1.4324543065249754e-01
+-2.4521547945060567e+00
+-2.0252937145372396e+01
+-9.7438163092908372e+00
+-5.8992625362872717e+00
+-2.1224608385241147e+01
+5.0886231834656170e+00
+-1.1090305528163142e+00
+-2.1585799896830977e+01
+-1.4513300490740331e+01
+-7.8555607923221267e+00
+-2.2830610794007534e+01
+1.4388685054393129e+01
+4.6263423020830885e-01
+-3.0866197521650090e+01
+-9.5460202887515671e+00
+-6.1574561891458668e+00
+-2.1284856641838218e+01
+1.4331840617953953e+01
+-1.1658088302939267e-01
+-3.2580616957473161e+01
+5.1982121905776104e+00
+-1.7063863230807019e+00
+-2.1350163283535647e+01
+-6.1946624560298025e+00
+-5.9266577604502686e+00
+-2.4452871544740599e+01
+1.4520464643591486e+01
+-5.8296237017465635e-01
+-3.2752754264651998e+01
+1.4270875622362935e+01
+-7.8230477927065600e-01
+-3.0652329797811593e+01
+-8.2711670048774604e+00
+-6.9301481617811627e+00
+-2.2590580252485406e+01
+4.5396670946045825e+00
+-2.2865648199814310e+00
+-2.0577019107669486e+01
+1.4431069311329402e+01
+-7.9116248088798591e-01
+-2.9767769753399609e+01
+1.4136748788673756e+01
+-9.2071945293706015e-01
+-3.0008246667513234e+01
+-5.4358392222330840e+00
+-6.4322955767769310e+00
+-2.3784827211938097e+01
+4.2440451592235231e+00
+-2.5357762543099693e+00
+-2.0381943899871843e+01
+-8.0625214748325416e+00
+-6.9722257843630757e+00
+-2.1881549538738110e+01
+-5.5644730357784704e+00
+-6.5916486327404051e+00
+-2.3579910714914277e+01
+-8.2632022297316166e+00
+-7.1999540853645598e+00
+-2.1526532810152016e+01
+4.2180094416634839e+00
+-2.9842114745014854e+00
+-2.0638121205408662e+01
+4.2180094416634839e+00
+-2.9842114745014854e+00
+-2.0638121205408662e+01
+4.3805452835623546e+00
+-3.2658297254089890e+00
+-2.1177036278754436e+01
+-7.8691110089237952e+00
+-7.4927228984706327e+00
+-2.1357359727716499e+01
+-7.8691110089237952e+00
+-7.4927228984706327e+00
+-2.1357359727716499e+01
+-6.2818480124389797e+00
+-7.0190364326807186e+00
+-2.1666434698820478e+01
+1.2831906314298392e+01
+-2.2253007447011481e+00
+-2.9104309496880251e+01
+1.3276363440686341e+01
+-2.4993368612133655e+00
+-2.9931786029970009e+01
+1.6754429275016096e+00
+-4.4693597484762559e+00
+-2.1134229180894092e+01
+1.7193691871936267e+00
+-4.6163990098535574e+00
+-2.1552717518043053e+01
+4.7064458273196825e+00
+-4.0342140859588307e+00
+-2.2079833588697969e+01
+-1.2135318084946178e+01
+-9.8097197058405552e+00
+-2.0080100694844013e+01
+1.1292075688620473e+01
+-4.3102771502442989e+00
+-2.7150208990934058e+01
+-3.8556746104749737e+00
+-8.0640315729838115e+00
+-2.1541732416797625e+01
+1.2915875454152088e+01
+-4.0340637376193396e+00
+-2.7392856746622680e+01
+2.8053456464501356e+00
+-5.9359582114611271e+00
+-2.1468939788964253e+01
+1.3732900487535392e+01
+-4.1854169369276617e+00
+-2.7956547461491080e+01
+-1.0469814870928619e+01
+-1.0688445749748578e+01
+-1.8702101410116409e+01
+1.3794046133062697e+01
+-4.5022978634739808e+00
+-2.6639939340110534e+01
+-8.9293312825374347e+00
+-1.0586088115606724e+01
+-1.8447341215779257e+01
+3.1170063523115945e+00
+-8.0615057120643456e+00
+-2.1630302526013661e+01
+1.4147931816436376e+01
+2.6653265393693005e+01
+-5.2415924128504550e+01
+1.0619583776744900e+01
+2.5424366254186825e+01
+-5.1599324893386317e+01
+1.0441719735964318e+01
+2.5087927833966244e+01
+-5.0887183130873368e+01
+7.7302632631854271e+00
+2.3681307148671600e+01
+-4.9796320830283570e+01
+9.7292641011155894e+00
+2.4651405766848441e+01
+-5.1037337190697350e+01
+9.5213879236713250e+00
+2.4309060699701419e+01
+-5.0145903361734476e+01
+1.0123660361636064e+01
+2.4407019655373894e+01
+-5.0249153952948696e+01
+-1.2336771447443921e+01
+1.3839478715712600e+01
+-3.8023227759745460e+01
+5.7397731276904533e+00
+2.2391661077985837e+01
+-4.8189328623560179e+01
+5.7823021482851953e+00
+2.2415505721713068e+01
+-4.8286980853709693e+01
+6.1171956352013561e+00
+2.2527320936322905e+01
+-4.8516296054883490e+01
+6.6682874194264885e+00
+2.2760685349052263e+01
+-4.8829590445696340e+01
+7.9245344463983249e+00
+2.4404200678764226e+01
+-5.2254341626593749e+01
+9.2396934206883508e+00
+2.3936530292519180e+01
+-5.0390910914860932e+01
+8.8393081081170894e+00
+2.3454899250318888e+01
+-5.0230386852481530e+01
+1.6602753918942025e+01
+2.6697589590529844e+01
+-5.4024231891160667e+01
+1.6224407703011575e+01
+2.6543459058356742e+01
+-5.3767709860238860e+01
+1.2901220736915374e+01
+2.4687140386738502e+01
+-5.2823702408184793e+01
+1.2910429901685147e+01
+2.4500304829745364e+01
+-5.3318181525610441e+01
+1.6984346970295547e+01
+2.6485387769511060e+01
+-5.6526434508443359e+01
+-2.4702638995931167e+01
+4.9069412003392756e+00
+-2.6066324579587846e+01
+-1.3369345925520740e+01
+1.2359304634790439e+01
+-4.0777628410453708e+01
+-1.5497536600837842e+01
+1.1494937097220893e+01
+-4.0242562870457647e+01
+-3.7449129821128717e+00
+1.6101076632136621e+01
+-4.6391018602958596e+01
+1.2662142408276344e+01
+2.3290965523631890e+01
+-5.6580177629446489e+01
+-1.4410474596192419e+01
+1.0191735163224266e+01
+-4.2388655978730640e+01
+-3.7494264462327243e+00
+1.4615520234670509e+01
+-4.8676155689326748e+01
+9.9325741065815283e+00
+2.0393724016077112e+01
+-5.5590442975472584e+01
+9.9325741065815283e+00
+2.0393724016077112e+01
+-5.5590442975472584e+01
+1.0436485214773022e+01
+2.0293004335422211e+01
+-5.5898947269293359e+01
+4.8466169227612248e+00
+1.7971258523494171e+01
+-5.4204559968466683e+01
+-3.2035191797250761e+01
+5.5100899290190792e+00
+-4.2350357016481155e+01
+5.7183038361333720e+00
+1.7955272448967325e+01
+-5.4091578902191046e+01
+5.7220731591177829e+00
+1.8042072878799011e+01
+-5.4179864881592863e+01
+1.0008889797485628e+01
+1.9776282583367166e+01
+-5.6652232505115506e+01
+1.1044350903596261e+01
+2.1273666928879528e+01
+-6.0576258880604556e+01
+1.0404390195407094e+01
+1.9936765970972790e+01
+-5.6971173453657663e+01
+-3.1195681417078148e+01
+5.1646672817231174e+00
+-4.1456103823679186e+01
+4.6828602000285420e+00
+1.7232108790337758e+01
+-5.3557657937560641e+01
+-3.2136881302911945e+01
+4.5220250674320308e+00
+-4.1020585782716374e+01
+4.5387825845487324e+00
+1.7071918225917763e+01
+-5.4382919488925140e+01
+4.4333397218578403e+00
+1.6949407560944085e+01
+-5.3910022743332455e+01
+9.5866557196398219e+00
+1.8892181189116044e+01
+-5.6835701226398548e+01
+-1.8886423638851073e+00
+1.1141472922390932e+01
+-4.7784503833486646e+01
+-1.8954233044568230e+01
+4.7381572930689124e+00
+-3.8762509652082890e+01
+7.5588431192360668e+00
+1.4461848134526068e+01
+-5.3497430851337249e+01
+6.7454417325268130e+00
+1.3753339580558089e+01
+-5.0959060279186730e+01
+6.8266079534149435e+00
+1.3671591808741981e+01
+-5.0908135578654615e+01
+-1.8159716928999757e+01
+3.1488079800288786e+00
+-3.7727945791688981e+01
+-1.2850540156666398e+01
+4.8929940126066489e+00
+-3.8833203770365593e+01
+-1.9724672155918867e+01
+1.7552220633331763e+00
+-3.5097455259571291e+01
+-1.9724672155918867e+01
+1.7552220633331763e+00
+-3.5097455259571291e+01
+3.5835411084760387e+00
+1.0237849979568157e+01
+-4.5946898547918522e+01
+3.1681126072299497e+00
+1.0335962211751342e+01
+-4.7491915836358444e+01
+-1.8262274761451231e+01
+1.9553444571529350e+00
+-3.5860241413450716e+01
+2.4745272341177404e+00
+9.1089103994126646e+00
+-4.5140838383293897e+01
+2.9165001731449620e+00
+9.3102054827542471e+00
+-4.5567285144708300e+01
+1.3263248318665180e+01
+1.0297300537151360e+01
+-3.7576047837264362e+01
+3.0912561326165506e+00
+8.5610670637973740e+00
+-4.5089733285451402e+01
+3.0127693784625404e+00
+8.6574823513308239e+00
+-4.4671778238421403e+01
+3.9800360109792376e+00
+8.7511769272980846e+00
+-4.5126095919966872e+01
+2.8886554609197881e+00
+8.1779423099075679e+00
+-4.3903226610486222e+01
+1.4524000447612314e+01
+1.1520356542571584e+01
+-4.5760017230105369e+01
+8.9244746650179962e+00
+9.6842795464014504e+00
+-4.6048036397491714e+01
+7.8040655431441257e+00
+9.1416182147059537e+00
+-4.4998819897385104e+01
+-7.7546106571929814e+00
+2.7049859819690756e+00
+-3.6205064650529913e+01
+1.9578799937680774e-01
+3.0272113209613019e+00
+-2.2160889730655523e+01
+8.7379003746749628e+00
+8.1252180205962965e+00
+-4.3956403990263723e+01
+-1.4978136003179223e+01
+-1.2314951673791322e-01
+-3.2387612340381729e+01
+-7.9394803120450037e+00
+1.6020958190663244e+00
+-3.4603822100177872e+01
+-1.2906216488686677e+00
+2.1448690013900156e+00
+-2.2829847042540923e+01
+9.3303977662327444e+00
+5.7424492927604236e+00
+-4.0837326167504692e+01
+9.4056240075456232e-01
+1.6710022085510425e+00
+-2.0718499783863688e+01
+9.4633865302672648e-01
+1.7200622826824463e+00
+-2.1133380990867590e+01
+4.1884287603931298e+00
+2.4555249607702416e+00
+-2.2214932914663262e+01
+1.5568043002028316e+00
+1.6841218106898799e+00
+-2.1163099023137171e+01
+2.2104367617876663e+00
+1.5807110597525995e+00
+-2.0640063804919315e+01
+-8.2484005926909454e+00
+-1.6238950409432291e+00
+-3.0186053714948560e+01
+3.0896987778272145e+00
+1.3924686053823367e+00
+-2.0856591154802150e+01
+-7.9815522408027171e+00
+-1.9470889185955977e+00
+-2.9629299505559690e+01
+-7.4765693418978652e+00
+-2.5017861372399803e+00
+-2.9107308230258937e+01
+3.7216108640591479e+00
+8.1001684813277508e-01
+-2.1029807888856752e+01
+-8.3610300952489940e+00
+-3.0615993601339531e+00
+-2.8475077289269247e+01
+-7.8265963346675118e+00
+-2.9917366500967173e+00
+-2.8530886277717382e+01
+-9.7943222795568374e+00
+-4.0809933045538669e+00
+-2.5109582484296126e+01
+-1.6524120363946555e+01
+-6.3608825340269624e+00
+-2.5098773972210292e+01
+-9.2247400095721943e+00
+-4.3846958549912385e+00
+-2.6187044462972295e+01
+-2.2720141046139478e-01
+-1.2400869213565171e+00
+-2.1016687060599082e+01
+-1.1634826229151795e+01
+-5.0596957778190452e+00
+-2.3239058988529777e+01
+1.3499232651441972e+01
+2.1066147552834384e+00
+-3.0882819207271780e+01
+1.3071434399152859e+00
+-1.0434777508353019e+00
+-2.1117574769608101e+01
+3.0787152838385290e+00
+-5.4849319340109781e-01
+-2.0552245758982078e+01
+7.5227756428855042e+00
+4.6038468234733376e-01
+-2.4561822803414245e+01
+-1.1501540128864566e+01
+-5.4361272292041320e+00
+-2.2759399859703688e+01
+3.2487372641479921e+00
+-6.5099619515024787e-01
+-2.0689238012698851e+01
+-2.7574305139047345e-01
+-1.9249430928377074e+00
+-2.0724081164810997e+01
+7.2173212577479591e+00
+8.5439657533516372e-02
+-2.5586987264497903e+01
+1.3185215331217339e+00
+-1.6281826357782012e+00
+-2.0212575704716606e+01
+2.5820475952397413e+00
+-1.3235474529935389e+00
+-2.0660521803721160e+01
+4.6957022480530117e+00
+-8.2505583994821663e-01
+-2.1500730128435190e+01
+-1.0429280395039532e+01
+-5.8636607276377237e+00
+-2.0951366703943314e+01
+-9.1746831149055534e+00
+-6.2212054040552713e+00
+-2.1595828442237540e+01
+3.9398393198910631e+00
+-1.8892025595097854e+00
+-2.0815078377112965e+01
+2.4325135705891934e+00
+-2.3934432407912278e+00
+-2.0364951138498956e+01
+4.4163557508093582e-01
+-3.0067593817202316e+00
+-1.9997264755583554e+01
+1.6965562211080443e+00
+-2.7545368272568509e+00
+-1.9845307873682941e+01
+1.4277844994117691e+01
+-9.3425913770753344e-01
+-3.1420861329208680e+01
+-1.3461649096688294e+01
+-8.7509828521665582e+00
+-2.1594244992654961e+01
+1.4340131678395130e+01
+-9.3754244232602191e-01
+-3.0688269981724730e+01
+1.4154116542978100e+01
+-9.3409117296635424e-01
+-3.0395336622769339e+01
+-8.3197726332868918e+00
+-7.0590223637809721e+00
+-2.2027537659780599e+01
+-5.2820601879483728e+00
+-6.4311572653149032e+00
+-2.3840101300097629e+01
+1.4836487649009669e+01
+-1.0913798127449275e+00
+-3.2206899224275261e+01
+-5.1587039268572328e+00
+-6.4586395381132569e+00
+-2.3886665461710550e+01
+-6.8113439633693735e+00
+-6.8912919648462392e+00
+-2.2661039933114179e+01
+-4.8765427337414566e+00
+-6.4989931940613763e+00
+-2.3678542204077964e+01
+1.4667291186316872e+01
+-1.7510768204744536e+00
+-3.0165879924157796e+01
+4.4108784140971320e+00
+-3.3514484448205959e+00
+-2.1242326386772177e+01
+6.6391404457782901e+00
+-3.3586059887873407e+00
+-2.4089517942682765e+01
+-1.1985490618032184e+01
+-9.1634302598124204e+00
+-2.0803325712814178e+01
+-1.2763119475722171e+01
+-9.4221241235977775e+00
+-2.0550013297009329e+01
+-1.2319204870111436e+01
+-9.2763568013825335e+00
+-2.0725869769440095e+01
+-1.1400732461872531e+01
+-9.0916107183254908e+00
+-2.0723469379021406e+01
+6.4939303833972897e+00
+-3.6091512089672859e+00
+-2.4055658602973683e+01
+3.6848970430547472e+00
+-4.6356990332859773e+00
+-2.2063481065647693e+01
+-1.1517069618844269e+01
+-9.9556535575856646e+00
+-1.9775732472007185e+01
+-6.4064499551211984e+00
+-8.4380659949300068e+00
+-2.0771239602168293e+01
+-3.9240488720891076e+00
+-7.8305812262633268e+00
+-2.1921549212833941e+01
+-1.1393757167155496e+01
+-1.0510812164079288e+01
+-1.9110852134233500e+01
+-3.1761958230961196e+00
+-8.2060034552357646e+00
+-2.1381766320240530e+01
+-5.0029913636963022e+00
+-8.9899759604483815e+00
+-2.0235617771581765e+01
+1.3284096094287028e+01
+-4.6733820184252490e+00
+-2.6728096012626146e+01
+-4.0948640320936889e+00
+-8.8390411846261863e+00
+-2.0436581409045871e+01
+9.0571457231252079e+00
+-5.9279480221431582e+00
+-2.4692754176887910e+01
+1.0356971894762825e+00
+-8.2269063544766201e+00
+-2.1211713104888169e+01
+2.2508555017161941e-01
+1.9706400942720119e+01
+-4.2995175200395103e+01
+1.3279031861209866e+01
+2.6198465286504774e+01
+-5.1452100559245999e+01
+1.5720752594564415e+01
+2.7302195810094499e+01
+-5.3277148068853471e+01
+7.7797502728588412e+00
+2.3816184389285745e+01
+-4.9284141312569417e+01
+5.7197020827985279e+00
+2.2563982140721606e+01
+-4.8021092148879923e+01
+5.7044647800355044e+00
+2.2572137044729960e+01
+-4.8078276541804719e+01
+5.7470481875911554e+00
+2.2545271359221559e+01
+-4.7981791088503712e+01
+8.5096546119915732e+00
+2.3805997471281177e+01
+-5.0397528312168525e+01
+7.9608399344849303e+00
+2.3795171773711385e+01
+-5.0771989190097422e+01
+8.3971863879983673e+00
+2.3079116444133952e+01
+-5.0420701632648324e+01
+8.1020716964951287e+00
+2.2520720811855462e+01
+-4.8980211486099535e+01
+-1.3704547551230426e+01
+1.2722924424697583e+01
+-3.9728482237243348e+01
+8.2464831065179958e+00
+2.2286722085844190e+01
+-5.0594484312893442e+01
+6.0550196422152636e-01
+1.8441663639011111e+01
+-4.7819999147216848e+01
+-2.4466275425293876e+01
+4.6722227500456270e+00
+-2.6107775210625690e+01
+-1.0054593126420503e+01
+1.3084396700776161e+01
+-4.3475390563467649e+01
+1.0361214634840346e+01
+2.1152728403662145e+01
+-5.5155688697585241e+01
+4.2396247810915373e+00
+1.6614857171096730e+01
+-5.4057613890805030e+01
+4.7804982200815633e+00
+1.6933219566725068e+01
+-5.4559265083008093e+01
+1.3413195719366275e+01
+2.0171562546583711e+01
+-5.8281969126855678e+01
+-2.9383641322761530e+01
+3.5595730940894783e+00
+-3.9342298839084592e+01
+-2.9616522515062147e+01
+3.4304603081580907e+00
+-3.9054717822691487e+01
+-4.8105755350253308e+00
+1.1639314362458350e+01
+-4.8299243545837271e+01
+5.6205841215484380e+00
+1.3743710129757307e+01
+-5.0869594349417781e+01
+6.8260194637737541e+00
+1.4009156507043237e+01
+-5.1147551917593617e+01
+4.4766627161685859e+00
+1.2876123877179781e+01
+-4.9664459353404922e+01
+-9.6453481377722667e+00
+7.2624723807819089e+00
+-4.2532829685196781e+01
+6.7704468085761009e+00
+1.3307314553361199e+01
+-5.0360866175322322e+01
+7.3614694814896078e+00
+1.3507311660361578e+01
+-5.0699445875669298e+01
+7.2948522985726214e+00
+1.3508228301956935e+01
+-5.0541630607345446e+01
+-9.1957405644429144e+00
+6.6595780313453563e+00
+-4.0825771749057196e+01
+-1.2581398179634924e+01
+5.0502826123550149e+00
+-3.9476538084098728e+01
+3.7349026192247186e+00
+1.1049963403566236e+01
+-4.6992244227802495e+01
+4.0236276455179238e+00
+1.0699692077480783e+01
+-4.6492910484663078e+01
+-1.4621024598908269e+01
+1.1852124231312364e+00
+-3.0431619612870847e+01
+7.9234555619570184e+00
+9.5128706575134689e+00
+-4.5442051693940790e+01
+-9.1491291481150672e+00
+2.7855635786450277e+00
+-3.6045987732483539e+01
+-2.0551666317475901e+00
+3.0655445630643987e+00
+-2.6159630636439704e+01
+-3.1150413721049302e+00
+2.9280431735788595e+00
+-2.7573049642383697e+01
+9.2286951466513276e+00
+7.3529162553958614e+00
+-4.2468506956610497e+01
+-5.0010159755573276e-02
+1.6668336963592043e+00
+-2.1217015370471767e+01
+3.8222489618306038e-01
+1.8703312734507485e+00
+-2.1118841500543553e+01
+-2.0180167600377719e-01
+1.2811861343742479e+00
+-2.1107108033133354e+01
+3.2867906797996018e+00
+2.1757190523164840e+00
+-2.1313609674780828e+01
+1.2673896939973273e-01
+8.3290988044420844e-01
+-2.0698077939567877e+01
+8.4577827937185796e-02
+8.4668517670565835e-01
+-2.0781318773175080e+01
+2.4923092804130706e+00
+1.4109593696349845e+00
+-2.0541968949109791e+01
+-9.3577132265715210e+00
+-2.3727388275743722e+00
+-2.9960051402506451e+01
+1.1811988613569082e+00
+4.6089361391919287e-01
+-2.0360048548148118e+01
+4.2059772382451621e+00
+1.2605663998747678e+00
+-2.1653655403192953e+01
+4.0708905177017218e-01
+-3.4970169402326867e-01
+-2.0550116531254883e+01
+2.3790668223802989e+00
+2.5293882960265618e-01
+-2.0293050403711376e+01
+4.7874375258290819e-01
+-9.1568381039155133e-01
+-2.0737164782649746e+01
+3.2651949831052773e+00
+-1.1223234592439689e-01
+-2.0787221068434473e+01
+-1.3268947638747216e+01
+-5.6175705975078705e+00
+-2.5208486682266376e+01
+-1.1511440840497684e+01
+-5.2773932858492598e+00
+-2.3071919296208659e+01
+-9.6963727558290245e+00
+-5.0546394637639320e+00
+-2.3325191069949465e+01
+-1.0918690626232866e+01
+-5.4355846718633130e+00
+-2.3058053077291124e+01
+2.1486088834067512e+00
+-1.2306321734243240e+00
+-2.0600674016745028e+01
+2.1583537749583588e+00
+-1.3620081174027161e+00
+-2.0576445226215267e+01
+4.9367568011650649e+00
+-7.3044596522240479e-01
+-2.1583169912175389e+01
+4.8058298347818340e+00
+-9.7398609794473523e-01
+-2.1299562762607561e+01
+-1.0749576429775951e+01
+-6.1999544988781743e+00
+-2.2008474736844672e+01
+-1.0163988535302495e+01
+-6.1731029240000277e+00
+-2.0335609975650513e+01
+4.8742985900547033e+00
+-1.3992521159064553e+00
+-2.1352665599167363e+01
+-6.7596782261222668e+00
+-5.9126233628589580e+00
+-2.4505931938370694e+01
+-6.7518552390252191e+00
+-5.9151258783961467e+00
+-2.4482421017348202e+01
+-6.3743050865607485e+00
+-5.7797275283688849e+00
+-2.4629955361323223e+01
+-9.9402940365526948e+00
+-6.6382391287224252e+00
+-2.1313630030339915e+01
+-8.5431441396642498e+00
+-6.2499914877924221e+00
+-2.1727647312489463e+01
+-6.7918277187567986e+00
+-6.0482475953387729e+00
+-2.4286526856576515e+01
+2.3331164278465626e+00
+-2.4943920397807875e+00
+-2.0202994414432887e+01
+-8.5655755724422153e+00
+-6.3764781349966153e+00
+-2.1451184296448567e+01
+1.8519820728914465e+00
+-2.8517766620407650e+00
+-1.9720165819753117e+01
+-1.2586138873005076e+01
+-8.3697231539896215e+00
+-2.1869289522845413e+01
+-7.8105172162543610e+00
+-6.8177579319734978e+00
+-2.1254462938982236e+01
+-7.9926365623295412e+00
+-6.8912236500636315e+00
+-2.0753023706052925e+01
+-7.9953917860913135e+00
+-6.9135034542351592e+00
+-2.0802649358156597e+01
+-5.2411154942655109e+00
+-6.5762078486563551e+00
+-2.3888642450133304e+01
+-5.1646546801028252e+00
+-6.5140820141677418e+00
+-2.3565528111566870e+01
+-5.0134501520431369e+00
+-6.6056781347835170e+00
+-2.3617229609893549e+01
+2.3821570090579636e+00
+-3.5236956741020937e+00
+-2.0279198286523034e+01
+-5.1559629302560026e+00
+-6.8545890872765591e+00
+-2.3346509334048690e+01
+1.2908765219726012e+01
+-2.1838473625348076e+00
+-2.9771565578901043e+01
+-6.8415509192609552e+00
+-7.3063802878006809e+00
+-2.2331536045136684e+01
+-6.7279018121874570e+00
+-7.4080705180900521e+00
+-2.2351091617784270e+01
+-1.0334676403466305e+00
+-5.7464684603976171e+00
+-2.2257370594859399e+01
+1.3621445845606074e+01
+-2.8597346123534990e+00
+-2.9572884771963619e+01
+5.7462880731608061e+00
+-4.0591178709367162e+00
+-2.3203891531638021e+01
+1.1364188035556037e+01
+-5.4711770092808578e+00
+-2.5077462070711341e+01
+8.9387447507838012e+00
+2.3941231332918406e+01
+-4.9705706169770757e+01
+1.2649030513569620e+01
+2.4990480055573570e+01
+-5.7564742219378005e+01
+-7.2549461689138024e+00
+1.4283544994734150e+01
+-4.4017271864141236e+01
+1.0217580891014391e+01
+2.0494217614291511e+01
+-5.5427465703680042e+01
+1.4683075435380257e+01
+2.1811701431025458e+01
+-5.8025949076767716e+01
+-2.0528962564994011e+01
+1.2684753610099753e+00
+-3.4317956652294924e+01
+2.9338723006315268e+00
+3.8777174502348104e+00
+-2.3773300188111296e+01
+-9.6028276324629069e-02
+2.6495822464245573e+00
+-2.2040485424345864e+01
+1.1666544301883254e+01
+7.6520648409434093e+00
+-4.3994449003314138e+01
+1.2357234501004969e+01
+6.1121381592359851e+00
+-3.0096686146495820e+01
+1.6670938857943815e-01
+1.5130124924082629e+00
+-2.0969797841627607e+01
+-2.1543819811192075e-01
+-2.9513387994757045e-01
+-2.0836915657718698e+01
+1.2952068225275314e+01
+3.4375940396580842e+00
+-2.9886447034235360e+01
+2.7369575819937362e+00
+3.4456940297779132e-01
+-2.0511715115056866e+01
+-1.3706366373665860e+01
+-5.3497589667345391e+00
+-2.5376765985900800e+01
+-1.1728166577677236e-01
+-1.0319375516999658e+00
+-2.0967806861022012e+01
+-1.0664116716587481e-01
+-1.0424322000554023e+00
+-2.0847083838649436e+01
+-1.1372293985089772e+01
+-5.3989687021727377e+00
+-2.3394784105255933e+01
+-5.8142150589910528e+00
+-4.0064131889531431e+00
+-2.6217142977821972e+01
+-1.1890305001076105e+00
+-2.2360590908795714e+00
+-2.0453558583916873e+01
+-1.2536540439805540e+01
+-6.3759143150848212e+00
+-2.4048271449138262e+01
+5.0912526328885122e+00
+-8.0077821578968145e-01
+-2.1637649594775013e+01
+2.5958928362156679e+00
+-1.6531187704914789e+00
+-2.0270557915936035e+01
+-1.1935119540367687e+01
+-6.7344167434002236e+00
+-2.2814946988949643e+01
+-6.5223515880532608e+00
+-5.9104723692883248e+00
+-2.4502320610525828e+01
+1.9480966151340826e+00
+-2.7038310475720442e+00
+-1.9929181194247036e+01
+-7.7707761386884489e+00
+-6.6031875070051420e+00
+-2.1787617784894422e+01
+-7.0752671824877993e+00
+-6.6767914564648780e+00
+-2.3589339992320649e+01
+-6.7574282119177465e+00
+-6.5920483324945289e+00
+-2.2271416752658919e+01
+-5.6117708686087733e+00
+-6.7619638390830072e+00
+-2.3458914875573651e+01
+-5.5688298551402378e+00
+-6.7546018721725440e+00
+-2.3310908330354774e+01
+2.1948162064982077e+00
+-3.5095949606045460e+00
+-2.0323701867991065e+01
+1.3183472214778586e+01
+-2.3921706388002493e+00
+-2.9316326217410463e+01
+-4.3336753563029022e+00
+-6.9068087912829599e+00
+-2.3267561513593431e+01
+2.0430277586060170e+00
+-4.2404449118157537e+00
+-2.1170009946258507e+01
+1.0358858171807530e+01
+-3.6131348835833950e+00
+-2.7892557988000782e+01
+-6.8025712349099665e+00
+-9.1363850939045221e+00
+-1.9916620245886779e+01
+1.3110168500784269e+01
+-4.3804797963861581e+00
+-2.6878850779368207e+01
+1.3383663796882423e+01
+-4.9184494058272712e+00
+-2.7011977574903479e+01
+1.0921872816734831e+01
+-6.4449809359005918e+00
+-2.3804507833000091e+01
+1.3465107544077918e+01
+2.1628573968703495e+01
+-5.7128941987481525e+01
+-1.3251910555000681e+01
+5.1780883881839861e+00
+-3.7989409553037234e+01
+9.3733185236286918e+00
+9.9151115922375634e+00
+-4.7352973404517897e+01
+-3.1845976381845958e-01
+3.6464303787051039e-02
+-2.0939360546190770e+01
+2.3469643877128075e+00
+6.3939410436557487e-01
+-2.0408824376521864e+01
+1.6928084498557125e+00
+-3.4507340328743019e-01
+-2.0148179033496859e+01
+1.7266726164375947e+00
+-3.0583418297921755e-01
+-2.1080646022596881e+01
+-1.1500591398420644e+01
+-5.1906166154005575e+00
+-2.3496038591944572e+01
+-1.0504849374316750e+01
+-5.7758224404025995e+00
+-2.1265945234767702e+01
+-2.5377772427819840e+00
+-3.5726646987058110e+00
+-2.3498604445198016e+01
+-9.5254330487554775e+00
+-5.8899112476999838e+00
+-2.1621795078196531e+01
+2.6856258269043773e+00
+-1.8288016643761409e+00
+-2.0243767153620681e+01
+-1.3839581245284862e+01
+-7.9286328454476722e+00
+-2.2700945525663592e+01
+1.3131419717311235e+00
+-2.8624748422933530e+00
+-1.9647297071141629e+01
+-8.6496406000505814e+00
+-6.5497851619294423e+00
+-2.1354713638188738e+01
+-2.4548731071830532e+00
+-4.7848747318409597e+00
+-2.3466697610720331e+01
+2.9396875795490391e+00
+-2.8210738792339125e+00
+-1.9745011410733515e+01
+5.3826299984266592e+00
+-3.6034717041875663e+00
+-2.2280137881879359e+01
+4.9224315132390677e+00
+-4.6485269481804892e+00
+-2.2724390121053158e+01
+1.3493049748716995e+01
+-4.6873904539401927e+00
+-2.7330647299091126e+01
+7.2606427473118309e+00
+2.2199658350461270e+01
+-5.2245847741729115e+01
+-1.6643702310888977e+00
+1.6589873326351064e+01
+-5.0117274746659007e+01
+5.2292627758888202e+00
+1.7693842169702190e+01
+-5.3701361341518357e+01
+5.1590920763986805e+00
+1.7585503617602782e+01
+-5.3380519213572036e+01
+1.4804040901401873e+01
+2.2520999976694778e+01
+-6.2557658367334547e+01
+2.5938584817714955e-01
+-8.5151446464983294e-02
+-2.0636439383415784e+01
+-1.1449536024708667e+01
+-6.1085322941050846e+00
+-2.2058676791976449e+01
+3.2517380656040098e+00
+-2.2862387648293714e+00
+-2.0412179073567785e+01
+4.7501773833526464e+00
+-2.4864209949554152e+00
+-2.0567651540866784e+01
+-1.2229757796457152e+01
+-9.2350497778191052e+00
+-2.0790092208770524e+01
+-1.2170646084890958e+01
+-9.5614387901411515e+00
+-2.0191353407622447e+01
+-6.9787891525876136e+00
+-8.8964007844821893e+00
+-2.0335940353745947e+01
+-6.9787891525876136e+00
+-8.8964007844821893e+00
+-2.0335940353745947e+01
+1.3877944908632282e+01
+-4.4683643218144882e+00
+-2.8130521105585530e+01
+4.8394706185420846e+00
+1.9756049766086221e+01
+-5.0666773141077520e+01
+-1.2418215037557600e+01
+-8.5476612140522885e+00
+-2.1533364351088107e+01
+-1.1787238487548400e+01
+-9.6781844835520268e+00
+-2.0167333231355496e+01
+4.7704549381498462e-01
+-5.6203134677908571e+00
+-2.2241549733832819e+01
+1.1518478407126906e+01
+2.3248110168099313e+01
+-5.3905283751790108e+01
+-1.1118286480077359e+01
+1.2058373311468300e+01
+-4.3127438106262311e+01
+1.2798919008559967e+01
+2.3471459643034137e+01
+-5.3938868502215776e+01
+1.8222850661440153e+00
+-1.4354574187799847e+00
+-2.0507234364917114e+01
+2.8715697481526283e+00
+-1.9909530995384823e+00
+-2.0670855482971827e+01
+6.7771263608660846e+00
+1.8940877889622215e+01
+-5.3979534423018436e+01
+4.4113436725808217e+00
+-1.5532091660850447e+00
+-2.1087813579501859e+01
+-7.7421074056308843e+00
+1.5518353610534472e+01
+-3.9774788935941260e+01
+-8.3758589995040733e+00
+1.2994434204577708e+01
+-4.4947983380165773e+01
+-2.4496709588182930e+00
+2.6430989305710035e+01
+-3.9849107382147324e+01
+8.7116712997926449e+00
+2.9959761561853121e+01
+-4.5023281606577427e+01
+7.8162858840619052e+00
+2.8549736657026457e+01
+-4.3373690728800170e+01
+1.4833155068645102e+01
+3.1575006221893815e+01
+-4.7850149039691075e+01
+1.0010977643174558e+01
+2.9319028344060378e+01
+-4.4883166001134079e+01
+1.8530219338726255e+00
+2.6103851722430740e+01
+-4.0662365239079243e+01
+6.6964033297062175e-01
+2.6032537635416112e+01
+-4.0647992308363513e+01
+9.5621435731942341e+00
+2.8700090663793663e+01
+-4.4359251391539750e+01
+1.5001605884421181e+01
+3.0873217767497358e+01
+-4.7979897971430546e+01
+9.9332670772736940e+00
+2.8755607681198200e+01
+-4.5399001462108394e+01
+1.8997740153313045e+00
+2.6497716693071279e+01
+-4.1933854168879279e+01
+9.3683909225287927e+00
+2.7334852784189181e+01
+-4.3998666540224107e+01
+4.8662294407840543e+00
+2.7160510617720554e+01
+-4.3851481428453695e+01
+-1.0468792107307137e+00
+2.4475204091568916e+01
+-3.9872186771426165e+01
+9.5460978554862432e+00
+2.8690425204609369e+01
+-4.6297783603071856e+01
+9.5460978554862432e+00
+2.8690425204609369e+01
+-4.6297783603071856e+01
+-2.5448055393055919e+00
+2.4001821836521010e+01
+-3.9377288808416225e+01
+5.4302202304924760e+00
+2.7112185049774141e+01
+-4.3950609450941378e+01
+4.7719782639915334e+00
+2.6341370186292892e+01
+-4.2918422394938176e+01
+4.6038353638404104e+00
+2.6708355371568086e+01
+-4.3428881358668967e+01
+4.8357936406921009e+00
+2.7094075487975918e+01
+-4.3972422125789755e+01
+1.1917884919686525e+01
+1.5399750948343765e+01
+-2.9063586223632626e+01
+-2.3542290281078704e+00
+2.3990904155584136e+01
+-3.9479068053728668e+01
+1.8430618419000986e+01
+3.1805132349550963e+01
+-5.0914809793045826e+01
+-2.4859984068738555e-01
+2.5068769318183147e+01
+-4.1109645233409907e+01
+3.0030638493693990e-01
+2.5414346018793825e+01
+-4.1658372812265711e+01
+1.8063274798351975e-01
+2.5394576574022192e+01
+-4.1729875087709139e+01
+1.1598401119595572e+01
+1.6043730389786255e+01
+-2.9987411424093619e+01
+3.0405495906241433e+00
+2.5587442768591067e+01
+-4.2120392558348037e+01
+-7.1565472878366947e+00
+2.0331483549718609e+01
+-3.4548543429971609e+01
+-4.2526304378869000e+00
+2.3138243366964161e+01
+-3.8246080304345782e+01
+1.2418085728478878e+00
+2.5001640324219093e+01
+-4.1312788078356675e+01
+-6.5299675573069693e-01
+2.4890889119172506e+01
+-4.1119135522024784e+01
+6.9497212620946724e+00
+2.7181048879421603e+01
+-4.4761123389692521e+01
+7.3560261859594984e+00
+2.7223470131317239e+01
+-4.4680415630534682e+01
+1.5036676639627693e+01
+1.5953230888440588e+01
+-3.0663595087352608e+01
+4.6551533966301548e+00
+2.6144378233712143e+01
+-4.3116120556169179e+01
+3.1511911932574979e+00
+2.6447574226169280e+01
+-4.3592270952928736e+01
+2.9403015979452785e+00
+2.6340476532734257e+01
+-4.3459286659019142e+01
+1.3574776002644109e+01
+1.6759396130905774e+01
+-3.1389568033320312e+01
+1.3493251911619586e+01
+1.6489506648000056e+01
+-3.1003300822912543e+01
+-8.5409034077517418e+00
+2.1431469606123013e+01
+-3.6042329131668943e+01
+1.3255215570689380e+01
+1.5279514254220693e+01
+-2.9380088313366677e+01
+-7.0748260745556024e+00
+2.2483231228684016e+01
+-3.7423438027108354e+01
+6.2807014737089508e+00
+2.7251085793582273e+01
+-4.4934960010891807e+01
+1.2944868826406697e+01
+1.7462903679543079e+01
+-3.2433216604212255e+01
+6.4625354458832662e+00
+2.6540459050038915e+01
+-4.4005875786740575e+01
+6.3332657525844782e+00
+2.6123250461550690e+01
+-4.3241319284089393e+01
+6.7870988077794054e+00
+2.6586566109694001e+01
+-4.4127471512029274e+01
+2.5520712799480511e-01
+2.4728759051062745e+01
+-4.1261688245004905e+01
+6.3279146681756631e+00
+2.6850865027172297e+01
+-4.4387354753691071e+01
+1.2870107984902949e+01
+1.6776477274879447e+01
+-3.1636847126658314e+01
+1.3850302145120454e+01
+1.6070962444946073e+01
+-3.0692014592754674e+01
+5.4576959868599211e+00
+2.6448390008100265e+01
+-4.3871550997467423e+01
+1.2349097413594711e+01
+1.6165963899387503e+01
+-3.0783407994998466e+01
+-1.3372971610228885e+00
+2.4225801680427395e+01
+-4.0569969566704373e+01
+-8.3799357930121110e-01
+2.4005755686262955e+01
+-4.0255661439804356e+01
+-9.0533905175448073e+00
+2.1071943520103954e+01
+-3.5776327673652453e+01
+1.2878457511192551e+01
+1.6487915218124854e+01
+-3.1295301570567663e+01
+-9.9785899345775841e-01
+2.3768555745432586e+01
+-3.9972796724880588e+01
+2.2795828289144984e+00
+2.5536584656394080e+01
+-4.2462902523255387e+01
+2.4453859965312263e+00
+2.5255869354561121e+01
+-4.2193570217312548e+01
+1.2866666975974367e+01
+2.9365087541666778e+01
+-4.8508587425400954e+01
+6.4084120761383137e+00
+2.6370680127731337e+01
+-4.4150597824414007e+01
+6.4084120761383137e+00
+2.6370680127731337e+01
+-4.4150597824414007e+01
+-7.3980671055639515e+00
+2.0956674842970727e+01
+-3.5855488743695929e+01
+7.1381436822702584e+00
+2.6791724371003586e+01
+-4.4668055673783321e+01
+1.5478689138520634e+01
+1.5065845752907689e+01
+-3.0077126494782753e+01
+-6.0147357960534658e+00
+2.1606661956354376e+01
+-3.6871388117105361e+01
+2.8006341862116013e+00
+2.5747721052802138e+01
+-4.3153547217337852e+01
+3.1108850178944349e+00
+2.5728054637894420e+01
+-4.2966434085701358e+01
+6.7480664159825698e+00
+2.6235070417143589e+01
+-4.4022849762947239e+01
+6.8030447522130162e+00
+2.6384210927464544e+01
+-4.4328088186385337e+01
+1.2058498565399658e+01
+1.0119600467257021e+01
+-2.3207778779352306e+01
+3.4211385751900614e-01
+2.4603769760617816e+01
+-4.1523936784177423e+01
+2.0170263199962726e+01
+3.1360583074795862e+01
+-5.1960088070180412e+01
+1.3846657701927031e+01
+2.7970856389349716e+01
+-4.7074121980338198e+01
+1.2159023738497481e+01
+1.5831601262340808e+01
+-3.0782603446987824e+01
+9.0418155117852983e+00
+7.6140938144907384e+00
+-1.9531642485117867e+01
+1.4544069627132066e+01
+2.8834574390140933e+01
+-4.8554248189304438e+01
+1.3075689106103987e+01
+1.7373910835774652e+01
+-3.3030837562024765e+01
+4.6822394611857119e+00
+4.5223042392756039e+00
+-1.5084499090334610e+01
+3.4418779406206212e+00
+2.5753761141306509e+01
+-4.3733681014937076e+01
+3.4236970349275260e+00
+2.5821976227560686e+01
+-4.3667070007835044e+01
+3.1714283654189930e+00
+2.5275295803117817e+01
+-4.2878660152120425e+01
+1.2364830356505827e+01
+1.1715274186002498e+01
+-2.5522874605311063e+01
+1.9865336940267926e+00
+2.4973729872097220e+01
+-4.2571337765691617e+01
+6.1249175344763414e+00
+2.6191944813558756e+01
+-4.4520004467679904e+01
+2.5196555287496412e+00
+2.5389991473204280e+01
+-4.3261026475786046e+01
+1.6270017354145672e+00
+2.4562313882816227e+01
+-4.2112218022990831e+01
+8.5967678772755214e+00
+2.8069875066966265e+01
+-4.7604509087611319e+01
+8.8078690428276847e+00
+8.2727144537804680e+00
+-2.0636590487029615e+01
+1.3524188925255352e+01
+1.1356473212252903e+01
+-2.5527822168163034e+01
+5.7893070344246977e+00
+6.1326166153684669e+00
+-1.7524516517785887e+01
+5.0920104966782276e+00
+5.0594292751565497e+00
+-1.6143107026056580e+01
+1.3380328314048102e+01
+1.1586629915999774e+01
+-2.5890688749559796e+01
+-8.3608617948857955e-01
+2.3837913904343665e+01
+-4.1163046462920455e+01
+6.4394022701892624e+00
+2.5827591314316525e+01
+-4.4477318135499189e+01
+1.2504070597558311e+01
+1.6426863142416327e+01
+-3.1981940374547349e+01
+5.4515256844228563e+00
+5.3878781767492860e+00
+-1.6586444433197602e+01
+1.1904095238973500e+01
+1.5450270835492844e+01
+-3.0922945167727683e+01
+1.5437109589886147e+00
+2.3933353040382045e+01
+-4.1793215607806381e+01
+1.1794261764242236e+01
+1.5526386384060439e+01
+-3.1107314352509530e+01
+4.6210330836105227e+00
+4.2038438127467632e+00
+-1.4968432332773220e+01
+6.2604666569504008e+00
+2.5016734067000826e+01
+-4.3807293544921031e+01
+1.2531968842699817e+01
+1.1184913621273770e+01
+-2.5250180454797380e+01
+1.3193505900698488e+01
+1.0627496301022827e+01
+-2.4743201380141024e+01
+1.2799480904813636e+01
+2.7115041875997868e+01
+-4.7168737612111059e+01
+1.1043934921176103e+01
+2.8716352371055400e+01
+-4.9421194826454915e+01
+9.6667548407639412e+00
+2.6985042397069257e+01
+-4.6807640059903996e+01
+-5.9192702448654344e-01
+2.3494493100633051e+01
+-4.1254267037002002e+01
+-1.0955315024959016e+00
+2.3699658621578855e+01
+-4.1455274680379226e+01
+1.8664686239078030e+00
+2.4393890074105887e+01
+-4.2783493277850127e+01
+5.7778876287586769e+00
+2.6448532558723617e+01
+-4.6213977667569040e+01
+-5.0275093499049801e-02
+2.3875417521824332e+01
+-4.2210071008326807e+01
+9.2471119273167801e+00
+9.1718886450949597e+00
+-2.2562148411789401e+01
+-3.2836866370063764e+00
+2.2565222429656437e+01
+-4.0098240683349147e+01
+1.3032700159233434e+01
+1.4970672348819276e+01
+-3.0828411468197469e+01
+1.8604432692892544e+01
+2.9766178456345436e+01
+-5.2258645633587484e+01
+1.3161931537311238e+01
+1.4869374609703673e+01
+-3.0806743798896072e+01
+1.4698378259143382e+01
+1.5402967335431631e+01
+-3.2118228036871322e+01
+1.7637051721913430e+01
+2.9333679043225992e+01
+-5.1519437685661622e+01
+1.3020974746205491e+01
+1.4815448612096084e+01
+-3.0773254865557181e+01
+1.4080388938126946e+01
+2.8322377078262168e+01
+-4.9685583032275936e+01
+1.4054525215978563e+01
+2.8327896650947508e+01
+-4.9645169970668164e+01
+5.1722782771091600e+00
+4.7661882794556494e+00
+-1.6163735158771463e+01
+1.7860230013716180e+01
+2.8973607804132868e+01
+-5.1089665478249294e+01
+7.0200410859172271e+00
+2.5556061978855038e+01
+-4.5644663160137874e+01
+7.3054797346486566e+00
+2.6010254986148546e+01
+-4.6324599921357866e+01
+1.9020006284269865e+01
+3.1229693500929276e+01
+-5.4863982594160383e+01
+1.9020006284269865e+01
+3.1229693500929276e+01
+-5.4863982594160383e+01
+1.4409819279038400e+01
+1.4402702261972509e+01
+-3.0723368189064551e+01
+-1.0035891772281051e+01
+2.3634746425858864e+01
+-4.1010097599294390e+01
+1.8310148506221910e+01
+2.9531801357842269e+01
+-5.2347829907425407e+01
+-8.3535298468503949e-01
+2.2896569760346591e+01
+-4.1374040365845566e+01
+1.1836628541561442e+01
+1.0499343573734702e+01
+-2.5302465025583171e+01
+1.7865139280795901e+01
+2.8872743206471863e+01
+-5.1470204869449134e+01
+1.3210428716483218e+01
+2.6732082775244830e+01
+-4.8143690916403131e+01
+1.1754917439822758e+01
+1.0551766489197576e+01
+-2.5083573758052463e+01
+-9.7908660862286528e-02
+2.3308046121078359e+01
+-4.2268186966993781e+01
+1.4928484855882532e+01
+1.4589933164017610e+01
+-3.1656355003608834e+01
+1.2571111557650569e+01
+1.3229669722586520e+01
+-2.9216037507691858e+01
+2.1580144082259453e-01
+2.3233001935928570e+01
+-4.2390686598943681e+01
+2.1580144082259453e-01
+2.3233001935928570e+01
+-4.2390686598943681e+01
+1.6163983551625588e+01
+2.8116467604611916e+01
+-5.0861033444961635e+01
+-9.2748846221227659e+00
+1.9803721667737694e+01
+-3.6301777168589332e+01
+1.2443742009692091e+01
+2.7057543842213491e+01
+-4.9075397347581237e+01
+1.3203086270586621e+01
+1.3607819757585636e+01
+-3.0297075564151399e+01
+1.7259742821986148e+01
+2.9020804227422282e+01
+-5.2606383214235727e+01
+1.4527063948580952e+00
+2.3331998984264093e+01
+-4.2945018562815974e+01
+1.2826208147341271e+01
+2.7357894381181190e+01
+-4.9843499668581991e+01
+1.6652794715031444e+01
+2.7960340458121866e+01
+-5.0944579716876881e+01
+1.7219229760792249e+01
+2.8573752336888045e+01
+-5.1845416191331708e+01
+-1.0641296195868227e+01
+1.9166809238944456e+01
+-3.5667787142639071e+01
+1.2492558112805497e+01
+1.0573110236717929e+01
+-2.5969316081007449e+01
+2.8735057933295249e-01
+2.2939035784980863e+01
+-4.2538247148301785e+01
+1.1059170170754962e+01
+2.6504740189164231e+01
+-4.8668948057919579e+01
+2.5409070124464122e+01
+3.3100662706934351e+01
+-6.0216749175008026e+01
+1.5372452776501049e+01
+1.3499708145206570e+01
+-3.0834457953446684e+01
+1.3092953901457010e+01
+1.0880483580026818e+01
+-2.6819271258941903e+01
+-8.9151723664817553e+00
+1.9242401906083376e+01
+-3.6235425979503006e+01
+1.4126148779312922e+01
+1.5427208065794140e+01
+-3.3550538663822124e+01
+-4.3298904396373832e+00
+2.1369010207262964e+01
+-3.9971383543050095e+01
+1.0490452089588157e+01
+2.5400845049252204e+01
+-4.7358028857441724e+01
+1.2984568217841838e+01
+2.8008409822791485e+01
+-5.1643710701609137e+01
+1.3192509686263401e+01
+1.4150110200928792e+01
+-3.1255966267151578e+01
+1.5271869705637878e+01
+1.3561085886406062e+01
+-3.1116060451656494e+01
+-1.7840199716790270e+00
+2.1991587513696008e+01
+-4.1306973374003917e+01
+1.1623958319933665e+01
+2.6576521416731119e+01
+-4.9363707631287831e+01
+1.2858286784435089e+00
+2.3231747906658430e+01
+-4.3509182607240078e+01
+1.3351907435687936e+01
+1.0353817511364397e+01
+-2.6401547063165811e+01
+2.8024360432721938e+01
+3.3487525492949537e+01
+-6.1680749063796256e+01
+-5.3854361318100645e+00
+2.0795083350904793e+01
+-3.9142185880574893e+01
+1.2608644194675623e+01
+1.0406964760718381e+01
+-2.6308139065614245e+01
+4.8153990825463886e+00
+2.4035769536282615e+01
+-4.5195678635911307e+01
+1.4743388312008431e+01
+1.4177400783378312e+01
+-3.2236402389142874e+01
+1.4348163953681450e+01
+9.0136179132110730e+00
+-2.4717231825679608e+01
+1.5408612195551237e+00
+2.3305265992529950e+01
+-4.3905777928435924e+01
+1.3550786907040603e+01
+1.5019206504764769e+01
+-3.3206731125801127e+01
+1.4077415075180699e+01
+8.2612273369277336e+00
+-2.3548274898926280e+01
+1.2775783475782587e+01
+2.6328550697358349e+01
+-4.9771482493176237e+01
+4.2046966464597126e+00
+2.3796760694636685e+01
+-4.5063305505559434e+01
+-4.5595535180247078e+00
+2.1017555523314215e+01
+-4.0148883385236353e+01
+-1.7262368765965106e+00
+2.2046796027663067e+01
+-4.2007286126016041e+01
+-1.5463965239895670e+00
+2.2496858859688672e+01
+-4.2754669543389063e+01
+1.3381820395288146e+00
+2.3131720200121702e+01
+-4.4041741617252192e+01
+1.3381820395288146e+00
+2.3131720200121702e+01
+-4.4041741617252192e+01
+1.2676706372247251e+00
+2.3076966603233974e+01
+-4.3808464125410907e+01
+1.2743577294358133e+00
+2.3561052204481861e+01
+-4.4597466222833404e+01
+-1.0271654891477787e+01
+1.8834434806219129e+01
+-3.6280039711200978e+01
+-1.0271654891477787e+01
+1.8834434806219129e+01
+-3.6280039711200978e+01
+-2.1334671071505795e+00
+2.1595182631034330e+01
+-4.1299472965902623e+01
+2.9186683254423734e+01
+3.3050111182215055e+01
+-6.1902526526570099e+01
+-1.7699153504534970e+00
+2.2329553636416438e+01
+-4.2645253565966357e+01
+-1.7699153504534970e+00
+2.2329553636416438e+01
+-4.2645253565966357e+01
+1.3987121210058048e+01
+9.2824558987795491e+00
+-2.5444432201484616e+01
+1.4761000185422235e+01
+8.2479940180338289e+00
+-2.4069539580276146e+01
+-5.6017390826882796e+00
+2.0600917699944258e+01
+-3.9709667046843670e+01
+-5.6189675321621984e+00
+2.0551185049500912e+01
+-3.9463052122793329e+01
+-8.9922205898947971e-01
+2.2563163718872634e+01
+-4.3280564935482516e+01
+1.4869425581630493e+00
+2.2830212547193874e+01
+-4.3862332420605973e+01
+1.7762186656318711e+01
+2.9236678436611395e+01
+-5.5420476722360227e+01
+-2.6491032301268667e+00
+2.1333140513888367e+01
+-4.1090854933537081e+01
+1.0209942912277901e+01
+2.5586892269071672e+01
+-4.9114233221867408e+01
+1.5650649324148530e+01
+2.6948506143107743e+01
+-5.1539108159265631e+01
+-1.0428213007374762e+01
+1.8684320394980535e+01
+-3.6332268730849066e+01
+2.1303131124425185e+01
+3.0347881534903365e+01
+-5.7737149666341274e+01
+8.5525359319259202e+00
+2.4159668841223986e+01
+-4.6985979914824902e+01
+9.7553331512340868e+00
+2.5182229723558041e+01
+-4.8398981599730128e+01
+1.0311910234219836e+01
+2.5853855317843752e+01
+-4.9608742119980391e+01
+1.4626135749540786e+01
+8.3551135708125255e+00
+-2.4407058401804040e+01
+-1.9505299971687922e+00
+2.1615400916247747e+01
+-4.1887793567607943e+01
+9.6352482560502910e+00
+2.5128263750318389e+01
+-4.8524932010668934e+01
+-1.8297032423245323e+00
+2.1762925369172599e+01
+-4.2280415385695484e+01
+-1.8791647754109322e+00
+2.1687587717820033e+01
+-4.2068075645176592e+01
+9.4613543700869442e+00
+2.4704228894813806e+01
+-4.7903716526644537e+01
+1.2240517207343302e+01
+1.2759221830933059e+01
+-3.0366692838084060e+01
+1.3626841556272117e+01
+1.4071979988212552e+01
+-3.2668623072755423e+01
+-6.4355917199127282e+00
+2.0026380979827209e+01
+-3.9190951469804716e+01
+-1.6623533105296899e+00
+2.1488722785947935e+01
+-4.1922027989999656e+01
+1.8299593541436285e-01
+2.2373879979674800e+01
+-4.3715205986880484e+01
+1.0772023295681375e+01
+2.5532180218134691e+01
+-4.9730601014796775e+01
+1.0772023295681375e+01
+2.5532180218134691e+01
+-4.9730601014796775e+01
+9.8942602997671845e+00
+2.4997574865434231e+01
+-4.8827471183236533e+01
+1.2411449116589544e+01
+9.9279955124884953e+00
+-2.6484566811643138e+01
+-2.9246497964211216e+00
+2.1265061217179458e+01
+-4.1778540283023297e+01
+1.1776165770760697e+01
+2.4402041112370746e+01
+-4.8504709752886036e+01
+9.5746794605212528e+00
+2.4688306320820395e+01
+-4.8576399822707224e+01
+1.3672411694889144e+01
+1.5208074935939443e+01
+-3.5185446871247350e+01
+1.4358582872227986e+01
+1.2366737653301819e+01
+-3.0741466947508716e+01
+-7.2766631628661997e+00
+1.9570339018647360e+01
+-3.8936365984982011e+01
+9.8253019367842906e+00
+6.8973217703229688e+00
+-2.1933483784635150e+01
+1.4206996737545818e+01
+1.3923904778767442e+01
+-3.3469106166861906e+01
+-8.1635023934252668e+00
+1.9179937832611309e+01
+-3.8345177955526552e+01
+9.8974978855604228e+00
+2.5083981781066175e+01
+-4.9768291880450612e+01
+-2.0455444712339252e+00
+2.1044528469300310e+01
+-4.2033066885254463e+01
+1.2902751774495346e+01
+1.1201292066799336e+01
+-2.8989105400869910e+01
+1.1837566862100200e+01
+9.4849150429023066e+00
+-2.6196890909679642e+01
+1.2886662943427719e+01
+7.9957145034754529e+00
+-2.4520082778602514e+01
+1.4117846159639425e+01
+8.5188973220991073e+00
+-2.5463115982940778e+01
+1.4117846159639425e+01
+8.5188973220991073e+00
+-2.5463115982940778e+01
+-8.5298458855657415e+00
+1.8921127221492455e+01
+-3.8288267914372142e+01
+-8.5298458855657415e+00
+1.8921127221492455e+01
+-3.8288267914372142e+01
+-8.5346047535010623e+00
+1.7631121361871138e+01
+-3.6148698722812100e+01
+-2.2415188006656086e+00
+2.1494775521167551e+01
+-4.3172594312513134e+01
+7.3421716281449347e+00
+2.3362619301715675e+01
+-4.7198655984487587e+01
+1.1932495299246282e+01
+7.9848486068212843e+00
+-2.4386067961159256e+01
+1.2801589229266453e+01
+8.9050398717061370e+00
+-2.6153164758549540e+01
+1.4774382669194326e+01
+7.5705461594288437e+00
+-2.4429706302596557e+01
+4.8912522833974608e+00
+2.2315192452439089e+01
+-4.5391883649813195e+01
+1.4029127533608339e+00
+2.2170129448565021e+01
+-4.5036359895365003e+01
+1.2071072935262398e+01
+2.3692967505584328e+01
+-4.8681489130425526e+01
+-1.0350877850120616e+01
+1.8065372448436804e+01
+-3.6974010290972977e+01
+-1.0580761378134781e+01
+1.8179394439353565e+01
+-3.7605403769001825e+01
+-8.3728722826671476e+00
+1.8318361660915887e+01
+-3.8159285184876900e+01
+1.2551375264944204e+01
+7.8221714746665700e+00
+-2.4376881899146323e+01
+-9.1002442204234537e+00
+1.8184112711603198e+01
+-3.7420055951080464e+01
+-8.7723234686065510e+00
+1.7274797998608349e+01
+-3.6089983593827029e+01
+-8.7723234686065510e+00
+1.7274797998608349e+01
+-3.6089983593827029e+01
+1.1596704261840337e+01
+1.3492287677228239e+01
+-3.2870646719627757e+01
+1.5587732285597058e+00
+2.1908323527445880e+01
+-4.4802962003772450e+01
+1.4272230771994501e+01
+2.6711262244009308e+01
+-5.4244962933378787e+01
+1.4272230771994501e+01
+2.6711262244009308e+01
+-5.4244962933378787e+01
+2.1470576308195813e+01
+2.9073550587753292e+01
+-5.9012936271124843e+01
+1.6627199749986021e+00
+2.1966059448492508e+01
+-4.5192714542906870e+01
+1.2102904242871327e+01
+7.8338097288702704e+00
+-2.4705099787520236e+01
+-3.7337369755661269e+00
+2.0216040304884281e+01
+-4.1671675246027014e+01
+-4.1887546979815315e+00
+2.0265415025078383e+01
+-4.2177245994098186e+01
+-7.8357710696327461e+00
+1.8557017912449481e+01
+-3.8835333129683661e+01
+-7.4106423111122828e+00
+1.8542841866113271e+01
+-3.9042786014782209e+01
+-9.1026671641487189e-01
+2.1541132945152107e+01
+-4.4429413330000983e+01
+-1.2233559468428378e+01
+1.7103987649649774e+01
+-3.5714238881602832e+01
+1.2296631257311878e+01
+8.0874781230746677e+00
+-2.5513074514205115e+01
+-1.9662884677196451e+00
+2.0507506297949497e+01
+-4.2740851013220095e+01
+9.7969966110256923e+00
+2.4108046981687131e+01
+-4.9877282353707805e+01
+-1.4371254119996042e+00
+2.0970662195413894e+01
+-4.3497249714016569e+01
+1.3847979974488181e+01
+1.4006312071915282e+01
+-3.5013381045039459e+01
+-1.1000177605086929e+01
+1.7510243103687184e+01
+-3.6720289163874355e+01
+-1.3288339444320778e+01
+1.6469885495199012e+01
+-3.4782567911264323e+01
+-9.2788921246657399e+00
+1.8307859923707028e+01
+-3.8678329259679131e+01
+1.9068565124140815e+01
+2.6334021071544107e+01
+-5.5016446393480706e+01
+2.0404386527104950e+01
+2.6546006191297455e+01
+-5.5667992710041453e+01
+-1.0486048865803120e+01
+1.7602974777435321e+01
+-3.7100671658975045e+01
+-9.4476825304169965e-01
+2.0951308987451668e+01
+-4.3959159569948092e+01
+2.0151258168627217e+00
+2.1780675825521833e+01
+-4.5713910747236376e+01
+2.5683081597566879e+00
+2.1888309507615062e+01
+-4.5827816215231600e+01
+1.3327265840074675e+01
+8.9033251302615781e+00
+-2.7157322462827786e+01
+1.8590601225547424e+01
+2.5935473941532614e+01
+-5.4561430211960293e+01
+-2.9151027993393734e+00
+2.0131448771998340e+01
+-4.2563437113317661e+01
+1.8860239690938606e+01
+2.5828918686451804e+01
+-5.4600939464068382e+01
+9.4137841040811114e+00
+6.2401760838948608e+00
+-2.2135072962671639e+01
+1.7794289216582291e+00
+2.1622711707474085e+01
+-4.5611664865083128e+01
+-3.4388984560077773e+00
+1.9538746965195209e+01
+-4.1876062164746180e+01
+-3.1558023891393336e+00
+1.9749582301202004e+01
+-4.2150034033312735e+01
+-3.4454338474049817e+00
+1.9921706994094158e+01
+-4.2183861104986107e+01
+-1.2994416335395446e+01
+1.6380231024336556e+01
+-3.4919116089447115e+01
+-1.2196325063932969e+01
+1.4667389601695557e+01
+-3.2396500381705998e+01
+6.6155170566658272e+00
+2.2632582730982392e+01
+-4.8027304470796956e+01
+1.6488519813927081e+01
+2.3951926354489515e+01
+-5.1818634238344764e+01
+1.2730533335264212e+01
+2.4429519138843290e+01
+-5.2192486070489814e+01
+1.5012474706347539e-01
+2.0823354949928014e+01
+-4.4469852611523208e+01
+2.6774290564243572e+00
+2.1928257012876013e+01
+-4.6492307365430875e+01
+1.8930979921635075e+01
+2.5914894666668161e+01
+-5.5164653350800052e+01
+1.2600315766011274e+01
+6.1096046636332533e+00
+-2.2672655301912982e+01
+-5.6169221888196275e-01
+2.0674257038219253e+01
+-4.4478559200584336e+01
+2.2640192794415608e+00
+2.1581440466560693e+01
+-4.6023173512410757e+01
+2.5602691608865524e+00
+2.2185666970636721e+01
+-4.7148647479981562e+01
+2.1174746560791672e+01
+2.5777573470222940e+01
+-5.5467340255149189e+01
+-8.3806144833948970e-01
+2.0975113316226636e+01
+-4.4964903794128460e+01
+-1.3927071833818039e+00
+1.9998100738619033e+01
+-4.3344929354519401e+01
+1.9020264007736806e+01
+2.5961458855781640e+01
+-5.5308270796563690e+01
+1.7161011161328763e+00
+2.1056437822599339e+01
+-4.5482196537747228e+01
+1.7152787213228373e+00
+2.1167144795962333e+01
+-4.5622630810621132e+01
+1.2443411935652211e+01
+8.0078053160475093e+00
+-2.5952071993921734e+01
+-3.3555599875602287e+00
+1.9814534072816468e+01
+-4.2850695932148120e+01
+6.9873029846447761e+00
+2.2942165081371261e+01
+-4.9274211998136792e+01
+1.5925349896486424e+01
+2.4338830059296495e+01
+-5.2710500894403964e+01
+1.1468438919508268e+01
+1.1736098197722850e+01
+-3.1797652420967442e+01
+-1.3049077532072688e+00
+2.0448923143918929e+01
+-4.4104490022528445e+01
+3.1066789087123410e+00
+2.2184704552206785e+01
+-4.7820856840925153e+01
+-1.1817834559380447e+00
+2.0843823391497065e+01
+-4.4997032024322081e+01
+2.0782481657982088e+00
+2.1554434719914877e+01
+-4.7053346178257833e+01
+-7.3912762985401432e+00
+1.7968274103426122e+01
+-3.9707409038102426e+01
+1.8024813796712362e+01
+2.5691222479174719e+01
+-5.6018327256568526e+01
+1.2914943976330784e+01
+6.7744542372166290e+00
+-2.4664752978295510e+01
+1.2789197278292686e+01
+1.3178946516600265e+01
+-3.4955430751691488e+01
+-1.0553950434648651e+00
+2.0706479477991177e+01
+-4.5161280885717176e+01
+2.5266582977549767e+01
+2.8889791729143120e+01
+-6.3053089581679899e+01
+1.3277103542464562e+01
+1.0413308918469909e+01
+-3.0673349536524960e+01
+1.2996453594320961e+01
+1.0281945496154327e+01
+-3.0177627878714144e+01
+1.1515353284160129e+01
+1.1252763280289741e+01
+-3.1686525332230662e+01
+9.6327216208006075e+00
+4.3069160830105604e+00
+-1.9811062341311260e+01
+1.3828181213038363e+01
+6.1077758042497514e+00
+-2.3640835612885056e+01
+-1.2231696927815601e+00
+2.0581440845680479e+01
+-4.5046760245706530e+01
+-1.2231696927815601e+00
+2.0581440845680479e+01
+-4.5046760245706530e+01
+1.8114745079759469e+00
+2.1033860218792764e+01
+-4.6231868382768866e+01
+1.0270325406637907e+01
+2.2907889787201487e+01
+-5.0615145945188083e+01
+1.0062451028860751e+01
+4.4721913893708223e+00
+-2.0370145310748931e+01
+1.4146610562651466e+01
+6.2418716461324797e+00
+-2.4319020917879985e+01
+1.0810798355854436e+01
+2.4299851624283583e+01
+-5.3357874349747227e+01
+1.3920969455618209e+01
+5.9838492717965819e+00
+-2.3599561923397754e+01
+9.5867546694745762e+00
+2.2978525586506830e+01
+-5.0905805179544330e+01
+7.2340492188823173e+00
+2.2305612149489544e+01
+-4.9731411354096210e+01
+1.2150384537094588e+01
+7.7053126601671149e+00
+-2.6548429840901328e+01
+1.3228726163760857e+01
+5.2717870271763330e+00
+-2.2416719750194687e+01
+1.2489769288294678e+01
+2.3611489371158569e+01
+-5.2723312343287965e+01
+1.7115682447018767e+01
+2.6096990195491095e+01
+-5.7955163652614814e+01
+1.9728338561704518e+01
+2.5358190671493244e+01
+-5.6767967636089232e+01
+-8.6042075806821803e+00
+1.7267940326311265e+01
+-3.9107223602194317e+01
+1.1783945511461644e+01
+8.2056764306673067e+00
+-2.6813517924494608e+01
+1.3044090571812641e+01
+2.3938595558505401e+01
+-5.3729785977401669e+01
+-1.0618636816212852e+01
+1.5239032623108015e+01
+-3.5104887622058861e+01
+1.2159054572752790e+01
+7.0659779007546186e+00
+-2.5546572831336881e+01
+-8.0600671641452515e-01
+2.0203871733433402e+01
+-4.5610297032510054e+01
+1.2547784183435528e+01
+2.3939598236432804e+01
+-5.4426569959323864e+01
+1.2998054166610185e+01
+7.8508990241452796e+00
+-2.7219948533371653e+01
+1.2260285105885409e+01
+7.4891474447286726e+00
+-2.6429336608387917e+01
+1.2443336361952246e+01
+1.2184665054844727e+01
+-3.4522567658026674e+01
+-1.1632828581449420e+01
+1.6459286013433864e+01
+-3.7640491070456505e+01
+5.1481583344805584e+00
+2.0940269350454777e+01
+-4.8111014444742821e+01
+1.2778651217124285e+01
+1.1630383083389859e+01
+-3.3875277101332188e+01
+1.2110301644531525e+01
+7.6735947530871211e+00
+-2.7059581761585260e+01
+9.8469423199711077e+00
+2.3487059161390906e+01
+-5.3359073094705742e+01
+1.3665429458758211e+01
+7.4837284665341022e+00
+-2.7002878298008284e+01
+-8.9006486408200161e+00
+1.7042665944064421e+01
+-3.9320975997977769e+01
+9.4572590165172148e+00
+2.3517268107781934e+01
+-5.3310365988704469e+01
+1.3906632948509921e+01
+6.0835334463955464e+00
+-2.4580525735224839e+01
+-8.7748548916779416e+00
+1.7077415400512692e+01
+-3.9515787387769642e+01
+1.2438254775526374e+01
+7.4937441638446662e+00
+-2.6887865726133139e+01
+-3.8196581575308817e+00
+1.8742841654408632e+01
+-4.3043824077367788e+01
+1.4688229630528863e+01
+1.0477733825248452e+01
+-3.2398197843689452e+01
+-5.9552157665004009e+00
+1.8062909031805841e+01
+-4.1509680921359049e+01
+3.4938826596401706e-01
+1.9989482496063342e+01
+-4.6222031867640688e+01
+1.2360396836075818e+01
+1.1127559318289332e+01
+-3.3183345540303556e+01
+1.2351953819487218e+01
+7.4342135859031941e+00
+-2.7016891791429391e+01
+1.4735775290566226e+01
+1.0404763770823047e+01
+-3.2474778426536140e+01
+8.0768467649063211e+00
+2.1478631237131591e+01
+-5.0450840361011394e+01
+1.2526245543185995e+01
+2.3970436658145463e+01
+-5.5380303376775544e+01
+1.1675880010513788e+01
+8.0173254399502820e+00
+-2.7626545693034757e+01
+1.3072534209003287e+01
+7.0382439846314195e+00
+-2.6706563149993670e+01
+1.3116161957288099e+00
+2.0554278559811340e+01
+-4.7636159945703895e+01
+1.4476624958065823e+01
+1.0448862604719771e+01
+-3.2616272492104997e+01
+1.1398218643721776e+01
+7.7924057146434249e+00
+-2.7563955856534545e+01
+1.4689011647911675e+01
+1.0272126082452072e+01
+-3.2387793949327907e+01
+1.2833074724439971e+01
+9.6470227636187218e+00
+-3.1001979784663593e+01
+8.3011030206689966e+00
+2.2635193058244415e+01
+-5.2773604094250317e+01
+7.9644155141399713e+00
+2.2241717532518177e+01
+-5.1768599228072709e+01
+1.1708583237616708e+01
+6.3935703271996260e+00
+-2.5287800803360440e+01
+1.2804719556744647e+01
+6.8101022019378092e+00
+-2.6344503793192143e+01
+1.7104701682529168e+01
+2.3709818184582758e+01
+-5.5979507136499514e+01
+-5.6510582716299380e+00
+1.7722728652030440e+01
+-4.1958413915697690e+01
+1.2704770586170181e+01
+6.5186954569947329e+00
+-2.5840849607646685e+01
+1.2766791327026869e+01
+1.1511465557238141e+01
+-3.4663491173064514e+01
+1.2099839680285381e+01
+8.0964460405856649e+00
+-2.8626673124456946e+01
+1.2978815966527915e+01
+9.4406904251072490e+00
+-3.0786824934272833e+01
+1.4023265884410941e+01
+6.6278986554683437e+00
+-2.6485879790636400e+01
+-3.6913333140828564e+00
+1.8487589621933726e+01
+-4.3589112797171857e+01
+1.2662404049035938e+01
+1.0661694354896467e+01
+-3.3231072467388053e+01
+1.1725832111101059e+01
+2.1969043395042053e+01
+-5.2503627265825962e+01
+-9.1054426187721642e+00
+1.6780982101742477e+01
+-4.0083041938836644e+01
+1.3695047971434654e+01
+6.0571034681389833e+00
+-2.5715815660369355e+01
+-4.8742508913360325e+00
+1.8024645211853734e+01
+-4.2917915592525574e+01
+6.1609756719020909e+00
+2.1046944540941258e+01
+-5.0157522100237216e+01
+1.3790093536384621e+01
+5.9499850820694293e+00
+-2.5528755406838787e+01
+1.2125272876170934e+01
+7.9883807195465595e+00
+-2.8704234125485229e+01
+1.1080452597241950e+00
+1.9467968979586569e+01
+-4.6615246164846937e+01
+1.8722428397360744e+01
+2.3515414730339202e+01
+-5.7302419399864235e+01
+1.3692183061833690e+01
+9.6967485910647255e+00
+-3.2059221728654578e+01
+1.2235988612176492e+01
+1.1982751625973664e+01
+-3.5577833284394060e+01
+8.1529306145932416e+00
+2.1533609603628484e+01
+-5.1678295083542480e+01
+1.2688817939476142e+01
+6.3066722421650780e+00
+-2.5909181327923356e+01
+-1.0820462126072250e+00
+1.9146558439586610e+01
+-4.5909148887246701e+01
+1.3345859734719021e+01
+9.5707173899888360e+00
+-3.1862193403038862e+01
+-9.1253698997357731e+00
+1.6678159807616947e+01
+-4.0107274978247879e+01
+-9.0628611947451461e+00
+1.6560251333944443e+01
+-3.9997239295044160e+01
+1.3573763476330939e+01
+9.5448618291082123e+00
+-3.2033462134827680e+01
+1.3705473085618049e+01
+2.2099356618297438e+01
+-5.4008025829600541e+01
+1.3157931565844880e+01
+6.4827460662419201e+00
+-2.6656923319571355e+01
+1.3169018760166061e+01
+6.5007611474966405e+00
+-2.6705227651191791e+01
+-9.2336074888295467e+00
+1.6246720511977568e+01
+-3.9602290820989211e+01
+-8.9044310826243134e+00
+1.6373044144554093e+01
+-3.9916924455143558e+01
+6.7733098643423082e+00
+2.1017019854482434e+01
+-5.0989916465616979e+01
+-1.2263614869820902e+00
+1.9212197762591746e+01
+-4.6168819655908386e+01
+-1.1688027599980380e+00
+1.9373289482255544e+01
+-4.6561916772137124e+01
+-3.4237845710791937e+00
+1.8285937638500013e+01
+-4.4207999224107787e+01
+1.2308875743007130e+01
+1.1784151298885293e+01
+-3.5628622676671192e+01
+1.2892930147486160e+01
+1.0512568580541902e+01
+-3.3814211111907397e+01
+1.2879458770159021e+01
+1.0718259988368876e+01
+-3.3843369919137913e+01
+1.3096471031482983e+01
+1.0485418227165711e+01
+-3.3535212212324119e+01
+1.3882254467725604e+01
+9.7753483339329375e+00
+-3.2688482670102061e+01
+1.3363950114831471e+01
+9.3316064097384199e+00
+-3.1812131761963741e+01
+-8.9942362249553511e+00
+1.6403243718943607e+01
+-4.0165303388784118e+01
+5.8740284145741262e-01
+1.9251862874057583e+01
+-4.6919588859820472e+01
+1.2162826313675957e+01
+7.6912482092898440e+00
+-2.8805629657644594e+01
+1.2210536591944363e+01
+7.7451536154582330e+00
+-2.8885205774072794e+01
+1.3132461642986923e+01
+6.7473823485547397e+00
+-2.7268970230798445e+01
+1.0453603248966634e+00
+1.9429569782026732e+01
+-4.7337502947762552e+01
+1.3026190302303462e+01
+1.0195272081348000e+01
+-3.3461071291734818e+01
+4.8795271376737031e+00
+1.9639179324041820e+01
+-4.8772570966053557e+01
+1.2491492153934756e+01
+6.3428694445178326e+00
+-2.6094345648702895e+01
+-3.8228027135198750e+00
+1.7779616345181605e+01
+-4.3856043899750212e+01
+-9.0241003551789003e+00
+1.6461137680128289e+01
+-4.0035425524592654e+01
+4.9968294866083456e+00
+2.0095383312583433e+01
+-4.9433425891582118e+01
+1.4466077360069928e+01
+1.0797780239018461e+01
+-3.4988050923078546e+01
+1.4466077360069928e+01
+1.0797780239018461e+01
+-3.4988050923078546e+01
+1.2316940111596338e+01
+6.8865798785245778e+00
+-2.7573515596871616e+01
+1.4211330806903423e+01
+5.9237425016079230e+00
+-2.6322675792106864e+01
+-6.6764501020447664e+00
+1.6749046683652381e+01
+-4.1742604610517404e+01
+-6.6764501020447664e+00
+1.6749046683652381e+01
+-4.1742604610517404e+01
+-6.9759206719190736e+00
+1.6623948275843748e+01
+-4.1492054151654777e+01
+1.2965879540107016e+01
+2.2008002510756906e+01
+-5.4747464868637138e+01
+1.3213401977625557e+01
+1.0188301442084176e+01
+-3.3370432314800148e+01
+-9.0917485936330156e+00
+1.6360981639560027e+01
+-4.0719822834283804e+01
+1.1246307808446006e+00
+1.9197826381413389e+01
+-4.7599391148585745e+01
+1.2595495533197051e+01
+6.1794943585491318e+00
+-2.6552200608362238e+01
+-6.0631706252821760e-01
+1.9154059357048869e+01
+-4.7327769606809845e+01
+1.4131980675489668e+01
+1.1221350210343598e+01
+-3.6148391046166765e+01
+1.2678231391594135e+01
+6.4453135605779588e+00
+-2.7131380038325720e+01
+-9.4067314308553325e+00
+1.5816314150475176e+01
+-3.9899814803452976e+01
+2.3719109418837712e+00
+1.9864024237158539e+01
+-4.9139627473511389e+01
+-9.3517832275358614e+00
+1.5964421112972792e+01
+-4.0072552871179212e+01
+1.3944266457072159e+00
+1.8684160703636941e+01
+-4.7380040376635719e+01
+4.8366108720669896e+00
+1.9160025781739289e+01
+-4.8662818841573426e+01
+1.2904082211202594e+01
+1.0347189314443375e+01
+-3.3943540817002535e+01
+1.5487112507421058e-01
+1.8997514333653665e+01
+-4.7550805959657119e+01
+1.4823491192558289e-01
+1.8872562422924872e+01
+-4.7448569019510664e+01
+9.6595133563561683e-02
+1.8557982351435708e+01
+-4.6878156414695113e+01
+-5.7687247089958520e+00
+1.6841930398255620e+01
+-4.2487948373085437e+01
+1.4332251821473015e+01
+5.5987938427196768e+00
+-2.6266921352069577e+01
+1.4917057744356420e+01
+9.8239557110637890e+00
+-3.4113657068917888e+01
+1.4327373956751940e+01
+9.4716848893057133e+00
+-3.3295247219137579e+01
+1.2516962366414768e+00
+-2.5568069539952842e-01
+-1.2528516058480344e+01
+1.1967085584760325e+01
+6.8166655765690294e+00
+-2.7827406852821802e+01
+1.2149153553771114e+01
+6.8983975199341891e+00
+-2.8059343183094512e+01
+1.3100635924049920e+01
+5.9381925383407701e+00
+-2.6630997063635117e+01
+1.3269611470780497e+01
+6.0053909701037860e+00
+-2.6909024912528857e+01
+-6.0364707773666844e+00
+1.6961217030544493e+01
+-4.2697068412637584e+01
+1.3110234957297589e+01
+5.3184161854676688e+00
+-2.5647650819150627e+01
+1.2812178065087872e+01
+6.3579891346769539e+00
+-2.7567553596494047e+01
+1.2812178065087872e+01
+6.3579891346769539e+00
+-2.7567553596494047e+01
+-1.2381491534594620e+01
+1.5163036341463640e+01
+-3.8037462508414180e+01
+1.5132337127155964e+01
+2.2781710865251558e+01
+-5.8204899244200000e+01
+1.3796251760929501e+01
+9.7631032627109224e+00
+-3.3999572691496155e+01
+1.3586732451231194e+01
+2.1842045165775239e+01
+-5.6197533738125919e+01
+1.2889735763600244e+01
+1.0585425854100539e+01
+-3.5388836885952024e+01
+1.3443207584336783e+01
+5.6467287917237412e+00
+-2.6423244813393751e+01
+1.3467575208820531e+01
+5.4239048674690924e+00
+-2.6011155213292646e+01
+1.5711134955997933e+01
+2.3385067430587171e+01
+-5.9759244163055207e+01
+-6.9833490517028611e+00
+1.6588123415985518e+01
+-4.2516181141293096e+01
+-6.9171587064494044e+00
+1.6331692638144656e+01
+-4.2100979097207137e+01
+1.9094810331713215e+00
+1.9596649328963437e+01
+-4.9746518663861323e+01
+1.4244090074773084e+01
+2.1801342724318900e+01
+-5.6567889911185716e+01
+1.5254482768490844e+01
+2.2480865403597825e+01
+-5.8385546301229063e+01
+1.3002581619561223e+01
+6.0062559779081583e+00
+-2.7401484330420764e+01
+-1.1504060401098084e+01
+1.5181571240893181e+01
+-3.8596926399141644e+01
+-3.4896735911377132e+00
+1.7125769494559584e+01
+-4.4110394660478846e+01
+-2.5646782450605783e+00
+1.7396896753607891e+01
+-4.5342305268554568e+01
+1.2641955850909619e+01
+6.1552467276394518e+00
+-2.7601950636891523e+01
+1.3278993630828241e+01
+5.6747840824036029e+00
+-2.6993628733897484e+01
+-1.1341767745786893e+00
+1.7881796007062011e+01
+-4.6599794375694820e+01
+1.2715059157338009e+01
+1.0701946773397470e+01
+-3.5769832118873943e+01
+1.5220582356270063e-01
+1.8209782136055587e+01
+-4.7788513411023381e+01
+-3.1287788616116843e+00
+1.7525017465275987e+01
+-4.5529224661122235e+01
+-3.0375231649162471e+00
+1.7838478670125866e+01
+-4.6334381060738643e+01
+-2.6734390218364568e+00
+1.8055560210910524e+01
+-4.6647095742988036e+01
+8.9664131285979884e+00
+2.0713203182921063e+01
+-5.4396426270546087e+01
+-4.6069327304353598e+00
+1.6612977555056236e+01
+-4.3385488417158996e+01
+-1.7574183086849415e+00
+1.7855100914925853e+01
+-4.6459640900478682e+01
+1.2437557137094775e+01
+6.4128559465896231e+00
+-2.8336261090064173e+01
+-1.8322221755053618e+00
+1.8263894169167045e+01
+-4.7356823834897511e+01
+-5.4019930762552726e-01
+1.8374888483575077e+01
+-4.8005546025200822e+01
+9.1368110899037500e+00
+2.0228771434204777e+01
+-5.3776928062357833e+01
+9.1105001335808993e+00
+2.0831983814114949e+01
+-5.4978099844719630e+01
+1.2303703123941094e+01
+6.1924646452630645e+00
+-2.8020416915934526e+01
+1.0586266079306684e+01
+2.1155956542304715e+01
+-5.5720470465214298e+01
+8.7021405372162857e+00
+2.0948425185825773e+01
+-5.5142540287003598e+01
+-6.5357252814144644e+00
+1.6116802898725552e+01
+-4.2770058307685900e+01
+6.8425117358954219e+00
+2.0078878335082017e+01
+-5.3175347489258606e+01
+-1.0396350676717304e+01
+1.5012142333570585e+01
+-3.9845390180218452e+01
+-9.3671725082366049e+00
+1.5601995334469084e+01
+-4.0655692983629542e+01
+-1.5365953811022151e+00
+1.7827253576584198e+01
+-4.6861906349860675e+01
+9.0076808047729067e+00
+2.0969202922120083e+01
+-5.5442540625622236e+01
+-1.1013145898138192e+00
+1.7629827201962332e+01
+-4.6979858695095267e+01
+-8.9269112242988999e+00
+1.5533238440700808e+01
+-4.1193978484106800e+01
+-2.7758796671917501e+00
+1.7472320058181836e+01
+-4.6184028376902070e+01
+1.4187859209844921e+01
+2.4591191900310538e+00
+-2.1620935654949179e+01
+-1.0094132481308153e+01
+1.5036516679865681e+01
+-4.0258150228225837e+01
+-2.0764026112471154e+00
+1.7719200416175557e+01
+-4.7032577411464764e+01
+4.1273552182313518e+00
+1.9031476568193810e+01
+-5.1067375006325740e+01
+1.3909719831663359e+01
+2.8305486834860885e+00
+-2.2461413254774069e+01
+-3.7540206215309730e+00
+1.6607504795737594e+01
+-4.5122971745842733e+01
+-6.6485049981151336e+00
+1.5588236034585247e+01
+-4.1929944765958460e+01
+-1.0792159897979035e+01
+1.5169990802630119e+01
+-4.0506875448700420e+01
+1.5044501883593057e+01
+2.2013945491898173e+01
+-5.9925651351142257e+01
+5.3518326830098930e+00
+2.7684918665425712e-01
+-1.5538628551438233e+01
+8.7698777496467739e-01
+1.8120791633992788e+01
+-4.8950766218911809e+01
+1.2435053072155478e+01
+6.4017519506223683e+00
+-2.9259892587310016e+01
+-4.5533313311578532e+00
+1.6593545343405228e+01
+-4.5149356817661953e+01
+4.6552294474061151e+00
+1.8889978821838351e+01
+-5.1596952130314051e+01
+1.4604153718426703e+01
+2.0427529150105027e+01
+-5.7409498306110493e+01
+-3.4918225542536003e+00
+1.6785602149919601e+01
+-4.5748088016791037e+01
+-3.3386870402598574e+00
+1.7119228149135740e+01
+-4.6265161818392166e+01
+-3.8194328918757052e+00
+1.6574154090315343e+01
+-4.5190220939652392e+01
+1.2932498314901668e+01
+5.2251308751418888e+00
+-2.7353664587162974e+01
+-4.7352096527192105e+00
+1.6514634159752074e+01
+-4.4814012623697785e+01
+-6.5846634322454900e+00
+1.5875323406569075e+01
+-4.3409291457883072e+01
+-6.5846634322454900e+00
+1.5875323406569075e+01
+-4.3409291457883072e+01
+1.2959383982393909e+01
+5.4599336192855787e+00
+-2.7859046551069842e+01
+1.2284273283391050e+01
+5.9041039363790464e+00
+-2.8632985685300039e+01
+-1.1842827073422656e+01
+1.4738028653737672e+01
+-3.9976450720949202e+01
+-9.5843513395287818e+00
+1.5120459657074143e+01
+-4.1021983014107491e+01
+-7.0668523182637069e+00
+1.5527533477456451e+01
+-4.3001024449256988e+01
+-4.7368740190935590e+00
+1.6422431134187736e+01
+-4.5020228526126076e+01
+1.2129362680783695e+01
+6.4489037408151670e+00
+-2.9832400983843751e+01
+-3.1401393255809973e+00
+1.6896001980130212e+01
+-4.6478272787434832e+01
+1.2179624670913309e+01
+6.2458617731637673e+00
+-2.9478261042356515e+01
+-7.0665705698262133e+00
+1.5680816085964782e+01
+-4.3304305331702864e+01
+1.8626722580002568e+00
+1.7707607676819727e+01
+-4.9598890991521706e+01
+9.4146789806643554e+00
+1.9577755241294209e+01
+-5.5025355434761856e+01
+-3.3590549975730570e+00
+1.6343981342989078e+01
+-4.5936373203303432e+01
+-3.7814464945273927e+00
+1.6439819683145650e+01
+-4.5870364415462895e+01
+-5.0874594353203362e+00
+1.6082538920144767e+01
+-4.4855055341203823e+01
+1.3165091671026357e+01
+5.2027611276651360e+00
+-2.7945174734241572e+01
+-2.0042547502723584e+00
+1.6114570771799059e+01
+-4.5723158690809157e+01
+9.3031642623266677e+00
+2.0150199995535051e+01
+-5.6709048354937771e+01
+1.4083058375059776e+01
+3.1830679853773254e+00
+-2.4474469205526006e+01
+-8.4530262723757712e+00
+1.5115909229389178e+01
+-4.2376264939400343e+01
+-8.2273145866388369e+00
+1.5317367126934771e+01
+-4.2567082685208320e+01
+-8.2682093285529792e+00
+1.4589153648250262e+01
+-4.1099068613138158e+01
+-1.6667758251908131e+00
+1.6118993814659760e+01
+-4.6301385793058309e+01
+-1.6667758251908131e+00
+1.6118993814659760e+01
+-4.6301385793058309e+01
+9.4271196766730405e+00
+1.9239681239789412e+01
+-5.5370996202910057e+01
+1.2815960641465198e+01
+5.4289116922275724e+00
+-2.8565534822178549e+01
+1.2777821172537326e+01
+5.2223178378240975e+00
+-2.8160331551604983e+01
+1.3728405149995893e+01
+3.7223378861097549e+00
+-2.5538000237451410e+01
+-6.2767751569957273e+00
+1.5600318837611125e+01
+-4.4209488433164331e+01
+1.3964362401336512e+01
+3.3700105321268099e+00
+-2.4965362408340383e+01
+-9.8400821007258354e+00
+1.4789105893995339e+01
+-4.1646137322668032e+01
+1.2942703921306382e+01
+5.1890026796011037e+00
+-2.8406841308932297e+01
+1.3692167569247975e+01
+2.7607962142641651e+00
+-2.3608529239631707e+01
+5.6486407880013658e+00
+9.0847428396915744e-02
+-1.6108806999046593e+01
+2.1422372397976203e-01
+1.7613495540089989e+01
+-5.0058261733043771e+01
+1.3485607304083716e+01
+9.6270009470510960e+00
+-3.7554612585179761e+01
+1.3485607304083716e+01
+9.6270009470510960e+00
+-3.7554612585179761e+01
+-7.9930455834717904e+00
+1.5077295583785139e+01
+-4.2979717958066942e+01
+1.3972880061756513e+01
+9.6976385582340043e+00
+-3.7927407662072859e+01
+1.4115365430738628e+01
+3.5630528908240890e+00
+-2.5700796957601067e+01
+-6.2165357186492738e+00
+1.5329354189630061e+01
+-4.4276706461903764e+01
+1.2728931015113375e+01
+5.2459134644336327e+00
+-2.8816142175101270e+01
+1.4644122710945306e+01
+3.2110456493792574e+00
+-2.5342247119254644e+01
+1.1702565920804238e+01
+1.8756131841152328e+01
+-5.6015835508087832e+01
+1.3809113602162949e+01
+2.6535905894865239e+00
+-2.3756948728140777e+01
+1.4258000842464090e+01
+2.2299647453854492e+00
+-2.3262724970440480e+01
+1.4258000842464090e+01
+2.2299647453854492e+00
+-2.3262724970440480e+01
+1.4829436316569444e+01
+2.9242875414028084e+00
+-2.4994779517947055e+01
+1.4440228526722613e+01
+2.6900902601707122e+00
+-2.4272884266208710e+01
+-8.6500561808740510e+00
+1.4978633378873536e+01
+-4.3057085748061375e+01
+-5.1271699529148860e+00
+1.5512468777069056e+01
+-4.5274619923918515e+01
+-4.2519244067078015e+00
+1.5648754676946851e+01
+-4.5638164114804226e+01
+-4.2528213317590264e+00
+1.5919436402143228e+01
+-4.6319567604427569e+01
+1.0415844189502213e+01
+1.9086817530379278e+01
+-5.6377135953652704e+01
+1.2928582405815773e+01
+4.8981544896284444e+00
+-2.8300828413751045e+01
+-7.6307740362807710e+00
+1.5087328809661697e+01
+-4.3412332992507054e+01
+-9.1605678512938518e+00
+1.4772031827553279e+01
+-4.2723848556264045e+01
+1.3555510410716886e+01
+2.7416211147389422e+00
+-2.4075432650744425e+01
+1.4061757900831225e+01
+3.6342101606975858e+00
+-2.6388289148285331e+01
+-8.9684589601930718e+00
+1.4457242953275207e+01
+-4.2407734068697621e+01
+-1.1163962665935189e+01
+1.3846266082003094e+01
+-4.0613769111802974e+01
+-4.9686096838142433e+00
+1.5751406577576120e+01
+-4.5905965828446675e+01
+1.2996620506169865e+01
+4.8166504061563682e+00
+-2.8530641937487292e+01
+1.3102747772347710e+01
+4.6250466445045122e+00
+-2.8255273950655724e+01
+-8.0701764613253033e+00
+1.4548545761646261e+01
+-4.3146778537758280e+01
+1.2666737794935298e+01
+5.2887598135321872e+00
+-2.9588697450471525e+01
+1.2666737794935298e+01
+5.2887598135321872e+00
+-2.9588697450471525e+01
+-1.1186674795031594e+01
+1.3643995576618369e+01
+-4.0477218062021159e+01
+-9.9397833235733675e+00
+1.4016107149301897e+01
+-4.1421031560108815e+01
+-8.5051805898022561e+00
+1.4557325357594232e+01
+-4.3118760313142637e+01
+1.4062621445616402e+01
+3.4991999128272715e+00
+-2.6500384189934252e+01
+8.8833728049285874e+00
+1.8312050761192854e+01
+-5.5662086502650013e+01
+-1.2909261951853519e+01
+1.3606592710541113e+01
+-3.9911270296871329e+01
+1.4705145209266107e+01
+2.8124893936317501e+00
+-2.5505368402030584e+01
+1.2820546365441986e+01
+4.8244424208833028e+00
+-2.9025081739225119e+01
+1.3802835008926483e+01
+7.5297463883711986e+00
+-3.5039057669933783e+01
+1.3362177328369659e+01
+4.7820501563391016e+00
+-2.9144899972167405e+01
+1.3362177328369659e+01
+4.7820501563391016e+00
+-2.9144899972167405e+01
+-1.1007343880258063e+01
+1.4089810520913213e+01
+-4.1699928321060206e+01
+1.4386003436576738e+01
+3.0918991866979901e+00
+-2.6109052592616418e+01
+1.3570835644842587e+01
+2.7441780262920155e+00
+-2.5079862003683960e+01
+1.4130248105584029e+01
+3.3098701527558854e+00
+-2.6479914151317995e+01
+-1.1259188150092632e+01
+1.3563700248208441e+01
+-4.0911549207988472e+01
+-1.1245815651533734e+01
+1.3457251534303111e+01
+-4.0605303565051202e+01
+1.3452613079857834e+01
+3.2302665133480177e+00
+-2.6128925080025475e+01
+1.3480823714377511e+01
+4.4060029669627410e+00
+-2.8725021923090171e+01
+1.4559441728660842e+01
+1.9840135705470336e+00
+-2.4039294854988150e+01
+1.4630989806707127e+01
+2.0456580568918223e+00
+-2.4122771203576132e+01
+1.4153478726266469e+01
+7.5989135980388900e+00
+-3.5728355835814966e+01
+1.4171809821602075e+01
+7.6208150009612021e+00
+-3.5729409147826374e+01
+1.3407196314255874e+01
+3.9570150067395637e+00
+-2.7836843461121216e+01
+-1.3254034189349470e+01
+1.3251266973157716e+01
+-3.9648331708614087e+01
+-1.2454682169474637e+01
+1.3347181079584290e+01
+-4.0134566579206734e+01
+-1.0164509559572092e+01
+1.4013564845280962e+01
+-4.2354542320758384e+01
+1.4430634486857949e+01
+2.6001202126643554e+00
+-2.5445408546899955e+01
+5.6247182619504228e+00
+-1.3953521732318347e-01
+-1.6707681956162467e+01
+-1.2150561043918700e+01
+1.3185358409216605e+01
+-3.9758580947820214e+01
+-6.1028068989304947e+00
+1.4967605833876359e+01
+-4.5575209622711839e+01
+-6.0877206127625749e+00
+1.4945940612763081e+01
+-4.5585531142789094e+01
+1.4011804099099434e+01
+2.8820772917922253e+00
+-2.5876555476030621e+01
+-8.5299190443837638e+00
+1.4050872108764670e+01
+-4.2989659014195233e+01
+1.4266356351724493e+01
+1.5948398722334223e+00
+-2.3111421869898798e+01
+1.4266356351724493e+01
+1.5948398722334223e+00
+-2.3111421869898798e+01
+-1.0979697795580108e+01
+1.3602170605108574e+01
+-4.1421643242672374e+01
+-9.7277509644514204e+00
+1.3714530264537922e+01
+-4.2018222837766842e+01
+-4.5310650027819364e+00
+1.5036050135966201e+01
+-4.6595248126520652e+01
+1.4268123568996677e+01
+1.5540560479011611e+00
+-2.3143998250316553e+01
+5.9657285415323873e+00
+1.7467271263269900e+01
+-5.4831068605295748e+01
+4.2424647238288582e+00
+1.6781492117076969e+01
+-5.3175903004661528e+01
+-4.4659872845739450e+00
+1.5303163416649983e+01
+-4.7266579627119022e+01
+1.4575654972673968e+01
+2.6552812163697546e+00
+-2.5990945204884074e+01
+1.3830140713170511e-01
+1.6456763461199873e+01
+-5.0961022349757890e+01
+1.4531838931615795e+01
+2.3392290066629067e+00
+-2.5333941924545673e+01
+1.4268546614676758e+01
+2.3741214359897858e+00
+-2.5228497882949050e+01
+-9.5754367181270545e+00
+1.3645702740466378e+01
+-4.2379799201537843e+01
+-1.3099285659250759e+01
+1.2723128922094219e+01
+-3.9198217835714168e+01
+2.1800369174192516e-01
+2.9818416930336964e+00
+-2.2130133043444832e+01
+2.7835821472491444e+00
+2.0344282930268367e+00
+-2.0893535337410086e+01
+1.4351233210027770e+01
+2.2120280503710767e+00
+-2.5133848885842582e+01
+-1.6638860378214388e+00
+1.5593291268772706e+01
+-4.9007630189353243e+01
+-1.2784790613486194e+01
+1.2981828519680132e+01
+-3.9746446144514870e+01
+1.4461127632585073e+01
+2.0865749606764870e+00
+-2.4918054279367222e+01
+1.4566685716487388e+01
+8.6618827945046639e-01
+-2.2271328465544546e+01
+1.4566685716487388e+01
+8.6618827945046639e-01
+-2.2271328465544546e+01
+-8.9897832384180560e+00
+1.3635987690541631e+01
+-4.2935368847452281e+01
+-8.5415936290775676e+00
+1.4005183541912395e+01
+-4.3496590548307985e+01
+-9.7485056346834789e+00
+1.3737953008187727e+01
+-4.2906966188877696e+01
+-1.1725076405433311e+01
+1.3014627776760376e+01
+-4.0593868577498178e+01
+7.7150032993320428e-01
+1.6075099107177742e+01
+-5.1293089063923624e+01
+-1.3658746626631284e+00
+1.5172981232623128e+01
+-4.8553826870032317e+01
+-1.5884634949933196e+00
+1.5357604833664467e+01
+-4.8892166094108639e+01
+-1.1987833267454500e+01
+1.2870143852065510e+01
+-4.0336553924143146e+01
+-1.1942982906151869e+01
+1.2982381534466203e+01
+-4.0904912930251754e+01
+-4.0728862912653012e+00
+1.4805963676048799e+01
+-4.7365151842803897e+01
+-1.2225623119751063e+01
+1.2831546753628976e+01
+-4.0620073908745681e+01
+-9.8797360496450786e+00
+1.3429966823277276e+01
+-4.2717993033747042e+01
+1.3541767331225277e+01
+3.9663240352965397e+00
+-2.9267270390018112e+01
+1.3541767331225277e+01
+3.9663240352965397e+00
+-2.9267270390018112e+01
+-1.2529694994639771e+01
+1.2880289203859336e+01
+-4.0591733803960153e+01
+-1.1054083393811830e+01
+1.3065223279841524e+01
+-4.1408621818158494e+01
+-1.1517459385668461e+01
+1.2914894126966395e+01
+-4.1068645190300899e+01
+-1.2955845474439181e+01
+1.2852179492325346e+01
+-4.0615470139700292e+01
+-6.6183037707319121e+00
+1.4018145128449099e+01
+-4.5313164976249489e+01
+-6.6183037707319121e+00
+1.4018145128449099e+01
+-4.5313164976249489e+01
+1.4629176642743861e+01
+1.3785029471379660e+00
+-2.4175350029931820e+01
+-1.0650183779655256e+01
+1.3034392435455748e+01
+-4.1980421131878536e+01
+-7.4768111583754857e+00
+1.4118194267001991e+01
+-4.5269518260466597e+01
+1.4010677969599733e+01
+2.9421824928612352e+00
+-2.7496310792249009e+01
+1.3917965967883362e+01
+2.9365182760250308e+00
+-2.7394494845831996e+01
+-9.9814399374264564e+00
+1.3288251673890960e+01
+-4.2767180822161407e+01
+-9.2148009342435060e+00
+1.3332851753531028e+01
+-4.3001537771086802e+01
+2.0699606061103881e+00
+1.7367040843036625e+00
+-2.0707758045969008e+01
+-1.0061541652257928e+01
+1.3315943805521705e+01
+-4.2908342497919513e+01
+2.4166134993064725e+00
+1.6605748258638411e+00
+-2.0668808035741769e+01
+1.3447647451891642e+01
+3.2973234757850864e+00
+-2.8139454841987519e+01
+-1.0437428227219154e+01
+1.3037772910695914e+01
+-4.2076530295353137e+01
+-6.8766821455362077e+00
+1.3893702625377221e+01
+-4.5253838157078910e+01
+-1.0226439044053135e+01
+1.3375629306103431e+01
+-4.3106105489360665e+01
+1.4663138846793471e+01
+8.5280053908545761e-01
+-2.3249288371500377e+01
+-1.3076945757003408e+01
+1.2707507195351935e+01
+-4.0800600447038860e+01
+7.3617056465803288e-01
+1.5727605678905947e+01
+-5.1692958904398459e+01
+7.5226749036595031e-01
+1.5842312189328791e+01
+-5.2024911821210566e+01
+4.6122177300542322e-01
+2.1421929382265277e+00
+-2.1167436656172686e+01
+4.7952796795715824e-01
+2.1511259111280467e+00
+-2.1193570443309575e+01
+2.8416638333361033e-01
+2.2157019592183964e+00
+-2.1330026389809252e+01
+1.4826993979126474e+01
+1.9770216456540799e+00
+-2.5979647647263246e+01
+1.4617822801732011e+01
+1.8755737269161428e+00
+-2.5663705010973533e+01
+-8.3836789203578999e+00
+1.3637963900595855e+01
+-4.4378035796227131e+01
+1.6819548864086888e+00
+1.7553346414936424e+00
+-2.0760242971877915e+01
+8.9653807899578941e-01
+1.8881240645891872e+00
+-2.0525456915854608e+01
+1.5331817518584456e+00
+1.7397395137882057e+00
+-2.0687481574188059e+01
+-5.2940697373855106e-01
+2.7560738392117599e+00
+-2.2406575524404179e+01
+-3.9031881808891233e+00
+1.4751590280173675e+01
+-4.8439557984765500e+01
+-3.9031881808891233e+00
+1.4751590280173675e+01
+-4.8439557984765500e+01
+1.2079264444212026e+00
+1.8148818988614033e+00
+-2.0824310193569268e+01
+1.1109177505060455e+00
+1.8720775935489009e+00
+-2.0918185446244077e+01
+1.0809506455383302e+00
+1.7482071953153124e+00
+-2.0765062176394110e+01
+-3.7694627461595624e+00
+1.4904290074096341e+01
+-4.9165530944591445e+01
+1.3817046073074406e+01
+3.2891077659838959e+00
+-2.8804582189816923e+01
+2.9894754298998893e-01
+2.0675365873982505e+00
+-2.1294555624563245e+01
+2.3375183274690856e-01
+2.1093247568557949e+00
+-2.1333196079492598e+01
+-4.2694850776910656e+00
+1.4601452853640762e+01
+-4.8050415983254652e+01
+1.2105901469645181e+01
+2.8828363574165197e+00
+-2.6954138343067484e+01
+1.4622355487007864e+01
+1.7328291680447758e+00
+-2.5791893887988124e+01
+1.3360928392214118e+01
+3.3048180812655810e+00
+-2.8797218320153625e+01
+-4.2776110998881095e-01
+2.4880847589264463e+00
+-2.2086684770744984e+01
+-1.0414624850781767e+01
+1.2947299569056932e+01
+-4.2908173027137572e+01
+-6.8283273028627862e+00
+1.3616821918149984e+01
+-4.5671064202354444e+01
+-8.9926949348485952e-01
+3.3113392001751105e+00
+-2.3845968047914507e+01
+-7.0190669039118045e+00
+1.3605105383120129e+01
+-4.5475607098971281e+01
+8.8967023145196522e-01
+1.7141925344098961e+00
+-2.0808622782581569e+01
+-1.1440083177914316e+01
+1.2629339531746449e+01
+-4.1796388274851196e+01
+1.3169305796428532e+00
+1.6181245905963937e+00
+-2.0799886650586355e+01
+1.4169965046869578e+01
+2.4274253295258066e+00
+-2.7398629284419631e+01
+-9.9368853272689730e+00
+1.2816537831049427e+01
+-4.3003699196151210e+01
+1.1388745511422596e+00
+1.5468342215587383e+00
+-2.0648054317210740e+01
+-1.0598909745374650e+01
+1.2694067021753128e+01
+-4.2367449422109679e+01
+-1.0584354723402939e+01
+1.2866425172831530e+01
+-4.2859791158504080e+01
+1.0029181187651628e+00
+1.4692983808139346e+00
+-2.0335842332248632e+01
+-3.4369674493811830e+00
+1.4825684754798248e+01
+-4.9938843158577548e+01
+-4.2105169856317853e-01
+2.2540695256676102e+00
+-2.1856621938466613e+01
+1.2968919722566399e+01
+3.7187580067443613e+00
+-3.0048075142684326e+01
+1.3008001787197440e+01
+3.4407020060424229e+00
+-2.9461954386189934e+01
+1.4908811780767433e+01
+1.5531013889865992e+00
+-2.6014119288698325e+01
+1.4908811780767433e+01
+1.5531013889865992e+00
+-2.6014119288698325e+01
+2.7575268020689365e+00
+1.2573066577622687e+00
+-2.0739275391772285e+01
+-1.1365506796742448e+00
+2.8512901464222677e+00
+-2.2709812197546157e+01
+1.3605323023521043e+01
+3.2722121031185027e+00
+-2.9416130297069586e+01
+1.3030735139431350e+01
+3.5449817741332814e+00
+-2.9898837736936013e+01
+1.3956308797589330e+01
+2.3765317471455432e+00
+-2.7588145483301261e+01
+1.3933355007524430e+01
+2.3764472747650629e+00
+-2.7591293135427119e+01
+5.9478582953514776e+00
+-8.5223011337647547e-01
+-1.7123887255407478e+01
+-9.9204014883562799e+00
+1.2715577350624534e+01
+-4.3098782674465724e+01
+4.5193638517564322e-01
+1.5715230342935982e+00
+-2.0573564521762002e+01
+1.2496154052289116e+01
+2.7133801658663903e+00
+-2.7529061978065609e+01
+1.4050417270479835e+01
+2.3493749799077830e+00
+-2.7621687200165219e+01
+1.4070206049654608e+01
+2.3443302822187508e+00
+-2.7580644319448552e+01
+-1.1450474460063736e+01
+1.2351129506725375e+01
+-4.1912408088519129e+01
+-1.1609937338087597e+01
+1.2327103187865729e+01
+-4.1638029918878409e+01
+6.1609788076329348e+00
+1.3109586433149978e+01
+-4.9930421287813360e+01
+1.2656633921220973e+01
+3.9496856058467289e+00
+-3.0801541204422900e+01
+1.4102815386847837e+01
+2.1375087245925708e+00
+-2.7265281639558108e+01
+-6.1462383437648105e-01
+2.1934976065303622e+00
+-2.1957022624643798e+01
+-6.0501229844526228e-01
+2.2288956418241397e+00
+-2.1979006094545475e+01
+-1.2654773199694487e+00
+2.7853205741801808e+00
+-2.2812824267366242e+01
+-4.8749300186701250e-01
+2.0690915128585359e+00
+-2.1806968026734022e+01
+1.2869081740384869e+00
+1.1939824598751161e+00
+-2.0481088314258173e+01
+1.3659014344399440e+01
+3.0089031469295717e+00
+-2.9482120254161160e+01
+1.5100132968157697e+01
+1.1441257655022401e+00
+-2.5867749412600812e+01
+-1.0160941796632501e+00
+2.4756641234466046e+00
+-2.2638003991294422e+01
+-5.2978560455536066e+00
+1.3633825427197300e+01
+-4.7758437177464664e+01
+-3.9693854550571639e+00
+1.4243597804906971e+01
+-4.9754347448309140e+01
+1.4873964605969878e+01
+1.3461270245317611e+00
+-2.6295184848234729e+01
+8.5356032756341205e-01
+1.2549649683529895e+00
+-2.0594381833586528e+01
+7.4911233307325253e-01
+1.2657819467491411e+00
+-2.0639387908641201e+01
+-5.4290270024191303e+00
+1.3620506899118398e+01
+-4.8073188015560525e+01
+1.0835684318880627e+00
+1.1408215531617953e+00
+-2.0497374163635886e+01
+2.9290736274973401e+00
+8.7988524498642173e-01
+-2.0518379419503834e+01
+1.3790348786812398e+01
+2.0094641931226866e+00
+-2.7463165614098354e+01
+1.3854933912562467e+01
+2.2334452448309534e+00
+-2.8050596245349752e+01
+1.3854933912562467e+01
+2.2334452448309534e+00
+-2.8050596245349752e+01
+-1.1473021469465346e+01
+1.2026363811846810e+01
+-4.2045318593313816e+01
+-1.0851783362319411e+01
+1.2175940749415147e+01
+-4.2601088259017196e+01
+1.4618659179002877e+01
+1.5274665621003576e+00
+-2.6891823931273695e+01
+1.4618659179002877e+01
+1.5274665621003576e+00
+-2.6891823931273695e+01
+1.2912449889896543e+01
+3.3341675326488773e+00
+-3.0372549999024947e+01
+3.0054141449782451e-01
+1.4452886300687464e+00
+-2.0961864712672028e+01
+3.8456548533934265e-01
+1.3663158326802269e+00
+-2.0829065834608681e+01
+1.2590079223398908e+01
+3.7062558185754959e+00
+-3.1166997335197170e+01
+1.2831996464905636e+01
+3.3622793467038301e+00
+-3.0522224157526100e+01
+8.4148004720156211e-02
+1.5065609846430021e+00
+-2.1129064710668789e+01
+2.5083081553723057e+00
+7.8498914318226864e-01
+-2.0267261330297874e+01
+1.2596140896289167e+01
+3.7113323099539985e+00
+-3.1267592008219591e+01
+1.2670039578062740e+01
+1.3890709888966442e+00
+-2.5733823029344720e+01
+1.4257132430256325e+01
+1.5309232795316605e+00
+-2.6793051774454238e+01
+1.3822358298055786e+01
+1.9472293121643740e+00
+-2.7757300158207659e+01
+-9.6815563197455923e+00
+1.2330193586949363e+01
+-4.3965108590484959e+01
+-6.8549063330226438e+00
+1.3289249630762720e+01
+-4.7269339182592056e+01
+1.3910583499890564e+01
+1.2091065820211624e+00
+-2.6014621205575938e+01
+-5.1190299688594596e+00
+1.3533588830822943e+01
+-4.8524328576833341e+01
+-5.0744304588765425e+00
+1.3673664981001828e+01
+-4.8980760530931299e+01
+1.3798940516896903e+00
+8.9210248926761171e-01
+-2.0376129005710361e+01
+-8.4040991777945102e+00
+1.2754048273640478e+01
+-4.5806114333792813e+01
+1.4359393230721288e+01
+1.7016877570748516e+00
+-2.7740307728943041e+01
+1.4049828144813810e+01
+1.3694259288009427e+00
+-2.6666209339484379e+01
+1.4444357182497285e+01
+1.5007513035093365e+00
+-2.7325682983075808e+01
+1.4652096658548416e+01
+1.0884848746882720e+00
+-2.6485195928422936e+01
+-1.2388627677822399e+01
+1.1649323344256828e+01
+-4.1443323947685130e+01
+-1.1699130712162891e+00
+2.1349466675455271e+00
+-2.2526017860555733e+01
+-1.2014390238415492e+01
+1.1927157346782948e+01
+-4.2236440338681405e+01
+1.4277015337363366e+01
+1.4376158213192727e+00
+-2.7045365351985872e+01
+-1.1355924189918268e+01
+1.2071143818857795e+01
+-4.3092029564480754e+01
+1.3076849750212077e+01
+2.9921789852097551e+00
+-3.0477785867662778e+01
+1.3076849750212077e+01
+2.9921789852097551e+00
+-3.0477785867662778e+01
+-1.0683432607875218e+01
+1.1919056193701497e+01
+-4.3145837401316804e+01
+1.3302357246401915e+01
+2.7165408316908830e+00
+-2.9932397884866795e+01
+6.8389926745395291e-01
+9.3444383882835924e-01
+-2.0545246425695129e+01
+3.5982534895817611e+00
+5.5458451578189216e-01
+-2.0728614178178677e+01
+1.4468605837186710e+00
+7.0299678005599975e-01
+-2.0317826774713076e+01
+1.3117836143430543e+01
+2.8481949087909331e+00
+-3.0398773536451927e+01
+-1.0506294143386114e+01
+1.2042964393749177e+01
+-4.3867142523741030e+01
+-1.0562230267665749e+01
+1.2106048053212598e+01
+-4.3752598570122863e+01
+1.2785927497057541e+01
+3.1883948712614596e+00
+-3.1139815480494786e+01
+6.2787723172522125e-01
+9.3581330671716412e-01
+-2.0594261183768641e+01
+-1.1699688388948349e+01
+1.2109934758174555e+01
+-4.3186972246614680e+01
+-5.5553184587703281e+00
+1.2943125297822149e+01
+-4.8187130577038637e+01
+3.8746356902414423e+00
+1.0880704090454278e+01
+-4.6762398643394441e+01
+3.9008654336558095e+00
+1.1137582846629552e+01
+-4.7187981703154158e+01
+4.6318510223195236e-01
+8.5973111949391212e-01
+-2.0370079143035355e+01
+1.4018687213660767e+01
+1.8309343754481320e+00
+-2.8518713776069024e+01
+-9.5385293471279109e+00
+1.2246117464268671e+01
+-4.4850152829337979e+01
+-9.5385293471279109e+00
+1.2246117464268671e+01
+-4.4850152829337979e+01
+-4.8939430877216443e+00
+1.3363908667734600e+01
+-4.9403075159038139e+01
+3.6792661201427683e+00
+1.1335792788533356e+01
+-4.8123449016937371e+01
+1.7931470795527382e+00
+5.3022662192013148e-01
+-2.0310001488427137e+01
+1.7931470795527382e+00
+5.3022662192013148e-01
+-2.0310001488427137e+01
+6.2733575209620867e+00
+-1.1811163021250579e+00
+-1.8070149437653786e+01
+-7.9062896731680099e-01
+1.4865654483490782e+00
+-2.1737105076599104e+01
+-1.3481532488667918e+00
+1.9027014747044855e+00
+-2.2616997995905326e+01
+-1.0487679569536175e+01
+1.1743896168025614e+01
+-4.4154005030793321e+01
+-1.0487679569536175e+01
+1.1743896168025614e+01
+-4.4154005030793321e+01
+1.2987261257388166e+01
+2.7967550449297298e+00
+-3.1012303524014680e+01
+-1.0406386550816270e+01
+1.1746438257843653e+01
+-4.3925486193252482e+01
+-1.6911613201181239e-01
+1.0090604241652679e+00
+-2.0962311675725889e+01
+1.2971587219802190e+01
+2.6718359658481119e+00
+-3.0955627783218954e+01
+1.4407712477211387e+01
+1.2427113326917829e+00
+-2.8138287791283048e+01
+1.3612935958019147e+01
+2.2625885105618848e+00
+-3.0226396977749577e+01
+-3.9920928538629663e-01
+1.0806790744579586e+00
+-2.1170949978760852e+01
+1.4446052840049328e+01
+8.7063164327211962e-01
+-2.7272425273703377e+01
+-3.4144969032646971e-01
+1.0126169480277170e+00
+-2.1158593797261585e+01
+-3.5150849428609854e-01
+1.0050267504222690e+00
+-2.1108697821548834e+01
+1.5863443297164898e-01
+7.8229157283312478e-01
+-2.0740090328303825e+01
+-1.0083307862170740e+01
+1.1653582445880016e+01
+-4.4496931265387900e+01
+-1.6317471956994214e+00
+2.3704848760395372e+00
+-2.4108780483215892e+01
+-8.5218499896556277e-01
+1.3125933894370267e+00
+-2.1707002360980134e+01
+-8.7060933598672241e-01
+1.2827879598922987e+00
+-2.1648266648607869e+01
+1.1713584403545003e+00
+4.2704944798220201e-01
+-2.0334514468800378e+01
+1.4497221606324734e+01
+1.0383047639733565e+00
+-2.7863196246669560e+01
+-4.3208397870121394e-02
+8.1591535560044304e-01
+-2.0860288683157421e+01
+-1.1408108961279881e+00
+1.5676271467204050e+00
+-2.2301515945467123e+01
+-1.1408108961279881e+00
+1.5676271467204050e+00
+-2.2301515945467123e+01
+-1.3814843859704642e+00
+1.6407570226355306e+00
+-2.2095283560845427e+01
+1.1909367845462726e+00
+4.0927494783920992e-01
+-2.0358497202738757e+01
+1.4244324726486683e+01
+7.7106792404008229e-01
+-2.7236351533443429e+01
+1.4244324726486683e+01
+7.7106792404008229e-01
+-2.7236351533443429e+01
+-3.5330529080385570e-01
+8.9872689392725791e-01
+-2.1061160389394466e+01
+3.2040075074897376e+00
+9.4650831581637201e-02
+-2.0533293037149839e+01
+3.6256870572382144e-01
+5.9181333596198993e-01
+-2.0603228784468300e+01
+3.6256870572382144e-01
+5.9181333596198993e-01
+-2.0603228784468300e+01
+4.7316056985033672e-01
+5.4322810379726205e-01
+-2.0552745645630811e+01
+9.8081884055974522e-01
+3.5849437112719279e-01
+-2.0374296098930042e+01
+6.8493766344991502e-01
+4.3778580071419332e-01
+-2.0461649090820782e+01
+1.3347924450946019e+01
+2.0870954342947194e+00
+-3.0301113668196351e+01
+-1.0562096666024301e+00
+1.2856298820433458e+00
+-2.1936322025172526e+01
+-3.9369355846970738e-01
+8.2508660463998507e-01
+-2.1091085932894138e+01
+-3.9553946786996508e-01
+8.2781204294803579e-01
+-2.1091162331133241e+01
+-3.9702276085976951e-01
+8.2273111371527030e-01
+-2.1086075144468285e+01
+1.3037752948087260e+01
+2.1287779164121892e+00
+-3.0484689321140284e+01
+1.4183662559263150e+00
+1.7512965615962120e-01
+-2.0271432019383873e+01
+1.4332880648256623e+01
+6.9050436872770793e-01
+-2.7466609209440996e+01
+1.4242312404693211e+01
+6.3166512339043324e-01
+-2.7363456837878985e+01
+1.4255639079181728e+01
+1.4629806471165144e-01
+-2.6266245070028784e+01
+6.2278216077419755e+00
+-1.5268175442426224e+00
+-1.8223761754948768e+01
+2.6265409428193038e+00
+-2.7581096631556212e-01
+-1.9737198293752499e+01
+2.6265409428193038e+00
+-2.7581096631556212e-01
+-1.9737198293752499e+01
+3.3069079552886129e+00
+-8.3351292064638816e-02
+-2.0587670150205930e+01
+1.3373352009028164e+01
+1.9610845095454204e+00
+-3.0560920727263607e+01
+1.4088040227922436e+01
+2.4150818929219209e-01
+-2.6559999121419892e+01
+1.5141023763583680e+01
+-7.3027765379174070e-01
+-2.4526780044782129e+01
+-3.5619456184911025e-01
+7.3273226042832396e-01
+-2.1138048209728023e+01
+1.3302425002460183e+01
+1.8292358528245469e+00
+-3.0325189656013663e+01
+-4.4164309499508176e+00
+1.1709429257791339e+01
+-4.8438856896170819e+01
+-1.8412001032765517e+00
+3.6603945552979327e+00
+-2.8353160891318161e+01
+2.9477564484084784e+00
+-8.8651644818730432e-02
+-2.0219225913824310e+01
+1.4381600235814123e+01
+3.0252559791294065e-01
+-2.6924658103517348e+01
+8.7578483027822063e-01
+2.0570967831099871e-01
+-2.0385166914587778e+01
+5.7310578432038212e-02
+4.6467565723711146e-01
+-2.0741843971430932e+01
+1.4927811294157376e+01
+-1.3572949354269892e-02
+-2.6473932842599037e+01
+-1.1516666154874137e+01
+1.1082619601539541e+01
+-4.4090344174424104e+01
+1.4001281805380682e+01
+1.0599082582689023e+00
+-2.8909547091478561e+01
+-2.1051294984180258e+00
+2.6831045202914847e+00
+-2.5769573289758210e+01
+-4.6426713709634432e-01
+6.4737378230276443e-01
+-2.1144684122917045e+01
+-2.5124951779402743e-02
+4.3845877146138351e-01
+-2.0783024988296084e+01
+-7.3137445552089755e+00
+1.1707371328593631e+01
+-4.7745908329254291e+01
+-1.1165038245802239e+00
+9.9333930014647587e-01
+-2.1817155519358106e+01
+-1.1142870286317166e-01
+4.3347466726205397e-01
+-2.0854111296811688e+01
+3.3199709088211455e+00
+-2.4053390286611073e-01
+-2.0639869363606632e+01
+1.1156461353254907e+00
+3.3014800325942770e-02
+-2.0320390132595907e+01
+-2.5730259534262019e+00
+3.5592522233475243e+00
+-2.8083918179067759e+01
+-2.3434285583898040e+00
+2.5132087107185366e+00
+-2.5509337518731382e+01
+-1.7011475657737304e-01
+4.3129496880952045e-01
+-2.0859719187432969e+01
+1.4529142717186255e+01
+-5.4975234571797960e-01
+-2.5354302019864349e+01
+-2.0337568115602539e-01
+4.4007163040076791e-01
+-2.0934035979256176e+01
+-4.2363980973093213e-01
+5.2645278164268117e-01
+-2.1074115504221282e+01
+1.4089252623184651e+01
+-1.2978471077593171e-01
+-2.6339858286366077e+01
+1.4089252623184651e+01
+-1.2978471077593171e-01
+-2.6339858286366077e+01
+1.5361221867036823e+01
+-3.6276846535066348e-01
+-2.6447493957081164e+01
+3.9703823865697230e-01
+1.7096545369154442e-01
+-2.0584267450228143e+01
+2.2935657557878120e+00
+-2.5885694707314999e-01
+-2.0343280505613201e+01
+1.4403679138479305e+01
+5.2135950619329874e-01
+-2.8439910609994378e+01
+-3.2213184554267427e-01
+4.0200343679312572e-01
+-2.0958544151433095e+01
+1.4541489535857052e+01
+2.2804524976175541e-01
+-2.7664146241938205e+01
+2.0945059346676724e+00
+-3.1518999803177211e-01
+-2.0291726211667275e+01
+2.0945059346676724e+00
+-3.1518999803177211e-01
+-2.0291726211667275e+01
+5.2828131567811076e-01
+1.6314375528698865e-02
+-2.0482804541383178e+01
+1.3925902636883629e+01
+1.1057989296555526e+00
+-3.0096271105552532e+01
+-2.7474286733213782e-01
+3.2826502420314274e-01
+-2.0972057846388616e+01
+1.0150716473838652e+00
+-1.3331073556388567e-01
+-2.0351478342729092e+01
+-2.3025069556501649e+00
+2.2630352658401822e+00
+-2.5264199325967507e+01
+1.1141087751660006e+00
+-1.6359606061631776e-01
+-2.0325243937799865e+01
+7.0798078379774393e-02
+1.3544968287542855e-01
+-2.0717727367819879e+01
+2.9453554772235377e+00
+-4.5426097227884210e-01
+-2.0491180076213386e+01
+1.3659809889374678e+01
+7.3995770642792635e-01
+-2.9029867458808980e+01
+1.3543461571746274e+00
+-2.4966595169297062e-01
+-2.0288283858529020e+01
+-7.5817277390214057e+00
+1.1191928209863502e+01
+-4.7719390946805866e+01
+7.0518062770421186e-01
+-1.3885657061498013e-01
+-2.0413396036389621e+01
+1.4087628656252926e+01
+-3.3101160207410257e-01
+-2.6673188349669374e+01
+9.9467199049763388e-01
+-2.1783336053031607e-01
+-2.0345421192673321e+01
+1.4240456873111256e+01
+6.0745614682999582e-01
+-2.9309670130210126e+01
+-2.5446120822008909e+00
+2.1103377055341381e+00
+-2.5082089099522076e+01
+1.0097239613277600e-01
+3.8648273594583789e-02
+-2.0704786822226541e+01
+1.4066939060830080e+01
+1.3508078143473962e-01
+-2.8071985522065305e+01
+1.4336934549166461e+01
+-3.7482399383499659e-01
+-2.6936699828047232e+01
+1.4643201340807822e+01
+5.9054091300360434e-02
+-2.8302086542879710e+01
+1.5314083740924339e+01
+-7.6150749012281516e-01
+-2.6496833722412919e+01
+2.5419480988794083e+00
+-5.2434263218852595e-01
+-2.0415661702719426e+01
+1.4504916262512622e+00
+-3.7730521582831789e-01
+-2.0305796912438794e+01
+1.4558378821429018e+01
+-1.3730474634258474e-01
+-2.7696781220089612e+01
+1.3916106565737071e+01
+5.1792457167207617e-01
+-2.9162211725231604e+01
+1.3907261863280477e+01
+6.7687263586995927e-01
+-2.9657124867317492e+01
+-3.2654368083726766e+00
+3.0113789448579888e+00
+-2.7312587930507288e+01
+-2.2111683327542231e+00
+2.0128864216908928e+00
+-2.5264474177549619e+01
+1.4035950255914800e+01
+-2.2814093869219843e-01
+-2.7207773148630558e+01
+-2.2020310026746656e-01
+7.7921165060383768e-02
+-2.0918000916969188e+01
+1.2533171443834183e+00
+-3.9667964696401609e-01
+-2.0328176720323377e+01
+1.4781998069501832e+00
+-4.5812931159821452e-01
+-2.0317010511163804e+01
+2.4146137570966304e+00
+-6.1975592351544351e-01
+-2.0361731058825033e+01
+3.3832278068719868e+00
+-6.8624466398555029e-01
+-2.0694056296187110e+01
+-2.4858185714348808e+00
+1.6481655852143786e+00
+-2.4420968210534166e+01
+1.4747896339539979e+01
+-4.7398567862038310e-01
+-2.7284348064035218e+01
+-3.0490220516221647e+00
+2.4314880534034953e+00
+-2.6465017884488677e+01
+-1.1319307866962497e+01
+1.0111907693719246e+01
+-4.4522655223661836e+01
+-2.4816378078601482e+00
+1.5966307918270501e+00
+-2.4445271716396896e+01
+1.3945046073088241e+01
+4.8670479567787295e-01
+-2.9725960422355410e+01
+4.1474331467844039e-01
+-2.7913839655174616e-01
+-2.0577738239779944e+01
+-9.7205626752017835e+00
+1.0742915827949437e+01
+-4.7135737154154029e+01
+5.0539212250933883e+00
+-1.1438780537319830e+00
+-2.0611486330269425e+01
+2.0852821823690131e+00
+-6.8472864121133858e-01
+-2.0391662015622916e+01
+-4.5801608547108827e+00
+8.8159797326826137e+00
+-4.4692821165194019e+01
+-2.9884859592869231e+00
+2.3583372749918792e+00
+-2.6605780221622506e+01
+1.4189391086073019e+01
+-1.1066040586810580e-02
+-2.8961781999205449e+01
+-1.9725304390964047e+00
+1.0290608769776415e+00
+-2.3421586808167842e+01
+1.4172819119382217e+01
+1.8477710859412100e-01
+-2.9494788732025491e+01
+1.4234502758339781e+01
+1.8725576195269633e-01
+-2.9562269341601628e+01
+-1.2092408717771581e+00
+3.3625792841091307e-01
+-2.1778091099572020e+01
+-1.2273582949654329e+00
+3.7062013315731018e-01
+-2.1819960416927209e+01
+1.4010589549583001e+00
+-6.4251770151716714e-01
+-2.0347601905891128e+01
+1.4004028459400685e+01
+-2.6306371400487560e-01
+-2.8513956680798735e+01
+-1.4983585002476678e+00
+4.8502526780641758e-01
+-2.2359996201175452e+01
+-8.0299077240955907e-01
+2.4573215771212240e-01
+-2.2044964999605302e+01
+3.4319634921584913e-01
+-4.3657616033067981e-01
+-2.0598740063451078e+01
+5.8939798022766023e+00
+-1.0329862249600710e+00
+-2.1864049968656637e+01
+1.1588091390845745e+00
+-6.8128217099070998e-01
+-2.0382499047135926e+01
+1.4129167953468224e+01
+-4.6994297530498802e-01
+-2.8249811452578466e+01
+1.4136540621530660e+01
+-4.4028727663393946e-01
+-2.8341270681141221e+01
+1.3879899832818213e+01
+2.1729419701470257e-02
+-2.9666955370022361e+01
+1.3834282624224256e+01
+3.6019593174430001e-02
+-2.9905627836322068e+01
+1.3879859919342751e+01
+-4.4920138463746470e-02
+-2.9639080749266707e+01
+1.4045694503782251e+01
+-4.1774421021017905e-01
+-2.8820469169835238e+01
+1.3957795400165482e+01
+-3.8164723507283155e-01
+-2.8709472845041685e+01
+1.4989155050074508e+01
+-1.3588801798240504e+00
+-2.6489632297037705e+01
+-1.4569512169311534e+00
+4.9208184661178977e-01
+-2.2879943506498478e+01
+3.0065684557039205e+00
+-1.2527454033994525e+00
+-2.0157849238824731e+01
+-3.7982740752490365e+00
+1.7829762140174696e+00
+-2.5481020692270963e+01
+-1.1284657771333011e+00
+1.3138371746435541e-02
+-2.1698928895788224e+01
+-9.3951014774096453e-01
+1.0260950546702007e-01
+-2.2084337803202693e+01
+3.0635332933506576e+00
+-1.0777281429448149e+00
+-2.0737507194065188e+01
+2.9504324895173079e-01
+-5.7825077541763414e-01
+-2.0698654479483491e+01
+5.5252897138944823e-01
+-6.9522963913440894e-01
+-2.0558627171695054e+01
+-2.4523568734841947e+00
+8.1640223257780287e-01
+-2.3510098067900632e+01
+-1.0648188089548700e+00
+-6.2126235586341345e-02
+-2.1611590742678004e+01
+1.3857236812421837e+01
+-5.2114231356562332e-02
+-3.0084858410325136e+01
+1.4889818707919074e+01
+-8.6010136175579655e-01
+-2.8354902702348941e+01
+9.0796971238395052e-01
+-8.0128370728693232e-01
+-2.0491058744937373e+01
+1.6034811363488441e+00
+-9.4511866653312593e-01
+-2.0435725373194504e+01
+-7.9645402507653962e-01
+-2.5158998732666854e-01
+-2.1353939029336324e+01
+2.8627097653469114e+00
+-1.1560569056861221e+00
+-2.0668740058221481e+01
+-8.3245529613162517e-01
+-2.4315230101391946e-01
+-2.1372824809939161e+01
+1.3906212948434639e+01
+-3.1476408947802470e-01
+-2.9902251717124443e+01
+-3.1749059970626098e-01
+-5.0403125539034044e-01
+-2.1053815415698850e+01
+-3.5232390077134879e+00
+1.3912966267580908e+00
+-2.5202049155848897e+01
+-1.1674763677567241e+00
+-1.7541968015946022e-01
+-2.1731817524741992e+01
+-1.1674763677567241e+00
+-1.7541968015946022e-01
+-2.1731817524741992e+01
+8.8688473443207475e-02
+-7.3732272925515863e-01
+-2.0811977890614305e+01
+-2.7334750964421350e+00
+6.9162074833999720e-01
+-2.3622530160491660e+01
+1.4555440118523675e+01
+-1.5253741474028268e+00
+-2.6947183399110973e+01
+1.9147580505328272e+00
+-1.2473436190151301e+00
+-2.0448656589673906e+01
+3.2357134367321616e-01
+-8.5487524038767937e-01
+-2.0705846230458455e+01
+1.5339565892298201e+00
+-1.1452502818870989e+00
+-2.0521271923230238e+01
+1.5314285274016295e+00
+-1.1470966519142449e+00
+-2.0501493352912703e+01
+1.4118655118274914e+01
+-6.5179127400529346e-01
+-2.9750313919627661e+01
+-5.9246435293099153e-01
+-5.6726130813609810e-01
+-2.1209385283617667e+01
+1.5614136665157583e+00
+-1.2145068658211602e+00
+-2.0557786678424780e+01
+-1.4485230480486138e+00
+-2.7334126874428499e-01
+-2.1914404561126101e+01
+-8.3872981678947647e-02
+-8.5355023770260585e-01
+-2.0934980043382271e+01
+-6.1166624886713550e-01
+-6.7291096897280178e-01
+-2.1262800243643557e+01
+-5.1783736387468060e-01
+-6.9660257551414850e-01
+-2.1258882954819324e+01
+9.5406062342330300e-01
+-1.2390767782989263e+00
+-2.0602494902347701e+01
+6.1398092961123429e-01
+-1.1532001377965775e+00
+-2.0687047288594965e+01
+6.5177075061187006e-01
+-1.1698805529514047e+00
+-2.0658509103126949e+01
+1.3856090638845760e+01
+-6.0252207840799943e-01
+-3.0856793860114941e+01
+-1.3373185307180369e+00
+-4.2385497096514413e-01
+-2.1971081511868881e+01
+1.3934975389795769e+01
+-5.5769346592262936e-01
+-3.1091127706097165e+01
+6.1563399922322297e+00
+-3.2538655989903846e+00
+-1.7936594074308527e+01
+1.5310382961164317e+01
+-2.1893856255908526e+00
+-2.7175254526634962e+01
+1.2819061552872519e+01
+-1.0315411514942916e+00
+-2.9014925583657416e+01
+-3.7427660458559870e+00
+6.1849965123775996e-01
+-2.4161698788825792e+01
+1.3217037641758083e+01
+-1.4090549515037825e+00
+-2.8210482307324803e+01
+-1.1858724765194393e+00
+-7.9772134062004885e-01
+-2.1349824831534477e+01
+-2.2725683999536219e+00
+-1.6896402228815513e-01
+-2.2856962615729628e+01
+1.4858939819037856e+01
+-2.2918880156433272e+00
+-2.7376582278530350e+01
+-2.0585198662016855e+00
+-3.3260653554186070e-01
+-2.2521949228874476e+01
+-2.1853932927240347e+00
+-4.3568649161026435e-01
+-2.2289195524204519e+01
+-2.0715374709351080e+00
+-3.8827166910086969e-01
+-2.2546439617437937e+01
+-1.7450126166537783e+00
+-7.3650752375728090e-01
+-2.1497989958346761e+01
+4.2173861402943720e-02
+-1.3877645675720820e+00
+-2.0543641358037469e+01
+5.5723521326606820e+00
+-3.7323094610431586e+00
+-1.6779963679509269e+01
+-1.7073719341674725e+00
+-7.8977502677425204e-01
+-2.1472383328837136e+01
+-1.7351332545541032e+00
+-7.8295293528201171e-01
+-2.1566184991977135e+01
+-2.2635591691533636e+00
+-3.2299826112141428e-01
+-2.2779527621727151e+01
+-4.0338284320701270e+00
+6.8544988563481402e-01
+-2.5160547990813157e+01
+-5.0554044061736891e-01
+-1.3711041720882537e+00
+-2.0529900874837324e+01
+4.1975587478439111e+00
+-2.3084449529651665e+00
+-2.0538479858400226e+01
+-1.4518346355051890e+00
+-9.8938836674393393e-01
+-2.1287095739895278e+01
+2.9703291574710855e+00
+-2.5178570415249841e+00
+-1.9411651346158688e+01
+-7.7239366827029521e-01
+-1.3646698284081524e+00
+-2.0771746748831195e+01
+-7.7433829786650266e-01
+-1.3604568984838254e+00
+-2.0777037425425782e+01
+-7.7476775450965352e-01
+-1.4069249395560202e+00
+-2.0789334406287409e+01
+2.9690690441590575e+00
+-2.7585950478793664e+00
+-1.8879712597082527e+01
+4.5193090314013551e+00
+-2.6382501401089598e+00
+-2.0324658972911788e+01
+1.4461247149600950e+01
+-2.3763252156266477e+00
+-2.8414086801589505e+01
+1.4867091934738584e+01
+-2.5422063406377844e+00
+-2.8310350169962277e+01
+-6.1220583224010594e-01
+-1.5392096360645235e+00
+-2.0662905276878242e+01
+-5.9318122486256453e-01
+-1.5517288548411665e+00
+-2.0690230888096288e+01
+-6.0078794697967608e-01
+-1.5594640080294286e+00
+-2.0665164346843298e+01
+-5.2761949862751722e-01
+-1.5590116306108626e+00
+-2.0634130263991977e+01
+-3.2432412841414906e+00
+-4.5217868940847294e-01
+-2.2758126986586699e+01
+-6.7871647651485407e+00
+3.5886679199424329e+00
+-3.4804093281015916e+01
+-3.1253063847760862e+00
+-5.3494431216126126e-01
+-2.2700651355566201e+01
+-7.3946101058618174e-01
+-1.5345364323524013e+00
+-2.0821581608764987e+01
+-3.6262030845252240e+00
+-3.9853696215671491e-01
+-2.2984238363787696e+01
+-4.9456082099656768e+00
+4.4948398876406692e+00
+-3.9538397147070341e+01
+-2.7004207281724746e-01
+-1.7338518154156937e+00
+-2.0580666152889563e+01
+1.7714558131350726e+00
+-2.2276038163149749e+00
+-2.0290814972422453e+01
+6.6875423174507495e-02
+-1.8262825670303440e+00
+-2.0460237633768493e+01
+-6.9675593032143217e+00
+3.3439908528846649e+00
+-3.4378243592069893e+01
+-1.7086365865321052e+00
+-1.1831900246545495e+00
+-2.1682957267555455e+01
+-1.7086365865321052e+00
+-1.1831900246545495e+00
+-2.1682957267555455e+01
+2.7772635352766667e-01
+-1.9477197715033974e+00
+-2.0466596938918389e+01
+2.7153128477878685e-01
+-1.9417029398520551e+00
+-2.0454249318167282e+01
+3.2934417407798593e+00
+-2.6949386771215011e+00
+-2.0006998031078790e+01
+-1.3257870545357577e+00
+-1.4198715936576363e+00
+-2.1347202315879045e+01
+-9.4975437449868372e-01
+-1.5938838121578400e+00
+-2.1052246781074501e+01
+4.0996807760822923e-01
+-2.0255684835212082e+00
+-2.0448515627075285e+01
+9.7606086734735309e-01
+-2.1828998361784864e+00
+-2.0305694144529966e+01
+-3.7306281534908448e+00
+-5.4508582167788511e-01
+-2.3203026431878115e+01
+-3.7306281534908448e+00
+-5.4508582167788511e-01
+-2.3203026431878115e+01
+-2.8489214404968450e+00
+-1.0956123584803990e+00
+-2.1854647772179362e+01
+-2.1138159176320906e-01
+-1.9490729511414642e+00
+-2.0670437403808261e+01
+1.9307251715614995e-01
+-2.0562518989014227e+00
+-2.0554171285561150e+01
+-1.3043504161410064e+00
+-1.5779293600665441e+00
+-2.1278477005000379e+01
+1.5425649999946311e+01
+-3.4843310723904546e+00
+-2.7408575175014878e+01
+-6.4621283240198997e+00
+4.0510020782941103e+00
+-3.8859790181789641e+01
+3.1800715609626939e-02
+-2.0755572912794427e+00
+-2.0601189511306803e+01
+-4.5906208195437461e+00
+2.1349707552243808e+00
+-3.3179670096504772e+01
+-3.6599693646890876e+00
+2.5610329353205574e+00
+-3.6152169680763350e+01
+-3.0992157743897768e+00
+-1.0742034228196780e+00
+-2.2471381519303399e+01
+1.5672548892219016e+01
+-3.9187563372666605e+00
+-2.6984203043465492e+01
+-2.8527553004461907e+00
+-1.4031621382814248e+00
+-2.1573709302950693e+01
+-3.0705101055965338e+00
+-1.1644320987800474e+00
+-2.2418288138505197e+01
+1.2439913876646404e-01
+-2.3448641030112558e+00
+-2.0315934917399019e+01
+-1.6752865995971982e+00
+-1.7965724502005476e+00
+-2.1024308771252333e+01
+1.9100190873469942e+00
+-3.0027408299679474e+00
+-1.9679997271078921e+01
+4.8592787340648963e-01
+-2.6261839506177909e+00
+-1.9715837605162108e+01
+-3.4081469837123453e+00
+-1.0085861209098186e+00
+-2.3221553559188223e+01
+-8.1858976526409197e+00
+3.3962832647683818e+00
+-3.7162912351899706e+01
+1.5534388036514952e+00
+-3.0617953197732484e+00
+-1.9424561919011268e+01
+2.0807814138091785e+00
+-3.0628600738602692e+00
+-1.9798439437319537e+01
+4.6091206214762828e+00
+-3.2942677712367363e+00
+-2.1044582093765801e+01
+1.4682636565042305e+01
+-4.1403186343968192e+00
+-2.6612164630642674e+01
+-6.8657648545597088e+00
+2.7441881672635797e+00
+-3.6558164294900067e+01
+-2.3164929636078604e+00
+-1.9281440800182483e+00
+-2.1527799878757104e+01
+-3.0540584320230098e+00
+-1.5979068216898435e+00
+-2.2432422274888662e+01
+2.0127984843762912e+00
+-3.2986629632045066e+00
+-2.0049035989922601e+01
+-7.2978838382526288e+00
+2.3338009321874411e+00
+-3.5612577391839878e+01
+-8.4806798696323948e+00
+2.5619841443882594e+00
+-3.5843114507588417e+01
+-1.7847164772547723e+00
+-2.3125870006949376e+00
+-2.1185995912575837e+01
+-2.6939029401077188e+00
+-1.9251863199943811e+00
+-2.2104790736532902e+01
+-2.8529370053734171e-01
+-2.8545468698198868e+00
+-2.0209173467436841e+01
+-2.8102565616501325e+00
+-2.0051992788035244e+00
+-2.1816778871077879e+01
+-1.4490556959962170e-01
+-2.9281869060634609e+00
+-2.0175642832199326e+01
+-2.5646645257874306e-01
+-2.9492064027720604e+00
+-2.0150744067744263e+01
+-2.7988492881532476e+00
+-2.0858814120380149e+00
+-2.1940553781322375e+01
+-1.9391281466629686e+00
+-2.3561827366513812e+00
+-2.1511416008777612e+01
+1.7658230139778219e+00
+-3.4827450461407699e+00
+-2.0254605366672919e+01
+-3.6093795133907727e+00
+-1.5893912160049319e+00
+-2.3409693707091879e+01
+1.6917379303540436e+00
+-3.4646337525294890e+00
+-2.0145143791840766e+01
+-6.0475994830856656e+00
+5.0348189202698079e-01
+-3.0774936592911057e+01
+-1.1228257415787151e+00
+-2.8744864638815697e+00
+-2.0667013520275795e+01
+7.7690642171106183e-01
+-3.4988456109417534e+00
+-1.9716245031810622e+01
+-6.5185125564066313e+00
+4.3463065979375248e-01
+-3.0571149623699164e+01
+3.4154394111971604e+00
+-3.9892177699626954e+00
+-2.0517226443292810e+01
+-2.6218694393866921e+00
+-2.3350671291006075e+00
+-2.2115521770313094e+01
+-2.6218694393866921e+00
+-2.3350671291006075e+00
+-2.2115521770313094e+01
+-3.5083491790320753e-01
+-3.1741206954227765e+00
+-2.0489482422765338e+01
+2.8231578015499057e+00
+-3.9082476713334113e+00
+-2.0459841064071107e+01
+-2.3473805931509109e+00
+-2.4488187039461051e+00
+-2.2110126964873356e+01
+-1.5859532852461458e-01
+-3.3459322667406930e+00
+-2.0525140210292506e+01
+-8.1315359304637500e+00
+1.2070995766888761e+00
+-3.3996709763029443e+01
+2.9525022843958300e+00
+-4.0721427845067453e+00
+-2.0602504085528157e+01
+-1.2325594526820220e+00
+-3.1461178975789066e+00
+-2.0686505764124927e+01
+-3.0786478783607207e-01
+-3.3449511331424255e+00
+-2.0693399470547376e+01
+-8.2912603947820163e+00
+1.0838747645655658e+00
+-3.4074046094190678e+01
+3.9771815324334381e+00
+-4.1897128968022725e+00
+-2.1327061677735816e+01
+-8.2200516787608624e+00
+1.0223608375758477e+00
+-3.3917891153734615e+01
+-3.4394055246330586e+00
+-2.1979509161226507e+00
+-2.3259754863130013e+01
+5.7791927474426497e-01
+-3.6806700912530363e+00
+-2.0353741499093882e+01
+5.2964544594501639e+00
+-4.9884350797389549e+00
+-2.0026066170074817e+01
+-9.1161135290513229e-01
+-3.2317148128305684e+00
+-2.0957839707222821e+01
+-1.2098882977100229e+00
+-3.1467489529574530e+00
+-2.1228983123465056e+01
+-9.4258887261236417e+00
+1.1421883531954811e+00
+-3.3866587585350665e+01
+4.9511325431467732e+00
+-4.3947255563771508e+00
+-2.2508222810185782e+01
+-6.5430314253064674e+00
+1.9893889245637206e-01
+-3.2695188864854579e+01
+-7.9929182403905408e+00
+-3.6611816092721967e-02
+-2.9945459325795746e+01
+3.6644490693517295e+00
+-4.3875547302689482e+00
+-2.1289391960138502e+01
+2.3087015618350923e-01
+-3.6392009170028912e+00
+-2.1463390903607181e+01
+2.8517966414580691e+00
+-4.3717749789630718e+00
+-2.0740515396781738e+01
+1.1231099845207890e+01
+-5.6189143694636208e+00
+-2.4504188709071741e+01
+7.1641773638907646e-01
+-3.9206876256201091e+00
+-2.0583264200255776e+01
+-4.2477540929689334e-01
+-3.6281642281606361e+00
+-2.1088732494677540e+01
+-2.7245299219351358e+00
+-2.8123122885909226e+00
+-2.2726781291423084e+01
+-2.7230522695510420e+00
+-2.8577910999329754e+00
+-2.2734382106076932e+01
+-2.7393570270512062e+00
+-2.9369139897345815e+00
+-2.2425966140499021e+01
+-2.8098385879872896e+00
+-2.8612057759213996e+00
+-2.2959766520174927e+01
+-2.8888470726613487e+00
+-2.9808872177257153e+00
+-2.2620003695784188e+01
+-9.2440568245849395e+00
+2.6512304273255788e-01
+-3.2875495673644700e+01
+-2.2221684429637505e+00
+-3.2702854152782979e+00
+-2.2097545583428413e+01
+-3.1600363490060177e+00
+-3.0007029018625113e+00
+-2.2502743672566435e+01
+3.2545485025368948e-01
+-4.1243982817975429e+00
+-2.0986370926364742e+01
+-3.2824883292804721e+00
+-2.7283353108707096e+00
+-2.4268405619743465e+01
+2.6962895614617590e+00
+-4.8353951068774688e+00
+-2.0903020521712776e+01
+-2.4987737950371831e+00
+-3.3388553654852511e+00
+-2.2376939487797355e+01
+-2.4434774596935913e+00
+-3.3167215902162508e+00
+-2.2860121106193052e+01
+1.5753352103107969e+00
+-4.6345354200543660e+00
+-2.1279798291030936e+01
+-1.8483755655604754e+00
+-3.6544969816914845e+00
+-2.2210860359065546e+01
+-1.4123679387800123e+00
+-3.8421847481766851e+00
+-2.1950226800724366e+01
+6.7518847994335329e-01
+-4.5334118489137003e+00
+-2.0884239966842237e+01
+6.7808758296121685e-01
+-4.5134232910634164e+00
+-2.0930762969205833e+01
+-5.0244004300063372e-01
+-4.1991251008172483e+00
+-2.1365145068558231e+01
+2.9222808139854806e+00
+-4.9748803354361000e+00
+-2.1662487804369920e+01
+2.9752770542950255e+00
+-5.0010438614472523e+00
+-2.1659487665860944e+01
+2.7197400270932652e+00
+-4.9334124635445349e+00
+-2.1674327962180126e+01
+-4.9057887712216269e-01
+-4.2346993883240787e+00
+-2.1474448897958027e+01
+6.9366722116523649e-01
+-4.6090095228878569e+00
+-2.1193192964622508e+01
+6.2094368088071528e-01
+-4.7012985851453104e+00
+-2.0787309084702539e+01
+-2.7283262251785323e+00
+-3.6162349219155381e+00
+-2.3794725432269949e+01
+-2.8056242071523432e+00
+-3.6108289161886380e+00
+-2.3612906992628538e+01
+-1.6386426736959789e+00
+-4.1369815790267843e+00
+-2.2471976487081438e+01
+-4.9259183420317615e-01
+-4.5748968934730980e+00
+-2.1743319090480128e+01
+4.8959546557785076e+00
+-6.0216372905383118e+00
+-2.2499897992157109e+01
+-6.9064722589720384e+00
+-2.3406461371679503e+00
+-2.9266976390043638e+01
+5.8935699584577439e-01
+-5.3730403885570395e+00
+-2.1262228113766106e+01
+-1.2594260165170139e+00
+-4.9311854411533407e+00
+-2.2048245459826191e+01
+-1.4080709398002671e+00
+-4.9955596442742500e+00
+-2.2431020592004490e+01
+7.2051443998947962e-01
+-5.6832666569122994e+00
+-2.1509132490182083e+01
+4.6824373218040011e-01
+-5.9053887228385236e+00
+-2.0843858445814220e+01
+4.8400163618082626e-01
+-6.1812433515328422e+00
+-2.0903254780677283e+01
+-3.5729687229321443e+00
+-4.8642896717137774e+00
+-2.3894034401578882e+01
+-3.5437727243869936e+00
+-4.8717770178168829e+00
+-2.3850956627143322e+01
+1.4803600042726761e+00
+-6.4176111361189712e+00
+-2.1172474646204382e+01
+-7.4834250339970190e+00
+-3.8448097117382334e+00
+-2.6937647361229988e+01
+-3.5069611004443635e+00
+-5.0978243201323226e+00
+-2.3761131219298807e+01
+-6.6706757105061127e+00
+-4.1003663397957348e+00
+-2.6820487029870375e+01
+-7.3462617851707197e+00
+-3.9893420255001444e+00
+-2.7056591107692373e+01
+9.4258841161153561e-01
+-6.7277430933888054e+00
+-2.1667223923380810e+01
+-1.7137095228050880e+00
+-6.0732827264234395e+00
+-2.2132261908061700e+01
+-1.4956746045935869e+00
+-6.2996556222899995e+00
+-2.2097263649284315e+01
+1.4613058322536249e-01
+-6.9104428739791457e+00
+-2.1621199122242917e+01
+3.3003347400228948e+00
+-7.8120712745384262e+00
+-2.1245998318991386e+01
+2.1533915437600299e+00
+-7.5138265398561668e+00
+-2.1300454373935544e+01
+-2.7065250828232870e+00
+-6.3302710408568634e+00
+-2.2653613666319469e+01
+3.5998812202915464e-01
+-8.1444479581692448e+00
+-2.0023007151780117e+01
+-6.3655473214757334e+00
+-6.2064599496364936e+00
+-2.3974007898928225e+01
+-2.6259598705995174e-01
+-8.0356182122490338e+00
+-2.0949897700965991e+01
+1.6170903478025098e+00
+-8.9172738866762931e+00
+-2.0496721245859753e+01
+1.5415701201091303e+00
+-8.7423180221903394e+00
+-1.9912527933648139e+01
+-8.5890342846106886e+00
+2.3496360892998339e+01
+-3.5417834736974946e+01
+3.3240193813636965e+00
+2.6832425709216619e+01
+-4.0797509131967033e+01
+6.7020638692199042e-01
+2.5865944728980214e+01
+-3.9545571633855864e+01
+5.9009332602465747e+00
+2.7914733016950127e+01
+-4.2627962464046135e+01
+7.3516226931943462e+00
+2.8825491193396900e+01
+-4.3817767994634934e+01
+3.5315399743995926e+00
+2.7263434224760058e+01
+-4.1657352380183760e+01
+5.5056721030708369e+00
+2.8134038412188602e+01
+-4.3062846842894665e+01
+1.0956584060522696e+01
+2.8800789459196732e+01
+-4.4065717777914266e+01
+1.3130219679113086e+01
+2.9796178833399519e+01
+-4.5657722983033409e+01
+6.2044884354164132e-01
+2.5781939470623893e+01
+-3.9877747130833633e+01
+1.0880026039216252e+01
+2.8282744239851731e+01
+-4.3842888730999739e+01
+1.1489804933322905e+01
+2.8698799734418792e+01
+-4.3977306107710248e+01
+7.9572923741987180e+00
+2.7482414655317495e+01
+-4.2874081805000699e+01
+1.0761520729134553e+01
+2.8716191708284036e+01
+-4.4550523348165150e+01
+1.4235383713285728e+01
+3.0404619794889634e+01
+-4.6957688775080882e+01
+1.4663815099643802e+01
+3.0920042876995719e+01
+-4.7863826507932757e+01
+9.1245408457032333e+00
+2.8122921912545173e+01
+-4.3786776196363334e+01
+4.8739540400260379e+00
+2.7128290138125340e+01
+-4.2513621308270018e+01
+4.9995984181634352e+00
+2.6862855973956645e+01
+-4.2004708776169032e+01
+9.7073451290418671e+00
+2.8845419732573227e+01
+-4.5096038982946475e+01
+5.4525624279230795e+00
+2.7548280689118581e+01
+-4.3427035998749297e+01
+4.8317549056491726e+00
+2.7289808492269508e+01
+-4.3100537262527936e+01
+4.5159941530692285e+00
+2.6876129776546804e+01
+-4.2831201982666549e+01
+1.4793548451395701e+01
+3.0289574193479734e+01
+-4.7665621412755961e+01
+1.5029566100223567e+01
+3.0679630292906626e+01
+-4.8079189996407209e+01
+5.3585957922702505e+00
+2.7541243160706969e+01
+-4.3849526959384853e+01
+4.7831862992606897e+00
+2.6965283919356004e+01
+-4.3272301663046747e+01
+1.4839194606073733e+01
+3.0813843390820708e+01
+-4.9159292396707293e+01
+5.7456432386736740e+00
+2.7000305218298216e+01
+-4.3889839859439697e+01
+1.5943177920569866e+01
+3.0730870090858019e+01
+-4.9318499058299764e+01
+-3.5259681750637064e+00
+2.2615607654513276e+01
+-3.7439801902351988e+01
+-2.3260506414176674e+00
+2.4097818924076229e+01
+-3.9446483164766853e+01
+4.6303843122400936e+00
+2.6431790419968280e+01
+-4.2930770336211062e+01
+1.0909978206516083e+01
+1.5680143543130095e+01
+-2.9328287715637728e+01
+1.0058679990549896e+01
+1.4854588816772898e+01
+-2.8306646853354280e+01
+1.1755916650594727e+01
+1.5895452129337437e+01
+-2.9631472729599846e+01
+3.8879122365169736e+00
+2.6340869328677528e+01
+-4.2726208233770194e+01
+6.4680262347689199e+00
+2.7046836989937329e+01
+-4.3986077291244619e+01
+3.6372772995582916e+00
+2.5987883610737669e+01
+-4.2542645758894167e+01
+1.0912054743283033e+01
+1.5510798968557010e+01
+-2.9295199114292615e+01
+1.1703806354412043e+01
+1.5955362447065445e+01
+-2.9862710255866592e+01
+1.0077272830976147e+01
+1.4973504418062783e+01
+-2.8662537792806482e+01
+5.9593396026539232e+00
+2.6303472363086055e+01
+-4.3091579423562820e+01
+1.3193920561958359e+00
+2.5682331992075849e+01
+-4.2166825903546531e+01
+1.3496796609544532e+01
+1.6229490147472006e+01
+-3.0556400577341915e+01
+2.7775362578756182e+00
+2.5636874776961918e+01
+-4.2255859113437097e+01
+1.1823988929302772e+01
+1.5839536227820311e+01
+-2.9854633495414650e+01
+6.9015491139169702e+00
+2.6839631302531650e+01
+-4.4103172266949223e+01
+1.2186782781132576e+01
+1.6655025267969709e+01
+-3.1042496730516035e+01
+-2.1602182425043721e+00
+2.4167923434925267e+01
+-4.0070785112471249e+01
+-3.8524668605370160e+00
+2.2938894778084194e+01
+-3.8178862678483078e+01
+3.1570486494551573e+00
+2.5716750213760580e+01
+-4.2507756756372679e+01
+6.5597199702113942e+00
+2.7076859160564151e+01
+-4.4420753770023623e+01
+2.6265432226154735e+00
+2.6175809177877955e+01
+-4.3243842325016331e+01
+2.7652695159815575e+00
+2.6187285731847641e+01
+-4.3278215130605957e+01
+1.2624470845924961e+01
+1.5707769998696108e+01
+-2.9955330719857901e+01
+1.2274488963228031e+01
+1.0010899595320984e+01
+-2.2788502321311618e+01
+-7.8436036590132812e+00
+2.1492119959925173e+01
+-3.6120492239259839e+01
+-7.5238029949076859e+00
+2.1357105713187590e+01
+-3.5955237715496430e+01
+-6.0259503353117152e+00
+2.2042281143866642e+01
+-3.7078211804244049e+01
+-3.6988051346947182e-01
+2.4988367745304231e+01
+-4.1648713946014929e+01
+-8.3039870759895980e+00
+2.1460919838093766e+01
+-3.6307532046472822e+01
+4.9830917945456923e+00
+2.6026544046309859e+01
+-4.3370221405680994e+01
+1.7117690515899710e-02
+2.4637591385571358e+01
+-4.1220057799742918e+01
+2.7899296039589494e+00
+2.5201154288475941e+01
+-4.2075759156753911e+01
+-6.4256392718720168e+00
+2.2092128485933404e+01
+-3.7393222971298350e+01
+5.3158250944052234e+00
+2.6261552774549976e+01
+-4.3890177783131662e+01
+-4.9955751067744352e+00
+2.2641369800113981e+01
+-3.8256457878780481e+01
+-3.7508819834091072e+00
+2.2628948421734201e+01
+-3.8334490837888225e+01
+1.0229492477804683e+01
+1.4877837000923545e+01
+-2.9132085676182090e+01
+1.2457535802142440e+01
+1.5759195308493297e+01
+-3.0377423572089675e+01
+2.2674536631044901e+00
+2.5034270175783522e+01
+-4.2052172798371281e+01
+-3.9000777933499933e+00
+2.2740551600814236e+01
+-3.8610849799187889e+01
+7.3432550523247304e+00
+2.6715774650946983e+01
+-4.4797380649234952e+01
+1.4560480041480460e+01
+2.9553918678260757e+01
+-4.9209423731779047e+01
+1.2856526681801002e+01
+1.6627283508454777e+01
+-3.1784337875305130e+01
+1.2856526681801002e+01
+1.6627283508454777e+01
+-3.1784337875305130e+01
+8.7490953098927058e+00
+9.2342738733900838e+00
+-2.1590517930026703e+01
+1.2068340773268032e+01
+1.0245371693133878e+01
+-2.3429881570481609e+01
+8.9525530061011618e-02
+2.4341548870970616e+01
+-4.1243251992863989e+01
+5.9802429574993283e+00
+2.6318026604084277e+01
+-4.4246992990415784e+01
+5.7108291737862640e+00
+2.6176380492869274e+01
+-4.4071334440677120e+01
+2.4868851299961312e+00
+2.4988423894646569e+01
+-4.2482945452000955e+01
+6.0396564800494694e+00
+2.6478075706047736e+01
+-4.4579803433686372e+01
+-7.7795622981446977e+00
+2.0998936596617479e+01
+-3.6117953015648403e+01
+5.9536658340123649e+00
+6.3251834925674588e+00
+-1.7582126283841497e+01
+4.4533565887703643e+00
+2.5830170787702009e+01
+-4.3922583523755314e+01
+1.3258711527048920e+01
+1.7199067047440060e+01
+-3.2929768742721045e+01
+9.0278667207156484e+00
+7.0163409465147542e+00
+-1.8809875360836912e+01
+-1.3009052802490661e+01
+1.9226640821867932e+01
+-3.3453827715094789e+01
+2.8442749893286958e+00
+2.5105423183155299e+01
+-4.2733126166259012e+01
+3.2556521865938635e+00
+2.5982512947861380e+01
+-4.4101449766824402e+01
+2.8442749893286958e+00
+2.5105423183155299e+01
+-4.2733126166259012e+01
+6.0100846691671546e+00
+2.6396700282448673e+01
+-4.4814547982718025e+01
+-1.3047463579154257e+01
+1.9122653716798030e+01
+-3.3329509317726341e+01
+-8.3209240857072029e+00
+2.0557663522680446e+01
+-3.5694906996575249e+01
+1.3082243947111026e+01
+1.0006609312806644e+01
+-2.3428719285246107e+01
+1.6347732500372679e+01
+2.9914472434827040e+01
+-5.0593797956234141e+01
+-1.0780754602686780e+01
+2.0030132786980484e+01
+-3.4943140978714126e+01
+4.9287042805835704e+00
+4.6800230770651163e+00
+-1.5482914984425534e+01
+-7.9236121111615976e+00
+2.0910626191259627e+01
+-3.6346983796716472e+01
+7.4117124467481057e+00
+2.6029665219040474e+01
+-4.5005748031447965e+01
+2.3493993637346624e+00
+2.4670645262135551e+01
+-4.2621289611862053e+01
+8.9422509471528162e+00
+6.0920485281447201e+00
+-1.7907097935882785e+01
+1.3794056461983264e+01
+2.7369976792803211e+01
+-4.7515318896000714e+01
+1.3850473472060155e+01
+2.8690238464675851e+01
+-4.9328526794028726e+01
+8.1176855584070413e+00
+2.6037946018390947e+01
+-4.5386840801560787e+01
+2.9129465567672255e+00
+2.1711915176545666e+00
+-1.2112551268055944e+01
+1.9594770289881647e+00
+2.4330548954325430e+01
+-4.2680085305996826e+01
+1.1850004339240058e+01
+1.5584862819399175e+01
+-3.1643052330729663e+01
+1.2430176969058422e+01
+1.6172015269734597e+01
+-3.2383266141717847e+01
+1.1677526455407095e+01
+2.6718489692213190e+01
+-4.7097820905626250e+01
+3.0510576612916401e-01
+2.3656453878658752e+01
+-4.1854612580519216e+01
+2.2226146313868735e+01
+3.0271441217267945e+01
+-5.2975554712269648e+01
+-1.2767504000226648e+00
+2.2904866548642467e+01
+-4.0727892259194533e+01
+-1.0578688884239260e+00
+2.3108427465142331e+01
+-4.1174310407508663e+01
+-1.0578688884239260e+00
+2.3108427465142331e+01
+-4.1174310407508663e+01
+-1.1645871757653538e+01
+1.9212956973081852e+01
+-3.4590560692846886e+01
+1.1989305517044709e+01
+1.5632086479746297e+01
+-3.2009601096928250e+01
+-7.0158788350470591e-01
+2.3053294858775832e+01
+-4.1396065151718702e+01
+-6.9858501189078959e-01
+2.3004577223080496e+01
+-4.1339970591559251e+01
+3.8047237700503760e+00
+2.4179459085576131e+01
+-4.3519227309476193e+01
+-2.6415687552480482e-01
+2.3265648248867297e+01
+-4.1776144670057064e+01
+1.6837041478863949e+01
+2.8140799766819129e+01
+-5.0070781189496188e+01
+1.9186239778699981e+01
+3.1163629690476359e+01
+-5.4877477476249290e+01
+5.8849113349391953e+00
+2.5677801251253303e+01
+-4.5764752498249194e+01
+6.8295100782325164e+00
+2.6511468078845375e+01
+-4.7198558663470209e+01
+-1.0540700392477040e+00
+2.2925353491195011e+01
+-4.1395293068440957e+01
+-1.0277223988357123e+00
+2.2856197731995895e+01
+-4.1244562161310228e+01
+-1.0689883909274775e+00
+2.2800511410977851e+01
+-4.1230629714722184e+01
+-1.0578572511762738e+01
+1.9319103297991063e+01
+-3.5086883049293014e+01
+-8.9049043131803103e+00
+2.3861873107312789e+01
+-4.1586988334575402e+01
+-9.1865845097512260e+00
+1.9430114495782053e+01
+-3.5568850479908193e+01
+9.9349800464971119e-02
+2.3620606918724363e+01
+-4.2611471256324755e+01
+5.8491725808328772e+00
+2.5267001118520081e+01
+-4.5478695360887819e+01
+1.2206886303572283e+01
+2.7211007226270212e+01
+-4.8857877771663794e+01
+5.0900034385046862e+00
+4.0617684119967352e+00
+-1.5608443700202624e+01
+1.2576311293085059e+01
+2.7276027598104882e+01
+-4.8925519795829032e+01
+-8.8467530993153272e+00
+2.0072169285777015e+01
+-3.6696423003180925e+01
+1.1950513696200506e+01
+2.7268745046422133e+01
+-4.8919488176481664e+01
+3.9224265134834813e+00
+2.5421743883127856e+01
+-4.5636003939040400e+01
+1.2379752825784397e+01
+9.8790429220841176e+00
+-2.4375565437776505e+01
+5.4992633698796434e+00
+2.4911495434794393e+01
+-4.5162385235180025e+01
+1.5093592787247372e+01
+2.7384622636906577e+01
+-4.9356507786313500e+01
+1.3993852947899422e+01
+1.4606058730171922e+01
+-3.1342435246917937e+01
+-9.7256317107404548e+00
+2.3616761340732346e+01
+-4.1477121077672741e+01
+-1.2474315614674390e+01
+1.8447800520190434e+01
+-3.4114349659909230e+01
+3.4551057119776711e+00
+2.3763035014424965e+01
+-4.3546549831154394e+01
+-1.1442088351300599e+01
+1.8993713257294591e+01
+-3.5060824212931699e+01
+-9.1877474475309242e+00
+1.9608392130320794e+01
+-3.6117986159009028e+01
+-1.2530846135817884e+01
+1.8382227589441385e+01
+-3.4228661394337323e+01
+1.2835398963845243e+01
+2.7401589937803003e+01
+-4.9714483960753689e+01
+2.7130157070684726e+00
+2.3817662328470270e+01
+-4.3728734778936015e+01
+1.2441685303940105e+01
+2.7010722467212894e+01
+-4.9387398674256410e+01
+1.2967161582675590e+01
+2.5813271493730220e+01
+-4.7919388483640233e+01
+1.3099047718028817e+01
+1.0985128444046643e+01
+-2.6963501118276579e+01
+2.2339687200780070e+01
+3.1691714514278011e+01
+-5.7816892929573157e+01
+2.2339687200780070e+01
+3.1691714514278011e+01
+-5.7816892929573157e+01
+-9.0002827681398512e-01
+2.2410018293364054e+01
+-4.1815026838004030e+01
+-1.5527579054599026e+00
+2.2190592969584195e+01
+-4.1632239469705844e+01
+-2.0295312412490842e+00
+2.1905266881337582e+01
+-4.1048766518450584e+01
+9.4931576072582722e+00
+2.5351406656093136e+01
+-4.7451369912627101e+01
+-1.0958646561162519e+01
+1.8369057868225500e+01
+-3.5004955484682533e+01
+1.3933159734603140e+00
+2.3144036497637209e+01
+-4.3428762188612346e+01
+9.7916583417904732e+00
+2.5692099350904826e+01
+-4.8180667467043058e+01
+4.3368631509278268e+00
+2.4146425459803577e+01
+-4.5382251310644072e+01
+1.2037727035971724e+01
+2.6432901934339792e+01
+-4.9418042951626326e+01
+2.7861095132975910e-01
+2.2960938617157431e+01
+-4.3289856462445044e+01
+6.3755872069333455e+00
+2.4786487098732504e+01
+-4.6726180021124904e+01
+1.4424345272663192e+01
+1.2787985058531824e+01
+-2.9985720478312434e+01
+5.4841258872931427e+00
+2.3972361126956926e+01
+-4.5444237605323231e+01
+8.7419517277140706e+00
+2.6253722795757298e+01
+-4.9317246517014858e+01
+-8.6577953303315667e+00
+1.9608543052010525e+01
+-3.7432716409798317e+01
+1.1883181707610383e+01
+2.6371948005374524e+01
+-4.9958254473695156e+01
+-9.1580775586690262e+00
+1.9058410749661796e+01
+-3.6526930095186209e+01
+1.2781150951243140e+01
+1.1656274917934589e+01
+-2.8228465811110365e+01
+-9.0362688008670062e+00
+1.9089351796063092e+01
+-3.6586428080787918e+01
+-2.4212068282874459e+00
+2.1588369135046122e+01
+-4.1356916977437074e+01
+1.3198200282904120e+01
+9.5519422022513201e+00
+-2.5476084504637491e+01
+1.2917258780854848e+01
+9.4146921287679479e+00
+-2.5103712848906238e+01
+1.4221459158103954e+01
+8.1793773025792103e+00
+-2.3616492242581280e+01
+3.6747088715188742e-01
+2.2854843014910617e+01
+-4.3584861366500377e+01
+8.5569247476024266e+00
+2.4862746262765452e+01
+-4.7487145074131590e+01
+1.5199554385618352e+01
+2.6055906101603611e+01
+-5.0160477828090308e+01
+-3.1510901023891660e+00
+2.1430396998160411e+01
+-4.1142325057873634e+01
+9.0788186946807539e+00
+2.4747812899374573e+01
+-4.7817149922170607e+01
+9.3752410965450839e+00
+2.5282599414642856e+01
+-4.8536445802179301e+01
+1.4856608128889690e+01
+1.3316601024572636e+01
+-3.1686199455618588e+01
+-3.3314859200002402e+00
+2.1163215463114977e+01
+-4.1026709424680597e+01
+-3.3862438648700244e+00
+2.1077270168913518e+01
+-4.0743144162767877e+01
+1.5521857356956502e+01
+2.6301919673110000e+01
+-5.0756724205296372e+01
+9.0189538616726885e+00
+2.4901589479610823e+01
+-4.8057861624377331e+01
+8.5898802887519476e+00
+2.4350256157732762e+01
+-4.7246429978188623e+01
+-1.1740431849821363e+01
+1.8151973431238027e+01
+-3.5529421207093897e+01
+5.3434161831103832e+00
+2.3252946592725980e+01
+-4.5424113217185720e+01
+6.4115649413372194e-02
+2.2271403886328613e+01
+-4.3361274714791662e+01
+6.4476966692726387e-02
+2.2153931912017388e+01
+-4.3118581018104763e+01
+1.2211175911036024e+01
+2.5137681817476295e+01
+-4.8866238398225256e+01
+2.7023845623776821e+00
+2.2696445022728849e+01
+-4.4328508990697195e+01
+-6.1159393745322244e-01
+2.1993850630495174e+01
+-4.2999540083591619e+01
+4.3312494429417558e+00
+2.3328917739015580e+01
+-4.5597498772880812e+01
+-6.1422074139163003e+00
+2.0065743223064722e+01
+-3.9507087092499503e+01
+-8.8771994137999020e+00
+1.7356444532166766e+01
+-3.5072996625103684e+01
+1.0751697660368055e+01
+2.6389118045973021e+01
+-5.1411190808861903e+01
+-2.2409916929791796e+00
+2.1156682179713638e+01
+-4.1773601031477135e+01
+-7.2188944508100406e+00
+1.9336910691287173e+01
+-3.8432918640161475e+01
+1.0289535520014585e+01
+2.5358871005677120e+01
+-5.0102151163625891e+01
+9.4396210909210598e+00
+7.1368875383681152e+00
+-2.2111959319956124e+01
+1.4374083558962225e+01
+1.4147853359994306e+01
+-3.3761478810956554e+01
+-5.9604644931682911e+00
+1.9515000937225825e+01
+-3.9023432077162575e+01
+1.2647267013248783e+01
+8.5096409395753092e+00
+-2.4877102928705323e+01
+-7.7018723399892428e+00
+1.9206685014928105e+01
+-3.8328499663342029e+01
+1.4498926189359411e+01
+1.2373123011517208e+01
+-3.0958365267757003e+01
+2.8183997525242699e-01
+2.1767586946772109e+01
+-4.3501845276011672e+01
+-7.5351118655470248e+00
+1.9206277203473466e+01
+-3.8475221479569939e+01
+5.3124431416960292e+00
+2.2886230599646598e+01
+-4.5722363667584396e+01
+-7.3931099385478962e+00
+2.1495678920998696e+01
+-4.1895774504189774e+01
+-8.1164015227649458e+00
+1.8962612391797354e+01
+-3.8420136409007760e+01
+-1.2796246431064864e+01
+1.7196122213935151e+01
+-3.4908661521771265e+01
+-7.9422289647376729e+00
+1.8585158004125418e+01
+-3.8015186804355103e+01
+6.3219461785039393e+00
+2.3195022093298899e+01
+-4.6633764201544246e+01
+-8.8758032632004316e+00
+1.8871511182325808e+01
+-3.8425781867931704e+01
+-8.4135849589477019e+00
+2.0936271223584683e+01
+-4.1159351038667339e+01
+5.9470945731858071e+00
+2.3232609319147752e+01
+-4.6825812154893157e+01
+5.8881292226906590e+00
+2.2987249761553986e+01
+-4.6245591113352639e+01
+1.5938644523194000e+01
+2.5966876334815318e+01
+-5.2266298409988330e+01
+-9.0912516129197432e+00
+1.8766638977091525e+01
+-3.8419809065424133e+01
+-9.0912516129197432e+00
+1.8766638977091525e+01
+-3.8419809065424133e+01
+-7.5448704202376442e+00
+1.9227422820508888e+01
+-3.8941739219631899e+01
+-7.5318121818252814e+00
+1.9164130991927198e+01
+-3.8870749725104204e+01
+5.5229879622962619e+00
+2.2435014760456685e+01
+-4.5573460371087933e+01
+-7.3889170842128999e+00
+1.9095469281675790e+01
+-3.9079770072192943e+01
+-8.1039307887666414e+00
+1.8668766476120016e+01
+-3.8278992240737296e+01
+-1.2184782481778884e+00
+2.0962497867390805e+01
+-4.2708864119814500e+01
+-1.2790239927385265e+01
+1.6901724102965918e+01
+-3.4728820908117676e+01
+1.6106692962240297e+00
+2.2011993617371399e+01
+-4.4913052748994239e+01
+1.5956622975364068e+01
+2.5582426318421039e+01
+-5.2029207068628033e+01
+-1.2463386510951866e+01
+1.7217219865263200e+01
+-3.5315110507538741e+01
+-1.2180897257565073e+01
+1.7359323937118322e+01
+-3.5612644594346278e+01
+6.5217002950729128e+00
+2.3455860656968984e+01
+-4.7719595787926615e+01
+-1.2556364907586408e+01
+1.6809389406875297e+01
+-3.4783895311567576e+01
+1.2534498759186137e+01
+6.4173926824399654e+00
+-2.2293381963919423e+01
+-1.3985897845610593e+00
+2.1041660148115742e+01
+-4.3279585484214515e+01
+1.5763021777203006e+01
+2.6097044696161291e+01
+-5.3399597578698263e+01
+-7.3150993089304572e+00
+1.9128802385072099e+01
+-3.9685037763319798e+01
+-7.3647474570308553e+00
+1.9096089874702148e+01
+-3.9338857651797170e+01
+-7.2409551421661487e+00
+1.8643655888031564e+01
+-3.9065069919437740e+01
+-1.0358000915359819e+01
+1.8332849347229391e+01
+-3.8095691551197667e+01
+-1.3375398921519086e+01
+1.6826092778116656e+01
+-3.4831084818716143e+01
+-1.3375398921519086e+01
+1.6826092778116656e+01
+-3.4831084818716143e+01
+-7.1165932953798956e+00
+1.9178423457409934e+01
+-3.9968155810465944e+01
+-7.2290535714217850e+00
+1.8966757317429146e+01
+-3.9048093305445910e+01
+6.8462179983375711e+00
+2.3397204236764594e+01
+-4.8171119236772967e+01
+7.2892694264615079e+00
+2.3322747229926385e+01
+-4.7967653664854815e+01
+-1.0445748203997169e+01
+1.7951982511930968e+01
+-3.7347180213109034e+01
+-1.0255538356751774e+01
+1.7489369693704436e+01
+-3.6742271355896236e+01
+-5.9031744727421342e+00
+1.9315453126886883e+01
+-3.9868838754882177e+01
+-4.0089697249089324e+00
+2.0073240089081022e+01
+-4.2018017500957001e+01
+-4.1134994792818347e+00
+1.9987755761019564e+01
+-4.1508683741350751e+01
+-4.0089697249089324e+00
+2.0073240089081022e+01
+-4.2018017500957001e+01
+-8.2012615963110527e+00
+1.8758494201918825e+01
+-3.9362824312848097e+01
+-8.1257342386275244e+00
+1.8278851663334883e+01
+-3.8629054162435928e+01
+-1.2539405880562361e+01
+1.6966218560637877e+01
+-3.5513022488620287e+01
+1.7464185127909910e+00
+2.1728802543568996e+01
+-4.5264106933200679e+01
+1.2394392707501837e+01
+9.6117926674842469e+00
+-2.7728046971428377e+01
+-1.2762811002779898e+01
+1.6788404006256151e+01
+-3.5267578491430406e+01
+-8.3339951427491368e+00
+1.8007541731888075e+01
+-3.8229096730342029e+01
+5.4078193286382605e+00
+2.2000651987056333e+01
+-4.6205018461610834e+01
+-1.3056232768818449e+01
+1.6820959143626659e+01
+-3.5308210105032501e+01
+-3.7493910865407960e+00
+1.9849694461272158e+01
+-4.1666965187055538e+01
+6.5805207302311413e+00
+2.2931038491588318e+01
+-4.8044736237451744e+01
+6.5805207302311413e+00
+2.2931038491588318e+01
+-4.8044736237451744e+01
+-2.4127976570336402e+00
+2.0469374441877207e+01
+-4.3019933112079670e+01
+7.0840054406336481e+00
+2.3019090882054481e+01
+-4.8305820627529258e+01
+7.1885235160881127e+00
+2.3150304621758664e+01
+-4.8471750045792831e+01
+-1.0670654580095636e+01
+1.7644713020971682e+01
+-3.7155459458380236e+01
+-1.0694807893549488e+01
+1.7710157559854000e+01
+-3.7236766989136029e+01
+-9.1585309613052637e+00
+1.8280146521494842e+01
+-3.8838160015266887e+01
+-9.2010267650612594e+00
+1.8039075042427118e+01
+-3.8250459555148097e+01
+-3.0835231927945452e+00
+2.0002670662958618e+01
+-4.2299695934306200e+01
+6.1585169752234332e+00
+2.2912184968830925e+01
+-4.8051823784263227e+01
+1.2606040142276960e+01
+1.0577684294743321e+01
+-2.9335187107707817e+01
+1.3196329884462568e+01
+6.4122418314337413e+00
+-2.3236598230729385e+01
+1.5867000397940294e+00
+2.1540638582996131e+01
+-4.5505364847052753e+01
+1.5806419995827505e+00
+2.1522238675180603e+01
+-4.5487907027641100e+01
+-8.4946314617252554e+00
+1.8141079145119004e+01
+-3.8825780470638627e+01
+-1.2629264806330912e+01
+1.6482739867984090e+01
+-3.5229778855438127e+01
+-1.2748567479929759e+01
+1.6413889847218876e+01
+-3.5144420857306962e+01
+1.6613816024552193e+01
+2.4639956811040800e+01
+-5.2895125803302641e+01
+1.8212745632877969e+01
+2.5664651006027349e+01
+-5.4812333376176007e+01
+1.8842998660766121e+01
+2.6450335115910875e+01
+-5.6122158653611933e+01
+3.2417776847997146e+00
+2.1826730014074474e+01
+-4.6756205960178640e+01
+1.0024808846915381e+01
+2.3574207427850386e+01
+-5.0446440275744116e+01
+1.3322885302207681e+01
+6.8441318749589346e+00
+-2.4405080111826411e+01
+1.3695598387264305e+01
+6.6882770107240068e+00
+-2.4200056970541421e+01
+-1.0086770038858440e+01
+1.7571513821390255e+01
+-3.7701037175555307e+01
+5.6939360373063490e+00
+3.0849695508190123e+00
+-1.7000464098614085e+01
+1.2840762114780620e+01
+2.3446943035405514e+01
+-5.0907288502043642e+01
+-5.7462917559881967e+00
+1.8876803690438358e+01
+-4.0885772745483251e+01
+1.7915191791268544e+01
+2.5857699077816637e+01
+-5.6021547972095064e+01
+-1.0194322782008333e+01
+1.7052164335901598e+01
+-3.7623028196743476e+01
+1.2436424586950536e+00
+2.0784889719647122e+01
+-4.5926681932528517e+01
+3.9227296245096444e+00
+2.0970618517235970e+01
+-4.6436673723596648e+01
+1.6621479893176417e+01
+2.4583980935681907e+01
+-5.4599196943428581e+01
+-1.1054422104891598e+01
+1.7158112423150239e+01
+-3.8243863296410751e+01
+1.3229815345268270e+00
+2.0734263617165752e+01
+-4.5989794568357986e+01
+-8.6703081495205705e+00
+1.7426646410599485e+01
+-3.9290589352076708e+01
+1.4695977813464964e+01
+1.0836377340364361e+01
+-3.2069701665912937e+01
+5.7588796563908424e+00
+2.1860846872955847e+01
+-4.8962358432371346e+01
+1.2975741493916697e+01
+1.0132922831819966e+01
+-3.0468423325389715e+01
+1.2311604726927966e+01
+7.2940015353180474e+00
+-2.5837881504101787e+01
+-9.0480809903454151e+00
+1.7357122369102402e+01
+-3.8868661738538343e+01
+-9.0336811118210676e+00
+1.7315455894857873e+01
+-3.8823693689537983e+01
+6.3083348664553354e+00
+2.2806139759320519e+01
+-5.0732136856534488e+01
+-7.0312971418555623e+00
+1.8007674239810672e+01
+-4.0494104411574220e+01
+1.8533515686842250e+01
+2.4690341821375672e+01
+-5.5955099735038054e+01
+1.0723834913784605e+01
+2.2936731488442984e+01
+-5.1924521004442660e+01
+1.2465630987529208e+01
+7.2189838446262948e+00
+-2.6171313376852304e+01
+1.6660723826493378e+01
+2.3834740780677286e+01
+-5.4586782270832067e+01
+-8.9529237252344149e+00
+1.7182627094363895e+01
+-3.9473342319368449e+01
+-3.3542737175632871e+00
+1.8805139632682508e+01
+-4.3311228085847503e+01
+-1.2538880866933882e+01
+1.5784262777300254e+01
+-3.6141431725013575e+01
+2.3507456542080050e+01
+2.7043482686215683e+01
+-6.2049122195388115e+01
+1.3867787090907354e+01
+2.4457876072736802e+01
+-5.6249490263401782e+01
+1.1807361079883531e+01
+7.3320257775710749e+00
+-2.6361860691501548e+01
+1.3029970498669941e+01
+9.8483743204717094e+00
+-3.0990453512996417e+01
+-4.0902573115164049e+00
+1.8528960988798620e+01
+-4.2822362805479706e+01
+1.0869716522089313e+01
+2.2865727350755769e+01
+-5.3151482833537870e+01
+1.2863251594822955e+01
+9.6764018723389000e+00
+-3.0618093688413037e+01
+1.2620676068634801e+01
+1.1362677549262754e+01
+-3.3692951922981557e+01
+-9.0086960919498225e+00
+1.6875598055707155e+01
+-3.9586770110145473e+01
+-1.2370207225250047e+01
+1.5858860666184066e+01
+-3.6708414323554770e+01
+1.0781366969056482e+01
+2.2359975783573859e+01
+-5.2247753305747082e+01
+1.1756108696295026e+01
+1.0556012577610277e+01
+-3.2267988194723699e+01
+-1.2148346019218536e+01
+1.3971272054409372e+01
+-3.3668250957911248e+01
+1.2608269105358287e+01
+1.1184246044570139e+01
+-3.3575650410247206e+01
+-3.4024786448392521e+00
+1.8416976696942992e+01
+-4.3507146864828606e+01
+-9.0756043602193675e+00
+1.6625035641526416e+01
+-3.9533373542236092e+01
+2.1783251988397300e+01
+2.5327273981390693e+01
+-6.0281283010163790e+01
+1.1769297875516051e+01
+7.8324430276160113e+00
+-2.8079116290181474e+01
+6.9931614470678936e+00
+2.1111863272771963e+01
+-5.0312171875674871e+01
+6.4133203213122734e+00
+2.0978293328268197e+01
+-5.0315662192662685e+01
+1.2952217645544209e+01
+5.7252373609035168e+00
+-2.4784984656542296e+01
+1.3010162574476313e+01
+1.0207157596078563e+01
+-3.2730945083781080e+01
+1.1934722376951772e+01
+7.2562722650391223e+00
+-2.7277226413067247e+01
+1.2129126161517222e+01
+8.8458853195814324e+00
+-2.9984145518952520e+01
+-5.9221426138926807e+00
+1.7189989198019262e+01
+-4.1838927636741531e+01
+1.1532055712249926e+01
+1.0823405104265561e+01
+-3.3564359078162880e+01
+1.3277886277317338e+01
+1.1059206741601564e+01
+-3.4574186399876936e+01
+1.3335449539708641e+01
+1.1099074961903391e+01
+-3.4678802168886051e+01
+-1.0732423565053779e+01
+1.6432437093218642e+01
+-3.9526586365280544e+01
+-1.0706593646512504e+01
+1.6093228689472209e+01
+-3.8550124480558225e+01
+4.0361828456177493e+00
+1.9843104377027757e+01
+-4.8526359911613277e+01
+1.3052150070398257e+01
+9.7322605220752880e+00
+-3.2265783963108184e+01
+-9.4474131780450126e+00
+1.6388158328222030e+01
+-3.9586124858587866e+01
+1.3608319177467449e+01
+1.0051809113424717e+01
+-3.3193804142285131e+01
+1.2160358516832481e+01
+6.1282297207579512e+00
+-2.5725066171440766e+01
+1.2666013262058071e+01
+1.0052711737423207e+01
+-3.2780119321421473e+01
+7.2599570924613159e+00
+2.1176437636141831e+01
+-5.1757331461551018e+01
+1.2011386751312566e+01
+9.2123907772133187e+00
+-3.1275902170269752e+01
+-1.0400287142742538e+01
+1.5965987210232607e+01
+-3.9193114909591962e+01
+-6.2002653802752272e+00
+1.6936280530874939e+01
+-4.1982129945054240e+01
+1.2530621727355074e+01
+9.2616320459410044e+00
+-3.1577102948436078e+01
+1.4056477786477590e+01
+2.2700628101058548e+01
+-5.6208684847699530e+01
+8.8314506367129511e+00
+2.0757943579949128e+01
+-5.1615294108066827e+01
+1.2397927464867537e+01
+6.6467839458986475e+00
+-2.7122450496744825e+01
+1.2409388069567438e+01
+4.5356302198818472e+00
+-2.3567747034676373e+01
+-6.0341030573499186e+00
+1.6754122461495104e+01
+-4.2308598222176379e+01
+1.3729338901618329e+01
+3.7350988237881526e+00
+-2.2498432682272792e+01
+1.5691217868984539e+00
+1.8942625443965504e+01
+-4.7899457670233517e+01
+-1.2381353330054417e+01
+1.5433636519031309e+01
+-3.8689701803984072e+01
+-1.0191716504154616e+01
+1.5888279701188219e+01
+-4.0146507319966730e+01
+1.3795857847436364e+01
+2.1073137751642136e+01
+-5.4706935253290908e+01
+-6.5708308646820237e+00
+1.6457022057030567e+01
+-4.2268695160397648e+01
+1.1742586013963535e+01
+5.6494332870847535e+00
+-2.6037076800644297e+01
+1.3806957879379397e+01
+9.9625841955142462e+00
+-3.4532966828204621e+01
+9.5229383225644426e+00
+1.9976765238859016e+01
+-5.1849812729277367e+01
+-5.1427407450085907e+00
+1.7133256096756021e+01
+-4.4117718295396010e+01
+1.2678652131284963e+01
+8.4479660962206715e+00
+-3.1570463975859631e+01
+8.8624465991389147e+00
+2.0922320220035214e+01
+-5.4198769479216537e+01
+1.3192556663278220e+01
+4.6656726404210680e+00
+-2.4845910071611282e+01
+-9.0528791323623654e+00
+1.5563400298561255e+01
+-4.0694147467142017e+01
+-9.4291682700036253e-02
+1.8131681775186156e+01
+-4.7112637467952865e+01
+7.0399685187533256e+00
+2.1418393541398657e+01
+-5.5168750139394220e+01
+1.2604856792890669e+01
+6.0825765923219990e+00
+-2.7714777731129004e+01
+-9.2469265391072875e-01
+1.7758522034141855e+01
+-4.6781448321660591e+01
+-2.7341567178707371e+00
+1.7247979661958407e+01
+-4.5625759015004107e+01
+1.1517497849557383e+01
+1.0032911555828392e+01
+-3.5034499864006300e+01
+7.8229041339728855e+00
+1.9732357971628730e+01
+-5.3050452116795142e+01
+-1.1245242053929498e+01
+1.5157922408524739e+01
+-3.9928895779926158e+01
+5.7095249172580842e-01
+1.8215907230384961e+01
+-4.8556571174089143e+01
+9.3280904999031709e+00
+2.0107148849116971e+01
+-5.4602417791169451e+01
+-1.2206293196524125e+01
+1.2762484657167052e+01
+-3.5041807384727285e+01
+-3.0619352558563242e+00
+1.6977897397383749e+01
+-4.5867776021348405e+01
+1.2111540159517361e+01
+5.8495514351076521e+00
+-2.7610789615167803e+01
+1.2832508408796258e+01
+5.9525653672722987e+00
+-2.8476286251425471e+01
+9.2941490774866473e+00
+1.9977293826233183e+01
+-5.4670006845014349e+01
+-1.2138680350133642e+01
+1.4382043949874392e+01
+-3.8471737009884194e+01
+-8.4567897008996660e+00
+1.5298096431343970e+01
+-4.1715950564729447e+01
+-1.2500500235766467e+01
+1.4532841342804936e+01
+-3.9293638720287973e+01
+-4.0588906163731417e+00
+1.6378300126332842e+01
+-4.5110854405914580e+01
+1.4247929682756114e+01
+2.2521747186317009e+00
+-2.1827794597645166e+01
+1.3085889025519840e+01
+5.0462541438816286e+00
+-2.7070399582186088e+01
+1.2786112086853088e+01
+8.0893698031849777e+00
+-3.2570025080070856e+01
+4.2830739089769381e+00
+1.8335103048438043e+01
+-5.1191986352036672e+01
+1.2370346717238400e+01
+8.9015383109642006e+00
+-3.4450409934792148e+01
+9.1290860807917595e-01
+1.7972386415948836e+01
+-4.9973435877063601e+01
+1.2586833894669809e+01
+3.4225023740078937e+00
+-2.4174507408960412e+01
+1.4279865880771398e+01
+4.0164327820634416e+00
+-2.5990987681080338e+01
+1.3907169948615811e+01
+2.6317784481999809e+00
+-2.3069847662307190e+01
+-1.1158407500714523e+01
+1.4553092453995990e+01
+-4.0100739876089996e+01
+1.4390617773897810e+01
+3.8635057139433706e+00
+-2.5831151590034271e+01
+1.3248613234102637e+01
+4.2812975354618334e+00
+-2.6309572627980220e+01
+1.6125418201725632e+00
+1.7337857005565578e+01
+-4.9606560107012548e+01
+8.5471454973831253e+00
+1.9135152979639550e+01
+-5.4776154087010930e+01
+5.9003237467599687e+00
+6.1641839741097149e-01
+-1.7048911679610143e+01
+1.2983445074056565e+01
+5.9877943322166889e+00
+-2.9819738337052325e+01
+1.3717435744056209e+01
+3.9418392204884003e+00
+-2.5974767737608605e+01
+1.1760564210312463e+01
+4.8445648361835216e+00
+-2.6898001327902062e+01
+-1.0006415747598526e+01
+1.4410851791639418e+01
+-4.1078745001817055e+01
+1.3215730163438062e+01
+9.4317367991380081e+00
+-3.7262131950777579e+01
+1.4243608468317360e+01
+3.5932874418080201e+00
+-2.5836919634002534e+01
+-3.3708886394209272e+00
+1.6042798937334499e+01
+-4.6347921968160158e+01
+1.3884953937676846e+01
+4.0734157503426456e+00
+-2.6785515673040294e+01
+-4.5201064535990048e+00
+1.5912602621912873e+01
+-4.5801195364264899e+01
+-4.5201064535990048e+00
+1.5912602621912873e+01
+-4.5801195364264899e+01
+1.1077320454762500e+01
+5.4629534591637370e+00
+-2.8459202640385467e+01
+1.2889046018663526e+01
+4.3233024520834178e+00
+-2.6917141489066655e+01
+1.3972369279954206e+01
+3.4605688060634696e+00
+-2.5539012208204394e+01
+1.4625146043595365e+01
+1.6929695374459506e+00
+-2.2151520770865361e+01
+-1.1128989584835731e+01
+1.4359720520447594e+01
+-4.1077048590876814e+01
+1.4372794791104118e+01
+2.7221404540499994e+00
+-2.4352209180657837e+01
+-1.7098744848782496e-01
+1.6847692533232031e+01
+-4.9352432611224266e+01
+1.4585590826331151e+01
+2.6862539335735165e+00
+-2.4470673129068331e+01
+-1.1955841364971443e+01
+1.3761445155048722e+01
+-3.9564992242946687e+01
+3.6531775629288965e-01
+1.7159304322097118e+01
+-5.0501125096597868e+01
+4.6829609241943260e+00
+1.7665458388139704e+01
+-5.2716984995294020e+01
+1.3804806229694654e+01
+3.5579841610123761e+00
+-2.6238590582298894e+01
+-1.0939618683578413e+01
+1.3852880370924252e+01
+-4.0912372717139611e+01
+1.3915976258314725e+01
+3.4702129252993088e+00
+-2.6086526848627571e+01
+1.3894315386788737e+01
+3.3914805283694016e+00
+-2.6014931078584112e+01
+1.4199249233099568e+01
+2.6946853876138785e+00
+-2.4789524574808482e+01
+-1.3070829491367007e+01
+1.3568385981821111e+01
+-3.9814935402349697e+01
+-9.3987756497574058e+00
+1.3475489660208833e+01
+-4.0473792614294837e+01
+-9.2955972081477523e+00
+1.4326767985761665e+01
+-4.2553483133306294e+01
+1.4470856848489573e+01
+2.2709842132202613e+00
+-2.4259799541882124e+01
+-1.2596868841105010e+01
+1.3210600203647523e+01
+-3.9062039657081861e+01
+1.4460471061704833e+01
+1.2929259144957077e+00
+-2.2186371158088807e+01
+1.4460471061704833e+01
+1.2929259144957077e+00
+-2.2186371158088807e+01
+1.3658178838532454e+01
+3.2433925330237607e+00
+-2.6167682197829407e+01
+3.0608860597419696e+00
+2.9273874398762203e+00
+-2.2222968942662281e+01
+1.3770006473049220e+01
+2.6614782577165550e+00
+-2.5058237976077113e+01
+1.4440005573797070e+01
+1.3046067559319803e+00
+-2.2288824227950634e+01
+1.6677444914465474e+00
+3.1791815933345342e+00
+-2.2299707704131940e+01
+1.4265187498530800e+01
+2.5699230892207119e+00
+-2.4976507070229847e+01
+1.4148333271925106e+01
+2.5798458384162042e+00
+-2.4994625101724285e+01
+-1.2956026448755297e+01
+1.3253436938754211e+01
+-3.9811116663103142e+01
+1.8337639590407626e+00
+3.1305566661964237e+00
+-2.2376494098353199e+01
+3.2820078233632923e+00
+2.9836406396441104e+00
+-2.2514221541882065e+01
+1.4173802083670992e+01
+7.6214027682372008e+00
+-3.5896814784123350e+01
+-7.1926980304208508e+00
+1.4700696149298190e+01
+-4.4497494512380648e+01
+1.4506794762140151e+01
+2.7822207198446862e+00
+-2.6001197951772919e+01
+-7.0685511155782610e+00
+1.4608560158780636e+01
+-4.4696419197151087e+01
+1.4163035563062813e+01
+2.8929970648984042e+00
+-2.6151880087341830e+01
+-7.6001045809515011e+00
+1.4105421902429150e+01
+-4.3819003054145142e+01
+-1.2124453772570392e+01
+1.3242926536298025e+01
+-4.0622574828960580e+01
+-1.4758449752373841e+00
+1.5598102888022662e+01
+-4.8776212455522789e+01
+3.4575712288587050e+00
+1.6928858846944575e+01
+-5.3115603042994294e+01
+-9.7779395710167414e+00
+1.3823689381329224e+01
+-4.3006087984049323e+01
+-3.3312813724140922e-01
+1.5957591707683006e+01
+-5.0646142308826889e+01
+2.5258798469681425e+00
+1.8131744573609068e+00
+-2.0425905679004995e+01
+1.3089233228939992e+01
+3.9979391311235970e+00
+-2.8836455202981149e+01
+-1.5205323934589874e+00
+1.5381982103598208e+01
+-4.9078687858751898e+01
+-9.7140129824458263e+00
+1.3741979991095846e+01
+-4.2775251272072509e+01
+-1.1281899900506922e+01
+1.3390788405433723e+01
+-4.1886406700259379e+01
+-9.8668702070390584e+00
+1.3630744165442733e+01
+-4.2638711060799402e+01
+-7.1441894886100004e+00
+1.4401695788867855e+01
+-4.5209233040463936e+01
+1.4785494914739116e+01
+7.9095143932963152e-01
+-2.2623124605321035e+01
+-1.0293304066160673e+01
+1.3465275083164602e+01
+-4.2448835071740426e+01
+-3.5337240777527956e+00
+1.4774293026051012e+01
+-4.7335211336627907e+01
+2.1816173284907863e+00
+1.6425966197345414e+00
+-2.0174834832553000e+01
+-1.3831406825049597e+00
+1.4982802547738244e+01
+-4.8670667021818183e+01
+-1.0578705140472014e+01
+1.3117123589190490e+01
+-4.1944031272283539e+01
+-7.1487250209493558e+00
+1.4037725138004651e+01
+-4.5074441244271618e+01
+1.4433358564842289e+01
+2.3037136735327643e+00
+-2.6221225858462830e+01
+-4.9398223601103214e-01
+3.0791836054947228e+00
+-2.2728413699410670e+01
+2.4475339950111472e+00
+1.6590007917673943e+00
+-2.0555391511505537e+01
+1.4577144869261112e+00
+1.8308953931045779e+00
+-2.0619596270901209e+01
+1.5119593345699809e+00
+1.7856558811120127e+00
+-2.0581173938300381e+01
+7.4884418868083336e-01
+2.1022462216058222e+00
+-2.1002549415269399e+01
+1.3511924946335755e+01
+3.0502106262462760e+00
+-2.7740288740972254e+01
+1.6663651403483584e+00
+1.6879923662421548e+00
+-2.0604027656736513e+01
+1.3749215104450543e+00
+1.8023974422609181e+00
+-2.0774066746850366e+01
+1.4222708169161324e+01
+1.8651134741868474e+00
+-2.5589061303501961e+01
+-1.1059875653369678e+01
+1.2739627347226627e+01
+-4.1802207627189517e+01
+-6.9620681286144688e+00
+1.3948212641877252e+01
+-4.5924209821835184e+01
+-3.9174474175955636e+00
+1.4677272759939230e+01
+-4.8648611462676563e+01
+-1.1252081040120846e+01
+1.2876811339241746e+01
+-4.1877590820667528e+01
+-6.0949286108055800e-01
+2.6947754492836236e+00
+-2.2439885610510164e+01
+1.2318535037300155e+01
+4.2959505010146968e+00
+-3.0729838855538542e+01
+-1.0267608035315183e+00
+3.2719992707802494e+00
+-2.3665261635965841e+01
+-5.6923477821883948e+00
+1.3945510007971102e+01
+-4.6855753032198905e+01
+1.3934016547131245e+01
+1.4923080764327343e+00
+-2.4937169259434494e+01
+4.6552916472007642e+00
+-1.6800872206507942e+00
+-1.4481044781836349e+01
+4.6552916472007642e+00
+-1.6800872206507942e+00
+-1.4481044781836349e+01
+7.7101100712701742e-01
+1.7253199827014645e+00
+-2.0865131870124660e+01
+6.9571262337438613e+00
+1.3337596156096064e+01
+-5.0106129840944412e+01
+1.4671977788034285e-01
+1.9565557400063658e+00
+-2.1332248997732005e+01
+-1.7952121607952706e-01
+1.5118389054264750e+01
+-5.1889056774837172e+01
+-1.0268393635749984e+00
+2.7016038143845122e+00
+-2.2626703087921761e+01
+9.9010218891547264e-01
+1.5208536800536969e+01
+-5.2585884876069670e+01
+1.0078357719448288e+00
+1.5428695337124172e+01
+-5.2973575321861155e+01
+1.5422836614371840e+00
+1.5279521668645121e+01
+-5.3072277963236964e+01
+9.5591919078766818e-01
+1.5007998099927213e+00
+-2.0680718891619048e+01
+2.8729932086580201e-01
+1.6634099110942158e+00
+-2.0992507673638272e+01
+4.7887109247225954e+00
+-1.8466101031869027e+00
+-1.4579370570818796e+01
+2.4530793865938622e-01
+1.6233150515172097e+00
+-2.0976023255789908e+01
+5.9291917520483066e+00
+-8.1325988563789930e-01
+-1.7511498105613189e+01
+1.3962508691560464e+01
+1.2302411392498205e+00
+-2.5351269392975325e+01
+-1.0015914368611103e+01
+1.2606378777568914e+01
+-4.3619779095877924e+01
+1.1734671478773199e+01
+4.0422271321665280e+00
+-3.0797851178554303e+01
+-5.8208687723970538e+00
+1.3806899401236874e+01
+-4.7570686826942435e+01
+1.4995092648915652e+01
+1.0508780933265351e+00
+-2.5682659992800129e+01
+1.4805951922410667e+01
+9.6640660152166735e-01
+-2.5329069221156256e+01
+-4.5421620078026892e-01
+1.8983940374694599e+00
+-2.1546097163596691e+01
+1.1212037886351468e-01
+1.4358930465879520e+00
+-2.0692004637592746e+01
+1.3170829698058782e+01
+2.3778362685650780e+00
+-2.8005140700598183e+01
+1.2519924255790311e+01
+3.8047744864181738e+00
+-3.1306099687028009e+01
+4.2417857651635584e+00
+1.2694593617101349e+01
+-4.9221769932697555e+01
+1.3136000416028498e+01
+2.7329454810781360e+00
+-2.9080181883127011e+01
+5.1561626581107252e+00
+1.2598692064413527e+01
+-4.9849911582189314e+01
+-1.1065471167513061e+00
+2.6233106751260751e+00
+-2.3278769776088293e+01
+-1.1495535579466408e+01
+1.2206683826899502e+01
+-4.2811009214336792e+01
+1.3212187929164074e+01
+2.4175695600204326e+00
+-2.8649743665604518e+01
+-1.0417494999399707e+01
+1.2273919843488931e+01
+-4.3638867295535064e+01
+-7.4987503456006888e+00
+1.2989111231173670e+01
+-4.6402166522911564e+01
+-6.8776036700523466e+00
+1.3085964300779340e+01
+-4.7234901351759589e+01
+-9.5798946455829874e+00
+1.2532714538254432e+01
+-4.4648701022577640e+01
+1.3817973029494791e+01
+9.3210026416773084e-01
+-2.5729116715947612e+01
+1.4158015923098564e+01
+1.3111831754240706e+00
+-2.6867436535979120e+01
+-9.7559388733737873e-01
+2.1757714659173613e+00
+-2.2875549104459207e+01
+-1.3230309087204120e+00
+2.1964613928421945e+00
+-2.2763726599889850e+01
+-3.8123377771176914e+00
+1.3344318605224879e+01
+-4.9556743680394938e+01
+3.1798497752903226e-01
+1.0921797654521423e+00
+-2.0745339890029900e+01
+-9.9482070472628621e+00
+1.2395586345756586e+01
+-4.4557445223237792e+01
+1.4178736942567925e+01
+1.3911091178104757e+00
+-2.7224789900999724e+01
+1.3083946057960755e+01
+2.5685409541442508e+00
+-2.9559769877321852e+01
+1.3887312441855219e+01
+1.0674498264199099e+00
+-2.6401511448482335e+01
+-1.1139694307891721e+00
+1.9191339650736117e+00
+-2.2199155775471297e+01
+1.3043350225184986e+01
+2.8969638007524097e+00
+-3.0701270656233348e+01
+-5.0404781680413944e+00
+1.2897754669174576e+01
+-4.8871196303376912e+01
+-5.7453241089481786e+00
+1.3065684824922959e+01
+-4.8796545920180336e+01
+-1.1277644625729488e+00
+1.6699618240628844e+00
+-2.2141852113008841e+01
+1.4072677598141020e+01
+8.0086458377995551e-01
+-2.6617277195696726e+01
+5.4403809373042149e+00
+-1.9465504886235219e+00
+-1.6034844334678034e+01
+7.6868400371469581e-01
+6.3286333327230115e-01
+-2.0506587706180284e+01
+1.4030360527971629e+01
+1.4287870445014539e+00
+-2.8335682651396048e+01
+-1.1366350626330016e-01
+9.1505209400917809e-01
+-2.0850753183963249e+01
+2.2167918655647658e+00
+-8.8160755056512566e-03
+-1.9713785658305582e+01
+5.2443836971939088e+00
+-2.2050162483690845e+00
+-1.5592172231668524e+01
+2.4086837870200779e+00
+1.5596118385902732e-01
+-2.0032720763634707e+01
+1.3940178214221485e+01
+6.5019398930950356e-01
+-2.6722922886245165e+01
+1.3005894571038167e+01
+2.3581073915327897e+00
+-3.1044537231423039e+01
+-1.8756504824433020e+00
+2.8188110597187364e+00
+-2.5813182169784881e+01
+1.2970594481970619e+00
+1.7747683201439127e-01
+-2.0247418719609701e+01
+-1.0619349857863639e+01
+1.0466295101345672e+01
+-4.3725503493977534e+01
+-2.5320206718772997e+00
+3.5508570204989964e+00
+-2.8059455351045617e+01
+1.3462199522586181e+01
+1.0535582118445137e+00
+-2.8612900267125692e+01
+1.2484985040064405e+01
+7.6002508792954337e-01
+-2.7435085389605312e+01
+-1.4805013419729958e+00
+1.2450037559868830e+00
+-2.2294318713431100e+01
+1.4239162767565100e+01
+7.6987131027830702e-01
+-2.8719971360056789e+01
+-2.0592495851459187e+00
+2.4814832301386867e+00
+-2.5511288934301046e+01
+1.4072571353070749e+01
+4.5107184709729464e-01
+-2.7931928610491738e+01
+3.6929240188880724e-01
+1.5326794999775847e-01
+-2.0316233926149994e+01
+3.6929240188880724e-01
+1.5326794999775847e-01
+-2.0316233926149994e+01
+-7.7247305033653264e+00
+1.1616858956634463e+01
+-4.7982909795144273e+01
+1.4372142485077170e+01
+3.2673176155146422e-01
+-2.8055201872601231e+01
+1.4210966367060875e+01
+3.6249884539398208e-01
+-2.7928838563913541e+01
+-5.5050607933822837e-01
+4.9148415621680708e-01
+-2.1151017623676410e+01
+-2.1130221269481835e+00
+2.2490349210224134e+00
+-2.5260844623635553e+01
+2.8621245372438553e+00
+-4.0778684601032450e-01
+-2.0166271664241076e+01
+1.5425160584315505e+00
+-2.6330860994733984e-01
+-1.9975651323235990e+01
+-2.0129757007023348e+00
+1.6017674268929398e+00
+-2.3677705248418047e+01
+2.6589236781998489e-02
+1.2149052491120051e-01
+-2.0707736576385727e+01
+1.3886921630120614e+01
+7.3385009813636592e-01
+-2.9435332842849967e+01
+6.2721484014580104e+00
+-1.9177885590525987e+00
+-1.8522132646801612e+01
+3.3830364611669284e+00
+-5.9101566525126215e-01
+-2.0577987109578757e+01
+3.3830364611669284e+00
+-5.9101566525126215e-01
+-2.0577987109578757e+01
+-2.8616571506102559e+00
+2.7360062047409777e+00
+-2.6973116008836474e+01
+1.3363962243090953e+01
+9.4429760287813180e-01
+-3.0330463596766222e+01
+-2.0276770051663662e+00
+1.2644092086851426e+00
+-2.3431234323315561e+01
+9.6148342406645027e-01
+-3.8731725206247603e-01
+-2.0373969072750111e+01
+9.6148342406645027e-01
+-3.8731725206247603e-01
+-2.0373969072750111e+01
+2.4246471473075100e+00
+-6.7713511233370793e-01
+-2.0320847174579956e+01
+-1.9626357843078384e+00
+1.1423377720596093e+00
+-2.3362949801426716e+01
+-5.9365198411109280e-02
+-1.0500238316733698e-01
+-2.0767039658552100e+01
+-2.4623923575197058e+00
+1.3856022782309707e+00
+-2.4134370689865769e+01
+9.5630344503497289e-01
+-5.2808156413116680e-01
+-2.0404313287881667e+01
+5.9329527623702543e+00
+-1.1594339378041034e+00
+-2.1312918583077877e+01
+2.6326076651136741e+00
+-8.9014511487051551e-01
+-2.0526643758463603e+01
+2.6010773985139299e+00
+-8.6086293339704112e-01
+-2.0549344522728955e+01
+-1.7556139143024487e+00
+5.8876041532854040e-01
+-2.2611373245240806e+01
+-1.7532250512780287e+00
+5.8524004483150915e-01
+-2.2611583419854828e+01
+2.1023815821416765e+00
+-8.1558295447356244e-01
+-2.0513697492734483e+01
+1.4384097900247577e+01
+-7.9049222365474459e-01
+-2.7759726739253438e+01
+1.4281590567071875e+01
+-8.0696014789529635e-01
+-2.7405714055234501e+01
+7.1932961528548070e-02
+-4.1712515538711437e-01
+-2.0797147707505300e+01
+1.4268298733742471e+01
+-7.1578589106940760e-01
+-2.8007769840931690e+01
+-1.7058234520256688e+00
+4.8138564358610630e-01
+-2.2655098277055799e+01
+-1.7058234520256688e+00
+4.8138564358610630e-01
+-2.2655098277055799e+01
+3.4595738163798362e-01
+-5.8555660352424732e-01
+-2.0630137382727209e+01
+1.2098110368189345e+00
+-8.3148895615164375e-01
+-2.0457447631728773e+01
+2.9817808919439135e+00
+-1.1625257774802831e+00
+-2.0515133493206452e+01
+2.5936383487085717e+00
+-1.1445040883842683e+00
+-2.0550773278849160e+01
+-1.2551177630839261e+01
+9.5495871240224304e+00
+-4.5162311582832345e+01
+-2.1228265031213711e+00
+3.3998860760290761e-01
+-2.2702200076416048e+01
+-3.8361020296554980e+00
+1.4315459264045627e+00
+-2.5208295500813822e+01
+-3.8270934889157262e+00
+1.4379337220408710e+00
+-2.5246172700202113e+01
+1.4363798775191327e+01
+-9.3638754561152326e-01
+-2.8771852315844477e+01
+3.2969883598421346e+00
+-1.4445269432077426e+00
+-2.0546347463389338e+01
+3.9295967944699024e+00
+-1.5493548821944425e+00
+-2.0775976312651679e+01
+6.1337740345179839e+00
+-3.1187741828130631e+00
+-1.8118157759078468e+01
+-3.3301602257443910e+00
+7.9907476993272053e-01
+-2.4532073451226545e+01
+-2.5723825696205380e+00
+1.6267287647769932e-01
+-2.2997429437307211e+01
+1.4728515053414606e+01
+-1.7529674792851984e+00
+-2.7831896912438118e+01
+1.6118871201235903e+00
+-1.5659309875856300e+00
+-2.0211011580679262e+01
+1.8103295146261857e+00
+-1.5578760222360699e+00
+-2.0200626907445351e+01
+-2.5398118224403414e+00
+7.9724753955254468e-02
+-2.3052478593885635e+01
+-1.5820670252511626e+00
+-5.1940655360236521e-01
+-2.1650449205230821e+01
+1.5316542173025498e+01
+-2.5028278818002887e+00
+-2.6134745970607007e+01
+1.4747602882842521e+01
+-2.0141777018054743e+00
+-2.7739297507916003e+01
+1.4605206452453164e+01
+-1.3902310241359850e+00
+-2.9896707774382673e+01
+1.2865249460190109e+01
+-1.4414006393843108e+00
+-2.8011584711551116e+01
+-3.8045395586776456e+00
+5.1070033395974224e-01
+-2.3933257370967755e+01
+1.5244738746542152e+01
+-2.2483395994125250e+00
+-2.7594877086266919e+01
+-3.8132978008505685e+00
+4.8228145999364475e-01
+-2.4125578959379610e+01
+-3.6627172516665896e+00
+4.8074901740981497e+00
+-3.9160073111006589e+01
+-1.4392927968649787e+00
+-9.1801121512623018e-01
+-2.1411854780101741e+01
+6.0228298232410937e+00
+-3.4323473253442618e+00
+-1.8334918585000580e+01
+-1.2452943534195973e+00
+-1.1293702073320964e+00
+-2.1173091374665159e+01
+3.5636474387252826e-01
+-1.7100883552150556e+00
+-2.0304995412589111e+01
+-1.2889675233971261e+00
+-1.1622468444080936e+00
+-2.1195800453429740e+01
+1.4963926281864033e+01
+-2.5826922747059098e+00
+-2.7860323846138424e+01
+4.4252723292989842e+00
+-2.5960969273199042e+00
+-2.0239527753024092e+01
+-2.9119867349191320e+00
+-3.9881512983244066e-01
+-2.2861433515881981e+01
+-3.7482767846515874e+00
+-1.3059890560951268e-01
+-2.3331640730481766e+01
+-1.6799562545560422e+00
+-1.0273774020175868e+00
+-2.1574078956074818e+01
+-1.7220718622165854e+00
+-1.0210882289417924e+00
+-2.1603217911825112e+01
+-8.4923654353465450e-01
+-1.3883503948304707e+00
+-2.0744701937179499e+01
+1.4909117663679217e+01
+-2.7791996710074574e+00
+-2.7950807630304880e+01
+-1.8470307124267418e+00
+-1.0091602013602439e+00
+-2.1732098655844744e+01
+3.4518926322144203e+00
+-2.5513414893127933e+00
+-2.0156765439898024e+01
+1.4920212410082319e+01
+-2.6700639019428736e+00
+-2.8173383913360997e+01
+-1.7923563907838096e+00
+-1.0779380717574012e+00
+-2.1721477262228806e+01
+-1.7965684395162678e+00
+-1.0754133918954745e+00
+-2.1714299632996390e+01
+4.3484854573551717e+00
+-2.7211830719830821e+00
+-2.0220232861764874e+01
+-1.2628184895156223e+00
+-1.3119638265901055e+00
+-2.1256397672474083e+01
+6.0017180970307882e-01
+-2.0139985099654498e+00
+-2.0352895636188091e+01
+9.6227288713343040e-01
+-2.1006500247663080e+00
+-2.0017815461708015e+01
+2.7014321124002634e+00
+-2.7070592791074399e+00
+-1.9668091000626951e+01
+4.1992880612326049e+00
+-2.8488168162816581e+00
+-2.0374670798241432e+01
+-3.4320609954712000e+00
+-5.8270467984868868e-01
+-2.2864826813136844e+01
+-2.4932824787676813e+00
+-1.0276196023448443e+00
+-2.2034372095317575e+01
+-9.9227183236746752e-01
+-1.5936047682362933e+00
+-2.1089204793654183e+01
+-7.5893885561209107e-01
+-1.6858689567083018e+00
+-2.0910802788471873e+01
+5.5962242891660097e+00
+-4.0833995043772591e+00
+-1.7388232232807024e+01
+4.2068387217353092e+00
+-2.8555863597301276e+00
+-2.0324856994008471e+01
+1.5212508777207168e+01
+-3.4760324087951151e+00
+-2.7238113206343865e+01
+1.5212508777207168e+01
+-3.4760324087951151e+00
+-2.7238113206343865e+01
+-3.7346487983873087e+00
+-3.9805980520137513e-01
+-2.3569460075633856e+01
+-1.0909896577360419e+01
+4.6920757342045372e+00
+-3.7789237974735734e+01
+-5.0697725587875047e+00
+3.4146726241499605e+00
+-3.7524460991611072e+01
+2.4282424004578815e+00
+-2.7174884709803542e+00
+-1.9920471326995926e+01
+4.5165124800670808e+00
+-2.9472089955553882e+00
+-2.0676645350532390e+01
+4.5165124800670808e+00
+-2.9472089955553882e+00
+-2.0676645350532390e+01
+5.7243717862869703e+00
+-4.1041895037422744e+00
+-1.7868557255708151e+01
+1.5336736852976147e+01
+-3.8752963871805326e+00
+-2.6045379060859950e+01
+-2.2153861058503179e+00
+-1.4903068499503933e+00
+-2.1338458098775678e+01
+-3.1666496659146603e+00
+-1.0233920027646561e+00
+-2.2524914460275117e+01
+-2.8163363098897123e+00
+-1.4506432531653191e+00
+-2.1454805076068961e+01
+-3.2745601670148332e+00
+-9.8913099097792312e-01
+-2.2756737972679993e+01
+-3.4491867835417587e+00
+-9.9421910106526790e-01
+-2.2725840371751048e+01
+-2.3674587521505193e+00
+-1.6593361841682175e+00
+-2.1154096522395822e+01
+-4.4822584731555928e+00
+2.5419747747544306e+00
+-3.6205899875469107e+01
+1.5622254292464033e+01
+-4.1028361540634091e+00
+-2.6618077111190388e+01
+2.1793994060318544e+00
+-3.0017767981846935e+00
+-1.9707701740084403e+01
+2.8795411753455404e+00
+-3.1309004581989561e+00
+-1.9891308368945850e+01
+1.4931655833054513e+00
+-2.9632712901356153e+00
+-1.9632641427752006e+01
+-3.2617941960381680e+00
+-1.1401920038781423e+00
+-2.3154276797804577e+01
+-2.6822186716938181e+00
+-1.7687608975906326e+00
+-2.1870616202762537e+01
+-2.6827720083830089e+00
+-1.7712593079798213e+00
+-2.1870650357063766e+01
+-1.2020610655096531e+00
+-2.5037374204982585e+00
+-2.0173498745047166e+01
+-9.0039426966553482e-01
+-2.6275127827565741e+00
+-2.0016829951172387e+01
+1.7550894283938931e+00
+-3.2557684030173286e+00
+-1.9822560819163524e+01
+-8.2367014816592192e+00
+2.7375404328364543e+00
+-3.6150034717730030e+01
+1.4181807370175619e+00
+-3.1802513993540389e+00
+-1.9847365118743820e+01
+1.4331173426611134e+01
+-4.6373891588360072e+00
+-2.5962381439970756e+01
+-5.7651525023231809e-01
+-2.7207509803680061e+00
+-2.0239343384452933e+01
+-2.2197825486590142e-01
+-2.8766434660102282e+00
+-2.0175204188523292e+01
+-6.1164886416949598e+00
+6.2697189656527630e-01
+-3.0903915371730282e+01
+-6.5434335847757561e+00
+7.0465282126228546e-01
+-3.0905232842528495e+01
+2.6290293116807826e+00
+-3.6785645546650856e+00
+-2.0278688188867072e+01
+-6.4306450566896334e-01
+-2.9418290269465786e+00
+-2.0450482887123442e+01
+1.1797864433868361e+00
+-3.4801404798846063e+00
+-1.9912281060979176e+01
+2.9343742716061261e+00
+-3.8429732712921152e+00
+-2.0419995120054342e+01
+7.9257077655339636e-01
+-3.5502112845683240e+00
+-1.9631602550791538e+01
+-1.9113709959305634e+00
+-2.5855832264180361e+00
+-2.1531064277707948e+01
+-6.7941483307592980e+00
+1.0849924914050006e+00
+-3.4025218822089421e+01
+4.3163007512734426e+00
+-4.0562617619190870e+00
+-2.1643681778607590e+01
+-6.7960142597805149e+00
+1.5247644725711729e-01
+-3.0177463043095244e+01
+-1.8128354981876105e+00
+-2.7258870100857071e+00
+-2.1717755132929394e+01
+4.1875097265206849e+00
+-4.1249557003755077e+00
+-2.1454550124641731e+01
+-3.0797665400744250e+00
+-2.1650348731011673e+00
+-2.3187918360003859e+01
+3.9607877930384801e+00
+-4.1394859968231730e+00
+-2.1340120842408055e+01
+-7.7094761173077497e+00
+7.9527092630112828e-01
+-3.3476043870723515e+01
+-1.2430106598214742e+01
+2.1991421201877204e+00
+-3.5101595976652469e+01
+-8.4628563598809539e+00
+1.0386663020605837e+00
+-3.3919215535114375e+01
+-6.7977173957680206e+00
+-2.6104071934963041e-01
+-2.9590265496718008e+01
+-2.7638810267886873e+00
+-2.5281950931595949e+00
+-2.2642803378936190e+01
+-1.7478363897301463e+00
+-3.0234102821185433e+00
+-2.1747009390511028e+01
+-1.2070624633966847e+00
+-3.3430567734651109e+00
+-2.0943934951554009e+01
+7.9547088496706042e-01
+-3.9147194947476391e+00
+-2.0545470605736817e+01
+3.7512782315605411e+00
+-4.4064030890253241e+00
+-2.1539894413214366e+01
+7.3239438283603320e-01
+-3.9264882215095582e+00
+-2.0482002634415529e+01
+2.8643083351278391e+00
+-4.4416027143258932e+00
+-2.0744800931369525e+01
+-2.6901262404548008e+00
+-2.7675330219886254e+00
+-2.2917239241238587e+01
+-2.4897956680725870e+00
+-2.8478259831424042e+00
+-2.2676646244970087e+01
+4.4463564258188182e-01
+-3.8859264748094793e+00
+-2.0780863375847233e+01
+2.9370857669678045e+00
+-4.4620374895527375e+00
+-2.0958645790650927e+01
+3.6453203470128921e+00
+-4.4384336106398239e+00
+-2.1663005087210536e+01
+4.7039603599555129e+00
+-4.6492060779722948e+00
+-2.2256715511101099e+01
+4.5453439901119630e+00
+-4.6551484207340001e+00
+-2.2144465248324781e+01
+-8.5514293514165889e+00
+2.7967123002094696e-01
+-3.2956693601728688e+01
+-7.4795015527902171e+00
+-6.6940857138320842e-01
+-2.9152694455999654e+01
+-7.2535268113328364e+00
+-4.4272874799046613e-01
+-3.0723431328144859e+01
+2.0274740169408005e+00
+-4.3213136889926274e+00
+-2.0751704614945048e+01
+-7.1457496949010064e+00
+-2.6492876441144780e-01
+-3.2553326004164859e+01
+1.0311051647448248e+00
+-4.1634327269134577e+00
+-2.0774526748025110e+01
+-7.2354231358351295e-01
+-3.7721160873931168e+00
+-2.1475434230865094e+01
+7.4132824031113417e-02
+-4.1899265970119215e+00
+-2.1210075963513646e+01
+6.9514730910409384e-01
+-4.4533723546922239e+00
+-2.0929525282881464e+01
+-1.9244263794328704e+00
+-3.6062779830710481e+00
+-2.2339901826804873e+01
+5.0965018167150589e-01
+-4.4768534098248249e+00
+-2.0990440674955170e+01
+5.9115060362915772e-01
+-4.4330090375298203e+00
+-2.1347376388291753e+01
+7.8623785629151866e-01
+-4.5790715418138443e+00
+-2.1208646050690156e+01
+-9.0895870288169895e+00
+-4.6793455324356320e-01
+-3.1922861449114798e+01
+-9.1025326902933745e+00
+-4.9204987821948765e-01
+-3.1659248754800000e+01
+-1.9683737647862276e+00
+-3.6860708057518896e+00
+-2.2414949432082381e+01
+-1.9186008354074646e+00
+-3.7320176343176730e+00
+-2.2355418234983372e+01
+-1.8463047310743963e+00
+-3.7484907308520086e+00
+-2.2316769038243574e+01
+-1.8725279332716078e+00
+-3.7985927317575041e+00
+-2.2116075309897447e+01
+1.6170295786238023e+00
+-4.7825449435334111e+00
+-2.1104119124686886e+01
+-1.9851788285560690e+00
+-3.7277782345674222e+00
+-2.2398517266351764e+01
+-4.9703332937353956e-01
+-4.2883495899303199e+00
+-2.1397399221061718e+01
+-2.5427055290850120e+00
+-3.5197203742677559e+00
+-2.3411336420914395e+01
+1.5805618121470881e+00
+-4.8903287219779870e+00
+-2.1347727574475176e+01
+-9.2634834309872216e-01
+-4.2563526382102905e+00
+-2.1850040309468469e+01
+-2.2188897548457294e+00
+-3.8312266685885912e+00
+-2.3229591174050547e+01
+-2.2387844554762015e+00
+-3.8630930301431130e+00
+-2.2943405776547220e+01
+-1.9050225057212700e-01
+-4.6013876773187556e+00
+-2.1447441491337699e+01
+-1.0488952025824418e+01
+-9.7843253691178977e-01
+-2.9985510216644908e+01
+-2.6135051240978537e+00
+-3.8145197276430549e+00
+-2.3536760625299070e+01
+-2.4252990762651039e+00
+-3.8371893123800627e+00
+-2.3513173933218706e+01
+-2.5831814784179987e+00
+-4.0102800043440432e+00
+-2.3489884960123792e+01
+-5.0500005483750199e+00
+-3.0645493879440164e+00
+-2.7744152541797614e+01
+7.3669798032952893e-01
+-5.3531763252866202e+00
+-2.1391347558384251e+01
+-1.2620429692256740e+00
+-4.8547774023521573e+00
+-2.1984043197621173e+01
+-7.0305326083364656e+00
+-2.6291290051290095e+00
+-2.8848089429604645e+01
+-4.6665174607870403e+00
+-3.6679237572666574e+00
+-2.6027772789846718e+01
+-6.8741386097379475e+00
+-3.2388525986814183e+00
+-2.7994704344680322e+01
+-3.3934266655035539e+00
+-4.6875922437804043e+00
+-2.3430570525190902e+01
+-3.2143503207573993e+00
+-4.7778916713800141e+00
+-2.3636695657019079e+01
+-7.2960221659008146e+00
+-3.3316994312577215e+00
+-2.8076022220244134e+01
+4.2056530051820162e-01
+-6.2142214623839491e+00
+-2.0971301769895582e+01
+-3.0750578798350028e+00
+-5.1273645307221676e+00
+-2.4078979739458596e+01
+-3.5054656149104435e+00
+-5.1617779338008605e+00
+-2.3847362494545443e+01
+-3.8453824462161479e-01
+-6.1226778241836355e+00
+-2.1773985627114783e+01
+-7.7970046111416780e+00
+-3.9094575739101947e+00
+-2.6710793305863746e+01
+-1.6785707094448583e+00
+-5.8215893460735479e+00
+-2.1947172397093080e+01
+-1.7561674123228481e+00
+-5.8013829125833007e+00
+-2.2258429754045967e+01
+-1.7748477220769538e+00
+-5.9914452654569272e+00
+-2.2579762237238775e+01
+-3.5268050240121793e+00
+-5.2669436898560154e+00
+-2.4493257575618031e+01
+-9.2983880332950388e+00
+-3.8452717009283779e+00
+-2.7089614753487030e+01
+2.8178945495238379e+00
+-7.8332955158340960e+00
+-1.9167095123742932e+01
+4.8835441295583113e+00
+-8.8689804447330101e+00
+-2.0309360702476763e+01
+4.5670353311726117e+00
+-8.8036500048482633e+00
+-2.0303540443716287e+01
+4.9569445253391011e+00
+-8.9983867240634332e+00
+-2.0008134928073666e+01
+2.2200345719685006e+00
+-8.2339385828121294e+00
+-2.0767480237019846e+01
+2.4416002140962609e+00
+-8.3887815310445824e+00
+-1.9230611507483754e+01
+-6.4907206469095291e-01
+-7.3389828086546824e+00
+-2.1524050167333201e+01
+2.2813766283311914e+00
+-8.4968716797290824e+00
+-2.1565533530510415e+01
+1.9572349618228488e+00
+-8.6521273880773588e+00
+-2.1472731164344431e+01
+-1.4201835357262380e+00
+-7.4988714985971532e+00
+-2.1744991408687138e+01
+1.7985156737655770e+00
+-8.8021019825577937e+00
+-2.0516568240450599e+01
+-1.0668623252336393e+00
+-7.7830763900762099e+00
+-2.1276940417546044e+01
+-5.1461954653789810e-01
+-8.1483794124370341e+00
+-2.1157951009142305e+01
+-5.8698664640678322e-01
+-7.9931075155120563e+00
+-2.0991336711603228e+01
+5.2130319187032734e+00
+2.7505860233141366e+01
+-4.1302333743787194e+01
+5.1876638526710046e+00
+2.7812628869050496e+01
+-4.2708026499791707e+01
+3.3356422173962117e+00
+2.6888134287825356e+01
+-4.1622017355966911e+01
+3.3602183700730492e+00
+2.6982575096290990e+01
+-4.1653028004802032e+01
+4.7834540618523258e+00
+2.7283201823910662e+01
+-4.2453725248922744e+01
+5.4088857017905889e+00
+2.7500403155318644e+01
+-4.2577201287907329e+01
+4.9955279847861656e+00
+2.7534312123573756e+01
+-4.2827880367888568e+01
+8.5020332838323238e+00
+2.8499653814013062e+01
+-4.4258550202244315e+01
+1.1036248622729239e+01
+2.8945722243399572e+01
+-4.5044208382164285e+01
+1.1510036524651893e+01
+2.8826929779356021e+01
+-4.4725418047370695e+01
+8.6148136058025795e+00
+2.8220952975174455e+01
+-4.4084083130062304e+01
+8.3790357609618571e+00
+2.8371915329095238e+01
+-4.4364539559327966e+01
+1.2257342482007068e+01
+3.0112946779665343e+01
+-4.6949316360182692e+01
+1.8446043906708816e+01
+3.2641458847794524e+01
+-5.0260948377034161e+01
+4.3446893924611762e+00
+2.6849358395684582e+01
+-4.2479744352453757e+01
+1.4593295376915291e+01
+3.0439428542169953e+01
+-4.7347945570021423e+01
+1.5330151384478215e+01
+3.1441223811022994e+01
+-4.8722474249496074e+01
+1.2483708759354441e+01
+3.0440272533242695e+01
+-4.7536955639975233e+01
+1.2565936470218048e+01
+3.0392219062595128e+01
+-4.7392145433919808e+01
+4.6419481373087477e+00
+2.7018471556900415e+01
+-4.2782188058136200e+01
+4.7657151318248694e+00
+2.6940899905407793e+01
+-4.2791094203316284e+01
+4.7225883039083252e+00
+2.7019719445152212e+01
+-4.3372953884817839e+01
+9.7362886535649817e+00
+2.8575759163728414e+01
+-4.5569673706314958e+01
+4.9922054105180571e+00
+2.6585785124558324e+01
+-4.2867785544406630e+01
+1.7933153803590368e+01
+3.1390872007581070e+01
+-4.9896110799330707e+01
+1.5582599280774495e+01
+3.0911637367268689e+01
+-4.9176399087196216e+01
+1.0136767909146947e+01
+1.5085055825366018e+01
+-2.8433312795578367e+01
+1.1666719375619696e+01
+1.6008478608836221e+01
+-2.9592119825019612e+01
+1.6431879028687849e+01
+3.1165320206786419e+01
+-4.9720241058542115e+01
+1.0961385554060071e+01
+1.4235448175296558e+01
+-2.7441538613321143e+01
+-3.8042410788396275e+00
+2.2875853576268586e+01
+-3.7795011457765575e+01
+1.1345960515437362e+01
+2.8912888352372573e+01
+-4.6779812272518058e+01
+1.2748700999567751e+01
+1.6372347063031253e+01
+-3.0340796934517805e+01
+6.8489608888533553e+00
+2.7090073088923315e+01
+-4.4066052812505788e+01
+-2.0569715722535106e-01
+2.4467086773362336e+01
+-4.0124219475263239e+01
+2.8983870604419417e+00
+2.5664362240513235e+01
+-4.2133821773514498e+01
+1.1414613983229339e+01
+1.1713592065600679e+01
+-2.4636756555531893e+01
+-6.7963725512236917e-01
+2.4291624982620721e+01
+-3.9940895398341411e+01
+7.0326767487971029e+00
+2.6959412049991062e+01
+-4.4131269513462485e+01
+1.2152524813155994e+01
+1.6813704312015741e+01
+-3.1146234365579037e+01
+2.4304303694004505e+00
+2.5512032510913038e+01
+-4.2097624097103164e+01
+4.5501097375179835e+00
+2.6129978402041544e+01
+-4.3139540823301907e+01
+2.2561230784986508e+00
+2.5798707492619837e+01
+-4.2313018451328134e+01
+7.9189453423087564e+00
+2.7338588501745747e+01
+-4.4969778883159719e+01
+6.3279368320888398e+00
+2.6782146243682430e+01
+-4.4172695065658594e+01
+-4.7961861968661808e+00
+2.2778195739893434e+01
+-3.7995850438136266e+01
+1.2474795253221346e+01
+1.0397403265816047e+01
+-2.3273596726386945e+01
+-1.2308262628028171e+01
+1.9213948351242347e+01
+-3.2769645533061038e+01
+1.4805224212576343e+01
+2.9947920172415504e+01
+-4.9396526556520257e+01
+-5.4367897972291450e+00
+2.2323827503553566e+01
+-3.7795507956519899e+01
+1.1439438358129188e-01
+2.4339063913111275e+01
+-4.0974379549963658e+01
+1.3057868037977605e-01
+2.4391899457438640e+01
+-4.1015225401724116e+01
+-5.8196691483883711e+00
+2.2425304212397485e+01
+-3.7946492914558547e+01
+6.3465830612677774e+00
+7.1552475042031354e+00
+-1.8497444147008537e+01
+1.7681090549099230e+00
+2.5213454243762545e+01
+-4.2238387850797828e+01
+5.8407038457771101e+00
+6.3110061645420377e+00
+-1.7438209013857232e+01
+6.3575311472690474e+00
+2.6163614998084896e+01
+-4.4052198130807867e+01
+8.8296499640442807e+00
+8.7141250021872789e+00
+-2.0884598541513444e+01
+1.4691234485989520e+01
+1.4472736924465034e+01
+-2.9198714285733629e+01
+-7.7355241526630814e-01
+2.3741020101715574e+01
+-4.0472255306827400e+01
+3.8685482389067471e-01
+2.3901369260766138e+01
+-4.0848314375589176e+01
+1.2598779233572881e+01
+1.0816870878168029e+01
+-2.4192052102491033e+01
+-6.0872380968800348e+00
+2.1748189340599303e+01
+-3.7298818892622549e+01
+1.3047348318399354e+01
+9.9370396972938106e+00
+-2.3082897205350495e+01
+1.4301055921737555e+00
+2.4595059139490431e+01
+-4.1940498556615019e+01
+-1.1194346803030508e+00
+2.3528795327670146e+01
+-4.0312361689007858e+01
+1.8964065477751785e+01
+3.0676898761592323e+01
+-5.1433991440239659e+01
+1.2593364670002073e+01
+1.0806213272983154e+01
+-2.4320580625183176e+01
+1.3140250679688508e+01
+9.9478051835806589e+00
+-2.3259082923129906e+01
+3.3355938131856613e+00
+2.5315066990026423e+01
+-4.3365583269830388e+01
+1.6932066922425733e+01
+2.9885864885680249e+01
+-5.0501378944761790e+01
+9.6095748462836248e+00
+7.4204023404665476e+00
+-1.9655630159995681e+01
+-1.1044961715217019e+01
+1.9943880559643816e+01
+-3.4734616269833168e+01
+1.3122606270731390e+01
+9.8254153862797757e+00
+-2.3227122737373747e+01
+4.3296850799423403e+00
+3.8519834567039171e+00
+-1.4306479896084898e+01
+4.3296850799423403e+00
+3.8519834567039171e+00
+-1.4306479896084898e+01
+1.3996681116588976e+01
+2.7694117929746444e+01
+-4.7424437919545689e+01
+5.1257780121557959e+00
+2.5866696713343185e+01
+-4.4442971850060047e+01
+1.2272841303559360e+01
+1.5991954666516158e+01
+-3.1483720927510696e+01
+2.0849461493525592e+00
+2.4595406734884008e+01
+-4.2465259704565916e+01
+1.3360035018424066e+01
+9.8416296061407067e+00
+-2.3363609435102354e+01
+4.2332068097660240e+00
+3.6473341086525921e+00
+-1.4113304096533669e+01
+7.6361788530299899e+00
+2.6436863350579852e+01
+-4.5772581671635827e+01
+3.0805446448456046e+00
+2.1902720846741088e+00
+-1.2101642761934578e+01
+1.4444064113228226e+01
+2.8384802595171330e+01
+-4.9059894057306032e+01
+3.6495451849306133e+00
+2.8951121567976514e+00
+-1.3206584648813971e+01
+-5.3969752213467681e-01
+2.3289149817353934e+01
+-4.1045339360248107e+01
+-1.2049932950568568e+01
+1.9174536088534939e+01
+-3.4271529849214673e+01
+-1.2005806480997832e+01
+1.9145631723776443e+01
+-3.4265910851073421e+01
+-1.0494624770037635e+00
+2.3116223174488244e+01
+-4.0820132609494053e+01
+-9.8933110348499453e-01
+2.3202934015555190e+01
+-4.1071429039982966e+01
+1.8479050123085759e+01
+2.9429911883450668e+01
+-5.1515343022679595e+01
+1.7625163423048885e+01
+2.9426152677287284e+01
+-5.1634422885266872e+01
+-1.6678809933539519e-02
+2.3622664259571451e+01
+-4.2001145503726356e+01
+1.8636273099872561e+01
+2.9590598548804454e+01
+-5.2176316838408198e+01
+2.4316465860273510e+01
+2.9755894866572284e+01
+-5.2939287989436565e+01
+1.4011524430380769e+01
+2.8171016269037878e+01
+-4.9911022882667325e+01
+1.2515865653194037e+01
+2.7311052302724619e+01
+-4.8638144657398911e+01
+1.1799828839802480e+01
+1.0622441121226144e+01
+-2.5093571495091766e+01
+1.2549952822832820e+01
+1.2967006586661883e+01
+-2.8494973937626416e+01
+1.4319241655301559e+01
+9.6787656362322476e+00
+-2.4508549043832758e+01
+1.4319241655301559e+01
+9.6787656362322476e+00
+-2.4508549043832758e+01
+-1.1131209409406001e+01
+1.9246997623829646e+01
+-3.5161642768031328e+01
+1.2032396075729601e+01
+2.5826254820359914e+01
+-4.7047893867917615e+01
+1.2459282019648533e+01
+2.8482813064178906e+01
+-5.1080996255595572e+01
+5.7621546197298885e+00
+2.4966124788223180e+01
+-4.5532375626981604e+01
+1.5759694636650231e+01
+2.7882863811101199e+01
+-5.0665165204265847e+01
+1.2586296310365233e+01
+2.7012560220985787e+01
+-4.9604872346339285e+01
+-5.5347811247261651e+00
+2.0818175461615589e+01
+-3.8617776124592829e+01
+7.7654859096886719e+00
+2.5230726786878975e+01
+-4.6551918067435309e+01
+-3.2409665452826233e+00
+2.1635054150186214e+01
+-4.0563539276608950e+01
+1.5280873332557874e+00
+2.3140710425536607e+01
+-4.3436884212201043e+01
+7.7130062637367294e+00
+2.4955595324625470e+01
+-4.6786004343797011e+01
+1.4902550410586143e+01
+2.6549694824299440e+01
+-4.9548327997347926e+01
+1.4424352642858572e+01
+2.5728076319761072e+01
+-4.8560440704753198e+01
+1.5017996275966841e+01
+2.5871704267468534e+01
+-4.8995562139028657e+01
+2.1527272923344540e+01
+3.1304533816294793e+01
+-5.7830452094638517e+01
+-1.1043066951491824e+01
+1.8540399391417100e+01
+-3.5323448613585775e+01
+1.0261812429646859e+01
+2.5286463094175005e+01
+-4.8320520221302360e+01
+9.7846062272943950e+00
+2.4893637082223233e+01
+-4.7476627254263583e+01
+4.6739491755725346e+00
+2.3980869955636336e+01
+-4.5738407847774916e+01
+4.5564120856342489e+00
+2.3792321919889083e+01
+-4.5263978096472904e+01
+-6.8403161664952821e+00
+2.0157802409593700e+01
+-3.8709771426958405e+01
+1.0428769405455681e+01
+2.4993166110154686e+01
+-4.8019375674579123e+01
+2.0193953362459560e+01
+2.5631938175777019e+01
+-5.0005498714482911e+01
+1.1833268076074599e+01
+9.9148461013062477e+00
+-2.5621551643748685e+01
+1.0293678090074085e+01
+2.5502342532126196e+01
+-4.8721953667629187e+01
+1.4483456889647636e+01
+1.2498322138169119e+01
+-2.9968639319183982e+01
+6.3224741921776673e+00
+2.5217939125093629e+01
+-4.7988077074743373e+01
+1.1896822155285678e+01
+1.3803601650564012e+01
+-3.1524065823252322e+01
+1.1146470127038874e+00
+2.2745364003664680e+01
+-4.3691992342424719e+01
+-1.1658871462137659e+01
+1.8135012683695336e+01
+-3.5440606786931049e+01
+-8.9944151310462264e+00
+1.9178234226512316e+01
+-3.7368418210231056e+01
+-7.0885325701620685e+00
+1.9450963951927722e+01
+-3.8091032890693356e+01
+1.2188861507094046e+01
+2.5439768886645389e+01
+-4.9129456595025324e+01
+1.0552143153572462e+01
+2.5256720269129922e+01
+-4.9026233541902059e+01
+-1.1114132182460150e+01
+1.8323327045451556e+01
+-3.5911029345049378e+01
+-7.2655349789908783e+00
+1.9377644177267722e+01
+-3.8032329052382892e+01
+1.3269125183993955e+01
+2.6132628494428545e+01
+-5.0568458821205027e+01
+7.6904823008897036e+00
+2.4292022046031704e+01
+-4.7371314509720449e+01
+9.4629162355172181e+00
+2.5184340847424220e+01
+-4.9045496893744946e+01
+-2.3419037504846667e+00
+2.1222363063703774e+01
+-4.1534283791761226e+01
+1.3849104610757601e+01
+1.3912548798172963e+01
+-3.2790531797757261e+01
+1.7433432610627065e+01
+2.8038702505914355e+01
+-5.4458142442576140e+01
+2.3299208039453568e+01
+2.6648429277045047e+01
+-5.3072502308594260e+01
+-8.5935517311459915e+00
+1.8864333278602032e+01
+-3.7358819210512110e+01
+1.1127769218158981e+01
+1.2491626621454969e+01
+-3.0503484563588614e+01
+1.1568612925457561e+01
+1.1440789443738336e+01
+-2.8992763519421992e+01
+9.6284640864416904e+00
+2.4736900216921427e+01
+-4.8912645428868245e+01
+8.5346256568719863e+00
+2.4120092168993523e+01
+-4.8059149628121169e+01
+1.5397747724087809e+01
+2.6308411541852706e+01
+-5.1934201094213016e+01
+1.2759514866508997e+01
+1.1245518011247222e+01
+-2.8792661376788622e+01
+1.7302493525259639e+01
+2.5302037707702098e+01
+-5.0924550187126634e+01
+-8.2021619831745607e+00
+1.9151372780128696e+01
+-3.8306490528827425e+01
+1.2629707669534467e+01
+2.4229413985313322e+01
+-4.8690638386821327e+01
+-8.6412739979962101e+00
+1.8967305174540243e+01
+-3.8261751215671033e+01
+-8.6869858279515544e+00
+1.7616806705497197e+01
+-3.6079422496850157e+01
+7.2422763800634904e-01
+2.1886854617250403e+01
+-4.4053517663861918e+01
+-1.4212347630287263e+00
+2.1128021689871709e+01
+-4.2743680374594454e+01
+-1.1508728459704841e+01
+1.7609017845234369e+01
+-3.5786950365818100e+01
+-7.7549060360669451e+00
+1.8987669182049810e+01
+-3.8841825156826694e+01
+-7.6795617018825997e+00
+1.8638240041500879e+01
+-3.8369531070210122e+01
+1.8448191726865602e+01
+2.5553320504380633e+01
+-5.2023270663982117e+01
+1.6007111733848681e+01
+2.5944989841411715e+01
+-5.2515840741441167e+01
+5.4652554137180287e+00
+2.2735709236627358e+01
+-4.6137835207489324e+01
+-5.7713628881144121e+00
+1.9520840572420301e+01
+-3.9842616166975084e+01
+6.6761893864973283e+00
+2.3362675000344225e+01
+-4.7547576048669598e+01
+-1.2742119737691553e+01
+1.7098408248047331e+01
+-3.5019117498118142e+01
+6.0477166311702071e+00
+2.3099020227840025e+01
+-4.7110409660224917e+01
+-4.3042668807365008e+00
+1.9995624634753515e+01
+-4.0966015608230158e+01
+1.2470479930951766e+01
+2.3980725923790882e+01
+-4.9573845569231310e+01
+1.2465180173789095e+01
+2.3921946104027310e+01
+-4.9513970962607139e+01
+-8.9310666892257515e+00
+1.8651297725401673e+01
+-3.8745734052305465e+01
+1.7838625755074428e+01
+2.7285896203848466e+01
+-5.5597340877923401e+01
+-1.2167638158717244e+01
+1.4963621853211110e+01
+-3.2200925520068708e+01
+1.2414457400172806e+01
+6.4046979921239107e+00
+-2.2427148051934250e+01
+1.7305527513961469e+01
+2.7307618697909405e+01
+-5.5997451453861345e+01
+1.5361136315541479e+01
+2.5423443835718906e+01
+-5.2526924198213536e+01
+1.2510850031801196e+01
+7.3158455151552042e+00
+-2.4063323733955713e+01
+-3.1983882050060641e+00
+1.9845196388600129e+01
+-4.1796689810464301e+01
+2.0640840766939757e+01
+2.5998672155227258e+01
+-5.4478208972780081e+01
+1.2665381655762530e+01
+8.7773624657025664e+00
+-2.6707057151153847e+01
+-3.0025894261152386e+00
+2.0100256053788691e+01
+-4.2352348717807132e+01
+-8.9336020213127423e+00
+1.7928329322904670e+01
+-3.8027366550935838e+01
+1.9327781058976754e+01
+2.5570000033304218e+01
+-5.3913655895230562e+01
+-3.3806018848431582e-02
+2.1064365323772851e+01
+-4.4395461232644308e+01
+-2.3970836738109156e-02
+2.1055732947081566e+01
+-4.4288271685622874e+01
+1.2729171527045986e+01
+1.0746525689063528e+01
+-2.9651470557214004e+01
+-8.5083531702485065e+00
+1.8392456106035432e+01
+-3.8725745907841201e+01
+-8.4972466840345593e+00
+1.8385421254364918e+01
+-3.8724689574013006e+01
+1.1736974154651151e+01
+9.0283714502964028e+00
+-2.6956093712488801e+01
+1.1736974154651151e+01
+9.0283714502964028e+00
+-2.6956093712488801e+01
+9.4610520692832054e+00
+2.4715164631304869e+01
+-5.1698512176889231e+01
+2.8781822530636822e+00
+2.1438743362843251e+01
+-4.5391837395528221e+01
+2.7530062803861552e+00
+2.1565303823463875e+01
+-4.5706150416166928e+01
+2.2179893347815156e+00
+2.1432710949047173e+01
+-4.5425767823730318e+01
+-1.0600409934499211e+01
+1.7457197852535462e+01
+-3.7106748991317126e+01
+2.0417654401576484e+00
+2.1415171122745093e+01
+-4.5608247922565027e+01
+1.8000362756860997e+00
+2.0948671391400598e+01
+-4.4637106387360681e+01
+1.7663424807596033e+00
+2.1384748889854095e+01
+-4.5557062847085149e+01
+1.7811125513661377e+00
+2.1396982968293106e+01
+-4.5613089093252036e+01
+-6.9187860484958428e+00
+1.8429540685946936e+01
+-3.9517989831786814e+01
+-1.2313680358669350e+01
+1.6810850371673030e+01
+-3.5956521954253787e+01
+2.1040170537274374e+00
+2.1129788788030808e+01
+-4.5615760523915483e+01
+1.5040659942214017e+01
+2.4640297700213868e+01
+-5.3106679673963200e+01
+1.4494756240731981e+01
+2.4621873946882641e+01
+-5.3040838942146650e+01
+9.6982212020407470e+00
+2.2387937643790686e+01
+-4.9594396667068224e+01
+1.0349303023820942e+01
+2.3390813033510003e+01
+-5.1373605183191323e+01
+1.7616066059864252e+01
+2.4997057288232956e+01
+-5.4903793104305741e+01
+1.9325460044089557e+01
+2.4807737930043249e+01
+-5.5057784899485590e+01
+1.9325460044089557e+01
+2.4807737930043249e+01
+-5.5057784899485590e+01
+1.9408763330168682e+01
+2.4656749126056887e+01
+-5.4857386583763791e+01
+9.0315402651180392e+00
+2.2609533799466529e+01
+-5.0128634554501978e+01
+2.2304548868784330e+01
+2.7521503957974371e+01
+-6.0658088588424420e+01
+-4.9135685374783309e+00
+1.8715095970801713e+01
+-4.1651904305355096e+01
+-1.1817651549338365e+01
+1.6566775601555335e+01
+-3.6899789751433737e+01
+1.3093923366975561e+01
+6.6014414683052838e+00
+-2.4831552844412460e+01
+1.2147717272723815e+01
+7.6077348652714711e+00
+-2.6564692277426456e+01
+1.7906275801308876e+01
+2.4458354019775946e+01
+-5.5592785989998120e+01
+1.6482583919883304e+01
+2.3864544287459886e+01
+-5.4798709060573785e+01
+1.5174144240030914e+01
+2.2980899397217087e+01
+-5.3448416857331857e+01
+1.3539708422101818e+01
+2.2091623751324313e+01
+-5.1686068765494319e+01
+1.2825887466662689e+01
+9.5064183800393334e+00
+-3.0396582433846000e+01
+1.2942145359290141e+01
+5.2911493386621498e+00
+-2.3663056571846571e+01
+6.3227130805479224e+00
+2.1348206774770354e+01
+-5.0340063485404578e+01
+1.9523863423370059e+01
+2.3754117298497981e+01
+-5.6971287694084673e+01
+1.3094394314085202e+01
+6.1927195132349908e+00
+-2.5567472940284361e+01
+1.2740939521695566e+01
+1.0798487023759412e+01
+-3.3812343231315090e+01
+-3.6414784414201029e+00
+1.8258066625601131e+01
+-4.3668697484135379e+01
+1.3677699800547835e+01
+1.0251722157167574e+01
+-3.3318684478867929e+01
+1.1305957463045292e+01
+7.4363814847614815e+00
+-2.7882057214522629e+01
+1.1985236560355816e+01
+9.2894182449479654e+00
+-3.1484217946376226e+01
+1.7054467271252591e+00
+1.9452988532780093e+01
+-4.7549492591211141e+01
+5.4261478272312536e-01
+1.8969775069812851e+01
+-4.6980197503631949e+01
+5.5494112382814862e+00
+2.0187525550883532e+01
+-5.0241754191942654e+01
+-9.0913730977086082e+00
+1.5967371764272748e+01
+-4.0092652931628145e+01
+1.5421612430696647e+00
+1.9760830807158428e+01
+-4.8881613574037289e+01
+1.3095827947293614e+01
+9.3954837224193728e+00
+-3.2426118345615443e+01
+5.8454253612449225e+00
+2.0035006605142865e+01
+-5.0647734268752593e+01
+1.8463944764619262e+00
+1.9150598402161826e+01
+-4.8326911603884461e+01
+5.4137031213413840e+00
+2.0089069427814668e+01
+-5.0946747443608324e+01
+1.3380874458034050e+01
+9.1979150022302250e+00
+-3.3258666607238290e+01
+1.3686022403525063e+01
+4.9520480402821727e+00
+-2.5361882803186177e+01
+1.2246969467300204e+01
+6.7531994510347086e+00
+-2.8572034240050201e+01
+1.2846004791894519e+01
+7.0425267730670749e+00
+-2.9466164807534668e+01
+-3.1445417212405644e+00
+1.7208999980963121e+01
+-4.5379551201525388e+01
+1.2108942250470317e+01
+9.6242904625779619e+00
+-3.4563380673595596e+01
+1.3728048862601925e+01
+5.3035595257551300e+00
+-2.6987962885360393e+01
+1.3492258945421609e+01
+5.2945429604024570e+00
+-2.6967498890610507e+01
+1.3314990765413738e+01
+4.8810727378604728e+00
+-2.6277335892994564e+01
+-5.6402484056276370e+00
+1.6488200020932421e+01
+-4.3896911009031712e+01
+-1.1842795397931726e+01
+1.4908494843287547e+01
+-3.9498679636381759e+01
+1.5530806763198900e+01
+2.1105242174423648e+01
+-5.7942964414005544e+01
+1.2046510171455742e+01
+6.4302805827977219e+00
+-2.9080620451675628e+01
+5.0659744606034698e+00
+1.8890270998701030e+01
+-5.1502981905130881e+01
+1.4135444433678790e+01
+4.1685213292493808e+00
+-2.5544578152757467e+01
+1.3969673731647935e+01
+2.9511729995918716e+00
+-2.3349951094604783e+01
+-9.6958892786821842e+00
+1.5076917845799354e+01
+-4.1082592446121623e+01
+1.3885041096957501e+01
+3.9750147093220574e+00
+-2.5538633390470821e+01
+3.7874136655153889e+00
+1.8249583419018958e+01
+-5.1457672252999451e+01
+1.2941288661907906e+01
+3.7090686549769285e+00
+-2.4952142722313006e+01
+1.0005003977762410e+01
+2.2618440676359244e+00
+-2.1315764230331649e+01
+-1.2400786315910365e+01
+1.4173548410013302e+01
+-3.9113633437962797e+01
+1.2993294024200342e+01
+8.7237986865102091e+00
+-3.5321757750583302e+01
+-7.7581462403202774e+00
+1.5325515870648950e+01
+-4.3258239516637254e+01
+-7.8103999235397810e+00
+1.5423358497911314e+01
+-4.3281507588903693e+01
+1.3879033036268099e+01
+3.9125025168785816e+00
+-2.6147867159558800e+01
+1.1774244675675856e+01
+5.8083632669634468e+00
+-2.9697112161127436e+01
+-1.0272277935588594e+01
+1.4455037790727657e+01
+-4.1163814928151787e+01
+7.9744586945968345e+00
+1.8400404029229062e+01
+-5.4307809259337077e+01
+1.4570946632831408e+01
+3.1967936341216001e+00
+-2.5569344994442620e+01
+-9.5352148661914859e-01
+1.6269557873743505e+01
+-4.8590252687279104e+01
+1.4417597534864180e+01
+1.4686088036699194e+00
+-2.2100254489506380e+01
+5.3229999550918503e+00
+-5.2660462173820685e-02
+-1.6347256288564726e+01
+1.3588699455785733e+01
+3.2582029739191900e+00
+-2.5799891994068290e+01
+1.8113862011127966e+00
+3.3847662719022118e+00
+-2.2857265259615868e+01
+1.2809438798313604e+01
+4.4833285039206423e+00
+-2.8637738156963106e+01
+-1.4262156895139910e+00
+1.6222131751934882e+01
+-4.9503267276808693e+01
+1.4327993546707498e+01
+2.2922136505850892e+00
+-2.4641064961465279e+01
+-1.1488145096423045e+01
+1.3551509828100734e+01
+-4.1009096350691678e+01
+1.2493477591550841e+01
+4.0232802714349232e+00
+-2.7706167355350683e+01
+3.6576826611216906e-01
+1.6485978836864206e+01
+-5.0581968069202389e+01
+-9.8082705748315941e+00
+1.3911136279826277e+01
+-4.2801789738727280e+01
+-3.4521220718439261e+00
+1.5067373595858161e+01
+-4.7606227078309061e+01
+2.9971611400437541e+00
+2.0800037128206488e+00
+-2.1017315320851445e+01
+-1.1462937187967858e+01
+1.3323365497828174e+01
+-4.1064251571177110e+01
+-1.0676621841093450e+01
+1.3274566309836382e+01
+-4.1557810664298295e+01
+-1.0730500077475689e+01
+1.3286862311071907e+01
+-4.1383018237494383e+01
+1.3206702338388235e+01
+3.7339321663527234e+00
+-2.8073693768614092e+01
+1.3402419621807807e+01
+3.7600762191717041e+00
+-2.8209386158866124e+01
+3.0369417022269038e+00
+1.9407107646979838e+00
+-2.0905798424042981e+01
+-1.1270409939189794e+00
+1.5334535748640349e+01
+-4.8753401276412632e+01
+1.4032845059993868e+01
+2.6392628984774751e+00
+-2.6228317018832424e+01
+-1.2938321511935664e+01
+1.2840740367603461e+01
+-3.9847043696987583e+01
+1.4445397327485823e+01
+1.2744488004837982e+00
+-2.3610004745941680e+01
+2.6554630756732402e+00
+1.7815591539197417e+00
+-2.0717281962166606e+01
+-9.2602827487708108e+00
+1.2672076201325428e+01
+-4.1294866193491288e+01
+3.4873558017644228e+00
+1.6289915269123764e+01
+-5.3620429308606624e+01
+-5.8091756998650013e-01
+3.4292640265503556e+00
+-2.3575493527511398e+01
+-1.1076019847218070e+01
+1.3000975700928674e+01
+-4.1892851241245936e+01
+1.3778128886135196e+01
+2.8811076837506095e+00
+-2.7579314819385843e+01
+7.1769505000699363e-01
+1.5727608940984817e+01
+-5.1978469631648721e+01
+8.0345526698843195e-01
+2.0701006417879380e+00
+-2.1249563577468212e+01
+-1.2790009527773975e+01
+1.2270751567283975e+01
+-3.9935395054529046e+01
+-9.0861964148066754e-01
+3.2885802410707274e+00
+-2.3560462888077716e+01
+-3.7503652176839819e-02
+1.5581858465278463e+01
+-5.1671171453019944e+01
+6.6988674388195992e+00
+1.4039838826255101e+01
+-5.1103033075012355e+01
+-1.0930584690559469e+01
+1.3039793677793703e+01
+-4.2911259336445426e+01
+1.2802973647453674e+01
+3.1114152875334615e+00
+-2.8418432660877311e+01
+1.1387079929925024e+00
+1.4307515861454883e+00
+-2.0398498888430570e+01
+1.2465983367828390e+01
+4.5329355235620525e+00
+-3.2014170453194133e+01
+1.2301055678761623e+01
+2.4088613004725112e+00
+-2.6778305609189953e+01
+-6.2192022145872095e-01
+2.3507398647586903e+00
+-2.2066163131086441e+01
+1.4742682917342787e+01
+1.4976163195281020e+00
+-2.6020753177244618e+01
+2.8002878578303911e+00
+1.1229266908177105e+00
+-2.0349879929826599e+01
+-5.5385793541472599e-02
+1.9331473546525693e+00
+-2.1366510815721707e+01
+-9.3464832174005974e-01
+1.4590353129275101e+01
+-5.1262545840823449e+01
+-7.5338111776333394e-01
+2.1428793370088570e+00
+-2.2008075190613773e+01
+-5.1186505147325778e-01
+1.9083304854335301e+00
+-2.1663562092718031e+01
+3.9186561901561014e+00
+1.3058052659795276e+01
+-4.9835464231326796e+01
+-7.0757537533893133e-02
+1.4412711023460197e+01
+-5.2080987546133649e+01
+1.3616278080351043e+01
+1.5996886915804294e+00
+-2.6768067373354583e+01
+1.3616278080351043e+01
+1.5996886915804294e+00
+-2.6768067373354583e+01
+1.5587377989177633e+00
+8.4829192664279462e-01
+-2.0046669173536440e+01
+-1.4321506118389284e+00
+1.4387466934434633e+01
+-5.2090839428557558e+01
+-1.0104222964279417e+01
+1.1585553085522614e+01
+-4.2272627887597999e+01
+3.9197170790892746e+00
+5.9116241033824446e-01
+-2.0793525538733622e+01
+-1.6115484661657875e+00
+2.4563756070067542e+00
+-2.3201954422404736e+01
+-1.1202987379067332e+01
+1.2043348979240060e+01
+-4.3557850209080350e+01
+-9.9495821954792731e+00
+1.2194610941649382e+01
+-4.4454902214926165e+01
+-9.9495821954792731e+00
+1.2194610941649382e+01
+-4.4454902214926165e+01
+-9.4095144712010477e+00
+1.2285130315012790e+01
+-4.5257444117878542e+01
+-3.2471971475556058e+00
+1.3307362678043773e+01
+-5.0348313990948519e+01
+-1.0596837566711709e+01
+1.2033237497278202e+01
+-4.3992989941327927e+01
+-3.4829139624834684e+00
+1.3486636925950570e+01
+-5.0750687431923382e+01
+2.3652447224323114e+00
+1.1063947087628108e+01
+-4.6966440676960907e+01
+2.5933818652491332e+00
+1.5549426080796289e-01
+-1.9844427917865485e+01
+7.5929974854527016e-01
+6.9659757055287663e-01
+-2.0478878534383156e+01
+1.3951045436696234e+01
+1.0691711596154923e+00
+-2.7023224037525363e+01
+1.5023177739994710e+01
+1.9243246253433816e-01
+-2.5929994220097264e+01
+4.3473113701352144e+00
+1.2389374686528239e+01
+-5.2565849472509754e+01
+1.4373888300941621e+01
+6.3169990383305019e-01
+-2.6731891599208520e+01
+-2.3539880353273179e-01
+9.1061860385536775e-01
+-2.1006624245667656e+01
+1.4231140549078991e+00
+3.2811574498765039e-01
+-2.0278980067648334e+01
+1.3947943456205293e+01
+9.2216504170403724e-01
+-2.7276531757339210e+01
+-4.5868738027942078e+00
+1.2863487776461389e+01
+-5.0181744962467704e+01
+6.0342646971724800e+00
+-1.7659020216263865e+00
+-1.7275590831526369e+01
+-5.3880729660297322e-01
+9.0905523068715455e-01
+-2.1287940004675892e+01
+-1.8543154702578271e+00
+1.9053924240354454e+00
+-2.3623995737537907e+01
+1.4710733330750678e+01
+4.9328943861008667e-01
+-2.7614867247755750e+01
+-1.7025131504701468e-01
+5.5171791938562609e-01
+-2.0927134566073800e+01
+3.8522731602116935e+00
+-1.1499732034894383e-01
+-2.1015117877615520e+01
+1.4109000890094119e+01
+1.2518450036974516e-01
+-2.6828817123168605e+01
+1.4934472748741081e+01
+-1.2537120484106906e-01
+-2.6441737030809477e+01
+1.4876402826558278e+01
+-1.2487513899255973e-01
+-2.6441188869771715e+01
+-6.4477607159300954e+00
+1.1630577361931277e+01
+-4.8294754403771847e+01
+1.5230323042855693e+01
+-5.5996221236636601e-01
+-2.6428915025525498e+01
+-1.1582778263251785e+00
+7.5461383772700741e-01
+-2.1855285760379594e+01
+1.4207962970284829e+01
+6.6567371788897889e-01
+-2.9473244522082609e+01
+-1.1253980419444072e+00
+1.3019549243860189e+00
+-2.3482316449286305e+01
+1.6126386118258040e+00
+-3.6419558602279811e-01
+-2.0067480329895574e+01
+-2.2286542495173802e+00
+2.0257073304206665e+00
+-2.5085479685647602e+01
+1.8992530405113545e-01
+-8.3430910069386632e-02
+-2.0639290864273438e+01
+-3.4880730848871755e+00
+2.7280051495430686e+00
+-2.7080216408001643e+01
+1.5129748532279860e+01
+-7.3418722779467938e-01
+-2.7084395511522494e+01
+-2.6930304200155053e+00
+1.6100029676989511e+00
+-2.4348540688919289e+01
+-2.5847164515770542e+00
+1.5872023713341747e+00
+-2.4519479171600331e+01
+2.4377862662733270e+00
+-7.1813180056026260e-01
+-2.0455482916156953e+01
+1.4624599017568224e+01
+-1.0302118870705128e+00
+-2.6398708491680274e+01
+-9.1347354854459406e-01
+2.1928488830134524e-01
+-2.1528745860193496e+01
+-2.6135722858770905e+00
+1.3110237605849573e+00
+-2.4011992738994998e+01
+-8.2850195476665889e-01
+9.8205524694569571e-02
+-2.1357283130415123e+01
+1.9437037327934010e+00
+-8.8387789427481722e-01
+-2.0083042679041668e+01
+2.8063310061554509e+00
+-9.5842468719344320e-01
+-2.0635460481771510e+01
+-2.2888824857152708e+00
+9.3933205449425039e-01
+-2.3597878734869010e+01
+5.7888538292590219e+00
+-2.6630012694501324e+00
+-1.7630346276798527e+01
+1.5174942230811364e+01
+-1.0830588237885648e+00
+-2.7732803606704390e+01
+1.5135729873096109e+01
+-1.2076758620875867e+00
+-2.7562917281080772e+01
+2.4958915651066396e+00
+-1.0531518437630678e+00
+-2.0537735778770873e+01
+2.9401765047044610e+00
+-1.4415088227539186e+00
+-1.9915959598816919e+01
+5.5287504119660511e+00
+-3.0828620761428516e+00
+-1.6804333225070909e+01
+-3.9632650753050678e+00
+1.4093163103026616e+00
+-2.5413976628065420e+01
+-2.8372040433450012e+00
+5.4192273926010393e-01
+-2.3396473967033547e+01
+1.4922888605449701e+01
+-2.1702978639024759e+00
+-2.5848362728576728e+01
+-3.1655541585973008e+00
+5.6575287773698877e+00
+-4.0415954947529372e+01
+-1.8610226474744047e+00
+-2.2446550132831450e-01
+-2.2032516380544653e+01
+1.3862204158980317e+01
+-5.6294435327419956e-01
+-3.0714602437171635e+01
+9.3383649103573374e-01
+-1.2246350188497033e+00
+-2.0599059371108446e+01
+5.7475601130972116e+00
+-3.3393972431935146e+00
+-1.7404862395600517e+01
+-1.3561522793315741e+00
+-7.7102294353453271e-01
+-2.1239693892389766e+01
+-2.3633144890035398e+00
+-1.9005056590485828e-01
+-2.2837319965198954e+01
+1.5617607516465657e+01
+-2.5224209528788220e+00
+-2.7212176873904344e+01
+5.7911373381934723e+00
+-3.5773721056524779e+00
+-1.7457363992526339e+01
+-3.7307032456088280e+00
+6.7538378427293599e-02
+-2.3403014067219569e+01
+-8.2773226555411608e+00
+5.8303039949653570e+00
+-4.0560795044262250e+01
+1.4399797829177540e+01
+-1.9560681251830168e+00
+-2.9600059020264741e+01
+3.5507855151166363e+00
+-2.3239185865357417e+00
+-2.0009695978824421e+01
+3.9546280606599273e+00
+-2.4465146791284811e+00
+-2.0323440664310084e+01
+-3.5724421311689785e+00
+-1.0460300454534795e-01
+-2.3301059275782748e+01
+-3.7265042951425729e+00
+-1.7817995181113627e-01
+-2.3070258509614916e+01
+-3.6184629574174978e+00
+-1.8390213922748011e-01
+-2.3192240165358495e+01
+4.0366512685274234e+00
+-2.5713257334354926e+00
+-2.0202958706041418e+01
+-3.6618807899055157e+00
+-2.2063267954111559e-01
+-2.3214357100078161e+01
+-1.7638019814157559e+00
+-1.0329250476534262e+00
+-2.1669507360124310e+01
+3.1741227661880838e+00
+-2.8058724012789305e+00
+-1.9080681632124652e+01
+1.5253735766251426e+01
+-3.3132127017218509e+00
+-2.7069538222846372e+01
+1.5397525303846034e+01
+-3.4807638914092962e+00
+-2.6991340364511828e+01
+1.5578524754088946e+01
+-3.7523898105618700e+00
+-2.6443329121617776e+01
+-5.2931103323070401e+00
+3.2721192846598348e+00
+-3.6821824695482455e+01
+-5.2707175551031309e+00
+3.3215562358588144e+00
+-3.6611265593264775e+01
+-2.4510795794141322e+00
+-1.4162735242302322e+00
+-2.1542244065296536e+01
+-3.1523796932880899e+00
+-1.0833365142092271e+00
+-2.2263388555353906e+01
+-3.1502117122962439e+00
+-1.0643387320941389e+00
+-2.2490090724130464e+01
+9.3734950796889882e-01
+-2.6735880479801390e+00
+-1.9893759879133867e+01
+3.1847392273573329e+00
+-3.2967370958281341e+00
+-1.9582357136904072e+01
+4.0412920357951627e+00
+-3.1878711040950729e+00
+-2.0659815483002859e+01
+4.0412920357951627e+00
+-3.1878711040950729e+00
+-2.0659815483002859e+01
+-2.8607817638798969e+00
+-1.4926650744061172e+00
+-2.1553678339307634e+01
+6.5130414822004723e-01
+-2.8871841142692753e+00
+-1.9557655369733123e+01
+-1.9687254980103686e+00
+-1.9449794894698493e+00
+-2.1069421380769057e+01
+9.7600743824395741e-01
+-2.9631630812222660e+00
+-1.9444560163491836e+01
+4.4529237049760839e+00
+-3.3495262089498770e+00
+-2.1230717924035275e+01
+-1.7186551783915078e+00
+-2.1065917359016963e+00
+-2.0853240903589541e+01
+-5.1810892573924860e-01
+-2.6694328316008118e+00
+-2.0136870115704273e+01
+-7.0925140685345651e+00
+2.3514360223818640e+00
+-3.5268130606185871e+01
+-3.3999932238979564e+00
+-1.3517016166319300e+00
+-2.3593952741774348e+01
+-6.3981854202307220e-01
+-2.7557424411443274e+00
+-2.0326206154345257e+01
+1.6428506744165607e+00
+-3.3580608412353370e+00
+-2.0130126466452552e+01
+1.6192138476938369e+00
+-3.3466867022347784e+00
+-2.0062650361897564e+01
+8.2789667883400331e-01
+-3.3004793271390263e+00
+-1.9639606046241028e+01
+1.5517025090671208e+00
+-3.4871224128412996e+00
+-2.0047286782284480e+01
+-6.2607213243201025e+00
+5.8457469625789538e-01
+-3.0716790550717210e+01
+1.6063448160613558e+00
+-3.5530953945362396e+00
+-2.0248585973279891e+01
+-1.0012391028717817e+01
+2.0872595073659386e+00
+-3.5364366698461396e+01
+-2.2277843389998910e+00
+-2.4282078539014029e+00
+-2.1848367881311070e+01
+7.4154250378881248e-01
+-3.5628732548963766e+00
+-1.9813687915884529e+01
+-1.8952599238638532e-01
+-3.2097005508483090e+00
+-2.0548167541535395e+01
+-1.7267980755847296e+00
+-2.6882612527866927e+00
+-2.1366067109982531e+01
+3.7952843992177669e+00
+-4.0458979642319335e+00
+-2.1157533880445680e+01
+-1.7438839952119560e+00
+-2.6947223175140040e+00
+-2.1511928614748456e+01
+8.1183247976657680e-01
+-3.6192417538658859e+00
+-2.0048710413845765e+01
+6.1604009690698402e-01
+-3.5431574885934403e+00
+-2.0231998103577098e+01
+-1.9470559727697792e+00
+-2.6963351816768295e+00
+-2.1706977493321055e+01
+3.6711261505908044e+00
+-4.0667181277615203e+00
+-2.1111189662478509e+01
+2.5079872619252719e-01
+-3.3285646670346072e+00
+-2.1226506299648442e+01
+-2.0371528835847315e+00
+-2.7049979591813291e+00
+-2.1882187933581395e+01
+-7.9864217768677408e+00
+8.6057135775790583e-01
+-3.3346443362686699e+01
+1.1497783008594460e+01
+-5.3078995306098040e+00
+-2.5393621479523613e+01
+-6.6440314292214735e+00
+3.6391463100119664e-01
+-3.2753357399586342e+01
+-7.9765840688039189e+00
+4.7000660792784456e-02
+-2.9983225281869988e+01
+-7.9765840688039189e+00
+4.7000660792784456e-02
+-2.9983225281869988e+01
+4.8642096201276281e+00
+-4.4231220178822808e+00
+-2.2146562792908920e+01
+5.0591133145356153e+00
+-4.3636263696023354e+00
+-2.2549809362215335e+01
+7.0474648200136381e-01
+-3.8616157188138254e+00
+-2.0146122962907008e+01
+3.7049894592561174e+00
+-4.3144230624821329e+00
+-2.1399790650779018e+01
+-5.6078057908064874e-02
+-3.6341761849690197e+00
+-2.0821150531036057e+01
+-7.0100901811943803e+00
+1.2487795299456639e-01
+-3.2366408986402071e+01
+2.8371762314416715e+00
+-4.4231092735118391e+00
+-2.0618111673200399e+01
+-6.6455274671313946e-01
+-3.5787650253832184e+00
+-2.1244388356952275e+01
+1.5332813776593115e+00
+-4.3055989502386351e+00
+-2.0768376957157898e+01
+-6.6226472350850569e+00
+-3.6928368769327830e-01
+-3.1964187566712877e+01
+-2.0708704388264811e+00
+-3.2157147492328644e+00
+-2.2346427750977789e+01
+-7.5841190127297180e+00
+-2.1235660004753137e-01
+-3.2396792683780490e+01
+3.0826518303890472e-02
+-4.0634748948772081e+00
+-2.1020149345532538e+01
+1.9500187836945473e+00
+-4.5456051848877372e+00
+-2.0840744801933145e+01
+-3.3423608898987012e+00
+-2.7386110274787434e+00
+-2.4265910053183184e+01
+8.3248349504871602e-02
+-4.0911328623706824e+00
+-2.1200812412713283e+01
+-3.3300996639402594e+00
+-2.8203768747748841e+00
+-2.4289105586345887e+01
+1.4818588259773466e-01
+-4.1967565640496174e+00
+-2.1204017492149152e+01
+-3.1783199242836906e+00
+-2.9424700238188439e+00
+-2.4077725306296347e+01
+-7.1233865808198367e+00
+-8.6658526151886028e-01
+-3.1437877878580810e+01
+-7.1294022236914580e+00
+-8.4735374518262729e-01
+-3.1385028099701184e+01
+-7.3679843664477174e+00
+-7.8851565432188864e-01
+-3.1831514066246420e+01
+8.8355353713987717e-01
+-4.5014153162375194e+00
+-2.1161387326911395e+01
+-7.2442563491386753e+00
+-8.6358443004031360e-01
+-3.1447892798414731e+01
+1.7108532820324500e+00
+-4.6373569648011088e+00
+-2.1255382537245360e+01
+-8.4017519302117254e+00
+-8.4319474509900894e-01
+-3.0908092383053926e+01
+6.1724735375545936e-01
+-4.5017763408510501e+00
+-2.0951938224682397e+01
+-8.1250824000926425e+00
+-9.6653133494600851e-01
+-3.0820975250495085e+01
+-1.8325157921653763e+00
+-3.6400865843559314e+00
+-2.4101733054999595e+01
+-2.2905513456004636e+00
+-3.7068684078072716e+00
+-2.2736983076129047e+01
+-1.8658452000521928e+00
+-3.8940507928553969e+00
+-2.2360638555967459e+01
+-1.0679686260816128e+01
+-4.2867238272632452e-01
+-3.1679841655722619e+01
+3.9343839707025230e-01
+-4.5563106953539609e+00
+-2.1533156863678318e+01
+4.3339438006713147e+00
+-5.8999456658299554e+00
+-2.0673754620724445e+01
+-7.6032805456287926e+00
+-1.5177906093653022e+00
+-3.0439813759636753e+01
+-2.4868349292010645e+00
+-3.7141082389190276e+00
+-2.3557871329226835e+01
+-2.5800774155690123e+00
+-3.7565100076007973e+00
+-2.3505015682190269e+01
+-2.2561865159893055e+00
+-3.9569384826035998e+00
+-2.2998712573694988e+01
+-2.2561865159893055e+00
+-3.9569384826035998e+00
+-2.2998712573694988e+01
+-9.2837919667100763e+00
+-1.2371180588502486e+00
+-3.0978109135368392e+01
+-6.8281564315685186e+00
+-2.2221289995269431e+00
+-2.9639797448930533e+01
+-9.0194242139344354e+00
+-1.6778007175879130e+00
+-2.9992413712649711e+01
+-8.7533005370473269e+00
+-1.7374393686803740e+00
+-3.0371325439052452e+01
+5.6061264469958036e+00
+-6.3664249021897845e+00
+-2.2050127429348386e+01
+2.8767945739050722e+00
+-5.8797545034282832e+00
+-2.0909798536635854e+01
+-3.0172411592512565e+00
+-4.1137113945911175e+00
+-2.4101603711632443e+01
+7.7221341738013816e-01
+-5.3217847950723378e+00
+-2.1464932982311375e+01
+-6.7932416053022413e+00
+-2.8872375556148397e+00
+-2.8417494552375487e+01
+3.5848144280980476e-01
+-5.3413211489022361e+00
+-2.2122591977684696e+01
+-7.7945500816225985e+00
+-2.5683616938035114e+00
+-2.9232425116148757e+01
+-6.7990544053600281e+00
+-2.9695058451021414e+00
+-2.8464174331749927e+01
+7.7940115214373296e-01
+-5.8300562398116655e+00
+-2.1241263474742929e+01
+-3.6472549685729501e+00
+-4.4795689298445618e+00
+-2.3792857227541006e+01
+6.5577970109386652e-01
+-5.8877648522859616e+00
+-2.1094502284365316e+01
+-7.7054176048851293e+00
+-3.0277490876829014e+00
+-2.9722101269417003e+01
+-3.4037800906655682e+00
+-4.6978895828472265e+00
+-2.3606267869978552e+01
+-3.6230268681802325e+00
+-4.8547548769674433e+00
+-2.4267504540804335e+01
+3.1526794738549473e+00
+-7.2699832516186156e+00
+-2.0187316624097281e+01
+-8.6385439376116260e+00
+-3.7549813485205612e+00
+-2.7704821551242635e+01
+-7.1307401195825140e+00
+-4.2440557625461581e+00
+-2.7080012658102238e+01
+-8.7621096719022500e+00
+-3.8762486407879404e+00
+-2.7069444443075458e+01
+-8.8387161463962851e+00
+-4.0090778961289546e+00
+-2.6869345724372110e+01
+2.6967636157661476e+00
+-8.0951351432578136e+00
+-1.9151721712555247e+01
+3.7598714467047762e+00
+-8.8585930438068434e+00
+-2.0163966796038402e+01
+3.9283180299560465e+00
+-8.9278625297977889e+00
+-2.0186187852810068e+01
+2.2924034395573978e+00
+-8.7333122724099503e+00
+-1.8128661128859687e+01
+2.3143557758120799e+00
+-8.7482114157601814e+00
+-1.8087944883732387e+01
+-4.5021921764452184e+00
+-6.7074314906799231e+00
+-2.3048884299581886e+01
+1.3030341671812973e-01
+-8.1329433637997326e+00
+-2.0773857111973104e+01
+1.7549395940549117e-01
+-8.2389919207518538e+00
+-2.0628750873373377e+01
+4.6722843056103974e-01
+-8.4960311535936679e+00
+-2.0244673841067328e+01
+7.3868480196120767e-01
+2.6224040799780354e+01
+-4.0401991984631387e+01
+3.1649355846401899e+00
+2.6813617922453108e+01
+-4.1104463706710689e+01
+1.0045363175494847e+01
+2.8750429702404443e+01
+-4.3735653675899513e+01
+3.5586583235551643e+00
+2.6876425164038391e+01
+-4.1289439140197580e+01
+1.1159743510106454e+01
+2.8739598535617599e+01
+-4.3992572342895954e+01
+1.2941310346486066e+01
+3.0469037288541212e+01
+-4.6543104229355997e+01
+9.6519477660149846e+00
+2.8923106183077710e+01
+-4.4356263480678443e+01
+4.3764489624560072e+00
+2.7275556969778641e+01
+-4.2446518785826250e+01
+8.1933264467971636e+00
+2.8450123779725505e+01
+-4.4534163729315011e+01
+5.6013903011295108e-01
+2.5102051994207720e+01
+-4.0661774941590757e+01
+5.5980150601977263e-01
+2.5125119314773951e+01
+-4.0665284055427819e+01
+1.2163883034610818e+01
+2.9354205265335175e+01
+-4.7016453623884587e+01
+1.2791338349407596e+01
+2.9758550660159294e+01
+-4.7715460316743716e+01
+1.2495923567626003e+01
+2.9496499493962915e+01
+-4.7424065810112488e+01
+1.2388703320741399e+01
+2.8165709132778371e+01
+-4.5285883982913070e+01
+1.3906162263423390e+01
+3.0270745135629699e+01
+-4.8454892267388018e+01
+8.3738040248739409e+00
+2.7671099364228869e+01
+-4.4875155457661535e+01
+9.7642627641923063e+00
+2.8661581841784393e+01
+-4.6391362753406931e+01
+9.7619705148023836e+00
+2.8581299135960080e+01
+-4.5979150150706758e+01
+1.5409952798648405e-01
+2.4714642629778073e+01
+-4.0360076875505669e+01
+8.6958774820983742e-01
+2.4947373496057541e+01
+-4.0729113835783870e+01
+1.0668469400632887e+01
+2.8595486989421406e+01
+-4.6037372577183163e+01
+-5.7169673747046357e+00
+2.1334407346826616e+01
+-3.5734295037807058e+01
+1.5810894923670554e+01
+3.0314103009152838e+01
+-4.9133022396532461e+01
+4.6610609488638595e+00
+2.6207331145519039e+01
+-4.2895906058734916e+01
+1.1615111130771840e+01
+1.6367182947674973e+01
+-3.0636550704826451e+01
+-1.0447480840508929e+01
+2.0920115895353220e+01
+-3.5009892236486650e+01
+-9.6901307451819108e+00
+1.8429064260931131e+01
+-3.1996172018156489e+01
+5.1920002210799563e+00
+2.6222310050976386e+01
+-4.3366658512072547e+01
+4.7353969849714455e+00
+2.6122382513950470e+01
+-4.3420500788808283e+01
+6.5097530885355130e+00
+2.6643401596089660e+01
+-4.4157353232231927e+01
+1.1773141899555357e+01
+1.1322386064581234e+01
+-2.4202953822844613e+01
+1.8967471677226397e+00
+2.5044585408349338e+01
+-4.1952370742294114e+01
+1.4867271507821878e+00
+2.4747947985720440e+01
+-4.1620978546897796e+01
+1.3353082483496197e+01
+2.7542370650466129e+01
+-4.6231692142568292e+01
+4.0964071297364599e+00
+2.5628578797951086e+01
+-4.3157420458555166e+01
+-5.2729912718532894e+00
+2.2110345656745899e+01
+-3.7635942989973252e+01
+3.1169018510237225e+00
+2.5326711283773747e+01
+-4.2696574414522850e+01
+9.0632820911130008e+00
+7.1495303889585315e+00
+-1.8810967080202676e+01
+1.2735997261383419e+01
+9.4478623432320283e+00
+-2.2444795034860871e+01
+1.3472661303662260e+01
+9.5250708956930517e+00
+-2.2351821763265910e+01
+2.7456342825279232e+00
+2.5081381743841789e+01
+-4.2361894743166381e+01
+8.2827416152342970e+00
+2.6809390275079732e+01
+-4.5353945793150181e+01
+-1.2321407261726513e+01
+1.9520874320356914e+01
+-3.3737322498508838e+01
+-1.1919221511199652e+01
+1.9675567151793164e+01
+-3.3943750476931967e+01
+8.7575005282991878e+00
+6.5865664913340760e+00
+-1.8118360243812756e+01
+9.4827999625583210e+00
+7.6466385764947402e+00
+-1.9746479033523570e+01
+-1.0103224406606924e-01
+2.4101233401235476e+01
+-4.0995431227967494e+01
+-1.1941226334168278e-01
+2.3922502171342970e+01
+-4.0811591907939537e+01
+-6.7504355911074461e+00
+2.1412911709703316e+01
+-3.6840071737902200e+01
+5.6926441964640970e+00
+2.6280971416232934e+01
+-4.4577176760144724e+01
+3.4517013409110793e+00
+2.8106053664409387e+00
+-1.2706056069055816e+01
+1.2969479533174367e+01
+1.0038264650367930e+01
+-2.3279835693014167e+01
+5.3300350301609525e+00
+2.6034523189652930e+01
+-4.4220270703596320e+01
+8.8789417655105911e+00
+7.9146839405635152e+00
+-2.0116924264733871e+01
+1.3474104742930013e+01
+9.5863641660219638e+00
+-2.2790474905016207e+01
+4.6404155370494662e+00
+4.3781657957752476e+00
+-1.4991298566193887e+01
+-1.0490103487436409e+01
+1.9915413646219765e+01
+-3.4955298325836338e+01
+-6.3680285463468600e+00
+2.1350303932615013e+01
+-3.7139970461367433e+01
+9.1972298786299849e+00
+2.8409371038054825e+01
+-4.8311851092835042e+01
+9.1972298786299849e+00
+2.8409371038054825e+01
+-4.8311851092835042e+01
+4.7429744454842249e+00
+2.5600514732737611e+01
+-4.4148577438798512e+01
+1.3605004544823105e+01
+1.1284307080544069e+01
+-2.5653835056616096e+01
+-1.0684349313534874e+01
+1.9709736400585221e+01
+-3.4636593032435364e+01
+-8.6950538532628965e+00
+2.0450489209175878e+01
+-3.5944178352940526e+01
+-8.5050745449593868e-01
+2.3505487068906351e+01
+-4.0914993615040792e+01
+-8.4026604889848089e-02
+2.3681879447603421e+01
+-4.1300900851148263e+01
+8.7526190904036145e+00
+2.6568708470212350e+01
+-4.6117352183082254e+01
+5.4372464867196442e+00
+2.5461327285026787e+01
+-4.4480778462135675e+01
+5.5300255970285610e+00
+2.5654255478537802e+01
+-4.4774892637034185e+01
+7.6904230212343041e+00
+2.6497266954094965e+01
+-4.6399467846522427e+01
+-1.2072677694904986e+01
+1.8998010063526809e+01
+-3.4078463356344287e+01
+8.2566424629090012e+00
+2.6372741935716316e+01
+-4.6436411927058117e+01
+9.7875136008825034e+00
+2.7938450034087310e+01
+-4.8823230418351997e+01
+7.8791952593924393e+00
+2.6185004778576850e+01
+-4.6311415744764176e+01
+1.6696789483014577e+01
+2.8945831159442246e+01
+-5.0996745088451220e+01
+1.2581878105767531e+01
+1.3446180059406622e+01
+-2.8847239409002558e+01
+-8.1390966224030825e-01
+2.3146669724035959e+01
+-4.1397988073668586e+01
+-8.6854332820678071e-01
+2.3006253228390595e+01
+-4.1119167060870119e+01
+1.4571688394117250e+00
+2.3793022966443903e+01
+-4.2438395020961138e+01
+1.4256473589306905e+01
+1.4171091989427575e+01
+-3.0104268104269106e+01
+3.4903301221637579e+00
+2.4543277835257822e+01
+-4.3752990803211830e+01
+9.4172340039747038e+00
+2.6219942709919753e+01
+-4.6797349043078285e+01
+1.2042521978339547e+01
+2.7222655970466835e+01
+-4.8665642594198367e+01
+-9.1807001781047592e+00
+1.9798194890107769e+01
+-3.6154456097162146e+01
+1.3304253587151065e+01
+2.7632477690483270e+01
+-4.9880510598678846e+01
+1.6050157917075889e+01
+2.7980313963891945e+01
+-5.0834493905821809e+01
+4.2481744328916038e-01
+2.3169814166240304e+01
+-4.2503718572133003e+01
+2.0984219390090281e+01
+2.8639767684932970e+01
+-5.2526666707055128e+01
+2.1124435452365280e+01
+2.8682250172432635e+01
+-5.2673114361125670e+01
+1.1851529394907246e+01
+2.6714321080934884e+01
+-4.9232844830020206e+01
+-4.5520476653061381e+00
+2.1333989123833597e+01
+-3.9814761599322289e+01
+-1.0871702300918391e+00
+2.2172262809372356e+01
+-4.1720486392940323e+01
+-1.0674638432623182e+00
+2.2143870468021785e+01
+-4.1734391155437869e+01
+1.2596013570788680e+01
+2.6573623908489310e+01
+-4.9518408780328436e+01
+1.3790127511717222e+01
+8.8039893080138203e+00
+-2.4016305232189548e+01
+1.3416075322373709e+01
+8.6107558570347287e+00
+-2.3560765797177670e+01
+1.1933138569062569e+01
+2.5946564715877081e+01
+-4.8660513211640790e+01
+1.2338948785962526e+01
+2.6576332490952922e+01
+-4.9529235122176857e+01
+1.1516456437311156e+01
+2.6378913441678510e+01
+-4.9375379901395405e+01
+1.9086445935245532e+01
+2.8768991134823768e+01
+-5.3423275244222111e+01
+-2.9252980214744144e+00
+2.1494915107809646e+01
+-4.0660923018189521e+01
+2.4462856809937215e+01
+3.1288439924148179e+01
+-5.8283788129716370e+01
+5.8934510358315734e-02
+2.2511182709666681e+01
+-4.2869171392226029e+01
+3.6969328996967854e-01
+2.2588367894869631e+01
+-4.2961953481554360e+01
+1.2488063406409251e+01
+2.6331368270170525e+01
+-4.9721476357432628e+01
+1.7785578041998537e+01
+2.7779914039471990e+01
+-5.2400313636117176e+01
+2.7754475876112060e+01
+3.2624031050831135e+01
+-6.0760611963837455e+01
+1.2588676519219787e+01
+1.2026281067658065e+01
+-2.8728749020084376e+01
+1.2639453188469204e+01
+2.6217345379641674e+01
+-4.9894755285697642e+01
+1.3563736068667330e+01
+2.5361697171730686e+01
+-4.8846038337936179e+01
+9.7971093256041417e+00
+2.5573638857865067e+01
+-4.8707830569290486e+01
+7.6144598721708967e-01
+2.2441109336856112e+01
+-4.3249737698135505e+01
+-9.2547590675029632e+00
+2.2063139553444575e+01
+-4.1117289885372578e+01
+-8.7250076746144209e+00
+1.9175152669124650e+01
+-3.7119331308891525e+01
+1.3302502772079603e+01
+2.6204179622214028e+01
+-5.0259523810421634e+01
+8.2335828776160493e+00
+2.4324587282358582e+01
+-4.7330875742304258e+01
+4.8849737018802237e+00
+2.3398491861555076e+01
+-4.5764378282859937e+01
+3.2377352818913857e-01
+2.2105604781904251e+01
+-4.3322048475546389e+01
+1.4404073920911696e+01
+2.5720004870380656e+01
+-5.0339029896459280e+01
+-8.3765319521034680e+00
+2.1602264500942010e+01
+-4.1329055116301511e+01
+-8.0041874475663093e+00
+1.9312102734293784e+01
+-3.7975074388465565e+01
+-5.9004899434536213e+00
+2.0105791549333258e+01
+-3.9675966095843748e+01
+-3.5150827280202862e-01
+2.1780440521352336e+01
+-4.2945243558040247e+01
+1.2600525692177980e+01
+1.3341649999441133e+01
+-3.1859863347640530e+01
+1.2650545291849561e+01
+1.1732691927300676e+01
+-2.9428405037144088e+01
+-1.1480919376130050e+01
+1.7999675769818836e+01
+-3.5908864937861487e+01
+-1.1422781982823844e+01
+1.7931297844078802e+01
+-3.5840080201701156e+01
+-3.7712137874025244e+00
+2.0589783397764279e+01
+-4.0958683138951415e+01
+8.1728531204486199e+00
+2.4124267503089772e+01
+-4.8105597731886519e+01
+-7.8717904445809372e+00
+1.8304560073332190e+01
+-3.7168460412005693e+01
+-7.6811492757726088e+00
+1.9109597320664978e+01
+-3.8486523071779068e+01
+9.4293616183658830e+00
+2.4150159630936692e+01
+-4.8609340497804041e+01
+1.0158655524367770e+01
+2.5208431442556002e+01
+-5.0244441314164426e+01
+4.2202744748635161e-02
+2.1629603020819339e+01
+-4.3657195310091211e+01
+-8.5868819901804212e+00
+1.8827680846854420e+01
+-3.8306648591148374e+01
+-2.6642311397677472e+00
+2.0725846349787421e+01
+-4.1970658120436767e+01
+-3.2786395380084643e-01
+2.1493932182383162e+01
+-4.3483871447554456e+01
+6.1281252688821448e+00
+2.3041967889108527e+01
+-4.6797124587198894e+01
+7.2295622337474104e+00
+2.3514862425841038e+01
+-4.7743585081574025e+01
+-3.5550954078945068e-01
+2.1939813220820781e+01
+-4.4341142211407906e+01
+-6.0036649222696803e-01
+2.1262900351664253e+01
+-4.3311714445284622e+01
+-7.7671462819772001e+00
+1.8920138117992163e+01
+-3.8677208562235904e+01
+2.8986245957460817e+00
+2.2182041066591289e+01
+-4.5356807149342615e+01
+6.9756876967332078e+00
+2.3351722129734114e+01
+-4.7926071436175633e+01
+6.9756876967332078e+00
+2.3351722129734114e+01
+-4.7926071436175633e+01
+-1.6803734004464543e+00
+2.0685997106642027e+01
+-4.2709879970829462e+01
+-1.3896765608379676e+01
+1.6567038964959480e+01
+-3.4413077546042274e+01
+-1.3958188418531289e+01
+1.6641058755320969e+01
+-3.4499110978989115e+01
+1.5510675863989649e+01
+2.4945747848114102e+01
+-5.1887949484137316e+01
+1.5232310951103885e+01
+2.4966255499997072e+01
+-5.1622977807396133e+01
+-2.1671022882429800e+00
+2.0508986744154946e+01
+-4.2568899020528320e+01
+4.5705979017549545e+00
+2.2614201634625672e+01
+-4.6763376370024673e+01
+4.5298025281172194e+00
+2.2557747305922323e+01
+-4.6608330124956396e+01
+1.9902381037115319e+01
+2.5986662910094971e+01
+-5.4154780641310303e+01
+-1.3995447057059391e+01
+1.6486867131589580e+01
+-3.4342240699109610e+01
+-7.6574091034791003e+00
+1.8751690005678352e+01
+-3.9278057165253038e+01
+1.2603954376914544e+01
+6.9847380988816274e+00
+-2.3694610845407553e+01
+-7.8772730442108649e+00
+1.8693929697920684e+01
+-3.9142892964833273e+01
+2.2000509476093963e+01
+2.8446787762876010e+01
+-5.8801372774476555e+01
+1.2777459347523813e+01
+2.4585435041347324e+01
+-5.1423963531619727e+01
+8.3428483735441077e+00
+2.4400848358124023e+01
+-5.0978718837659997e+01
+7.5002580951793139e+00
+2.2800841023557730e+01
+-4.8140615666570469e+01
+7.6088964677135635e+00
+2.2909010304368326e+01
+-4.8367747021086743e+01
+-1.3455559270534767e+01
+1.6443373929376214e+01
+-3.4851221681827518e+01
+-9.2489870563406507e-01
+2.0651004354053796e+01
+-4.4103943080235901e+01
+1.2432321671910294e+00
+2.1320259102540184e+01
+-4.5169146201383498e+01
+1.3667340616863912e+01
+2.4245113503489200e+01
+-5.1655788564642648e+01
+1.3890417471414386e+01
+2.4414338442033870e+01
+-5.1875559917254030e+01
+1.3498209833074263e+01
+2.4021912544817759e+01
+-5.1173700986466315e+01
+1.6238131976749749e+01
+2.5248046874960824e+01
+-5.3493568262231264e+01
+-1.2953899116607406e+01
+1.6560868620023392e+01
+-3.5293975898601261e+01
+1.5068612548347184e+00
+2.1347214550296595e+01
+-4.5561213134277864e+01
+1.2967874358858298e+01
+6.0168771515151134e+00
+-2.2708655698011022e+01
+8.1370233761571633e+00
+2.2963600007435428e+01
+-4.9405165584635512e+01
+3.0522914083051106e-01
+2.0778254318042631e+01
+-4.4893887349390759e+01
+1.8567789119000786e+01
+2.5612281066930962e+01
+-5.5117440347817514e+01
+2.4556247680463837e+01
+2.8540694767722410e+01
+-6.1079590069169456e+01
+1.7742300824448328e+01
+2.5270144466622813e+01
+-5.4638708785883502e+01
+2.4648608329733726e+01
+2.9076622344497444e+01
+-6.2430722510202685e+01
+-3.4232393128316736e+00
+1.9552625234912760e+01
+-4.2485409533026548e+01
+1.5588476945457159e+00
+2.1128790845566574e+01
+-4.5833650647245754e+01
+1.2604287345593472e+00
+2.0916732262401201e+01
+-4.5586710032529851e+01
+1.8236335916752047e+01
+2.4048962202227401e+01
+-5.3279834126752085e+01
+2.0144616097387335e+01
+2.6008536782396657e+01
+-5.6609749099968752e+01
+1.5172906216012329e+01
+2.4460827490917470e+01
+-5.3509867838333705e+01
+1.4418679949904657e+01
+2.4356272750806664e+01
+-5.3525076205913606e+01
+1.2566159127451172e+01
+2.3783385197310885e+01
+-5.2453664404805231e+01
+1.3179010673677176e+01
+6.7181952833838672e+00
+-2.4793887966909075e+01
+1.3179010673677176e+01
+6.7181952833838672e+00
+-2.4793887966909075e+01
+-1.3004682026525987e+01
+1.6164884562466597e+01
+-3.5829875699686077e+01
+1.2874477907056859e+01
+1.0142511024918882e+01
+-3.0522963417043425e+01
+2.0923871864612313e+00
+2.0383676330745597e+01
+-4.6615824331587866e+01
+2.0775213285255920e+00
+2.0298927379739528e+01
+-4.6954849790196107e+01
+1.0872256549074196e+01
+2.2612615447581614e+01
+-5.2226099574478440e+01
+1.2333422068478733e+01
+1.1138645294788127e+01
+-3.3077973432242757e+01
+-3.5530364358588415e+00
+1.8771615478073826e+01
+-4.3422803076907826e+01
+8.2421232411157526e+00
+2.1508340552581618e+01
+-5.0245441418864552e+01
+-3.9281544254948746e+00
+1.8638766492351760e+01
+-4.3156578671162308e+01
+8.0046604460759276e+00
+2.1734247627389841e+01
+-5.0750350486793231e+01
+1.1376411045847622e+01
+2.3399521479729035e+01
+-5.4753380761270272e+01
+1.0578877996472540e+01
+2.2583809367107097e+01
+-5.3419162796618743e+01
+-1.3709188094525070e+01
+1.2590119392800615e+01
+-3.1479947942750417e+01
+-1.0178637736583693e+00
+1.9208280019947676e+01
+-4.5737827620999461e+01
+-1.1774308974167844e+00
+1.9512934063342474e+01
+-4.6467934879964332e+01
+-5.1655374290711915e+00
+1.7206428385568632e+01
+-4.2558247119070593e+01
+1.3399907644134830e+01
+9.5559924491436679e+00
+-3.2352488884230191e+01
+1.3231893765039549e+01
+1.0060262215393115e+01
+-3.3129270718182667e+01
+-4.1016121775011429e+00
+1.7889872070147092e+01
+-4.3961668278256028e+01
+1.2053662101017485e+01
+6.6120265175865773e+00
+-2.7199017196530534e+01
+1.3135704205742961e+01
+1.0456023058058058e+01
+-3.4509825013950170e+01
+-9.9318143770481111e+00
+1.6022074842769932e+01
+-4.0105350705733947e+01
+1.4510502558290080e+01
+9.5050049180267138e+00
+-3.3130144444902164e+01
+1.2428585003596000e+01
+7.4907586983478263e+00
+-2.9241675722823860e+01
+7.7722363186680763e+00
+1.9677198467127933e+01
+-5.0410856752599386e+01
+4.0829241302600137e+00
+1.9326793493947090e+01
+-4.9167383454567670e+01
+9.5922192843808674e+00
+2.1449999768315774e+01
+-5.4691069037387201e+01
+8.4713223809417784e+00
+2.1502366203467798e+01
+-5.4662752926996525e+01
+-1.2490741424862742e+01
+1.4847923736490015e+01
+-3.7468448846749723e+01
+-1.2516997736911756e+01
+1.4994195942457694e+01
+-3.7655629813226540e+01
+-1.2548688065568275e+01
+1.5027620409564786e+01
+-3.7691763154319375e+01
+1.4605437765568730e+01
+9.4046140499470194e+00
+-3.3620516034394015e+01
+-9.4962361688891512e+00
+1.6013817509166568e+01
+-4.0545209561558408e+01
+-9.4781415699472920e+00
+1.5974440989869997e+01
+-4.0446800798698554e+01
+8.1003437430869294e+00
+2.0775685017717930e+01
+-5.3599587020206023e+01
+-5.0978268071396942e+00
+1.7130687762052592e+01
+-4.3674217808915088e+01
+-5.0978268071396942e+00
+1.7130687762052592e+01
+-4.3674217808915088e+01
+4.4074751393760510e+00
+1.8894728759001381e+01
+-4.9569039207106357e+01
+1.0348723013117459e+01
+2.0754747430487246e+01
+-5.3785757416633508e+01
+1.5374669019148307e+01
+2.1885048385685320e+01
+-5.7497248211734949e+01
+1.3921388385441995e+01
+3.4214658968462790e+00
+-2.2964029239076346e+01
+1.2597934369772577e+01
+1.0808762333940484e+01
+-3.6562327771121581e+01
+-3.4402189985256113e+00
+1.7291508695600061e+01
+-4.5238051011338321e+01
+1.0677059543147296e+01
+2.0608041056315020e+01
+-5.4745125839433960e+01
+1.0699109650545939e+01
+2.0612894481287711e+01
+-5.4651800869883502e+01
+-2.8496554397359617e+00
+1.7614303579958182e+01
+-4.5969208092929975e+01
+-2.8604042261118185e+00
+1.7470625255254404e+01
+-4.5888719824934668e+01
+-2.8791484372528613e+00
+1.7379240768139724e+01
+-4.5561655987430441e+01
+2.6356711771035995e-01
+1.7839149819597431e+01
+-4.7305823201707071e+01
+1.2497899539506649e+01
+9.7994051991136555e+00
+-3.4927630973832443e+01
+9.2803011280383743e+00
+2.0215193620710096e+01
+-5.4017409889387253e+01
+6.7644665940886402e+00
+1.9594521867164431e+01
+-5.2381196011993786e+01
+1.1114630600890177e+01
+6.1767736575447261e+00
+-2.7799832711867214e+01
+1.2653792566616964e+01
+6.7551479340208571e+00
+-2.9564422474300059e+01
+1.0400434621097993e+01
+2.0185176010391142e+01
+-5.4933120226807446e+01
+1.3989324109917250e+01
+2.9508374894107900e+00
+-2.3109095143063943e+01
+4.5774393970724354e+00
+1.8580335385260373e+01
+-5.1024578498001112e+01
+-9.5035806348305449e+00
+1.5297416281203388e+01
+-4.1475571651999310e+01
+1.2083948031909847e+01
+6.1625658684992120e+00
+-2.9247833001922761e+01
+1.1633799512538943e+01
+2.0020552587224948e+01
+-5.6548725520249377e+01
+4.6123986365005036e+00
+1.8322081411574644e+01
+-5.1418645198597240e+01
+4.0930422188120490e+00
+1.8240793559737948e+01
+-5.1390777599665931e+01
+1.7515132489434817e+00
+1.7816052758052706e+01
+-5.0135562546162340e+01
+9.4418332746701488e+00
+1.9781020917839903e+01
+-5.5884753940557033e+01
+1.3192719658245201e+01
+8.9627574634506288e+00
+-3.5529244280233669e+01
+1.3578400827887085e+01
+9.1849270082359169e+00
+-3.6063631160013436e+01
+1.3471227482782414e+01
+8.9110670719581009e+00
+-3.5589473287027964e+01
+1.0052099083841528e+01
+1.9440678546226298e+01
+-5.5783384808446115e+01
+1.3988199189012432e+01
+8.3787186337400215e+00
+-3.5053832241477700e+01
+1.2680769680365808e-01
+1.7111418788064608e+01
+-4.9444541538787938e+01
+3.7911949260582549e+00
+1.7649938886764776e+01
+-5.1521508269525647e+01
+2.8085985603049285e-01
+1.6966869318985374e+01
+-4.9115108177248018e+01
+2.7219170434128098e-01
+1.7000842351225192e+01
+-4.9160093974678666e+01
+1.3820813304451804e+01
+3.6438587355558911e+00
+-2.6221657753565502e+01
+-5.1712942803724751e+00
+1.5702135391447468e+01
+-4.5573530818011996e+01
+2.4211369624534293e-01
+1.7386962084568840e+01
+-5.0690698004206695e+01
+1.3896245478624007e+01
+3.2909195897371855e+00
+-2.5607468364960827e+01
+1.3798537250648502e+01
+7.9791668328399510e+00
+-3.5641955340419265e+01
+5.4022255744060690e+00
+-5.1640081974649932e-01
+-1.5641680518968183e+01
+-9.1344053545014852e+00
+1.3266695769770232e+01
+-4.0388528398226946e+01
+1.2994128682669173e+01
+7.2330188004684910e+00
+-3.3898989401570702e+01
+-8.0452390336880057e+00
+1.4346522313624734e+01
+-4.3532024654661527e+01
+-4.7428575019718302e+00
+1.5107785851306808e+01
+-4.6398736175816524e+01
+-4.7428575019718302e+00
+1.5107785851306808e+01
+-4.6398736175816524e+01
+1.4406188009892338e+01
+2.5291151480440339e+00
+-2.5590571262348384e+01
+-1.0341004611027367e+01
+1.3928444742231324e+01
+-4.2493931203860647e+01
+1.8803430481926811e-01
+3.1297367115552137e+00
+-2.2285452147082648e+01
+8.4211018120135456e-02
+3.1230730605985912e+00
+-2.2220213087729228e+01
+-1.1013424601062356e+01
+1.3623984202895038e+01
+-4.1652158550257404e+01
+-1.1043996137131387e+01
+1.3626109978083001e+01
+-4.1683854285040205e+01
+-1.1649771649461956e+01
+1.3266327078225009e+01
+-4.1182718192954482e+01
+-1.0630395006071199e+01
+1.3361803233583027e+01
+-4.1816547788007185e+01
+9.6102291848523785e-02
+1.6042385192018354e+01
+-5.0902098867007695e+01
+1.4160309452701890e+01
+2.4339446909394584e+00
+-2.5755016458285127e+01
+2.7051147043064105e+00
+1.7023880765551984e+00
+-2.0660084480893431e+01
+-1.1870191317247752e+01
+1.3207649356759605e+01
+-4.1725144131957371e+01
+-7.9199670071421062e+00
+1.3851414526726369e+01
+-4.4479418966258073e+01
+1.4202928457202562e+01
+2.4917345230722630e+00
+-2.6452201925956487e+01
+1.4244997350090825e+01
+2.5190530929797821e+00
+-2.6586244166330925e+01
+-8.2575150366596473e-01
+1.5333277536048591e+01
+-5.0362941295108904e+01
+-5.0942681381565869e-01
+2.9363286109059747e+00
+-2.2618816874988472e+01
+1.4577529988418986e+01
+1.9897027674378573e+00
+-2.5862218076424696e+01
+-8.9929363501143040e+00
+1.3649584444979691e+01
+-4.4104782844308104e+01
+8.1600705772250204e-01
+1.5631816613824419e+01
+-5.2091100436384998e+01
+-6.3010101479483729e-02
+2.0732230985056210e+00
+-2.1392856668081119e+01
+3.7181766098468274e+00
+1.4488145651813019e+01
+-5.1581665884937010e+01
+1.3940004291114642e+01
+1.3734399238351380e+00
+-2.5169884439743939e+01
+6.4159808312814670e+00
+1.3015860868239656e+01
+-4.9314551591607383e+01
+-6.8382834104926926e-01
+2.4210319319353553e+00
+-2.2237952448971591e+01
+1.4305635779799129e+01
+1.8347966158537912e+00
+-2.6991244295432367e+01
+-1.3296479650929129e+00
+2.7500285349222788e+00
+-2.3207608230102547e+01
+1.4935077926014394e+01
+8.0106971698475393e-01
+-2.5611166326836496e+01
+-4.4618646523899610e+00
+1.3449668109301928e+01
+-4.8803980752493352e+01
+-1.4836952797664564e+00
+2.4919920758492831e+00
+-2.3297873794784099e+01
+-3.4088299281212597e+00
+1.3798723351482673e+01
+-5.0159195798953419e+01
+3.7306727285786740e+00
+5.6860429259639278e-01
+-2.0673570583951356e+01
+1.3109484934426302e+01
+2.8844926488435871e+00
+-3.0291328368008212e+01
+3.3433726332073070e+00
+1.9172125310035690e-01
+-1.9987255521076520e+01
+-6.9551810158927303e+00
+1.2266891061693414e+01
+-4.7497915388780129e+01
+2.5137370534384396e-01
+6.6830288209746658e-01
+-2.0396269452470946e+01
+2.5137370534384396e-01
+6.6830288209746658e-01
+-2.0396269452470946e+01
+-1.5469169010841630e+00
+3.4402999107904813e+00
+-2.6973809579652453e+01
+-1.8937568478289020e+00
+2.2845548327914429e+00
+-2.3910396736218072e+01
+-5.6361570425571443e+00
+1.2134358347964291e+01
+-4.8966445510443222e+01
+1.3571920384912842e+01
+8.9457634229496985e-01
+-2.9088091457555748e+01
+1.2005176284586263e+00
+-2.4456766818724340e-01
+-2.0361726742977829e+01
+1.4935910489999740e+01
+-1.4364999455221810e+00
+-2.4350829133462959e+01
+1.5055765322609480e+01
+-1.3922171330264357e+00
+-2.5098193388598052e+01
+5.8830330145362657e+00
+-2.5363364872515550e+00
+-1.7518606863556393e+01
+-9.3696129043797260e-01
+-1.6275840055254776e-02
+-2.1377505466803612e+01
+3.3454167583150833e+00
+-1.2691929889143374e+00
+-2.0428771377504088e+01
+6.3361820261810049e+00
+-1.4951692771572458e+00
+-2.1360087855053088e+01
+3.4344517565326642e+00
+-1.3980645121228925e+00
+-2.0374173107242669e+01
+1.4884152464156948e+01
+-1.2201231114839637e+00
+-2.7723404915463860e+01
+2.5932020792168269e-02
+-4.9222443738840077e-01
+-2.1260985853842726e+01
+-3.5531346111047584e+00
+1.3454805216929644e+00
+-2.5224333887013142e+01
+1.4068261370246180e+01
+-6.9565933152297299e-01
+-2.9592475717317466e+01
+1.4487653330456240e+01
+-1.3014358881414332e+00
+-2.9709346999203007e+01
+1.4976202788602794e+01
+-2.4994951056831280e+00
+-2.7147184773642607e+01
+-3.8462075212174565e+00
+1.8201373746039907e-02
+-2.3353187192140950e+01
+1.4418267730227923e+01
+-2.0299248965680490e+00
+-2.9491272779566657e+01
+3.5550481297656900e+00
+-2.6446892884149551e+00
+-1.9583030181716790e+01
+-2.9119351238911828e+00
+-5.1416300714618313e-01
+-2.2800750557584813e+01
+5.9906644809596159e+00
+-3.6904767647354846e+00
+-1.8344160769391880e+01
+5.9906644809596159e+00
+-3.6904767647354846e+00
+-1.8344160769391880e+01
+8.3833637990804477e-01
+-2.1248545135948338e+00
+-1.9969011916910862e+01
+6.2152848595923782e-01
+-1.9782266076444937e+00
+-2.0074544312915727e+01
+6.5811742898052350e-01
+-2.0037039768154221e+00
+-2.0108602757875506e+01
+6.4607748437470462e+00
+-3.5699843425842968e+00
+-1.9477925604128252e+01
+-3.4384011089125357e+00
+-5.2240954017127617e-01
+-2.2852884385559211e+01
+1.5306763045167941e+01
+-3.2234164368664526e+00
+-2.7548683615789493e+01
+-3.1107279154914549e+00
+-9.5041250202190153e-01
+-2.2277608261543879e+01
+4.3712485570754147e+00
+-3.1210197862934637e+00
+-2.0791909134329185e+01
+-4.0436926957841246e+00
+-7.1666860295535439e-01
+-2.3403044623689645e+01
+-2.5415100349562203e+00
+-1.6001465755201745e+00
+-2.1380422468451453e+01
+-4.7069744132136693e+00
+2.4537038886678957e+00
+-3.6211608332911595e+01
+-3.9547681015783995e+00
+-7.6010376809578040e-01
+-2.3988624634287188e+01
+1.0359070651446700e+00
+-2.9253854349494683e+00
+-1.9602584607296826e+01
+1.3202853444144160e+00
+-2.9120244500430932e+00
+-2.0062177984898966e+01
+1.4217978195329001e+01
+-4.2039997879718376e+00
+-2.6487552770086349e+01
+-7.6228331002745009e-01
+-2.5299362617340981e+00
+-2.0171073210832745e+01
+-2.8991752001508218e+00
+-1.7930542608925879e+00
+-2.1513728768683539e+01
+-9.9535104742571001e-01
+-2.4900090352260267e+00
+-2.0088378508546654e+01
+8.1810368748238482e-01
+-3.0634632033220193e+00
+-1.9443332139807637e+01
+-7.9606750164396622e+00
+2.6800960071198534e+00
+-3.6288919630018924e+01
+-5.6000176976669791e-01
+-2.6913338092478205e+00
+-2.0174101029285509e+01
+-5.1392152935608379e+00
+1.5972065842250327e+00
+-3.5085693006036664e+01
+6.2001814497714924e-01
+-3.1632714569936153e+00
+-1.9833409744519781e+01
+-6.3824285822168969e+00
+1.5935207973178991e+00
+-3.4629747827147355e+01
+2.9104186937344485e+00
+-3.5935501738413125e+00
+-2.0336618035713617e+01
+2.8248951378038978e+00
+-3.6927837022733931e+00
+-2.0106640854436524e+01
+-6.0293990352144684e+00
+1.3872977010332164e+00
+-3.4358502938892698e+01
+-2.0148057152748611e+00
+-2.4177737314176606e+00
+-2.1550761870352169e+01
+-5.3784307136960052e-01
+-3.0089474662092472e+00
+-2.0524473437710633e+01
+-5.8994549275656389e+00
+8.7554742053106316e-01
+-3.3644513010736915e+01
+-2.6299747177587274e+00
+-2.2976008173243776e+00
+-2.2224338471765115e+01
+-2.6194655138527536e+00
+-2.2933477291201734e+00
+-2.2297929332482283e+01
+-6.0994598584371236e+00
+8.5480067602811205e-01
+-3.3296571581464683e+01
+-3.5164898384017529e-01
+-3.1631148818791130e+00
+-2.0519737186568641e+01
+7.2896710127286046e-01
+-3.6291397409459520e+00
+-1.9806636662240933e+01
+-6.7285095665254131e+00
+4.7141286168421372e-02
+-3.0100123641702709e+01
+2.7399411852549052e+00
+-4.0229420225820958e+00
+-2.0487660399265728e+01
+-3.1828139591211064e+00
+-2.0715712296538205e+00
+-2.3538227124425298e+01
+-2.1449423454108621e-01
+-3.2772293912911734e+00
+-2.0663918577807248e+01
+3.4185991164760510e-02
+-3.4312728677432647e+00
+-2.0495708381548873e+01
+-1.1816402586776107e+01
+1.9137607193801618e+00
+-3.4922960962692848e+01
+-1.1750577239330628e+00
+-3.1820354368126678e+00
+-2.1165723302890541e+01
+2.9567071318561635e+00
+-4.5031333548388854e+00
+-2.0281967989382899e+01
+-7.2142199792135022e+00
+7.1025933514924630e-02
+-3.2683810628690587e+01
+8.5999120775059401e-01
+-4.1082824094989938e+00
+-2.0214867252305528e+01
+2.8046083003075015e+00
+-4.4413153226735220e+00
+-2.0970949109091418e+01
+-3.5364107098928010e+00
+-2.3921313109348690e+00
+-2.4069388828309247e+01
+-7.1086661459110960e+00
+-1.0268713630777648e-01
+-3.2155229904938842e+01
+-5.6411835508994264e+00
+-6.4966758241301792e-01
+-3.1414559104558105e+01
+-6.6180621790775245e+00
+-2.4931477322932219e-01
+-3.2282136658658814e+01
+-1.1853567565175966e+00
+-3.5653029159676097e+00
+-2.1230402831545327e+01
+-1.8562702781629790e+00
+-3.2219194249885903e+00
+-2.2208573474696522e+01
+-1.9832036415205698e+00
+-3.2137664469060518e+00
+-2.2199784295456269e+01
+5.2458757431608145e+00
+-5.0708778429745234e+00
+-2.2016327689631034e+01
+-9.3527954032131411e-01
+-3.7483522135740954e+00
+-2.1425230576982926e+01
+7.4841321910491965e-01
+-4.3118829548195992e+00
+-2.0901577304048132e+01
+-9.0408169275536441e+00
+-9.9082987627105865e-02
+-3.2334874530087006e+01
+-1.9273123165927781e+00
+-3.4919158149500675e+00
+-2.2321986396327574e+01
+-2.8677793685867652e+00
+-3.1110680177589622e+00
+-2.3133759316966518e+01
+-3.0798440459952543e+00
+-2.8997868270387515e+00
+-2.4422056209645849e+01
+-8.3226522016451749e+00
+-5.0320594704435850e-01
+-3.1837768832570589e+01
+-2.0742813546498025e+00
+-3.5593191560408552e+00
+-2.2539177390896853e+01
+2.3729449225648542e+00
+-4.8037319466424417e+00
+-2.1313931617195855e+01
+1.4913078216631201e+00
+-4.6723050092548668e+00
+-2.1071314827412326e+01
+-4.8457624993855958e-01
+-4.1206240190148993e+00
+-2.1321830413801639e+01
+1.8026680876730150e+00
+-4.8405549814756332e+00
+-2.1186256595841176e+01
+-8.3033299579467776e+00
+-9.0750308711547079e-01
+-3.1284300650940736e+01
+1.9136096418076149e+00
+-4.9048702550828507e+00
+-2.1301455973613063e+01
+-1.8450803618957323e+00
+-3.9239438720454882e+00
+-2.2593711293028083e+01
+-2.4113141780166476e+00
+-3.8912440404809878e+00
+-2.3292410368847577e+01
+-8.1206726725241456e+00
+-1.5619454893381572e+00
+-3.0399341561814410e+01
+-7.9009730494545529e+00
+-1.5973659755778804e+00
+-3.0462564509757378e+01
+-8.8494786767872657e+00
+-1.3709810330001959e+00
+-3.0557008434807937e+01
+6.3700872848731460e-01
+-5.0457066344083241e+00
+-2.1504186917587930e+01
+-1.3307810968102243e+00
+-4.7125284323945387e+00
+-2.2101718509503318e+01
+9.8242247559407325e-01
+-5.3893347539170930e+00
+-2.1423208530182904e+01
+-6.7520986456616683e+00
+-2.6883246568625543e+00
+-2.8636260603827882e+01
+-7.2397491674523744e+00
+-2.4479275055591656e+00
+-2.9319957844336848e+01
+-1.1083680164417768e+01
+-1.4916217908092948e+00
+-3.0452016836472886e+01
+-7.0887475431136480e+00
+-2.9161285390822713e+00
+-2.8653529872609010e+01
+-6.7552340728816844e+00
+-3.1786449928978908e+00
+-2.8058403502864156e+01
+3.8307411523952912e+00
+-6.8561716272395286e+00
+-2.1496216306194768e+01
+-3.5482785275934905e+00
+-5.0853274360890017e+00
+-2.4009641097528842e+01
+4.3038766309002270e+00
+-7.8199802019732054e+00
+-2.1285910357417606e+01
+-8.8226672181226551e+00
+-4.2812171707552400e+00
+-2.6778102443289530e+01
+2.5731701806867018e+00
+-8.2291708925513873e+00
+-1.9173345074661746e+01
+2.4720719494593872e+00
+-8.2164790328359629e+00
+-2.1284727119743383e+01
+2.2505905763855893e+00
+-8.2449136283557269e+00
+-2.2052775758948968e+01
+1.8287915162979576e+00
+-8.1795418848501029e+00
+-2.1203469303491438e+01
+3.0892407439149845e+00
+-8.9042058519721579e+00
+-1.9624601688613950e+01
+1.7301979087093842e+00
+-8.7499915535862769e+00
+-2.1336715261858622e+01
+3.4649868587794008e-01
+-8.1718485105544492e+00
+-2.0691837654077631e+01
+1.1887653888351914e+00
+-8.6476194634196570e+00
+-2.3128754962298441e+01
+1.9852576974215910e+00
+-8.8693831947597541e+00
+-1.9871601280690200e+01
+8.9255491860949909e-01
+-8.6839765729970786e+00
+-2.2565089282168035e+01
+4.0901453436342422e-01
+-8.3643918541904405e+00
+-2.0480588513318651e+01
+2.7266600113925694e+00
+2.6560530532496866e+01
+-4.0789225026940677e+01
+1.9834769991331067e+00
+2.6566595389941320e+01
+-4.0976014058037862e+01
+8.9394528091665038e+00
+2.9457002667136628e+01
+-4.5109970719812452e+01
+1.3841570585306338e+01
+2.9611560936746521e+01
+-4.5261717501546734e+01
+8.1612305239156910e+00
+2.8469191961320124e+01
+-4.3953561055923913e+01
+5.0550350668615645e+00
+2.7049801453786749e+01
+-4.3088753573695314e+01
+1.4275567717468270e+01
+3.0150067932193938e+01
+-4.7365121028463363e+01
+4.7588532620748794e+00
+2.7941006248335921e+01
+-4.4133530513216279e+01
+4.2130649476036028e+00
+2.6568159955283978e+01
+-4.2597867481432189e+01
+1.4414679791398560e+01
+3.0793161280425625e+01
+-4.8528978339232474e+01
+1.4128636299810461e+01
+3.0392750296915565e+01
+-4.8105604735356181e+01
+1.2079187271333485e+01
+2.9541066295398441e+01
+-4.6989360662378530e+01
+8.1703534592731897e-01
+2.5409103047267241e+01
+-4.1227112194548127e+01
+6.6609782359849543e+00
+2.7321356033576635e+01
+-4.4093709134323525e+01
+-4.6439060821844069e-01
+2.4550362724977894e+01
+-4.0228809657724021e+01
+1.1630506930659458e+01
+1.6248940643362051e+01
+-3.0078906768425981e+01
+9.8471587090130761e+00
+2.8257063987632982e+01
+-4.5771493558500637e+01
+5.4472377881605656e+00
+2.6628488523064554e+01
+-4.3515754252003845e+01
+-7.6251817316623893e-01
+2.4261238052965364e+01
+-3.9840715631071980e+01
+5.0305037767070617e+00
+2.6502608128077849e+01
+-4.3261224579791964e+01
+1.3129184541935574e+01
+1.0291856082442887e+01
+-2.2910075130152343e+01
+1.5258957242502980e+00
+2.5064444529745877e+01
+-4.1409188665336565e+01
+1.2470818981214583e+01
+1.5983465149823180e+01
+-3.0145584360126986e+01
+-1.6138796293744020e+00
+2.3966395387546186e+01
+-4.0080659152027955e+01
+1.2225531138620779e+01
+1.6582623553389055e+01
+-3.1219037891846000e+01
+1.4335361939529596e+01
+1.7215902406620259e+01
+-3.2609319838595205e+01
+-1.0547236226962630e+01
+1.9839592721749430e+01
+-3.3802969419226031e+01
+-9.6625798839594026e+00
+2.0448962353861894e+01
+-3.4872924275898910e+01
+6.1524601585836942e+00
+2.6504364020046154e+01
+-4.4283585184511388e+01
+6.8291328445337127e+00
+2.7835854555027510e+01
+-4.6002410567642038e+01
+1.2854504452478269e+01
+1.5032895763391315e+01
+-2.9388146027611093e+01
+4.6020846275232963e-01
+2.4430136127289714e+01
+-4.1153446571357676e+01
+-4.0518244872314240e+00
+2.2914813456397603e+01
+-3.8852613658947860e+01
+1.1915262621492852e+01
+1.0844119815189845e+01
+-2.4163040153260088e+01
+1.2920204190143284e+01
+9.0441084238801146e+00
+-2.1984277795931643e+01
+-3.8884318545709120e+00
+2.2778702238920356e+01
+-3.8840818280331909e+01
+8.9865277702943969e-01
+2.4397914126023217e+01
+-4.1461587328735476e+01
+7.1102211257815275e+00
+2.6707936247504836e+01
+-4.5206836148846612e+01
+1.4242453213388293e+01
+1.0216385154298640e+01
+-2.3901717218320140e+01
+8.6886409396225837e+00
+2.6876819742566980e+01
+-4.5549202973404185e+01
+7.8328566838946068e-01
+2.4407214623305670e+01
+-4.1929107417432725e+01
+2.9037099521239922e+00
+2.4881699830994325e+01
+-4.2722817331955248e+01
+6.0771889473031671e+00
+2.5990902359296228e+01
+-4.4579725823950064e+01
+7.3773227607146756e+00
+2.6528439797916771e+01
+-4.5548427998383566e+01
+4.1431871348872468e-01
+2.3959085757546148e+01
+-4.1453346967931942e+01
+-3.1523544235551499e+00
+2.2964172728860234e+01
+-3.9843148033143990e+01
+-2.9051237189556045e-01
+2.3701704467796116e+01
+-4.1059978332392816e+01
+5.3398474217541283e+00
+2.5663865584767422e+01
+-4.4262987169251822e+01
+1.3546021422241653e+01
+9.3908122341371563e+00
+-2.3058938097069259e+01
+3.9568880675090806e-01
+2.3763010025074937e+01
+-4.1724321320630111e+01
+9.9846527030082710e-01
+2.4233397149710761e+01
+-4.2444533571205135e+01
+-1.1486286458820953e+01
+1.9245163573766508e+01
+-3.4472919268343766e+01
+4.9624665190308237e+00
+2.5166345472530548e+01
+-4.4574859652072341e+01
+5.0492346935571897e+00
+2.5245243431668200e+01
+-4.4714397847187129e+01
+-1.2926976007364411e+01
+1.8677488808773621e+01
+-3.3737633038938498e+01
+-1.0515333712790877e+01
+1.9470878955357062e+01
+-3.5103270714261846e+01
+-1.0510703549419000e+01
+1.9422119607268542e+01
+-3.4946527553930750e+01
+3.7227553407143182e-01
+2.3530676721093375e+01
+-4.1950240098114108e+01
+-3.4459212201948536e-01
+2.3131505817010346e+01
+-4.1425633010883629e+01
+1.4374889996352994e+01
+2.7971674151017552e+01
+-4.9445599825050145e+01
+1.8247961506535631e+01
+2.8278909148528040e+01
+-5.0430802798168884e+01
+5.5380718632348378e+00
+2.5396551261152130e+01
+-4.5432975000349444e+01
+8.8667901560378528e+00
+2.6230448944671629e+01
+-4.6790011545670033e+01
+2.2345499720099781e+01
+2.9617393471430262e+01
+-5.2920881976043269e+01
+-4.1314906274959320e+00
+2.1690554037133158e+01
+-3.9134194777756036e+01
+-4.0872110020524932e+00
+2.1926625058951739e+01
+-3.9513160427715874e+01
+1.7185759429963341e+00
+2.4527582325738461e+01
+-4.3942690336547521e+01
+1.7651906127199748e+01
+2.8780229101747601e+01
+-5.1395124944626893e+01
+1.6767069976757771e+01
+2.7651116025785921e+01
+-4.9683054232617764e+01
+9.5450326625791551e+00
+2.5827442556127362e+01
+-4.6656058065480536e+01
+9.5450326625791551e+00
+2.5827442556127362e+01
+-4.6656058065480536e+01
+-1.1330477374785749e+01
+1.9170192438713197e+01
+-3.5211706090090075e+01
+1.1818197711927212e+01
+2.6471270007224916e+01
+-4.8121927397913716e+01
+1.2303517933082285e+01
+2.7040780265138967e+01
+-4.8958394926780450e+01
+1.1552870872180918e+01
+2.7074003398597434e+01
+-4.9173220339161730e+01
+1.1079107581045333e+01
+2.5994625608959115e+01
+-4.7380722270663320e+01
+1.1756639610378370e+01
+2.6945275809389024e+01
+-4.8935861836438370e+01
+1.7147176949493506e+01
+2.8808076547458104e+01
+-5.2011681504138508e+01
+1.0593937947751360e+00
+2.3023783744280962e+01
+-4.2977805512937998e+01
+1.1050078082274817e+00
+2.3169317737396618e+01
+-4.3117415217205497e+01
+9.8848232043931166e+00
+2.5932585790492830e+01
+-4.8155661646606383e+01
+-1.1059330103335062e+01
+1.8331794562787049e+01
+-3.4810710313692603e+01
+-1.6254346127814667e+00
+2.2057651814049006e+01
+-4.1669151859787029e+01
+-3.0182650501440205e+00
+2.1375053666340843e+01
+-4.0810763700831231e+01
+1.5191081149909490e+01
+2.6379234711497471e+01
+-4.9952774645436854e+01
+4.3051839659249724e+00
+2.3622425824261313e+01
+-4.5091927743444828e+01
+-9.1164973971619467e+00
+1.9236826085497722e+01
+-3.7180270546545366e+01
+-9.1231513407313791e+00
+1.9010915325592542e+01
+-3.6698019717678704e+01
+9.2947463861161630e+00
+2.4976115798005779e+01
+-4.8028709610097188e+01
+1.2794197941393337e+01
+2.6024413611111086e+01
+-4.9855041634257738e+01
+1.4976322883162139e+01
+2.6371540215277779e+01
+-5.0755175262635035e+01
+1.4844217428933623e+01
+2.6106546151453990e+01
+-5.0298734769384069e+01
+-2.1969908826378237e+00
+2.1447101175099739e+01
+-4.1465894605376846e+01
+1.0834571112046470e+01
+1.1777690984917495e+01
+-2.8785634283494382e+01
+4.4852222846272163e+00
+2.3497094380698559e+01
+-4.5569403829152613e+01
+4.2377563365322564e+00
+2.3010163774876645e+01
+-4.4694221594253712e+01
+8.5825843179291077e+00
+2.4529791957145260e+01
+-4.7675541992892562e+01
+-1.0374484862982460e+01
+1.8276045915333249e+01
+-3.5964560467226129e+01
+-1.0374484862982460e+01
+1.8276045915333249e+01
+-3.5964560467226129e+01
+-1.0315570374062716e+01
+1.8251597259344329e+01
+-3.5892684556720006e+01
+9.5054046372412841e+00
+2.5072980150247627e+01
+-4.9030760753434173e+01
+-2.6450049245912730e+00
+2.1145184173485660e+01
+-4.1613419727946884e+01
+1.2774879745032777e+01
+1.1252078323572578e+01
+-2.8553684460539952e+01
+-3.1755371948935260e+00
+2.0950521653022761e+01
+-4.1376026910191385e+01
+-2.9643313678853951e+00
+2.0905870388244253e+01
+-4.1437730769112584e+01
+-1.2840329911063931e+01
+1.7338615644041667e+01
+-3.4709778052480317e+01
+2.8944210737881754e-01
+2.1874805840370620e+01
+-4.3612055832709302e+01
+7.7084057681781255e+00
+2.4077507131957880e+01
+-4.8042850133435664e+01
+-7.3978640575976637e+00
+1.9430380477301068e+01
+-3.9046957001895485e+01
+8.7319684113623115e+00
+2.4158649172657622e+01
+-4.8500565714550717e+01
+-7.9942809121353156e+00
+1.9110594356596618e+01
+-3.8688094094837808e+01
+-7.9646881543861561e+00
+1.9133187098093032e+01
+-3.8895759051991789e+01
+-1.8419274966232715e+00
+2.1006583911652545e+01
+-4.2472762547609051e+01
+1.3601743802688310e+01
+8.4307308598444024e+00
+-2.5229059768173702e+01
+-4.5659690873452172e+00
+2.0030718050795006e+01
+-4.0548873219701036e+01
+-2.4299823591714005e+00
+2.0667445777166758e+01
+-4.2024186305078388e+01
+-6.8575519943975429e+00
+1.9377130058050987e+01
+-3.9425048964680578e+01
+-9.0973702229740248e+00
+1.8582029305162944e+01
+-3.7894548733228831e+01
+1.4152650855102538e+01
+2.4922180213524229e+01
+-5.0960712500593360e+01
+1.1089696931714023e+01
+9.5744099440250352e+00
+-2.6906526090331056e+01
+-1.2629814433319684e+01
+1.7009972270582487e+01
+-3.5212902024641387e+01
+1.2499417243874515e+01
+8.3931375438354312e+00
+-2.5711145018296993e+01
+1.4268134794934964e+01
+2.4759155725638447e+01
+-5.1387730982521539e+01
+1.2194448602621115e+00
+2.1517595669114876e+01
+-4.4823282981234414e+01
+7.7462675279977082e+00
+2.2979585832923039e+01
+-4.7967285410269646e+01
+1.2949650414006143e+01
+6.6501118798969978e+00
+-2.3129921239291964e+01
+1.1344926478771727e+01
+1.2476091333338598e+01
+-3.2002480122032495e+01
+2.2084215073849736e-01
+2.1141588037785919e+01
+-4.4346544241835531e+01
+5.1636550527009595e-01
+2.1262299486024506e+01
+-4.4681880678242635e+01
+5.2108388702865394e-01
+2.1202015158030452e+01
+-4.4609365302597816e+01
+-9.3916097155672027e+00
+1.7993370223742005e+01
+-3.8140948722791634e+01
+-9.3642138682961686e+00
+1.7996045661266006e+01
+-3.8325799102202048e+01
+-9.3739609019596557e+00
+1.8212563465742157e+01
+-3.8756042894295334e+01
+-9.1186882965526710e+00
+1.8119075161839259e+01
+-3.8518083570369633e+01
+-1.0833516731381991e+01
+1.7401689797627007e+01
+-3.7159379122082285e+01
+2.3952012753726745e+01
+2.8790461630015503e+01
+-6.0774250681530198e+01
+-3.5972245661766693e+00
+1.9701532501309838e+01
+-4.2097593890113224e+01
+2.3384575248826014e+01
+2.9181952877377373e+01
+-6.1721674745078033e+01
+1.1774929896225913e+01
+1.3105771715729921e+01
+-3.3977492024495611e+01
+-9.7558078818282166e+00
+1.7744969501656168e+01
+-3.8660233952803189e+01
+1.9715134538805014e+01
+2.5137494251439232e+01
+-5.5042279667614643e+01
+1.0734925387024621e+01
+2.4162710844217031e+01
+-5.2699821583373023e+01
+1.3150607985099340e+01
+8.1376797274719124e+00
+-2.7072691082951430e+01
+8.8660518395653973e+00
+2.3411019561880067e+01
+-5.1642074488157512e+01
+1.2213883822596696e+01
+7.3879416640921622e+00
+-2.5810816515469487e+01
+-9.7418012721537011e+00
+1.7191082107966693e+01
+-3.8438518634623428e+01
+2.1986301965293084e+01
+2.7389743233985861e+01
+-6.1569176084036130e+01
+1.3214347306731456e+01
+7.7756974780525505e+00
+-2.7023036464636650e+01
+-4.7884841469490906e+00
+1.9151707879422194e+01
+-4.2892258398343834e+01
+-4.7884841469490906e+00
+1.9151707879422194e+01
+-4.2892258398343834e+01
+1.1913708130052690e+01
+2.3251330453075848e+01
+-5.3526257156719382e+01
+1.2392200248233433e+01
+1.1510501606595527e+01
+-3.4009768280720650e+01
+1.2463510423169531e+01
+1.1652608690063371e+01
+-3.4205446577540130e+01
+1.1646603090433493e+01
+8.4346358723522297e+00
+-2.8575208225965071e+01
+1.2039876594923394e+01
+8.6931377127727245e+00
+-2.9100761625871211e+01
+-4.2818041513620280e+00
+1.8426222350261657e+01
+-4.2819582768731649e+01
+1.2642176259821017e+01
+6.9574077719608027e+00
+-2.6588153550278509e+01
+-6.7008918177757160e+00
+1.7481862691909406e+01
+-4.1003452679370355e+01
+8.0940734897196265e+00
+2.1247617201912959e+01
+-5.0883168136920638e+01
+6.8972747830702401e+00
+2.2562977404906924e+01
+-5.2953807198419199e+01
+7.7731743434224998e-01
+1.9681577047192587e+01
+-4.6917337140772929e+01
+-4.2712944599121458e+00
+1.7923963318573001e+01
+-4.3045293987493984e+01
+1.3226874431873092e+01
+5.8601036511779547e+00
+-2.5429044587956724e+01
+-9.9383170275700241e+00
+1.6436062350275616e+01
+-3.9297479463398432e+01
+-8.2539502261544551e-01
+1.8984017532106410e+01
+-4.6104295117931464e+01
+5.7196187267886627e+00
+2.0885713009869036e+01
+-5.0995952135095571e+01
+1.3318050829470813e+01
+5.2027813347399654e+00
+-2.4825836383259862e+01
+5.1500694547906321e+00
+2.1030694657753013e+01
+-5.1451808119143280e+01
+1.1914437187739512e+01
+8.1646083401165033e+00
+-2.9674358170895729e+01
+-9.4088839286936121e+00
+1.6334666725085551e+01
+-4.0333846049269873e+01
+-9.3658724923914907e+00
+1.6198208867404443e+01
+-4.0104959326633754e+01
+-9.3059121412160390e+00
+1.6093415296816399e+01
+-3.9985103913273470e+01
+-9.4538870056521809e+00
+1.6415087183591012e+01
+-4.0159401026303101e+01
+-6.2767857872900716e+00
+1.7142859438869046e+01
+-4.2608858411491525e+01
+1.0434639048608245e+01
+2.2116114665412887e+01
+-5.4724532541829639e+01
+-1.0608262663759678e+01
+1.5824673209098325e+01
+-3.8882027488421834e+01
+1.1018634786909626e+01
+7.0407766256826623e+00
+-2.7435049104226973e+01
+1.3715278406125098e+01
+2.3324257024348626e+01
+-5.7842837175451407e+01
+-5.3710134857327247e+00
+1.7152375846206731e+01
+-4.2912551761261945e+01
+1.3987576163452150e+01
+1.0782837324014121e+01
+-3.5248534140589356e+01
+8.5309534300851653e-01
+1.9242271811835291e+01
+-4.8179293340302635e+01
+1.3125322517060782e+01
+9.3114905626019180e+00
+-3.2653546605248494e+01
+1.3002656289281935e+01
+8.8752117127111365e+00
+-3.1869131098663544e+01
+-4.1214413737116695e+00
+1.7439323549364421e+01
+-4.4255019905313731e+01
+-4.7655692521321145e+00
+1.7179379841320078e+01
+-4.3822762401924884e+01
+1.3191780301810942e+01
+5.5641130204239433e+00
+-2.6479478890608647e+01
+1.2481093858165112e+01
+7.2351792824922523e+00
+-2.9265073183069308e+01
+1.3057395374577611e+01
+8.8551018240293118e+00
+-3.2446657059920334e+01
+1.2960993494756218e+01
+8.8441725110886029e+00
+-3.2297566159950179e+01
+1.3021845760639541e+01
+6.1732050655680997e+00
+-2.7551744213125250e+01
+-1.2446165536174663e+01
+1.5015251656262695e+01
+-3.8466887707189265e+01
+-9.6651016868666275e+00
+1.5647561080259702e+01
+-4.0982670066387698e+01
+1.2775110929040885e+01
+1.0667210277950399e+01
+-3.6824062320565510e+01
+1.3639500783771741e+01
+4.9918173708108524e+00
+-2.6533719486642109e+01
+1.3728607389115028e+01
+9.2602140136070759e+00
+-3.4928775432166695e+01
+-6.2107819611750532e+00
+1.6075790155400668e+01
+-4.3005972838455826e+01
+1.3481718303242788e+01
+9.4833090083158318e+00
+-3.5503369764835568e+01
+1.3481718303242788e+01
+9.4833090083158318e+00
+-3.5503369764835568e+01
+-4.1596518711335007e+00
+1.6233282076116627e+01
+-4.4252949543991036e+01
+1.3428695388083050e+01
+9.8228543132430204e+00
+-3.6450482495910144e+01
+1.3326671229816755e+01
+8.8672392939421005e+00
+-3.4474067777172507e+01
+-9.7065472054498958e+00
+1.5128896452179859e+01
+-4.1080390845850772e+01
+-3.1778159811247693e+00
+1.7029188935684324e+01
+-4.6400838629586659e+01
+1.3258155098232747e+01
+8.5858634411990984e+00
+-3.4062746681658169e+01
+6.6533165768446101e-01
+1.7600370464672181e+01
+-4.8645872215238406e+01
+2.4944682629864854e+00
+1.8050551941420888e+01
+-5.0176745316676609e+01
+1.2251414824530553e+01
+7.6540751527176099e+00
+-3.2028391611789019e+01
+-5.2588763658254720e+00
+1.6134168740852640e+01
+-4.4685206389977857e+01
+8.1609850935464809e+00
+1.9117862939236936e+01
+-5.3721426492095240e+01
+1.4927893906032789e+01
+1.9485546671192502e+01
+-5.5836640672737836e+01
+-1.2192236566430914e+01
+1.4264148017747848e+01
+-3.9107305703917170e+01
+1.3283732056847352e+01
+8.1404434195193645e+00
+-3.3784946294332123e+01
+1.3917413169916403e+01
+8.2577121155508220e+00
+-3.4291345398834608e+01
+1.3312459772280341e+01
+8.0443519273145885e+00
+-3.3532294113151522e+01
+-5.0779391002784999e+00
+1.6227530268210710e+01
+-4.5411693670665329e+01
+-4.0025467712256440e+00
+1.6154757366252465e+01
+-4.5720152293938987e+01
+-6.8693267861090348e+00
+1.5593306440227284e+01
+-4.4035450941256357e+01
+1.2406992863140374e+01
+5.0953047481036347e+00
+-2.8023108397372642e+01
+-2.3575190030889690e+00
+1.6287256592737311e+01
+-4.6852025061722244e+01
+1.3142066703295844e+01
+7.6193137533356889e+00
+-3.3294296443112984e+01
+1.3474224274597159e+01
+4.0193045349914867e+00
+-2.6584903615631671e+01
+4.2007364903799624e+00
+1.7647369096631113e+01
+-5.1781219210707455e+01
+-2.9108110309969133e+00
+1.5922164358655058e+01
+-4.6347590130064290e+01
+1.2594830586926115e+01
+4.5631480572256677e+00
+-2.7543924180372994e+01
+-7.0210819894666319e+00
+1.5241021300306258e+01
+-4.4119032082302596e+01
+5.7219492611538350e+00
+1.5310341282431600e-01
+-1.6664144651828373e+01
+5.7219492611538350e+00
+1.5310341282431600e-01
+-1.6664144651828373e+01
+1.4077238740921816e+01
+2.9433121336747265e+00
+-2.4861594102485057e+01
+2.6389229857117145e+00
+3.7023596226446753e+00
+-2.3232977121091338e+01
+-3.0739547582333304e-01
+1.6114325000796569e+01
+-4.9390459475802786e+01
+-2.4220972225728063e-01
+1.6493658747622241e+01
+-5.0140762162368560e+01
+-9.3567641307209009e+00
+1.4293176412577328e+01
+-4.3040610620622182e+01
+-6.8400554617601583e-01
+1.6332928653929720e+01
+-4.9596562632471219e+01
+-6.4477840469003658e+00
+1.4548865254950163e+01
+-4.4796140233380598e+01
+-1.2280804791702629e+01
+1.3286604268275063e+01
+-4.0439087776808961e+01
+-1.0098641975632214e+01
+1.3994204639503472e+01
+-4.2515968582426524e+01
+1.4479592641580245e+01
+1.1499919045201872e+00
+-2.2397644885551127e+01
+-1.1045592006862975e+01
+1.3512820191130817e+01
+-4.1371060588936203e+01
+1.3423841001699804e+01
+3.2434874521197301e+00
+-2.6773783848280406e+01
+5.9417758969349721e-01
+2.5283236327903125e+00
+-2.1384923264946291e+01
+-3.9692207900189647e-01
+3.1171159651820246e+00
+-2.2691538265754406e+01
+1.3384632428948596e+01
+3.4299354700325302e+00
+-2.7917804736299150e+01
+-1.3058756037609834e+01
+1.2906861313468792e+01
+-4.0474805877812301e+01
+-3.3461484151728476e+00
+1.5112307561986107e+01
+-4.8306636988057662e+01
+-1.2107426552471141e+01
+1.3010593336329986e+01
+-4.0975033233303890e+01
+-6.9993390746537241e+00
+1.4008534688312107e+01
+-4.5245110855948674e+01
+4.0905542758122893e-01
+2.3468063512012090e+00
+-2.1400490818050255e+01
+2.1022680856356541e+00
+1.7016186508056537e+00
+-2.0425183615378444e+01
+-1.0712593833991370e+01
+1.3263380982465289e+01
+-4.2396937023340421e+01
+-1.4434425955818115e-02
+2.4578142988974228e+00
+-2.1733211645332602e+01
+1.3014809152274134e+01
+3.1954254424919339e+00
+-2.8384681357056724e+01
+-1.0547423052302550e+01
+1.2771462094749459e+01
+-4.2349307154249075e+01
+1.2696040537611605e+01
+3.7922317995569035e+00
+-2.9692866749077243e+01
+4.7577885296643407e-01
+1.5279146293252426e+01
+-5.2035389005877242e+01
+-1.2359766238430991e+00
+3.1958412301917756e+00
+-2.3895081332298005e+01
+-2.5848125075396666e-01
+1.4769150766080550e+01
+-5.1512713423672224e+01
+1.3541849447385218e+01
+2.1905104646670219e+00
+-2.7195460898310852e+01
+-8.5283508328786917e-01
+2.4042465759283602e+00
+-2.2366735502886115e+01
+6.8911973966386841e-01
+1.4066052378952270e+00
+-2.0668939971088335e+01
+1.8500837237971579e+00
+1.0178589685436923e+00
+-2.0142339668718435e+01
+4.8953055542632278e+00
+-1.7563404656381012e+00
+-1.4948983822419299e+01
+2.1331183161131890e+00
+9.6560226944336991e-01
+-2.0393760448553220e+01
+1.0497062435250062e+00
+1.0067628361964418e+00
+-2.0280995529409523e+01
+-6.4807718154244851e+00
+1.3086225265692143e+01
+-4.6922563177746234e+01
+-1.1362403338645906e+00
+2.2463095564056537e+00
+-2.2517149750807125e+01
+-1.1071928390564085e+00
+2.1928606708279230e+00
+-2.2437102750161351e+01
+1.2755462501490257e+01
+3.2886052983835317e+00
+-3.0512721325253612e+01
+5.6885551527812295e+00
+-1.3315830950224865e+00
+-1.6721627377335246e+01
+-6.7262866140972406e+00
+1.3277970196788894e+01
+-4.7375132007827013e+01
+1.4259042626681863e+01
+1.3409971584038569e+00
+-2.6818682316713389e+01
+4.9683183898615448e+00
+1.1533171577839374e+01
+-4.8354259282104138e+01
+1.2890410114655825e+01
+2.8271152941443187e+00
+-3.0372470049236625e+01
+-5.3100794560879399e+00
+1.2952922583152082e+01
+-4.8673708530999598e+01
+9.5608050892590080e-01
+6.1318505177489102e-01
+-2.0207817334182490e+01
+-1.6743095705837052e-01
+1.0428683012144453e+00
+-2.0819455897480236e+01
+-1.0906376803643660e+00
+1.4279668664783813e+00
+-2.1936334002888849e+01
+1.3332186348471920e+01
+2.2174419119421307e+00
+-3.0262570257214644e+01
+-5.8491439314746314e+00
+1.2688092953546249e+01
+-4.9027381331796370e+01
+1.2996734627372513e+01
+2.5703657260310417e+00
+-3.1079122421981651e+01
+-1.8267499692849629e+00
+2.1460094585257803e+00
+-2.3682593979151775e+01
+-3.4332713832268026e-02
+7.2553032340769830e-01
+-2.0844465272502202e+01
+1.3692639686128013e+01
+1.2678897341768791e+00
+-2.8290995686606379e+01
+-4.5346490296683667e-01
+7.6196424006082608e-01
+-2.0997832769088443e+01
+-1.7752484112934748e+00
+1.7622811510750263e+00
+-2.3188130595619512e+01
+3.4401537009039562e+00
+-2.8157903988963529e-01
+-2.0283432103314613e+01
+5.3679454700210858e+00
+-2.3375075037246704e+00
+-1.5912266404739267e+01
+5.3679454700210858e+00
+-2.3375075037246704e+00
+-1.5912266404739267e+01
+1.5557062388853899e+00
+1.2845838867963897e-02
+-2.0253877980429611e+01
+1.5075878473667264e+00
+3.2255063865841503e-02
+-2.0260779942442365e+01
+-6.7284054722498086e+00
+1.1888027389211365e+01
+-4.8405689567720529e+01
+7.0936497036787545e+00
+-6.6159964034668717e-03
+-2.3098540733518629e+01
+-1.8588577410245972e+00
+1.4836302924099700e+00
+-2.3098796186051331e+01
+-1.8062711932167967e+00
+1.4958575925231210e+00
+-2.3185041804145403e+01
+1.4282917172225206e+01
+-2.1434832619232517e-02
+-2.7657860075058316e+01
+1.4227111257592934e+01
+-1.6727447969433407e-01
+-2.7463446892942791e+01
+-3.2742731952343096e+00
+2.5787215309245362e+00
+-2.6822701583288367e+01
+1.1341570551791435e+01
+-9.0910529662629069e-01
+-2.5000895005814389e+01
+1.1341570551791435e+01
+-9.0910529662629069e-01
+-2.5000895005814389e+01
+5.4829588120940542e+00
+-3.0078155103117061e+00
+-1.6247602042588586e+01
+1.4728140579750589e+01
+-1.4227011474543567e+00
+-2.6647844636535687e+01
+1.4232945132045359e+01
+-7.7459324478058966e-01
+-2.8415988790641915e+01
+1.4625997814284197e+01
+-1.4844780149509711e+00
+-2.7105798862398373e+01
+1.4184904839860772e+01
+-4.5717877251515804e-01
+-2.9994454559517802e+01
+-3.2943734005222840e+00
+1.3118589578299527e+00
+-2.5255206165495721e+01
+5.9368742353369504e+00
+-2.8675439000731289e+00
+-1.8071147216085354e+01
+-2.7419085855457657e+00
+6.4989986523864951e-01
+-2.3705621071419447e+01
+2.0470485054419296e-01
+-8.7014800722355057e-01
+-2.0774572707777232e+01
+1.4194986987594568e+01
+-6.4963869023777321e-01
+-3.0729025331392393e+01
+4.1585637724590949e+00
+-1.9362735469106480e+00
+-2.0728097254004300e+01
+6.2054550757510718e+00
+-3.2173242753556588e+00
+-1.8733981714243267e+01
+1.4181996012454027e+01
+-1.2129605689906138e+00
+-3.0539110853121883e+01
+-3.8880315720763714e+00
+1.8797925083768349e-01
+-2.3738909646417266e+01
+-3.6521214978400338e+00
+-2.6369062747305982e-01
+-2.3146154191046868e+01
+6.2672917254011455e+00
+-3.6404071816893548e+00
+-1.8956659872521978e+01
+-1.3050184035666719e+00
+-1.3345562552406991e+00
+-2.1313006840374339e+01
+9.3401482930312829e-01
+-2.0991446925797139e+00
+-2.0295561523706855e+01
+9.6625579683784613e-01
+-2.1584447459636009e+00
+-2.0208384237048847e+01
+-3.3883825149254649e+00
+-6.0470389376156719e-01
+-2.2701194847020918e+01
+1.5145680607523325e+01
+-3.0515799621928856e+00
+-2.7770585086488339e+01
+3.1862576601893431e+00
+-2.8896297662716970e+00
+-1.9552028330656810e+01
+1.5280772326226167e+01
+-3.5315931346421814e+00
+-2.7187604101490010e+01
+1.5418735410378842e+01
+-3.4619870480770247e+00
+-2.7214840691022065e+01
+-5.2609945953349213e-01
+-1.8657675186957061e+00
+-2.0749513358060170e+01
+1.5219062925953937e+01
+-3.8709995313876449e+00
+-2.6178962379785080e+01
+3.2035458834368846e+00
+-3.1253645409145983e+00
+-1.9695310364908956e+01
+-2.9100542301041359e+00
+-1.3042116509372308e+00
+-2.1797226508533157e+01
+-3.1260223653639567e+00
+-1.2551012090834861e+00
+-2.2056514458323228e+01
+-2.9414869760315803e+00
+-1.4464058333291459e+00
+-2.1524950835172628e+01
+-2.3736561749586294e+00
+-1.6154487030480373e+00
+-2.1499925243747732e+01
+-2.0564517768398258e+00
+-1.8319568398990271e+00
+-2.1192316928341135e+01
+-6.4856160965126888e+00
+2.8831735611906457e+00
+-3.6391377727283569e+01
+-1.9312822026241099e+00
+-1.9286835328836645e+00
+-2.0974366407782266e+01
+-2.4533859882297855e+00
+-1.7589138124258574e+00
+-2.1630623277856696e+01
+-1.4385055247007361e+00
+-2.2370476242520203e+00
+-2.0446221088548668e+01
+1.4986485448781549e+01
+-4.4662437220614066e+00
+-2.6292453828979333e+01
+-3.7820839541540838e+00
+-8.6994890306850392e-01
+-2.4184905090008030e+01
+-5.3421591728970097e-01
+-2.5937460035621602e+00
+-2.0241205367446174e+01
+1.8587086163855941e+00
+-3.1860056547126208e+00
+-1.9891439428276215e+01
+3.9903917185018578e+00
+-3.5431599383022614e+00
+-2.0772157405087345e+01
+4.4161571230548340e+00
+-3.5387513260943866e+00
+-2.1232657115084518e+01
+-2.6388568454403130e+00
+-1.9200896351691412e+00
+-2.1943106232892802e+01
+1.1073633419529058e-01
+-2.8852896913888797e+00
+-1.9918321813652696e+01
+1.4089288116201452e+01
+-4.9180741319662680e+00
+-2.5714142754727543e+01
+2.6783562560557250e+00
+-3.4694307485809994e+00
+-2.0105602114320838e+01
+-1.8351009958987985e+00
+-2.3633330854585246e+00
+-2.1218501902858652e+01
+-5.7377653496508438e+00
+9.4405789560312636e-01
+-3.3825143642849618e+01
+-8.3791469837861570e+00
+1.4284346878713630e+00
+-3.4462126529995452e+01
+-3.0165765045042150e+00
+-2.3373845064415333e+00
+-2.2040642428882620e+01
+-2.0027831549639039e+00
+-2.6434233072160316e+00
+-2.1773231061719166e+01
+-8.6236294186905293e-01
+-3.3123273386106944e+00
+-2.1012008749867956e+01
+1.4651777841171723e-01
+-3.5936839011006305e+00
+-2.0755114627587453e+01
+1.8344993733926502e+00
+-4.0843607616799806e+00
+-2.0813964230458119e+01
+4.1837524276561080e+00
+-4.5106767216412313e+00
+-2.1950830798208237e+01
+-6.3776034581550043e+00
+-6.6870468241502362e-02
+-3.2428476675872773e+01
+-1.0390091384285558e+01
+1.0127381379372746e+00
+-3.3688776965789764e+01
+-2.0749274731074969e+00
+-3.1501154160464742e+00
+-2.2094611709296377e+01
+-3.5624273423811808e+00
+-2.4446755805246694e+00
+-2.4547608042256034e+01
+-3.2020396879427220e+00
+-2.5914438622823734e+00
+-2.3973224681355418e+01
+-3.4681293749430182e+00
+-2.5857675520723347e+00
+-2.4141604429057345e+01
+7.0332027731106572e-01
+-4.1403446367054029e+00
+-2.0770165261414412e+01
+1.4929060119513426e+00
+-4.3681683908055629e+00
+-2.1011809266243958e+01
+-3.9361689627898933e-02
+-3.8587613187213634e+00
+-2.0849648327059697e+01
+-7.6409474903778374e-01
+-3.7810907937877172e+00
+-2.1415501774664317e+01
+-7.3390212959750265e+00
+-7.8856627657252321e-01
+-3.1060020890262020e+01
+2.8788698415608875e+00
+-4.9690007341686346e+00
+-2.1553066685182447e+01
+-2.5889842150086761e+00
+-3.4535132975279481e+00
+-2.3521015700505959e+01
+-1.0986711198875419e+01
+-1.2678517479780274e-01
+-3.2237392660620856e+01
+-2.1775137963906528e+00
+-3.8016743917464382e+00
+-2.3098169761933466e+01
+-8.6646563133195548e-02
+-4.5536849522063152e+00
+-2.1681619818367547e+01
+-2.0132143172662578e+00
+-3.8744353431489653e+00
+-2.2601871088681062e+01
+-8.2977566792357091e+00
+-1.5997144418294464e+00
+-3.0415676646330535e+01
+-8.1045095814278003e+00
+-1.8034195446330870e+00
+-3.0067362097808566e+01
+1.1775570404214577e+00
+-5.2316668080678763e+00
+-2.2479043756118568e+01
+6.7983952630076094e-01
+-5.1734138972576833e+00
+-2.1436441741673047e+01
+5.3644522480181689e-01
+-5.3193276876830851e+00
+-2.1185023829134337e+01
+-9.1755498606488626e+00
+-2.3310282804461329e+00
+-2.8526690000183873e+01
+-7.0816826066498244e+00
+-3.4114369627288332e+00
+-2.7696601950759494e+01
+-2.1487686953962851e-01
+-6.3630635463121186e+00
+-2.1505481705433031e+01
+-1.7782430176788833e+00
+-6.1160114788534283e+00
+-2.2366699582245474e+01
+2.2117649209232915e+00
+-8.1908682770032026e+00
+-2.1071247635673629e+01
+-5.6467812498326815e+00
+-6.5859425998123395e+00
+-2.3021371063280785e+01
+2.8239804019124661e+00
+-9.2975774797363968e+00
+-1.9559696781006437e+01
+1.2541913782709311e+00
+2.6165886138729409e+01
+-3.9665657837962002e+01
+5.2071104846842609e-01
+2.6279632016210709e+01
+-4.0475722354483359e+01
+1.1877514701091387e+00
+2.5067979873717562e+01
+-4.0594075409538974e+01
+5.1928762223620675e+00
+2.6577390313772380e+01
+-4.3110013669791122e+01
+1.5303757176232319e+01
+3.0037295439791414e+01
+-4.7954924139939870e+01
+1.2991345595596091e+01
+2.9594550419154153e+01
+-4.7552750879040580e+01
+1.2991345595596091e+01
+2.9594550419154153e+01
+-4.7552750879040580e+01
+1.1346455450461006e+01
+1.1693614727176312e+01
+-2.4499229713377723e+01
+3.4574617958298188e+00
+2.5797041652304099e+01
+-4.2403558097828714e+01
+4.1029629954341118e+00
+2.6009331497653776e+01
+-4.2655887357045209e+01
+4.1261877237737634e+00
+2.6056397740763323e+01
+-4.2693019504768280e+01
+1.0392075345439815e+00
+2.5043071738161125e+01
+-4.1325423969917274e+01
+-6.6698709100683951e-01
+2.4139262389714435e+01
+-4.0155047414702395e+01
+1.2628532364994028e+01
+1.5575373382416910e+01
+-2.9714433681567453e+01
+1.5736217161617640e+01
+2.9925996364925986e+01
+-4.8928448145402498e+01
+1.2951921964692245e+01
+1.4736882980837672e+01
+-2.9071570599281358e+01
+-1.0689921493485430e+01
+1.9940354540625968e+01
+-3.4151868078395438e+01
+-6.5025995702199459e+00
+2.1738780875523766e+01
+-3.7061698606849177e+01
+1.6717054284838973e+01
+3.0326989397160286e+01
+-5.0494823914104124e+01
+9.3618661480698524e+00
+8.0423464334212014e+00
+-2.0231130981409208e+01
+-1.1925041060352831e+01
+1.9601617909401089e+01
+-3.3961232356635087e+01
+-9.2219320204169346e+00
+2.0738009209465385e+01
+-3.5839797861661886e+01
+-8.7353017694386388e+00
+2.0958653596361241e+01
+-3.6036832095099626e+01
+-8.7611399823283680e+00
+2.0626308077845788e+01
+-3.5552857022365330e+01
+1.2948836865805506e+01
+1.4570796329804891e+01
+-2.9281296577218097e+01
+-8.5489106122245815e+00
+2.0693948236926907e+01
+-3.5829813949638833e+01
+-5.7940606817711062e+00
+2.1720479539957243e+01
+-3.7600431920100100e+01
+1.5483634548686414e+00
+2.4439979004881156e+01
+-4.2062586574833908e+01
+2.5683984227587713e+00
+2.4779200706747798e+01
+-4.2626882202329568e+01
+1.2343329632902190e+01
+1.3946982927383704e+01
+-2.8763416479232038e+01
+-8.3900751624351493e+00
+2.0751419297082112e+01
+-3.6231360719828032e+01
+-9.3358957479593396e+00
+2.0456350802948290e+01
+-3.6055843900052118e+01
+1.9838670311714426e+00
+2.4349031895434969e+01
+-4.2460764268767072e+01
+3.2769914093995136e+00
+2.4742717358530957e+01
+-4.3205539141518535e+01
+-1.0488355936760803e+01
+1.9612828560287934e+01
+-3.4768682665675321e+01
+1.6936547989352382e+00
+2.4177684737273296e+01
+-4.2426683433615167e+01
+-1.1216537278013035e+01
+1.9384380412103400e+01
+-3.4634305430135797e+01
+3.3755586590782225e+00
+2.4728321412834614e+01
+-4.3645421758446574e+01
+3.3607685835775651e+00
+2.4814804338394513e+01
+-4.3676764216612966e+01
+-9.4671636843975335e+00
+1.9874767665320228e+01
+-3.5482415386728398e+01
+-1.0337878873129613e+01
+1.9834414038171719e+01
+-3.5623693290741095e+01
+-1.1206084777659260e+01
+1.9147229695731532e+01
+-3.4659089733929484e+01
+-1.1206084777659260e+01
+1.9147229695731532e+01
+-3.4659089733929484e+01
+1.4586467464859249e+01
+2.7600071201473828e+01
+-4.9072013793961432e+01
+5.5852501253607620e+00
+5.4241194800374268e+00
+-1.7418842448480191e+01
+-8.7784019645020841e+00
+2.0062694139655953e+01
+-3.6716571226292565e+01
+-8.6845285383267630e+00
+2.3637400697384020e+01
+-4.1890942575910188e+01
+-4.9727962698324983e+00
+2.1358459362810066e+01
+-3.9307543971018234e+01
+-1.1207114347275727e+01
+1.8942967137333440e+01
+-3.5430622917132155e+01
+1.2060909575193689e+01
+2.6573841795291699e+01
+-4.8972387254681642e+01
+1.1351166973351962e+01
+2.5603634907818172e+01
+-4.7524835728609517e+01
+4.6234579993931710e+00
+2.4962589567862096e+01
+-4.6051431222593280e+01
+4.3245767966920763e+00
+2.4285624695943312e+01
+-4.5142173120664197e+01
+1.2790238629751768e+01
+1.2055342821922787e+01
+-2.8460015069161820e+01
+9.4609187172263063e+00
+2.5561445099774094e+01
+-4.8208030979385747e+01
+9.2760406813432468e+00
+8.5191603187376863e+00
+-2.3223707989451654e+01
+9.2760406813432468e+00
+8.5191603187376863e+00
+-2.3223707989451654e+01
+5.3734114397792352e+00
+3.9153322884983428e+00
+-1.6246727291315192e+01
+-1.1339880562998548e+01
+1.8269861219223468e+01
+-3.5315056411517226e+01
+-1.8362603856388042e+00
+2.1674847046741139e+01
+-4.1824359296697125e+01
+-1.8311468125528063e+00
+2.1653266597641771e+01
+-4.1781212756519210e+01
+1.2801386069345906e+01
+2.7920073764938902e+01
+-5.2915816825453135e+01
+-2.0919792066619974e-01
+2.2103491969485255e+01
+-4.2933209512543698e+01
+-2.0919792066619974e-01
+2.2103491969485255e+01
+-4.2933209512543698e+01
+-2.1015045962906846e+00
+2.1361599797177647e+01
+-4.1867012698380719e+01
+-2.1287628413040642e+00
+2.1263302510329090e+01
+-4.1703805443068987e+01
+-2.1078301705027052e+00
+2.1242797628953127e+01
+-4.1738398701014361e+01
+1.2810995321171575e+01
+9.0950330767827907e+00
+-2.5374902018493547e+01
+9.1271609649844159e+00
+6.9128099558771439e+00
+-2.1562427583114943e+01
+-6.1304440632685129e+00
+1.9757058587529485e+01
+-3.9251775114268725e+01
+-8.8188434398083757e+00
+1.8639124669958125e+01
+-3.7348863992654529e+01
+-1.2753752989353300e+01
+1.7278214592609384e+01
+-3.4809325154920408e+01
+-4.4879730092031389e+00
+2.0286024683277319e+01
+-4.0489203179935927e+01
+-4.3565198689566200e+00
+2.0134656695226944e+01
+-4.0726748384652097e+01
+1.0962210400315536e+01
+8.9278718526514442e+00
+-2.5489448071482929e+01
+1.2387208928729969e+01
+8.1250478665861223e+00
+-2.4894660928399986e+01
+1.2387208928729969e+01
+8.1250478665861223e+00
+-2.4894660928399986e+01
+-8.1397398171379880e+00
+1.7684521492042236e+01
+-3.6945247328536972e+01
+-8.8195622105432463e+00
+1.8549972441785027e+01
+-3.8664878217601171e+01
+8.2073559267191474e+00
+2.5139899219169269e+01
+-5.1671687094294128e+01
+7.6082660547376602e+00
+2.4173410242349547e+01
+-5.0047856960218674e+01
+7.4071991105503292e+00
+2.3903916384920052e+01
+-4.9449723018779444e+01
+1.2716611040119549e+01
+8.0311255189721589e+00
+-2.5422164726039345e+01
+-1.0461076904284569e+01
+1.8152599413348273e+01
+-3.8125102609532512e+01
+1.8399380250030955e+01
+2.6429959028180566e+01
+-5.5221961522271485e+01
+1.8578569371249682e+01
+2.4280474448404668e+01
+-5.2136485199040543e+01
+-1.2891479229130866e+01
+1.6830339724184135e+01
+-3.5535789575780733e+01
+-1.3358816683791071e+01
+1.6689114314813398e+01
+-3.5433399522255300e+01
+-1.3358816683791071e+01
+1.6689114314813398e+01
+-3.5433399522255300e+01
+-2.9554491486397692e+00
+2.0063298245778014e+01
+-4.2845013076514910e+01
+1.1746725047515307e+01
+1.0061394371270376e+01
+-2.8825783938753073e+01
+-1.0622365428130900e+01
+1.7497691879523749e+01
+-3.7687544231558391e+01
+-1.1231188601762497e+01
+1.7118546785173699e+01
+-3.7143782860134422e+01
+-1.0049464140949915e+01
+1.7720595087200351e+01
+-3.8604631094793135e+01
+-1.1991993127577842e+01
+1.6656837130272521e+01
+-3.6293368019401967e+01
+1.8986682287113876e-01
+2.0607469454969127e+01
+-4.5060809395517467e+01
+-1.1514816020192722e+01
+1.6693147578942927e+01
+-3.6863419224194516e+01
+9.8439829272415551e+00
+2.2585727912438124e+01
+-5.0896966930004282e+01
+-1.1594987409200796e+01
+1.6589085260886460e+01
+-3.7121585551364134e+01
+1.3281568176245505e+01
+6.3939146453931803e+00
+-2.4776999774792568e+01
+1.2248291849562754e+01
+1.1471577483801900e+01
+-3.3021783872349097e+01
+1.1929221857168441e+01
+1.1264657783169897e+01
+-3.2533708201023202e+01
+6.9499735838450150e-01
+2.0088298549744859e+01
+-4.5800476289009495e+01
+1.9050370421680054e+01
+2.4853583586814949e+01
+-5.6872573351383643e+01
+2.3474435333944463e+01
+2.7091797169239413e+01
+-6.2232153625276993e+01
+1.8833001180842707e+01
+2.3584848652777627e+01
+-5.5342632125389265e+01
+1.2635598952814373e+01
+1.0991075560761805e+01
+-3.3332586417095058e+01
+1.1411322230381007e+01
+7.8217046106407055e+00
+-2.7507046038102573e+01
+1.2041701773974724e+01
+6.2997493802880218e+00
+-2.5276992390349999e+01
+1.2515354613928546e+01
+1.1297196263889397e+01
+-3.4264880128010397e+01
+1.2876915152584326e+01
+1.0957935891704958e+01
+-3.3538421890510520e+01
+1.5589931912806454e+00
+1.8986817443977010e+01
+-4.7050914800280431e+01
+1.1167520086032965e+00
+1.8873304372781462e+01
+-4.7376685768172123e+01
+1.3975332606496972e+01
+3.1377358420348616e+00
+-2.1745580818332975e+01
+6.6271917450442892e+00
+2.0486446285753402e+01
+-5.2200392783171402e+01
+6.3655268621417376e+00
+2.0527018472647299e+01
+-5.2395096127211204e+01
+6.2781271624147372e+00
+1.9740662736789545e+01
+-5.1499601290028266e+01
+1.2115279580782698e+01
+6.2264379187418557e+00
+-2.7510757255429567e+01
+1.1915984842111586e+01
+5.2524640821891984e+00
+-2.5956029067778939e+01
+1.2120387914684917e+01
+7.0476952423765153e+00
+-3.0397410035691010e+01
+-1.2112518174452426e+01
+1.2862812000469960e+01
+-3.5836959213035890e+01
+-2.3198608336098716e+00
+1.6094606208779727e+01
+-4.4938078287755836e+01
+1.1864793110357811e+01
+1.9934559184517145e+01
+-5.6176752054733313e+01
+-1.1811124041448080e+01
+1.4504787635937564e+01
+-3.9488372592298731e+01
+1.0804059886196210e+01
+1.9693126315078672e+01
+-5.5794399572434109e+01
+1.2569637346440947e+01
+8.2637412455554511e+00
+-3.3521324195196719e+01
+1.2758119327776202e+01
+4.7326920677049644e+00
+-2.6828810434344245e+01
+1.4473302835286443e+01
+2.0370662838049736e+00
+-2.2431342428154242e+01
+1.4473302835286443e+01
+2.0370662838049736e+00
+-2.2431342428154242e+01
+1.2839515565248734e+01
+8.8506001349030985e+00
+-3.5327963700948580e+01
+1.1972724680438157e+01
+5.9272370024706209e+00
+-2.9358663912405323e+01
+1.3140790199599795e+01
+3.9275309816375783e+00
+-2.6322596158689610e+01
+1.3384676785841119e+01
+7.8868599058658564e+00
+-3.4387299347364738e+01
+-3.2929977889202977e+00
+1.6000348103661246e+01
+-4.6561046223753792e+01
+1.2171459088581997e+01
+5.2905954550636123e+00
+-2.9014526484298500e+01
+1.4002266477781365e+01
+3.1235907448295910e+00
+-2.5543333634860957e+01
+-1.1525958131174058e+01
+1.3378911573583814e+01
+-4.0389464975073835e+01
+-1.1582530814654383e+01
+1.3571458383009404e+01
+-4.0682828016403320e+01
+1.2485993805178758e+01
+4.6553716352033572e+00
+-2.9271429342784991e+01
+-2.1016910599636018e-01
+1.6076763122872496e+01
+-5.0492807604886416e+01
+-1.2090424031819165e+01
+1.3008487054170953e+01
+-4.0362926543452964e+01
+1.2553545052811948e+01
+4.6466648040703813e+00
+-2.9920205578388192e+01
+1.2354837878178737e+01
+4.5477909872283462e+00
+-2.9650455120810882e+01
+-1.0172471698214048e+01
+1.3669650802483410e+01
+-4.2420978027046210e+01
+1.3853429686442158e+01
+2.8887946636445623e+00
+-2.7036273089474715e+01
+-1.0978158703451246e+01
+1.2845774611449004e+01
+-4.1796701498814279e+01
+8.7366185228295521e+00
+1.8036065024381607e+01
+-6.0223407946763786e+01
+7.8797405234311855e+00
+1.4399804056598034e+01
+-5.1487409400846936e+01
+-1.5178307099669650e+00
+1.4739175589704438e+01
+-4.9393752847312406e+01
+1.3136009917352805e+01
+3.0767291882337511e+00
+-2.7954237933899350e+01
+1.4067442497514255e+01
+1.4190180544934055e+00
+-2.4842661616291231e+01
+7.8582721230906172e+00
+1.6177249587940530e+01
+-5.6709132560950835e+01
+1.4150185477644847e+01
+1.1975544245731617e+00
+-2.4563145529355406e+01
+1.4643418695322332e+01
+1.2939883861861079e+00
+-2.5574432582408267e+01
+1.4025893246155677e+01
+2.0213244119771558e+00
+-2.7233201528451602e+01
+1.3634846751508324e+01
+2.0640544867258681e+00
+-2.7590298988628863e+01
+-1.2212827554302881e+00
+1.4458882198952629e+01
+-5.1610051178311686e+01
+1.4156564096751351e+01
+1.4651203245548348e+00
+-2.6459328223206924e+01
+1.4188194638097043e+01
+1.5145888539137911e+00
+-2.6544914348932178e+01
+-7.4885665350636064e+00
+1.3169704824871452e+01
+-4.6331536562705963e+01
+-1.3574926969822134e+00
+2.5630101135072758e+00
+-2.3085660977182318e+01
+-1.3461429203142925e+00
+2.5577078333427634e+00
+-2.3099063191743316e+01
+-8.1908472715616354e-01
+1.9322230823839579e+00
+-2.2000363340048487e+01
+2.6549598031002408e+00
+3.9648869045288371e-01
+-1.9592197672728950e+01
+2.9595118716640467e+00
+1.2036620876167472e+01
+-4.8314244478789384e+01
+1.4294116617531609e+01
+9.7377424115394962e-01
+-2.6526343033311178e+01
+1.3969658774242053e+01
+1.6264573798552635e+00
+-2.8173395375856398e+01
+5.4432657858977480e+00
+-1.7934725372106086e+00
+-1.6160836182352018e+01
+1.8489082917171724e+00
+4.4375880766179182e-01
+-2.0042447617093767e+01
+-9.1700691016981939e-01
+1.4489253094374623e+00
+-2.1773029910538195e+01
+1.4151429022828147e+01
+5.4258497723607768e-01
+-2.6030551097758661e+01
+-1.3600335265828847e+00
+3.3448987136517792e+00
+-2.6653929554825076e+01
+-1.1915998084415460e+00
+1.5247587248407437e+00
+-2.1994802107215627e+01
+-1.1811127915021213e+00
+1.5100996191800014e+00
+-2.1990730502217346e+01
+2.1012107237774971e+00
+-6.9379230413573259e-04
+-2.0068268718295119e+01
+2.1539264005256640e+00
+-2.9081876942859425e-01
+-1.9478327381230489e+01
+1.4937712349402883e+01
+-8.4235751624912300e-02
+-2.6156555759583679e+01
+-1.1437423090659429e+00
+1.1527912731480308e+00
+-2.1893883542436949e+01
+-1.1787299150064834e+00
+1.1511094904473014e+00
+-2.1853441092600615e+01
+2.0708816733779223e+00
+-1.4222281026333733e-01
+-2.0251273737876602e+01
+-1.7421191139992454e+00
+1.8789018975163201e+00
+-2.3870244013609753e+01
+1.4147160259921485e+01
+6.1180904603574382e-01
+-2.8108135858576961e+01
+1.3764124656485411e+01
+5.0198739976576223e-01
+-2.7553319389607644e+01
+-2.5749668490325677e+00
+3.2643425756500144e+00
+-2.7680848076041229e+01
+1.3846366045868038e+01
+4.4863157179825702e-01
+-2.8611667854220311e+01
+-6.4405390237934988e-03
+4.7268616451656344e-02
+-2.0805128668891271e+01
+-7.6193156589249533e-01
+2.7104994906407626e-01
+-2.1303027712000603e+01
+-4.5010213954262313e-01
+8.2330456386880482e-02
+-2.1039458591700040e+01
+1.4559835030380077e+01
+-7.2760831069888288e-01
+-2.7792438722466457e+01
+1.4260346722371349e+01
+-7.8352349410579447e-01
+-2.7445609865996449e+01
+-3.5400583156933298e+00
+2.0070162214192773e+00
+-2.6040897749541386e+01
+1.4716355751993174e+01
+-1.3094211844268957e+00
+-2.6496075706485296e+01
+-4.0069218497530361e+00
+1.6889546878963351e+00
+-2.5183517194357695e+01
+1.2758119533159658e+00
+-8.7884164210893079e-01
+-2.0265585615436073e+01
+-1.3068241210497180e+00
+2.6184155650719153e-02
+-2.1872755079163543e+01
+-1.2981428612987247e+00
+1.5474254310637543e-02
+-2.1880218734605755e+01
+1.4331724553071950e+01
+-1.0684776310766451e+00
+-2.8142236463240515e+01
+1.4714748466887272e+01
+-9.8397046574583780e-01
+-2.8603079861738781e+01
+-3.6155356188015606e+00
+1.4492252913704002e+00
+-2.5290874694050078e+01
+-3.5962027098087201e+00
+1.4786664569120775e+00
+-2.5376462890462363e+01
+-7.7975809677734109e-01
+-4.1175090486528937e-01
+-2.1206312109384303e+01
+-2.7261630793546412e+00
+5.5265361749848063e-01
+-2.3372924555102664e+01
+1.5054805778376322e+01
+-1.5977660918657286e+00
+-2.7872177400330543e+01
+-3.4926882557401506e+00
+9.3266048361113518e-01
+-2.4481082660359483e+01
+-2.5684342122269657e+00
+2.2838821534639808e-01
+-2.2854835018259678e+01
+1.4691528449663183e+01
+-1.4975034321835696e+00
+-2.8379412385389568e+01
+-3.4883518793012223e+00
+-2.9775173650691528e-01
+-2.2998176143070143e+01
+-1.4552554692974389e+00
+-1.1884639317333670e+00
+-2.1397500175461165e+01
+-4.2030888719102402e+00
+-1.6802101076729004e-01
+-2.3268830125798694e+01
+-3.6982321340237836e+00
+-2.9233416524358669e-01
+-2.3412166542418877e+01
+9.0899281109239463e-02
+-1.9785070027530105e+00
+-2.0357328295875245e+01
+4.5188745132213484e+00
+-2.9127017388375154e+00
+-2.0806386974743603e+01
+1.5227498045051764e+01
+-3.5639999087748504e+00
+-2.7385084263066460e+01
+-3.9278309075207751e+00
+-4.4315027558950043e-01
+-2.3763525035579018e+01
+3.9561373713231545e+00
+-3.0579958482787246e+00
+-2.0322656056614363e+01
+-3.2378065053650755e+00
+-1.0881526113229558e+00
+-2.2730119091629650e+01
+1.9975427283137488e+00
+-3.1708511658987022e+00
+-1.9627189998466733e+01
+2.8768116654688338e+00
+-3.3062069691210634e+00
+-2.0079267370155339e+01
+4.1531539493789991e+00
+-3.5773528610945857e+00
+-2.1144756216090691e+01
+4.7927057082211943e+00
+-3.6539465717158262e+00
+-2.1669362302102435e+01
+-5.5347826715084132e+00
+1.4049403327052603e+00
+-3.4816944062134887e+01
+-7.6571959260132845e+00
+1.9323694481312055e+00
+-3.5193864340393560e+01
+-5.3307306876608571e+00
+1.2170036344891491e+00
+-3.4583361678046735e+01
+-6.5874475061390667e+00
+5.0525557046300862e-01
+-3.0765064406662255e+01
+-1.4404996789986266e+00
+-2.7102443158866927e+00
+-2.1148703548029882e+01
+-5.7431647501984684e-01
+-3.0475031506902925e+00
+-2.0488409141071305e+01
+-1.0626670820314709e+01
+1.7024927727164085e+00
+-3.3728347944991469e+01
+2.8395635810486453e+00
+-3.9821305444645998e+00
+-2.0470087858824730e+01
+-3.4849600300237857e+00
+-1.8544547319137030e+00
+-2.3961946868930266e+01
+-8.1418546303867405e+00
+7.2985057415714605e-01
+-3.3449872991695948e+01
+-7.7087262700070225e+00
+4.9119736399990926e-01
+-3.3358022808594924e+01
+1.2091276591805926e+00
+-3.9937257972406774e+00
+-2.0588691035879460e+01
+-6.6798001216882614e+00
+-1.4474119799997270e-01
+-3.2417478638046468e+01
+-3.1727769073240419e+00
+-2.7541880292346774e+00
+-2.3353602009969567e+01
+-4.0155484431735916e-01
+-3.9918806788250567e+00
+-2.1133988997524362e+01
+-7.7526149891801044e+00
+-7.2591730344217464e-01
+-3.1077495482394085e+01
+1.4036357821261949e+00
+-4.5844680104763427e+00
+-2.1054215508564877e+01
+-9.2166222319179418e+00
+-2.1686808410364541e-01
+-3.2100743328272770e+01
+-5.2859677856788800e-01
+-4.2885846292830241e+00
+-2.1683009726014124e+01
+-7.9441708591682820e+00
+-1.0956065889104107e+00
+-3.0946660001808233e+01
+6.1443559181574137e-01
+-4.6497319666412196e+00
+-2.1095973730615711e+01
+-1.0823703245961234e+01
+-8.0446657431901458e-01
+-3.0319715309803492e+01
+-5.5875589322603336e-01
+-4.4592522111543156e+00
+-2.1773703264294166e+01
+-1.0188514887409458e+01
+-1.0342963046549274e+00
+-3.0040434368157925e+01
+-7.8039807335286229e+00
+-1.7476105953705985e+00
+-3.0279930484053622e+01
+-7.0239535412517888e+00
+-1.9806869581823234e+00
+-3.0200998930085124e+01
+-9.0817342465034709e+00
+-1.5244911675667001e+00
+-3.0461383756375746e+01
+-1.0986014201141675e+01
+-1.4142933603850076e+00
+-3.0847398550850460e+01
+-7.9170952627037110e+00
+-2.6797961431801092e+00
+-2.9068646473316679e+01
+-7.2140579990655480e+00
+-3.0416070148741357e+00
+-2.8366425582715291e+01
+-8.2316692468043247e+00
+-3.2208507890959686e+00
+-2.7537455726556242e+01
+3.0026171613543724e+00
+-7.0808150277074926e+00
+-2.1453073391500162e+01
+-9.1342621239847777e+00
+-3.9093015166729201e+00
+-2.6054687304699634e+01
+2.3552265146250542e+00
+-7.9046174425341897e+00
+-1.7304709760525704e+01
+4.7661387148155931e+00
+-8.4902283335170878e+00
+-2.0730932011324988e+01
+1.5875480871584082e+00
+-7.8734245884341227e+00
+-2.1157781307915421e+01
+2.6625059706661784e+00
+-8.3425182567963727e+00
+-2.1944424839807954e+01
+3.2811507993704589e+00
+2.7056842773563876e+01
+-4.0957297946431225e+01
+4.6247875098499485e+00
+2.7191387518193064e+01
+-4.2382477766196232e+01
+1.3079320066958964e+01
+2.9303183897367472e+01
+-4.5432418108841155e+01
+1.4042504350576110e+01
+1.7734267826651241e+01
+-3.2508857893277266e+01
+-1.2401402759776665e+00
+2.4134921350228467e+01
+-3.9637101892285123e+01
+-9.0312644486555875e+00
+2.0995247251779247e+01
+-3.5632291751510699e+01
+7.6425927363429516e+00
+2.6684487134194615e+01
+-4.5235659823831185e+01
+-1.0029659071822232e+01
+2.0252856429003934e+01
+-3.5302058507205324e+01
+-9.0100593838790939e+00
+2.0641750412057384e+01
+-3.5917183016623333e+01
+-6.9100372534549690e+00
+2.0993521529207175e+01
+-3.6750947557181057e+01
+7.4052718786263787e+00
+2.6526426116655593e+01
+-4.6226457033238937e+01
+1.0512480536112786e+01
+2.8329754357449907e+01
+-4.9429449682853054e+01
+1.3367365879658156e+01
+9.5645423553317919e+00
+-2.3563878486168864e+01
+-9.8983683227201720e+00
+1.9706272237398412e+01
+-3.5475983984137400e+01
+-4.7088134538504169e+00
+2.1761395381423107e+01
+-3.9330848989480337e+01
+1.3457705388438615e+01
+9.7466813509834065e+00
+-2.4448851582477133e+01
+-1.0105877310867966e+01
+1.9233190373863959e+01
+-3.5265227879783069e+01
+-1.0876205405588419e+01
+1.9034038109680708e+01
+-3.4961823854240386e+01
+-1.0318924676460918e+01
+1.9228884092959532e+01
+-3.5639239283714794e+01
+2.8442446753864399e+01
+3.4357316038585118e+01
+-6.2072982017128339e+01
+1.2870428819131206e+01
+9.1395447562612411e+00
+-2.4937423328183311e+01
+1.1317455980714699e+01
+1.2809579840376063e+01
+-3.0676373683697072e+01
+-1.1120391675933991e+01
+1.8039717972466548e+01
+-3.6061829018136592e+01
+-2.2757067776362874e+00
+2.1001394515785581e+01
+-4.2030882448608828e+01
+-2.7884670641886626e+00
+2.0115264937553047e+01
+-4.2108713554961696e+01
+-1.1306665565503355e+01
+1.7184853631573308e+01
+-3.6706206732570315e+01
+-1.3500808492464341e+01
+1.6144747235319461e+01
+-3.5127316383496634e+01
+1.4667360514312854e+01
+1.1038890322191120e+01
+-3.1885668163611246e+01
+-9.8957274078043849e+00
+1.7365696976847037e+01
+-3.8456838190728504e+01
+4.9892695699502161e+00
+2.0029395332156859e+00
+-1.5465446247713638e+01
+-1.3418611745513557e+01
+1.6317763499161114e+01
+-3.6062822025576779e+01
+1.5306227968464563e+01
+2.4100196015851960e+01
+-5.3890398108551672e+01
+2.9183338397065732e+00
+2.1080923217979670e+01
+-4.7312967178258361e+01
+1.3541272520474740e+01
+6.3494518227187493e+00
+-2.4717753264410128e+01
+1.6190732058529793e+01
+2.3622937765289517e+01
+-5.4900925324507519e+01
+6.9489554777545051e+00
+2.1382544151829471e+01
+-5.0596330969323439e+01
+1.2146468660004674e+01
+6.9696917449261084e+00
+-2.6818211983310096e+01
+1.3768930937872797e+01
+5.5183518969499143e+00
+-2.4922885355244595e+01
+1.0271552334272151e+01
+6.4659850211016172e+00
+-2.6796215634175258e+01
+1.2693585613771782e+01
+5.5772140886714618e+00
+-2.6451863725796098e+01
+1.2915197040683536e+01
+4.7949893883881307e+00
+-2.5178175197733463e+01
+3.9603647157096025e+00
+1.8756982157047194e+01
+-4.9622236680076639e+01
+3.2799562051127613e+00
+1.8272412630705400e+01
+-4.9031241697937752e+01
+1.2148572405528190e+01
+6.4958551023820394e+00
+-2.9585803386869959e+01
+1.3591012870517535e+01
+4.1782706116865143e+00
+-2.5393662661777856e+01
+5.4608554649835570e+00
+1.9222498261649502e+01
+-5.2690733679783740e+01
+5.2124041445655358e+00
+1.8295914768754812e+01
+-5.1259039822793653e+01
+1.3560667432218081e+00
+1.7441071905138845e+01
+-4.8954615022241434e+01
+5.3185505104703461e+00
+1.8392630838614583e+01
+-5.2500516781133328e+01
+1.3802864229586417e+01
+7.6616892455783487e+00
+-3.4885198150008549e+01
+-7.0953914864247594e+00
+1.5038003691257464e+01
+-4.4524809249744735e+01
+7.3560247517065458e-01
+3.7886046699486826e+00
+-2.3217445038767384e+01
+-1.4194007928710168e+00
+1.5995413514355771e+01
+-4.8650599837137101e+01
+3.0646796625121215e+00
+2.9037604138743118e+00
+-2.2398682973021554e+01
+6.7417043385860104e-02
+1.7686970222921650e+00
+-2.1067720101357697e+01
+5.5646988394288295e+00
+-1.4248436340557997e+00
+-1.5883736358217250e+01
+1.4811503762768558e+01
+8.3566510636214075e-01
+-2.4988579438928380e+01
+1.4426360451659448e+01
+6.4529727141896132e-01
+-2.4450809045418367e+01
+7.6152597022899901e-03
+1.3515623589848036e+00
+-2.0924327968563130e+01
+-1.4746820475333737e+00
+2.1682703571687236e+00
+-2.2816212354203131e+01
+-1.4144580296279792e+00
+2.2025990269560318e+00
+-2.2959754901853358e+01
+3.6100056531278448e+00
+-2.1487423430204053e-01
+-2.0720151844538812e+01
+1.3438160669994300e+01
+1.0838617104085282e+00
+-2.8793563047385323e+01
+-6.9111493138334765e+00
+1.1475319842339594e+01
+-4.7731534092183281e+01
+1.5426371367127059e+01
+-6.0424668743479693e-01
+-2.6601163177910564e+01
+1.4970375589424648e+01
+-3.8922876164566989e-01
+-2.7109061235227514e+01
+-1.2522537697333065e+00
+6.7938229403456307e-01
+-2.1767353344178652e+01
+-1.2538448386933769e+00
+6.6793912620422702e-01
+-2.1699642481137793e+01
+6.3377652990035820e+00
+-1.3552950293984232e+00
+-2.1394776762894054e+01
+1.4239897369528318e+01
+-8.4513409412497698e-01
+-2.7810227136037152e+01
+-3.4348297774606529e+00
+1.6138582851777097e+00
+-2.5497183967052383e+01
+-3.4348297774606529e+00
+1.6138582851777097e+00
+-2.5497183967052383e+01
+1.5104249246739045e+01
+-1.9329850873270829e+00
+-2.5676369090812965e+01
+-4.0709391881817005e+00
+1.4803513815546168e+00
+-2.5258111026629333e+01
+3.6708964308274386e+00
+-2.6920290601433461e+00
+-1.8493804530912435e+01
+-4.0691969473614158e+00
+1.9668445578711349e-01
+-2.5627479311317529e+01
+-3.4456978474317537e+00
+-6.7844489234845373e-01
+-2.2935996834190039e+01
+-2.9015905230490544e+00
+-1.1088741248692053e+00
+-2.1929632019677371e+01
+-3.3338646362378102e+00
+-8.7377840382059790e-01
+-2.3103646624441879e+01
+-2.9646482473231042e+00
+-1.5999550113796925e+00
+-2.1514638560745496e+01
+2.8548678028443644e+00
+-3.3151435622021479e+00
+-1.9538910543230156e+01
+-3.9261013553855499e+00
+-4.0631705980179211e-01
+-2.5580734292905447e+01
+-1.7768187316761903e+00
+-2.1555435372725413e+00
+-2.0882374063721375e+01
+-5.9492777311803113e+00
+1.6047034826734592e+00
+-3.5162600572212028e+01
+-3.8753270570917433e+00
+-1.8082122408237837e+00
+-2.4718549370807938e+01
+-6.7778654474887281e+00
+5.5873642474022622e-01
+-3.3198016811103564e+01
+-3.0501165863027384e+00
+-2.4317871070266053e+00
+-2.2704291842643130e+01
+-9.9266986196308116e-01
+-3.1968509133676153e+00
+-2.2219734866996323e+01
+-3.4488460685834310e+00
+-2.2384293251032275e+00
+-2.4355628449814333e+01
+8.7511176453958726e+00
+-5.0746470151842127e+00
+-2.4238521456586021e+01
+-1.6954500642698140e+00
+-3.4470697505859569e+00
+-2.2092175537446241e+01
+1.8048919235083183e+00
+-4.7018850151731826e+00
+-2.1159615382415272e+01
+-9.9071522231362454e+00
+-1.5987680727720472e+00
+-3.0384574512293117e+01
+-9.8929244817179036e+00
+-1.6374955694873081e+00
+-3.0532792294319336e+01
+6.5665746177303030e-01
+-5.2417029451633574e+00
+-2.1638558858604345e+01
+-9.7293930022690152e+00
+-2.6608463915832425e+00
+-2.8970631407849233e+01
+3.6118476804876165e+00
+-6.9862391761285654e+00
+-2.1329205901311592e+01
+-8.7721105310494991e+00
+-4.0940239595506451e+00
+-2.6674041672893100e+01
+2.3902119928679069e+00
+-7.5765471713217032e+00
+-2.1241221408110331e+01
+3.2438382885251551e+00
+-9.0293651329010434e+00
+-1.9216646209050428e+01
+1.6160205867888919e+00
+-8.8695116560504008e+00
+-1.9634640059584061e+01
+2.1280672185671916e+00
+-8.9975176209880932e+00
+-2.0052953572913921e+01
+1.2444685857515163e+00
+2.6590983658059184e+01
+-4.1002126638356778e+01
+8.8664757924258346e+00
+2.8158801402248525e+01
+-4.4212250493473064e+01
+3.5371870726220012e+00
+2.6399095905491784e+01
+-4.2113865992130805e+01
+9.0206589694316790e+00
+9.5005130449889723e+00
+-2.1756230767956474e+01
+1.1838325408348149e+01
+1.6076426431881369e+01
+-3.0736063768299029e+01
+-6.5604714122711689e+00
+2.0820764929033089e+01
+-3.6449979145551850e+01
+1.1863486890782278e+01
+1.5379874717827816e+01
+-3.1323461359299884e+01
+1.0469227619466261e+00
+2.3923986732291272e+01
+-4.2361977094772961e+01
+2.0566664804087385e+00
+2.3860959574230975e+01
+-4.3036282672342708e+01
+8.0833084979740626e+00
+2.6450365166867019e+01
+-4.7737980373022843e+01
+1.1715738960582435e+01
+2.6354482948158157e+01
+-4.9360838449037843e+01
+1.4294741278088466e+01
+1.2510859703972621e+01
+-3.0481126501465052e+01
+1.2247931999262324e+01
+9.8332627299348179e+00
+-2.6647358554968722e+01
+-5.6065615271177318e+00
+2.1280647468832690e+01
+-4.2273307151136265e+01
+1.1220802009671532e+01
+8.4855836609448811e+00
+-2.5013641472632955e+01
+1.1339844701992902e+01
+8.2681233083284837e+00
+-2.4769280748182940e+01
+1.1979015666361729e+01
+8.6231643819739112e+00
+-2.7286932864181203e+01
+9.0159958256193811e+00
+2.2904666177751029e+01
+-5.0261521274146787e+01
+1.3643366650722042e+01
+5.8007680303947549e+00
+-2.4611292339603128e+01
+1.2699045838631358e+01
+1.1297877384408757e+01
+-3.4020096870011990e+01
+1.2699045838631358e+01
+1.1297877384408757e+01
+-3.4020096870011990e+01
+7.8396952038817327e+00
+2.0760817420478894e+01
+-5.1279254161400175e+01
+1.4202426707954096e+01
+2.2117238093771221e+01
+-5.6048757652178253e+01
+1.0124853674382297e+01
+5.8195886052250900e+00
+-2.6579504139460280e+01
+1.4476510459231227e+01
+8.9654567986603002e+00
+-3.4723692505660679e+01
+1.3802264122319979e+01
+3.8463945982097245e+00
+-2.5558859708134428e+01
+1.4256885270976520e+01
+2.0066802834029861e+01
+-5.8044868007468835e+01
+1.3076463136562220e+01
+4.9455111604981852e+00
+-2.7750540412688125e+01
+1.3076463136562220e+01
+4.9455111604981852e+00
+-2.7750540412688125e+01
+-3.6822239115353579e+00
+1.5781780392079336e+01
+-4.5730063143477025e+01
+7.6419279962949478e+00
+1.7997041896655130e+01
+-5.5284565121011994e+01
+6.9248901258876687e+00
+1.7773386399049432e+01
+-5.4967498887530382e+01
+-8.5359222604716356e-01
+3.4182310107301204e+00
+-2.3009133650056679e+01
+-1.0260710153941581e+00
+1.5362299026560603e+01
+-4.9563717427962686e+01
+-1.1587105858777136e+00
+1.5089070151805778e+01
+-4.9101428603934757e+01
+1.2597056809793889e+01
+4.2433075185623323e+00
+-3.0830983170723208e+01
+-5.2534680060338046e-01
+2.0335100203137628e+00
+-2.1573559980782797e+01
+1.3140868664893901e+01
+3.0632141804233828e+00
+-3.0078380370662483e+01
+5.8818748358120594e+00
+-1.1801591890358962e+00
+-1.7011384130467597e+01
+-2.1398470305418096e+00
+3.0337464180893967e+00
+-2.6290367249109025e+01
+-1.8066932721962661e+00
+2.8173420308426604e+00
+-2.5941594953581639e+01
+1.4828711755227822e+01
+7.8476302423155335e-03
+-2.6570120319894276e+01
+1.4104778779888685e+01
+-1.0442403316753834e-01
+-2.5867672642892106e+01
+6.0738593578172688e+00
+-2.1606733594301821e+00
+-1.8264758188415737e+01
+-1.7280182543482923e+00
+9.0207643401179261e-01
+-2.2790190275958654e+01
+-1.5784351850841867e+00
+6.9993833293445573e-01
+-2.2449821083712898e+01
+4.4313814260647924e+00
+-1.9639506626738144e+00
+-1.9252532522681964e+01
+5.3531683157466157e+00
+-3.3138443092724694e+00
+-1.6801710811799662e+01
+6.1038775477017175e+00
+-3.0691687275082629e+00
+-1.8340685199478383e+01
+-3.6009544423199125e+00
+-6.5391228817051428e-01
+-2.3323669261569417e+01
+-3.0997143361799520e+00
+-1.5400710142599563e+00
+-2.2360783344428881e+01
+-3.3656649239088723e+00
+-1.2729949425846958e+00
+-2.3185442389727321e+01
+6.5836083297200376e-01
+-3.6281834902590622e+00
+-2.0064350226527282e+01
+4.1703413987761673e+00
+-4.2238960445643503e+00
+-2.1729532066493377e+01
+-6.3645903554306384e+00
+5.0507933074142808e-01
+-3.3095112135233407e+01
+3.0981487090535595e+00
+-4.3980030252619606e+00
+-2.0871812730277568e+01
+8.1959517955695704e-01
+-4.0684186633933228e+00
+-2.0222860200498797e+01
+-2.8879553351504823e+00
+-2.2528489355962877e+00
+-2.5618488680367353e+01
+-3.7087345893803576e+00
+-2.3076757457291075e+00
+-2.5097136184940041e+01
+-8.9631424726684941e+00
+1.5392771867419069e-01
+-3.2751985461645354e+01
+-1.9846357401611190e+00
+-3.2926068488731319e+00
+-2.2355585555570560e+01
+9.2586334431036713e-02
+-4.1863334369425909e+00
+-2.1276610114990000e+01
+1.6781458836949252e+00
+-4.8914573179911836e+00
+-2.1580676772845226e+01
+-1.4198956978125086e+00
+-4.4260081724788227e+00
+-2.2359317935604068e+01
+-7.7997595426594346e+00
+-2.2146595115283962e+00
+-2.9731923697652046e+01
+-7.5747695321610333e+00
+-2.8444831242942481e+00
+-2.8837498489994704e+01
+4.9541610293789242e+00
+-6.8771101894560545e+00
+-2.2163607907299390e+01
+2.4412221323112124e+00
+-6.5163034564543230e+00
+-2.1581215233392520e+01
+3.3636818656350891e+00
+-7.7207173872313870e+00
+-2.1302131651961012e+01
+3.3636818656350891e+00
+-7.7207173872313870e+00
+-2.1302131651961012e+01
+1.3240951657096227e+01
+1.1893097735653427e+01
+-2.6355429087230217e+01
+4.5688882040769480e-01
+2.4307850780942822e+01
+-4.2980532033779731e+01
+8.3571041675198714e+00
+2.6238002324889596e+01
+-4.6392261765915428e+01
+8.5543700613029294e+00
+2.7685040569110047e+01
+-4.8490958013146553e+01
+3.2588540126914918e+00
+2.4201841375029836e+01
+-4.3684312958268585e+01
+8.1617715869933765e+00
+2.5236738977626874e+01
+-4.6628218653695811e+01
+8.2661422416043866e+00
+2.5475450695038077e+01
+-4.6934509448551168e+01
+9.2012649549684689e+00
+5.5226859121703953e+00
+-1.9016033045913034e+01
+2.3021432716774022e+01
+2.8502830055084832e+01
+-5.4906059258589735e+01
+-1.8142898745703431e+00
+2.1184692249678900e+01
+-4.2375714252411058e+01
+-2.9905075358728785e+00
+2.0476055836736180e+01
+-4.1720685784416759e+01
+1.1265642473841131e+01
+1.2092214453343491e+01
+-3.2313304243443277e+01
+1.5886464877139964e+01
+2.5085567599417111e+01
+-5.4433444649553728e+01
+8.9405999279687898e-01
+2.0315322864116087e+01
+-4.5639742470134294e+01
+1.1764638850438839e+01
+9.0020950994018047e+00
+-2.8746623553298932e+01
+1.1811694270393872e+01
+8.5652815075639825e+00
+-2.8389855758386808e+01
+7.2236648808840442e+00
+2.1049686070353310e+01
+-5.0971478824453165e+01
+-2.9638555795528050e+00
+1.7642130265628680e+01
+-4.5490790080563848e+01
+5.2592754401902253e+00
+1.0579090764581202e-01
+-1.6129419607826513e+01
+1.4224612148586411e+01
+2.8926928166224601e+00
+-2.4382703022115919e+01
+1.4178512399286660e+01
+1.4801932609576371e+00
+-2.3126661322762281e+01
+-1.0355663530962977e-01
+1.6265358372404012e+01
+-5.2762749385286476e+01
+1.4172131163275075e+01
+1.9981455027215040e+00
+-2.6515398578957342e+01
+1.6019960326284493e+00
+3.6028277482561905e-01
+-2.0102069080361659e+01
+6.4130915113581359e+00
+-2.1583547499294093e+00
+-1.6779631125706370e+01
+-1.4335162706259770e+00
+8.0506224683072825e-01
+-2.1845023261812745e+01
+-2.5012767546298802e+00
+1.9075447168358288e+00
+-2.4821824225156870e+01
+1.1220197051283560e+00
+-6.7651190432119501e-01
+-2.0373941409872092e+01
+1.5209358573148583e+01
+-1.4310293068005762e+00
+-2.7306261983732135e+01
+1.4984459105196189e+01
+-2.4919463823639552e+00
+-2.7637536465061263e+01
+1.5244844788540668e+01
+-2.9595458819343645e+00
+-2.6989204718521574e+01
+-3.8592774094133162e+00
+-2.4882381259223502e-01
+-2.3486919270662501e+01
+-9.4633284322427413e-01
+-3.0997147027848198e+00
+-2.0563150265785445e+01
+2.6243130756609734e+00
+-4.2586623456932795e+00
+-2.0759679274476625e+01
+4.0183460398279776e+00
+-4.5333403851602911e+00
+-2.1848561831185613e+01
+6.6893062868161723e-01
+-5.0035895094472096e+00
+-2.1379525897397620e+01
+-1.2525628861136304e+00
+-4.4811675340680521e+00
+-2.2267622246228783e+01
+-1.2459191438909125e+00
+-4.5223681723290969e+00
+-2.2150653137989782e+01
+-1.2893032039632282e+00
+-4.9715595244877901e+00
+-2.2567245372538995e+01
+5.4803317589052192e+00
+-6.7505840509913595e+00
+-2.1941987686098830e+01
+4.9185046223914819e+00
+-6.8504049605356974e+00
+-2.1576465450333423e+01
+-5.9084239906684450e+00
+-3.8481630315841420e+00
+-2.7132057870970797e+01
+-4.5069449199330842e+00
+-5.7337172817105264e+00
+-2.3947115131258894e+01
+1.4632099385274339e-01
+2.4725394202534133e+01
+-4.0809567350958588e+01
+1.3573379931694245e+01
+1.6648634392378042e+01
+-3.1971717201919400e+01
+1.0742443330275478e+01
+9.9011438847183619e+00
+-2.5373997763458917e+01
+8.1523172690261809e+00
+2.3419015154378886e+01
+-4.8834180212803822e+01
+8.0961382324835540e+00
+2.3314030744111900e+01
+-4.8726228953472635e+01
+1.6789844634310917e+01
+2.4772526981021784e+01
+-5.5540934100567206e+01
+-1.3560209775516187e+01
+1.5647485936105483e+01
+-3.5375728504706323e+01
+9.0685008242420899e+00
+2.3158749257155375e+01
+-5.2476033656997984e+01
+9.2487841143176244e+00
+2.2352020934590112e+01
+-5.2368421633759894e+01
+9.5383847538139666e-01
+1.7420402935890934e+01
+-4.7618097833818481e+01
+2.7674135342285439e-01
+3.7019682934946476e+00
+-2.2858303091212466e+01
+-1.3983879326606621e+00
+1.5637277636555197e+01
+-4.8907140866179212e+01
+1.1238292598378803e+00
+1.6200359975554157e+01
+-5.1993181556377479e+01
+-7.5493279013898551e-01
+1.1509166467989052e+00
+-2.1519388001248814e+01
+1.4665784417161849e+01
+7.7592232155952667e-01
+-2.7763883844868172e+01
+-2.7780785101028531e+00
+-1.3475480851956514e+00
+-2.1687539554596462e+01
+-1.0460014017367236e+00
+-2.3449562921057265e+00
+-2.0248770539859727e+01
+-3.1439244136304900e+00
+-2.4494460509393265e+00
+-2.3307294981268257e+01
+-1.3266920953485977e+00
+-3.3504414386842010e+00
+-2.1334247321459081e+01
+-8.1803487072704550e-01
+-3.8241367128448451e+00
+-2.1501181461222156e+01
+-2.1430363843659679e+00
+-3.4610590458288688e+00
+-2.2686824513765018e+01
+1.9373327676840417e+00
+-6.1572009830881873e+00
+-2.1367564521993810e+01
+5.2886518781586798e+00
+2.7300781505423711e+01
+-4.2468868919871426e+01
+1.3521813186116831e+00
+2.5695574677594760e+01
+-4.0440701459022982e+01
+3.1536381902143207e-01
+2.5203419419759328e+01
+-4.0345219040493454e+01
+5.9689132379051646e+00
+2.4180303952496150e+01
+-4.4760527733914046e+01
+7.3372735074025055e+00
+2.6670813377358410e+01
+-4.8463010090371135e+01
+1.6682504738105276e+01
+2.2397015012226305e+01
+-5.5402190243652861e+01
+1.3057189710946286e+01
+9.1903424956593831e+00
+-3.2501179084011746e+01
+3.4085519786239300e+00
+1.7556426196537362e+01
+-5.0918123638221196e+01
+7.8989828454881883e-01
+1.9318570255521283e+00
+-2.0886829125290930e+01
+-2.9590301385537812e+00
+-2.1518001129080391e+00
+-2.2819160407439391e+01
+4.3374208691851024e+00
+-6.2176877429417097e+00
+-2.2125624306315615e+01
+4.3374208691851024e+00
+-6.2176877429417097e+00
+-2.2125624306315615e+01
+6.5716961880431128e+00
+2.7655737309589213e+01
+-4.3744782992866476e+01
+2.5696841824668972e+00
+2.5923985955997104e+01
+-4.1502617520916424e+01
+2.6308911213809814e+00
+2.6138846289289706e+01
+-4.1718510458259722e+01
+-4.8754498065933713e+00
+2.1889596390098728e+01
+-3.7340528641871892e+01
+7.2323494878121108e+00
+2.7192733514983505e+01
+-4.5391544372354588e+01
+1.2935135419873077e+01
+1.2864707650111583e+01
+-2.7548060811023543e+01
+2.4038258111349369e+00
+2.3299227401646196e+01
+-4.3822255494090790e+01
+2.4116364306560341e+00
+2.2503630737948143e+01
+-4.5064778187442180e+01
+2.4151836937421152e+00
+2.2459143835552300e+01
+-4.5013670463463946e+01
+-3.3875320417746448e+00
+-1.0154134195666840e+00
+-2.2623483649378304e+01
+1.7116758631834914e+00
+-4.1308446490382833e+00
+-2.0541864677223160e+01
+1.1005800575813709e+00
+-4.4895139377424238e+00
+-2.0841861358388787e+01
+3.2203061741573245e+00
+-5.7926225694326980e+00
+-2.0821233670347162e+01
+2.7633636483148050e+00
+2.5551053205098594e+01
+-4.3318094179442603e+01
+1.2291676341845887e+01
+1.4777468730232753e+01
+-2.9600562592329641e+01
+1.2429330438111277e+01
+1.2784247163155417e+01
+-3.0236349817110767e+01
+6.8151518865792751e+00
+2.3413566123509355e+01
+-4.9260777042715766e+01
+-2.2760594711449027e+00
+1.9977333031280121e+01
+-4.4120245736321685e+01
+1.1154549542318859e+01
+2.0296929340010923e+01
+-5.3556990909963936e+01
+1.4794265445475466e+01
+2.1128469432725964e+01
+-5.6646586845455744e+01
+3.0324226897947222e+00
+1.8729810490844162e+01
+-5.4304359584470433e+01
+2.2521115796034517e+00
+1.6008996093818194e+01
+-5.1728434566786099e+01
+-4.0877489005078207e+00
+1.4672854236834047e+01
+-4.7849439954012823e+01
+-1.7434119388104681e+00
+7.3953076117750627e-01
+-2.2707356321832989e+01
+-2.7439425379722588e+00
+7.5785113875786436e-01
+-2.3234153695717069e+01
+-3.4495643835576280e+00
+-4.7660987649702868e-01
+-2.2506459509244991e+01
+3.2706536481628743e+00
+-5.3080521373479321e+00
+-2.1044567828311560e+01
+1.6952859558054620e+01
+2.8191329343932576e+01
+-5.6588355848682113e+01
+-3.1018679072120419e+00
+1.6743464102169572e+01
+-4.5262818122656874e+01
+-1.5865255389993663e-01
+1.5523428657549458e+01
+-4.9566799462589167e+01
+-6.9145400019460568e-02
+1.6034316000514238e+01
+-5.0666284402437434e+01
+-1.0928262861881106e+00
+1.7714344075651233e+01
+-4.6688510851609720e+01
+4.9049690662445036e+00
+2.3061933229159255e+01
+-4.8455301193905953e+01
+-2.5971808284613287e+00
+3.3532014579963281e+01
+-3.9702455497287467e+01
+6.4747576005013876e+00
+3.7417351479476956e+01
+-4.3359228325532733e+01
+6.5284131508726855e+00
+3.8567685696062910e+01
+-4.4653420300731575e+01
+6.5429342120496310e+00
+3.7270226207406893e+01
+-4.3530986478258214e+01
+6.2317219511725677e+00
+3.7267532848778153e+01
+-4.3789261631621322e+01
+6.5465241554226754e+00
+3.8075915730335069e+01
+-4.5178489500951045e+01
+3.5331383038007779e+01
+7.7295059028645824e+01
+-8.9718829283790413e+01
+6.5543586255884119e+00
+3.3878717804916157e+01
+-4.4796727259193531e+01
+-3.2976143217787617e+00
+2.6490126547386382e+01
+-3.8811900569298757e+01
+1.1428511779543175e+01
+2.9393823210606843e+01
+-4.4387882115228102e+01
+7.9823791323338584e+00
+2.6865578700751332e+01
+-4.2070885741074299e+01
+4.6749723046198097e+00
+2.7044663827493341e+01
+-4.2320186612675343e+01
+1.1343412382985190e+00
+2.5079892360151209e+01
+-4.0879113244792926e+01
+1.0247420784785964e+01
+1.5264112347258216e+01
+-2.8728209472566256e+01
+-1.7239907995502715e-01
+2.4251117816818983e+01
+-3.9665155796910220e+01
+1.3055831877477452e+01
+1.5310962675138727e+01
+-2.8801375827213100e+01
+1.6104699211905207e+00
+2.4806912531269298e+01
+-4.1493941724887051e+01
+7.9989677302688005e+00
+8.5346281160137849e+00
+-2.0329814205396463e+01
+4.6746531324597616e+00
+2.6273703414202753e+01
+-4.3960059663137386e+01
+1.3551807473832195e+01
+1.4331458842511637e+01
+-2.8363749598713316e+01
+8.6782593614541987e+00
+8.1044229282960814e+00
+-2.0026432310612016e+01
+1.2514456707726293e+01
+1.6844525474814876e+01
+-3.1989482521109757e+01
+2.3741472879915229e+01
+3.1672986023221000e+01
+-5.2892177302734723e+01
+1.1232490954252302e+01
+2.7441262399563399e+01
+-4.6865778887173668e+01
+8.4330273472416373e+00
+8.5875620668132502e+00
+-2.1535014899139444e+01
+-8.4295980105923507e-01
+2.3048293134459364e+01
+-4.0848470057095327e+01
+1.3635557968320015e+01
+2.8209883749838884e+01
+-4.9108336308595881e+01
+1.3198047088532434e+01
+9.2430689797978456e+00
+-2.3101963689495140e+01
+-9.6433180187670420e+00
+1.9613518822095735e+01
+-3.5258418637770227e+01
+1.0718823132611455e+01
+2.6214566572218335e+01
+-4.6365325851531402e+01
+1.2885562859038600e+01
+1.6222429983960261e+01
+-3.2852203505528834e+01
+1.0808229094248242e+01
+2.7005522925546362e+01
+-4.7442931823251513e+01
+-9.3557666424313144e+00
+1.9528888092921346e+01
+-3.5604758157175581e+01
+1.3055917259060916e+01
+1.5158252257267254e+01
+-3.1718180269294987e+01
+1.2691055454361470e+01
+9.7562217170358387e+00
+-2.4413950424557353e+01
+1.2356285550841957e+01
+2.7177433886003492e+01
+-4.8802004060986278e+01
+7.7163244392412285e+00
+2.4757162781504686e+01
+-4.5188280551788964e+01
+-4.2434130901760012e+00
+2.1460292026312754e+01
+-3.9474621154317752e+01
+1.4037099459228758e+01
+1.3865074412044223e+01
+-3.0818876480334616e+01
+1.4037099459228758e+01
+1.3865074412044223e+01
+-3.0818876480334616e+01
+1.1173087941550119e+00
+2.3143962945811250e+01
+-4.3166538044787643e+01
+1.2273736988210961e+01
+9.9696492031847139e+00
+-2.5560768752477149e+01
+1.2286989056980589e+01
+9.3832785081511449e+00
+-2.4451878690635965e+01
+9.2739749210729272e+00
+2.5320380112187667e+01
+-4.7291325447526717e+01
+1.2526520938707373e+01
+1.4485432127770098e+01
+-3.2143947141454611e+01
+1.2613423473935981e+01
+8.4390551406770680e+00
+-2.3815804309918637e+01
+-8.6600709476331641e+00
+1.8958275415304389e+01
+-3.6931120255441655e+01
+7.2210429493363248e+00
+2.4180384318239909e+01
+-4.6628546042324004e+01
+9.2969669839275344e+00
+2.4653342123401700e+01
+-4.7692826492398098e+01
+8.0124165757495227e+00
+2.4083773713143131e+01
+-4.7071765435586777e+01
+1.3585730937720959e+01
+1.3296095629319206e+01
+-3.1915240191367353e+01
+-7.1782697346719031e+00
+1.9356846791808149e+01
+-3.9362605950049577e+01
+-7.3178451760050942e+00
+1.9062651896568894e+01
+-3.8308321167561090e+01
+1.6303775597092571e+01
+2.6149178736294697e+01
+-5.2667334095824600e+01
+1.1996662852845441e+01
+7.3969613605532940e+00
+-2.3720500265104707e+01
+-4.3413484260742878e+00
+1.9927853380164880e+01
+-4.0997727770091906e+01
+9.2496774737129854e+00
+4.6615266318198891e+00
+-1.9529802923859098e+01
+5.8155248940075595e+00
+2.2478160477627153e+01
+-4.6759446488549621e+01
+1.3630710551669987e+01
+1.1015991899301346e+01
+-3.0272672891288742e+01
+1.2270411319744843e+01
+5.9070637361654335e+00
+-2.2360282664770594e+01
+2.5326956852472602e+00
+2.2088223531289273e+01
+-4.6219034939229523e+01
+-3.2915292704158277e+00
+1.9726411184823846e+01
+-4.2251678390492913e+01
+1.1568267938138222e+01
+1.0264905415554082e+01
+-2.9134864469852083e+01
+2.5490909043813442e+01
+2.9390695608398165e+01
+-6.1816088023918105e+01
+1.7983076944466937e+01
+2.5688179653813496e+01
+-5.5385636252224181e+01
+1.1329944266884453e+01
+2.3079952468721817e+01
+-5.0559513137338001e+01
+1.2967443849557105e+01
+6.7144649704094261e+00
+-2.4809191436016746e+01
+4.3308297650128118e+00
+2.1630365027185000e+01
+-4.7748427716213918e+01
+1.2673251282837247e+01
+6.9515201744412582e+00
+-2.5233670189469020e+01
+9.1445856950464179e+00
+5.2721840990382995e+00
+-2.1736652374917142e+01
+1.1499012514410229e+01
+8.7457718095837205e+00
+-2.8142575457301259e+01
+1.3365092790806825e+01
+1.2826759240183938e+01
+-3.5310729733559448e+01
+1.2149532951997365e+01
+2.3241638390267401e+01
+-5.2743773574112268e+01
+1.3229503718076890e+01
+6.0926367961877084e+00
+-2.4860982280833543e+01
+1.2009817227851000e+01
+7.0338451148434791e+00
+-2.6768405067017252e+01
+1.2879313581614063e+01
+1.0497090390319432e+01
+-3.3642340173416059e+01
+1.3477675502091593e+01
+1.0571613414407835e+01
+-3.3991316303730613e+01
+1.3422530052713871e+01
+4.8448628103070002e+00
+-2.4728706729477725e+01
+1.4130002519158985e+01
+1.0031378531679175e+01
+-3.4775177955702588e+01
+1.2671328037293938e+01
+1.0548562387662981e+01
+-3.5512183975967240e+01
+1.2368802435513121e+01
+1.0386159663310737e+01
+-3.5087155110235813e+01
+1.2675294028293870e+01
+5.7788268070898656e+00
+-2.7043751758689563e+01
+1.2190157436385160e+01
+2.1154886890682150e+01
+-5.4793116272357764e+01
+1.2334188685248321e+01
+6.1935214105180698e+00
+-2.8331832342270378e+01
+7.4710936093682498e+00
+1.9889576934958878e+01
+-5.2439648500243614e+01
+1.2484749733411435e+01
+7.6470045781766203e+00
+-3.1269554373567328e+01
+-2.7703444976613132e+00
+1.7456025001041947e+01
+-4.6153294652624012e+01
+1.3324193497230059e+01
+1.0047579284036489e+01
+-3.6337673052111917e+01
+1.2742985045379410e+01
+5.3420709024743767e+00
+-2.7376678591507620e+01
+1.2710278298050978e+01
+5.4136773819101984e+00
+-2.7467934383968558e+01
+1.3797828806199467e+01
+9.0407935972979416e+00
+-3.4794499627263257e+01
+1.2607416373532494e+01
+5.4338695820483309e+00
+-2.7789987385099103e+01
+1.2615371526709469e+01
+5.4523255525823719e+00
+-2.7908183425774705e+01
+1.3659141956451757e+01
+4.0803199581419554e+00
+-2.5558186522866979e+01
+1.3378146337233229e+01
+4.1387494989232332e+00
+-2.6200572275525161e+01
+1.0047896700613649e+01
+1.9420166603380775e+01
+-5.4727012383969466e+01
+1.4087483472245125e+01
+3.0738917189400716e+00
+-2.4721344175448042e+01
+9.1855762558040723e+00
+1.9307568228420394e+01
+-5.5371958641934377e+01
+1.4566791266573295e+01
+8.2237754272809660e+00
+-3.5342146229593588e+01
+1.3988839603353854e+01
+2.8433600131842294e+00
+-2.5078958247693368e+01
+2.7658725847045523e-02
+1.6594547092710215e+01
+-4.8770938340269154e+01
+1.4192442363257388e+01
+2.5432415902371099e+00
+-2.4895284779649014e+01
+1.3612629177941212e+01
+1.8242953322858595e+00
+-2.3272167352749168e+01
+1.3444698273615849e+01
+2.2909875675710878e+00
+-2.3998107237740864e+01
+1.2798072346193711e+01
+4.5453125973051742e+00
+-2.8497514377311948e+01
+1.2751908830710843e+01
+4.5271898023441093e+00
+-2.8551001386257294e+01
+1.3989526386402883e+01
+2.6929321073211363e+00
+-2.5314581643887649e+01
+1.2644320759212464e+01
+3.8826430530719893e+00
+-2.7390378690329815e+01
+1.3190308273667791e+01
+2.6841240508107438e+00
+-2.5501349958907262e+01
+1.2939986968638735e+01
+4.1903246938845990e+00
+-2.9094654912140022e+01
+1.3966376675666920e+01
+2.2393717976655170e+00
+-2.5646132496557502e+01
+1.3657220043843019e+01
+2.8542244246791060e+00
+-2.6750426814010503e+01
+1.3660724366781476e+01
+2.7939136650617646e+00
+-2.6717199826266995e+01
+1.3284989149562087e+01
+3.2336099354794086e+00
+-2.7702245172367263e+01
+2.7373346638394075e-01
+1.5801866874348887e+01
+-5.0044544963692225e+01
+2.7373346638394075e-01
+1.5801866874348887e+01
+-5.0044544963692225e+01
+1.4312016184562538e+01
+9.7530683660945375e-02
+-2.1754707899607794e+01
+1.3616787730124701e+01
+1.2747306779738432e+00
+-2.4471538087017780e+01
+4.1722710315586875e+00
+1.6442896499663853e+01
+-5.3699950262980543e+01
+8.4047821251676758e-01
+1.5553664688165847e+01
+-5.0900940826315455e+01
+1.3919544690414360e+01
+1.9018782411763386e+00
+-2.6055321081256835e+01
+1.3282347385675980e+01
+3.0026186159419126e+00
+-2.8164828639164227e+01
+1.3302944182259459e+01
+3.0258915553535024e+00
+-2.8195866230619455e+01
+1.3448272029864427e+01
+2.2565470310617268e+00
+-2.6697845196386258e+01
+1.4481610370300947e+01
+-3.4487805837916419e-01
+-2.1571682260884170e+01
+3.0163938821944272e+00
+1.5931966026582453e+01
+-5.3484246401414907e+01
+1.3785956092318701e+01
+2.3224654144838701e+00
+-2.7816183114586590e+01
+-2.4673086773183778e-01
+1.9648712503822490e+00
+-2.1589853962662954e+01
+-4.4922559019121694e-01
+2.2857251431440115e+00
+-2.2250632539995827e+01
+1.3854753504368729e+01
+1.7870838604595272e+00
+-2.6979185146546101e+01
+1.3328953062862288e+01
+2.0777357391494804e+00
+-2.7338496991676912e+01
+1.4132604545687849e+01
+1.2946380409261338e+00
+-2.6370813826326408e+01
+1.4543455956690003e+01
+-6.7832669084518415e-01
+-2.1760707482668284e+01
+1.4180687694482167e+01
+1.1292172772387705e+00
+-2.5855769742143845e+01
+1.4214346060192643e+01
+1.3030139019234970e+00
+-2.6442672397089478e+01
+3.5422689308349831e-01
+1.2863791139487195e+00
+-2.0812548902750191e+01
+1.4114423639922387e+01
+1.3894046707109751e+00
+-2.6714535481395441e+01
+1.3660995895409721e+01
+1.2898812829587061e+00
+-2.6354955958890343e+01
+1.7528127243445197e+00
+6.9138871226875931e-01
+-2.0328272411984408e+01
+1.3907606767882214e+01
+1.5883087943842873e+00
+-2.7492822988679343e+01
+3.1433531013603915e+00
+4.8085036707500445e-01
+-2.0575085904625499e+01
+1.4683129287992406e+01
+-1.1236008832890161e+00
+-2.1586302023940306e+01
+1.4482836259370409e+01
+7.2887760704614946e-01
+-2.6286123848931190e+01
+-1.0833382769991660e+01
+-6.1230824372087678e-01
+-1.2060457668725661e+01
+1.3882877931260587e+01
+1.4379817616573081e+00
+-2.7798417361700661e+01
+-1.6433853416497315e+00
+2.2821178932090378e+00
+-2.2982633872967590e+01
+-1.1535541240884073e+00
+1.7935831983747894e+00
+-2.2269412604329336e+01
+1.3587827642621496e+01
+1.0468430286727037e+00
+-2.6995986999068236e+01
+1.3883696767509418e+01
+3.0668203944088995e-01
+-2.5651729471024407e+01
+1.3546301930923773e+01
+1.1618754389693813e+00
+-2.7536700675079693e+01
+1.9290155973331558e+00
+1.3032360523207759e-01
+-2.0258954790248794e+01
+1.3890813785947209e+01
+1.1689490571979859e+00
+-2.8311133129386448e+01
+-1.5131677087192104e+00
+3.6603273894650825e+00
+-2.7216715170323930e+01
+1.3988071916407856e+01
+-1.6412957432225397e+00
+-2.1397995144278312e+01
+1.3955696238089967e+01
+1.1634808164358852e+00
+-2.8595335379068029e+01
+-1.6363336580791448e+00
+1.8147006838160176e+00
+-2.2669527737043865e+01
+3.0008509945599737e+00
+-1.7897174649439121e-01
+-2.0253120438456019e+01
+1.4106134244928349e+01
+6.8291787606173693e-01
+-2.7806281783196376e+01
+1.3997911927556611e+01
+4.5408560528030978e-01
+-2.7241670052967802e+01
+1.3669541893680687e+01
+2.5084658359166284e-01
+-2.6571552516967493e+01
+1.3579711763083280e+01
+8.1437550029593420e-01
+-2.8010237905071531e+01
+1.4189921032705275e+01
+2.5739117460530803e-01
+-2.7728349958541390e+01
+-1.9627619671546641e+00
+1.9588064973785673e+00
+-2.4128486963906234e+01
+1.4461111350920877e+01
+-4.8378656831888717e-02
+-2.7328840704415530e+01
+1.4473941480852666e+01
+-6.1987108899934376e-02
+-2.7215629813770281e+01
+-1.6492557430460779e+00
+1.2819354475863489e+00
+-2.2807309365796286e+01
+4.7595284344810107e+00
+-6.1004925432095491e-01
+-2.1138636803885436e+01
+1.3939360169926671e+01
+1.3343479051313564e-01
+-2.7829768324377767e+01
+1.4277455880748695e+01
+6.9274518367786878e-02
+-2.8071874127364573e+01
+-1.0163606503759801e+00
+6.3401389282630150e-01
+-2.1828235346455727e+01
+-2.4587973276882682e+00
+2.1090985795330037e+00
+-2.5070817406276305e+01
+1.4088198842137142e+01
+-4.0061084215470055e-02
+-2.8411738749641060e+01
+1.1612537997802121e+00
+-6.0072438341061329e-01
+-2.0404791558443637e+01
+-1.9438096072523586e-01
+-1.4891342869983440e-01
+-2.0921863711286800e+01
+5.7400733829085393e+00
+-1.2409512874692863e+00
+-2.1097485767345795e+01
+-2.0328300249320175e+00
+1.1318178673216752e+00
+-2.3336335273342886e+01
+2.7169803056194088e+00
+-9.1894473427317980e-01
+-2.0561053940278093e+01
+-1.6081821187864349e+00
+6.3153917073257571e-01
+-2.2633010606591391e+01
+1.4354079787001098e+01
+-8.2257152427256441e-01
+-2.7942723027667405e+01
+1.4843089844702460e+01
+-1.2654466681654770e+00
+-2.7036497703778760e+01
+5.1553842855571705e+00
+-1.5479278723136207e+00
+-2.0753689143449009e+01
+5.3189101861290871e+00
+-1.6854062755777972e+00
+-2.0483839559400248e+01
+5.1646595144445506e-01
+-8.7056121514010365e-01
+-2.0676271521281713e+01
+-5.5981940875040737e-01
+-4.6973436336811386e-01
+-2.1218702822282264e+01
+1.5093249144964895e+01
+-1.8927814300808661e+00
+-2.7016821017792232e+01
+1.3988961521856076e+01
+-6.9337486614062560e-01
+-2.9589301392228929e+01
+1.4619034984807963e-01
+-8.8521355459606210e-01
+-2.0918638941284986e+01
+-1.0789877374127624e+01
+-1.5578727907909968e+00
+-1.2413662855101967e+01
+-1.3543317040416334e+00
+-6.7898009921215130e-01
+-2.1511436802810458e+01
+3.8790503332144826e+00
+-2.1856701323275662e+00
+-2.0321649335766992e+01
+-9.2715157082375210e-01
+-1.1442665433473129e+00
+-2.0860565009644294e+01
+1.4466871268316769e+01
+-2.1381769750361865e+00
+-2.8655143633183698e+01
+1.4172964634150286e+01
+-2.0782774401498179e+00
+-2.8409461448006141e+01
+-1.3956569423682490e+00
+-1.0075659815006865e+00
+-2.1293236808795612e+01
+-1.8475850840463006e+00
+-8.0059030667388065e-01
+-2.1759808582625055e+01
+2.0758099605653428e+00
+-2.1704221991889661e+00
+-2.0309931108806179e+01
+-1.0980582176781652e+01
+-1.6775418801882109e+00
+-1.2535220646822040e+01
+1.5249706455366768e+01
+-3.8414418466928324e+00
+-2.4237080145479908e+01
+-4.0635637673931786e+00
+9.0043339587626914e-01
+-2.5850387459900464e+01
+3.2471338519938170e-01
+-1.8266713793218601e+00
+-2.0399513660116583e+01
+-7.4985898005995411e-01
+-1.5266974259263091e+00
+-2.0819379286551623e+01
+1.4865821187816497e+00
+-2.1606121548626280e+00
+-2.0356794276552286e+01
+-3.3073509024859136e+00
+-3.6899775265800061e-01
+-2.2915152307287126e+01
+4.1326852198169145e-01
+-2.0447839366899321e+00
+-2.0462156843416999e+01
+4.8822902509725891e-01
+-2.0731003567856705e+00
+-2.0430568772015128e+01
+-5.9587348355294578e+00
+5.2681123232672391e+00
+-3.9421371008348707e+01
+2.7864807037622528e-02
+-1.9826020698796993e+00
+-2.0587745891918019e+01
+2.1957998063449962e+00
+-2.7088649618123370e+00
+-1.9561293807686642e+01
+-3.0618558284292323e+00
+-7.8330752439814366e-01
+-2.2393651756660418e+01
+1.4907480093002798e+01
+-3.8954447427680727e+00
+-2.5890191825669866e+01
+-3.6915761413253296e+00
+-4.2357455081257728e-01
+-2.3398026829825529e+01
+-2.8542832621080381e+00
+-1.3100998150841665e+00
+-2.1614282242122208e+01
+8.6469619504004591e-01
+-2.6248369060005134e+00
+-1.9743401774772050e+01
+-2.8000944342568324e+00
+-1.3123739371989138e+00
+-2.1625149084923663e+01
+-2.7975496853837680e+00
+-1.3563081725758861e+00
+-2.1568996614074589e+01
+-2.7766356718698950e+00
+-1.3864526210865922e+00
+-2.1566954836254567e+01
+2.8132650004390229e+00
+-3.2023411890787221e+00
+-1.9849027214388066e+01
+-8.8684534097193501e-01
+-2.2095642251305145e+00
+-2.0529549388879690e+01
+-1.1469570963551445e+00
+-2.3360722212899074e+00
+-2.0331149481144347e+01
+-1.0848424273021191e+00
+-2.4670108549612335e+00
+-2.0240625180421400e+01
+-3.4912144849101812e-01
+-2.8917325578654824e+00
+-2.0329022974212840e+01
+-3.9172331283572417e+00
+-1.0664208566077340e+00
+-2.3929395975098132e+01
+-8.0262913482716147e-01
+-2.7999577941073266e+00
+-2.0479284423989480e+01
+-6.8270199481829392e+00
+2.7180447829857486e+00
+-3.5500277231926376e+01
+1.1441911942724749e+01
+-4.6090543472896419e+00
+-2.5455055670772868e+01
+1.6156437451417263e+00
+-3.6391708271385039e+00
+-2.0269774153490239e+01
+2.9866075318562588e+00
+-3.9221157566286409e+00
+-2.0643941353686902e+01
+-7.2446928182411714e+00
+2.3095865981919936e+00
+-3.4931587439227791e+01
+-6.8268261578148062e+00
+2.0741098106855853e+00
+-3.4639986259166825e+01
+2.8492672366480796e+00
+-3.9734825970319405e+00
+-2.0723897250382244e+01
+-4.0441682358598801e+00
+-1.8509784056979546e+00
+-2.2075452286165575e+01
+-1.8577449340879835e+00
+-2.6848202863761674e+00
+-2.1511642913667611e+01
+-1.6474185360264668e-01
+-3.5052146329519700e+00
+-2.0598319579787599e+01
+-3.7786753705692266e-01
+-3.4381708044135695e+00
+-2.0698389344711060e+01
+2.2164067767987623e+00
+-4.2470745836313615e+00
+-2.0648244474765335e+01
+9.8906035893812652e-02
+-3.7996596911882894e+00
+-2.0813170032766376e+01
+-1.7637018610108304e+00
+-3.2474112753884783e+00
+-2.1889547047432927e+01
+-2.3701467090977610e+00
+-3.0437985093665900e+00
+-2.2364142159851237e+01
+-2.3299845220341369e+00
+-3.1052558999901310e+00
+-2.2354791352350581e+01
+4.0753371227198920e-01
+-4.1865016884623767e+00
+-2.0990747361286299e+01
+-2.4582125215438309e+00
+-3.2766935842353782e+00
+-2.2682027278987110e+01
+1.7434204821233110e-01
+-4.2713337050527977e+00
+-2.1263227175570368e+01
+-4.7176765610446758e-01
+7.6108916382406889e+01
+-7.8621239874981626e+01
+6.7389838169330361e+00
+3.8040377186057306e+01
+-4.3840775090827670e+01
+6.2378171985144153e+00
+3.7469954121091739e+01
+-4.3646970177844430e+01
+-2.7485321107647449e+00
+3.2541388424519077e+01
+-4.0067411592661188e+01
+6.8073671825326247e+00
+3.7399942697189843e+01
+-4.5228384519402496e+01
+-1.6852694626869451e+00
+3.2446673047297324e+01
+-4.0940689937324208e+01
+-2.7381508128378820e+00
+3.2273211363339030e+01
+-4.1054821974263241e+01
+2.2967344273163457e+00
+3.1143064475364298e+01
+-3.9867802922966717e+01
+6.3674041631827993e+00
+3.5659009147798429e+01
+-4.5333548614043806e+01
+-2.4874407610001379e+00
+3.1550218624971112e+01
+-4.0928479014955414e+01
+3.3699210156559019e+01
+7.8582332608366301e+01
+-9.1750596726634441e+01
+-7.7888600267469232e-01
+3.0382211482278059e+01
+-4.0353998483693182e+01
+8.7162585460497577e-01
+3.0694360175665476e+01
+-4.0765439566073894e+01
+-7.7590296360710453e-01
+2.9738356844501290e+01
+-4.0236858309776323e+01
+-3.5985877417679896e-01
+2.7947697171722137e+01
+-3.9177246828488641e+01
+-2.5857236525157788e-02
+2.8107130025275399e+01
+-3.9341314483843014e+01
+5.9194999333041425e+00
+3.0452028596229898e+01
+-4.1897150998916594e+01
+-7.6805945606211201e-01
+2.8301273156980972e+01
+-3.9483771087267975e+01
+5.1060192432364107e-02
+2.6944504372863005e+01
+-3.8812547669438793e+01
+2.4611220855974731e+00
+2.6129793972078044e+01
+-3.9143312998802294e+01
+4.9736113515787883e+00
+2.7010043533843582e+01
+-4.0458657476915960e+01
+6.2238910181543687e+00
+2.6766270898513330e+01
+-4.0797162040082625e+01
+2.8787757951193127e+00
+2.6029676035967899e+01
+-4.0267155834045305e+01
+7.8266775810554656e-01
+2.5215414606645780e+01
+-4.0114309865323108e+01
+1.4074661930011265e+01
+2.9670464613880878e+01
+-4.7416834980393354e+01
+1.0828337739627221e+01
+2.7639009089869791e+01
+-4.4540320838921737e+01
+1.2268236049409007e+01
+1.6670748840649566e+01
+-3.0255142224307942e+01
+-6.0830299299205652e+00
+2.1928373934725784e+01
+-3.6692257535554170e+01
+7.9923088697268794e+00
+9.0807675719200667e+00
+-2.0744426318514979e+01
+-7.0983361704787269e+00
+2.1637107842416416e+01
+-3.6508609067371964e+01
+1.3252729405738688e+01
+1.5148964465855506e+01
+-2.9138272129896208e+01
+1.3222394166301671e+01
+1.5006285703256232e+01
+-2.9040788741981014e+01
+8.5182673004422327e+00
+8.7815692805078811e+00
+-2.0783682168373506e+01
+6.7077806148891055e+00
+2.6034552313934512e+01
+-4.3421990714739820e+01
+-7.8305765650062895e+00
+2.1196076277819564e+01
+-3.6239660780325906e+01
+7.3219927860856222e+00
+2.7872530679919286e+01
+-4.6102078243678875e+01
+1.4545207194047650e+01
+2.9456476069565920e+01
+-4.8867784318157135e+01
+1.6890895007036335e+01
+3.0036755640523971e+01
+-4.9992018509794931e+01
+6.1451274358828059e+00
+2.6310666133109113e+01
+-4.4162609781687721e+01
+1.0050233995040630e+01
+2.6859862895155764e+01
+-4.5305385286847120e+01
+-3.0589640218316729e+00
+2.2392056564151225e+01
+-3.8499217024712529e+01
+1.0279215879970465e+01
+2.5885838175170406e+01
+-4.5325617487800670e+01
+1.1586525952956114e+01
+2.6602626949650272e+01
+-4.6658112668645643e+01
+9.0021135602063591e+00
+2.5926828679295404e+01
+-4.5618243248541255e+01
+1.2206182315129166e+01
+1.6065042840748145e+01
+-3.2230514531168602e+01
+5.3795655520116377e+00
+2.5196385058023530e+01
+-4.4466481271602866e+01
+1.2240366863603830e+01
+9.7346014766114273e+00
+-2.3622960968497324e+01
+4.0007510241897837e+00
+2.4868465295815319e+01
+-4.4168715652612669e+01
+3.8349429427100477e+00
+2.4396889131504082e+01
+-4.3589783222741815e+01
+1.1640836358361147e+01
+2.6175272103034949e+01
+-4.6872787135642902e+01
+1.4848555837491229e+01
+2.7115264350099377e+01
+-4.8812267161853825e+01
+1.2657449535704329e+01
+2.7305050040258998e+01
+-4.9474879873554272e+01
+-3.3026393199716488e+00
+2.1540427309326148e+01
+-4.0128588878288433e+01
+-2.0437400635116254e+00
+2.1847657345269752e+01
+-4.0904165607241140e+01
+6.4391035759756150e+00
+2.4658222893307489e+01
+-4.6556772008944812e+01
+5.0307515779110927e+00
+2.3016502786648672e+01
+-4.3638966051981960e+01
+-2.2175385807932284e+00
+2.1410655439941209e+01
+-4.1704481482657187e+01
+1.0985603696822924e+01
+1.0492303245097709e+01
+-2.7079017545636674e+01
+-7.2559176413820738e+00
+1.9338271747057224e+01
+-3.8118467587139250e+01
+-2.2526669380038888e+00
+2.1187554967317226e+01
+-4.1728108827862073e+01
+-8.3518916940684491e+00
+1.8848088012806663e+01
+-3.7698866335184249e+01
+-3.3869187240171228e+00
+2.0606725032287272e+01
+-4.1017537698696273e+01
+1.2187861601455889e+01
+9.6960294999428527e+00
+-2.6896451633970184e+01
+-4.6239835626365160e+00
+1.9881382336578049e+01
+-4.0428594209778254e+01
+-3.2868925088001930e+00
+2.0193284914706023e+01
+-4.1430746052029598e+01
+1.1412134005402420e+01
+1.3144816452040114e+01
+-3.3686108091541087e+01
+1.3619072920973101e+01
+2.3780945703851405e+01
+-5.1129476946404459e+01
+1.4444453812852128e+01
+1.1150285223778825e+01
+-3.2029573987074230e+01
+9.3889471394142987e+00
+2.2142379048817144e+01
+-5.0049207868328558e+01
+1.2055716874303741e+01
+5.1486024392322927e+00
+-2.2389850547575190e+01
+1.2055716874303741e+01
+5.1486024392322927e+00
+-2.2389850547575190e+01
+9.9603506247454181e+00
+2.2847780091628668e+01
+-5.1713928000522962e+01
+1.4180307026934553e+00
+1.9917560198084139e+01
+-4.6149236431057020e+01
+1.2289448393563918e+01
+9.1681875808312192e+00
+-3.1878168418817570e+01
+1.2289448393563918e+01
+9.1681875808312192e+00
+-3.1878168418817570e+01
+1.2289448393563918e+01
+9.1681875808312192e+00
+-3.1878168418817570e+01
+1.3271754129486864e+01
+4.5082764928478465e+00
+-2.4338334619874683e+01
+1.3642334038061501e+01
+2.2029654443218366e+01
+-5.5869112716628429e+01
+1.8132648972749205e+01
+2.0870952732817926e+01
+-5.6088754642916463e+01
+1.8827895187756528e+01
+2.1127502874073262e+01
+-5.7866721760981221e+01
+1.8827895187756528e+01
+2.1127502874073262e+01
+-5.7866721760981221e+01
+-5.4600562793157641e+00
+1.6367057794853935e+01
+-4.3053405309784999e+01
+1.3351308316878239e+01
+2.9997885270339104e+00
+-2.3773313793739021e+01
+1.4335209268568336e+01
+2.4249613733052340e+00
+-2.4234838875725352e+01
+1.2609926224220350e+01
+4.5160187000875922e+00
+-2.7622941206025921e+01
+2.6639124628228115e+00
+2.0691890608830366e+00
+-2.1012603722291935e+01
+2.3186395338457673e+00
+1.8291253294396632e+00
+-2.0634431942231011e+01
+-2.4023848163655818e-02
+2.8483636842070754e+00
+-2.2279740390494215e+01
+-2.5679014573540238e-01
+2.8497768038290423e+00
+-2.2291291981877770e+01
+-2.3628580823407977e-01
+1.6226069819852480e+01
+-5.0809867997921614e+01
+1.4924983971150674e+00
+1.8488683977669964e+00
+-2.0812334275671311e+01
+-5.3202584380917550e-01
+1.5837956859972333e+01
+-5.0000992528083856e+01
+8.6846331279421052e-01
+2.1940085050637013e+00
+-2.1389795378480297e+01
+1.9423669887499824e+00
+1.3758582026487960e+00
+-2.0502810547554070e+01
+1.3381921223642792e+01
+2.6356567217461855e+00
+-2.8034670168162418e+01
+1.3331912533963049e+01
+2.1215389586437952e+00
+-2.7081308654511293e+01
+1.4516438960647198e+01
+-5.9615643781192240e-01
+-2.1763512806764666e+01
+1.3835450481462894e+01
+1.0083174781037656e+00
+-2.5708505394877768e+01
+3.1103694442848604e+00
+7.3312292799443013e-01
+-2.0643716390770567e+01
+1.3810059670224927e+01
+6.1976349660882057e-01
+-2.5183573841137115e+01
+1.2956680411963021e+01
+2.7368277219520176e+00
+-3.0272552498177394e+01
+7.2091316130610877e-03
+7.0883050961333982e-01
+-2.0859854071682300e+01
+1.3806764168756507e+01
+4.5380486737662878e-01
+-2.6442107185498916e+01
+1.3986304223382390e+01
+2.4794998341366209e-01
+-2.6672998451647327e+01
+1.4889277499722640e+01
+-1.7793981562612604e+00
+-2.2004892882912852e+01
+-1.3616136848712801e+00
+1.3380604106016472e+00
+-2.2390867353126620e+01
+1.3991283673133664e+01
+-5.6313192078487007e-02
+-2.6222542236692462e+01
+-2.5589594640758850e-01
+4.5927476040486803e-01
+-2.0811126099319242e+01
+-9.4603336268723048e-01
+9.0767665561991828e-01
+-2.1769741634088543e+01
+7.4585656875058370e-01
+3.6052411254671200e-02
+-2.0437564397686568e+01
+1.4809215701979316e+01
+-1.3863175514045727e+00
+-2.4079920226184772e+01
+1.4809215701979316e+01
+-1.3863175514045727e+00
+-2.4079920226184772e+01
+1.0398988334524220e+00
+-8.3847815070593801e-02
+-2.0355131809897063e+01
+-7.9017919724761276e-01
+5.6943996581031497e-01
+-2.1457594204440415e+01
+-2.0790165948134534e+00
+2.3918079176794187e+00
+-2.5383546902333038e+01
+2.9679808257698106e+00
+-5.2179325344401428e-01
+-2.0285449006054879e+01
+1.3616957417067196e+01
+3.7535330077418261e-01
+-2.8424992973825528e+01
+1.5073034578460256e+01
+-2.0869745217837390e+00
+-2.3467081660894507e+01
+-2.0040246557080086e+00
+1.2606456134192439e+00
+-2.3337529710533730e+01
+-1.8748926078060884e+00
+1.0613461372575059e+00
+-2.3011204396895714e+01
+-1.9805628585326454e+00
+1.2010937615459358e+00
+-2.3238168847810837e+01
+1.4259026152382404e+01
+-3.8219755046865256e-01
+-2.8054879049152184e+01
+1.3776339551754988e+01
+-2.3663625278016184e-01
+-2.8406055210783400e+01
+-8.9592121266217184e-02
+-3.4742021661845579e-01
+-2.0870847202543903e+01
+-1.0628931904671450e+01
+-1.2944536847378274e+00
+-1.2230506708341759e+01
+1.2885280635539753e+00
+-9.6241619989683569e-01
+-2.0490473516095200e+01
+4.7825205523428478e+00
+-1.8709030530709965e+00
+-2.0344925235672576e+01
+2.4997232277842460e+00
+-1.4584445677785145e+00
+-2.0166222380757532e+01
+8.9275669736570540e-01
+-1.2014544261676190e+00
+-2.0634699524725193e+01
+-1.0739063335597299e+01
+-1.4949454960574884e+00
+-1.2388109111483667e+01
+-1.0794622054187668e+01
+-1.4975536108678889e+00
+-1.2387630797808828e+01
+-1.0824328086284613e+01
+-1.5053657382332852e+00
+-1.2398606819141365e+01
+-1.0997464143047832e+01
+-1.5162108521744555e+00
+-1.2419261230800727e+01
+4.5432836261293819e-01
+-1.4013594179858917e+00
+-2.0545750489817227e+01
+2.6659409451761089e+00
+-2.0986633917304083e+00
+-2.0469045190289812e+01
+-9.3880712258484122e-01
+-1.1875087713221377e+00
+-2.0890007213033531e+01
+-3.8106111645413745e+00
+2.3464163011262185e-01
+-2.3720623308119421e+01
+-5.7252728219443245e+00
+5.9026252431954056e+00
+-4.0182312968057332e+01
+2.9202836672939108e+00
+-2.6784036198249388e+00
+-1.9545116222345129e+01
+-2.9707118184164485e+00
+-2.9394901016234404e-01
+-2.3026592942480654e+01
+1.8723628323127015e-01
+-1.9110352829986377e+00
+-2.0500764532551404e+01
+-1.2694487721887395e+00
+-1.4353138313067006e+00
+-2.1372959605807132e+01
+-2.5706710581299612e+00
+-1.0222607790414211e+00
+-2.2064765731023176e+01
+-2.7743087754811055e+00
+-1.0248203978834358e+00
+-2.2012815721584118e+01
+1.4564094346157457e+00
+-2.7908248915372540e+00
+-1.9611062389631332e+01
+-1.6066045789878947e+00
+-1.6862272720548102e+00
+-2.1248021913851602e+01
+-3.3518712951098149e+00
+-8.6029786196726599e-01
+-2.2809012021028447e+01
+4.7713524578393840e-01
+-2.5884856321998475e+00
+-1.9970902969954974e+01
+2.3363948883551586e+00
+-3.1974468829315592e+00
+-1.9914968314314294e+01
+2.5046528672863805e-01
+-2.6310601443965735e+00
+-1.9929461394785747e+01
+2.4232748288501293e-01
+-2.7341020690897504e+00
+-1.9867804850339212e+01
+1.7138434539830683e+00
+-3.1818218593519449e+00
+-1.9964931323954161e+01
+1.6424900265987682e-01
+-3.0269605232965535e+00
+-2.0126947383644065e+01
+-9.1700469912054425e-02
+-3.0297328676589550e+00
+-2.0208294561774469e+01
+-3.1436221454539076e-01
+-3.1763894850959344e+00
+-2.0422616581439119e+01
+-8.0483107482838856e-01
+-3.0695668863922698e+00
+-2.0641057272862206e+01
+-2.7085691905958681e-01
+-3.4064675123378696e+00
+-2.0826295659355509e+01
+-7.0088015247213176e-01
+-3.3097526961084305e+00
+-2.0970236082673136e+01
+-7.0088014994601522e-01
+-3.3097526960262580e+00
+-2.0970236087480760e+01
+7.5006323807830355e-01
+-3.9769080797691778e+00
+-2.0499182686046257e+01
+-6.4281772132520087e+00
+6.2455848810255510e-01
+-3.2621658149066377e+01
+-7.8292470827691094e+00
+-5.7069952061722884e-01
+-2.5910375214919299e+01
+-2.9275693309759843e-01
+-3.9071914584917540e+00
+-2.1241379975156040e+01
+-5.4985279374937945e-01
+-3.9230488847030420e+00
+-2.1493263615073982e+01
+6.7226153138728595e-01
+-4.5009486697582233e+00
+-2.1215335150987897e+01
+-8.3308948480141307e+00
+-1.2050769634971812e+00
+-2.5414299673477714e+01
+-1.2385146386673349e-01
+7.6804715375547815e+01
+-8.2231775182473370e+01
+-2.5882407954954365e+00
+3.4724907718128556e+01
+-4.0742954309924428e+01
+6.2526888225730159e+00
+3.7716346610337915e+01
+-4.3569896045264358e+01
+6.6492858999099189e+00
+3.7850503631463646e+01
+-4.4864957808120934e+01
+6.6737877829660199e+00
+3.6113812377279984e+01
+-4.5409006389107383e+01
+7.5680533137278765e+00
+3.2062200908267371e+01
+-4.4114339136432704e+01
+-9.2619563042583064e-01
+2.8487333379045413e+01
+-4.0076294893260318e+01
+3.0608308075707826e-02
+2.7729868562745107e+01
+-3.9519244154879509e+01
+-8.2550703812132173e+00
+2.4034897965574178e+01
+-3.5513389493130944e+01
+6.5724647768998323e-01
+2.6381039392839778e+01
+-3.9098969279584963e+01
+-8.4848799883774184e+00
+2.3909984396007953e+01
+-3.5668502111770913e+01
+4.1808472609267788e+00
+2.6824782961875517e+01
+-4.0071980573362914e+01
+4.5993213592294415e+00
+2.7489672948272929e+01
+-4.1296179080990733e+01
+1.1221343557230814e+01
+2.9672677347949218e+01
+-4.4949121431854394e+01
+9.5801930219609410e+00
+2.8527118072486715e+01
+-4.3800939221062777e+01
+1.7730047290612919e+01
+3.1291696972765916e+01
+-4.9106545822802936e+01
+1.1693279171601269e+01
+2.7942932735024407e+01
+-4.4878873400090328e+01
+2.0260302255191259e+01
+3.0583693826970155e+01
+-4.9229320357269991e+01
+-7.7812485838019354e+00
+2.1163166860140247e+01
+-3.5448982114568189e+01
+5.3616903266359923e+00
+2.7236966881867591e+01
+-4.4573242754789874e+01
+6.2366567836329638e+00
+2.6033272897874475e+01
+-4.3713472097504095e+01
+1.1737309266292346e+01
+1.0930687936667773e+01
+-2.3746994430745591e+01
+7.8817222960405893e+00
+7.0248439301029375e+00
+-1.8732738977672010e+01
+-1.0386291652109891e+01
+1.9521102466302757e+01
+-3.4401110674651846e+01
+5.1538410307254656e+00
+2.5272903949721663e+01
+-4.4138290528390257e+01
+-5.3433440818943287e+00
+2.1317230090077867e+01
+-3.8225775236458517e+01
+1.7834069877403511e+01
+2.8986491298677475e+01
+-5.0874547333687111e+01
+4.0551998218760925e+00
+2.4652539839228726e+01
+-4.3752587085241437e+01
+1.1706513653528232e+01
+2.7392344535030279e+01
+-4.8443784354589994e+01
+-7.8477298120162475e-01
+2.2874844436727784e+01
+-4.1352821224526132e+01
+1.3554919365637735e+01
+1.3917998386576956e+01
+-3.0570534767725633e+01
+1.3333667277928535e+01
+1.4736444630652409e+01
+-3.2104532908534907e+01
+1.8036927070228415e+01
+2.8127765495993387e+01
+-5.1930443851515392e+01
+1.5966980269590460e+01
+2.7775405284054287e+01
+-5.1383721540825746e+01
+4.2612985116505859e+00
+2.4016992378465957e+01
+-4.5340220546928080e+01
+-9.0626501913989941e+00
+1.8930155776353843e+01
+-3.6567520448653745e+01
+1.2512713441506419e+01
+2.6654903807775753e+01
+-5.0877657585213029e+01
+1.5918821374318098e+01
+2.6231873958232182e+01
+-5.1150236511163548e+01
+1.3492552991321126e+01
+1.3751495538733570e+01
+-3.2300968798893315e+01
+1.3583216324719659e+01
+1.3713884857208715e+01
+-3.2748426110826180e+01
+1.4757027687704769e+01
+2.5337169602780548e+01
+-5.0086689749324940e+01
+6.7429525473171354e+00
+2.3129593868936691e+01
+-4.6458888988848045e+01
+1.2242404461666789e+01
+6.8864762485927731e+00
+-2.2578408670851527e+01
+-4.3235461802407249e+00
+1.9996391648353224e+01
+-4.0785133574792070e+01
+-2.7376836306525014e+00
+2.0556724613236220e+01
+-4.1905475510549465e+01
+1.1677170738790061e+01
+2.4051491661182940e+01
+-4.9705264621481419e+01
+1.1614915075318700e+01
+1.3047985542490883e+01
+-3.3286657728880584e+01
+1.3120485252746951e+01
+2.4055728841086388e+01
+-5.1044497538317678e+01
+1.5394188230972901e+01
+2.4487420255621654e+01
+-5.1983132459534055e+01
+2.5920762161298776e+00
+2.1407370227182145e+01
+-4.5837008718663675e+01
+1.6535546293730100e+01
+2.6297734107477048e+01
+-5.5915104667249715e+01
+1.3151753770049774e+01
+6.0505735145291064e+00
+-2.3294124991023175e+01
+2.4844463158215756e+01
+2.8531446265969290e+01
+-6.0924142605683720e+01
+1.1221152061786922e+01
+2.3912482453880202e+01
+-5.1558502314938572e+01
+8.5984234686374741e+00
+3.8842382614105029e+00
+-1.9035680409110391e+01
+1.8183120958780151e+01
+2.6593645188131209e+01
+-5.8148529511831093e+01
+2.3439850365902803e+01
+2.7554046906666784e+01
+-6.1256952818652174e+01
+1.6828189713454016e+01
+2.3426762855657177e+01
+-5.3620179583356624e+01
+7.4280338914609603e+00
+2.3147923982199604e+01
+-5.1938253292081541e+01
+7.4280338914609603e+00
+2.3147923982199604e+01
+-5.1938253292081541e+01
+1.2907678493448774e+01
+9.1417093586502247e+00
+-3.1346654820904416e+01
+1.3899217267269909e+01
+9.4081071537372640e+00
+-3.2246957158287650e+01
+-6.8063827928098632e+00
+1.6774561987520428e+01
+-4.0858517160214639e+01
+4.7679588023415045e+00
+1.9386180112763345e+01
+-4.8712111628414462e+01
+8.7791977106742518e+00
+2.1783548994365212e+01
+-5.5465617521452351e+01
+1.1302412778058054e+01
+6.4640007232178736e+00
+-2.8500240871944101e+01
+1.4013727156250075e+01
+8.5602168634413900e+00
+-3.3728290077042530e+01
+1.6745212963102336e+01
+2.2890711224068237e+01
+-6.1535811164547169e+01
+9.2132349792157129e+00
+2.0238019416477208e+01
+-5.5675225480257154e+01
+1.3938708691930007e+01
+1.4072217271020302e+00
+-2.1554370242911698e+01
+-4.4425061704745410e+00
+1.5991466250908566e+01
+-4.5235690175794431e+01
+1.3537946622616493e+01
+3.3622096497195018e+00
+-2.5666431951196753e+01
+1.4105167463307344e+01
+2.4145587854999402e+00
+-2.4322645400413965e+01
+9.6047350935077958e-01
+4.0727904964260784e+00
+-2.3566433298203723e+01
+1.3670994653772965e+01
+2.1602319919583186e+00
+-2.4573694119885904e+01
+2.4869796016070933e+00
+1.9835389609134539e+00
+-2.0835660262725309e+01
+4.3168420740468862e+00
+1.7098604828238546e+01
+-5.3193350921952110e+01
+2.3289097228247932e+00
+1.4907273818713842e+00
+-2.0483225808095476e+01
+1.2389999717814048e+01
+4.0391154747344320e+00
+-2.9764918096831213e+01
+-1.4588616868838009e+00
+1.5147678003934155e+01
+-4.9116303751934048e+01
+1.4428968382992723e+01
+-2.1421433060490064e-01
+-2.1631963436614797e+01
+7.5547145304643823e+00
+1.3838072361616192e+01
+-5.1675054032743496e+01
+-1.2729166961656955e+00
+2.2480532299828289e+00
+-2.2662128280013107e+01
+1.3820483969588832e+01
+7.4680776017178430e-01
+-2.5556460305643803e+01
+1.3696300979182659e+01
+7.5486742913938987e-01
+-2.6075048164557980e+01
+-1.2870167326771884e+00
+1.9916457867578408e+00
+-2.2455449216494479e+01
+-1.4267165792974639e+00
+1.5683281208330613e+00
+-2.2540049413631358e+01
+2.9424670236018495e+00
+-1.5947998373135353e-01
+-2.0623752206480010e+01
+-1.8794160110140758e+00
+3.1803105014824351e+00
+-2.6549087435990700e+01
+-1.5532670869202010e+00
+1.3912355787950412e+00
+-2.2696722871311593e+01
+-2.1385882120448669e+00
+3.7906818001058755e+00
+-2.8459766248897150e+01
+1.5968013765561602e+00
+-1.9791568195477441e-01
+-2.0070197034346297e+01
+4.9997450447877139e+00
+-3.7242909084207848e-01
+-2.1479015537831003e+01
+-2.2998608293717693e+00
+2.8076425560029121e+00
+-2.5994860679485708e+01
+-1.9411557699965341e+00
+1.7144841378258615e+00
+-2.3477053970099671e+01
+1.4038776059946766e+01
+5.6713203651188360e-01
+-2.8695265439921457e+01
+1.5147971327566653e+01
+-2.2339089531316310e+00
+-2.3253567883181841e+01
+1.4898819431504876e+01
+-2.1772660613062467e+00
+-2.2944992805428669e+01
+-9.8661407628467157e-01
+4.3201665491106211e-01
+-2.1603851823290906e+01
+1.5236345766313699e+01
+-2.5338912817517296e+00
+-2.3270503743815013e+01
+-1.0922206353991841e+01
+-1.2224170841362680e+00
+-1.2204072253157946e+01
+-1.8469470760771756e+00
+6.9188703805246066e-01
+-2.2827418022767642e+01
+-1.0641931191650956e+01
+-1.3224355608626610e+00
+-1.2278570788659390e+01
+2.6426801999647451e+00
+-1.1628914901187017e+00
+-2.0592814633495230e+01
+-1.0854065274804880e+01
+-1.2828768678579752e+00
+-1.2334684594094202e+01
+-1.5871039518466608e+00
+2.8088118302253023e-01
+-2.2315275601947771e+01
+-1.0137367582031118e+00
+-1.3360396151391291e-01
+-2.1620380416515172e+01
+3.9184811071420635e+00
+-1.5579172156709691e+00
+-2.0624852628455173e+01
+1.5042498891862872e+01
+-2.9582517795933612e+00
+-2.3611706021452100e+01
+-2.1921609735939502e+00
+6.8461230090562886e+00
+-4.1645165326911346e+01
+-1.0869358898664423e+01
+-1.4580024179652871e+00
+-1.2356399172254068e+01
+-1.0926460529829940e+01
+-1.4533705594663477e+00
+-1.2358995933368901e+01
+-1.1521878568657242e+00
+-6.3745882805056009e-01
+-2.1458175161932800e+01
+-1.2720875733825738e+00
+-7.2643697769568760e-01
+-2.1304067122156180e+01
+3.7261030063544709e+00
+-2.4528446083329221e+00
+-1.9836027666378225e+01
+4.9825321715280282e+00
+-2.6384149587443653e+00
+-2.0361589170955792e+01
+-3.9629065777990027e+00
+-2.5243354343798576e-02
+-2.3260121160093128e+01
+-8.8091904925233433e-01
+-1.4581585315122947e+00
+-2.0813691167368546e+01
+1.5103145359003141e+01
+-3.7689600362633153e+00
+-2.5277856917546252e+01
+3.0126242176493609e+00
+-2.9348602230081648e+00
+-1.9684475885220785e+01
+1.5047275108308469e+01
+-3.7789886633687884e+00
+-2.5748694790029635e+01
+2.8565866992081670e+00
+-3.0129251135006836e+00
+-1.9836106374780503e+01
+1.5364698198350271e+00
+-2.6394991008584703e+00
+-1.9797059994742408e+01
+-3.0928880260581399e+00
+-1.0776610730089911e+00
+-2.2010981532293496e+01
+-3.6244974931495162e+00
+-5.5473170232139768e-01
+-2.3273419832374124e+01
+-3.0103279661896654e+00
+-1.2369533313619101e+00
+-2.1757454711252326e+01
+1.9057507210676172e+00
+-2.9458117146446416e+00
+-1.9551760303222729e+01
+1.4961792653700863e+00
+-2.9875607544889182e+00
+-1.9467066960711509e+01
+-6.2790411361591592e-01
+-2.3692781472442928e+00
+-2.0381822280923959e+01
+-1.6246163827654068e+00
+-2.3094091292309225e+00
+-2.0798415984504445e+01
+-1.6279759618549456e+00
+-2.2472593049440244e+00
+-2.0897077257935983e+01
+1.2432202617121442e+01
+-4.4669941554908936e+00
+-2.5553801326270033e+01
+1.6041234243266229e+00
+-3.4256121841354630e+00
+-2.0103715062088025e+01
+-2.7332070715910355e+00
+-1.9972452527446207e+00
+-2.2006505304977022e+01
+-1.8268773580691815e+00
+-2.4575027373283311e+00
+-2.1279475635539654e+01
+-3.5363058785882595e+00
+-1.4433352705346603e+00
+-2.3648014846732899e+01
+-1.9883047023800371e+00
+-2.4627710230293687e+00
+-2.1440198030298099e+01
+-4.8881860650218032e+00
+-1.4343438394823065e+00
+-2.2627993252472962e+01
+-1.2628573416723250e+00
+-3.0164986613938427e+00
+-2.0505043785647072e+01
+-7.1162140606671205e+00
+1.9506373802983603e+00
+-3.4347136998480742e+01
+1.1120175111988088e+01
+-5.5534524851591804e+00
+-2.4820169205483403e+01
+-2.0246571567790723e+00
+-2.9655944802645977e+00
+-2.2072367465542879e+01
+-2.3053681174433609e+00
+-2.9759771079866830e+00
+-2.2518685699637697e+01
+-4.4310958678621102e+00
+-2.6791377495487376e+00
+-2.1347266892385420e+01
+-2.3385830169247996e+00
+-3.0606688255738308e+00
+-2.2683564912335022e+01
+-3.5056464019025571e+00
+-2.4910063403030538e+00
+-2.3796080742147186e+01
+-6.7301048002745532e+00
+2.7809118519541121e-01
+-3.2427744093272501e+01
+-4.5308627671817172e+00
+-2.8118436170146310e+00
+-2.1250666435507398e+01
+-7.0159161729968584e+00
+4.7616609808868622e-03
+-3.2115590966238749e+01
+-1.8951990584035681e+00
+-4.1531228688934219e+00
+-1.9367197250975654e+01
+6.8429317337327600e+00
+3.8512395489532253e+01
+-4.4565707393466106e+01
+-6.8609986493584973e-01
+2.8395916030364550e+01
+-4.0412742125488428e+01
+-6.5731255798462029e-01
+2.8131039358146573e+01
+-4.0195855919133045e+01
+-9.1106169643082406e+00
+2.3319269900275053e+01
+-3.5173326928755706e+01
+9.5889914519681021e+00
+2.7877141621259025e+01
+-4.2698639991268394e+01
+8.6849778776061939e+00
+2.7557458872322140e+01
+-4.4674167244895372e+01
+1.2149735186935107e+01
+2.9334568789557309e+01
+-4.6722310763774843e+01
+1.2754462522922141e+01
+1.6917920829849251e+01
+-3.0855254466288862e+01
+-9.7615769026936956e+00
+2.0198131834733427e+01
+-3.4322800241816886e+01
+1.2728211749378007e+01
+1.5871778689307861e+01
+-3.0029372571520863e+01
+1.2791070473934658e+01
+9.8931282294585170e+00
+-2.2997944554586677e+01
+-7.7171718378261343e+00
+2.0749858645992767e+01
+-3.6234274512882109e+01
+4.7019188460030508e+00
+2.4665060801692889e+01
+-4.2573929166917331e+01
+1.3852820911550996e+01
+2.6451113019559930e+01
+-4.6609834573523528e+01
+9.7346027029102693e+00
+2.6733930446962734e+01
+-4.7020469096377774e+01
+1.2153056005122126e+01
+1.5267418029697126e+01
+-3.1263294006278223e+01
+-7.2097472497714605e+00
+2.0806670871164343e+01
+-3.7608265730351263e+01
+1.2877275829356947e+01
+1.4742955083381666e+01
+-3.1068121422414688e+01
+8.6715490588550050e+00
+2.5787635439102587e+01
+-4.6656111839709347e+01
+1.6401967420265390e+01
+2.8597395145492236e+01
+-5.1625634421659718e+01
+2.4883428540712199e+01
+3.2104488758244230e+01
+-5.8790684696335383e+01
+1.3050042218426883e+01
+1.3574628895082956e+01
+-3.0652453054735968e+01
+4.9968319068815594e+00
+2.4005278110437843e+01
+-4.5630414516095541e+01
+1.8515623172811690e+01
+2.9550296922715731e+01
+-5.5178887421673146e+01
+1.3148294615276811e+01
+1.5346566404139081e+01
+-3.4192625420895624e+01
+-1.8130052911439025e+00
+2.1428098798238871e+01
+-4.1947905013060584e+01
+1.7072083330883370e+01
+2.8184546588060062e+01
+-5.4077672944801414e+01
+1.3889889217815247e+01
+1.2774163780696092e+01
+-3.1200286146946464e+01
+1.1270523780530651e+01
+1.0685434886710835e+01
+-2.8187102384530867e+01
+2.0423487628748649e+01
+2.5882359743391298e+01
+-5.3512469933378739e+01
+1.6005292219163419e+01
+2.5332033908417010e+01
+-5.2935779600535774e+01
+1.7698988763108105e+01
+2.5434096613897214e+01
+-5.3784646696726426e+01
+1.6359598745674596e+01
+2.5013968319867956e+01
+-5.3459916650065971e+01
+1.7079035094556005e+01
+2.3539120939000739e+01
+-5.1538697796489913e+01
+9.2673655003347246e+00
+2.3024171206197522e+01
+-4.9870119575271268e+01
+1.4204598953202176e+01
+2.3082577672318521e+01
+-5.1223139144867815e+01
+1.1654018140849779e+01
+1.2601120389639402e+01
+-3.3764607599523018e+01
+1.2457241526964259e+01
+2.3291391482853268e+01
+-5.1922210698372382e+01
+8.7010579354216322e+00
+3.6990966006722781e+00
+-1.9189253833886539e+01
+5.1983811763503436e+00
+2.0997995211512119e+01
+-4.8451841383366464e+01
+1.2553325705670957e+01
+1.1365864706055476e+01
+-3.3824397579666162e+01
+1.1621182619676873e+01
+1.0747645929053210e+01
+-3.2517165961278813e+01
+1.2149799311617038e+01
+6.0142911835746382e+00
+-2.6009878570729445e+01
+1.1775365094708636e+01
+9.2827723128427575e+00
+-3.1524698658205963e+01
+7.6254254140344520e+00
+2.0721690624728449e+01
+-5.0671224154745452e+01
+1.3912059632936094e+01
+9.4075904068603275e+00
+-3.2700455388400300e+01
+1.3334810001285387e+01
+9.8511137016965016e+00
+-3.3505383418342660e+01
+2.1670917454435823e+01
+2.4122397985268961e+01
+-6.1973889914853821e+01
+-1.7446850578968893e+00
+1.8123854124549563e+01
+-4.5713211341372968e+01
+1.4043318897484617e+01
+1.0131138547500122e+01
+-3.6250998368389197e+01
+1.2685080140070975e+01
+9.2793990002870608e+00
+-3.4262927480283928e+01
+1.8805274549800870e+01
+2.1710625475472156e+01
+-5.8976431782468019e+01
+1.8181140427387131e+01
+2.0988290796840566e+01
+-5.6993450924021921e+01
+1.4287420649617566e+01
+2.1444217839548806e+01
+-5.7910657517570151e+01
+-3.4109537676778339e+00
+1.6811402704986161e+01
+-4.4994598612553041e+01
+1.2103584250759849e+00
+1.8018381251792814e+01
+-4.8822113537867125e+01
+4.9088482886232816e+00
+1.8426218889574432e+01
+-5.1933533345836707e+01
+1.3728338171211012e+01
+3.6210069567202190e+00
+-2.6069573620976868e+01
+1.3380780114383663e+01
+3.5125115227882855e+00
+-2.5961348091424899e+01
+2.4543158756097920e+00
+4.0593312241552963e+00
+-2.3621176225830428e+01
+1.3484322465912879e+01
+2.2724841694724809e+00
+-2.3454018907896579e+01
+1.9754907391780241e+00
+1.9256796773242451e+00
+-2.0602638290184188e+01
+5.1061745910678358e-02
+2.7442168696992590e+00
+-2.2171720404185088e+01
+-5.9236336163026992e-01
+2.9225725409218972e+00
+-2.2571353388083427e+01
+1.4627682950160237e+01
+-2.3741115173844080e-01
+-2.2579968084573679e+01
+-7.0968623056322111e-01
+2.2427459855783614e+00
+-2.1989393636950215e+01
+1.1162599081957485e+00
+1.1912926960180517e+00
+-2.0338935839313830e+01
+8.3935146694380069e-01
+1.2637126065164486e+00
+-2.0370705244501725e+01
+9.2280255455311799e-01
+1.0580030780082812e+00
+-2.0627091747527430e+01
+1.4592727391254659e+01
+-8.2477458356745403e-01
+-2.1751090378543395e+01
+1.3697877754198664e+01
+7.1576035761967094e-01
+-2.6224673390851180e+01
+-1.5932470150757463e+00
+1.6581435123226540e+00
+-2.2784338351679228e+01
+1.4000380623499449e+01
+3.6824160026677116e-01
+-2.7533704284917953e+01
+-1.2994967631001426e+00
+1.0550850821142221e+00
+-2.1943859304001258e+01
+1.4035192188654442e+01
+-3.7301649467637510e-01
+-2.6338253960496008e+01
+1.4035192188654442e+01
+-3.7301649467637510e-01
+-2.6338253960496008e+01
+1.1726113596355070e+00
+-1.9360639920667283e-01
+-2.0459673969621075e+01
+-1.3421223463095964e+00
+7.9759820587976271e-01
+-2.1825303218113415e+01
+-3.0255856924687619e+00
+3.2715562294940512e+00
+-2.7632145747191402e+01
+1.5223630042590262e+01
+-2.3761807998326776e+00
+-2.3104516521298521e+01
+-1.9596590971895156e+00
+1.2383114440464567e+00
+-2.3086876219621907e+01
+-1.6324437725245442e+00
+7.6160778567650056e-01
+-2.2505997361455091e+01
+1.5206294982381159e+01
+-2.5354167821626183e+00
+-2.3583300172116708e+01
+1.8896868730277545e+00
+-1.1793405819834579e+00
+-2.0531364709568912e+01
+-1.4914408363930829e+00
+-6.0428522231409698e-01
+-2.1519228602265056e+01
+-1.5827651161119841e-01
+-1.2086274410584412e+00
+-2.0618241084778699e+01
+2.2416686200829730e-01
+-1.3574081602636334e+00
+-2.0352082939755384e+01
+-8.0948225395613527e-02
+-1.3489381825492344e+00
+-2.0616215024553195e+01
+-1.0861315152251043e+01
+-1.6515327463749627e+00
+-1.2551105613544680e+01
+-1.0702030281594315e+01
+-1.6698523071781752e+00
+-1.2637118140187246e+01
+-1.0702030281594315e+01
+-1.6698523071781752e+00
+-1.2637118140187246e+01
+4.8571086845614753e-01
+-1.9828697736999561e+00
+-2.0202263009528341e+01
+-4.2508354782356079e+00
+-4.8882016438537195e-03
+-2.3646353346481980e+01
+-2.6266669879003617e+00
+-1.0238939439888683e+00
+-2.2010136869408665e+01
+-4.0170604604297742e+00
+3.6159893631884027e-01
+-2.5713917591978749e+01
+-3.1925564828876190e+00
+-8.6271725390387155e-01
+-2.2387402490619419e+01
+-5.5565136426230568e+00
+4.1966470397394326e+00
+-3.7740915386347389e+01
+-5.9962439782364143e+00
+4.0513409538504694e+00
+-3.7567410008905988e+01
+-9.7911023757094673e-01
+-2.2121626335405451e+00
+-2.0572914342888556e+01
+-3.6999024120121160e-01
+-2.5130730532019179e+00
+-2.0038208260616713e+01
+-7.1374495822984159e+00
+2.4404392111772144e+00
+-3.5088610122964106e+01
+1.8275109319900449e+00
+-4.0852530455806013e+00
+-2.0740064945284658e+01
+-2.9207110430509799e+00
+-2.6136031085395515e+00
+-2.2298146919265825e+01
+-2.4598128894755072e-01
+-3.5435389183843613e+00
+-2.1103254536573047e+01
+-2.9755569852966244e+00
+-2.7086649230602631e+00
+-2.2553099668041568e+01
+-2.4612996454047714e-01
+-4.0665593359448353e+00
+-2.1346430497882555e+01
+7.2114782621740314e-01
+-4.4686628316365313e+00
+-2.0877449699155573e+01
+-1.1555489502745853e+00
+-4.3985179193350463e+00
+-1.8934212208550775e+01
+-3.3268226632489131e+00
+-2.7521225788652766e+00
+-2.4430259814681978e+01
+6.4593725488302374e+00
+3.8072031491656176e+01
+-4.4834001373878017e+01
+6.0305462374055869e+00
+3.7801588223626879e+01
+-4.4788607886981069e+01
+-5.8535093327701182e-01
+2.8193956975233775e+01
+-3.9962819772057806e+01
+3.2694317477489349e-01
+2.7647003514726674e+01
+-3.9502785711992033e+01
+-2.8354033223335451e+00
+2.6757677569813154e+01
+-3.8836916567834656e+01
+1.9008748685666661e+00
+2.6560121288215925e+01
+-4.0489923485643637e+01
+8.3194475527650322e+00
+2.8377127602879568e+01
+-4.3463737551357774e+01
+7.0779281432085650e+00
+2.7371938167753207e+01
+-4.1910981712741922e+01
+1.2440760981538837e+01
+1.7424295248913985e+01
+-3.0239494840416096e+01
+6.5186669849811507e-01
+2.4665361267908533e+01
+-4.0498387993651768e+01
+1.2190623230719019e+01
+1.6218119195628564e+01
+-3.1115786926963860e+01
+-1.0337916362318245e+01
+1.9513819153049859e+01
+-3.4941091979873924e+01
+-8.8521030224599055e+00
+1.9717022703974937e+01
+-3.5858281938726350e+01
+1.1716062226885368e+01
+1.0561289114291748e+01
+-2.4923179302500351e+01
+4.9970969013683009e+00
+2.4414385227978396e+01
+-4.5281662102792431e+01
+1.2482195852100791e+01
+1.2088049979826021e+01
+-2.8339045400715456e+01
+1.5969115322355290e+01
+2.7273441277294310e+01
+-5.1574049566984989e+01
+5.7788063661388707e+00
+2.3374234593169504e+01
+-4.6737691407893756e+01
+-7.1328562376601949e+00
+1.8763724875313208e+01
+-3.8688810288948140e+01
+1.1515141457370845e+01
+1.0192271132735504e+01
+-2.9089325017687255e+01
+1.3175179834916731e+01
+1.3551590724691478e+01
+-3.5098192232812977e+01
+1.3175179834916731e+01
+1.3551590724691478e+01
+-3.5098192232812977e+01
+9.1863076992239581e+00
+5.7294413773296977e+00
+-2.2906010647384363e+01
+-4.7705646478632273e+00
+1.8189822210402806e+01
+-4.2388027155733177e+01
+1.3301719258787879e+01
+5.1997382080005359e+00
+-2.4048619882605323e+01
+1.7627853860469269e+01
+1.7989999116432518e+01
+-4.7723202600534947e+01
+1.3112625313027980e+01
+9.3253805619585250e+00
+-3.2133201425775944e+01
+1.1328980056646584e+01
+5.5919805431555138e+00
+-2.6113704888550210e+01
+1.2139129391826424e+01
+6.4033497950111924e+00
+-2.8649835362961834e+01
+1.2433353701769164e+01
+5.1595512765735183e+00
+-2.7708861117432196e+01
+1.2657900659680161e+01
+5.2968194738705243e+00
+-2.8471789912272975e+01
+1.2694268940702377e+01
+5.3353031312399226e+00
+-2.8561485563918115e+01
+1.2046096607985167e+01
+5.0413445191219308e+00
+-2.7649006344836689e+01
+8.5946811988876415e-01
+1.6877012961622732e+01
+-4.9755214361357766e+01
+1.2936395092365087e+01
+3.0596552572644065e+00
+-2.5604011532101502e+01
+1.2760651007191425e+01
+4.7290656558413602e+00
+-2.9367924264995381e+01
+1.2651271379165234e+01
+4.7470012992127062e+00
+-2.9147916868071921e+01
+1.0459844961970524e+00
+1.6763278770232660e+01
+-5.0690617788250798e+01
+8.8302769315505913e-01
+1.6464564129381820e+01
+-5.0006948945053487e+01
+4.7443417961459513e+00
+1.7079082767159687e+01
+-5.2739304284509728e+01
+9.0832388135057540e-01
+1.6272903963614706e+01
+-5.0432520877225357e+01
+9.0832388135057540e-01
+1.6272903963614706e+01
+-5.0432520877225357e+01
+2.0239596314478296e+00
+1.6991484732504418e+01
+-5.2482390917657106e+01
+1.3652237906741709e+01
+1.5836489542785186e+00
+-2.6272789694968150e+01
+1.4455752423774570e+01
+-4.3664244891296639e-01
+-2.1867222779378633e+01
+-1.8141966718243199e+00
+2.3348025546587001e+00
+-2.3468220438085275e+01
+1.1888821073757518e+00
+2.7814405037191298e-01
+-2.0240231555512583e+01
+-1.7063047383935037e+00
+1.5686366861616199e+00
+-2.2976926546918008e+01
+1.5197903313509222e+01
+-2.3715201146021148e+00
+-2.3272266342083871e+01
+2.0233042243207731e+00
+-7.2828401803019438e-01
+-2.0378912307238298e+01
+1.9818827168706868e-01
+-3.0275956439484702e-01
+-2.0549880515076957e+01
+1.5342945675378219e+01
+-2.9056190757968965e+00
+-2.3533423704850861e+01
+1.5124925146393148e+01
+-2.5731846868685118e+00
+-2.4361308051492681e+01
+-1.2190412631441256e+00
+-5.2603018162531733e-02
+-2.1736835245742881e+01
+-3.4028375695535091e+00
+1.5305393848186672e+00
+-2.5466530893033202e+01
+-1.0771830817996333e+01
+-1.4553767795094084e+00
+-1.2374425595201775e+01
+-8.6921857468735630e-01
+-6.3674665755567494e-01
+-2.1447719674085242e+01
+2.4164825909955185e+00
+-2.1208767700937980e+00
+-2.0265600178659366e+01
+-4.3521250824515114e+00
+6.3385718885505538e-01
+-2.3985971776062161e+01
+1.5405146403809079e+01
+-3.8248134307863255e+00
+-2.4750727064616573e+01
+1.5187072427650966e+01
+-3.7707824815196420e+00
+-2.4609335394676240e+01
+1.5136830806994626e+01
+-3.8902669465277571e+00
+-2.5391299748423538e+01
+-6.2295093310058265e+00
+4.4340952606866999e+00
+-3.8080333450856635e+01
+-2.8080565555393959e+00
+-1.3185540205861208e+00
+-2.1667918508636593e+01
+-1.5492614130448618e-01
+-2.3880288642817327e+00
+-2.0075479348148708e+01
+-1.8300440435054701e+00
+-2.3688984650058740e+00
+-2.1240453826176086e+01
+-5.8404781534514019e+00
+1.2898313817950622e+00
+-3.3838262803271633e+01
+-1.8754245984664377e+00
+-3.2814360469115007e+00
+-2.1923123496730977e+01
+-1.8754245984664377e+00
+-3.2814360469115007e+00
+-2.1923123496730977e+01
+-2.5950753193820000e+00
+-2.9894931973455776e+00
+-2.2562857353855637e+01
+-2.9089179819474071e+00
+3.2522498238675830e+01
+-4.0903726949801595e+01
+-2.7315394993678535e+00
+3.1053310778177192e+01
+-3.9806442791526024e+01
+2.3165871208241802e+00
+3.1230494151570866e+01
+-4.0033050353219494e+01
+-8.3131570969706363e+00
+2.5472469543352016e+01
+-3.4772246550138114e+01
+5.8588154297725898e+00
+3.1314410588153908e+01
+-4.2957146260976742e+01
+1.8409657641539459e+00
+2.9342203914455304e+01
+-4.0860243786541517e+01
+1.8409657641539459e+00
+2.9342203914455304e+01
+-4.0860243786541517e+01
+2.0413520583531600e-01
+2.6989426659104094e+01
+-3.9427405508361041e+01
+3.9001468986010396e-01
+2.5546851713063226e+01
+-3.8440684901704465e+01
+-1.3323952376062451e+00
+2.4074724996059278e+01
+-3.8951039271952098e+01
+1.2566804250850218e+01
+1.5369567879530791e+01
+-2.9706313156722182e+01
+1.8284934549913394e+00
+2.4425087325073878e+01
+-4.2020694151757368e+01
+-3.9336820029754738e+00
+2.0276703892793360e+01
+-4.0983232698612227e+01
+2.0853922080915950e+01
+2.6394925625698566e+01
+-5.5137382933370731e+01
+3.9345115461245492e+00
+2.1064057510097950e+01
+-4.7780637738435424e+01
+1.3013617279949992e+01
+1.1932486572015167e+01
+-3.5497674598530651e+01
+3.6127190148414140e-01
+1.9502880331348155e+01
+-4.6017702981189146e+01
+9.7997814612717082e+00
+6.1128186157204967e+00
+-2.5001805617507543e+01
+1.2666546707710497e+01
+2.2135852559392561e+01
+-5.9340608533252002e+01
+1.3753324183980364e+01
+9.1917769065631560e+00
+-3.5058185260748701e+01
+1.0872788750002243e+01
+1.9736562632726493e+01
+-5.4467841238463947e+01
+1.1714987053568111e+01
+5.6287407267937066e+00
+-3.0077627025450024e+01
+1.2240010964028409e+01
+4.8676095308971004e+00
+-2.9031378875477564e+01
+1.3791832143633952e+01
+1.5559180018289465e+00
+-2.3283856735131696e+01
+1.4314232484304757e+01
+1.0523515346868516e-01
+-2.1302297921231578e+01
+1.0769147791466379e+01
+3.4054558148686027e+00
+-2.7187051785608695e+01
+1.4410746879091251e+01
+-1.5912750974053405e-01
+-2.1757048776190199e+01
+-1.3170434281580516e+00
+2.6594563125418027e+00
+-2.2809426121650940e+01
+8.8497729701281469e-01
+9.3925273442781576e-01
+-2.0685119798909202e+01
+8.1193985386096734e-01
+7.5207417983083835e-01
+-2.0583926534107906e+01
+1.4747196077623194e+01
+-9.0179581546439924e-01
+-2.3080891299980038e+01
+-1.5506823684940407e+00
+1.9554858112594660e+00
+-2.2889253117682628e+01
+1.2231934473993440e-01
+6.1339109731812691e-01
+-2.0824240660367934e+01
+8.5682614782054578e-01
+3.2828734745456789e-01
+-2.0466634149196874e+01
+-9.3155646068214737e-01
+9.2351624306643931e-01
+-2.1628947329178271e+01
+1.9735647369002527e+00
+-4.8304660625432144e-01
+-2.0412845452609197e+01
+-1.4427140572077830e+00
+7.3504466794972911e-01
+-2.2187974398075042e+01
+-3.9125944696270425e+00
+9.6738690883021838e-01
+-2.4523923605986695e+01
+-1.0754839807590354e+01
+-1.5707372640795685e+00
+-1.2455198706526584e+01
+-4.3255798635409439e+00
+3.0152451527123264e-01
+-2.3301652249614865e+01
+1.5258525148765044e+01
+-3.8656997250121683e+00
+-2.4453646075175424e+01
+1.5258525148765044e+01
+-3.8656997250121683e+00
+-2.4453646075175424e+01
+-4.9543799744861623e+00
+4.8819494644154924e+00
+-3.8405837907657485e+01
+-3.2618368732761742e+00
+-5.8635764409892843e-01
+-2.2583101797612620e+01
+-2.6131328512240768e+00
+-1.4041559613403001e+00
+-2.1539592508960883e+01
+7.7871652515485545e-01
+-2.7007928585817162e+00
+-1.9872719028898722e+01
+-1.9166143196702983e+00
+-1.8307741565613562e+00
+-2.1048877890604089e+01
+2.7728472301406037e-01
+-3.6125206549580500e+00
+-2.0448900876968210e+01
+-6.1793669195456271e+00
+1.1606490406268735e+00
+-3.3408647746774434e+01
+-2.0576588024254225e+00
+-3.0862622684948811e+00
+-2.2194709122816089e+01
+2.2550851208046661e+00
+2.9634498312428555e+01
+-4.0992276664230936e+01
+3.5412507274363989e+00
+2.9410597609186659e+01
+-4.1313664366835475e+01
+-7.3668392109336391e+00
+2.1449795970446615e+01
+-3.6003605358395589e+01
+1.2059688946266926e+01
+1.0225683788944222e+01
+-2.2728577992040762e+01
+8.8889313241035381e+00
+2.6971126028626397e+01
+-4.5422467132033105e+01
+8.0086476698672335e+00
+6.3986072446722222e+00
+-1.8466722414180406e+01
+2.2993805106644008e-01
+2.3432452196454939e+01
+-4.2868722268161839e+01
+1.1576843147841945e+01
+1.4710978413786396e+01
+-3.1403667005731826e+01
+1.5524916928059801e+01
+2.5724425148552143e+01
+-5.0113597510547393e+01
+1.3278865332896627e+01
+2.3932570481462921e+01
+-5.1645855089122051e+01
+1.2399372458002663e+01
+5.2583964393149580e+00
+-2.4844906014337788e+01
+2.0978232021756389e+00
+1.7960354426113454e+01
+-5.0048577746358056e+01
+2.1130314233612641e+00
+1.7942180966031593e+01
+-5.1024803857101340e+01
+3.3211214523332211e-01
+1.9527356358424386e+00
+-2.1269320457420974e+01
+1.4514084104366901e+01
+-4.6631391449488535e-01
+-2.1431763570902131e+01
+-2.1893523627751231e-02
+1.8428961907808972e+00
+-2.1207032604303492e+01
+1.7155563562861871e+00
+1.1691869693196664e+00
+-2.0487501799132740e+01
+1.2508239837812770e+01
+3.3656120889063028e+00
+-2.9403651635268385e+01
+-1.7773004612713969e-01
+1.5181289633571673e+00
+-2.1138521307835777e+01
+-1.5699267457240607e-01
+1.4989244335818301e+00
+-2.1212968066191031e+01
+-1.3782413757590621e+00
+2.2885801631461908e+00
+-2.2744583506226018e+01
+-1.9137297604680374e+00
+2.1630595533468444e+00
+-2.4415622032365302e+01
+-1.7254492420875085e+00
+1.2899429991869484e+00
+-2.2929309456410788e+01
+2.0616906176183951e+00
+-9.3259337298909961e-01
+-2.0432458355441923e+01
+-1.0714596326365642e+01
+-1.3681372011486956e+00
+-1.2323169867987810e+01
+-1.7069127038629267e-01
+-1.3653167296274973e+00
+-2.0650406218398075e+01
+-2.3968593108155174e+00
+-1.4953699652170138e+00
+-2.1471109290811597e+01
+-1.5796828480079075e+00
+-2.0189495176715142e+00
+-2.0789291992864147e+01
+-1.4621152036190659e+00
+-2.0983686228908631e+00
+-2.0634067724456482e+01
+-9.5274949595140868e-01
+-3.2731948863111087e+00
+-2.0987503378151615e+01
+-3.7226821769216012e+00
+-1.9319377109668472e+00
+-2.4346756620450041e+01
+-7.8269894695483986e+00
+-6.8431344829217089e-01
+-2.5780606749486950e+01
+-6.9040240801869750e+00
+3.8284325025723676e-01
+-3.2695496966937661e+01
+6.9901310473124161e+00
+2.8155912896614826e+01
+-4.3393333776814657e+01
+6.8660473553835510e-01
+2.5034137043452663e+01
+-4.0442392278419575e+01
+-8.1227196100208694e+00
+2.1115591790789708e+01
+-3.5510192201655002e+01
+-1.0378706381263997e+01
+2.0106212111266647e+01
+-3.4199869165958809e+01
+2.0936052027087268e+01
+2.7425890657594625e+01
+-5.2800290296639830e+01
+1.3754712237758485e+01
+3.5095262282497788e+00
+-2.4316669664607478e+01
+-1.0185966930277692e+00
+3.0966788750903089e+00
+-2.3045757001538011e+01
+-1.7469029876396056e+00
+2.3704994544916440e+00
+-2.4104581168349831e+01
+-1.1083879467354462e+01
+-1.5473071174600714e+00
+-1.2351646320334732e+01
+-1.0768358389324131e+01
+-2.1294336187642666e+00
+-1.2877345009903287e+01
+-4.1967010796900706e+00
+-2.2161566867297795e+00
+-2.1403733199293114e+01
+-2.0594015016219838e+00
+-2.9631852202971216e+00
+-2.2045417557581686e+01
+8.7291752453768634e+00
+8.0931493318409764e+00
+-2.1580788759361226e+01
+9.0350870532094234e+00
+2.4856763502682348e+01
+-4.7454939873373036e+01
+1.7801142118991006e+01
+2.4338345043050364e+01
+-5.4242966684060015e+01
+8.9362399651573721e-01
+2.0300795887190809e+01
+-4.5623222848108924e+01
+1.6494216234168533e+01
+2.3081823990599347e+01
+-5.7724201367614818e+01
+4.3902748690497644e+00
+1.8115737641383692e+01
+-5.0973908606301642e+01
+4.8689340405610526e+00
+1.7298838689753801e+01
+-5.2447610948288585e+01
+3.4576784283377482e-01
+1.1911977342733056e+00
+-2.0709590110384536e+01
+-1.0370768814559574e+00
+-2.3847001161455572e+00
+-2.0274301482176892e+01
+4.3166351444456392e+00
+2.6973347797724077e+01
+-4.0410229922583582e+01
+1.5109379151260782e+01
+2.4807631058389617e+01
+-5.3761343115641374e+01
+1.9393022710602763e+00
+7.2145744018224467e-01
+-2.0291411007819846e+01
+-1.0962841184272625e+00
+6.0808578406616631e-01
+-2.1817090842977375e+01
+-1.1020413326447141e+01
+-1.2920849426818977e+00
+-1.2145850718730030e+01
+-9.0622382913146216e-01
+-9.0352745482419083e-01
+-2.1096832778788812e+01
+1.5191958054387689e+01
+-3.4659377550942918e+00
+-2.4299664789287014e+01
+1.9620901885321884e+00
+-3.5339486424758877e+00
+-1.9964753039672782e+01
+2.0328172426840125e+00
+-3.5237775365503321e+00
+-2.0077191031316698e+01
+-3.6868476515911772e+00
+-1.9405424471638153e+00
+-2.4575476410389623e+01
+3.6769251826132194e+00
+2.6405795324509739e+01
+-4.1433915033892319e+01
+-1.0930603823797766e+01
+-1.4787036936989639e+00
+-1.2401184616991918e+01
+9.7192348719709916e+00
+2.3589669626020704e+01
+-4.9281390055563215e+01
+-9.8849988369768738e-01
+1.4141401658198185e+00
+-2.2040148867584008e+01
+1.8325817971389973e+00
+2.4595156139928129e+01
+-4.1784627942163233e+01
+-6.8215568837601710e+00
+2.0912663574630827e+01
+-3.8382574850588682e+01
+6.7850858442643682e+00
+2.3239469354021050e+01
+-4.9099107420690991e+01
+-3.6953690039830662e+00
+2.3115869213327624e+01
+-3.9446481106998775e+01
+-1.2166534091086236e+01
+2.1050597052833520e+00
+-7.3018752743084629e+00
+-1.1243524383086891e+01
+-8.2524945846370878e-01
+-7.7568345094917532e+00
+-4.6045549238331027e+01
+2.8544824323029498e+01
+-7.9689980363415501e+01
+-4.5508405069299457e+01
+2.8752311414370762e+01
+-7.9855283742129004e+01
+-4.2570334693377319e+01
+3.2754637021555610e+01
+-7.3806328695392523e+01
+-3.3456509359910562e+01
+3.5526238381833863e+01
+-5.3038424682757814e+01
+-2.9956023668105445e+01
+3.1996443444763692e+01
+-5.0851314517938576e+01
+-2.9524325954763420e+01
+2.1937016231247817e+01
+-5.6775925821631795e+01
+-2.8730658693341816e+01
+3.3422750673476969e+01
+-4.8589326495346235e+01
+-2.4894169793273946e+01
+2.4982773518521910e+01
+-4.3643421300151807e+01
+-2.4549946843408474e+01
+2.7500786706745668e+01
+-4.1835615471118793e+01
+-2.4667932672288146e+01
+2.6844070292656461e+01
+-4.2953208141526559e+01
+-2.3735679794708712e+01
+2.2634076570791880e+01
+-4.3258222299748809e+01
+-3.9195698298514131e+01
+5.6122760457615271e+01
+-6.8098962602443507e+01
+-2.2702548279579013e+01
+1.4835159245236241e+01
+-4.6978553122190007e+01
+-2.1908067803155312e+01
+1.9353731172655451e+01
+-4.2465168199308629e+01
+-3.2204335557252634e+01
+4.4896790025481515e+01
+-6.0159023609092912e+01
+-2.8482250441155735e+01
+3.8468486203312111e+01
+-5.1904991003353487e+01
+-2.6254031742567673e+01
+3.5297074063365933e+01
+-4.8588596210013606e+01
+-2.6827059224845339e+01
+3.6506489749032056e+01
+-4.9748229365675364e+01
+-2.7410178129135101e+01
+3.8263987178642196e+01
+-5.0537119221363085e+01
+-1.8652816392224601e+01
+1.9759102426341205e+01
+-3.4765277397611186e+01
+-1.8652816392224601e+01
+1.9759102426341205e+01
+-3.4765277397611186e+01
+-1.8525940379463698e+01
+1.6066924724808793e+01
+-3.7576675312890828e+01
+-1.8508490866412050e+01
+1.9442162614270270e+01
+-3.5125394756950868e+01
+-2.8737066825835488e+01
+4.5465195926583689e+01
+-5.3951746746744412e+01
+-1.7144604856031705e+01
+1.1516608601178548e+01
+-3.8085667891082160e+01
+-1.6324882631641291e+01
+1.8380567652341853e+01
+-3.1135238754704677e+01
+-2.4136578287843733e+01
+3.5902543592148838e+01
+-4.7001829134847249e+01
+-2.4261208818848740e+01
+3.5530721754990154e+01
+-4.9612805690629536e+01
+-1.6127302060104515e+01
+1.4911738575675509e+01
+-3.3806512108287876e+01
+-2.3645348746031949e+01
+3.5575438909682092e+01
+-4.6736089293876482e+01
+-1.7108777842520091e+01
+1.3059467897104799e+01
+-3.9632689918679695e+01
+-2.3296470605609301e+01
+3.5227857644102023e+01
+-4.6163380486922918e+01
+-1.7396363161767031e+01
+1.2107159242646384e+01
+-4.2780718390103210e+01
+-1.6397550489423494e+01
+1.8167717012787623e+01
+-3.3437936858288786e+01
+-1.6160748384693367e+01
+1.9176410128454958e+01
+-3.2329686420373108e+01
+-2.1113412614973093e+01
+3.1325523665100505e+01
+-4.2258563771419276e+01
+-1.6732158175752893e+01
+1.0925129584643749e+01
+-4.1974327228252413e+01
+-1.6177576614584506e+01
+2.0053288390419848e+01
+-3.2420806201002279e+01
+-2.2796583291219061e+01
+3.7556611078424673e+01
+-4.5421711270967108e+01
+-1.6500314805628587e+01
+1.2132734744516497e+01
+-4.0423275416813119e+01
+-1.0943028668963370e+01
+-4.3465263567493002e+00
+-3.0979794192127191e+01
+-1.6099366442367970e+01
+9.6663004324099955e+00
+-4.1021819780765625e+01
+-2.3616903372659696e+01
+4.1201926642971124e+01
+-4.7343233784800468e+01
+-1.0860649176623156e+01
+-3.9538578127473798e+00
+-3.0815328051714065e+01
+-2.1759582076636281e+01
+3.4696191981583709e+01
+-4.4878784574006303e+01
+-2.1782849952763893e+01
+3.4575568534965996e+01
+-4.5189504368450812e+01
+-1.0755881043001477e+01
+-4.1905483355992139e+00
+-3.0744660976152556e+01
+-1.5221921524586635e+01
+1.9612884012121839e+01
+-3.0820481835489939e+01
+-2.4138291558835775e+01
+4.0199000044531353e+01
+-5.2353314505736712e+01
+-2.1709261529288483e+01
+3.6097522047582970e+01
+-4.4929330234703230e+01
+-2.3434085214922650e+01
+4.0055240486236769e+01
+-4.9639445488719929e+01
+-1.5667102375992528e+01
+1.0942055402327037e+01
+-4.0315431642041176e+01
+-1.5723868592531757e+01
+9.8845290996408703e+00
+-4.1382231683104997e+01
+-2.2161275904936801e+01
+3.6461070029665684e+01
+-4.7068995787553476e+01
+-1.6256172912785427e+01
+9.5516360117222980e+00
+-4.5093718223695419e+01
+-1.5423835210362949e+01
+1.4814419843874029e+01
+-3.7200882803888533e+01
+-2.3370997240674612e+01
+4.1950432810641828e+01
+-5.0818633374425843e+01
+-1.5180929269144912e+01
+1.4141006504740025e+01
+-3.7577941074683146e+01
+-1.5235715099408415e+01
+1.2001233459774955e+01
+-3.9721439831470519e+01
+-1.5128145027502093e+01
+1.5494397889181098e+01
+-3.6394925460533301e+01
+-1.6487469164027889e+01
+2.4355065509952553e+01
+-3.5371200166286137e+01
+-1.6435449219026015e+01
+2.5045906841972993e+01
+-3.4751643814584000e+01
+-1.6633787123513613e+01
+1.9338373309575960e+01
+-4.3183415781626920e+01
+-1.5222810978388781e+01
+2.1494864059777466e+01
+-3.3496706242207061e+01
+-1.4696079429892665e+01
+1.9725491694443416e+01
+-3.3065102383686359e+01
+-1.4609865531823854e+01
+1.1518597946831692e+01
+-3.9950597126653754e+01
+-1.5501490095593839e+01
+2.3590952757785267e+01
+-3.3615100317827881e+01
+-1.6318504244802735e+01
+2.6238597630122474e+01
+-3.5486737444714990e+01
+-1.3942010118438315e+01
+1.9219411934210392e+01
+-3.0922588193812800e+01
+-1.4129602061673831e+01
+1.6898014191671667e+01
+-3.3374621295787549e+01
+-1.4530766829764495e+01
+1.9516845526336482e+01
+-3.3915831265277603e+01
+-1.5249339174644442e+01
+2.4218103354372339e+01
+-3.3707070392703748e+01
+-1.4027303626353575e+01
+1.8873595754083095e+01
+-3.2536917004796877e+01
+-1.2332523065054369e+01
+3.9503492645429379e+00
+-3.7362195197534490e+01
+-1.3090355764875774e+01
+1.7470444104347180e+01
+-3.0822489651256650e+01
+-1.3479863968484379e+01
+1.8866231250090717e+01
+-3.0906898305613510e+01
+-1.4157777844435621e+01
+1.2549410433488619e+01
+-4.1142009074321244e+01
+-1.3597193754369094e+01
+1.9889680225856029e+01
+-3.1162323231430225e+01
+-1.4004063938161737e+01
+1.2709722217138177e+01
+-4.1583359122071165e+01
+-1.3366106314239506e+01
+1.6332116945493492e+01
+-3.4311196701098460e+01
+-1.1911646089428068e+01
+1.5874357862626008e+01
+-2.6950600310849506e+01
+-1.3819204678512065e+01
+1.3331887259299153e+01
+-4.0657035268585496e+01
+-1.3819204678512065e+01
+1.3331887259299153e+01
+-4.0657035268585496e+01
+-1.3774686790816517e+01
+1.9325636090152539e+01
+-3.4600388055895003e+01
+-1.4329453653241323e+01
+2.3951371648474471e+01
+-3.4026807735550911e+01
+-1.3659877997394727e+01
+1.3428420255034139e+01
+-4.0160767964445114e+01
+-1.3522594134907308e+01
+1.7537295868251306e+01
+-3.6878732600383003e+01
+-7.7191355923484499e+00
+-5.1984661267660268e+00
+-2.5634000561994895e+01
+-1.4176430931838134e+01
+2.5883704376686214e+01
+-3.3195152849489340e+01
+-1.4324652365944791e+01
+2.5828801494081940e+01
+-3.3958406604569241e+01
+-1.4985138681469532e+01
+2.7827504059636745e+01
+-3.5419963818645037e+01
+-1.3852547110229176e+01
+2.5421225767508954e+01
+-3.2940386170027331e+01
+-2.1420337601447699e+01
+4.9573222311261368e+01
+-5.7809633774427965e+01
+-1.1698459518206260e+01
+1.7800307534814479e+01
+-2.9417056160343350e+01
+-1.2746785274353892e+01
+1.0688398063625300e+01
+-4.3455642780584512e+01
+-1.2560892513162962e+01
+1.3048008491645323e+01
+-4.0754578509664739e+01
+-1.2535474127576929e+01
+1.7479660375100281e+01
+-3.5237840785767048e+01
+-1.2535474127576929e+01
+1.7479660375100281e+01
+-3.5237840785767048e+01
+-9.1826694927097208e+00
+-1.0594542707141347e-01
+-3.2309379246938789e+01
+-1.8354135263404519e+01
+4.1027199678919516e+01
+-4.8849019863160088e+01
+-1.8670046460040311e+01
+4.2287236692664976e+01
+-5.0778391369272391e+01
+-6.8678663531118751e+00
+-5.9261849850218837e+00
+-2.4449726918966569e+01
+-1.1955947925831431e+01
+1.7500889545942233e+01
+-3.3896049989240275e+01
+-8.7538081152023999e+00
+-4.9382670142072888e-01
+-3.1483000256896418e+01
+-8.9142578640622965e+00
+-3.7786506673009444e-02
+-3.2333466485493638e+01
+-1.4149251327528825e+01
+2.9655034610002257e+01
+-3.7359849176142731e+01
+-1.1775011137789795e+01
+1.5017981889965439e+01
+-4.0125297943829310e+01
+-1.1858993732670074e+01
+2.0399228297188898e+01
+-3.4541095792901785e+01
+-1.7823147804289448e+01
+4.3873803240211934e+01
+-5.0856652729826152e+01
+-8.2896209197547854e+00
+-2.3466072891022252e-01
+-3.1568041409031640e+01
+-2.0409323877301162e+01
+5.4054331760399677e+01
+-6.1955576824423289e+01
+-1.0620644782907876e+01
+7.2221405247538790e+00
+-4.2170847612506002e+01
+-1.1442436281617603e+01
+1.9158995905894901e+01
+-3.5184019598874741e+01
+-1.2062699853977611e+01
+2.5042940742832883e+01
+-3.3650034993340149e+01
+-1.2712512105158421e+01
+2.6631238388014957e+01
+-3.5691527392294560e+01
+-1.1330590558431410e+01
+1.2005692054906573e+01
+-4.4323239879947096e+01
+-8.8310612904027934e+00
+3.7900733654790200e+00
+-3.7084764138256638e+01
+-5.7140894767807708e+00
+-6.8319746276247200e+00
+-2.3175044184802520e+01
+-1.0922529820334217e+01
+2.0155352321723001e+01
+-3.5884958970887652e+01
+-1.0445905551221060e+01
+1.7254270676289458e+01
+-3.5764796716181863e+01
+-1.0713833087522040e+01
+1.9456135049681595e+01
+-3.5053727394848799e+01
+-1.5295479622434220e+01
+4.1270130922136936e+01
+-4.9366881857321658e+01
+-1.8674970836029907e+01
+5.5787217474855240e+01
+-6.4063800650352178e+01
+-8.1299185428497793e+00
+2.5205008209582100e+00
+-3.4964687460189765e+01
+-7.6426733528632687e+00
+1.6980810968497599e+00
+-3.4029779909294561e+01
+-5.2158790812792528e+00
+-6.3455893150637461e+00
+-2.1524442923879523e+01
+-4.8410609160641771e+00
+-9.8543914555925340e+00
+-2.2671097552677768e+01
+-1.1741661425560281e+01
+3.5704339572096174e+01
+-4.0872223996275459e+01
+-1.5128504783569072e+01
+4.6766037982963674e+01
+-5.3816431172662391e+01
+-9.6248706939665727e+00
+1.5080539735143329e+01
+-4.1235505521597794e+01
+-9.2688997388738272e+00
+1.2183579217945985e+01
+-4.3852542244368777e+01
+-1.3871515628042134e+01
+4.3515100235739972e+01
+-5.1574291054879232e+01
+-9.3584936627804964e+00
+1.6317594701185374e+01
+-4.1132890151961334e+01
+-4.3523672556748663e+00
+-1.0193122379915289e+01
+-2.2335523136116525e+01
+-6.7753431147974252e+00
+2.0243983107650396e+00
+-3.4884576715924283e+01
+-6.8413227017214231e+00
+2.0833741776147470e+00
+-3.5546754326013634e+01
+-9.3579788620462878e+00
+2.0731654234600480e+01
+-4.3923749807075126e+01
+-1.2863482707204398e+01
+4.3229517453472219e+01
+-5.1906558656666249e+01
+-8.7356624559870095e+00
+1.8608542857550368e+01
+-3.9056246513303940e+01
+-8.4831108064896448e+00
+1.8336800398470832e+01
+-3.6155401523482787e+01
+-8.7311336896426308e+00
+2.0502147342462411e+01
+-3.5971519724428489e+01
+-7.2207457422585097e+00
+6.4094015678012459e+00
+-4.0664411862549102e+01
+-1.3526286373933971e+01
+4.9660049858593176e+01
+-5.9692135240241448e+01
+-3.9068656459699027e+00
+-9.6258151158445635e+00
+-2.2239869780378939e+01
+-7.8072255102248125e+00
+1.4617904300124296e+01
+-4.4131031796154630e+01
+-3.7859274642663863e+00
+-9.3207991274308046e+00
+-1.9618185973930103e+01
+-8.0535686381455402e+00
+2.0947141207473255e+01
+-4.4526648769261122e+01
+-1.0751366215213428e+01
+4.3484556474359856e+01
+-5.2399607209509256e+01
+-7.8050667926163868e+00
+2.6746390327310419e+01
+-3.7789814209837289e+01
+-6.8753241228721480e+00
+2.0068049161161767e+01
+-3.8806273260814514e+01
+-3.1600250735223425e+00
+-7.9307726322577805e+00
+-2.1717171876193369e+01
+-5.9167441325883088e+00
+2.0172258228520235e+01
+-3.9768875979877365e+01
+-2.8893108608272584e+00
+-9.6119936857038599e+00
+-2.1748981074217415e+01
+-3.7448737846197280e+00
+-2.2210268915505432e-01
+-2.3858974548434631e+01
+-2.8714563173258671e+00
+-9.5255316270799710e+00
+-1.9310215405684350e+01
+-2.9103966999676278e+00
+-8.9971805130527880e+00
+-2.0054565349885785e+01
+-3.7751963554815298e+00
+3.4468838266858082e-01
+-2.4084856054340179e+01
+-4.5693959256545362e+00
+1.5349259117482703e+01
+-4.6314610758778386e+01
+-3.1980181409085078e+00
+-2.8473089235599289e+00
+-2.4147069971703775e+01
+-2.5803657901119577e+00
+-8.8101760676464949e+00
+-2.0436043525198087e+01
+-3.4980664362852671e+00
+2.4008159863693481e+00
+-2.6884239524280368e+01
+-2.4787363296783242e+00
+-9.5132526740447538e+00
+-1.9545199637809144e+01
+-3.1353601156582402e+00
+-1.1119880080677875e+00
+-2.1997196562257706e+01
+-2.5115271141011637e+00
+-8.3036501278428254e+00
+-2.1054393125450247e+01
+-3.2567361133882571e+00
+2.6216647476285617e+00
+-2.6812241515448239e+01
+-5.3799030375117782e+00
+3.1785726979617952e+01
+-3.9462757074760219e+01
+-3.0335440369809494e+00
+-1.3614913358793155e+00
+-2.1961607394061179e+01
+-3.1664887045672794e+00
+2.2853160663762577e+00
+-2.6806101602719689e+01
+-2.4314822483547669e+00
+-8.2754931432326035e+00
+-2.1095018073729349e+01
+-5.2577447453761046e+00
+3.6205301423805473e+01
+-4.4931806736593870e+01
+-2.4430158869674097e+00
+-7.6735941019615135e+00
+-2.1381174095074595e+01
+-2.3325199739165163e+00
+-8.9115958193659086e+00
+-2.0150268097080730e+01
+-3.5660894168245836e+00
+1.8168978360729827e+01
+-4.3834813659480332e+01
+-3.4230962440894896e+00
+1.7548164751088969e+01
+-4.4424511492631304e+01
+-2.2611270195999582e+00
+-7.8491902265796396e+00
+-2.1653655954224952e+01
+-2.2360069766641986e+00
+-8.8882180527797843e+00
+-2.0130831554540933e+01
+-3.1489696903893902e+00
+1.6286015377822256e+01
+-4.6607894322569571e+01
+-3.0529829643701447e+00
+1.8008365845110912e+01
+-4.5594632386259953e+01
+-2.6405634284698971e+00
+1.5722852260131615e+00
+-2.4361958941511023e+01
+-2.0661555526451738e+00
+-7.0379272553069621e+00
+-2.2439806450643403e+01
+-2.5850212366281182e+00
+3.2214496319440267e+00
+-2.7726985529417892e+01
+-2.5404402830454251e+00
+1.5746366900793378e+00
+-2.4267184791465848e+01
+-2.2316935007564833e+00
+1.7673741270371536e+01
+-4.6665738430986643e+01
+-2.2915796424510626e+00
+3.6808659908049162e+00
+-2.8357747420531371e+01
+-2.1678310562310861e+00
+1.8595607109381508e+01
+-4.6942358834034337e+01
+-2.8365874516545588e+00
+2.4026445656860144e+01
+-3.8959590990160720e+01
+-1.9343906622914178e+00
+2.0937167852471529e+01
+-4.1838980169251982e+01
+-1.9210289494332506e+00
+2.0829057577311531e+01
+-4.1463478650701070e+01
+-8.8535263980981493e-01
+8.2690103608899808e+00
+-4.4043401428784840e+01
+-1.2024935064326507e+00
+1.6944019008585641e+01
+-4.7773996087508834e+01
+-1.5041738500244117e+00
+-8.8965113063771337e+00
+-2.0095792693903654e+01
+-1.5198899572592837e+00
+3.7691583157637147e+00
+-2.7660005245057214e+01
+-1.3010247896269784e+00
+-8.9476594919371628e+00
+-2.0363687506336206e+01
+-3.9074071910054553e-01
+1.8421164470464959e+01
+-4.7894482716718713e+01
+-1.0359471720125355e+00
+2.0929831535327370e+01
+-4.2751193667733162e+01
+-1.3847125853109314e+00
+2.4871296655648997e+01
+-4.0979485059582842e+01
+-4.0038468149910672e-01
+1.8723609168684682e+01
+-4.6221408448072587e+01
+-1.7734217741280505e+00
+3.1652355484530226e+01
+-4.0441444013442414e+01
+-1.2102583398789970e+00
+-8.6813915232091983e+00
+-2.0437776986033697e+01
+-6.7725368739469338e-01
+2.1088703444894232e+01
+-4.3332151798047711e+01
+-1.3102480469566549e+00
+3.3977099925388387e+01
+-4.3626307130790025e+01
+-1.0873367988389264e+00
+-8.7196461036161725e+00
+-2.0516090875509207e+01
+-1.3725348313440282e+00
+3.3541224713481057e+01
+-4.2127451747274542e+01
+-1.2911300133287880e+00
+3.4472086882453617e+01
+-4.2330759391341495e+01
+5.4495659979966937e-01
+9.4808584243058274e+00
+-4.4902222010094107e+01
+-1.2339371614615160e+00
+3.2673539707001034e+01
+-4.1011187834633780e+01
+-1.1659885397100718e+00
+3.1572196819153653e+01
+-4.0555764183988728e+01
+-9.2391541461182092e-01
+3.2139391840389074e+01
+-4.2431274552728475e+01
+-1.0798523813992797e+00
+3.2652046442123762e+01
+-4.1662462029479194e+01
+7.8118961856781854e-01
+1.7581447983517851e+01
+-5.0084806250313726e+01
+-9.5182743660430191e-01
+-8.4260442041862706e+00
+-2.0894506017012734e+01
+-4.1231926404439309e-03
+2.1325819008301405e+01
+-4.5011221031210660e+01
+-1.3510354534412770e+00
+2.7613407052681431e+00
+-2.2739477874055936e+01
+-9.5533634022427816e-01
+-8.4185649792261117e+00
+-2.0788851009396115e+01
+-9.2551049288048526e-01
+-8.3248524690287198e+00
+-2.0923493259768954e+01
+-8.4746214828482114e-01
+-8.3627530961461574e+00
+-2.1017453654711019e+01
+-8.1376088664557567e-01
+3.2511354115724998e+01
+-4.1696296136840651e+01
+-4.2640915251361389e-01
+3.6307460193695370e+01
+-4.6182704846836373e+01
+-7.0991161453154972e-01
+2.9830169467481682e+01
+-4.0533332142857326e+01
+-5.8500937699790256e-01
+3.4719345902935245e+01
+-4.2903555439500870e+01
+-5.5009130863516464e-01
+3.4491738589714856e+01
+-4.2548555324524216e+01
+-5.0967304413211623e-01
+3.3628136226514329e+01
+-4.2190610931798325e+01
+-1.1372671834534431e+00
+-9.0073820523111425e-01
+-2.0947818922916383e+01
+-4.7789500349558289e-01
+3.0675998726092491e+01
+-4.0891509092149960e+01
+1.5456753004065369e+00
+1.2002417068847581e+01
+-4.9032859793930285e+01
+2.6369541905849314e-01
+2.5426880209953080e+01
+-4.3154871913498859e+01
+1.0197053902883471e+00
+1.9393341523346987e+01
+-4.6812693610707541e+01
+-2.8452940297757162e-01
+3.0434110802360337e+01
+-4.1005516900515985e+01
+1.4071517668053052e-01
+3.5153939439482450e+01
+-4.5662263710455051e+01
+-1.4393502105474296e-01
+3.0854665028348691e+01
+-4.0957628657059871e+01
+-6.0939597142002554e-02
+3.5584886940013554e+01
+-4.3657029903955156e+01
+5.8191634429099504e-01
+4.0249076722260739e+01
+-4.9033891018255112e+01
+1.7201023963416151e+00
+1.0141893156812230e+01
+-4.6004730426234033e+01
+5.0720302667542394e-01
+3.3281982393553264e+01
+-4.4000712995692560e+01
+1.4533884517560900e+00
+4.7344742771318600e+01
+-5.5587313338728634e+01
+8.0083160732342329e-01
+3.7584829142247777e+01
+-4.7322830308721414e+01
+2.2098528230406950e-01
+2.8177784786780268e+01
+-4.0142072878851920e+01
+2.2098528230406950e-01
+2.8177784786780268e+01
+-4.0142072878851920e+01
+7.5813688332908669e-01
+3.3181432432617498e+01
+-4.4881109009142961e+01
+1.8036753659720191e+00
+1.8244720067856118e+01
+-4.7609410650989240e+01
+7.5334411029230886e-01
+3.1604773381521511e+01
+-4.3956915023251852e+01
+8.1805905005257695e-01
+3.4455974018713107e+01
+-4.5432495641403115e+01
+6.0880739519394900e-01
+3.6990533125689140e+01
+-4.5309090870920969e+01
+7.9175419871441954e-01
+3.7077491101900058e+01
+-4.5898333107253421e+01
+-7.7499890211803790e-01
+-5.0425754704507775e-01
+-2.1158644743934982e+01
+9.0603271436301169e-01
+3.1692757199669554e+01
+-4.4009945900259289e+01
+1.2810800468331049e+00
+2.2549410308386452e+01
+-4.3573692205266610e+01
+6.0920134126327719e-01
+3.5011361684411625e+01
+-4.3101643067923746e+01
+8.0958475921641115e-01
+3.2744433163244835e+01
+-4.3351009259478360e+01
+6.7292027733640714e-01
+3.4825655502908873e+01
+-4.3401795076610647e+01
+2.1814078517802651e+00
+9.8232498310754881e+00
+-4.5954112815194208e+01
+1.6753070014154412e+00
+2.1199682998984468e+01
+-4.5605189369552463e+01
+6.6920183034161351e-01
+3.2961034285222631e+01
+-4.2382479050479063e+01
+1.4226908893924337e+00
+4.0668117286564744e+01
+-4.9560809946319196e+01
+6.7261828484614927e-01
+2.7736864512630596e+01
+-4.0303720153715354e+01
+5.9413521804948677e-01
+2.7621021949663156e+01
+-3.9984753326489532e+01
+1.3337612941959718e+00
+3.6729237308753561e+01
+-4.6901474406635465e+01
+1.1548965641272300e+00
+3.6942470149884208e+01
+-4.5720375704579126e+01
+-6.9966231348319297e-01
+1.1793138653493089e+00
+-2.1274289918657427e+01
+9.8025592046313670e-01
+3.5228277934272164e+01
+-4.3335432052213868e+01
+1.1231422429676270e+00
+3.2622202521087125e+01
+-4.3141573355816206e+01
+1.6247780710763402e+00
+3.6565819976101864e+01
+-4.7080307636184465e+01
+1.6247780710763402e+00
+3.6565819976101864e+01
+-4.7080307636184465e+01
+-6.9835243824127202e-01
+-1.3550610898470554e+00
+-2.0097657639453548e+01
+2.8348347183739748e+00
+1.2085220921870420e+01
+-4.8470436973535598e+01
+1.3169448971122291e+00
+3.3102947992917287e+01
+-4.3323683521245798e+01
+-5.2915638098686490e-01
+1.8197557648367926e+00
+-2.2013876278538422e+01
+1.3958128607834603e+00
+3.6462019632784070e+01
+-4.4784533771368025e+01
+-5.7478914618524501e-01
+3.9759473925445354e-01
+-2.0934437271832035e+01
+-4.4082239826445935e-01
+2.9255135199660440e+00
+-2.2793893309218191e+01
+3.1130813605623997e+00
+2.6907176242807807e+01
+-5.0525666712193839e+01
+-6.0884525071026785e-01
+-1.1497175257894097e+00
+-2.0289575653247976e+01
+1.7387253647635785e+00
+3.2330524661523711e+01
+-4.4867733431938902e+01
+1.7387253647635785e+00
+3.2330524661523711e+01
+-4.4867733431938902e+01
+1.9396934736726767e+00
+3.6267933125470741e+01
+-4.6943626748291237e+01
+2.6823596340820881e+00
+9.1103262497437676e+00
+-4.4423705006377311e+01
+2.1786109061214245e+00
+2.2368511474804279e+01
+-4.3912526693528648e+01
+1.5491381851335331e+00
+2.8755164302563873e+01
+-4.1657088738903177e+01
+1.4612475140885532e+00
+2.7876042118571672e+01
+-4.0208269531021905e+01
+2.5627817415801442e+00
+2.1382053780641769e+01
+-4.5782336693920193e+01
+-4.2871469783402238e-01
+1.7814757042367657e+00
+-2.1265864207212591e+01
+1.9484004600391287e+00
+3.7225571146658368e+01
+-4.5412524049611953e+01
+-3.3135157977696394e-01
+-8.4664101829995086e+00
+-1.9525370058374570e+01
+1.9326624214820847e+00
+3.6405816150850164e+01
+-4.4375527729252497e+01
+3.3870431651847430e+00
+1.1395286143232916e+01
+-4.7334181281415191e+01
+-3.4730296757468510e-01
+1.1838990199959800e+00
+-2.0939801034223432e+01
+4.6377420331837849e+00
+1.7860703730575420e+01
+-5.5715666345563605e+01
+3.4559154957710128e+00
+1.0514544826552699e+01
+-4.5954042036437393e+01
+3.4330904543494634e+00
+1.0492387922170575e+01
+-4.5991215643184546e+01
+2.4622288462469766e+00
+2.3364086150432140e+01
+-4.2963083439972650e+01
+1.8461214106194923e+00
+2.7027590605254922e+01
+-4.0401747147570568e+01
+1.9381691906651706e+00
+3.3227861670529336e+01
+-4.2700079566539038e+01
+3.2704556154903761e+00
+4.2442657704708537e+01
+-5.2331600602645700e+01
+2.3465455330421068e+00
+3.6602317401369483e+01
+-4.4647025833596381e+01
+3.6363170246523517e-02
+-3.8627316102680611e+00
+-2.1159743311961982e+01
+3.2752966313611087e+00
+2.2055821552959593e+01
+-4.5935016227046241e+01
+2.7605106591568771e+00
+3.0825481609248691e+01
+-4.4494636393192707e+01
+2.6549006232087553e+00
+2.8931872374950554e+01
+-4.3289289989482754e+01
+2.6965509128703626e+00
+3.7621631629798969e+01
+-4.5997962154870116e+01
+2.6562976758114116e+00
+3.7106414061499834e+01
+-4.5250578988364815e+01
+2.7393040799462787e+00
+3.6897510497502118e+01
+-4.4981385154500458e+01
+3.0901085309627749e+00
+3.5492591063652249e+01
+-4.5792746616815542e+01
+2.4648984108372618e-01
+-5.6806851570032233e+00
+-2.1602305891534499e+01
+-1.0043057716915815e-01
+1.6382643917524551e+00
+-2.0898496895353144e+01
+3.8231634390249551e+00
+1.0079696696378004e+01
+-4.5181564938246517e+01
+3.8730924274038503e+00
+2.1239562240526812e+01
+-4.7351399324714897e+01
+3.0862824779354856e+00
+3.7782660402534951e+01
+-4.6201596283555027e+01
+3.0970854871404141e+00
+3.7780697925347106e+01
+-4.6088628322061247e+01
+-5.9237369346269081e-02
+1.1419080777119051e+00
+-2.0683395843198713e+01
+3.2465307664204928e+00
+2.4359119195415449e+01
+-4.3486939559893280e+01
+3.2909301763053009e+00
+3.0035890337764325e+01
+-4.4280053857247083e+01
+2.8578618847268995e+00
+2.8580767385964979e+01
+-4.1319099097519491e+01
+3.2013315611918212e+00
+3.0294454146439140e+01
+-4.3830410832900867e+01
+3.0293453375533756e+00
+2.9574611784507560e+01
+-4.2350159238395484e+01
+4.3760462182958442e+00
+4.1759368125610983e+01
+-5.1347370331884051e+01
+2.6322900226502399e-01
+2.7200810289429942e+00
+-2.2159614094377755e+01
+4.5649942152273421e-01
+-5.8246479177458523e+00
+-2.1391668278829584e+01
+4.3466231152705177e+00
+9.3323284700728006e+00
+-4.4572282246620567e+01
+3.9757872219918844e+00
+3.1272275199629306e+01
+-4.4735653539830643e+01
+4.3966540381655683e+00
+2.3431588986162918e+01
+-4.5976472803495277e+01
+6.1053689329312224e+00
+1.7653666917703749e+01
+-5.4124844978872062e+01
+1.4692121710078909e-01
+-8.3357626757955416e-01
+-1.9786498324384649e+01
+3.5521110401034588e+00
+3.0031908097661006e+01
+-4.2062700801908349e+01
+3.7702591502864466e+00
+2.8469096131744568e+01
+-4.2283790212331887e+01
+4.0862481897338903e+00
+3.4259311595027583e+01
+-4.4894353928842854e+01
+6.2932536367541791e-01
+-8.1512118901432054e+00
+-2.1015507079726305e+01
+7.0968921489149670e+00
+2.3785270250923286e+01
+-5.8254584043176827e+01
+4.8904784611411749e+00
+3.4351012166719137e+01
+-4.7699673993233517e+01
+4.6913246343177786e+00
+2.4199536310259784e+01
+-4.4908264642846710e+01
+4.6535980342662135e+00
+3.0447382011554517e+01
+-4.5068405302513781e+01
+4.4183455049442838e-01
+4.6882798802451919e-01
+-2.0297191829398574e+01
+5.2764237393588100e+00
+2.3097823660470006e+01
+-4.6828200957924672e+01
+4.1892224234112767e+00
+2.8772289823682655e+01
+-4.1863069125820253e+01
+4.3305905815723040e+00
+2.9981621885077598e+01
+-4.2706277921364148e+01
+4.6676416891554284e+00
+3.1009205410749733e+01
+-4.4165807880029369e+01
+4.6676416891554284e+00
+3.1009205410749733e+01
+-4.4165807880029369e+01
+5.1997727206018129e-01
+-6.0240927484516404e-01
+-2.0270659918949548e+01
+5.5826881272456790e+00
+2.9624721143868772e+01
+-4.8034180999144745e+01
+5.2700404997264672e+00
+3.1037493626065238e+01
+-4.5549465124114136e+01
+6.4873101311305357e+00
+2.2382620146714128e+01
+-5.0226617762023722e+01
+5.5688337688414462e+00
+2.2111205590254695e+01
+-4.6526003535654915e+01
+9.6193704670371905e-01
+-8.3342140836230794e+00
+-2.0990127607650383e+01
+5.7528291533957248e+00
+2.2084559671770279e+01
+-4.6467905436628079e+01
+6.7280881868901221e-01
+1.3562178846339630e+00
+-2.0405317501772945e+01
+6.7172633617763573e+00
+2.2395543506926025e+01
+-5.0240047208367024e+01
+5.6909286739106169e-01
+-3.6928537241414969e+00
+-1.9534478199719739e+01
+6.0427339065877543e+00
+2.2491281956808212e+01
+-4.7353046152065495e+01
+6.1117069395422927e+00
+3.4521873368859602e+01
+-4.8405942560311125e+01
+6.4685512293691065e+00
+2.2430946332094607e+01
+-4.8665319638250331e+01
+5.4192487906357636e+00
+2.5713195672321593e+01
+-4.4024809056854075e+01
+5.9178857008421470e+00
+3.1474546393800271e+01
+-4.6597635461992581e+01
+7.8444999516106628e-01
+1.1451784768156443e+00
+-2.0287773810554807e+01
+1.1955898536791463e+00
+2.0217922356736877e+00
+-2.2237457954013994e+01
+5.7483731519975629e+00
+2.5849018023346531e+01
+-4.4480946206847200e+01
+8.4411982493311544e-01
+1.2602598803765105e-01
+-2.0130672257078782e+01
+6.4127910155158452e-01
+-2.6289163635657409e+00
+-1.9209543856674792e+01
+6.3097452524196616e+00
+3.1643907290685135e+01
+-4.6832829091772204e+01
+5.8900347935937107e+00
+3.3168160347944955e+01
+-4.5177831013911344e+01
+7.2520604222091078e+00
+3.8855647828359139e+01
+-5.1188083197320836e+01
+5.8877148047381027e+00
+2.6070314928578593e+01
+-4.4279209223419059e+01
+1.0280502950522492e+00
+1.1995905109777072e+00
+-2.0428148347873851e+01
+6.2089356358498300e+00
+2.7261695826204420e+01
+-4.5126443991955739e+01
+1.1291398600560456e+00
+5.6335981029246185e-01
+-2.0937601656536845e+01
+6.1695763074594723e+00
+2.7108179264196117e+01
+-4.4519832651996950e+01
+7.5823348826899926e+00
+3.7828286069304490e+01
+-5.1166153514757653e+01
+1.0157486902684560e+00
+1.7752412293752204e+00
+-2.0235796586513317e+01
+6.0086131676787105e+00
+2.9569450423620179e+01
+-4.3484803612967660e+01
+6.0086131676787105e+00
+2.9569450423620179e+01
+-4.3484803612967660e+01
+8.3890967118779667e+00
+4.4142338354959577e+01
+-5.2870830081035123e+01
+7.3153956498802506e+00
+3.2543647345563691e+01
+-4.8061344656647499e+01
+7.9421620262141888e+00
+3.7288214317983247e+01
+-5.0934403027737048e+01
+8.7777772945339727e+00
+2.0336804886106489e+01
+-5.3503355365198431e+01
+1.6900418518333742e+00
+-8.2616574989782663e+00
+-2.1985829353023576e+01
+6.5580804369112871e+00
+2.9772455197432873e+01
+-4.3313095711345582e+01
+7.0514556798788774e+00
+3.3010242648812394e+01
+-4.5623261286411250e+01
+7.0514556798788774e+00
+3.3010242648812394e+01
+-4.5623261286411250e+01
+6.9991600906070612e+00
+3.2185894307225503e+01
+-4.5155193129912966e+01
+6.9991600906070612e+00
+3.2185894307225503e+01
+-4.5155193129912966e+01
+9.3453753766450038e+00
+2.1011763463629144e+01
+-5.4307048179504712e+01
+8.8000900680592711e+00
+3.8040662866914111e+01
+-5.2007886452924836e+01
+8.2352994841347193e+00
+3.4249702783921258e+01
+-4.9493528480302167e+01
+7.4617895941992636e+00
+3.4065616300776448e+01
+-4.6430367366168447e+01
+1.0564693121834858e+00
+-2.7853702479625442e+00
+-1.8890086020947436e+01
+1.6013961313868132e+00
+-2.6112360639902010e+00
+-2.0731823241002406e+01
+7.5757484007497427e+00
+2.7456889648785751e+01
+-4.5548757558929204e+01
+8.4766454418248198e+00
+3.4786967435231453e+01
+-4.8786891923197004e+01
+1.8340697028640343e+00
+-1.5925760700513729e+00
+-2.0914811986036430e+01
+1.8340697028640343e+00
+-1.5925760700513729e+00
+-2.0914811986036430e+01
+8.3399322521412174e+00
+1.0127376659171071e+01
+-4.6293594904264111e+01
+1.0162551266754285e+01
+3.6103872928408677e+01
+-5.1918778906074238e+01
+8.4524731248865912e+00
+1.0060246201999814e+01
+-4.5733564866986001e+01
+8.6159724223708434e+00
+2.6355061366665225e+01
+-4.5415552081037653e+01
+1.5668644284766198e+00
+-6.7526972166093047e-02
+-1.9079867902564899e+01
+1.0491097837315708e+01
+2.3545506600133699e+01
+-5.0034971924182344e+01
+9.1185743352328110e+00
+2.7632004666168118e+01
+-4.5132131462846829e+01
+2.5603174101033819e+00
+-3.1417824594759125e+00
+-2.1781445759902439e+01
+1.1006261994007385e+01
+2.5850215843064824e+01
+-4.8207184150818890e+01
+1.1534913128984364e+01
+2.7503500935940639e+01
+-4.9345821685274203e+01
+1.1828100127920857e+01
+2.7140534260351803e+01
+-5.0136745693275827e+01
+-1.2141664306201349e+01
+2.0198016693927023e+00
+-7.3128093333218205e+00
+-2.4636205038310738e+01
+3.4501531457349106e+00
+-3.4938066784419590e+01
+-5.5356054932304474e+01
+4.9111588862741677e+01
+-8.8093475216305805e+01
+-4.9035332386342425e+01
+3.0602938280071616e+01
+-8.5947568334425057e+01
+-5.1246050109375709e+01
+4.2437735648505608e+01
+-8.3814234532226806e+01
+-4.0829343368561396e+01
+4.0069867858995863e+01
+-6.4431106038377493e+01
+-4.4155909478491026e+01
+4.7358420664930236e+01
+-6.8707466078373017e+01
+-4.5265835445120082e+01
+3.7465848518079220e+01
+-7.7741912430465305e+01
+-3.4843985043068272e+01
+3.3818494123860091e+01
+-5.4335597792463766e+01
+-4.5854352723504938e+01
+4.2286043280764027e+01
+-7.6672547731043892e+01
+-4.3712145140643322e+01
+4.4653586648181140e+01
+-7.0893494311721213e+01
+-4.3678758261066093e+01
+3.5578415334689453e+01
+-7.7043185522242581e+01
+-3.6383090358216990e+01
+3.6477139315361079e+01
+-5.8277714710245490e+01
+-3.3774883192334379e+01
+2.7243399686008281e+01
+-6.1657497882652613e+01
+-3.3008458979963713e+01
+2.8033341039420275e+01
+-6.0797237993181575e+01
+-2.7248357078817932e+01
+2.8307193692106786e+01
+-4.6453097077829426e+01
+-3.2015514434684071e+01
+3.6935549892292322e+01
+-5.3469288723712708e+01
+-2.9386361020009513e+01
+2.9737766073215361e+01
+-5.0950476212188782e+01
+-2.5619100914260340e+01
+2.5078810406896757e+01
+-4.3285935711985992e+01
+-3.0353274531940443e+01
+2.9694551676752500e+01
+-5.3752953673317137e+01
+-2.6875675289123915e+01
+3.0121863924055251e+01
+-4.4853203181786299e+01
+-2.7060310048605071e+01
+2.5741258990954179e+01
+-4.8408109957389549e+01
+-4.0676932765601343e+01
+5.5017407486837264e+01
+-6.8264136954295537e+01
+-2.3963415364119406e+01
+2.6488328664137132e+01
+-3.9859167875253014e+01
+-2.5232583002429248e+01
+2.4580046657743122e+01
+-4.4852385243199599e+01
+-3.0159188127752337e+01
+3.7289748539811448e+01
+-5.0684312149750056e+01
+-2.2139386343070299e+01
+2.0138918502777102e+01
+-4.1484946020278691e+01
+-2.2914763948735697e+01
+2.1931076210109513e+01
+-4.2743596717762536e+01
+-2.2914763948735697e+01
+2.1931076210109513e+01
+-4.2743596717762536e+01
+-2.0508023461627584e+01
+1.9856347842976959e+01
+-3.7667202684139824e+01
+-2.9215170532884823e+01
+4.3580570890903992e+01
+-5.2663783759955166e+01
+-1.7375027628491260e+01
+1.9286949136831716e+01
+-3.2275670637070341e+01
+-1.3210687475663301e+01
+-4.1262754000162533e-01
+-3.2732285251715908e+01
+-1.8659998847666003e+01
+2.4049003009500410e+01
+-3.4534064999088116e+01
+-1.2854009913652272e+01
+-6.6531078456144122e-01
+-3.2143502732782203e+01
+-1.6984968645101514e+01
+1.0210868882963998e+01
+-3.9649229107449820e+01
+-1.6552878267427889e+01
+1.1824273250087320e+01
+-3.8425709639814187e+01
+-2.3697322128594880e+01
+3.6049676089069237e+01
+-4.6764090338658747e+01
+-2.3598370600900960e+01
+3.6263644106514064e+01
+-4.6347683581699528e+01
+-1.7501480544563567e+01
+1.3018669837324149e+01
+-4.2183129039981836e+01
+-2.2413642647423050e+01
+3.4719448076093151e+01
+-4.3914932054561788e+01
+-1.6292322556076925e+01
+1.6490719918979334e+01
+-3.4580013210039581e+01
+-2.2967084899355054e+01
+3.4884358718054585e+01
+-4.6383946094037178e+01
+-1.6227767288423639e+01
+1.5875087006756424e+01
+-3.5347405230119975e+01
+-2.2539704087363369e+01
+3.5134480807830109e+01
+-4.5518898778987825e+01
+-2.1753712228375974e+01
+3.4580069683611519e+01
+-4.3745130041179287e+01
+-2.2322452511706043e+01
+3.4850776038476475e+01
+-4.5887830504215522e+01
+-2.2791506627799279e+01
+3.5919367950646979e+01
+-4.7196413401444943e+01
+-2.3943144945839766e+01
+3.8758110339320218e+01
+-5.0198914042579794e+01
+-2.2289344952408808e+01
+3.5155853431328026e+01
+-4.5731504235588353e+01
+-2.2468413936181573e+01
+3.6557895231962242e+01
+-4.7314416851891579e+01
+-1.5726945556036831e+01
+1.4256015471589363e+01
+-3.7358079391073368e+01
+-1.5297804151307215e+01
+1.3002342856262299e+01
+-3.7642927914423218e+01
+-2.1620441475084810e+01
+3.5495026859117054e+01
+-4.5484392467519832e+01
+-1.5099775921334015e+01
+9.7198795556867168e+00
+-4.0327596832570919e+01
+-1.3512679555176490e+01
+3.8866518163100912e+00
+-3.7154074012193171e+01
+-1.5480602605578987e+01
+1.6074002236388768e+01
+-3.5877975270059338e+01
+-1.5699084012481464e+01
+1.0799232516023419e+01
+-4.2067868709215197e+01
+-1.5885502298879668e+01
+2.2216865162133210e+01
+-3.2954590088129379e+01
+-1.5704917788868775e+01
+1.2888725433345417e+01
+-4.0537840635937222e+01
+-2.2955027712634845e+01
+3.9676536234473460e+01
+-5.0514653967723923e+01
+-1.5206450786896964e+01
+1.2399924166549734e+01
+-4.0101987315552421e+01
+-8.2410594844264402e+00
+-6.0695250918254233e+00
+-2.4156073983427511e+01
+-1.5161882787750738e+01
+1.2932474944659678e+01
+-4.0766529040141286e+01
+-1.4710421855524999e+01
+1.9616083618230302e+01
+-3.3401288356096401e+01
+-1.4518596509625651e+01
+1.9274635370047829e+01
+-3.2825556119295356e+01
+-1.4458448314768827e+01
+1.6885270174781162e+01
+-3.4732515293311195e+01
+-1.5230263910367773e+01
+2.5754079969046632e+01
+-3.4516624980468400e+01
+-7.0831891881636846e+00
+-6.8868599917107645e+00
+-2.3077575445548618e+01
+-1.3387788316062515e+01
+1.9533338136118509e+01
+-3.4954878495419145e+01
+-7.4968010584219043e+00
+-5.1419101801247438e+00
+-2.4537811775112296e+01
+-2.2252154906082470e+01
+5.1468544599598005e+01
+-5.8965356977268783e+01
+-1.2729467887272531e+01
+1.9281294063219303e+01
+-3.2812277524550034e+01
+-9.0269786248649133e+00
+-5.9706572550431505e-02
+-3.2126978968097546e+01
+-8.8916671030658954e+00
+-4.1142204626578055e-01
+-3.1766738601027580e+01
+-1.1997413460941564e+01
+1.6805835087361473e+01
+-3.8168338308814661e+01
+-1.3586298774270034e+01
+3.0349723373720586e+01
+-3.6948997131343546e+01
+-9.0506210421860516e+00
+2.5431007037544942e+00
+-3.4926013735048770e+01
+-1.1730623629765434e+01
+2.0359725741435820e+01
+-3.5525784166998491e+01
+-8.6755178707126479e+00
+2.2719112648147122e+00
+-3.5168885231305723e+01
+-5.3884965330948900e+00
+-9.9721896628361968e+00
+-2.3161123293557765e+01
+-5.9542872022964319e+00
+-6.8089252985114923e+00
+-2.4642600216708058e+01
+-8.3720574552921292e+00
+2.0430193749104113e+00
+-3.4584055937046266e+01
+-1.0694599142700538e+01
+1.4062641676074310e+01
+-4.1290632007575695e+01
+-1.0661498705105945e+01
+1.4444372534945412e+01
+-4.2230145021144629e+01
+-5.3316605123359082e+00
+-7.6180866744716580e+00
+-2.2084544335806836e+01
+-1.0615296243353816e+01
+2.1012742398634956e+01
+-3.5181760940694353e+01
+-1.0297044961070059e+01
+1.7580914299833566e+01
+-3.8625361713845770e+01
+-1.0260603671441588e+01
+1.4276541373997166e+01
+-4.3339517732252006e+01
+-9.0474439906274728e+00
+1.1255085457144192e+01
+-4.7912485339919755e+01
+-8.5529284566634196e+00
+1.4999871307410608e+01
+-4.3348556908326138e+01
+-1.2323579924474302e+01
+3.6096345235995976e+01
+-6.4536790164717530e+01
+-8.3280359402077515e+00
+1.4156266973513434e+01
+-4.3747506964799811e+01
+-3.8917001530375659e+00
+-9.0372796909382931e+00
+-2.0272915490323076e+01
+-8.2539765448749520e+00
+2.0752052295387077e+01
+-3.5863655225323221e+01
+-7.5715632214867146e+00
+1.9491342565704262e+01
+-4.0110210966738777e+01
+-6.9376989874348638e+00
+1.5876907345117161e+01
+-4.4815797179583818e+01
+-7.5555803809886717e+00
+2.5277485964169223e+01
+-3.7795521349738344e+01
+-6.8159025095336920e+00
+1.6785672459857068e+01
+-4.6495027856696893e+01
+-6.7403928418867993e+00
+1.8840916281146651e+01
+-4.0540603478330496e+01
+-3.2509603751250031e+00
+-8.9474274800195897e+00
+-2.0125064625618851e+01
+-3.2509603751250031e+00
+-8.9474274800195897e+00
+-2.0125064625618851e+01
+-3.1875347204209628e+00
+-9.0718547710625526e+00
+-2.0241848439822409e+01
+-3.1816258672643754e+00
+-8.5228849020691744e+00
+-2.2428471297748953e+01
+-6.3526816500859553e+00
+2.2284914073687652e+01
+-3.7320214090648896e+01
+-3.1322847590170744e+00
+-7.6994088113213808e+00
+-2.2109816702128740e+01
+-3.1396680644752255e+00
+-8.1180131603789203e+00
+-2.1282823181216784e+01
+-3.5783003829493389e+00
+-2.3394923586572314e+00
+-2.4458023540720745e+01
+-5.2931654468307716e+00
+1.6175261585059594e+01
+-4.4518084818307727e+01
+-2.7615738384291757e+00
+-9.1342778987189561e+00
+-2.0024514034068943e+01
+-2.7866505042469312e+00
+-9.4291067334741818e+00
+-1.9415175178149266e+01
+-3.5584810193315040e+00
+-5.4816412923898050e-01
+-2.2792455434181779e+01
+-4.5371814259511236e+00
+1.6729558561056184e+01
+-4.6408434412151301e+01
+-4.5322384621585980e+00
+1.6309790238430434e+01
+-4.5265534627613910e+01
+-3.3747188834910493e+00
+-2.2576270797140732e-01
+-2.2708826535628944e+01
+-2.6202974565658321e+00
+-8.3038900891098155e+00
+-2.1048296628809549e+01
+-3.2857447366923647e+00
+1.8303242843896097e+00
+-2.5624013601721806e+01
+-3.2769810293309884e+00
+1.9956110434650958e+00
+-2.6059684395953624e+01
+-2.5391467451644254e+00
+-7.8583186764664017e+00
+-2.1689941461358810e+01
+-2.3494503476478532e+00
+-1.0163899431400282e+01
+-2.1130172099465451e+01
+-2.4167958150518878e+00
+-9.5443869330800233e+00
+-1.9545176612904321e+01
+-2.5063719744805808e+00
+-8.1331636686873736e+00
+-2.1299323425379026e+01
+-3.0360421327274532e+00
+-1.4509491911053722e+00
+-2.1531233145141456e+01
+-3.7711770119377714e+00
+1.7768507712389994e+01
+-4.4732205115088519e+01
+-3.6250639867758849e+00
+1.6914246986605011e+01
+-4.5812474822212707e+01
+-2.3610029452737917e+00
+-7.7544281528398162e+00
+-2.1899496075445544e+01
+-2.1998736169907871e+00
+-9.1833622782789952e+00
+-1.9674998361416662e+01
+-2.2564788415368349e+00
+-8.2755516601075332e+00
+-2.0382420804302207e+01
+-2.0742108536482378e+00
+-8.1262867725896797e+00
+-2.2190545099206865e+01
+-2.6545137207101850e+00
+2.0922946653197436e+00
+-2.5398892947853120e+01
+-2.2853091568435309e+00
+-3.5388401972102379e+00
+-2.2829204081547346e+01
+-1.5162775464637011e+00
+1.7980321218418371e+01
+-4.8128261609814750e+01
+-1.6554655529770870e+00
+1.8406094614199496e+01
+-4.5665778313728779e+01
+-2.4759367333575324e+00
+2.4434928656221164e+01
+-3.9874362602466171e+01
+-2.6816112360135635e+00
+2.9547017432225569e+01
+-4.0803589593886009e+01
+-1.4853448224409416e+00
+-8.4870306795698767e+00
+-2.0720418905316361e+01
+-1.4238930330239066e+00
+-8.4213961226976863e+00
+-2.0835111437294326e+01
+-1.5585789534941066e-01
+1.4479301988155065e+01
+-5.2389879580536423e+01
+-1.2538670289141056e+00
+-9.6032784609235602e+00
+-2.1490066831865516e+01
+-1.3537669577267053e+00
+-8.4752187024142316e+00
+-2.0750057354582662e+01
+-1.3237615980651602e+00
+-8.9114169588100225e+00
+-2.0266372116641527e+01
+-1.2636886948851387e+00
+-8.2986620035531509e+00
+-2.0963145793504545e+01
+-1.2188911270477751e+00
+-8.8702777893472557e+00
+-2.0537714712364409e+01
+-1.1315690329620920e+00
+-8.8347744424410362e+00
+-2.0560247394759664e+01
+-1.1071234794486204e+00
+3.3895695458921679e+01
+-4.4344370663729116e+01
+-1.0594639603957829e+00
+3.7781106928907775e+01
+-4.6647919081441884e+01
+-1.4039219902269788e+00
+3.0400164302201111e+00
+-2.3928095452166751e+01
+-1.2419995850129055e+00
+3.0246800760391690e+01
+-3.9970200767780909e+01
+5.6212256343649769e-01
+1.7564555635083309e+01
+-4.9584327977115507e+01
+-1.2882651845514310e+00
+2.0401721514987345e-01
+-2.2430189394345536e+01
+-1.0456443310185752e+00
+2.9678666622911120e+01
+-4.0037949961907444e+01
+-1.0515660576364978e+00
+3.2554803459711906e+01
+-4.1395031236686918e+01
+-8.3746313115602644e-01
+3.6022164099122485e+01
+-4.4627905202524971e+01
+-3.1377640515115941e-02
+4.1222582005750255e+01
+-5.0041271061027629e+01
+-8.6204864776004653e-01
+-8.4182660321733636e+00
+-2.0767198625734064e+01
+-5.7553185248677352e-01
+3.1819484558082802e+01
+-4.1459299416003581e+01
+-5.7553185248677352e-01
+3.1819484558082802e+01
+-4.1459299416003581e+01
+-7.7073808440427349e-01
+-8.3834019515242719e+00
+-2.1074565883890422e+01
+-1.4084665141192923e-02
+2.3676790313835287e+01
+-4.1350475389055319e+01
+3.4044328366476229e-01
+2.3952866838270115e+01
+-4.4174928292673684e+01
+1.7735282862933707e-01
+2.3133119677364501e+01
+-4.2835182288351177e+01
+-4.7196010219979651e-01
+2.9496454892267721e+01
+-4.0396688665776708e+01
+-4.4918521789337285e-01
+3.0093440463721890e+01
+-4.0746739502703534e+01
+-1.1337352654424548e+00
+2.8029289979774621e+00
+-2.2444699103056468e+01
+-3.4300002359609028e-01
+3.2008778486496610e+01
+-4.2038077300808851e+01
+-3.4855197525009424e-01
+3.1444156926355578e+01
+-4.1229093174627671e+01
+-1.0395202407853772e+00
+-9.3520871304748165e-01
+-2.0917488284489824e+01
+-7.9264593155545016e-01
+3.3591344385927036e+00
+-2.3737039120325509e+01
+-7.7558175657961081e-01
+3.4047014285313537e+00
+-2.4092070995437716e+01
+5.7086651327720742e-02
+3.2693161903376200e+01
+-4.1524522891967578e+01
+1.5981557234742694e-01
+3.0518400244046067e+01
+-4.0653492583096416e+01
+2.9325839719443886e-01
+3.4236249718670543e+01
+-4.2756153593027307e+01
+7.9006225957195331e-01
+2.3494182801264774e+01
+-4.1935935128308728e+01
+5.0916882037050903e-01
+2.9493686498247275e+01
+-4.1808292376018251e+01
+1.7362606231301676e+00
+8.6457674651034839e+00
+-4.3941106574618978e+01
+1.0494848906876957e+00
+2.2521222417261164e+01
+-4.3328454043017572e+01
+-7.7843582772623987e-01
+-1.7763591466691822e+00
+-2.0714737313247312e+01
+-7.6971934811480636e-01
+-3.2130764819594386e+00
+-2.0425944991840847e+01
+1.0202561806282229e+00
+3.3805451020404178e+01
+-4.5104585970378274e+01
+1.0202561806282229e+00
+3.3805451020404178e+01
+-4.5104585970378274e+01
+8.2250376495380928e-01
+3.1082632424258431e+01
+-4.1596684485356256e+01
+7.8285872816635560e-01
+2.9103139712861793e+01
+-4.0448059085235542e+01
+7.8285872816635560e-01
+2.9103139712861793e+01
+-4.0448059085235542e+01
+8.8363205390509847e-01
+3.2948731120113884e+01
+-4.2769430261603780e+01
+-5.0241375391395993e-01
+-3.8250268995437917e+00
+-2.1128355728557388e+01
+8.5965614860753470e-01
+2.8066957266912187e+01
+-4.0237380360487492e+01
+8.3232913469098302e-01
+2.7809001424419119e+01
+-3.9977390022951219e+01
+1.8028521701311446e+00
+3.9137381327935323e+01
+-4.9112255561018308e+01
+1.2859689695687773e+00
+2.8511838980544546e+01
+-4.1997962090448503e+01
+1.1113221329601695e+00
+3.2489459748695594e+01
+-4.2676038168234626e+01
+-5.8139677502563603e-01
+-4.7417233217814442e-01
+-2.0952753437413925e+01
+-6.4890220110537866e-01
+-1.0939694004665843e+00
+-2.0307971226392329e+01
+1.2203187788575458e+00
+2.5268747244473751e+01
+-4.0247794188407674e+01
+2.2115564650997359e+00
+2.1805543521954714e+01
+-4.5752057947790362e+01
+1.5514986619379258e+00
+2.8193152426792068e+01
+-4.1642237369658375e+01
+1.3618439925392134e+00
+2.8857835809172983e+01
+-4.1140166310373282e+01
+2.1938709111596966e+00
+2.6589646682821837e+01
+-4.5307173586183957e+01
+2.2296484902687186e+00
+3.8995166965887307e+01
+-4.8625751920690142e+01
+-1.4706876613829009e-01
+3.7942999610592270e+00
+-2.3701747637371994e+01
+2.2703996331759400e+00
+2.5033839020018942e+01
+-4.2525478041684707e+01
+3.1780039774481428e+00
+2.2637832173791157e+01
+-4.7272094879595102e+01
+4.5606858555195320e+00
+2.1894884579780896e+01
+-5.5212866780742466e+01
+-1.3708966113999663e-01
+2.5396102099372677e+00
+-2.2221449363580867e+01
+6.9961443444846105e-01
+4.3340337393329476e+00
+-2.6328185949214635e+01
+2.8274331969688329e+00
+2.5314384746280719e+01
+-4.2846339762902616e+01
+2.9889573887961554e+00
+3.1785276994587850e+01
+-4.4986793227750219e+01
+5.6766861849674308e+00
+2.0513434745879525e+01
+-5.6614371187404707e+01
+3.1785231587563928e-01
+2.8294511638868660e+00
+-2.2526911903768344e+01
+9.7450308718570702e-02
+1.0241806216090361e+00
+-2.0237637843503226e+01
+3.1703372827930387e-01
+1.0478964379908775e+00
+-2.1146222639333732e+01
+4.0217394560217956e+00
+3.5586546279895813e+01
+-4.5507499783521261e+01
+4.5232065393032350e+00
+2.4885182415407964e+01
+-4.7117341357295821e+01
+6.6843132931709386e+00
+2.2433936531125426e+01
+-5.7061078872674095e+01
+4.3705627362706325e+00
+2.5598532157498443e+01
+-4.3452994713410945e+01
+5.3082377032920567e+00
+3.4197997209923898e+01
+-4.7699953736229645e+01
+4.8162964295195554e+00
+3.2389974958229352e+01
+-4.5320709109099504e+01
+4.5332673681903861e+00
+2.7185612103850467e+01
+-4.2299845736150381e+01
+4.8190459731044060e+00
+2.6281851426075171e+01
+-4.3691811234364550e+01
+4.5171712076890200e+00
+2.8932422190994227e+01
+-4.2195501193924251e+01
+4.5926218922464663e+00
+2.9325996955958374e+01
+-4.2734707926333947e+01
+6.2047114689657432e+00
+3.8750391323879150e+01
+-4.9498448195532440e+01
+7.1314114761915448e-01
+-7.6469876196728603e-01
+-2.0244685966354044e+01
+6.2852546224671473e+00
+2.3121561121488895e+01
+-4.7608520227363805e+01
+6.0230795852092989e+00
+2.2675122219136892e+01
+-4.6584313059475534e+01
+6.6570730152371693e-01
+3.2504308092002293e-01
+-1.9711709716208379e+01
+5.7922022474344681e+00
+2.5380910300891856e+01
+-4.4707730099692419e+01
+5.6217605476555468e+00
+3.2470535173062444e+01
+-4.4412920304521911e+01
+8.6807875004364210e-01
+1.7387241173424439e+00
+-2.0750842279714927e+01
+5.6432839912070856e+00
+2.8568397470413547e+01
+-4.2389479637495022e+01
+7.3280719525012863e+00
+2.2279845594173352e+01
+-4.9164323905768633e+01
+6.4513131059823090e+00
+2.6387491135113347e+01
+-4.4798862722859923e+01
+8.2553084290572247e+00
+1.9954039763434015e+01
+-5.2416403875150053e+01
+7.8370734420702099e+00
+2.1931766381834894e+01
+-4.9820659529767028e+01
+6.6366140266109195e+00
+2.6228436887427357e+01
+-4.4502063420002408e+01
+6.7756514011797577e+00
+3.3061780842800388e+01
+-4.4998630797872742e+01
+6.9275567811931049e+00
+3.3706749836811952e+01
+-4.5902119998451774e+01
+7.1666654538116008e+00
+2.7806555341078063e+01
+-4.6485211489949329e+01
+8.3736605711757086e+00
+2.1255590711150244e+01
+-5.1081523089338972e+01
+7.1679011070036962e+00
+3.4236173847323762e+01
+-4.5618974026080735e+01
+7.3164713225469349e+00
+2.7503209485821973e+01
+-4.5996113879403744e+01
+7.2167602645543409e+00
+3.1974546438106898e+01
+-4.5178237301538900e+01
+9.0454461609145032e+00
+1.4022457755918882e+01
+-5.0775240431768282e+01
+8.3319717403534987e+00
+2.7282027387670748e+01
+-4.7760362135198960e+01
+9.3061531438159228e+00
+3.6799340589730782e+01
+-5.1387664421869864e+01
+9.3061531438159228e+00
+3.6799340589730782e+01
+-5.1387664421869864e+01
+7.6720466228595994e+00
+3.0201238129370392e+01
+-4.4487673040714554e+01
+2.1745281202874391e+00
+-3.7152877321505153e+00
+-2.1252619631896824e+01
+2.7221406094348866e+00
+-5.3265996329154230e+00
+-2.2920343825464382e+01
+2.3595811459653895e+00
+4.2653919294899734e-01
+-2.1285404896953050e+01
+1.0858320711208714e+01
+2.6493521622451055e+01
+-5.0596284302429382e+01
+2.1050851738606862e+00
+-2.9121373890819484e+00
+-1.9845881876653909e+01
+1.0139772527210436e+01
+2.6579797485753648e+01
+-4.6594673355279433e+01
+1.0139772527210436e+01
+2.6579797485753648e+01
+-4.6594673355279433e+01
+1.2055645215648386e+01
+3.2807535765531121e+01
+-5.2805276535899843e+01
+1.4660875129480337e+01
+2.1752776679877496e+01
+-6.0444090041081239e+01
+-1.2914038630332826e+01
+2.8700434181559569e+00
+-7.4252607154461252e+00
+-4.7310597681444413e+01
+3.7949301279517961e+01
+-7.9973704637534922e+01
+-4.3931762136153189e+01
+4.2485233444149593e+01
+-7.2170796872255863e+01
+-3.7320860635113405e+01
+3.6298945127819550e+01
+-6.2977079362005618e+01
+-3.2050400885090973e+01
+3.7132156222346573e+01
+-5.2537291333780139e+01
+-3.3975510910917173e+01
+4.0268636791576604e+01
+-5.5754488559183152e+01
+-3.1654490070617854e+01
+3.8220941741138738e+01
+-5.2052502751856700e+01
+-2.6234947557022004e+01
+2.7650882145919191e+01
+-4.4146448663765504e+01
+-3.4483537142742712e+01
+4.2568164000231995e+01
+-5.8298483119667438e+01
+-4.0880036257502212e+01
+5.4841591809809110e+01
+-6.8978709707160661e+01
+-2.4692989251563439e+01
+2.3027149134142018e+01
+-4.5730364733755657e+01
+-1.9108682144219696e+01
+1.8433694761177300e+01
+-3.6009096864861554e+01
+-1.4073066178703892e+01
+6.1999712984554645e-01
+-3.4085135604834200e+01
+-1.7527091340273053e+01
+1.5491254631651488e+01
+-3.5942560440065584e+01
+-1.6991680515372501e+01
+1.8929921827848876e+01
+-3.1960806484227021e+01
+-2.4969450051717342e+01
+3.7072798913063146e+01
+-4.7217392501919797e+01
+-1.6101941676226154e+01
+1.8005796485276129e+01
+-3.2710129106424930e+01
+-1.6149968986877720e+01
+1.4744529447452805e+01
+-3.6498294847339139e+01
+-1.7948898156822988e+01
+1.5934550713890603e+01
+-4.4473321370723518e+01
+-2.2144009851047166e+01
+3.5504466196869039e+01
+-4.5473880521243331e+01
+-2.3494821543350533e+01
+4.0160319686150672e+01
+-4.8947232390347203e+01
+-1.5375855067885130e+01
+1.6754743548071737e+01
+-3.3658885853547112e+01
+-1.5616232678377866e+01
+1.7109444472608406e+01
+-3.4347350321165919e+01
+-1.5700164143126621e+01
+1.3808685765170706e+01
+-3.7712264990522321e+01
+-1.5262292331609130e+01
+1.8416819493774341e+01
+-3.2201167669196614e+01
+-2.2967004621428760e+01
+3.9605420240354206e+01
+-4.9394340260568370e+01
+-1.5408495597400998e+01
+1.2126501364302756e+01
+-3.9170691670652253e+01
+-1.5703029572955401e+01
+1.3474195673031728e+01
+-3.9254982724318658e+01
+-1.6559729347097182e+01
+2.3885586061048205e+01
+-3.4366933202841558e+01
+-1.5363498716356327e+01
+1.0805776159689742e+01
+-4.1514623932477193e+01
+-1.4653377921659798e+01
+1.8621688895663446e+01
+-3.2442459573541832e+01
+-1.4552439142650496e+01
+1.6284935311947784e+01
+-3.5441456080960478e+01
+-1.5438700606590277e+01
+2.5784727126175685e+01
+-3.4951564147342978e+01
+-1.3931553220518213e+01
+1.2991337163350138e+01
+-4.1030717847504690e+01
+-1.5531324268989948e+01
+2.7347322321511740e+01
+-3.6199701452056587e+01
+-1.2848545514420238e+01
+1.9797239995370241e+01
+-3.4731790627800969e+01
+-1.2138953194161120e+01
+2.0030483322737616e+01
+-3.3863706477634352e+01
+-6.0947737961591306e+00
+-7.4929602698173152e+00
+-2.4574187956477125e+01
+-2.4008190537154427e+01
+6.9749899817340051e+01
+-7.5913730787188356e+01
+-1.1237933353979765e+01
+1.8498016250314553e+01
+-3.6852770105755191e+01
+-1.1200282676007394e+01
+1.8183141099952405e+01
+-3.6273494762340761e+01
+-8.8029514837131302e+00
+3.0105304154838439e+00
+-3.6636410096374597e+01
+-5.8393560685905666e+00
+-6.4782691623449900e+00
+-2.3783151604915133e+01
+-8.4023026390526088e+00
+3.1285679907261610e+00
+-3.5986738332895627e+01
+-1.0670191596204683e+01
+2.0134034569816940e+01
+-3.6676946485431962e+01
+-1.0004642858907774e+01
+1.1499063958373123e+01
+-4.5675044154897392e+01
+-7.0490413554102416e+00
+7.1721928587810779e-01
+-3.2899589818347138e+01
+-9.9061462046096640e+00
+2.1052386294407878e+01
+-3.5248301070222134e+01
+-4.6902360371163265e+00
+-9.9168230154443204e+00
+-2.2545509873661260e+01
+-7.3014340964872071e+00
+1.9035127750582035e+00
+-3.4826558020336996e+01
+-4.8963540862252382e+00
+-7.0616304783606063e+00
+-2.2840094011255825e+01
+-9.3069478100287863e+00
+2.1241064257619310e+01
+-3.5505759879670805e+01
+-4.6429122557863600e+00
+-7.5453978109886917e+00
+-2.2224625697787708e+01
+-4.2746668035357160e+00
+-8.6857598549807626e+00
+-2.0713023383904964e+01
+-4.3204610108712345e+00
+-8.6340095067432721e+00
+-2.0581005631656836e+01
+-8.9535477430271033e+00
+2.1296179201257196e+01
+-3.6038333471586661e+01
+-7.4895572387525613e+00
+8.0523364305625744e+00
+-4.2806514072169890e+01
+-8.1081474961830740e+00
+1.9248106310475503e+01
+-3.9454839870678008e+01
+-3.6138136802130312e+00
+-9.8001178569751044e+00
+-2.1950063201453634e+01
+-7.4905284955073403e+00
+2.4945029154624827e+01
+-3.4974585740387610e+01
+-6.6225383814817809e+00
+2.2789693958479187e+01
+-3.8085723284320011e+01
+-3.3163450978092581e+00
+-7.9081377188155964e+00
+-2.1619884332261762e+01
+-9.1058616519062987e+00
+7.0057968535865385e+01
+-7.5649370731965035e+01
+-2.6307534666313681e+00
+-9.2936911981530042e+00
+-1.9014780890024383e+01
+-2.5797727924058784e+00
+-7.8385397535727410e+00
+-2.1800293668116637e+01
+-2.8263540678294352e+00
+2.8529872866983550e+00
+-2.7163628310965155e+01
+-3.0766114585218292e+00
+1.9917139043198404e+01
+-4.3414067545399490e+01
+-3.3072770160490266e+00
+2.3908153988070147e+01
+-3.9671119610797227e+01
+-2.2822784778525809e+00
+2.6888442259911831e+00
+-2.5903053918843764e+01
+-1.7738499493792643e+00
+-8.1411583674618928e+00
+-2.1278380703546802e+01
+-1.8002179884710936e+00
+-9.5304210773633304e+00
+-1.9155695871800859e+01
+-1.3231184131324931e+00
+8.3913959237326488e+00
+-4.3555953414719596e+01
+-2.0506199426251039e+00
+3.4825511581704411e+00
+-2.7841474064097749e+01
+-1.4361313303676264e+00
+-8.9080000847968428e+00
+-2.0093379808206379e+01
+-1.3352998418192275e+00
+-8.3224399304467358e+00
+-2.0941872629640731e+01
+-1.4049379480992652e+00
+-2.4523626141547190e+00
+-1.9886017853015840e+01
+4.7871825111157090e-01
+1.9471259598361844e+01
+-4.7085353656527161e+01
+4.7871825111157090e-01
+1.9471259598361844e+01
+-4.7085353656527161e+01
+6.3944341732908294e-01
+2.0622716444161423e+01
+-4.4503309288380450e+01
+2.6770474907562454e+00
+7.7879881260457239e+01
+-8.5071144990989410e+01
+-1.5968849447626587e-01
+2.8410690854408159e+01
+-4.0066859458307000e+01
+6.0485671003609143e-01
+2.6568616004412153e+01
+-4.0969384403097330e+01
+-7.5449764222665772e-01
+-1.0449440778837400e+00
+-2.0868279733102430e+01
+1.6113253760291681e+00
+3.6344410329972426e+01
+-4.6387625282070843e+01
+-3.5366617515113641e-01
+-4.0798590652226334e+00
+-2.1233441221092669e+01
+1.7670287664369724e+00
+2.4211432509659204e+01
+-4.2408341349089532e+01
+1.4852053092680029e+00
+3.4222645283570614e+01
+-4.3767145826080871e+01
+1.5674447859956580e+00
+2.5192340536248746e+01
+-4.1197051739386261e+01
+3.2342375079153980e+00
+1.1261204403006911e+01
+-4.7445338407219175e+01
+-1.2486464925240875e-01
+-8.6078078981723571e+00
+-2.0609325716544031e+01
+-5.3723684702095109e-01
+8.1974990671816614e-02
+-2.0252869697077937e+01
+-4.3145836874704241e-01
+1.1945278405126900e-01
+-2.0820418275655690e+01
+2.9860454382162280e+00
+2.2338875034567753e+01
+-4.5886253802948509e+01
+3.9570397667977092e-01
+4.1833309700142189e+00
+-2.5860073168669846e+01
+4.2773483105801384e+00
+1.7084105596841461e+01
+-5.0579523229500893e+01
+1.7757830152806486e-01
+-5.8069894020222019e+00
+-2.1437854096976562e+01
+-6.3186576639932768e-02
+-8.2965585748526269e+00
+-1.9660823726685404e+01
+2.9522572394773744e-01
+2.9106751801755584e+00
+-2.2714672414467511e+01
+5.3271285770125179e+00
+2.2554415802190061e+01
+-5.0010264795026025e+01
+5.5540684514753746e-01
+-6.9561532102368617e-01
+-2.1711159214749870e+01
+6.2954736267515132e-01
+2.3392738382715370e+00
+-2.2355141434242920e+01
+4.0563063477182579e+00
+2.6482110426767331e+01
+-4.3021836524191798e+01
+4.6098404017925221e+00
+2.5998765657940268e+01
+-4.4571142372719180e+01
+3.0272019806364914e-01
+3.1554580246681335e-01
+-1.9431787304402214e+01
+5.5355967958187717e+00
+2.5313244950134585e+01
+-4.5278529703881667e+01
+5.2484082908893681e+00
+2.7616153350428508e+01
+-4.4067457128849803e+01
+9.8101903487779807e-01
+-4.3011068441393210e+00
+-2.1105077111125318e+01
+5.8821166038861126e+00
+3.6721225813567443e+01
+-4.6602534445004316e+01
+5.9728169258966046e+00
+3.6644155340086229e+01
+-4.6898321916886793e+01
+8.5599812898829128e+00
+2.6984153792671151e+01
+-5.6497796602323696e+01
+7.3514165675375160e+00
+2.4545205442767717e+01
+-5.1322829677757568e+01
+8.5599812898829128e+00
+2.6984153792671151e+01
+-5.6497796602323696e+01
+7.8465957966996092e-01
+1.2373070560071240e+00
+-1.9676446694382076e+01
+6.9814598125912370e+00
+2.1736522972405950e+01
+-4.8149650577100104e+01
+6.4485989253186267e+00
+2.7165732879716906e+01
+-4.5509300496344977e+01
+7.6063983704720890e+00
+2.3525475668298053e+01
+-4.9521811335589859e+01
+8.5066495190599412e+00
+2.2619373440301064e+01
+-5.0085035028741508e+01
+7.3733660070971094e+00
+2.6151455677841703e+01
+-4.5358015362320131e+01
+8.8769514224531356e+00
+1.3661553114322418e+01
+-5.0343159225282918e+01
+1.4630749946694310e+00
+1.0612987185471705e+00
+-2.0127068989147698e+01
+7.4941751076144270e+00
+2.6261023638977608e+01
+-4.4622523135634104e+01
+1.3998642679245703e+00
+3.3236939651990050e-01
+-1.9739994843499247e+01
+2.1672737010835408e+00
+2.9867271541440514e+00
+-2.2486329783234467e+01
+9.4043729049893177e+00
+2.8555731680674668e+01
+-5.0030587035624784e+01
+1.7461577793699643e+00
+-2.6565413845143504e+00
+-1.9894113475318282e+01
+9.3827169993404524e+00
+3.1585612390892706e+01
+-4.8775347036736839e+01
+9.6105903070420151e+00
+2.4506494895080710e+01
+-4.8526950678313675e+01
+2.9738425819285204e+00
+-5.5557724608222534e+00
+-2.4171209001193418e+01
+1.0387295062169184e+01
+2.2770184739632551e+01
+-5.1033975841752657e+01
+9.8595782334624626e+00
+2.5513931489304948e+01
+-4.8015769318759432e+01
+1.0192172541939918e+01
+2.2839676538483886e+01
+-4.9544447297571097e+01
+1.1197272151861064e+01
+3.2369383240181392e+01
+-5.0927629839285927e+01
+9.7989785323273360e+00
+2.7965781347756167e+01
+-4.5497684312329987e+01
+-1.5181956002124807e+01
+-4.2435033520069938e+00
+-2.4648823286324244e+01
+-7.9265151469864364e+01
+7.2950185496335862e+01
+-1.2580172825317041e+02
+-7.6783860926804621e+01
+6.8960650878628371e+01
+-1.2494853161708468e+02
+-2.5840780920612499e+01
+1.1314648657789988e+01
+-4.8076730708290107e+01
+-3.5280879949554084e+01
+3.1280112454072260e+01
+-6.2796670468232293e+01
+-3.4806480008155162e+01
+3.9632415554759518e+01
+-5.6259916621639384e+01
+-3.1229832672999382e+01
+2.6804476809848008e+01
+-5.5522736887458500e+01
+-3.1229832672999382e+01
+2.6804476809848008e+01
+-5.5522736887458500e+01
+-2.9233392254886795e+01
+2.8221953674913649e+01
+-5.0190092626721032e+01
+-2.9810206805834941e+01
+2.6881826274320520e+01
+-5.3719013125050637e+01
+-2.9065740785419898e+01
+3.1495497376623423e+01
+-4.8636930589182093e+01
+-2.2282009694653176e+01
+2.0850968251529672e+01
+-4.1861275111895921e+01
+-1.6365366572314826e+01
+1.5588275754232450e+01
+-3.5143808924487274e+01
+-1.6144649061671668e+01
+2.0934600175259028e+01
+-3.2475481473915174e+01
+-1.5189517297925962e+01
+1.8654979160155722e+01
+-3.2143806579137099e+01
+-1.5060978258081173e+01
+1.3350692286789380e+01
+-3.8744340728946497e+01
+-1.5709652485410238e+01
+2.4182938389038757e+01
+-3.4273540652998044e+01
+-1.5709652485410238e+01
+2.4182938389038757e+01
+-3.4273540652998044e+01
+-1.5630414468491201e+01
+2.4905077666431680e+01
+-3.4667075263857775e+01
+-1.4276055577106220e+01
+1.2593343865270663e+01
+-4.0885382163429014e+01
+-1.3957497163473452e+01
+1.6243821358696781e+01
+-3.6411082847107366e+01
+-1.3526694154382986e+01
+1.2834257817504801e+01
+-4.1012124376893141e+01
+-1.4104602160458022e+01
+2.5470910528936066e+01
+-3.3030068981678539e+01
+-1.6349372143051820e+01
+4.0549105121497938e+01
+-4.6455884081358072e+01
+-1.1463914945703515e+01
+1.8924669940790839e+01
+-3.6979067493085282e+01
+-9.8590442889403622e+00
+1.7270802533014599e+01
+-3.8372789393723778e+01
+-9.0624833995790652e+00
+2.2030636506925166e+01
+-3.6740224251225641e+01
+-3.4631476534761396e+00
+-8.9148492807640700e+00
+-2.0191290931512437e+01
+-3.2890342723633834e+00
+-9.1817120028724073e+00
+-1.9777052032511243e+01
+-3.2163046160671978e+00
+-9.0163715014847767e+00
+-2.0032530575567733e+01
+-3.3172246064071436e+00
+-8.2328246123828031e+00
+-2.1262211386624056e+01
+-3.3050596756454760e+00
+-8.4846640246289287e+00
+-2.2257631229665840e+01
+-6.1272949246590018e+00
+2.2045972352112848e+01
+-3.8154912446764065e+01
+-2.9898788411622332e+00
+-8.1259264115582024e+00
+-2.1405198674715386e+01
+-3.5228038715160732e+00
+-2.1109730178913320e+00
+-2.4422875984619477e+01
+-8.0472275955047810e+00
+4.7623472423727002e+01
+-5.5236940257338695e+01
+-2.6804122141020694e+00
+-8.4015978256003923e+00
+-2.2710644339188285e+01
+-2.1611170721890711e+00
+-8.5812945753907606e+00
+-2.0607390385517462e+01
+-1.5820269667605125e+00
+-9.0739606528790997e+00
+-2.1830100218662700e+01
+-1.0211852351243254e+00
+1.3776733743654145e+01
+-5.0162934933547035e+01
+-1.3637374986138029e+00
+-9.7046776007726194e+00
+-1.8821837169278808e+01
+-1.6231464615733875e+00
+-2.2578679013516112e+00
+-2.0230216173292050e+01
+-1.0702755380448707e+00
+2.3081513604517710e+01
+-3.9038585539564352e+01
+-1.1554376141113478e+00
+-2.6090416551949924e+00
+-2.0884743375770771e+01
+-4.5282701739740738e-01
+2.8242412836786428e+01
+-3.9887404900666382e+01
+-9.3099427166250859e-01
+-2.1595273482784649e+00
+-2.0375825663055856e+01
+5.6760046110464091e-01
+2.3512969535696939e+01
+-4.1226366464904089e+01
+5.6760046110464091e-01
+2.3512969535696939e+01
+-4.1226366464904089e+01
+-8.8860415562295014e-01
+-1.1713495632212716e+00
+-2.0269439116426078e+01
+1.5644712095930973e+00
+2.4514194235356882e+01
+-4.2405675571171209e+01
+-1.3332466250850061e-01
+3.5390002211103431e+00
+-2.3454272829830700e+01
+9.5462179240600062e-02
+-1.4370042011941171e+00
+-2.0192498010967782e+01
+1.2367659406304659e+00
+4.3902837906226759e+00
+-2.6802101422366608e+01
+4.3142158928927854e+00
+3.5940774209335750e+01
+-4.6495977067205281e+01
+8.3838682934311182e-01
+2.1832269964467463e+00
+-2.1827193777993223e+01
+6.2503467317291572e-01
+1.9664572275880137e+00
+-2.0566404945012295e+01
+8.7730878736160403e+00
+2.3786619399158930e+01
+-6.0606098902587952e+01
+7.4079131237563507e+00
+2.0641543436359385e+01
+-5.3268409815010862e+01
+7.8105625084615431e+00
+2.0809716918790897e+01
+-5.2611462143966506e+01
+8.9672779767739186e-01
+-2.7121735906019881e+00
+-1.9581072571807315e+01
+1.4036216351889395e+00
+2.2260152308944798e+00
+-2.1833165612404084e+01
+1.0076689050814712e+01
+2.1890941783219265e+01
+-5.5423211803799113e+01
+1.6423607573016374e+00
+-3.3519963129726138e+00
+-2.0800489000967190e+01
+1.3832389601147110e+00
+1.0484760762209271e+00
+-1.9305275438142658e+01
+3.1336169678421437e+00
+-1.4728822882850712e+00
+-2.3300346230448099e+01
+-1.5092979379093057e+01
+-4.0264846157753267e+00
+-2.4642402457050594e+01
+-4.2884461165857111e+01
+3.5996136326599036e+01
+-7.0223706296415358e+01
+-4.8240217222184526e+01
+4.1729280104762708e+01
+-8.1499221220763488e+01
+-4.3813189695171381e+01
+3.7539969237633990e+01
+-7.7130275107003953e+01
+-2.3103853475258969e+01
+2.3172268432186108e+01
+-4.1483527279735853e+01
+-2.3802874875658034e+01
+1.9262167151413863e+01
+-4.6564411562446800e+01
+-3.9177279172799373e+01
+6.1417471499753610e+01
+-7.0955647249783340e+01
+-1.7390969831918945e+01
+1.2424221885756138e+01
+-3.9404491131835549e+01
+-2.4038117017373917e+01
+3.6415922849561170e+01
+-4.5768006619841955e+01
+-1.6191598858070130e+01
+1.0117437157009757e+01
+-4.3410846195681749e+01
+-2.3079195771700800e+01
+3.9062060987241999e+01
+-4.9120798729520672e+01
+-1.5777726251089687e+01
+2.3555936034920705e+01
+-3.3897199768033190e+01
+-1.6721171099727258e+01
+3.8610647790133434e+01
+-4.5304937157804680e+01
+-1.0743730080028481e+01
+1.2033068746052709e+01
+-4.4915386015058736e+01
+-3.9503520042033213e+00
+-8.7385823023444011e+00
+-2.0670115889977804e+01
+-3.8474776355818796e+00
+-8.0977429294323695e+00
+-2.1386970148138950e+01
+-3.3573762313957078e+00
+-2.0437991364144912e+00
+-2.3707169320324592e+01
+-2.3617536264963603e+00
+-1.0096618689701710e+01
+-2.1542780039962906e+01
+-1.9685529777823760e+00
+-8.4192213753443390e+00
+-2.0864572095386478e+01
+-1.9648115385914073e+00
+-8.2158211284053362e+00
+-2.1118438690299868e+01
+-1.6008438201715134e+00
+-1.6086558866040457e+00
+-2.1084488374211961e+01
+4.0791333025727300e-01
+2.1317762301144558e+01
+-4.3316215918113528e+01
+2.4209829974607411e+00
+9.8398210913978836e+00
+-4.5494153817412140e+01
+2.4919232065243135e+00
+1.0854202235911435e+01
+-4.6759311331817024e+01
+2.2985182292489754e+00
+9.1558723689162296e+00
+-4.4056705978214978e+01
+1.8124533686272657e+00
+2.9958499935140452e+01
+-4.2897148058356002e+01
+2.1938140137428244e+00
+2.7191263710642644e+01
+-4.3796233655004492e+01
+1.5488216950359332e-01
+-8.4881277086551083e+00
+-2.0794417914331955e+01
+2.6731317154257259e+00
+3.4643853706454458e+01
+-4.4583173228394529e+01
+9.3629260452055302e-02
+-1.0454652005189702e+00
+-2.0265763079357161e+01
+6.1481350150456562e+00
+2.2412180080940630e+01
+-5.0793559226241435e+01
+6.0763116880175605e-01
+-3.9347766517207474e+00
+-2.0295568725295588e+01
+8.6407787466146679e+00
+4.3885567683386597e+01
+-5.3013366083719653e+01
+1.2772624043856402e+00
+-3.1409092407815709e+00
+-1.9748011840579533e+01
+7.0789791613250932e+00
+3.1643612931222975e+01
+-4.4961532901308232e+01
+1.6141376909614755e+00
+-4.3488698374454779e+00
+-2.0854867502350540e+01
+8.6423913700046970e+00
+3.2549669439785156e+01
+-4.7854939029596707e+01
+1.0347517075372128e+01
+3.8949632542653113e+01
+-5.1802379303188431e+01
+-4.1935488365088290e+01
+3.5002184384731187e+01
+-7.0012343467872924e+01
+-4.0156819506346643e+01
+4.4277148461737568e+01
+-6.0852902766121609e+01
+-3.9915741548884291e+01
+3.9793294444731444e+01
+-6.5658545381571074e+01
+-3.5550339388535136e+01
+4.0141020071236476e+01
+-5.6381543375604522e+01
+-2.8608392776334810e+01
+2.3186486265766199e+01
+-5.3830682597943579e+01
+-2.9834828521497752e+01
+2.1398226635248690e+01
+-5.9875492549787253e+01
+-3.0118722050217336e+01
+2.2643878667357676e+01
+-5.9807550170203321e+01
+-2.0070728875755592e+01
+1.5498866638948108e+01
+-4.1423433668068611e+01
+-1.9030930812852279e+01
+1.9155733317965502e+01
+-3.5205937376975150e+01
+-2.4850182488705265e+01
+3.4717404814901002e+01
+-4.4998770433008566e+01
+-1.7149611042789996e+01
+1.3053920487756059e+01
+-4.1831493590424856e+01
+-1.5686745117684609e+01
+1.2407251700908338e+01
+-3.9108708841527736e+01
+-8.7957184086360876e+00
+-5.3882104537513626e+00
+-2.5482502757697684e+01
+-1.5988511807889092e+01
+1.2375292603831234e+01
+-4.4259537313852334e+01
+-2.7049729621636079e+01
+5.2218810052623795e+01
+-5.9612054695482257e+01
+-6.4783183256979822e+00
+-8.2548708542169233e+00
+-2.0867875952608578e+01
+-5.6093468155972932e+00
+-6.9385233033709071e+00
+-2.2851396209868515e+01
+-1.0754187299153827e+01
+2.0665659688000989e+01
+-3.5255208002004238e+01
+-1.3894559389208991e+01
+4.2211115591050941e+01
+-4.8583990251536846e+01
+-3.1427102570709295e+00
+-3.9082181659041009e+00
+-2.4050560041789574e+01
+-2.6491119027264127e+00
+-9.1965881672101002e+00
+-1.9868323540948829e+01
+-2.6006723407101471e+00
+-9.2635628393108238e+00
+-1.9308350466055845e+01
+-2.6006723407101471e+00
+-9.2635628393108238e+00
+-1.9308350466055845e+01
+-2.3950824646413742e+00
+-9.7963474972284956e+00
+-2.1142444941048133e+01
+-2.9314527276058326e+00
+-1.3917367346109157e+00
+-2.1445997207366769e+01
+-4.1190923853088695e+00
+2.8942345053273034e+01
+-3.9457040783107459e+01
+-1.8913061178912547e+00
+-9.1129709352451655e+00
+-1.9837786486093879e+01
+-1.3461236727517112e+00
+-3.1225790720506281e+00
+-2.0006730815650311e+01
+-4.7206020454872882e-01
+3.6677826319691718e+01
+-4.6118642421470113e+01
+9.0193206808167059e-01
+2.0982257330372455e+01
+-4.5080599878245664e+01
+-7.9507526328727651e-01
+-2.2216530575117028e+00
+-1.9954891539528692e+01
+-6.5869365207135122e-01
+-2.3988162988892148e+00
+-2.0248724051422592e+01
+-7.7726787130224281e-02
+-3.7471334634156045e-01
+-2.0609521911964176e+01
+-1.5792201958515784e-01
+1.0681274511798562e+00
+-2.0056733524480261e+01
+3.8503816423658641e+00
+3.5658331068725673e+01
+-4.6885307738893779e+01
+4.2247349700021770e+00
+2.2660720596866870e+01
+-4.4400469017323360e+01
+3.7295493119764114e+00
+2.9920878404869846e+01
+-4.2092406995655004e+01
+5.2521059773968197e+00
+2.1462678521084772e+01
+-4.6737039945925524e+01
+4.9477711420676656e+00
+3.1359778945992463e+01
+-4.5309583792898188e+01
+6.8927317662097938e+00
+2.3947488252356198e+01
+-4.8759508799359111e+01
+7.9073290740480324e+00
+3.2214441694775722e+01
+-4.8169760390018283e+01
+1.3412498066944623e+01
+3.5601465500308734e+01
+-5.6678874789962897e+01
+-3.5122419542334583e+01
+3.7555855442321935e+01
+-5.5700667219028020e+01
+-2.7128533127477610e+01
+3.0395580852722048e+01
+-4.4937971164507601e+01
+-2.6507966551393643e+01
+2.0667297891288378e+01
+-5.2523300331665119e+01
+-2.5461220946852276e+01
+1.6713930673041386e+01
+-5.7586462676424745e+01
+-1.3124248463284305e+01
+1.2913998645155077e+01
+-4.3546690584080650e+01
+-4.7758563350788679e+00
+2.3677336715447506e+01
+-3.8701217017882897e+01
+-2.1450708126928038e+00
+-8.4108270425513574e+00
+-2.0857851565658301e+01
+-1.0184420929577689e+00
+2.5570955212834637e+01
+-4.2416811069184448e+01
+-9.5262238665717625e-01
+3.0150401850404954e+01
+-4.0118553675060880e+01
+-1.1868052976506132e+00
+-1.1564631270442989e+00
+-2.0911218845649469e+01
+-8.0323482352769293e-01
+2.9757262986373822e+00
+-2.4921762024927787e+01
+3.1988298947363911e+00
+2.6810833075573111e+01
+-4.2132083586615167e+01
+2.7886689336010723e-01
+-2.3566514001439169e+00
+-1.9609199712039633e+01
+6.0805690248739523e+00
+3.1200732361271079e+01
+-4.5228143351695621e+01
+6.9839839645250112e+00
+2.2505110222314787e+01
+-4.8029673393256367e+01
+1.0591393901440325e+00
+8.9322570972903503e-01
+-2.0106398483460481e+01
+1.1139240881403978e+01
+2.4141307363320749e+01
+-5.6569907616549770e+01
+-2.4316629683626751e+01
+4.2137354068342873e+01
+-4.9060219830354356e+01
+-2.4316629683626751e+01
+4.2137354068342873e+01
+-4.9060219830354356e+01
+-1.4332833672664266e+01
+1.9797611390694996e+01
+-3.3494408270563298e+01
+-9.8374802656745342e+00
+2.1444787993835437e+01
+-3.6994696680600349e+01
+-3.6985607818502158e+00
+-8.8509470070419152e+00
+-2.0592153168996518e+01
+-2.8368737734387834e+00
+-3.6769473865510047e+00
+-2.3891569400344999e+01
+-1.4346014780380596e+00
+-9.0381445721692746e+00
+-2.0161049786577582e+01
+3.2604905975329868e-01
+-5.8070704913275364e+00
+-2.1558406757381505e+01
+6.3516069688190901e-01
+-2.6981084017180201e-01
+-1.9768213514614128e+01
+9.0517311294345664e+00
+3.1253285860161775e+01
+-4.9286478111120708e+01
+1.0011841746533323e+01
+3.3355899559612062e+01
+-4.9961264683481680e+01
+-4.2854815637182426e+00
+-9.3016011550827837e+00
+-2.2472006157120784e+01
+-9.2042721021307301e+00
+2.5380109337640064e+01
+-3.4977618707513152e+01
+-3.8339662362512015e+00
+-8.6476607653097872e+00
+-2.0932862675763573e+01
+-3.8339662362512015e+00
+-8.6476607653097872e+00
+-2.0932862675763573e+01
+-1.3286024306082618e+00
+-8.8038335832372194e+00
+-2.0230862351571272e+01
+-9.1859892571730628e-01
+-8.5785127110376465e+00
+-2.0468503908644074e+01
+8.5620899813269669e-01
+2.6405152391207348e+01
+-3.8699573099250422e+01
+-1.9577404482803713e+00
+-8.6503987766417385e+00
+-2.0476153770302084e+01
+6.8251105638889396e+00
+2.8256179372426292e+01
+-4.4797355410103656e+01
+-3.4752998662387369e+00
+2.3860100841629837e+01
+-4.1606007763603913e+01
+-7.0896353337757567e-01
+2.0912902109583229e+01
+-4.8346290894517487e+01
+-8.5930050445050732e+00
+2.5365338341223676e+01
+-3.6819367242377709e+01
+-5.3334229178418302e-01
+2.5231279606723160e+01
+-4.3416691557291074e+01
+9.0164821356197566e-01
+-2.7529219807608039e+00
+-1.9620270272595072e+01
+-5.8334740936864495e+00
+2.4156341512074363e+01
+-3.5735808906644600e+01
+-4.1026245076266264e+01
+6.8829720787583469e+01
+-7.7732600650333197e+01
+-7.0855287177631721e-01
+5.1248502040782235e+01
+-5.9866599881210291e+01
+-3.8621528543069431e+01
+6.2275188326903816e+01
+-7.1203865882926536e+01
+-2.2634037450675537e+00
+4.9570099940000979e+01
+-5.8413617973099299e+01
+8.9999334108657059e-01
+4.0931101094828357e+01
+-4.7902848934284108e+01
+-1.8685726659904450e+01
+4.4243838757717647e+01
+-5.1233318783551134e+01
+-1.0477540273018709e+01
+4.5317827307148164e+01
+-5.3289949711600293e+01
+-1.0468462422694145e+01
+4.5196093388914854e+01
+-5.3386299367932530e+01
+-3.9321818476861509e+01
+5.6111403211052568e+01
+-6.6862004798026305e+01
+-1.8527407984088558e+01
+4.0340980937433407e+01
+-4.8410200948004217e+01
+-3.7460676248432890e+01
+5.4617911161389166e+01
+-6.5567398749250458e+01
+-4.4675088009557484e+01
+5.9968406968918657e+01
+-7.1826231018926947e+01
+-2.1931749159904165e+01
+3.6072688253258285e+01
+-4.4290870773231802e+01
+-2.1766360661725745e+01
+3.6407671746789831e+01
+-4.5235323112816921e+01
+-2.2971293331156883e+01
+3.5712604407873201e+01
+-4.7053849604337977e+01
+-9.3971767638216210e+00
+2.8225329933580745e+01
+-3.7454671917831220e+01
+-1.5031277511951595e+01
+2.6594634447109438e+01
+-3.5246933135380935e+01
+-2.6765720331310913e+01
+3.7653425044098803e+01
+-5.0686048337967541e+01
+-1.5613057455434751e+01
+2.3706538835679360e+01
+-3.4056404804733894e+01
+6.6239128992698433e+00
+2.7567730454983103e+01
+-4.5676840339350797e+01
+-2.6715151674389812e+00
+2.3993758647175678e+01
+-3.9350749351875983e+01
+6.4964122270575828e+00
+2.7264691315901089e+01
+-4.5601356067776685e+01
+-2.2688442680833227e+00
+2.0643907725613577e+01
+-3.3848798381466331e+01
+-7.2012071590470772e-01
+2.0940278932353028e+01
+-3.4638896182324174e+01
+5.4708023273492590e-01
+2.0913640825557870e+01
+-3.5342719061623690e+01
+5.2342907419997697e+00
+1.9952645686501750e+01
+-3.4071596453895395e+01
+4.8099315385633951e-01
+2.4331465325836966e+01
+-4.1702922447771257e+01
+6.7704030888668330e+00
+2.5647830424708815e+01
+-4.5128684324956303e+01
+-1.2835575735138258e+00
+2.1504878746542094e+01
+-3.7541268949717512e+01
+2.9296060592745397e+00
+2.0424689738092297e+01
+-3.5884197484633127e+01
+-1.1376873234600176e+01
+2.0323700608025401e+01
+-3.5173767655542520e+01
+4.2092372853083972e+00
+2.2054273308023895e+01
+-4.0049961886271120e+01
+-1.0328107237943289e+00
+2.2666744910856931e+01
+-4.1090062874040910e+01
+-1.3252416964701277e+01
+1.9283585830481535e+01
+-3.4360467320143620e+01
+-1.1958436258654292e+00
+2.2539371564403371e+01
+-4.1282359767885765e+01
+6.8722264489399203e+00
+2.1549529397099345e+01
+-3.9982781374054333e+01
+6.8722264489399203e+00
+2.1549529397099345e+01
+-3.9982781374054333e+01
+1.2524518067426815e+01
+2.5540301764569961e+01
+-4.9282824084821677e+01
+6.4250214595673460e+00
+2.4360082040396740e+01
+-4.6651535873066521e+01
+2.5652985576402663e+00
+1.9532836117590342e+01
+-3.7289911300701945e+01
+4.1519237945758318e+00
+1.8859089065403960e+01
+-3.7033607310012670e+01
+-2.4256934142759099e+00
+2.1476450604780432e+01
+-4.1984668438949335e+01
+-2.4256934142759099e+00
+2.1476450604780432e+01
+-4.1984668438949335e+01
+5.2787173237343872e+00
+1.8112106138126773e+01
+-3.6743402275881401e+01
+-6.9364330479675722e+00
+1.9253602852864436e+01
+-3.8793800840460797e+01
+2.7800380094517654e+00
+2.2087702744633869e+01
+-4.5395719636975606e+01
+3.7072688878540552e+00
+1.8547872195440725e+01
+-3.8116159287470730e+01
+-8.3798436632649640e+00
+2.3667547417887949e+01
+-4.8497433665320663e+01
+1.1678530125527293e+00
+1.8897749237831153e+01
+-3.9572459949737322e+01
+1.0067217368436221e+00
+1.8878258644603623e+01
+-3.9578119771409838e+01
+-1.9075006043641396e+00
+1.8734156284060361e+01
+-3.9223329407272772e+01
+-2.0530361494083853e+00
+2.3863772643153197e+01
+-5.0586644833409231e+01
+-4.8048269089321538e+00
+2.3018836268288712e+01
+-4.9505594401341590e+01
+-1.8259920021383480e+00
+1.8573629234804294e+01
+-3.9897666682532773e+01
+1.1237041170249588e+01
+2.2152491011875309e+01
+-4.9515277722747250e+01
+4.5807438691794120e+00
+1.7679101609886033e+01
+-3.8754601849646683e+01
+3.1464110868287287e+00
+1.7931178973733342e+01
+-3.9485713493506566e+01
+3.3721270798521084e+00
+2.4566892221962711e+01
+-5.4851952652299332e+01
+1.5340513907839826e+01
+2.4932714300378041e+01
+-5.7827645599903299e+01
+-5.5456846295383802e+00
+2.1663232990315080e+01
+-4.9260071204549746e+01
+1.3162878863995854e+01
+2.2690101028164563e+01
+-5.3547664725424660e+01
+-1.0927142678000839e+01
+1.9766429250331825e+01
+-4.6104582019633128e+01
+-8.1802342216726076e-01
+2.1011867102208491e+01
+-4.9032868166754511e+01
+-8.1802342216726076e-01
+2.1011867102208491e+01
+-4.9032868166754511e+01
+-8.5628638252343070e-01
+1.7727566532223033e+01
+-4.1970187015242445e+01
+-4.5112961934861806e+00
+2.0690128585780155e+01
+-4.9629934340973534e+01
+-7.3210736879641800e+00
+1.9126324249625391e+01
+-4.6596196350230372e+01
+-7.0346520370756549e+00
+1.7318687791885797e+01
+-4.1925218820517429e+01
+-9.6025565632325289e+00
+1.8752164992481877e+01
+-4.5747427852933612e+01
+6.5923487883424770e+00
+2.2058799043676391e+01
+-5.4223246149782433e+01
+3.8027356087105124e+00
+2.2877424250546284e+01
+-5.5990966432457775e+01
+-3.1969055448259240e+00
+2.0665262422629826e+01
+-5.0380380763132116e+01
+3.7056810731943779e+00
+2.2772492159149888e+01
+-5.6057846970669168e+01
+-4.4057908270843162e+00
+2.0258337218839817e+01
+-4.9974481602343047e+01
+3.4556035413704520e+00
+2.2644201952833072e+01
+-5.6279254115666234e+01
+-5.0987479812669612e-01
+2.1066491007416303e+01
+-5.2317999994281749e+01
+7.6308760117575236e+00
+1.7654090493096589e+01
+-4.4243632463100987e+01
+1.6360990825691186e+00
+1.7007312390771084e+01
+-4.2493486231787259e+01
+-7.1478663872274577e+00
+1.8461495686598646e+01
+-4.6765618918579321e+01
+-1.0626506453238816e+01
+1.8108893593835898e+01
+-4.5836700639796007e+01
+-3.9774350450410632e+00
+1.8429273325212613e+01
+-4.7085026497855495e+01
+-7.8653251544804459e-01
+2.0632347210946794e+01
+-5.2339414358437516e+01
+1.4562254695622261e+01
+2.2757632533025372e+01
+-5.9063097571729820e+01
+-1.7586685895265306e+00
+1.7125192395666975e+01
+-4.3419373436969138e+01
+-1.0132720160758872e+00
+1.9557142216582257e+01
+-4.9899508150075469e+01
+-4.1250165984694256e+00
+1.8592699849602454e+01
+-4.8879537175546169e+01
+-7.2549942449819245e+00
+1.8737369982522200e+01
+-4.8546830198842144e+01
+-2.4710222044782824e+00
+1.8735033957107866e+01
+-4.9473802941979557e+01
+-1.2326517257446277e+01
+1.4914233934888546e+01
+-3.8867897697910692e+01
+1.1685707786866079e-01
+2.0243087143123315e+01
+-5.3749342001730156e+01
+-3.0888892782631543e+00
+1.8531669262196523e+01
+-4.9088144458637842e+01
+-3.5155826005564026e+00
+1.6519186081777903e+01
+-4.3502393947578469e+01
+-2.4015765802155586e+00
+1.7641109754600450e+01
+-4.7137630376239564e+01
+-1.3904623257768142e+01
+1.7913459417997988e+01
+-4.7657813260825350e+01
+-1.3904623257768142e+01
+1.7913459417997988e+01
+-4.7657813260825350e+01
+-4.5719742490560851e+00
+1.7938019432661687e+01
+-4.8984347558607247e+01
+-5.1278337007524017e+00
+1.7685079860353031e+01
+-4.8539366757541423e+01
+-3.6280050549050036e+00
+1.8053039763938074e+01
+-4.9756180339862404e+01
+-4.1197173853147566e+00
+1.7423850470502419e+01
+-4.8037350840864853e+01
+1.7352981098575757e+00
+2.0382779786561255e+01
+-5.5861304236990087e+01
+-9.8428724787157105e+00
+1.7587731641091345e+01
+-4.7941325324568524e+01
+-1.2488693169509208e+01
+1.4474089456969198e+01
+-3.9382731916172176e+01
+-3.1301886469161038e+00
+1.8619802683749565e+01
+-5.1252329542373708e+01
+4.0487876319004616e+00
+1.7089704853360129e+01
+-4.7375717734186068e+01
+-8.3741000122237814e+00
+1.7641862877257381e+01
+-4.8558926618856852e+01
+-1.3440247102515583e+01
+1.7336692167543138e+01
+-4.7770469453580539e+01
+-8.6043984949695975e+00
+1.7342322263307494e+01
+-4.8404533037929532e+01
+-1.4665041671823178e+00
+1.7775862038707327e+01
+-5.0868968272496154e+01
+2.0049940226974017e+00
+1.9326291867472396e+01
+-5.7325042566801187e+01
+-5.8923344025506914e+00
+1.6041275644980537e+01
+-4.8451432502556884e+01
+-1.5623285162230001e+01
+1.3457950575760512e+01
+-4.0536025488840004e+01
+-1.5044633107708249e+01
+1.2910420043944836e+01
+-3.8370297414585366e+01
+3.6969037671697564e+00
+1.6116347247553577e+01
+-4.8876946723250299e+01
+-5.6763700589511201e-01
+1.7511684291288077e+01
+-5.3679944527687098e+01
+4.2972847150247642e+00
+1.6831915640620952e+01
+-5.2929187996524128e+01
+-1.1421911543091838e+01
+1.3613408604879288e+01
+-4.2541695381055654e+01
+-1.5006316985041101e+01
+1.3034810346987777e+01
+-4.1300724612382929e+01
+-1.4138393543323906e+01
+1.2648126176793513e+01
+-3.9880717780536173e+01
+-1.4281921711734437e+01
+1.3080368441538717e+01
+-4.1356025709695864e+01
+-1.5755449911176068e+01
+1.2935946055586374e+01
+-4.0826312017356258e+01
+-5.3922724182990818e+00
+1.4740877561493305e+01
+-4.7312691006416451e+01
+-1.5862514544411864e+01
+1.2713092117621992e+01
+-4.1139361280701344e+01
+-7.1051661491960205e+00
+1.0238045867157803e+01
+-3.4807054445124251e+01
+2.2058838082486207e-01
+1.5169252911664111e+01
+-5.3153010883465541e+01
+-4.2627083136991386e+00
+1.4243790309636559e+01
+-5.0095277207509639e+01
+-4.1936520539522473e+00
+1.4034926452147378e+01
+-4.9390478550387378e+01
+-6.5208296522065168e-01
+1.4914703350037103e+01
+-5.3285440896519717e+01
+-5.2608407632363630e+00
+1.4158667914069063e+01
+-5.1256663911073808e+01
+-5.2608407632363630e+00
+1.4158667914069063e+01
+-5.1256663911073808e+01
+5.5636849961664128e+00
+1.3564903899065287e+01
+-5.0757735208845752e+01
+6.0924214897366866e+00
+1.4440283589095381e+01
+-5.4666858882422432e+01
+5.9299536809807085e+00
+1.3484158090841758e+01
+-5.1328500672559720e+01
+-9.7818853703263748e+00
+1.1959490080986694e+01
+-4.5466951236278227e+01
+-1.3479831527025045e+01
+1.1392589764698652e+01
+-4.2996446124067468e+01
+-1.2165411344912796e+01
+1.1771046291841126e+01
+-4.4774947192084618e+01
+-1.2311565370689269e+01
+1.1580798307530062e+01
+-4.4051651503486589e+01
+-1.5490906944979351e+01
+1.0684953909048899e+01
+-4.0867621816199289e+01
+-1.0005513403800638e+01
+1.1828324715933132e+01
+-4.5794798940959019e+01
+-1.6694659834169155e+01
+1.0773688641533330e+01
+-4.3416921377698387e+01
+-1.6863849627553009e+01
+1.0447738897517771e+01
+-4.2083656658161900e+01
+-1.7001170294211999e+01
+1.0297739493456275e+01
+-4.2005652666490477e+01
+1.1688882510646286e+00
+1.0039759228510594e+01
+-4.1123655046471406e+01
+-1.6292833918898893e+01
+1.0246346643628769e+01
+-4.2508832675640122e+01
+-7.7584343006280543e+00
+1.1807864093900463e+01
+-4.9236926460958664e+01
+-1.5502330982360091e+01
+9.9458674706988752e+00
+-4.2380261636992927e+01
+-1.3014869511250536e+01
+1.0524664157909090e+01
+-4.5381214682418609e+01
+-1.5637688514904811e+01
+9.7733241565078917e+00
+-4.3223808618920529e+01
+-8.5975247416816707e+00
+8.4676952270653025e+00
+-4.5102251082112410e+01
+-1.6227942709904328e+00
+7.5263847864790785e+00
+-4.2995297992429869e+01
+-2.1745498637166132e+00
+6.4847357318671612e+00
+-4.1245052898654819e+01
+-4.7004202147714125e+00
+6.6543439436092697e+00
+-4.2653181506270023e+01
+-5.2799883638734366e+00
+6.3460519557570523e+00
+-4.1069042809152840e+01
+2.7876496013534289e-02
+3.3358192137702578e+00
+-2.2813387271565258e+01
+-1.7249149990551917e+00
+4.2948863642139949e+00
+-2.9205569845923964e+01
+-1.9127354576853126e+00
+3.4320799876990149e+00
+-2.3324511840524327e+01
+-1.1703317046955204e+00
+3.9968554534340943e+00
+-2.8054244014683398e+01
+-3.1396049289479775e+00
+5.1966733883029335e+00
+-3.6818755724887666e+01
+-2.1964913001594426e+00
+3.0978423361320617e+00
+-2.2916871552891198e+01
+-1.6452081054554946e+00
+3.5302191855526939e+00
+-2.7104396858662284e+01
+-3.7295273973457159e+00
+5.1105545872038505e+00
+-3.7483370489185305e+01
+-5.3227139040068594e-01
+2.8581341720980404e+00
+-2.2835230267991953e+01
+-2.0478506383476796e+00
+3.8318780561562695e+00
+-2.9069268609053630e+01
+-2.5413693625572842e+00
+2.9209511489598170e+00
+-2.2815592955194184e+01
+-2.6745173488424188e+00
+3.5919890425439402e+00
+-2.8591881927612469e+01
+-1.1033354115292739e+00
+4.4639596528466194e+00
+-3.3070556079109238e+01
+-2.4325903162853204e+00
+2.8589144471809473e+00
+-2.2677018165913427e+01
+-1.8656263277438865e+00
+3.4538335012147647e+00
+-2.7359246853332618e+01
+-1.9538309631568593e+00
+3.3235894436953242e+00
+-2.6772651746508814e+01
+-1.1460171327809672e+00
+2.8007830118849943e+00
+-2.3275162008989732e+01
+-1.2836058038704921e+00
+2.7288831330875980e+00
+-2.3231648539236520e+01
+-8.8254258170013316e+00
+4.7811395334802196e+00
+-3.8571869740065814e+01
+-1.7784366104714222e+00
+3.1869580315166570e+00
+-2.7002675122748101e+01
+-1.8445408871068696e+00
+3.1131370755587491e+00
+-2.6896066554174528e+01
+-3.1230839968277926e+00
+3.1112518142573204e+00
+-2.7822541883253315e+01
+-1.8422077719787793e+00
+2.9965102456481176e+00
+-2.6725064010790820e+01
+-3.2869122513691238e+00
+2.9343052485797725e+00
+-2.7316359657545409e+01
+-3.2112698229800456e+00
+2.8738184045239494e+00
+-2.7263455620428644e+01
+-3.2112698229800456e+00
+2.8738184045239494e+00
+-2.7263455620428644e+01
+-2.8461331526349762e+00
+2.9101573934648530e+00
+-2.7169877518715417e+01
+-2.8324737112597052e+00
+2.2741350679111374e+00
+-2.1978749824323039e+01
+-2.2513683336631343e+00
+2.7437208871618499e+00
+-2.6446024977881358e+01
+-5.0267980612756913e-01
+2.1878135817749000e+00
+-2.2594348612811242e+01
+-3.3860198709736160e+00
+3.7463630636569896e+00
+-3.4805625707059200e+01
+-3.0435714822768309e+00
+4.1110319826527899e+00
+-3.8123699153913464e+01
+-2.9469327758044774e+00
+2.8032523087507464e+00
+-2.7530578148224702e+01
+-2.4424901616077515e+00
+2.5502423898199034e+00
+-2.5603396839247853e+01
+-1.3632152869653322e-01
+1.9164070241197100e+00
+-2.1539613080924454e+01
+-3.8393990184196531e+00
+2.2665101263964873e+00
+-2.3815600613053061e+01
+-2.4595124826448509e+00
+2.2392189424645794e+00
+-2.5329925702388906e+01
+-2.4283803140696905e+00
+2.3830213910876101e+00
+-2.5993475892912450e+01
+-1.0960001647582580e+01
+3.1655874853863137e+00
+-3.6595430825182653e+01
+-2.6383642802493172e+00
+2.0018136535816065e+00
+-2.5065203541627120e+01
+-5.8384871451395370e-01
+1.5793572399666471e+00
+-2.1926191530423047e+01
+-6.6142050685778031e+00
+2.9402183056202289e+00
+-3.6360503062543003e+01
+1.3176154984627717e+00
+1.4579188386747386e+00
+-2.1148154851217146e+01
+-1.4012150595589214e+01
+7.2000566069391496e+01
+-7.5775285893584268e+01
+-2.9675877140501811e+01
+6.9785186531084150e+01
+-7.5005629355918515e+01
+-3.3204204216257970e+01
+6.7843537948716389e+01
+-7.3305993012040062e+01
+-3.2319743006021788e+01
+6.8337588515573927e+01
+-7.3679665722782858e+01
+-3.2319743006021788e+01
+6.8337588515573927e+01
+-7.3679665722782858e+01
+-3.3976950342119082e+01
+6.9349018079622098e+01
+-7.4805085710028152e+01
+-3.1225033985298673e+01
+6.6027889798777665e+01
+-7.2016440144850733e+01
+-6.6468233788783371e+00
+6.3577268821144258e+01
+-7.0909485264238128e+01
+-7.7950829608262229e+00
+6.2625013288172241e+01
+-7.0156108898454946e+01
+-2.7704703662155062e+01
+6.2116111634156461e+01
+-6.9181415557126115e+01
+-2.6390235738447171e+01
+6.1475095364183190e+01
+-6.8887687432061298e+01
+-2.8535262811389789e+01
+6.1253766207365132e+01
+-6.8558968986970669e+01
+-3.7125611889010230e+01
+6.9833297090109923e+01
+-7.8934004827166305e+01
+-3.8282384942402032e+01
+6.7991133653270836e+01
+-7.7503070158057085e+01
+-9.5920731825190604e+00
+4.7784655963791550e+01
+-5.5207820650104459e+01
+-4.9596641910497388e+00
+4.8809439594949538e+01
+-5.6760245527621301e+01
+-2.2172218100082674e+01
+4.3410101840713679e+01
+-4.9597202311296854e+01
+-1.3470677796978171e+01
+4.5939788309399987e+01
+-5.3022922752300737e+01
+-1.3743625337297418e+01
+4.5609267742793755e+01
+-5.2911968659337013e+01
+-5.0654483011762812e+00
+4.8184701170258492e+01
+-5.6702291895446763e+01
+-1.0864738043185890e+01
+4.6125114566523763e+01
+-5.3566523878177563e+01
+-1.1879974754305771e+01
+4.5717943722745161e+01
+-5.3310356939801061e+01
+-1.1879974754305771e+01
+4.5717943722745161e+01
+-5.3310356939801061e+01
+-3.6627076788649873e+01
+6.0731874804463658e+01
+-7.0040092794937806e+01
+-6.6521943061184770e+00
+4.6889494196779175e+01
+-5.5156406251180123e+01
+-2.2122613582715807e+01
+4.2872877434586762e+01
+-4.9289580781807253e+01
+-1.9306157616654122e+01
+4.3896282441548117e+01
+-5.0775681895438034e+01
+-5.8264208180934887e+00
+4.7026764563089642e+01
+-5.5420380282977021e+01
+-9.2628342014437930e+00
+4.6060657222889851e+01
+-5.4248742871874818e+01
+-1.0893140721216305e+01
+4.5278832018053407e+01
+-5.3249489569223179e+01
+-3.8576728514459624e+01
+5.9616687189186990e+01
+-6.9284889344557129e+01
+-3.8754896282248509e+01
+5.9154218910592881e+01
+-6.9200446724791746e+01
+-1.8691805995413230e+01
+4.3033116318435937e+01
+-5.0457888134835500e+01
+-1.4744277237779245e+01
+4.3521013159858271e+01
+-5.1442912228657406e+01
+-1.1381083112450529e+01
+4.3748737095033285e+01
+-5.2280905829794200e+01
+-1.8890467297251842e+01
+4.1842413618832659e+01
+-4.9373071252162468e+01
+-1.5099770322720723e+01
+4.2668853782723630e+01
+-5.0818950503173596e+01
+-1.4343058251979391e+01
+4.2751722650592647e+01
+-5.1043031637635735e+01
+3.8564604683658525e+00
+3.7795127458344403e+01
+-4.5900461584511852e+01
+-5.6534118294535229e+00
+4.4868863512639734e+01
+-5.4551701254180742e+01
+7.0535598794139354e+00
+3.7806666382589370e+01
+-4.6339422646764604e+01
+7.1993730198791779e+00
+3.8597568472956773e+01
+-4.7466044891169595e+01
+-3.7915678746241831e+01
+5.7878886249206275e+01
+-6.8337052867499708e+01
+9.8720265136102536e-01
+3.6102965519330652e+01
+-4.3788120995987008e+01
+-3.8267323136916460e+01
+5.6245566287272396e+01
+-6.6860987295636704e+01
+-3.7737737793893757e+01
+5.5420738167896602e+01
+-6.6271821265695721e+01
+-3.9818464663941114e+01
+5.5452636035927817e+01
+-6.6244766459737818e+01
+-3.8483282352938993e+01
+5.4474263691249021e+01
+-6.5523342033469547e+01
+-3.8999133651020578e+01
+5.4599742587512118e+01
+-6.5689427188681023e+01
+-1.3955454610377206e+01
+4.1108725818946681e+01
+-5.0168314266175940e+01
+-1.6370918131107124e+00
+3.2262136283369550e+01
+-4.0809533608351991e+01
+2.4245596483042280e+00
+3.2063035588066789e+01
+-4.1071870034020982e+01
+-2.2730999576019922e+01
+3.5770789109652263e+01
+-4.4652146463460220e+01
+-1.5544962690904333e+01
+2.8519311097362888e+01
+-3.5833050765942289e+01
+-2.2404092928920466e+01
+3.6135187492828386e+01
+-4.6733242506810001e+01
+-2.3191088867337886e+01
+3.5054530164101308e+01
+-4.5782930249657625e+01
+-9.4671324260224718e+00
+2.8021223982369882e+01
+-3.7113570408026220e+01
+7.0759216504395077e+00
+3.2406033022643697e+01
+-4.5562680076571198e+01
+-5.5274038143983489e+01
+6.0965068167674580e+01
+-8.2816441763181103e+01
+-2.3077570662989288e+01
+3.4580766932840980e+01
+-4.6757232503247906e+01
+-5.7292023857114152e+01
+6.3437033503977929e+01
+-8.5963308200521126e+01
+-5.4527636600505289e+01
+6.0160004057536000e+01
+-8.2055879428290865e+01
+-2.8151801653517296e+01
+3.4056750781588292e+01
+-4.9028735971137650e+01
+-1.5535710307455538e+01
+2.3325209196441161e+01
+-3.3964271317101904e+01
+5.9893416722095489e+00
+2.8404942852756704e+01
+-4.3584269330741193e+01
+4.4991650479888303e+00
+2.7793333953116552e+01
+-4.2556863388950688e+01
+5.0999301915415316e+00
+2.6231038849986650e+01
+-4.3115153247657766e+01
+-1.7538191075317318e+01
+2.4072889514748571e+01
+-3.7620351785594679e+01
+-3.8066506392834309e+00
+2.3227512596593414e+01
+-3.9072623926748520e+01
+6.9021274747596575e-02
+2.3356644148891114e+01
+-4.0607245764548694e+01
+-2.5661638057708127e-02
+2.2759354428094845e+01
+-4.1367165965880758e+01
+-1.1533888873717222e+01
+1.9172770667856120e+01
+-3.4014429317452198e+01
+-1.1533888873717222e+01
+1.9172770667856120e+01
+-3.4014429317452198e+01
+-1.6489824461241444e+01
+1.8281478515550745e+01
+-3.2048970494700242e+01
+5.3606226397471541e+00
+1.9120337229100709e+01
+-3.5137169057966133e+01
+8.9229473529383496e-01
+2.2664797040985288e+01
+-4.2409756089736725e+01
+1.5067942940400771e+00
+2.3149860091282370e+01
+-4.3646885751262452e+01
+5.6246857153152128e+00
+2.1476719858948158e+01
+-4.0674587909947995e+01
+8.6868427254188596e-01
+2.1153260576851650e+01
+-4.0146309299066168e+01
+-2.3512858402180009e-01
+2.2248536862506871e+01
+-4.2692308103911003e+01
+-2.8875935041273193e+00
+2.1324768558126973e+01
+-4.1014171215016027e+01
+-2.8696778518962294e+00
+2.1231577821122190e+01
+-4.0780912143436197e+01
+-1.0373864911276952e+01
+1.9199922846788031e+01
+-3.6473896173050207e+01
+-1.1138158814744369e+01
+1.8637316347306648e+01
+-3.5368350432950145e+01
+5.4809703735170716e+00
+2.4745692620829871e+01
+-4.8580135099775895e+01
+4.5979280020668485e+00
+1.8977697665900674e+01
+-3.6998790736763382e+01
+-1.0309305333904319e+01
+1.8718418961359568e+01
+-3.6193629481109767e+01
+-7.1360805353019874e+00
+1.9918019740257154e+01
+-3.8799300631993333e+01
+6.3183933587304777e+00
+2.3397341274645918e+01
+-4.6781688275484285e+01
+-7.1965269355497785e+00
+1.9387275703701668e+01
+-3.7956838174997287e+01
+6.0730180284297495e+00
+2.3425338798462775e+01
+-4.6817655593783506e+01
+6.4178591772520193e+00
+2.2996713479516448e+01
+-4.5990089245698400e+01
+-2.4161506335378378e+00
+2.1242367114960658e+01
+-4.1984923308123150e+01
+-4.8094332067085652e+01
+4.2106900897163705e+01
+-8.2362345859938046e+01
+5.0513302713787036e+00
+2.2511201331306101e+01
+-4.5852359041615507e+01
+-7.3129803982500743e+00
+1.9611304052811857e+01
+-3.8997200982611979e+01
+-7.3121451167805471e+00
+1.9687308611871302e+01
+-3.9114869478394056e+01
+-1.0464686298701389e+01
+1.8599360443247988e+01
+-3.6994805629052046e+01
+-1.0464686298701389e+01
+1.8599360443247988e+01
+-3.6994805629052046e+01
+2.7115450148591278e+00
+2.2300122568911224e+01
+-4.5663945088808532e+01
+4.8824970647365058e+00
+1.8342340690803788e+01
+-3.7549985091078177e+01
+9.9438217678226604e-01
+1.8977952428423386e+01
+-3.8683655800733554e+01
+-2.1354893745093158e+00
+2.0631746458932916e+01
+-4.2200382509501232e+01
+-7.8300189479649225e+00
+1.8858029410250840e+01
+-3.8210745519295614e+01
+1.3342922245479747e+00
+1.9103340684584122e+01
+-3.9091307465149683e+01
+2.3098380891020440e+00
+2.0475155464356686e+01
+-4.2402888555957887e+01
+-1.3005690008341309e+00
+1.9792052279886665e+01
+-4.0918614770293381e+01
+-5.8873025198433284e+00
+1.9228840534711370e+01
+-3.9708203232526621e+01
+-2.5130737422787806e+00
+2.3759942630420948e+01
+-5.0106018924297437e+01
+-8.7271994042658196e+00
+1.9266192056262270e+01
+-4.0340688177641496e+01
+-1.4361014689690248e+00
+2.0212689773815715e+01
+-4.3161332417844129e+01
+1.1354085603854713e+01
+2.2851349383280805e+01
+-5.0219595201996491e+01
+6.6025907689224734e+00
+2.3510631341547793e+01
+-5.1776193103661861e+01
+-1.1815250860383715e+00
+1.9744861424544105e+01
+-4.4726828655751760e+01
+-9.1417956875505766e+00
+1.8260971456913932e+01
+-4.0981970604895700e+01
+5.2992752767034137e+00
+2.1050726588871381e+01
+-4.8891429807767395e+01
+4.9756063091846610e+00
+2.0317434653307686e+01
+-4.8357243763195484e+01
+1.0495413152054780e+01
+2.5134238485099580e+01
+-6.0339552915949866e+01
+8.5654649089438148e+00
+2.5337545400787899e+01
+-6.0573723472542504e+01
+-5.4128866364234398e+01
+3.5622615604196461e+01
+-9.2156890798429146e+01
+9.8494423887689138e+00
+2.0896594112020587e+01
+-5.5842227209226003e+01
+1.3948597278008537e+01
+2.0826526729077585e+01
+-5.6409305441965863e+01
+1.8405934453384472e+00
+1.7806018008923374e+01
+-4.8150659062341774e+01
+9.3893812143243700e+00
+1.9599239092679152e+01
+-5.3447326064190499e+01
+4.0428489982768196e+00
+1.9486971838101940e+01
+-5.4109902629976517e+01
+1.5577220932193474e+00
+2.0075522157115362e+01
+-5.5359359941847757e+01
+1.0923550215328842e+01
+1.9194973246957268e+01
+-5.4459471481346206e+01
+-1.4706306611909763e+01
+1.3676031409027988e+01
+-3.7699877203307445e+01
+-1.6341174132192979e+01
+1.4030608921644429e+01
+-3.8403234079089096e+01
+-3.5950279541200389e+00
+1.5984304666444592e+01
+-4.5801666029529414e+01
+-4.7987298885157981e-01
+1.6427132828642389e+01
+-4.8535572871808064e+01
+-1.1757485891810283e+01
+1.5810696028167952e+01
+-4.6980787445242051e+01
+-1.4406244435487874e+01
+1.3545800729017129e+01
+-4.0188525947505518e+01
+-1.4470617179295832e+01
+1.3534227783878842e+01
+-4.0628469212158528e+01
+-4.5627130255065973e+00
+1.6346413771810546e+01
+-4.9877395427586691e+01
+-1.4417330912513307e+01
+1.2947583341321785e+01
+-3.8958681293003821e+01
+-1.4468891382574043e+01
+1.2870701791404747e+01
+-3.9235599059551120e+01
+-1.5742718931083427e+01
+1.3067765963451720e+01
+-4.0278337366952030e+01
+-1.5742718931083427e+01
+1.3067765963451720e+01
+-4.0278337366952030e+01
+-3.4824554334442520e-01
+1.6619922830839986e+01
+-5.2639071830713846e+01
+-3.4408199191394889e-01
+1.6658710373045579e+01
+-5.2697379931827705e+01
+-1.0209536971107212e+01
+1.3872410793219494e+01
+-4.4124113024420801e+01
+-1.1403791323036000e+01
+1.3737179787799633e+01
+-4.6031880437397298e+01
+-1.5338736036912046e+01
+1.1859428499886565e+01
+-4.0651131540606578e+01
+3.5691460821568355e-01
+1.5108504410595454e+01
+-5.2725487458467136e+01
+-5.7796859159807470e+00
+1.3434276651609412e+01
+-4.8539708229436364e+01
+-5.8440418577732780e+00
+1.3572023133224034e+01
+-4.8824964766256343e+01
+-1.6742383219298542e+01
+1.1219792903564311e+01
+-4.1483485855375108e+01
+-9.5598234049435877e+00
+1.1858300651981873e+01
+-4.5787336401929437e+01
+-9.5862981874309821e+00
+1.1998509430512931e+01
+-4.6246338586299011e+01
+2.1624829119262428e+00
+1.0524764312163052e+01
+-4.0792322193227207e+01
+-1.7269490937820521e+01
+1.0295990363028601e+01
+-4.2501738460557831e+01
+-1.6790817849949857e+01
+1.0072761679964509e+01
+-4.2910731522282447e+01
+-1.5664837043555691e+01
+9.9587224258501781e+00
+-4.2576602267531641e+01
+-1.7438931036450104e+01
+1.0239893938029772e+01
+-4.3464029082068102e+01
+5.4715312969833780e+00
+1.0933142061115513e+01
+-4.8162990160706691e+01
+-1.5562744902969593e+01
+9.6322548228787142e+00
+-4.2687260616984354e+01
+4.9428363083137459e+00
+1.0851746724132472e+01
+-4.8186967851637426e+01
+1.7871315067005502e+00
+8.1158664588657423e+00
+-3.6621139689508816e+01
+-1.4192904216971048e+01
+9.7337444830175333e+00
+-4.8149771574695698e+01
+-1.4965331671912770e+01
+8.6404399665103693e+00
+-4.5635236006206945e+01
+-4.2667751837373386e-01
+3.6568712962696921e+00
+-2.1133364229904164e+01
+4.4118693575770501e-01
+4.2634196623087641e+00
+-2.4501230984197282e+01
+-3.2840773711340498e-01
+7.5247941200261721e+00
+-4.2672092446945356e+01
+-1.2251276092291659e+00
+7.9712482630775581e+00
+-4.5532872575220161e+01
+-8.0132612092797639e-01
+7.2617917014670876e+00
+-4.2315457173737165e+01
+-2.4208544585590563e-01
+3.8512496161657230e+00
+-2.4011948549118461e+01
+-2.0503861123752762e+00
+2.9691645028989488e+00
+-2.0450508651694346e+01
+-9.9607707775056883e-02
+3.2735713781555824e+00
+-2.3290404465313227e+01
+-2.0921263213473860e+00
+3.4105688155379834e+00
+-2.3413155716856174e+01
+-5.8608469954987985e+00
+6.1092905193956062e+00
+-4.0734743400423753e+01
+-1.3051693872599726e+00
+3.9444199949630390e+00
+-2.8021453873625759e+01
+-1.3175853724681876e+00
+3.8913324882218499e+00
+-2.7948960162145404e+01
+-1.4389018289928914e+00
+3.7089051623402702e+00
+-2.7624865690679506e+01
+-1.3008129915435548e+01
+5.6887123953826446e+00
+-4.1900675256247212e+01
+-1.4583052461294548e+00
+3.6507871202680238e+00
+-2.7560415286799635e+01
+-8.3733976925419096e-01
+3.0386326458914934e+00
+-2.3364935129771442e+01
+4.8246705220237676e-02
+2.9324483050648360e+00
+-2.2563011146998807e+01
+-1.3877161437279870e+01
+5.3083166517768721e+00
+-4.0681364520924667e+01
+-1.4015860933144253e+01
+5.0216949547754082e+00
+-3.9335188407967806e+01
+-1.6700385088227652e+00
+3.2829364535804135e+00
+-2.7072779954131363e+01
+-1.2846908614407020e+00
+2.4797156624465972e+00
+-2.2944485836536312e+01
+5.4918295272824580e-01
+2.3193406184130878e+00
+-2.2425525718157374e+01
+-1.6587911865889858e+01
+4.1848647381986295e+00
+-4.1107515766075267e+01
+-2.1660064685376685e+00
+2.4491353149821258e+00
+-2.5655883129589888e+01
+-2.9094501708531828e+00
+2.6204443414388314e+00
+-2.7209095169829691e+01
+-5.7134552981394715e-01
+1.8616786398084262e+00
+-2.1606655018537587e+01
+-8.0668755296413668e+00
+6.2396025821844141e+01
+-6.9542527103115447e+01
+-9.3355440524381201e+00
+6.1914594054487182e+01
+-6.9382208388674727e+01
+-2.9933975954454869e+01
+6.2142989202634745e+01
+-6.9182078185341012e+01
+-2.1230981753170286e+00
+5.1482196414855700e+01
+-5.9098096159983726e+01
+-1.2616951976879951e+01
+4.6588100117045435e+01
+-5.3835279441930396e+01
+-2.0389644451598077e+01
+4.3716458385252764e+01
+-5.0026593888140141e+01
+-2.0389644451598077e+01
+4.3716458385252764e+01
+-5.0026593888140141e+01
+1.1790633334382892e+00
+4.1043781656553620e+01
+-4.8110365855290496e+01
+7.0359688027756384e+00
+3.8350980944619216e+01
+-4.5222430387088004e+01
+-1.3221951516282981e+01
+4.5297463656161646e+01
+-5.2831998034511507e+01
+-1.3926388642489670e+01
+4.5172021165567045e+01
+-5.2660926324829354e+01
+-1.8903125854937279e+01
+4.3863998380171040e+01
+-5.0732982040331585e+01
+-8.6204333071133075e+00
+4.6373631178065523e+01
+-5.4353044094367810e+01
+-1.9250343604991773e+01
+4.4381486727024232e+01
+-5.1173446379857346e+01
+-1.6594031858171874e+01
+4.4268923665511821e+01
+-5.1539741976511692e+01
+-2.2095287630797721e+01
+4.2482851636400248e+01
+-4.9032421154175388e+01
+-1.8759378463212453e+01
+4.4176251589622211e+01
+-5.1076938175727335e+01
+-7.6910409825458173e+00
+4.6066348503321215e+01
+-5.4685840974175257e+01
+-1.0679754016034154e+01
+4.4861488694014277e+01
+-5.3085242546952209e+01
+-2.1510161020828583e+01
+4.2090674289621994e+01
+-4.8940025647942527e+01
+-1.7641665215686412e+01
+4.3323672957833971e+01
+-5.0871298638514475e+01
+-2.3052603938109055e+01
+4.2159646464697325e+01
+-4.9081675416440305e+01
+-1.4314446901880187e+01
+4.3374610337964292e+01
+-5.1354196157691327e+01
+-8.4235143232598269e+00
+4.4724508928177883e+01
+-5.3228453543091206e+01
+4.4312127841212838e+00
+3.8237651936748819e+01
+-4.6082915713523391e+01
+-1.6334587012107299e+01
+4.2923021842283930e+01
+-5.0808881377870783e+01
+-2.2354767166778213e+01
+4.1468352375918712e+01
+-4.8588819239333382e+01
+-1.6999754037376455e+01
+4.2696443253619087e+01
+-5.0512603802838044e+01
+-2.6658643933704258e+01
+5.1356218079311567e+01
+-6.1247973898523341e+01
+-2.0671221135116411e+01
+4.1223022063233543e+01
+-4.8763436076747944e+01
+-2.2101550566479940e+01
+4.1028874478434474e+01
+-4.8506226470380447e+01
+-1.6365492674142484e+01
+4.2156460168021795e+01
+-5.0320265691007343e+01
+1.9837319826855643e-01
+3.5537708683827702e+01
+-4.3334994898055129e+01
+-1.4287898804680871e+01
+4.1556327434424695e+01
+-4.9948493486547441e+01
+-1.4788069075619884e+01
+4.2006345560133006e+01
+-5.0562642507142336e+01
+-1.4788069075619884e+01
+4.2006345560133006e+01
+-5.0562642507142336e+01
+7.2657747342735561e+00
+3.7762859334975154e+01
+-4.6616382504419647e+01
+-1.7846423591983235e+01
+4.1279419722610179e+01
+-4.9647447149010638e+01
+-1.7468617231260460e+01
+4.1315125351346182e+01
+-4.9700736215020342e+01
+-1.3589456059606675e+01
+4.1874097692867871e+01
+-5.0697589277948552e+01
+-1.3155934133144410e+01
+4.1743989355739515e+01
+-5.0624240584705795e+01
+-1.4140098977363625e+01
+4.1493229759391710e+01
+-5.0331514659444743e+01
+2.6446869610725585e+00
+3.6201090315019265e+01
+-4.4901762185259692e+01
+-1.7503061193926957e+01
+3.2485579961908201e+01
+-3.8643003876583450e+01
+-1.6820992192607321e+01
+4.0679469193934601e+01
+-4.9341117870932862e+01
+-1.2266336360805743e+01
+4.1520792359615456e+01
+-5.0751504784518765e+01
+-6.4392214075753440e-01
+3.4500867771787554e+01
+-4.2358514637164333e+01
+-1.3557364752930493e+01
+4.0885966213420446e+01
+-4.9938803794484372e+01
+-1.3702173595612347e+01
+4.0456292903762481e+01
+-4.9728675577216883e+01
+-2.2234238475118143e+01
+3.7528837152760680e+01
+-4.6458894870969601e+01
+-1.8401313328642139e+00
+3.2173799593362986e+01
+-4.0938219811084323e+01
+-2.3245229646514598e+01
+3.5928808023615638e+01
+-4.5171522010317815e+01
+-1.4247784918430677e+01
+2.8792301147867374e+01
+-3.6178505375992152e+01
+-1.3798432756220362e+00
+3.1326149155622428e+01
+-4.0792792857202642e+01
+-2.2138085425289972e+01
+3.6536731510079044e+01
+-4.6337602463485418e+01
+-2.1339227118106688e+01
+3.5611747911366777e+01
+-4.5212567337640550e+01
+-2.2615228153889422e+01
+3.5244644657863525e+01
+-4.5053437499053921e+01
+-1.4979985109537092e+01
+2.7071417540260736e+01
+-3.4848942019095631e+01
+7.2675056439546806e+00
+3.3660346776726946e+01
+-4.5719581841486090e+01
+-9.3426645250760942e-01
+2.9638283210137114e+01
+-4.0170692064453128e+01
+-2.8373339737756378e+01
+3.9864966502795497e+01
+-5.2908630368660781e+01
+-2.8400328951476013e+01
+3.9516776426144368e+01
+-5.2778621444094135e+01
+-2.7379326164189663e+01
+3.8013221414361155e+01
+-5.0873383580967399e+01
+-1.0209527393129584e+01
+2.6966554809776948e+01
+-3.6501814931624082e+01
+-4.6770890760986122e-01
+2.8226018693227509e+01
+-4.0414715062405740e+01
+-1.7186611803955781e+01
+2.5204544413148412e+01
+-3.5197674297869717e+01
+2.1896033088069533e+00
+2.7726251262040684e+01
+-4.0512704147784817e+01
+-2.7402086079294413e+01
+3.4314295634932812e+01
+-4.8858621979866342e+01
+-2.8300869352667799e+01
+3.4976236030769641e+01
+-4.9667322954628531e+01
+-2.8844553770833585e+01
+3.3409183278809806e+01
+-4.8841552119053986e+01
+1.0949297352555995e+01
+3.0735460093764907e+01
+-4.7483352068697165e+01
+-7.9619359660202749e+00
+2.3451992890935443e+01
+-3.5877846244735530e+01
+3.0098651943346111e+00
+2.0723935592979291e+01
+-3.4971118795158560e+01
+4.9172105987068555e+00
+2.5425114522062405e+01
+-4.3661600882569267e+01
+7.2962237385291475e+00
+2.7144836989938966e+01
+-4.6981904515953751e+01
+-1.0338204800671265e+01
+2.0720894341918633e+01
+-3.4888881131528812e+01
+6.7903649442571172e+00
+2.5675143252921398e+01
+-4.5413982619006894e+01
+-8.2465119271762291e+00
+2.0505323482030914e+01
+-3.5334525114263059e+01
+-1.2901702194391129e+01
+1.9052311533836615e+01
+-3.2389231096029398e+01
+-1.2437358091542608e+01
+1.9287038540839070e+01
+-3.2874754753110153e+01
+7.4576243872815358e+00
+2.5081357038733024e+01
+-4.5604833041486344e+01
+1.6345939018225892e+00
+2.0488850873512636e+01
+-3.6552796525481277e+01
+-1.5885048452297994e+01
+1.8438440458711781e+01
+-3.2112651261841897e+01
+-2.6440831399636816e-01
+2.0114403559253859e+01
+-3.6196894945222965e+01
+1.2533926929930715e+01
+2.6032602255955045e+01
+-4.9015991905110717e+01
+-3.7759885271914961e+00
+2.1610352916767404e+01
+-4.0358406206548011e+01
+-3.8050057759969911e+00
+2.1409331580950010e+01
+-3.9988051473877768e+01
+8.8193606315539146e+00
+2.1115402115427077e+01
+-4.0270461186715316e+01
+-2.2375473706825342e+00
+2.2004556563078793e+01
+-4.1550509456025594e+01
+-7.2324486463553761e+00
+2.0388496859622631e+01
+-3.8365424497111249e+01
+1.4929465156249822e+00
+2.2373258352974119e+01
+-4.3519632762859558e+01
+1.5132525676673369e+01
+2.5126489718507475e+01
+-5.0619471538780800e+01
+1.2408881321478859e+01
+2.3476750853968742e+01
+-4.9627703676888409e+01
+2.0495773139669393e+00
+2.2290185069894363e+01
+-4.6750731634795009e+01
+-1.3073550347038367e+01
+1.7154279779545980e+01
+-3.5311457091070324e+01
+1.4886574897542688e+00
+2.1289697160058321e+01
+-4.5429712261124791e+01
+1.4873955714134707e+01
+2.3883887296621708e+01
+-5.2491414779288142e+01
+-1.3401272551845047e+01
+1.7069386006558652e+01
+-3.5809520308405538e+01
+-1.3401272551845047e+01
+1.7069386006558652e+01
+-3.5809520308405538e+01
+3.2392733095595347e+00
+1.8210675404819636e+01
+-3.9631538415124453e+01
+1.1131787264948420e+01
+2.6900036792428899e+01
+-6.1979527850601983e+01
+1.2679557087751469e+01
+2.4253872607334635e+01
+-5.7577546160811799e+01
+-6.8243010963483091e+00
+1.7850050097862734e+01
+-4.2440315962541639e+01
+2.9589299480958737e+00
+1.6856376384899512e+01
+-4.0949960669711416e+01
+-2.5402331567696829e-01
+1.8718817506098443e+01
+-4.5688153792146998e+01
+-1.0322323551174888e+01
+1.9477721735315889e+01
+-4.7675782326655778e+01
+-9.6948408474593624e+00
+1.6852530299070864e+01
+-4.1318637182490292e+01
+-9.6948408474593624e+00
+1.6852530299070864e+01
+-4.1318637182490292e+01
+-3.5819099120518678e+00
+1.7427090078575670e+01
+-4.5276303696335432e+01
+1.3773986169680068e+01
+2.6365784066194806e+01
+-7.3676523011135899e+01
+-1.1352114731754694e+01
+1.4244976624978468e+01
+-4.1455035444746265e+01
+-1.1306518629059612e+01
+1.4325977236146748e+01
+-4.2342324321998213e+01
+-1.2705142531430853e+01
+1.3023651478173649e+01
+-4.0868061430667190e+01
+-1.4135038533349704e+01
+1.2517171812697532e+01
+-4.0439090815012918e+01
+8.0987312853123417e-01
+1.5268114099123080e+01
+-5.2093800875350269e+01
+-6.7925973198434724e+00
+1.3359844140843940e+01
+-4.6474609338647348e+01
+-1.2851667425808722e+01
+1.2233879427068427e+01
+-4.3341211134310718e+01
+-1.5618249665983935e+01
+1.1519649227760606e+01
+-4.1243989509164841e+01
+-1.1834388926961271e+01
+1.3173105476290027e+01
+-4.9278261158308425e+01
+-1.1576507554857207e+01
+1.1581993535673780e+01
+-4.5756650198897752e+01
+-1.2168818365562210e+01
+1.0919095081275422e+01
+-4.4404536407405558e+01
+-1.5398866948442336e+01
+1.0185694773945976e+01
+-4.1830380819224779e+01
+5.6989225832197681e+00
+1.0782940581261414e+01
+-4.7245880990419245e+01
+4.7130446316895318e+00
+1.0063669560463451e+01
+-4.6335443389703123e+01
+-1.5367410111486304e+01
+9.0928395654247325e+00
+-4.3506038695348330e+01
+-1.6575241187029498e+01
+9.3789706110427939e+00
+-4.6904699798314184e+01
+-1.5294984459804651e+01
+8.6386078968435740e+00
+-4.4449131684510562e+01
+-2.3280065558195444e+00
+7.5208264489288927e+00
+-4.3378502228734156e+01
+-1.3799169156932791e+01
+6.7423640834304974e+00
+-4.3883732977144902e+01
+-2.0858372089988084e+01
+7.0272655344131225e+00
+-4.7626038792537926e+01
+2.6922682426242600e-01
+3.2161455623419548e+00
+-2.3316848872656234e+01
+-1.8857124167283055e+00
+5.8753676856373573e+00
+-4.1327824994238611e+01
+-6.1258942126666038e-01
+3.0542702680749456e+00
+-2.2484581540339956e+01
+-2.2449995199177417e+00
+3.8560992283820026e+00
+-2.8979450333404632e+01
+-2.8526915481865007e+00
+5.5400455524219971e+00
+-4.0425371409332833e+01
+-1.8171935260370329e+01
+5.6141455761446393e+00
+-4.4441804950799231e+01
+-1.3796076888689383e+01
+5.0354014969240879e+00
+-3.9891432222651034e+01
+-1.7939376974507287e+01
+5.3844468065801712e+00
+-4.3549857166894753e+01
+-3.4888892624365262e+00
+4.6339385268050703e+00
+-3.8653252944302203e+01
+-3.5284670217147629e+00
+3.6955085018511693e+00
+-3.4689642071983386e+01
+-1.2903550917156116e+01
+3.6668321998892077e+00
+-3.7785004395215687e+01
+-3.5519118932087785e+00
+2.0206050737214540e+00
+-2.3196052383350789e+01
+-7.2600565415360681e+00
+3.4338470209263328e+00
+-3.7673401080777253e+01
+-3.8965378060232175e-01
+1.8272191101461877e+00
+-2.1914068166225267e+01
+-6.4729459541968222e+00
+2.9566305531672734e+00
+-3.6037437988845419e+01
+-2.4303603306539916e+00
+1.9430291711665839e+00
+-2.5020001018173055e+01
+-2.4195146588329774e+00
+1.9964835358672957e+00
+-2.5500181392438247e+01
+6.6254428931863654e+00
+4.0086890245021841e+01
+-4.5785855559975090e+01
+6.8150234307477904e+00
+4.0030695660521666e+01
+-4.5891613375223564e+01
+2.3640929880654022e+00
+3.6216319661610882e+01
+-4.4736025272641648e+01
+9.3327285307819685e-01
+3.4361001045025439e+01
+-4.3076550672782361e+01
+-1.2938431648176516e+01
+2.7927108970421298e+01
+-3.6067674682079065e+01
+-2.4555071109587544e+01
+3.6174463484335810e+01
+-4.7178774033388976e+01
+3.0926989938176441e+00
+3.0887668626620329e+01
+-4.2443671823983010e+01
+-2.3390426666240121e+01
+3.5395129732806261e+01
+-4.7243776858972232e+01
+-2.2935328084192413e+01
+3.4700460530966353e+01
+-4.6246723930358648e+01
+-2.3177692292623746e+01
+3.5231568222227416e+01
+-4.7251938122532088e+01
+-2.6654964102105986e+01
+3.7779968811567322e+01
+-5.0717817747696401e+01
+-2.7586403320677952e+01
+3.8117660128140024e+01
+-5.1733741401538360e+01
+-2.8324277683277966e+01
+3.6103545687324186e+01
+-5.0184022184515563e+01
+-2.8364625887746932e+01
+3.5913346213323209e+01
+-5.0711779792311468e+01
+-2.8343628830241752e+01
+3.4701303377244670e+01
+-4.9497225440009714e+01
+-2.8399743646895029e+01
+3.4088269107343798e+01
+-4.9264487253439107e+01
+-2.8399743646895029e+01
+3.4088269107343798e+01
+-4.9264487253439107e+01
+-2.7735136094025332e+01
+3.4060871999543465e+01
+-4.9800700273314305e+01
+8.9219959994019007e+00
+2.8572236148489427e+01
+-4.5337211902340137e+01
+-1.5226716254557715e+01
+2.0740984577573059e+01
+-3.2581825786023757e+01
+7.5152729384296544e+00
+2.6317572524667131e+01
+-4.4509806668034798e+01
+-7.4888056943479842e-01
+2.0983786097259244e+01
+-3.4768705088117130e+01
+-5.2797099885864771e+00
+2.1785355458706256e+01
+-3.6973002355662210e+01
+1.6552314957482697e+01
+2.9369637448677640e+01
+-5.2465816702904888e+01
+1.2478567318398870e+01
+2.7762271871777426e+01
+-4.9290110820876691e+01
+8.0987997546379304e+00
+2.5377410750579710e+01
+-4.5807432844309375e+01
+2.4761867939019817e+00
+2.3964817837313330e+01
+-4.2925917008199093e+01
+2.9827787104937369e+00
+2.4236455425983891e+01
+-4.3650525675663445e+01
+-1.6600604700653214e+01
+1.8140314375409915e+01
+-3.1534498551507731e+01
+-7.3241451851777537e+00
+2.0941026253259501e+01
+-3.7820066224526691e+01
+-1.9233149127546845e+01
+2.0139012400087502e+01
+-3.5912851393797432e+01
+1.5922040454640028e+01
+2.6344828031909081e+01
+-5.1748817900164930e+01
+5.9913637573164689e+00
+2.2778888329104358e+01
+-4.5328590998664581e+01
+6.7336058961612970e+00
+2.3169726296491390e+01
+-4.6555881944327517e+01
+-5.9309530805486617e+00
+2.0124228658099849e+01
+-3.9653788404374005e+01
+-1.2294634030015208e+01
+1.7884134822609049e+01
+-3.6378342402591855e+01
+-1.3578687316645797e+00
+2.0353256350154982e+01
+-4.3262172016825048e+01
+1.0154152842566744e+00
+1.8718462113073439e+01
+-3.9992709263523679e+01
+3.1390445189021690e+00
+2.0747188041189226e+01
+-5.0124417802399549e+01
+-3.1660121440014604e+00
+1.8943110245672312e+01
+-4.9418940286502220e+01
+1.4209659263269625e+01
+2.1259562943590495e+01
+-5.6221760697669978e+01
+6.2134552617568017e+00
+2.2412421566728501e+01
+-5.9295022370061893e+01
+1.9653634023203954e+00
+2.0512083778300298e+01
+-5.5440722518765355e+01
+1.3901667801802371e-02
+1.8807960089529093e+01
+-5.3747680104929458e+01
+-1.5287820470630349e+01
+1.3084003957482071e+01
+-3.9867961513476075e+01
+-1.1778894366945208e+01
+1.3469312479754441e+01
+-4.2492825054122839e+01
+-1.3045881329808276e+01
+1.3258782473337131e+01
+-4.2514271776668913e+01
+-3.5278952090058439e+01
+2.1550765171642762e+01
+-6.8867937371065665e+01
+-1.6940111018933774e+01
+1.2304927398450733e+01
+-4.0850190538769041e+01
+-1.6276502035058975e+01
+1.2192777858627032e+01
+-4.0218652667344386e+01
+2.7934193900187196e+00
+1.6437124318595085e+01
+-5.5119096839357248e+01
+-1.6550360596986884e+01
+1.2155346576828778e+01
+-4.0619295251081994e+01
+-3.6558549817699406e+00
+1.4315458355487049e+01
+-5.0080209305383185e+01
+6.1854108555816882e+00
+1.4504126108741151e+01
+-5.1561112072667257e+01
+2.9998868204925704e+00
+1.1354240689411027e+01
+-4.0948926957067911e+01
+-1.2446963864742226e+01
+1.1661119249343191e+01
+-4.3952627745954594e+01
+-9.9984549687271702e+00
+1.2017324751238489e+01
+-4.5698304753379105e+01
+2.4502868770586002e+00
+1.1516435559531001e+01
+-4.7833945173357606e+01
+-2.0555055729066883e+01
+1.1806865383851548e+01
+-5.0395553925976238e+01
+3.0282917763392105e+00
+9.8399712912668580e+00
+-4.5773870354209457e+01
+-1.3966840967362353e+01
+9.3788284504503654e+00
+-4.5952047324755775e+01
+-5.7954812779459097e-01
+7.3533637301685530e+00
+-4.2327943252717851e+01
+-1.1543758429284987e+00
+7.3674240080429518e+00
+-4.3462119762890488e+01
+-1.4886238210074878e+00
+6.6962958432507209e+00
+-4.1703011785970354e+01
+-1.1534678913314345e+00
+3.4200254054706103e+00
+-2.5560808124705506e+01
+-4.1192982035266956e+00
+5.7702823791488758e+00
+-4.1448781394464433e+01
+-1.8859255512553692e+00
+2.8976432583109748e+00
+-2.2132758162518002e+01
+-2.4918626692323596e+00
+3.9890143587781162e+00
+-3.0164114547409323e+01
+-4.7609473059082958e+00
+5.0302500505839696e+00
+-4.0190478377165981e+01
+-1.5218732345943881e-01
+2.4703454916579677e+00
+-2.1927717501527074e+01
+-1.5849597251380736e+00
+2.4944133744718924e+00
+-2.3710345309314526e+01
+-5.6351473209108587e+00
+4.3317776749335621e+00
+-3.8302310895485967e+01
+-1.7673127325622719e+00
+2.2793410223249104e+00
+-2.3426313114036212e+01
+-1.9192448255985008e+00
+2.3017038686753133e+00
+-2.3880418008234326e+01
+-6.2884823425508527e+00
+3.2132193587129958e+00
+-3.6392562890374229e+01
+-3.3834862998413415e+00
+2.8763458401368576e+00
+-3.1469746145005143e+01
+-1.4713002048826572e+01
+6.7390908322912566e+01
+-7.4628042778532674e+01
+-2.3010233171036663e+01
+3.6234768918038000e+01
+-4.5870164721335875e+01
+-2.4472920033416795e+01
+3.6572781272564548e+01
+-4.6532351248571004e+01
+-2.2077875099122366e+01
+3.4894868079789397e+01
+-4.5997154349441672e+01
+-3.8362744700061135e+01
+4.4601224102631157e+01
+-6.2184882792621707e+01
+1.2996088747268274e+01
+3.1082538265924647e+01
+-4.9861935698106173e+01
+-3.0252228887545829e-01
+2.3772702616264933e+01
+-4.1209494426657876e+01
+-1.4711305311944010e+01
+1.8667220138934233e+01
+-3.2040413821423108e+01
+-8.5416453684783100e+00
+2.0596771040692591e+01
+-3.7037360349680483e+01
+8.1225961685147841e+00
+2.0005677875468130e+01
+-3.7695045751943994e+01
+1.5953479588820965e+01
+2.7252041119489881e+01
+-5.2031593587139980e+01
+-7.3692723266461275e+00
+2.0270589121680629e+01
+-3.8487618733605458e+01
+1.2490887402224521e+01
+2.4846667280860576e+01
+-4.8942605193661208e+01
+6.5440110299053911e-01
+2.1602267417756597e+01
+-4.3970395194003515e+01
+7.5968259471721202e+00
+2.2232219182935708e+01
+-4.7956595129491156e+01
+1.4155002494197589e+01
+2.4845675964972354e+01
+-5.7659551337407983e+01
+1.1423700233338566e+01
+2.0897173852654628e+01
+-5.0739967839348971e+01
+9.5531781599107024e+00
+2.0222277190430450e+01
+-4.9784495675902761e+01
+6.0128770721274742e+00
+1.5199239688500734e+01
+-3.9211618442697578e+01
+-5.0736400535013937e+00
+1.6206714149067690e+01
+-4.5514749062598341e+01
+5.2334726704730263e+00
+2.0970938040026727e+01
+-6.0406395852031686e+01
+-1.2017393275921972e+01
+1.5824638647709788e+01
+-4.6337111613177086e+01
+-9.4617346321189988e+00
+1.4005721016672771e+01
+-4.4022196654216515e+01
+-1.4202502719625203e+01
+1.4982926794839951e+01
+-4.8528089581588787e+01
+-2.0297298549691031e-01
+1.5244542393105807e+01
+-5.2908877465772967e+01
+-1.6627375020483555e+01
+1.0050640516539369e+01
+-4.3583834003202838e+01
+-1.7570304454100079e+01
+9.4331172031807142e+00
+-4.3326757128848911e+01
+3.1288669146630075e+00
+8.5011900970421852e+00
+-4.0786109046423967e+01
+-1.6838395393302605e+01
+9.3224364496331571e+00
+-4.5483885874125768e+01
+-1.2612633230500812e+00
+6.7490391505727931e+00
+-4.1778416069916879e+01
+-2.1131976543506905e+01
+6.9837394166712761e+00
+-4.7803353609929047e+01
+-1.7546519261362177e+00
+2.9354377594193384e+00
+-2.1844153511218330e+01
+7.1400834970861748e-02
+2.9331245036099278e+00
+-2.1956537935694211e+01
+-5.0103510746299600e+00
+5.6396836099148207e+00
+-4.0058734666172235e+01
+-3.4473798656072394e+00
+5.2583710255228544e+00
+-3.9902628916813001e+01
+-1.2214241269121757e+00
+2.9005829239955188e+00
+-2.3880486632139725e+01
+-8.8350944994461695e+00
+4.3476541263118182e+00
+-3.9129134743970091e+01
+-3.3130372026324642e+00
+2.5489900249216308e+00
+-2.3996640444996750e+01
+-3.4617559595495893e+00
+4.3042057682382531e+00
+-3.8673333928148516e+01
+-3.4154243685637060e+00
+2.9175387480542549e+00
+-2.7310172085753543e+01
+-6.5644796954845708e+00
+3.6722000142365765e+00
+-3.7348192117917797e+01
+-1.7838587039780243e+00
+2.2259470439485467e+00
+-2.4187125336789848e+01
+9.1061277135175125e+00
+7.5466877125013795e+01
+-8.4465615370037213e+01
+-1.8965253259012140e+01
+6.3484356969712287e+01
+-7.1126188852013073e+01
+-6.9505219438110464e+00
+2.1710775454353939e+01
+-3.7926172998555131e+01
+-9.5383729408750479e+00
+2.0459311235136404e+01
+-3.6485418246130173e+01
+-1.5939473586784285e+01
+1.8024684204605546e+01
+-3.2482128603107505e+01
+2.3184219514004029e-01
+2.2047508500116990e+01
+-4.2521596546109905e+01
+2.6602439978397778e+00
+2.2049828394800436e+01
+-4.5694638319600564e+01
+-1.2319232717006543e+01
+1.5691659130909686e+01
+-4.0750140972476089e+01
+7.7886246151057348e+00
+1.9453191775557450e+01
+-5.2075935372571337e+01
+9.4142585392461742e-01
+1.7652986179672013e+01
+-4.8883678183360260e+01
+1.0776273803644623e+00
+1.5737162552647552e+01
+-5.2237528474747393e+01
+-1.6165026550411454e+01
+1.0109557270741334e+01
+-4.1966826958129481e+01
+-1.6625648022159393e+01
+1.0464725032065154e+01
+-4.3647988086101918e+01
+2.2250713967530742e+00
+7.7111219122831747e+00
+-3.5041607493607238e+01
+-1.6253513466160163e+00
+3.4716038059257026e+00
+-2.7297580452359679e+01
+-6.0539365674793615e+00
+3.9046352027520412e+00
+-3.7996712425990850e+01
+-7.2638420593987050e+00
+4.6670240183237098e+01
+-5.4922374911144971e+01
+-7.2696513552179347e+00
+4.6639540408121640e+01
+-5.5120552702900397e+01
+-1.6904463392167564e+01
+4.3367420779089642e+01
+-5.0972198122573722e+01
+-1.0974032998290593e+01
+4.4678028073528523e+01
+-5.2864185084282823e+01
+-1.5313960054706959e+01
+4.3855025341117873e+01
+-5.1606413205994514e+01
+-1.5313960054706959e+01
+4.3855025341117873e+01
+-5.1606413205994514e+01
+-7.9415275976718265e+00
+4.4458771012435136e+01
+-5.3530656052109848e+01
+6.9351213906371996e+00
+2.6489234586769822e+01
+-4.7003682430624323e+01
+-5.4008143475903672e+01
+4.4955582578711685e+01
+-9.4512762419647217e+01
+6.4335490967826701e+00
+1.4462145659996565e+01
+-3.9953526231429080e+01
+1.1941282219356427e+01
+2.1359771587374738e+01
+-6.0380449851169821e+01
+1.0261235987158912e-01
+1.5945284562745860e+01
+-5.0324299437165507e+01
+-1.4937619260157215e+01
+1.2494953068669904e+01
+-4.1068311351148679e+01
+1.6059530471184362e+00
+1.6063713840832399e+01
+-5.3156254012324091e+01
+-1.7639643594707137e+00
+1.2144153050087864e+01
+-5.0115538444335911e+01
+-1.5879760106918667e+01
+1.0085696040222253e+01
+-4.4050330013115577e+01
+-1.8442718589049512e+00
+3.4243680074509384e+00
+-2.7002191150144441e+01
+-1.8497176747474497e+00
+2.9824508549122419e+00
+-2.6688850553228743e+01
+-1.3781775827072172e+01
+4.3025640214586780e+01
+-5.1565643057148478e+01
+-3.2991966114557369e-01
+3.1176920124914378e+01
+-4.1340811205966730e+01
+7.5082141907982409e+00
+3.3138517569585076e+01
+-4.5845007723817716e+01
+-1.1611240298619065e-01
+1.7366677422521068e+01
+-4.8423956506762771e+01
+-3.0671470722721752e+00
+1.6131071763321671e+01
+-4.7246072529751707e+01
+-1.5119138679783534e+01
+1.1165873919858349e+01
+-4.0371203065251635e+01
+5.4973921009053806e+00
+8.4840504843397859e+00
+-3.7836839986690876e+01
+-3.3571883013533231e+01
+6.8356938812118287e+01
+-7.5076676089126266e+01
+-1.2785236743397784e+01
+4.4385525120237332e+01
+-5.2284992194815665e+01
+1.4590807576887295e+01
+2.3543170930507515e+01
+-5.8251209519640462e+01
+1.0592282654371351e+01
+2.1078703579628591e+01
+-5.2502480492342897e+01
+2.4636637054860380e+00
+1.7455895235501337e+01
+-4.9301070696661299e+01
+-4.1566208308654247e+00
+1.5907061320610488e+01
+-4.6939623745796453e+01
+-3.4110121858262377e-01
+1.6351090580943705e+01
+-5.3833807971369509e+01
+-1.6188472821448450e+01
+1.8732042190726762e+01
+-3.2047066980390021e+01
+-2.3362238631836574e+00
+1.5811538531300890e+01
+-4.8320453248141582e+01
+4.4258445761621079e+00
+2.0827367937920133e+01
+-4.9063659822870598e+01
+-6.7637180123649774e+00
+1.3368714851903801e+01
+-4.8321968298101375e+01
+1.4576227362820484e+01
+1.5747812051719151e+01
+-3.3222046989474897e+01
+1.3703798437407888e+01
+1.5013759113421960e+01
+-3.2010252531983980e+01
+1.3612205954927630e+01
+1.4888264878695255e+01
+-3.1673615385603977e+01
+1.3253818047791198e+01
+1.4863413909331346e+01
+-3.2806118656132817e+01
+1.2477432459437226e+01
+1.1011162556984898e+01
+-2.5445495689271873e+01
+1.3403703652769032e+01
+1.4743208583293573e+01
+-3.3210522347365568e+01
+6.4133418421231490e+00
+2.1146350352672211e+01
+-4.4832034765851873e+01
+1.7964955543257439e+01
+2.6892300657721336e+01
+-6.2072659570765254e+01
+1.9204902204158255e+01
+2.6992360245979182e+01
+-6.2774004162317190e+01
+1.6515057678193251e+01
+2.6435841109870363e+01
+-6.1206411056412527e+01
+6.6902288077609606e+00
+2.0643342632862144e+01
+-4.5861614667379762e+01
+8.0303182985460619e+00
+2.4282531305024978e+01
+-5.4477660276734646e+01
+2.9166471463385673e+00
+2.3237234082246083e+01
+-5.0540606785788654e+01
+9.2006782057174863e-01
+2.2932056272491707e+01
+-4.9243854360743157e+01
+3.2069502126547440e+00
+2.3293469082364769e+01
+-5.0796719021740984e+01
+1.4072083691160334e+01
+1.4131340898233221e+01
+-3.6160289436643673e+01
+1.4072083691160334e+01
+1.4131340898233221e+01
+-3.6160289436643673e+01
+1.4213617140968417e+01
+1.4070500926264328e+01
+-3.6101972473469168e+01
+4.6660967877401651e+00
+2.1374904653654653e+01
+-4.7633379883571109e+01
+1.9211898696758556e+01
+2.6196083640778465e+01
+-6.3728909745352688e+01
+1.5945415102449289e+01
+2.5058178772970511e+01
+-6.1028715154180155e+01
+1.1450731002291173e+01
+1.7966689243172084e+01
+-4.4122017481931792e+01
+1.1450731002291173e+01
+1.7966689243172084e+01
+-4.4122017481931792e+01
+1.3433490094726277e+01
+8.8697774003336214e+00
+-2.6032512379505178e+01
+8.2113391051962914e+00
+2.3402239911782090e+01
+-5.5564255317714050e+01
+1.2839267201446937e+01
+9.3207305013687929e+00
+-2.7236245057529132e+01
+1.2961825494882646e+01
+9.2103924986993100e+00
+-2.7032311201465067e+01
+1.2181578840825205e+01
+7.8781999174718607e+00
+-2.4321012086933457e+01
+1.2527894700939937e+01
+7.8622718999378689e+00
+-2.4287179070717077e+01
+6.5510981936806205e+00
+2.2708686438567486e+01
+-5.4325605438160878e+01
+1.2896877680681824e+01
+8.8886349088423913e+00
+-2.6618652632700652e+01
+7.3380076080365928e+00
+2.2826008228658257e+01
+-5.5234833561846386e+01
+7.7435110816005182e+00
+2.2867264061575888e+01
+-5.5509507935335968e+01
+1.1675781306353239e+01
+6.9967215396491218e+00
+-2.2565484236809716e+01
+1.7168647671294508e+01
+2.4484578657243215e+01
+-6.3629955022165049e+01
+1.3133751822018976e+01
+8.3000481116328420e+00
+-2.6076460858565579e+01
+1.1769584977605559e+01
+6.8967906571629216e+00
+-2.2822799161405445e+01
+1.3718624270674052e+01
+1.2943774395784644e+01
+-3.7287275331531227e+01
+1.1208757353342227e+01
+2.2895935141829053e+01
+-5.8828144812273820e+01
+7.4509131138837708e+00
+1.8613403923124498e+01
+-4.7421476424639614e+01
+1.3403592155276570e+01
+7.5309645444575324e+00
+-2.5371564887062753e+01
+1.4071613328976278e+01
+1.2275579365778631e+01
+-3.6488450923982171e+01
+1.3705645490566354e+01
+1.2914072176236742e+01
+-3.7869735630021076e+01
+5.1694415479461986e+00
+2.1453832157804133e+01
+-5.4023745118205895e+01
+1.2290262636038017e+01
+1.2000707254982531e+01
+-3.4996691531644402e+01
+1.9789642537123548e+00
+2.0973017032499701e+01
+-5.1680266653403152e+01
+1.1658120172295067e+01
+7.0204491291541693e+00
+-2.4011262417063552e+01
+1.7650320684935905e+00
+1.9956225084071257e+01
+-4.9923710013730286e+01
+1.3696857426697429e+01
+1.2538586022363010e+01
+-3.7790141288825602e+01
+1.2778879262283331e+01
+8.0851760201075749e+00
+-2.7205066598125683e+01
+1.3191010109969502e+01
+7.5160107115042951e+00
+-2.6174123598509446e+01
+8.2069761345220762e+00
+1.7980195422669240e+01
+-4.8392400707527116e+01
+1.1933782745034348e+01
+8.0169044565376915e+00
+-2.6973646299061038e+01
+1.7493843157011626e+00
+2.0513631206153317e+01
+-5.1735492728115922e+01
+1.4154794220621371e+01
+1.1348427549635426e+01
+-3.5792059898877326e+01
+1.2943846354311983e+01
+7.4645612374012673e+00
+-2.6364314629755714e+01
+1.2918397355891960e+01
+6.5957622062334078e+00
+-2.4261814525978632e+01
+1.2462631924615970e+01
+7.9498313527519846e+00
+-2.7544992309158996e+01
+1.2986985298750731e+01
+7.3267117264371429e+00
+-2.6342887225733801e+01
+1.2410737499646189e+01
+7.3577412578671044e+00
+-2.6318369482963032e+01
+1.1885676107354692e+01
+7.9446712643860478e+00
+-2.7194280548088631e+01
+5.8238783713338149e-01
+1.9980142343030092e+01
+-5.1085395060155534e+01
+6.5460715127883011e+00
+2.0877330834328458e+01
+-5.6041746894893706e+01
+1.2035658105269892e+01
+7.6712555034338186e+00
+-2.6810435067113026e+01
+1.3706022228027908e+01
+6.0634464623226592e+00
+-2.3987553188933870e+01
+1.4570624558552584e+01
+9.9147554883563753e+00
+-3.3898543266420596e+01
+1.3015906680751938e+01
+7.0627102883487272e+00
+-2.6356304824648220e+01
+6.2153125972012715e+00
+2.0562369818533949e+01
+-5.6148026587640530e+01
+1.7849782784255050e-01
+1.9619120846636235e+01
+-5.1018180352018348e+01
+1.2589421001019629e+00
+1.9683104932760894e+01
+-5.1824140026130003e+01
+1.0985005426624788e+01
+2.1064832113089945e+01
+-6.0347612323625782e+01
+1.1550866768513190e+01
+6.8857465278410439e+00
+-2.6176694635914568e+01
+1.2489436914332190e+01
+7.3623387650397634e+00
+-2.7837828659120042e+01
+1.3314557890571029e+01
+6.4584978658148202e+00
+-2.5983779241593737e+01
+1.2097863955272357e+01
+7.1982190576019809e+00
+-2.7213104354136114e+01
+1.2899138823144806e+01
+6.7153476551694977e+00
+-2.6635134346560370e+01
+1.2673233555177577e+01
+7.1857919897893945e+00
+-2.7838881362038755e+01
+1.3458108737578307e+01
+5.3814599077549499e+00
+-2.3512842952887116e+01
+1.2009504028617087e+01
+7.2506950009704525e+00
+-2.7644679695984344e+01
+1.2216457634156225e+01
+6.9466933954818897e+00
+-2.7022350858941916e+01
+4.6026899512820316e+00
+1.9665030390767019e+01
+-5.5510719356054167e+01
+4.6026899512820316e+00
+1.9665030390767019e+01
+-5.5510719356054167e+01
+1.2750793745648709e+01
+7.2074586611669167e+00
+-2.8017998937565082e+01
+1.2539829399376741e+01
+6.7884887311376705e+00
+-2.7142064300663055e+01
+1.1572859211490057e+01
+6.5163101416294325e+00
+-2.6222095231017114e+01
+1.3859294041679220e+01
+1.0173155746919562e+01
+-3.7025758923844045e+01
+1.4627952943516066e+01
+8.6326931728975644e+00
+-3.3717863485600553e+01
+1.3181166948639335e+01
+5.7892854673569767e+00
+-2.5759136362869029e+01
+1.4330097713770265e+01
+9.0520026526316748e+00
+-3.5086936232102325e+01
+1.3021046788768860e+01
+6.2291443846096364e+00
+-2.6997170337435513e+01
+1.2956453281275124e+01
+6.1496290387313577e+00
+-2.6810798863402056e+01
+1.3413417860533281e+01
+5.9916011272223120e+00
+-2.6916004312202229e+01
+1.2874186910921910e+01
+5.6767660219765474e+00
+-2.5754231059041270e+01
+1.1995142806309511e+01
+6.8064505593106102e+00
+-2.8549945035677190e+01
+1.2859409776480158e+01
+5.9007988794879411e+00
+-2.6622212450134235e+01
+1.3082632631153158e+01
+5.3121019390289481e+00
+-2.5196929283564891e+01
+1.2330029260337923e+01
+6.6697891126733966e+00
+-2.8656938882097155e+01
+3.9164059911670916e+00
+1.7767553484022880e+01
+-5.4776019186146335e+01
+1.3499743798914110e+01
+1.0386553820191077e+01
+-3.9753268219790840e+01
+1.1232314428877149e+01
+6.0991180750281160e+00
+-2.7459777923042591e+01
+1.3850429958465002e+01
+9.5077446384324773e+00
+-3.8108004184942160e+01
+1.2115302726665506e+01
+6.8036589062231769e+00
+-2.9691146735235151e+01
+1.2115302726665506e+01
+6.8036589062231769e+00
+-2.9691146735235151e+01
+1.2814789839818255e+01
+5.4244294680689835e+00
+-2.6320722797690149e+01
+1.2067412618050986e+01
+6.3687569999072435e+00
+-2.8411836087200292e+01
+1.4553678896553775e+01
+8.2253685595202839e+00
+-3.5329129893255661e+01
+1.2294890862002680e+01
+6.3271504733257160e+00
+-2.9011007953779249e+01
+1.1897602891876767e+01
+5.2603934571060709e+00
+-2.5882021705551669e+01
+1.2766424638408214e+01
+5.6151377010498686e+00
+-2.7445585370619433e+01
+1.2809300080168596e+01
+5.2748967706329788e+00
+-2.6501780136315869e+01
+1.3285888396020797e+01
+5.5004513794997587e+00
+-2.7455831580448354e+01
+1.2456221131382810e+01
+5.7112557750309740e+00
+-2.7559788844137454e+01
+1.2718723077312314e+01
+5.2138981751562978e+00
+-2.6532047230907516e+01
+1.2354873293450609e+01
+5.6965220826579444e+00
+-2.7779025829740544e+01
+1.2608548744559297e+01
+5.4952988429913310e+00
+-2.7376677761376133e+01
+1.2036267445944290e+01
+6.2251466105317732e+00
+-2.9158671393021407e+01
+1.3557463870945066e+01
+9.7805257743639196e+00
+-4.0339298340467444e+01
+1.3522600497308808e+01
+9.6275651680503564e+00
+-4.0237772468015073e+01
+1.3532140629743905e+01
+9.5065900452311336e+00
+-3.9933916020585897e+01
+7.9542297235747110e+00
+1.4378098128128549e+01
+-5.0271510505915209e+01
+1.3837199017686469e+01
+9.8412122494407868e+00
+-4.1929442054489584e+01
+6.2551127140135616e+00
+1.2439995265809229e+01
+-4.4374403474443298e+01
+1.3917453941458817e+01
+9.7031004513087762e+00
+-4.1777344275952224e+01
+1.2268048390029621e+01
+5.6546722589274028e+00
+-2.8767407520981759e+01
+1.2617709938035254e+01
+5.1476974329237066e+00
+-2.7929603848185621e+01
+1.2741131077537554e+01
+5.3689374958821654e+00
+-2.8817197252233328e+01
+1.2905001924133838e+01
+4.2646687367319256e+00
+-2.5712489183954158e+01
+1.2905001924133838e+01
+4.2646687367319256e+00
+-2.5712489183954158e+01
+1.2276696810087845e+01
+5.6329618348146262e+00
+-2.9335913672579998e+01
+-1.8265085213403753e+00
+1.5126661033402284e+01
+-4.8249605713158587e+01
+1.2524399098575444e+01
+4.9363331410716622e+00
+-2.7912667999993754e+01
+1.2711244625354308e+01
+4.7776973939547318e+00
+-2.7785480369435664e+01
+5.1285945490298808e+00
+1.2029475195259002e+01
+-4.4739486327960861e+01
+1.3088294865420934e+01
+3.4953176149638261e+00
+-2.4569332150533228e+01
+1.2804790663188994e+01
+4.6176291937563949e+00
+-2.7594254198648642e+01
+1.2583971782536308e+01
+4.8025465866450583e+00
+-2.8277232375826742e+01
+1.4204835509751527e+01
+3.5708766591342904e+00
+-2.5727327522604888e+01
+1.2823587490486048e+01
+4.8752727609350268e+00
+-2.8947020004703951e+01
+1.2669426720464825e+01
+4.7205881379204904e+00
+-2.8231686753658295e+01
+1.4019985672693114e+01
+3.7325244413294998e+00
+-2.6171275855161053e+01
+1.3835044060019360e+01
+7.0755346056142496e+00
+-3.6596045955324648e+01
+1.2981838722672618e+01
+4.5763850816786249e+00
+-2.8393260553282470e+01
+1.2854749678295635e+01
+4.3408807622940566e+00
+-2.7555077507698691e+01
+1.3224469649917777e+01
+4.3103055634890790e+00
+-2.8134977079228882e+01
+1.3334121129618003e+01
+4.3504863905564939e+00
+-2.8267602462774029e+01
+-3.2707814873120475e+00
+1.5050606987298940e+01
+-5.0277356954990111e+01
+1.3031022621924329e+01
+4.0382243557157027e+00
+-2.7297666835546647e+01
+1.3031022621924329e+01
+4.0382243557157027e+00
+-2.7297666835546647e+01
+1.2666685330846093e+01
+3.8872823057385726e+00
+-2.6754607838666665e+01
+1.2757346356091990e+01
+3.4613542836161102e+00
+-2.5485655480229408e+01
+1.3894852960931802e+01
+3.5944597914786640e+00
+-2.6656155930647770e+01
+1.3894852960931802e+01
+3.5944597914786640e+00
+-2.6656155930647770e+01
+1.2968019779859681e+01
+4.3105210308531348e+00
+-2.8440625149160429e+01
+1.2775129704056916e+01
+3.2240530919077961e+00
+-2.5095808098779941e+01
+1.3855123881831453e+01
+3.5501102323342768e+00
+-2.6859863265266704e+01
+1.1848186377425121e+01
+4.6017922376387350e+00
+-2.8853535016774309e+01
+1.2935934537909166e+01
+4.4118812153081581e+00
+-2.9027684560530489e+01
+1.3188697318995061e+01
+3.7622984635668821e+00
+-2.6954527847569306e+01
+3.3567410520098591e+00
+1.1957806362352219e+01
+-4.6078883161907527e+01
+1.3760099780459827e+01
+3.3977052144842061e+00
+-2.6568682828755961e+01
+1.2387053357808799e+01
+4.7652735931580166e+00
+-3.0405555904734907e+01
+1.3298503505501635e+01
+7.4176824794998488e+00
+-3.9789051584873427e+01
+1.3272430191391249e+01
+3.8086704193185055e+00
+-2.8011162146597613e+01
+1.3040106539150633e+01
+4.2364478947647157e+00
+-2.9319014633433106e+01
+1.3922476925065922e+01
+3.2723854567789643e+00
+-2.6922082905826866e+01
+1.3402506115350601e+01
+7.0308744881143559e+00
+-3.9399112654088768e+01
+6.2183712782758889e+00
+1.0959863991237203e+01
+-4.7241379690386125e+01
+1.3778468182942973e+01
+2.8759379535935898e+00
+-2.5891447294481210e+01
+2.3719474068938067e+00
+1.2349684343654424e+01
+-4.9253757011147613e+01
+1.2858106478041270e+01
+4.0219065700429804e+00
+-2.9301307404798187e+01
+1.2719090714424725e+01
+4.0301737843248926e+00
+-2.9048265472853458e+01
+1.3145206706079579e+01
+3.9981111902632360e+00
+-2.9752036470703498e+01
+1.2815276643701802e+01
+2.4312654967408021e+00
+-2.4463204727350004e+01
+5.4710515742609918e+00
+1.0649134881482546e+01
+-4.6941477207247281e+01
+5.1636416686386335e+00
+1.1102030787836727e+01
+-4.8572849743068858e+01
+1.2759773120003349e+01
+3.7163239850339735e+00
+-2.9163480536894561e+01
+1.3509256965943463e+01
+2.9121863990912051e+00
+-2.8028473238053650e+01
+3.3006054342252003e+00
+1.1030263923220776e+01
+-4.8407780073950484e+01
+7.6091234032275565e+00
+9.0890539284470737e+00
+-4.5407040755245205e+01
+1.2583116947160811e+01
+3.8218422983158589e+00
+-3.1057226358907286e+01
+1.2432205653222855e+01
+3.7714412834984614e+00
+-3.0858110204014121e+01
+1.2432205653222855e+01
+3.7714412834984614e+00
+-3.0858110204014121e+01
+2.7641938802142549e+00
+3.9638346688367978e+00
+-2.3475183693745581e+01
+1.7491019024822143e+00
+9.9089109773265420e+00
+-4.4068548299907391e+01
+1.2138336844959053e+01
+3.7899019278608179e+00
+-3.1311616491375744e+01
+1.4229312490078458e+01
+2.2907316781599256e+00
+-2.8039540444617305e+01
+1.4500409224424880e+01
+2.0864640241581376e+00
+-2.7640215960331620e+01
+1.4115659750959026e+01
+1.9237009578581563e+00
+-2.6875457746097588e+01
+1.4382488594078950e+01
+1.8323911576093297e+00
+-2.6892082540565251e+01
+1.4086212095820795e+01
+2.1087456472103439e+00
+-2.7642005765509680e+01
+1.2612874918451052e+01
+1.8113844597918556e+00
+-2.5474813823969193e+01
+1.3523984703544029e+01
+2.6558730378201179e+00
+-2.9380018969872992e+01
+1.1573634229616059e+00
+4.1081509955608890e+00
+-2.3647209428694143e+01
+1.2257599235757310e+01
+3.7294163163515117e+00
+-3.2634702630228560e+01
+1.2242552280345365e+01
+3.7223979163113246e+00
+-3.2672272293439235e+01
+1.1949487088550674e+01
+3.6319821195288533e+00
+-3.2137712295751413e+01
+1.1918386031495768e+01
+3.6385722547674813e+00
+-3.2208552604243579e+01
+1.2040212294050409e+01
+3.4724515536024958e+00
+-3.1684328127322711e+01
+1.1982939128060661e+01
+3.4519128273397364e+00
+-3.1816414255121860e+01
+1.2330567128250783e+01
+2.7848469973006775e+00
+-2.9708691143224293e+01
+1.2509510207931447e+01
+1.6097591711358203e+00
+-2.5607971961856439e+01
+-9.2567610357853450e-02
+3.6098365321690498e+00
+-2.0812892191387999e+01
+1.2901554641831826e+01
+2.7554300673188528e+00
+-3.0289961441048892e+01
+1.2922027639771374e+01
+2.6174960700948722e+00
+-3.0120532608368798e+01
+1.2305341465103359e+01
+2.2214363711712322e+00
+-2.8277752640450721e+01
+1.2305341465103359e+01
+2.2214363711712322e+00
+-2.8277752640450721e+01
+1.0271274224867446e+00
+8.9557488665954832e+00
+-4.3344128637213565e+01
+1.4372169407392155e+01
+1.6966418000054166e+00
+-2.8427443527411445e+01
+1.4372169407392155e+01
+1.6966418000054166e+00
+-2.8427443527411445e+01
+-3.8027761378625519e-01
+3.7364029590575911e+00
+-2.1568405336528020e+01
+-3.8027761378625519e-01
+3.7364029590575911e+00
+-2.1568405336528020e+01
+-3.2179688043398597e-01
+3.6769021838338474e+00
+-2.1380938673755296e+01
+1.2590127748597521e+01
+1.1791523984621930e+00
+-2.4895768419439204e+01
+2.1938339385960379e+00
+7.5693019995692152e+00
+-3.9659571558874525e+01
+1.2953612551614340e+01
+2.8849013688066445e+00
+-3.2163461844237119e+01
+1.2225304482478627e+01
+2.7003834012908712e+00
+-3.0790799456126216e+01
+1.9450190200615345e+00
+3.0698701400020298e+00
+-2.2270812824470028e+01
+3.5269664619340388e+00
+2.4975499444621598e+00
+-2.1712825366150835e+01
+1.3783106690714224e+01
+1.5085744511538006e+00
+-2.8068996644983066e+01
+1.8518621304417966e+00
+2.9578865900396014e+00
+-2.2150786005695434e+01
+1.2776605585614544e+01
+2.6661639615219284e+00
+-3.1892657973622551e+01
+1.4127420407175380e+01
+1.0418132497783728e+00
+-2.6945949216490956e+01
+1.2671192961167675e+01
+2.5811412997875807e+00
+-3.1570320004152862e+01
+1.2772945380154015e+01
+2.5046381794037766e+00
+-3.1447318888825500e+01
+1.2495815878590120e+01
+7.4669328266250834e-01
+-2.4916565349474027e+01
+1.2827605099868226e+01
+2.2283029518888031e+00
+-3.1105745523161215e+01
+1.2827605099868226e+01
+2.2283029518888031e+00
+-3.1105745523161215e+01
+1.2472671423857943e+01
+7.4190247368050644e-01
+-2.5050635107260927e+01
+1.3668534097783560e+01
+1.3248524762709237e+00
+-2.8437378297220807e+01
+1.2405823798502416e+01
+8.2510889293394651e-01
+-2.5480309448850818e+01
+-9.6609470595598124e-01
+3.4085367920207719e+00
+-2.1654602627500470e+01
+1.4104542959777991e+01
+8.9217035702693526e-01
+-2.7542672270843049e+01
+3.4898626383397308e-01
+7.4708151309281385e+00
+-4.1229870501263456e+01
+3.1079794953936095e+00
+1.9828295127575375e+00
+-2.1142898640773879e+01
+1.2438235726422931e+01
+1.0376279444887970e+00
+-2.7752257979720437e+01
+1.2385573404401054e+01
+1.2790086715088178e+00
+-2.8823503519826534e+01
+1.4569247707394885e+01
+6.8278447262658104e-01
+-2.8250765798818001e+01
+1.4178889661742430e+01
+5.9807028777499827e-01
+-2.7585043586278015e+01
+1.2485993974424115e+01
+1.2966479904498693e+00
+-2.9271249348368563e+01
+1.2811659533321567e+01
+1.8650443269540560e+00
+-3.1874613701223648e+01
+1.2352064824841197e+01
+6.7004897510727746e-01
+-2.6615632054059848e+01
+1.2763699486806996e+01
+1.8450800664478080e+00
+-3.2325334552292404e+01
+1.2439460735491396e+01
+6.1154537364798556e-01
+-2.6765739064391621e+01
+1.2836119598819538e+01
+1.8656280790619360e+00
+-3.2638306758316496e+01
+2.5816841196782430e+00
+1.7899952833537165e+00
+-2.0833369889441130e+01
+1.2737545521810604e+01
+1.9324841632590795e+00
+-3.3168258233663273e+01
+1.2348867136841978e+01
+2.7175353641281164e-01
+-2.5606972879433933e+01
+1.2364221898368715e+01
+1.1818573112533792e-01
+-2.5183079465745777e+01
+1.2364221898368715e+01
+1.1818573112533792e-01
+-2.5183079465745777e+01
+-7.7589699032465265e-01
+7.1874450346975944e+00
+-4.1516877238014430e+01
+1.2468781331127982e+01
+4.6296907948643079e-01
+-2.6948494628743504e+01
+-2.9445121749693220e-01
+2.7499604956195980e+00
+-2.2370586119199046e+01
+5.6323861173771328e-01
+2.2452754196462608e+00
+-2.1261800252577746e+01
+5.9842761938425049e-01
+2.2424306067349158e+00
+-2.1259424227300979e+01
+1.2887465381279535e+01
+1.4785704502174808e+00
+-3.2444727143391013e+01
+6.4967756338750782e-01
+2.1501394852626947e+00
+-2.1144485512743572e+01
+6.9245895894730214e-01
+2.1916323578332033e+00
+-2.1292572676427167e+01
+1.4103397859997093e+01
+5.6840825851877985e-01
+-3.0002920120067174e+01
+1.2314809257594387e+01
+3.6399981206537213e-01
+-2.7234575694370289e+01
+-1.2572985431522307e-01
+2.4546052964680829e+00
+-2.1810116468861111e+01
+-8.7119535574608375e-01
+2.8420043656709257e+00
+-2.2770850702279141e+01
+3.9568331999003203e+00
+1.2475164134999521e+00
+-2.1138030193156872e+01
+1.0640085423263133e+00
+1.9130284537526512e+00
+-2.0854850227930672e+01
+1.3085517934753906e+01
+1.3114776300152979e+00
+-3.2598748410573307e+01
+1.3085517934753906e+01
+1.3114776300152979e+00
+-3.2598748410573307e+01
+1.2221571185781338e+01
+-1.7646139253310936e-01
+-2.4909892134027302e+01
+3.3724098741847119e-01
+2.2292890237296037e+00
+-2.1445414457382373e+01
+9.2673228635262761e-01
+1.9785860538486422e+00
+-2.1029841630908368e+01
+9.2673228635262761e-01
+1.9785860538486422e+00
+-2.1029841630908368e+01
+1.2742248990185345e+01
+1.5904487754853511e+00
+-3.3713818658451828e+01
+6.9003662988970971e-01
+1.9825378850937785e+00
+-2.1006284704250429e+01
+1.6056141585229871e+00
+1.6497359366670872e+00
+-2.0622388501888977e+01
+-4.9966324169744963e-01
+2.5358850706459486e+00
+-2.2302174564606762e+01
+1.3697924045541068e+01
+4.2068461561308301e-01
+-2.9651174715717293e+01
+1.3780028380431357e+01
+3.8622561402077565e-01
+-2.9538438288279860e+01
+-2.3506745094901926e-01
+2.3276138903647072e+00
+-2.1771802908987585e+01
+2.0560361354031205e+00
+1.3894207316656704e+00
+-2.0539237576617023e+01
+1.2181920085063110e+01
+-2.2501538940084212e-01
+-2.5952864764468277e+01
+1.2180754203824122e+01
+-4.9271688144408560e-01
+-2.4793254277182470e+01
+1.2180754203824122e+01
+-4.9271688144408560e-01
+-2.4793254277182470e+01
+1.2196744181264071e+01
+-2.8697807388194196e-01
+-2.5870040781920903e+01
+1.3303823577058785e-01
+1.9843259159407851e+00
+-2.1364229695288017e+01
+1.3141729958002628e+01
+9.0430225115116736e-01
+-3.2932038153226848e+01
+1.3543593248548779e+01
+3.1651574337129895e-01
+-3.0460557781225905e+01
+1.4350762987551706e+01
+-1.9068723436733612e-01
+-2.9072380756167622e+01
+-4.9830262615646798e-02
+2.0264909170512682e+00
+-2.1515872463075592e+01
+1.3466368410190404e+01
+3.3706815810004392e-01
+-3.0640577987967891e+01
+1.2200674862663542e+01
+-3.6122713583409888e-01
+-2.5936046282064822e+01
+-9.6739315769044487e-01
+2.4906316877679169e+00
+-2.2684636059892494e+01
+-1.0053264383819582e+00
+2.4456910204186442e+00
+-2.2505557150614315e+01
+3.2310193550198023e+00
+9.7704107427042985e-01
+-2.0631822651560313e+01
+-2.5347700907330584e-01
+2.0314042093103573e+00
+-2.1543066018724225e+01
+-2.5612372017404494e-01
+2.0212007920454957e+00
+-2.1533417409149859e+01
+1.2327474301449275e+01
+8.2394898128482177e-02
+-2.9076749760760819e+01
+1.4784720568912579e+01
+-5.8436681226303322e-01
+-2.9796012340232920e+01
+1.3233732437369561e+01
+4.3617139610925748e-01
+-3.2233563714326159e+01
+-9.7790607314862152e-02
+1.8039104246498225e+00
+-2.1301615709266425e+01
+1.2330881626272161e+00
+1.2759305407212012e+00
+-2.0514512093906518e+01
+1.3423218708992488e+01
+2.6534831902584799e-01
+-3.1877222119322273e+01
+1.3518977097551842e+01
+2.4839126884971824e-01
+-3.2034514253082683e+01
+5.7318701514963033e+00
+4.7886696244335597e-01
+-2.2741445965531369e+01
+-1.1760276053080623e-01
+1.7129398745454143e+00
+-2.1238593406229079e+01
+1.2143187594884933e+01
+-7.2274937432431297e-01
+-2.5832152314215687e+01
+7.0404693909119036e+00
+2.0991509842238898e-01
+-2.3337512373619429e+01
+6.8688654140855512e+00
+2.0903367353984256e-01
+-2.3331354954134600e+01
+1.3473181606308664e+01
+8.6798467018380246e-02
+-3.1944334985032896e+01
+1.3531880438447050e+01
+-6.0947253234251285e-02
+-3.1198079934690941e+01
+4.1948751210250856e+00
+4.9010822075906568e-01
+-2.1151044870839794e+01
+5.9084726771392733e+00
+3.6290326896588360e-01
+-2.2966436152501252e+01
+7.5340343245250085e-01
+1.2589135357668799e+00
+-2.0639046550245276e+01
+-1.7985605716984394e+00
+2.9781487089834311e+00
+-2.6317577461075032e+01
+1.3614055347061283e+01
+-1.7118209443393126e-01
+-3.1221018707725914e+01
+1.0524327528407411e+00
+1.1191236679068324e+00
+-2.0488024729506840e+01
+1.5217448577658153e+00
+1.0008567576721843e+00
+-2.0477541657640767e+01
+1.3638557487556806e+01
+-2.2772193087123915e-01
+-3.1267504905791860e+01
+-2.5665973147340497e+00
+3.3140064358563772e+00
+-2.7751017703469369e+01
+1.2170572537607338e+01
+-1.0706393869228459e+00
+-2.5724996853287259e+01
+-1.8632945749333789e+00
+2.7864135211816898e+00
+-2.6026704382261336e+01
+1.7194827835568768e-01
+1.3013668300669476e+00
+-2.0982188316457190e+01
+-3.5761135460088669e+00
+5.5219437394678090e+00
+-4.0531989375785948e+01
+-3.5761135460088669e+00
+5.5219437394678090e+00
+-4.0531989375785948e+01
+3.2443139255844189e+00
+1.6934649900939955e-01
+-1.9854143585648437e+01
+-2.1162635803854490e+00
+2.5060972593732602e+00
+-2.5498567345036729e+01
+-2.1448799143044225e-01
+1.2195622310636951e+00
+-2.1101221711871229e+01
+5.1511343420585154e-01
+9.3249705722951826e-01
+-2.0627197077377403e+01
+-2.4241150201828512e-01
+1.1947139994330889e+00
+-2.1102564329118451e+01
+-2.2062573832432975e+00
+2.4235452678981892e+00
+-2.5396554479740136e+01
+-2.7825633455764378e+00
+2.8553716682784511e+00
+-2.7136390217056519e+01
+-2.1851811489773594e+00
+2.3817034691998540e+00
+-2.5342324584332406e+01
+-2.3784549266601176e+00
+2.4033993478008591e+00
+-2.5396661952532266e+01
+-1.7912947225956131e+00
+1.8960260820419397e+00
+-2.3473036120081041e+01
+8.1003322598610883e-01
+6.9523407066811260e-01
+-2.0449248899563102e+01
+-3.2331368142748423e-01
+1.0991298960132074e+00
+-2.1092068515002456e+01
+2.8003269041435208e-01
+8.5075192171234681e-01
+-2.0802525502487800e+01
+1.4605442755968985e+01
+-1.6470868475816984e+00
+-2.9528130513117429e+01
+1.2030439739677655e+01
+-1.7135698309092458e+00
+-2.5697294555906197e+01
+1.2030439739677655e+01
+-1.7135698309092458e+00
+-2.5697294555906197e+01
+-3.4499877024023156e+00
+2.7571589140827180e+00
+-2.6948970161610330e+01
+-3.4468092131567785e+00
+2.7471066643604316e+00
+-2.6961828605312441e+01
+1.0533553426045783e+00
+4.9286572765074632e-01
+-2.0424155279910824e+01
+1.1217145003479141e+00
+4.4017839062850256e-01
+-2.0370772018407965e+01
+-2.4791548457400103e+00
+2.1380489374977665e+00
+-2.5066149624492521e+01
+6.2828501921551521e+00
+-7.4485726506365635e-01
+-2.1931258646048832e+01
+-1.3886132834616813e+00
+1.4517526912151928e+00
+-2.2324076390565846e+01
+1.2167818962201322e+00
+3.9473302306847297e-01
+-2.0362892507785826e+01
+-2.7519817865011560e+00
+2.4661838937552356e+00
+-2.6819174428147779e+01
+-7.9591270320068719e-01
+1.0923718446784469e+00
+-2.1483998517292605e+01
+4.2461649141144059e-01
+6.0379250872171286e-01
+-2.0580347862386827e+01
+-4.0022445597760709e-01
+9.2957963255542608e-01
+-2.1261137963775489e+01
+-3.3678500743186914e+00
+2.6121347865393378e+00
+-2.7065489900215361e+01
+8.8298646110571721e-01
+4.3086706372278910e-01
+-2.0454289741718931e+01
+8.8298646110571721e-01
+4.3086706372278910e-01
+-2.0454289741718931e+01
+-4.7569001880412237e-01
+8.9152949641831658e-01
+-2.1307010712517041e+01
+4.0610558507494838e+00
+-4.2188680385096544e-01
+-2.1105092114866810e+01
+2.0542393871253846e+00
+-5.2845211085553061e-02
+-2.0278717523037773e+01
+5.1120321548872849e-01
+3.4928533278208712e-01
+-2.0502061073813426e+01
+3.4604148259028094e+00
+-4.3405150520687613e-01
+-2.0734326665771622e+01
+6.5987662285732729e-01
+2.8804520200385503e-01
+-2.0527606933592072e+01
+6.5987662285732729e-01
+2.8804520200385503e-01
+-2.0527606933592072e+01
+1.6350170822491674e+00
+-7.6766394483337103e-03
+-2.0297957788472480e+01
+2.0187455307206026e-01
+3.9757348804838294e-01
+-2.0628302735384693e+01
+2.1570636695254790e+00
+-2.1232603109726148e-01
+-2.0331121490136706e+01
+1.0175540468237806e-02
+4.5671308971314589e-01
+-2.0915408836059406e+01
+-1.8094607264849711e+00
+1.2074481098629142e+00
+-2.3062536921513740e+01
+-1.8094607264849711e+00
+1.2074481098629142e+00
+-2.3062536921513740e+01
+2.4904286685196637e+00
+-3.8470083725382248e-01
+-2.0391551487989059e+01
+2.4904286685196637e+00
+-3.8470083725382248e-01
+-2.0391551487989059e+01
+1.1198031066110377e+00
+3.7947955194291699e-03
+-2.0367225671471122e+01
+-1.9741428724602279e+00
+1.2792973879281690e+00
+-2.3462339494047065e+01
+4.7103394229782669e+00
+-9.2751059716819106e-01
+-2.1015103403616333e+01
+8.9198720016214550e-01
+4.6631248717350929e-02
+-2.0425073959799864e+01
+6.5819304826197618e+00
+-1.3495302411014751e+00
+-2.1882701257578464e+01
+1.8667492008442765e-01
+2.5500846640059782e-01
+-2.0659917873637578e+01
+-1.5683609956860003e+00
+9.2303354830214657e-01
+-2.2548116325688458e+01
+1.1979784962554163e+00
+-1.3735398460625445e-01
+-2.0453920954590902e+01
+1.3929486676482323e+00
+-2.2315540405599832e-01
+-2.0327133677987415e+01
+-2.5414366720142678e+00
+1.3735140437631650e+00
+-2.4043652950324631e+01
+-8.9759104662552136e-01
+5.6302230789501173e-01
+-2.1471561706728082e+01
+4.4793933072783085e+00
+-1.1220637595495437e+00
+-2.0749627487090166e+01
+-1.6045519515659401e-01
+2.3904278582977942e-01
+-2.0889548433490173e+01
+-7.3070152779209849e-02
+1.5481062041326127e-01
+-2.0845460847787180e+01
+2.9966701669560786e-01
+-4.2360203718649478e-03
+-2.0720485848371407e+01
+-1.3875680396695491e+00
+6.4123148111197925e-01
+-2.2242399272807287e+01
+2.6689354695304877e+00
+-7.4665061886355211e-01
+-2.0490758598362909e+01
+1.9024295978477912e-01
+-2.9394815357242400e-02
+-2.0702041076638217e+01
+-2.1993533308302711e+00
+9.9106743994772672e-01
+-2.3648514834492630e+01
+-3.6314378668717340e+00
+1.6001533945941304e+00
+-2.5486875920481296e+01
+4.3073228709703084e+00
+-1.2590044813476486e+00
+-2.0587794107108760e+01
+1.4789756657209667e+00
+-5.1704911006449217e-01
+-2.0355870178056787e+01
+1.8467421275667322e+00
+-6.1645763052329394e-01
+-2.0377666521572557e+01
+1.8713409622126949e+00
+-6.0938052349912120e-01
+-2.0435019568923018e+01
+4.6456984203217893e+00
+-1.3452605571510674e+00
+-2.0907379610764366e+01
+4.2164689051508493e+00
+-1.2904854046757648e+00
+-2.0563858682577617e+01
+5.5443718395930119e+00
+-1.6702376396920535e+00
+-2.0697920061593003e+01
+-1.5062369059788465e+00
+5.2782039808039327e-01
+-2.2455134834571787e+01
+3.1788928887242300e+00
+-9.7716531893287861e-01
+-2.0941642077955475e+01
+-9.7678609520199733e-01
+2.3954697637954522e-01
+-2.1656337165695874e+01
+5.1451664689406780e+00
+-1.5913022617729453e+00
+-2.0979050027084334e+01
+-1.7616138850288547e+00
+5.3523741251297552e-01
+-2.2798332452713638e+01
+5.3343740504168942e+00
+-1.5715547150749662e+00
+-2.1700225732650964e+01
+-3.9844024474199422e+00
+1.4515268387825906e+00
+-2.5328583409050641e+01
+-7.0881382127182202e-01
+5.4740437262680110e-02
+-2.1395288778743431e+01
+-3.7973618792521631e+00
+1.2842921231000899e+00
+-2.5017607535438195e+01
+-3.7885207141566122e+00
+1.2882528068678845e+00
+-2.5074085294479215e+01
+1.0141461254906814e+00
+-6.2694954261591351e-01
+-2.0464068985860099e+01
+2.7074283962652124e+00
+-1.0935996248120374e+00
+-2.0633071118819775e+01
+2.9087719501062632e+00
+-1.1363264193511551e+00
+-2.0707310832476278e+01
+2.3299333743279891e+00
+-1.1395474178466762e+00
+-2.0542607383416627e+01
+-2.2395000084716523e+00
+4.3312437555780237e-01
+-2.2908254948714177e+01
+-4.0624985025616300e-01
+-2.9071903280068562e-01
+-2.1071572855895361e+01
+2.0952265469023486e+00
+-1.0726171751246887e+00
+-2.0569929721010954e+01
+-3.2313393021161794e+00
+8.8825972233567885e-01
+-2.4706981342658903e+01
+-1.1729219829163464e+00
+-1.4758863843764264e-01
+-2.1816789860389555e+01
+-1.1729219829163464e+00
+-1.4758863843764264e-01
+-2.1816789860389555e+01
+-1.0472372474672447e+00
+-3.4117514136435856e-01
+-2.1701360134034395e+01
+4.9150446223197646e+00
+-2.2698513261752198e+00
+-1.9974034977569378e+01
+-1.0205449423000053e-01
+-7.4752021525472079e-01
+-2.1108696479266420e+01
+-4.7300238977293618e-01
+-6.9077937669876277e-01
+-2.1415763928060638e+01
+-1.0022741885539130e+00
+-5.2858536070330564e-01
+-2.1734442917679385e+01
+-2.5131366927158014e+00
+2.6864909258050053e-03
+-2.2775985188740073e+01
+-9.6271856465079919e-01
+-6.6797254111231552e-01
+-2.1515256462959048e+01
+2.3451918262706934e+00
+-1.7585327900330432e+00
+-2.0190941329806328e+01
+2.2881244367912466e+00
+-1.7663432382583819e+00
+-2.0196216186046467e+01
+-1.6927746677244226e+00
+-4.8323806778285316e-01
+-2.1646437811023336e+01
+2.1954749295941216e+00
+-1.7664726114248688e+00
+-2.0169188143780978e+01
+1.9407862045717978e+00
+-1.7005331432999056e+00
+-2.0240939068678895e+01
+-7.2722823493845423e-01
+-8.3556640470193388e-01
+-2.1332170436055083e+01
+-7.2722823493845423e-01
+-8.3556640470193388e-01
+-2.1332170436055083e+01
+-3.6495705139021895e+00
+1.9727614193570844e-01
+-2.3875152674171396e+01
+-7.8775519399497085e-01
+-9.2784527002224448e-01
+-2.1227115017237505e+01
+3.9902773886274572e+00
+-2.4544482619992474e+00
+-2.0046383805225997e+01
+4.6978018136336237e+00
+-2.6216095466825178e+00
+-2.0652685345308981e+01
+2.6952521044243802e+00
+-2.1293433748677648e+00
+-2.0370703988921516e+01
+2.6952521044243802e+00
+-2.1293433748677648e+00
+-2.0370703988921516e+01
+3.7073405180262808e+00
+-2.4309982645181467e+00
+-2.0429141051821759e+01
+-3.6701235753658707e+00
+-2.9966759310017951e-02
+-2.3291259206122152e+01
+-3.3651379183315733e+00
+-1.3742893161393163e-01
+-2.3346574255387292e+01
+4.8402108246653963e+00
+-2.8211609388697139e+00
+-2.0222935928217737e+01
+4.8402108246653963e+00
+-2.8211609388697139e+00
+-2.0222935928217737e+01
+-3.8016252892355413e+00
+-8.2646687453083192e-02
+-2.3287678701661395e+01
+-8.8675567616391948e-01
+-1.1396149982120529e+00
+-2.0955078441572240e+01
+-3.4193554998037929e+00
+-2.3474611336717655e-01
+-2.3004191814916272e+01
+-3.5366884117998301e+00
+-2.3185989555146330e-01
+-2.3073682265170540e+01
+-1.3482862796599959e+00
+-1.0098040845349632e+00
+-2.1294256731818031e+01
+9.8692474503561528e-02
+-1.5302104133526084e+00
+-2.0567141156649424e+01
+-7.6283578057618470e-02
+-1.4804505525162199e+00
+-2.0583294249417545e+01
+3.2950302695304390e+00
+-2.5501452778293436e+00
+-2.0240565968927626e+01
+9.0348672073935310e-01
+-1.8529074607318172e+00
+-2.0335118601934802e+01
+9.0348672073935310e-01
+-1.8529074607318172e+00
+-2.0335118601934802e+01
+-2.9978411661970141e+00
+-5.2284817696616626e-01
+-2.2839542776587358e+01
+-3.3449899965084726e+00
+-4.2577276947614712e-01
+-2.2919573174366473e+01
+-2.9969608813900952e+00
+-5.6277909018165506e-01
+-2.2767079122033749e+01
+-3.4507647031849178e+00
+-4.2036641352294146e-01
+-2.2960026576859029e+01
+3.5801438673186028e+00
+-2.7420605420290181e+00
+-2.0027683104934471e+01
+1.1619528079434871e+00
+-2.0003749887604050e+00
+-2.0280567250436391e+01
+-3.2251949484658766e+00
+-6.6469970372815990e-01
+-2.2490671820134800e+01
+2.7764932413767762e-01
+-1.8477295587461009e+00
+-2.0477705762782328e+01
+5.4640779488234625e-01
+-1.9400340004187797e+00
+-2.0558922802359795e+01
+5.4640779488234625e-01
+-1.9400340004187797e+00
+-2.0558922802359795e+01
+2.7860340602633351e+00
+-2.6435592795184308e+00
+-2.0032314785786387e+01
+1.9585150597823711e-01
+-1.8653739473940785e+00
+-2.0533758552554215e+01
+2.7576807252270346e+00
+-2.8211519604745985e+00
+-1.9859398475186737e+01
+3.1601473633869608e+00
+-3.0097725881323822e+00
+-1.9430788154387894e+01
+3.1601473633869608e+00
+-3.0097725881323822e+00
+-1.9430788154387894e+01
+-2.8394087365881879e+00
+-1.0835853629882859e+00
+-2.2140038302198946e+01
+-1.7637684369109665e+00
+-1.4896823129533505e+00
+-2.1606529084584292e+01
+2.2622535302655509e+00
+-2.8367751577713483e+00
+-1.9865740874017767e+01
+4.9229739847177836e+00
+-3.6366562529524553e+00
+-2.1170210116665185e+01
+4.7771086594023853e+00
+-3.5868585311855328e+00
+-2.1372800511563369e+01
+-3.1122726136747714e+00
+-1.1165926459243463e+00
+-2.2576307003433399e+01
+-1.8291086826659064e+00
+-1.6322829040181517e+00
+-2.1435508993594752e+01
+1.8308440315187620e+00
+-2.8590223120324301e+00
+-1.9812770141297460e+01
+9.9336144391111436e-01
+-2.5844676617947142e+00
+-2.0252346264856861e+01
+-2.8381152376916612e+00
+-1.3468079923246243e+00
+-2.1750096740281219e+01
+-2.3047189974866122e+00
+-1.5221256922689825e+00
+-2.1411160078697019e+01
+1.4857263425134579e+00
+-2.7656526111385031e+00
+-1.9937071030584065e+01
+2.1187116459730997e+00
+-2.9930021101633262e+00
+-1.9765253401124777e+01
+-1.2408768374208721e+00
+-1.9218548800090982e+00
+-2.0895427492595779e+01
+1.5822388571777282e+00
+-2.8640241868327814e+00
+-1.9817771265615995e+01
+-1.6816465928804381e+00
+-1.8077422743481173e+00
+-2.1040814030438444e+01
+-8.8196817018490004e-01
+-2.0723002945290090e+00
+-2.0710605893134431e+01
+1.3257623593552827e+00
+-2.7930509372632852e+00
+-1.9911908176550835e+01
+-2.8107730442318433e+00
+-1.4627097834994423e+00
+-2.1506485719532225e+01
+4.3999706255006182e-01
+-2.5183048901550658e+00
+-2.0336957692973542e+01
+-2.9885963433551574e+00
+-1.4260073517901994e+00
+-2.1500049099667436e+01
+1.8160637328163565e+00
+-3.0165978862068643e+00
+-1.9834875258503036e+01
+2.1659883907597766e+00
+-3.1655725069698728e+00
+-2.0016560302266424e+01
+6.1288185551658869e-01
+-2.7174696138117778e+00
+-1.9906286816347919e+01
+8.2983017998431718e-01
+-2.8207134098739570e+00
+-1.9914426369219729e+01
+-7.4911932502098943e-01
+-2.3162603195988569e+00
+-2.0598952850014452e+01
+1.2190732823601973e-01
+-2.6018691765532123e+00
+-2.0097158529593656e+01
+1.6436004751308981e+00
+-3.1171889316459680e+00
+-1.9916025946483398e+01
+-6.2924170230632737e-01
+-2.4258825375794180e+00
+-2.0286873622252703e+01
+-7.5359483080331524e-01
+-2.3852270437875451e+00
+-2.0480417329933168e+01
+1.4427020417274755e-01
+-2.7129426775236496e+00
+-1.9942908179436063e+01
+-1.7114027815512602e-02
+-2.6648351224182383e+00
+-2.0153066400851454e+01
+2.4030983587037409e+00
+-3.4302761505057924e+00
+-2.0292102459109294e+01
+3.8117244326317006e+00
+-3.9526458483831735e+00
+-2.1247729488921589e+01
+3.8117244326317006e+00
+-3.9526458483831735e+00
+-2.1247729488921589e+01
+-1.1067271777487100e+00
+-2.4360422515690994e+00
+-2.0476820302641322e+01
+1.9037327728315736e+00
+-3.4629071665515121e+00
+-2.0324466594296350e+01
+1.8895966807477256e+00
+-3.4461951320174768e+00
+-2.0274063806652446e+01
+5.1679522247040603e+00
+-4.5521533797472271e+00
+-2.2237629905030165e+01
+-3.1155218789626449e-01
+-2.8534223226749886e+00
+-2.0441669692412088e+01
+5.0570724542643815e+00
+-4.5325457450462796e+00
+-2.2125069314447607e+01
+-1.4538986568627824e-01
+-2.9185873767871793e+00
+-2.0437881047155003e+01
+1.3983492383732929e+00
+-3.4546284217494359e+00
+-2.0319448722908859e+01
+1.3983492383732929e+00
+-3.4546284217494359e+00
+-2.0319448722908859e+01
+1.6097566203991411e+00
+-3.5353807369781318e+00
+-2.0173996302450263e+01
+-4.7870313452032052e-03
+-3.0340184896655984e+00
+-2.0295983046131497e+01
+1.6910368256409738e+00
+-3.6413921206007425e+00
+-2.0533239199463903e+01
+4.6131543966319786e+00
+-4.5961725929241117e+00
+-2.2276470545325360e+01
+2.9093232327426041e-02
+-3.2006033251867008e+00
+-2.0470947580560559e+01
+1.1437208718838669e-01
+-3.2673701044297436e+00
+-2.0556934331124790e+01
+1.5326398521241744e+00
+-3.7111876417093894e+00
+-2.0587242384364011e+01
+-2.1253723654647176e+00
+-2.5862132491658087e+00
+-2.2026519508630450e+01
+7.4929698862685867e-01
+-3.6837760475784558e+00
+-2.0122604925939083e+01
+-2.4002181662814151e-01
+-3.3538140921581321e+00
+-2.1030405432229571e+01
+1.0773839741668428e-01
+-3.5180245895839231e+00
+-2.0868211611191199e+01
+2.2495602858664574e+00
+-4.2819889376458500e+00
+-2.1205690355798090e+01
+2.2932917046606991e+00
+-4.3905284890534677e+00
+-2.1270062999048182e+01
+7.0004641768008613e-01
+-3.8704824363690480e+00
+-2.0754129069489096e+01
+7.3042243641105276e-01
+-3.9178373127842003e+00
+-2.0840624087713937e+01
+2.2914231826401195e+00
+-4.4958144563520959e+00
+-2.1371378098081426e+01
+9.7169458708115053e-02
+-3.8155060966147900e+00
+-2.1164886143440818e+01
+2.0750651936385007e+00
+-4.5943048021977138e+00
+-2.1380849531424818e+01
+2.0750651936385007e+00
+-4.5943048021977138e+00
+-2.1380849531424818e+01
+1.7676973373249087e+00
+-4.5336831064255909e+00
+-2.1442900165843497e+01
+-3.5964934494353046e-01
+-3.9531495685228091e+00
+-2.1729031985317459e+01
+-5.5602457621121604e-01
+-3.9046644821633962e+00
+-2.1542819748699156e+01
+-2.0850898724776914e+00
+-3.5817498012598001e+00
+-2.2956280347466453e+01
+-2.0245293085463421e+00
+-3.6680224932497936e+00
+-2.2859349873091364e+01
+-5.5690964101204832e-02
+-4.2894562454619276e+00
+-2.1819233331532221e+01
+3.0200203686269980e+00
+-5.3334484806755391e+00
+-2.2150402880991798e+01
+2.7393111114705260e+00
+-5.2324642225458451e+00
+-2.2055819918523547e+01
+-1.1195017565714611e-01
+-4.3366867429424030e+00
+-2.1829899281718735e+01
+2.4725114921972411e+00
+-5.2324711321064772e+00
+-2.2078709762467394e+01
+-1.2505981418652645e-01
+-4.3893222778043972e+00
+-2.1824491424776983e+01
+-2.3057117579394317e+00
+-3.7636806389742770e+00
+-2.2989745151663541e+01
+-1.3456852868652747e+00
+-4.3214388505905523e+00
+-2.2929818145052469e+01
+-2.5469265987947924e+00
+-3.9981535126087473e+00
+-2.4046391643724526e+01
+-1.4327383224816219e+00
+-4.3819086335210020e+00
+-2.3188151990012472e+01
+-4.8636843171921912e-01
+-4.7596843637251585e+00
+-2.2664971218812770e+01
+-3.1387448074532340e+00
+-4.2257282298300058e+00
+-2.4949657275860954e+01
+2.9706582884492243e+00
+-6.5719464714033506e+00
+-2.2242041108532515e+01
+-3.4894475404836025e+00
+-5.0566094373479018e+00
+-2.4689116609922966e+01
+-8.8057566458697831e+00
+-3.5843936009364543e+00
+-2.7795982711213341e+01
+-8.6667205477219493e+00
+-3.6632331386636015e+00
+-2.7649218626745490e+01
+7.4282181646793699e-01
+-6.4903921216896201e+00
+-2.2112148183133570e+01
+1.1197953613047906e+00
+-6.6846136238038536e+00
+-2.2331295703235629e+01
+5.3370467205185146e-01
+-6.5420103485607486e+00
+-2.2411573789652014e+01
+6.6003925186210910e-01
+-6.6109698473334237e+00
+-2.2412040422865132e+01
+5.4078773096437327e-01
+-6.6681565030065331e+00
+-2.2475743113768196e+01
+4.6320368977067672e-01
+-6.6461768406627986e+00
+-2.2420815232965058e+01
+1.8337554627233084e-02
+-6.6231633649121253e+00
+-2.2744277115796450e+01
+5.7360714534620272e-01
+-6.8164572350863946e+00
+-2.2495606969145459e+01
+5.7360714534620272e-01
+-6.8164572350863946e+00
+-2.2495606969145459e+01
+-1.2495063445563350e+00
+-6.3419594961808814e+00
+-2.3194414812809406e+01
+-6.8627160247608590e+00
+-4.8497327038850351e+00
+-2.6825337997067169e+01
+-6.9199715742678158e+00
+-4.8454003312351590e+00
+-2.6891165606005089e+01
+4.7490158035491428e+00
+-8.4095683517255146e+00
+-2.1136124972768908e+01
+-6.0259700120408937e+00
+-5.4517683190248025e+00
+-2.5124736088686426e+01
+-4.3289972469925591e+00
+-6.0598163706549206e+00
+-2.4541681395789123e+01
+-4.1992038376392280e+00
+-6.1702733449041363e+00
+-2.4440931217063788e+01
+-4.0773019933607371e+00
+-6.1979207598776691e+00
+-2.4345778996688924e+01
+-3.3447847298689273e+00
+-6.6160276341938138e+00
+-2.3750747799679317e+01
+-5.3116063433214498e+00
+-6.1134235823736738e+00
+-2.4153553118883458e+01
+3.4231567406167955e+00
+-8.7976383331180603e+00
+-2.0617810294211520e+01
+3.4708220330977135e+00
+-8.8459032391174617e+00
+-2.0720636270546581e+01
+2.0217036053000488e+00
+-8.4438109957678122e+00
+-2.1315664780941216e+01
+1.8665708210484961e+00
+-8.3704756880037525e+00
+-2.0941641569963519e+01
+1.4665581879322713e+00
+-8.3764286575946532e+00
+-2.1214682853207297e+01
+4.0190102379383834e+00
+-9.3366808774805925e+00
+-1.9930646037466971e+01
+4.6797500992202865e+00
+-9.5138621954254674e+00
+-1.9391527184027048e+01
+-5.1968734769555489e+00
+-6.6325658816344886e+00
+-2.3546274544919783e+01
+1.4313960500728493e+00
+-8.6916955947587855e+00
+-2.0850141398412351e+01
+-5.7389885800749676e+00
+-6.5315193540733754e+00
+-2.3737348953967832e+01
+-5.7389885800749676e+00
+-6.5315193540733754e+00
+-2.3737348953967832e+01
+-3.5073982747168859e+00
+-7.2161118646885587e+00
+-2.2657890973744941e+01
+-5.5182228740237766e+00
+-6.6369536537828457e+00
+-2.3571778326618450e+01
+-3.5592805612005098e+00
+-7.2214636945125577e+00
+-2.2650025117906360e+01
+3.2506135612207152e+00
+-9.3106010639278978e+00
+-1.9892921461466123e+01
+4.0649515809823420e+00
+-9.5332010408191916e+00
+-1.9318206140217026e+01
+2.9734029427585886e+00
+-9.3284772941410168e+00
+-1.9849776615795992e+01
+-5.4700055911612360e+00
+-6.9190277625951477e+00
+-2.3372985685839616e+01
+3.1686211808499438e+00
+-9.6049562045490049e+00
+-1.9522310361220768e+01
+3.4599002673492167e+00
+-9.7011096862048518e+00
+-1.9393015741864950e+01
+-2.4549383175218766e+00
+-8.0492939945691049e+00
+-2.2463520640263372e+01
+-7.6256584123115694e+00
+-6.4317633950319371e+00
+-2.3812876927474491e+01
+3.9128429577127548e+00
+-9.9521174146430091e+00
+-1.9169353474692784e+01
+3.1348184914906585e+00
+-9.8018438414050806e+00
+-1.9423684004003739e+01
+-3.7306885670247438e+00
+-7.8175111135312116e+00
+-2.2323060376322342e+01
+9.8887837748732765e-01
+-9.2443295830949435e+00
+-2.0307175404331883e+01
+9.5266423089913044e-01
+-9.3499600986060045e+00
+-2.0165152761780561e+01
+-7.9494478483222082e+00
+-6.6401756077945091e+00
+-2.3515324123295997e+01
+-5.6305978766720175e+00
+-7.3624999754640283e+00
+-2.2559927966708099e+01
+-5.2450220154004612e-01
+-8.9809520648671270e+00
+-2.0301138022753623e+01
+2.9831816766251076e+00
+-1.0243884907128297e+01
+-1.8827716582202608e+01
+9.2837156635586027e-01
+-9.7559379509861621e+00
+-1.9609951718300980e+01
+1.1931271096075367e+00
+-9.9713833320344296e+00
+-1.9334332896033750e+01
+-8.6513650314242752e-01
+-9.8596240461390394e+00
+-1.9609157356929455e+01
+-5.3041831881565598e+00
+-8.7491072345730760e+00
+-2.1362283650385230e+01
+-3.4130138495838604e+00
+-9.3219939213303054e+00
+-2.0483314334763861e+01
+-3.4894381901823435e+00
+-9.2406927583356087e+00
+-2.0045664704807862e+01
+-2.9497484821473985e-01
+2.3410253591134992e+01
+-3.9199674641727341e+01
+-2.9497484821473985e-01
+2.3410253591134992e+01
+-3.9199674641727341e+01
+1.6594361518425956e+01
+2.7214287088812757e+01
+-4.9472046891890251e+01
+1.3930167587534330e+01
+1.5871817787653780e+01
+-3.0293173776359030e+01
+9.1620274912624939e+00
+2.2683952905861563e+01
+-4.2052732180809429e+01
+1.7321600875456344e+01
+2.7694298583827916e+01
+-5.2975023793321427e+01
+1.5783216794356173e+01
+1.5175412289735783e+01
+-3.0784716734166800e+01
+9.7759181721116306e+00
+2.6717382823327011e+01
+-5.0158161845045100e+01
+1.5243850212076486e+01
+2.6341615966959665e+01
+-5.1455025148800345e+01
+1.4801887675984759e+01
+1.5750280495665502e+01
+-3.2836917401316491e+01
+1.8009894256174157e+01
+2.5847872512917981e+01
+-5.1943839488276240e+01
+6.3521337948484691e+00
+2.2393160926686011e+01
+-4.2957402799759230e+01
+1.3624758587581532e+01
+1.1836054614225176e+01
+-2.6059058183035628e+01
+1.7969010687799251e+01
+2.5412600757380343e+01
+-5.2234962374025699e+01
+1.3281908669261563e+01
+1.3827250964507121e+01
+-2.9956256885236886e+01
+6.2810462728256722e+00
+2.2222642200915537e+01
+-4.3453481548784325e+01
+4.4252515348862485e+00
+2.3386983621126955e+01
+-4.5075676355391117e+01
+1.4207732061374106e+01
+1.5993010117793526e+01
+-3.4322247217257448e+01
+1.2586067140606971e+01
+1.1131889598550103e+01
+-2.5105657485011559e+01
+1.0384825598843701e+01
+2.4975107461059189e+01
+-5.0620741100591559e+01
+1.3214864970504705e+01
+1.1684989995152860e+01
+-2.6736446601629371e+01
+6.3356697213040380e+00
+2.0734312173026009e+01
+-4.2470443690770274e+01
+1.4240300190115434e+01
+1.5448220228610539e+01
+-3.4789242696375680e+01
+9.9221114130632895e+00
+2.0727725665952729e+01
+-4.3741605248682809e+01
+1.2303574477979569e+00
+2.1314408626379706e+01
+-4.2258831062288969e+01
+1.2946578342172881e+01
+1.5072778290513895e+01
+-3.3873150560198958e+01
+1.4374960838050994e+01
+1.2956525243634095e+01
+-3.0276083234292336e+01
+2.2576090590170296e+01
+2.8120624017409177e+01
+-6.2599837727118882e+01
+1.3722975866564189e+01
+9.3301805006346274e+00
+-2.3332035841849798e+01
+1.7564472473105912e+01
+2.4522210026239652e+01
+-5.4512748296236460e+01
+1.9640947421323315e+01
+2.7018249766873225e+01
+-5.9878668198166743e+01
+2.5192213394784870e+00
+2.0720840047131993e+01
+-4.2426298470451030e+01
+-2.2622768679237519e+00
+2.1697807454916315e+01
+-4.2781945981298271e+01
+1.3002953659911155e+01
+1.0009837435922782e+01
+-2.4763840282418681e+01
+1.3002953659911155e+01
+1.0009837435922782e+01
+-2.4763840282418681e+01
+1.5197700514363506e+01
+2.4961750870862328e+01
+-5.4861058926158741e+01
+8.1204752981456227e+00
+2.3360438411382901e+01
+-5.0003276691166086e+01
+1.2821543253327590e+01
+1.3521228473136775e+01
+-3.2223817923971723e+01
+1.3796738602776306e+00
+2.0703250696598037e+01
+-4.3416796895685287e+01
+-1.2519082026438364e+00
+2.1342936042709987e+01
+-4.3774263274729897e+01
+1.1901352080796427e+01
+9.9024724896082574e+00
+-2.5253996726737203e+01
+1.4777784714879653e+01
+2.6251066881189576e+01
+-5.9599929264710113e+01
+1.3150892694138367e+01
+1.0861858583770481e+01
+-2.7591790586820796e+01
+5.2784513895154541e+00
+2.2113169135746414e+01
+-4.7786303043284811e+01
+1.3432415767716599e+01
+1.0502666313718905e+01
+-2.7015150847050382e+01
+1.3013405179401717e+01
+9.6411019067127484e+00
+-2.5367031132015583e+01
+1.5812155106489499e+01
+2.5018060616347253e+01
+-5.7954598093844538e+01
+1.3493399227602602e+01
+2.3278151098349575e+01
+-5.4665465249315176e+01
+1.4670878017035214e+01
+2.5483300910199347e+01
+-5.9894788771938941e+01
+1.5106274747499471e+01
+2.5566810040866358e+01
+-6.0272777082733917e+01
+1.3261556738539355e+01
+1.3596781578723414e+01
+-3.4484915326707331e+01
+1.4861554753695044e+01
+2.5560122511531087e+01
+-6.0363361964002642e+01
+1.4676595302314531e+01
+2.5474667011310192e+01
+-6.0210050480171624e+01
+1.4898801306707377e+01
+2.5374935201471647e+01
+-6.0184734098379813e+01
+1.3056156258194680e+01
+9.0127563758230362e+00
+-2.5195289869158337e+01
+1.2961842174857928e+01
+1.0311228323981519e+01
+-2.8077187860602312e+01
+1.3535753072373669e+01
+8.4005401718487782e+00
+-2.4379148386922871e+01
+1.5830559969493951e+01
+2.5013960249728907e+01
+-6.1086793913772524e+01
+1.3094667667168826e+01
+8.7881439152465148e+00
+-2.5644104794113293e+01
+1.3094667667168826e+01
+8.7881439152465148e+00
+-2.5644104794113293e+01
+1.2470005152309994e+01
+8.1199514072628265e+00
+-2.4157335496980917e+01
+1.7846240103718799e+01
+2.3814153364401989e+01
+-6.0099280107891808e+01
+1.3140849597784248e+01
+8.8937821620544071e+00
+-2.6200135925663162e+01
+1.0330777921828084e+01
+2.3694823927543617e+01
+-5.7100104972772257e+01
+1.6244822375479591e+00
+2.0779642435757612e+01
+-4.7514452869765506e+01
+1.2540737246517836e+01
+9.3610106418319443e+00
+-2.6761353952052520e+01
+1.5651405245975562e+01
+2.3178971665378846e+01
+-5.8701269428616882e+01
+1.2359787120681753e+01
+8.1534337697140877e+00
+-2.4800725672132913e+01
+1.2226196788986158e+01
+7.8484373367451692e+00
+-2.4326769168543972e+01
+1.3412903395221559e+01
+8.1224081297592221e+00
+-2.4924361763091039e+01
+1.2464909035571408e+01
+7.6919188059681307e+00
+-2.4224204862259139e+01
+1.2365275476737324e+01
+7.9852350275334523e+00
+-2.4909287798007409e+01
+1.2603887274391996e+01
+1.2190345541833560e+01
+-3.4185046996399649e+01
+-3.3979277438446664e-01
+2.1182172318502673e+01
+-4.9274689988460146e+01
+1.1311116083704983e+01
+2.2612173350605371e+01
+-5.7296204271302564e+01
+3.0663100829477417e+00
+2.0041046311238887e+01
+-4.7951225581822136e+01
+1.4655651520748970e+01
+1.0420999478763356e+01
+-3.2143829461046053e+01
+2.0631220160147636e+00
+2.0963683515320103e+01
+-5.1239889669261423e+01
+1.2154105109790049e+01
+7.3557267019194601e+00
+-2.4854361519452205e+01
+1.2037869258260848e+01
+8.2488125509595829e+00
+-2.6924381855361162e+01
+1.2349763114493738e+01
+8.7862162658058054e+00
+-2.7986276511596561e+01
+1.2585983608717456e+01
+7.4234593409526193e+00
+-2.5720429559432002e+01
+6.9821492062703259e+00
+2.1443113334779696e+01
+-5.6105994538527803e+01
+1.3135231125906421e+01
+7.7173546533633495e+00
+-2.6767460955630220e+01
+1.8669824368890482e+00
+1.9648859268200301e+01
+-5.0507556094657893e+01
+1.2758556759827963e+01
+8.0023283331674193e+00
+-2.7279207643256868e+01
+1.2107832117148455e+01
+7.6791567268298939e+00
+-2.6608075759552381e+01
+1.3212034997016575e+01
+7.4264115602229142e+00
+-2.6232683727983282e+01
+1.3212034997016575e+01
+7.4264115602229142e+00
+-2.6232683727983282e+01
+6.5213304664512028e+00
+2.0981942686599464e+01
+-5.5999730883791827e+01
+1.2856753646797470e+01
+7.4458051837024621e+00
+-2.6726983659915721e+01
+1.2925844068862274e+01
+7.2557576975170317e+00
+-2.6559827086681651e+01
+1.4097626391920818e+01
+1.0413295956025676e+01
+-3.4491219712971592e+01
+1.8919009229398327e+01
+1.8002492802395338e+01
+-5.6107460796920471e+01
+1.3563977464211307e+01
+9.9434561475151426e+00
+-3.3774635804100896e+01
+8.3779201478608361e+00
+1.7210986290924488e+01
+-4.8631898222204640e+01
+-2.3030982711498020e+00
+1.9336386778457609e+01
+-4.9037503640209117e+01
+-2.3030982711498020e+00
+1.9336386778457609e+01
+-4.9037503640209117e+01
+1.2203348742240699e+01
+7.2420473305733415e+00
+-2.6588385426948562e+01
+1.3825603115109972e+00
+1.9678420647150862e+01
+-5.2204814571193715e+01
+1.0842433768348638e+01
+2.1005441593839873e+01
+-6.0427491283785905e+01
+-2.1736924300544782e+00
+1.7614102595709657e+01
+-4.6048380191026475e+01
+1.3293550124411965e+01
+1.0184025078172718e+01
+-3.5472641422761981e+01
+-1.5279212771761888e+00
+1.8895385886110319e+01
+-5.0071741978237789e+01
+-1.5279212771761888e+00
+1.8895385886110319e+01
+-5.0071741978237789e+01
+1.2423922885810994e+01
+7.6814715582085702e+00
+-2.8889168728505165e+01
+1.1345773136838831e+01
+7.1761415982549783e+00
+-2.7622426363988605e+01
+-1.8617772206705960e+00
+1.8469977900554248e+01
+-5.0192779078580699e+01
+-2.7477245839617810e+00
+1.8160227229350809e+01
+-4.9710849410720087e+01
+-1.6957947017372610e+00
+1.7571744748921677e+01
+-4.8908565844456952e+01
+3.6433611799900706e-01
+1.8163831365093461e+01
+-5.2625753991067256e+01
+2.4782734170520196e-01
+1.6917582029061403e+01
+-4.9534732338889043e+01
+1.2062202744592353e+01
+7.0219708514091277e+00
+-2.9606893172870841e+01
+-4.0298273596130196e-01
+1.6761039996706511e+01
+-4.9070038767372850e+01
+1.2752301812155988e+01
+6.5823767106115003e+00
+-2.8638779515823707e+01
+1.2799664544265266e+01
+1.0194060625114897e+01
+-3.8821416305370548e+01
+1.3378530647915928e+01
+5.7207632653226810e+00
+-2.6977001747545295e+01
+1.2488399838379188e+01
+5.8161826358156556e+00
+-2.7422212731894220e+01
+1.2568680514825934e+01
+5.7791129778641332e+00
+-2.7220235041671117e+01
+1.2618735937069479e+01
+5.6350560805838956e+00
+-2.7272628910717589e+01
+1.2836941963178472e+01
+5.6031885779500916e+00
+-2.7419160556943229e+01
+1.3203947121494759e+01
+9.1701636145112655e+00
+-3.8007477270785678e+01
+1.3881848312854030e+01
+8.7863051224856914e+00
+-3.7459548553095580e+01
+1.2609894453941333e+01
+5.5074576945061899e+00
+-2.7656734138253107e+01
+1.1919698146813021e+01
+6.2540289033724665e+00
+-2.9507410739405952e+01
+1.2581720191583038e+01
+5.6656916764130587e+00
+-2.8334251816427660e+01
+1.2450539696824714e+01
+5.4029262511439873e+00
+-2.7573089758379499e+01
+1.2803832293579623e+01
+9.0082494439574443e+00
+-3.8716940280021667e+01
+1.2803832293579623e+01
+9.0082494439574443e+00
+-3.8716940280021667e+01
+1.2985681610724274e+01
+4.3935861460268617e+00
+-2.5448058871804996e+01
+8.9821676804403494e-01
+1.5999693547607787e+01
+-5.2046402894810342e+01
+1.2840924955651474e+01
+5.0842943219372039e+00
+-2.7581214047990663e+01
+1.4190162291220398e+01
+7.6430504625168441e+00
+-3.5947542307386428e+01
+1.3715551949097897e+01
+1.0205225209828916e+01
+-4.3416293564377270e+01
+1.2889231712998226e+01
+9.0763953935987445e+00
+-3.9765602319250675e+01
+-1.9107470316619228e+00
+1.5149060135174095e+01
+-4.8390959429067451e+01
+7.3969784909552718e+00
+1.3974102821327140e+01
+-5.2335038693822632e+01
+1.2519513913730480e+00
+1.5308798434490571e+01
+-5.2252501718208848e+01
+1.3870601054987421e+01
+9.2426960974497696e+00
+-4.3042544801571097e+01
+7.1698544651425591e+00
+1.3614436607547846e+01
+-5.2033349783511717e+01
+1.3070275957736367e+01
+4.7480148554461694e+00
+-2.8904106732213442e+01
+1.2997815255877766e+01
+4.5960498027351555e+00
+-2.8556928818505078e+01
+5.6175523392056572e+00
+1.3048606832956350e+01
+-5.0062969189815718e+01
+5.6175523392056572e+00
+1.3048606832956350e+01
+-5.0062969189815718e+01
+-3.5089512677526158e+00
+1.5017997760077622e+01
+-4.9824681161057811e+01
+-3.7618512450514308e+00
+1.4740660489939392e+01
+-4.8695321776384375e+01
+-3.5340509361441899e+00
+1.5632909328557222e+01
+-5.1942197897645627e+01
+1.2905299608816925e+01
+8.2911871559789478e+00
+-4.0541694854156660e+01
+1.3271995446881164e+01
+4.1501403621086599e+00
+-2.7792076015500488e+01
+1.2968717492989189e+01
+8.1770342104494684e+00
+-4.0293374870996857e+01
+-4.2820510218876713e+00
+1.4299488787562359e+01
+-4.7588158123179362e+01
+3.4168217604501261e+00
+1.2520665588660641e+01
+-5.0276000328319640e+01
+1.4153252714357743e+01
+6.2567496330866259e+00
+-3.7603320460499233e+01
+1.2467125573551538e+01
+4.7588198468832505e+00
+-3.1327806823618598e+01
+1.2316367768786749e+01
+3.6460630351628156e+00
+-2.8623682911278760e+01
+1.2316367768786749e+01
+3.6460630351628156e+00
+-2.8623682911278760e+01
+-3.1335515423425897e+00
+1.3995160050280267e+01
+-5.1747802970768674e+01
+6.4216241541672821e+00
+6.9687251011083049e+00
+-3.5072613634961336e+01
+1.3440238218175317e+01
+3.5283511153823355e+00
+-3.0076806242786372e+01
+1.2743398073778424e+01
+3.6250064373849358e+00
+-3.0196765465742516e+01
+3.5479826739195439e+00
+9.7185499215869910e+00
+-4.4783985948488095e+01
+2.8155107684929055e+00
+9.9816261977702236e+00
+-4.4960677080704158e+01
+2.6989457486687445e+00
+9.0096278073154643e+00
+-4.1779027466996453e+01
+3.3358341278792887e+00
+9.5197373933232914e+00
+-4.5276630595232525e+01
+1.2477552517210224e+01
+2.5638415757640809e+00
+-2.7812516356483226e+01
+1.3840696307450909e+01
+1.7880574338385975e+00
+-2.6871271327372426e+01
+1.2279042916955238e+01
+3.7444133348170272e+00
+-3.2507806138308517e+01
+1.2312758415492313e+01
+3.7492834389392429e+00
+-3.2668915888472149e+01
+-2.3715173840719697e+00
+1.1065162152896175e+01
+-4.7722991287814331e+01
+2.0932630040953391e+00
+9.2615413230630086e+00
+-4.5124087424283999e+01
+-1.2278726240660184e-01
+3.6108164800930176e+00
+-2.0909658050395283e+01
+1.1214874273401405e+00
+8.8495320114901883e+00
+-4.3002643264025480e+01
+1.3017756646226870e+01
+2.3050017108582406e+00
+-2.9414180830247140e+01
+1.5178422699150633e+00
+8.7951857965549287e+00
+-4.4121842484129751e+01
+1.4432164047362191e+01
+1.4601214006746011e+00
+-2.7994008015549440e+01
+1.4599901783621988e+01
+1.5211512653946913e+00
+-2.8178577587370182e+01
+2.5503860191548204e+00
+8.3836761331483256e+00
+-4.4130874790765354e+01
+1.2819685910491845e+01
+2.5812145560931614e+00
+-3.0982720004145541e+01
+1.2149076499661339e+01
+2.7911342485710193e+00
+-3.1685768560463430e+01
+-7.0644700918508652e-01
+3.6175301232298209e+00
+-2.1763131565469180e+01
+1.3520647982871957e+01
+2.0355459523121886e+00
+-3.0699018384026200e+01
+1.2248785205820822e+01
+2.1369769762654984e+00
+-3.1304511775797234e+01
+-5.1636462790220938e-01
+8.1951718482971394e+00
+-4.3646669325887288e+01
+1.4028043929206181e+01
+1.0014805699529319e+00
+-2.8880853430596730e+01
+1.3977244354618657e+01
+1.0719607912292095e+00
+-2.9040511470793064e+01
+1.3670388252586958e+01
+1.0233311554241256e+00
+-2.8353910182582428e+01
+1.4310933962746960e+01
+7.0464584460010604e-01
+-2.8148294627653303e+01
+1.4310933962746960e+01
+7.0464584460010604e-01
+-2.8148294627653303e+01
+1.2348802658250843e+01
+3.0403772822329234e-01
+-2.4850139545431229e+01
+1.2243901549245519e+01
+1.6709127830436146e+00
+-3.0992635311527188e+01
+-5.8273835641691851e-01
+3.0880700795300822e+00
+-2.2954258823522977e+01
+-1.3320167874500655e+00
+7.8791732315655540e+00
+-4.4148717382560221e+01
+-7.1045860326106758e-01
+3.0385732894532729e+00
+-2.3035597448524094e+01
+1.2246363438018944e+01
+1.2971461900440366e+00
+-3.0817257311711177e+01
+1.2863413327812422e+01
+1.4904094791768987e+00
+-3.2217790308019445e+01
+1.2335305280047315e+01
+1.3613401725886237e-02
+-2.5579533047981993e+01
+1.4240718698223082e+01
+2.8662455559983102e-01
+-2.9247150138948804e+01
+1.2323456297847944e+01
+-2.2860902047132602e-02
+-2.6352625182777629e+01
+-1.4246659777897808e+00
+3.5765292883997231e+00
+-2.6296300354057010e+01
+-1.4246659777897808e+00
+3.5765292883997231e+00
+-2.6296300354057010e+01
+1.2244208909641182e+01
+-9.0808124862232220e-02
+-2.6250927798296640e+01
+-1.3356012656597525e+00
+3.6545921326972577e+00
+-2.7161495794328701e+01
+-1.4282085848491997e+00
+3.5339448690537951e+00
+-2.6406730813647286e+01
+1.5410818439617744e+00
+9.8292026311965264e-01
+-1.7830604591378002e+01
+-2.1241638416446404e+00
+6.6809432491787790e+00
+-4.2004231949947133e+01
+-2.1043687863568978e+00
+3.7851313578796653e+00
+-2.8374610316936675e+01
+1.4102100203015029e+01
+-7.4806386858928792e-02
+-3.0415009663802831e+01
+5.4989867323398411e-01
+1.5337354040499376e+00
+-2.0793004339671242e+01
+-1.6660094078161132e+00
+3.1385587302436426e+00
+-2.6541637141399114e+01
+-1.7367742732668106e+00
+3.0334674712934731e+00
+-2.6304621662850064e+01
+1.8490515860705101e+00
+9.6819452524464822e-01
+-2.0367174686488170e+01
+-2.0054956765515728e+00
+3.0320847867832486e+00
+-2.6248541324192278e+01
+-2.6797092485836358e+00
+3.6066644463945776e+00
+-2.8377263628372145e+01
+1.2128231782630380e+01
+-8.5774658827005090e-01
+-2.5795495291420757e+01
+8.1095628773031458e-01
+1.2445486069262865e+00
+-2.0673564061841748e+01
+1.2232408881693823e+01
+-7.8824271113791289e-01
+-2.6648734533168309e+01
+6.9864539739296365e+00
+5.2182030131779862e-02
+-2.3544394098614831e+01
+-8.9513393525648452e-02
+1.5247672201916573e+00
+-2.1277419687705223e+01
+3.3071186000634376e+00
+4.6126182236007579e-01
+-2.0650141497968701e+01
+1.4022398934263560e+00
+9.0159386663408658e-01
+-2.0427661929492448e+01
+2.8491960926839743e+00
+4.9011878897176042e-01
+-2.0455680397679004e+01
+1.5127807528797460e+01
+-1.4013844786799783e+00
+-2.9355084421049245e+01
+2.8315681291796406e+00
+4.5423403198685214e-01
+-2.0426187706752224e+01
+2.0705379936511497e+00
+6.2168607192186498e-01
+-2.0330587142687222e+01
+-6.2276338129557449e-02
+1.1883584596684897e+00
+-2.1064704512265134e+01
+-3.1226655840504898e+00
+2.9246869513080487e+00
+-2.7367063928005614e+01
+7.0205851875730341e-01
+7.5795501564927237e-01
+-2.0579977304242650e+01
+-2.0051025177928299e+00
+2.2585579088414978e+00
+-2.5337139340438391e+01
+1.5140251042995196e+01
+-1.8725615141128160e+00
+-3.0117474343591507e+01
+3.2048205875131947e-01
+8.3089572562080238e-01
+-2.0795416974491172e+01
+3.8462077421383228e-01
+7.8796094425341423e-01
+-2.0682588927624469e+01
+4.9838845372393775e-01
+7.5178395033421153e-01
+-2.0654149213874913e+01
+-2.1227092153983342e+00
+2.1642334755833295e+00
+-2.5263218567592027e+01
+-2.7742781827573610e+00
+2.4967342253765490e+00
+-2.6742975357290383e+01
+-2.8054873252155286e+00
+2.5030002406262208e+00
+-2.6936367130624127e+01
+2.7784217084289869e-01
+7.0202893714962722e-01
+-2.0782951398454362e+01
+2.7784217084289869e-01
+7.0202893714962722e-01
+-2.0782951398454362e+01
+2.7597636884875438e+00
+-4.0460818423742974e-02
+-2.0394829371611390e+01
+2.8636081602271775e+00
+-1.9374647833313846e-01
+-2.0452390319220839e+01
+-3.4672866584305169e+00
+2.3543269491706234e+00
+-2.6694302880440091e+01
+-2.2927178718606873e+00
+1.4959027327373360e+00
+-2.4348051939843469e+01
+-1.7127641935268576e+00
+1.1431803356398860e+00
+-2.2873162626312141e+01
+-1.8411179962897208e+00
+1.1663510083924704e+00
+-2.3116903199672237e+01
+-2.0892410830457506e+00
+1.2704904211986257e+00
+-2.3296279896760279e+01
+-6.3437717751510514e-01
+4.5107739712835793e-01
+-2.1375767668253378e+01
+-2.6483991925600434e+00
+1.2700611831178861e+00
+-2.3906703145697445e+01
+-1.7187999799831362e+00
+7.9568854575006809e-01
+-2.2894380280139423e+01
+-1.7536625524925653e+00
+7.8400450562054380e-01
+-2.2826590306689454e+01
+-6.1884651494083309e-01
+2.5378467167114638e-01
+-2.1224054034504562e+01
+2.6001165676843128e+00
+-7.7423291669991789e-01
+-2.0464829283829552e+01
+-3.7924749118416051e-01
+1.4400688684775656e-01
+-2.1176163657493532e+01
+4.2451017612951008e+00
+-1.2423536334451952e+00
+-2.0604595661906174e+01
+-3.5599673980393418e+00
+1.5184054559692750e+00
+-2.5309131024820918e+01
+-3.1476902692584470e+00
+1.3606389067698001e+00
+-2.5358259265012510e+01
+-1.9797737503265864e+00
+6.7031711529766613e-01
+-2.3234886053991552e+01
+-1.6802575265435588e-01
+-1.1436600370243986e-01
+-2.0948566393389072e+01
+-1.4549403928732256e+00
+4.0802669623369775e-01
+-2.2359700260601876e+01
+2.6604847193000332e+00
+-1.0141145580629043e+00
+-2.0546885312896457e+01
+2.2057639997311562e+00
+-9.3588815468244668e-01
+-2.0416697533977480e+01
+-1.9678431383706269e-01
+-1.8806481668612335e-01
+-2.1007179498621355e+01
+-1.9323105967682970e+00
+5.4248342695687346e-01
+-2.3095959937505210e+01
+-2.0036794889330869e+00
+4.4739739970690029e-01
+-2.2929910837641632e+01
+-8.8190004395347577e-01
+-7.4805259493473442e-02
+-2.1530284841396213e+01
+1.2363179151266475e+00
+-8.2350325177577677e-01
+-2.0587619338931340e+01
+-2.7695820837630816e+00
+6.2516013165695816e-01
+-2.3738881541997383e+01
+1.4631350283127609e+00
+-1.1601948643110827e+00
+-2.0512462004446522e+01
+9.5876663305701659e-01
+-1.0920238736213412e+00
+-2.0569367114308424e+01
+-7.0928739150048192e-01
+-5.3772375586506727e-01
+-2.1537942211417018e+01
+-4.7548019018687064e+00
+2.0113761448272101e+00
+-3.6468256537538281e+01
+7.1983099069364398e-01
+-1.2214554235117789e+00
+-2.0669538119945607e+01
+-1.0099597215491520e+00
+-6.7391053455589667e-01
+-2.1519425584526342e+01
+-3.7817554566871592e+00
+3.4970914329781116e-01
+-2.3994828054082898e+01
+2.6965390549570492e+00
+-1.8915216905401560e+00
+-2.0175382112246695e+01
+4.4104503356523184e+00
+-2.3821059294282652e+00
+-2.0444295967814316e+01
+1.8755685792520773e+00
+-1.7374788333854294e+00
+-2.0193031456096861e+01
+-5.7581783229558536e-01
+-9.7783617493544261e-01
+-2.1044298882027498e+01
+4.8660655039465279e+00
+-2.6793509371225630e+00
+-2.0119613769641692e+01
+-1.6084176813518489e+00
+-6.5696697701221241e-01
+-2.1514838965253073e+01
+-6.9303790060540127e-01
+-1.0030200235179683e+00
+-2.0965552335280975e+01
+4.5707868029380448e-02
+-1.3245523776352861e+00
+-2.0562749390155222e+01
+1.0040599983095544e+00
+-1.6430825579332760e+00
+-2.0382168057080417e+01
+-3.8325003878891404e+00
+9.5636227302255510e-03
+-2.3605539307889870e+01
+2.6484654728299111e+00
+-2.1692671736572486e+00
+-2.0362041078202264e+01
+3.1102930438985177e-01
+-1.4888581770993330e+00
+-2.0545134903962495e+01
+4.8480753254621609e+00
+-2.8883622823223045e+00
+-2.0325582880372671e+01
+2.7606250478165193e+00
+-2.2027082412296322e+00
+-2.0852806469133327e+01
+4.5774492918299723e+00
+-2.8338480492162219e+00
+-2.0477831762006982e+01
+-9.0204047591425751e-01
+-1.1824346234605854e+00
+-2.0982414257166973e+01
+7.5444178028148412e-01
+-1.7855951957666771e+00
+-2.0398731862550015e+01
+-3.0414263367639482e+00
+-5.0662800580068246e-01
+-2.2901229849247745e+01
+-1.5044631251824361e+00
+-1.0770022407862703e+00
+-2.1599069094718946e+01
+-5.8229246083617276e+00
+8.7593084746892280e-01
+-3.3830166937653082e+01
+8.8843952737263782e-02
+-1.7583032391174667e+00
+-2.0480025857156445e+01
+4.6079762430537068e+00
+-3.2055799274765939e+00
+-2.0912127382619957e+01
+3.1383832263348466e+00
+-2.8536109092836841e+00
+-1.9553298807520157e+01
+3.0728168247722474e+00
+-2.9140293902448571e+00
+-1.9731326256873594e+01
+2.9913300763921713e+00
+-2.9307556075338832e+00
+-1.9498539758245407e+01
+4.3350076293353723e+00
+-3.3205698376507491e+00
+-2.0852095978750040e+01
+-3.0405660260384120e+00
+-1.1153549899049786e+00
+-2.2315076967690210e+01
+-2.4915007382643859e+00
+-1.4364224362371301e+00
+-2.1486235833780189e+01
+-1.8608177154112828e+00
+-1.7668576498994364e+00
+-2.1114165926085935e+01
+4.1585747072734042e-01
+-2.5070924769470171e+00
+-2.0423766342127330e+01
+-3.7498776893095481e-01
+-2.3440283263646218e+00
+-2.0634155024236190e+01
+1.7773870964467047e+00
+-3.0433101774878799e+00
+-1.9833681342547340e+01
+-1.8418869830503033e+00
+-1.9050759016558823e+00
+-2.0976876614085750e+01
+2.3899858808797978e+00
+-3.4088165765930358e+00
+-2.0346129034684441e+01
+-5.5145461024508813e-01
+-2.5194025652464074e+00
+-2.0188969956717077e+01
+2.2988848792092327e+00
+-3.5032670303889901e+00
+-2.0438033651882051e+01
+4.2768158294523824e+00
+-4.1209307117745473e+00
+-2.1540505639280273e+01
+-2.6852752682110843e+00
+-1.9288338910302072e+00
+-2.2208183259785187e+01
+2.1046418333589871e+00
+-3.5034913231644373e+00
+-2.0375653103388945e+01
+4.4227886682570512e+00
+-4.2306347097466670e+00
+-2.1864938157962630e+01
+-1.1691270347017466e+00
+-2.5110525967841384e+00
+-2.0200921192932306e+01
+1.6424254817965773e+00
+-3.4492833871189710e+00
+-2.0308462637293530e+01
+2.2450288810674039e+00
+-3.6733228833295328e+00
+-2.0555226374214172e+01
+2.9437525327676406e+00
+-3.9553372745334006e+00
+-2.0793077476450158e+01
+-5.3254749818929425e-01
+-3.0431412436037704e+00
+-2.0666376947276817e+01
+-1.7777859329730339e+00
+-2.6659965665896168e+00
+-2.1526860474571233e+01
+-4.2895087427826756e-01
+-3.1161607331088668e+00
+-2.0679013522967072e+01
+-6.2191006807788030e-01
+-3.0954996865764519e+00
+-2.0601867944924951e+01
+-6.2191006807788030e-01
+-3.0954996865764519e+00
+-2.0601867944924951e+01
+-1.3005841616049779e-01
+-3.3527244384747639e+00
+-2.0549982408097357e+01
+-1.3005841616049779e-01
+-3.3527244384747639e+00
+-2.0549982408097357e+01
+1.6960237656232608e+00
+-4.0370610327308087e+00
+-2.0899561864316656e+01
+-7.8146457660971003e-01
+-3.2609494486373731e+00
+-2.1123937782606763e+01
+-3.3420008684300435e+00
+-2.6225817263109357e+00
+-2.4265110190661865e+01
+-1.3991657542721421e+00
+-3.3299762145174556e+00
+-2.1659229319570368e+01
+-3.0393844335925140e+00
+-2.7276697430219694e+00
+-2.2162114138567958e+01
+2.1586725262599100e+00
+-4.5474802878408536e+00
+-2.1454423503916118e+01
+2.0697466507508082e+00
+-4.5603389785615844e+00
+-2.1346290681837047e+01
+-2.8461464281226112e+00
+-2.9972775535703207e+00
+-2.3300151938392965e+01
+-2.8174196598736558e+00
+-3.0008178262960410e+00
+-2.3259381944585343e+01
+2.2715194961477971e+00
+-4.6693507791578588e+00
+-2.1454523364933696e+01
+-3.2407256877825565e+00
+-2.9644550725986196e+00
+-2.4216678558327668e+01
+-2.7064159201563603e-01
+-3.9700443438198567e+00
+-2.1072059730993644e+01
+-3.2552929177470763e-01
+-3.9565095299468918e+00
+-2.1543002947472804e+01
+-2.1113280460217485e+00
+-3.4547696933063263e+00
+-2.2898036464067960e+01
+-2.1886588583453026e+00
+-3.3401084003886665e+00
+-2.2696541192272790e+01
+1.7949694403104819e+00
+-4.7019549979609963e+00
+-2.1153833310146435e+01
+-8.5329448880965479e+00
+-1.6676937685203408e+00
+-3.0372292225185785e+01
+3.0201448721299444e+00
+-5.2315042500499969e+00
+-2.1744128071182825e+01
+-3.6345295580889697e-01
+-4.1649014859889411e+00
+-2.1936827941149442e+01
+-1.5256289877291358e+00
+-3.8489154056364292e+00
+-2.2128052104895620e+01
+1.3133058133238842e+00
+-4.8457821349671590e+00
+-2.1007706068395507e+01
+1.9510551979573001e-01
+-4.4926080638928196e+00
+-2.1823077677429335e+01
+-7.9281026685484148e+00
+-2.1972349006974312e+00
+-2.9838945130215613e+01
+-2.0280247535341740e+00
+-3.9139657492108344e+00
+-2.3014182852341211e+01
+-2.0049288110225829e+00
+-3.9338837975603194e+00
+-2.3132515876814686e+01
+-2.5509787447125926e-01
+-4.4850916565381009e+00
+-2.1313840130846412e+01
+1.4056466568345387e+00
+-5.0935001078050881e+00
+-2.1520754728470163e+01
+3.2383303291434382e+00
+-5.9991176725510522e+00
+-2.2602947509734360e+01
+-7.3599382614630504e-01
+-4.7221730516943943e+00
+-2.2780690801398315e+01
+-2.5892854023609537e+00
+-4.2727003594952997e+00
+-2.3979772485519330e+01
+5.4659799533223108e-01
+-5.4202646082818573e+00
+-2.2260829934417973e+01
+8.4820778643482786e-01
+-5.7289565772236433e+00
+-2.2755789450574472e+01
+1.3383467198151500e+00
+-5.9830511972906368e+00
+-2.1596513231512606e+01
+-9.3822535853521560e-01
+-5.3103735999396209e+00
+-2.3080102483092382e+01
+-3.2427096669314994e+00
+-4.8316399706331596e+00
+-2.4090341000007779e+01
+-3.6143457460958519e+00
+-4.7653147228343080e+00
+-2.4156010390711781e+01
+7.3799425103478988e-01
+-6.1788306032327975e+00
+-2.1755255749848963e+01
+-7.5657778899396675e+00
+-4.0068789480340650e+00
+-2.7663692549484246e+01
+-1.5225077422813049e+00
+-5.7176681257966928e+00
+-2.2613630232263670e+01
+-8.6119973328602999e+00
+-3.7349070530697879e+00
+-2.7569853588685465e+01
+6.1811106811774208e-01
+-6.5506120901314588e+00
+-2.2368217875976711e+01
+7.0800223415874597e-01
+-6.6117995066692643e+00
+-2.2318069050526578e+01
+3.7720080990705934e-01
+-6.6193056463356532e+00
+-2.2752102193263745e+01
+-1.5306779173159004e+00
+-6.1052888004345292e+00
+-2.3059520946018313e+01
+7.9680149423927571e-01
+-6.8610773960513551e+00
+-2.2384547052971598e+01
+7.5194364562359550e-01
+-6.9149001196439652e+00
+-2.2502430950962172e+01
+-1.3743433704066801e+00
+-6.3451248562107834e+00
+-2.3191496279194123e+01
+-1.5556684123026108e+00
+-6.3035988982332389e+00
+-2.3309718028948815e+01
+-1.4296564313250413e+00
+-6.3429432383063631e+00
+-2.3275158884397875e+01
+-1.4296564313250413e+00
+-6.3429432383063631e+00
+-2.3275158884397875e+01
+4.7274590180853462e+00
+-8.3936412159242568e+00
+-2.0951177073691778e+01
+-4.1313956304597568e+00
+-6.1716306659238809e+00
+-2.4442426974037264e+01
+3.9276098549978586e+00
+-8.7010810896174604e+00
+-2.0948179996571088e+01
+3.6398078542424819e+00
+-8.6074900263034007e+00
+-2.0941949297556960e+01
+-2.7645113299960816e-01
+-7.5395453090735085e+00
+-2.1815433406325859e+01
+-6.4816956474949281e+00
+-5.8014429929949136e+00
+-2.4664844853527704e+01
+-5.4613331353535637e+00
+-6.3576124134475434e+00
+-2.3879608345978070e+01
+3.5634044833999026e+00
+-9.2481579373616256e+00
+-2.0150687716305736e+01
+-6.4101118664422456e+00
+-6.2234248576014952e+00
+-2.4212898310893276e+01
+-5.6435226819874336e+00
+-6.5300816162734945e+00
+-2.3812932640496907e+01
+4.5026637600703108e+00
+-9.6965658215616273e+00
+-1.9412293163873997e+01
+-5.8270694419491074e+00
+-6.5732106203307588e+00
+-2.3676351454529716e+01
+1.5385786717682786e+00
+-8.8102863608972815e+00
+-2.0343749801672171e+01
+3.8378224238399703e+00
+-9.6505990435421065e+00
+-1.9465439738226884e+01
+3.3914494188293500e+00
+-9.6042838975677292e+00
+-1.9433986538732487e+01
+2.3135673601046021e+00
+-9.3898093552325559e+00
+-2.0075622227676408e+01
+3.5355169484947844e+00
+-9.7557394761239422e+00
+-1.9450626092940468e+01
+4.1458189063866163e-01
+-8.9364465427850046e+00
+-2.1196589280177939e+01
+1.7566261780147114e+00
+-9.4056128174176727e+00
+-2.0033019455094337e+01
+1.9264088684697804e+00
+-9.4937987057819999e+00
+-1.9959752991417730e+01
+1.4391320951881457e+00
+-9.3643375596994467e+00
+-1.9803558891860224e+01
+1.5121930766977758e+00
+-9.4533374785872581e+00
+-2.0001844822846259e+01
+3.1366782842433949e+00
+-9.9322186291007206e+00
+-1.9229121895830090e+01
+2.7940721358740248e+00
+-9.8847651473971681e+00
+-1.9316865085231797e+01
+7.2612261674599310e-01
+-9.3096259497741940e+00
+-2.0194013524912720e+01
+2.7036767065550742e+00
+-9.9024129856781862e+00
+-1.9301156570758629e+01
+7.7638708785029864e-01
+-9.3643170129613118e+00
+-2.0158180498284082e+01
+-3.5594477513757856e+00
+-8.1439778082117602e+00
+-2.1913502487412785e+01
+-1.1035609308394023e+00
+-8.8007704970859866e+00
+-2.0598487263868119e+01
+2.8466739455431611e+00
+-1.0034969789232136e+01
+-1.9119583476267589e+01
+1.4647186356527824e+00
+-9.6433439937110048e+00
+-1.9728078998244243e+01
+-5.4111844281097055e+00
+-7.5051734474880716e+00
+-2.2349979981512778e+01
+-3.9774073268855594e+00
+-8.0629958504081998e+00
+-2.1558628255308584e+01
+-3.7976012673574453e+00
+-8.1601857012154344e+00
+-2.1443933312476378e+01
+-3.6806900398097167e+00
+-8.2610440554492719e+00
+-2.1283697746554854e+01
+1.9976594081980337e+00
+-9.9950503498356991e+00
+-1.9267996088811106e+01
+4.9601033008207213e-01
+-9.6294664005427251e+00
+-1.9823908760384334e+01
+-1.6862144144645392e+00
+-8.9987715155566299e+00
+-2.0751880068865162e+01
+2.9025324611439927e+00
+-1.0373538538849351e+01
+-1.8683888349280380e+01
+-1.5167849175232622e+00
+-9.6276778946421118e+00
+-1.9973726779357687e+01
+-9.2827612440429708e-01
+-9.7995616539887020e+00
+-1.9690964271159245e+01
+-2.7196424081353303e+00
+-9.3461824676072016e+00
+-2.0366931644228259e+01
+-4.7776406960289162e+00
+-9.2726259348062658e+00
+-2.0737053069025077e+01
+1.1030705683101432e+00
+2.4132179459218413e+01
+-3.9974785695759422e+01
+1.1030132295592868e+01
+2.1036775234281041e+01
+-3.7407181934147083e+01
+1.6951608800798276e+01
+2.8348605938979542e+01
+-5.1167853765392692e+01
+-6.5219679369051620e-01
+2.4744841705034780e+01
+-4.1278857156213824e+01
+1.2771558221022458e+01
+1.6301695353024339e+01
+-3.0648025075033090e+01
+6.0517129965426264e+00
+2.6534319373930497e+01
+-4.6577393562158704e+01
+1.5197524851366879e+01
+1.6332645325131292e+01
+-3.1547472142352806e+01
+1.8504864654143518e+01
+2.8049034690393839e+01
+-5.3139505611777231e+01
+3.2233396414034068e+01
+3.4668881372752722e+01
+-6.7569715210945432e+01
+3.2233396414034068e+01
+3.4668881372752722e+01
+-6.7569715210945432e+01
+1.2088250224530228e+01
+2.6508664273136652e+01
+-4.9181976019504560e+01
+1.4276485524670289e+01
+1.5125819525150286e+01
+-2.9903482625649509e+01
+3.1546317817866971e+01
+3.4042879100605333e+01
+-6.7151213802696816e+01
+1.0973208643775319e+01
+2.6601963587479396e+01
+-5.1291947565385563e+01
+-1.1676148268767763e+00
+2.1996203754763886e+01
+-4.0396531378494601e+01
+9.1202445742284355e-01
+2.2504613404581757e+01
+-4.2072522084697589e+01
+-5.9732925013089677e-01
+2.3021141184802925e+01
+-4.2880715106084835e+01
+2.6754361898158049e+01
+3.0541750315181691e+01
+-6.4627543285405011e+01
+1.2742991378301211e+01
+1.1167878381406934e+01
+-2.4911375040229892e+01
+1.2563831515280441e+01
+2.4673940915424271e+01
+-4.9972751487516405e+01
+1.2563831515280441e+01
+2.4673940915424271e+01
+-4.9972751487516405e+01
+1.5466411336148152e+01
+2.5033230181260997e+01
+-5.1515448296369364e+01
+2.3824693579863073e+01
+2.8442386802877078e+01
+-6.0562221598647355e+01
+1.6041233183092665e+01
+2.5553416511319348e+01
+-5.2978815669174907e+01
+1.6732499014041323e+01
+2.6242525553330655e+01
+-5.4594207028169109e+01
+1.4213881118164423e+01
+1.0860413570787765e+01
+-2.5119957611912756e+01
+1.4656113068439987e+01
+1.0174052384804272e+01
+-2.4061806643597528e+01
+1.4814022107667030e+01
+9.9770283827237627e+00
+-2.4046143399108210e+01
+1.4561523452763758e+01
+1.3055371021752528e+01
+-3.0118764165502842e+01
+9.9069274053041152e+00
+2.4158522897999745e+01
+-4.9968719991436508e+01
+1.4335697409294621e+01
+1.4926924698861860e+01
+-3.3553404570976802e+01
+1.3113496963808746e+01
+1.0115846305257012e+01
+-2.4429499253927698e+01
+-1.4610046402562191e+00
+2.2022533224381192e+01
+-4.3177912945314212e+01
+1.1343106782884580e+00
+2.1126633845145740e+01
+-4.2540292234139528e+01
+1.6032072790125781e+01
+2.5245313703529529e+01
+-5.5254514486073802e+01
+2.1503027841950080e+00
+2.1785166686832177e+01
+-4.4817488557321788e+01
+1.3188051647609324e+01
+1.1058771469773310e+01
+-2.6950813775866493e+01
+1.5978288457602780e+01
+2.3825036912201867e+01
+-5.3169054793806964e+01
+1.4143134768428320e+00
+1.9865062835845745e+01
+-4.0958287247954914e+01
+1.3357013404370871e+01
+1.2514604399962813e+01
+-3.0440430745532797e+01
+1.4271807173727993e+01
+1.2643162560920288e+01
+-3.1081446960299424e+01
+1.4271807173727993e+01
+1.2643162560920288e+01
+-3.1081446960299424e+01
+9.6272938100219001e+00
+2.3458267680904555e+01
+-5.1065273919081172e+01
+8.0598280139281062e+00
+2.3740066413853746e+01
+-5.1529412101850866e+01
+8.0598280139281062e+00
+2.3740066413853746e+01
+-5.1529412101850866e+01
+1.8154275863848980e+01
+2.7126481540879510e+01
+-6.2228771560709959e+01
+1.8042325865989383e+01
+2.5227576261271700e+01
+-5.8499920274894485e+01
+1.3782509546503615e+01
+2.4153575246593970e+01
+-5.4440323748273777e+01
+1.3993704818921708e+01
+9.9833669055254379e+00
+-2.6006505754640230e+01
+1.6434234735327966e+01
+2.4161334054931110e+01
+-5.6128443812174240e+01
+1.6785790511605580e+01
+2.4652712951506523e+01
+-5.6769586559214105e+01
+1.2976735865414799e+01
+2.2844676710501965e+01
+-5.2579905211655465e+01
+1.0860433611326336e+01
+2.3576200001144411e+01
+-5.2880612067532340e+01
+2.6616902506066631e+00
+2.1561267828496661e+01
+-4.6315094138881449e+01
+2.4896188384657858e+00
+2.1275411508534294e+01
+-4.5613941928792606e+01
+-2.1363503978897769e+00
+2.0995426961741302e+01
+-4.3579126484139003e+01
+1.5313375866112807e+01
+2.4655717558479676e+01
+-5.7618891918980985e+01
+1.3201542621607837e+01
+9.0267088856841244e+00
+-2.4988041647658967e+01
+4.4307953023009015e+00
+2.1200854037021625e+01
+-4.7550990729836457e+01
+9.3789521342262585e+00
+2.3376098004891919e+01
+-5.3558671657548899e+01
+3.1812630003933984e-01
+2.0445889033149911e+01
+-4.4455891622822534e+01
+1.4220376880321357e+01
+2.2658285456993443e+01
+-5.4719823934182266e+01
+1.3080436941098652e+01
+9.0789884463424624e+00
+-2.5333601477919895e+01
+3.3813412884589717e+00
+2.1060629563982335e+01
+-4.7367377985769402e+01
+6.2498776875726634e+00
+2.1048237525277006e+01
+-5.0092467362057555e+01
+5.3973317682158504e+00
+2.1043249791406993e+01
+-4.9508914916436026e+01
+8.4913104409879452e+00
+2.3257075795753561e+01
+-5.5899176364391671e+01
+1.3264411607054637e+01
+8.1801023457385682e+00
+-2.5429272544906748e+01
+9.4556173919663138e+00
+2.2742695460458375e+01
+-5.6574242525722120e+01
+8.6494470129306631e+00
+2.1176039981448206e+01
+-5.3031414280999414e+01
+1.2979818582879988e+01
+1.1977485717700842e+01
+-3.4804101099604495e+01
+7.8620489598936527e-01
+1.9550894786882512e+01
+-4.6439281842359648e+01
+7.6915352079394568e+00
+1.8690148501778712e+01
+-4.7445731056992265e+01
+7.5391775266441634e+00
+2.1841107846471637e+01
+-5.5384142384535465e+01
+8.7839522587961731e+00
+2.0544202568817063e+01
+-5.3852938859032903e+01
+9.2763379317379790e+00
+2.0591726049893598e+01
+-5.4239478042664516e+01
+3.2003138248718139e+00
+1.9563830251485651e+01
+-4.9447057333727599e+01
+3.6770381895083259e+00
+2.0925632291452501e+01
+-5.3160862129318112e+01
+1.2967414957995482e+01
+7.8870015715199520e+00
+-2.6730601588302260e+01
+1.4666620453067955e+01
+9.9275672397784902e+00
+-3.2467151039601113e+01
+8.8602762223723914e+00
+2.0305310253922727e+01
+-5.4554176783495073e+01
+-9.7310885895936117e-01
+1.9904012107836131e+01
+-4.9496543931862476e+01
+1.1726198152420476e+01
+7.6858254450668131e+00
+-2.6316026017399693e+01
+1.2074773064546322e+01
+7.5566181936997312e+00
+-2.6104796276387223e+01
+1.3091479569872364e+01
+7.6761271643492845e+00
+-2.6989765390861461e+01
+1.3951899483474566e+01
+6.4588353188191068e+00
+-2.4800908483258372e+01
+1.2191771343979298e+01
+7.4074426979981585e+00
+-2.6534695162152719e+01
+1.3269890282839794e+01
+6.8578644902303463e+00
+-2.6733229769574372e+01
+1.1491830462107979e+01
+6.9548120143471346e+00
+-2.6695247654989643e+01
+-5.5460593763120958e-01
+1.8974193988121453e+01
+-5.1139043360210003e+01
+-9.6908799301921078e-01
+1.8821662568368065e+01
+-5.0826207517476341e+01
+1.4381245912879489e+01
+9.0181047717131602e+00
+-3.4097961124175256e+01
+1.4012796660702424e+01
+8.6621010127420348e+00
+-3.3219203894596120e+01
+-1.9645045148077873e+00
+1.8410152676510982e+01
+-5.0293019136911070e+01
+1.2969719887731776e+01
+9.8238049459312471e+00
+-3.6279749159202161e+01
+-5.4568281762469373e-01
+1.7049285084829847e+01
+-4.8044565064035289e+01
+-5.4568281762469373e-01
+1.7049285084829847e+01
+-4.8044565064035289e+01
+1.3218153997765343e+01
+6.2658402134867135e+00
+-2.7398086788849536e+01
+1.2274212575988155e+01
+6.7720749383426249e+00
+-2.8788912633179297e+01
+1.2493966183878833e+01
+1.0310378965269674e+01
+-3.8769286986848378e+01
+1.2899076653625327e+01
+5.8378554762712698e+00
+-2.7278967326417987e+01
+1.2640552593056551e+01
+5.7301262394953705e+00
+-2.6848109336428131e+01
+1.2195493547865301e+01
+6.2200706772247747e+00
+-2.8295481044404927e+01
+1.3567629187497765e+01
+9.7414257752946529e+00
+-3.9722010238483151e+01
+1.4331600190474942e+01
+7.8140867878255262e+00
+-3.5953512534628885e+01
+1.3170410852267301e+01
+4.7206103019759418e+00
+-2.6695207438526428e+01
+-1.4094710381191888e+00
+1.5870717867190551e+01
+-5.0140190408775219e+01
+1.3648763238600734e+01
+4.6337929891402174e+00
+-2.6944107175429615e+01
+1.3336171125091973e+01
+9.5162268909273067e+00
+-4.1633398067800009e+01
+1.3791932791689542e+01
+9.9559454334389592e+00
+-4.3437891027063898e+01
+1.2387101921275667e+01
+5.4044239049053244e+00
+-2.9374242946725420e+01
+1.3481501307327301e+01
+4.7378946727726339e+00
+-2.7897254229587936e+01
+1.2017619098414162e+01
+5.4038293269330806e+00
+-2.8888958366190945e+01
+1.3256723243465355e+01
+3.7764440081089932e+00
+-2.5671329587649286e+01
+1.3059102509422695e+01
+4.9952160640312213e+00
+-2.9545639245794042e+01
+1.6362491233689222e-01
+1.4936285056823191e+01
+-5.1925824557167040e+01
+-3.8225924487538916e+00
+1.4397486665370620e+01
+-4.7909535531108375e+01
+4.4242192336487101e+00
+1.3613553336146083e+01
+-5.1521349918839924e+01
+6.1500844060304587e+00
+1.1834003385189545e+01
+-4.7799024283070153e+01
+9.4600712729663661e-01
+1.4203281902337372e+01
+-5.1717887043188000e+01
+3.1224620883577550e+00
+1.2681445925692156e+01
+-4.9305393408069747e+01
+5.2133023420976556e+00
+1.0697980411705142e+01
+-4.6045302879204989e+01
+1.3384735528926504e+01
+3.0807202176526109e+00
+-2.7374076511151166e+01
+2.9868963863839073e+00
+1.0528549522595144e+01
+-4.4577550794727216e+01
+5.7576400089471287e+00
+1.0463067542873450e+01
+-4.6978694104651566e+01
+1.4262920514293210e+01
+2.6446853023596701e+00
+-2.6796069610587406e+01
+5.3812688854228172e+00
+1.0329893853225173e+01
+-4.6518755486646448e+01
+4.0099949783425917e+00
+9.6301610388059817e+00
+-4.2672940812307843e+01
+1.3074456933968035e+01
+3.1963950385322590e+00
+-2.8371597520843270e+01
+2.3997892233729643e+00
+1.1388360566848663e+01
+-4.8593996300889707e+01
+1.3698587183351666e+01
+2.3972547990806699e+00
+-2.7321545171169824e+01
+1.2399231289853393e+01
+3.8353923722325214e+00
+-3.1344517726177688e+01
+2.2099122446808321e+00
+1.0526644819722181e+01
+-4.6757301755378712e+01
+1.2469858794244232e+01
+4.0441307928364125e+00
+-3.2186274090421009e+01
+1.3684497619950143e+01
+2.6902692507961148e+00
+-2.8576828103294883e+01
+3.3981337458611018e+00
+3.3890260129232357e+00
+-2.2938283869428965e+01
+3.4477197658738108e+00
+3.3617211650239689e+00
+-2.2888662891360845e+01
+1.2298029593870064e+01
+2.7507513954571450e+00
+-2.8990530866789026e+01
+3.5341759021156074e+00
+2.7792515107580367e+00
+-2.1924538014277996e+01
+1.3819993751059338e+00
+8.9487362251493874e+00
+-4.4452305335664825e+01
+1.2281216780567526e+01
+2.4432680403726037e+00
+-2.9560395925033355e+01
+1.4398246224516955e+01
+1.1618092790310137e+00
+-2.7112860846732794e+01
+1.4289613574998844e+01
+1.2820114024300788e+00
+-2.7479448322300030e+01
+4.1371565183605110e+00
+2.4325746262811956e+00
+-2.2438139495099026e+01
+1.2337305989182912e+01
+2.2325696142754921e+00
+-3.0885491855702064e+01
+-1.1251552525638899e+00
+8.9354180815475228e+00
+-4.4491286867127300e+01
+-7.3893872521757242e-01
+3.2903183333811947e+00
+-2.1027060215849648e+01
+1.3790160824036020e+01
+9.9058589671367425e-01
+-2.9176110004868729e+01
+2.5401309949578801e+00
+2.0731273262676706e+00
+-2.1097956901779835e+01
+1.2195795789955790e+01
+2.1021954812763330e+00
+-3.2233941002861179e+01
+2.6464814732216553e+00
+1.8508405887777202e+00
+-2.0806786427650618e+01
+1.4288301177649570e+01
+7.7833572578885446e-01
+-2.9244073210651276e+01
+7.2082531040257178e+00
+1.6668945370782289e+00
+-2.5532732062921646e+01
+1.2390718362107465e+01
+5.5115065959919118e-01
+-2.7091141193200507e+01
+4.0097746759590489e+00
+1.3362636020815968e+00
+-2.1147325186986443e+01
+1.2325691101787257e+01
+1.5093983657481813e-01
+-2.6112415201276274e+01
+-8.1252812441879807e-01
+2.8059492599071496e+00
+-2.2861353208551169e+01
+-8.7664513720086057e-01
+6.8579135546358572e+00
+-4.1697000686400564e+01
+1.4114763037775703e+01
+-1.4748235082146857e-02
+-2.8281771829409884e+01
+2.9224682188718134e+00
+1.4058185626894428e+00
+-2.0930763006797061e+01
+1.4265198741192268e+01
+-1.5557901384996831e-01
+-2.8215762256608475e+01
+-5.9519217308407335e-01
+2.2577283561926293e+00
+-2.1911901007784451e+01
+3.0018067178071899e+00
+9.9689990850594312e-01
+-2.0567232453364856e+01
+1.5702615445888279e+00
+1.3247830991929859e+00
+-2.0444412158749252e+01
+1.4518399623966223e+01
+-7.1061771921986150e-01
+-2.8630232022677593e+01
+1.6141988073804188e+00
+1.0982306511318602e+00
+-2.0405782718530816e+01
+1.4488855455575409e+01
+-9.7756074371668056e-01
+-2.8342576773646840e+01
+9.4610326974183090e-01
+1.1913533642253853e+00
+-2.0633451164369266e+01
+-2.1005217901575142e+00
+2.8150833267159512e+00
+-2.5940994345652349e+01
+1.9679559774864197e+00
+7.2295624968096361e-01
+-2.0369243019947341e+01
+-2.8113377394927999e+00
+5.2231429230748567e+00
+-3.9370102124671476e+01
+-4.3788617220433884e-01
+1.4772803334429743e+00
+-2.1501997982444742e+01
+6.9278848518950067e+00
+-3.2269124492426315e-01
+-2.3695352880977403e+01
+3.9273599060673279e+00
+3.8758898033766150e-02
+-2.1056854367479644e+01
+-3.0969298737288606e+00
+2.6336811965881726e+00
+-2.6516548932746613e+01
+4.0044749235642669e+00
+-1.8911808364037391e-01
+-2.1104376233897980e+01
+6.4852284140655918e+00
+-6.6536144284860266e-01
+-2.2516425797686964e+01
+4.1906201978439900e-01
+6.8049418502093684e-01
+-2.0590923902399364e+01
+-1.2673967879205055e+00
+1.3570919277449200e+00
+-2.2293515205139229e+01
+2.5208892964937146e-01
+6.3448473136605799e-01
+-2.0731618776017768e+01
+2.7604114670980778e-01
+5.8797302890769199e-01
+-2.0641305082450419e+01
+4.3076192664179302e+00
+-5.1962704215417810e-01
+-2.1456941402598915e+01
+-3.3553558446527894e+00
+3.9288539940967535e+00
+-3.7552839344895283e+01
+-3.3553558446527894e+00
+3.9288539940967535e+00
+-3.7552839344895283e+01
+-3.0563439626261975e+00
+2.0988947784929755e+00
+-2.6361990690426293e+01
+-2.9916220399798483e+00
+1.9732717397599833e+00
+-2.6046685749615040e+01
+-2.7728907618797285e+00
+3.5107822489213953e+00
+-3.7701417131432770e+01
+2.9019324202106369e+00
+-6.1780771511721166e-01
+-1.9557499704748174e+01
+5.7410719974537425e+00
+-1.2681526579565168e+00
+-2.1235604125567338e+01
+-1.5041236256548205e+00
+8.8694704422111192e-01
+-2.2308278113253930e+01
+3.4738847741572343e+00
+-7.1330754835946419e-01
+-2.0758536924974560e+01
+-2.4734807187818904e+00
+1.3783660159268691e+00
+-2.4091831660203322e+01
+4.5591517909308649e-01
+5.9535309655548964e-02
+-2.0514376088252813e+01
+1.1086412129265735e+00
+-4.0744870331149108e-01
+-1.7719532889333248e+01
+-1.7910748856743444e+00
+1.0228963063228940e+00
+-2.3105935269762917e+01
+-1.8161697745846637e+00
+8.9342126680809753e-01
+-2.2903975725172131e+01
+4.4655253429887498e+00
+-1.1753936238768350e+00
+-2.0658497084744297e+01
+1.5083860995359661e+00
+-5.7417314646845186e-01
+-2.0321601788891467e+01
+-8.9280135748697920e-01
+2.2288248535012828e-01
+-2.1592289899761582e+01
+-1.2311460883032892e+00
+3.2650540296582548e-01
+-2.1958555007826607e+01
+2.2074106510573105e-01
+-2.7704551130814875e-01
+-2.0848273476335649e+01
+-3.3807864845496677e-01
+-2.3057912734333413e-01
+-2.1251891016411161e+01
+-2.3091104957189561e+00
+5.3717736668229321e-01
+-2.3102029374158427e+01
+1.5640822032812918e+00
+-8.6682245382369683e-01
+-2.0516429947018416e+01
+-7.4732454491342110e-02
+-3.8194133991091384e-01
+-2.0959138156779716e+01
+-1.1450003866280412e+00
+1.3769840544880124e-02
+-2.1825946089924322e+01
+-2.3722756912805512e+00
+3.6467311021932930e-01
+-2.2880642494869210e+01
+-2.1037624235401915e+00
+2.9362613442469354e-01
+-2.2817075883639532e+01
+-1.1729017210507067e+00
+-8.5660227852976875e-02
+-2.1901394989414730e+01
+-2.9414274410751911e+00
+6.5137815789924691e-01
+-2.3629099778317435e+01
+-6.9826742697376554e-01
+-3.3693763967327411e-01
+-2.1295770143497549e+01
+4.3229831221639881e+00
+-2.2837961753665108e+00
+-2.0162474617895526e+01
+-1.3730174284089636e+00
+-6.6699893783189268e-01
+-2.1520364714330398e+01
+-3.2759939171506223e+00
+-1.2380380741276405e-02
+-2.3411695057472198e+01
+1.2728296336369243e+00
+-1.7164523010992163e+00
+-2.0231678064359528e+01
+1.1282651302413165e+00
+-1.6980784541483203e+00
+-2.0255282215127213e+01
+-3.9139818462637215e+00
+-9.0324745786720492e-02
+-2.3489363855213629e+01
+1.6532172978873441e-01
+-1.5413025399287883e+00
+-2.0329032370837709e+01
+-3.0931520323082120e+00
+-3.9114526031079122e-01
+-2.3065238195889744e+01
+6.1709577152694817e-01
+-1.8750057377854070e+00
+-2.0362380360619248e+01
+-3.6211638012754404e+00
+-5.8762329754873965e-01
+-2.3095399072401154e+01
+1.6589507280946576e+00
+-2.7002486999260285e+00
+-2.0008228592745642e+01
+-3.3883829455323493e+00
+-1.0268531507889815e+00
+-2.3276842064612307e+01
+-2.9761853800301141e+00
+-1.3275129609779019e+00
+-2.1665897368868343e+01
+5.5501981121232502e-01
+-2.6828514585999121e+00
+-2.0026390864320199e+01
+3.9597237956984610e-01
+-2.6272092455080132e+00
+-1.9530289216355676e+01
+1.4646325234286091e+00
+-3.0225849764967379e+00
+-1.9724552848429742e+01
+2.3643952434444784e+00
+-3.4769873292666484e+00
+-2.0262821078832722e+01
+2.5649746010409706e+00
+-3.6601021719052413e+00
+-2.0163049690215058e+01
+-1.4801834817388051e+00
+-2.3728650530701620e+00
+-2.1043663144872752e+01
+-1.6891333314863710e+00
+-2.6813691482285309e+00
+-2.1694908529025533e+01
+-4.6294279780666338e-02
+-3.2851453911587964e+00
+-2.0655478848755003e+01
+-1.3425357351627534e+00
+-3.0046306325280754e+00
+-1.9409547477282128e+01
+7.1528900811744556e-01
+-3.8685176309399565e+00
+-2.0120976999140087e+01
+2.6512417462429863e+00
+-4.5698876418270702e+00
+-2.0883131202153123e+01
+2.2735950350308376e+00
+-4.4499065752200879e+00
+-2.1354591222261348e+01
+-9.7230073435916853e-01
+-3.5901605323895107e+00
+-2.1496757504516168e+01
+1.9987938699006864e+00
+-4.5233924250893018e+00
+-2.0965632961817196e+01
+2.1367995717656756e+00
+-4.5817385301616058e+00
+-2.1346589788954763e+01
+-2.4542284242267600e+00
+-3.2378766941296973e+00
+-2.1323962263987863e+01
+-8.3000735388699756e+00
+-1.7494535963348949e+00
+-3.0565780781456411e+01
+-2.2662426164574883e+00
+-3.6366823416343537e+00
+-2.3027225080551311e+01
+-2.0121998341114578e-01
+-4.2857792411404150e+00
+-2.1878698532898824e+01
+-2.6544458445660832e+00
+-3.8492958254155498e+00
+-2.4122168392461415e+01
+-1.5797723505124592e+00
+-4.2958887151718663e+00
+-2.3216418355921686e+01
+1.2001362141550969e+00
+-5.3635675249824919e+00
+-2.2103254339070116e+01
+-2.9204231136819216e+00
+-3.9100241526232908e+00
+-2.2734600842309671e+01
+-7.3815007530067567e-01
+-4.8648351278471473e+00
+-2.2749175846130431e+01
+-7.3131024012815109e+00
+-3.7028336252639242e+00
+-2.8041774352131085e+01
+-7.6827480846086846e+00
+-3.7206947040390763e+00
+-2.7857848423906898e+01
+-7.7802609589025788e+00
+-3.8123721127975339e+00
+-2.8051914764140491e+01
+6.0902241159963533e-01
+-6.8948485184699138e+00
+-2.2626030677017884e+01
+2.0448210220373109e-01
+-7.1228306204065275e+00
+-2.2467511923757332e+01
+-6.7618460504132551e+00
+-5.1358059174605657e+00
+-2.6184832810774164e+01
+-6.5070243243739769e+00
+-5.1334686907798366e+00
+-2.5503705810087521e+01
+-7.6875671571109097e+00
+-5.1348857154724179e+00
+-2.6276219953218110e+01
+2.9735664206323862e+00
+-8.5923333180285208e+00
+-2.1072469034790945e+01
+-5.6816945116783302e+00
+-5.9913822184006209e+00
+-2.4443778586574116e+01
+4.9467778114506356e+00
+-9.3091530061203844e+00
+-1.9886175528980299e+01
+-4.8190047276147032e+00
+-6.5098738139852301e+00
+-2.3712146242955562e+01
+-4.7698378449979266e+00
+-6.6613832380236797e+00
+-2.3962852259694738e+01
+-6.5342216355375742e+00
+-6.1212027071149091e+00
+-2.4133211453487977e+01
+-6.7001245697701792e+00
+-6.1983910249578686e+00
+-2.4170083174407811e+01
+2.7897648034231253e+00
+-9.5184017653605082e+00
+-1.9753534243153169e+01
+-3.5561110422052042e+00
+-7.5784075385933605e+00
+-2.2192475125159397e+01
+-2.7826334761111995e+00
+-8.2228270112856965e+00
+-2.1284886658753262e+01
+-2.7826334761111995e+00
+-8.2228270112856965e+00
+-2.1284886658753262e+01
+3.7764545033307724e+00
+-1.0229347086145090e+01
+-1.8821011373034587e+01
+3.2190359493026102e+00
+-1.0160533255316494e+01
+-1.8931420595733456e+01
+2.4598632448748132e+00
+-1.0003989852159897e+01
+-1.9215179859907401e+01
+-5.2172906948808171e+00
+-7.7829226575696753e+00
+-2.2522638915042162e+01
+2.8240476458483266e-01
+-9.5310553522319719e+00
+-1.9834410744319889e+01
+-5.0396923378285301e+00
+-8.0064574093371252e+00
+-2.2220553205832566e+01
+-4.4865789562472616e+00
+-8.4681817320634831e+00
+-2.1712656655956820e+01
+-5.6927939116184838e+00
+-8.2636032799873078e+00
+-2.1988690546759138e+01
+-2.0186314415038429e+00
+-9.4649763670213503e+00
+-2.0188211593242208e+01
+-5.1395268498040680e+00
+-8.6405188363923244e+00
+-2.1512329996010973e+01
+-2.7973248362375416e+00
+-9.4667538136587090e+00
+-2.0283959785857455e+01
+-2.8541114393464531e+00
+-9.3263676429237385e+00
+-1.9972236503853427e+01
+-3.0033801234227884e+00
+-9.3110384721080148e+00
+-1.9960662447210041e+01
+-2.9471431707611924e+00
+-9.4548110462868209e+00
+-2.0284598156005558e+01
+-4.6367502342991163e+00
+-9.1297262728018911e+00
+-2.0870844875259301e+01
+1.0451777663709345e+01
+2.7191747343388936e+01
+-4.7418745936799638e+01
+1.4896395058505458e+01
+2.9918254521010898e+01
+-5.2665380466978092e+01
+1.2666801900590446e+01
+1.6661461907058122e+01
+-3.1092345687001849e+01
+1.5395983152145080e+01
+2.9481812440727364e+01
+-5.3491107082141077e+01
+1.5395983152145080e+01
+2.9481812440727364e+01
+-5.3491107082141077e+01
+1.8749598794857409e+01
+2.8238050942655928e+01
+-5.2831290880627847e+01
+1.8678215958220459e+01
+2.8067889214097129e+01
+-5.3131488171768964e+01
+3.1867842780265160e+01
+3.4451968919370337e+01
+-6.7431035350043700e+01
+1.3269496640772665e+01
+2.8013625058453798e+01
+-5.2672160036769625e+01
+1.4976558043868431e+01
+1.6117823847067196e+01
+-3.2490272367430279e+01
+1.8611839465298480e+01
+2.9385170638882823e+01
+-5.7062373176657388e+01
+1.8985053642953361e+01
+2.9453989675752752e+01
+-5.7536234040845578e+01
+1.6235312807970704e+01
+2.6359323107888592e+01
+-5.2107632282733739e+01
+2.1351862297660976e+01
+2.7000303026323021e+01
+-5.5702045710054904e+01
+1.3681457918183625e+01
+1.1580054004448721e+01
+-2.5705935627578675e+01
+5.8126262081675169e+00
+2.3974727467142305e+01
+-4.6654421886140341e+01
+2.4141252769911926e+01
+2.9717811103333528e+01
+-6.3012441878156089e+01
+1.9402604088371078e+01
+2.8134406025000786e+01
+-5.8824211167351443e+01
+1.2494296799480100e+01
+1.1239408270607175e+01
+-2.5422112398528075e+01
+1.3960415524219332e+01
+2.5541621155443899e+01
+-5.2939534313486789e+01
+1.4464893779963738e+01
+1.5216374303524942e+01
+-3.3811841157724508e+01
+1.3636746043683955e+01
+9.6470018750694138e+00
+-2.3221173423552994e+01
+1.3636746043683955e+01
+9.6470018750694138e+00
+-2.3221173423552994e+01
+1.4617724911635953e+01
+2.5178452547943174e+01
+-5.3765298061279339e+01
+1.9021186081566160e+01
+2.5993903690295365e+01
+-5.7721740178009981e+01
+1.3629167148524580e+01
+9.1557970450626183e+00
+-2.3431268065272018e+01
+1.0489849025383240e+01
+2.3339439117726709e+01
+-5.0506039569152350e+01
+1.1726291074158212e+01
+1.3456837429272824e+01
+-3.2958430967333051e+01
+7.7471699950504700e+00
+2.4499494685290006e+01
+-5.4309893284068849e+01
+6.0129976941756438e-02
+2.2625937136183779e+01
+-4.8677038799330646e+01
+1.0508702391353612e+01
+2.3962024741624088e+01
+-5.7274114157932260e+01
+9.4294970799378532e+00
+2.2281257514322114e+01
+-5.3337139931093589e+01
+1.3495389746178729e+01
+8.3021830071301466e+00
+-2.4640367733110082e+01
+1.2514722439550722e+01
+1.2066706995383043e+01
+-3.3698619670657266e+01
+8.9983302626029826e-01
+1.9969890440939977e+01
+-4.5976502095020948e+01
+1.1807544252156994e+01
+2.3376756925174078e+01
+-5.8979701813089406e+01
+1.1730754927097635e+01
+2.3136570818729833e+01
+-5.9183082729712233e+01
+2.5982363297161815e+00
+1.9793644460751054e+01
+-4.7946572111036126e+01
+1.2762623110464999e+01
+7.1566879542596800e+00
+-2.4331267109178143e+01
+8.2842522350203662e+00
+2.0395735033588064e+01
+-5.2746908459144272e+01
+1.0129011984017469e+01
+2.2423781516048312e+01
+-5.8442754401766329e+01
+8.9429196260486528e+00
+2.0731344306030110e+01
+-5.4051529567199211e+01
+5.6734992756218361e+00
+2.0744668002775619e+01
+-5.2818831343015660e+01
+1.4638699787566011e+01
+1.0107804585839226e+01
+-3.2438223011075557e+01
+2.1459239104193104e+00
+2.0574729138946893e+01
+-5.2210203088809322e+01
+9.6516802017226304e+00
+2.0983738456945574e+01
+-5.7124603008984963e+01
+1.6448926278797245e+00
+2.0047264392133485e+01
+-5.1891619207834715e+01
+1.0881596722823485e+01
+2.0257359190024331e+01
+-5.6677288424867768e+01
+1.0881596722823485e+01
+2.0257359190024331e+01
+-5.6677288424867768e+01
+1.2324288119663629e+01
+1.9682074465462936e+01
+-5.7431853516225154e+01
+1.0847291677924247e+00
+1.9531849148688170e+01
+-5.1916888924323914e+01
+1.2008025348160125e+01
+7.2459390564323272e+00
+-2.6586109852242782e+01
+1.3210375708259056e+01
+5.7016720202993332e+00
+-2.5425192883537331e+01
+8.1288673362910426e+00
+1.0423628592377252e+01
+-3.7949854108186230e+01
+-1.4187410760720298e+00
+1.6057179902436463e+01
+-4.8802714755031175e+01
+1.2864076998529281e+01
+6.5233363358970138e+00
+-3.0594520879316523e+01
+1.3966440362223530e+01
+7.7512813479658966e+00
+-3.6736543405326465e+01
+8.9154037674595654e-01
+1.5803257940504023e+01
+-5.1827865021957230e+01
+1.8535228163322988e-02
+1.5240497828977812e+01
+-5.2102013236136187e+01
+1.3758622312667805e+01
+4.0706012196805421e+00
+-2.7926988861601053e+01
+1.4084712810217784e+01
+3.3732276032746036e+00
+-2.6461413751472136e+01
+5.2972876589685898e+00
+1.0997545832204860e+01
+-4.6634903494614484e+01
+3.2689990628335508e+00
+1.1052208686003581e+01
+-4.6651624813064636e+01
+2.9559336271250189e+00
+1.0508857909622508e+01
+-4.6215441304000130e+01
+1.2070141394951268e+01
+3.7313822160869474e+00
+-3.0490844516028925e+01
+1.2670348824534257e+01
+3.5290241198617962e+00
+-3.0447368427971465e+01
+1.3448115123464234e+01
+3.2285615946645172e+00
+-3.0190700742045532e+01
+1.2931559695129062e+01
+3.3009077132231939e+00
+-3.0068021664970310e+01
+1.3047639600081741e+01
+3.4095182356057778e+00
+-3.0431381641218376e+01
+1.4444132272811883e+01
+2.2334615644552027e+00
+-2.7583098112883430e+01
+2.6378556222234608e+00
+8.4546907704514425e+00
+-4.3533828644113058e+01
+3.3558560045844605e+00
+2.8869847246974869e+00
+-2.2578444274922955e+01
+1.2069734382269329e+01
+3.0148563254190477e+00
+-3.2017079001443335e+01
+1.4406151161929881e+01
+1.2483683505580148e+00
+-2.7375469285820181e+01
+3.4591798972417740e+00
+2.4635946539347326e+00
+-2.1607407053210938e+01
+1.2256122149159596e+01
+2.3172737561199943e+00
+-3.1436919176911179e+01
+1.3455759070569043e+01
+2.6927618997322860e+00
+-3.4473960212718289e+01
+7.2025205581403560e+00
+1.6576241072108377e+00
+-2.5537640637218690e+01
+1.3061403863276766e+01
+3.1303202152331788e-01
+-2.6149190095942352e+01
+1.2618558235046542e+01
+1.7559750146357738e+00
+-3.3205499616025321e+01
+2.2918999523290378e+00
+1.6911448250800363e+00
+-2.0721059617763476e+01
+4.1205616325514303e+00
+1.2104535676284760e+00
+-2.1229127193538325e+01
+1.2870952747993423e+01
+4.9000465532463922e-01
+-2.9993443930739769e+01
+1.3419966957579577e+01
+5.5288900045326694e-01
+-3.0971146040057828e+01
+1.4359263791899293e+01
+-1.6004034434172185e-01
+-2.8616699943347800e+01
+-1.1534352706052089e+00
+2.6999836592405995e+00
+-2.2676600198713192e+01
+1.4381776713387797e+01
+-3.1445690997926168e-01
+-2.9253600975355834e+01
+2.7685657040410767e+00
+9.9644365894082543e-01
+-2.0693260856217041e+01
+4.0414335816394980e+00
+6.9885394216286578e-01
+-2.1040304698650992e+01
+1.3992738153783542e+01
+4.7107476119346975e-01
+-3.3393484615779514e+01
+3.8109283171407125e+00
+7.0199287083885165e-01
+-2.0787691827502204e+01
+1.8253444389629954e+00
+8.4995660487069646e-01
+-2.0363602652387176e+01
+7.2792821548634923e-02
+1.3429862024445702e+00
+-2.1003299214168511e+01
+-2.3386838897227573e+00
+2.7448859363356002e+00
+-2.6005466028310781e+01
+-3.3455307536775711e+00
+3.2990988204120866e+00
+-2.7874578265527468e+01
+-2.5205348569253103e+00
+2.8744134728261881e+00
+-2.7365873972145629e+01
+-3.7301889438736344e+00
+5.1078030909507035e+00
+-3.9117523383698888e+01
+-1.8795855766322003e+00
+1.8834080692139219e+00
+-2.3612989899628982e+01
+2.2923073093818882e+00
+-2.4431788608319613e-02
+-2.0298684348376405e+01
+1.9679390961579304e-01
+4.6899981973571231e-01
+-2.0750184200227419e+01
+-2.2835405346787168e+00
+1.7057511893444577e+00
+-2.4631495297988142e+01
+4.2137845877805340e+00
+-6.0534792113505698e-01
+-2.1309299791752110e+01
+-3.2770976718967287e-01
+5.7987885104503489e-01
+-2.1016401410014119e+01
+-1.8576979448042636e+00
+1.1165958894986585e+00
+-2.3212567553057710e+01
+1.1607228537166179e+01
+-1.9374581906199002e+00
+-2.8942446173284935e+01
+1.4061239986115397e+00
+-3.5714793877593010e-01
+-2.0366761993412659e+01
+-3.3394649310338389e+00
+1.5652226570908037e+00
+-2.5660757147963690e+01
+-1.5928098309456413e+00
+4.3925420049437092e-01
+-2.2537309420984524e+01
+1.2675964647083044e+00
+-6.4370357632435937e-01
+-2.0393224822650041e+01
+1.0295950596001411e+01
+-2.5029065029929911e+00
+-2.7030095439732246e+01
+-5.3616239260969767e-01
+-6.6989690879488015e-02
+-2.1245805284201939e+01
+5.4677569377696624e+00
+-1.8317024124392784e+00
+-2.1111717683929459e+01
+-2.1932880848424916e+00
+4.9738015698828764e-01
+-2.2948202779445353e+01
+3.9562708355207996e+00
+-1.5686791742429951e+00
+-2.0503914658179198e+01
+-2.1161796934614130e+00
+3.5782892683792977e-01
+-2.2806298394519015e+01
+1.1867002183313118e+00
+-1.0435312059546535e+00
+-2.0507579936396841e+01
+-9.9505298381129959e-01
+-5.0173399477782032e-01
+-2.1613588942696481e+01
+-4.3942813081507526e-01
+-7.5100377322943179e-01
+-2.1357438784111398e+01
+-1.6047871892541317e+00
+-4.7095463807870058e-01
+-2.1805211908149033e+01
+4.8342718420642656e+00
+-2.5275271575247711e+00
+-2.0674753417578859e+01
+2.2611309460197121e-01
+-1.7155823877634140e+00
+-2.0383159238261591e+01
+1.6392645901895606e+00
+-2.1373051572135502e+00
+-2.0360617281270102e+01
+2.2398816577944567e+00
+-2.6218579646032798e+00
+-1.9886138649734324e+01
+-3.8571496459250154e+00
+-7.4178250674529789e-01
+-2.4202026872287082e+01
+-3.3353463775289236e+00
+-1.0348983478023837e+00
+-2.3078055026114498e+01
+-2.8378063525375792e+00
+-1.3549260183641645e+00
+-2.1880224534732793e+01
+2.1898162040029017e-02
+-2.4076072081839968e+00
+-2.0445690673682432e+01
+-5.8868902856052818e-01
+-2.3792841994031031e+00
+-2.0341863061393795e+01
+4.2880595482486648e+00
+-4.0527027499028723e+00
+-2.1566133167335515e+01
+-1.7379644945137416e+00
+-2.1882417685318871e+00
+-2.0998056110922857e+01
+-2.7040559641164510e+00
+-2.0795833342835408e+00
+-2.2426663661666566e+01
+4.2702935493863929e+00
+-4.5280306576985714e+00
+-2.1960545780557865e+01
+4.4151090206639303e+00
+-4.5461860481293135e+00
+-2.2292530530011842e+01
+-1.2216303708722156e+00
+-3.4123999907524336e+00
+-2.1373392421005061e+01
+7.0114325445922610e-01
+-4.0459592022493469e+00
+-2.0238594105997272e+01
+-1.7523994235801574e+00
+-3.3088169395147422e+00
+-2.2069430744792399e+01
+-2.5319764541428982e+00
+-3.1190154546875113e+00
+-2.3067935592498443e+01
+-3.2203185527236617e+00
+-2.9717038114234122e+00
+-2.4582910288312505e+01
+2.2852204693625691e+00
+-4.7905919263112695e+00
+-2.1594585316316156e+01
+2.2852204693625691e+00
+-4.7905919263112695e+00
+-2.1594585316316156e+01
+1.7073969738900119e+00
+-4.6227726527263444e+00
+-2.1282368092662789e+01
+1.4610936513904080e+00
+-4.6930983341633770e+00
+-2.0922660187738810e+01
+1.4610936513904080e+00
+-4.6930983341633770e+00
+-2.0922660187738810e+01
+3.1647149577749158e+00
+-5.2954638502266684e+00
+-2.1871691542858159e+01
+-2.0563079773813104e+00
+-3.7633431509378976e+00
+-2.2607356058404097e+01
+-4.4371106031594110e-01
+-4.5841790364242678e+00
+-2.2461745522313684e+01
+-7.7916832500906894e+00
+-2.6220645228474648e+00
+-2.9425050511333367e+01
+-7.7924379758685429e+00
+-2.5652410662766103e+00
+-2.8935862888203129e+01
+-7.2374456018183650e+00
+-4.1818522899128086e+00
+-2.6452033271785599e+01
+5.9574162261084573e-01
+-6.7252633238017214e+00
+-2.2574979037112854e+01
+9.0479905691974383e-01
+-6.9384702365685396e+00
+-2.2505396533854004e+01
+3.3462804656375842e+00
+-8.3455129559566466e+00
+-2.1334059201567257e+01
+-5.7313168479624048e+00
+-6.0381786937601349e+00
+-2.4367352835548289e+01
+-5.0611623227272400e+00
+-6.9398586774847031e+00
+-2.2959683496466145e+01
+2.0045523336216724e+00
+-9.0114185441567596e+00
+-2.0281688194461502e+01
+2.2136364545438871e+00
+-9.8055912773103646e+00
+-1.9484849889040920e+01
+-4.1414510339442021e+00
+-8.0786223309800889e+00
+-2.2041550095099055e+01
+-4.0523336373489434e+00
+-8.1579125874492338e+00
+-2.1931283061877497e+01
+-3.1636957131014927e+00
+-9.5305078068244669e+00
+-1.9442085332600445e+01
+-4.5642468907467491e+00
+-9.2883147809719073e+00
+-2.0637833497150499e+01
+1.5450514783625216e+01
+1.7701432366135545e+01
+-3.1832666086122913e+01
+2.7057509423364163e+01
+3.4186722534696827e+01
+-6.2159238950074723e+01
+9.1292366472975779e+00
+2.8032777703950387e+01
+-4.8313368445076811e+01
+9.1292366472975779e+00
+2.8032777703950387e+01
+-4.8313368445076811e+01
+1.7067354298882066e+01
+2.7342930328086286e+01
+-4.9407531670367206e+01
+1.2236187056025653e+01
+1.6919219079982092e+01
+-3.1140993824947909e+01
+1.4657318966555298e+01
+2.9488488686917449e+01
+-5.3003600615450594e+01
+2.3900377674372115e+00
+2.5238105425251796e+01
+-4.3781239849165154e+01
+1.2692095472664326e+01
+1.6264184520968254e+01
+-3.1308744778391898e+01
+1.4473317518908880e+01
+1.2752343013335617e+01
+-2.5785751564972863e+01
+7.0923236806342294e-01
+2.3939259674703212e+01
+-4.3126338445346228e+01
+1.0786735525599083e+01
+2.0294884300572413e+01
+-4.0249028211582974e+01
+1.4614075606802933e+01
+2.4818109795139801e+01
+-4.9702507309880879e+01
+1.0994023282075398e+00
+2.2898655800779096e+01
+-4.5005821482333140e+01
+6.0640924360529702e+00
+2.3916765350790484e+01
+-4.8689476689628258e+01
+1.9963656730207067e+01
+2.7497998975824011e+01
+-6.0212895902087617e+01
+1.3119793045378962e+01
+9.8752760966709481e+00
+-2.4606395745829044e+01
+1.2068814195060593e+01
+2.4768558743532864e+01
+-5.4788055317944441e+01
+1.6758845744969488e+01
+2.5830381934356190e+01
+-6.1092259126019961e+01
+1.5111236923381707e+01
+2.3804841889618974e+01
+-5.6436273776914781e+01
+8.8435090352168846e+00
+2.2111241696096748e+01
+-5.1022110013081303e+01
+1.3147106198974242e+01
+2.5149205624984262e+01
+-5.9141529569487560e+01
+1.5012229744753602e+01
+2.4823287433311297e+01
+-6.0005331562250113e+01
+1.3496751630278279e+01
+8.3029560294623739e+00
+-2.5333044726098226e+01
+3.2829736881337843e+00
+2.2218194089265712e+01
+-5.1652080876238372e+01
+2.4021378114744532e+00
+2.0271936668912080e+01
+-4.7009896285413383e+01
+4.8928881571114893e+00
+2.1352513987700686e+01
+-5.3602687055888332e+01
+1.2229265049897050e+01
+7.0311513700251522e+00
+-2.4654854526403511e+01
+1.2229265049897050e+01
+7.0311513700251522e+00
+-2.4654854526403511e+01
+-1.4549320509697574e+00
+1.9124988705016804e+01
+-4.6584607529189000e+01
+1.2409704822949795e+01
+8.5092558751291811e+00
+-2.8256822390416477e+01
+1.2963588910233002e+01
+9.8886882799843310e+00
+-3.2942198470889245e+01
+1.2783846637344929e+01
+1.1086704935438309e+01
+-3.6192544567266992e+01
+1.1543555660574283e+01
+1.3236181594509132e+01
+-4.0949453039852685e+01
+1.7852032096429994e+01
+1.7749793780811750e+01
+-5.6236728698179760e+01
+1.2425295880014181e+01
+6.8601000380243429e+00
+-2.6225353684880755e+01
+-6.4698584531313427e-02
+1.9133809886999781e+01
+-5.1424090993141199e+01
+-1.1672447215337887e+00
+1.8928870867053540e+01
+-5.0551897072897425e+01
+1.4027688332625699e+01
+8.9586726017533280e+00
+-3.3670175009121003e+01
+8.2199824896256661e+00
+7.9219177051725884e+00
+-2.9471688753180484e+01
+1.2044353959891447e+01
+8.7382366848531792e+00
+-3.5574497875671497e+01
+1.3536078878059650e+01
+9.5108531088550823e+00
+-3.8551868039418018e+01
+1.2181752241572083e+01
+6.2056918317777106e+00
+-2.8757380837768530e+01
+1.3663379726516085e+01
+8.2631087693508860e+00
+-3.7414344029184143e+01
+1.3798052331225486e+01
+7.1984633189426876e+00
+-3.6655039802539648e+01
+1.3556024065677985e+01
+6.8063908206628243e+00
+-3.6129501977500077e+01
+1.2671381386503018e+01
+4.5777304953195292e+00
+-2.8764054274497990e+01
+1.3935674714697324e+01
+8.1215439108022949e+00
+-4.1156511804412702e+01
+1.3497441069531225e+01
+6.6723096859096511e+00
+-3.6319446969839099e+01
+1.4040035385163035e+01
+7.8289747610190910e+00
+-4.0828813685989211e+01
+1.4008689309994709e+01
+7.8245653741099410e+00
+-4.1146298969851735e+01
+-3.3967755977878467e+00
+1.4387806701777221e+01
+-5.0215107855243211e+01
+6.3334249733178511e+00
+9.0155358717465237e+00
+-3.9205816750331728e+01
+1.3018383617427007e+01
+4.1288337192788225e+00
+-2.8862543990797036e+01
+-9.9664633749032150e-01
+1.4247922448451176e+01
+-5.1894730619434824e+01
+5.0220211444295124e+00
+9.6899143614725194e+00
+-4.3839446286491075e+01
+1.4353068425868925e+01
+2.5331360228886823e+00
+-2.6632745620429635e+01
+4.2349152145556301e+00
+9.9935747648528945e+00
+-4.4652138448476833e+01
+3.7312339016221965e+00
+9.1683461289503327e+00
+-4.4847539672290303e+01
+1.2894286842461939e+01
+3.0887279483043333e+00
+-3.1307969715546509e+01
+1.4752275712200120e+01
+1.5238540907022891e+00
+-2.7582830107916315e+01
+1.3492742506917352e+01
+1.5089925069381780e+00
+-2.9605806330092854e+01
+1.2408460918934797e+01
+5.0269497103927419e-01
+-2.6133504902484489e+01
+1.0805028586027562e-01
+2.3380663622583073e+00
+-2.1594911688896694e+01
+1.2269061273806731e+01
+-2.0717129605466383e-01
+-2.5767653604074550e+01
+1.5847137702955192e+00
+1.5783709231281273e+00
+-2.0685666118123866e+01
+1.2279876446000500e+01
+-2.8605613550016368e-01
+-2.6652018208609427e+01
+-1.4642453137745364e+00
+2.7612686210601485e+00
+-2.3777132721740873e+01
+1.3385875356726210e+01
+1.7940769752054653e-01
+-3.1337149243617912e+01
+-2.7186384300899502e+00
+5.9929195151321464e+00
+-4.0700330303010176e+01
+1.2103346060549971e+01
+-8.4848695536594787e-01
+-2.5774089690385267e+01
+1.7449115381456364e+00
+7.8579908382728858e-01
+-2.0358161928443653e+01
+1.4753637988141238e+01
+-1.1290918244953754e+00
+-2.9491166626610937e+01
+-4.0972777348812244e+00
+5.4827643982084862e+00
+-4.0511660188488413e+01
+1.6688485429761568e+00
+2.1887754904550830e-01
+-2.0281850952803786e+01
+-3.1656158857266132e+00
+4.0235289773374490e+00
+-3.7758561196652863e+01
+-7.3115479327692823e-01
+4.3413130971832598e-01
+-2.1350125131614085e+01
+-2.0395428990297289e+00
+7.2076263976443100e-01
+-2.3324163836213447e+01
+-9.8364039760911889e-02
+-1.2556147597376227e-01
+-2.0969711895040515e+01
+2.2467606936689188e+00
+-8.8216498299662005e-01
+-2.0476396574171726e+01
+-9.9012442870426998e-01
+1.0015558286029087e-01
+-2.1675270051748303e+01
+1.2948857255392778e+00
+-7.7288248601716114e-01
+-2.0591840788611236e+01
+-8.6976854043927895e-02
+-5.4554549660537188e-01
+-1.8741783194413458e+01
+-1.7392316982057312e+00
+-1.0192940444839937e-01
+-2.2207877851910645e+01
+-1.5481607776014135e+00
+-2.2019890350284421e-01
+-2.2063614991029432e+01
+1.5912650878596349e-01
+-8.2689471178234542e-01
+-2.0801844228612474e+01
+-1.3912338946904637e+00
+-4.5402474073492494e-01
+-2.1747241957969845e+01
+1.3064887000629619e+00
+-1.6538485953397026e+00
+-2.0133680924499206e+01
+3.8817090579305957e-01
+-1.3846483757076735e+00
+-2.0713020042614549e+01
+-8.0726311822357866e-01
+-1.0182564171786246e+00
+-2.1104647806679804e+01
+-1.7787707342930454e+00
+-1.4617040675066422e+00
+-2.1731348255568143e+01
+-1.9202067063588915e+00
+-1.5046974207962636e+00
+-2.1443676979582037e+01
+-1.9202067063588915e+00
+-1.5046974207962636e+00
+-2.1443676979582037e+01
+4.0798996683760631e+00
+-4.4800588173444158e+00
+-2.1796395647306781e+01
+4.4521970214676871e+00
+-4.6508495099232929e+00
+-2.2216308143844383e+01
+3.8188596510272870e+00
+-4.4952465550503966e+00
+-2.1722257071044119e+01
+-2.8467983294051535e-01
+-3.2111649541765437e+00
+-2.0690164171358298e+01
+8.9170479650818679e-01
+-4.2657382509821922e+00
+-2.1096572871984993e+01
+-1.7922662157977078e+00
+-3.8801584793940833e+00
+-2.2680379462536191e+01
+2.6733543695343149e+00
+-5.3880207803725799e+00
+-2.2269023655252528e+01
+2.7773614683755272e+00
+-5.7508824600967765e+00
+-2.0673445747957032e+01
+-7.0879619526658235e+00
+-2.9178558019604872e+00
+-2.9076704077925335e+01
+8.9485876971423406e-01
+-5.3601103737644618e+00
+-2.2024769923833905e+01
+-8.1564256126278707e+00
+-3.2349756618725642e+00
+-2.8482823347217042e+01
+-1.8877026271274262e+00
+-4.8321279624141260e+00
+-2.0893439625072773e+01
+-7.2266204960209022e+00
+-3.8733537230809958e+00
+-2.7493408914387839e+01
+-8.2459062213369521e+00
+-3.8729231897956966e+00
+-2.8009402820493374e+01
+-6.7461617084928198e+00
+-4.8470342188021887e+00
+-2.5962848748004461e+01
+-5.4745964949640049e+00
+-5.8781561440565824e+00
+-2.4567938618963360e+01
+-6.9534802664049709e+00
+-5.6665009651784333e+00
+-2.5468304303482658e+01
+-6.0705477231418667e+00
+-5.9501966931980954e+00
+-2.4537791029913524e+01
+-6.7321454282918083e+00
+-6.2060435675853460e+00
+-2.3862675786509776e+01
+-3.4946872834343621e+00
+-7.3607676632945740e+00
+-2.2497691264305388e+01
+-5.6204218843584854e+00
+-6.9147335691316316e+00
+-2.2970303350451271e+01
+-4.0602343102783296e+00
+-7.5138688338592585e+00
+-2.2270846461247164e+01
+3.3642566372244929e+00
+-1.0142135740991526e+01
+-1.8913955455531550e+01
+-4.8333948199157666e+00
+-8.2060319522728893e+00
+-2.1193572777772896e+01
+-5.1588252723932593e+00
+-8.7503111435318548e+00
+-2.1345150070931986e+01
+-3.0349520299550097e+00
+-9.3156253854685804e+00
+-2.0065572616465275e+01
+-3.1450758529020368e+00
+-9.4531603149817069e+00
+-2.0356103296205898e+01
+-4.8246134256203668e+00
+-9.0705797616088102e+00
+-2.0925091137247730e+01
+-3.1494457757892698e+00
+-9.4902862367407632e+00
+-1.9869940722386591e+01
+-4.6903660651434578e+00
+-9.2093037371972564e+00
+-2.0756469389517097e+01
+1.4097605559787413e+01
+1.8365780982096812e+01
+-3.3542514117878589e+01
+1.1757361044168610e+01
+2.0423813194452389e+01
+-3.8967810158761345e+01
+1.3610747411785059e+01
+1.2900927867887008e+01
+-2.6039091093998689e+01
+1.8801068858037793e+00
+2.4725808593032493e+01
+-4.3833714983778592e+01
+1.6878104602674735e+01
+2.6524983770068033e+01
+-5.2422875345787368e+01
+1.5199492281223758e+01
+1.1214558910387620e+01
+-2.4422940270565775e+01
+1.4652081420528305e+01
+1.0444618762185174e+01
+-2.3700917849539767e+01
+1.3787538051757499e+01
+1.4931589883960186e+01
+-3.1914935148602563e+01
+1.8895394309149832e+01
+2.5700549365873758e+01
+-5.3885156564844145e+01
+2.2132281483006135e+01
+2.7643514502107088e+01
+-6.2638210232744783e+01
+-1.6161244552965592e+00
+2.1679467945843232e+01
+-4.3512551675144977e+01
+2.3063067003264194e+01
+2.6551385277711045e+01
+-6.2363408399744124e+01
+2.4391881362005478e+01
+2.7798748582592420e+01
+-6.4761832026376908e+01
+1.3924933101149827e+01
+2.3121915276179628e+01
+-5.5945497051305232e+01
+1.2588746178090105e+01
+7.9340046735603229e+00
+-2.5212663424894242e+01
+3.1161249951452613e-01
+1.9363273777797783e+01
+-4.5692674778390220e+01
+9.2128882200943529e+00
+2.2123979405599350e+01
+-5.6567846044571198e+01
+8.6847340171838994e+00
+2.1250892095722680e+01
+-5.4176654482075669e+01
+1.3082983647752709e+01
+7.7219249981581290e+00
+-2.6494805676408205e+01
+9.9710530321585744e-01
+1.9225888292307697e+01
+-4.9564238251223216e+01
+1.4509799286296840e+01
+9.3613466008933415e+00
+-3.3834602363893467e+01
+1.3932204252529770e+01
+9.0401829108717635e+00
+-3.3001962247533633e+01
+-9.1147170415611167e-01
+1.6762977258953512e+01
+-4.8577437705071659e+01
+1.3814311216666573e+01
+9.4106280077875404e+00
+-3.8121770040905268e+01
+1.2914534244964520e+01
+5.2464996277542451e+00
+-2.8186913534408220e+01
+1.3604381873841175e+01
+7.6453643138117320e+00
+-3.7171582217162275e+01
+1.4163966380161664e+01
+3.2292336724817421e+00
+-2.6865038022089660e+01
+1.3561876220624193e+01
+6.3368813443854348e+00
+-3.7449264494704003e+01
+2.8648936725661054e+00
+1.0866534751314614e+01
+-4.5680743364850613e+01
+5.2601212121495227e+00
+8.8752205897371255e+00
+-4.4336422959927731e+01
+1.3168050513447225e+01
+2.6456112324997645e+00
+-3.2065166792061419e+01
+1.3112767578096124e+01
+2.0739994777689770e+00
+-3.0692549364974063e+01
+3.1978166657053149e+00
+2.1091901348540718e+00
+-2.1284595756939630e+01
+1.8991763178189371e+00
+1.8239052533125841e+00
+-1.8721188312350996e+01
+1.3352490950232395e+01
+1.1768725656855230e+00
+-3.0654353559066184e+01
+2.6935345785489004e+00
+1.5461711514922274e+00
+-2.0872423728980834e+01
+1.4033463835057036e+01
+4.4391728912626571e-01
+-2.9363060371257287e+01
+8.8229958763451477e-01
+1.9388434645690213e+00
+-2.1019085076394706e+01
+1.2264095928671638e+01
+-6.3263354671580985e-01
+-2.5374646163533239e+01
+2.4184739208720609e+00
+9.0718973015203974e-01
+-2.0490430313325870e+01
+-2.5107500096306081e+00
+5.5142387511348439e+00
+-4.0481557951571865e+01
+3.2944564633774620e+00
+9.9429515892773893e-02
+-2.1143224901610761e+01
+-3.7818349526076697e-02
+9.4088036306861389e-01
+-2.0891578183627960e+01
+2.7919798186854701e+00
+-4.6594406116095603e-02
+-2.0403606795834406e+01
+2.3594092460368632e+00
+-3.0626803907927858e-01
+-2.0411397750792748e+01
+-2.4298265966373904e+00
+1.4512062086196034e+00
+-2.4305994929274046e+01
+-2.4099628884063802e+00
+6.5780838923511298e-01
+-2.3301794677848687e+01
+-2.9649858059398229e+00
+9.4565263987124515e-01
+-2.4691908076291785e+01
+-2.9649858059398229e+00
+9.4565263987124515e-01
+-2.4691908076291785e+01
+2.2916387487536345e+00
+-1.0503184002819250e+00
+-2.0498677076687155e+01
+2.2916387487536345e+00
+-1.0503184002819250e+00
+-2.0498677076687155e+01
+-1.8217147139172980e+00
+2.8049170234829529e-01
+-2.2729615168335741e+01
+-1.4913027390131928e+00
+2.4882554944177158e-02
+-2.2267250995185243e+01
+-1.6702195907180379e+00
+9.5357047404033460e-02
+-2.2450426922790395e+01
+-6.8737224130364882e-01
+-3.7478469902745698e-01
+-2.1467688964067328e+01
+1.8685313177216343e+00
+-1.2580689075188569e+00
+-2.0551290419716214e+01
+-1.7271116456134279e+00
+-6.0571492216403988e-01
+-2.1676078305942614e+01
+-6.1024331013368893e-01
+-9.6955565373286978e-01
+-2.1190118003578014e+01
+1.5338359303720135e+00
+-1.9066309981324525e+00
+-2.0204240253546214e+01
+4.3487419204220812e+00
+-2.8977829056156432e+00
+-2.0419148631579624e+01
+-1.3855211442498565e+00
+-1.3999967292303204e+00
+-2.1582874802521658e+01
+3.1959452846777823e+00
+-3.0164744831713675e+00
+-1.9646613312621387e+01
+-3.3596082685960718e+00
+-9.1880623913649151e-01
+-2.3064646170454385e+01
+-1.0327925084544280e+00
+-1.7478125416769970e+00
+-2.1302520948406695e+01
+4.5236742723071588e-01
+-2.3556245951462103e+00
+-2.0814490004602749e+01
+2.9835846089286711e+00
+-3.3984811812255522e+00
+-2.0133015598199254e+01
+-2.7083494163019988e+00
+-1.7542464667942623e+00
+-2.1952100423071517e+01
+3.0172886038305591e+00
+-4.2858179444815345e+00
+-2.1341313037251339e+01
+4.3471440897846252e+00
+-4.8870844555574147e+00
+-2.2465922918839151e+01
+-7.6274771857362547e+00
+-2.0959223283878607e+00
+-3.0705318941307262e+01
+-7.6373081462176016e+00
+-2.0902077836175632e+00
+-3.0424835953795704e+01
+-3.2647799008725981e-01
+-4.7384031796583113e+00
+-2.2673575375183894e+01
+-8.0755961900290760e+00
+-2.5234716430123441e+00
+-2.9272251750163829e+01
+-1.4235642800342991e+00
+-4.6937087803074924e+00
+-2.0620666800103582e+01
+-5.4177854600612969e+00
+-6.0106639437083986e+00
+-2.4458371480155407e+01
+-6.3524319349228859e+00
+-5.8786133164179137e+00
+-2.4881804455903843e+01
+4.3698266388319835e+00
+-9.4372453873653761e+00
+-1.9719133084888277e+01
+1.4498860805387012e-01
+-8.8467076596853538e+00
+-2.0835507916333160e+01
+3.8018049825539415e+00
+-1.0160861705789914e+01
+-1.8881387168987441e+01
+4.0356256980997490e-01
+-9.4150026334202561e+00
+-1.9911558353437020e+01
+8.5082192832482739e-01
+-1.0150643276902041e+01
+-1.8600095532267375e+01
+-3.6843391492375179e+00
+-9.2608858807381065e+00
+-2.0605758250167263e+01
+1.3072085986877054e+01
+1.4959930540113685e+01
+-3.0658370920258253e+01
+2.3809864957217016e+01
+2.9615295876905215e+01
+-6.2599914738185610e+01
+-2.8494201143173985e+00
+1.8469714853873484e+01
+-4.5647407851701225e+01
+1.3703598675068401e+01
+1.0147968686851881e+01
+-3.6770257014632847e+01
+-1.8202993143621082e-01
+1.6693299535443970e+01
+-4.9061470703342081e+01
+5.2015570823915214e+00
+9.8709968182817658e+00
+-4.3716748217651137e+01
+1.2806386917845654e+00
+6.7169921562665291e-01
+-2.0392956847676626e+01
+-2.1256656884008494e+00
+2.0707428054582744e+00
+-2.3627245996949753e+01
+-1.8744443246035130e+00
+1.2864611495260061e+00
+-2.3093151415820476e+01
+-8.9896020658334030e-01
+7.3938761710126444e-01
+-2.1613108031824876e+01
+-5.8620374434381395e-01
+1.6210969028194563e-01
+-2.1189609358480169e+01
+-3.1424840441502699e-01
+-7.9010398530536052e-01
+-2.1197859648112860e+01
+3.0171358646250335e+00
+-2.6324517240878889e+00
+-1.9851098267237859e+01
+2.3075250201071764e+00
+-2.5226929348702658e+00
+-1.9627245600837124e+01
+-9.3495790500649256e-01
+-1.8190019235792425e+00
+-2.1245301721749076e+01
+-1.8689496861193622e+00
+-1.6141509101515261e+00
+-2.1568221905293395e+01
+3.0872537551745625e+00
+-3.6236513532407932e+00
+-2.0833283622935340e+01
+4.7027250022291418e-02
+-3.8090946822621254e+00
+-2.0932587839079158e+01
+-3.2656621976514582e+00
+-3.3046360474326804e+00
+-2.4957325765000896e+01
+-2.5071401922782188e+00
+-3.8617303757592567e+00
+-2.4040843833539686e+01
+-6.5030326238083136e+00
+-5.0752898067751442e+00
+-2.5708883396304913e+01
+-7.4229412863297828e+00
+-5.0008730129249317e+00
+-2.6004502913504705e+01
+-3.1360677165319961e+00
+-7.5805431146478819e+00
+-2.2301094198899786e+01
+-5.3604054397495497e+00
+-7.1720130446341166e+00
+-2.3225819353920450e+01
+-1.2409745642360017e+00
+1.8999220254693679e+01
+-5.0885655395431328e+01
+-1.9439517067831895e+00
+1.7108158280179278e+01
+-4.7988719223794533e+01
+1.1576370396035312e+01
+6.6910262968558847e+00
+-2.8534831803579788e+01
+1.2628952318193067e+01
+4.7365497264662029e+00
+-2.7693935889425870e+01
+1.2447251952230205e+01
+4.5209302051588329e+00
+-2.7774781473543914e+01
+1.5806047521662763e+00
+4.1420437773670820e+00
+-2.3837562688742491e+01
+-2.3737311947113580e+00
+3.7239825079171514e+00
+-2.8437725372024129e+01
+-2.6966372402776155e+00
+3.4890091166071797e+00
+-2.8196342812551453e+01
+-2.5251967972461107e+00
+3.3273836138392503e+00
+-2.7971135212586681e+01
+1.1194162157650025e+00
+8.7495157175474636e-01
+-2.0411820811894597e+01
+-2.9706990751500038e-02
+-1.8566958951357054e-01
+-2.0557433857946918e+01
+2.1294226351751919e+00
+-1.8408578659522707e+00
+-2.0014628777919075e+01
+1.2841487275865131e+00
+-1.8526576516072764e+00
+-2.0037802680868985e+01
+5.5179009126178458e-01
+-1.7106379125512037e+00
+-2.0241042078038991e+01
+-8.6909165404879785e-01
+-1.6983772506136354e+00
+-2.1132075085819437e+01
+2.3929777562111427e+00
+-2.8323284760396885e+00
+-1.9770719880290134e+01
+-6.8497242107358558e-01
+-2.0134339684075648e+00
+-2.0922343980957695e+01
+4.9150685931680274e+00
+-4.3893679458588428e+00
+-2.1939024597859198e+01
+4.5852371038065662e+00
+-4.3991231366727126e+00
+-2.2162561941915790e+01
+4.5852371038065662e+00
+-4.3991231366727126e+00
+-2.2162561941915790e+01
+2.1100179625468414e+00
+-4.4842456559047763e+00
+-2.0989593356401961e+01
+2.8042963789819431e+00
+-4.9621171235219608e+00
+-2.1427950428329009e+01
+3.0202114772531643e+00
+-5.0602615693576398e+00
+-2.1960946408862501e+01
+-3.2410510021260315e+00
+-3.4212790753889575e+00
+-2.4791140778307863e+01
+3.0020719070721724e+00
+-5.4496979195471011e+00
+-2.2125280364258071e+01
+-2.7262711433187521e+00
+-3.7642276596539253e+00
+-2.4148494267830408e+01
+-7.3692878293602497e+00
+-4.6248419782910926e+00
+-2.6406075546965578e+01
+-7.6018326845899784e+00
+-4.7786723292581481e+00
+-2.6460444939033955e+01
+-4.5515347619747235e+00
+-6.2648350276902285e+00
+-2.4418452217217396e+01
+-5.7879582638018796e+00
+-5.8824820680961469e+00
+-2.4516351171622826e+01
+3.9359995187888779e+00
+-9.4960836701479359e+00
+-1.9867653945105648e+01
+4.2083311672475832e+00
+-9.8246303558988402e+00
+-1.9378833702480765e+01
+1.3756722350152872e+01
+1.7776120215746570e+01
+-3.4315566294739156e+01
+2.1876757813157141e+01
+3.0225079149338196e+01
+-5.9997667224586515e+01
+8.4990169896802872e+00
+2.5207568581684786e+01
+-5.0724710738695713e+01
+1.4682164108949106e+01
+1.2607572114553879e+01
+-3.1976872147104896e+01
+9.6875526069437470e+00
+2.1750106698307409e+01
+-5.3259737573881772e+01
+1.2907409459936028e+01
+5.4019455633162705e+00
+-2.6121489671150552e+01
+1.2932016845388112e+01
+5.2739410182279789e+00
+-2.8878142664603466e+01
+5.7749971779807154e+00
+1.1021831838120359e+01
+-4.7267042937376125e+01
+-1.8589733108122588e+00
+3.5999126377040080e+00
+-2.7570799282430652e+01
+9.7067230607075428e-01
+3.7790678577693276e-02
+-2.0405860131416404e+01
+2.0871809537403507e+00
+-1.6485535488614009e+00
+-2.0128665650059162e+01
+-7.2879162958974204e+00
+-2.6420158458611982e+00
+-2.9234714861715791e+01
+-3.3649644876540035e+00
+-4.1087458610016139e+00
+-2.4253958969043818e+01
+-4.2856672899738975e+00
+-6.9918490369084818e+00
+-2.3550123689191874e+01
+-6.2908475368031320e+00
+-6.4482240175691308e+00
+-2.3807299115862090e+01
+9.5314869830707796e+00
+2.7940013080602910e+01
+-4.9132836804084825e+01
+4.6307322735199579e+00
+1.0427091792898256e+01
+-4.5100325503913773e+01
+4.8206786539033153e-01
+9.4385412800516821e-01
+-2.0665992640312727e+01
+2.8843209098940790e+00
+-3.0852625061716297e+00
+-1.9703858695660205e+01
+2.2633196380218013e+00
+-4.6836636647904122e+00
+-2.1045736404998237e+01
+-2.0824339359346871e+00
+-3.4950765832488084e+00
+-2.3107606815825125e+01
+-6.9954377352977160e+00
+-4.8616259217587441e+00
+-2.6240068318888969e+01
+-6.9954377352977160e+00
+-4.8616259217587441e+00
+-2.6240068318888969e+01
+-7.0355399005732737e+00
+-5.1400457197513374e+00
+-2.5589177864433825e+01
+2.0356829020779255e+01
+2.9909141910540335e+01
+-5.8193601633769987e+01
+6.1550652014080445e+00
+2.5805747657583154e+01
+-4.7632568398817476e+01
+1.3545101317401027e+01
+1.4947276822450620e+01
+-3.2293782425934204e+01
+1.4481904609865104e+01
+1.3328489650377948e+01
+-3.2978640339046436e+01
+-2.3911505362561529e+00
+3.2077992751304456e+00
+-2.7093921965056289e+01
+5.3271713024604178e-02
+4.6042973522135566e-01
+-2.0951689342010162e+01
+4.7250364058491137e+00
+-9.9098152865527167e-01
+-2.0212674729577007e+01
+1.9240923089969346e+00
+-3.1437037520641260e+00
+-1.9813069692482969e+01
+-1.0468464580775367e+00
+-2.3703341533656141e+00
+-2.0269239460065297e+01
+-4.4091794630445191e+00
+-7.2955742870948121e+00
+-2.3158021403980879e+01
+1.4350446496846484e+01
+2.3978514034958160e+01
+-6.1858467616963559e+01
+1.4350446496846484e+01
+2.3978514034958160e+01
+-6.1858467616963559e+01
+1.3903413520737697e+00
+1.8996788933557404e+01
+-5.1401757367027045e+01
+-4.9087260975824776e-01
+8.3096344947912038e-01
+-2.1251513264628354e+01
+2.8309084922574344e+00
+-1.8860604431561641e+00
+-1.8523611764336916e+01
+1.0098215463806481e+00
+-2.8198167377485492e+00
+-1.9772595565064108e+01
+-2.2753399777497177e-01
+-1.8788564400111112e+00
+-2.0934652623313443e+01
+-2.2753399777497177e-01
+-1.8788564400111112e+00
+-2.0934652623313443e+01
+7.8391840990741501e-01
+1.8073241928854095e+01
+-4.6104094218746908e+01
+-6.1728240653611088e+00
+1.6617478953683527e+01
+-4.0891931430313718e+01
+-1.4456838018867944e+00
+1.8576146166352473e+01
+-4.7201830466822791e+01
+-1.0748808992340562e+01
+1.5664511730016713e+01
+-3.7408588168549493e+01
+-6.0036138738610410e+00
+1.6487948813162532e+01
+-4.1356467056041744e+01
+-3.9747879357670834e+00
+1.6939863716525714e+01
+-4.3140281662803233e+01
+-3.9747879357670834e+00
+1.6939863716525714e+01
+-4.3140281662803233e+01
+-3.3656244713840584e+00
+1.7707820487148002e+01
+-4.5400205868578851e+01
+1.2633213905837181e+01
+1.1000075397034108e+01
+-3.4880882410042105e+01
+-4.1668806319986045e+00
+1.6326698786506206e+01
+-4.3934432221367977e+01
+1.1606222478665057e+01
+7.8897760386757909e+00
+-2.6659884100698171e+01
+1.3503680269742441e+01
+9.6732124605851286e+00
+-3.2322932738142541e+01
+-5.7397990219152861e+00
+1.6640273709881473e+01
+-4.4945900555390629e+01
+-8.8132925780733089e+00
+1.4840538072694745e+01
+-4.0735045487612631e+01
+1.5254173131291909e+01
+7.4380183297122553e+00
+-2.8348943676751755e+01
+-8.1143685797681187e+00
+1.5155409655855600e+01
+-4.2095293297710093e+01
+-5.9738763132640145e+00
+1.7147251755019393e+01
+-4.8636434094246212e+01
+-3.4870315219141013e+00
+1.7057838814480309e+01
+-4.9436830296868663e+01
+1.2037166495244142e+01
+6.7482253655976923e+00
+-2.5670463128212290e+01
+1.6667868946612281e+00
+1.8349221294916578e+01
+-5.5054256821125925e+01
+1.5767174921708634e+01
+1.2793618840384291e+01
+-4.4678860908025939e+01
+-8.9407320102529599e+00
+1.5057813161997144e+01
+-4.2034089433071330e+01
+4.1641131795609017e+00
+1.7414770644800228e+01
+-5.4486737375178848e+01
+5.1492782256527718e+00
+1.9018158397223392e+01
+-6.0213248622403697e+01
+1.3462826476128287e+01
+8.5730522754231018e+00
+-3.3139177632199399e+01
+-7.1518873818859969e+00
+1.4566800384933897e+01
+-4.3633559996956357e+01
+-3.5154437934095903e+00
+1.6358142937409983e+01
+-5.0772654984706691e+01
+-8.5713629622441108e+00
+1.3495587531818021e+01
+-4.1120860106274904e+01
+-8.5713629622441108e+00
+1.3495587531818021e+01
+-4.1120860106274904e+01
+-3.4520742674957590e+00
+1.6061199461614777e+01
+-5.1081379666507019e+01
+-1.3296427052315977e+01
+1.6118514597261271e+01
+-4.7289515055318475e+01
+-7.6548270733021750e+00
+1.5602792465605186e+01
+-4.8080606567168203e+01
+-3.7089615075167441e+00
+1.5971429831809974e+01
+-5.0952180941205270e+01
+-1.0264680943604672e+01
+1.3361774436186298e+01
+-4.0366030699821579e+01
+-8.2341413548162024e+00
+1.4221411724319228e+01
+-4.3699003102000489e+01
+-9.4647499276931999e+00
+1.3969350997169952e+01
+-4.2372934380896780e+01
+-1.1016979984597763e+01
+1.2765542212923105e+01
+-3.8316519801138703e+01
+-1.1173184312044532e+01
+1.2652292300333333e+01
+-3.7971947832464238e+01
+-1.0571725165947187e+01
+1.5067742923288069e+01
+-4.5575737223820497e+01
+-9.4811483259420672e+00
+1.3609691778553220e+01
+-4.2061691182046417e+01
+-1.5338010596310557e+01
+1.3808105840014827e+01
+-3.9509133276013628e+01
+-9.1636888033477568e+00
+1.3521511379223199e+01
+-4.2584488066282667e+01
+4.6598706914114416e+00
+1.4765693089190574e+01
+-5.1890681169477325e+01
+4.4746408270768709e+00
+1.4490153163218205e+01
+-5.1252631679018734e+01
+1.4988956760000024e+01
+8.9064592966971272e+00
+-3.8146959199020202e+01
+-1.0348367582640037e+01
+1.2537817944177204e+01
+-3.9451560953102394e+01
+-8.9786546421424624e+00
+1.2710176212854233e+01
+-4.0874121557989461e+01
+-7.9818785979901792e+00
+1.4129514828517086e+01
+-4.5861232101149277e+01
+-1.0292984967914572e+01
+1.4549253930865206e+01
+-4.6165993257500865e+01
+1.4423158082890973e+01
+9.0484101788256144e+00
+-3.9294415872648536e+01
+1.4423158082890973e+01
+9.0484101788256144e+00
+-3.9294415872648536e+01
+-8.7123907491296197e+00
+1.3151354667643888e+01
+-4.3083130888800454e+01
+-9.0482201152941428e+00
+1.3542701056146768e+01
+-4.4173242386588882e+01
+-1.3634587139683251e+01
+1.5195364880370002e+01
+-4.7625580503315433e+01
+6.2425598201313841e+00
+1.3361191928291385e+01
+-5.0615074138780223e+01
+-1.0220828711950267e+01
+1.3266361152303947e+01
+-4.2816879426614221e+01
+-1.2340194387643448e+01
+1.4429968636177055e+01
+-4.5564441848172066e+01
+-3.6087843829200583e+00
+1.4270113265471739e+01
+-4.9512036525408568e+01
+-1.4171663174472275e+01
+1.2732840256651748e+01
+-3.9496797268501552e+01
+2.4710880017174222e+00
+1.5187442161495616e+01
+-5.5432327405830463e+01
+-8.8777379963845551e+00
+1.2576933409379906e+01
+-4.2040244097852089e+01
+1.4314076097775047e+01
+1.1001294269636681e+01
+-4.7667577735166603e+01
+4.4818862822343797e-01
+1.3618077936096723e+01
+-5.0610389193857493e+01
+1.4243205272482044e+01
+8.6890227515771077e+00
+-3.9713256660544360e+01
+1.3582672843070224e+01
+7.3944369357084838e+00
+-3.5066089999580036e+01
+-1.3629064146859433e+01
+1.3230917976235736e+01
+-4.2630807064098100e+01
+-9.6392118923547052e+00
+1.2355685333559721e+01
+-4.1603412488894335e+01
+-3.6232150051593233e+00
+1.4504878891461038e+01
+-5.2033189902210843e+01
+-1.3821000952623191e+01
+1.2399939656890682e+01
+-4.0194199726883738e+01
+-1.3821000952623191e+01
+1.2399939656890682e+01
+-4.0194199726883738e+01
+-7.1464632990124679e+00
+1.2584008484089491e+01
+-4.4588806490696342e+01
+-1.3463957551934135e+01
+1.2372473423425715e+01
+-4.0509909894310049e+01
+2.0322325893242397e+00
+1.2390150884822951e+01
+-4.8662922675495160e+01
+7.3762156530504897e-01
+1.2837951011913663e+01
+-4.9695369895509607e+01
+-7.4390098445975781e+00
+9.2165229950487682e+00
+-3.3668801255678311e+01
+-1.0476140618570772e+01
+1.3979347127852861e+01
+-4.8319054010266179e+01
+3.8063764568481080e+00
+1.3299460934304374e+01
+-5.3012801307274025e+01
+-5.7904712460248344e+00
+1.2675352436167110e+01
+-4.6517335190499495e+01
+1.2389202878454288e+00
+1.2620306611741897e+01
+-4.9391046644715679e+01
+-7.0509750787631207e+00
+1.3063846531390041e+01
+-4.7328985019746504e+01
+2.9391115708008204e+00
+1.1752994525796566e+01
+-4.8039081308449099e+01
+1.2443470879656672e+01
+5.4128688323976109e+00
+-2.9179472339591150e+01
+2.4251127498027616e+00
+1.2385460244136135e+01
+-5.0092650650373855e+01
+2.2768148968914286e+00
+1.2128473155418114e+01
+-4.8739794102013221e+01
+2.0211408629939926e+00
+1.1737682777300462e+01
+-4.8135302918080193e+01
+1.8177993008577646e+00
+1.1682075257026606e+01
+-4.7967051835321001e+01
+1.4245915094495260e+01
+7.3159294833038393e+00
+-3.7886716591702033e+01
+1.3761799201055920e+01
+5.1580671145822405e+00
+-2.9573888082652697e+01
+1.3761799201055920e+01
+5.1580671145822405e+00
+-2.9573888082652697e+01
+-9.0095769939951265e-01
+1.2558779963213384e+01
+-4.9895527333768349e+01
+-1.0786160358666295e+00
+1.2112722867546230e+01
+-4.8637909779016191e+01
+-1.2467093315478042e+01
+1.0481530358929366e+01
+-3.6631448397573998e+01
+-3.5807672374628323e+00
+1.2284290945348843e+01
+-4.8715684696236075e+01
+-1.2004438069662230e+01
+1.0713367102704360e+01
+-3.8233377797557338e+01
+-1.2004438069662230e+01
+1.0713367102704360e+01
+-3.8233377797557338e+01
+-1.1773662671818203e+01
+1.0840747441328586e+01
+-3.8883310694865592e+01
+-9.4043778180791353e+00
+1.1538846231037125e+01
+-4.3039271600787472e+01
+-1.8505845528132421e+00
+1.1998537051980211e+01
+-4.8783043293589671e+01
+8.3393382399680183e-01
+1.1432916597345878e+01
+-4.7703424824803349e+01
+-1.8582821315532261e+00
+1.1903401963634304e+01
+-4.8799281684665914e+01
+-4.1119841230397016e+00
+1.2506293038965737e+01
+-4.9798772925031130e+01
+-4.0165233319040432e+00
+1.2042769241534105e+01
+-4.8435387790005123e+01
+-2.6602618598884220e-01
+1.1189433860733962e+01
+-4.7126341678255109e+01
+-1.1503064839876052e+01
+1.0769365959977748e+01
+-3.9379896262032354e+01
+-8.6051831340865412e+00
+1.2241684428194919e+01
+-4.7317616282779028e+01
+-8.3455156546657481e+00
+1.1573940094467966e+01
+-4.5002936019946290e+01
+-4.0673869350027303e+00
+1.2042112378897436e+01
+-4.9248860872939908e+01
+-1.2931942391438765e+01
+1.1855528587855170e+01
+-4.4114863955155933e+01
+7.9746042690392320e+00
+8.8211708694289825e+00
+-4.4024001938588569e+01
+-1.0394470963557445e+01
+1.1596427278364592e+01
+-4.4824975780459809e+01
+1.3798055166450714e+01
+2.7985743851925444e+00
+-2.3248606859915128e+01
+1.6567995440526396e+01
+3.5166448847276688e+00
+-2.7866958984050747e+01
+-7.6145054036767608e+00
+1.2328064360424531e+01
+-5.0390731175472816e+01
+-1.0439353412323138e+01
+1.2400554498575678e+01
+-4.9177790377212808e+01
+-3.6603828179062972e+00
+1.1037723925509953e+01
+-4.7463074490130225e+01
+-2.5742178626409657e+00
+1.1220778560103007e+01
+-4.8880636613270937e+01
+-1.3721703216642181e+01
+1.0454818149279815e+01
+-3.9508428412609923e+01
+2.5332355771426611e+00
+9.5021047256011748e+00
+-4.4642278600281976e+01
+-8.2508931587811549e+00
+1.1106922626231343e+01
+-4.5888816681429702e+01
+-4.1305042794725981e+00
+1.1282333530168195e+01
+-4.8827760535760639e+01
+-1.2419023388356308e+01
+1.0691554155295430e+01
+-4.1597901597538851e+01
+-1.0777380370602742e+01
+1.2189111874208010e+01
+-4.9033570253417956e+01
+-9.9814705048591676e+00
+1.1815230684732954e+01
+-4.7495550097874464e+01
+-1.2322162888057807e+01
+1.1181271847963203e+01
+-4.3666551070595233e+01
+-8.4353215907062147e+00
+1.1040804519551060e+01
+-4.6019083595436250e+01
+-1.0338595399731403e+01
+1.1811216001272049e+01
+-4.7710130132997264e+01
+-1.0338595399731403e+01
+1.1811216001272049e+01
+-4.7710130132997264e+01
+-1.6485070783776232e+00
+1.0400665711795066e+01
+-4.7412106269621908e+01
+-1.3961473844824773e+01
+1.0632521960349976e+01
+-4.1259267024824958e+01
+-1.1855615353654429e+01
+1.0932564872966823e+01
+-4.3459419599483979e+01
+-1.6169278448142343e+01
+1.1328158661998520e+01
+-4.2956578910919156e+01
+9.9048431921893627e+00
+7.4718936815211867e+00
+-4.2547381826439143e+01
+1.4473027141660888e+01
+6.1313125722112147e+00
+-3.9558132811245635e+01
+1.5689233897895694e+01
+3.4928889091873234e+00
+-2.8884377220126876e+01
+-5.8304405108587183e+00
+1.0476758709959400e+01
+-4.6138963677844721e+01
+-5.8304405108587183e+00
+1.0476758709959400e+01
+-4.6138963677844721e+01
+1.3760375450252608e+01
+2.9798731549007211e+00
+-2.5324324156284263e+01
+-6.6674637102615506e+00
+1.0631405648252965e+01
+-4.6396727880222400e+01
+-1.0641096234234049e+00
+9.5012972100374693e+00
+-4.5004237073047811e+01
+-1.0247174254784083e+01
+1.1831254776323703e+01
+-4.9427432521764011e+01
+2.8088963030431926e+00
+8.5788553944112174e+00
+-4.3702995411203695e+01
+-5.0143345828586252e+00
+1.0749794478499018e+01
+-4.8127622480030759e+01
+-1.1353447884474043e+01
+1.0127743341023312e+01
+-4.1475863462419447e+01
+-1.1431064108863980e+01
+1.0195771123890941e+01
+-4.1905297060431892e+01
+-5.3528069359784656e+00
+1.0489843806912587e+01
+-4.7228124660989202e+01
+-1.2968928991438124e+00
+9.3889550592783273e+00
+-4.4889996584504210e+01
+-1.2264565437436882e+01
+1.1917377957555940e+01
+-4.8949040477969071e+01
+-1.6967470550060284e+01
+1.0849747518280006e+01
+-4.1320088091504729e+01
+-1.2142484299062010e+01
+1.1868878354643648e+01
+-4.9006029890215430e+01
+-1.1855552448366270e+01
+1.1447080516001702e+01
+-4.6843447336496418e+01
+1.4531531454082774e+01
+3.2323892649206805e+00
+-2.7326577290846142e+01
+-1.1975508271465754e+01
+9.9740860047519746e+00
+-4.0893082693364036e+01
+-1.1619821157696418e+01
+1.1724855381599429e+01
+-4.8984640163780185e+01
+-1.1457689444947034e+01
+1.1444199445763850e+01
+-4.7386991230221305e+01
+-1.3657768954805583e+01
+9.8547931168336582e+00
+-3.9333756263541886e+01
+-1.2710438198124821e+01
+1.1785837908524174e+01
+-4.8837056558748223e+01
+-1.0912171465769836e+01
+1.1428462209712436e+01
+-4.8011412544649666e+01
+-6.7526085098436308e+00
+1.0186031550009472e+01
+-4.5789495643814874e+01
+-4.5850650958374848e+00
+9.7602135722906525e+00
+-4.5337206875124302e+01
+1.3995287075387399e+01
+2.5740642790278874e+00
+-2.4614859518295248e+01
+-1.1698267686242426e+01
+1.1673286034035058e+01
+-4.9128215905349741e+01
+-1.1541762986137742e+01
+1.1630002473626689e+01
+-4.9153628844865267e+01
+-1.2205221060987380e+01
+1.1646278220977857e+01
+-4.8983246007068395e+01
+1.3402421353629427e+01
+2.7471082999254350e+00
+-2.5847130160029575e+01
+-1.2494884747969790e+01
+1.1636450464323532e+01
+-4.9024474307582921e+01
+-1.1219188580256574e+01
+1.1511189842496831e+01
+-4.9182303311738714e+01
+-1.0422313819606751e+01
+1.1429064485354610e+01
+-4.9059027427519858e+01
+2.2520058693704184e+00
+8.1724910902814880e+00
+-4.3305238843587738e+01
+-1.5583483271220183e+01
+1.0573646278294161e+01
+-4.2398428578970574e+01
+-1.5738775596850358e+01
+1.0566707855684470e+01
+-4.2354650957905221e+01
+-1.1048844969915866e+01
+1.1413738892095504e+01
+-4.9387050245025712e+01
+-1.5395382670746137e+01
+9.8555851617609296e+00
+-3.8735160789297922e+01
+-1.4051925830091252e+01
+1.0109362296387326e+01
+-4.1697735232481357e+01
+-1.1663298677844553e+01
+1.1435982550623027e+01
+-4.9295950096480418e+01
+-1.2479695048546828e+01
+1.1462356985503979e+01
+-4.8924493113055220e+01
+-1.2479695048546828e+01
+1.1462356985503979e+01
+-4.8924493113055220e+01
+1.3807420204299813e+01
+2.6040191308354825e+00
+-2.5671053730149293e+01
+-1.2596825504482611e+01
+1.1115571579626325e+01
+-4.7200203841490811e+01
+-6.6303047489804516e+00
+9.8344001142262663e+00
+-4.5670649863598079e+01
+-2.0986517783584264e+00
+8.6626771906247697e+00
+-4.3882923543737370e+01
+-3.3495764949578657e+00
+9.2992647876211372e+00
+-4.5501628334694018e+01
+1.2724786980964581e+01
+5.5365931608815329e+00
+-3.9702477663286210e+01
+1.4248799173247724e+01
+2.1654751016634450e+00
+-2.4498988131040580e+01
+-1.1329613473611621e+01
+1.0976254329385135e+01
+-4.8658920354461301e+01
+3.9367873954285776e-01
+3.8069483577882717e+00
+-2.3307621384479084e+01
+-1.5856975314624709e+01
+1.0071138978420031e+01
+-4.1806368202022675e+01
+-1.3840360568827542e+01
+9.4101212220792938e+00
+-4.0322198659553841e+01
+-1.2867468315540378e+01
+1.1045654294952712e+01
+-4.9014064412180559e+01
+-1.1232274211367562e+01
+1.0854832578755925e+01
+-4.9557042149856777e+01
+1.6158195638257581e+01
+2.4953025092402989e+00
+-2.8479258631158395e+01
+-1.1958788400343623e+01
+9.2237041883663284e+00
+-4.1489155870572482e+01
+6.2810008042936327e-01
+7.4540542545265405e+00
+-4.2081347466461239e+01
+-1.4591255198134396e+01
+8.5939731621173205e+00
+-3.6250749842964687e+01
+-1.5689680825547400e+01
+9.7120147668124908e+00
+-4.1420056195451515e+01
+-1.1451816439878915e+01
+1.0831644762200041e+01
+-4.9470177131188073e+01
+-3.2334272818801923e+00
+8.0493857133595093e+00
+-4.2843847078222936e+01
+-2.1749367813441371e+01
+1.2853652269411526e+01
+-5.2823827217365611e+01
+-1.6557295646522171e+01
+9.9436737270994584e+00
+-4.2369553977232606e+01
+-1.4023827912195404e+01
+8.5505487689770003e+00
+-3.7356006486943166e+01
+-1.2964661999647266e+01
+1.0721652055386366e+01
+-4.9167550206362563e+01
+-1.4594930989658874e+01
+8.5337112688251935e+00
+-3.6961387588033269e+01
+-1.1977434237701381e+01
+9.0918441825393383e+00
+-4.2467671333318798e+01
+-5.5543962783531784e+00
+8.1004502480951128e+00
+-4.2819472811705467e+01
+-5.5543962783531784e+00
+8.1004502480951128e+00
+-4.2819472811705467e+01
+-2.6255080634901873e-01
+3.5583414460949778e+00
+-2.3281177378158141e+01
+-2.7086268449847632e+00
+7.5509654593851474e+00
+-4.2241234192446974e+01
+-1.3013726089217361e+01
+9.7607936989327371e+00
+-4.5590588769371934e+01
+-1.4087133758472444e+01
+1.0564107966068917e+01
+-4.9005350141105538e+01
+1.3354108151775467e+01
+2.2290774852145412e+00
+-2.7514241804705382e+01
+-2.7440534519053319e+00
+7.4406747789825625e+00
+-4.2106746282105291e+01
+1.4994655174426773e+01
+2.4620129906967647e+00
+-2.9973037271752794e+01
+1.1843672081859701e+01
+4.4363811660645380e+00
+-3.8232352847407526e+01
+3.6525516036168053e+00
+2.5535712813510529e+00
+-2.1895104268935984e+01
+1.3616221382548522e+01
+1.9245083564337946e+00
+-2.7118764261535933e+01
+3.8893386048841307e+00
+2.4142453484658697e+00
+-2.1884461232428638e+01
+4.1182005456001667e+00
+2.3394733493605977e+00
+-2.2038579396039705e+01
+1.4183502188900658e+01
+1.6062634120936776e+00
+-2.6517500351390520e+01
+1.3891374561720651e+01
+2.3805159877193431e+00
+-3.0789107945611182e+01
+-6.8852285198072591e+00
+7.6008678560989891e+00
+-4.3120908543000226e+01
+1.1671188553568992e+01
+3.7333422042832272e+00
+-3.7290538713287951e+01
+4.5706798197893832e+00
+2.1105056900132353e+00
+-2.2314770093409816e+01
+1.1781828130849949e+01
+3.4599749741028329e+00
+-3.6876061157570859e+01
+3.1409828050582775e+00
+2.2746131787266508e+00
+-2.2337589969081595e+01
+1.4520198849400051e+01
+6.0143626343338885e-01
+-2.3202719111637201e+01
+1.1467327273657407e+01
+3.3292694285280811e+00
+-3.6527509950568565e+01
+1.4409606957113661e+01
+1.0354756139049699e+00
+-2.5153279161077936e+01
+1.3115522179499960e+01
+2.4921246477641086e+00
+-3.3264434500010061e+01
+-4.5591768128333127e-01
+2.7217450335631632e+00
+-2.2312011179079555e+01
+-1.2568086815555686e+00
+3.1015167214229762e+00
+-2.4106003295397368e+01
+-1.0520050102355203e+01
+7.1275230854840608e+00
+-4.0740950334395919e+01
+-1.0949614302875871e+01
+7.1624061491085529e+00
+-4.0765334669450702e+01
+-1.0949614302875871e+01
+7.1624061491085529e+00
+-4.0765334669450702e+01
+-1.5810563980320391e+00
+3.4706147571449022e+00
+-2.6773153204764117e+01
+-1.6366822737111035e+00
+3.3930177376484729e+00
+-2.6586755487590253e+01
+-1.3878598001274920e+01
+8.6678551439910834e+00
+-4.7207562437120266e+01
+1.4668002150690393e+01
+2.4361998057769255e-01
+-2.3019439645295471e+01
+1.3769185162032127e+01
+1.8366227888951530e+00
+-3.2845305153030047e+01
+-1.0992678836110619e+01
+6.6819499317897053e+00
+-4.0066546472714464e+01
+-7.4485144224202449e+00
+5.9657426083904896e+00
+-4.0001164953761318e+01
+7.1596025513980512e+00
+1.6633488723099072e+00
+-2.5911113131850030e+01
+-8.7248532621165555e+00
+6.0944919161504041e+00
+-3.9704627672144817e+01
+-1.3903407517399479e+01
+6.9016899675755674e+00
+-3.9766880289462804e+01
+1.3498794717928613e+01
+1.5591860404977043e+00
+-3.2316285326635132e+01
+1.4485230456152584e+01
+6.2151071879418573e-01
+-2.6894225323554661e+01
+-7.1752007749220983e+00
+5.7393044750301225e+00
+-4.0055003582283859e+01
+-6.9607963437344278e+00
+5.6125439206740051e+00
+-3.9534075112873182e+01
+-1.0757397484422666e+00
+2.2702064999560418e+00
+-2.2457952739676578e+01
+-7.8296041232715219e-02
+1.9772091877200655e+00
+-2.1406786884238109e+01
+-3.0123995095261571e+00
+3.3369684926696457e+00
+-2.8081817235072972e+01
+1.6575224243448208e+01
+3.8085699398340972e-01
+-2.8871231731287690e+01
+4.8054351899450287e+00
+1.2764394341322893e+00
+-2.2029638148965059e+01
+-1.3588146663990390e+01
+6.4027468163115024e+00
+-3.9218395817829375e+01
+-2.1981016621457270e+00
+2.7856381652386966e+00
+-2.5785788562680775e+01
+-2.1981016621457270e+00
+2.7856381652386966e+00
+-2.5785788562680775e+01
+7.2748164800618182e+00
+1.2680016314183611e+00
+-2.5511561170447667e+01
+2.5458120805674973e+00
+1.4530725391885939e+00
+-2.1662668708900444e+01
+-6.0485742961924966e+00
+5.0562380120723445e+00
+-3.9223433181753855e+01
+-1.6902736518688561e+00
+2.4585663279041201e+00
+-2.4314387876145901e+01
+2.8255150722346771e+00
+1.2538737351436509e+00
+-2.0696876855284103e+01
+2.8255150722346771e+00
+1.2538737351436509e+00
+-2.0696876855284103e+01
+1.4207274268813173e+01
+1.0357356649880738e-01
+-2.6488420132676112e+01
+-6.4437560993745366e+00
+5.0117658027746046e+00
+-3.8617773944100328e+01
+1.2821016884541608e+01
+1.4121760893913058e+00
+-3.4405184330688911e+01
+1.6070982871410173e+01
+2.5050054780760878e-01
+-2.9589807174858187e+01
+1.5623630742589931e+01
+1.7404011069268224e+00
+-4.1181373574960148e+01
+1.3122400379659677e+01
+1.3393244559130104e+00
+-3.4656026917894323e+01
+1.3616110366043632e+01
+7.9047829931060054e-01
+-3.1043655825775154e+01
+-1.7239275449509373e+00
+2.1498091609094669e+00
+-2.3391229221886348e+01
+-6.0731419271976099e+00
+4.7588878974628930e+00
+-3.8963013018409811e+01
+1.2766387368871431e+01
+1.1752836792146397e+00
+-3.4040978280659232e+01
+1.6326271393170970e+01
+-3.1037824895515070e-02
+-2.9414971376876423e+01
+1.2774896991820375e+01
+1.1107861502266558e+00
+-3.4155304639436402e+01
+3.7621810593636611e+00
+9.2437036393526995e-01
+-2.1002145997432944e+01
+7.4194000969956271e+00
+8.0940491563559924e-01
+-2.4872263400685814e+01
+1.5632834925779145e+01
+1.5598953730300141e-01
+-3.0417588039736152e+01
+-3.0404150756357904e+00
+2.5880917075154986e+00
+-2.6594467363676621e+01
+3.9846774563918377e+00
+8.3283332724183767e-01
+-2.1206690535416136e+01
+-4.8308534694888010e+00
+4.0877722483848569e+00
+-3.7422289200967953e+01
+-1.3578056370566657e+01
+5.5351689132159247e+00
+-3.7829513918348262e+01
+-8.8707055690696173e+00
+4.7337754191195138e+00
+-3.7933902854668084e+01
+-1.0990219237138207e+01
+5.0463692149695092e+00
+-3.7852286965162286e+01
+1.4605260273425678e+01
+-6.0957900035126344e-01
+-2.5393066573523253e+01
+-8.7918233542359019e+00
+3.9838331356952112e+00
+-3.2883682081693557e+01
+7.0232117544097488e+00
+5.3928827489363718e-01
+-2.4474515672237192e+01
+-6.4059460262218222e+00
+4.0700514604872007e+00
+-3.7434331533559948e+01
+5.9442707845015610e+00
+5.2244543213050743e-01
+-2.3341485700029992e+01
+-1.1627173384471629e+01
+4.8342314982065941e+00
+-3.7521063210196552e+01
+8.2240933979907704e-01
+9.6671213291513236e-01
+-2.0481593142851466e+01
+2.9434267962737444e+00
+6.2732488345924509e-01
+-2.0544775275097397e+01
+1.4231142935773804e+00
+7.8638125774012180e-01
+-2.0359518179003487e+01
+-8.2718170770607884e+00
+4.0006382091299928e+00
+-3.7238199136351092e+01
+-2.8178454889904163e+00
+1.8334339721392139e+00
+-2.4690495212952356e+01
+-3.2294703590968021e-01
+1.0796916692582079e+00
+-2.1066117084301098e+01
+-1.5648226160346088e+00
+1.3542941132850492e+00
+-2.2500769125308910e+01
+7.1195167672477968e+00
+6.6719189842764356e-02
+-2.3874866499897909e+01
+-7.5129209813652214e+00
+3.6139799759157771e+00
+-3.6863489402435711e+01
+-7.7690589190376871e+00
+3.5914223827346179e+00
+-3.6644790233854366e+01
+1.6817554373377803e+00
+5.3621513173216950e-01
+-2.0309208586441219e+01
+5.6812295438398230e+00
+1.1713329436959166e-01
+-2.2785826455383667e+01
+-8.1781568845811723e+00
+3.6038907185281390e+00
+-3.6546476006213915e+01
+4.1607738332380420e+00
+1.5418417175070995e-01
+-2.1162246009558171e+01
+1.6994008343489547e+01
+-1.2335520066837937e+00
+-2.9683641165354565e+01
+-8.4657570173293095e+00
+3.4629518495137317e+00
+-3.6350968300946327e+01
+1.3635021355466668e+01
+-4.9015890884773117e-01
+-3.2183451962497330e+01
+-8.8958932425044619e+00
+3.1974356373940278e+00
+-3.3377684037778970e+01
+-1.3639815266347860e-01
+6.8328762256438214e-01
+-2.0827532923558639e+01
+1.3833797705450632e+01
+-6.4301223785477846e-01
+-3.2055317870002277e+01
+-3.6509556837132857e+00
+1.5599256571792421e+00
+-2.5517107654263125e+01
+-1.8427279216162549e+00
+1.1061165800118733e+00
+-2.3510992362015763e+01
+-8.7419498321135478e+00
+3.1530022140005523e+00
+-3.5750283945924664e+01
+-3.6274611299157629e+00
+1.3859466186562186e+00
+-2.4986549655773707e+01
+3.0888474692043211e+00
+1.8238701023169528e-02
+-2.1870149405176235e+01
+-5.2447949190647387e+00
+2.2935729326312368e+00
+-3.5447706137014784e+01
+-6.6283371414432422e+00
+2.4743431268876552e+00
+-3.4882688033457491e+01
+-6.0205148585727022e+00
+2.3873311013656124e+00
+-3.5311632464430758e+01
+1.3600998255313257e+01
+-1.1558278991092510e+00
+-3.1689486058105448e+01
+6.7847770827262535e+00
+-7.1311871423635353e-01
+-2.2935235742728047e+01
+1.5417386034707853e+01
+-2.2722538808668267e+00
+-2.3534423655470498e+01
+-8.3705061846746425e+00
+2.4985972564995680e+00
+-3.4921825376829275e+01
+1.3938329039703433e+01
+-1.4358083212171457e+00
+-3.1079568428483519e+01
+1.4987454260714523e+01
+-2.1579824024995280e+00
+-2.6077565851514450e+01
+-1.0095848529064003e+01
+2.6789392248793393e+00
+-3.4828188345992132e+01
+1.5430157801828180e+01
+-2.4285408391872401e+00
+-2.3693451290931289e+01
+1.5502206011595204e+01
+-2.5022928246142717e+00
+-2.3563766411192024e+01
+1.6911217932003087e+01
+-2.2353973607806310e+00
+-3.0167003978022827e+01
+-6.7315271050178831e+00
+1.9402270895092832e+00
+-3.4509537604026434e+01
+1.4299636821244661e+01
+-1.7437008357578674e+00
+-3.1564117873716473e+01
+2.7962440975710732e+00
+-4.8084663667948574e-01
+-2.0518249408110044e+01
+-6.8642128241231273e+00
+1.8407812763553817e+00
+-3.4511729683266772e+01
+7.7851134259597138e-02
+-3.2925807260475941e-02
+-2.0770192929156838e+01
+2.0369923270047665e+00
+-3.8947920164159155e-01
+-2.0319250227980465e+01
+4.9847998730576641e+00
+-8.3627762903925684e-01
+-2.1547393768794752e+01
+-7.2481668959898418e+00
+1.8788085200248512e+00
+-3.5065889537464223e+01
+-1.1209241751763528e+00
+1.1018334388510051e-01
+-2.1640469531580269e+01
+-7.1989438333310387e+00
+1.6676896676553352e+00
+-3.4095539669154299e+01
+-5.9973539687299100e+00
+1.4354085458419605e+00
+-3.4051189133538180e+01
+-8.3995045934521286e+00
+1.8141966249154216e+00
+-3.3974845081003487e+01
+1.5545228391388443e+01
+-2.8760104594445850e+00
+-2.4054949051148821e+01
+-8.1901428760211470e+00
+1.7437511807508834e+00
+-3.4020925140659308e+01
+-8.6453289652181535e+00
+1.8115279109058176e+00
+-3.4070540961887311e+01
+1.5619779883965721e+01
+-2.9171474536114150e+00
+-2.3794672182478138e+01
+-8.6738254490868520e+00
+1.7494458076577029e+00
+-3.3884237819192194e+01
+6.5726886743984210e+00
+-1.3212159629113944e+00
+-2.2181422091929292e+01
+1.2640369414494286e+01
+-2.0292518554533703e+00
+-3.0146394408626435e+01
+-6.1363107777360275e+00
+1.1743393440419776e+00
+-3.3683745792222687e+01
+-2.3953582198042644e+00
+6.8952930520046640e-02
+-2.2449635768551321e+01
+4.4986949162845402e+00
+-1.1669928846883295e+00
+-2.1179796239942178e+01
+-8.3362567862677874e+00
+1.3633713600094541e+00
+-3.3469939450027283e+01
+-2.5801459829129008e+00
+1.0165567176058125e-01
+-2.3009692517287881e+01
+1.5553708741348434e+01
+-3.2151989337041544e+00
+-2.4708164097394732e+01
+-1.9807775636822664e+00
+-1.1173720868842099e-01
+-2.2046999392811017e+01
+4.9857073960320557e+00
+-1.3241407180010603e+00
+-2.1541900882145189e+01
+1.2778422623991579e+00
+-7.4694863588773630e-01
+-2.0531149549359995e+01
+-9.7640617096449862e+00
+1.4076059489855386e+00
+-3.3084572897997141e+01
+-9.7695442148918268e+00
+1.3945812099139967e+00
+-3.3128732690127713e+01
+-7.5851018360579445e+00
+9.5494976250471619e-01
+-3.3151191774181477e+01
+-7.6222627600926307e+00
+9.3221636862033541e-01
+-3.3877845427922971e+01
+-6.7364432882866208e+00
+7.4346887044603471e-01
+-3.3022977680578606e+01
+5.2438321677531743e+00
+-1.6251072764121179e+00
+-2.1445035190222061e+01
+-2.0659024700415429e+00
+-3.8018049583286623e-01
+-2.1853373122531710e+01
+-3.3695711956767509e+00
+-1.4572060691510028e-01
+-2.3091746699073092e+01
+-3.3695711956767509e+00
+-1.4572060691510028e-01
+-2.3091746699073092e+01
+-2.2034639967344805e+00
+-3.5027997316473825e-01
+-2.2399115319079492e+01
+5.8687827126377234e+00
+-1.8069257571333934e+00
+-2.1433682262492663e+01
+5.0886437850515991e+00
+-1.6779274641723441e+00
+-2.1461158494347391e+01
+-6.1806706368305662e+00
+3.8357103333763065e-01
+-3.2446768634084115e+01
+1.5035123971599203e+01
+-3.4402664668547294e+00
+-3.0006782191957992e+01
+5.1294291277798374e+00
+-1.8961918864954679e+00
+-2.1186093319939715e+01
+4.5182742625117953e+00
+-1.8227954122162227e+00
+-2.1171650437455739e+01
+5.4069891397579282e+00
+-2.0002685379905212e+00
+-2.1101168635353893e+01
+5.4069891397579282e+00
+-2.0002685379905212e+00
+-2.1101168635353893e+01
+-7.1787750774636967e+00
+1.5633925058625983e-01
+-3.1969966990377461e+01
+-3.3783896230239816e+00
+-5.2186795322364465e-01
+-2.2513162249028596e+01
+1.1472356428005780e+01
+-3.1516925486289620e+00
+-2.8537656706967805e+01
+-2.5899835784437899e+00
+-7.4070470694082557e-01
+-2.2264836630151354e+01
+-2.5899835784437899e+00
+-7.4070470694082557e-01
+-2.2264836630151354e+01
+-1.4554295269283932e+00
+-9.3937003705848454e-01
+-2.1308527908421567e+01
+2.5646175616148308e+00
+-1.6602164988796486e+00
+-2.0309326681565768e+01
+-1.2542970755847487e+00
+-9.9923254224698077e-01
+-2.1033149077556196e+01
+1.7592138909696349e+00
+-1.5579730370092240e+00
+-2.0363641445577528e+01
+-8.5760714723959595e+00
+1.7449786987226396e-01
+-3.1740172626870585e+01
+-3.4115101433427326e+00
+-7.3201456535523068e-01
+-2.2706332570537285e+01
+-8.6178443171263801e+00
+6.0046556842860740e-02
+-3.1580403258821505e+01
+-7.6573077592152243e+00
+-1.1660405395449502e-01
+-3.1601129387108060e+01
+5.3091712917202849e-01
+-1.4471589167283769e+00
+-2.0429070859033686e+01
+4.9179906982423800e+00
+-2.2304086195748818e+00
+-2.0809236620738268e+01
+1.8016966729854544e+00
+-1.6869091854974310e+00
+-2.0199038258935865e+01
+8.1392645496175609e-01
+-1.5238191190188815e+00
+-2.0363604486503643e+01
+4.9475329445651903e+00
+-2.2837525141545538e+00
+-2.0704261953044522e+01
+-3.3784118603043396e+00
+-8.9661359147066788e-01
+-2.3046333314649381e+01
+2.6762235805953183e+00
+-1.9144869320531710e+00
+-2.0218431517938111e+01
+-3.4252181085140512e+00
+-8.8549116794194405e-01
+-2.2862668579252475e+01
+5.1826998961843334e+00
+-2.4079344787510584e+00
+-2.0614982392099261e+01
+1.4259734798694343e+01
+-4.1096265246258543e+00
+-2.6439403803377157e+01
+3.8892267867452457e+00
+-2.2598863830665867e+00
+-2.0603163627417953e+01
+-1.7911344432668415e+00
+-1.2740549790181355e+00
+-2.1545332475301517e+01
+-8.8642399527852733e-01
+-1.4284779706409478e+00
+-2.0869918096407215e+01
+-1.7007415774898096e+00
+-1.3463449325115102e+00
+-2.1499525195663988e+01
+3.8665198048756899e+00
+-2.2800983238644750e+00
+-2.1244974826658591e+01
+-9.3713794345151591e+00
+-3.1414404718039490e-01
+-3.0725511072612996e+01
+-8.3509059181782384e+00
+-5.5874082864545915e-01
+-3.0881543337841887e+01
+-1.7436163530798348e+00
+-1.4782050329838590e+00
+-2.1389602602031690e+01
+-7.7411024395917503e+00
+-7.1622915363718631e-01
+-3.0783985027368988e+01
+1.4420009557090648e+01
+-4.5681115875335889e+00
+-2.5880297248965675e+01
+-1.0200062043254924e+01
+-3.1460354231545179e-01
+-3.0394413229310558e+01
+-7.4198065974452065e+00
+-8.6657190943456719e-01
+-3.0680717676174819e+01
+1.2197641144182487e+01
+-4.3042033079822577e+00
+-2.7403601654398258e+01
+-1.0100309930609530e+01
+-3.7322029886829333e-01
+-3.0456227057792130e+01
+3.6375855462711963e+00
+-2.5258190889331762e+00
+-2.0252069880510096e+01
+-2.9406277767023794e+00
+-1.4104680401464873e+00
+-2.1529731288493178e+01
+-1.0588375458338730e+01
+-4.1780173826617756e-01
+-2.9976792438375234e+01
+-9.5877433584651719e+00
+-7.1058262224790358e-01
+-3.1578828474899698e+01
+3.3477106508969530e+00
+-2.5965791751324465e+00
+-2.0218821034187165e+01
+-4.8396111052793547e+00
+-1.4756641205395813e+00
+-2.7095947670541765e+01
+-1.2063271749018377e+01
+-4.4212510058858034e-01
+-3.2313046983511484e+01
+-9.4085379745913151e+00
+-8.2665325585753757e-01
+-3.0109967557766922e+01
+1.3866019036544960e+01
+-5.1064002316000598e+00
+-2.7839313091064831e+01
+-7.4507109066388075e+00
+-1.4504834908238797e+00
+-2.9713663502572278e+01
+3.0149538490760381e+00
+-2.8433154555659801e+00
+-1.9868551476170865e+01
+-8.7704872980452091e+00
+-1.2447152773164383e+00
+-2.9625667731499274e+01
+-9.1317004949306990e-01
+-2.2052482329897130e+00
+-2.0401499079284928e+01
+-8.2965235365748899e+00
+-1.3998552196007175e+00
+-2.9583836967583672e+01
+-9.8526248130918752e+00
+-1.2768594353179259e+00
+-3.0831885758795877e+01
+-1.2446305629224449e+01
+-8.8776717349411616e-01
+-3.1501532118982659e+01
+9.0562192573005351e+00
+-4.5159311977070189e+00
+-2.6155463139553103e+01
+-8.8718323474691516e+00
+-1.5118472309278901e+00
+-2.9055919114469564e+01
+-1.3037284172330599e+00
+-2.3774967993553777e+00
+-2.0522939230450831e+01
+-2.0184988630173886e-01
+-2.5527889650803464e+00
+-2.0060570849260404e+01
+-8.6560881759952650e+00
+-1.6444250472793582e+00
+-2.9084494640841651e+01
+-8.5926536947026855e-01
+-2.4741475384355196e+00
+-2.0200941137777317e+01
+1.3146352782891728e+00
+-2.8429107229737869e+00
+-1.9713059303033507e+01
+1.3146352782891728e+00
+-2.8429107229737869e+00
+-1.9713059303033507e+01
+1.8627121363976464e+00
+-2.9434178490778979e+00
+-1.9729359679119238e+01
+-1.1061916391671920e+00
+-2.4295912816513976e+00
+-2.0172496953566529e+01
+-3.3349535770205305e+00
+-2.3184709288730772e+00
+-2.3774047009730960e+01
+-8.3167721826622942e-01
+-2.5283476343917157e+00
+-2.0218797745681265e+01
+2.4463824598002142e+00
+-3.1561986128067345e+00
+-1.9995482034400084e+01
+-1.1913952872879671e+01
+-1.3209341280699129e+00
+-3.0862121464458518e+01
+-9.0592490814965760e+00
+-1.7956719092714515e+00
+-2.8887051438963699e+01
+-1.1776230314098907e+01
+-1.5233972866482266e+00
+-3.1117303872792196e+01
+-1.1076479647051434e+01
+-1.4067221967454862e+00
+-2.8432086981604304e+01
+-1.2663311890900728e+01
+-1.1267217036468082e+00
+-2.7457645299748997e+01
+-9.0092751603542229e+00
+-1.9277824855922627e+00
+-2.8429133240978601e+01
+-9.3292941903724138e+00
+-1.8915557683122091e+00
+-2.8376455185315365e+01
+1.8962349196066044e+00
+-3.4250744637722437e+00
+-2.0324715679572666e+01
+-8.0639080484247661e+00
+-2.3941341404530303e+00
+-2.9264676770453551e+01
+1.0786732157981042e+01
+-5.6577283455217824e+00
+-2.5434334340153001e+01
+-6.7789807715964594e+00
+-2.7379580519055318e+00
+-2.8513410896723713e+01
+5.3975502341884720e+00
+-4.4725538036984887e+00
+-2.2829943784514640e+01
+1.0671719730015237e+01
+-5.7912368900195519e+00
+-2.5221550885403026e+01
+1.1292543837636099e+01
+-5.9371799859657139e+00
+-2.5199313360659751e+01
+4.5027694809190235e+00
+-4.4842166078693886e+00
+-2.2350755220839297e+01
+-2.7794493985995108e+00
+-3.2863770918246598e+00
+-2.3479983018858860e+01
+1.1802756969931117e+01
+-6.0940786253074126e+00
+-2.3851425000818828e+01
+1.6255612449309407e+00
+-3.9514459736138043e+00
+-2.0845710325685282e+01
+-8.9532337064173380e+00
+-2.7704673555857404e+00
+-2.7154519958122084e+01
+-9.8068983772320018e-01
+-3.7085914511379112e+00
+-2.1542963086169980e+01
+-4.8652089092487500e+00
+-3.5191170253922937e+00
+-2.6371894510254268e+01
+-1.0501362467665386e+01
+-2.5097631495800701e+00
+-2.6850896210263691e+01
+-1.0501362467665386e+01
+-2.5097631495800701e+00
+-2.6850896210263691e+01
+-9.1655897073962098e+00
+-2.9195758998009045e+00
+-2.6960621230466622e+01
+1.0447729547795992e+01
+-6.4037440298740025e+00
+-2.3946253941230797e+01
+2.1241446153013666e+00
+-4.6592395021614230e+00
+-2.1373328866930095e+01
+-1.0463808953659044e+01
+-2.8549810925177850e+00
+-2.6317079894230297e+01
+-6.8547620465634536e+00
+-3.6600914001526546e+00
+-2.6588108834638120e+01
+-8.7740608260834883e+00
+-3.5048430582818355e+00
+-2.7755941205394699e+01
+6.7525293150956756e-01
+-4.4109212766963299e+00
+-2.1263107883596501e+01
+1.8026796889088279e+00
+-4.7927597250528704e+00
+-2.1476123893469712e+01
+-7.9938263142392625e+00
+-3.5844336154382450e+00
+-2.6376311147086675e+01
+9.7470029475819668e+00
+-6.8462483637536184e+00
+-2.3777473609667691e+01
+-1.1581850038223635e+01
+-2.8130230572135639e+00
+-2.5155410990115151e+01
+9.7481445488805267e+00
+-6.9138938860221559e+00
+-2.3789660430000630e+01
+-8.5688284420252536e+00
+-3.6685752435855776e+00
+-2.5956893462191221e+01
+8.0582065949126740e+00
+-6.6517045768163241e+00
+-2.3726389202953552e+01
+1.2810887891252085e+00
+-5.1926833956848641e+00
+-2.1720721670406508e+01
+6.0977968927931068e+00
+-6.4491945458095978e+00
+-2.2929846113480068e+01
+7.0434933866833100e+00
+-6.8494303159169432e+00
+-2.3369380011715457e+01
+7.1028844148760673e+00
+-6.8986171569044759e+00
+-2.3496662105856320e+01
+6.3498133527474980e+00
+-6.7500184727407744e+00
+-2.2934255923991579e+01
+8.5267430668379376e+00
+-7.3033021678832153e+00
+-2.2971843531800285e+01
+-2.1480983979425381e+00
+-5.0854748291708374e+00
+-2.2066459937414887e+01
+3.1467406412372934e-01
+-5.6582425550947484e+00
+-2.1468308028702921e+01
+6.9445842037910632e-01
+-5.7804061629262016e+00
+-2.1339874667842999e+01
+6.0355039986745220e+00
+-7.1635158171283688e+00
+-2.2706033334590277e+01
+-1.6184259045288989e+00
+-5.4462012088266283e+00
+-2.1889565461298009e+01
+8.1350287142575972e+00
+-7.7101864765279462e+00
+-2.2390501249298111e+01
+-2.1406468997234835e+00
+-5.6876346357679148e+00
+-2.2910723067312773e+01
+-1.5762029852345794e+00
+-5.8478655826192805e+00
+-2.2590414928931729e+01
+-7.4831245982839114e+00
+-4.9581087366137000e+00
+-2.4415264239276109e+01
+-4.3559704301728503e+00
+-5.5392649140003796e+00
+-2.3861272305359865e+01
+-8.2836209037097301e+00
+-4.8050795255095027e+00
+-2.4090746401592245e+01
+-8.2836209037097301e+00
+-4.8050795255095027e+00
+-2.4090746401592245e+01
+-7.4167172202382936e+00
+-5.0612274528984118e+00
+-2.4311651627726068e+01
+-6.4546716996729652e+00
+-5.3191305296409235e+00
+-2.4107496677701398e+01
+-9.5563569596193449e+00
+-4.5861268441141050e+00
+-2.3510363706870709e+01
+-6.0858398454634628e+00
+-5.4811079920347199e+00
+-2.3954016657089984e+01
+-1.0803204420185645e+01
+-4.3163745005868162e+00
+-2.2918935573664722e+01
+-4.7087058361934035e+00
+-5.9192843110444731e+00
+-2.3613504973880666e+01
+7.3562961396171955e+00
+-7.9541850176169415e+00
+-2.1271674123108070e+01
+-9.2605637182730458e+00
+-4.9207766006450653e+00
+-2.3166945406415664e+01
+-1.0950123216930301e+00
+-6.4728136861257335e+00
+-2.2360537802723371e+01
+5.1945959562275545e+00
+-7.7242614344319103e+00
+-2.1940556749538572e+01
+8.3979069784752891e-01
+-6.8259309681232381e+00
+-2.1958211922705203e+01
+-1.1177004244229025e+00
+-6.5269666094834164e+00
+-2.2320277160401343e+01
+4.9383519579933459e+00
+-7.7267935520973623e+00
+-2.1805331652680909e+01
+-2.8797933037232999e-02
+-6.7056261497782508e+00
+-2.1779688815977238e+01
+-8.4565751121114676e+00
+-5.4470219529880382e+00
+-2.2680240437513490e+01
+-3.3786345936908795e+00
+-6.5979712079563475e+00
+-2.2791550424933959e+01
+-7.5296364623948415e+00
+-5.7315151048634698e+00
+-2.2837278403986808e+01
+-8.5499916112253587e+00
+-5.4947975637215203e+00
+-2.2651624761175508e+01
+-7.3297217005757949e+00
+-5.8266272855428634e+00
+-2.2823030735346929e+01
+-3.8898447146591439e+00
+-6.5483235438724838e+00
+-2.2747694988731759e+01
+-4.4827770706211734e+00
+-6.4433748584282347e+00
+-2.2776775293674110e+01
+-5.6180549781234141e+00
+-6.5797645211280749e+00
+-2.3898256318078793e+01
+-4.4071794191125964e+00
+-6.5181166414296854e+00
+-2.2702243539068636e+01
+-1.0896622403781497e+00
+-7.1875647038095529e+00
+-2.1656717554718682e+01
+4.4477635638467481e+00
+-8.2280216751585762e+00
+-2.0940601734865428e+01
+-5.8409459512866935e+00
+-6.4643182763165710e+00
+-2.2464574204253502e+01
+-3.9367088820057963e+00
+-6.8206078367862588e+00
+-2.2275176942664785e+01
+-7.0200311604976200e+00
+-6.2070317544011750e+00
+-2.2286539121555897e+01
+-5.3526808429145518e+00
+-6.5998359421376041e+00
+-2.2417884143319210e+01
+8.4050875082008574e+00
+-9.2663169254504769e+00
+-2.0922353280062961e+01
+1.6391854343594485e+00
+-7.8684387666329805e+00
+-2.1128740763776740e+01
+9.9335261374584469e+00
+-9.7888469848785462e+00
+-2.1098275675959812e+01
+8.2379834372129306e+00
+-9.3023285698232083e+00
+-2.0780921291277902e+01
+-1.0017759439551172e+01
+-5.5246025721625482e+00
+-2.1195210108198808e+01
+-3.8203955496070683e+00
+-7.4359443065355890e+00
+-2.2618060833628391e+01
+-1.7598689355796302e+00
+-7.5248975938187819e+00
+-2.1605390638423845e+01
+-9.6754734334803825e+00
+-5.6666159205898801e+00
+-2.1202480146755491e+01
+-7.5232506757229123e+00
+-6.3246012518488186e+00
+-2.1771989752453024e+01
+-7.5232506757229123e+00
+-6.3246012518488186e+00
+-2.1771989752453024e+01
+1.6325556275660391e+00
+-8.1192317319588323e+00
+-2.0995013058347755e+01
+6.0402003875899775e+00
+-8.9763153742303139e+00
+-2.0468748357814611e+01
+-6.4151341761658731e-01
+-7.7415742558199554e+00
+-2.1394588010530029e+01
+8.1896185036339126e+00
+-9.5300010925856036e+00
+-2.0505691152324484e+01
+-1.2330253548575694e+00
+-7.6694774788324684e+00
+-2.1467146224637531e+01
+1.4454215556562335e+00
+-8.0812430042829995e+00
+-2.0850247103344216e+01
+-8.2446015776125705e+00
+-6.1511023131475850e+00
+-2.1536656570604240e+01
+-5.5873777683651129e+00
+-7.1766493499909867e+00
+-2.2780077815689445e+01
+-7.5120173186056212e+00
+-6.4159280722256788e+00
+-2.1708108638265376e+01
+5.1091927678313978e+00
+-8.7311835209313262e+00
+-2.0151826471060847e+01
+-4.8085491165135508e-01
+-7.8560012971981710e+00
+-2.1256271421250457e+01
+-3.7479897699401132e-01
+-7.9040024231487500e+00
+-2.1159666751620840e+01
+-1.0598962024113872e+00
+-7.7511446197895184e+00
+-2.1139537939975341e+01
+7.6046696358504757e+00
+-9.4956823804763246e+00
+-2.0289535304563927e+01
+7.6046696358504757e+00
+-9.4956823804763246e+00
+-2.0289535304563927e+01
+-8.3245071107779047e+00
+-6.2232636594316411e+00
+-2.1332638967586057e+01
+-3.1632858500910868e-02
+-7.9782785557504585e+00
+-2.1037276275581153e+01
+-7.6446914757254403e+00
+-6.4542662297788196e+00
+-2.1584025206298637e+01
+-4.0320623585568631e+00
+-7.2755641678109644e+00
+-2.1532660372838524e+01
+1.8572881123291600e+00
+-8.3297345709597739e+00
+-2.0574083756451163e+01
+-1.7032779533794071e+00
+-7.7333616822697229e+00
+-2.1204344590125974e+01
+4.8129964134544645e+00
+-8.8935460228428216e+00
+-2.0120146505002154e+01
+2.0252101669369740e+00
+-8.4172816139925715e+00
+-2.0603886359971469e+01
+1.5168108606329940e+00
+-8.2835670657553528e+00
+-2.0526929406390931e+01
+-5.2282416372522569e+00
+-7.1457251545970379e+00
+-2.1323456116262626e+01
+3.3243832340637658e+00
+-8.7058951227706078e+00
+-2.0134668269508605e+01
+4.8509538833384775e+00
+-9.0341572107338504e+00
+-1.9905778089106644e+01
+-5.3136953446277762e+00
+-7.2043091658135205e+00
+-2.1243744182615369e+01
+4.4890884090878229e+00
+-9.0278240977316528e+00
+-1.9902504255957190e+01
+-7.6462038983987943e+00
+-6.6481541400683755e+00
+-2.1012640121419519e+01
+-6.2666889283116278e+00
+-7.0540355097637812e+00
+-2.1125533743809488e+01
+3.2120184243711862e+00
+-8.8349762326903054e+00
+-1.9927029658864633e+01
+-4.2348209385538294e+00
+-7.5167796293035121e+00
+-2.0936902431410108e+01
+4.0003687413150368e+00
+-8.9916025813010911e+00
+-1.9720669108870890e+01
+3.4881958498220174e+00
+-8.9433436720380772e+00
+-1.9689740984243191e+01
+6.4696073066770365e+00
+-9.7005145444600327e+00
+-1.9568726303729164e+01
+1.6065835934410682e+00
+-8.6838630138885247e+00
+-1.9940483812219810e+01
+5.4065680955093509e-01
+-8.4970858138980301e+00
+-2.0097294596645622e+01
+3.3493115933072519e+00
+-9.0416820472558239e+00
+-1.9627875705363266e+01
+-5.6212111648127978e+00
+-7.4347612765465403e+00
+-2.0656499317990058e+01
+1.8362218511795887e+00
+-8.8335299557186158e+00
+-1.9708381898274595e+01
+1.8477423691895194e+00
+-8.8650593820630768e+00
+-1.9783811728823839e+01
+-9.3759209395508094e+00
+-6.3458322683037487e+00
+-1.9971027252198791e+01
+3.1499383403387013e+00
+-9.0867680503725747e+00
+-1.9506198559438737e+01
+6.7421419590953082e+00
+-9.9440550504595606e+00
+-1.9438953933029872e+01
+3.9095248055039233e+00
+-9.2542370042832260e+00
+-1.9421482684333657e+01
+-3.9416805577841840e+00
+-7.8055110263665659e+00
+-2.0491754829072956e+01
+7.1676752618656892e+00
+-1.0094125682063696e+01
+-1.9447362174500508e+01
+-4.9002382772106658e+00
+-7.6498525361631122e+00
+-2.0569447817567021e+01
+2.9109488640485282e+00
+-9.1336925074002782e+00
+-1.9479635276963659e+01
+-3.6777015988179587e+00
+-7.9231906070857425e+00
+-2.0281656768008769e+01
+2.4951614414175407e+00
+-9.1016940172325569e+00
+-1.9436632214912780e+01
+-1.1044357422556885e+00
+-8.4344557998907579e+00
+-1.9894331472737967e+01
+-4.4940178043204302e+00
+-7.8345432005882678e+00
+-2.0236897315030173e+01
+-9.0389875027805522e-01
+-8.5676017476971520e+00
+-1.9686174126064842e+01
+2.5667731259526576e+00
+-9.2851403472427734e+00
+-1.9145645436572586e+01
+4.5692521702301747e-01
+-8.9028138643078805e+00
+-1.9394400888337607e+01
+2.6320125271284822e+00
+-9.4401472748347945e+00
+-1.8901134916769937e+01
+-3.6233533669821445e+00
+-8.2893662188154682e+00
+-1.9512094822364229e+01
+2.5096007226526384e-01
+-9.0575479027677961e+00
+-1.9016013585115950e+01
+2.7360971236038073e-01
+-9.1351282790457145e+00
+-1.8881110122019138e+01
+-3.7074182923141250e+00
+-8.5659676860054894e+00
+-1.9121734580027631e+01
+-4.3391372379023840e+00
+-8.5419565015725176e+00
+-1.8970063733471065e+01
+2.7535955581231346e+00
+2.1162462306909589e+01
+-5.2946756058449800e+01
+6.4835857526535556e-01
+1.9136373918243958e+01
+-4.8569507387885103e+01
+1.1889473649601978e+01
+7.8119385209940306e+00
+-2.4288388651138430e+01
+7.9441267317515587e+00
+2.0535501382375724e+01
+-5.4226227483777201e+01
+1.1796642850599692e+01
+7.9451797538316393e+00
+-2.4679487093378373e+01
+1.0643877649259519e+01
+2.2007331493291066e+01
+-5.9847248778682932e+01
+1.5726394718182323e+01
+2.0527955730191778e+01
+-5.8674082562542189e+01
+9.0462463872728147e+00
+1.9471411983486931e+01
+-5.5021355725753615e+01
+7.0771164212982205e+00
+1.8814384059642617e+01
+-5.3684106628571861e+01
+7.6141872896123411e-02
+1.8468569613163726e+01
+-5.1264233833109564e+01
+-5.0188891281278893e+00
+1.5998453904741213e+01
+-4.3339606223427801e+01
+-6.8831759032019137e+00
+1.6013187721284186e+01
+-4.2507628353371992e+01
+-6.9482626951620077e+00
+1.6182269704678653e+01
+-4.2952181893527033e+01
+-9.3805843545828012e+00
+1.5344904656871011e+01
+-4.0115985476608024e+01
+1.4606292106617762e+00
+1.8798390641515731e+01
+-5.3313762969609968e+01
+1.0651041500777806e+01
+2.0944465528042524e+01
+-6.3359322039277181e+01
+-9.6666934842151040e+00
+1.4942420133351369e+01
+-4.0637954818561255e+01
+6.0194423766762943e+00
+1.7785798349486214e+01
+-5.4512565289515528e+01
+4.4745589877198064e+00
+1.7287668537239583e+01
+-5.4178103293758433e+01
+1.2663545761559694e+01
+9.2237698722047714e+00
+-3.4808746930913181e+01
+1.5195142437602684e+01
+9.6177446264060649e+00
+-3.7517532824833332e+01
+8.7515867324469117e+00
+1.6290856992988203e+01
+-5.4767701466602389e+01
+-8.5335808087011564e+00
+1.4377245535427793e+01
+-4.3017491003219405e+01
+1.5048477776020997e+01
+9.4885170897746249e+00
+-3.7643794437128136e+01
+-1.0775917694010900e+01
+1.3748433470808918e+01
+-4.1052320179411907e+01
+-1.1494312806510790e+01
+1.3913685173475152e+01
+-4.1379212651242206e+01
+6.0219513933997389e-02
+1.5164551773928130e+01
+-5.0411323243562762e+01
+-1.1269205725877928e+01
+1.3656106095855209e+01
+-4.0741746098333728e+01
+1.2410316948767235e+01
+5.8874354761933922e+00
+-2.6288005323285795e+01
+-4.3622087587504667e-02
+1.5017557318524423e+01
+-5.0695286180041364e+01
+1.3610206800880269e+01
+7.9026595407822091e+00
+-3.4249824843207684e+01
+-6.7763351099861913e+00
+1.3460430335342735e+01
+-4.4265737916122539e+01
+-1.0675200149667994e+01
+1.2400668175617922e+01
+-3.9988369097938524e+01
+1.0253067122372292e-01
+1.4154761881526625e+01
+-5.2054023932607436e+01
+1.5230590650254925e+00
+1.3467845255481880e+01
+-5.0763696029968365e+01
+-9.8363386105313939e+00
+1.2247086460816494e+01
+-4.1573241769203797e+01
+-5.7047966750352945e-02
+1.2910007449374046e+01
+-4.9379754121518850e+01
+-5.7047966750352945e-02
+1.2910007449374046e+01
+-4.9379754121518850e+01
+-5.0035947832216836e+00
+1.3760206584351113e+01
+-4.9849374088094997e+01
+-3.8230856071692201e+00
+1.4024927156254289e+01
+-5.1631889840333884e+01
+2.6723379646518159e+00
+1.2032578277970307e+01
+-4.8472037564784777e+01
+-1.1100403896899182e+01
+1.2659340341025210e+01
+-4.3616974617434934e+01
+1.0902073493201145e+00
+1.2335888755799576e+01
+-4.8978850204959556e+01
+1.2873699797402621e+01
+9.7238615042501415e+00
+-4.5752381025728582e+01
+8.7962738979594146e+00
+1.0311355256508589e+01
+-4.6428535445783524e+01
+1.3712883309012707e+01
+4.1265911625640666e+00
+-2.5459291225793610e+01
+1.0170376288867825e+01
+9.9917056003882916e+00
+-4.6080431861455658e+01
+9.7132102870764925e+00
+9.5704550229283303e+00
+-4.5069021383356372e+01
+-1.3924638320740533e+01
+1.3420966145482900e+01
+-4.7444988372627122e+01
+-1.3924638320740533e+01
+1.3420966145482900e+01
+-4.7444988372627122e+01
+-3.6829288602958830e+00
+1.2354238252169608e+01
+-4.9705163335166795e+01
+-8.1882969790776450e+00
+1.1717493700090566e+01
+-4.5058670290131609e+01
+-2.1993913344077431e+00
+1.1972987444596399e+01
+-4.9267304094508418e+01
+-1.1444243693909916e+01
+1.0760130089552558e+01
+-3.9547221529074939e+01
+-1.8159284310906088e+00
+1.1293584651110285e+01
+-4.7325019259497381e+01
+1.2094872005157873e+01
+8.5254268121529151e+00
+-4.4061936193526492e+01
+1.2094872005157873e+01
+8.5254268121529151e+00
+-4.4061936193526492e+01
+1.5311925111390751e+01
+4.2444407898595742e+00
+-2.8824604955892575e+01
+-1.1914583258592399e+01
+1.1259434633377719e+01
+-4.1871195512793342e+01
+-1.2155224781359644e+01
+1.1901514020633069e+01
+-4.3990322120872619e+01
+1.4273675738196633e+01
+3.1577566083318569e+00
+-2.3870437357568509e+01
+-4.4231085438984277e+00
+1.2028862412888445e+01
+-4.9903333368030196e+01
+-9.8126165674212604e+00
+1.2429168225494388e+01
+-4.8952245499871893e+01
+1.3916292726808900e+01
+3.4563794569770976e+00
+-2.5653718368798927e+01
+-5.7915863526719082e+00
+1.2119599113593814e+01
+-5.0483900599008187e+01
+-1.0630592302552566e+01
+1.2406327262543170e+01
+-4.9093482553254475e+01
+-3.7516305166348798e+00
+1.0779269658642969e+01
+-4.6793396525259418e+01
+1.4962052598175720e+01
+3.3117083365401223e+00
+-2.6175752898012810e+01
+-1.1783115990419228e+01
+1.2356433821445506e+01
+-4.8600768255991547e+01
+-8.1920166889131867e+00
+1.2198026827653214e+01
+-5.0285015458515382e+01
+1.2801151512401587e+01
+4.6018393456518947e+00
+-3.0785156743325398e+01
+-1.3429103126619061e+01
+1.2040225424785929e+01
+-4.8070469653879940e+01
+-1.0838879240435094e+01
+1.1940509133865330e+01
+-4.9094035908276751e+01
+-1.0649019952919769e+01
+1.1610963092341713e+01
+-4.7292429592602304e+01
+-1.2006119417508373e+01
+1.1511384008211650e+01
+-4.6422351034384285e+01
+1.3467178387504919e+01
+6.5847378174204474e+00
+-4.1238461623647446e+01
+1.4027477401038450e+01
+3.0581265813306797e+00
+-2.5877516069101148e+01
+1.3732905901439421e+01
+2.9367158194687661e+00
+-2.5391276612707166e+01
+-9.6931652783484523e+00
+1.1414367859731328e+01
+-4.8114328610344707e+01
+-1.1051255318512718e+01
+1.1270356171204449e+01
+-4.7371934979357867e+01
+-1.2428186183664002e+01
+1.1024166814456732e+01
+-4.5608030165895848e+01
+2.3504114608184086e+00
+8.6703514034626998e+00
+-4.4909115142595311e+01
+-6.6763146977383023e+00
+1.0785031363941533e+01
+-4.8360894998051165e+01
+-8.9968844036374591e+00
+1.0299357712284330e+01
+-4.5531109310452756e+01
+-1.0564501656616503e+01
+1.1370399366483314e+01
+-4.9121116217075148e+01
+-1.3875094544755187e+01
+1.0251678673992982e+01
+-4.2656357560988596e+01
+-1.5072963931984136e+00
+8.6346531936810038e+00
+-4.3870698957241622e+01
+-6.1374447673476888e+00
+9.4058553944938446e+00
+-4.4516987125745494e+01
+-1.0599393333815133e+01
+1.1156267555835434e+01
+-4.9495927869551892e+01
+1.3650557423841613e+01
+5.4631336111312256e+00
+-3.9730642608978719e+01
+-1.2775623591002706e+01
+1.0927936450409343e+01
+-4.6852665222532757e+01
+-6.0871583487896928e+00
+9.2584073730420453e+00
+-4.4382451847394059e+01
+1.3394985836002304e+01
+5.4580692316392350e+00
+-3.9591458670732329e+01
+-1.1573518509841195e+01
+1.1019294138601408e+01
+-4.9115373250029165e+01
+-1.1631298780142643e+01
+1.1017437737187819e+01
+-4.9168027274865338e+01
+-1.1286739238738651e+01
+1.0807725312306895e+01
+-4.9167745673360351e+01
+-6.6027184750236918e+00
+9.3524352529368890e+00
+-4.5157765394493971e+01
+-1.3022356424329228e+01
+1.0937366490722299e+01
+-4.8760178741575324e+01
+3.9994360212706093e-01
+3.7360950742783863e+00
+-2.3194428062227839e+01
+-7.7019470373859358e+00
+9.6692088802467424e+00
+-4.6312393519780514e+01
+-1.2017837180554451e+01
+9.3463971452424932e+00
+-4.2232502886657784e+01
+-1.2568982761319511e+01
+1.0727425115374020e+01
+-4.9290249399435773e+01
+-7.1222443578216650e+00
+9.0046767844628821e+00
+-4.5317889882404529e+01
+1.2355700483730359e+01
+4.6835435601873492e+00
+-3.8591155799101607e+01
+-3.3772186847607415e+00
+8.2745586259574040e+00
+-4.4456133234026169e+01
+-1.6934939891708524e+01
+1.0092732195268091e+01
+-4.3493674211037685e+01
+-1.6934939891708524e+01
+1.0092732195268091e+01
+-4.3493674211037685e+01
+-1.4189745873336424e+01
+8.4991128000271718e+00
+-3.8679626261806860e+01
+-7.8628542242359112e+00
+8.8650682005567614e+00
+-4.5449189398725792e+01
+-1.3395236111309780e+01
+1.0287973942290099e+01
+-4.8573566013807650e+01
+-5.5737688050334082e+00
+7.8815608959080965e+00
+-4.2906259032801493e+01
+1.2231065349965482e+01
+4.3278701658238425e+00
+-3.8162523657028942e+01
+-1.3096599240461207e-01
+3.2473008861804828e+00
+-2.2639356615484473e+01
+1.4134198448527641e+01
+1.3800545628115750e+00
+-2.4338923334097501e+01
+-1.4020958870504955e+01
+8.6701088616163133e+00
+-4.0681235925346606e+01
+1.2893211744866310e+01
+2.7492764930321956e+00
+-3.0678959608088345e+01
+1.5062071254121319e+01
+3.8839099567865580e+00
+-3.9443856750762485e+01
+1.4032336421905116e+01
+1.2819973146134129e+00
+-2.4723596277213275e+01
+-8.9065469526246623e+00
+8.4319151954300722e+00
+-4.4769940298248301e+01
+-1.2336579896253406e+01
+8.9207997931503797e+00
+-4.5709516797548908e+01
+1.2032228214170173e+01
+3.5669879561973659e+00
+-3.6935779084081062e+01
+-1.5989041286760758e+01
+9.0345300745038255e+00
+-4.4845154955975069e+01
+4.5438632245911297e+00
+2.5847373286313080e+00
+-2.4997656588606009e+01
+4.3446462677413100e+00
+2.0076931263381663e+00
+-2.2026180771718522e+01
+4.8332443560644145e-02
+2.4795309840710646e+00
+-2.1573378042915916e+01
+-1.0881949092864229e+01
+7.2799312714768751e+00
+-4.1246005978355207e+01
+-1.3882687006282127e+01
+8.7316177477143242e+00
+-4.6991642732409574e+01
+-1.3882687006282127e+01
+8.7316177477143242e+00
+-4.6991642732409574e+01
+5.8785228285108939e+00
+2.3491022484847766e+00
+-2.6453487287121504e+01
+4.5262988582886550e+00
+1.8064322359413396e+00
+-2.2148559374344529e+01
+-1.3724704944520925e+01
+8.3743449405711399e+00
+-4.6688720393049508e+01
+-6.9637100374906220e+00
+6.0843104033306616e+00
+-4.0136719749224412e+01
+1.4706177684894788e+01
+9.2916345224544006e-02
+-2.3137879034228536e+01
+8.7177765423125730e-01
+1.9917661571491989e+00
+-2.0998489958580564e+01
+2.7031655197266486e+00
+2.0614434038919502e+00
+-2.3169992427908610e+01
+1.5723258888875858e+01
+9.7450241405582649e-01
+-2.9746683200537031e+01
+2.0707633926350897e+00
+1.6933468377091090e+00
+-2.0610929925623292e+01
+-6.2332692529647993e+00
+5.7460698344004397e+00
+-3.9873264379911426e+01
+6.2000823972156880e+00
+1.9337849678911680e+00
+-2.6793313162323109e+01
+1.5665497496270747e+01
+2.2283174590353521e+00
+-4.0415615793212453e+01
+1.2075286505374237e+01
+2.0602256729429880e+00
+-3.5161092962553390e+01
+2.1836458274097557e+00
+1.4597976642165480e+00
+-2.0568323573456226e+01
+1.2173078088187481e+01
+1.7543871643205216e+00
+-3.4788549955444950e+01
+1.1340870357216599e+00
+1.5309331784319742e+00
+-2.0623552065534032e+01
+1.4206610657819285e+01
+2.5371635537441595e-02
+-2.6322215993916249e+01
+1.6859292419043641e+01
+3.0954678865803466e-02
+-2.8796719686007119e+01
+-4.9412412324474246e+00
+4.7014893791160413e+00
+-3.8593416717042409e+01
+1.4537313522613140e+01
+8.2056870170799934e-01
+-3.2159918456481606e+01
+-1.9032122339238828e+01
+8.2399228374747899e+00
+-4.8960310434998718e+01
+1.4611883551769454e+01
+7.5232804967130740e-01
+-3.2399389845052447e+01
+1.3594709051364021e+01
+6.4900979211518994e-01
+-3.0984154771676334e+01
+1.3594709051364021e+01
+6.4900979211518994e-01
+-3.0984154771676334e+01
+-8.4056311431308544e+00
+5.0115890534127825e+00
+-3.8566167159721999e+01
+-1.1847306248862635e+00
+1.8809562732699989e+00
+-2.2678258377954052e+01
+1.2406953818222130e+01
+1.0778029713111983e+00
+-3.3964263006045648e+01
+1.4750923428024887e+01
+-2.2739381423612087e-01
+-2.6834328477947128e+01
+1.4058753211071899e+01
+6.2201153325381964e-01
+-3.3524530505084599e+01
+1.4372399015486396e+01
+-2.3250470861611069e-01
+-2.8515383181012190e+01
+1.4960600442427531e+01
+-1.0422324225646249e+00
+-2.3842274604931170e+01
+-6.5776945196180687e+00
+3.8985610466153013e+00
+-3.7771761882121012e+01
+-6.5386613444575019e+00
+3.8602685935124876e+00
+-3.7285354813481469e+01
+3.9244497651378900e+00
+4.4482106832822083e-01
+-2.0988636075550190e+01
+1.4274749089620887e+01
+-4.0304939316634775e-01
+-3.1813141721242118e+01
+-6.7937309991570602e+00
+3.1865098952995128e+00
+-3.6342676770777068e+01
+1.4537932048950024e+01
+-1.1159845732523688e+00
+-2.9127982097569689e+01
+1.0976274497166054e+00
+4.6572377219159616e-01
+-2.1114112379297161e+01
+1.4603274793536203e+01
+-9.5832684681941183e-01
+-3.2259715867585570e+01
+6.8714599182702685e+00
+-3.9022687134904188e-01
+-2.3324576125209319e+01
+1.7591506256489242e-01
+4.6081910933850068e-01
+-2.0590539571281095e+01
+-1.0146635587101089e+01
+3.2758476825195486e+00
+-3.5547378785141660e+01
+-5.2136515777591175e+00
+2.3900139794335344e+00
+-3.5419405037658876e+01
+-2.0724653555147734e+00
+9.6853069954472182e-01
+-2.3237824914478900e+01
+-1.9288866640457500e+00
+8.9776379699045339e-01
+-2.2961904958346995e+01
+-8.0916894208656931e+00
+2.6927314437319754e+00
+-3.5350451543353294e+01
+-7.1734872384419601e+00
+2.5130621513113254e+00
+-3.6007001626963600e+01
+-8.3745810740858904e+00
+2.6775412518144006e+00
+-3.5319454186905290e+01
+-1.3979353611011364e+01
+3.8913422265085842e+00
+-4.0380621106664073e+01
+1.4025906865680321e+01
+-1.4814951275126520e+00
+-3.1869721921688356e+01
+1.3059628466208745e+01
+-1.5089470453727092e+00
+-3.0820956409175736e+01
+1.3059628466208745e+01
+-1.5089470453727092e+00
+-3.0820956409175736e+01
+-1.9616136176102712e+00
+5.0799091970813359e-01
+-2.2815524437135430e+01
+9.9130881323308129e-01
+-6.1974443468649762e-02
+-2.1179040579968767e+01
+2.1564471668824221e+00
+-3.3603230581059040e-01
+-2.1506309570058104e+01
+-1.9765055456976952e+00
+3.5364706451284350e-01
+-2.2566354717724639e+01
+-1.3615434611526297e+01
+2.8698149232040437e+00
+-3.3355671334750888e+01
+-1.3615434611526297e+01
+2.8698149232040437e+00
+-3.3355671334750888e+01
+-1.4998653081919926e+00
+8.6762752574623698e-03
+-2.2089132885016866e+01
+1.3931295002872352e+01
+-2.3519720405777362e+00
+-3.0077741183152650e+01
+-9.6729696357782249e+00
+1.5585767936840875e+00
+-3.3474348058440938e+01
+-9.6393058949612591e+00
+1.5547042600081236e+00
+-3.3327744608259401e+01
+-8.6932675687998628e+00
+1.3030946473055940e+00
+-3.3186949405487617e+01
+-6.7910547733348041e+00
+9.5412425383995803e-01
+-3.3508124869344975e+01
+-1.8502617157804588e-01
+-5.4153627500029766e-01
+-2.0914131072100226e+01
+1.5188314953776375e+01
+-3.2506276495696951e+00
+-2.7165184988380076e+01
+1.5616817572871485e+01
+-3.3986013642469346e+00
+-2.4485352830421419e+01
+-7.7818684174658772e+00
+9.9266960435281870e-01
+-3.3974616322201705e+01
+-9.4342233049556974e+00
+1.2851046962795070e+00
+-3.3119268472798616e+01
+-8.3504637939772532e+00
+1.0768257100172383e+00
+-3.2950047995046816e+01
+-2.5728729913965274e+00
+-1.7949727821496059e-01
+-2.2819143152307959e+01
+5.3095046938049180e+00
+-1.5687371131401699e+00
+-2.1637268116403988e+01
+-8.2288438895389895e+00
+1.0204568589558909e+00
+-3.3787895533334833e+01
+-1.1199790822795928e+00
+-5.4670836132378664e-01
+-2.1513403453731726e+01
+-3.0013853180892864e+00
+-2.7209370802088478e-01
+-2.2903265505424191e+01
+-1.6229715438276480e+00
+-6.4869872832509812e-01
+-2.1383465665342527e+01
+-2.1881679283552606e+00
+-5.5713508197279138e-01
+-2.2095974834797705e+01
+-6.3279915356757233e+00
+2.4055539697325701e-01
+-3.2854108740889160e+01
+-6.2125664807542469e+00
+9.1570966526128353e-02
+-3.2741385049776866e+01
+-2.1465617539312070e+00
+-6.7616388540943451e-01
+-2.2044788748076190e+01
+2.2614688172775360e-01
+-1.0826648510468622e+00
+-2.1547341577744405e+01
+1.3106267688250492e+01
+-3.3966794270472915e+00
+-2.8638438685247969e+01
+1.3603365626837837e+01
+-3.4893406827699511e+00
+-2.8255258127070935e+01
+-6.6278302221626086e+00
+-7.1807994038546610e-02
+-3.1980811842107112e+01
+-1.1463577310284499e+01
+7.4034629423835852e-01
+-3.1783398828366266e+01
+-7.1381451388897643e+00
+-7.3960806475324256e-02
+-3.2614546106469952e+01
+-6.3855398865251747e+00
+-2.4567693741632318e-01
+-3.1682133600423871e+01
+-1.1965550624350607e+01
+6.6215575039034236e-01
+-3.3806692855978930e+01
+1.8635210931638749e-01
+-1.3457913282583727e+00
+-2.0531695354640387e+01
+-2.5473674446671106e+00
+-8.8524693962311307e-01
+-2.2381772050479285e+01
+-1.1238053794641393e+01
+5.1585151311238153e-01
+-3.1696047393852883e+01
+-2.5959263255500273e+00
+-9.4560312400535440e-01
+-2.2080161699849342e+01
+-7.3724455506328015e+00
+-3.1266892582945022e-01
+-3.2254844131367285e+01
+-2.7654152963908469e+00
+-9.3265065075495057e-01
+-2.2575010411728222e+01
+5.7329927798498048e-01
+-1.5305020459938201e+00
+-2.0970938787998985e+01
+-7.3255373232666221e+00
+-5.3247630703231175e-01
+-3.1967289763621466e+01
+-7.2207229619055333e+00
+-6.3515620639182435e-01
+-3.1750210070883792e+01
+-9.7225233976936671e+00
+-2.5918110670855421e-01
+-3.0637841074559343e+01
+-9.7225233976936671e+00
+-2.5918110670855421e-01
+-3.0637841074559343e+01
+-9.6433907721598011e+00
+-3.0469177502948613e-01
+-3.0575366324556018e+01
+-2.6594169041492393e+00
+-1.3087691711821263e+00
+-2.1699972870966636e+01
+2.6938917794185282e+00
+-2.1739201778281028e+00
+-2.0567757630369442e+01
+-8.0244063210848608e+00
+-7.3704469575263942e-01
+-3.1742116014200612e+01
+-9.1622158201928681e+00
+-5.9594896047460166e-01
+-3.1745320025592427e+01
+-1.6180293734017674e+00
+-1.5649569909152361e+00
+-2.2071221104009634e+01
+-7.7037617257680404e+00
+-8.6243765200932554e-01
+-3.1447987605145407e+01
+-1.1272286412329972e+01
+-3.5151134234378439e-01
+-3.2180602660830630e+01
+-1.0768878433954312e+01
+-4.9575445087115649e-01
+-3.1910943297770874e+01
+-7.6416706027076549e+00
+-9.9420679179588378e-01
+-3.1294925450717184e+01
+6.7202391797536727e+00
+-3.5526523501792426e+00
+-2.4223440189014966e+01
+-1.1558846497547933e+01
+-7.3897334396655123e-01
+-2.9430165963174403e+01
+1.2140980816426589e+01
+-4.9753148082537129e+00
+-2.6538062786079220e+01
+1.3682686424541538e+01
+-5.1423632587183379e+00
+-2.4999400060322419e+01
+-1.1214696756401366e+01
+-1.0545449180677671e+00
+-3.2459176091191097e+01
+-5.5765336543767367e-03
+-2.4525682832021034e+00
+-2.1016005632384989e+01
+-9.3082597811891592e+00
+-1.3878854117768931e+00
+-2.9301635262985915e+01
+9.9790726411394228e+00
+-4.7765476394922644e+00
+-2.6306941844383047e+01
+-9.0029395099804219e+00
+-1.4679095101693171e+00
+-2.9130035122156951e+01
+-9.1938445904076147e+00
+-1.4998250993668367e+00
+-2.8989406423184974e+01
+-9.3623755476346879e+00
+-1.6316700924155831e+00
+-3.0901825657594937e+01
+-1.9811443908565165e+00
+-2.3479833539336306e+00
+-2.1384342716101813e+01
+-1.2157578937796834e+00
+-2.5284089438548909e+00
+-2.0071352439200240e+01
+-7.2271163767221491e+00
+-2.3096210963289772e+00
+-2.9590287109248756e+01
+1.1210540682733059e+01
+-5.5895245916913812e+00
+-2.5469308662678433e+01
+1.1210540682733059e+01
+-5.5895245916913812e+00
+-2.5469308662678433e+01
+9.3707523767834981e+00
+-5.3200376230050654e+00
+-2.5501678604701972e+01
+-6.6924473720463480e+00
+-2.7668729650945822e+00
+-2.7994626992633204e+01
+-1.1143018894264117e+01
+-2.1776800246820409e+00
+-2.9777357178501461e+01
+-2.8689620404967484e+00
+-3.0083157862794452e+00
+-2.3498267696513270e+01
+5.4401863059591546e+00
+-4.5866513433958227e+00
+-2.2876493648730172e+01
+-1.0836203013660349e+01
+-2.2385336899262911e+00
+-2.9701410182699547e+01
+1.6760484657802193e+00
+-3.7201756361254277e+00
+-2.0607267577469980e+01
+1.6310646125773400e+00
+-3.6634783426565916e+00
+-2.0465562352772256e+01
+-1.0990027833657164e+01
+-2.3148968541014656e+00
+-2.9609497002780092e+01
+-1.0792673846699838e+01
+-2.3151866344618801e+00
+-2.9230536696939883e+01
+-1.0095509489005066e+01
+-2.2730642526731772e+00
+-2.7760488369558100e+01
+1.0951340812824339e+01
+-6.0869301741718260e+00
+-2.4982513531076975e+01
+8.8001734927544213e+00
+-5.7944268637188161e+00
+-2.4904593570554280e+01
+-7.8726840443398824e+00
+-3.0162584285213230e+00
+-2.8520350180987254e+01
+-3.0047768018585805e+00
+-3.4894197504221545e+00
+-2.3391173392826950e+01
+-9.0689475525389707e+00
+-2.8491797854852701e+00
+-2.7110204705613892e+01
+-1.0384379826336698e+01
+-2.8422424737545304e+00
+-2.6336120045213878e+01
+-1.1063752827146679e+01
+-3.0370025239545066e+00
+-2.8329514783463235e+01
+-1.0127894165664292e+01
+-2.9026763145767558e+00
+-2.6201449280980334e+01
+1.4598778393564094e-02
+-4.5512903995931904e+00
+-2.2894556454348653e+01
+7.7399452778445497e+00
+-6.4784754789625261e+00
+-2.3900368746336905e+01
+-9.0758804086965643e+00
+-3.5370670533370161e+00
+-2.5927940463295091e+01
+-8.1883960776095641e+00
+-3.9026029818245673e+00
+-2.5645554264740220e+01
+-8.5967524276798049e+00
+-3.9195016799750726e+00
+-2.5439033880482604e+01
+6.4615389441196500e+00
+-6.7091549638515975e+00
+-2.3002578192240488e+01
+6.5083879364260939e+00
+-6.7494923993865372e+00
+-2.3106770236709853e+01
+-8.3115887594457138e+00
+-4.1594985384618113e+00
+-2.5185645937601148e+01
+6.1582666372959034e+00
+-6.8671392368646060e+00
+-2.2821490581595501e+01
+-4.1928449293278724e+00
+-5.2529917128542785e+00
+-2.3997077509191552e+01
+-3.5183369918017831e+00
+-5.4097113476530732e+00
+-2.3488374871301705e+01
+-6.8886809708947361e+00
+-5.1850688231152704e+00
+-2.5634453104244205e+01
+-6.4814928951548456e+00
+-5.2535893662539648e+00
+-2.5226101961342540e+01
+-6.1389758867014663e+00
+-5.2215154540858375e+00
+-2.4270569941423457e+01
+-9.8923662850811276e+00
+-4.4620118353169316e+00
+-2.3488880211707038e+01
+-7.3961228860436341e+00
+-5.3641591871165675e+00
+-2.5410583996941522e+01
+-3.0183783726676283e-01
+-6.5746678895885644e+00
+-2.2104374074028414e+01
+-6.8069922454766205e+00
+-5.5647205975063061e+00
+-2.3526947396106564e+01
+-6.7208528017551314e+00
+-5.6061255716099225e+00
+-2.3560923169480624e+01
+-4.5629095142777114e+00
+-6.2062535233066578e+00
+-2.3204698244318738e+01
+-7.3878419371416451e+00
+-5.6589744783154350e+00
+-2.3013133406953976e+01
+-9.1504953513432756e+00
+-5.4098863260289081e+00
+-2.2271837036915993e+01
+-5.7451469612308994e+00
+-6.3077507987378301e+00
+-2.2707751868759242e+01
+6.4664345992296592e+00
+-8.5322768505562951e+00
+-2.1024486859355214e+01
+-6.1284794078622591e+00
+-6.2953159323290704e+00
+-2.2567617265506765e+01
+-7.8363702861670692e+00
+-5.9395060173818282e+00
+-2.2116872445621162e+01
+3.4161751654382639e+00
+-8.1071490610476946e+00
+-2.1054539642234591e+01
+8.2985106368398274e+00
+-9.2538721252905560e+00
+-2.0792020113430151e+01
+-5.9258619223600180e+00
+-6.5610480647857354e+00
+-2.2087086402227296e+01
+-7.9693724136971529e+00
+-6.0994806270261037e+00
+-2.2042655482387261e+01
+-6.7711573067233513e+00
+-6.4050412235273031e+00
+-2.1966747887545303e+01
+5.0475691762224573e+00
+-8.6592728025363623e+00
+-2.0400834928184718e+01
+-3.7160244965061962e+00
+-7.4429639557407201e+00
+-2.2600285310546116e+01
+2.6757247581246508e+00
+-8.2285084909843142e+00
+-2.0694425910744854e+01
+-5.8107216543638796e+00
+-6.7592056509029126e+00
+-2.1710015070112338e+01
+-5.8107216543638796e+00
+-6.7592056509029126e+00
+-2.1710015070112338e+01
+-1.4085336329385763e+00
+-7.6420861793050063e+00
+-2.1364778026837634e+01
+-3.9688825792218831e+00
+-7.1403398101165232e+00
+-2.1468847458274535e+01
+-4.0835388090489533e-01
+-7.8611166220738111e+00
+-2.1214569299640669e+01
+-8.4625962563095258e-01
+-7.7785544327813190e+00
+-2.1218854401849384e+01
+1.7848516137233641e+00
+-8.2605466168527553e+00
+-2.0613756446374573e+01
+2.1242507168196894e+00
+-8.3610612418828403e+00
+-2.0581942606106825e+01
+-9.4916251506751359e-01
+-7.8535751171005757e+00
+-2.1107190125223774e+01
+4.7375518001803307e+00
+-8.8096778077779323e+00
+-2.0105235368605324e+01
+3.1998458620532584e+00
+-8.5875740672209471e+00
+-2.0206790464658177e+01
+-7.4845396165777931e+00
+-6.5423317123913156e+00
+-2.1250679455235137e+01
+3.3339557297500546e+00
+-8.6183494585203277e+00
+-2.0196387393047448e+01
+3.7555130137960075e+00
+-8.7461152565811666e+00
+-2.0217337937400604e+01
+4.9127654423011844e+00
+-9.2253564285522458e+00
+-2.0199267469823674e+01
+1.7800606820390714e+00
+-8.4966505410680533e+00
+-2.0223534223130866e+01
+1.7800606820390714e+00
+-8.4966505410680533e+00
+-2.0223534223130866e+01
+-4.9665865026768863e+00
+-7.3667891678877160e+00
+-2.1097760915320958e+01
+4.9901410992566220e+00
+-9.1148607108472230e+00
+-1.9554958448994370e+01
+5.2357389385111341e+00
+-9.1554671541798207e+00
+-1.9513368205918187e+01
+6.0601232703287149e+00
+-9.6425985306974553e+00
+-1.9536526310894128e+01
+3.4455176741160467e+00
+-9.1555515670416785e+00
+-1.9511054312534498e+01
+-1.1478872353996872e+00
+-8.3923572140506337e+00
+-1.9964065283778073e+01
+-1.1478872353996872e+00
+-8.3923572140506337e+00
+-1.9964065283778073e+01
+1.9731541338345480e+00
+-9.0069673991504544e+00
+-1.9444308151038179e+01
+-4.2751992258077881e-01
+-8.5759757683672628e+00
+-1.9803978782720161e+01
+-1.0159412125980816e+00
+-8.5160368425154225e+00
+-1.9729868598904961e+01
+1.8315485722007732e+00
+-9.4091961027872948e+00
+-1.9778452296818607e+01
+-4.2026680289117202e+00
+-8.2692545107820159e+00
+-1.9554429739527805e+01
+-4.0896649187969185e+00
+-8.3637418718445158e+00
+-1.9405471814408791e+01
+-2.9133155025300033e+00
+-8.6011326048423840e+00
+-1.9233870825347310e+01
+-3.7013783956155959e+00
+-8.4781616697327493e+00
+-1.9200433469890942e+01
+-3.6282055425999711e+00
+-8.6437474564791135e+00
+-1.9000166137013142e+01
+2.8904416861422759e+00
+2.0837794033129025e+01
+-5.2773615762936217e+01
+2.1006838699023969e+01
+2.4765309446617184e+01
+-6.7018576476622030e+01
+9.7607351290014961e+00
+2.0217824748031166e+01
+-5.6297654648444642e+01
+9.7797259834412209e+00
+1.8774052275213123e+01
+-5.6125989371704648e+01
+1.6097496208433659e+00
+1.8729594914931663e+01
+-5.3732157762630273e+01
+1.3124547062788682e+01
+9.5654232328607840e+00
+-3.3184727922408904e+01
+1.3293978084965397e+01
+9.6945071748120135e+00
+-3.3548820994131304e+01
+-3.3728975625968589e+00
+1.6070667483454848e+01
+-4.9892128916302617e+01
+1.2944315056625562e+00
+1.5949390243728443e+01
+-5.2371269606240226e+01
+-1.0159262947664743e+01
+1.2855686937716895e+01
+-3.9509181756837940e+01
+-1.0026336078780762e+01
+1.2799093328680810e+01
+-3.9943074348667096e+01
+1.3570908446279510e+01
+4.9251174487899805e+00
+-2.4374388323950598e+01
+1.7194812660892937e+00
+1.4703322152215407e+01
+-5.2343737615075966e+01
+-9.5194925141811193e-01
+1.4751783333640187e+01
+-5.1542815431432118e+01
+1.4897932604704851e+01
+8.4419466948895536e+00
+-3.7854532096478067e+01
+-1.2796421663022118e+01
+1.4810015453332108e+01
+-4.7150948942080490e+01
+2.2650162632775857e+00
+1.3697460559477912e+01
+-5.0900747788290104e+01
+-9.5554293757935547e+00
+1.3273392552764419e+01
+-4.4749579487859471e+01
+-3.0506346909237608e-01
+1.4524174631449176e+01
+-5.3420157230866536e+01
+-1.0642077190506210e+01
+1.1975604189010600e+01
+-4.0303227340303252e+01
+1.1310303456249994e+01
+5.8946983988195525e+00
+-2.9307311054140314e+01
+-9.7530144211529297e+00
+1.2101253656900189e+01
+-4.1649282002351015e+01
+-1.3630537469429418e+01
+1.2181321217850046e+01
+-4.0011139885251744e+01
+9.7125544561180846e-02
+1.2718655953352759e+01
+-4.9372838132906580e+01
+1.7428955595899838e+00
+1.2504802508909128e+01
+-4.8928107750814213e+01
+-1.7786343819114659e+01
+1.3357385087886522e+01
+-4.2195565209731420e+01
+1.3420146966906142e+01
+8.3771509590818312e+00
+-4.0832869318569529e+01
+-9.8971513693375286e+00
+1.1630259026463888e+01
+-4.1826784259875204e+01
+3.0503662064853953e-02
+1.2211283699943255e+01
+-4.8907099019455842e+01
+-1.1192805535900661e+01
+1.1215886027376463e+01
+-4.0370774083843820e+01
+5.6699714440635640e+00
+1.0071914579138850e+01
+-4.5816738856124324e+01
+5.3918556518590028e+00
+9.9804220485108246e+00
+-4.4534915802771025e+01
+-6.1316444343742571e+00
+1.2781663622246080e+01
+-5.0077995661439687e+01
+-1.2027439321138997e+01
+1.0669619199815383e+01
+-3.9389629908611532e+01
+1.5923070900423220e+01
+3.8658975295073086e+00
+-2.7968417538316132e+01
+-7.3486847922743666e+00
+1.1435596131016691e+01
+-4.5775125946562753e+01
+-2.3585470352948086e+00
+1.1101344253581075e+01
+-4.7549067312121622e+01
+-1.0669938829170935e+01
+1.1919822198776208e+01
+-4.6684678054796848e+01
+-1.2111642189222325e+01
+1.1304667333733821e+01
+-4.5028772051672107e+01
+1.2370879153247488e+01
+4.7288887099981638e+00
+-3.1650815266130326e+01
+-2.5657016300466520e+00
+9.7417989023986813e+00
+-4.4992365942333997e+01
+-1.0353333811514014e+01
+1.1720227520120888e+01
+-4.9060220071765954e+01
+1.1253342319116189e+01
+7.1048054127335405e+00
+-4.2307651869108085e+01
+9.8003904801163664e+00
+7.1742497617187233e+00
+-4.2234450297935375e+01
+-1.0492662867494138e+01
+1.1703499986340949e+01
+-4.9289254186522719e+01
+1.1819614197517900e+01
+6.7460267092171620e+00
+-4.1938718520365747e+01
+1.4147800169202936e+01
+5.9532087247883094e+00
+-3.9939624324359535e+01
+-1.1876042190803439e+01
+1.1579715724871301e+01
+-4.8890618098337669e+01
+1.4230401636364448e+01
+5.7831193097760583e+00
+-3.9784575553603872e+01
+-1.3578902644150904e+01
+9.6050114880215691e+00
+-3.9246346693188791e+01
+-6.4783982381685101e+00
+9.7173426219199968e+00
+-4.5185849598548799e+01
+-6.4743922825265194e+00
+9.6921739658309178e+00
+-4.5005659507454361e+01
+-6.1205493250001712e+00
+9.7205854145154866e+00
+-4.5430860117758833e+01
+1.4900538914351082e+00
+8.2375885625401661e+00
+-4.3373609385067844e+01
+1.0176341857537050e+01
+6.1632580289569869e+00
+-4.0524481217405345e+01
+1.0182201973465808e+01
+6.1616706165408210e+00
+-4.0539904837972493e+01
+-1.1270113379717520e+01
+1.0898391209457136e+01
+-4.7882676971336004e+01
+-1.3098551649498667e+01
+1.0831921943941211e+01
+-4.6867237331908633e+01
+-1.3310654017066639e+01
+1.0702798509991696e+01
+-4.6693758931005945e+01
+-1.2377542168117980e+01
+1.0529805001394264e+01
+-4.7404974590818235e+01
+-1.2391042704107393e+01
+1.0554712529595168e+01
+-4.7459293256330362e+01
+-1.2575238251768347e+01
+1.0624062847746778e+01
+-4.9521646556545100e+01
+-1.2548332689378590e+01
+1.0311821870659889e+01
+-4.7779389364830848e+01
+-1.4313062366288522e+01
+8.0757386697568023e+00
+-3.7427544294583129e+01
+-1.4804540704426602e+01
+1.0083170797061014e+01
+-4.9594670387924360e+01
+-1.3862871500947243e+01
+8.2716754531162184e+00
+-4.0671463634787820e+01
+1.2129821063843170e+01
+3.5222814329552072e+00
+-3.6819846531568345e+01
+-5.4534623580054413e+00
+6.8201107186782668e+00
+-4.1736573361307052e+01
+-1.4076882708603332e+01
+8.7759716233664555e+00
+-4.6211445631379732e+01
+-3.4572947189490923e+00
+6.0790368699291166e+00
+-4.0914521999311219e+01
+-5.9007420140681859e+00
+6.0712540219058040e+00
+-4.0349183878405427e+01
+1.3551565001052376e+01
+1.3115354544751623e+00
+-2.9968224773824616e+01
+-9.0572151208699943e+00
+6.6396360740870968e+00
+-4.2456579220770372e+01
+-9.0572151208699943e+00
+6.6396360740870968e+00
+-4.2456579220770372e+01
+7.0541588695350255e+00
+1.7300567752867098e+00
+-2.5899347935524681e+01
+-3.7872635483347512e+00
+5.4257271442075190e+00
+-3.9918537430559510e+01
+-9.6155672261777383e+00
+6.3279871702047554e+00
+-4.0123104892613782e+01
+-9.6282747614432331e+00
+6.1866711574451010e+00
+-3.9738574791613829e+01
+-1.4050810810577431e+01
+7.6154472891843383e+00
+-4.5705794270204969e+01
+1.5168220978703880e+01
+2.4303938313236069e+00
+-4.1165347358697659e+01
+3.7427141963320891e+00
+1.3333571183124309e+00
+-2.1198209081769232e+01
+-6.3320982803558614e+00
+5.1630083826666970e+00
+-3.9080736020285208e+01
+-6.1943016757696778e+00
+5.0367908013314135e+00
+-3.9231744609281783e+01
+-1.5781910222835045e+01
+7.5318446646829873e+00
+-4.6514740164422555e+01
+-8.1264133416658080e-01
+1.9359263158076783e+00
+-2.1926604943630377e+01
+-1.1075531949085866e+01
+6.0502398015693952e+00
+-4.2286714499002514e+01
+-5.9632017993269280e+00
+4.8098266211853655e+00
+-3.8812604164521652e+01
+-1.7487930997239496e+00
+2.2705456085671667e+00
+-2.4153487414601614e+01
+-1.0525690027978158e+01
+5.0687116611209833e+00
+-3.8069638269291239e+01
+-7.9010478936841642e+00
+4.6232539013467413e+00
+-3.9238209147098217e+01
+1.1952163535217116e+01
+7.9685272006978125e-01
+-3.3504613117852443e+01
+-8.2954536844811653e+00
+4.4613412680128279e+00
+-3.7749321675828945e+01
+1.3750759935483680e+01
+4.3643091499069464e-01
+-3.3270343408183884e+01
+-1.0847729125312341e+01
+4.8021874836504734e+00
+-3.7443493730599329e+01
+1.3573855573747435e+01
+4.6900052192194608e-01
+-3.3987778392211261e+01
+-7.5738713635320796e+00
+4.1350966991494289e+00
+-3.7731860645963465e+01
+-5.7793353201051403e+00
+3.7152097919535931e+00
+-3.7298139342478009e+01
+4.7987218928096160e+00
+5.9615864201792934e-01
+-2.3231625985766932e+01
+-7.3660225314859815e+00
+3.7189024927071244e+00
+-3.6693901401665698e+01
+6.7599816478888384e+00
+1.3430473874632562e-01
+-2.3808539088729312e+01
+-6.7550239840520208e+00
+3.5387624958555994e+00
+-3.6895825631705208e+01
+1.3703111955763219e+01
+-4.4732477286889383e-01
+-3.2255108350099725e+01
+1.4132256861406674e+01
+-7.0017693320015639e-01
+-3.1563901123033506e+01
+-1.8427860912320369e+01
+5.6172962212465523e+00
+-4.5170606859006057e+01
+1.4886878276107687e+01
+-9.5928653558498522e-01
+-3.2502952600503100e+01
+1.4255765568324215e+01
+-1.1924390357629107e+00
+-3.1554091397065260e+01
+-1.2235925823463731e+01
+3.3620470537383609e+00
+-3.5540851665476325e+01
+1.4423965414000657e+01
+-1.3850620086677292e+00
+-3.1352844697106857e+01
+1.5410262487824438e+01
+-2.2559454079958576e+00
+-2.3606286167063224e+01
+-2.6085048414193914e+00
+8.7738992880876154e-01
+-2.3640774846807805e+01
+-5.9772950479603386e+00
+1.6773636888683923e+00
+-3.4848090022993418e+01
+2.6196623853857099e+00
+-4.1497115120387612e-01
+-2.1540666176533353e+01
+-3.3278446037988121e+00
+6.7366517316741692e-01
+-2.4072219101167022e+01
+-6.9764295706043002e+00
+1.7881158238592059e+00
+-3.4328961847924674e+01
+-7.8209037916160993e+00
+1.8065258029702445e+00
+-3.4162362498832692e+01
+-9.8429231396376000e+00
+2.0404805358621982e+00
+-3.3973000274399773e+01
+-2.9910335551466076e+00
+3.6106328067433990e-01
+-2.3740306934767936e+01
+1.2496541247512706e+01
+-2.2188260267891837e+00
+-3.0538880073461176e+01
+-5.9246344189894398e+00
+9.3802192024282394e-01
+-3.3544975129704852e+01
+1.3633960044265871e+01
+-2.5171535530023368e+00
+-3.0068964758051859e+01
+-9.4339723099793744e+00
+1.5089339381426969e+00
+-3.3157657727192543e+01
+5.5566114281378951e+00
+-1.4597219670096584e+00
+-2.1744420002336206e+01
+-2.8103469696479348e+00
+-2.1337921904638524e-01
+-2.2913132554438988e+01
+1.2847203132426085e+01
+-2.8916631845276686e+00
+-2.8087356909888477e+01
+-2.8221864906682077e+00
+-2.9750530587791590e-01
+-2.2933010133859227e+01
+1.5599270281709117e+01
+-3.6801258032638846e+00
+-2.5004157469893812e+01
+-6.2987680207158618e+00
+3.6488016968809756e-01
+-3.2462017835978934e+01
+-8.5980221894640625e+00
+6.1385194050897274e-01
+-3.2204623441740267e+01
+-2.9179460917817042e+00
+-4.8585608303599115e-01
+-2.2696614498889819e+01
+-7.1165876759285620e+00
+2.0973456789514153e-01
+-3.2219201793254221e+01
+1.1367798987172851e+01
+-3.0315571387943181e+00
+-2.8683634101406742e+01
+-1.6125046130660084e-01
+-1.0710169434214354e+00
+-2.0780779583152523e+01
+-2.4042975015695305e+00
+-8.8094524875535640e-01
+-2.2071412753759191e+01
+-2.1963702939873326e+00
+-9.9039537337595096e-01
+-2.1972506893214071e+01
+-2.5156684225472858e+00
+-9.5311248807494231e-01
+-2.2265063469645021e+01
+-8.6762634654024406e+00
+-1.5687700950561301e-01
+-3.2418759828852423e+01
+-2.6802616093314695e+00
+-1.0584347529467848e+00
+-2.1881396955779472e+01
+1.3197819931331118e+01
+-4.2655888501370365e+00
+-2.6829239741269276e+01
+-8.3361513991085427e+00
+-3.0702907172078081e-01
+-3.1196113243865817e+01
+-2.3413100406085707e+00
+-1.2158188298939314e+00
+-2.1942655561641587e+01
+-8.1341814868387612e+00
+-4.8176600107554812e-01
+-3.2038097181197912e+01
+-2.9089416452050818e+00
+-1.2783744498495659e+00
+-2.1901418704429016e+01
+3.8445434984347662e+00
+-2.4922682127131335e+00
+-2.0378237140729514e+01
+-1.4306574171408464e+00
+-1.5806720190829353e+00
+-2.1201183966944079e+01
+-1.2068928657652163e+00
+-1.6437974693635995e+00
+-2.1214671148163895e+01
+-7.0110265192271051e+00
+-9.7982232308129980e-01
+-3.1328570240539108e+01
+-8.7283653158542105e+00
+-7.4333602013794320e-01
+-3.1626221303559291e+01
+-8.7817308357222128e+00
+-7.0983850868583198e-01
+-3.2016116811157772e+01
+-4.1952623380337606e-01
+-1.9116508361473472e+00
+-2.0747189521363680e+01
+-8.9953977596857893e-01
+-1.8961710791153736e+00
+-2.0867458110625464e+01
+-9.7068546220757277e+00
+-9.4788288071576354e-01
+-3.1253744662502633e+01
+-7.9252406619439766e+00
+-1.2737818390798059e+00
+-2.9790248628110600e+01
+-8.9253882947011167e+00
+-1.3715011770242378e+00
+-3.1106556904140490e+01
+-8.5508356362179256e+00
+-1.4516366689138180e+00
+-3.0242371509894177e+01
+-8.5357308501163782e+00
+-1.4886474651711143e+00
+-2.9254489179928989e+01
+-9.0579346693437888e+00
+-1.7558619680114684e+00
+-3.0186578062435938e+01
+-5.3859334763311650e-01
+-2.5365141427548141e+00
+-2.1217404385597892e+01
+-2.0021632212431315e-01
+-2.6937248048940106e+00
+-2.1259372869469090e+01
+9.2982666351005439e-01
+-3.0696947101536249e+00
+-1.9493290130869319e+01
+1.0981760247485859e+01
+-6.1304806443540736e+00
+-2.4880118158678414e+01
+1.0380303348482380e+01
+-6.3283680103937421e+00
+-2.4588452153315853e+01
+-2.2619094088787817e+00
+-3.7913859327004524e+00
+-2.3559409597322887e+01
+-8.3289990707032899e+00
+-3.3409603883662968e+00
+-2.6759368005799764e+01
+-9.9518018930493408e+00
+-3.1044078302349551e+00
+-2.5978809504921980e+01
+-1.0641117581637674e+01
+-3.4072802375621150e+00
+-2.8004220323937822e+01
+-7.2906616563105846e+00
+-4.0849710350185102e+00
+-2.7138524661240922e+01
+7.8014310705202066e+00
+-6.5843059513416069e+00
+-2.3552313679809714e+01
+6.7885635299382558e+00
+-6.5515364348585958e+00
+-2.3273207641908183e+01
+-1.3513090623512323e+01
+-3.7677080202924857e+00
+-2.7797543779203391e+01
+-8.4412874438928025e+00
+-4.2094215716916716e+00
+-2.4920002532589532e+01
+-8.6879389992408118e+00
+-4.3036067813601990e+00
+-2.4776870909296083e+01
+-7.9189351307720672e+00
+-4.8964156157134520e+00
+-2.6054496768838867e+01
+-7.5515763051905891e+00
+-5.1319991297893086e+00
+-2.5818362530376838e+01
+-7.6812506771169726e+00
+-5.1619671220914576e+00
+-2.5588231374293688e+01
+-6.6094623704388686e+00
+-5.3406067471565768e+00
+-2.5246055421486652e+01
+-7.4450585766137536e+00
+-5.3953498456716327e+00
+-2.5272900093213792e+01
+-7.4577816843011790e+00
+-5.4308971246357522e+00
+-2.5406649072599198e+01
+-2.9086595087252171e-01
+-6.4064097250069736e+00
+-2.2439524232405201e+01
+1.2497614210563273e+00
+-6.5822864008833708e+00
+-2.1811872288050086e+01
+-7.0783961343668722e-01
+-6.2730462294086351e+00
+-2.2224417658631900e+01
+-4.6526919022414965e+00
+-6.1554107177288397e+00
+-2.3230797049765357e+01
+9.2946549645272754e+00
+-8.9417584149004696e+00
+-2.1552571573946604e+01
+-4.6829962266205660e+00
+-6.3399757631383320e+00
+-2.2898343920400965e+01
+-7.8149725866563786e+00
+-5.7364831357664832e+00
+-2.2709332933968199e+01
+3.4964589377869699e+00
+-7.9052678777813803e+00
+-2.1439807418234146e+01
+-8.8498786464745791e+00
+-5.4861573505155476e+00
+-2.2336338824505415e+01
+-3.7449368368411755e+00
+-6.6713993641764153e+00
+-2.2558991189777835e+01
+-7.0782008120505431e+00
+-5.9890098042676270e+00
+-2.2642866610183553e+01
+-4.2027313384243419e+00
+-6.5988609796433826e+00
+-2.2611555958620400e+01
+-4.3495959043078951e+00
+-6.6642414578109985e+00
+-2.2325340729071140e+01
+3.2557561571234692e+00
+-8.0663984208338118e+00
+-2.1268777174136083e+01
+3.3201426129559999e+00
+-8.0989658750114089e+00
+-2.0946926413748667e+01
+4.0602878692918081e+00
+-8.4816316692231375e+00
+-2.1163635007690875e+01
+-3.6636263002841343e+00
+-6.8979374687317492e+00
+-2.1922646934885222e+01
+-5.9337413549039191e+00
+-6.6412258793439394e+00
+-2.2018556763372377e+01
+3.2263175838695388e+00
+-8.2910717102407325e+00
+-2.0668606869052351e+01
+5.5054766173346676e+00
+-8.6539423514958447e+00
+-2.0225813883742614e+01
+-1.0336387381447374e+00
+-7.6841250884024843e+00
+-2.1330008291973328e+01
+-6.3603783152844189e+00
+-6.6848575876014840e+00
+-2.1730153727833937e+01
+-1.2038090770696279e+00
+-7.6891311496182499e+00
+-2.1318366555369000e+01
+-1.0975932379903592e+00
+-7.7273045241428999e+00
+-2.1314446879579158e+01
+-1.0065384338004935e+00
+-7.7606972182783851e+00
+-2.1322591854532934e+01
+-1.0065384338004935e+00
+-7.7606972182783851e+00
+-2.1322591854532934e+01
+1.9905445311586958e+00
+-8.3381424859526394e+00
+-2.0542318283350500e+01
+2.0557810643664420e+00
+-8.4108909103238130e+00
+-2.0467559406230169e+01
+3.8332532531721517e+00
+-8.8068966552125687e+00
+-2.0045752678188670e+01
+-9.6665879996696980e+00
+-6.0132926339371275e+00
+-2.0474639861327812e+01
+-8.2027006218642473e+00
+-6.4704964617027914e+00
+-2.0707928536111051e+01
+-1.2556474599788201e+00
+-8.4025722602988839e+00
+-2.1297020015672011e+01
+2.5004327627380212e+00
+-8.8619501623539954e+00
+-1.9892188804817692e+01
+2.1003703369811446e+00
+-9.1594533693672453e+00
+-2.0304895386847065e+01
+-7.9376107307886539e+00
+-6.7742269901910381e+00
+-2.0223702197944821e+01
+3.3459930644601354e+00
+-9.0973050672734299e+00
+-1.9448527586404843e+01
+3.7736154487330054e+00
+-9.1459053267368109e+00
+-1.9354405830142884e+01
+2.6940528245256683e+00
+-9.3251977390546443e+00
+-2.0024144997512447e+01
+9.2255496763149003e-01
+-9.1064193683861401e+00
+-2.0370889432808475e+01
+1.9056517615104362e+00
+-9.0003695150940981e+00
+-1.9404939175636233e+01
+6.9715287593502795e-01
+-9.1724400332312896e+00
+-2.0278701534241325e+01
+3.6076061049493848e+00
+-9.6520908741516660e+00
+-1.9563091101528649e+01
+6.3148568389315800e+00
+-1.0359066569383351e+01
+-1.8720460253184811e+01
+-3.9572210823316616e+00
+-8.4767335008240750e+00
+-1.9278853974006694e+01
+-3.1408518612276346e+00
+-8.6392675187977801e+00
+-1.9201216722649981e+01
+-2.7701516184422572e+00
+-9.4145288455712848e+00
+-1.9968274952866746e+01
+1.6565970262951058e+01
+2.0897231535984425e+01
+-5.8957373643361663e+01
+6.1141307198906123e+00
+1.7423850667915200e+01
+-5.5172005774878571e+01
+-4.0906924450524169e+00
+1.6379872065586596e+01
+-4.8924531204538496e+01
+6.0631244342041271e+00
+1.7058804432532657e+01
+-5.4947437473810204e+01
+1.3829187942049460e+01
+9.6921528622634678e+00
+-3.6349020237132059e+01
+1.4848540706853356e+01
+9.9330002421056722e+00
+-3.7550418314903816e+01
+-1.1269397248149664e+00
+1.5414101088070657e+01
+-4.8038083177024582e+01
+-9.9811427843677318e+00
+1.2686179299743770e+01
+-4.0305823459231540e+01
+1.3546325014123068e+01
+4.8866235986690585e+00
+-2.4535494988112166e+01
+-5.8891558929725241e+00
+1.3101865576386839e+01
+-4.7482566887349336e+01
+1.4073197581966461e+01
+7.6713247327917227e+00
+-3.9095115194825887e+01
+-6.4059570583225982e+00
+1.3034518522758919e+01
+-4.9776666817230684e+01
+-6.4059570583225982e+00
+1.3034518522758919e+01
+-4.9776666817230684e+01
+-2.7257871054135330e-01
+1.1685898587435089e+01
+-4.8128595136341126e+01
+-9.7400368446001231e+00
+1.1521986480246703e+01
+-4.2537544638968043e+01
+1.2236383258451479e+01
+9.0137129175063659e+00
+-4.4759555970781022e+01
+-5.4330974177754665e-01
+1.1399179848768586e+01
+-4.7398263188788803e+01
+7.2375877220248084e+00
+9.9057093321258360e+00
+-4.5692502110530526e+01
+-1.2965347904550526e+01
+1.2023510832666481e+01
+-4.2782607786712219e+01
+-1.0460798741599461e+01
+1.2202413881577009e+01
+-4.5654905478931589e+01
+2.6814359958722704e+00
+1.0464256948210615e+01
+-4.5950543335786577e+01
+6.8124825408493654e+00
+9.3919420827052207e+00
+-4.4865298590130266e+01
+-3.6610194761728634e+00
+1.1911880029767888e+01
+-4.8709674990639911e+01
+-1.0715912228572462e+01
+1.2358921775914991e+01
+-4.8513713234260308e+01
+-9.6588006952515908e+00
+1.2021871447909783e+01
+-4.7985755439816650e+01
+-1.0189796453784350e+01
+1.1993499580782927e+01
+-4.7642315599253855e+01
+1.3493406294645396e+01
+3.0186185750923400e+00
+-2.4655912922856764e+01
+-1.3430698324042012e+01
+1.0291666562014999e+01
+-3.8995568861473579e+01
+-1.0736367712226452e+01
+1.1776693290820726e+01
+-4.7333390692226310e+01
+9.8011950178866254e+00
+7.5009116918413961e+00
+-4.2589482719395001e+01
+9.8011950178866254e+00
+7.5009116918413961e+00
+-4.2589482719395001e+01
+-6.3033461715675214e+00
+1.0548814276571726e+01
+-4.6335705660948463e+01
+-1.3931795324640921e+01
+1.0474206086763735e+01
+-4.1476638403072151e+01
+-6.1520123999311576e+00
+1.0248383283072942e+01
+-4.5770409635401563e+01
+-8.0448342838696583e+00
+1.0436049998591415e+01
+-4.5782843022269859e+01
+-8.0448342838696583e+00
+1.0436049998591415e+01
+-4.5782843022269859e+01
+-1.2425286285395195e+01
+1.1167573776869567e+01
+-4.6695576355470592e+01
+1.3546077982312918e+01
+5.2571453687715159e+00
+-3.9443522135785692e+01
+-1.3327593840984397e+01
+1.0062468007048100e+01
+-4.7649488061367492e+01
+-9.0942328518248825e+00
+9.1083324409737454e+00
+-4.6576402453026276e+01
+-1.1269914079091244e+01
+9.1777050244514289e+00
+-4.6567623055213772e+01
+5.6691395968910161e+00
+2.8553435935889384e+00
+-2.6494269002142708e+01
+1.2992977200464527e+01
+2.8112992084041868e+00
+-3.2398100463295215e+01
+-2.1611202718711122e+00
+6.4903191989432276e+00
+-4.1320404655952558e+01
+1.1763633751029190e+01
+3.5163804180424671e+00
+-3.6912546736666322e+01
+1.2719753525437291e+01
+2.6559873844129558e+00
+-3.3948891301530267e+01
+1.5240850725823348e+01
+3.0372365050296848e+00
+-3.9923663710778371e+01
+1.2963279421240960e+01
+2.4075019397905613e+00
+-3.3224073739657030e+01
+6.3565860061938171e+00
+2.3339856291037608e+00
+-2.7175782428554797e+01
+-3.3883961112003189e+00
+5.3658104117451213e+00
+-3.9635433671304028e+01
+-1.4251792314683609e+01
+7.9869733478617979e+00
+-4.6349212033845937e+01
+1.2640414272835585e+01
+2.0047343524721311e+00
+-3.5189976468739289e+01
+1.1890487729354462e+01
+1.9405126247007245e+00
+-3.4897635093196484e+01
+2.4484057566979733e+00
+1.4489562064285770e+00
+-2.0675489456450038e+01
+-4.6386481792746030e+00
+4.9110898136774521e+00
+-3.9269765411534543e+01
+-8.7100103317246749e+00
+5.0896830725260909e+00
+-3.8555680286320836e+01
+4.7012499268145600e+00
+8.1737365050957922e-01
+-2.1766656011994744e+01
+1.3957842501418900e+01
+4.8358491933222869e-01
+-3.1872662384811552e+01
+7.2129806560837135e+00
+4.5181762947459653e-01
+-2.4482476238464592e+01
+-8.8755580855647835e+00
+4.2437343378969752e+00
+-3.7210587348903928e+01
+-1.3317099602522533e+00
+1.4382283478986766e+00
+-2.2205870728203497e+01
+2.1593957941866124e+00
+6.4186155377091636e-01
+-2.0314735568711672e+01
+2.1593957941866124e+00
+6.4186155377091636e-01
+-2.0314735568711672e+01
+-6.2080836015025325e+00
+3.2652535448072468e+00
+-3.6565046713689711e+01
+5.7179379981375567e+00
+-3.0551565376294398e-02
+-2.2645620549285372e+01
+5.7179379981375567e+00
+-3.0551565376294398e-02
+-2.2645620549285372e+01
+1.4382558978084562e+01
+-8.6803941648731830e-01
+-3.2188944750537082e+01
+-3.4589465637554664e+00
+1.4078074802889200e+00
+-2.4983796837875943e+01
+-7.4523454022689366e+00
+2.8497175283243275e+00
+-3.5964278285866527e+01
+-2.0729716981999107e+00
+9.0800737232046946e-01
+-2.3188413156752791e+01
+-8.5856068099336635e+00
+2.7200343823467863e+00
+-3.5245437098109058e+01
+-7.6885016103796193e+00
+2.5086713612933393e+00
+-3.6165157256220482e+01
+1.3914778105690504e+01
+-1.3920690116818695e+00
+-3.1176509666594157e+01
+-8.4711567033144615e+00
+2.5301533334967843e+00
+-3.5021687067628349e+01
+-7.4937755225884484e+00
+2.1546333588215520e+00
+-3.4725934955318174e+01
+-6.9577479386518455e+00
+1.9964052566511126e+00
+-3.4688261622537141e+01
+-8.9143827968192486e+00
+2.2625845561670990e+00
+-3.3980233187054502e+01
+1.7463043680162219e+01
+-2.4439640618741572e+00
+-2.9900188324283619e+01
+-1.3047335139492948e+00
+1.4899643541954102e-01
+-2.1845627957166588e+01
+-2.2341186649886171e+00
+2.7974318007328397e-01
+-2.3211182382926093e+01
+-1.0428340500565895e+01
+2.0683596170417506e+00
+-3.6451147622327376e+01
+-9.3994539368346963e+00
+1.3755435612936502e+00
+-3.2919523590465403e+01
+-2.7825787173422567e+00
+-7.3762902316184653e-02
+-2.3106018867746823e+01
+-2.7825787173422567e+00
+-7.3762902316184653e-02
+-2.3106018867746823e+01
+3.7438316552446484e+00
+-1.3645746690343457e+00
+-2.2124459564544651e+01
+-9.8796555797234618e+00
+8.7285594997259341e-01
+-3.4695880875118661e+01
+1.3227382125342640e+01
+-3.4372445617344880e+00
+-2.7919966184219842e+01
+1.2843209303065368e+01
+-3.1874856044710187e+00
+-2.8896179295739348e+01
+-6.7603615680064992e+00
+1.7028121613312883e-01
+-3.2174196227533905e+01
+-6.3354153125704347e+00
+-3.7669880068734021e-02
+-3.2033885458021672e+01
+-1.7930257210369989e+00
+-1.2532025629124888e+00
+-2.1616828651382225e+01
+-2.5439201281472137e+00
+-1.1748520582102489e+00
+-2.1868603950305275e+01
+-9.2435407449760625e+00
+-4.3303967231601331e-01
+-3.0512136765187094e+01
+-8.2726128714925018e+00
+-7.5448350782705353e-01
+-3.0495428267577704e+01
+-1.0549276027138513e+01
+-4.5258347356694073e-01
+-2.9943998768522420e+01
+-1.0549276027138513e+01
+-4.5258347356694073e-01
+-2.9943998768522420e+01
+-9.8928599493486118e+00
+-7.3218172056402664e-01
+-2.9906949825054735e+01
+-1.0161785964900545e+01
+-9.0561117149138237e-01
+-3.1480843978818562e+01
+-9.6983548056756010e+00
+-8.2681151645907547e-01
+-2.9674713962614479e+01
+-7.7499139402581436e+00
+-1.2736808785515266e+00
+-3.0416353861162040e+01
+-9.0361611849011929e+00
+-1.1562743136237117e+00
+-3.1218581992551240e+01
+-1.2315368027784764e+01
+-9.0347222421007856e-01
+-3.1582626072280704e+01
+2.6582257528626823e+00
+-3.1521416339714947e+00
+-1.9961057331189377e+01
+1.2831560547991744e+01
+-5.4835853165602515e+00
+-2.4682790863055882e+01
+1.1321705468825650e+01
+-5.5332551000034043e+00
+-2.5730362824313936e+01
+1.1305555785437138e+01
+-5.6926690072720580e+00
+-2.5517033950159522e+01
+-2.1907179352709654e+00
+-3.4189432303520557e+00
+-2.2829063281971123e+01
+9.9790153545379512e-01
+-4.1470698735664087e+00
+-2.0663390363597340e+01
+-2.4980476578781321e+00
+-4.7543350181419148e+00
+-2.2823870084090977e+01
+6.2393122813302124e+00
+-6.7632040400326563e+00
+-2.2794001967795843e+01
+-1.8300679753250764e+00
+-5.0919125577020372e+00
+-2.2245831454702387e+01
+-7.2856661637127278e+00
+-4.7636588084867659e+00
+-2.6262562072487214e+01
+-6.3908741128903408e+00
+-4.7642134856611040e+00
+-2.4945401115149508e+01
+1.8183424456523125e+00
+-6.7161278982832835e+00
+-2.2182166674952100e+01
+1.8183424456523125e+00
+-6.7161278982832835e+00
+-2.2182166674952100e+01
+9.1019606581992072e+00
+-8.8894864431424452e+00
+-2.1445761553386319e+01
+-6.4750122947255244e+00
+-6.0333950232990299e+00
+-2.2833917493431287e+01
+-7.7041661527899956e+00
+-6.1247148633186512e+00
+-2.1846599591180254e+01
+-8.0130441378629524e-01
+-7.6337447270965733e+00
+-2.1335025073754007e+01
+-2.7130367428796589e+00
+-7.7776357736362796e+00
+-2.2127316030311508e+01
+-6.3452658553869172e+00
+-6.8077489768924471e+00
+-2.1473635302771797e+01
+-7.4483207351143721e-02
+-8.1180095128921881e+00
+-2.1087169577173551e+01
+-9.1840478531521719e-02
+-8.1925458440464851e+00
+-2.0835400968826892e+01
+-5.8738666162782467e+00
+-7.1329607211766497e+00
+-2.1106178428770331e+01
+-5.9297470845181728e+00
+-7.2044505261038356e+00
+-2.0987264050129632e+01
+5.3790956208866296e+00
+-9.4263717573898802e+00
+-1.9607316377982755e+01
+-3.9197412920778829e+00
+-7.7240484803981309e+00
+-2.0462754232525846e+01
+-3.9197412920778829e+00
+-7.7240484803981309e+00
+-2.0462754232525846e+01
+4.0847668742012653e+00
+-9.4532389781674606e+00
+-1.9903449952172451e+01
+-9.0853266085318585e-01
+-9.2055970400633580e+00
+-2.0193084211631113e+01
+5.7938683151042865e+00
+-1.0329307631383443e+01
+-1.8740004390905018e+01
+-3.7587988218437420e+00
+-8.3548957637627908e+00
+-1.9636228989843751e+01
+5.4957059037484672e+00
+-1.0423108678547630e+01
+-1.8589023723769984e+01
+5.0566588481029937e+00
+-1.0532697315180750e+01
+-1.8467444283101177e+01
+1.8867413242025723e+01
+2.1648333654603345e+01
+-5.9393625899064105e+01
+4.2511473796244461e+00
+1.7634831879012733e+01
+-5.0523269148963109e+01
+7.1567329247820428e+00
+1.8261309891407546e+01
+-5.4311055584547134e+01
+-6.6129656212504742e+00
+1.5583455669034590e+01
+-4.3480245457000443e+01
+-4.7274045510425502e+00
+1.6219737990353902e+01
+-4.6554366942193774e+01
+6.9159771804110530e+00
+1.7648959600400591e+01
+-5.6280350163202911e+01
+-4.6886877872904984e+00
+1.5740660952060637e+01
+-4.7290687300831706e+01
+1.3085920852082635e+00
+1.6799765328458065e+01
+-5.3824425912827216e+01
+-9.0819156053857437e+00
+1.4434294539023909e+01
+-4.4224265544147322e+01
+-9.8932392339265132e+00
+1.3032338141626328e+01
+-3.9453436734385555e+01
+-8.3414386704065890e-01
+1.4936559236795564e+01
+-4.9418756682936234e+01
+5.0657197720171732e-01
+1.5023579182455475e+01
+-5.1641044930937937e+01
+1.1355958052899606e+01
+6.3606350150321820e+00
+-2.8908496050750657e+01
+1.4622395067572089e+00
+1.3694625587412879e+01
+-5.0919046116936798e+01
+1.5634746439555235e+01
+1.0021284731078753e+01
+-4.5638736801940482e+01
+1.3923349821146880e+01
+5.8811388677240348e+00
+-3.0266711567536714e+01
+-4.9411668287368231e+00
+1.3862561934178217e+01
+-4.9912153898449205e+01
+1.5311294397763260e+00
+1.2775369526305617e+01
+-4.9477164990124443e+01
+-6.4898996849673383e+00
+1.3261524571391645e+01
+-4.9521957521152729e+01
+1.3265351576048410e+01
+1.2145402306891157e+01
+-5.5933186319992750e+01
+-9.9188117093716688e+00
+1.1535632473012507e+01
+-4.2061363797429109e+01
+-1.3086881436747607e+01
+1.2472894219674748e+01
+-4.3640582063206438e+01
+8.4390601358919837e-01
+1.1672434339094691e+01
+-4.8121909193273090e+01
+-5.8454542081211098e+00
+1.3024638353872790e+01
+-5.1264295488328834e+01
+-6.8334764476552090e-01
+1.1196585184310916e+01
+-4.7322593678386689e+01
+8.8353426458952136e+00
+8.3503364423562960e+00
+-4.3068520813398017e+01
+-1.2946963999056811e+01
+1.0103039168555469e+01
+-3.7651182270183035e+01
+-1.0336772307659110e+01
+1.2010001384269335e+01
+-4.6834769587865452e+01
+-4.7943762787984827e+00
+1.0828178961071723e+01
+-4.6431687030283008e+01
+1.3816226925925244e+01
+2.6199501854135772e+00
+-2.3281708757527696e+01
+-1.0421717740778677e+01
+1.1568629419283608e+01
+-4.7380563420902753e+01
+9.1401506297562545e+00
+7.2822613632262394e+00
+-4.2119546840022672e+01
+-1.1022870226081226e+01
+1.1145940071003738e+01
+-4.6332751885258098e+01
+-1.5559110839387905e+01
+1.0841000990343950e+01
+-4.2149143908432734e+01
+-1.4554940705581553e+01
+1.0946638874740788e+01
+-4.3482822720620675e+01
+-1.2781004391518008e+01
+1.1248956626317890e+01
+-4.6407723614329193e+01
+-8.0693382013467208e+00
+1.0112710970690667e+01
+-4.5387366281740569e+01
+-7.2392853347816919e+00
+1.0553039574671295e+01
+-4.7724078671876796e+01
+-1.2007794734141211e+01
+1.1144814760335425e+01
+-4.7244001623267074e+01
+-1.2693057494321250e+01
+1.0903329004721813e+01
+-4.6920862609380556e+01
+-1.1349778815889714e+01
+1.0867298665190784e+01
+-4.7836203375473858e+01
+1.2680190575366577e+01
+4.0868078163268704e+00
+-3.2638876525051266e+01
+-8.4886441738366027e+00
+1.0287240680933891e+01
+-4.7724407016488939e+01
+4.0000689494435431e+00
+3.6755633152111264e+00
+-2.5950350817976410e+01
+-9.0866478943854148e+00
+9.9347639883090419e+00
+-4.7480865311207147e+01
+1.4154336145466630e+01
+1.5000490984800470e+00
+-2.3688138905500495e+01
+1.2998139946641095e+01
+3.4848618650804895e+00
+-3.3087006161129246e+01
+-1.6984934917289234e+01
+1.0461865117812346e+01
+-4.5784038246900799e+01
+-1.6693495699996713e+01
+9.8141455492724869e+00
+-4.4125970869897294e+01
+-1.4303761108001932e+01
+8.4028460978241313e+00
+-3.8621113389391624e+01
+-1.2347935794516191e+01
+9.8985727874754765e+00
+-4.7454405125998747e+01
+-1.4844136334074845e+01
+9.6240274002544410e+00
+-4.5063269814983762e+01
+-1.4622906265542127e+01
+8.7168517237729919e+00
+-4.7616172416310306e+01
+4.4096147622778797e-01
+2.2846019669224682e+00
+-2.1450367347180201e+01
+1.4370450502844429e+01
+9.3574322421200795e-01
+-2.6562806381488524e+01
+1.1961782939472464e+01
+1.8761979472498398e+00
+-3.4802124383173528e+01
+2.9824369515041669e+00
+1.1691089441387337e+00
+-2.0728185806618797e+01
+1.6274627525364377e+01
+1.7233734818777974e-01
+-2.9337334481711444e+01
+1.4900959599548603e+01
+-6.0342742279900718e-01
+-2.3286301285015711e+01
+-1.2771691861193014e+01
+5.9188907575263690e+00
+-4.3037430970657461e+01
+-1.2771691861193014e+01
+5.9188907575263690e+00
+-4.3037430970657461e+01
+1.4602681372947439e+01
+1.9877201069060879e-01
+-3.1006387424664187e+01
+-8.6499018592823678e+00
+4.3673921061403815e+00
+-3.7516966501074585e+01
+1.2582405823084102e+01
+5.0209737754564898e-01
+-3.3834399997756393e+01
+-6.8064758327631045e+00
+3.8589860760719343e+00
+-3.7559615268694586e+01
+-5.6091615548672955e+00
+3.5788574837582132e+00
+-3.7116160978960536e+01
+-2.1650270541091152e+00
+1.6258549876432336e+00
+-2.3968418696312643e+01
+-8.9104332254265444e+00
+3.9290585298459493e+00
+-3.7136943901972664e+01
+1.4486389320133084e+01
+-3.4835072502637449e-01
+-3.3201764845191619e+01
+1.4102871630497198e+01
+-5.4237719326690192e-01
+-3.2426546824317768e+01
+-6.4528312136901391e+00
+2.8937152649099271e+00
+-3.5954183016207232e+01
+1.5025439752818309e+01
+-1.6858246204696719e+00
+-2.4925093882222871e+01
+-2.5847846007987672e+00
+1.2049063641363458e+00
+-2.4210303012033318e+01
+1.4312850342083417e+01
+-1.0386269370829051e+00
+-3.2130116883651510e+01
+-2.3460315216451515e+00
+9.1928487176224416e-01
+-2.3293917021964148e+01
+1.3984927167374597e+01
+-1.2782337802625956e+00
+-3.1552652900127974e+01
+1.4147412154036832e+01
+-1.9631279484117943e+00
+-2.9902369400541605e+01
+1.9234746319047238e+00
+-2.5719734360496660e-01
+-2.0368789307943825e+01
+3.2751057349917416e+00
+-6.6787342663429539e-01
+-2.0769843590657889e+01
+1.2061083071196375e+01
+-1.7801968047648238e+00
+-2.9464667816124837e+01
+-5.8608954897990939e+00
+1.3644040983082399e+00
+-3.3827092639622130e+01
+-2.5339760733667207e+00
+2.5858322519913818e-01
+-2.3296797351269269e+01
+-9.7540125198899101e+00
+1.7630754590778228e+00
+-3.3576845337185937e+01
+6.0081945224905740e+00
+-1.3479790859566545e+00
+-2.1686949735964934e+01
+-1.5461606032228372e+00
+-9.8589851703468540e-02
+-2.2035351870927659e+01
+2.8323069997680199e+00
+-9.7037114618683917e-01
+-2.0666952226869196e+01
+-2.5213415413648175e+00
+-3.8180730189931740e-02
+-2.2964106761189651e+01
+2.4720637223350392e+00
+-1.2390913286960956e+00
+-2.0698162445854539e+01
+1.6366745396555149e+00
+-1.0170479285966232e+00
+-2.2485019802065768e+01
+-1.7407457129622359e+00
+-6.1397641200576936e-01
+-2.1523103192183616e+01
+1.3240429237891455e+01
+-3.9495750518014945e+00
+-2.7491110396524981e+01
+-1.6445260059017099e+00
+-1.2230961421373265e+00
+-2.1589089720693885e+01
+-2.9628138684027152e+00
+-1.0550659679073284e+00
+-2.2072625245307673e+01
+3.2593806571600181e+00
+-2.0704908608980528e+00
+-2.3314940840982391e+01
+-1.9111364859368498e+00
+-1.3462150566803290e+00
+-2.1536398913558592e+01
+3.0759199106837363e+00
+-2.1181360022511906e+00
+-2.3229459064891483e+01
+6.3383079861474889e-01
+-2.2969712397647561e+00
+-2.0414726704469409e+01
+1.1477431749313716e+01
+-4.8415613733280543e+00
+-2.5698209351953039e+01
+-1.1407941536210313e+01
+-9.7254106433762089e-01
+-2.9069462529420555e+01
+-1.1175209386279072e+01
+-1.2330476893340521e+00
+-3.1443655182643877e+01
+-8.5411545059450376e+00
+-1.7461117938961392e+00
+-3.0403568546625053e+01
+-9.4537758354324541e+00
+-2.4920885205421071e+00
+-2.7529680954823839e+01
+-9.6852253766566374e+00
+-2.4412742109993579e+00
+-2.7303788450549625e+01
+-7.1035993058252034e+00
+-3.3296351354619080e+00
+-2.8027568128578590e+01
+-2.1700314158450418e+00
+-3.7293747400391108e+00
+-2.3324659658475465e+01
+-8.3276122595960231e+00
+-3.1888688748508431e+00
+-2.6846478923276692e+01
+1.1554117518633714e+01
+-6.9506108587517224e+00
+-2.3270832786514404e+01
+4.3609793553463616e-02
+-4.4962728983936238e+00
+-2.2772766634701561e+01
+1.7802463564583049e-01
+-5.1153933322362715e+00
+-2.2100503690270308e+01
+-7.3374887271027749e+00
+-4.8838086135489291e+00
+-2.6103870929587782e+01
+3.3446420662559611e+00
+-7.5792184324927803e+00
+-2.1383971660172200e+01
+-7.6405739980788532e+00
+-5.7660691843690799e+00
+-2.2586916370633350e+01
+-7.6405739980788532e+00
+-5.7660691843690799e+00
+-2.2586916370633350e+01
+-5.8324924875475057e+00
+-6.3361941716383940e+00
+-2.2798666603610258e+01
+1.6008336934781704e+00
+-8.1218638530756557e+00
+-2.1715689524978366e+01
+1.0006956951822231e+01
+-9.6117463285359079e+00
+-1.9965774275863179e+01
+7.9381427273129086e+00
+-9.3224026048670314e+00
+-2.0844624508261042e+01
+-1.6525527627694971e+00
+-7.6440779623683888e+00
+-2.1333343014778823e+01
+5.1845191664977834e+00
+-9.2032002758610947e+00
+-1.9407775002761021e+01
+-4.2199909902036303e+00
+-7.8086836603441281e+00
+-2.0209882759729027e+01
+-2.2257317346956665e-01
+-9.1184871497694591e+00
+-2.0267212223497449e+01
+-4.9229149383489466e+00
+-8.8112380260294714e+00
+-2.0800544487009731e+01
+-7.3131403439618980e-01
+-9.5510710859064432e+00
+-1.9715280727145451e+01
+-3.3303262619351086e+00
+-9.2864703174979333e+00
+-2.0128741951748736e+01
+6.3458654093769322e+00
+1.7866587686712315e+01
+-5.4402623121438445e+01
+3.6873962660858073e+00
+1.6346051310806544e+01
+-5.4721494413343585e+01
+1.5945443173665657e+01
+1.1520721771237367e+01
+-4.6051149619311467e+01
+-6.2773119874713845e-01
+1.4667536022064317e+01
+-5.1585308426509883e+01
+1.6266254947415526e+01
+1.5139869392577182e+01
+-6.4212301459635853e+01
+1.5026224971742106e+01
+1.4481511818590711e+01
+-6.2372426054001373e+01
+-1.7413180011232410e+00
+1.1694435319367448e+01
+-4.8244737015775456e+01
+1.3046669033347765e+01
+3.8423082429429538e+00
+-2.6098513530517270e+01
+1.2833868801122037e+01
+3.9297679040341378e+00
+-2.7030647561365619e+01
+1.2482569473834284e+00
+9.4911902851939942e+00
+-4.4378723741226835e+01
+1.1674180481214073e+01
+4.7507572203853607e+00
+-3.1258498837260571e+01
+-5.2229305703749640e+00
+9.6987406916031151e+00
+-4.5371746271626478e+01
+-1.0593717157324825e+01
+1.1218974863691214e+01
+-4.8827967412553946e+01
+-1.2850193665199614e+01
+1.1082750812879196e+01
+-4.6825588947885628e+01
+-1.3765264477934302e+01
+1.0647523238606110e+01
+-4.5432378392748852e+01
+-2.2277866297335454e+00
+8.2863568245867114e+00
+-4.3371685354964143e+01
+-5.1231863997935001e+00
+9.2962875470560213e+00
+-4.5998814250631924e+01
+-1.3476352466039277e+01
+1.0469140798564267e+01
+-4.7237185887770224e+01
+-1.5571182355135102e+01
+9.6938612338749408e+00
+-4.5929976816589601e+01
+-1.6203341543930392e+01
+9.5358201753374665e+00
+-4.6712866198918356e+01
+-1.0734941502675740e+01
+7.4277610284358779e+00
+-4.1596831668546791e+01
+3.3972936632415993e+00
+1.7923583900440194e+00
+-2.1659785593355267e+01
+-8.2580978366119151e+00
+5.9801182543280609e+00
+-4.0835955312311434e+01
+-1.1983397345301553e+01
+6.1467064005038727e+00
+-4.2714350646583874e+01
+1.3492643013266534e+01
+1.1298813043773090e+00
+-3.4529075821002287e+01
+1.3492643013266534e+01
+1.1298813043773090e+00
+-3.4529075821002287e+01
+1.5009100534102044e+01
+-2.9149876791790909e-02
+-3.1486828512596809e+01
+1.5045163744775371e+01
+-2.4148302108400549e-02
+-3.1555795788320008e+01
+-1.1808075631309748e+01
+5.2169565622902452e+00
+-4.1047430841889742e+01
+-1.1808075631309748e+01
+5.2169565622902452e+00
+-4.1047430841889742e+01
+1.2600034910516380e+01
+2.5252597325103721e-01
+-3.3569432458501197e+01
+-1.8594759254369048e+01
+6.5447677811687548e+00
+-4.6763321134812365e+01
+8.8222017227362759e-01
+7.7796762339787706e-01
+-2.1179469729014759e+01
+-6.4482200097305595e+00
+2.6271760970471805e+00
+-3.5673802674100543e+01
+-6.2586924615316208e+00
+2.3629782470527827e+00
+-3.5618735711277530e+01
+-6.2508661873614324e+00
+2.3516563342088950e+00
+-3.5310866087179008e+01
+1.4521938513813552e+01
+-1.6364202665796335e+00
+-3.1269469668218420e+01
+-6.3264812294645543e+00
+1.7976956221013791e+00
+-3.4372993523972681e+01
+-1.7060919328494291e+00
+2.9956238098874111e-01
+-2.3092241997048401e+01
+1.1531967564521617e+01
+-2.0150401359206485e+00
+-2.9172071231657206e+01
+-6.9877042068470328e+00
+4.6197262219364127e-01
+-3.3346775356643512e+01
+1.3274441073080354e-01
+-2.1999873391825897e+00
+-2.0522128093224207e+01
+-1.1749512597034664e+00
+-2.2354910319002599e+00
+-2.0442592612399697e+01
+-6.7422906052512088e-01
+-2.3464282645745778e+00
+-2.0874457884164034e+01
+-8.4080073632465044e+00
+-1.8243016655174777e+00
+-2.8617082183486936e+01
+-8.6690114774183780e+00
+-1.8688046381834493e+00
+-2.9696094948123854e+01
+-9.1302914281300165e+00
+-1.7540226486818167e+00
+-2.9116745477239629e+01
+1.1677841397258758e+01
+-5.5369948609390249e+00
+-2.5767921242167130e+01
+-6.9947572279745867e+00
+-2.3968932590245400e+00
+-2.9120917975570940e+01
+-6.9947572279745867e+00
+-2.3968932590245400e+00
+-2.9120917975570940e+01
+-1.1854313121057716e+01
+-2.4208142200774478e+00
+-2.5525680450550254e+01
+-8.2658603365014063e+00
+-3.3809412099567968e+00
+-2.6335565292908498e+01
+1.1375515317872898e+01
+-6.9762587572339694e+00
+-2.3155325179654419e+01
+-6.6971561351743869e+00
+-5.2426032472446051e+00
+-2.5386290034590481e+01
+-7.8378904577397570e+00
+-5.4777994680184259e+00
+-2.3057531462046462e+01
+-4.6018976181313072e+00
+-6.3030218301853793e+00
+-2.2992189641877623e+01
+-7.7140409545094437e+00
+-5.6455995079928316e+00
+-2.2744296920561037e+01
+-8.1041066118255447e+00
+-5.6457753352641520e+00
+-2.2372381450871881e+01
+-5.9548998649644753e+00
+-6.3469125793063235e+00
+-2.2464492629930209e+01
+-8.3940570530279857e+00
+-5.8161052736056238e+00
+-2.1927911890345605e+01
+3.6254394118223274e+00
+-8.4519669308809586e+00
+-2.1376539047226146e+01
+6.8212844431090618e+00
+-8.8706996252657113e+00
+-2.0661364316837517e+01
+4.3716821034823363e+00
+-8.9101245976936596e+00
+-2.0065300350806989e+01
+-6.0618612418436335e+00
+-7.0538973770670976e+00
+-2.1096484506530079e+01
+4.9185842944280506e-01
+-8.8324806325482896e+00
+-2.0698569647972583e+01
+1.3480158198150248e+01
+9.9174857483851770e+00
+-3.2843928995367122e+01
+1.3609045692463901e+01
+8.1373933782351919e+00
+-3.5614922141500038e+01
+-9.6431158183164314e+00
+1.3461506369317016e+01
+-4.3895991539870387e+01
+8.0848591177147568e+00
+1.0376357797181496e+01
+-4.4465692149958478e+01
+5.8730255602866359e+00
+9.6949867063149995e+00
+-4.4236790297736718e+01
+9.2566884368737341e+00
+7.7560063694590244e+00
+-4.2667518411042067e+01
+1.0388002285111341e+01
+7.4198758417427184e+00
+-4.2389349436431971e+01
+-1.4881530783069678e+01
+1.0122541702694859e+01
+-4.1674146469160519e+01
+-1.3010423906642089e+01
+1.0631926220938917e+01
+-4.7295179854552465e+01
+-1.2492490700354972e+01
+1.0857281531692738e+01
+-4.9624927423257269e+01
+-1.5267137162414732e+01
+9.6239309819393171e+00
+-4.3409067471492726e+01
+-6.7122705655908632e+00
+5.7613034156071850e+00
+-3.9904529437336684e+01
+-5.5051551714544509e+00
+5.5376902673916302e+00
+-3.9585027793828502e+01
+1.2705069620338151e+01
+1.8147614750034522e+00
+-3.4818347401120398e+01
+-1.1410404275378843e+01
+4.9828096014298451e+00
+-4.0688894275599367e+01
+-3.5134929412849978e+00
+1.9228709466631819e+00
+-2.5663528862179646e+01
+1.5080749011499741e+01
+-6.4554413074132133e-01
+-3.2166737023707455e+01
+-6.6082581078233646e+00
+3.1659213424422208e+00
+-3.6422094071578037e+01
+-9.0914297506441564e+00
+1.0726382096964817e+00
+-3.3352465683996300e+01
+-2.4332525155060107e+00
+-3.0475030752690396e-01
+-2.2611693658706901e+01
+3.6900408203432677e-01
+-1.5062734337107024e+00
+-2.0368506852984659e+01
+-1.9871961202977799e+00
+-1.7310626793496766e+00
+-2.1301990098874491e+01
+-7.9537209232409500e+00
+-1.9114685411486354e+00
+-3.0201623199680711e+01
+-4.0062929836361638e+00
+-2.4360398462740482e+00
+-2.5771557818127320e+01
+-8.4558949258571197e+00
+-2.4630228871854998e+00
+-2.7527059313419254e+01
+1.1145309643331593e+01
+-6.2564871188885123e+00
+-2.5118339358652491e+01
+-6.4535185413766216e+00
+-5.0331567730276623e+00
+-2.5998831889440517e+01
+-7.7030087785262564e+00
+-4.8368065894850902e+00
+-2.6125783792133099e+01
+5.8807226695397219e-01
+-6.1669428485614191e+00
+-2.1672188887518711e+01
+7.9904664731315274e+00
+-9.4285528186602505e+00
+-2.0509464903766979e+01
+7.9904664731315274e+00
+-9.4285528186602505e+00
+-2.0509464903766979e+01
+6.9016476867788263e+00
+-9.2904882367852455e+00
+-2.0127687177521128e+01
+2.1702507553039649e+00
+-8.4502422736408302e+00
+-2.0257176517928158e+01
+6.4538409118092686e+00
+-9.6169345596708347e+00
+-1.9707541816635725e+01
+5.0133975163361981e+00
+-9.5297078510063233e+00
+-1.9637189775416438e+01
+6.8404259673236130e+00
+-9.9050031643941630e+00
+-1.9359770072140599e+01
+5.4422533473458872e+00
+-9.6344511283171528e+00
+-1.9529576164017918e+01
+1.4863007856206830e+01
+1.9860876032912866e+01
+-5.6905133267558867e+01
+3.5820432824400368e+00
+1.8190045979520182e+01
+-5.9542769755662214e+01
+1.3722127303636073e+01
+7.5951542405076520e+00
+-3.5525914755779638e+01
+1.5548302202989492e+01
+9.5716779306949018e+00
+-4.7006457296403234e+01
+7.1104012583102492e+00
+9.4937927323125031e+00
+-4.3129815495049620e+01
+-9.3926915233134043e+00
+1.1833360375065983e+01
+-4.9349244277933344e+01
+-9.6718386125004798e+00
+1.1281929150868816e+01
+-4.8085345591347235e+01
+-8.5527313496391089e-01
+2.9358385688428936e+00
+-2.2910810707267718e+01
+-1.5894388935093573e+01
+9.0695151178764917e+00
+-4.6097392459829919e+01
+-7.5297660187119642e-02
+1.9651577035715084e+00
+-2.0950677911215816e+01
+1.4391866046411083e+01
+-1.0614332868364629e+00
+-3.1744808204509518e+01
+1.4047275350381303e+01
+-1.4207980184814557e+00
+-3.1140591763391388e+01
+5.9463722115993878e-01
+1.9311791353973068e-02
+-2.1099587095838100e+01
+5.9463722115993878e-01
+1.9311791353973068e-02
+-2.1099587095838100e+01
+1.3481061177963852e+01
+-2.3385702400687398e+00
+-2.9430150832845275e+01
+1.1193451547898224e+01
+-2.8092246035017463e+00
+-2.8126155047945204e+01
+-3.0710612219300049e+00
+-8.4855059939339472e-01
+-2.2097605770456099e+01
+-1.9260260823521771e-01
+-1.3634846080675629e+00
+-2.0631829555757669e+01
+-2.1824390127064257e+00
+-1.3781313521846181e+00
+-2.1593571339847511e+01
+-8.2217108813436131e+00
+-1.2030427675853534e+00
+-3.1078071824856224e+01
+-7.9783312993160669e+00
+-1.4290632013839746e+00
+-3.0853458619820223e+01
+-7.9783312993160669e+00
+-1.4290632013839746e+00
+-3.0853458619820223e+01
+-9.1875256067867479e+00
+-1.2667153131227207e+00
+-3.0579445561116305e+01
+-3.7288098520996207e+00
+-2.3119744686472616e+00
+-2.4817650257945516e+01
+-7.4415996638697210e+00
+-3.0267751462782915e+00
+-2.8386316579910993e+01
+2.7886571476152540e+00
+-4.2972656286063220e+00
+-2.1245726403425941e+01
+1.6544266622424391e+00
+-4.8723066670586617e+00
+-2.2387085248784089e+01
+-7.4938576765988421e+00
+-4.3572551867743856e+00
+-2.6649646498017642e+01
+-6.6206043028374486e+00
+-5.6724158975604304e+00
+-2.5087643987491354e+01
+-7.7615288729645293e+00
+-5.8122477242762027e+00
+-2.2667553909546264e+01
+-8.2235775105618263e+00
+-6.0379969973049050e+00
+-2.1616169308114458e+01
+-2.0885844741609834e+00
+-7.8082095756668028e+00
+-2.2111394052906572e+01
+2.5139422984876103e+00
+-9.3550825713048091e+00
+-2.0101003786261654e+01
+2.3707110976065349e+00
+-9.4150215466962077e+00
+-1.9775410578055194e+01
+-2.3655305342555750e+00
+-6.9224855885259495e-01
+-2.2917058903217075e+01
+-2.4840339710481194e+00
+-4.0412570242181660e+00
+-2.3655683665409668e+01
+-6.8653337556237419e+00
+-5.4250863871551296e+00
+-2.5485630089732350e+01
+7.6688670284145468e+00
+-9.1890252774364090e+00
+-2.0798590136861595e+01
+6.7939888055808666e+00
+-9.5109495137446256e+00
+-1.9929424317558531e+01
+5.2978013782572173e+00
+-9.5391699795992206e+00
+-1.9731142550706963e+01
+4.2654914145957177e+00
+-1.0123503392149892e+01
+-1.8948197677736086e+01
+7.7598911397192412e+00
+1.8184027553850839e+01
+-5.4733091114017263e+01
+1.5568533774634835e+01
+2.7562354152269601e+00
+-2.8829335725917662e+01
+-2.2172227994443032e+00
+1.3324417763454388e+00
+-2.4262251870855316e+01
+-1.3513230560084561e+00
+-1.7164234868544042e+00
+-2.1216077372480793e+01
+-2.7286580121578523e+00
+1.3970632874608888e+00
+-2.4587970612199396e+01
+-6.8581279756515706e-02
+-9.0266443862796208e+00
+-2.0404487752142458e+01
+1.2822213231883117e+00
+1.7339498252388591e-01
+-2.0523123051997064e+01
+-2.0337540565527963e+00
+-1.7248512119261616e-01
+-2.1701644964105075e+01
+-8.4784276910597764e+00
+1.3257910383426852e+01
+-4.6185988933050801e+01
+7.5211288515235220e+00
+2.8233457140256256e+01
+-4.5307066791612577e+01
+9.9811294098795784e+00
+1.1909805223523399e+01
+-2.4781533729872148e+01
+1.3313182281309569e+01
+1.6183107913101065e+01
+-3.0807190110071492e+01
+1.0266227468461409e+01
+1.0965304011782667e+01
+-2.3941894622466183e+01
+1.7491737922836148e+01
+2.9762880990208853e+01
+-5.1242404429384543e+01
+-1.0481942115703838e+01
+1.9599226726149421e+01
+-3.4592134214114765e+01
+1.5653652142893231e+01
+2.7229895791740599e+01
+-4.9573473285590929e+01
+1.5752857637210835e-02
+2.3023910288833981e+01
+-4.1940381172666875e+01
+9.2795037924091428e+00
+6.8496404095590089e+00
+-2.0131459889014458e+01
+1.0578391828826222e+01
+1.0724349073509474e+01
+-2.6174578163063039e+01
+1.0679397033839289e+01
+1.0193725619792868e+01
+-2.6363107930956822e+01
+9.4422734440662257e+00
+6.3049083358292499e+00
+-2.0671211939871288e+01
+-7.7815870383189303e+00
+1.9154180124991424e+01
+-3.8097927490916497e+01
+9.6234257005966395e+00
+5.4669235611860989e+00
+-1.9745020480161877e+01
+1.2012784631006129e+01
+8.7286062586198288e+00
+-2.5930219088089533e+01
+6.6948102743468789e+00
+2.3053813712719709e+01
+-4.8324032144447749e+01
+-7.4284493308579140e+00
+1.8605277347477344e+01
+-3.9538795629858413e+01
+-6.6226333459616091e+00
+1.8686931037753357e+01
+-4.0062860275562748e+01
+-6.6226333459616091e+00
+1.8686931037753357e+01
+-4.0062860275562748e+01
+-1.4353866775520017e+00
+2.0183015894412563e+01
+-4.3499837627901037e+01
+9.5946167931266455e+00
+6.1609454209426104e+00
+-2.2107664242022320e+01
+9.5532388603389311e+00
+6.0710724894730426e+00
+-2.1943677803492072e+01
+-7.3640606950355281e+00
+1.8145272828495958e+01
+-4.0115038753261750e+01
+9.6291000191589493e+00
+5.7378426674573770e+00
+-2.2030123190767810e+01
+1.1231740319761006e+01
+1.1989790175142542e+01
+-3.3120876758545919e+01
+9.7538882537195484e+00
+2.3445773340891581e+01
+-5.2541860922875536e+01
+-9.0955956822864525e+00
+1.7525572971004486e+01
+-3.9495394675894026e+01
+-8.8869745267937041e+00
+1.7502055889067890e+01
+-3.9775188950410211e+01
+7.0952361453590296e+00
+2.0621105648037847e+01
+-4.8263281039600052e+01
+9.7694507863479298e+00
+4.1877646286792407e+00
+-1.9918488532870093e+01
+-8.9846329405655982e+00
+1.7242414281829877e+01
+-3.9238367141874626e+01
+1.2646053651327987e+01
+1.2000509110320692e+01
+-3.4298613361066216e+01
+9.4864332446736410e-01
+1.9909187585057641e+01
+-4.6611903316998877e+01
+1.2710973728408261e+01
+1.1396095350368583e+01
+-3.4089161679218037e+01
+5.6983192546936774e+00
+2.1549079469527644e+01
+-5.1127680608505344e+01
+1.4297319175445782e+01
+5.8845760016383295e+00
+-2.4975761530420087e+01
+8.3917170766031610e+00
+1.9993713747996971e+01
+-5.0427199727480449e+01
+3.6839788427661810e+00
+2.0694060311145353e+01
+-5.0524690263570747e+01
+1.0066286295523605e+01
+6.2049068515147718e+00
+-2.5479450305344280e+01
+9.9561705420032443e+00
+3.6704290759159792e+00
+-2.0704015363072276e+01
+1.1781257647833737e+01
+8.6903142494145378e+00
+-3.0601317926106013e+01
+1.1928079379769105e+01
+9.7470459501936855e+00
+-3.2880366471590285e+01
+1.3318532179494321e+01
+1.0275245063868546e+01
+-3.4415414334751965e+01
+1.3673733367689497e+01
+5.9264172845548089e+00
+-2.6381940638298492e+01
+6.2956305850382259e+00
+2.0845930355206018e+01
+-5.3007789974983581e+01
+1.2942648307678725e+01
+1.0616112531973741e+01
+-3.5484603834108036e+01
+1.7217513749437096e+01
+2.0050591652596250e+01
+-5.4800048523486367e+01
+1.7217513749437096e+01
+2.0050591652596250e+01
+-5.4800048523486367e+01
+1.0163046717611644e+01
+4.5371509906219751e+00
+-2.3618502732723535e+01
+-2.0348267329273120e+00
+1.7753052289191285e+01
+-4.6592692147146082e+01
+1.0152914910724352e+01
+4.2724555038085557e+00
+-2.3315735739765749e+01
+1.2244511872214025e+01
+7.2248821382723385e+00
+-3.0518856818469409e+01
+-1.2618206893184006e+01
+1.5059911049640853e+01
+-4.0253193745800665e+01
+1.1670304524843653e+01
+1.0166065005291523e+01
+-3.6073358516897024e+01
+-1.2477802584081847e+01
+1.4580822201469589e+01
+-3.9449744070348409e+01
+1.0381212784282958e+01
+4.1224547937099398e+00
+-2.5407312076694406e+01
+1.2483088012387135e+01
+5.6210715060261531e+00
+-2.9344343696499756e+01
+1.2455314624475260e+01
+5.5193059038007668e+00
+-2.9504262027676628e+01
+-7.5857107914140585e+00
+1.4872145394641379e+01
+-4.4295239995352723e+01
+1.1572165722256154e+01
+8.4683867064960285e+00
+-3.5567601598988048e+01
+1.0368653384311099e+01
+2.3668811844527626e+00
+-2.2281477845772134e+01
+1.0675522819680262e+01
+4.2858743072276688e+00
+-2.6731142258548704e+01
+4.5562262451043978e+00
+1.6949497630700595e+01
+-5.2946454153079600e+01
+-6.8702148673598975e+00
+1.4680966605913421e+01
+-4.4684169478139516e+01
+1.2694064845908272e+01
+5.3345884587563939e+00
+-2.9872207753504824e+01
+-8.3519598965879620e+00
+1.4406574177775461e+01
+-4.3671941213494677e+01
+1.3833049782230741e+01
+3.6268640846615998e+00
+-2.6667735827262522e+01
+1.2633113407397959e+01
+5.1414390584464043e+00
+-2.9690620592606496e+01
+-8.9472286413154904e+00
+1.4160635234621816e+01
+-4.3806207436513418e+01
+1.3459659887490121e+01
+4.0489219520299082e+00
+-2.8117754835093312e+01
+-1.2813073339880752e+01
+1.3401936498479975e+01
+-4.0795537383498065e+01
+-1.0241809425658957e+01
+1.3808132540835436e+01
+-4.3130682488494507e+01
+6.9911650967689132e-01
+1.5508111136055176e+01
+-5.0679680391350622e+01
+1.0735761135013746e+01
+3.4275916569089113e+00
+-2.6240764802585360e+01
+-1.3955227546693147e+01
+1.3287188576743569e+01
+-4.1027387719694815e+01
+-1.3084721713334012e+01
+1.2894609904310991e+01
+-4.0333816180896896e+01
+1.0056567414094697e+01
+1.7416311479729249e+01
+-5.8847396963167704e+01
+-1.5316156418154625e+01
+1.2577257163352430e+01
+-3.8823422155792706e+01
+-1.3567864260111534e+01
+1.2707931256097263e+01
+-3.9844596035856242e+01
+-1.3443038957199949e+01
+1.2625295234494498e+01
+-3.9827768533965852e+01
+1.0574260827710541e+01
+1.9156895735086503e+00
+-2.2998920001556769e+01
+-1.2951495700438198e+01
+1.2755253718440247e+01
+-4.0490557479338399e+01
+-1.5006429344326323e+01
+1.1792543839533694e+01
+-3.9254753114566036e+01
+-3.8193881310760944e+00
+1.4907471401758716e+01
+-5.1001879815645275e+01
+-1.1461087049905405e+01
+1.2240604927431601e+01
+-4.2390941904868939e+01
+-1.2628598597150736e+01
+1.2390004147579621e+01
+-4.2114630339307254e+01
+1.3142917176227213e+01
+2.5454812626728263e+00
+-2.7680035510007702e+01
+1.4126271816832061e+01
+2.5486468411681851e+00
+-2.8167085540546339e+01
+1.0881908973823277e+01
+1.7343654016681125e+00
+-2.5183809479504486e+01
+-1.0394448812035562e+00
+2.8398945562110338e+00
+-2.3287035395590440e+01
+7.2217440267668187e-01
+1.5207375710184450e+00
+-2.0802016241572655e+01
+1.0823466813942860e+01
+6.9374067385698901e-01
+-2.3685644945253546e+01
+-1.2527634479021946e+01
+1.1357120251409881e+01
+-4.2449635687742088e+01
+3.6945001269111372e-01
+1.4501928082857403e+00
+-2.0875198814066959e+01
+4.7731633840641402e-01
+1.2689147679603696e+01
+-5.2059078403295942e+01
+9.0516957718335422e-01
+1.1272785785111925e+00
+-2.0480167080837663e+01
+-1.5762355351435701e+01
+1.0580452676696519e+01
+-3.9680631099082149e+01
+-1.1997559525576879e+01
+1.1259784666747613e+01
+-4.3387814630822646e+01
+1.4315341701556639e+01
+1.5975595544174288e+00
+-2.8789002602494641e+01
+-1.2954754853771894e+01
+1.1110488295819511e+01
+-4.4251533861912648e+01
+-2.0833863060961599e+00
+9.9178926085096712e+00
+-4.5816544303165735e+01
+1.4392137454615659e+01
+1.0566387534976545e+00
+-2.8254211388719511e+01
+-1.4723265301488432e+01
+1.0260193047956708e+01
+-4.1216630558165868e+01
+-1.5993172081101813e+01
+1.0243564958783500e+01
+-4.1399425762122256e+01
+1.1345931018450987e+01
+-9.8982437832548203e-02
+-2.5725007295747741e+01
+-2.9766232268498385e+00
+3.1471739468632807e+00
+-2.7843998311272305e+01
+1.4775804735960191e+01
+1.1595494816626999e-01
+-2.8793621696850416e+01
+-2.7763344854265806e+00
+2.9083873293461275e+00
+-2.7488667596423678e+01
+1.4330643910938358e+01
+4.0421382267364314e-01
+-2.9800978095006197e+01
+-1.5536814241389225e+01
+9.4167902093623166e+00
+-4.2601947316307033e+01
+-3.2791545423868618e+00
+2.6220952738377217e+00
+-2.7066674117911401e+01
+-3.5157851864265299e+00
+2.4287721694158448e+00
+-2.6692560394986067e+01
+-1.0729539713237504e+00
+1.5800900359290726e-01
+-2.1560296359310303e+01
+-5.6374762293112946e-01
+1.8735901708752323e-01
+-2.2058423877936981e+01
+-2.0638743288419121e+00
+6.3487983724078312e+00
+-4.3316070698021370e+01
+2.7180673530472887e+00
+-1.0839258317411529e+00
+-2.0661292810506879e+01
+-7.9711905035238084e-01
+-2.4951544249116206e-01
+-2.1365842805329180e+01
+8.2464012505337003e-01
+-8.9458478722886803e-01
+-2.0552219445723232e+01
+4.4600193855370493e-02
+-1.3315801375801444e+00
+-2.0542168348907719e+01
+-1.0220607073225925e+00
+-1.0671874338317167e+00
+-2.1947850171371869e+01
+-9.4347236135726416e+00
+3.2712122960678234e+00
+-3.6980376756961356e+01
+-7.4383970974097335e-01
+-1.9469626067757608e+00
+-2.1496207358027458e+01
+-1.2606730447026315e+00
+-2.1034075892260673e+00
+-2.0670008733421628e+01
+-8.5300277253542245e-01
+-2.6899142296960763e+00
+-2.0395582018093272e+01
+1.3427060675410623e+00
+-3.3044516904842895e+00
+-1.9999171559032327e+01
+-8.4264328753543580e+00
+8.0497050786660940e-01
+-3.3556530718184057e+01
+-4.5740330454816028e-02
+-3.0662362324934427e+00
+-2.1444518798116579e+01
+-3.4649617917797166e+00
+-2.1994369452728812e+00
+-2.4163505701570369e+01
+-3.5259771327152878e+00
+-2.1835779022887558e+00
+-2.4520786548551062e+01
+1.9774406268941627e-01
+-3.5376697359598586e+00
+-2.0866467262197180e+01
+1.6454928494609769e-01
+-3.3968083657757986e+00
+-2.1763997792595667e+01
+-2.0646046887804159e+00
+-2.9024430290307159e+00
+-2.3956715193633190e+01
+-9.2954784418325751e+00
+-2.2369808309936348e-01
+-3.2782754807353172e+01
+5.7089664068289037e-01
+-3.8423390577137364e+00
+-2.1973671234326254e+01
+-7.1123976138053084e+00
+-1.0392252354541720e+00
+-3.1469482871402601e+01
+-2.0601380795808875e+00
+-3.4443967462298803e+00
+-2.4622285848397812e+01
+-1.2421986730770795e+00
+-3.8494995211345131e+00
+-2.3801257959787424e+01
+-1.7906288852009731e+00
+-3.6902417577273203e+00
+-2.4245438679616278e+01
+-8.1235846447545637e+00
+-1.8145474741163237e+00
+-3.0767592349513986e+01
+-7.3546389823395950e+00
+-1.8583919934047068e+00
+-3.1401247942385087e+01
+-9.5370200002801013e+00
+-3.0530211932375253e+00
+-2.9140351544826650e+01
+-7.6608628684887874e+00
+-3.7708816114890404e+00
+-2.8256073302511137e+01
+-7.1393436894981246e+00
+-3.9903246098252101e+00
+-2.8521571765844161e+01
+-6.8674419873073633e+00
+-4.7822449462465197e+00
+-2.5876603450176880e+01
+9.8530787375976736e+00
+1.4480061664985744e+01
+-2.8507348187448272e+01
+-1.2841776458007971e+01
+1.9671681968130795e+01
+-3.4400963477111198e+01
+1.4127313460153886e+01
+2.8264627407721495e+01
+-5.0147050067051303e+01
+1.8577858798133398e+01
+2.9323957262575419e+01
+-5.2771127804817368e+01
+1.8369867854594439e+01
+2.9274440490762725e+01
+-5.2576081035678733e+01
+2.0009747347863094e+00
+2.0699337012818606e+01
+-4.0003467798816786e+01
+1.6986572977119028e+01
+2.7419454389634701e+01
+-5.3170957207946216e+01
+9.2730712157068442e+00
+2.4063481881694443e+01
+-4.7734955206131318e+01
+9.4581480099589115e+00
+6.4762850213799208e+00
+-2.0909068231900282e+01
+2.3523727434102373e+00
+2.1474829336008991e+01
+-4.4300128524907990e+01
+9.5945981760902672e+00
+4.6116562402841055e+00
+-1.9480148889656981e+01
+5.3857597879979959e+00
+2.2232532417941627e+01
+-4.8194295719450317e+01
+-9.3212053945665883e+00
+1.7613787188501647e+01
+-3.8200950833273879e+01
+-1.3117029348913311e+01
+1.6752445453810108e+01
+-3.5713385390304865e+01
+4.1660919463800132e+00
+2.0707635556176982e+01
+-4.6473834807313686e+01
+6.3149181255570443e+00
+2.0870079017305152e+01
+-4.7746276359709128e+01
+1.5977901237658209e+01
+2.4208968803949904e+01
+-5.4899336888939203e+01
+1.2726436625605007e+01
+7.4076555790957306e+00
+-2.5938844248836151e+01
+-9.1938973831121356e+00
+1.7246557074886692e+01
+-3.8972137263334702e+01
+7.3734732032361201e+00
+2.0933223486111469e+01
+-4.8884836751885956e+01
+9.7212987769727270e+00
+5.7141150537639085e+00
+-2.3126601598747236e+01
+7.5236986102806993e+00
+1.9672090813248378e+01
+-4.9984972905033160e+01
+7.4291288615922388e+00
+2.0121323559670593e+01
+-5.0825115158579472e+01
+6.2612591266118320e+00
+2.0705781609672808e+01
+-5.1475191599038382e+01
+-1.1731167780971687e+01
+1.6158934163648890e+01
+-3.9485391255943021e+01
+-3.9569008608339082e+00
+1.7315606666843390e+01
+-4.4200851826710135e+01
+1.0148539547553174e+01
+3.6228109687782752e+00
+-2.2059561913626570e+01
+-7.3494409756027297e+00
+1.6043373432179699e+01
+-4.3128407337838603e+01
+-3.7888699444812977e+00
+1.6536292233694926e+01
+-4.5234377586771984e+01
+1.3028028603093333e+01
+5.2351445374295098e+00
+-2.7411100831600280e+01
+1.0423701305265677e+01
+5.3790601739442980e+00
+-2.7207448118222811e+01
+1.3874443600067744e+01
+4.0958848490582360e+00
+-2.6204856166381006e+01
+1.3108408743272879e+01
+4.8200969267497831e+00
+-2.7804575294174896e+01
+1.0457085170590721e+01
+3.8633332415816093e+00
+-2.5099616449698402e+01
+1.2028185838081075e+01
+5.9575626345047823e+00
+-3.0355005649369090e+01
+-1.1464756465944079e+01
+1.3975583727678380e+01
+-4.1196401693839100e+01
+7.3249400739331314e+00
+2.0268303117038624e+01
+-6.0840220691386129e+01
+1.3071806172507635e+01
+3.4675818397811837e+00
+-2.5782909121929880e+01
+-5.8488990715535960e-01
+1.6720931682379490e+01
+-5.1772497677688122e+01
+1.4983959865924943e+00
+1.5578385779564471e+01
+-5.2243301727392932e+01
+-1.2471150595201861e+01
+1.3194774392607471e+01
+-4.1657595568176269e+01
+-1.5163760113719242e+01
+1.2411989866593537e+01
+-3.9986367093775868e+01
+-1.5285240777247386e+01
+1.2083901721828560e+01
+-4.0175326769897175e+01
+-1.2578014658086222e+01
+1.2382790518757911e+01
+-4.3152986624623750e+01
+1.0914597343552895e+01
+8.8392993888016014e-01
+-2.4315704548078564e+01
+1.4067556510102588e-01
+1.2241127553330964e+00
+-2.0816384396411831e+01
+-1.5421227507980773e+00
+3.3558485057262990e+00
+-2.6973376745423103e+01
+-2.5428682736936241e+00
+3.5367424222175430e+00
+-2.8013662213992088e+01
+-3.4591030981951425e+00
+9.2386057868050013e+00
+-4.5399389788170240e+01
+-1.1383731133524902e+01
+1.0268837622529151e+01
+-4.4860015619505795e+01
+-1.6137602318192659e+01
+9.6352241457758403e+00
+-4.1544203765179326e+01
+-1.3605618944911020e+00
+9.1695057943561209e-01
+-2.2113347877247719e+01
+-6.1891244067764530e+00
+8.1058100825531039e+00
+-4.3388575584138742e+01
+-1.7383137140770404e+00
+7.0061866038826004e+00
+-4.2508592960405394e+01
+-3.3210753336696817e+00
+2.5042573859890846e+00
+-2.6976211992200877e+01
+3.0138701203023417e+00
+-6.1253090347681549e-01
+-2.0611479360391396e+01
+-1.1668409220531093e+00
+7.4334283868217783e+00
+-4.5052198526999589e+01
+4.5109298786904279e+00
+-1.1645892631639316e+00
+-2.1059613003308090e+01
+-3.5297332571536977e+00
+5.5920305822994445e+00
+-4.0323059779586615e+01
+2.2378048414820478e-01
+-7.1199873793522250e-01
+-2.0555234089902090e+01
+1.4043728226293309e+01
+-6.2846183472909845e-01
+-3.1178263088169579e+01
+-7.8874846251189341e+00
+5.6862130148360333e+00
+-4.0235004286655283e+01
+7.3198607044190134e-01
+-7.9056477926328339e-01
+-2.1402148244179894e+01
+1.4543468713284856e+01
+-1.3191609344049573e+00
+-3.0323579403601677e+01
+-1.8552126235268567e+00
+-1.0016144784245344e+00
+-2.1875361074726186e+01
+-4.7052708406298338e+00
+2.2550246731745545e+00
+-3.5971721968982138e+01
+-5.7075143702665763e+00
+1.3140479384155406e+00
+-3.4165223608043071e+01
+-1.4314730809211995e+00
+-2.2974488542884601e+00
+-2.2205878888639507e+01
+-2.8605095139058552e+00
+-1.9401761433432472e+00
+-2.4350271902563566e+01
+-9.0309130896097525e+00
+3.4635619360485030e-02
+-3.3271173772158527e+01
+-2.8691308453085531e+00
+-2.7372904779040148e+00
+-2.2654718002736292e+01
+-6.6763363623552969e+00
+-5.3989243200331327e-01
+-3.3489593942496022e+01
+-9.3414602270488842e+00
+-3.9657049088215957e-01
+-3.2102195799759571e+01
+-7.1628468290380809e+00
+-1.0393721667796949e+00
+-3.1708132914224983e+01
+-3.3743778004592144e+00
+-2.6931010820407035e+00
+-2.4942639341581160e+01
+-2.9336838363674693e+00
+-2.7487271186506184e+00
+-2.5639806407343293e+01
+1.3230802445159557e+00
+-4.3068752177472724e+00
+-2.1337337265356712e+01
+8.9915532953163044e+00
+7.7826010411859343e+00
+-2.0110515637663404e+01
+9.0843060568437739e+00
+7.7350299414643500e+00
+-2.0445224015056031e+01
+9.8249352227904030e+00
+2.4543671782245401e+01
+-4.9547058226139562e+01
+9.4551728533751511e+00
+6.8253493398351406e+00
+-2.2092441062218047e+01
+-1.3603920839513037e+01
+1.6599348632813726e+01
+-3.5142505348306670e+01
+8.6303056576718955e+00
+2.2805919124238809e+01
+-5.0180879256071137e+01
+9.0517115873165253e+00
+2.3232165896927256e+01
+-5.1532633885451474e+01
+9.0517115873165253e+00
+2.3232165896927256e+01
+-5.1532633885451474e+01
+1.4241542621930485e+01
+6.4338504699333381e+00
+-2.4856640925488986e+01
+7.9434728064192663e+00
+2.1349597641740697e+01
+-5.1003156389321667e+01
+1.1070586061189074e+01
+2.2617927905127733e+01
+-5.6008597907399746e+01
+1.7761709768742175e+01
+2.1219673494159426e+01
+-5.6413240750799574e+01
+1.2631349915504707e+01
+6.4468894530370280e+00
+-2.7553064598750176e+01
+1.2082554494940192e+01
+7.0413393384381671e+00
+-2.8898264831502658e+01
+4.5458241931412395e+00
+1.8545607603349474e+01
+-4.9733735844216390e+01
+4.5565145466882750e+00
+1.8680851759865909e+01
+-5.0465697368214350e+01
+1.0233615786633125e+01
+5.2765324525944051e+00
+-2.5492508802866990e+01
+1.0280315620518506e+01
+5.0495441829671970e+00
+-2.5228328554613963e+01
+1.0678330443115902e+01
+1.9857419291803282e+01
+-5.4912444547774172e+01
+1.0224190065498229e+01
+2.8563033547173360e+00
+-2.2121898415886641e+01
+-9.4164349473043440e+00
+1.4937954460117401e+01
+-4.2323440089578753e+01
+5.6027170853188570e+00
+1.9609400880785898e+01
+-5.8867802632802110e+01
+1.2591428460563746e+01
+4.3843350459766732e+00
+-2.7651686162087636e+01
+-1.2104230432923366e+01
+1.4124299691923703e+01
+-4.2006089238250439e+01
+-1.2047550806734945e+01
+1.3776554456116527e+01
+-4.1118743551800108e+01
+1.3376763313437584e+01
+3.9430690719364434e+00
+-2.8150790859283568e+01
+1.2814771138568876e+01
+4.6484588020691309e+00
+-2.9596137764422700e+01
+1.3896906054074329e+01
+7.3464073129558614e+00
+-3.6544908067422519e+01
+-1.2450015791602388e+01
+1.3269108041025012e+01
+-4.1365712488179163e+01
+-1.3876947014463697e+01
+1.2805233412837504e+01
+-4.0039652789337332e+01
+-6.7087231404298846e+00
+1.3142450483285749e+01
+-4.6908453665801581e+01
+-4.5168748918896295e-01
+2.0152366854165220e+00
+-2.1379765278915887e+01
+-4.5168748918896295e-01
+2.0152366854165220e+00
+-2.1379765278915887e+01
+1.4202738708206091e+01
+1.8092995838199444e+00
+-2.7756057712950906e+01
+-4.7161553279850360e-01
+9.0963766231100873e+00
+-4.4361760443899513e+01
+1.0391230490163117e+00
+5.0756484994986639e-01
+-2.0260132590926901e+01
+-3.2841134497653313e+00
+2.9716562310404822e+00
+-2.7647273113813235e+01
+-1.8393701877683692e+00
+6.6682342378851587e+00
+-4.3791733139178156e+01
+-3.1547282715390819e+00
+3.5217428585850252e-01
+-2.3953717993482666e+01
+8.6742491489205864e-01
+-2.8291223091062814e+00
+-2.0350179133378706e+01
+-7.6439332846478196e+00
+-4.5327875883171231e-01
+-3.2346173458611638e+01
+-8.4452733227937049e+00
+-7.6992959431600549e-01
+-3.2086576149806895e+01
+-2.5585953904799146e+00
+-3.5360400579438207e+00
+-2.4902336736139581e+01
+-1.1373306577581458e+01
+-1.3988004846988844e+00
+-3.1040817063611264e+01
+-5.0893272867058414e-01
+2.4043093878770968e+01
+-4.0583522954971912e+01
+-5.0893272867058414e-01
+2.4043093878770968e+01
+-4.0583522954971912e+01
+1.1191851944408656e+01
+1.2427398643139909e+01
+-3.3841842114977041e+01
+1.3045848779134822e+01
+2.4383133824344068e+01
+-5.6372927978156845e+01
+1.2180268319098495e+01
+2.3827077653300361e+01
+-5.5438515187614748e+01
+6.0742199639971490e+00
+2.1258070566765518e+01
+-5.1367274491532918e+01
+1.0121556869979408e+01
+2.0617898399844709e+01
+-5.1525305027927580e+01
+-2.2237230324916948e-01
+1.7933098574461219e+01
+-4.7696665852190080e+01
+4.0392856320560924e+00
+1.8151295707661738e+01
+-4.9780821645781629e+01
+1.3093141766347067e+01
+5.6088522170606607e+00
+-2.6943329175632357e+01
+-6.4968812978667648e-02
+1.8019834150295932e+01
+-5.1209315659629652e+01
+-5.3780263638657235e+00
+1.5306171019245662e+01
+-4.5615290116728055e+01
+1.2523048695451337e+01
+4.8333709950741159e+00
+-3.0834356279754811e+01
+-1.5325293411717137e+01
+1.2280222818212586e+01
+-4.0267447131978166e+01
+-1.2170062035609389e+01
+1.1390541286114637e+01
+-4.4448750570935573e+01
+-4.1261464717984425e-01
+9.0926755654388547e+00
+-4.5280379326392939e+01
+1.3587924915281661e+01
+1.2636092975950788e+00
+-3.1063404762737665e+01
+1.4354351362527749e+01
+3.1621256381190116e-01
+-2.9584829788033392e+01
+1.4354351362527749e+01
+3.1621256381190116e-01
+-2.9584829788033392e+01
+-1.2990919780700644e-01
+-3.4753140537896388e-01
+-2.0934787952483337e+01
+1.4225440767711303e+01
+-7.7036822218967682e-01
+-3.0636867009193619e+01
+1.4488086539195900e+01
+-1.0351025647746239e+00
+-3.0463073001781332e+01
+2.9166939692546565e+00
+-4.0945153033498602e+00
+-2.0882936374496321e+01
+-9.5336986760485303e+00
+-1.5655481603281964e+00
+-3.0400265821197028e+01
+-9.2927625989957967e+00
+-1.6934734956073703e+00
+-3.1308004198376604e+01
+-9.2927625989957967e+00
+-1.6934734956073703e+00
+-3.1308004198376604e+01
+-7.5620133807071497e+00
+-2.1130063389122027e+00
+-3.1115104579123710e+01
+-5.7627732331550474e+00
+2.2306661289362292e+01
+-3.8455827807531250e+01
+3.7760176044366571e+00
+1.9512913321847709e+01
+-5.1372867860795878e+01
+-9.6545758271574265e+00
+1.3680415994995498e+01
+-4.3988372922393438e+01
+1.0835094657590330e+01
+2.2087222296882540e+00
+-2.6287949843358589e+01
+3.2485804817488142e+00
+-6.2172218786033817e-01
+-2.0711714382854673e+01
+-3.7474106825097437e+00
+-4.4237222594913633e-01
+-2.7738332833956562e+01
+-1.6733831860104211e+00
+-3.8259503694477774e+00
+-2.4212027339186282e+01
+-7.8906017787677936e+00
+-2.6709305147429414e+00
+-2.9484118571903771e+01
+1.3090402187340118e+01
+5.8488506572357046e+00
+-2.7193936766598448e+01
+2.7182622208422598e+00
+1.7901046018535318e+01
+-4.9511001302348774e+01
+7.4967947693000178e-02
+8.2660921392021780e-01
+-2.0670651191316995e+01
+1.4973061250390225e+00
+2.7146392101816252e-01
+-2.0302694029989933e+01
+-2.9181582186850434e+00
+-7.2040238156617331e-01
+-2.2424609082625992e+01
+-2.1361660151672139e+00
+-1.4366796729679754e+00
+-2.1525085308995138e+01
+4.5139014980125394e+00
+-3.2303924316679353e+00
+-2.1163708796675870e+01
+2.0438915265066315e+00
+-4.6899277963360220e+00
+-2.1272073434662939e+01
+-4.4514214854045908e-01
+-4.0996836675448494e+00
+-2.1724604812796027e+01
+9.3574134164403677e+00
+7.9405530810656124e+00
+-2.3366342369405498e+01
+8.7077488659851099e+00
+2.0163358431441146e+01
+-5.0054891419686243e+01
+-8.7368734069142686e+00
+1.4573414128363428e+01
+-4.3706905365306390e+01
+-1.1415921878563888e+00
+1.0297829726390185e+01
+-4.6786048046524478e+01
+1.4398904629747465e+01
+3.5648595763306656e-01
+-2.9005296046674548e+01
+-7.5504729064172640e+00
+1.8587490972862362e+01
+-3.9451694566445326e+01
+1.5292388701089211e+01
+1.6627856841803169e+01
+-4.3759137783314635e+01
+6.9477655172224217e+00
+2.2764820748547788e+01
+-4.6770984055873086e+01
+1.6859949245637321e+01
+2.5423905070780169e+01
+-5.2740833807411498e+01
+1.0064051011615662e+01
+2.6335463493530189e+00
+-2.1882493054500916e+01
+6.4828082296189500e+00
+1.5836891981477585e+01
+-5.2825611099421529e+01
+8.9358871991530915e+00
+2.4363063555519997e+01
+-4.7403552074594479e+01
+1.7904805266478320e+01
+2.5601040701468168e+01
+-5.2441420521555777e+01
+5.6994158003903301e+00
+2.2781926504702138e+01
+-4.7308149870919813e+01
+5.6272771150519016e+00
+2.2146087295916338e+01
+-4.8068735909070064e+01
+1.2421292205289690e+01
+2.4091247519261987e+01
+-5.2533893110867460e+01
+1.3359927919056810e+01
+2.3732201964494475e+01
+-5.3254184224283975e+01
+1.7959197595767857e+00
+2.0669064643292678e+01
+-4.5959861549251919e+01
+1.2039022665181458e+01
+2.1871282885439321e+01
+-5.0597370656763538e+01
+1.2408677181063496e+01
+5.3653150385779442e+00
+-2.4520299115699675e+01
+1.2256256436593532e+01
+2.2789876524554920e+01
+-5.3510807597968018e+01
+1.4575269764841360e+01
+2.1738418492560655e+01
+-5.6439773819053372e+01
+1.1385792766355365e+01
+9.9854991270630418e+00
+-3.5185009029333848e+01
+1.2581638073230856e+01
+1.0388433189928946e+01
+-3.6604767420906747e+01
+-7.4306958107416987e-01
+1.2621139907732903e+01
+-3.6844461432563165e+01
+1.9397963890634207e+00
+1.7947856028245337e+01
+-4.7796582318227095e+01
+1.3702926119889407e+01
+2.0654961752448098e+00
+-2.3871071586358831e+01
+1.4592978750970552e+01
+2.2018807338378830e+00
+-2.4906017723446048e+01
+1.4683701983805229e+01
+2.0999656200215742e+00
+-2.4714253797165192e+01
+1.3749075864038820e+01
+1.7427305973861931e+00
+-2.4499093115405174e+01
+1.4059872096570722e+01
+1.2348215230764006e+00
+-2.3768964039529980e+01
+1.2599488818586806e+01
+4.2599723306150317e+00
+-3.0319377908062513e+01
+1.2495125000926381e+01
+4.2578488294266092e+00
+-3.0524885823412738e+01
+1.2944046634926316e+01
+3.3776966534171291e+00
+-2.9875311629529932e+01
+1.3908558917697910e+01
+1.0733628252667244e+00
+-2.5343500274420869e+01
+1.2783882264566463e+01
+3.4085555783782304e+00
+-3.0414523588083874e+01
+1.4091764805328143e+01
+3.3850692815923972e-01
+-2.5938499815571188e+01
+1.4777388336507610e+01
+3.2496059528950033e-01
+-2.6660182804863773e+01
+1.4176881892408959e+01
+-6.4215498577293612e-02
+-2.6315463434624906e+01
+4.4427457184134050e-01
+2.6461673718706130e-01
+-2.0599140010535219e+01
+4.4427457184134050e-01
+2.6461673718706130e-01
+-2.0599140010535219e+01
+1.4800229395922832e+01
+-2.5018827011718409e-01
+-2.7289350989829892e+01
+1.4803327885102849e+01
+-3.1527961299510537e-01
+-2.7244616779856891e+01
+1.4713175734406068e+01
+-3.6273854339711403e-01
+-2.7708387022804430e+01
+1.4845803121796777e+01
+-7.5074419781330393e-01
+-2.7808544377948230e+01
+-5.6355538973770847e-01
+7.1682472070662797e+00
+-4.2135172629854374e+01
+-1.2878698529868355e+00
+6.2920695049314235e+00
+-4.1152718204714091e+01
+1.5056207893966622e+01
+-2.6665728461958484e+00
+-2.7247870337578714e+01
+1.3243724573387222e+01
+-2.6883658433866535e+00
+-2.8940774797922952e+01
+-6.1217796310129788e+00
+5.2023400691459427e+00
+-3.9486594088934503e+01
+1.2576629481135186e+01
+-5.7085948120899594e+00
+-2.5059014160963287e+01
+-1.3835824204561122e-02
+-3.7250313972538640e+00
+-2.1292615213161717e+01
+1.1266474831186802e+01
+-7.0564531414782445e+00
+-2.3279993210964587e+01
+-3.9421679468824955e+00
+-7.4223585299184123e+00
+-2.2432423958122186e+01
+1.1174282379807746e+01
+8.6175169640542855e+00
+-2.5377185592215625e+01
+7.9634737622507519e+00
+2.1740892125779133e+01
+-4.8065224136366368e+01
+1.7145108096562886e+01
+2.3094745211839587e+01
+-5.3754432284631733e+01
+1.8127664255194269e+01
+2.0513451777127536e+01
+-5.6565022882510924e+01
+1.2729565301067849e+01
+4.0662282948619328e+00
+-2.5907170229457048e+01
+1.3043748121129687e+01
+9.5614581073210196e+00
+-3.6797775906696486e+01
+1.1947101707912854e+01
+5.6630193835794174e+00
+-2.9193273755939874e+01
+1.2082182382077516e+01
+5.1881194353898632e+00
+-3.1216637894952559e+01
+1.4330858470981914e+01
+7.7538847637132235e-01
+-2.3190530518995203e+01
+1.2564139412011281e+01
+4.4763118820078285e+00
+-3.0184959509156290e+01
+9.6962244933705417e+00
+1.4677241795134890e+01
+-5.0912891920937284e+01
+9.7825045474375170e+00
+1.4973412444475349e+01
+-5.1353969937422669e+01
+1.3753091561985787e+01
+9.8184569141451339e-01
+-2.6322440873916392e+01
+1.3918654974979802e+01
+5.9281616760611999e-01
+-2.6214679735440534e+01
+1.4384756610995435e+01
+-3.3699072432733973e-01
+-2.5619942479430879e+01
+-5.3186474290889629e+00
+1.3543978969456621e+01
+-4.8706592684205837e+01
+1.4240814938480753e+01
+-2.2275485500014966e-01
+-2.6529003646241584e+01
+1.4717136844617738e+01
+-1.9793316022203000e+00
+-2.7768566688550393e+01
+1.4980499759406229e+01
+-2.6289653007018647e+00
+-2.7433849710623925e+01
+1.4964749538030254e+01
+-2.8493811591682845e+00
+-2.8127683034091174e+01
+1.4787554599514396e+01
+-2.6019264062709393e+00
+-2.8927027733661681e+01
+1.5401418770724714e+01
+-3.5136631421031179e+00
+-2.6988483865663426e+01
+-6.7279807060881742e+00
+-4.6029007632540608e-01
+-3.2047897919688417e+01
+1.7378417677000884e+00
+-5.2952205191810133e+00
+-2.2045909754648047e+01
+-8.8475411446683925e+00
+-1.1896569061251503e+00
+-3.0734646426797923e+01
+3.9026141808945298e+00
+-9.0693945714073418e+00
+-2.0636779438429130e+01
+-6.5724116836129109e+00
+-5.4074983861184558e+00
+-2.5224487635397153e+01
+4.9831784270961341e+00
+2.3556876527224173e+01
+-4.5711141760405098e+01
+8.9177072165569040e+00
+2.3489480999239603e+01
+-4.8445525518313346e+01
+6.7807279786381391e+00
+2.2645952421367461e+01
+-4.8616215455041726e+01
+1.2466846662701258e+01
+2.4148968004910579e+01
+-5.2294885918227791e+01
+1.2512295479013689e+01
+6.8711800310504998e+00
+-2.6885015962844591e+01
+1.3197196595603138e+01
+5.7311807323749466e+00
+-2.5467177201199402e+01
+1.8867856003835119e+01
+2.1942651373365930e+01
+-5.5096734965725283e+01
+1.2021994278946222e+01
+5.8406583909013703e+00
+-2.6573510816622452e+01
+1.3443525847065841e+01
+2.7253590098167395e+00
+-2.3842903017165021e+01
+1.3349145734529788e+01
+8.4720426402805682e+00
+-3.4746254059098682e+01
+1.3475861942510276e+01
+2.5479588225326437e+00
+-2.4156535146880923e+01
+5.3570902832763849e+00
+1.8208011852978792e+01
+-5.3786123188476516e+01
+-1.1354721095604821e+00
+1.6499450617721884e+01
+-4.8272747044729208e+01
+1.4202779674840492e+01
+8.7671039881449087e-01
+-2.3404296426617691e+01
+1.4197733830721083e+01
+-2.1797259065146096e-01
+-2.6592696399088318e+01
+1.4926462580530096e+01
+-5.8937431528385498e-01
+-2.7149334307330093e+01
+1.4585303626750523e+01
+-5.0071537405495203e-01
+-2.8636700970397069e+01
+1.4451321552991445e+01
+-7.6046385922906801e-01
+-2.9701919126779753e+01
+-1.2115774883678625e+00
+7.0791866884626797e+00
+-4.2032789455293617e+01
+1.1848023281386428e+01
+-7.0037650200524935e+00
+-2.3318714153838403e+01
+1.1126592794311488e+01
+-7.0958764351512089e+00
+-2.3246672681697294e+01
+-8.3352449111878375e+00
+-5.7610114124351486e-01
+-3.1438212220750920e+01
+2.5912305885165487e+00
+-8.6267316621002621e+00
+-2.0953570108103730e+01
+-5.5893490265694599e+00
+-7.2562470332799185e+00
+-2.2640718011194814e+01
+9.0722492318368460e+00
+2.4185334334846434e+01
+-4.7917369762207883e+01
+1.1984966091746703e+01
+1.2514622216906586e+01
+-3.2805578923840713e+01
+1.2294902315632452e+01
+7.0396938739418990e+00
+-2.7492557723017224e+01
+1.1839472058086773e+01
+5.9193538996641548e+00
+-2.8066064787545294e+01
+2.4683495739371578e-01
+1.8293204673666938e+00
+-2.0786388054256580e+01
+1.3926748417413446e+01
+8.3921485025315590e-01
+-2.5824759298931451e+01
+1.5510891452483982e+01
+-2.0646871505500783e+00
+-2.6950277797850756e+01
+-1.7092578780804684e+00
+6.3126942037059974e+00
+-4.1395082285612894e+01
+-6.4371300576570372e+00
+-7.5209154723578061e-03
+-3.2523095269502470e+01
+-9.3383969741599717e+00
+-3.6426374796538941e-01
+-3.1771871664911874e+01
+6.0475399250648767e+00
+-8.9540270024796325e+00
+-2.0638129717402233e+01
+-2.3140311094510166e+00
+-6.1421218470122687e+00
+-2.3381593452292048e+01
+5.4106529203028781e+00
+-9.5433750641754109e+00
+-1.9982841452721434e+01
+5.3539052083476752e+00
+1.7657776675058859e+01
+-5.3690424631293318e+01
+7.3301278110407084e+00
+1.3002821267624025e+01
+-4.9072681003336442e+01
+1.4343845899259204e+01
+-2.5726726454255350e-01
+-2.5415272828253649e+01
+1.3765753225282563e+01
+2.4217415836117129e-01
+-2.8910740665662363e+01
+-1.9219755499346847e+00
+1.1440005280604753e+01
+-4.7968624530200579e+01
+6.2389986489038280e+00
+-9.1682049113815562e+00
+-2.0508916524734349e+01
+1.3479782638362511e+01
+2.6313000340606321e+00
+-2.8523501944297955e+01
+1.2614760879814439e+00
+1.8172922739102525e+01
+-4.7639008271667038e+01
+-1.7962470272749655e+00
+-5.1604483004745907e+00
+-2.2797914540115073e+01
+-7.3433980557541938e+00
+-4.5525118344512032e+00
+-2.6722032251842748e+01
+4.7595261195789460e+00
+-9.5867897125562482e+00
+-1.9914675672232324e+01
+1.3701929332318814e+01
+2.1667348070912236e+00
+-2.4166909348545399e+01
+8.3708322232344621e+00
+2.2333990359944462e+01
+-5.0653201676220768e+01
+3.0844156819864481e+00
+1.9656236157156759e+01
+-4.8941575308074114e+01
+3.0844156819864481e+00
+1.9656236157156759e+01
+-4.8941575308074114e+01
+1.2428877665922473e+00
+1.9002189917927439e+01
+-4.7727810020628830e+01
+1.3339054477283875e+01
+7.6647097141944469e+00
+-2.7171148337265972e+01
+9.4770961766116657e-01
+1.5593574602572019e+01
+-5.1072255766825364e+01
+-6.8818154545349657e+00
+1.3977593176251458e+01
+-4.4469721904757570e+01
+-8.1731640088793966e+00
+1.4155786907982447e+01
+-4.4560042130872255e+01
+-1.2058969360267357e+01
+1.2648926356954838e+01
+-3.9137780469475295e+01
+-6.9693618579334125e+00
+1.3690495651859681e+01
+-4.4504415987462870e+01
+-1.2819728224953078e+01
+1.2268097396011894e+01
+-3.8603239795793833e+01
+-1.4877254510070168e+01
+1.2938674905544991e+01
+-4.1036340613323425e+01
+-1.2129104538421154e+00
+1.4265406507392152e+01
+-5.1497596117731192e+01
+-1.0846449718649738e+00
+1.3763674103988766e+01
+-5.0959925540085919e+01
+-1.0005907690310535e+01
+1.2128653168070471e+01
+-4.3149242967355114e+01
+-1.0776162427715658e+01
+1.1897223889408636e+01
+-4.2168740932539983e+01
+-1.3141192885482150e+01
+1.2303791944919626e+01
+-4.3157345179678572e+01
+2.1464406532843974e+00
+1.2523352660987403e+01
+-4.9485883537233356e+01
+-9.7854938445596638e+00
+1.1677772945027394e+01
+-4.4088470382287014e+01
+1.3248775086323837e+01
+6.0687387935718080e+00
+-2.8209367563475038e+01
+-1.4341304766947831e+01
+1.0833332239538192e+01
+-4.1067514191170602e+01
+-1.4065802452725116e+01
+1.0826932529580635e+01
+-4.1140777978351139e+01
+-1.2425371573134500e+01
+1.0747035532696486e+01
+-4.1796751642126473e+01
+-1.2425371573134500e+01
+1.0747035532696486e+01
+-4.1796751642126473e+01
+-1.2442697216078244e+01
+1.0657491939456797e+01
+-4.1870981049619488e+01
+1.4197458202166800e+01
+7.2484979935706688e+00
+-3.7066929867571901e+01
+-1.3189599911309770e+01
+1.0375057982260699e+01
+-4.1741579963689986e+01
+-1.3199933791359431e+01
+1.0287344626460877e+01
+-4.1679183920797584e+01
+-1.7298430499772444e+01
+1.0634431850233932e+01
+-4.1549201056093985e+01
+-1.3296568948434242e+01
+9.7662334303826359e+00
+-4.2711509569558451e+01
+-1.6406977720881923e+01
+9.9812373488817379e+00
+-4.2454084097659774e+01
+-1.6609510692091760e+01
+9.8688885706894318e+00
+-4.2501701112986147e+01
+1.4663067752939371e+01
+3.7794318631450086e+00
+-2.6456601425244131e+01
+1.4564734722587835e+01
+3.7638503123355123e+00
+-2.6667139768437696e+01
+1.2961339713609329e+01
+4.1883328807711910e+00
+-3.0733644032180383e+01
+1.4981736538861663e+01
+3.2766090868156272e+00
+-2.6148761693495409e+01
+1.3015284121005985e+01
+4.0994620643433315e+00
+-3.0665668370516695e+01
+-6.6037830874096528e+00
+7.5049400438344112e+00
+-4.2068980517997687e+01
+1.4962115164362620e+01
+3.2124568658540644e+00
+-2.6265930157501298e+01
+1.5099683496660129e+01
+3.0967391925831977e+00
+-2.5964625376321443e+01
+-1.4751647538098915e+01
+8.2385561332161092e+00
+-4.4133821227665294e+01
+1.4935417785943157e+01
+3.0428934764428477e+00
+-2.6368643880349850e+01
+1.4528787795219346e+01
+2.8985458280526073e+00
+-2.7250804960388251e+01
+-1.3731797786706309e+01
+7.0186505250905338e+00
+-4.2058135699085639e+01
+1.4936574766259600e+01
+2.4429172634243170e+00
+-2.6668153195201153e+01
+1.3784734109266784e+01
+2.3631514332386656e+00
+-2.9963194423388273e+01
+1.4522734908834193e+01
+1.9655961779436091e+00
+-2.7923370461693590e+01
+1.4273712267410485e+01
+1.7483444460635305e+00
+-2.9075460757293754e+01
+1.5200614709630527e+01
+1.3799459224442561e+00
+-2.6812597360120190e+01
+1.3148472407606091e+01
+1.5412139369665325e+00
+-3.2971051031935424e+01
+1.2787285272106489e+01
+1.6166976910002044e+00
+-3.3832099413860796e+01
+8.7440747748588232e-01
+1.7654992237668432e+00
+-2.0866757261245052e+01
+2.5355187440474460e+00
+1.5501609334530075e+00
+-2.0694482113383444e+01
+1.5174708532173032e+01
+8.9333116794691936e-01
+-2.7407658312174675e+01
+-6.2737697195001746e-02
+1.6192150179242584e+00
+-2.1161356293698990e+01
+1.5213746013270478e+01
+6.2837465563054506e-01
+-2.7580491693474119e+01
+-1.5171278151874803e+00
+1.6463930271058695e+00
+-2.2627752992804798e+01
+1.1749799980764515e+00
+1.2214673935428659e+00
+-2.0522365803573599e+01
+1.1749799980764515e+00
+1.2214673935428659e+00
+-2.0522365803573599e+01
+-1.4962424895143042e-01
+1.1257116636210596e+00
+-2.1014529848555632e+01
+1.3641991699980617e+01
+1.5289224961586279e-01
+-3.2147676532430914e+01
+1.5835582277268452e+01
+-6.8565443173063401e-01
+-2.7032380358396363e+01
+2.1349895367413065e+00
+3.1270194445386401e-01
+-2.0311109734291609e+01
+1.4322473302062916e+01
+-9.1085118119045327e-01
+-3.0950929001745589e+01
+-6.8186081125842604e+00
+4.3629192334779238e-01
+-3.2931426645115380e+01
+-1.3192994962094971e+01
+3.0714342309274800e-01
+-3.3285668025290946e+01
+-1.7252296497737967e+00
+-5.0650352443735780e-01
+-2.1623275080333602e+01
+-6.7831411626258853e-01
+-1.0672835489885275e+00
+-2.0874873250744706e+01
+-2.3503391928301767e+00
+-1.1145834688481455e+00
+-2.1870927312387664e+01
+-9.6043606775673762e+00
+-1.1581486988844079e+00
+-3.0587102032530463e+01
+-9.6095665643325763e+00
+-1.1864035374339084e+00
+-3.0410306015407247e+01
+-2.4456652733702526e+00
+-1.2873893710033533e+00
+-2.1667931227188948e+01
+1.3558439254773905e+01
+-3.5225820366156961e+00
+-2.8246017692785291e+01
+2.6615239889592819e+00
+-2.0255709534034594e+00
+-2.0292530451211455e+01
+-1.2366776849783780e+00
+-1.9199891126392359e+00
+-2.0838359080490630e+01
+3.1220625079348121e+00
+-2.8895761859569431e+00
+-1.9745328928574086e+01
+-6.0206945145280599e+00
+-6.6649236565535528e+00
+-2.2793229515847475e+01
+5.2579421746112942e+00
+-8.0774896700739252e+00
+-2.1236543247935487e+01
+5.4300300817811129e+00
+-8.1686872549163532e+00
+-2.1080472516738368e+01
+5.1112991661622127e+00
+-8.2022404765296280e+00
+-2.0990721830637387e+01
+4.5178969146489489e+00
+-8.2920031783100647e+00
+-2.0845783446557913e+01
+3.4335178936198880e+00
+-8.4579421887585919e+00
+-2.0497246457492174e+01
+2.3066677703012268e+00
+-8.5388991284688771e+00
+-2.0308680821039065e+01
+4.6542145837861701e+00
+-8.8278584545738035e+00
+-2.0053661525941376e+01
+4.0995835313038524e+00
+-8.7950060746164009e+00
+-2.0071095235211278e+01
+4.0995835313038524e+00
+-8.7950060746164009e+00
+-2.0071095235211278e+01
+3.2928534779966174e+00
+-9.1201921029688098e+00
+-1.9503583254607872e+01
+1.2768015545955476e+01
+8.0653486890912145e+00
+-2.8307897483758509e+01
+4.6089476335593389e+00
+1.6918738790359438e+01
+-5.6178814583076161e+01
+1.4523131758246142e+00
+1.5332558288472013e+01
+-5.3403581021408904e+01
+-1.5614828367938481e+01
+1.3081925232029830e+01
+-4.0616368041719710e+01
+8.1342323240948584e+00
+1.4978242503132970e+01
+-5.4376298671790053e+01
+2.6984287546107852e+00
+1.5017467982647187e+01
+-5.3234627236362527e+01
+-4.7995764035210464e-01
+1.4683288103198436e+01
+-5.2201891397758537e+01
+6.2777889316596169e-01
+1.4282548563494647e+01
+-5.1666345099129906e+01
+-1.2354091973196587e+01
+1.2656590485863921e+01
+-4.2079928824151843e+01
+-1.3885571231849386e+01
+1.2108037950129313e+01
+-4.1765527511134472e+01
+-1.0080175525328148e+01
+1.1816773357028707e+01
+-4.5477601204948783e+01
+-1.0080175525328148e+01
+1.1816773357028707e+01
+-4.5477601204948783e+01
+-1.6999395268331522e+01
+1.0763635715497893e+01
+-4.1795895502284814e+01
+-1.3756177567900696e+01
+1.0257450089989293e+01
+-4.2649427736878728e+01
+1.3861169095434812e+01
+4.1031851431624782e+00
+-2.7921170892475651e+01
+8.9706186875809346e-01
+7.6416872635458306e+00
+-4.2782349813639307e+01
+-1.5958426796224282e+01
+8.6107509673775660e+00
+-4.4106869464684323e+01
+-1.5367776839836123e+01
+8.5026620342444499e+00
+-4.4544461964081790e+01
+-1.0670174349130940e+01
+7.8189664406863812e+00
+-4.2857192761400391e+01
+-1.4693688398287110e+01
+7.3302581367397348e+00
+-4.3198734675488566e+01
+-1.6705833299379407e+00
+3.3548317886439061e+00
+-2.6661055649558456e+01
+1.3189739479368477e+01
+1.0593448764581557e+00
+-3.3289922110393270e+01
+3.3800983500812554e+00
+1.0108835824507914e+00
+-2.2208944071228235e+01
+6.0713556683949514e+00
+4.3665990422216716e-01
+-2.3937179284928177e+01
+-1.4248719900713779e+01
+2.2740363388509977e+00
+-3.6138167505373374e+01
+4.2498584791415741e+00
+-2.2227049795027421e-02
+-2.2045124825935712e+01
+-6.2024490503385961e+00
+-5.1305726945875138e-02
+-3.1910928781169385e+01
+-1.4519537494946743e+01
+2.1293001901234246e-01
+-3.3455396855584226e+01
+1.3312440904737372e+01
+-2.4694681138389565e+00
+-2.9622569628587598e+01
+5.8525870900849633e+00
+-1.7995909737208287e+00
+-2.1368855494232406e+01
+-9.7925581083840783e+00
+-1.0380132726360254e+00
+-3.1042118400160621e+01
+5.2788438747165181e+00
+-2.2848489537549521e+00
+-2.0681557220010742e+01
+-2.0251973135784951e+00
+-1.8131702123245843e+00
+-2.1217910864238469e+01
+1.0653054313013348e+00
+-2.4175787869519572e+00
+-2.0934908710435298e+01
+-2.8878721547831137e+00
+-3.3069630691022094e+00
+-2.3522271011100621e+01
+-3.6225569235619024e+00
+-4.8303033747084205e+00
+-2.3996432213837622e+01
+4.8020275408077131e+00
+-8.7708736304680404e+00
+-2.0192193435499675e+01
+4.1822821574373243e+00
+-8.8892369755576013e+00
+-1.9961262592667047e+01
+7.4323584972333920e+00
+1.6795967228962727e+01
+-5.6235789100513053e+01
+-1.5137278180164252e+01
+1.3550031568907313e+01
+-3.9972300469440682e+01
+-3.4190244244066170e-01
+1.3845258583827345e+01
+-5.1036429744611880e+01
+-1.5463508106759514e+01
+1.2402217817510477e+01
+-4.1216068188209007e+01
+6.7667014534328223e+00
+1.2545147412059579e+01
+-5.0753222414941362e+01
+5.6291518115142027e+00
+1.1603313584927550e+01
+-4.9665777343047459e+01
+-4.8880777339938355e+00
+1.1170092207079970e+01
+-4.7353980882534962e+01
+-1.3910528093932276e+01
+1.0284137183186122e+01
+-4.2586623894829756e+01
+-1.5878351280228015e+01
+1.0321433709077912e+01
+-4.2877746291886488e+01
+-1.8281315032990726e+00
+9.4893469272191382e+00
+-4.5021414331712343e+01
+-6.1355612602523619e+00
+9.7537855407346861e+00
+-4.5208439347078723e+01
+2.2723698767287206e+00
+8.6194766734651278e+00
+-4.4479139016969953e+01
+-1.5948625932483592e+01
+9.4419853688381785e+00
+-4.3870742148344661e+01
+-5.4153733390923628e+00
+7.1591171589660796e+00
+-4.1812137082931521e+01
+-1.5857187113427091e+01
+7.9101073730250135e+00
+-4.3865149003805818e+01
+4.8103032302505957e+00
+1.1334024170205192e+00
+-2.3406620622763125e+01
+3.1661137007490709e+00
+9.7156809335494454e-01
+-2.0726609178183722e+01
+-1.2431941297488764e+01
+2.9091006371413441e+00
+-3.6723024950235860e+01
+3.3553514423560000e+00
+4.7026471320366753e-01
+-2.2032920749224878e+01
+-1.1926303585176179e+01
+1.9011577971874880e+00
+-3.5394912261322808e+01
+-6.2777693958395222e+00
+-1.9183974775789320e-01
+-3.1670783797950818e+01
+3.4449684107948557e+00
+-8.0160984720947004e-01
+-2.2223663395350300e+01
+-2.3380647676527071e-02
+-6.7109556919648283e-01
+-2.1449016844704747e+01
+-9.9870607540342959e-01
+-8.7478946323734930e-01
+-2.1488994372443248e+01
+1.7181818699938931e+00
+-2.9221544856818200e+00
+-2.0710492430117345e+01
+-1.1545841203609795e+01
+-3.1635529566447067e+00
+-2.8175922356737370e+01
+1.8683016959912430e-01
+-4.0565681076438311e+00
+-2.1858317982182403e+01
+-1.2899265148045785e+01
+-3.9401623280296683e+00
+-2.7147698991560318e+01
+3.8901804662718105e+00
+-8.7312660204271282e+00
+-2.0119772703687001e+01
+1.6268554736114769e+00
+1.4950235266648852e+01
+-5.2947990932920980e+01
+1.7086266559077761e+00
+1.4520487772845959e+01
+-5.2102977393664844e+01
+1.7086266559077761e+00
+1.4520487772845959e+01
+-5.2102977393664844e+01
+-1.4945595981012673e+01
+8.8486435603640494e+00
+-4.4904809725417365e+01
+-1.5011657530254842e+01
+8.2040816143621562e+00
+-4.4482868538047448e+01
+1.4962978401899786e+01
+6.9224307719610789e-01
+-2.8237428051213044e+01
+-1.2070304391625104e+01
+2.6635953926036509e+00
+-3.6227646573330318e+01
+-3.4938441372432298e+00
+1.3096243582325315e+00
+-2.5052184857998693e+01
+4.6910518989000165e+00
+-5.7238705319403094e-01
+-2.3454768231396134e+01
+-1.0656121069074809e+01
+-2.7585973540363448e-02
+-3.2432613957728670e+01
+5.0266685480206439e+00
+-1.0857730495927149e+00
+-2.3185375153278770e+01
+-1.2954341420319706e+01
+3.8958261524477455e-02
+-3.1806666447373271e+01
+1.3905793363233766e+01
+9.1791407657861122e+00
+-3.6438645378932492e+01
+-1.1882956950413428e+00
+6.8175411951859122e+00
+-4.1422307553203012e+01
+5.1569613469239215e+00
+-8.0148947892172451e-01
+-2.3616358035663122e+01
+2.0127817168338544e+00
+-7.0051402297631726e-01
+-2.0409114273774001e+01
+-2.8235911302676930e+00
+-1.2625422961586885e+00
+-2.1698517361871442e+01
+4.3769997856845606e+00
+-2.1135575726533680e+00
+-2.2622400278879759e+01
+-6.3860307202432294e+00
+-4.7509728324085776e+00
+-2.5538457299124573e+01
+-5.1426994118233562e+00
+1.1527681068093251e+01
+-4.7889424648451914e+01
+-1.9361154033802936e+01
+7.9201116135934688e+00
+-4.5013487471756605e+01
+3.6845332256778782e+00
+2.6429811528927312e+00
+-2.3049359619998469e+01
+-1.2256852458549790e+01
+5.3183167348485769e+00
+-4.0076172960687700e+01
+1.4802092391512286e+01
+1.4680397603821613e+00
+-2.7781528674410676e+01
+2.7885739739845632e+00
+9.1741230047892797e-01
+-2.0631071669035748e+01
+-1.2070992651919278e+01
+-2.4239875794188230e+00
+-2.9189171650591241e+01
+-1.9111435587127573e+01
+7.5136167406062953e+00
+-4.4346294437572780e+01
+1.5353164802717492e+01
+1.1386803951480667e-01
+-2.7579017951267190e+01
+-1.1017121998407291e+01
+2.8044482223013514e+00
+-3.6116500397213336e+01
+-1.3736808895985600e+01
+2.9609349676765034e-01
+-3.3377730889281487e+01
+3.1212220325824176e+00
+-1.4154564045578630e+00
+-2.1912056668293324e+01
+3.3151839901326969e+00
+-3.8665906727222241e+00
+-2.0600548859201322e+01
+-1.1797716479665862e+01
+6.9067384348539548e+01
+-7.0749303529937919e+01
+-1.8021526406863408e+01
+8.2181403125661589e+01
+-8.4471471892405560e+01
+-2.8120758429283757e+01
+7.1019659314840780e+01
+-7.6973879046402203e+01
+-2.9522997636553483e+00
+6.4325823458840972e+01
+-7.2609485666047078e+01
+-3.6892372944764862e+00
+6.3841630991333560e+01
+-7.2445937424330566e+01
+-5.2377071140476978e+00
+6.3496201974246169e+01
+-7.2080765677417219e+01
+-3.9321936645793945e+00
+6.3627203856405508e+01
+-7.2687634288650244e+01
+3.0822618928688783e+01
+7.3387452476099753e+01
+-9.0611639336574470e+01
+-4.0313939764817789e+01
+7.3299365470093520e+01
+-8.3216923976029591e+01
+3.0852620790557978e+01
+7.2800830702522461e+01
+-9.0604572952674076e+01
+3.0852620790557978e+01
+7.2800830702522461e+01
+-9.0604572952674076e+01
+-3.8871345691615439e+01
+6.3052235645749228e+01
+-7.3344465474786631e+01
+-1.1842665599957108e+01
+4.0533296679528064e+01
+-5.0894750574992869e+01
+-2.7559222705796888e+01
+4.1008411806382753e+01
+-4.9790106451638437e+01
+-1.2725832782134082e+01
+2.8279667896197697e+01
+-3.4783858446767525e+01
+5.3663905307414854e+00
+3.3301287592380419e+01
+-4.3613094365083768e+01
+5.5642698051066706e+00
+3.3754425629648352e+01
+-4.4761905697919921e+01
+-2.1116379112269822e+01
+3.5129504233733918e+01
+-4.4466617460695687e+01
+-2.1141952348157091e+01
+3.5221069368337098e+01
+-4.4799019117994042e+01
+-8.7445995534488108e-01
+2.9697667286658085e+01
+-3.9441208474198071e+01
+3.7415800029356774e+00
+3.1598207724223162e+01
+-4.2946716262768213e+01
+4.4238052622406236e+00
+3.1054852770265260e+01
+-4.2277879210206841e+01
+-2.2200054301093253e+01
+3.4770246023954037e+01
+-4.5252062707788070e+01
+7.0341715626057901e+00
+3.1466804529089451e+01
+-4.3536633067217458e+01
+-2.7434325638485049e+01
+3.8280864753684433e+01
+-5.0549376482894573e+01
+-2.7434325638485049e+01
+3.8280864753684433e+01
+-5.0549376482894573e+01
+-2.9539916312766014e+01
+4.0881628229300638e+01
+-5.4529909491916108e+01
+2.2550223540168015e+00
+2.8799594902327176e+01
+-4.0890699050758293e+01
+-2.7396687032963897e+01
+3.7116567713516773e+01
+-5.0099865298968844e+01
+-5.5646884999646097e+01
+6.2153265328791932e+01
+-8.4721954453311369e+01
+-3.2845695554693030e+01
+4.2045045295721309e+01
+-5.7090046578247708e+01
+-4.6549169792767600e+01
+5.5491675804822286e+01
+-7.6191530950025410e+01
+-4.7847904710541094e+01
+5.6181882508533370e+01
+-7.7668456308772775e+01
+-5.5106153438699479e+01
+6.0688017473754492e+01
+-8.3761353013994665e+01
+-4.9232838692707659e+01
+5.5898189076066764e+01
+-7.7442712242369623e+01
+-2.9826081423078620e+01
+3.7577126949136137e+01
+-5.2822498670448603e+01
+1.1541387984301588e+01
+3.0995331381542535e+01
+-4.7705965235530115e+01
+1.0440059308827900e+01
+2.9631061447253781e+01
+-4.5094888758523012e+01
+-2.0736681281095741e+00
+2.9594298363947829e+01
+-4.4320184831394066e+01
+1.1776443185728750e+01
+3.0044993077624401e+01
+-4.6722421233325342e+01
+-2.6965156730885681e+01
+3.1858072906565429e+01
+-4.6691690738051115e+01
+4.6296939181024541e+00
+2.7423020675441599e+01
+-4.3054594051674798e+01
+2.7890904058924995e+00
+2.6186396444968512e+01
+-4.0714802600976263e+01
+1.1692158735657118e+01
+2.9626123259382624e+01
+-4.7257364226251411e+01
+1.4871659944697734e+01
+3.1216766352762395e+01
+-5.0555546381298413e+01
+1.5541328555219117e+01
+3.1023980084783133e+01
+-5.0099930894239932e+01
+1.2202326325923709e+01
+3.0282418213321758e+01
+-4.9399924933207444e+01
+4.7041529673521820e+00
+2.6688362088330503e+01
+-4.2511401982888174e+01
+6.9228195893652620e+00
+2.7501379096644950e+01
+-4.4847186659766379e+01
+7.3227060833179598e+00
+2.7680736381305799e+01
+-4.5277620581532616e+01
+4.6385681890129566e+00
+2.6277969200296575e+01
+-4.2902554064578744e+01
+3.7353123263772869e+00
+2.5877360559222321e+01
+-4.2254411766751076e+01
+1.5547728842017028e+01
+3.0000966243385772e+01
+-5.1363466933145070e+01
+4.5465493253791349e+00
+2.5803291381593933e+01
+-4.3362166228903213e+01
+7.3186874110247579e+00
+2.6945162013881653e+01
+-4.5745944424384881e+01
+-4.6488713458356923e+00
+2.2195589648532980e+01
+-3.6619158602360528e+01
+1.8545904025990332e+01
+3.0800522343238914e+01
+-5.4046903466894328e+01
+-2.1142480888425251e+01
+2.3412967303707056e+01
+-3.7403234418618020e+01
+1.1780537305754654e+01
+2.8093425211002444e+01
+-4.9151334390974611e+01
+1.3436177226024171e+01
+2.8849712687843830e+01
+-5.1407521499593926e+01
+5.6941274193196776e+00
+2.5683327756840491e+01
+-4.5083013075687582e+01
+-1.0233389651426092e+01
+1.9813221134124674e+01
+-3.4248346581085428e+01
+-5.1902633226545651e+00
+6.3463450535468295e+00
+-9.1349609453574931e+00
+1.0317467333566876e+01
+2.6195535116101976e+01
+-4.9984501209525000e+01
+7.6138108568822718e+00
+2.5133060603445127e+01
+-4.8028996592863692e+01
+-1.6069370319891622e+01
+1.8237372621634680e+01
+-3.2586042972415946e+01
+1.6424271528611957e+01
+2.7988611299017848e+01
+-5.5041711084387636e+01
+9.5431799046985528e+00
+2.5626616026452524e+01
+-4.9891376553405735e+01
+-7.7019928136114357e+00
+1.9354074321553803e+01
+-3.7025494062881954e+01
+-1.4385535266279764e+01
+1.7944337281792816e+01
+-3.3573144918351360e+01
+1.7617560703404735e+01
+2.7622277533842393e+01
+-5.6744471186669401e+01
+5.7750751857809766e+00
+2.3600989096892384e+01
+-4.7890821151218297e+01
+5.7750751857809766e+00
+2.3600989096892384e+01
+-4.7890821151218297e+01
+-1.2257069576260765e+01
+1.8082928016699451e+01
+-3.5092199125540034e+01
+-7.2062043565329157e+00
+1.9223345602185621e+01
+-3.8142562234791733e+01
+2.9333353566832465e+00
+2.2267001079203943e+01
+-4.5685231422275777e+01
+-6.2377011983942561e+00
+1.9338115216236194e+01
+-3.8733522365006813e+01
+2.6895442573045236e+00
+2.2216224580967136e+01
+-4.5930484265513357e+01
+2.5041316072684427e+00
+2.2072032819933256e+01
+-4.5662353785358192e+01
+-1.6060364714179219e+01
+1.7055933431981778e+01
+-3.3223446465652025e+01
+-8.0077556656481441e+00
+1.8312140157415836e+01
+-3.7612412240130332e+01
+-1.9484504510917589e+01
+1.8884512018446262e+01
+-3.7463464407583828e+01
+-1.2963905686247827e+01
+1.7530147340455187e+01
+-3.5719885306726404e+01
+-9.6820099436428499e+00
+1.8088949014656567e+01
+-3.7235612215445038e+01
+-9.6820099436428499e+00
+1.8088949014656567e+01
+-3.7235612215445038e+01
+-6.7459666740634479e+00
+1.8660636598764636e+01
+-3.9443794159690526e+01
+1.2579249548628848e+01
+2.3971622970399071e+01
+-5.5534647339213350e+01
+-1.0446210690881404e+01
+1.7188785433019458e+01
+-3.7935622251991447e+01
+-1.4971620545367260e+01
+1.6227307715677579e+01
+-3.5816293408240426e+01
+1.4664412995974796e+00
+2.0262883275648843e+01
+-4.7331820281952311e+01
+1.5954545594568927e+00
+2.0146655832182173e+01
+-4.7423507979164313e+01
+9.2342709689886728e+00
+2.2476839963823807e+01
+-5.3492622125140258e+01
+-1.4770640540540443e+01
+1.6175318735965700e+01
+-3.6267343535463496e+01
+5.4422465071908546e+00
+2.0980241333220391e+01
+-5.0313453052682334e+01
+1.4276161326466298e+01
+2.3368030316646493e+01
+-5.8060325468374813e+01
+-6.9514801292157244e+00
+1.7075485733444676e+01
+-4.1037465782119483e+01
+2.0583999126952048e+00
+1.9313003259262334e+01
+-4.8844919710498480e+01
+-1.2496675438223562e+01
+1.4446349633201399e+01
+-3.7814203719461261e+01
+-1.6194590697375819e+01
+1.4732960394393633e+01
+-3.7659912131930980e+01
+-5.4674197282073491e+00
+1.6309752968696916e+01
+-4.3967548841695908e+01
+-5.7444271075971374e+00
+1.6332262845216452e+01
+-4.3703516626192652e+01
+-7.0496992346771989e+00
+1.5884106474402881e+01
+-4.2960020815681702e+01
+-4.8517235007989825e+01
+3.0795338696648354e+01
+-8.4710664971937192e+01
+-8.9668103127731662e+00
+1.4478671644730149e+01
+-4.2619642824244295e+01
+-1.1241744519738827e+01
+1.3639212534178055e+01
+-4.0965525778205389e+01
+-1.7148826945432930e+01
+1.2776560029072234e+01
+-3.9494177640827303e+01
+-9.9142669999447168e+00
+1.2892397706944386e+01
+-4.4835339537411748e+01
+2.1049604881225763e+00
+1.1191159112867805e+01
+-4.7494653707507268e+01
+-1.1556922583592630e+01
+1.1015749351888099e+01
+-4.6572073012671929e+01
+1.7208674359196261e+00
+8.5769158390044176e+00
+-4.3382338199292811e+01
+3.0000556915684232e+01
+7.6406630180769241e+01
+-9.2789659811190063e+01
+2.9833105515986055e+01
+7.6963247700357542e+01
+-9.4107760277096659e+01
+-6.6961525002732252e+00
+3.6342640560623231e+01
+-4.1090058280923053e+01
+-9.7309884424174911e+00
+4.8568849415598173e+01
+-5.5806739462039744e+01
+-1.2493809415363369e+01
+4.7589249424706658e+01
+-5.4707070996529836e+01
+-2.3505729958543590e+01
+4.3105376110072157e+01
+-4.9562361643649197e+01
+2.0916762339460124e+00
+3.5630825647861165e+01
+-4.3179365425272195e+01
+9.6904867263465533e-01
+3.5731814723559154e+01
+-4.3606458625017773e+01
+-3.8136186403084116e-01
+3.4529207980242788e+01
+-4.2460984449434370e+01
+-2.1129832200656836e+01
+3.5243566463986426e+01
+-4.4332317120237953e+01
+5.2672903102052455e+00
+3.2393422911317401e+01
+-4.3393700435699813e+01
+3.7157550124102641e+00
+3.1988747060055321e+01
+-4.3446893473516241e+01
+5.2859503214257249e+00
+3.2229931376127340e+01
+-4.3903657721815911e+01
+4.5463421798206678e+00
+3.1893376214125531e+01
+-4.3450397927890258e+01
+4.0081395540396016e+00
+3.1444096126526407e+01
+-4.2922055657103563e+01
+5.2506743138691512e+00
+3.1266844113998385e+01
+-4.3948687496690233e+01
+-1.1104055457230873e+01
+2.7090244876781902e+01
+-3.5891552820154288e+01
+-1.4958972729906840e+01
+2.6439182833991001e+01
+-3.4625176268547904e+01
+-2.8623024138918886e+01
+4.0412500998670161e+01
+-5.3961032607473093e+01
+-2.6694413522896919e+01
+3.7209522807431561e+01
+-5.0103869206165626e+01
+-7.7055757910879121e+00
+2.5361475759696432e+01
+-3.4947727267231947e+01
+-3.9131820454152724e+00
+1.2943628672602387e+01
+-1.6882157096003727e+01
+-2.7742444120468722e+01
+3.4427057677855977e+01
+-4.9179881170969381e+01
+1.9407816896161338e+00
+2.5743337180448567e+01
+-4.0557213967854480e+01
+1.5006166900667450e+01
+3.1491623720345888e+01
+-5.1998563429639809e+01
+7.3138359074388966e+00
+2.7650888744349615e+01
+-4.4493393784133751e+01
+7.0177167102222249e-01
+2.4743301455399582e+01
+-3.9546496138575918e+01
+9.8711414133256070e-01
+2.4926785387723552e+01
+-3.9929309498637650e+01
+8.9378635704536578e+00
+2.6470036593068027e+01
+-4.7848923442412968e+01
+-1.0424582189391005e+01
+1.9443019783609039e+01
+-3.4333555041075194e+01
+1.4425454102885459e+01
+2.8082841202207906e+01
+-5.4203972278661972e+01
+1.2738975511448773e+01
+2.7179405706728534e+01
+-5.2450914369601904e+01
+-9.4784008681189889e+00
+1.9132787070048199e+01
+-3.5699264592979659e+01
+-1.2674121930391157e+01
+1.8374599666516620e+01
+-3.3945792397564965e+01
+-9.2729844597131184e+00
+1.9177016944932753e+01
+-3.5959056191055041e+01
+-7.7653939786473538e+00
+1.9143841896515948e+01
+-3.7682976051469133e+01
+-1.5693952884851107e+01
+1.7378722641849432e+01
+-3.3429787678593534e+01
+1.4019510702770250e+00
+2.1795374256186751e+01
+-4.4550076154409254e+01
+1.3001517637491997e-01
+2.1423340378992261e+01
+-4.3920376655780466e+01
+-1.9191591168420150e+01
+1.8741856575917609e+01
+-3.6812022319709115e+01
+-4.9878315238272521e+01
+4.0097380097737911e+01
+-8.9555905189994462e+01
+-5.0089955466867856e+01
+3.9860499534190851e+01
+-9.0279957444584753e+01
+-1.1720177654663328e+01
+1.4331734801014573e+01
+-3.9114216409965529e+01
+-8.2949270481293453e+00
+1.4913469495851150e+01
+-4.3105494544123587e+01
+-3.2490145741820009e-01
+1.4246728733370130e+01
+-5.1283831349987672e+01
+-9.7036575194416432e+00
+1.2014164734220552e+01
+-4.6358095595352211e+01
+-1.3101120182251590e+01
+1.0388970713178848e+01
+-4.6134028031132814e+01
+1.1067735706571322e+00
+7.9763980585189298e+00
+-4.2347132078160712e+01
+-7.1045314420078798e+00
+7.3345791282241777e+01
+-7.7857421537518249e+01
+1.2589323257936938e+01
+7.4100183509904625e+01
+-8.3506453627359775e+01
+1.2589323257936938e+01
+7.4100183509904625e+01
+-8.3506453627359775e+01
+-5.5109274993195010e+00
+6.2812669966932326e+01
+-7.1702447221327262e+01
+-9.2384882599671396e+00
+6.1804527427235243e+01
+-7.0450900920548449e+01
+3.1930985670093133e+01
+7.4373894059731995e+01
+-9.1112223879580583e+01
+-1.6808788335558138e+01
+4.4899292671272498e+01
+-5.2116890677090566e+01
+-2.3949970193255076e+01
+4.4224529222493885e+01
+-5.0852582689947369e+01
+-1.2121288060451697e-01
+3.5302381719290473e+01
+-4.3417156822947256e+01
+-1.3584769883958985e+00
+3.4143491457887734e+01
+-4.1839674469667294e+01
+1.0792052136407839e+00
+3.5014459952207616e+01
+-4.3380744899491731e+01
+1.4824092520338017e+00
+3.4848385454819883e+01
+-4.3309474378176425e+01
+-1.8563628351108183e-01
+3.3994827029879623e+01
+-4.2251205441060613e+01
+6.4570326987844062e+00
+3.5439084067793068e+01
+-4.5851383866756713e+01
+-1.7526134401919492e+01
+3.2534872263622987e+01
+-3.9544291008848923e+01
+-1.1314453700512674e+00
+3.2168167264358068e+01
+-4.1010611783586469e+01
+5.3074924614499901e+00
+3.3822213271884927e+01
+-4.4518621530312643e+01
+5.2169118065785591e+00
+3.2871968029504771e+01
+-4.4056790829032515e+01
+-2.1812994326031006e+01
+3.7040084788455445e+01
+-4.6680326186367694e+01
+5.6922854100763169e+00
+3.2966737792201648e+01
+-4.4461047554851859e+01
+3.9341776476079202e+00
+3.1846617783618797e+01
+-4.2548139393098275e+01
+-2.2704505190631853e+01
+3.5121530842402663e+01
+-4.4481561812658192e+01
+5.4088723577088049e-01
+3.0235964489776098e+01
+-4.0808524409338133e+01
+-4.9893505150459383e-01
+2.9465886302111645e+01
+-3.9533654598631372e+01
+2.6260482982726963e+00
+2.9560580943255530e+01
+-4.1436402902326456e+01
+1.1129618686459331e+00
+2.8838983430225603e+01
+-4.0802349188832629e+01
+3.1370275575354101e+00
+2.8862007119872978e+01
+-4.0750470860740812e+01
+1.7787128625107738e+00
+2.8720746649878798e+01
+-4.1046867787859384e+01
+-2.2858151443264770e+01
+3.4006105444966174e+01
+-4.6511086982975293e+01
+3.9118880843235053e+00
+2.8293219820824888e+01
+-4.1194395615941922e+01
+8.1855549872664852e+00
+2.9358729517867349e+01
+-4.3948003319012408e+01
+-3.9841172178954565e+01
+4.6047576783156359e+01
+-6.4513873274198744e+01
+-2.6646914031829457e+01
+3.3184242237961868e+01
+-4.8429497956440485e+01
+4.8643944151357168e+00
+2.6630233943965653e+01
+-4.3617889465342316e+01
+-2.8912670859948143e+01
+3.1047676005383046e+01
+-4.8507839439544398e+01
+1.7549755029505693e+01
+3.0262599216256245e+01
+-5.3613108392102212e+01
+-5.3126316522633266e+00
+2.1894145078008389e+01
+-3.6482550274394974e+01
+-8.6743626755768890e+00
+2.0795336562039420e+01
+-3.4610773074855643e+01
+1.4884861085889195e+01
+2.8851666365723148e+01
+-5.2884928991067028e+01
+1.4184159784776817e+00
+2.3601011516250246e+01
+-4.1973869264869805e+01
+-1.0046800301716905e+01
+1.9259869438885232e+01
+-3.4973014247509099e+01
+-1.4390285588712526e+01
+1.8037919987480564e+01
+-3.3525993495823315e+01
+-8.3842862500627575e+00
+1.9072052618043354e+01
+-3.6818329052273079e+01
+-1.5586199853913214e+01
+1.7408383431827293e+01
+-3.3569108226624870e+01
+-9.1560546334628548e+00
+1.7904276419331804e+01
+-3.7834592477783140e+01
+-9.1216866472673956e+00
+1.8149175038175265e+01
+-3.8830832795467586e+01
+-7.7958556815867697e+00
+1.8330705756954579e+01
+-3.8772435897001763e+01
+1.4574488383245555e+01
+2.4661013584344062e+01
+-5.7003609887651479e+01
+-4.9581468667328636e+01
+3.1243491059940080e+01
+-8.5578717543022762e+01
+-3.2557561454818618e+01
+2.0654066859698254e+01
+-6.5347090601789901e+01
+-3.6408306069827674e+01
+2.2307272532948570e+01
+-7.1110571007090556e+01
+4.9896647713275870e+00
+1.2172170531870922e+01
+-4.8947017587163558e+01
+-1.2657240040933422e+01
+1.0155529433785560e+01
+-4.6897492724272787e+01
+-5.0188786563806742e+00
+9.7759047108236281e+00
+-4.5463245150384850e+01
+-6.2964852021480198e+00
+8.1138719677101090e+00
+-4.3832872926899576e+01
+-1.4890612173463724e+01
+6.8164381085037562e+01
+-7.5599735918980016e+01
+-2.6969058735753442e+00
+3.1104657971139979e+01
+-4.0648648164899029e+01
+2.6104177290266373e+00
+3.0030387011221453e+01
+-4.0939758780783698e+01
+-2.7944974672536902e+00
+2.6619113201728354e+01
+-3.8904562459272022e+01
+1.5340453674972858e+01
+3.1864971164262332e+01
+-4.8813573530684906e+01
+4.4692175141391095e+00
+2.7350575501796069e+01
+-4.0986603634693836e+01
+8.7573341954537280e+00
+2.9262945946021453e+01
+-4.5056242884330771e+01
+5.5529027688605401e+00
+2.6848456172884998e+01
+-4.3569502949038892e+01
+1.0237184957289756e+00
+2.4811700926607919e+01
+-4.0032641108246480e+01
+4.7092310709637353e+00
+2.5541550503635143e+01
+-4.3917916480344275e+01
+-1.6435944718378256e+01
+1.8361474868533168e+01
+-3.0888907516411894e+01
+-1.4645868317910450e+01
+1.8571164265497618e+01
+-3.1890384876305141e+01
+-2.2318936999054508e+00
+2.2080775194550792e+01
+-4.0262458695186908e+01
+-2.1917865972424252e+01
+2.2290373378866423e+01
+-3.9995897078474940e+01
+-3.8878742173447904e+01
+3.4524837755913083e+01
+-6.8884997615368164e+01
+-1.4055308319560259e+01
+1.6582652675217627e+01
+-3.5692336985228557e+01
+-1.2973493667725961e+01
+1.4254018840150547e+01
+-4.0016340792533121e+01
+-1.9445243612605037e+01
+6.5102432892453280e+01
+-7.2815927052228346e+01
+3.2552998986762738e+01
+7.3834808892641348e+01
+-9.1445666173184563e+01
+-9.7397886708465187e+00
+4.1763565841310928e+01
+-5.0917358411436581e+01
+-9.8425148418474446e+00
+4.2269226511465924e+01
+-5.1221943282693630e+01
+6.7604426084083364e+00
+3.6682460189144471e+01
+-4.6404092971200420e+01
+5.5256953694771767e+00
+3.3889775161780783e+01
+-4.4559426559833817e+01
+7.9155455928774296e+00
+3.2778037774663403e+01
+-4.5321918908097949e+01
+-7.6282657287136937e+00
+2.4047121228324944e+01
+-3.5533642567217584e+01
+4.0548768072014141e-01
+2.4575396803198974e+01
+-4.0096835196296958e+01
+6.8162826826593417e+00
+2.6586749704118596e+01
+-4.6605683928082449e+01
+-1.6685810790659190e+01
+2.0002609048928665e+01
+-3.2209501594665937e+01
+-6.3146719183388731e+00
+2.1527440289441181e+01
+-3.5918085388739911e+01
+-1.6417025907886046e+01
+1.9604261159550500e+01
+-3.1976030592203582e+01
+2.6989029664810413e+00
+2.4726225530539963e+01
+-4.3342151743193014e+01
+-1.5342310455222488e+01
+1.4011017280306996e+01
+-3.8878312400448529e+01
+-1.1632687104380572e+01
+6.3678938512595550e+01
+-7.0643866764470260e+01
+-8.9816427932374552e+00
+4.5271890984205434e+01
+-5.3662370534470718e+01
+5.1859679195743613e+00
+3.3181346913985927e+01
+-4.4224700208617733e+01
+-1.3705937994576979e+01
+9.9295142540632533e+00
+-4.6575281046187769e+01
+-4.0923784002865222e+00
+6.3161689948446451e+01
+-6.8840604387594240e+01
+-1.2555704449304979e+01
+4.6660789365708133e+01
+-5.3459804019380925e+01
+-1.8929225530016858e+01
+4.3974665648596144e+01
+-5.1357342689935216e+01
+1.6756060633402170e+00
+2.5451082168766600e+01
+-3.9804676594092982e+01
+1.8296543042338655e+01
+2.8959171119595371e+01
+-5.5946913140654011e+01
+3.3531717273723274e+01
+7.4615456167068601e+01
+-9.1474441673195855e+01
+3.3531717273723274e+01
+7.4615456167068601e+01
+-9.1474441673195855e+01
+7.1812110317457112e+00
+3.5941286277435744e+01
+-4.5539797536495101e+01
+6.5642565345853399e+00
+3.4291531261323072e+01
+-4.5744720430705300e+01
+6.6916501908239230e+00
+3.4801189874883057e+01
+-4.6689045368509419e+01
+-2.1820232227612717e+01
+3.5204618414869962e+01
+-4.3920329653290700e+01
+4.7990443547422066e+00
+3.1578771866170452e+01
+-4.3545814201672748e+01
+-2.6208121831164091e+00
+1.4803704635233423e+01
+-4.7462382535300648e+01
+2.9778787738547288e+00
+2.9328708106696784e+01
+-4.1600445246117395e+01
+8.5914881713293045e+00
+2.8287027592171736e+01
+-4.5701311316405231e+01
+-1.2876485552830367e+01
+2.8269074022657094e+01
+-3.5549729744007756e+01
+1.2434165699169060e+00
+2.5333967960100598e+01
+-3.9796894342155547e+01
+1.6969984878942590e+00
+1.4699414216489890e+01
+-2.7642093775522905e+01
+6.4730357480222933e+00
+2.2080618503456691e+01
+-5.0628587727637886e+01
+3.6626449461647481e-01
+2.1418953936637017e+01
+-5.3024633213419243e+01
+-1.5788372020887310e+01
+1.6568720104524502e+01
+-4.9293686360801537e+01
+-1.0841357887228055e+01
+1.1815035525100711e+01
+-4.1924662013568415e+01
+-1.0841357887228055e+01
+1.1815035525100711e+01
+-4.1924662013568415e+01
+-1.0417372148300338e+01
+1.1927730075811226e+01
+-4.2599208398176479e+01
+-9.6574331034546699e+00
+1.2050845170146575e+01
+-4.3598509517876408e+01
+-9.6895832102283901e+00
+1.1981062540084375e+01
+-4.3610069777969535e+01
+-9.6895832102283901e+00
+1.1981062540084375e+01
+-4.3610069777969535e+01
+-1.1504293994944650e+01
+1.1694018325177982e+01
+-4.1455366820655264e+01
+1.2269599940944840e+01
+4.2424596619996455e+00
+-3.2461241957222640e+01
+-1.3149759409354617e+01
+1.1012269822975894e+01
+-4.0351056194977488e+01
+-1.2106492958075165e+01
+1.1084932390509634e+01
+-4.1393606530675932e+01
+-1.2106492958075165e+01
+1.1084932390509634e+01
+-4.1393606530675932e+01
+8.2120492732594319e-01
+4.3504703623129588e+00
+-2.7150517135782948e+01
+-1.2466947799228363e+01
+1.0575368034165020e+01
+-4.1663138952184426e+01
+-1.2645876975963285e+01
+1.1045689628322814e+01
+-4.3381279434046597e+01
+-1.2541660128946704e+01
+1.0472267359121997e+01
+-4.1758214942489026e+01
+-1.3292963745654220e+01
+1.0217577713971306e+01
+-4.1371630493907844e+01
+-1.3309110980402442e+01
+1.0190313139995006e+01
+-4.1516622801052961e+01
+-1.3956589667403223e+01
+1.0316472709788767e+01
+-4.1884206013003372e+01
+2.5307705016461708e+00
+1.5564789111471187e+00
+-2.0692434519135432e+01
+-1.6110903757379862e+00
+7.2630020387830561e+00
+-4.2233149314627880e+01
+1.4039970936008844e+01
+5.7609413034803347e-01
+-2.9994397820203417e+01
+1.1091019893222780e+00
+1.0367512973908415e+00
+-2.0453374346879034e+01
+1.3568378698963077e+01
+1.4443187111103709e-01
+-3.2024264581913144e+01
+1.3086622219058837e+00
+5.5422049593119938e-01
+-2.0335832911839439e+01
+2.2155714471306962e+00
+3.1125402062236301e-01
+-2.0300919371787217e+01
+-5.7182352468302433e+00
+5.4106621080442299e+00
+-4.0291782444593480e+01
+5.7279523179679144e+00
+-2.3770447850715690e-01
+-2.3057066403481656e+01
+1.4189924095756446e+01
+-8.2719064786234975e-01
+-3.0868231229679509e+01
+1.4242846664213493e+01
+-1.0439795883834666e+00
+-3.0877353021366641e+01
+2.1142452301192334e+00
+-7.5524155361281631e-01
+-2.0417665148838093e+01
+2.8650311193963462e+00
+-1.1537906742498738e+00
+-2.0708737745821246e+01
+3.4924471994497615e+00
+-1.4162513735929567e+00
+-2.0592265958308090e+01
+1.3284424320581936e+01
+-2.8528298145201418e+00
+-2.8722401180065773e+01
+1.0142033178442444e+00
+-1.1795337000521364e+00
+-2.0589827395041862e+01
+3.9181365400828216e-01
+-1.8427098137502995e+00
+-2.0375548962340215e+01
+-2.7497993016378626e+00
+-1.0399726558249449e+00
+-2.2003677503238542e+01
+-2.8000427677316684e+00
+-1.3488424650793480e+00
+-2.1535898018371363e+01
+1.1510558382794696e+00
+-2.8043020031452155e+00
+-1.9763788749805830e+01
+1.5564749829575999e+00
+-3.3750366799157416e+00
+-2.0118936076912131e+01
+2.5791915107937124e+00
+-4.1924344902744739e+00
+-2.0987751996890960e+01
+-1.4811167174473916e-01
+-3.5792073543062228e+00
+-2.0901005099740956e+01
+-7.2054710196904868e+00
+-1.9521019437923706e+00
+-2.9552097456793046e+01
+-9.2067431107598150e+00
+-1.4820228690376009e+00
+-3.0073686987820658e+01
+-9.2828064898378653e+00
+-1.5029058190289504e+00
+-2.9993499140882857e+01
+-7.1928145320392227e+00
+-2.0402733286152381e+00
+-2.9450299131989802e+01
+-9.7676234060886920e+00
+-1.4054756611859325e+00
+-3.0064013195877955e+01
+1.0156435968885313e+01
+-6.7050605085299164e+00
+-2.3508341892248708e+01
+-1.1570823465196174e+01
+-1.2259575000388256e+00
+-2.9976251427944252e+01
+1.6234727806289200e+01
+2.2603138037516267e+01
+-5.6263708590419931e+01
+7.9417906808121028e+00
+2.2119681240716226e+01
+-5.3090177742243647e+01
+5.0212275236859227e+00
+2.1112269503873634e+01
+-5.1516165751805879e+01
+-1.0526309289766976e+01
+2.1400157801361800e+01
+-4.8990502477455941e+01
+-1.0644946831182605e+01
+1.6068371519799115e+01
+-4.8968366012386014e+01
+-1.5783365933521557e+01
+1.6369967890501844e+01
+-4.9214858737449561e+01
+-1.5471977363622235e+01
+1.5497893173235934e+01
+-4.9204230874374055e+01
+2.4939709900150078e+00
+9.0951197828113060e+00
+-4.4978284391814654e+01
+-1.3893303981830888e+01
+1.0078057782914934e+01
+-4.2612278013436303e+01
+2.7360310189947574e+00
+9.1135658938021857e-01
+-2.0555854443321479e+01
+-2.2016971062924720e+00
+3.5746059610946470e+00
+-2.8593859433633195e+01
+-1.5718771424219926e+00
+1.0625665468904140e+00
+-2.2379952587103244e+01
+-4.7930128617875027e+00
+2.0545828603583973e+00
+-3.5928073581971347e+01
+6.9396728390607798e-01
+4.5010540309798008e+00
+-2.6344190352191465e+01
+3.8518970392756513e+00
+2.5186608943402149e+00
+-2.2397226050484790e+01
+-1.1800433719813105e+01
+1.1131556192596078e+01
+-4.8016880288904872e+01
+-3.1483335114141791e+00
+-1.4404033334623639e-01
+-2.4883573723877589e+01
+-1.7773455066388397e+00
+-9.9912336980794314e-01
+-2.1842928104306292e+01
+-2.0313967026664566e+00
+-2.9322347335346559e+00
+-2.2119598437134723e+01
+-7.2029394532641415e+00
+-2.0732193672035995e+00
+-3.1554250857185959e+01
+-6.8637120697194591e+00
+-2.6770281043481372e+00
+-2.8538177895990799e+01
+5.2983273885889108e+00
+1.0705503485662108e+01
+-4.6605042410255628e+01
+-3.7336910041955158e+00
+-3.1349483038543715e+00
+-3.0722225173082041e+01
+1.6807324782172794e+00
+1.6789021559779037e+01
+-5.4256626826579939e+01
+-9.6057588838057626e+00
+1.4651901407585330e+01
+-4.8587135008024632e+01
+1.3574276562677117e+01
+2.2433304965773213e-01
+-3.1786740708230990e+01
+-7.0170053508199421e+00
+-2.8537123743328765e+00
+-2.8382353292255829e+01
+4.2993286735985849e+00
+1.0522008392721398e+00
+-2.2083278101526680e+01
+-1.4136066809451435e+00
+4.2451080838650873e-01
+-2.4687052055117885e+01
+2.3523626046086463e+01
+2.7505658523672917e+01
+-6.6924068639456138e+01
+1.2164662003854614e+00
+1.1601823373955874e+01
+-4.8327829619618178e+01
+-4.9302004422946011e+00
+1.0146322676190147e+01
+-4.5877428134257897e+01
+1.6127023291788209e+01
+7.9519998642869956e+00
+-4.7974543275400123e+01
+-1.7308842884700226e+01
+9.4506702760960657e+00
+-4.2399748281806183e+01
+-1.2028355713086775e+01
+8.1045616883984160e+00
+-4.3398482312761260e+01
+-8.3456973697429082e-01
+2.0439080110357604e+00
+-2.2356146123567900e+01
+-1.2811579233533800e+01
+2.5607811309056068e+00
+-3.6144359979515407e+01
+-1.4509027035540386e+01
+2.3122261689007937e+00
+-3.6147427581670065e+01
+-1.4534809958396254e+01
+2.2265570324105743e+00
+-3.6012141451094429e+01
+-1.1807014364063253e+00
+-2.2408150341356359e-01
+-2.2114659986178751e+01
+-6.5618453027753256e+00
+5.4609049687959776e-01
+-3.2907081241194227e+01
+-1.0951810421980541e+00
+-2.9678090741691082e-01
+-2.2043229245876269e+01
+-1.0390161284774097e+01
+7.2749709705900512e-01
+-3.3309461988597000e+01
+-6.8031592640029190e+00
+3.8896989924130521e-01
+-3.2684748440669793e+01
+-6.8851543277523275e-01
+-5.2093069306376860e-01
+-2.1802353220944880e+01
+-1.3132257998570669e+01
+6.6444742205992402e-01
+-3.3662573485934516e+01
+1.9064130111164024e+00
+-1.2829074563532774e+00
+-2.1579505810426287e+01
+-1.1031959547141333e-01
+-1.1933000585630773e+00
+-2.1212145159197128e+01
+-5.6438864704259339e+00
+-4.0851500419171174e+00
+-2.5992584564156957e+01
+1.5229744024977744e+01
+9.2043433065780658e+00
+-4.8488026380980727e+01
+-6.6501689231810586e+00
+8.1982596832350274e-01
+-3.3306631567991971e+01
+-8.7836330447702267e+00
+-1.2085803872807752e+00
+-3.0503756235111293e+01
+-1.3108115891677123e+01
+-1.5172812002955227e+00
+-3.0567982830551806e+01
+-6.6618727408066842e+00
+2.6961946187778332e+00
+-3.5808518937748651e+01
+-1.3008262829375791e+01
+5.6629347184104661e-01
+-3.3470149528663271e+01
+-9.2860689666160763e+00
+-1.7218500957221128e+00
+-2.9909626948891027e+01
+1.6040261369822417e+01
+8.2414526861626882e+00
+-4.7773881095770804e+01
+-1.1059584943217088e+01
+2.8979995607281932e+00
+-3.6438826430512037e+01
+-1.2213804131153926e+01
+1.9718006658458389e+00
+-3.5380268538162255e+01
+-6.2598084800410119e+00
+1.1392384427726711e-01
+-3.2206198950967291e+01
+8.7187661291294738e-02
+4.9153104750992266e-01
+-2.1328035006599070e+01
+-6.3887492046338297e+00
+-4.7332360001523517e+00
+-2.5438856930587917e+01
+-5.8958831441550847e+00
+-5.3940883771420340e+00
+-2.4565534365976252e+01
+-6.0586488955679432e+00
+-5.6140364629926722e+00
+-2.4187419398866680e+01
+5.0778083202364392e+00
+1.1271541509721448e+01
+-4.8092601879633222e+01
+-1.7115690838471973e+01
+1.2065579242779451e+01
+-4.0029391069533204e+01
+-8.7848335791500531e+00
+1.1652577405755647e+01
+-4.7192424437999875e+01
+-8.0867212049118109e+00
+1.1563968038805301e+01
+-4.7831875793951703e+01
+-8.6270704170090706e+00
+1.0684589720037730e+01
+-4.6810959170777309e+01
+-5.1658843840370494e+00
+8.7190890000602259e+00
+-4.3856247105773697e+01
+-7.9343522447974468e+00
+7.3540260405955173e+00
+-4.2005555023142122e+01
+-3.7719680164031812e+00
+1.1022501903417394e+01
+-4.7349911639646528e+01
diff --git a/data/problem-6-1384-000.lsqp b/data/problem-6-1384-000.lsqp
new file mode 100644
index 0000000..ea78dfd
--- /dev/null
+++ b/data/problem-6-1384-000.lsqp
Binary files differ
diff --git a/docs/api.tex b/docs/api.tex
new file mode 100644
index 0000000..2c36377
--- /dev/null
+++ b/docs/api.tex
@@ -0,0 +1,608 @@
+%!TEX root = ceres.tex
+\chapter{API Reference}
+\label{chapter:api}
+Ceres solves robustified non-linear least squares problems of the form 
+\begin{equation}
+	\frac{1}{2}\sum_{i=1}^{k} \rho_i\left(\left\|f_i\left(x_{i_1},\hdots,x_{k_i}\right)\right\|^2\right).
+	\label{eq:ceresproblem}
+\end{equation}
+Where $f_i()$ is a  cost function that depends on the parameter blocks $\left[x_{i_1}, \hdots , x_{i_k}\right]$ and  $\rho_i$ is a loss function. In most optimization problems small groups of scalars occur together. For example the three components of a translation vector and the four components of the quaternion that define the pose of a camera. We refer to such a group of small scalars as a {\em Parameter Block}. Of course a parameter block can just have a single parameter. 
+The term $ \rho_i\left(\left\|f_i\left(x_{i_1},\hdots,x_{k_i}\right)\right\|^2\right)$ is known as a residual block. A Ceres problem is a collection of residual blocks, each of which depends on a subset of the parameter blocks.
+
+
+\section{\texttt{CostFunction}}
+Given parameter blocks $\left[x_{i_1}, \hdots , x_{i_k}\right]$, a \texttt{CostFunction} is responsible for computing 
+a vector of residuals and if asked a vector of Jacobian matrices, i.e., given $\left[x_{i1}, \hdots , x_{i_k}\right]$, compute the vector $f_i\left(x_{i_1},\hdots,x_{k_i}\right)$ and the matrices 
+\begin{equation}
+J_{ij} = \frac{\partial}{\partial x_{i_j}}f_i\left(x_{i_1},\hdots,x_{k_i}\right),\quad \forall j = i_1,\hdots, i_k
+\end{equation}
+
+\begin{minted}{c++}
+class CostFunction {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) = 0;
+  const vector<int16>& parameter_block_sizes(); 
+  int num_residuals() const;
+
+ protected:
+  vector<int16>* mutable_parameter_block_sizes();
+  void set_num_residuals(int num_residuals);
+};
+\end{minted}
+
+The signature of the function (number and sizes of input parameter blocks and number of outputs)
+is stored in \texttt{parameter\_block\_sizes\_} and \texttt{num\_residuals\_} respectively. User
+code inheriting from this class is expected to set these two members with the
+corresponding accessors. This information will be verified by the Problem
+when added with \texttt{Problem::AddResidualBlock}. 
+
+The most important method here is \texttt{Evaluate}. It implements the residual and Jacobian computation.
+
+\texttt{parameters}  is an array of pointers to arrays containing the various parameter blocks. parameters has the same number of elements as parameter\_block\_sizes\_.  Parameter blocks are in the same order as parameter\_block\_sizes\_. 
+
+
+\texttt{residuals} is an array of size \texttt{num\_residuals\_}. 
+
+
+\texttt{jacobians} is an array of size \texttt{parameter\_block\_sizes\_} containing pointers to storage for Jacobian matrices corresponding to each parameter block. Jacobian matrices are in the same order as \texttt{parameter\_block\_sizes\_}, i.e., \texttt{jacobians[i]}, is an array that contains \texttt{num\_residuals\_} * \texttt{parameter\_block\_sizes\_[i]} elements. Each Jacobian matrix is stored in row-major order, i.e.,
+ 
+\begin{equation}
+\texttt{jacobians[i][r*parameter\_block\_size\_[i] + c]} = \frac{\partial \texttt{residual[r]}}{\partial \texttt{parameters[i][c]}}
+\end{equation}
+
+If \texttt{jacobians} is \texttt{NULL}, then no derivatives are returned; this is the case when computing cost only. If \texttt{jacobians[i]} is \texttt{NULL}, then the Jacobian matrix corresponding to the $i^{\textrm{th}}$ parameter block must not be returned, this is the case when the a parameter block is marked constant.
+
+\section{\texttt{SizedCostFunction}}
+If the size of the parameter blocks and the size of the residual vector is known at compile time (this is the common case), Ceres provides \texttt{SizedCostFunction}, where these values can be specified as template parameters.
+\begin{minted}{c++}
+template<int kNumResiduals,
+         int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5 = 0>
+class SizedCostFunction : public CostFunction {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) = 0;
+};
+\end{minted}
+In this case the user only needs to implement the \texttt{Evaluate} method.
+
+\section{\texttt{AutoDiffCostFunction}}
+But even defining the \texttt{SizedCostFunction} can be a tedious affair if complicated derivative computations are involved. To this end Ceres provides automatic differentiation.
+
+To get an auto differentiated cost function, you must define a class with a
+ templated \texttt{operator()} (a functor) that computes the cost function in terms of
+ the template parameter \texttt{T}. The autodiff framework substitutes appropriate
+ \texttt{Jet} objects for T in order to compute the derivative when necessary, but
+ this is hidden, and you should write the function as if T were a scalar type
+ (e.g. a double-precision floating point number).
+
+ The function must write the computed value in the last argument (the only
+ non-\texttt{const} one) and return true to indicate success.
+
+ For example, consider a scalar error $e = k - x^\top y$, where both $x$ and $y$ are
+ two-dimensional vector parameters  and $k$ is a constant. The form of this error, which is the
+ difference between a constant and an expression, is a common pattern in least
+ squares problems. For example, the value $x^\top y$ might be the model expectation
+ for a series of measurements, where there is an instance of the cost function
+ for each measurement $k$.
+
+ The actual cost added to the total problem is $e^2$, or $(k - x^\top y)^2$; however,
+ the squaring is implicitly done by the optimization framework.
+
+ To write an auto-differentiable cost function for the above model, first
+ define the object
+\begin{minted}{c++}
+class MyScalarCostFunction {
+  MyScalarCostFunction(double k): k_(k) {}
+  template <typename T>
+  bool operator()(const T* const x , const T* const y, T* e) const {
+    e[0] = T(k_) - x[0] * y[0] + x[1] * y[1]
+     return true;
+  }
+
+ private:
+  double k_;
+};
+\end{minted}
+ 
+Note that in the declaration of \texttt{operator()} the input parameters \texttt{x} and \texttt{y} come
+ first, and are passed as const pointers to arrays of \texttt{T}. If there were three
+ input parameters, then the third input parameter would come after \texttt{y}. The
+ output is always the last parameter, and is also a pointer to an array. In
+ the example above, \texttt{e} is a scalar, so only \texttt{e[0]} is set.
+
+ Then given this class definition, the auto differentiated cost function for
+ it can be constructed as follows.
+
+\begin{minted}{c++}
+CostFunction* cost_function
+    = new AutoDiffCostFunction<MyScalarCostFunction, 1, 2, 2>(
+        new MyScalarCostFunction(1.0));              ^  ^  ^
+                                                     |  |  |
+                         Dimension of residual ------+  |  |
+                         Dimension of x ----------------+  |
+                         Dimension of y -------------------+
+\end{minted}
+
+In this example, there is usually an instance for each measumerent of k.
+
+In the instantiation above, the template parameters following
+ \texttt{MyScalarCostFunction}, \texttt{<1, 2, 2>} describe the functor as computing a
+ 1-dimensional output from two arguments, both 2-dimensional.
+
+ The framework can currently accommodate cost functions of up to 6 independent
+ variables, and there is no limit on the dimensionality of each of them.
+
+ \textbf{WARNING 1} Since the functor will get instantiated with different types for
+ \texttt{T}, you must convert from other numeric types to \texttt{T} before mixing
+ computations with other variables of type \texttt{T}. In the example above, this is
+ seen where instead of using \texttt{k\_} directly, \texttt{k\_} is wrapped with \texttt{T(k\_)}.
+
+ \textbf{WARNING 2} A common beginner's error when first using \texttt{AutoDiffCostFunction} is to get the sizing wrong. In particular, there is a tendency to
+ set the template parameters to (dimension of residual, number of parameters)
+ instead of passing a dimension parameter for {\em every parameter block}. In the
+ example above, that would be \texttt{<MyScalarCostFunction, 1, 2>}, which is missing
+ the 2 as the last template argument. 
+
+\section{\texttt{NumericDiffCostFunction}}
+To get a numerically differentiated cost function, define a subclass of
+\texttt{CostFunction} such that the \texttt{Evaluate} function ignores the jacobian
+parameter. The numeric differentiation wrapper will fill in the jacobians array
+ if nececssary by repeatedly calling the \texttt{Evaluate} method with
+small changes to the appropriate parameters, and computing the slope. For
+performance, the numeric differentiation wrapper class is templated on the
+concrete cost function, even though it could be implemented only in terms of
+the virtual \texttt{CostFunction} interface.
+\begin{minted}{c++}
+template <typename CostFunctionNoJacobian,
+          NumericDiffMethod method = CENTRAL, int M = 0,
+          int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5 = 0>
+class NumericDiffCostFunction
+    : public SizedCostFunction<M, N0, N1, N2, N3, N4, N5> {
+};
+\end{minted}
+
+The numerically differentiated version of a cost function for a cost function
+can be constructed as follows:
+\begin{minted}{c++}
+CostFunction* cost_function
+    = new NumericDiffCostFunction<MyCostFunction, CENTRAL, 1, 4, 8>(
+        new MyCostFunction(...), TAKE_OWNERSHIP);
+\end{minted}
+where \texttt{MyCostFunction} has 1 residual and 2 parameter blocks with sizes 4 and 8
+respectively. Look at the tests for a more detailed example.
+
+The central difference method is considerably more accurate at the cost of
+twice as many function evaluations than forward difference. Consider using
+central differences begin with, and only after that works, trying forward
+difference to improve performance.
+
+\section{\texttt{LossFunction}}
+ For least squares problems where the minimization may encounter
+ input terms that contain outliers, that is, completely bogus
+ measurements, it is important to use a loss function that reduces
+ their influence.
+
+ Consider a structure from motion problem. The unknowns are 3D
+ points and camera parameters, and the measurements are image
+ coordinates describing the expected reprojected position for a
+ point in a camera. For example, we want to model the geometry of a
+ street scene with fire hydrants and cars, observed by a moving
+ camera with unknown parameters, and the only 3D points we care
+ about are the pointy tippy-tops of the fire hydrants. Our magic
+ image processing algorithm, which is responsible for producing the
+ measurements that are input to Ceres, has found and matched all
+ such tippy-tops in all image frames, except that in one of the
+ frame it mistook a car's headlight for a hydrant. If we didn't do
+ anything special  the
+ residual for the erroneous measurement will result in the
+ entire solution getting pulled away from the optimum to reduce
+ the large error that would otherwise be attributed to the wrong
+ measurement.
+
+ Using a robust loss function, the cost for large residuals is
+ reduced. In the example above, this leads to outlier terms getting
+ down-weighted so they do not overly influence the final solution.
+
+\begin{minted}{c++}
+class LossFunction {
+ public:
+  virtual void Evaluate(double s, double out[3]) const = 0;
+};
+\end{minted}	
+
+The key method is \texttt{Evaluate}, which given a non-negative scalar \texttt{s}, computes
+\begin{align}
+	\texttt{out} = \begin{bmatrix}\rho(s), & \rho'(s), & \rho''(s)\end{bmatrix}
+\end{align}
+
+Here the convention is that the contribution of a term to the cost function is given by $\frac{1}{2}\rho(s)$,  where $s = \|f_i\|^2$. Calling the method with a negative value of $s$ is an error and the implementations are not required to handle that case.
+
+Most sane choices of $\rho$ satisfy:
+\begin{align}
+   \rho(0) &= 0\\
+   \rho'(0) &= 1\\
+   \rho'(s) &< 1 \text{ in the outlier region}\\
+   \rho''(s) &< 0 \text{ in the outlier region}
+\end{align}
+so that they mimic the squared cost for small residuals.
+
+\subsection{Scaling}
+Given one robustifier $\rho(s)$
+ one can change the length scale at which robustification takes
+ place, by adding a scale factor $a > 0$ which gives us $\rho(s,a) = a^2 \rho(s / a^2)$ and the first and second derivatives as $\rho'(s / a^2)$ and   $(1 / a^2) \rho''(s / a^2)$ respectively. 
+
+
+\begin{figure}[hbt]
+\includegraphics[width=\textwidth]{loss.pdf}
+\caption{Shape of the various common loss functions.}
+\label{fig:loss}
+\end{figure}
+
+
+The reason for the appearance of squaring is that $a$ is in the units of the residual vector norm whereas $s$ is a squared norm. For applications it is more convenient to specify $a$ than
+its square. 
+
+Here are some common loss functions implemented in Ceres. For simplicity we described their unscaled versions. Figure~\ref{fig:loss} illustrates their shape graphically.
+
+\begin{align}
+		\rho(s)&=s \tag{\texttt{NullLoss}}\\
+		\rho(s) &= \begin{cases}
+		       s & s \le 1\\
+		       2 \sqrt{s} - 1 & s > 1
+	           \end{cases} \tag{\texttt{HuberLoss}}\\
+		\rho(s) &= 2 (\sqrt{1+s} - 1) \tag{\texttt{SoftLOneLoss}}\\
+		\rho(s) &= \log(1 + s) \tag{\texttt{CauchyLoss}}
+\end{align}
+
+\section{\texttt{LocalParameterization}}
+Sometimes the parameters $x$ can overparameterize a problem. In
+that case it is desirable to choose a parameterization to remove
+the null directions of the cost. More generally, if $x$ lies on a
+manifold of a smaller dimension than the ambient space that it is
+embedded in, then it is numerically and computationally more
+effective to optimize it using a parameterization that lives in
+the tangent space of that manifold at each point.
+
+For example, a sphere in three dimensions is a two dimensional
+manifold, embedded in a three dimensional space. At each point on
+the sphere, the plane tangent to it defines a two dimensional
+tangent space. For a cost function defined on this sphere, given a
+point $x$, moving in the direction normal to the sphere at that
+point is not useful. Thus a better way to parameterize a point on
+a sphere is to optimize over two dimensional vector $\Delta x$ in the
+tangent space at the point on the sphere point and then "move" to
+the point $x + \Delta x$, where the move operation involves projecting
+back onto the sphere. Doing so removes a redundant dimension from
+the optimization, making it numerically more robust and efficient.
+
+More generally we can define a function
+\begin{equation}
+  x' = \boxplus(x, \Delta x),
+\end{equation}
+where $x'$ has the same size as $x$, and $\Delta x$ is of size less
+than or equal to $x$. The function $\boxplus$, generalizes the
+definition of vector addition. Thus it satisfies the identity
+\begin{equation}
+  \boxplus(x, 0) = x,\quad \forall x.
+\end{equation}
+
+Instances of \texttt{LocalParameterization} implement the $\boxplus$ operation and its derivative with respect to $\Delta x$ at $\Delta x = 0$.
+
+\begin{minted}{c++}
+class LocalParameterization {
+ public:
+  virtual ~LocalParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const = 0;
+  virtual bool ComputeJacobian(const double* x, double* jacobian) const = 0;
+  virtual int GlobalSize() const = 0;
+  virtual int LocalSize() const = 0;
+};
+\end{minted}
+
+\texttt{GlobalSize} is the dimension of the ambient space in which the parameter block $x$ lives. \texttt{LocalSize} is the size of the tangent space that $\Delta x$ lives in. \texttt{Plus} implements $\boxplus(x,\Delta x)$ and $\texttt{ComputeJacobian}$ computes the Jacobian matrix 
+\begin{equation}
+	J = \left . \frac{\partial }{\partial \Delta x} \boxplus(x,\Delta x)\right|_{\Delta x = 0}
+\end{equation}
+in row major form.
+
+A trivial version of $\boxplus$ is when delta is of the same size as $x$
+and
+
+\begin{equation}
+  \boxplus(x, \Delta x) = x + \Delta x
+\end{equation}
+
+A more interesting case if $x$ is a two dimensional vector, and the
+user wishes to hold the first coordinate constant. Then, $\Delta x$ is a
+scalar and $\boxplus$ is defined as
+
+\begin{equation}
+  \boxplus(x, \Delta x) = x + \left[ \begin{array}{c} 0 \\ 1
+                                  \end{array} \right]        \Delta x
+\end{equation}
+
+\texttt{SubsetParameterization} generalizes this construction to hold any part of a parameter block constant.
+
+
+Another example that occurs commonly in Structure from Motion problems
+is when camera rotations are parameterized using a quaternion. There,
+it is useful only to make updates orthogonal to that 4-vector defining
+the quaternion. One way to do this is to let $\Delta x$ be a 3
+dimensional vector and define $\boxplus$ to be
+
+\begin{equation}
+  \boxplus(x, \Delta x) = 
+\left[
+\cos(|\Delta x|), \frac{\sin\left(|\Delta x|\right)}{|\Delta x|} \Delta x 
+\right] * x
+\label{eq:quaternion}
+\end{equation}
+The multiplication between the two 4-vectors on the right hand
+side is the standard quaternion product. \texttt{QuaternionParameterization} is an implementation of~\eqref{eq:quaternion}.
+
+\section{\texttt{Problem}}
+\begin{minted}{c++}
+class Problem {
+ public:
+  struct Options {
+    Options();
+    Ownership cost_function_ownership;
+    Ownership loss_function_ownership;
+    Ownership local_parameterization_ownership;
+  };
+
+  Problem();
+  explicit Problem(const Options& options);
+  ~Problem();
+
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   const vector<double*>& parameter_blocks);
+
+  void AddParameterBlock(double* values, int size);
+  void AddParameterBlock(double* values,
+                         int size,
+                         LocalParameterization* local_parameterization);
+
+  void SetParameterBlockConstant(double* values);
+  void SetParameterBlockVariable(double* values);
+  void SetParameterization(double* values,
+                           LocalParameterization* local_parameterization);
+
+  int NumParameterBlocks() const;
+  int NumParameters() const;
+  int NumResidualBlocks() const;
+  int NumResiduals() const;
+};
+\end{minted}
+
+The \texttt{Problem} objects holds the robustified non-linear least squares problem~\eqref{eq:ceresproblem}. To create a least squares problem, use the \texttt{Problem::AddResidualBlock} and \texttt{Problem::AddParameterBlock} methods.
+
+For example a problem containing 3 parameter blocks of sizes 3, 4 and 5
+respectively and two residual blocks  of size 2 and 6:
+
+\begin{minted}{c++}
+double x1[] = { 1.0, 2.0, 3.0 };
+double x2[] = { 1.0, 2.0, 3.0, 5.0 };
+double x3[] = { 1.0, 2.0, 3.0, 6.0, 7.0 };
+
+Problem problem;
+problem.AddResidualBlock(new MyUnaryCostFunction(...), x1);
+problem.AddResidualBlock(new MyBinaryCostFunction(...), x2, x3);
+\end{minted}
+
+
+\texttt{AddResidualBlock} as the name implies, adds a residual block to the problem. It adds a cost function, an optional loss function, and connects the cost function to a set of parameter blocks.
+
+The cost
+   function carries with it information about the sizes of the
+   parameter blocks it expects. The function checks that these match
+   the sizes of the parameter blocks listed in \texttt{parameter\_blocks}. The
+   program aborts if a mismatch is detected. \texttt{loss\_function} can be
+   \texttt{NULL}, in which case the cost of the term is just the squared norm
+   of the residuals.
+
+  The user has the option of explicitly adding the parameter blocks
+  using \texttt{AddParameterBlock}. This causes additional correctness
+  checking; however, \texttt{AddResidualBlock} implicitly adds the parameter
+   blocks if they are not present, so calling \texttt{AddParameterBlock}
+   explicitly is not required.
+
+  
+   \texttt{Problem} by default takes ownership of the
+  \texttt{cost\_function} and \texttt{loss\_function pointers}. These objects remain
+   live for the life of the \texttt{Problem} object. If the user wishes to
+  keep control over the destruction of these objects, then they can
+  do this by setting the corresponding enums in the \texttt{Options} struct.
+  
+
+  Note that even though the Problem takes ownership of \texttt{cost\_function}
+  and \texttt{loss\_function}, it does not preclude the user from re-using
+  them in another residual block. The destructor takes care to call
+  delete on each \texttt{cost\_function} or \texttt{loss\_function} pointer only once,
+  regardless of how many residual blocks refer to them.
+
+\texttt{AddParameterBlock} explicitly adds a parameter block to the \texttt{Problem}. Optionally it allows the user to associate a LocalParameterization object with the parameter block too. Repeated calls with the same arguments are ignored. Repeated
+calls with the same double pointer but a different size results in undefined behaviour.
+
+You can set any parameter block to be constant using 
+
+\texttt{Problem::SetParameterBlockConstant} 
+
+and undo this using
+
+\texttt{Problem::SetParameterBlockVariable}.
+
+In fact you can set any number of parameter blocks to be constant, and Ceres is smart enough to figure out what part of the problem you have constructed depends on the parameter blocks that are free to change and only spends time solving it. So for example if you constructed a problem with a million parameter blocks and 2 million residual blocks, but then set all but one parameter blocks to be constant and say only 10 residual blocks depend on this one non-constant parameter block. Then the computational effort Ceres spends in solving this problem will be the same if you had defined a problem with one parameter block and 10 residual blocks.
+
+  \texttt{Problem} by default takes ownership of the
+  \texttt{cost\_function}, \texttt{loss\_function} and \\ \texttt{local\_parameterization} pointers. These objects remain
+   live for the life of the \texttt{Problem} object. If the user wishes to
+  keep control over the destruction of these objects, then they can
+  do this by setting the corresponding enums in the \texttt{Options} struct. Even though \texttt{Problem} takes ownership of these pointers,  it does not preclude the user from re-using them in another residual or parameter block. The destructor takes care to call
+  delete on each  pointer only once.
+
+\section{\texttt{Solver::Options}}
+\texttt{Solver::Options} controls the overall behavior of the solver. We list the various settings and their default values below.
+
+\begin{enumerate}
+\item{\texttt{minimizer\_type}}(\texttt{LEVENBERG\_MARQUARDT}) The  minimization algorithm used by Ceres. \texttt{LEVENBERG\_MARQUARDT} is currently the only valid value.
+
+\item{\texttt{max\_num\_iterations}}(\texttt{50}) Maximum number of iterations for Levenberg-Marquardt.
+
+\item{\texttt{max\_solver\_time\_sec}}(\texttt{1e9}) Maximum amount of time (in seconds) for which the solver should run.
+
+\item{\texttt{num\_threads}}(\texttt{1})
+Number of threads used by Ceres to evaluate the Jacobian.
+
+\item{\texttt{tau}}(\texttt{1e-4}) Initial value of the regularization parameter $\mu$ used by the Levenberg-Marquardt algorithm. The size of this parameter indicate the user's guess of how far the initial solution is from the minimum. Large values indicates that the solution is far away.
+
+\item{\texttt{min\_relative\_decrease}}(\texttt{1e-3}) Lower threshold for relative decrease before a Levenberg-Marquardt step is acceped.
+
+
+\item{\texttt{function\_tolerance}}(\texttt{1e-6}) Solver terminates if
+\begin{align}
+\frac{|\Delta \text{cost}|}{\text{cost}} < \texttt{function\_tolerance}
+\end{align}
+where, $\Delta \text{cost}$ is the change in objective function value (up or down) in the current iteration of Levenberg-Marquardt.
+
+\item \texttt{Solver::Options::gradient\_tolerance} Solver terminates if 
+\begin{equation}
+    \frac{\|g(x)\|_\infty}{\|g(x_0)\|_\infty} < \texttt{gradient\_tolerance}
+\end{equation}
+where $\|\cdot\|_\infty$ refers to the max norm, and $x_0$ is the vector of initial parameter values.
+
+\item{\texttt{parameter\_tolerance}}(\texttt{1e-8}) Solver terminates if 
+\begin{equation}
+	\frac{\|\Delta x\|}{\|x\| + \texttt{parameter\_tolerance}} < \texttt{parameter\_tolerance}
+\end{equation}
+where $\Delta x$ is the step computed by the linear solver in the current iteration of Levenberg-Marquardt.
+
+\item{\texttt{linear\_solver\_type}}(\texttt{SPARSE\_NORMAL\_CHOLESKY}/\texttt{DENSE\_QR}) Type of linear solver used to compute the solution to the linear least squares problem in each iteration of the Levenberg-Marquardt algorithm. If Ceres is build with \suitesparse linked in  then the default is \texttt{SPARSE\_NORMAL\_CHOLESKY}, it is \texttt{DENSE\_QR} otherwise.
+
+\item{\texttt{preconditioner\_type}}(\texttt{JACOBI}) The preconditioner used by the iterative linear solver. The default is the block Jacobi preconditioner. Valid values are (in increasing order of complexity) \texttt{IDENTITY},\texttt{JACOBI}, \texttt{SCHUR\_JACOBI}, \texttt{CLUSTER\_JACOBI} and \texttt{CLUSTER\_TRIDIAGONAL}.
+
+\item{\texttt{num\_linear\_solver\_threads}}(\texttt{1}) Number of threads used by the linear solver. 
+
+\item{\texttt{num\_eliminate\_blocks}}(\texttt{0}) 
+For Schur reduction based methods, the first 0 to num blocks are
+    eliminated using the Schur reduction. For example, when solving
+     traditional structure from motion problems where the parameters are in
+     two classes (cameras and points) then \texttt{num\_eliminate\_blocks} would be the
+     number of points.
+
+\item{\texttt{ordering\_type}}(\texttt{NATURAL})
+ Internally Ceres reorders the parameter blocks to help the
+ various linear solvers. This parameter allows the user to
+     influence the re-ordering strategy used. For structure from
+     motion problems use \texttt{SCHUR}, for other problems \texttt{NATURAL} (default)
+     is a good choice. In case you wish to specify your own ordering
+     scheme, for example in conjunction with \texttt{num\_eliminate\_blocks},
+     use \texttt{USER}.
+
+\item{\texttt{ordering}} The ordering of the parameter blocks. The solver pays attention
+    to it if the \texttt{ordering\_type} is set to \texttt{USER} and the ordering vector is
+    non-empty.
+
+
+\item{\texttt{linear\_solver\_min\_num\_iterations}}(\texttt{1}) Minimum number of iterations used by the linear solver. This only makes sense when the linear solver is an iterative solver, e.g., \texttt{ITERATIVE\_SCHUR}.
+
+\item{\texttt{linear\_solver\_max\_num\_iterations}}(\texttt{500}) Minimum number of iterations used by the linear solver. This only makes sense when the linear solver is an iterative solver, e.g., \texttt{ITERATIVE\_SCHUR}.
+
+\item{\texttt{eta}}(\texttt{1e-1})
+ Forcing sequence parameter. The truncated Newton solver uses
+    this number to control the relative accuracy with which the
+     Newton step is computed. This constant is passed to ConjugateGradientsSolver which uses
+     it to terminate the iterations when
+\begin{equation}    
+      \frac{Q_i - Q_{i-1}}{Q_i} < \frac{\eta}{i}
+\end{equation}
+
+\item{\texttt{jacobi\_scaling}}(\texttt{true}) \texttt{true} means that the Jacobian is scaled by the norm of its columns before being passed to the linear solver. This improves the numerical conditioning of the normal equations.
+
+\item{\texttt{logging\_type}}(\texttt{PER\_MINIMIZER\_ITERATION})
+
+
+\item{\texttt{minimizer\_progress\_to\_stdout}}(\texttt{false})
+By default the Minimizer progress is logged to \texttt{STDERR} depending on the \texttt{vlog} level. If this flag is
+set to true, and \texttt{logging\_type} is not \texttt{SILENT}, the logging output
+is sent to \texttt{STDOUT}.
+
+\item{\texttt{return\_initial\_residuals}}(\texttt{false})
+\item{\texttt{return\_final\_residuals}}(\texttt{false})
+
+
+\item{\texttt{lsqp\_iterations\_to\_dump}}
+ List of iterations at which the optimizer should dump the
+     linear least squares problem to disk. Useful for testing and
+     benchmarking. If empty (default), no problems are dumped.
+Note that this requires a version of Ceres built with protocol buffers.
+
+\item{\texttt{lsqp\_dump\_format}}(\texttt{"lm\_iteration\_\%03d.lsqp"})
+ Format string for the file name used for dumping the least
+     squares problem to disk. If the format is \texttt{ascii}, then the
+     problem is logged to the screen; don't try this with large
+     problems or expect a frozen terminal.
+
+\item{\texttt{crash\_and\_dump\_lsqp\_on\_failure}}(\texttt{false})
+ Dump the linear least squares problem to disk if the minimizer
+     fails due to \texttt{NUMERICAL\_FAILURE} and crash the process. This flag
+     is useful for generating debugging information. The problem is
+     dumped in a file whose name is determined by
+   \texttt{lsqp\_dump\_format}. Note that this requires a version of Ceres built with protocol buffers.
+
+\item{\texttt{check\_gradients}}(\texttt{false})
+ Check all Jacobians computed by each residual block with finite
+     differences. This is expensive since it involves computing the
+     derivative by normal means (e.g. user specified, autodiff,
+     etc), then also computing it using finite differences. The
+     results are compared, and if they differ substantially, details
+     are printed to the log.
+
+\item{\texttt{gradient\_check\_relative\_precision}}(\texttt{1e-8})
+  Relative precision to check for in the gradient checker. If the
+  relative difference between an element in a Jacobian exceeds
+  this number, then the Jacobian for that cost term is dumped.
+
+\item{\texttt{numeric\_derivative\_relative\_step\_size}}(\texttt{1e-6})
+ Relative shift used for taking numeric derivatives. For finite
+     differencing, each dimension is evaluated at slightly shifted
+     values, \eg for forward differences, the numerical derivative is
+  
+\begin{align}
+       \delta &= \texttt{numeric\_derivative\_relative\_step\_size}\\
+       \Delta f &= \frac{f((1 + \delta)  x) - f(x)}{\delta x}
+\end{align} 
+
+
+     The finite differencing is done along each dimension. The
+     reason to use a relative (rather than absolute) step size is
+     that this way, numeric differentation works for functions where
+     the arguments are typically large (e.g. 1e9) and when the
+     values are small (e.g. 1e-5). It is possible to construct
+     "torture cases" which break this finite difference heuristic,
+     but they do not come up often in practice.
+
+\item{\texttt{callbacks}} 
+  Callbacks that are executed at the end of each iteration of the
+     \texttt{Minimizer}. They are executed in the order that they are
+     specified in this vector. By default, parameter blocks are
+     updated only at the end of the optimization, i.e when the
+     \texttt{Minimizer} terminates. This behavior is controlled by
+     \texttt{update\_state\_every\_variable}. If the user wishes to have access
+     to the update parameter blocks when his/her callbacks are
+     executed, then set \texttt{update\_state\_every\_iteration} to true.
+    
+     The solver does NOT take ownership of these pointers.
+
+\item{\texttt{update\_state\_every\_iteration}}(\texttt{false})
+Normally the parameter blocks are only updated when the solver terminates. Setting this to true update them in every iteration. This setting is useful when building an interactive application using Ceres and using an \texttt{IterationCallback}.
+\end{enumerate}
+
+\section{\texttt{Solver::Summary}}
+TBD
\ No newline at end of file
diff --git a/docs/build.tex b/docs/build.tex
new file mode 100644
index 0000000..78b21b8
--- /dev/null
+++ b/docs/build.tex
@@ -0,0 +1,237 @@
+%!TEX root = ceres.tex
+\chapter{Building Ceres}
+\label{chapter:build}
+Ceres source code and documentation is hosted at
+\url{http://code.google.com/p/ceres-solver/}. 
+
+\section{Dependencies}
+Ceres relies on a number of open source libraries, some of which are optional. However, we recommend that you start out by building Ceres with all its dependencies. For details on customizing the build process, please see Section~\ref{sec:custom}.
+
+\begin{enumerate}
+\item{\cmake~\footnote{\url{http://www.cmake.org/}}} is the cross-platform build system used by Ceres.
+\item{\eigen~\footnote{\url{http://eigen.tuxfamily.org}}} is used for doing all the low level matrix and
+  linear algebra operations.
+\item{\glog~\footnote{\url{http://code.google.com/p/google-glog}}} is used for error checking and logging.
+\item{\gflags~\footnote{\url{http://code.google.com/p/gflags}}} is used by the code in
+  \texttt{examples}. It is not a requirement to build the core Ceres library.
+\item{\suitesparse~\footnote{\url{http://www.cise.ufl.edu/research/sparse/suitesparse/}}} is used for sparse matrix analysis,
+  ordering and factorization. In particular Ceres uses the
+  \amd, \colamd\ and \cholmod\ libraries. This is an optional
+  dependency.
+\item{\blas\ and \lapack} are needed by
+  \suitesparse.  We
+  recommend either
+  \texttt{GotoBlas2}~\footnote{\url{http://www.tacc.utexas.edu/tacc-projects/gotoblas2}}
+  or
+  \texttt{ATLAS}~\footnote{\url{http://math-atlas.sourceforge.net/}},
+    both of which ship with \blas\ and \lapack\ routines.
+\item{\texttt{protobuf}~\footnote{\url{http://code.google.com/p/protobuf/}}} is an optional dependency that is used for serializing and deserializing linear least squares problems to disk. This is useful for debugging and testing. Without it, some of the tests will not be build.
+\end{enumerate}
+
+Currently we support building on Linux and MacOS X. Support for other
+platforms is forthcoming.
+
+\section{Building on Linux}
+We will use Ubuntu as our example platform.
+
+\begin{enumerate}
+\item{\cmake}
+\begin{minted}{bash}
+sudo apt-get install cmake
+\end{minted}
+
+\item{\gflags} can either be installed from source via the \texttt{autoconf} invocation 
+\begin{minted}{bash}
+tar -xvzf gflags-2.0.tar.gz
+cd gflags-2.0
+./configure --prefix=/usr/local
+make
+sudo make install.
+\end{minted}
+or via the \texttt{deb} or \texttt{rpm} packages available on the \gflags\ website.
+
+\item{\glog} must be configured to use the previously installed
+\gflags, rather than the stripped down version that is bundled with \glog. Assuming you have it installed in \texttt{/usr/local} the following \texttt{autoconf} invocation installs it.
+\begin{minted}{bash}
+tar -xvzf glog-0.3.2.tar.gz
+cd glog-0.3.2
+./configure --with-gflags=/usr/local/
+make
+sudo make install
+\end{minted}
+
+\item{\eigen}
+\begin{minted}{bash}
+sudo apt-get install libeigen3-dev
+\end{minted}
+
+\item{\suitesparse}
+\begin{minted}{bash}
+sudo apt-get install libsuitesparse-dev
+\end{minted}
+This should automatically bring in the necessary \blas\ and \lapack\ dependencies.
+
+\item{\texttt{protobuf}}
+\begin{minted}{bash}
+sudo apt-get install libprotobuf-dev
+\end{minted}
+\end{enumerate}
+
+
+We are now ready to build and test Ceres. Note that \texttt{cmake} requires the exact path to the \texttt{libglog.a} and \texttt{libgflag.a}
+
+\begin{minted}{bash}
+tar zxf ceres-solver-1.0.tar.gz
+mkdir ceres-bin
+cd ceres-bin
+cmake ../ceres-solver-1.0              \
+ -DEIGEN_INCLUDE=/usr/include/eigen3   \
+make -j3
+make test
+\end{minted}
+
+You can also try running the command line bundling application with one of the
+included problems, which comes from the University of Washington's BAL dataset~\cite{Agarwal10bal}:
+\begin{minted}{bash}
+examples/simple_bundle_adjuster \
+  ../ceres-solver-1.0/data/problem-16-22106-pre.txt \
+\end{minted}
+This runs Ceres for a maximum of 10 iterations using the  \denseschur linear solver. The output should look something like this.
+\clearpage
+\begin{minted}{bash}
+0: f: 1.598216e+06 d: 0.00e+00 g: 5.67e+18 h: 0.00e+00 rho: 0.00e+00 mu: 1.00e-04 li:  0
+1: f: 1.116401e+05 d: 1.49e+06 g: 1.42e+18 h: 5.48e+02 rho: 9.50e-01 mu: 3.33e-05 li:  1
+2: f: 4.923547e+04 d: 6.24e+04 g: 8.57e+17 h: 3.21e+02 rho: 6.79e-01 mu: 3.18e-05 li:  1
+3: f: 1.884538e+04 d: 3.04e+04 g: 1.45e+17 h: 1.25e+02 rho: 9.81e-01 mu: 1.06e-05 li:  1
+4: f: 1.807384e+04 d: 7.72e+02 g: 3.88e+16 h: 6.23e+01 rho: 9.57e-01 mu: 3.53e-06 li:  1
+5: f: 1.803397e+04 d: 3.99e+01 g: 1.35e+15 h: 1.16e+01 rho: 9.99e-01 mu: 1.18e-06 li:  1
+6: f: 1.803390e+04 d: 6.16e-02 g: 6.69e+12 h: 7.31e-01 rho: 1.00e+00 mu: 3.93e-07 li:  1
+
+Ceres Solver Report
+-------------------
+                                     Original                  Reduced
+Parameter blocks                        22122                    22122
+Parameters                              66462                    66462
+Residual blocks                         83718                    83718
+Residual                               167436                   167436
+
+                                        Given                     Used
+Linear solver                     DENSE_SCHUR              DENSE_SCHUR
+Preconditioner                            N/A                      N/A
+Ordering                                SCHUR                    SCHUR
+num_eliminate_blocks                      N/A                    22106
+Threads:                                    1                        1
+Linear Solver Threads:                      1                        1
+
+Cost:
+Initial                          1.598216e+06
+Final                            1.803390e+04
+Change                           1.580182e+06
+
+Number of iterations:
+Successful                                  6
+Unsuccessful                                0
+Total                                       6
+
+Time (in seconds):
+Preprocessor                     0.000000e+00
+Minimizer                        2.000000e+00
+Total                            2.000000e+00
+Termination:               FUNCTION_TOLERANCE
+\end{minted}
+
+\section{Building on OS X}
+On OS X, we recommend using the \texttt{homebrew}~\footnote{\url{http://mxcl.github.com/homebrew/}} package manager.
+
+\begin{enumerate}
+\item{\cmake}
+\begin{minted}{bash}
+brew install cmake
+\end{minted}
+\item{\gflags} can be installed from source via the \texttt{autoconf} invocation 
+\begin{minted}{bash}
+tar -xvzf gflags-2.0.tar.gz
+cd gflags-2.0
+./configure --prefix=/usr/local
+make
+sudo make install.
+\end{minted}
+
+\item{\glog} must be configured to use the previously installed
+\gflags, rather than the stripped down version that is bundled with \glog. Assuming you have it installed in \texttt{/usr/local} the following \texttt{autoconf} invocation installs it.
+\begin{minted}{bash}
+tar -xvzf glog-0.3.2.tar.gz
+cd glog-0.3.2
+./configure --with-gflags=/usr/local/
+make
+sudo make install
+\end{minted}
+\item{\eigen}
+\begin{minted}{bash}
+brew install eigen
+\end{minted}
+\item{\suitesparse}
+\begin{minted}{bash}
+brew install suite-sparse
+\end{minted}
+\item{\texttt{protobuf}}
+\begin{minted}{bash}
+brew install protobuf
+\end{minted}
+\end{enumerate}
+
+We are now ready to build and test Ceres.
+\begin{minted}{bash}
+tar zxf ceres-solver-1.0.tar.gz
+mkdir ceres-bin
+cd ceres-bin
+cmake ../ceres-solver-1.0                                       \
+ -DEIGEN_INCLUDE=/usr/local/Cellar/eigen/3.0.5/include/eigen3/  \
+ -DSEARCH_HEADERS=/usr/local/Cellar/suite-sparse/3.7.0/include/ \
+ -SEARCH_LIBS=/usr/local/Cellar/suite-sparse/3.7.0/lib/         \ 
+make -j3
+make test
+\end{minted}
+
+\section{Customizing the Build Process}
+\label{sec:custom}
+It is possible to reduce the libraries needed to build Ceres and
+customize the build process by passing appropriate flags to \texttt{cmake}. But unless you really know what you are
+doing, we recommend against disabling any of the following flags.
+
+\begin{enumerate}
+\item{\texttt{protobuf}}
+Protocol Buffers is a big dependency and if you do not care for the tests that depend on it and the logging support it enables, you can turn it off by using
+\begin{minted}{bash}
+-DPROTOBUF=OFF.
+\end{minted}
+
+\item{\suitesparse}
+It is possible to compile Ceres in without \suitesparse, which
+saves on binary size, but the resulting version of Ceres is not suited
+to large scale problems due to the lack of a sparse Cholesky solver.  This will reduce Ceres' dependencies down to
+\eigen, \gflags\ and \glog. To build Ceres without \suitesparse\ use
+\begin{minted}{bash}
+-DSUITESPARSE=OFF.
+\end{minted}
+ This will also disable dependency checking for \lapack\ and \blas.
+\item{\gflags}
+To build Ceres without \gflags, use
+\begin{minted}{bash}
+-DGFLAGS=OFF.
+\end{minted}
+Disabling this flag will prevent some of the example code from building.
+\item{Template Specializations}
+If you are concerned about binary size/compilation time over some
+small (10-20\%) performance gains in the \sparseschur\ solver, you can disable some of the template
+specializations by using
+\begin{minted}{bash}
+-DSCHUR_SPECIALIZATIONS=OFF.
+\end{minted}
+
+\item{\texttt{OpenMP}}
+On certain platforms like Android, multithreading with OpenMP is not supported. OpenMP support can be disabled by using
+\begin{minted}{bash}
+-DOPENMP=OFF.
+\end{minted}
+\end{enumerate}
\ No newline at end of file
diff --git a/docs/ceres.bib b/docs/ceres.bib
new file mode 100644
index 0000000..b26a984
--- /dev/null
+++ b/docs/ceres.bib
@@ -0,0 +1,219 @@
+@article{stigler1981gauss,
+  title={Gauss and the invention of least squares},
+  author={Stigler, S.M.},
+  journal={The Annals of Statistics},
+  volume={9},
+  number={3},
+  pages={465--474},
+  year={1981},
+  publisher={Institute of Mathematical Statistics}
+}
+
+@inproceedings{kushal2012,
+  title={Visibility Based Preconditioning for Bundle Adjustment},
+  author={Kushal, A. and Agarwal, S.},
+  booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
+  year={2012},
+}
+
+@article{nash1990assessing,
+  title={Assessing a search direction within a truncated-Newton method},
+  author={Nash, S.G. and Sofer, A.},
+  journal={Operations Research Letters},
+  volume={9},
+  number={4},
+  pages={219--221},
+  year={1990}
+}
+
+@inproceedings{wu2011multicore,
+  title={Multicore bundle adjustment},
+  author={Wu, C. and Agarwal, S. and Curless, B. and Seitz, S.M.},
+  booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
+  pages={3057--3064},
+  year={2011},
+}
+
+@inproceedings{Agarwal10bal,
+ author = {Agarwal, S. and Snavely, N. and Seitz, S. M. and Szeliski, R.},
+ title = {Bundle adjustment in the large},
+booktitle = {Proceedings of the European Conference on Computer Vision},
+ year = {2010},
+ pages = {29--42},
+}
+
+@article{li2007miqr,
+  title={MIQR: A multilevel incomplete QR preconditioner for large sparse least-squares problems},
+  author={Li, Na and Saad, Y.},
+  journal={SIAM Journal on Matrix Analysis and Applications},
+  volume={28},
+  number={2},
+  pages={524--550},
+  year={2007},
+  publisher={Society for Industrial and Applied Mathematics}
+}
+
+@article{wright1985inexact,
+        Author = {Wright, S. J. and Holt, J. N.},
+	Journal = {Journal of the Australian Mathematical Society Series B},
+	Pages = "387--403",
+	Title = {{An Inexact Levenberg-Marquardt Method for Large Sparse Nonlinear Least Squares}},
+	Volume = 26,
+	Number = 4,
+	Year = 1985
+}
+
+@article{elsner1984note,
+	Author = {Elsner, L.},
+	Journal = {Numer. Math.},
+	Number = {1},
+	Pages = {127--128},
+	Publisher = {Springer},
+	Title = {{A note on optimal block-scaling of matrices}},
+	Volume = {44},
+	Year = {1984}}
+
+@article{hestenes1952methods,
+	Author = {Hestenes, M.R. and Stiefel, E.},
+	Journal = {Journal of research of the National Bureau of Standards},
+	Number = {6},
+	Pages = {409--436},
+	Title = {{Methods of conjugate gradients for solving linear systems}},
+	Volume = {49},
+	Year = {1952}}
+
+@book{mathew2008domain,
+	Author = {Mathew, T.P.A.},
+	Publisher = {Springer Verlag},
+	Title = {{Domain decomposition methods for the numerical solution of partial differential equations}},
+	Year = {2008}}
+
+@book{smith2004domain,
+	Author = {Smith, B.F. and Bjorstad, P.E. and Gropp, W.},
+	Publisher = {Cambridge University Press},
+	Title = {{Domain decomposition}},
+	Year = {2004}}
+
+@article{demmel1983condition,
+	Author = {Demmel, J.},
+	Journal = {SINUM},
+	Number = {3},
+	Pages = {599--610},
+	Title = {{The condition number of equivalence transformations that block diagonalize matrix pencils}},
+	Volume = {20},
+	Year = {1983}}
+
+@article{eisenstat1982optimal,
+	Author = {Eisenstat, S.C. and Lewis, J.W. and Schultz, M.H.},
+	Journal = {Linear Algebra Appl.},
+	Pages = {181--186},
+	Title = {{Optimal Block Diagonal Scaling of Block 2-Cyclic Matrices.}},
+	Volume = {44},
+	Year = {1982}}
+
+@article{mandel1990block,
+	Author = {Mandel, J.},
+	Journal = {Numer. Math.},
+	Number = {1},
+	Pages = {79--93},
+	Publisher = {Springer},
+	Title = {{On block diagonal and Schur complement preconditioning}},
+	Volume = {58},
+	Year = {1990}}
+
+@book{davis2006direct,
+	Author = {Davis, T.A.},
+	Publisher = {SIAM},
+	Title = {{Direct methods for sparse linear systems}},
+	Year = {2006}}
+
+@TechReport{brown-58,
+  author =       {D. C. Brown},
+  title =        {A solution to the general problem of multiple station analytical stereo triangulation},
+  institution =  {Patrick Airforce Base},
+  year =         {1958},
+  Tkey =       {AFMTC TR 58-8},
+  number =    {43},
+  address =   {Florida},
+}
+
+@book{hartley-zisserman-book-2004,
+        Author = {Hartley, R.~I. and Zisserman, A.},
+        Publisher = {Cambridge University Press},
+        Title = {Multiple View Geometry in Computer Vision},
+        Year = {2003}}
+
+
+@book{trefethen1997numerical,
+	Author = {Trefethen, L.N. and Bau, D.},
+	Publisher = {SIAM},
+	Title = {{Numerical Linear Algebra}},
+	Year = {1997}}
+
+@book{saad2003iterative,
+	Author = {Saad, Y.},
+	Publisher = {SIAM},
+	Title = {{Iterative methods for sparse linear systems}},
+	Year = {2003}}
+
+
+@book{nocedal2000numerical,
+	Author = {Nocedal, J. and Wright, S. J.},
+	Publisher = {Springer},
+	Title = {{Numerical Optimization}},
+	Year = {2000}}
+
+@book{bjorck1996numerical,
+	Author = {Bj{\"o}rck, A.},
+	Publisher = {SIAM},
+	Title = {{Numerical methods for least squares problems}},
+	Year = {1996}}
+
+@book{madsen2004methods,
+	Author = {Madsen, K. and Nielsen, H.B. and Tingleff, O.},
+	Title = {{Methods for non-linear least squares problems}},
+	Year = {2004}}
+
+
+@article{marquardt1963algorithm,
+	Author = {Marquardt, D.W.},
+	Journal = {J. SIAM},
+	Number = {2},
+	Pages = {431--441},
+	Publisher = {SIAM},
+	Title = {{An algorithm for least-squares estimation of nonlinear parameters}},
+	Volume = {11},
+	Year = {1963}}
+
+@article{levenberg1944method,
+	Author = {Levenberg, K.},
+	Journal = {Quart. Appl. Math},
+	Number = {2},
+	Pages = {164--168},
+	Title = {{A method for the solution of certain nonlinear problems in least squares}},
+	Volume = {2},
+	Year = {1944}}
+
+@article{chen2006acs,
+	Article = {22},
+	Author = {Chen, Y. and Davis, T. A. and Hager, W. W. and Rajamanickam, S.},
+	Journal = {TOMS},
+	Number = {3},
+	Title = {{Algorithm 887: CHOLMOD, Supernodal Sparse {Cholesky} Factorization and Update/Downdate}},
+	Volume = {35},
+	Year = {2008}}
+
+
+@inproceedings{triggs-etal-1999,
+	Author = {Triggs, B. and McLauchlan, P. F. and Hartley, R. I. and Fitzgibbon, A. W.},
+	Booktitle = {Vision Algorithms},
+	Pages = {298-372},
+	Title = {{Bundle Adjustment - A Modern Synthesis}},
+	Year = {1999}}
+
+
+@article{tennenbaum-director,
+Author = {Tennenbaum, J. and Director, B.},
+Title = {{How Gauss Determined the Orbit of Ceres}}
+}
+
diff --git a/docs/ceres.tex b/docs/ceres.tex
new file mode 100644
index 0000000..8c92659
--- /dev/null
+++ b/docs/ceres.tex
@@ -0,0 +1,117 @@
+%%% Build instructions
+%%% pdflatex -shell-escape ceres && bibtex ceres && pdflatex -shell-escape ceres && pdflatex -shell-escape ceres
+
+\documentclass[11pt,letterpaper,oneside]{memoir}
+\usepackage{fouriernc}
+\usepackage[T1]{fontenc}
+\usepackage{minted,amsmath,amssymb,amsthm,url,booktabs}
+\usepackage[pdftex]{graphicx}
+\usepackage[sort&compress]{natbib}
+\usepackage[breaklinks=true,letterpaper=true,colorlinks,bookmarks=false]{hyperref}
+
+% page dimensions
+\addtolength{\textwidth}{1in}
+\addtolength{\oddsidemargin}{-0.5in}
+\addtolength{\evensidemargin}{-0.5in}
+\addtolength{\spinemargin}{-0.5in}
+\addtolength{\foremargin}{-0.5in}
+\setlength{\parindent}{0.0in}
+\setlength{\parskip}{0.12in}
+
+% Our pagestyle
+\copypagestyle{ceres}{headings}
+\makeevenhead{ceres}{\thepage}{}{\scshape\rightmark}
+\makeoddhead{ceres}{\scshape\rightmark}{}{\thepage}
+
+%% ceres chapter style
+\makechapterstyle{ceres}{%
+\renewcommand{\chapterheadstart}{}%
+\renewcommand{\printchaptername}{}%
+\renewcommand{\chapternamenum}{}%
+\renewcommand{\printchapternum}{}%
+\renewcommand{\afterchapternum}{}%
+\renewcommand{\printchaptertitle}[1]{%
+\raggedright\Large\scshape\MakeLowercase{##1}}%
+\renewcommand{\afterchaptertitle}{%
+\vskip\onelineskip \hrule\vskip\onelineskip}%
+}%
+\renewcommand{\cftchapterfont}{\normalfont}%
+\renewcommand{\cftchapterpagefont}{\normalfont}%
+\renewcommand{\cftchapterpresnum}{\bfseries}%
+\renewcommand{\cftchapterleader}{}%
+\renewcommand{\cftchapterafterpnum}{\cftparfillskip}%
+
+
+%% Section title style
+\setsecheadstyle{\raggedright\scshape\MakeLowercase}%
+\setbeforesecskip{-\onelineskip}%
+\setaftersecskip{\onelineskip}%
+
+%% Subsection title style
+
+\setsubsecheadstyle{\sethangfrom{\noindent ##1}\raggedright\itshape}%
+\setbeforesubsecskip{-\onelineskip}%
+\setaftersubsecskip{\onelineskip}%
+
+\captiontitlefont{\small\sffamily}%
+\let\caption\legend
+
+
+\title{\Huge\scshape
+\MakeLowercase{Ceres Solver 1.0$\alpha$}\\ 
+\MakeLowercase{Tutorial \& Reference}
+}
+\author{
+\scshape\MakeLowercase{Sameer Agarwal} \\  \texttt{sameeragarwal@google.com} 
+\and 
+\scshape\MakeLowercase{Keir Mierle} \\  \texttt{ keir@google.com}
+}
+\checkandfixthelayout
+
+\pagestyle{ceres}
+
+\newcommand{\ceres}{{Ceres }}
+\newcommand{\reals}{\mathbb{R} }
+\def\eg{\emph{e.g. }}
+\def\ie{\emph{i.e. }}
+\newcommand{\glog}{\texttt{google-glog}}
+\newcommand{\gflags}{\texttt{gflags}}
+\newcommand{\eigen}{\texttt{Eigen3}}
+\newcommand{\suitesparse}{\texttt{SuiteSparse}}
+\newcommand{\cholmod}{\texttt{CHOLMOD}}
+\newcommand{\amd}{\texttt{AMD}}
+\newcommand{\colamd}{\texttt{COLAMD}}
+\newcommand{\lapack}{\texttt{LAPACK}}
+\newcommand{\blas}{\texttt{BLAS}}
+\newcommand{\denseschur}{\texttt{DENSE\_SCHUR}}
+\newcommand{\sparseschur}{\texttt{SPARSE\_SCHUR}}
+\newcommand{\iterativeschur}{\texttt{iterative\_SCHUR}}
+\newcommand{\cmake}{\texttt{cmake}}
+\newcommand{\protobuf}{\texttt{protobuf}}
+
+
+\begin{document}
+\chapterstyle{ceres}
+\newcomment{Question}
+\newcomment{Answer}
+
+\maketitle
+\thispagestyle{empty}
+\newpage
+\pagestyle{ceres}
+\tableofcontents
+
+\chapter{A Note About This Document}
+This document is a work in progress. The best documentation for Ceres will always be the code. 
+
+Building this pdf from source will require a relatively recent installation of \texttt{LaTeX}~\footnote{\url{http://www.tug.org/texlive/}}, \texttt{minted.sty}\footnote{\url{http://code.google.com/p/minted/}} and \texttt{pygments}\footnote{\url{http://pygments.org/}}.
+\input{introduction}
+\input{build}
+\input{tutorial}
+\input{api}
+\input{theory}
+\input{faq}
+\input{further}
+\bibliographystyle{plain}
+\bibliography{ceres}
+\end{document}
diff --git a/docs/faq.tex b/docs/faq.tex
new file mode 100644
index 0000000..f187245
--- /dev/null
+++ b/docs/faq.tex
@@ -0,0 +1,66 @@
+%!TEX root = ceres.tex
+\chapter{Frequently Asked Questions}
+\label{chapter:faq}
+\commentsoff{Question}
+\commentsoff{Answer}
+\begin{enumerate}
+\item \begin{Question}
+Why does Ceres use blocks (ParameterBlocks and ResidualBlocks) ?
+\end{Question}\\ \\
+\begin{Answer}
+Most non-linear solvers we are aware of, define the problem and residuals in terms of scalars and it is possible to do this with Ceres also. However, it is our experience that in most problems small groups of scalars occur together. For example the three components of a translation vector and the four components of the quaternion that define the pose of a camera. Same is true for residuals, where it is common to have small vectors of residuals rather than just scalars. There are a number of advantages of using blocks. It saves on indexing information, which for large problems can be substantial. Blocks translate into contiguous storage in memory which is more cache friendly and last but not the least, it allows us to use SIMD/SSE based BLAS routines to significantly speed up various matrix operations.
+\end{Answer}
+
+\item \begin{Question}
+	What is a good ParameterBlock?
+\end{Question}\\ \\
+\begin{Answer}
+In most problems there is a natural parameter block structure, as there is a semantic meaning associated with groups of scalars -- mean vector of a distribution, color of a pixel etc. To group two scalar variables,  ask yourself if residual blocks will always use these two variables together. If the answer is yes, then the two variables belong to the same parameter block.
+\end{Answer}
+
+\item \begin{Question}
+	What is a good ResidualBlock?
+\end{Question}\\ \\
+\begin{Answer}
+While it is often the case that problems have a natural blocking of parameters into parameter blocks, it is not always clear what a good residual block structure is.  One rule of thumb for non-linear least squares problems since they often come from data fitting problems is to create one residual block per observation. So if you are solving a Structure from Motion problem, one 2 dimensional residual block per 2d image projection is a good idea.
+
+The flips side is that sometimes, when modeling the problem it is tempting to group a large number of residuals together into a single residual block as it reduces the  number of CostFunctions you have to define.
+
+For example consider the following residual block of size 18 which depends on four parameter blocks of size 4 each. Shown below is the Jacobian structure of this residual block, the numbers in the columns indicate the size, and the  numbers in the rows show a grouping of the matrix that best capture its sparsity structure. \texttt{X} indicates a non-zero block, the rest of the blocks are zero.
+
+\begin{equation*}
+\begin{matrix}
+ 	& 4	& 4	& 4	& 4 \\
+ 2	& \texttt{X}	& \texttt{X}	& \texttt{X}	& \texttt{X} \\
+ 4	& \texttt{X}	& 	& 	&   \\
+ 4	& 	& \texttt{X}	& 	&   \\
+ 4	& 	& 	& \texttt{X}	&   \\
+ 4	& 	& 	& 	& \texttt{X} \\
+\end{matrix}
+\end{equation*}
+
+Notice that out of the 20 cells, only 8 are non-zero, in fact out of the 288 entries only 48 entries are non-zero, thus we are hiding substantial sparsity from the solver, and using up much more memory. It is much better to break this up into 5 residual blocks. One residual block of size 2 that depends on all four parameter block and four residual blocks of size 4 each that depend on one parameter block at a time.
+\end{Answer}
+
+\item \begin{Question}
+Can I set part of a parameter block constant?
+\end{Question}\\ \\
+\begin{Answer}
+Yes, use \texttt{SubsetParameterization} as a local parameterization for the parameter block of interest. See \texttt{local\_parameterization.h} for more details.
+\end{Answer}
+
+
+\item \begin{Question}
+Can Ceres solve constrained non-linear least squares?
+\end{Question}\\ \\
+\begin{Answer}
+Not at this time. We have some ideas on how to do this, but we have not had very many requests to justify the effort involved. If you have a problem that requires such a functionality we would like to hear about it as it will help us decide directions for future work. In the meanwhile, if you are interested in solving bounds constrained problems, consider using some of the tricks described by John D'Errico in his fminsearchbnd toolkit~\footnote{\url{http://www.mathworks.com/matlabcentral/fileexchange/8277-fminsearchbnd}}.
+\end{Answer}
+
+\item \begin{Question}
+Can Ceres solve problems that cannot be written as robustified non-linear least squares?
+\end{Question}\\ \\
+\begin{Answer}
+No. Ceres was designed from the grounds up to be a non-linear least squares solver. Currently we have no plans of extending it into a general purpose non-linear solver.
+\end{Answer}
+\end{enumerate}
diff --git a/docs/fit.pdf b/docs/fit.pdf
new file mode 100644
index 0000000..8714f69
--- /dev/null
+++ b/docs/fit.pdf
Binary files differ
diff --git a/docs/further.tex b/docs/further.tex
new file mode 100644
index 0000000..b832e90
--- /dev/null
+++ b/docs/further.tex
@@ -0,0 +1,4 @@
+%!TEX root = ceres.tex
+\chapter{Further Reading}
+\label{chapter:further}
+ For a short but informative introduction to the subject we recommend the booklet by Madsel et al.~\cite{madsen2004methods}. For a general introduction to non-linear optimization we recommend the text by Nocedal \& Wright~\cite{nocedal2000numerical}. Bj{\"o}rck's book remains the seminal reference on least squares problems~\cite{bjorck1996numerical}. Trefethen \& Bau's book is our favourite text on introductory numerical linear algebra~\cite{trefethen1997numerical}. Triggs et al., provide a thorough coverage of the bundle adjustment problem~\cite{triggs-etal-1999}.
diff --git a/docs/introduction.tex b/docs/introduction.tex
new file mode 100644
index 0000000..8fbae87
--- /dev/null
+++ b/docs/introduction.tex
@@ -0,0 +1,61 @@
+%!TEX root = ceres.tex
+\chapter{Introduction}
+\label{sec:introduction}
+Ceres Solver\footnote{For brevity, in the rest of this document we will just use the term Ceres.} is a non-linear least squares solver developed at Google. It is designed to solve small and large sparse problems accurately and efficiently~\footnote{For a gentle but brief introduction to non-liner least squares problems, please start by reading the~\hyperref[chapter:tutorial]{Tutorial}}. Amongst its various features is a simple but expressive API with support for automatic differentiation, robust norms, local parameterizations, automatic gradient checking, multithreading and automatic problem structure detection.
+
+The key computational cost when solving a non-linear least squares problem is the solution of a linear least squares problem in each iteration. To this end Ceres supports a number of different linear solvers suited for different needs. This includes dense QR factorization (using \eigen) for small scale problems, sparse Cholesky factorization (using \cholmod) for general sparse problems and specialized Schur complement based solvers for problems that arise in multi-view geometry~\cite{hartley-zisserman-book-2004}.
+
+Ceres has been used for solving a variety of problems in computer vision and machine learning at Google with sizes that range from a tens of variables and objective functions with a few hundred terms to problems with millions of variables and objective functions with tens of millions of terms. 
+
+\section{What's in a name?}
+While there is some debate as to who invented of the method of Least Squares~\cite{stigler1981gauss}. There is no debate that it was Carl Friedrich Gauss's prediction of the orbit of the newly discovered asteroid Ceres based on just 41 days of observations that brought it to the attention of the world~\cite{tennenbaum-director}. We named our solver Ceres to celebrate this seminal event in the history of astronomy, statistics and optimization.
+
+\section{Contributing to Ceres}
+We welcome contributions to Ceres, whether they are new features, bug fixes or tests. If you have ideas on how you would like to contribute to Ceres, please join the Ceres mailing list (\texttt{ceres-solver@googlegroups.com}) or if you are looking for ideas, please let us know about your interest and skills and we will be happy to make a suggestion or three.
+
+We follow Google's C++ Style Guide~\footnote{\url{http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml}}.
+
+\section{Acknowledgements}
+A number of people have helped with the development and open sourcing of Ceres. 
+
+Fredrik Schaffalitzky when he was at Google started the development of Ceres, and even though much has changed since then, many of the ideas from his original design are still present in the current code.
+
+Amongst Ceres' users at Google two deserve special mention: William Rucklidge and James Roseborough. William was the first user of Ceres. He bravely took on the task of porting production code to an as-yet unproven optimization library, reporting bugs and helping fix them along the way. James is perhaps the most sophisticated used of Ceres at Google. He has reported and fixed bugs and helped evolve the API for the better.
+
+Nathan Wiegand contributed the MacOS port.
+\clearpage
+
+\section{License}
+Ceres Solver is licensed under the New BSD license, whose terms are as follows.
+
+\begin{quotation}
+
+\noindent
+Copyright (c) 2010, 2011, 2012, Google Inc. All rights reserved.
+
+\noindent
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+\begin{enumerate}
+\item Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+\item 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.
+\item Neither the name of Google Inc.,  nor the names of its contributors may
+      be used to endorse or promote products derived from this software without
+      specific prior written permission.
+\end{enumerate}
+
+\noindent
+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 Google Inc. 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.
+\end{quotation}
diff --git a/docs/loss.pdf b/docs/loss.pdf
new file mode 100644
index 0000000..c99965e
--- /dev/null
+++ b/docs/loss.pdf
Binary files differ
diff --git a/docs/theory.tex b/docs/theory.tex
new file mode 100644
index 0000000..4b47479
--- /dev/null
+++ b/docs/theory.tex
@@ -0,0 +1,191 @@
+%!TEX root = ceres.tex
+\chapter{Theory}
+\label{chapter:theory}
+Effective use of Ceres requires some familiarity with the underlying theory. In this chapter we will provide a brief exposition to Ceres's approach to solving non-linear least squares optimization. Much of the material in this section comes from~\cite{Agarwal10bal,wu2011multicore,kushal2012}.
+
+\section{The Levenberg-Marquardt Algorithm}
+
+The Levenberg-Marquardt algorithm~\cite{levenberg1944method, marquardt1963algorithm} is the most popular algorithm for solving non-linear least squares problems. Ceres implements an exact step~\cite{madsen2004methods} and an inexact step variant of the Levenberg-Marquardt algorithm~\cite{wright1985inexact,nash1990assessing}.  We begin by taking a brief look at how the Levenberg-Marquardt algorithm works.
+
+
+Let $x \in \mathbb{R}^{n}$ be an $n$-dimensional vector of variables, and
+$ F(x) = \left[f_1(x),   \hdots,  f_{m}(x) \right]^{\top}$ be a $m$-dimensional function of $x$.  We are interested in solving the following optimization problem,
+\begin{equation}
+        \arg \min_x \frac{1}{2}\|F(x)\|^2\ .
+        \label{eq:nonlinsq}
+\end{equation}
+The Jacobian $J(x)$ of $F(x)$ is an $m\times n$ matrix, where $J_{ij}(x) = \partial_j f_i(x)$  and the gradient vector $g(x) = \nabla  \frac{1}{2}\|F(x)\|^2 = J(x)^\top F(x)$. Since the efficient global optimization of~\eqref{eq:nonlinsq} for general $F(x)$ is an intractable problem, we will have to settle for finding a local minimum.
+
+The general strategy when solving non-linear optimization problems is to solve a sequence of approximations to the original problem~\cite{nocedal2000numerical}. At each iteration, the approximation is solved to determine a correction $\Delta x$ to the vector $x$. For non-linear least squares, an approximation can be constructed by using the linearization $F(x+\Delta x) \approx F(x) + J(x)\Delta x$, which leads to the following linear least squares  problem:
+\begin{equation}
+         \min_{\Delta x} \frac{1}{2}\|J(x)\Delta x + F(x)\|^2
+        \label{eq:linearapprox}
+\end{equation}
+Unfortunately, na\"ively solving a sequence of these problems and updating $x \leftarrow x+ \Delta x$ leads to an algorithm that may not converge.  To get a convergent algorithm, we need to control the size of the step $\Delta x$.  One way to do this is to introduce a regularization term:
+\begin{equation}
+         \min_{\Delta x} \frac{1}{2}\|J(x)\Delta x + F(x)\|^2 + \mu \|D(x)\Delta x\|^2\ .
+        \label{eq:lsqr}
+\end{equation}
+Here, $D(x)$ is a non-negative diagonal matrix, typically the square root of the diagonal of the matrix $J(x)^\top J(x)$ and $\mu$ is a non-negative parameter that controls the strength of regularization. It is straightforward to show that the step size $\|\Delta x\|$ is inversely related to $\mu$. Levenberg-Marquardt updates the value of $\mu$ at each step based on how well the Jacobian $J(x)$ approximates $F(x)$. The quality of this fit is measured by the ratio of  the actual decrease in the objective function to the decrease in the value of the linearized model $L(\Delta x) = \frac{1}{2}\|J(x)\Delta x + F(x)\|^2$.
+\begin{equation}
+\rho = \frac{\|F(x + \Delta x)\|^2 - \|F(x)\|^2}{\|J(x)\Delta x + F(x)\|^2 - \|F(x)\|^2}
+\end{equation}
+
+If $\rho$ is large, that means the linear model is a good approximation to the non-linear model and it is worth trusting it more in the computation of $\Delta x$, so we decrease $\mu$. If $\rho$ is small, the linear model is a poor approximation and $\mu$ is increased. This kind of reasoning is the basis of Trust-region methods, of which Levenberg-Marquardt is an early example~\cite{nocedal2000numerical}.
+
+Before going further, let us make some notational simplifications. We will assume that the matrix $\sqrt{\mu} D$ has been concatenated at the bottom of the matrix $J$ and similarly a vector of zeros has been added to the bottom of the vector $f$ and the rest of our discussion will be in terms of $J$ and $f$, \ie the linear least squares problem.
+\begin{align}
+ \min_{\Delta x} \frac{1}{2} \|J(x)\Delta x + f(x)\|^2 .
+ \label{eq:simple}
+\end{align}
+Further, let $H(x)= J(x)^\top J(x)$ and $g(x) = -J(x)^\top  f(x)$. For notational convenience let us also drop the dependence on $x$. Then it is easy to see that solving~\eqref{eq:simple} is equivalent to solving the {\em normal equations}
+\begin{align}
+H \Delta x  &= g \label{eq:normal}
+\end{align}
+
+For all but the smallest problems the solution of~\eqref{eq:normal} in each iteration of the Levenberg-Marquardt algorithm is the dominant computational cost in Ceres. Ceres provides a number of different options for solving~\eqref{eq:normal}.
+
+
+\section{\texttt{DENSE\_QR}}
+For small problems (a couple of hundred parameters and a few thousand residuals) with relatively dense Jacobians, \texttt{DENSE\_QR} is the method of choice~\cite{bjorck1996numerical}. Let $J = QR$ be the QR-decomposition of $J$, where $Q$ is an orthonormal matrix and $R$ is an upper triangular matrix~\cite{trefethen1997numerical}. Then it can be shown that the solution to~\eqref{eq:normal} is given by
+\begin{align}
+	\Delta x^* = -R^{-1}Q^\top f
+\end{align}
+Ceres uses \texttt{Eigen}'s dense QR decomposition routines.
+
+
+\section{\texttt{SPARSE\_NORMAL\_CHOLESKY}}
+Large non-linear least square problems are usually sparse. In such cases, using a dense QR factorization is inefficient. Let $H = R^\top R$ be the Cholesky factorization of the normal equations, where $R$ is an upper triangular matrix, then the  solution to ~\eqref{eq:normal} is given by
+\begin{equation}
+	\Delta x^* = R^{-1} R^{-\top} g.
+\end{equation}
+The observant reader will note that the $R$ in the Cholesky factorization of $H$ is the same upper triangular matrix $R$ in the QR factorization of $J$. Since $Q$ is an orthonormal matrix, $J=QR$ implies that $J^\top J = R^\top Q^\top Q R = R^\top R$.
+
+
+There are two variants of Cholesky factorization -- sparse and dense. \texttt{SPARSE\_NORMAL\_CHOLESKY}, as the name implies performs a sparse Cholesky factorization of the normal equations. This leads to substantial savings in time and memory for large sparse problems. We use the Professor Tim Davis' \texttt{CHOLMOD} library (part of the \texttt{SuiteSparse} package) to perform the sparse cholesky~\cite{chen2006acs}.
+
+\section{\texttt{DENSE\_SCHUR} \& \texttt{SPARSE\_SCHUR}}
+While it is possible to use \texttt{SPARSE\_NORMAL\_CHOLESKY} to solve bundle adjustment problems, bundle adjustment problem have a special structure, and a more efficient scheme for solving~\eqref{eq:normal} can be constructed.
+
+Suppose that the SfM problem consists of $p$ cameras and $q$ points and the variable vector $x$ has the  block structure $x = [y_{1},\hdots,y_{p},z_{1},\hdots,z_{q}]$. Where, $y$ and $z$ correspond to camera and point parameters, respectively.  Further, let the camera blocks be of size $c$ and the point blocks be of size $s$ (for most problems $c$ =  $6$--$9$ and $s = 3$). Ceres does not impose any constancy requirement on these block sizes, but choosing them to be constant simplifies the exposition.
+
+A key characteristic of the bundle adjustment problem is that there is no term $f_{i}$ that includes two or more point blocks.  This in turn implies that the matrix $H$ is of the form
+\begin{equation}
+        H =  \left[
+                \begin{matrix} B & E\\ E^\top & C
+                \end{matrix}
+                \right]\ ,
+\label{eq:hblock}
+\end{equation}
+where, $B \in \reals^{pc\times pc}$ is a block sparse matrix with $p$ blocks of size $c\times c$ and  $C \in \reals^{qs\times qs}$ is a block diagonal matrix with $q$ blocks of size $s\times s$. $E \in \reals^{pc\times qs}$ is a general block sparse matrix, with a block of size $c\times s$ for each observation. Let us now block partition $\Delta x = [\Delta y,\Delta z]$ and $g=[v,w]$ to restate~\eqref{eq:normal} as the block structured linear system
+\begin{equation}
+        \left[
+                \begin{matrix} B & E\\ E^\top & C
+                \end{matrix}
+                \right]\left[
+                        \begin{matrix} \Delta y \\ \Delta z
+                        \end{matrix}
+                        \right]
+                        =
+                        \left[
+                                \begin{matrix} v\\ w
+                                \end{matrix}
+                                \right]\ ,
+\label{eq:linear2}
+\end{equation}
+and apply Gaussian elimination to it. As we noted above, $C$ is a block diagonal matrix, with small diagonal blocks of size $s\times s$.
+Thus, calculating the inverse of $C$ by inverting each of these blocks is  cheap. This allows us to  eliminate $\Delta z$ by observing that $\Delta z = C^{-1}(w - E^\top \Delta y)$, giving us
+\begin{equation}
+        \left[B - EC^{-1}E^\top\right] \Delta y = v - EC^{-1}w\ .  \label{eq:schur}
+\end{equation}
+The matrix
+\begin{equation}
+S = B - EC^{-1}E^\top\ ,
+\end{equation}
+is the Schur complement of $C$ in $H$. It is also known as the {\em reduced camera matrix}, because the only variables participating in~\eqref{eq:schur} are the ones corresponding to the cameras. $S \in \reals^{pc\times pc}$ is a block structured symmetric positive definite matrix, with blocks of size $c\times c$. The block $S_{ij}$ corresponding to the pair of images $i$ and $j$ is non-zero if and only if the two images observe at least one common point.
+
+Now, \eqref{eq:linear2}~can  be solved by first forming $S$, solving for $\Delta y$, and then back-substituting $\Delta y$ to obtain the value of $\Delta z$.
+Thus, the solution of what was an $n\times n$, $n=pc+qs$ linear system is reduced to the inversion of the block diagonal matrix $C$, a few matrix-matrix and matrix-vector multiplies, and the solution of block sparse $pc\times pc$ linear system~\eqref{eq:schur}.  For almost all  problems, the number of cameras is much smaller than the number of points, $p \ll q$, thus solving~\eqref{eq:schur} is significantly cheaper than solving~\eqref{eq:linear2}. This is the {\em Schur complement trick}~\cite{brown-58}.
+
+This still leaves open the question of solving~\eqref{eq:schur}. The
+method of choice for solving symmetric positive definite systems
+exactly is via the Cholesky
+factorization~\cite{trefethen1997numerical} and depending upon the
+structure of the matrix, there are, in general, two options. The first
+is direct factorization, where we store and factor $S$ as a dense
+matrix~\cite{trefethen1997numerical}. This method has $O(p^2)$ space complexity and $O(p^3)$ time
+complexity and is only practical for problems with up to a few hundred
+cameras. Ceres implements this strategy as the \texttt{DENSE\_SCHUR} solver.
+
+
+ But, $S$ is typically a fairly sparse matrix, as most images
+only see a small fraction of the scene. This leads us to the second
+option: sparse direct methods. These methods store $S$ as a sparse
+matrix, use row and column re-ordering algorithms to maximize the
+sparsity of the Cholesky decomposition, and focus their compute effort
+on the non-zero part of the factorization~\cite{chen2006acs}.
+Sparse direct methods, depending on the exact sparsity structure of the Schur complement,
+allow bundle adjustment algorithms to significantly scale up over those based on dense
+factorization. Ceres implements this strategy as the \texttt{SPARSE\_SCHUR} solver.
+
+
+\section{\texttt{ITERATIVE\_SCHUR}}
+
+The factorization methods described above are based on computing an exact solution of~\eqref{eq:lsqr}. But it is not clear if an exact solution of~\eqref{eq:lsqr} is necessary at each step of the LM algorithm to solve~\eqref{eq:nonlinsq}. In fact, we have already seen evidence that this may not be the case, as~\eqref{eq:lsqr} is itself a regularized version of~\eqref{eq:linearapprox}. Indeed, it is possible to construct non-linear optimization algorithms in which the linearized problem is solved approximately. These algorithms are known as inexact Newton or truncated Newton methods~\cite{nocedal2000numerical}.
+
+An inexact Newton method requires two ingredients. First, a cheap method for approximately solving systems of linear equations. Typically an iterative linear solver like the Conjugate Gradients method is used for this purpose~\cite{nocedal2000numerical}. Second, a termination rule for the iterative solver. A typical termination rule is of the form
+\begin{equation}
+        \|H(x) \Delta x + g(x)\| \leq \eta_k \|g(x)\|. \label{eq:inexact}
+\end{equation}
+Here, $k$ indicates the Levenberg-Marquardt iteration number and $0 < \eta_k <1$ is known as the forcing sequence.  Wright \& Holt \cite{wright1985inexact} prove that a truncated Levenberg-Marquardt algorithm that uses an inexact Newton step based on~\eqref{eq:inexact} converges for any sequence $\eta_k \leq \eta_0 < 1$ and the rate of convergence depends on the choice of the forcing sequence $\eta_k$.
+
+
+The convergence rate of Conjugate Gradients  for solving~\eqref{eq:normal} depends on the distribution of eigenvalues of $H$~\cite{saad2003iterative}. A useful upper bound is $\sqrt{\kappa(H)}$, where, $\kappa(H)$f is the condition number of the matrix $H$. For most bundle adjustment problems, $\kappa(H)$ is high and a direct application of Conjugate Gradients to~\eqref{eq:normal} results in extremely poor performance.
+
+The solution to this problem is to replace~\eqref{eq:normal} with a {\em preconditioned} system.  Given a linear system, $Ax =b$ and a preconditioner $M$ the preconditioned system is given by $M^{-1}Ax = M^{-1}b$. The resulting algorithm is known as Preconditioned Conjugate Gradients algorithm (PCG) and its  worst case complexity now depends on the condition number of the {\em preconditioned} matrix $\kappa(M^{-1}A)$.
+
+\subsection{Preconditioning}
+
+The computational cost of using a preconditioner $M$ is the cost of computing $M$ and evaluating the product $M^{-1}y$ for arbitrary vectors $y$. Thus, there are two competing factors to consider: How much of $H$'s structure is captured by $M$ so that the condition number $\kappa(HM^{-1})$ is low, and the computational cost of constructing and using $M$.  The ideal preconditioner would be one for which $\kappa(M^{-1}A) =1$. $M=A$ achieves this, but it is not a practical choice, as applying this preconditioner would require solving a linear system equivalent to the unpreconditioned problem.  It is usually the case that the more information $M$ has about $H$, the more expensive it is use. For example, Incomplete Cholesky factorization based preconditioners  have much better convergence behavior than the Jacobi preconditioner, but are also much more expensive.
+
+The simplest of all preconditioners is the diagonal or Jacobi preconditioner, \ie,  $M=\operatorname{diag}(A)$, which for block structured matrices like $H$ can be generalized to the block Jacobi preconditioner. Another option is to apply PCG to the reduced camera matrix $S$ instead of $H$. One reason to do this is that $S$ is a much smaller matrix than $H$, but more importantly, it can be shown that $\kappa(S)\leq \kappa(H)$.  Ceres implements PCG on $S$ as the \texttt{ITERATIVE\_SCHUR} solver. When the user chooses \texttt{ITERATIVE\_SCHUR} as the linear solver, Ceres automatically switches from the exact step algorithm to an inexact step algorithm.
+
+
+There are two obvious choices for block diagonal preconditioners for $S$. The block diagonal of the matrix $B$~\cite{mandel1990block} and the block diagonal $S$, \ie the block Jacobi preconditioner for $S$. Ceres's implements both of these preconditioners and refers to them as  \texttt{JACOBI} and \texttt{SCHUR\_JACOBI} respectively.
+
+As discussed earlier, the cost of forming and storing the Schur complement $S$ can be prohibitive for large problems. Indeed, for an inexact Newton solver that computes $S$ and runs PCG on it, almost all of its time is spent in constructing $S$; the time spent inside the PCG algorithm is negligible in comparison. Because  PCG only needs access to $S$ via its product with a vector, one way to evaluate $Sx$ is to observe that
+\begin{align}
+  x_1 &= E^\top x \notag \\
+  x_2 &= C^{-1} x_1 \notag\\
+  x_3 &= Ex_2 \notag\\
+  x_4 &= Bx \notag\\
+  Sx &= x_4 - x_3\ .\label{eq:schurtrick1}
+\end{align}
+Thus, we can run PCG on $S$ with the same computational effort per iteration as PCG on $H$, while reaping the benefits of a more powerful preconditioner. In fact, we do not even need to compute $H$, \eqref{eq:schurtrick1} can be implemented using just the columns of $J$.
+
+Equation~\eqref{eq:schurtrick1} is closely related to {\em Domain Decomposition methods} for solving large linear systems that arise in structural engineering and partial differential equations. In the language of Domain Decomposition, each point in a bundle adjustment problem is a domain, and the cameras form the interface between these domains. The iterative solution of the Schur complement then falls within the sub-category of techniques known as Iterative Sub-structuring~\cite{saad2003iterative,mathew2008domain}.
+
+For bundle adjustment problems, particularly those arising in reconstruction from community photo collections, more effective preconditioners can be constructed by analyzing and exploiting the camera-point visibility structure of the scene~\cite{kushal2012}. Ceres implements the two visibility based preconditioners described by Kushal \& Agarwal as \texttt{CLUSTER\_JACOBI} and \texttt{CLUSTER\_TRIDIAGONAL}. These are fairly new preconditioners and Ceres' implementation of them is in its early stages and is not as mature as the other preconditioners described above.
+
+\section{Ordering}
+All three of the Schur based solvers depend on the user indicating to the solver, which of the parameter blocks correspond to the points and which correspond to the cameras. Ceres refers to them as \texttt{e\_block}s and \texttt{f\_blocks}. The only constraint on \texttt{e\_block}s is that there should be no term in the objective function with two or more \texttt{e\_block}s.
+
+As we saw in Section~\ref{sec:tutorial:bundleadjustment}, there are two ways to indicate \texttt{e\_block}s to Ceres. The first is to explicitly create an ordering vector \texttt{Solver::Options::ordering} containing the parameter blocks such that all the \texttt{e\_block}s/points occur before the \texttt{f\_blocks}, and setting \texttt{Solver::Options::num\_eliminate\_blocks} to the number \texttt{e\_block}s.
+
+For some problems this is an easy thing to do and we recommend its use. In some problems though, this is onerous and it would be better if Ceres could automatically determine \texttt{e\_block}s. Setting \texttt{Solver::Options::ordering\_type} to \texttt{SCHUR} achieves this.
+
+The \texttt{SCHUR} ordering algorithm is based on the observation that
+the constraint that no two \texttt{e\_block} co-occur in a residual
+block means that if we were to treat the sparsity structure of the
+block matrix $H$ as a graph, then the set of \texttt{e\_block}s is an
+independent set in this graph. The larger the number of
+\texttt{e\_block}, the smaller is the size of the Schur complement $S$. Indeed the reason Schur based solvers are so efficient at solving bundle adjustment problems is because the numner of points in a bundle adjustment problem is usually an order of magnitude or two larger than the number of cameras.
+
+Thus, the aim of the \texttt{SCHUR} ordering algorithm is to identify the largest independent set in the graph of $H$. Unfortunately this is an NP-Hard problem. But there is a  greedy approximation algorithm that performs well~\cite{li2007miqr} and we use it to identify \texttt{e\_block}s in Ceres.
+
+\section{Automatic Differentiation}
+TBD
+\section{Loss Function}
+TBD
+\section{Local Parameterizations}
+TBD
\ No newline at end of file
diff --git a/docs/tutorial.tex b/docs/tutorial.tex
new file mode 100644
index 0000000..e489673
--- /dev/null
+++ b/docs/tutorial.tex
@@ -0,0 +1,417 @@
+%!TEX root = ceres.tex
+\chapter{Tutorial}
+\label{chapter:tutorial}
+
+\section{Non-linear Least Squares}
+\label{sec:tutorial:nonlinsq}
+Let $x \in \reals^n$ be an $n$-dimensional vector of variables, and
+$F(x) = \left[f_1(x); \hdots ; f_k(x)\right]$ be a vector of residuals $f_i(x)$. 
+The function $f_i(x)$ can be a scalar or a vector valued
+function.   We are interested in finding the solution to the following optimization problem
+\begin{equation}
+	\arg \min_x \frac{1}{2} \sum_{i=1}^k \|f_i(x)\|^2.
+\end{equation}
+Here $\|\cdot\|$ denotes the Euclidean norm of a vector. 
+
+Such optimization problems arise in almost every area of science and engineering. Whenever there is data to be analyzed, curves to be fitted, there is usually a linear or a non-linear least squares problem lurking in there somewhere. 
+
+Perhaps the simplest example of such a problem is the problem of Ordinary Linear Regression, where given observations $(x_1,y_1),\hdots, (x_k,y_k)$, we wish to find the line $y = mx + c$, that best explains $y$ as a function of $x$. One way to solve this problem is to find the solution to the following optimization problem
+\begin{equation}
+		\arg\min_{m,c} \sum_{i=1}^k (y_i - m x_i - c)^2
+\end{equation}
+With a little bit of calculus, this problem can be solved easily by hand. But what if, instead of a line we were interested in a more complicated relationship between $x$ and $y$, say for example $y = e^{mx + c}$. Then the optimization problem becomes
+\begin{equation}
+		\arg\min_{m,c} \sum_{i=1}^k \left(y_i - e^{m x_i + c}\right)^2
+\end{equation}
+This is a  non-linear regression problem and solving it by hand is much more tedious.  Ceres is designed to help you model and solve problems like this easily and efficiently.
+
+\section{Hello World!}
+\label{sec:tutorial:helloworld}
+Let us consider the problem of finding the minimum of the function
+\begin{equation}
+	g(x) = \frac{1}{2}(10 -x)^2.
+\end{equation}
+
+This is a trivial problem, whose minimum is easy to see is located at 10, but it is a good place to start to illustrate the basics of solving a problem with Ceres. Let us write this problem as a non-linear least squares problem by defining the scalar residual function $f_1(x) = 10 - x$. Then $F(x) = [f_1(x)]$ is a residual vector with exactly one component.
+
+When solving a problem with Ceres, the first thing to do is to define a \texttt{CostFunction}
+object\footnote{Full working code for this and other examples in this manual can be found in the \texttt{examples} directory. Code for this example can be found in \texttt{examples/quadratic.cc}}. It is responsible for computing the value of the residual function and its derivative (also known as the Jacobian) with respect to $x$. Listing~\ref{listing:simplecostfunction} has the code.
+\begin{listing}[H]
+\begin{minted}[frame=lines]{c++}
+class SimpleCostFunction
+  : public ceres::SizedCostFunction<1 /* number of residuals */,
+                                    1 /* size of first parameter */> {
+ public:
+  virtual ~SimpleCostFunction() {}
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    double x = parameters[0][0];
+    // f(x) = 10 - x.
+    residuals[0] = 10 - x;
+    if (jacobians != NULL) {
+	  // If the jacobians are asked for,
+	  // then compute the derivative.
+      jacobians[0][0] = -1;
+    }
+    return true;
+  }
+};
+\end{minted}
+\caption{A \texttt{CostFunction} for $f = 10 - x $}
+\label{listing:simplecostfunction}
+\end{listing}
+\texttt{SimpleCostFunction} is provided with an input array of parameters, an output array for residuals and an optimal output array for Jacobians. In our example, there is just one parameter and one residual and this is known at compile time, therefore we inherit from templated \texttt{SizedCostFunction} class. The \texttt{jacobians} array is optional, \texttt{Evaluate} is expected to check when it is non-null, and if it is the case then fill it with the values of the derivative of the residual function. In this case since the residual function is linear, the Jacobian is constant.
+
+Let us now look at the construction and solution of the problem using this \texttt{CostFunction}.
+\begin{listing}[H]
+\begin{minted}[frame=lines]{c++}
+int main(int argc, char** argv) {
+  double x = 5.0;
+  ceres::Problem problem;
+
+  // The problem object takes ownership of the newly allocated
+  // SimpleCostFunction and uses it to optimize the value of x.
+  problem.AddResidualBlock(new SimpleCostFunction, NULL, &x);
+
+  // Configure the solver.
+  ceres::Solver::Options options;
+  options.max_num_iterations = 2;
+  // Small, simple problem so we will use the Dense QR
+  // factorization based solver.
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+
+  ceres::Solver::Summary summary;
+  ceres::Solve(options, &problem, &summary);
+  std::cout << summary.BriefSummary() << "\n";
+  std::cout << "x : 5.0 -> " << x << "\n";
+  return 0;
+}
+\end{minted}
+\caption{Problem construction and solution for $F(x) = \frac{1}{2}(x-10)^2$}
+\end{listing}
+
+Compiling and running this program gives us
+\begin{minted}{bash}
+0: f: 1.250000e+01 d: 0.00e+00 g: 5.00e+00 h: 0.00e+00 rho: 0.00e+00 mu: 1.00e-04 li:  0
+1: f: 1.249750e-07 d: 1.25e+01 g: 5.00e-04 h: 5.00e+00 rho: 1.00e+00 mu: 3.33e-05 li:  1
+2: f: 1.388518e-16 d: 1.25e-07 g: 1.67e-08 h: 5.00e-04 rho: 1.00e+00 mu: 1.11e-05 li:  1
+Ceres Solver Report: Iterations: 2, Initial cost: 1.250000e+01,  \
+Final cost: 1.388518e-16, Termination: PARAMETER_TOLERANCE.
+x : 5 -> 10
+\end{minted}
+
+Starting from a $x=5$, the solver in two iterations goes to 10. The careful reader will note that this is a linear problem and one linear solve should be enough to get the optimal value.  The default configuration of the solver is aimed at non-linear problems, and for reasons of simplicity we did not change it in this example. It is indeed possible to obtain the solution to this problem using Ceres in one iteration. Also note that the solver did get very close to the optimal function value of 0 in the very first iteration. We will discuss these issues in greater detail when we talk about convergence and initial parameter setting for Ceres.
+
+\section{A Non-linear Example}
+\label{sec:tutorial:powell}
+Consider now a slightly more complicated example -- the minimization of Powell's function. Let $x = \left[x_1, x_2, x_3, x_4 \right]$ and
+\begin{align}
+   f_1(x) &= x_1 + 10*x_2 \\
+   f_2(x) &= \sqrt{5} * (x_3 - x_4)\\
+   f_3(x) &= (x_2 - 2*x_3)^2\\
+   f_4(x) &= \sqrt{10} * (x_1 - x_4)^2\\
+	F(x) & = \frac{1}{2}\left(f_1^2(x) + f_2^2(x) + f_3^2(x) + f_4^2(x) \right)
+\end{align}
+$F(x)$ is a function of four parameters, and has four residuals. Now,
+one way to solve this problem would be to define four
+\texttt{CostFunction}s that computes the residual and Jacobian. \eg Listing~\ref{listing:f4full} shows the implementation for $f_4(x)$.
+
+\begin{listing}[H]
+\begin{minted}[frame=lines,mathescape]{c++}
+class F4 : public ceres::SizedCostFunction<1, 4> {
+ public:
+  virtual ~F4() {}
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    double x1 = parameters[0][0];
+    double x4 = parameters[1][0];
+
+    // $f_4 = \sqrt{10} * (x_1 - x_4)^2$
+    residuals[0] = sqrt(10.0) * (x1 - x4) * (x1 - x4)
+    if (jacobians != NULL) {
+      // $\partial_{x_1}f_1(x)$
+      jacobians[0][0] = 2.0 * sqrt(10.0) * (x1 - x4);
+      // $\partial_{x_2}f_1(x)$
+      jacobians[0][1] = 0.0;
+      // $\partial_{x_3}f_1(x)$
+      jacobians[0][2] = 0.0;
+      // $\partial_{x_4}f_1(x)$
+      jacobians[0][3] = -2.0 * sqrt(10.0) * (x1 - x4);
+    }
+    return true;
+  }
+};
+\end{minted}
+\caption{A full \texttt{CostFunction} implementation of $f_4(x) = \sqrt{10} * (x_1 - x_4)^2$.}
+\label{listing:f4full}
+\end{listing}
+
+But this can get painful very quickly, especially for residuals involving complicated multivariate terms. Ceres provides two ways around this problem. Numeric and automatic symbolic differentiation.
+
+\subsection{Automatic Differentiation}
+\label{sec:tutorial:autodiff}
+With its automatic differentiation support, Ceres allows you to define templated objects that will compute the residual and it takes care of computing the Jacobians as needed and filling the \texttt{jacobians} arrays with them.
+For example, for $f_4(x)$ we define
+
+\begin{listing}[H]
+\begin{minted}[frame=lines,mathescape]{c++}
+class F4 {
+ public:
+  template <typename T> bool operator()(const T* const x1,
+                                        const T* const x4,
+                                        T* residual) const {
+    // $f_4 = \sqrt{10} * (x_1 - x_4)^2$
+    residual[0] = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0]);
+    return true;
+  }
+};
+\end{minted}
+\caption{Templated functor implementing $f_4(x) = \sqrt{10} * (x_1 - x_4)^2$ for use in automatic differentiation.}
+\label{listing:f4functor}
+\end{listing}
+
+The important thing to note here is that the \texttt{operator()} is a
+templated method, which assumes that all its inputs and outputs are of
+some type \texttt{T}.  Note also that the parameters are not packed
+into a single array, they are instead passed as separate arguments to
+\texttt{operator()}. Similarly we can define classes \texttt{F1,F2}
+and \texttt{F4}. Then let us consider the construction and solution of the problem. For brevity we only describe the relevant bits of code. The full source code for this example can be found in \texttt{examples/powell.cc}.
+
+\begin{listing}[H]
+\begin{minted}[frame=lines,mathescape]{c++}
+double x1 =  3.0; double x2 = -1.0; double x3 =  0.0; double x4 =  1.0;
+
+// Add residual terms to the problem using the using the autodiff
+// wrapper to get the derivatives automatically. The parameters, x1 through
+// x4, are modified in place.
+problem.AddResidualBlock(
+  new ceres::AutoDiffCostFunction<F1, 1, 1, 1>(new F1), NULL, &x1, &x2);
+problem.AddResidualBlock(
+  new ceres::AutoDiffCostFunction<F2, 1, 1, 1>(new F2), NULL, &x3, &x4);
+problem.AddResidualBlock(
+  new ceres::AutoDiffCostFunction<F3, 1, 1, 1>(new F3), NULL, &x2, &x3)
+problem.AddResidualBlock(
+  new ceres::AutoDiffCostFunction<F4, 1, 1, 1>(new F4), NULL, &x1, &x4);
+\end{minted}
+\caption{Problem construction using \texttt{AutoDiffCostFunction} for Powell's function.}
+\label{listing:powell}
+\end{listing}
+A few things are worth noting in the code above. First, the object
+being added to the \texttt{Problem} is an
+\texttt{AutoDiffCostFunction} with \texttt{F1}, \texttt{F2}, \texttt{F3} and \texttt{F4} as template parameters. Second, each \texttt{ResidualBlock} only depends on the two parameters that the corresponding residual object depends on and not on all four parameters.
+
+
+Compiling and running \texttt{powell.cc} gives us:
+\begin{minted}{bash}
+Initial x1 = 3, x2 = -1, x3 = 0, x4 = 1
+   0: f: 1.075000e+02 d: 0.00e+00 g: 1.55e+02 h: 0.00e+00 rho: 0.00e+00 mu: 1.00e-04 li:  0
+   1: f: 5.036190e+00 d: 1.02e+02 g: 2.00e+01 h: 2.16e+00 rho: 9.53e-01 mu: 3.33e-05 li:  1
+   2: f: 3.148168e-01 d: 4.72e+00 g: 2.50e+00 h: 6.23e-01 rho: 9.37e-01 mu: 1.11e-05 li:  1
+   3: f: 1.967760e-02 d: 2.95e-01 g: 3.13e-01 h: 3.08e-01 rho: 9.37e-01 mu: 3.70e-06 li:  1
+   4: f: 1.229900e-03 d: 1.84e-02 g: 3.91e-02 h: 1.54e-01 rho: 9.37e-01 mu: 1.23e-06 li:  1
+   5: f: 7.687123e-05 d: 1.15e-03 g: 4.89e-03 h: 7.69e-02 rho: 9.37e-01 mu: 4.12e-07 li:  1
+   6: f: 4.804625e-06 d: 7.21e-05 g: 6.11e-04 h: 3.85e-02 rho: 9.37e-01 mu: 1.37e-07 li:  1
+   7: f: 3.003028e-07 d: 4.50e-06 g: 7.64e-05 h: 1.92e-02 rho: 9.37e-01 mu: 4.57e-08 li:  1
+   8: f: 1.877006e-08 d: 2.82e-07 g: 9.54e-06 h: 9.62e-03 rho: 9.37e-01 mu: 1.52e-08 li:  1
+   9: f: 1.173223e-09 d: 1.76e-08 g: 1.19e-06 h: 4.81e-03 rho: 9.37e-01 mu: 5.08e-09 li:  1
+  10: f: 7.333425e-11 d: 1.10e-09 g: 1.49e-07 h: 2.40e-03 rho: 9.37e-01 mu: 1.69e-09 li:  1
+  11: f: 4.584044e-12 d: 6.88e-11 g: 1.86e-08 h: 1.20e-03 rho: 9.37e-01 mu: 5.65e-10 li:  1
+Ceres Solver Report: Iterations: 12, Initial cost: 1.075000e+02, \
+Final cost: 2.865573e-13, Termination: GRADIENT_TOLERANCE.
+Final x1 = 0.000583994, x2 = -5.83994e-05, x3 = 9.55401e-05, x4 = 9.55401e-05
+\end{minted}
+It is easy to see that the  optimal solution to this problem is at $x_1=0, x_2=0, x_3=0, x_4=0$ with an objective function value of $0$. In 10 iterations, Ceres finds a solution with an objective function value of $4\times 10^{-12}$.
+
+If a templated implementation is not possible then a \texttt{NumericDiffCostFunction} object can be used. \texttt{examples/quadratic\_numeric\_diff.cc} shows a numerically differentiated implementation of \texttt{examples/quadratic.cc}.
+
+When possible, automatic differentiation should be used. The use of
+C++ templates makes automatic differentiation extremely efficient,
+whereas numeric differentiation can be quite expensive, prone to
+numeric errors and leads to slower convergence.
+
+\section{Data Fitting}
+\label{sec:tutorial:datafitting}
+The examples we have seen until now are simple optimization problems with no data. The original purpose of least squares and non-linear least squares analysis was fitting curves to data. It is only appropriate that we now consider an example of such a problem. Let us fit some data to the curve
+\begin{equation}
+	y = e^{mx + c}
+\end{equation}
+
+The full code and data for this example can be found in
+\texttt{examples/data\_fitting.cc}. It contains data generated by sampling the curve $y = e^{0.3x + 0.1}$ and adding Gaussian noise with standard deviation $\sigma = 0.2$.
+
+We begin by defining a templated object to evaluate the residual. There will be a residual for each observation.
+
+\begin{listing}[H]
+\begin{minted}[frame=lines,mathescape]{c++}
+class ExponentialResidual {
+ public:
+  ExponentialResidual(double x, double y)
+      : x_(x), y_(y) {}
+
+  template <typename T> bool operator()(const T* const m,
+                                        const T* const c,
+                                        T* residual) const {
+    // $y - e^{mx + c}$
+    residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
+    return true;
+  }
+
+ private:
+  // Observations for a sample.
+  const double x_;
+  const double y_;
+};
+\end{minted}
+\caption{Templated functor to compute the residual for the exponential model fitting problem. Note that one instance of the functor is responsible for computing the residual for one observation.}
+\label{listing:exponentialresidual}
+\end{listing}
+Assuming the observations are in a $2n$ sized array called \text{data}, the problem construction is a simple matter of creating a \texttt{CostFunction} for every observation.
+\begin{listing}[H]
+\begin{minted}[frame=lines,mathescape]{c++}
+double m = 0.0;
+double c = 0.0;
+
+Problem problem;
+for (int i = 0; i < kNumObservations; ++i) {
+  problem.AddResidualBlock(
+      new AutoDiffCostFunction<ExponentialResidual, 1, 1, 1>(
+          new ExponentialResidual(data[2 * i], data[2 * i + 1])),
+      NULL,
+      &m, &c);
+}
+\end{minted}
+\caption{Problem construction for the exponential data fitting problem. A \texttt{ResidualBlock} is added for each observation.}
+\label{listing:datafitting}
+\end{listing}
+Compiling and running \texttt{data\_fitting.cc} gives us
+\begin{minted}{bash}
+ 0: f: 1.211734e+02 d: 0.00e+00 g: 3.61e+02 h: 0.00e+00 rho: 0.00e+00 mu: 1.00e-04 li:  0
+ 1: f: 1.211734e+02 d:-2.21e+03 g: 3.61e+02 h: 7.52e-01 rho:-1.87e+01 mu: 2.00e-04 li:  1
+ 2: f: 1.211734e+02 d:-2.21e+03 g: 3.61e+02 h: 7.51e-01 rho:-1.86e+01 mu: 8.00e-04 li:  1
+ 3: f: 1.211734e+02 d:-2.19e+03 g: 3.61e+02 h: 7.48e-01 rho:-1.85e+01 mu: 6.40e-03 li:  1
+ 4: f: 1.211734e+02 d:-2.02e+03 g: 3.61e+02 h: 7.22e-01 rho:-1.70e+01 mu: 1.02e-01 li:  1
+ 5: f: 1.211734e+02 d:-7.34e+02 g: 3.61e+02 h: 5.78e-01 rho:-6.32e+00 mu: 3.28e+00 li:  1
+ 6: f: 3.306595e+01 d: 8.81e+01 g: 4.10e+02 h: 3.18e-01 rho: 1.37e+00 mu: 1.09e+00 li:  1
+ 7: f: 6.426770e+00 d: 2.66e+01 g: 1.81e+02 h: 1.29e-01 rho: 1.10e+00 mu: 3.64e-01 li:  1
+ 8: f: 3.344546e+00 d: 3.08e+00 g: 5.51e+01 h: 3.05e-02 rho: 1.03e+00 mu: 1.21e-01 li:  1
+ 9: f: 1.987485e+00 d: 1.36e+00 g: 2.33e+01 h: 8.87e-02 rho: 9.94e-01 mu: 4.05e-02 li:  1
+10: f: 1.211585e+00 d: 7.76e-01 g: 8.22e+00 h: 1.05e-01 rho: 9.89e-01 mu: 1.35e-02 li:  1
+11: f: 1.063265e+00 d: 1.48e-01 g: 1.44e+00 h: 6.06e-02 rho: 9.97e-01 mu: 4.49e-03 li:  1
+12: f: 1.056795e+00 d: 6.47e-03 g: 1.18e-01 h: 1.47e-02 rho: 1.00e+00 mu: 1.50e-03 li:  1
+13: f: 1.056751e+00 d: 4.39e-05 g: 3.79e-03 h: 1.28e-03 rho: 1.00e+00 mu: 4.99e-04 li:  1
+Ceres Solver Report: Iterations: 13, Initial cost: 1.211734e+02, \
+Final cost: 1.056751e+00, Termination: FUNCTION_TOLERANCE.
+Initial m: 0 c: 0
+Final   m: 0.291861 c: 0.131439
+\end{minted}
+
+\begin{figure}[t]
+	\begin{center}
+	\includegraphics[width=\textwidth]{fit.pdf}
+	\caption{Least squares data fitting to the curve $y = e^{0.3x + 0.1}$. Observations were generated by sampling this curve uniformly in the interval $x=(0,5)$ and adding Gaussian noise with $\sigma = 0.2$.\label{fig:exponential}}
+\end{center}
+\end{figure}
+
+Starting from parameter values $m = 0, c=0$ with an initial objective function value of $121.173$ Ceres finds a solution $m= 0.291861, c = 0.131439$ with an objective function value of $1.05675$. These values are a a bit different than the parameters of the original model $m=0.3, c= 0.1$, but this is normal. When reconstructing a curve from noisy data, we expect to see such deviations. Indeed, if you were to evaluate the objective function for $m=0.3, c=0.1$, the fit is worse with an objective function value of 1.082425. Figure~\ref{fig:exponential} illustrates the fit.
+
+\section{Bundle Adjustment}
+\label{sec:tutorial:bundleadjustment}
+\begin{listing}[ht]
+\begin{minted}[frame=lines,mathescape]{c++}
+struct SnavelyReprojectionError {
+  SnavelyReprojectionError(double observed_x, double observed_y)
+      : observed_x(observed_x), observed_y(observed_y) {}
+
+  template <typename T>
+  bool operator()(const T* const camera,
+                  const T* const point,
+                  T* residuals) const {
+    // camera[0,1,2] are the angle-axis rotation.
+    T p[3];
+    ceres::AngleAxisRotatePoint(camera, point, p);
+    // camera[3,4,5] are the translation.
+    p[0] += camera[3]; p[1] += camera[4]; p[2] += camera[5];
+
+    // Compute the center of distortion. The sign change comes from
+    // the camera model that Noah Snavely's Bundler assumes, whereby
+    // the camera coordinate system has a negative z axis.
+    const T& focal = camera[6];
+    T xp = - focal * p[0] / p[2];
+    T yp = - focal * p[1] / p[2];
+
+    // Apply second and fourth order radial distortion.
+    const T& l1 = camera[7];
+    const T& l2 = camera[8];
+    T r2 = xp*xp + yp*yp;
+    T distortion = T(1.0) + r2  * (l1 + l2  * r2);
+
+    // Compute final projected point position.
+    T predicted_x = distortion * xp;
+    T predicted_y = distortion * yp;
+
+    // The error is the difference between the predicted and observed position.
+    residuals[0] = predicted_x - T(observed_x);
+    residuals[1] = predicted_y - T(observed_y);
+    return true;
+  }
+
+  double observed_x;
+  double observed_y;
+};
+\end{minted}
+\caption{Templated functor to compute the residual using the Bundler camera. Note that the structure of this functor is similar to the \texttt{ExponentialResidual}~\ref{listing:exponentialresidual}, in that there is an instance of this object responsible for each image observation. The camera has nine parameters. Three for rotation as a Rodriquez axis-angle vector, three for translation, one for focal length and two for radial distortion. \texttt{AngleAxisRotatePoint} can be found in \texttt{rotation.h}.}
+\label{listing:bundlerresidual}
+\end{listing}
+
+One of the main reasons for writing Ceres was our desire to solve large scale bundle adjustment problems~\cite{hartley-zisserman-book-2004,triggs-etal-1999}.
+
+
+
+Given a set of measured image feature locations and correspondences, the goal of bundle adjustment is to find 3D point positions and camera parameters that minimize the reprojection error. This optimization problem is usually formulated as a non-linear least squares problem, where the error is the squared $L_2$ norm of the difference between the observed feature location and the projection of the corresponding 3D point on the image plane of the camera.
+
+Ceres has extensive support for solving bundle adjustment problems. Let us consider the solution of a problem from the BAL~\cite{Agarwal10bal} dataset. The code for this example can be found in \texttt{examples/simple\_bundle\_adjuster.cc}.
+
+The first step is to define the CostFunction. Each residual in a BAL
+problem depends on a three dimensional point and a nine parameter
+camera. The details of this camera model can be found on Noah
+Snavely's Bundler
+homepage~\footnote{\url{http://phototour.cs.washington.edu/bundler/}}
+and the BAL
+homepage~\footnote{\url{http://grail.cs.washington.edu/projects/bal/}}. Listing~\ref{listing:bundlerresidual}
+describes the templated functor for computing the residual. Unlike the
+examples before this is a non-trivial function and computing its
+analytic Jacobian is a bit of a pain. Automatic differentiation makes
+our life very simple here. Given this functor, let us look at the problem construction.
+
+\begin{minted}[frame=lines,mathescape]{c++}
+// Create residuals for each observation in the bundle adjustment problem. The
+// parameters for cameras and points are added automatically.
+ceres::Problem problem;
+for (int i = 0; i < bal_problem.num_observations(); ++i) {
+  // Each Residual block takes a point and a camera as input and outputs a 2
+  // dimensional residual. Internally, the cost function stores the observed
+  // image location and compares the reprojection against the observation.
+  ceres::CostFunction* cost_function =
+      new ceres::AutoDiffCostFunction<SnavelyReprojectionError, 2, 9, 3>(
+          new SnavelyReprojectionError(
+              bal_problem.observations()[2 * i + 0],
+              bal_problem.observations()[2 * i + 1]));
+
+  problem.AddResidualBlock(cost_function,
+                           NULL /* squared loss */,
+                           bal_problem.mutable_camera_for_observation(i),
+                           bal_problem.mutable_point_for_observation(i));
+  }
+}
+\end{minted}
+
+Note that the problem construction for bundle adjustment is not very
+different from the data fitting example. One extra feature here is the
+optional use of a robust loss function. If the user wants, instead of just using a squared reprojection error as the objective function we robustify it using Huber's loss. More details of the various loss functions available in Ceres and their characteristics can be found in \texttt{loss\_function.h}.
+
+One way to solve this problem would be to set \texttt{Solver::Options::linear\_solver\_type} to \texttt{SPARSE\_NORMAL\_CHOLESKY} and call \texttt{Solve}. And while this is a reasonable thing to do, bundle adjustment problems have a special sparsity structure that can be exploited to solve them much more efficiently. Ceres provides three specialized solvers (collectively known as Schur based solvers) for this task. The example code uses the simplest of them \texttt{DENSE\_SCHUR}. For more details on the available solvers and how they work see Chapter~\ref{chapter:theory}.
+
+For a more sophisticated example of bundle adjustment which demonstrates the use of the various linear solvers, robust loss functions and local parameterizations see \texttt{examples/bundle\_adjuster.cc}.
\ No newline at end of file
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
new file mode 100644
index 0000000..b07a3dd
--- /dev/null
+++ b/examples/CMakeLists.txt
@@ -0,0 +1,53 @@
+# Ceres Solver - A fast non-linear least squares minimizer
+# Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+# http://code.google.com/p/ceres-solver/
+#
+# 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 Google 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.
+#
+# Author: keir@google.com (Keir Mierle)
+
+ADD_EXECUTABLE(quadratic quadratic.cc)
+TARGET_LINK_LIBRARIES(quadratic ceres)
+
+ADD_EXECUTABLE(quadratic_auto_diff quadratic_auto_diff.cc)
+TARGET_LINK_LIBRARIES(quadratic_auto_diff ceres)
+
+ADD_EXECUTABLE(quadratic_numeric_diff quadratic_numeric_diff.cc)
+TARGET_LINK_LIBRARIES(quadratic_numeric_diff ceres)
+
+ADD_EXECUTABLE(powell powell.cc)
+TARGET_LINK_LIBRARIES(powell ceres)
+
+ADD_EXECUTABLE(circle_fit circle_fit.cc)
+TARGET_LINK_LIBRARIES(circle_fit ceres)
+
+ADD_EXECUTABLE(bundle_adjuster
+               bundle_adjuster.cc
+               bal_problem.cc)
+TARGET_LINK_LIBRARIES(bundle_adjuster ceres)
+
+ADD_EXECUTABLE(simple_bundle_adjuster
+               simple_bundle_adjuster.cc)
+TARGET_LINK_LIBRARIES(simple_bundle_adjuster ceres)
diff --git a/examples/bal_problem.cc b/examples/bal_problem.cc
new file mode 100644
index 0000000..2ab35e4
--- /dev/null
+++ b/examples/bal_problem.cc
@@ -0,0 +1,119 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "bal_problem.h"
+
+#include <cstdio>
+#include <cstdlib>
+#include <string>
+#include <glog/logging.h>
+#include "ceres/rotation.h"
+
+namespace ceres {
+namespace examples {
+
+template<typename T>
+void FscanfOrDie(FILE *fptr, const char *format, T *value) {
+  int num_scanned = fscanf(fptr, format, value);
+  if (num_scanned != 1) {
+    LOG(FATAL) << "Invalid UW data file.";
+  }
+}
+
+BALProblem::BALProblem(const std::string filename, bool use_quaternions) {
+  FILE* fptr = fopen(filename.c_str(), "r");
+
+  if (!fptr) {
+    LOG(FATAL) << "Error: unable to open file " << filename;
+    return;
+  };
+
+  // This wil die horribly on invalid files. Them's the breaks.
+  FscanfOrDie(fptr, "%d", &num_cameras_);
+  FscanfOrDie(fptr, "%d", &num_points_);
+  FscanfOrDie(fptr, "%d", &num_observations_);
+
+  VLOG(1) << "Header: " << num_cameras_
+          << " " << num_points_
+          << " " << num_observations_;
+
+  point_index_ = new int[num_observations_];
+  camera_index_ = new int[num_observations_];
+  observations_ = new double[2 * num_observations_];
+
+  num_parameters_ = 9 * num_cameras_ + 3 * num_points_;
+  parameters_ = new double[num_parameters_];
+
+  for (int i = 0; i < num_observations_; ++i) {
+    FscanfOrDie(fptr, "%d", camera_index_ + i);
+    FscanfOrDie(fptr, "%d", point_index_ + i);
+    for (int j = 0; j < 2; ++j) {
+      FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
+    }
+  }
+
+  for (int i = 0; i < num_parameters_; ++i) {
+    FscanfOrDie(fptr, "%lf", parameters_ + i);
+  }
+
+  use_quaternions_ = use_quaternions;
+  if (use_quaternions) {
+    // Switch the angle-axis rotations to quaternions.
+    num_parameters_ = 10 * num_cameras_ + 3 * num_points_;
+    double* quaternion_parameters = new double[num_parameters_];
+    double* original_cursor = parameters_;
+    double* quaternion_cursor = quaternion_parameters;
+    for (int i = 0; i < num_cameras_; ++i) {
+      AngleAxisToQuaternion(original_cursor, quaternion_cursor);
+      quaternion_cursor += 4;
+      original_cursor += 3;
+      for (int j = 4; j < 10; ++j) {
+       *quaternion_cursor++ = *original_cursor++;
+      }
+    }
+    // Copy the rest of the points.
+    for (int i = 0; i < 3 * num_points_; ++i) {
+      *quaternion_cursor++ = *original_cursor++;
+    }
+    // Swap in the quaternion parameters.
+    delete []parameters_;
+    parameters_ = quaternion_parameters;
+  }
+}
+
+BALProblem::~BALProblem() {
+  delete []point_index_;
+  delete []camera_index_;
+  delete []observations_;
+  delete []parameters_;
+}
+
+}  // namespace examples
+}  // namespace ceres
diff --git a/examples/bal_problem.h b/examples/bal_problem.h
new file mode 100644
index 0000000..ff411b8
--- /dev/null
+++ b/examples/bal_problem.h
@@ -0,0 +1,83 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Class for loading and holding in memory bundle adjustment problems
+// from the BAL (Bundle Adjustment in the Large) dataset from the
+// University of Washington.
+//
+// For more details see http://grail.cs.washington.edu/projects/bal/
+
+#ifndef CERES_EXAMPLES_BAL_PROBLEM_H_
+#define CERES_EXAMPLES_BAL_PROBLEM_H_
+
+#include <string>
+
+namespace ceres {
+namespace examples {
+
+class BALProblem {
+ public:
+  explicit BALProblem(const std::string filename, bool use_quaternions);
+  ~BALProblem();
+
+  int camera_block_size()      const { return use_quaternions_ ? 10 : 9; }
+  int point_block_size()       const { return 3;                         }
+  int num_cameras()            const { return num_cameras_;              }
+  int num_points()             const { return num_points_;               }
+  int num_observations()       const { return num_observations_;         }
+  int num_parameters()         const { return num_parameters_;           }
+  const int* point_index()     const { return point_index_;              }
+  const int* camera_index()    const { return camera_index_;             }
+  const double* observations() const { return observations_;             }
+  const double* parameters()   const { return parameters_;               }
+  double* mutable_cameras()          { return parameters_;               }
+  double* mutable_points() {
+    return parameters_  + camera_block_size() * num_cameras_;
+  }
+
+ private:
+  int num_cameras_;
+  int num_points_;
+  int num_observations_;
+  int num_parameters_;
+  bool use_quaternions_;
+
+  int* point_index_;
+  int* camera_index_;
+  double* observations_;
+  // The parameter vector is laid out as follows
+  // [camera_1, ..., camera_n, point_1, ..., point_m]
+  double* parameters_;
+};
+
+}  // namespace examples
+}  // namespace ceres
+
+#endif  // CERES_EXAMPLES_BAL_PROBLEM_H_
diff --git a/examples/bundle_adjuster.cc b/examples/bundle_adjuster.cc
new file mode 100644
index 0000000..bafdf25
--- /dev/null
+++ b/examples/bundle_adjuster.cc
@@ -0,0 +1,281 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// An example of solving a dynamically sized problem with various
+// solvers and loss functions.
+//
+// For a simpler bare bones example of doing bundle adjustment with
+// Ceres, please see simple_bundle_adjuster.cc.
+//
+// NOTE: This example will not compile without gflags and SuiteSparse.
+//
+// The problem being solved here is known as a Bundle Adjustment
+// problem in computer vision. Given a set of 3d points X_1, ..., X_n,
+// a set of cameras P_1, ..., P_m. If the point X_i is visible in
+// image j, then there is a 2D observation u_ij that is the expected
+// projection of X_i using P_j. The aim of this optimization is to
+// find values of X_i and P_j such that the reprojection error
+//
+//    E(X,P) =  sum_ij  |u_ij - P_j X_i|^2
+//
+// is minimized.
+//
+// The problem used here comes from a collection of bundle adjustment
+// problems published at University of Washington.
+// http://grail.cs.washington.edu/projects/bal
+
+#include <algorithm>
+#include <cmath>
+#include <cstdio>
+#include <string>
+#include <vector>
+
+#include <gflags/gflags.h>
+#include <glog/logging.h>
+#include "bal_problem.h"
+#include "snavely_reprojection_error.h"
+#include "ceres/ceres.h"
+
+DEFINE_string(input, "", "Input File name");
+
+DEFINE_string(solver_type, "sparse_schur", "Options are: "
+              "sparse_schur, dense_schur, iterative_schur, cholesky "
+              "and dense_qr");
+
+DEFINE_string(preconditioner_type, "jacobi", "Options are: "
+              "identity, jacobi, schur_jacobi, cluster_jacobi, "
+              "cluster_tridiagonal");
+
+DEFINE_int32(num_iterations, 5, "Number of iterations");
+DEFINE_int32(num_threads, 1, "Number of threads");
+DEFINE_bool(use_schur_ordering, false, "Use automatic Schur ordering.");
+DEFINE_bool(use_quaternions, false, "If true, uses quaternions to represent "
+            "rotations. If false, angle axis is used");
+DEFINE_bool(use_local_parameterization, false, "For quaternions, use a local "
+            "parameterization.");
+DEFINE_bool(robustify, false, "Use a robust loss function");
+
+namespace ceres {
+namespace examples {
+
+void SetLinearSolver(Solver::Options* options) {
+  if (FLAGS_solver_type == "sparse_schur") {
+    options->linear_solver_type = ceres::SPARSE_SCHUR;
+  } else if (FLAGS_solver_type == "dense_schur") {
+    options->linear_solver_type = ceres::DENSE_SCHUR;
+  } else if (FLAGS_solver_type == "iterative_schur") {
+    options->linear_solver_type = ceres::ITERATIVE_SCHUR;
+  } else if (FLAGS_solver_type == "cholesky") {
+    options->linear_solver_type = ceres::SPARSE_NORMAL_CHOLESKY;
+  } else if (FLAGS_solver_type == "dense_qr") {
+    // DENSE_QR is included here for completeness, but actually using
+    // this opttion is a bad idea due to the amount of memory needed
+    // to store even the smallest of the bundle adjustment jacobian
+    // arrays
+    options->linear_solver_type = ceres::DENSE_QR;
+  } else {
+    LOG(FATAL) << "Unknown ceres solver type: "
+               << FLAGS_solver_type;
+  }
+
+  if (options->linear_solver_type == ceres::ITERATIVE_SCHUR) {
+    options->linear_solver_min_num_iterations = 5;
+    if (FLAGS_preconditioner_type == "identity") {
+      options->preconditioner_type = ceres::IDENTITY;
+    } else if (FLAGS_preconditioner_type == "jacobi") {
+      options->preconditioner_type = ceres::JACOBI;
+    } else if (FLAGS_preconditioner_type == "schur_jacobi") {
+      options->preconditioner_type = ceres::SCHUR_JACOBI;
+    } else if (FLAGS_preconditioner_type == "cluster_jacobi") {
+      options->preconditioner_type = ceres::CLUSTER_JACOBI;
+    } else if (FLAGS_preconditioner_type == "cluster_tridiagonal") {
+      options->preconditioner_type = ceres::CLUSTER_TRIDIAGONAL;
+    } else {
+      LOG(FATAL) << "Unknown ceres preconditioner type: "
+               << FLAGS_preconditioner_type;
+    }
+  }
+
+  options->num_linear_solver_threads = FLAGS_num_threads;
+}
+
+void SetOrdering(BALProblem* bal_problem, Solver::Options* options) {
+  // Bundle adjustment problems have a sparsity structure that makes
+  // them amenable to more specialized and much more efficient
+  // solution strategies. The SPARSE_SCHUR, DENSE_SCHUR and
+  // ITERATIVE_SCHUR solvers make use of this specialized
+  // structure. Using them however requires that the ParameterBlocks
+  // are in a particular order (points before cameras) and
+  // Solver::Options::num_eliminate_blocks is set to the number of
+  // points.
+  //
+  // This can either be done by specifying Options::ordering_type =
+  // ceres::SCHUR, in which case Ceres will automatically determine
+  // the right ParameterBlock ordering, or by manually specifying a
+  // suitable ordering vector and defining
+  // Options::num_eliminate_blocks.
+  if (FLAGS_use_schur_ordering) {
+    options->ordering_type = ceres::SCHUR;
+    return;
+  }
+
+  options->ordering_type = ceres::USER;
+  const int num_points = bal_problem->num_points();
+  const int point_block_size = bal_problem->point_block_size();
+  double* points = bal_problem->mutable_points();
+  const int num_cameras = bal_problem->num_cameras();
+  const int camera_block_size = bal_problem->camera_block_size();
+  double* cameras = bal_problem->mutable_cameras();
+
+  // The points come before the cameras.
+  for (int i = 0; i < num_points; ++i) {
+    options->ordering.push_back(points + point_block_size * i);
+  }
+
+  for (int i = 0; i < num_cameras; ++i) {
+    // When using axis-angle, there is a single parameter block for
+    // the entire camera.
+    options->ordering.push_back(cameras + camera_block_size * i);
+
+    // If quaternions are used, there are two blocks, so add the
+    // second block to the ordering.
+    if (FLAGS_use_quaternions) {
+      options->ordering.push_back(cameras + camera_block_size * i + 4);
+    }
+  }
+
+  options->num_eliminate_blocks = num_points;
+}
+
+void SetMinimizerOptions(Solver::Options* options) {
+  options->max_num_iterations = FLAGS_num_iterations;
+  options->minimizer_progress_to_stdout = true;
+  options->num_threads = FLAGS_num_threads;
+}
+
+void SetSolverOptionsFromFlags(BALProblem* bal_problem,
+                               Solver::Options* options) {
+  SetLinearSolver(options);
+  SetOrdering(bal_problem, options);
+  SetMinimizerOptions(options);
+}
+
+void BuildProblem(BALProblem* bal_problem, Problem* problem) {
+  const int point_block_size = bal_problem->point_block_size();
+  const int camera_block_size = bal_problem->camera_block_size();
+  double* points = bal_problem->mutable_points();
+  double* cameras = bal_problem->mutable_cameras();
+
+  // Observations is 2*num_observations long array observations =
+  // [u_1, u_2, ... , u_n], where each u_i is two dimensional, the x
+  // and y positions of the observation.
+  const double* observations = bal_problem->observations();
+
+  for (int i = 0; i < bal_problem->num_observations(); ++i) {
+    CostFunction* cost_function;
+    // Each Residual block takes a point and a camera as input and
+    // outputs a 2 dimensional residual.
+    if (FLAGS_use_quaternions) {
+      cost_function = new AutoDiffCostFunction<
+          SnavelyReprojectionErrorWitQuaternions, 2, 4, 6, 3>(
+              new SnavelyReprojectionErrorWitQuaternions(
+                  observations[2 * i + 0],
+                  observations[2 * i + 1]));
+    } else {
+      cost_function =
+          new AutoDiffCostFunction<SnavelyReprojectionError, 2, 9, 3>(
+              new SnavelyReprojectionError(observations[2 * i + 0],
+                                           observations[2 * i + 1]));
+    }
+
+    // If enabled use Huber's loss function.
+    LossFunction* loss_function = FLAGS_robustify ? new HuberLoss(1.0) : NULL;
+
+    // Each observation correponds to a pair of a camera and a point
+    // which are identified by camera_index()[i] and point_index()[i]
+    // respectively.
+    double* camera =
+        cameras + camera_block_size * bal_problem->camera_index()[i];
+    double* point = points + point_block_size * bal_problem->point_index()[i];
+
+    if (FLAGS_use_quaternions) {
+      // When using quaternions, we split the camera into two
+      // parameter blocks. One of size 4 for the quaternion and the
+      // other of size 6 containing the translation, focal length and
+      // the radial distortion parameters.
+      problem->AddResidualBlock(cost_function,
+                                loss_function,
+                                camera,
+                                camera + 4,
+                                point);
+    } else {
+      problem->AddResidualBlock(cost_function, loss_function, camera, point);
+    }
+  }
+
+  if (FLAGS_use_quaternions && FLAGS_use_local_parameterization) {
+    LocalParameterization* quaternion_parameterization =
+         new QuaternionParameterization;
+    for (int i = 0; i < bal_problem->num_cameras(); ++i) {
+      problem->SetParameterization(cameras + camera_block_size * i,
+                                   quaternion_parameterization);
+    }
+  }
+}
+
+void SolveProblem(const char* filename) {
+  BALProblem bal_problem(filename, FLAGS_use_quaternions);
+  Problem problem;
+  BuildProblem(&bal_problem, &problem);
+  Solver::Options options;
+  SetSolverOptionsFromFlags(&bal_problem, &options);
+
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+  std::cout << summary.FullReport() << "\n";
+}
+
+}  // namespace examples
+}  // namespace ceres
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+  if (FLAGS_input.empty()) {
+    LOG(ERROR) << "Usage: bundle_adjustment_example --input=bal_problem";
+    return 1;
+  }
+
+  CHECK(FLAGS_use_quaternions || !FLAGS_use_local_parameterization)
+      << "--use_local_parameterization can only be used with "
+      << "--use_quaternions.";
+  ceres::examples::SolveProblem(FLAGS_input.c_str());
+  return 0;
+}
diff --git a/examples/circle_fit.cc b/examples/circle_fit.cc
new file mode 100644
index 0000000..a044134
--- /dev/null
+++ b/examples/circle_fit.cc
@@ -0,0 +1,163 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// This fits circles to a collection of points, where the error is related to
+// the distance of a point from the circle. This uses auto-differentiation to
+// take the derivatives.
+//
+// The input format is simple text. Feed on standard in:
+//
+//   x_initial y_initial r_initial
+//   x1 y1
+//   x2 y2
+//   y3 y3
+//   ...
+//
+// And the result after solving will be printed to stdout:
+//
+//   x y r
+//
+// There are closed form solutions [1] to this problem which you may want to
+// consider instead of using this one. If you already have a decent guess, Ceres
+// can squeeze down the last bit of error.
+//
+//   [1] http://www.mathworks.com/matlabcentral/fileexchange/5557-circle-fit/content/circfit.m
+
+#include <cstdio>
+#include <vector>
+
+#include <gflags/gflags.h>
+#include "ceres/ceres.h"
+
+using ceres::AutoDiffCostFunction;
+using ceres::CauchyLoss;
+using ceres::CostFunction;
+using ceres::LossFunction;
+using ceres::Problem;
+using ceres::Solve;
+using ceres::Solver;
+
+DEFINE_double(robust_threshold, -1.0, "Robust loss parameter. Set to -1 for "
+              "normal squared error (no robustification).");
+
+// The cost for a single sample. The returned residual is related to the
+// distance of the point from the circle (passed in as x, y, m parameters).
+//
+// Note that the radius is parameterized as r = m^2 to constrain the radius to
+// positive values.
+class DistanceFromCircleCost {
+ public:
+  DistanceFromCircleCost(double xx, double yy) : xx_(xx), yy_(yy) {}
+  template <typename T> bool operator()(const T* const x,
+                                        const T* const y,
+                                        const T* const m,  // r = m^2
+                                        T* residual) const {
+    // Since the radius is parameterized as m^2, unpack m to get r.
+    T r = *m * *m;
+
+    // Get the position of the sample in the circle's coordinate system.
+    T xp = xx_ - *x;
+    T yp = yy_ - *y;
+
+    // It is tempting to use the following cost:
+    //
+    //   residual[0] = *r - sqrt(xp*xp + yp*yp);
+    //
+    // which is the distance of the sample from the circle. This works
+    // reasonably well, but the sqrt() adds strong nonlinearities to the cost
+    // function. Instead, a different cost is used, which while not strictly a
+    // distance in the metric sense (it has units distance^2) it produces more
+    // robust fits when there are outliers. This is because the cost surface is
+    // more convex.
+    residual[0] = r*r - xp*xp - yp*yp;
+    return true;
+  }
+
+ private:
+  // The measured x,y coordinate that should be on the circle.
+  double xx_, yy_;
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  double x, y, r;
+  if (scanf("%lg %lg %lg", &x, &y, &r) != 3) {
+    fprintf(stderr, "Couldn't read first line.\n");
+    return 1;
+  }
+  fprintf(stderr, "Got x, y, r %lg, %lg, %lg\n", x, y, r);
+
+  // Save initial values for comparison.
+  double initial_x = x;
+  double initial_y = y;
+  double initial_r = r;
+
+  // Parameterize r as m^2 so that it can't be negative.
+  double m = sqrt(r);
+
+  Problem problem;
+
+  // Configure the loss function.
+  LossFunction* loss = NULL;
+  if (FLAGS_robust_threshold) {
+    loss = new CauchyLoss(FLAGS_robust_threshold);
+  }
+
+  // Add the residuals.
+  double xx, yy;
+  int num_points = 0;
+  while (scanf("%lf %lf\n", &xx, &yy) == 2) {
+    CostFunction *cost =
+        new AutoDiffCostFunction<DistanceFromCircleCost, 1, 1, 1, 1>(
+            new DistanceFromCircleCost(xx, yy));
+    problem.AddResidualBlock(cost, loss, &x, &y, &m);
+    num_points++;
+  }
+
+  std::cout << "Got " << num_points << " points.\n";
+
+  // Build and solve the problem.
+  Solver::Options options;
+  options.max_num_iterations = 500;
+  options.linear_solver_type = ceres::DENSE_QR;
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+
+  // Recover r from m.
+  r = m * m;
+
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "x : " << initial_x << " -> " << x << "\n";
+  std::cout << "y : " << initial_y << " -> " << y << "\n";
+  std::cout << "r : " << initial_r << " -> " << r << "\n";
+  return 0;
+}
diff --git a/examples/data_fitting.cc b/examples/data_fitting.cc
new file mode 100644
index 0000000..f097172
--- /dev/null
+++ b/examples/data_fitting.cc
@@ -0,0 +1,164 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/ceres.h"
+
+using ceres::AutoDiffCostFunction;
+using ceres::CostFunction;
+using ceres::Problem;
+using ceres::Solver;
+using ceres::Solve;
+
+// Data generated using the following octave code.
+//   randn('seed', 23497);
+//   m = 0.3;
+//   c = 0.1;
+//   x=[0:0.075:5];
+//   y = exp(m * x + c);
+//   noise = randn(size(x)) * 0.2;
+//   y_observed = y + noise;
+//   data = [x', y_observed'];
+
+const int kNumObservations = 67;
+const double data[] = {
+  0.000000e+00, 1.133898e+00,
+  7.500000e-02, 1.334902e+00,
+  1.500000e-01, 1.213546e+00,
+  2.250000e-01, 1.252016e+00,
+  3.000000e-01, 1.392265e+00,
+  3.750000e-01, 1.314458e+00,
+  4.500000e-01, 1.472541e+00,
+  5.250000e-01, 1.536218e+00,
+  6.000000e-01, 1.355679e+00,
+  6.750000e-01, 1.463566e+00,
+  7.500000e-01, 1.490201e+00,
+  8.250000e-01, 1.658699e+00,
+  9.000000e-01, 1.067574e+00,
+  9.750000e-01, 1.464629e+00,
+  1.050000e+00, 1.402653e+00,
+  1.125000e+00, 1.713141e+00,
+  1.200000e+00, 1.527021e+00,
+  1.275000e+00, 1.702632e+00,
+  1.350000e+00, 1.423899e+00,
+  1.425000e+00, 1.543078e+00,
+  1.500000e+00, 1.664015e+00,
+  1.575000e+00, 1.732484e+00,
+  1.650000e+00, 1.543296e+00,
+  1.725000e+00, 1.959523e+00,
+  1.800000e+00, 1.685132e+00,
+  1.875000e+00, 1.951791e+00,
+  1.950000e+00, 2.095346e+00,
+  2.025000e+00, 2.361460e+00,
+  2.100000e+00, 2.169119e+00,
+  2.175000e+00, 2.061745e+00,
+  2.250000e+00, 2.178641e+00,
+  2.325000e+00, 2.104346e+00,
+  2.400000e+00, 2.584470e+00,
+  2.475000e+00, 1.914158e+00,
+  2.550000e+00, 2.368375e+00,
+  2.625000e+00, 2.686125e+00,
+  2.700000e+00, 2.712395e+00,
+  2.775000e+00, 2.499511e+00,
+  2.850000e+00, 2.558897e+00,
+  2.925000e+00, 2.309154e+00,
+  3.000000e+00, 2.869503e+00,
+  3.075000e+00, 3.116645e+00,
+  3.150000e+00, 3.094907e+00,
+  3.225000e+00, 2.471759e+00,
+  3.300000e+00, 3.017131e+00,
+  3.375000e+00, 3.232381e+00,
+  3.450000e+00, 2.944596e+00,
+  3.525000e+00, 3.385343e+00,
+  3.600000e+00, 3.199826e+00,
+  3.675000e+00, 3.423039e+00,
+  3.750000e+00, 3.621552e+00,
+  3.825000e+00, 3.559255e+00,
+  3.900000e+00, 3.530713e+00,
+  3.975000e+00, 3.561766e+00,
+  4.050000e+00, 3.544574e+00,
+  4.125000e+00, 3.867945e+00,
+  4.200000e+00, 4.049776e+00,
+  4.275000e+00, 3.885601e+00,
+  4.350000e+00, 4.110505e+00,
+  4.425000e+00, 4.345320e+00,
+  4.500000e+00, 4.161241e+00,
+  4.575000e+00, 4.363407e+00,
+  4.650000e+00, 4.161576e+00,
+  4.725000e+00, 4.619728e+00,
+  4.800000e+00, 4.737410e+00,
+  4.875000e+00, 4.727863e+00,
+  4.950000e+00, 4.669206e+00,
+};
+
+class ExponentialResidual {
+ public:
+  ExponentialResidual(double x, double y)
+      : x_(x), y_(y) {}
+
+  template <typename T> bool operator()(const T* const m,
+                                        const T* const c,
+                                        T* residual) const {
+    residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
+    return true;
+  }
+
+ private:
+  const double x_;
+  const double y_;
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  double m = 0.0;
+  double c = 0.0;
+
+  Problem problem;
+  for (int i = 0; i < kNumObservations; ++i) {
+    problem.AddResidualBlock(
+        new AutoDiffCostFunction<ExponentialResidual, 1, 1, 1>(
+            new ExponentialResidual(data[2 * i], data[2 * i + 1])),
+        NULL,
+        &m, &c);
+  }
+
+  Solver::Options options;
+  options.max_num_iterations = 25;
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "Initial m: " << 0.0 << " c: " << 0.0 << "\n";
+  std::cout << "Final   m: " << m << " c: " << c << "\n";
+  return 0;
+}
diff --git a/examples/powell.cc b/examples/powell.cc
new file mode 100644
index 0000000..1c7cc68
--- /dev/null
+++ b/examples/powell.cc
@@ -0,0 +1,150 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// An example program that minimizes Powell's singular function.
+//
+//   F = 1/2 (f1^2 + f2^2 + f3^2 + f4^2)
+//
+//   f1 = x1 + 10*x2;
+//   f2 = sqrt(5) * (x3 - x4)
+//   f3 = (x2 - 2*x3)^2
+//   f4 = sqrt(10) * (x1 - x4)^2
+//
+// The starting values are x1 = 3, x2 = -1, x3 = 0, x4 = 1.
+// The minimum is 0 at (x1, x2, x3, x4) = 0.
+//
+// From: Testing Unconstrained Optimization Software by Jorge J. More, Burton S.
+// Garbow and Kenneth E. Hillstrom in ACM Transactions on Mathematical Software,
+// Vol 7(1), March 1981.
+
+#include <vector>
+
+#include "ceres/ceres.h"
+
+using ceres::AutoDiffCostFunction;
+using ceres::CostFunction;
+using ceres::Problem;
+using ceres::Solver;
+using ceres::Solve;
+
+class F1 {
+ public:
+  template <typename T> bool operator()(const T* const x1,
+                                        const T* const x2,
+                                        T* residual) const {
+    // f1 = x1 + 10 * x2;
+    residual[0] = x1[0] + T(10.0) * x2[0];
+    return true;
+  }
+};
+
+class F2 {
+ public:
+  template <typename T> bool operator()(const T* const x3,
+                                        const T* const x4,
+                                        T* residual) const {
+    // f2 = sqrt(5) (x3 - x4)
+    residual[0] = T(sqrt(5.0)) * (x3[0] - x4[0]);
+    return true;
+  }
+};
+
+class F3 {
+ public:
+  template <typename T> bool operator()(const T* const x2,
+                                        const T* const x4,
+                                        T* residual) const {
+    // f3 = (x2 - 2 x3)^2
+    residual[0] = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0]);
+    return true;
+  }
+};
+
+class F4 {
+ public:
+  template <typename T> bool operator()(const T* const x1,
+                                        const T* const x4,
+                                        T* residual) const {
+    // f4 = sqrt(10) (x1 - x4)^2
+    residual[0] = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0]);
+    return true;
+  }
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  double x1 =  3.0;
+  double x2 = -1.0;
+  double x3 =  0.0;
+  double x4 =  1.0;
+
+  Problem problem;
+  // Add residual terms to the problem using the using the autodiff
+  // wrapper to get the derivatives automatically. The parameters, x1 through
+  // x4, are modified in place.
+  problem.AddResidualBlock(new AutoDiffCostFunction<F1, 1, 1, 1>(new F1),
+                           NULL,
+                           &x1, &x2);
+  problem.AddResidualBlock(new AutoDiffCostFunction<F2, 1, 1, 1>(new F2),
+                           NULL,
+                           &x3, &x4);
+  problem.AddResidualBlock(new AutoDiffCostFunction<F3, 1, 1, 1>(new F3),
+                           NULL,
+                           &x2, &x3);
+  problem.AddResidualBlock(new AutoDiffCostFunction<F4, 1, 1, 1>(new F4),
+                           NULL,
+                           &x1, &x4);
+
+  // Run the solver!
+  Solver::Options options;
+  options.max_num_iterations = 30;
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+
+  Solver::Summary summary;
+
+  std::cout << "Initial x1 = " << x1
+            << ", x2 = " << x2
+            << ", x3 = " << x3
+            << ", x4 = " << x4
+            << "\n";
+
+  Solve(options, &problem, &summary);
+
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "Final x1 = " << x1
+            << ", x2 = " << x2
+            << ", x3 = " << x3
+            << ", x4 = " << x4
+            << "\n";
+  return 0;
+}
diff --git a/examples/quadratic.cc b/examples/quadratic.cc
new file mode 100644
index 0000000..81ba4f9
--- /dev/null
+++ b/examples/quadratic.cc
@@ -0,0 +1,89 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A simple example of using the Ceres minimizer.
+//
+// Minimize 0.5 (10 - x)^2 using analytic jacobian matrix.
+
+#include <vector>
+
+#include "ceres/ceres.h"
+
+using ceres::SizedCostFunction;
+using ceres::Problem;
+using ceres::Solver;
+using ceres::Solve;
+
+class SimpleCostFunction
+  : public SizedCostFunction<1 /* number of residuals */,
+                             1 /* size of first parameter */> {
+ public:
+  virtual ~SimpleCostFunction() {}
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    double x = parameters[0][0];
+
+    // f(x) = 10 - x.
+    residuals[0] = 10 - x;
+
+    // f'(x) = -1. Since there's only 1 parameter and that parameter
+    // has 1 dimension, there is only 1 element to fill in the
+    // jacobians.
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      jacobians[0][0] = -1;
+    }
+    return true;
+  }
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  // The variable with its initial value that we will be solving for.
+  double x = 5.0;
+
+  // Build the problem.
+  Problem problem;
+  // Set up the only cost function (also known as residual).
+  problem.AddResidualBlock(new SimpleCostFunction, NULL, &x);
+
+  // Run the solver!
+  Solver::Options options;
+  options.max_num_iterations = 10;
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "x : 5.0 -> " << x << "\n";
+  return 0;
+}
diff --git a/examples/quadratic_auto_diff.cc b/examples/quadratic_auto_diff.cc
new file mode 100644
index 0000000..71b216b
--- /dev/null
+++ b/examples/quadratic_auto_diff.cc
@@ -0,0 +1,87 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A simple example of using the Ceres minimizer.
+//
+// Minimize 0.5 (10 - x)^2 using jacobian matrix computed using
+// automatic differentiation.
+
+#include <vector>
+
+#include "ceres/ceres.h"
+
+using ceres::AutoDiffCostFunction;
+using ceres::CostFunction;
+using ceres::Problem;
+using ceres::Solver;
+using ceres::Solve;
+
+// A templated cost function that implements the residual r = 10 - x. The method
+// Map is templated so that we can then use an automatic differentiation wrapper
+// around it to generate its derivatives.
+class QuadraticCostFunction {
+ public:
+  template <typename T> bool operator()(const T* const x, T* residual) const {
+    residual[0] = T(10.0) - x[0];
+    return true;
+  }
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  // The variable to solve for with its initial value.
+  double initial_x = 5.0;
+  double x = initial_x;
+
+  // Build the problem.
+  Problem problem;
+
+  // Set up the only cost function (also known as residual). This uses
+  // auto-differentiation to obtain the derivative (jacobian).
+  problem.AddResidualBlock(
+      new AutoDiffCostFunction<QuadraticCostFunction, 1, 1>(
+          new QuadraticCostFunction),
+      NULL,
+      &x);
+
+  // Run the solver!
+  Solver::Options options;
+  options.max_num_iterations = 10;
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "x : " << initial_x
+            << " -> " << x << "\n";
+  return 0;
+}
diff --git a/examples/quadratic_numeric_diff.cc b/examples/quadratic_numeric_diff.cc
new file mode 100644
index 0000000..933dbc7
--- /dev/null
+++ b/examples/quadratic_numeric_diff.cc
@@ -0,0 +1,91 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Minimize 0.5 (10 - x)^2 using jacobian matrix computed using
+// numeric differentiation.
+
+#include <vector>
+
+#include "ceres/ceres.h"
+
+using ceres::NumericDiffCostFunction;
+using ceres::CENTRAL;
+using ceres::SizedCostFunction;
+using ceres::CostFunction;
+using ceres::Problem;
+using ceres::Solver;
+using ceres::Solve;
+
+class ResidualWithNoDerivative
+  : public SizedCostFunction<1 /* number of residuals */,
+                             1 /* size of first parameter */> {
+ public:
+  virtual ~ResidualWithNoDerivative() {}
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    (void) jacobians;  // Ignored; filled in by numeric differentiation.
+
+    // f(x) = 10 - x.
+    residuals[0] = 10 - parameters[0][0];
+    return true;
+  }
+};
+
+int main(int argc, char** argv) {
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+
+  // The variable to solve for with its initial value.
+  double initial_x = 5.0;
+  double x = initial_x;
+
+  // Set up the only cost function (also known as residual). This uses
+  // numeric differentiation to obtain the derivative (jacobian).
+  CostFunction* cost =
+      new NumericDiffCostFunction<ResidualWithNoDerivative, CENTRAL, 1, 1> (
+          new ResidualWithNoDerivative, ceres::TAKE_OWNERSHIP);
+
+  // Build the problem.
+  Problem problem;
+  problem.AddResidualBlock(cost, NULL, &x);
+
+  // Run the solver!
+  Solver::Options options;
+  options.max_num_iterations = 10;
+  options.linear_solver_type = ceres::DENSE_QR;
+  options.minimizer_progress_to_stdout = true;
+  Solver::Summary summary;
+  Solve(options, &problem, &summary);
+  std::cout << summary.BriefReport() << "\n";
+  std::cout << "x : " << initial_x
+            << " -> " << x << "\n";
+  return 0;
+}
diff --git a/examples/simple_bundle_adjuster.cc b/examples/simple_bundle_adjuster.cc
new file mode 100644
index 0000000..cb1143c
--- /dev/null
+++ b/examples/simple_bundle_adjuster.cc
@@ -0,0 +1,210 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A minimal, self-contained bundle adjuster using Ceres, that reads
+// files from University of Washington' Bundle Adjustment in the Large dataset:
+// http://grail.cs.washington.edu/projects/bal
+//
+// This does not use the best configuration for solving; see the more involved
+// bundle_adjuster.cc file for details.
+
+#include <cmath>
+#include <cstdio>
+#include <iostream>
+
+#include "ceres/ceres.h"
+#include "ceres/rotation.h"
+
+// Read a Bundle Adjustment in the Large dataset.
+class BALProblem {
+ public:
+  ~BALProblem() {
+    delete[] point_index_;
+    delete[] camera_index_;
+    delete[] observations_;
+    delete[] parameters_;
+  }
+
+  int num_observations()       const { return num_observations_;               }
+  const double* observations() const { return observations_;                   }
+  double* mutable_cameras()          { return parameters_;                     }
+  double* mutable_points()           { return parameters_  + 9 * num_cameras_; }
+
+  double* mutable_camera_for_observation(int i) {
+    return mutable_cameras() + camera_index_[i] * 9;
+  }
+  double* mutable_point_for_observation(int i) {
+    return mutable_points() + point_index_[i] * 3;
+  }
+
+  bool LoadFile(const char* filename) {
+    FILE* fptr = fopen(filename, "r");
+    if (fptr == NULL) {
+      return false;
+    };
+
+    FscanfOrDie(fptr, "%d", &num_cameras_);
+    FscanfOrDie(fptr, "%d", &num_points_);
+    FscanfOrDie(fptr, "%d", &num_observations_);
+
+    point_index_ = new int[num_observations_];
+    camera_index_ = new int[num_observations_];
+    observations_ = new double[2 * num_observations_];
+
+    num_parameters_ = 9 * num_cameras_ + 3 * num_points_;
+    parameters_ = new double[num_parameters_];
+
+    for (int i = 0; i < num_observations_; ++i) {
+      FscanfOrDie(fptr, "%d", camera_index_ + i);
+      FscanfOrDie(fptr, "%d", point_index_ + i);
+      for (int j = 0; j < 2; ++j) {
+        FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
+      }
+    }
+
+    for (int i = 0; i < num_parameters_; ++i) {
+      FscanfOrDie(fptr, "%lf", parameters_ + i);
+    }
+    return true;
+  }
+
+ private:
+  template<typename T>
+  void FscanfOrDie(FILE *fptr, const char *format, T *value) {
+    int num_scanned = fscanf(fptr, format, value);
+    if (num_scanned != 1) {
+      LOG(FATAL) << "Invalid UW data file.";
+    }
+  }
+
+  int num_cameras_;
+  int num_points_;
+  int num_observations_;
+  int num_parameters_;
+
+  int* point_index_;
+  int* camera_index_;
+  double* observations_;
+  double* parameters_;
+};
+
+// Templated pinhole camera model for used with Ceres.  The camera is
+// parameterized using 9 parameters: 3 for rotation, 3 for translation, 1 for
+// focal length and 2 for radial distortion. The principal point is not modeled
+// (i.e. it is assumed be located at the image center).
+struct SnavelyReprojectionError {
+  SnavelyReprojectionError(double observed_x, double observed_y)
+      : observed_x(observed_x), observed_y(observed_y) {}
+
+  template <typename T>
+  bool operator()(const T* const camera,
+                  const T* const point,
+                  T* residuals) const {
+    // camera[0,1,2] are the angle-axis rotation.
+    T p[3];
+    ceres::AngleAxisRotatePoint(camera, point, p);
+
+    // camera[3,4,5] are the translation.
+    p[0] += camera[3];
+    p[1] += camera[4];
+    p[2] += camera[5];
+
+    // Compute the center of distortion. The sign change comes from
+    // the camera model that Noah Snavely's Bundler assumes, whereby
+    // the camera coordinate system has a negative z axis.
+    const T& focal = camera[6];
+    T xp = - focal * p[0] / p[2];
+    T yp = - focal * p[1] / p[2];
+
+    // Apply second and fourth order radial distortion.
+    const T& l1 = camera[7];
+    const T& l2 = camera[8];
+    T r2 = xp*xp + yp*yp;
+    T distortion = T(1.0) + r2  * (l1 + l2  * r2);
+
+    // Compute final projected point position.
+    T predicted_x = distortion * xp;
+    T predicted_y = distortion * yp;
+
+    // The error is the difference between the predicted and observed position.
+    residuals[0] = predicted_x - T(observed_x);
+    residuals[1] = predicted_y - T(observed_y);
+
+    return true;
+  }
+
+  double observed_x;
+  double observed_y;
+};
+
+int main(int argc, char** argv) {
+  if (argc != 2) {
+    std::cerr << "usage: simple_bundle_adjuster <bal_problem>\n";
+    return 1;
+  }
+
+  BALProblem bal_problem;
+  if (!bal_problem.LoadFile(argv[1])) {
+    std::cerr << "ERROR: unable to open file " << argv[1] << "\n";
+    return 1;
+  }
+
+  // Create residuals for each observation in the bundle adjustment problem. The
+  // parameters for cameras and points are added automatically.
+  ceres::Problem problem;
+  for (int i = 0; i < bal_problem.num_observations(); ++i) {
+    // Each Residual block takes a point and a camera as input and outputs a 2
+    // dimensional residual. Internally, the cost function stores the observed
+    // image location and compares the reprojection against the observation.
+    ceres::CostFunction* cost_function =
+        new ceres::AutoDiffCostFunction<SnavelyReprojectionError, 2, 9, 3>(
+            new SnavelyReprojectionError(
+                bal_problem.observations()[2 * i + 0],
+                bal_problem.observations()[2 * i + 1]));
+
+    problem.AddResidualBlock(cost_function,
+                             NULL /* squared loss */,
+                             bal_problem.mutable_camera_for_observation(i),
+                             bal_problem.mutable_point_for_observation(i));
+  }
+
+  // Make Ceres automatically detect the bundle structure. Note that the
+  // standard solver, SPARSE_NORMAL_CHOLESKY, also works fine but it is slower
+  // for standard bundle adjustment problems.
+  ceres::Solver::Options options;
+  options.linear_solver_type = ceres::DENSE_SCHUR;
+  options.ordering_type = ceres::SCHUR;
+  options.minimizer_progress_to_stdout = true;
+
+  ceres::Solver::Summary summary;
+  ceres::Solve(options, &problem, &summary);
+  std::cout << summary.FullReport() << "\n";
+  return 0;
+}
diff --git a/examples/snavely_reprojection_error.h b/examples/snavely_reprojection_error.h
new file mode 100644
index 0000000..e43538f
--- /dev/null
+++ b/examples/snavely_reprojection_error.h
@@ -0,0 +1,156 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Templated struct implementing the camera model and residual
+// computation for bundle adjustment used by Noah Snavely's Bundler
+// SfM system. This is also the camera model/residual for the bundle
+// adjustment problems in the BAL dataset. It is templated so that we
+// can use Ceres's automatic differentiation to compute analytic
+// jacobians.
+//
+// For details see: http://phototour.cs.washington.edu/bundler/
+// and http://grail.cs.washington.edu/projects/bal/
+
+#ifndef CERES_EXAMPLES_SNAVELY_REPROJECTION_ERROR_H_
+#define CERES_EXAMPLES_SNAVELY_REPROJECTION_ERROR_H_
+
+#include "ceres/rotation.h"
+
+namespace ceres {
+namespace examples {
+
+// Templated pinhole camera model for used with Ceres.  The camera is
+// parameterized using 9 parameters: 3 for rotation, 3 for translation, 1 for
+// focal length and 2 for radial distortion. The principal point is not modeled
+// (i.e. it is assumed be located at the image center).
+struct SnavelyReprojectionError {
+  SnavelyReprojectionError(double observed_x, double observed_y)
+      : observed_x(observed_x), observed_y(observed_y) {}
+
+  template <typename T>
+  bool operator()(const T* const camera,
+                  const T* const point,
+                  T* residuals) const {
+    // camera[0,1,2] are the angle-axis rotation.
+    T p[3];
+    ceres::AngleAxisRotatePoint(camera, point, p);
+
+    // camera[3,4,5] are the translation.
+    p[0] += camera[3];
+    p[1] += camera[4];
+    p[2] += camera[5];
+
+    // Compute the center of distortion. The sign change comes from
+    // the camera model that Noah Snavely's Bundler assumes, whereby
+    // the camera coordinate system has a negative z axis.
+    const T& focal = camera[6];
+    T xp = - focal * p[0] / p[2];
+    T yp = - focal * p[1] / p[2];
+
+    // Apply second and fourth order radial distortion.
+    const T& l1 = camera[7];
+    const T& l2 = camera[8];
+    T r2 = xp*xp + yp*yp;
+    T distortion = T(1.0) + r2  * (l1 + l2  * r2);
+
+    // Compute final projected point position.
+    T predicted_x = distortion * xp;
+    T predicted_y = distortion * yp;
+
+    // The error is the difference between the predicted and observed position.
+    residuals[0] = predicted_x - T(observed_x);
+    residuals[1] = predicted_y - T(observed_y);
+
+    return true;
+  }
+
+  double observed_x;
+  double observed_y;
+};
+
+// Templated pinhole camera model for used with Ceres.  The camera is
+// parameterized using 10 parameters. 4 for rotation, 3 for
+// translation, 1 for focal length and 2 for radial distortion. The
+// principal point is not modeled (i.e. it is assumed be located at
+// the image center).
+struct SnavelyReprojectionErrorWitQuaternions {
+  // (u, v): the position of the observation with respect to the image
+  // center point.
+  SnavelyReprojectionErrorWitQuaternions(double observed_x, double observed_y)
+      : observed_x(observed_x), observed_y(observed_y) {}
+
+  template <typename T>
+  bool operator()(const T* const camera_rotation,
+                  const T* const camera_translation_and_intrinsics,
+                  const T* const point,
+                  T* residuals) const {
+    const T& focal = camera_translation_and_intrinsics[3];
+    const T& l1 = camera_translation_and_intrinsics[4];
+    const T& l2 = camera_translation_and_intrinsics[5];
+
+    // Use a quaternion rotation that doesn't assume the quaternion is
+    // normalized, since one of the ways to run the bundler is to let Ceres
+    // optimize all 4 quaternion parameters unconstrained.
+    T p[3];
+    QuaternionRotatePoint(camera_rotation, point, p);
+
+    p[0] += camera_translation_and_intrinsics[0];
+    p[1] += camera_translation_and_intrinsics[1];
+    p[2] += camera_translation_and_intrinsics[2];
+
+    // Compute the center of distortion. The sign change comes from
+    // the camera model that Noah Snavely's Bundler assumes, whereby
+    // the camera coordinate system has a negative z axis.
+    T xp = - focal * p[0] / p[2];
+    T yp = - focal * p[1] / p[2];
+
+    // Apply second and fourth order radial distortion.
+    T r2 = xp*xp + yp*yp;
+    T distortion = T(1.0) + r2  * (l1 + l2  * r2);
+
+    // Compute final projected point position.
+    T predicted_x = distortion * xp;
+    T predicted_y = distortion * yp;
+
+    // The error is the difference between the predicted and observed position.
+    residuals[0] = predicted_x - T(observed_x);
+    residuals[1] = predicted_y - T(observed_y);
+
+    return true;
+  }
+
+  double observed_x;
+  double observed_y;
+};
+
+}  // namespace examples
+}  // namespace ceres
+
+#endif  // CERES_EXAMPLES_SNAVELY_REPROJECTION_ERROR_H_
diff --git a/include/ceres/autodiff_cost_function.h b/include/ceres/autodiff_cost_function.h
new file mode 100644
index 0000000..0ac6240
--- /dev/null
+++ b/include/ceres/autodiff_cost_function.h
@@ -0,0 +1,170 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Helpers for making CostFunctions as needed by the least squares framework,
+// with Jacobians computed via automatic differentiation. For more information
+// on automatic differentation, see the wikipedia article at
+// http://en.wikipedia.org/wiki/Automatic_differentiation
+//
+// To get an auto differentiated cost function, you must define a class with a
+// templated operator() (a functor) that computes the cost function in terms of
+// the template parameter T. The autodiff framework substitutes appropriate
+// "jet" objects for T in order to compute the derivative when necessary, but
+// this is hidden, and you should write the function as if T were a scalar type
+// (e.g. a double-precision floating point number).
+//
+// The function must write the computed value in the last argument (the only
+// non-const one) and return true to indicate success.
+//
+// For example, consider a scalar error e = k - x'y, where both x and y are
+// two-dimensional column vector parameters, the prime sign indicates
+// transposition, and k is a constant. The form of this error, which is the
+// difference between a constant and an expression, is a common pattern in least
+// squares problems. For example, the value x'y might be the model expectation
+// for a series of measurements, where there is an instance of the cost function
+// for each measurement k.
+//
+// The actual cost added to the total problem is e^2, or (k - x'k)^2; however,
+// the squaring is implicitly done by the optimization framework.
+//
+// To write an auto-differentiable cost function for the above model, first
+// define the object
+//
+//   class MyScalarCostFunction {
+//     MyScalarCostFunction(double k): k_(k) {}
+//
+//     template <typename T>
+//     bool operator()(const T* const x , const T* const y, T* e) const {
+//       e[0] = T(k_) - x[0] * y[0] + x[1] * y[1];
+//       return true;
+//     }
+//
+//    private:
+//     double k_;
+//   };
+//
+// Note that in the declaration of operator() the input parameters x and y come
+// first, and are passed as const pointers to arrays of T. If there were three
+// input parameters, then the third input parameter would come after y. The
+// output is always the last parameter, and is also a pointer to an array. In
+// the example above, e is a scalar, so only e[0] is set.
+//
+// Then given this class definition, the auto differentiated cost function for
+// it can be constructed as follows.
+//
+//   CostFunction* cost_function
+//       = new AutoDiffCostFunction<MyScalarCostFunction, 1, 2, 2>(
+//           new MyScalarCostFunction(1.0));              ^  ^  ^
+//                                                        |  |  |
+//                            Dimension of residual ------+  |  |
+//                            Dimension of x ----------------+  |
+//                            Dimension of y -------------------+
+//
+// In this example, there is usually an instance for each measumerent of k.
+//
+// In the instantiation above, the template parameters following
+// "MyScalarCostFunction", "1, 2, 2", describe the functor as computing a
+// 1-dimensional output from two arguments, both 2-dimensional.
+//
+// The framework can currently accommodate cost functions of up to 6 independent
+// variables, and there is no limit on the dimensionality of each of them.
+//
+// WARNING #1: Since the functor will get instantiated with different types for
+// T, you must to convert from other numeric types to T before mixing
+// computations with other variables of type T. In the example above, this is
+// seen where instead of using k_ directly, k_ is wrapped with T(k_).
+//
+// WARNING #2: A common beginner's error when first using autodiff cost
+// functions is to get the sizing wrong. In particular, there is a tendency to
+// set the template parameters to (dimension of residual, number of parameters)
+// instead of passing a dimension parameter for *every parameter*. In the
+// example above, that would be <MyScalarCostFunction, 1, 2>, which is missing
+// the last '2' argument. Please be careful when setting the size parameters.
+
+#ifndef CERES_PUBLIC_AUTODIFF_COST_FUNCTION_H_
+#define CERES_PUBLIC_AUTODIFF_COST_FUNCTION_H_
+
+#include <glog/logging.h>
+#include "ceres/internal/autodiff.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/sized_cost_function.h"
+
+namespace ceres {
+
+// A cost function which computes the derivative of the cost with respect to the
+// parameters (a.k.a. the jacobian) using an autodifferentiation framework. The
+// first template argument is the functor object, described in the header
+// comment. The second argument is the dimension of the residual, and subsequent
+// arguments describe the size of the Nth parameter, one per parameter.
+//
+// The constructor, which takes a cost functor, takes ownership of the functor.
+template <typename CostFunctor,
+          int M,        // Number of residuals.
+          int N0,       // Number of parameters in block 0.
+          int N1 = 0,   // Number of parameters in block 1.
+          int N2 = 0,   // Number of parameters in block 2.
+          int N3 = 0,   // Number of parameters in block 3.
+          int N4 = 0,   // Number of parameters in block 4.
+          int N5 = 0>   // Number of parameters in block 5.
+class AutoDiffCostFunction :
+  public SizedCostFunction<M, N0, N1, N2, N3, N4, N5> {
+ public:
+  // Takes ownership of functor.
+  explicit AutoDiffCostFunction(CostFunctor* functor) : functor_(functor) {}
+
+  virtual ~AutoDiffCostFunction() {}
+
+  // Implementation details follow; clients of the autodiff cost function should
+  // not have to examine below here.
+  //
+  // To handle varardic cost functions, some template magic is needed. It's
+  // mostly hidden inside autodiff.h.
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    if (!jacobians) {
+      return internal::VariadicEvaluate<
+          CostFunctor, double, M, N0, N1, N2, N3, N4, N5>
+          ::Call(*functor_, parameters, residuals);
+    }
+    return internal::AutoDiff<CostFunctor, double,
+           M, N0, N1, N2, N3, N4, N5>::Differentiate(*functor_,
+                                                     parameters,
+                                                     residuals,
+                                                     jacobians);
+  }
+
+ private:
+  internal::scoped_ptr<CostFunctor> functor_;
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_AUTODIFF_COST_FUNCTION_H_
diff --git a/include/ceres/build_defs b/include/ceres/build_defs
new file mode 100644
index 0000000..f85413d
--- /dev/null
+++ b/include/ceres/build_defs
@@ -0,0 +1,38 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+# include the following link opts. For a detailed explanation please
+# see https://critique.corp.google.com/#review/28708090
+
+CERES_OPENMP_LINKOPTS = [
+    # The order of these flags is important. For more details see
+    # https://wiki.corp.google.com/twiki/bin/view/Main/OpenMPAtGoogle
+    "-Wl,-Bstatic",
+    "-lgomp",
+    "-Wl,-Bdynamic",
+]
diff --git a/include/ceres/ceres.h b/include/ceres/ceres.h
new file mode 100644
index 0000000..22aaf8f
--- /dev/null
+++ b/include/ceres/ceres.h
@@ -0,0 +1,48 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// This is a forwarding header containing the public symbols exported from
+// Ceres. Anything in the "ceres" namespace is available for use.
+
+#ifndef CERES_PUBLIC_CERES_H_
+#define CERES_PUBLIC_CERES_H_
+
+#include "ceres/autodiff_cost_function.h"
+#include "ceres/cost_function.h"
+#include "ceres/iteration_callback.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/loss_function.h"
+#include "ceres/numeric_diff_cost_function.h"
+#include "ceres/problem.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/solver.h"
+#include "ceres/types.h"
+
+#endif  // CERES_PUBLIC_CERES_H_
diff --git a/include/ceres/conditioned_cost_function.h b/include/ceres/conditioned_cost_function.h
new file mode 100644
index 0000000..498d36e
--- /dev/null
+++ b/include/ceres/conditioned_cost_function.h
@@ -0,0 +1,97 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: wjr@google.com (William Rucklidge)
+//
+// This file contains a cost function that can apply a transformation to
+// each residual value before they are square-summed.
+
+#ifndef CERES_PUBLIC_CONDITIONED_COST_FUNCTION_H_
+#define CERES_PUBLIC_CONDITIONED_COST_FUNCTION_H_
+
+#include <vector>
+
+#include "ceres/cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+// This class allows you to apply different conditioning to the residual
+// values of a wrapped cost function. An example where this is useful is
+// where you have an existing cost function that produces N values, but you
+// want the total cost to be something other than just the sum of these
+// squared values - maybe you want to apply a different scaling to some
+// values, to change their contribution to the cost.
+//
+// Usage:
+//
+//   // my_cost_function produces N residuals
+//   CostFunction* my_cost_function = ...
+//   CHECK_EQ(N, my_cost_function->num_residuals());
+//   vector<CostFunction*> conditioners;
+//
+//   // Make N 1x1 cost functions (1 parameter, 1 residual)
+//   CostFunction* f_1 = ...
+//   conditioners.push_back(f_1);
+//   ...
+//   CostFunction* f_N = ...
+//   conditioners.push_back(f_N);
+//   ConditionedCostFunction* ccf =
+//     new ConditionedCostFunction(my_cost_function, conditioners);
+//
+// Now ccf's residual i (i=0..N-1) will be passed though the i'th conditioner.
+//
+//   ccf_residual[i] = f_i(my_cost_function_residual[i])
+//
+// and the Jacobian will be affected appropriately.
+class ConditionedCostFunction : public CostFunction {
+ public:
+  // Builds a cost function based on a wrapped cost function, and a
+  // per-residual conditioner. Takes ownership of all of the wrapped cost
+  // functions, or not, depending on the ownership parameter. Conditioners
+  // may be NULL, in which case the corresponding residual is not modified.
+  ConditionedCostFunction(CostFunction* wrapped_cost_function,
+                          const vector<CostFunction*>& conditioners,
+                          Ownership ownership);
+  virtual ~ConditionedCostFunction();
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const;
+
+ private:
+  internal::scoped_ptr<CostFunction> wrapped_cost_function_;
+  vector<CostFunction*> conditioners_;
+  Ownership ownership_;
+};
+
+}  // namespace ceres
+
+
+#endif  // CERES_PUBLIC_CONDITIONED_COST_FUNCTION_H_
diff --git a/include/ceres/cost_function.h b/include/ceres/cost_function.h
new file mode 100644
index 0000000..84403d9
--- /dev/null
+++ b/include/ceres/cost_function.h
@@ -0,0 +1,127 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.m (Keir Mierle)
+//
+// This is the interface through which the least squares solver accesses the
+// residual and Jacobian of the least squares problem. Users are expected to
+// subclass CostFunction to define their own terms in the least squares problem.
+//
+// It is recommended that users define templated residual functors for use as
+// arguments for AutoDiffCostFunction (see autodiff_cost_function.h), instead of
+// directly implementing the CostFunction interface. This often results in both
+// shorter code and faster execution than hand-coded derivatives. However,
+// specialized cases may demand direct implementation of the lower-level
+// CostFunction interface; for example, this is true when calling legacy code
+// which is not templated on numeric types.
+
+#ifndef CERES_PUBLIC_COST_FUNCTION_H_
+#define CERES_PUBLIC_COST_FUNCTION_H_
+
+#include <vector>
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+// This class implements the computation of the cost (a.k.a. residual) terms as
+// a function of the input (control) variables, and is the interface for users
+// to describe their least squares problem to Ceres. In other words, this is the
+// modelling layer between users and the Ceres optimizer. The signature of the
+// function (number and sizes of input parameter blocks and number of outputs)
+// is stored in parameter_block_sizes_ and num_residuals_ respectively. User
+// code inheriting from this class is expected to set these two members with the
+// corresponding accessors. This information will be verified by the Problem
+// when added with AddResidualBlock().
+class CostFunction {
+ public:
+  CostFunction() : num_residuals_(0) {}
+
+  virtual ~CostFunction() {}
+
+  // Inputs:
+  //
+  // parameters is an array of pointers to arrays containing the
+  // various parameter blocks. parameters has the same number of
+  // elements as parameter_block_sizes_.  Parameter blocks are in the
+  // same order as parameter_block_sizes_.i.e.,
+  //
+  //   parameters_[i] = double[parameter_block_sizes_[i]]
+  //
+  // Outputs:
+  //
+  // residuals is an array of size num_residuals_.
+  //
+  // jacobians is an array of size parameter_block_sizes_ containing
+  // pointers to storage for jacobian blocks corresponding to each
+  // parameter block. Jacobian blocks are in the same order as
+  // parameter_block_sizes, i.e. jacobians[i], is an
+  // array that contains num_residuals_* parameter_block_sizes_[i]
+  // elements. Each jacobian block is stored in row-major order, i.e.,
+  //
+  //   jacobians[i][r*parameter_block_size_[i] + c] =
+  //                              d residual[r] / d parameters[i][c]
+  //
+  // If jacobians is NULL, then no derivatives are returned; this is
+  // the case when computing cost only. If jacobians[i] is NULL, then
+  // the jacobian block corresponding to the i'th parameter block must
+  // not to be returned.
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const = 0;
+
+  const vector<int16>& parameter_block_sizes() const {
+    return parameter_block_sizes_;
+  }
+
+  int num_residuals() const {
+    return num_residuals_;
+  }
+
+ protected:
+  vector<int16>* mutable_parameter_block_sizes() {
+    return &parameter_block_sizes_;
+  }
+
+  void set_num_residuals(int num_residuals) {
+    num_residuals_ = num_residuals;
+  }
+
+ private:
+  // Cost function signature metadata: number of inputs & their sizes,
+  // number of outputs (residuals).
+  vector<int16> parameter_block_sizes_;
+  int num_residuals_;
+  DISALLOW_COPY_AND_ASSIGN(CostFunction);
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_COST_FUNCTION_H_
diff --git a/include/ceres/internal/autodiff.h b/include/ceres/internal/autodiff.h
new file mode 100644
index 0000000..1a9d396
--- /dev/null
+++ b/include/ceres/internal/autodiff.h
@@ -0,0 +1,374 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Computation of the Jacobian matrix for vector-valued functions of multiple
+// variables, using automatic differentiation based on the implementation of
+// dual numbers in jet.h. Before reading the rest of this file, it is adivsable
+// to read jet.h's header comment in detail.
+//
+// The helper wrapper AutoDiff::Differentiate() computes the jacobian of
+// functors with templated operator() taking this form:
+//
+//   struct F {
+//     template<typename T>
+//     bool operator(const T *x, const T *y, ..., T *z) {
+//       // Compute z[] based on x[], y[], ...
+//       // return true if computation succeeded, false otherwise.
+//     }
+//   };
+//
+// All inputs and outputs may be vector-valued.
+//
+// To understand how jets are used to compute the jacobian, a
+// picture may help. Consider a vector-valued function, F, returning 3
+// dimensions and taking a vector-valued parameter of 4 dimensions:
+//
+//     y            x
+//   [ * ]    F   [ * ]
+//   [ * ]  <---  [ * ]
+//   [ * ]        [ * ]
+//                [ * ]
+//
+// Similar to the 2-parameter example for f described in jet.h, computing the
+// jacobian dy/dx is done by substutiting a suitable jet object for x and all
+// intermediate steps of the computation of F. Since x is has 4 dimensions, use
+// a Jet<double, 4>.
+//
+// Before substituting a jet object for x, the dual components are set
+// appropriately for each dimension of x:
+//
+//          y                       x
+//   [ * | * * * * ]    f   [ * | 1 0 0 0 ]   x0
+//   [ * | * * * * ]  <---  [ * | 0 1 0 0 ]   x1
+//   [ * | * * * * ]        [ * | 0 0 1 0 ]   x2
+//         ---+---          [ * | 0 0 0 1 ]   x3
+//            |                   ^ ^ ^ ^
+//          dy/dx                 | | | +----- infinitesimal for x3
+//                                | | +------- infinitesimal for x2
+//                                | +--------- infinitesimal for x1
+//                                +----------- infinitesimal for x0
+//
+// The reason to set the internal 4x4 submatrix to the identity is that we wish
+// to take the derivative of y separately with respect to each dimension of x.
+// Each column of the 4x4 identity is therefore for a single component of the
+// independent variable x.
+//
+// Then the jacobian of the mapping, dy/dx, is the 3x4 sub-matrix of the
+// extended y vector, indicated in the above diagram.
+//
+// Functors with multiple parameters
+// ---------------------------------
+// In practice, it is often convenient to use a function f of two or more
+// vector-valued parameters, for example, x[3] and z[6]. Unfortunately, the jet
+// framework is designed for a single-parameter vector-valued input. The wrapper
+// in this file addresses this issue adding support for functions with one or
+// more parameter vectors.
+//
+// To support multiple parameters, all the parameter vectors are concatenated
+// into one and treated as a single parameter vector, except that since the
+// functor expects different inputs, we need to construct the jets as if they
+// were part of a single parameter vector. The extended jets are passed
+// separately for each parameter.
+//
+// For example, consider a functor F taking two vector parameters, p[2] and
+// q[3], and producing an output y[4]:
+//
+//   struct F {
+//     template<typename T>
+//     bool operator(const T *p, const T *q, T *z) {
+//       // ...
+//     }
+//   };
+//
+// In this case, the necessary jet type is Jet<double, 5>. Here is a
+// visualization of the jet objects in this case:
+//
+//          Dual components for p ----+
+//                                    |
+//                                   -+-
+//           y                 [ * | 1 0 | 0 0 0 ]    --- p[0]
+//                             [ * | 0 1 | 0 0 0 ]    --- p[1]
+//   [ * | . . | + + + ]         |
+//   [ * | . . | + + + ]         v
+//   [ * | . . | + + + ]  <--- F(p, q)
+//   [ * | . . | + + + ]            ^
+//         ^^^   ^^^^^              |
+//        dy/dp  dy/dq            [ * | 0 0 | 1 0 0 ] --- q[0]
+//                                [ * | 0 0 | 0 1 0 ] --- q[1]
+//                                [ * | 0 0 | 0 0 1 ] --- q[2]
+//                                            --+--
+//                                              |
+//          Dual components for q --------------+
+//
+// where the 4x2 submatrix (marked with ".") and 4x3 submatrix (marked with "+"
+// of y in the above diagram are the derivatives of y with respect to p and q
+// respectively. This is how autodiff works for functors taking multiple vector
+// valued arguments (up to 6).
+//
+// Jacobian NULL pointers
+// ----------------------
+// In general, the functions below will accept NULL pointers for all or some of
+// the Jacobian parameters, meaning that those Jacobians will not be computed.
+
+#ifndef CERES_PUBLIC_INTERNAL_AUTODIFF_H_
+#define CERES_PUBLIC_INTERNAL_AUTODIFF_H_
+
+#include <stddef.h>
+
+#include <glog/logging.h>
+#include "ceres/jet.h"
+#include "ceres/internal/fixed_array.h"
+
+namespace ceres {
+namespace internal {
+
+// Extends src by a 1st order pertubation for every dimension and puts it in
+// dst. The size of src is N. Since this is also used for perturbations in
+// blocked arrays, offset is used to shift which part of the jet the
+// perturbation occurs. This is used to set up the extended x augmented by an
+// identity matrix. The JetT type should be a Jet type, and T should be a
+// numeric type (e.g. double). For example,
+//
+//             0   1 2   3 4 5   6 7 8
+//   dst[0]  [ * | . . | 1 0 0 | . . . ]
+//   dst[1]  [ * | . . | 0 1 0 | . . . ]
+//   dst[2]  [ * | . . | 0 0 1 | . . . ]
+//
+// is what would get put in dst if N was 3, offset was 3, and the jet type JetT
+// was 8-dimensional.
+template <typename JetT, typename T>
+inline void Make1stOrderPerturbation(int offset, int N, const T *src,
+                                     JetT *dst) {
+  DCHECK(src);
+  DCHECK(dst);
+  for (int j = 0; j < N; ++j) {
+    dst[j] = JetT(src[j], offset + j);
+  }
+}
+
+// Takes the 0th order part of src, assumed to be a Jet type, and puts it in
+// dst. This is used to pick out the "vector" part of the extended y.
+template <typename JetT, typename T>
+inline void Take0thOrderPart(int M, const JetT *src, T dst) {
+  DCHECK(src);
+  for (int i = 0; i < M; ++i) {
+    dst[i] = src[i].a;
+  }
+}
+
+// Takes N 1st order parts, starting at index N0, and puts them in the M x N
+// matrix 'dst'. This is used to pick out the "matrix" parts of the extended y.
+template <typename JetT, typename T, int M, int N0, int N>
+inline void Take1stOrderPart(const JetT *src, T *dst) {
+  DCHECK(src);
+  DCHECK(dst);
+  // TODO(keir): Change Jet to use a single array, where v[0] is the
+  // non-infinitesimal part rather than "a". That way it's possible to use a
+  // single memcpy or eigen operation, rather than the explicit loop. The loop
+  // doesn't exploit any SSE or other intrinsics.
+  for (int i = 0; i < M; ++i) {
+    for (int j = 0; j < N; ++j) {
+      dst[N * i + j] = src[i].v[N0 + j];
+    }
+  }
+}
+
+// This block of quasi-repeated code calls the user-supplied functor, which may
+// take a variable number of arguments. This is accomplished by specializing the
+// struct based on the size of the trailing parameters; parameters with 0 size
+// are assumed missing.
+//
+// Supporting variadic functions is the primary source of complexity in the
+// autodiff implementation.
+
+template<typename Functor, typename T, int kNumOutputs,
+         int N0, int N1, int N2, int N3, int N4, int N5>
+struct VariadicEvaluate {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   input[1],
+                   input[2],
+                   input[3],
+                   input[4],
+                   input[5],
+                   output);
+  }
+};
+
+template<typename Functor, typename T, int kNumOutputs,
+         int N0, int N1, int N2, int N3, int N4>
+struct VariadicEvaluate<Functor, T, kNumOutputs, N0, N1, N2, N3, N4, 0> {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   input[1],
+                   input[2],
+                   input[3],
+                   input[4],
+                   output);
+  }
+};
+
+template<typename Functor, typename T, int kNumOutputs,
+         int N0, int N1, int N2, int N3>
+struct VariadicEvaluate<Functor, T, kNumOutputs, N0, N1, N2, N3, 0, 0> {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   input[1],
+                   input[2],
+                   input[3],
+                   output);
+  }
+};
+
+template<typename Functor, typename T, int kNumOutputs,
+         int N0, int N1, int N2>
+struct VariadicEvaluate<Functor, T, kNumOutputs, N0, N1, N2, 0, 0, 0> {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   input[1],
+                   input[2],
+                   output);
+  }
+};
+
+template<typename Functor, typename T, int kNumOutputs,
+         int N0, int N1>
+struct VariadicEvaluate<Functor, T, kNumOutputs, N0, N1, 0, 0, 0, 0> {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   input[1],
+                   output);
+  }
+};
+
+template<typename Functor, typename T, int kNumOutputs, int N0>
+struct VariadicEvaluate<Functor, T, kNumOutputs, N0, 0, 0, 0, 0, 0> {
+  static bool Call(const Functor& functor, T const *const *input, T* output) {
+    return functor(input[0],
+                   output);
+  }
+};
+
+// This is in a struct because default template parameters on a function are not
+// supported in C++03 (though it is available in C++0x). N0 through N5 are the
+// dimension of the input arguments to the user supplied functor.
+template <typename Functor, typename T, int kNumOutputs,
+          int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5=0>
+struct AutoDiff {
+  static bool Differentiate(const Functor& functor,
+                            T const *const *parameters,
+                            T *function_value,
+                            T **jacobians) {
+    typedef Jet<T, N0 + N1 + N2 + N3 + N4 + N5> JetT;
+
+    DCHECK_GT(N0, 0)
+        << "Cost functions must have at least one parameter block.";
+    DCHECK((!N1 && !N2 && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && !N2 && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0)))
+        << "Zero block cannot precede a non-zero block. Block sizes are "
+        << "(ignore trailing 0s): " << N0 << ", " << N1 << ", " << N2 << ", "
+        << N3 << ", " << N4 << ", " << N5;
+
+    DCHECK_GT(kNumOutputs, 0);
+
+    FixedArray<JetT, (256 * 7) / sizeof(JetT)> x(
+        N0 + N1 + N2 + N3 + N4 + N5 + kNumOutputs);
+
+    // It's ugly, but it works.
+    const int jet0 = 0;
+    const int jet1 = N0;
+    const int jet2 = N0 + N1;
+    const int jet3 = N0 + N1 + N2;
+    const int jet4 = N0 + N1 + N2 + N3;
+    const int jet5 = N0 + N1 + N2 + N3 + N4;
+    const int jet6 = N0 + N1 + N2 + N3 + N4 + N5;
+
+    const JetT *unpacked_parameters[6] = {
+        x.get() + jet0,
+        x.get() + jet1,
+        x.get() + jet2,
+        x.get() + jet3,
+        x.get() + jet4,
+        x.get() + jet5,
+    };
+    JetT *output = x.get() + jet6;
+
+#define CERES_MAKE_1ST_ORDER_PERTURBATION(i) \
+    if (N ## i) { \
+      internal::Make1stOrderPerturbation(jet ## i, \
+                                         N ## i, \
+                                         parameters[i], \
+                                         x.get() + jet ## i); \
+    }
+    CERES_MAKE_1ST_ORDER_PERTURBATION(0);
+    CERES_MAKE_1ST_ORDER_PERTURBATION(1);
+    CERES_MAKE_1ST_ORDER_PERTURBATION(2);
+    CERES_MAKE_1ST_ORDER_PERTURBATION(3);
+    CERES_MAKE_1ST_ORDER_PERTURBATION(4);
+    CERES_MAKE_1ST_ORDER_PERTURBATION(5);
+#undef CERES_MAKE_1ST_ORDER_PERTURBATION
+
+    if (!VariadicEvaluate<Functor, JetT, kNumOutputs,
+                          N0, N1, N2, N3, N4, N5>::Call(
+        functor, unpacked_parameters, output)) {
+      return false;
+    }
+
+    internal::Take0thOrderPart(kNumOutputs, output, function_value);
+
+#define CERES_TAKE_1ST_ORDER_PERTURBATION(i) \
+    if (N ## i) { \
+      if (jacobians[i]) { \
+        internal::Take1stOrderPart<JetT, T, \
+                                   kNumOutputs, \
+                                   jet ## i, \
+                                   N ## i>(output, \
+                                          jacobians[i]); \
+      } \
+    }
+    CERES_TAKE_1ST_ORDER_PERTURBATION(0);
+    CERES_TAKE_1ST_ORDER_PERTURBATION(1);
+    CERES_TAKE_1ST_ORDER_PERTURBATION(2);
+    CERES_TAKE_1ST_ORDER_PERTURBATION(3);
+    CERES_TAKE_1ST_ORDER_PERTURBATION(4);
+    CERES_TAKE_1ST_ORDER_PERTURBATION(5);
+#undef CERES_TAKE_1ST_ORDER_PERTURBATION
+    return true;
+  }
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_INTERNAL_AUTODIFF_H_
diff --git a/include/ceres/internal/eigen.h b/include/ceres/internal/eigen.h
new file mode 100644
index 0000000..be76f9e
--- /dev/null
+++ b/include/ceres/internal/eigen.h
@@ -0,0 +1,80 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_EIGEN_H_
+#define CERES_INTERNAL_EIGEN_H_
+
+#include "Eigen/Core"
+
+namespace ceres {
+
+using Eigen::Dynamic;
+using Eigen::RowMajor;
+
+typedef Eigen::Matrix<double, Dynamic, 1> Vector;
+typedef Eigen::Matrix<double, Dynamic, Dynamic, RowMajor> Matrix;
+typedef Eigen::Map<Vector> VectorRef;
+typedef Eigen::Map<Matrix> MatrixRef;
+typedef Eigen::Map<Matrix, Eigen::Aligned> AlignedMatrixRef;
+typedef Eigen::Map<const Vector> ConstVectorRef;
+typedef Eigen::Map<const Matrix, Eigen::Aligned> ConstAlignedMatrixRef;
+typedef Eigen::Map<const Matrix> ConstMatrixRef;
+
+// C++ does not support templated typdefs, thus the need for this
+// struct so that we can support statically sized Matrix and Maps.
+template <int num_rows = Eigen::Dynamic, int num_cols = Eigen::Dynamic>
+struct EigenTypes {
+  typedef Eigen::Matrix <double, num_rows, num_cols, RowMajor>
+  Matrix;
+
+  typedef Eigen::Map<
+    Eigen::Matrix<double, num_rows, num_cols, RowMajor> >
+  MatrixRef;
+
+  typedef Eigen::Matrix <double, num_rows, 1>
+  Vector;
+
+  typedef Eigen::Map <
+    Eigen::Matrix<double, num_rows, 1> >
+  VectorRef;
+
+
+  typedef Eigen::Map<
+    const Eigen::Matrix<double, num_rows, num_cols, RowMajor> >
+  ConstMatrixRef;
+
+  typedef Eigen::Map <
+    const Eigen::Matrix<double, num_rows, 1> >
+  ConstVectorRef;
+};
+
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_EIGEN_H_
diff --git a/include/ceres/internal/fixed_array.h b/include/ceres/internal/fixed_array.h
new file mode 100644
index 0000000..29ef157
--- /dev/null
+++ b/include/ceres/internal/fixed_array.h
@@ -0,0 +1,187 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: rennie@google.com (Jeffrey Rennie)
+// Author: sanjay@google.com (Sanjay Ghemawat) -- renamed to FixedArray
+
+#ifndef CERES_PUBLIC_INTERNAL_FIXED_ARRAY_H_
+#define CERES_PUBLIC_INTERNAL_FIXED_ARRAY_H_
+
+#include <cstddef>
+#include <glog/logging.h>
+#include "ceres/internal/manual_constructor.h"
+
+namespace ceres {
+namespace internal {
+
+// A FixedArray<T> represents a non-resizable array of T where the
+// length of the array does not need to be a compile time constant.
+//
+// FixedArray allocates small arrays inline, and large arrays on
+// the heap.  It is a good replacement for non-standard and deprecated
+// uses of alloca() and variable length arrays (a GCC extension).
+//
+// FixedArray keeps performance fast for small arrays, because it
+// avoids heap operations.  It also helps reduce the chances of
+// accidentally overflowing your stack if large input is passed to
+// your function.
+//
+// Also, FixedArray is useful for writing portable code.  Not all
+// compilers support arrays of dynamic size.
+
+// Most users should not specify an inline_elements argument and let
+// FixedArray<> automatically determine the number of elements
+// to store inline based on sizeof(T).
+//
+// If inline_elements is specified, the FixedArray<> implementation
+// will store arrays of length <= inline_elements inline.
+//
+// Finally note that unlike vector<T> FixedArray<T> will not zero-initialize
+// simple types like int, double, bool, etc.
+//
+// Non-POD types will be default-initialized just like regular vectors or
+// arrays.
+
+template <typename T, ssize_t inline_elements = -1>
+class FixedArray {
+ public:
+  // For playing nicely with stl:
+  typedef T value_type;
+  typedef T* iterator;
+  typedef T const* const_iterator;
+  typedef T& reference;
+  typedef T const& const_reference;
+  typedef T* pointer;
+  typedef std::ptrdiff_t difference_type;
+  typedef size_t size_type;
+
+  // REQUIRES: n >= 0
+  // Creates an array object that can store "n" elements.
+  //
+  // FixedArray<T> will not zero-initialiaze POD (simple) types like int,
+  // double, bool, etc.
+  // Non-POD types will be default-initialized just like regular vectors or
+  // arrays.
+  explicit FixedArray(size_type n);
+
+  // Releases any resources.
+  ~FixedArray();
+
+  // Returns the length of the array.
+  inline size_type size() const { return size_; }
+
+  // Returns the memory size of the array in bytes.
+  inline size_t memsize() const { return size_ * sizeof(T); }
+
+  // Returns a pointer to the underlying element array.
+  inline const T* get() const { return &array_[0].element; }
+  inline T* get() { return &array_[0].element; }
+
+  // REQUIRES: 0 <= i < size()
+  // Returns a reference to the "i"th element.
+  inline T& operator[](size_type i) {
+    DCHECK_GE(i, 0);
+    DCHECK_LT(i, size_);
+    return array_[i].element;
+  }
+
+  // REQUIRES: 0 <= i < size()
+  // Returns a reference to the "i"th element.
+  inline const T& operator[](size_type i) const {
+    DCHECK_GE(i, 0);
+    DCHECK_LT(i, size_);
+    return array_[i].element;
+  }
+
+  inline iterator begin() { return &array_[0].element; }
+  inline iterator end() { return &array_[size_].element; }
+
+  inline const_iterator begin() const { return &array_[0].element; }
+  inline const_iterator end() const { return &array_[size_].element; }
+
+ private:
+  // Container to hold elements of type T.  This is necessary to handle
+  // the case where T is a a (C-style) array.  The size of InnerContainer
+  // and T must be the same, otherwise callers' assumptions about use
+  // of this code will be broken.
+  struct InnerContainer {
+    T element;
+  };
+
+  // How many elements should we store inline?
+  //   a. If not specified, use a default of 256 bytes (256 bytes
+  //      seems small enough to not cause stack overflow or unnecessary
+  //      stack pollution, while still allowing stack allocation for
+  //      reasonably long character arrays.
+  //   b. Never use 0 length arrays (not ISO C++)
+  static const size_type S1 = ((inline_elements < 0)
+                               ? (256/sizeof(T)) : inline_elements);
+  static const size_type S2 = (S1 <= 0) ? 1 : S1;
+  static const size_type kInlineElements = S2;
+
+  size_type const       size_;
+  InnerContainer* const array_;
+
+  // Allocate some space, not an array of elements of type T, so that we can
+  // skip calling the T constructors and destructors for space we never use.
+  ManualConstructor<InnerContainer> inline_space_[kInlineElements];
+};
+
+// Implementation details follow
+
+template <class T, ssize_t S>
+inline FixedArray<T, S>::FixedArray(FixedArray<T, S>::size_type n)
+    : size_(n),
+      array_((n <= kInlineElements
+              ? reinterpret_cast<InnerContainer*>(inline_space_)
+              : new InnerContainer[n])) {
+  DCHECK_GE(n, 0);
+
+  // Construct only the elements actually used.
+  if (array_ == reinterpret_cast<InnerContainer*>(inline_space_)) {
+    for (int i = 0; i != size_; ++i) {
+      inline_space_[i].Init();
+    }
+  }
+}
+
+template <class T, ssize_t S>
+inline FixedArray<T, S>::~FixedArray() {
+  if (array_ != reinterpret_cast<InnerContainer*>(inline_space_)) {
+    delete[] array_;
+  } else {
+    for (int i = 0; i != size_; ++i) {
+      inline_space_[i].Destroy();
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_INTERNAL_FIXED_ARRAY_H_
diff --git a/include/ceres/internal/macros.h b/include/ceres/internal/macros.h
new file mode 100644
index 0000000..05d6287
--- /dev/null
+++ b/include/ceres/internal/macros.h
@@ -0,0 +1,153 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+//
+// Various Google-specific macros.
+//
+// This code is compiled directly on many platforms, including client
+// platforms like Windows, Mac, and embedded systems.  Before making
+// any changes here, make sure that you're not breaking any platforms.
+
+#ifndef CERES_PUBLIC_INTERNAL_MACROS_H_
+#define CERES_PUBLIC_INTERNAL_MACROS_H_
+
+#include <cstddef>  // For size_t.
+
+// A macro to disallow the copy constructor and operator= functions
+// This should be used in the private: declarations for a class
+//
+// For disallowing only assign or copy, write the code directly, but declare
+// the intend in a comment, for example:
+// void operator=(const TypeName&);  // DISALLOW_ASSIGN
+// Note, that most uses of DISALLOW_ASSIGN and DISALLOW_COPY are broken
+// semantically, one should either use disallow both or neither. Try to
+// avoid these in new code.
+#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
+  TypeName(const TypeName&);               \
+  void operator=(const TypeName&)
+
+// A macro to disallow all the implicit constructors, namely the
+// default constructor, copy constructor and operator= functions.
+//
+// This should be used in the private: declarations for a class
+// that wants to prevent anyone from instantiating it. This is
+// especially useful for classes containing only static methods.
+#define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
+  TypeName();                                    \
+  DISALLOW_COPY_AND_ASSIGN(TypeName)
+
+// The arraysize(arr) macro returns the # of elements in an array arr.
+// The expression is a compile-time constant, and therefore can be
+// used in defining new arrays, for example.  If you use arraysize on
+// a pointer by mistake, you will get a compile-time error.
+//
+// One caveat is that arraysize() doesn't accept any array of an
+// anonymous type or a type defined inside a function.  In these rare
+// cases, you have to use the unsafe ARRAYSIZE() macro below.  This is
+// due to a limitation in C++'s template system.  The limitation might
+// eventually be removed, but it hasn't happened yet.
+
+// This template function declaration is used in defining arraysize.
+// Note that the function doesn't need an implementation, as we only
+// use its type.
+template <typename T, size_t N>
+char (&ArraySizeHelper(T (&array)[N]))[N];
+
+// That gcc wants both of these prototypes seems mysterious. VC, for
+// its part, can't decide which to use (another mystery). Matching of
+// template overloads: the final frontier.
+#ifndef COMPILER_MSVC
+template <typename T, size_t N>
+char (&ArraySizeHelper(const T (&array)[N]))[N];
+#endif
+
+#define arraysize(array) (sizeof(ArraySizeHelper(array)))
+
+// ARRAYSIZE performs essentially the same calculation as arraysize,
+// but can be used on anonymous types or types defined inside
+// functions.  It's less safe than arraysize as it accepts some
+// (although not all) pointers.  Therefore, you should use arraysize
+// whenever possible.
+//
+// The expression ARRAYSIZE(a) is a compile-time constant of type
+// size_t.
+//
+// ARRAYSIZE catches a few type errors.  If you see a compiler error
+//
+//   "warning: division by zero in ..."
+//
+// when using ARRAYSIZE, you are (wrongfully) giving it a pointer.
+// You should only use ARRAYSIZE on statically allocated arrays.
+//
+// The following comments are on the implementation details, and can
+// be ignored by the users.
+//
+// ARRAYSIZE(arr) works by inspecting sizeof(arr) (the # of bytes in
+// the array) and sizeof(*(arr)) (the # of bytes in one array
+// element).  If the former is divisible by the latter, perhaps arr is
+// indeed an array, in which case the division result is the # of
+// elements in the array.  Otherwise, arr cannot possibly be an array,
+// and we generate a compiler error to prevent the code from
+// compiling.
+//
+// Since the size of bool is implementation-defined, we need to cast
+// !(sizeof(a) & sizeof(*(a))) to size_t in order to ensure the final
+// result has type size_t.
+//
+// This macro is not perfect as it wrongfully accepts certain
+// pointers, namely where the pointer size is divisible by the pointee
+// size.  Since all our code has to go through a 32-bit compiler,
+// where a pointer is 4 bytes, this means all pointers to a type whose
+// size is 3 or greater than 4 will be (righteously) rejected.
+//
+// Kudos to Jorg Brown for this simple and elegant implementation.
+//
+// - wan 2005-11-16
+//
+// Starting with Visual C++ 2005, WinNT.h includes ARRAYSIZE.
+#if !defined(COMPILER_MSVC) || (defined(_MSC_VER) && _MSC_VER < 1400)
+#define ARRAYSIZE(a) \
+  ((sizeof(a) / sizeof(*(a))) / \
+   static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))
+#endif
+
+// Tell the compiler to warn about unused return values for functions declared
+// with this macro.  The macro should be used on function declarations
+// following the argument list:
+//
+//   Sprocket* AllocateSprocket() MUST_USE_RESULT;
+//
+#undef MUST_USE_RESULT
+#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) \
+  && !defined(COMPILER_ICC)
+#define MUST_USE_RESULT __attribute__ ((warn_unused_result))
+#else
+#define MUST_USE_RESULT
+#endif
+
+#endif  // CERES_PUBLIC_INTERNAL_MACROS_H_
diff --git a/include/ceres/internal/manual_constructor.h b/include/ceres/internal/manual_constructor.h
new file mode 100644
index 0000000..a1d1f44
--- /dev/null
+++ b/include/ceres/internal/manual_constructor.h
@@ -0,0 +1,214 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: kenton@google.com (Kenton Varda)
+//
+// ManualConstructor statically-allocates space in which to store some
+// object, but does not initialize it.  You can then call the constructor
+// and destructor for the object yourself as you see fit.  This is useful
+// for memory management optimizations, where you want to initialize and
+// destroy an object multiple times but only allocate it once.
+//
+// (When I say ManualConstructor statically allocates space, I mean that
+// the ManualConstructor object itself is forced to be the right size.)
+
+#ifndef CERES_PUBLIC_INTERNAL_MANUAL_CONSTRUCTOR_H_
+#define CERES_PUBLIC_INTERNAL_MANUAL_CONSTRUCTOR_H_
+
+#include <new>
+
+namespace ceres {
+namespace internal {
+
+// ------- Define ALIGNED_CHAR_ARRAY --------------------------------
+
+#ifndef ALIGNED_CHAR_ARRAY
+
+// Because MSVC and older GCCs require that the argument to their alignment
+// construct to be a literal constant integer, we use a template instantiated
+// at all the possible powers of two.
+template<int alignment, int size> struct AlignType { };
+template<int size> struct AlignType<0, size> { typedef char result[size]; };
+#if defined(_MSC_VER)
+#define BASE_PORT_H_ALIGN_ATTRIBUTE(X) __declspec(align(X))
+#define BASE_PORT_H_ALIGN_OF(T) __alignof(T)
+#elif defined(__GNUC__)
+#define BASE_PORT_H_ALIGN_ATTRIBUTE(X) __attribute__((aligned(X)))
+#define BASE_PORT_H_ALIGN_OF(T) __alignof__(T)
+#endif
+
+#if defined(BASE_PORT_H_ALIGN_ATTRIBUTE)
+
+#define BASE_PORT_H_ALIGNTYPE_TEMPLATE(X) \
+  template<int size> struct AlignType<X, size> { \
+    typedef BASE_PORT_H_ALIGN_ATTRIBUTE(X) char result[size]; \
+  }
+
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(1);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(2);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(4);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(8);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(16);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(32);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(64);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(128);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(256);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(512);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(1024);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(2048);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(4096);
+BASE_PORT_H_ALIGNTYPE_TEMPLATE(8192);
+// Any larger and MSVC++ will complain.
+
+#define ALIGNED_CHAR_ARRAY(T, Size) \
+  typename AlignType<BASE_PORT_H_ALIGN_OF(T), sizeof(T) * Size>::result
+
+#undef BASE_PORT_H_ALIGNTYPE_TEMPLATE
+#undef BASE_PORT_H_ALIGN_ATTRIBUTE
+
+#else  // defined(BASE_PORT_H_ALIGN_ATTRIBUTE)
+#define ALIGNED_CHAR_ARRAY you_must_define_ALIGNED_CHAR_ARRAY_for_your_compiler
+#endif // defined(BASE_PORT_H_ALIGN_ATTRIBUTE)
+
+#undef BASE_PORT_H_ALIGNTYPE_TEMPLATE
+#undef BASE_PORT_H_ALIGN_ATTRIBUTE
+
+#endif  // ALIGNED_CHAR_ARRAY
+
+template <typename Type>
+class ManualConstructor {
+ public:
+  // No constructor or destructor because one of the most useful uses of
+  // this class is as part of a union, and members of a union cannot have
+  // constructors or destructors.  And, anyway, the whole point of this
+  // class is to bypass these.
+
+  inline Type* get() {
+    return reinterpret_cast<Type*>(space_);
+  }
+  inline const Type* get() const  {
+    return reinterpret_cast<const Type*>(space_);
+  }
+
+  inline Type* operator->() { return get(); }
+  inline const Type* operator->() const { return get(); }
+
+  inline Type& operator*() { return *get(); }
+  inline const Type& operator*() const { return *get(); }
+
+  // You can pass up to four constructor arguments as arguments of Init().
+  inline void Init() {
+    new(space_) Type;
+  }
+
+  template <typename T1>
+  inline void Init(const T1& p1) {
+    new(space_) Type(p1);
+  }
+
+  template <typename T1, typename T2>
+  inline void Init(const T1& p1, const T2& p2) {
+    new(space_) Type(p1, p2);
+  }
+
+  template <typename T1, typename T2, typename T3>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3) {
+    new(space_) Type(p1, p2, p3);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) {
+    new(space_) Type(p1, p2, p3, p4);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5) {
+    new(space_) Type(p1, p2, p3, p4, p5);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6, typename T7>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6, const T7& p7) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6, p7);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6, typename T7, typename T8>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6, const T7& p7, const T8& p8) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6, p7, p8);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6, typename T7, typename T8, typename T9>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6, const T7& p7, const T8& p8,
+                   const T9& p9) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6, typename T7, typename T8, typename T9, typename T10>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6, const T7& p7, const T8& p8,
+                   const T9& p9, const T10& p10) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10);
+  }
+
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+            typename T6, typename T7, typename T8, typename T9, typename T10,
+            typename T11>
+  inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4,
+                   const T5& p5, const T6& p6, const T7& p7, const T8& p8,
+                   const T9& p9, const T10& p10, const T11& p11) {
+    new(space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11);
+  }
+
+  inline void Destroy() {
+    get()->~Type();
+  }
+
+ private:
+  ALIGNED_CHAR_ARRAY(Type, 1) space_;
+};
+
+#undef ALIGNED_CHAR_ARRAY
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_INTERNAL_MANUAL_CONSTRUCTOR_H_
diff --git a/include/ceres/internal/port.h b/include/ceres/internal/port.h
new file mode 100644
index 0000000..9a3e5cc
--- /dev/null
+++ b/include/ceres/internal/port.h
@@ -0,0 +1,44 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_PUBLIC_INTERNAL_PORT_H_
+#define CERES_PUBLIC_INTERNAL_PORT_H_
+
+namespace ceres {
+
+// It is unfortunate that this import of the entire standard namespace is
+// necessary. The reasons are historical and won't be explained here, but
+// suffice to say it is not a mistake and can't be removed without breaking
+// things outside of the Ceres optimization package.
+using namespace std;
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_INTERNAL_PORT_H_
diff --git a/include/ceres/internal/scoped_ptr.h b/include/ceres/internal/scoped_ptr.h
new file mode 100644
index 0000000..44f198b
--- /dev/null
+++ b/include/ceres/internal/scoped_ptr.h
@@ -0,0 +1,311 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: jorg@google.com (Jorg Brown)
+//
+// This is an implementation designed to match the anticipated future TR2
+// implementation of the scoped_ptr class, and its closely-related brethren,
+// scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
+
+#ifndef CERES_PUBLIC_INTERNAL_SCOPED_PTR_H_
+#define CERES_PUBLIC_INTERNAL_SCOPED_PTR_H_
+
+#include <assert.h>
+#include <stdlib.h>
+#include <cstddef>
+
+namespace ceres {
+namespace internal {
+
+template <class C> class scoped_ptr;
+template <class C, class Free> class scoped_ptr_malloc;
+template <class C> class scoped_array;
+
+template <class C>
+scoped_ptr<C> make_scoped_ptr(C *);
+
+// A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
+// automatically deletes the pointer it holds (if any). That is, scoped_ptr<T>
+// owns the T object that it points to. Like a T*, a scoped_ptr<T> may hold
+// either NULL or a pointer to a T object. Also like T*, scoped_ptr<T> is
+// thread-compatible, and once you dereference it, you get the threadsafety
+// guarantees of T.
+//
+// The size of a scoped_ptr is small: sizeof(scoped_ptr<C>) == sizeof(C*)
+template <class C>
+class scoped_ptr {
+ public:
+
+  // The element type
+  typedef C element_type;
+
+  // Constructor.  Defaults to intializing with NULL.
+  // There is no way to create an uninitialized scoped_ptr.
+  // The input parameter must be allocated with new.
+  explicit scoped_ptr(C* p = NULL) : ptr_(p) { }
+
+  // Destructor.  If there is a C object, delete it.
+  // We don't need to test ptr_ == NULL because C++ does that for us.
+  ~scoped_ptr() {
+    enum { type_must_be_complete = sizeof(C) };
+    delete ptr_;
+  }
+
+  // Reset.  Deletes the current owned object, if any.
+  // Then takes ownership of a new object, if given.
+  // this->reset(this->get()) works.
+  void reset(C* p = NULL) {
+    if (p != ptr_) {
+      enum { type_must_be_complete = sizeof(C) };
+      delete ptr_;
+      ptr_ = p;
+    }
+  }
+
+  // Accessors to get the owned object.
+  // operator* and operator-> will assert() if there is no current object.
+  C& operator*() const {
+    assert(ptr_ != NULL);
+    return *ptr_;
+  }
+  C* operator->() const  {
+    assert(ptr_ != NULL);
+    return ptr_;
+  }
+  C* get() const { return ptr_; }
+
+  // Comparison operators.
+  // These return whether a scoped_ptr and a raw pointer refer to
+  // the same object, not just to two different but equal objects.
+  bool operator==(const C* p) const { return ptr_ == p; }
+  bool operator!=(const C* p) const { return ptr_ != p; }
+
+  // Swap two scoped pointers.
+  void swap(scoped_ptr& p2) {
+    C* tmp = ptr_;
+    ptr_ = p2.ptr_;
+    p2.ptr_ = tmp;
+  }
+
+  // Release a pointer.
+  // The return value is the current pointer held by this object.
+  // If this object holds a NULL pointer, the return value is NULL.
+  // After this operation, this object will hold a NULL pointer,
+  // and will not own the object any more.
+  C* release() {
+    C* retVal = ptr_;
+    ptr_ = NULL;
+    return retVal;
+  }
+
+ private:
+  C* ptr_;
+
+  // google3 friend class that can access copy ctor (although if it actually
+  // calls a copy ctor, there will be a problem) see below
+  friend scoped_ptr<C> make_scoped_ptr<C>(C *p);
+
+  // Forbid comparison of scoped_ptr types.  If C2 != C, it totally doesn't
+  // make sense, and if C2 == C, it still doesn't make sense because you should
+  // never have the same object owned by two different scoped_ptrs.
+  template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
+  template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
+
+  // Disallow evil constructors
+  scoped_ptr(const scoped_ptr&);
+  void operator=(const scoped_ptr&);
+};
+
+// Free functions
+template <class C>
+inline void swap(scoped_ptr<C>& p1, scoped_ptr<C>& p2) {
+  p1.swap(p2);
+}
+
+template <class C>
+inline bool operator==(const C* p1, const scoped_ptr<C>& p2) {
+  return p1 == p2.get();
+}
+
+template <class C>
+inline bool operator==(const C* p1, const scoped_ptr<const C>& p2) {
+  return p1 == p2.get();
+}
+
+template <class C>
+inline bool operator!=(const C* p1, const scoped_ptr<C>& p2) {
+  return p1 != p2.get();
+}
+
+template <class C>
+inline bool operator!=(const C* p1, const scoped_ptr<const C>& p2) {
+  return p1 != p2.get();
+}
+
+template <class C>
+scoped_ptr<C> make_scoped_ptr(C *p) {
+  // This does nothing but to return a scoped_ptr of the type that the passed
+  // pointer is of.  (This eliminates the need to specify the name of T when
+  // making a scoped_ptr that is used anonymously/temporarily.)  From an
+  // access control point of view, we construct an unnamed scoped_ptr here
+  // which we return and thus copy-construct.  Hence, we need to have access
+  // to scoped_ptr::scoped_ptr(scoped_ptr const &).  However, it is guaranteed
+  // that we never actually call the copy constructor, which is a good thing
+  // as we would call the temporary's object destructor (and thus delete p)
+  // if we actually did copy some object, here.
+  return scoped_ptr<C>(p);
+}
+
+// scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
+// with new [] and the destructor deletes objects with delete [].
+//
+// As with scoped_ptr<C>, a scoped_array<C> either points to an object
+// or is NULL.  A scoped_array<C> owns the object that it points to.
+// scoped_array<T> is thread-compatible, and once you index into it,
+// the returned objects have only the threadsafety guarantees of T.
+//
+// Size: sizeof(scoped_array<C>) == sizeof(C*)
+template <class C>
+class scoped_array {
+ public:
+
+  // The element type
+  typedef C element_type;
+
+  // Constructor.  Defaults to intializing with NULL.
+  // There is no way to create an uninitialized scoped_array.
+  // The input parameter must be allocated with new [].
+  explicit scoped_array(C* p = NULL) : array_(p) { }
+
+  // Destructor.  If there is a C object, delete it.
+  // We don't need to test ptr_ == NULL because C++ does that for us.
+  ~scoped_array() {
+    enum { type_must_be_complete = sizeof(C) };
+    delete[] array_;
+  }
+
+  // Reset. Deletes the current owned object, if any.
+  // Then takes ownership of a new object, if given.
+  // this->reset(this->get()) works.
+  void reset(C* p = NULL) {
+    if (p != array_) {
+      enum { type_must_be_complete = sizeof(C) };
+      delete[] array_;
+      array_ = p;
+    }
+  }
+
+  // Get one element of the current object.
+  // Will assert() if there is no current object, or index i is negative.
+  C& operator[](std::ptrdiff_t i) const {
+    assert(i >= 0);
+    assert(array_ != NULL);
+    return array_[i];
+  }
+
+  // Get a pointer to the zeroth element of the current object.
+  // If there is no current object, return NULL.
+  C* get() const {
+    return array_;
+  }
+
+  // Comparison operators.
+  // These return whether a scoped_array and a raw pointer refer to
+  // the same array, not just to two different but equal arrays.
+  bool operator==(const C* p) const { return array_ == p; }
+  bool operator!=(const C* p) const { return array_ != p; }
+
+  // Swap two scoped arrays.
+  void swap(scoped_array& p2) {
+    C* tmp = array_;
+    array_ = p2.array_;
+    p2.array_ = tmp;
+  }
+
+  // Release an array.
+  // The return value is the current pointer held by this object.
+  // If this object holds a NULL pointer, the return value is NULL.
+  // After this operation, this object will hold a NULL pointer,
+  // and will not own the object any more.
+  C* release() {
+    C* retVal = array_;
+    array_ = NULL;
+    return retVal;
+  }
+
+ private:
+  C* array_;
+
+  // Forbid comparison of different scoped_array types.
+  template <class C2> bool operator==(scoped_array<C2> const& p2) const;
+  template <class C2> bool operator!=(scoped_array<C2> const& p2) const;
+
+  // Disallow evil constructors
+  scoped_array(const scoped_array&);
+  void operator=(const scoped_array&);
+};
+
+// Free functions
+template <class C>
+inline void swap(scoped_array<C>& p1, scoped_array<C>& p2) {
+  p1.swap(p2);
+}
+
+template <class C>
+inline bool operator==(const C* p1, const scoped_array<C>& p2) {
+  return p1 == p2.get();
+}
+
+template <class C>
+inline bool operator==(const C* p1, const scoped_array<const C>& p2) {
+  return p1 == p2.get();
+}
+
+template <class C>
+inline bool operator!=(const C* p1, const scoped_array<C>& p2) {
+  return p1 != p2.get();
+}
+
+template <class C>
+inline bool operator!=(const C* p1, const scoped_array<const C>& p2) {
+  return p1 != p2.get();
+}
+
+// This class wraps the c library function free() in a class that can be
+// passed as a template argument to scoped_ptr_malloc below.
+class ScopedPtrMallocFree {
+ public:
+  inline void operator()(void* x) const {
+    free(x);
+  }
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_INTERNAL_SCOPED_PTR_H_
diff --git a/include/ceres/iteration_callback.h b/include/ceres/iteration_callback.h
new file mode 100644
index 0000000..88da992
--- /dev/null
+++ b/include/ceres/iteration_callback.h
@@ -0,0 +1,159 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// When an iteration callback is specified, Ceres calls the callback after each
+// optimizer step and pass it an IterationSummary object, defined below.
+
+#ifndef CERES_PUBLIC_ITERATION_CALLBACK_H_
+#define CERES_PUBLIC_ITERATION_CALLBACK_H_
+
+#include "ceres/types.h"
+
+namespace ceres {
+
+// This struct describes the state of the optimizer after each
+// iteration of the minimization.
+struct IterationSummary {
+  // Current iteration number.
+  int32 iteration;
+
+  // Whether or not the algorithm made progress in this iteration.
+  bool step_is_successful;
+
+  // Value of the objective function.
+  double cost;
+
+  // Change in the value of the objective function in this
+  // iteration. This can be positive or negative. Negative change
+  // means that the step was not successful.
+  double cost_change;
+
+  // Infinity norm of the gradient vector.
+  double gradient_max_norm;
+
+  // 2-norm of the size of the step computed by the optimization
+  // algorithm.
+  double step_norm;
+
+  // For trust region algorithms, the ratio of the actual change in
+  // cost and the change in the cost of the linearized approximation.
+  double relative_decrease;
+
+  // Value of the regularization parameter for Levenberg-Marquardt
+  // algorithm at the end of the current iteration.
+  double mu;
+
+  // For the inexact step Levenberg-Marquardt algorithm, this is the
+  // relative accuracy with which the Newton(LM) step is solved. This
+  // number affects only the iterative solvers capable of solving
+  // linear systems inexactly. Factorization-based exact solvers
+  // ignore it.
+  double eta;
+
+  // Number of iterations taken by the linear solver to solve for the
+  // Newton step.
+  int linear_solver_iterations;
+
+  // TODO(sameeragarwal): Change to use a higher precision timer using
+  // clock_gettime.
+  // Time (in seconds) spent inside the linear least squares solver.
+  int iteration_time_sec;
+
+  // Time (in seconds) spent inside the linear least squares solver.
+  int linear_solver_time_sec;
+};
+
+// Interface for specifying callbacks that are executed at the end of
+// each iteration of the Minimizer. The solver uses the return value
+// of operator() to decide whether to continue solving or to
+// terminate. The user can return three values.
+//
+// SOLVER_ABORT indicates that the callback detected an abnormal
+// situation. The solver returns without updating the parameter blocks
+// (unless Solver::Options::update_state_every_iteration is set
+// true). Solver returns with Solver::Summary::termination_type set to
+// USER_ABORT.
+//
+// SOLVER_TERMINATE_SUCCESSFULLY indicates that there is no need to
+// optimize anymore (some user specified termination criterion has
+// been met). Solver returns with Solver::Summary::termination_type
+// set to USER_SUCCESS.
+//
+// SOLVER_CONTINUE indicates that the solver should continue
+// optimizing.
+//
+// For example, the following Callback is used internally by Ceres to
+// log the progress of the optimization.
+//
+// Callback for logging the state of the minimizer to STDERR or STDOUT
+// depending on the user's preferences and logging level.
+//
+//   class LoggingCallback : public IterationCallback {
+//    public:
+//     explicit LoggingCallback(bool log_to_stdout)
+//         : log_to_stdout_(log_to_stdout) {}
+//
+//     ~LoggingCallback() {}
+//
+//     CallbackReturnType operator()(const IterationSummary& summary) {
+//       const char* kReportRowFormat =
+//           "% 4d: f:% 8e d:% 3.2e g:% 3.2e h:% 3.2e "
+//           "rho:% 3.2e mu:% 3.2e eta:% 3.2e li:% 3d";
+//       string output = StringPrintf(kReportRowFormat,
+//                                    summary.iteration,
+//                                    summary.cost,
+//                                    summary.cost_change,
+//                                    summary.gradient_max_norm,
+//                                    summary.step_norm,
+//                                    summary.relative_decrease,
+//                                    summary.mu,
+//                                    summary.eta,
+//                                    summary.linear_solver_iterations);
+//       if (log_to_stdout_) {
+//         cout << output << endl;
+//       } else {
+//         VLOG(1) << output;
+//       }
+//       return SOLVER_CONTINUE;
+//     }
+//
+//    private:
+//     const bool log_to_stdout_;
+//   };
+//
+class IterationCallback {
+ public:
+  virtual ~IterationCallback() {}
+  virtual CallbackReturnType operator()(const IterationSummary& summary) = 0;
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_ITERATION_CALLBACK_H_
diff --git a/include/ceres/jet.h b/include/ceres/jet.h
new file mode 100644
index 0000000..e42abb5
--- /dev/null
+++ b/include/ceres/jet.h
@@ -0,0 +1,657 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A simple implementation of N-dimensional dual numbers, for automatically
+// computing exact derivatives of functions.
+//
+// While a complete treatment of the mechanics of automatic differentation is
+// beyond the scope of this header (see
+// http://en.wikipedia.org/wiki/Automatic_differentiation for details), the
+// basic idea is to extend normal arithmetic with an extra element, "e," often
+// denoted with the greek symbol epsilon, such that e != 0 but e^2 = 0. Dual
+// numbers are extensions of the real numbers analogous to complex numbers:
+// whereas complex numbers augment the reals by introducing an imaginary unit i
+// such that i^2 = -1, dual numbers introduce an "infinitesimal" unit e such
+// that e^2 = 0. Dual numbers have two components: the "real" component and the
+// "infinitesimal" component, generally written as x + y*e. Surprisingly, this
+// leads to a convenient method for computing exact derivatives without needing
+// to manipulate complicated symbolic expressions.
+//
+// For example, consider the function
+//
+//   f(x) = x^2 ,
+//
+// evaluated at 10. Using normal arithmetic, f(10) = 100, and df/dx(10) = 20.
+// Next, augument 10 with an infinitesimal to get:
+//
+//   f(10 + e) = (10 + e)^2
+//             = 100 + 2 * 10 * e + e^2
+//             = 100 + 20 * e       -+-
+//                     --            |
+//                     |             +--- This is zero, since e^2 = 0
+//                     |
+//                     +----------------- This is df/dx!
+//
+// Note that the derivative of f with respect to x is simply the infinitesimal
+// component of the value of f(x + e). So, in order to take the derivative of
+// any function, it is only necessary to replace the numeric "object" used in
+// the function with one extended with infinitesimals. The class Jet, defined in
+// this header, is one such example of this, where substitution is done with
+// templates.
+//
+// To handle derivatives of functions taking multiple arguments, different
+// infinitesimals are used, one for each variable to take the derivative of. For
+// example, consider a scalar function of two scalar parameters x and y:
+//
+//   f(x, y) = x^2 + x * y
+//
+// Following the technique above, to compute the derivatives df/dx and df/dy for
+// f(1, 3) involves doing two evaluations of f, the first time replacing x with
+// x + e, the second time replacing y with y + e.
+//
+// For df/dx:
+//
+//   f(1 + e, y) = (1 + e)^2 + (1 + e) * 3
+//               = 1 + 2 * e + 3 + 3 * e
+//               = 4 + 5 * e
+//
+//               --> df/dx = 5
+//
+// For df/dy:
+//
+//   f(1, 3 + e) = 1^2 + 1 * (3 + e)
+//               = 1 + 3 + e
+//               = 4 + e
+//
+//               --> df/dy = 1
+//
+// To take the gradient of f with the implementation of dual numbers ("jets") in
+// this file, it is necessary to create a single jet type which has components
+// for the derivative in x and y, and passing them to a templated version of f:
+//
+//   template<typename T>
+//   T f(const T &x, const T &y) {
+//     return x * x + x * y;
+//   }
+//
+//   // The "2" means there should be 2 dual number components.
+//   Jet<double, 2> x(0);  // Pick the 0th dual number for x.
+//   Jet<double, 2> y(1);  // Pick the 1st dual number for y.
+//   Jet<double, 2> z = f(x, y);
+//
+//   LG << "df/dx = " << z.a[0]
+//      << "df/dy = " << z.a[1];
+//
+// Most users should not use Jet objects directly; a wrapper around Jet objects,
+// which makes computing the derivative, gradient, or jacobian of templated
+// functors simple, is in autodiff.h. Even autodiff.h should not be used
+// directly; instead autodiff_cost_function.h is typically the file of interest.
+//
+// For the more mathematically inclined, this file implements first-order
+// "jets". A 1st order jet is an element of the ring
+//
+//   T[N] = T[t_1, ..., t_N] / (t_1, ..., t_N)^2
+//
+// which essentially means that each jet consists of a "scalar" value 'a' from T
+// and a 1st order perturbation vector 'v' of length N:
+//
+//   x = a + \sum_i v[i] t_i
+//
+// A shorthand is to write an element as x = a + u, where u is the pertubation.
+// Then, the main point about the arithmetic of jets is that the product of
+// perturbations is zero:
+//
+//   (a + u) * (b + v) = ab + av + bu + uv
+//                     = ab + (av + bu) + 0
+//
+// which is what operator* implements below. Addition is simpler:
+//
+//   (a + u) + (b + v) = (a + b) + (u + v).
+//
+// The only remaining question is how to evaluate the function of a jet, for
+// which we use the chain rule:
+//
+//   f(a + u) = f(a) + f'(a) u
+//
+// where f'(a) is the (scalar) derivative of f at a.
+//
+// By pushing these things through sufficiently and suitably templated
+// functions, we can do automatic differentiation. Just be sure to turn on
+// function inlining and common-subexpression elimination, or it will be very
+// slow!
+//
+// WARNING: Most Ceres users should not directly include this file or know the
+// details of how jets work. Instead the suggested method for automatic
+// derivatives is to use autodiff_cost_function.h, which is a wrapper around
+// both jets.h and autodiff.h to make taking derivatives of cost functions for
+// use in Ceres easier.
+
+#ifndef CERES_PUBLIC_JET_H_
+#define CERES_PUBLIC_JET_H_
+
+#include <cmath>
+#include <iosfwd>
+#include <iostream>  // NOLINT
+#include <string>
+
+#include "Eigen/Core"
+
+namespace ceres {
+
+template <typename T, int N>
+struct Jet {
+  enum { DIMENSION = N };
+
+  // Default-construct "a" because otherwise this can lead to false errors about
+  // uninitialized uses when other classes relying on default constructed T
+  // (where T is a Jet<T, N>). This usually only happens in opt mode. Note that
+  // the C++ standard mandates that e.g. default constructed doubles are
+  // initialized to 0.0; see sections 8.5 of the C++03 standard.
+  Jet() : a() {}
+
+  // Constructor from scalar: a + 0.
+  explicit Jet(const T& value) {
+    a = value;
+    v.setZero();
+  }
+
+  // Constructor from scalar plus variable: a + t_i.
+  Jet(const T& value, int k) {
+    a = value;
+    v.setZero();
+    v[k] = T(1.0);
+  }
+
+  // Compound operators
+  Jet<T, N>& operator+=(const Jet<T, N> &y) {
+    *this = *this + y;
+    return *this;
+  }
+
+  Jet<T, N>& operator-=(const Jet<T, N> &y) {
+    *this = *this - y;
+    return *this;
+  }
+
+  Jet<T, N>& operator*=(const Jet<T, N> &y) {
+    *this = *this * y;
+    return *this;
+  }
+
+  Jet<T, N>& operator/=(const Jet<T, N> &y) {
+    *this = *this / y;
+    return *this;
+  }
+
+  T a;  // The scalar part.
+  Eigen::Matrix<T, N, 1> v;  // The infinitesimal part.
+};
+
+// Unary +
+template<typename T, int N> inline
+Jet<T, N> const& operator+(const Jet<T, N>& f) {
+  return f;
+}
+
+// TODO(keir): Try adding __attribute__((always_inline)) to these functions to
+// see if it causes a performance increase.
+
+// Unary -
+template<typename T, int N> inline
+Jet<T, N> operator-(const Jet<T, N>&f) {
+  Jet<T, N> g;
+  g.a = -f.a;
+  g.v = -f.v;
+  return g;
+}
+
+// Binary +
+template<typename T, int N> inline
+Jet<T, N> operator+(const Jet<T, N>& f,
+                    const Jet<T, N>& g) {
+  Jet<T, N> h;
+  h.a = f.a + g.a;
+  h.v = f.v + g.v;
+  return h;
+}
+
+// Binary + with a scalar: x + s
+template<typename T, int N> inline
+Jet<T, N> operator+(const Jet<T, N>& f, T s) {
+  Jet<T, N> h;
+  h.a = f.a + s;
+  h.v = f.v;
+  return h;
+}
+
+// Binary + with a scalar: s + x
+template<typename T, int N> inline
+Jet<T, N> operator+(T s, const Jet<T, N>& f) {
+  Jet<T, N> h;
+  h.a = f.a + s;
+  h.v = f.v;
+  return h;
+}
+
+// Binary -
+template<typename T, int N> inline
+Jet<T, N> operator-(const Jet<T, N>& f,
+                    const Jet<T, N>& g) {
+  Jet<T, N> h;
+  h.a = f.a - g.a;
+  h.v = f.v - g.v;
+  return h;
+}
+
+// Binary - with a scalar: x - s
+template<typename T, int N> inline
+Jet<T, N> operator-(const Jet<T, N>& f, T s) {
+  Jet<T, N> h;
+  h.a = f.a - s;
+  h.v = f.v;
+  return h;
+}
+
+// Binary - with a scalar: s - x
+template<typename T, int N> inline
+Jet<T, N> operator-(T s, const Jet<T, N>& f) {
+  Jet<T, N> h;
+  h.a = s - f.a;
+  h.v = -f.v;
+  return h;
+}
+
+// Binary *
+template<typename T, int N> inline
+Jet<T, N> operator*(const Jet<T, N>& f,
+                    const Jet<T, N>& g) {
+  Jet<T, N> h;
+  h.a = f.a * g.a;
+  h.v = f.a * g.v + f.v * g.a;
+  return h;
+}
+
+// Binary * with a scalar: x * s
+template<typename T, int N> inline
+Jet<T, N> operator*(const Jet<T, N>& f, T s) {
+  Jet<T, N> h;
+  h.a = f.a * s;
+  h.v = f.v * s;
+  return h;
+}
+
+// Binary * with a scalar: s * x
+template<typename T, int N> inline
+Jet<T, N> operator*(T s, const Jet<T, N>& f) {
+  Jet<T, N> h;
+  h.a = f.a * s;
+  h.v = f.v * s;
+  return h;
+}
+
+// Binary /
+template<typename T, int N> inline
+Jet<T, N> operator/(const Jet<T, N>& f,
+                    const Jet<T, N>& g) {
+  Jet<T, N> h;
+  // This uses:
+  //
+  //   a + u   (a + u)(b - v)   (a + u)(b - v)
+  //   ----- = -------------- = --------------
+  //   b + v   (b + v)(b - v)        b^2
+  //
+  // which holds because v*v = 0.
+  h.a = f.a / g.a;
+  h.v = (f.v - f.a / g.a * g.v) / g.a;
+  return h;
+}
+
+// Binary / with a scalar: s / x
+template<typename T, int N> inline
+Jet<T, N> operator/(T s, const Jet<T, N>& g) {
+  Jet<T, N> h;
+  h.a = s / g.a;
+  h.v = - s * g.v / (g.a * g.a);
+  return h;
+}
+
+// Binary / with a scalar: x / s
+template<typename T, int N> inline
+Jet<T, N> operator/(const Jet<T, N>& f, T s) {
+  Jet<T, N> h;
+  h.a = f.a / s;
+  h.v = f.v / s;
+  return h;
+}
+
+// Binary comparison operators for both scalars and jets.
+#define CERES_DEFINE_JET_COMPARISON_OPERATOR(op) \
+template<typename T, int N> inline \
+bool operator op(const Jet<T, N>& f, const Jet<T, N>& g) { \
+  return f.a op g.a; \
+} \
+template<typename T, int N> inline \
+bool operator op(const T& s, const Jet<T, N>& g) { \
+  return s op g.a; \
+} \
+template<typename T, int N> inline \
+bool operator op(const Jet<T, N>& f, const T& s) { \
+  return f.a op s; \
+}
+CERES_DEFINE_JET_COMPARISON_OPERATOR( <  )  // NOLINT
+CERES_DEFINE_JET_COMPARISON_OPERATOR( <= )  // NOLINT
+CERES_DEFINE_JET_COMPARISON_OPERATOR( >  )  // NOLINT
+CERES_DEFINE_JET_COMPARISON_OPERATOR( >= )  // NOLINT
+CERES_DEFINE_JET_COMPARISON_OPERATOR( == )  // NOLINT
+CERES_DEFINE_JET_COMPARISON_OPERATOR( != )  // NOLINT
+#undef CERES_DEFINE_JET_COMPARISON_OPERATOR
+
+// Pull some functions from namespace std.
+//
+// This is necessary because we want to use the same name (e.g. 'sqrt') for
+// double-valued and Jet-valued functions, but we are not allowed to put
+// Jet-valued functions inside namespace std.
+//
+// Missing: cosh, sinh, tanh, tan
+// TODO(keir): Switch to "using".
+inline double abs     (double x) { return std::abs(x);      }
+inline double log     (double x) { return std::log(x);      }
+inline double exp     (double x) { return std::exp(x);      }
+inline double sqrt    (double x) { return std::sqrt(x);     }
+inline double cos     (double x) { return std::cos(x);      }
+inline double acos    (double x) { return std::acos(x);     }
+inline double sin     (double x) { return std::sin(x);      }
+inline double asin    (double x) { return std::asin(x);     }
+inline bool   isfinite(double x) { return std::isfinite(x); }
+inline bool   isinf   (double x) { return std::isinf(x);    }
+inline bool   isnan   (double x) { return std::isnan(x);    }
+inline bool   isnormal(double x) { return std::isnormal(x); }
+inline double pow  (double x, double y) { return std::pow(x, y);   }
+inline double atan2(double y, double x) { return std::atan2(y, x); }
+
+// In general, f(a + h) ~= f(a) + f'(a) h, via the chain rule.
+
+// abs(x + h) ~= x + h or -(x + h)
+template <typename T, int N> inline
+Jet<T, N> abs(const Jet<T, N>& f) {
+  return f.a < T(0.0) ? -f : f;
+}
+
+// log(a + h) ~= log(a) + h / a
+template <typename T, int N> inline
+Jet<T, N> log(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = log(f.a);
+  g.v = f.v / f.a;
+  return g;
+}
+
+// exp(a + h) ~= exp(a) + exp(a) h
+template <typename T, int N> inline
+Jet<T, N> exp(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = exp(f.a);
+  g.v = g.a * f.v;
+  return g;
+}
+
+// sqrt(a + h) ~= sqrt(a) + h / (2 sqrt(a))
+template <typename T, int N> inline
+Jet<T, N> sqrt(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = sqrt(f.a);
+  g.v = f.v / (T(2.0) * g.a);
+  return g;
+}
+
+// cos(a + h) ~= cos(a) - sin(a) h
+template <typename T, int N> inline
+Jet<T, N> cos(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = cos(f.a);
+  T sin_a = sin(f.a);
+  g.v = - sin_a * f.v;
+  return g;
+}
+
+// acos(a + h) ~= acos(a) - 1 / sqrt(1 - a^2) h
+template <typename T, int N> inline
+Jet<T, N> acos(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = acos(f.a);
+  g.v = - T(1.0) / sqrt(T(1.0) - f.a * f.a) * f.v;
+  return g;
+}
+
+// sin(a + h) ~= sin(a) + cos(a) h
+template <typename T, int N> inline
+Jet<T, N> sin(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = sin(f.a);
+  T cos_a = cos(f.a);
+  g.v = cos_a * f.v;
+  return g;
+}
+
+// asin(a + h) ~= asin(a) + 1 / sqrt(1 - a^2) h
+template <typename T, int N> inline
+Jet<T, N> asin(const Jet<T, N>& f) {
+  Jet<T, N> g;
+  g.a = asin(f.a);
+  g.v = T(1.0) / sqrt(T(1.0) - f.a * f.a) * f.v;
+  return g;
+}
+
+// Jet Classification. It is not clear what the appropriate semantics are for
+// these classifications. This picks that isfinite and isnormal are "all"
+// operations, i.e. all elements of the jet must be finite for the jet itself to
+// be finite (or normal). For isnan and isinf, the answer is less clear. This
+// takes a "any" approach for isnan and isinf such that if any part of a jet is
+// nan or inf, then the entire jet is nan or inf. This leads to strange
+// situations like a jet can be both isinf and isnan, but in practice the "any"
+// semantics are the most useful for e.g. checking that derivatives are sane.
+
+// The jet is finite if all parts of the jet are finite.
+template <typename T, int N> inline
+bool isfinite(const Jet<T, N>& f) {
+  if (!isfinite(f.a)) {
+    return false;
+  }
+  for (int i = 0; i < N; ++i) {
+    if (!isfinite(f.v[i])) {
+      return false;
+    }
+  }
+  return true;
+}
+
+// The jet is infinite if any part of the jet is infinite.
+template <typename T, int N> inline
+bool isinf(const Jet<T, N>& f) {
+  if (isinf(f.a)) {
+    return true;
+  }
+  for (int i = 0; i < N; i++) {
+    if (isinf(f.v[i])) {
+      return true;
+    }
+  }
+  return false;
+}
+
+// The jet is NaN if any part of the jet is NaN.
+template <typename T, int N> inline
+bool isnan(const Jet<T, N>& f) {
+  if (isnan(f.a)) {
+    return true;
+  }
+  for (int i = 0; i < N; ++i) {
+    if (isnan(f.v[i])) {
+      return true;
+    }
+  }
+  return false;
+}
+
+// The jet is normal if all parts of the jet are normal.
+template <typename T, int N> inline
+bool isnormal(const Jet<T, N>& f) {
+  if (!isnormal(f.a)) {
+    return false;
+  }
+  for (int i = 0; i < N; ++i) {
+    if (!isnormal(f.v[i])) {
+      return false;
+    }
+  }
+  return true;
+}
+
+// atan2(b + db, a + da) ~= atan2(b, a) + (- b da + a db) / (a^2 + b^2)
+//
+// In words: the rate of change of theta is 1/r times the rate of
+// change of (x, y) in the positive angular direction.
+template <typename T, int N> inline
+Jet<T, N> atan2(const Jet<T, N>& g, const Jet<T, N>& f) {
+  // Note order of arguments:
+  //
+  //   f = a + da
+  //   g = b + db
+
+  Jet<T, N> out;
+
+  out.a = atan2(g.a, f.a);
+
+  T const temp = T(1.0) / (f.a * f.a + g.a * g.a);
+  out.v = temp * (- g.a * f.v + f.a * g.v);
+  return out;
+}
+
+
+// pow -- base is a differentiatble function, exponent is a constant.
+// (a+da)^p ~= a^p + p*a^(p-1) da
+template <typename T, int N> inline
+Jet<T, N> pow(const Jet<T, N>& f, double g) {
+  Jet<T, N> out;
+  out.a = pow(f.a, g);
+  T const temp = g * pow(f.a, g - T(1.0));
+  out.v = temp * f.v;
+  return out;
+}
+
+// pow -- base is a constant, exponent is a differentiable function.
+// (a)^(p+dp) ~= a^p + a^p log(a) dp
+template <typename T, int N> inline
+Jet<T, N> pow(double f, const Jet<T, N>& g) {
+  Jet<T, N> out;
+  out.a = pow(f, g.a);
+  T const temp = log(f) * out.a;
+  out.v = temp * g.v;
+  return out;
+}
+
+
+// pow -- both base and exponent are differentiable functions.
+// (a+da)^(b+db) ~= a^b + b * a^(b-1) da + a^b log(a) * db
+template <typename T, int N> inline
+Jet<T, N> pow(const Jet<T, N>& f, const Jet<T, N>& g) {
+  Jet<T, N> out;
+
+  T const temp1 = pow(f.a, g.a);
+  T const temp2 = g.a * pow(f.a, g.a - T(1.0));
+  T const temp3 = temp1 * log(f.a);
+
+  out.a = temp1;
+  out.v = temp2 * f.v + temp3 * g.v;
+  return out;
+}
+
+// Define the helper functions Eigen needs to embed Jet types.
+//
+// NOTE(keir): machine_epsilon() and precision() are missing, because they don't
+// work with nested template types (e.g. where the scalar is itself templated).
+// Among other things, this means that decompositions of Jet's does not work,
+// for example
+//
+//   Matrix<Jet<T, N> ... > A, x, b;
+//   ...
+//   A.solve(b, &x)
+//
+// does not work and will fail with a strange compiler error.
+//
+// TODO(keir): This is an Eigen 2.0 limitation that is lifted in 3.0. When we
+// switch to 3.0, also add the rest of the specialization functionality.
+template<typename T, int N> inline const Jet<T, N>& ei_conj(const Jet<T, N>& x) { return x;              }  // NOLINT
+template<typename T, int N> inline const Jet<T, N>& ei_real(const Jet<T, N>& x) { return x;              }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_imag(const Jet<T, N>&  ) { return Jet<T, N>(0.0); }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_abs (const Jet<T, N>& x) { return fabs(x);        }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_abs2(const Jet<T, N>& x) { return x * x;          }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_sqrt(const Jet<T, N>& x) { return sqrt(x);        }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_exp (const Jet<T, N>& x) { return exp(x);         }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_log (const Jet<T, N>& x) { return log(x);         }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_sin (const Jet<T, N>& x) { return sin(x);         }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_cos (const Jet<T, N>& x) { return cos(x);         }  // NOLINT
+template<typename T, int N> inline       Jet<T, N>  ei_pow (const Jet<T, N>& x, Jet<T, N> y) { return pow(x, y); }  // NOLINT
+
+// Note: This has to be in the ceres namespace for argument dependent lookup to
+// function correctly. Otherwise statements like CHECK_LE(x, 2.0) fail with
+// strange compile errors.
+template <typename T, int N>
+inline std::ostream &operator<<(std::ostream &s, const Jet<T, N>& z) {
+  return s << "[" << z.a << " ; " << z.v.transpose() << "]";
+}
+
+}  // namespace ceres
+
+namespace Eigen {
+
+// Creating a specialization of NumTraits enables placing Jet objects inside
+// Eigen arrays, getting all the goodness of Eigen combined with autodiff.
+template<typename T, int N>
+struct NumTraits<ceres::Jet<T, N> > {
+  typedef ceres::Jet<T, N> Real;
+  typedef ceres::Jet<T, N> NonInteger;
+  typedef ceres::Jet<T, N> Nested;
+
+  enum {
+    IsComplex = 0,
+    IsInteger = 0,
+    IsSigned,
+    ReadCost = 1,
+    AddCost = 1,
+    // For Jet types, multiplication is more expensive than addition.
+    MulCost = 3,
+    HasFloatingPoint = 1
+  };
+};
+
+}  // namespace Eigen
+
+#endif  // CERES_PUBLIC_JET_H_
diff --git a/include/ceres/local_parameterization.h b/include/ceres/local_parameterization.h
new file mode 100644
index 0000000..c0f7dc7
--- /dev/null
+++ b/include/ceres/local_parameterization.h
@@ -0,0 +1,189 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//         sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_PUBLIC_LOCAL_PARAMETERIZATION_H_
+#define CERES_PUBLIC_LOCAL_PARAMETERIZATION_H_
+
+#include <vector>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+
+// Purpose: Sometimes parameter blocks x can overparameterize a problem
+//
+//   min f(x)
+//    x
+//
+// In that case it is desirable to choose a parameterization for the
+// block itself to remove the null directions of the cost. More
+// generally, if x lies on a manifold of a smaller dimension than the
+// ambient space that it is embedded in, then it is numerically and
+// computationally more effective to optimize it using a
+// parameterization that lives in the tangent space of that manifold
+// at each point.
+//
+// For example, a sphere in three dimensions is a 2 dimensional
+// manifold, embedded in a three dimensional space. At each point on
+// the sphere, the plane tangent to it defines a two dimensional
+// tangent space. For a cost function defined on this sphere, given a
+// point x, moving in the direction normal to the sphere at that point
+// is not useful. Thus a better way to do a local optimization is to
+// optimize over two dimensional vector delta in the tangent space at
+// that point and then "move" to the point x + delta, where the move
+// operation involves projecting back onto the sphere. Doing so
+// removes a redundent dimension from the optimization, making it
+// numerically more robust and efficient.
+//
+// More generally we can define a function
+//
+//   x_plus_delta = Plus(x, delta),
+//
+// where x_plus_delta has the same size as x, and delta is of size
+// less than or equal to x. The function Plus, generalizes the
+// definition of vector addition. Thus it satisfies the identify
+//
+//   Plus(x, 0) = x, for all x.
+//
+// A trivial version of Plus is when delta is of the same size as x
+// and
+//
+//   Plus(x, delta) = x + delta
+//
+// A more interesting case if x is two dimensional vector, and the
+// user wishes to hold the first coordinate constant. Then, delta is a
+// scalar and Plus is defined as
+//
+//   Plus(x, delta) = x + [0] * delta
+//                        [1]
+//
+// An example that occurs commonly in Structure from Motion problems
+// is when camera rotations are parameterized using Quaternion. There,
+// it is useful only make updates orthogonal to that 4-vector defining
+// the quaternion. One way to do this is to let delta be a 3
+// dimensional vector and define Plus to be
+//
+//   Plus(x, delta) = [cos(|delta|), sin(|delta|) delta / |delta|] * x
+//
+// The multiplication between the two 4-vectors on the RHS is the
+// standard quaternion product.
+//
+// Given g and a point x, optimizing f can now be restated as
+//
+//     min  f(Plus(x, delta))
+//    delta
+//
+// Given a solution delta to this problem, the optimal value is then
+// given by
+//
+//   x* = Plus(x, delta)
+//
+// The class LocalParameterization defines the function Plus and its
+// Jacobian which is needed to compute the Jacobian of f w.r.t delta.
+class LocalParameterization {
+ public:
+  virtual ~LocalParameterization() {}
+
+  // Generalization of the addition operation,
+  //
+  //   x_plus_delta = Plus(x, delta)
+  //
+  // with the condition that Plus(x, 0) = x.
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const = 0;
+
+  // The jacobian of Plus(x, delta) w.r.t delta at delta = 0.
+  virtual bool ComputeJacobian(const double* x, double* jacobian) const = 0;
+
+  // Size of x.
+  virtual int GlobalSize() const = 0;
+
+  // Size of delta.
+  virtual int LocalSize() const = 0;
+};
+
+// Some basic parameterizations
+
+// Identity Parameterization: Plus(x, delta) = x + delta
+class IdentityParameterization : public LocalParameterization {
+ public:
+  explicit IdentityParameterization(int size);
+  virtual ~IdentityParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const;
+  virtual bool ComputeJacobian(const double* x,
+                               double* jacobian) const;
+  virtual int GlobalSize() const { return size_; }
+  virtual int LocalSize() const { return size_; }
+
+ private:
+  const int size_;
+};
+
+// Hold a subset of the parameters inside a parameter block constant.
+class SubsetParameterization : public LocalParameterization {
+ public:
+  explicit SubsetParameterization(int size,
+                                  const vector<int>& constant_parameters);
+  virtual ~SubsetParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const;
+  virtual bool ComputeJacobian(const double* x,
+                               double* jacobian) const;
+  virtual int GlobalSize() const { return constancy_mask_.size(); }
+  virtual int LocalSize() const { return local_size_; }
+
+ private:
+  const int local_size_;
+  vector<int> constancy_mask_;
+};
+
+// Plus(x, delta) = [cos(|delta|), sin(|delta|) delta / |delta|] * x
+// with * being the quaternion multiplication operator. Here we assume
+// that the first element of the quaternion vector is the real (cos
+// theta) part.
+class QuaternionParameterization : public LocalParameterization {
+ public:
+  virtual ~QuaternionParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const;
+  virtual bool ComputeJacobian(const double* x,
+                               double* jacobian) const;
+  virtual int GlobalSize() const { return 4; }
+  virtual int LocalSize() const { return 3; }
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_LOCAL_PARAMETERIZATION_H_
diff --git a/include/ceres/loss_function.h b/include/ceres/loss_function.h
new file mode 100644
index 0000000..81add02
--- /dev/null
+++ b/include/ceres/loss_function.h
@@ -0,0 +1,322 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// The LossFunction interface is the way users describe how residuals
+// are converted to cost terms for the overall problem cost function.
+// For the exact manner in which loss functions are converted to the
+// overall cost for a problem, see problem.h.
+//
+// For least squares problem where there are no outliers and standard
+// squared loss is expected, it is not necessary to create a loss
+// function; instead passing a NULL to the problem when adding
+// residuals implies a standard squared loss.
+//
+// For least squares problems where the minimization may encounter
+// input terms that contain outliers, that is, completely bogus
+// measurements, it is important to use a loss function that reduces
+// their associated penalty.
+//
+// Consider a structure from motion problem. The unknowns are 3D
+// points and camera parameters, and the measurements are image
+// coordinates describing the expected reprojected position for a
+// point in a camera. For example, we want to model the geometry of a
+// street scene with fire hydrants and cars, observed by a moving
+// camera with unknown parameters, and the only 3D points we care
+// about are the pointy tippy-tops of the fire hydrants. Our magic
+// image processing algorithm, which is responsible for producing the
+// measurements that are input to Ceres, has found and matched all
+// such tippy-tops in all image frames, except that in one of the
+// frame it mistook a car's headlight for a hydrant. If we didn't do
+// anything special (i.e. if we used a basic quadratic loss), the
+// residual for the erroneous measurement will result in extreme error
+// due to the quadratic nature of squared loss. This results in the
+// entire solution getting pulled away from the optimimum to reduce
+// the large error that would otherwise be attributed to the wrong
+// measurement.
+//
+// Using a robust loss function, the cost for large residuals is
+// reduced. In the example above, this leads to outlier terms getting
+// downweighted so they do not overly influence the final solution.
+//
+// What cost function is best?
+//
+// In general, there isn't a principled way to select a robust loss
+// function. The authors suggest starting with a non-robust cost, then
+// only experimenting with robust loss functions if standard squared
+// loss doesn't work.
+
+#ifndef CERES_PUBLIC_LOSS_FUNCTION_H_
+#define CERES_PUBLIC_LOSS_FUNCTION_H_
+
+#include <glog/logging.h>
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+class LossFunction {
+ public:
+  virtual ~LossFunction() {}
+
+  // For a residual vector with squared 2-norm 'sq_norm', this method
+  // is required to fill in the value and derivatives of the loss
+  // function (rho in this example):
+  //
+  //   out[0] = rho(sq_norm),
+  //   out[1] = rho'(sq_norm),
+  //   out[2] = rho''(sq_norm),
+  //
+  // Here the convention is that the contribution of a term to the
+  // cost function is given by 1/2 rho(s),  where
+  //
+  //   s = ||residuals||^2.
+  //
+  // Calling the method with a negative value of 's' is an error and
+  // the implementations are not required to handle that case.
+  //
+  // Most sane choices of rho() satisfy:
+  //
+  //   rho(0) = 0,
+  //   rho'(0) = 1,
+  //   rho'(s) < 1 in outlier region,
+  //   rho''(s) < 0 in outlier region,
+  //
+  // so that they mimic the least squares cost for small residuals.
+  virtual void Evaluate(double sq_norm, double out[3]) const = 0;
+};
+
+// Some common implementations follow below.
+//
+// Note: in the region of interest (i.e. s < 3) we have:
+//   TrivialLoss >= HuberLoss >= SoftLOneLoss >= CauchyLoss
+
+
+// This corresponds to no robustification.
+//
+//   rho(s) = s
+//
+// At s = 0: rho = [0, 1, 0].
+//
+// It is not normally necessary to use this, as passing NULL for the
+// loss function when building the problem accomplishes the same
+// thing.
+class TrivialLoss : public LossFunction {
+ public:
+  virtual void Evaluate(double, double*) const;
+};
+
+// Scaling
+// -------
+// Given one robustifier
+//   s -> rho(s)
+// one can change the length scale at which robustification takes
+// place, by adding a scale factor 'a' as follows:
+//
+//   s -> a^2 rho(s / a^2).
+//
+// The first and second derivatives are:
+//
+//   s -> rho'(s / a^2),
+//   s -> (1 / a^2) rho''(s / a^2),
+//
+// but the behaviour near s = 0 is the same as the original function,
+// i.e.
+//
+//   rho(s) = s + higher order terms,
+//   a^2 rho(s / a^2) = s + higher order terms.
+//
+// The scalar 'a' should be positive.
+//
+// The reason for the appearance of squaring is that 'a' is in the
+// units of the residual vector norm whereas 's' is a squared
+// norm. For applications it is more convenient to specify 'a' than
+// its square. The commonly used robustifiers below are described in
+// un-scaled format (a = 1) but their implementations work for any
+// non-zero value of 'a'.
+
+// Huber.
+//
+//   rho(s) = s               for s <= 1,
+//   rho(s) = 2 sqrt(s) - 1   for s >= 1.
+//
+// At s = 0: rho = [0, 1, 0].
+//
+// The scaling parameter 'a' corresponds to 'delta' on this page:
+//   http://en.wikipedia.org/wiki/Huber_Loss_Function
+class HuberLoss : public LossFunction {
+ public:
+  explicit HuberLoss(double a) : a_(a), b_(a * a) { }
+  virtual void Evaluate(double, double*) const;
+ private:
+  const double a_;
+  // b = a^2.
+  const double b_;
+};
+
+// Soft L1, similar to Huber but smooth.
+//
+//   rho(s) = 2 (sqrt(1 + s) - 1).
+//
+// At s = 0: rho = [0, 1, -1/2].
+class SoftLOneLoss : public LossFunction {
+ public:
+  explicit SoftLOneLoss(double a) : b_(a * a), c_(1 / b_) { }
+  virtual void Evaluate(double, double*) const;
+ private:
+  // b = a^2.
+  const double b_;
+  // c = 1 / a^2.
+  const double c_;
+};
+
+// Inspired by the Cauchy distribution
+//
+//   rho(s) = log(1 + s).
+//
+// At s = 0: rho = [0, 1, -1].
+class CauchyLoss : public LossFunction {
+ public:
+  explicit CauchyLoss(double a) : b_(a * a), c_(1 / b_) { }
+  virtual void Evaluate(double, double*) const;
+ private:
+  // b = a^2.
+  const double b_;
+  // c = 1 / a^2.
+  const double c_;
+};
+
+// The discussion above has to do with length scaling: it affects the space
+// in which s is measured. Sometimes you want to simply scale the output
+// value of the robustifier. For example, you might want to weight
+// different error terms differently (e.g., weight pixel reprojection
+// errors differently from terrain errors).
+//
+// If rho is the wrapped robustifier, then this simply outputs
+// s -> a * rho(s)
+//
+// The first and second derivatives are, not surprisingly
+// s -> a * rho'(s)
+// s -> a * rho''(s)
+//
+// Since we treat the a NULL Loss function as the Identity loss
+// function, rho = NULL is a valid input and will result in the input
+// being scaled by a. This provides a simple way of implementing a
+// scaled ResidualBlock.
+class ScaledLoss : public LossFunction {
+ public:
+  // Constructs a ScaledLoss wrapping another loss function. Takes
+  // ownership of the wrapped loss function or not depending on the
+  // ownership parameter.
+  ScaledLoss(const LossFunction* rho, double a, Ownership ownership) :
+      rho_(rho), a_(a), ownership_(ownership) { }
+
+  virtual ~ScaledLoss() {
+    if (ownership_ == DO_NOT_TAKE_OWNERSHIP) {
+      rho_.release();
+    }
+  }
+  virtual void Evaluate(double, double*) const;
+
+ private:
+  internal::scoped_ptr<const LossFunction> rho_;
+  const double a_;
+  const Ownership ownership_;
+  DISALLOW_COPY_AND_ASSIGN(ScaledLoss);
+};
+
+// Sometimes after the optimization problem has been constructed, we
+// wish to mutate the scale of the loss function. For example, when
+// performing estimation from data which has substantial outliers,
+// convergence can be improved by starting out with a large scale,
+// optimizing the problem and then reducing the scale. This can have
+// better convergence behaviour than just using a loss function with a
+// small scale.
+//
+// This templated class allows the user to implement a loss function
+// whose scale can be mutated after an optimization problem has been
+// constructed.
+//
+// Example usage
+//
+//  Problem problem;
+//
+//  // Add parameter blocks
+//
+//  CostFunction* cost_function =
+//    new AutoDiffCostFunction < UW_Camera_Mapper, 2, 9, 3>(
+//      new UW_Camera_Mapper(data->observations[2*i + 0],
+//                           data->observations[2*i + 1]));
+//
+//  LossFunctionWrapper* loss_function(new HuberLoss(1.0), TAKE_OWNERSHIP);
+//
+//  problem.AddResidualBlock(cost_function, loss_function, parameters);
+//
+//  Solver::Options options;
+//  scoped_ptr<Solver::Summary> summary1(Solve(problem, options));
+//
+//  loss_function->Reset(new HuberLoss(1.0), TAKE_OWNERSHIP);
+//
+//  scoped_ptr<Solver::Summary> summary2(Solve(problem, options));
+//
+class LossFunctionWrapper : public LossFunction {
+ public:
+  LossFunctionWrapper(LossFunction* rho, Ownership ownership)
+      : rho_(rho), ownership_(ownership) {
+  }
+
+  virtual ~LossFunctionWrapper() {
+    if (ownership_ == DO_NOT_TAKE_OWNERSHIP) {
+      rho_.release();
+    }
+  }
+
+  virtual void Evaluate(double sq_norm, double out[3]) const {
+    CHECK_NOTNULL(rho_.get());
+    rho_->Evaluate(sq_norm, out);
+  }
+
+  void Reset(LossFunction* rho, Ownership ownership) {
+    if (ownership_ == DO_NOT_TAKE_OWNERSHIP) {
+      rho_.release();
+    }
+    rho_.reset(rho);
+    ownership_ = ownership;
+  }
+
+ private:
+  internal::scoped_ptr<const LossFunction> rho_;
+  Ownership ownership_;
+  DISALLOW_COPY_AND_ASSIGN(LossFunctionWrapper);
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_LOSS_FUNCTION_H_
diff --git a/include/ceres/normal_prior.h b/include/ceres/normal_prior.h
new file mode 100644
index 0000000..480a074
--- /dev/null
+++ b/include/ceres/normal_prior.h
@@ -0,0 +1,75 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Cost term that implements a prior on a parameter block using a
+// normal distribution.
+
+#ifndef CERES_PUBLIC_NORMAL_PRIOR_H_
+#define CERES_PUBLIC_NORMAL_PRIOR_H_
+
+#include "ceres/cost_function.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+
+// Implements a cost function of the form
+//
+//   cost(x) = ||A(x - b)||^2
+//
+// where, the matrix A and the vector b are fixed and x is the
+// variable. In case the user is interested in implementing a cost
+// function of the form
+//
+//   cost(x) = (x - mu)^T S^{-1} (x - mu)
+//
+// where, mu is a vector and S is a covariance matrix, then, A =
+// S^{-1/2}, i.e the matrix A is the square root of the inverse of the
+// covariance, also known as the stiffness matrix. There are however
+// no restrictions on the shape of A. It is free to be rectangular,
+// which would be the case if the covariance matrix S is rank
+// deficient.
+
+class NormalPrior: public CostFunction {
+ public:
+  // Check that the number of rows in the vector b are the same as the
+  // number of columns in the matrix A, crash otherwise.
+  NormalPrior(const Matrix& A, const Vector& b);
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const;
+ private:
+  Matrix A_;
+  Vector b_;
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_NORMAL_PRIOR_H_
diff --git a/include/ceres/numeric_diff_cost_function.h b/include/ceres/numeric_diff_cost_function.h
new file mode 100644
index 0000000..736fb97
--- /dev/null
+++ b/include/ceres/numeric_diff_cost_function.h
@@ -0,0 +1,283 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Create CostFunctions as needed by the least squares framework with jacobians
+// computed via numeric (a.k.a. finite) differentiation. For more details see
+// http://en.wikipedia.org/wiki/Numerical_differentiation.
+//
+// To get a numerically differentiated cost function, define a subclass of
+// CostFunction such that the Evaluate() function ignores the jacobian
+// parameter. The numeric differentiation wrapper will fill in the jacobian
+// parameter if nececssary by repeatedly calling the Evaluate() function with
+// small changes to the appropriate parameters, and computing the slope. For
+// performance, the numeric differentiation wrapper class is templated on the
+// concrete cost function, even though it could be implemented only in terms of
+// the virtual CostFunction interface.
+//
+// The numerically differentiated version of a cost function for a cost function
+// can be constructed as follows:
+//
+//   CostFunction* cost_function
+//       = new NumericDiffCostFunction<MyCostFunction, CENTRAL, 1, 4, 8>(
+//           new MyCostFunction(...), TAKE_OWNERSHIP);
+//
+// where MyCostFunction has 1 residual and 2 parameter blocks with sizes 4 and 8
+// respectively. Look at the tests for a more detailed example.
+//
+// The central difference method is considerably more accurate at the cost of
+// twice as many function evaluations than forward difference. Consider using
+// central differences begin with, and only after that works, trying forward
+// difference to improve performance.
+//
+// TODO(keir): Characterize accuracy; mention pitfalls; provide alternatives.
+
+#ifndef CERES_PUBLIC_NUMERIC_DIFF_COST_FUNCTION_H_
+#define CERES_PUBLIC_NUMERIC_DIFF_COST_FUNCTION_H_
+
+#include <cstring>
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+enum NumericDiffMethod {
+  CENTRAL,
+  FORWARD,
+};
+
+// This is split from the main class because C++ doesn't allow partial template
+// specializations for member functions. The alternative is to repeat the main
+// class for differing numbers of parameters, which is also unfortunate.
+template <typename CostFunctionNoJacobian,
+          int num_residuals,
+          int parameter_block_size,
+          int parameter_block,
+          NumericDiffMethod method>
+struct Differencer {
+  // Mutates parameters but must restore them before return.
+  static bool EvaluateJacobianForParameterBlock(
+      const CostFunctionNoJacobian *function,
+      double const* residuals_at_eval_point,
+      double **parameters,
+      double **jacobians) {
+    using Eigen::Map;
+    using Eigen::Matrix;
+    using Eigen::RowMajor;
+
+    typedef Matrix<double, num_residuals, 1> ResidualVector;
+    typedef Matrix<double, parameter_block_size, 1> ParameterVector;
+    typedef Matrix<double, num_residuals, parameter_block_size, RowMajor>
+        JacobianMatrix;
+
+    Map<JacobianMatrix> parameter_jacobian(jacobians[parameter_block],
+                                           num_residuals,
+                                           parameter_block_size);
+
+    // Mutate 1 element at a time and then restore.
+    Map<ParameterVector> x_plus_delta(parameters[parameter_block],
+                                      parameter_block_size);
+    ParameterVector x(x_plus_delta);
+
+    // TODO(keir): Pick a smarter number! In theory a good choice is sqrt(eps) *
+    // x, which for doubles means about 1e-8 * x. However, I have found this
+    // number too optimistic. This number should be exposed for users to change.
+    const double kRelativeStepSize = 1e-6;
+
+    ParameterVector step_size = x.array().abs() * kRelativeStepSize;
+
+    // To handle cases where a parameter is exactly zero, instead use the mean
+    // step_size for the other dimensions.
+    double fallback_step_size = step_size.sum() / step_size.rows();
+    if (fallback_step_size == 0.0) {
+      // If all the parameters are zero, there's no good answer. Take
+      // kRelativeStepSize as a guess and hope for the best.
+      fallback_step_size = kRelativeStepSize;
+    }
+
+    // For each parameter in the parameter block, use finite differences to
+    // compute the derivative for that parameter.
+    for (int j = 0; j < parameter_block_size; ++j) {
+      if (step_size(j) == 0.0) {
+        // The parameter is exactly zero, so compromise and use the mean
+        // step_size from the other parameters. This can break in many cases,
+        // but it's hard to pick a good number without problem specific
+        // knowledge.
+        step_size(j) = fallback_step_size;
+      }
+      x_plus_delta(j) = x(j) + step_size(j);
+
+      double residuals[num_residuals];  // NOLINT
+      if (!function->Evaluate(parameters, residuals, NULL)) {
+        // Something went wrong; bail.
+        return false;
+      }
+
+      // Compute this column of the jacobian in 3 steps:
+      // 1. Store residuals for the forward part.
+      // 2. Subtract residuals for the backward (or 0) part.
+      // 3. Divide out the run.
+      parameter_jacobian.col(j) =
+          Map<const ResidualVector>(residuals, num_residuals);
+
+      double one_over_h = 1 / step_size(j);
+      if (method == CENTRAL) {
+        // Compute the function on the other side of x(j).
+        x_plus_delta(j) = x(j) - step_size(j);
+
+        if (!function->Evaluate(parameters, residuals, NULL)) {
+          // Something went wrong; bail.
+          return false;
+        }
+        parameter_jacobian.col(j) -=
+            Map<ResidualVector>(residuals, num_residuals, 1);
+        one_over_h /= 2;
+      } else {
+        // Forward difference only; reuse existing residuals evaluation.
+        parameter_jacobian.col(j) -=
+            Map<const ResidualVector>(residuals_at_eval_point, num_residuals);
+      }
+      x_plus_delta(j) = x(j);  // Restore x_plus_delta.
+
+      // Divide out the run to get slope.
+      parameter_jacobian.col(j) *= one_over_h;
+    }
+    return true;
+  }
+};
+
+// Prevent invalid instantiations.
+template <typename CostFunctionNoJacobian,
+          int num_residuals,
+          int parameter_block,
+          NumericDiffMethod method>
+struct Differencer<CostFunctionNoJacobian,
+                  num_residuals,
+                  0 /* parameter_block_size */,
+                  parameter_block,
+                  method> {
+  static bool EvaluateJacobianForParameterBlock(
+      const CostFunctionNoJacobian *function,
+      double const* residuals_at_eval_point,
+      double **parameters,
+      double **jacobians) {
+    LOG(FATAL) << "Shouldn't get here.";
+    return true;
+  }
+};
+
+template <typename CostFunctionNoJacobian,
+         NumericDiffMethod method = CENTRAL, int M = 0,
+         int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5 = 0>
+class NumericDiffCostFunction
+    : public SizedCostFunction<M, N0, N1, N2, N3, N4, N5> {
+ public:
+  NumericDiffCostFunction(CostFunctionNoJacobian* function,
+                          Ownership ownership)
+      : function_(function), ownership_(ownership) {}
+
+  virtual ~NumericDiffCostFunction() {
+    if (ownership_ != TAKE_OWNERSHIP) {
+      function_.release();
+    }
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    // Get the function value (residuals) at the the point to evaluate.
+    bool success = function_->Evaluate(parameters, residuals, NULL);
+    if (!success) {
+      // Something went wrong; ignore the jacobian.
+      return false;
+    }
+    if (!jacobians) {
+      // Nothing to do; just forward.
+      return true;
+    }
+
+    // Create a copy of the parameters which will get mutated.
+    const int kParametersSize = N0 + N1 + N2 + N3 + N4 + N5;
+    double parameters_copy[kParametersSize];
+    double *parameters_references_copy[6];
+    parameters_references_copy[0] = &parameters_copy[0];
+    parameters_references_copy[1] = &parameters_copy[0] + N0;
+    parameters_references_copy[2] = &parameters_copy[0] + N0 + N1;
+    parameters_references_copy[3] = &parameters_copy[0] + N0 + N1 + N2;
+    parameters_references_copy[4] = &parameters_copy[0] + N0 + N1 + N2 + N3;
+    parameters_references_copy[5] =
+        &parameters_copy[0] + N0 + N1 + N2 + N3 + N4;
+
+#define COPY_PARAMETER_BLOCK(block) \
+    if (N ## block) memcpy(parameters_references_copy[block], \
+                           parameters[block], \
+                           sizeof(double) * N ## block);  // NOLINT
+    COPY_PARAMETER_BLOCK(0);
+    COPY_PARAMETER_BLOCK(1);
+    COPY_PARAMETER_BLOCK(2);
+    COPY_PARAMETER_BLOCK(3);
+    COPY_PARAMETER_BLOCK(4);
+    COPY_PARAMETER_BLOCK(5);
+#undef COPY_PARAMETER_BLOCK
+
+#define EVALUATE_JACOBIAN_FOR_BLOCK(block) \
+    if (N ## block && jacobians[block]) { \
+      if (!Differencer<CostFunctionNoJacobian, /* NOLINT */ \
+                       M, \
+                       N ## block, \
+                       block, \
+                       method>::EvaluateJacobianForParameterBlock( \
+          function_.get(), \
+          residuals, \
+          parameters_references_copy, \
+          jacobians)) { \
+        return false; \
+      } \
+    }
+    EVALUATE_JACOBIAN_FOR_BLOCK(0);
+    EVALUATE_JACOBIAN_FOR_BLOCK(1);
+    EVALUATE_JACOBIAN_FOR_BLOCK(2);
+    EVALUATE_JACOBIAN_FOR_BLOCK(3);
+    EVALUATE_JACOBIAN_FOR_BLOCK(4);
+    EVALUATE_JACOBIAN_FOR_BLOCK(5);
+#undef EVALUATE_JACOBIAN_FOR_BLOCK
+    return true;
+  }
+
+ private:
+  internal::scoped_ptr<CostFunctionNoJacobian> function_;
+  Ownership ownership_;
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_NUMERIC_DIFF_COST_FUNCTION_H_
diff --git a/include/ceres/problem.h b/include/ceres/problem.h
new file mode 100644
index 0000000..0ca6100
--- /dev/null
+++ b/include/ceres/problem.h
@@ -0,0 +1,265 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+//
+// The Problem object is used to build and hold least squares problems.
+
+#ifndef CERES_PUBLIC_PROBLEM_H_
+#define CERES_PUBLIC_PROBLEM_H_
+
+#include <cstddef>
+#include <map>
+#include <set>
+#include <vector>
+
+#include <glog/logging.h>
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+class CostFunction;
+class LossFunction;
+class LocalParameterization;
+
+namespace internal {
+class Preprocessor;
+class ProblemImpl;
+class ParameterBlock;
+class ResidualBlock;
+class SolverImpl;
+}  // namespace internal
+
+// A ResidualBlockId is a handle clients can use to delete residual
+// blocks after creating them. They are opaque for any purposes other
+// than that.
+typedef const internal::ResidualBlock* ResidualBlockId;
+
+// A class to represent non-linear least squares problems. Such
+// problems have a cost function that is a sum of error terms (known
+// as "residuals"), where each residual is a function of some subset
+// of the parameters. The cost function takes the form
+//
+//    N    1
+//   SUM  --- loss( || r_i1, r_i2,..., r_ik ||^2  ),
+//   i=1   2
+//
+// where
+//
+//   r_ij     is residual number i, component j; the residual is a
+//            function of some subset of the parameters x1...xk. For
+//            example, in a structure from motion problem a residual
+//            might be the difference between a measured point in an
+//            image and the reprojected position for the matching
+//            camera, point pair. The residual would have two
+//            components, error in x and error in y.
+//
+//   loss(y)  is the loss function; for example, squared error or
+//            Huber L1 loss. If loss(y) = y, then the cost function is
+//            non-robustified least squares.
+//
+// This class is specifically designed to address the important subset
+// of "sparse" least squares problems, where each component of the
+// residual depends only on a small number number of parameters, even
+// though the total number of residuals and parameters may be very
+// large. This property affords tremendous gains in scale, allowing
+// efficient solving of large problems that are otherwise
+// inaccessible.
+//
+// The canonical example of a sparse least squares problem is
+// "structure-from-motion" (SFM), where the parameters are points and
+// cameras, and residuals are reprojection errors. Typically a single
+// residual will depend only on 9 parameters (3 for the point, 6 for
+// the camera).
+//
+// To create a least squares problem, use the AddResidualBlock() and
+// AddParameterBlock() methods, documented below. Here is an example least
+// squares problem containing 3 parameter blocks of sizes 3, 4 and 5
+// respectively and two residual terms of size 2 and 6:
+//
+//   double x1[] = { 1.0, 2.0, 3.0 };
+//   double x2[] = { 1.0, 2.0, 3.0, 5.0 };
+//   double x3[] = { 1.0, 2.0, 3.0, 6.0, 7.0 };
+//
+//   Problem problem;
+//
+//   problem.AddResidualBlock(new MyUnaryCostFunction(...), x1);
+//   problem.AddResidualBlock(new MyBinaryCostFunction(...), x2, x3);
+//
+// Please see cost_function.h for details of the CostFunction object.
+class Problem {
+ public:
+  struct Options {
+    Options()
+        : cost_function_ownership(TAKE_OWNERSHIP),
+          loss_function_ownership(TAKE_OWNERSHIP),
+          local_parameterization_ownership(TAKE_OWNERSHIP) {}
+
+    // These flags control whether the Problem object owns the cost
+    // functions, loss functions, and parameterizations passed into
+    // the Problem. If set to TAKE_OWNERSHIP, then the problem object
+    // will delete the corresponding cost or loss functions on
+    // destruction. The destructor is careful to delete the pointers
+    // only once, since sharing cost/loss/parameterizations is
+    // allowed.
+    Ownership cost_function_ownership;
+    Ownership loss_function_ownership;
+    Ownership local_parameterization_ownership;
+  };
+
+  // The default constructor is equivalent to the
+  // invocation Problem(Problem::Options()).
+  Problem();
+  explicit Problem(const Options& options);
+
+  ~Problem();
+
+  // Add a residual block to the overall cost function. The cost
+  // function carries with it information about the sizes of the
+  // parameter blocks it expects. The function checks that these match
+  // the sizes of the parameter blocks listed in parameter_blocks. The
+  // program aborts if a mismatch is detected. loss_function can be
+  // NULL, in which case the cost of the term is just the squared norm
+  // of the residuals.
+  //
+  // The user has the option of explicitly adding the parameter blocks
+  // using AddParameterBlock. This causes additional correctness
+  // checking; however, AddResidualBlock implicitly adds the parameter
+  // blocks if they are not present, so calling AddParameterBlock
+  // explicitly is not required.
+  //
+  // The Problem object by default takes ownership of the
+  // cost_function and loss_function pointers. These objects remain
+  // live for the life of the Problem object. If the user wishes to
+  // keep control over the destruction of these objects, then they can
+  // do this by setting the corresponding enums in the Options struct.
+  //
+  // Note: Even though the Problem takes ownership of cost_function
+  // and loss_function, it does not preclude the user from re-using
+  // them in another residual block. The destructor takes care to call
+  // delete on each cost_function or loss_function pointer only once,
+  // regardless of how many residual blocks refer to them.
+  //
+  // Example usage:
+  //
+  //   double x1[] = {1.0, 2.0, 3.0};
+  //   double x2[] = {1.0, 2.0, 5.0, 6.0};
+  //   double x3[] = {3.0, 6.0, 2.0, 5.0, 1.0};
+  //
+  //   Problem problem;
+  //
+  //   problem.AddResidualBlock(new MyUnaryCostFunction(...), NULL, x1);
+  //   problem.AddResidualBlock(new MyBinaryCostFunction(...), NULL, x2, x1);
+  //
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   const vector<double*>& parameter_blocks);
+
+  // Convenience methods for adding residuals with a small number of
+  // parameters. This is the common case. Instead of specifying the
+  // parameter block arguments as a vector, list them as pointers.
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3, double* x4);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3, double* x4, double* x5);
+
+  // Add a parameter block with appropriate size to the problem.
+  // Repeated calls with the same arguments are ignored. Repeated
+  // calls with the same double pointer but a different size results
+  // in undefined behaviour.
+  void AddParameterBlock(double* values, int size);
+
+  // Add a parameter block with appropriate size and parameterization
+  // to the problem. Repeated calls with the same arguments are
+  // ignored. Repeated calls with the same double pointer but a
+  // different size results in undefined behaviour.
+  void AddParameterBlock(double* values,
+                         int size,
+                         LocalParameterization* local_parameterization);
+
+  // Hold the indicated parameter block constant during optimization.
+  void SetParameterBlockConstant(double* values);
+
+  // Allow the indicated parameter to vary during optimization.
+  void SetParameterBlockVariable(double* values);
+
+  // Set the local parameterization for one of the parameter blocks.
+  // The local_parameterization is owned by the Problem by default. It
+  // is acceptable to set the same parameterization for multiple
+  // parameters; the destructor is careful to delete local
+  // parameterizations only once. The local parameterization can only
+  // be set once per parameter, and cannot be changed once set.
+  void SetParameterization(double* values,
+                           LocalParameterization* local_parameterization);
+
+  // Number of parameter blocks in the problem. Always equals
+  // parameter_blocks().size() and parameter_block_sizes().size().
+  int NumParameterBlocks() const;
+
+  // The size of the parameter vector obtained by summing over the
+  // sizes of all the parameter blocks.
+  int NumParameters() const;
+
+  // Number of residual blocks in the problem. Always equals
+  // residual_blocks().size().
+  int NumResidualBlocks() const;
+
+  // The size of the residual vector obtained by summing over the
+  // sizes of all of the residual blocks.
+  int NumResiduals() const;
+
+ private:
+  friend class internal::SolverImpl;
+  internal::scoped_ptr<internal::ProblemImpl> problem_impl_;
+  DISALLOW_COPY_AND_ASSIGN(Problem);
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_PROBLEM_H_
diff --git a/include/ceres/rotation.h b/include/ceres/rotation.h
new file mode 100644
index 0000000..834ca45
--- /dev/null
+++ b/include/ceres/rotation.h
@@ -0,0 +1,512 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//         sameeragarwal@google.com (Sameer Agarwal)
+//
+// Templated functions for manipulating rotations. The templated
+// functions are useful when implementing functors for automatic
+// differentiation.
+//
+// In the following, the Quaternions are laid out as 4-vectors, thus:
+//
+//   q[0]  scalar part.
+//   q[1]  coefficient of i.
+//   q[2]  coefficient of j.
+//   q[3]  coefficient of k.
+//
+// where: i*i = j*j = k*k = -1 and i*j = k, j*k = i, k*i = j.
+
+#ifndef CERES_PUBLIC_ROTATION_H_
+#define CERES_PUBLIC_ROTATION_H_
+
+#include <algorithm>
+#include <cmath>
+
+namespace ceres {
+
+// Convert a value in combined axis-angle representation to a quaternion.
+// The value angle_axis is a triple whose norm is an angle in radians,
+// and whose direction is aligned with the axis of rotation,
+// and quaternion is a 4-tuple that will contain the resulting quaternion.
+// The implementation may be used with auto-differentiation up to the first
+// derivative, higher derivatives may have unexpected results near the origin.
+template<typename T>
+void AngleAxisToQuaternion(T const* angle_axis, T* quaternion);
+
+// Convert a quaternion to the equivalent combined axis-angle representation.
+// The value quaternion must be a unit quaternion - it is not normalized first,
+// and angle_axis will be filled with a value whose norm is the angle of
+// rotation in radians, and whose direction is the axis of rotation.
+// The implemention may be used with auto-differentiation up to the first
+// derivative, higher derivatives may have unexpected results near the origin.
+template<typename T>
+void QuaternionToAngleAxis(T const* quaternion, T* angle_axis);
+
+// Conversions between 3x3 rotation matrix (in column major order) and
+// axis-angle rotation representations.  Templated for use with
+// autodifferentiation.
+template <typename T>
+void RotationMatrixToAngleAxis(T const * R, T * angle_axis);
+template <typename T>
+void AngleAxisToRotationMatrix(T const * angle_axis, T * R);
+
+// Conversions between 3x3 rotation matrix (in row major order) and
+// Euler angle (in degrees) rotation representations.
+//
+// The {pitch,roll,yaw} Euler angles are rotations around the {x,y,z}
+// axes, respectively.  They are applied in that same order, so the
+// total rotation R is Rz * Ry * Rx.
+template <typename T>
+void EulerAnglesToRotationMatrix(const T* euler, int row_stride, T* R);
+
+// Convert a 4-vector to a 3x3 scaled rotation matrix.
+//
+// The choice of rotation is such that the quaternion [1 0 0 0] goes to an
+// identity matrix and for small a, b, c the quaternion [1 a b c] goes to
+// the matrix
+//
+//         [  0 -c  b ]
+//   I + 2 [  c  0 -a ] + higher order terms
+//         [ -b  a  0 ]
+//
+// which corresponds to a Rodrigues approximation, the last matrix being
+// the cross-product matrix of [a b c]. Together with the property that
+// R(q1 * q2) = R(q1) * R(q2) this uniquely defines the mapping from q to R.
+//
+// The rotation matrix is row-major.
+//
+// No normalization of the quaternion is performed, i.e.
+// R = ||q||^2 * Q, where Q is an orthonormal matrix
+// such that det(Q) = 1 and Q*Q' = I
+template <typename T> inline
+void QuaternionToScaledRotation(const T q[4], T R[3 * 3]);
+
+// Same as above except that the rotation matrix is normalized by the
+// Frobenius norm, so that R * R' = I (and det(R) = 1).
+template <typename T> inline
+void QuaternionToRotation(const T q[4], T R[3 * 3]);
+
+// Rotates a point pt by a quaternion q:
+//
+//   result = R(q) * pt
+//
+// Assumes the quaternion is unit norm. This assumption allows us to
+// write the transform as (something)*pt + pt, as is clear from the
+// formula below. If you pass in a quaternion with |q|^2 = 2 then you
+// WILL NOT get back 2 times the result you get for a unit quaternion.
+template <typename T> inline
+void UnitQuaternionRotatePoint(const T q[4], const T pt[3], T result[3]);
+
+// With this function you do not need to assume that q has unit norm.
+// It does assume that the norm is non-zero.
+template <typename T> inline
+void QuaternionRotatePoint(const T q[4], const T pt[3], T result[3]);
+
+// zw = z * w, where * is the Quaternion product between 4 vectors.
+template<typename T> inline
+void QuaternionProduct(const T z[4], const T w[4], T zw[4]);
+
+// xy = x cross y;
+template<typename T> inline
+void CrossProduct(const T x[3], const T y[3], T x_cross_y[3]);
+
+template<typename T> inline
+T DotProduct(const T x[3], const T y[3]);
+
+// y = R(angle_axis) * x;
+template<typename T> inline
+void AngleAxisRotatePoint(const T angle_axis[3], const T pt[3], T result[3]);
+
+// --- IMPLEMENTATION
+
+template<typename T>
+inline void AngleAxisToQuaternion(const T* angle_axis, T* quaternion) {
+  const T &a0 = angle_axis[0];
+  const T &a1 = angle_axis[1];
+  const T &a2 = angle_axis[2];
+  const T theta_squared = a0 * a0 + a1 * a1 + a2 * a2;
+
+  // For points not at the origin, the full conversion is numerically stable.
+  if (theta_squared > T(0.0)) {
+    const T theta = sqrt(theta_squared);
+    const T half_theta = theta * T(0.5);
+    const T k = sin(half_theta) / theta;
+    quaternion[0] = cos(half_theta);
+    quaternion[1] = a0 * k;
+    quaternion[2] = a1 * k;
+    quaternion[3] = a2 * k;
+  } else {
+    // At the origin, sqrt() will produce NaN in the derivative since
+    // the argument is zero.  By approximating with a Taylor series,
+    // and truncating at one term, the value and first derivatives will be
+    // computed correctly when Jets are used.
+    const T k(0.5);
+    quaternion[0] = T(1.0);
+    quaternion[1] = a0 * k;
+    quaternion[2] = a1 * k;
+    quaternion[3] = a2 * k;
+  }
+}
+
+template<typename T>
+inline void QuaternionToAngleAxis(const T* quaternion, T* angle_axis) {
+  const T &q1 = quaternion[1];
+  const T &q2 = quaternion[2];
+  const T &q3 = quaternion[3];
+  const T sin_squared = q1 * q1 + q2 * q2 + q3 * q3;
+
+  // For quaternions representing non-zero rotation, the conversion
+  // is numerically stable.
+  if (sin_squared > T(0.0)) {
+    const T sin_theta = sqrt(sin_squared);
+    const T k = T(2.0) * atan2(sin_theta, quaternion[0]) / sin_theta;
+    angle_axis[0] = q1 * k;
+    angle_axis[1] = q2 * k;
+    angle_axis[2] = q3 * k;
+  } else {
+    // For zero rotation, sqrt() will produce NaN in the derivative since
+    // the argument is zero.  By approximating with a Taylor series,
+    // and truncating at one term, the value and first derivatives will be
+    // computed correctly when Jets are used.
+    const T k(2.0);
+    angle_axis[0] = q1 * k;
+    angle_axis[1] = q2 * k;
+    angle_axis[2] = q3 * k;
+  }
+}
+
+// The conversion of a rotation matrix to the angle-axis form is
+// numerically problematic when then rotation angle is close to zero
+// or to Pi. The following implementation detects when these two cases
+// occurs and deals with them by taking code paths that are guaranteed
+// to not perform division by a small number.
+template <typename T>
+inline void RotationMatrixToAngleAxis(const T * R, T * angle_axis) {
+  // x = k * 2 * sin(theta), where k is the axis of rotation.
+  angle_axis[0] = R[5] - R[7];
+  angle_axis[1] = R[6] - R[2];
+  angle_axis[2] = R[1] - R[3];
+
+  static const T kOne = T(1.0);
+  static const T kTwo = T(2.0);
+
+  // Since the right hand side may give numbers just above 1.0 or
+  // below -1.0 leading to atan misbehaving, we threshold.
+  T costheta = std::min(std::max((R[0] + R[4] + R[8] - kOne) / kTwo,
+                                 T(-1.0)),
+                        kOne);
+
+  // sqrt is guaranteed to give non-negative results, so we only
+  // threshold above.
+  T sintheta = std::min(sqrt(angle_axis[0] * angle_axis[0] +
+                             angle_axis[1] * angle_axis[1] +
+                             angle_axis[2] * angle_axis[2]) / kTwo,
+                        kOne);
+
+  // Use the arctan2 to get the right sign on theta
+  const T theta = atan2(sintheta, costheta);
+
+  // Case 1: sin(theta) is large enough, so dividing by it is not a
+  // problem. We do not use abs here, because while jets.h imports
+  // std::abs into the namespace, here in this file, abs resolves to
+  // the int version of the function, which returns zero always.
+  //
+  // We use a threshold much larger then the machine epsilon, because
+  // if sin(theta) is small, not only do we risk overflow but even if
+  // that does not occur, just dividing by a small number will result
+  // in numerical garbage. So we play it safe.
+  static const double kThreshold = 1e-12;
+  if ((sintheta > kThreshold) || (sintheta < -kThreshold)) {
+    const T r = theta / (kTwo * sintheta);
+    for (int i = 0; i < 3; ++i) {
+      angle_axis[i] *= r;
+    }
+    return;
+  }
+
+  // Case 2: theta ~ 0, means sin(theta) ~ theta to a good
+  // approximation.
+  if (costheta > 0) {
+    const T kHalf = T(0.5);
+    for (int i = 0; i < 3; ++i) {
+      angle_axis[i] *= kHalf;
+    }
+    return;
+  }
+
+  // Case 3: theta ~ pi, this is the hard case. Since theta is large,
+  // and sin(theta) is small. Dividing by theta by sin(theta) will
+  // either give an overflow or worse still numerically meaningless
+  // results. Thus we use an alternate more complicated formula
+  // here.
+
+  // Since cos(theta) is negative, division by (1-cos(theta)) cannot
+  // overflow.
+  const T inv_one_minus_costheta = kOne / (kOne - costheta);
+
+  // We now compute the absolute value of coordinates of the axis
+  // vector using the diagonal entries of R. To resolve the sign of
+  // these entries, we compare the sign of angle_axis[i]*sin(theta)
+  // with the sign of sin(theta). If they are the same, then
+  // angle_axis[i] should be positive, otherwise negative.
+  for (int i = 0; i < 3; ++i) {
+    angle_axis[i] = theta * sqrt((R[i*4] - costheta) * inv_one_minus_costheta);
+    if (((sintheta < 0) && (angle_axis[i] > 0)) ||
+        ((sintheta > 0) && (angle_axis[i] < 0))) {
+      angle_axis[i] = -angle_axis[i];
+    }
+  }
+}
+
+template <typename T>
+inline void AngleAxisToRotationMatrix(const T * angle_axis, T * R) {
+  static const T kOne = T(1.0);
+  const T theta2 = DotProduct(angle_axis, angle_axis);
+  if (theta2 > 0.0) {
+    // We want to be careful to only evaluate the square root if the
+    // norm of the angle_axis vector is greater than zero. Otherwise
+    // we get a division by zero.
+    const T theta = sqrt(theta2);
+    const T wx = angle_axis[0] / theta;
+    const T wy = angle_axis[1] / theta;
+    const T wz = angle_axis[2] / theta;
+
+    const T costheta = cos(theta);
+    const T sintheta = sin(theta);
+
+    R[0] =     costheta   + wx*wx*(kOne -    costheta);
+    R[1] =  wz*sintheta   + wx*wy*(kOne -    costheta);
+    R[2] = -wy*sintheta   + wx*wz*(kOne -    costheta);
+    R[3] =  wx*wy*(kOne - costheta)     - wz*sintheta;
+    R[4] =     costheta   + wy*wy*(kOne -    costheta);
+    R[5] =  wx*sintheta   + wy*wz*(kOne -    costheta);
+    R[6] =  wy*sintheta   + wx*wz*(kOne -    costheta);
+    R[7] = -wx*sintheta   + wy*wz*(kOne -    costheta);
+    R[8] =     costheta   + wz*wz*(kOne -    costheta);
+  } else {
+    // At zero, we switch to using the first order Taylor expansion.
+    R[0] =  kOne;
+    R[1] = -angle_axis[2];
+    R[2] =  angle_axis[1];
+    R[3] =  angle_axis[2];
+    R[4] =  kOne;
+    R[5] = -angle_axis[0];
+    R[6] = -angle_axis[1];
+    R[7] =  angle_axis[0];
+    R[8] = kOne;
+  }
+}
+
+template <typename T>
+inline void EulerAnglesToRotationMatrix(const T* euler,
+                                        const int row_stride,
+                                        T* R) {
+  const T degrees_to_radians(M_PI / 180.0);
+
+  const T pitch(euler[0] * degrees_to_radians);
+  const T roll(euler[1] * degrees_to_radians);
+  const T yaw(euler[2] * degrees_to_radians);
+
+  const T c1 = cos(yaw);
+  const T s1 = sin(yaw);
+  const T c2 = cos(roll);
+  const T s2 = sin(roll);
+  const T c3 = cos(pitch);
+  const T s3 = sin(pitch);
+
+  // Rows of the rotation matrix.
+  T* R1 = R;
+  T* R2 = R1 + row_stride;
+  T* R3 = R2 + row_stride;
+
+  R1[0] = c1*c2;
+  R1[1] = -s1*c3 + c1*s2*s3;
+  R1[2] = s1*s3 + c1*s2*c3;
+
+  R2[0] = s1*c2;
+  R2[1] = c1*c3 + s1*s2*s3;
+  R2[2] = -c1*s3 + s1*s2*c3;
+
+  R3[0] = -s2;
+  R3[1] = c2*s3;
+  R3[2] = c2*c3;
+}
+
+template <typename T> inline
+void QuaternionToScaledRotation(const T q[4], T R[3 * 3]) {
+  // Make convenient names for elements of q.
+  T a = q[0];
+  T b = q[1];
+  T c = q[2];
+  T d = q[3];
+  // This is not to eliminate common sub-expression, but to
+  // make the lines shorter so that they fit in 80 columns!
+  T aa = a * a;
+  T ab = a * b;
+  T ac = a * c;
+  T ad = a * d;
+  T bb = b * b;
+  T bc = b * c;
+  T bd = b * d;
+  T cc = c * c;
+  T cd = c * d;
+  T dd = d * d;
+
+  R[0] =  aa + bb - cc - dd; R[1] = T(2) * (bc - ad); R[2] = T(2) * (ac + bd);  // NOLINT
+  R[3] = T(2) * (ad + bc); R[4] =  aa - bb + cc - dd; R[5] = T(2) * (cd - ab);  // NOLINT
+  R[6] = T(2) * (bd - ac); R[7] = T(2) * (ab + cd); R[8] =  aa - bb - cc + dd;  // NOLINT
+}
+
+template <typename T> inline
+void QuaternionToRotation(const T q[4], T R[3 * 3]) {
+  QuaternionToScaledRotation(q, R);
+
+  T normalizer = q[0]*q[0] + q[1]*q[1] + q[2]*q[2] + q[3]*q[3];
+  CHECK_NE(normalizer, T(0));
+  normalizer = T(1) / normalizer;
+
+  for (int i = 0; i < 9; ++i) {
+    R[i] *= normalizer;
+  }
+}
+
+template <typename T> inline
+void UnitQuaternionRotatePoint(const T q[4], const T pt[3], T result[3]) {
+  const T t2 =  q[0] * q[1];
+  const T t3 =  q[0] * q[2];
+  const T t4 =  q[0] * q[3];
+  const T t5 = -q[1] * q[1];
+  const T t6 =  q[1] * q[2];
+  const T t7 =  q[1] * q[3];
+  const T t8 = -q[2] * q[2];
+  const T t9 =  q[2] * q[3];
+  const T t1 = -q[3] * q[3];
+  result[0] = T(2) * ((t8 + t1) * pt[0] + (t6 - t4) * pt[1] + (t3 + t7) * pt[2]) + pt[0];  // NOLINT
+  result[1] = T(2) * ((t4 + t6) * pt[0] + (t5 + t1) * pt[1] + (t9 - t2) * pt[2]) + pt[1];  // NOLINT
+  result[2] = T(2) * ((t7 - t3) * pt[0] + (t2 + t9) * pt[1] + (t5 + t8) * pt[2]) + pt[2];  // NOLINT
+}
+
+
+template <typename T> inline
+void QuaternionRotatePoint(const T q[4], const T pt[3], T result[3]) {
+  // 'scale' is 1 / norm(q).
+  const T scale = T(1) / sqrt(q[0] * q[0] +
+                              q[1] * q[1] +
+                              q[2] * q[2] +
+                              q[3] * q[3]);
+
+  // Make unit-norm version of q.
+  const T unit[4] = {
+    scale * q[0],
+    scale * q[1],
+    scale * q[2],
+    scale * q[3],
+  };
+
+  UnitQuaternionRotatePoint(unit, pt, result);
+}
+
+template<typename T> inline
+void QuaternionProduct(const T z[4], const T w[4], T zw[4]) {
+  zw[0] = z[0] * w[0] - z[1] * w[1] - z[2] * w[2] - z[3] * w[3];
+  zw[1] = z[0] * w[1] + z[1] * w[0] + z[2] * w[3] - z[3] * w[2];
+  zw[2] = z[0] * w[2] - z[1] * w[3] + z[2] * w[0] + z[3] * w[1];
+  zw[3] = z[0] * w[3] + z[1] * w[2] - z[2] * w[1] + z[3] * w[0];
+}
+
+// xy = x cross y;
+template<typename T> inline
+void CrossProduct(const T x[3], const T y[3], T x_cross_y[3]) {
+  x_cross_y[0] = x[1] * y[2] - x[2] * y[1];
+  x_cross_y[1] = x[2] * y[0] - x[0] * y[2];
+  x_cross_y[2] = x[0] * y[1] - x[1] * y[0];
+}
+
+template<typename T> inline
+T DotProduct(const T x[3], const T y[3]) {
+  return (x[0] * y[0] + x[1] * y[1] + x[2] * y[2]);
+}
+
+template<typename T> inline
+void AngleAxisRotatePoint(const T angle_axis[3], const T pt[3], T result[3]) {
+  T w[3];
+  T sintheta;
+  T costheta;
+
+  const T theta2 = DotProduct(angle_axis, angle_axis);
+  if (theta2 > 0.0) {
+    // Away from zero, use the rodriguez formula
+    //
+    //   result = pt costheta +
+    //            (w x pt) * sintheta +
+    //            w (w . pt) (1 - costheta)
+    //
+    // We want to be careful to only evaluate the square root if the
+    // norm of the angle_axis vector is greater than zero. Otherwise
+    // we get a division by zero.
+    //
+    const T theta = sqrt(theta2);
+    w[0] = angle_axis[0] / theta;
+    w[1] = angle_axis[1] / theta;
+    w[2] = angle_axis[2] / theta;
+    costheta = cos(theta);
+    sintheta = sin(theta);
+    T w_cross_pt[3];
+    CrossProduct(w, pt, w_cross_pt);
+    T w_dot_pt = DotProduct(w, pt);
+    for (int i = 0; i < 3; ++i) {
+      result[i] = pt[i] * costheta +
+          w_cross_pt[i] * sintheta +
+          w[i] * (T(1.0) - costheta) * w_dot_pt;
+    }
+  } else {
+    // Near zero, the first order Taylor approximation of the rotation
+    // matrix R corresponding to a vector w and angle w is
+    //
+    //   R = I + hat(w) * sin(theta)
+    //
+    // But sintheta ~ theta and theta * w = angle_axis, which gives us
+    //
+    //  R = I + hat(w)
+    //
+    // and actually performing multiplication with the point pt, gives us
+    // R * pt = pt + w x pt.
+    //
+    // Switching to the Taylor expansion at zero helps avoid all sorts
+    // of numerical nastiness.
+    T w_cross_pt[3];
+    CrossProduct(angle_axis, pt, w_cross_pt);
+    for (int i = 0; i < 3; ++i) {
+      result[i] = pt[i] + w_cross_pt[i];
+    }
+  }
+}
+
+}  // namespace ceres
+#endif  // CERES_PUBLIC_ROTATION_H_
diff --git a/include/ceres/sized_cost_function.h b/include/ceres/sized_cost_function.h
new file mode 100644
index 0000000..968285b
--- /dev/null
+++ b/include/ceres/sized_cost_function.h
@@ -0,0 +1,82 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A convenience class for cost functions which are statically sized.
+// Compared to the dynamically-sized base class, this reduces boilerplate.
+
+#ifndef CERES_PUBLIC_SIZED_COST_FUNCTION_H_
+#define CERES_PUBLIC_SIZED_COST_FUNCTION_H_
+
+#include <glog/logging.h>
+#include "ceres/cost_function.h"
+
+namespace ceres {
+
+template<int kNumResiduals,
+         int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5 = 0>
+class SizedCostFunction : public CostFunction {
+ public:
+  SizedCostFunction() {
+    // Sanity checking.
+    DCHECK_GT(kNumResiduals, 0) << "Cost functions must have at least "
+                                << "one residual block.";
+    DCHECK_GT(N0, 0)
+        << "Cost functions must have at least one parameter block.";
+    DCHECK((!N1 && !N2 && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && !N2 && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && !N3 && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && !N4 && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && !N5) ||
+           ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0)))
+        << "Zero block cannot precede a non-zero block. Block sizes are "
+        << "(ignore trailing 0s): " << N0 << ", " << N1 << ", " << N2 << ", "
+        << N3 << ", " << N4 << ", " << N5;
+
+    set_num_residuals(kNumResiduals);
+
+#define ADD_PARAMETER_BLOCK(N) \
+    if (N) mutable_parameter_block_sizes()->push_back(N);
+    ADD_PARAMETER_BLOCK(N0);
+    ADD_PARAMETER_BLOCK(N1);
+    ADD_PARAMETER_BLOCK(N2);
+    ADD_PARAMETER_BLOCK(N3);
+    ADD_PARAMETER_BLOCK(N4);
+    ADD_PARAMETER_BLOCK(N5);
+#undef ADD_PARAMETER_BLOCK
+  }
+
+  virtual ~SizedCostFunction() { }
+
+  // Subclasses must implement Evaluate().
+};
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_SIZED_COST_FUNCTION_H_
diff --git a/include/ceres/solver.h b/include/ceres/solver.h
new file mode 100644
index 0000000..15fd733
--- /dev/null
+++ b/include/ceres/solver.h
@@ -0,0 +1,379 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_PUBLIC_SOLVER_H_
+#define CERES_PUBLIC_SOLVER_H_
+
+#include <cmath>
+#include <string>
+#include <vector>
+
+#include "ceres/iteration_callback.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+class Problem;
+
+// Interface for non-linear least squares solvers.
+class Solver {
+ public:
+  virtual ~Solver();
+
+  // The options structure contains, not surprisingly, options that control how
+  // the solver operates. The defaults should be suitable for a wide range of
+  // problems; however, better performance is often obtainable with tweaking.
+  //
+  // The constants are defined inside types.h
+  struct Options {
+    // Default constructor that sets up a generic sparse problem.
+    Options() {
+      minimizer_type = LEVENBERG_MARQUARDT;
+      max_num_iterations = 50;
+      max_solver_time_sec = 1.0e9;
+      num_threads = 1;
+      tau = 1e-4;
+      min_relative_decrease = 1e-3;
+      function_tolerance = 1e-6;
+      gradient_tolerance = 1e-10;
+      parameter_tolerance = 1e-8;
+#ifndef CERES_NO_SUITESPARSE
+      linear_solver_type = SPARSE_NORMAL_CHOLESKY;
+#else
+      linear_solver_type = DENSE_QR;
+#endif  // CERES_NO_SUITESPARSE
+      preconditioner_type = JACOBI;
+      num_linear_solver_threads = 1;
+      num_eliminate_blocks = 0;
+      ordering_type = NATURAL;
+      linear_solver_min_num_iterations = 1;
+      linear_solver_max_num_iterations = 500;
+      eta = 1e-1;
+      jacobi_scaling = true;
+      logging_type = PER_MINIMIZER_ITERATION;
+      minimizer_progress_to_stdout = false;
+      return_initial_residuals = false;
+      return_final_residuals = false;
+      lsqp_dump_format = "lm_iteration_%03d.lsqp";
+      crash_and_dump_lsqp_on_failure = false;
+      check_gradients = false;
+      gradient_check_relative_precision = 1e-8;
+      numeric_derivative_relative_step_size = 1e-6;
+      update_state_every_iteration = false;
+    }
+
+    // Minimizer options ----------------------------------------
+
+    MinimizerType minimizer_type;
+
+    // Maximum number of iterations for the minimizer to run for.
+    int max_num_iterations;
+
+    // Maximum time for which the minimizer should run for.
+    double max_solver_time_sec;
+
+    // Number of threads used by Ceres for evaluating the cost and
+    // jacobians.
+    int num_threads;
+
+    // For Levenberg-Marquardt, the initial value for the
+    // regularizer. This is the inversely related to the size of the
+    // initial trust region.
+    double tau;
+
+    // For trust region methods, this is lower threshold for the
+    // relative decrease before a step is accepted.
+    double min_relative_decrease;
+
+    // Minimizer terminates when
+    //
+    //   (new_cost - old_cost) < function_tolerance * old_cost;
+    //
+    double function_tolerance;
+
+    // Minimizer terminates when
+    //
+    //   max_i |gradient_i| < gradient_tolerance * max_i|initial_gradient_i|
+    //
+    // This value should typically be 1e-4 * function_tolerance.
+    double gradient_tolerance;
+
+    // Minimizer terminates when
+    //
+    //   |step|_2 <= parameter_tolerance * ( |x|_2 +  parameter_tolerance)
+    //
+    double parameter_tolerance;
+
+    // Linear least squares solver options -------------------------------------
+
+    LinearSolverType linear_solver_type;
+
+    // Type of preconditioner to use with the iterative linear solvers.
+    PreconditionerType preconditioner_type;
+
+    // Number of threads used by Ceres to solve the Newton
+    // step. Currently only the SPARSE_SCHUR solver is capable of
+    // using this setting.
+    int num_linear_solver_threads;
+
+    // For Schur reduction based methods, the first 0 to num blocks are
+    // eliminated using the Schur reduction. For example, when solving
+    // traditional structure from motion problems where the parameters are in
+    // two classes (cameras and points) then num_eliminate_blocks would be the
+    // number of points.
+    //
+    // This parameter is used in conjunction with the ordering.
+    // Applies to: Preprocessor and linear least squares solver.
+    int num_eliminate_blocks;
+
+    // Internally Ceres reorders the parameter blocks to help the
+    // various linear solvers. This parameter allows the user to
+    // influence the re-ordering strategy used. For structure from
+    // motion problems use SCHUR, for other problems NATURAL (default)
+    // is a good choice. In case you wish to specify your own ordering
+    // scheme, for example in conjunction with num_eliminate_blocks,
+    // use USER.
+    OrderingType ordering_type;
+
+    // The ordering of the parameter blocks. The solver pays attention
+    // to it if the ordering_type is set to USER and the vector is
+    // non-empty.
+    vector<double*> ordering;
+
+
+    // Minimum number of iterations for which the linear solver should
+    // run, even if the convergence criterion is satisfied.
+    int linear_solver_min_num_iterations;
+
+    // Maximum number of iterations for which the linear solver should
+    // run. If the solver does not converge in less than
+    // linear_solver_max_num_iterations, then it returns
+    // MAX_ITERATIONS, as its termination type.
+    int linear_solver_max_num_iterations;
+
+    // Forcing sequence parameter. The truncated Newton solver uses
+    // this number to control the relative accuracy with which the
+    // Newton step is computed.
+    //
+    // This constant is passed to ConjugateGradientsSolver which uses
+    // it to terminate the iterations when
+    //
+    //  (Q_i - Q_{i-1})/Q_i < eta/i
+    double eta;
+
+    // Normalize the jacobian using Jacobi scaling before calling
+    // the linear least squares solver.
+    bool jacobi_scaling;
+
+    // Logging options ---------------------------------------------------------
+
+    LoggingType logging_type;
+
+    // By default the Minimizer progress is logged to VLOG(1), which
+    // is sent to STDERR depending on the vlog level. If this flag is
+    // set to true, and logging_type is not SILENT, the logging output
+    // is sent to STDOUT.
+    bool minimizer_progress_to_stdout;
+
+    bool return_initial_residuals;
+    bool return_final_residuals;
+
+    // List of iterations at which the optimizer should dump the
+    // linear least squares problem to disk. Useful for testing and
+    // benchmarking. If empty (default), no problems are dumped.
+    //
+    // This is ignored if protocol buffers are disabled.
+    vector<int> lsqp_iterations_to_dump;
+
+    // Format string for the file name used for dumping the least
+    // squares problem to disk. If the format is 'ascii', then the
+    // problem is logged to the screen; don't try this with large
+    // problems or expect a frozen terminal.
+    string lsqp_dump_format;
+
+    // Dump the linear least squares problem to disk if the minimizer
+    // fails due to NUMERICAL_FAILURE and crash the process. This flag
+    // is useful for generating debugging information. The problem is
+    // dumped in a file whose name is determined by
+    // Solver::Options::lsqp_dump_format.
+    //
+    // Note: This requires a version of Ceres built with protocol buffers.
+    bool crash_and_dump_lsqp_on_failure;
+
+    // Finite differences options ----------------------------------------------
+
+    // Check all jacobians computed by each residual block with finite
+    // differences. This is expensive since it involves computing the
+    // derivative by normal means (e.g. user specified, autodiff,
+    // etc), then also computing it using finite differences. The
+    // results are compared, and if they differ substantially, details
+    // are printed to the log.
+    bool check_gradients;
+
+    // Relative precision to check for in the gradient checker. If the
+    // relative difference between an element in a jacobian exceeds
+    // this number, then the jacobian for that cost term is dumped.
+    double gradient_check_relative_precision;
+
+    // Relative shift used for taking numeric derivatives. For finite
+    // differencing, each dimension is evaluated at slightly shifted
+    // values; for the case of central difference, this is what gets
+    // evaluated:
+    //
+    //   delta = numeric_derivative_relative_step_size;
+    //   f_initial  = f(x)
+    //   f_forward  = f((1 + delta) * x)
+    //   f_backward = f((1 - delta) * x)
+    //
+    // The finite differencing is done along each dimension. The
+    // reason to use a relative (rather than absolute) step size is
+    // that this way, numeric differentation works for functions where
+    // the arguments are typically large (e.g. 1e9) and when the
+    // values are small (e.g. 1e-5). It is possible to construct
+    // "torture cases" which break this finite difference heuristic,
+    // but they do not come up often in practice.
+    //
+    // TODO(keir): Pick a smarter number than the default above! In
+    // theory a good choice is sqrt(eps) * x, which for doubles means
+    // about 1e-8 * x. However, I have found this number too
+    // optimistic. This number should be exposed for users to change.
+    double numeric_derivative_relative_step_size;
+
+    // If true, the user's parameter blocks are updated at the end of
+    // every Minimizer iteration, otherwise they are updated when the
+    // Minimizer terminates. This is useful if, for example, the user
+    // wishes to visualize the state of the optimization every
+    // iteration.
+    bool update_state_every_iteration;
+
+    // Callbacks that are executed at the end of each iteration of the
+    // Minimizer. They are executed in the order that they are
+    // specified in this vector. By default, parameter blocks are
+    // updated only at the end of the optimization, i.e when the
+    // Minimizer terminates. This behaviour is controlled by
+    // update_state_every_variable. If the user wishes to have access
+    // to the update parameter blocks when his/her callbacks are
+    // executed, then set update_state_every_iteration to true.
+    //
+    // The solver does NOT take ownership of these pointers.
+    vector<IterationCallback*> callbacks;
+  };
+
+  struct Summary {
+    Summary();
+
+    // A brief one line description of the state of the solver after
+    // termination.
+    string BriefReport() const;
+
+    // A full multiline description of the state of the solver after
+    // termination.
+    string FullReport() const;
+
+    // Minimizer summary -------------------------------------------------
+    SolverTerminationType termination_type;
+
+    // If the solver did not run, or there was a failure, a
+    // description of the error.
+    string error;
+
+    // Cost of the problem before and after the optimization. See
+    // problem.h for definition of the cost of a problem.
+    double initial_cost;
+    double final_cost;
+
+    // The part of the total cost that comes from residual blocks that
+    // were held fixed by the preprocessor because all the parameter
+    // blocks that they depend on were fixed.
+    double fixed_cost;
+
+    // Residuals before and after the optimization. Each vector
+    // contains problem.NumResiduals() elements. Residuals are in the
+    // same order in which they were added to the problem object when
+    // constructing this problem.
+    vector<double> initial_residuals;
+    vector<double> final_residuals;
+
+    vector<IterationSummary> iterations;
+
+    int num_successful_steps;
+    int num_unsuccessful_steps;
+
+    double preprocessor_time_in_seconds;
+    double minimizer_time_in_seconds;
+    double total_time_in_seconds;
+
+    // Preprocessor summary.
+    int num_parameter_blocks;
+    int num_parameters;
+    int num_residual_blocks;
+    int num_residuals;
+
+    int num_parameter_blocks_reduced;
+    int num_parameters_reduced;
+    int num_residual_blocks_reduced;
+    int num_residuals_reduced;
+
+    int num_eliminate_blocks_given;
+    int num_eliminate_blocks_used;
+
+    int num_threads_given;
+    int num_threads_used;
+
+    int num_linear_solver_threads_given;
+    int num_linear_solver_threads_used;
+
+    LinearSolverType linear_solver_type_given;
+    LinearSolverType linear_solver_type_used;
+
+    PreconditionerType preconditioner_type;
+    OrderingType ordering_type;
+  };
+
+  // Once a least squares problem has been built, this function takes
+  // the problem and optimizes it based on the values of the options
+  // parameters. Upon return, a detailed summary of the work performed
+  // by the preprocessor, the non-linear minmizer and the linear
+  // solver are reported in the summary object.
+  virtual void Solve(const Options& options,
+                     Problem* problem,
+                     Solver::Summary* summary);
+};
+
+// Helper function which avoids going through the interface.
+void Solve(const Solver::Options& options,
+           Problem* problem,
+           Solver::Summary* summary);
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_SOLVER_H_
diff --git a/include/ceres/types.h b/include/ceres/types.h
new file mode 100644
index 0000000..e23786c
--- /dev/null
+++ b/include/ceres/types.h
@@ -0,0 +1,228 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Enums and other top level class definitions.
+//
+// Note: internal/types.cc defines stringification routines for some
+// of these enums. Please update those routines if you extend or
+// remove enums from here.
+
+#ifndef CERES_PUBLIC_TYPES_H_
+#define CERES_PUBLIC_TYPES_H_
+
+namespace ceres {
+
+// Basic integer types. These typedefs are in the Ceres namespace to avoid
+// conflicts with other packages having similar typedefs.
+typedef short int16;
+typedef int   int32;
+
+// Argument type used in interfaces that can optionally take ownership
+// of a passed in argument. If TAKE_OWNERSHIP is passed, the called
+// object takes ownership of the pointer argument, and will call
+// delete on it upon completion.
+enum Ownership {
+  DO_NOT_TAKE_OWNERSHIP,
+  TAKE_OWNERSHIP
+};
+
+// TODO(keir): Considerably expand the explanations of each solver type.
+enum LinearSolverType {
+  // These solvers are for general rectangular systems formed from the
+  // normal equations A'A x = A'b. They are direct solvers and do not
+  // assume any special problem structure.
+
+  // Solve the normal equations using a sparse cholesky solver; based
+  // on CHOLMOD.
+  SPARSE_NORMAL_CHOLESKY,
+
+  // Solve the normal equations using a dense QR solver; based on
+  // Eigen.
+  DENSE_QR,
+
+  // Specialized solvers, specific to problems with a generalized
+  // bi-partitite structure.
+
+  // Solves the reduced linear system using a dense Cholesky solver;
+  // based on Eigen.
+  DENSE_SCHUR,
+
+  // Solves the reduced linear system using a sparse Cholesky solver;
+  // based on CHOLMOD.
+  SPARSE_SCHUR,
+
+  // Solves the reduced linear system using Conjugate Gradients, based
+  // on a new Ceres implementation.  Suitable for large scale
+  // problems.
+  ITERATIVE_SCHUR,
+
+  // Symmetric positive definite solvers
+
+  // This is not meant for direct client use; it is used under the
+  // hood while using ITERATIVE_SCHUR.  Once there is a decent
+  // preconditioner, this will make sense for general sparse problems.
+  CONJUGATE_GRADIENTS,
+};
+
+enum PreconditionerType {
+  // Trivial preconditioner - the identity matrix.
+  IDENTITY,
+
+  // Block diagonal of the Gauss-Newton Hessian.
+  JACOBI,
+
+  // Block diagonal of the Schur complement. This preconditioner may
+  // only be used with the ITERATIVE_SCHUR solver. Requires
+  // SuiteSparse/CHOLMOD.
+  SCHUR_JACOBI,
+
+  // Visibility clustering based preconditioners.
+  //
+  // These preconditioners are well suited for Structure from Motion
+  // problems, particularly problems arising from community photo
+  // collections. These preconditioners use the visibility structure
+  // of the scene to determine the sparsity structure of the
+  // preconditioner. Requires SuiteSparse/CHOLMOD.
+  CLUSTER_JACOBI,
+  CLUSTER_TRIDIAGONAL
+};
+
+enum LinearSolverTerminationType {
+  // Termination criterion was met. For factorization based solvers
+  // the tolerance is assumed to be zero. Any user provided values are
+  // ignored.
+  TOLERANCE,
+
+  // Solver ran for max_num_iterations and terminated before the
+  // termination tolerance could be satified.
+  MAX_ITERATIONS,
+
+  // Solver is stuck and further iterations will not result in any
+  // measurable progress.
+  STAGNATION,
+
+  // Solver failed. Solver was terminated due to numerical errors. The
+  // exact cause of failure depends on the particular solver being
+  // used.
+  FAILURE
+};
+
+enum OrderingType {
+  // The order in which the parameter blocks were defined.
+  NATURAL,
+
+  // Use the ordering specificed in the vector ordering.
+  USER,
+
+  // Automatically figure out the best ordering to use the schur
+  // complement based solver.
+  SCHUR
+};
+
+// Logging options
+// The options get progressively noisier.
+enum LoggingType {
+  SILENT,
+  PER_MINIMIZER_ITERATION,
+};
+
+enum MinimizerType {
+  LEVENBERG_MARQUARDT,
+};
+
+enum SolverTerminationType {
+  // The minimizer did not run at all; usually due to errors in the user's
+  // Problem or the solver options.
+  DID_NOT_RUN,
+
+  // The solver ran for maximum number of iterations specified by the
+  // user, but none of the convergence criterion specified by the user
+  // were met.
+  NO_CONVERGENCE,
+
+  // Minimizer terminated because
+  //  (new_cost - old_cost) < function_tolerance * old_cost;
+  FUNCTION_TOLERANCE,
+
+  // Minimizer terminated because
+  // max_i |gradient_i| < gradient_tolerance * max_i|initial_gradient_i|
+  GRADIENT_TOLERANCE,
+
+  // Minimized terminated because
+  //  |step|_2 <= parameter_tolerance * ( |x|_2 +  parameter_tolerance)
+  PARAMETER_TOLERANCE,
+
+  // The minimizer terminated because it encountered a numerical error
+  // that it could not recover from.
+  NUMERICAL_FAILURE,
+
+  // Using an IterationCallback object, user code can control the
+  // minimizer. The following enums indicate that the user code was
+  // responsible for termination.
+
+  // User's IterationCallback returned SOLVER_ABORT.
+  USER_ABORT,
+
+  // User's IterationCallback returned SOLVER_TERMINATE_SUCCESSFULLY
+  USER_SUCCESS,
+};
+
+// Enums used by the IterationCallback instances to indicate to the
+// solver whether it should continue solving, the user detected an
+// error or the solution is good enough and the solver should
+// terminate.
+enum CallbackReturnType {
+  // Continue solving to next iteration.
+  SOLVER_CONTINUE,
+
+  // Terminate solver, and do not update the parameter blocks upon
+  // return. Unless the user has set
+  // Solver:Options:::update_state_every_iteration, in which case the
+  // state would have been updated every iteration
+  // anyways. Solver::Summary::termination_type is set to USER_ABORT.
+  SOLVER_ABORT,
+
+  // Terminate solver, update state and
+  // return. Solver::Summary::termination_type is set to USER_SUCCESS.
+  SOLVER_TERMINATE_SUCCESSFULLY
+};
+
+const char* LinearSolverTypeToString(LinearSolverType type);
+const char* PreconditionerTypeToString(PreconditionerType type);
+const char* LinearSolverTerminationTypeToString(
+    LinearSolverTerminationType type);
+const char* OrderingTypeToString(OrderingType type);
+const char* SolverTerminationTypeToString(SolverTerminationType type);
+
+bool IsSchurType(LinearSolverType type);
+
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_TYPES_H_
diff --git a/internal/ceres/CMakeLists.txt b/internal/ceres/CMakeLists.txt
new file mode 100644
index 0000000..8c4023e
--- /dev/null
+++ b/internal/ceres/CMakeLists.txt
@@ -0,0 +1,191 @@
+# Ceres Solver - A fast non-linear least squares minimizer
+# Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+# http://code.google.com/p/ceres-solver/
+#
+# 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 Google 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.
+#
+# Author: keir@google.com (Keir Mierle)
+
+SET(CERES_INTERNAL_SRC
+    block_evaluate_preparer.cc
+    block_jacobian_writer.cc
+    block_random_access_dense_matrix.cc
+    block_random_access_matrix.cc
+    block_random_access_sparse_matrix.cc
+    block_sparse_matrix.cc
+    block_structure.cc
+    canonical_views_clustering.cc
+    compressed_row_jacobian_writer.cc
+    compressed_row_sparse_matrix.cc
+    conditioned_cost_function.cc
+    conjugate_gradients_solver.cc
+    corrector.cc
+    dense_qr_solver.cc
+    dense_sparse_matrix.cc
+    detect_structure.cc
+    evaluator.cc
+    file.cc
+    gradient_checking_cost_function.cc
+    implicit_schur_complement.cc
+    iterative_schur_complement_solver.cc
+    levenberg_marquardt.cc
+    linear_least_squares_problems.cc
+    linear_operator.cc
+    linear_solver.cc
+    local_parameterization.cc
+    loss_function.cc
+    normal_prior.cc
+    partitioned_matrix_view.cc
+    problem.cc
+    problem_impl.cc
+    program.cc
+    residual_block.cc
+    residual_block_utils.cc
+    runtime_numeric_diff_cost_function.cc
+    schur_complement_solver.cc
+    schur_eliminator.cc
+    schur_ordering.cc
+    scratch_evaluate_preparer.cc
+    solver.cc
+    solver_impl.cc
+    sparse_matrix.cc
+    sparse_normal_cholesky_solver.cc
+    split.cc
+    stringprintf.cc
+    suitesparse.cc
+    triplet_sparse_matrix.cc
+    types.cc
+    visibility_based_preconditioner.cc
+    visibility.cc
+)
+
+If (PROTOBUF_FOUND)
+  PROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS matrix.proto)
+ENDIF (PROTOBUF_FOUND)
+
+# Also depend on the header files so that they appear in IDEs.
+FILE(GLOB CERES_INTERNAL_HDRS *.h)
+
+# Include the specialized schur solvers.
+IF (SCHUR_SPECIALIZATIONS)
+  FILE(GLOB CERES_INTERNAL_SCHUR_FILES generated/*.cc)
+ELSE (SCHUR_SPECIALIZATIONS)
+  # Only the fully dynamic solver.
+  FILE(GLOB CERES_INTERNAL_SCHUR_FILES generated/schur_eliminator_d_d_d.cc)
+ENDIF (SCHUR_SPECIALIZATIONS)
+
+ADD_LIBRARY(ceres
+            ${PROTO_SRCS}
+            ${PROTO_HDRS}
+            ${CERES_INTERNAL_SRC}
+            ${CERES_INTERNAL_HDRS}
+            ${CERES_INTERNAL_SCHUR_FILES})
+
+# TODO(keir): Make linking gomp optional for e.g. Windows.
+SET(CERES_LIBRARY_DEPENDENCIES
+  ${GLOG_LIB}
+  ${GFLAGS_LIB}
+  ${LAPACK_LIB}
+  ${CAMD_LIB}
+  ${AMD_LIB}
+  ${CCOLAMD_LIB}
+  ${COLAMD_LIB}
+  ${CHOLMOD_LIB})
+
+IF (EXISTS ${METIS_LIB})
+  SET(CERES_LIBRARY_DEPENDENCIES
+      ${CERES_LIBRARY_DEPENDENCIES}
+      ${METIS_LIB})
+ENDIF (EXISTS ${METIS_LIB})
+
+IF (OPENMP_FOUND)
+  SET(CERES_LIBRARY_DEPENDENCIES
+    ${CERES_LIBRARY_DEPENDENCIES}
+    gomp)
+ENDIF (OPENMP_FOUND)
+
+IF (PROTOBUF_FOUND)
+  SET(CERES_LIBRARY_DEPENDENCIES
+    ${CERES_LIBRARY_DEPENDENCIES}
+    ${PROTOBUF_LIBRARY})
+ENDIF (PROTOBUF_FOUND)
+
+TARGET_LINK_LIBRARIES(ceres ${CERES_LIBRARY_DEPENDENCIES})
+
+OPTION(BUILD_TESTS "Build the unit tests." ON)
+IF (BUILD_TESTS)
+  ADD_LIBRARY(gtest gmock_gtest_all.cc gmock_main.cc)
+  ADD_LIBRARY(test_util test_util.cc)
+  TARGET_LINK_LIBRARIES(gtest ${GFLAGS_LIB} ${GLOG_LIB})
+
+  MACRO (CERES_TEST NAME)
+    ADD_EXECUTABLE(${NAME}_test ${NAME}_test.cc)
+    TARGET_LINK_LIBRARIES(${NAME}_test test_util ceres gtest)
+    ADD_TEST(${NAME}_test
+             ${NAME}_test
+             --test_srcdir
+             ${CMAKE_SOURCE_DIR}/data)
+  ENDMACRO (CERES_TEST)
+
+  CERES_TEST(autodiff)
+  CERES_TEST(autodiff_cost_function)
+  CERES_TEST(block_random_access_dense_matrix)
+  CERES_TEST(block_random_access_sparse_matrix)
+  CERES_TEST(block_sparse_matrix)
+  CERES_TEST(canonical_views_clustering)
+  CERES_TEST(compressed_row_sparse_matrix)
+  CERES_TEST(conditioned_cost_function)
+  CERES_TEST(corrector)
+  CERES_TEST(dense_sparse_matrix)
+  CERES_TEST(evaluator)
+  CERES_TEST(gradient_checking_cost_function)
+  CERES_TEST(graph)
+  CERES_TEST(graph_algorithms)
+  CERES_TEST(implicit_schur_complement)
+  CERES_TEST(iterative_schur_complement_solver)
+  CERES_TEST(jet)
+  CERES_TEST(levenberg_marquardt)
+  CERES_TEST(local_parameterization)
+  CERES_TEST(loss_function)
+  CERES_TEST(normal_prior)
+  CERES_TEST(numeric_diff_cost_function)
+  CERES_TEST(parameter_block)
+  CERES_TEST(partitioned_matrix_view)
+  CERES_TEST(problem)
+  CERES_TEST(residual_block)
+  CERES_TEST(residual_block_utils)
+  CERES_TEST(rotation)
+  CERES_TEST(runtime_numeric_diff_cost_function)
+  CERES_TEST(schur_complement_solver)
+  CERES_TEST(schur_eliminator)
+  CERES_TEST(schur_ordering)
+  CERES_TEST(solver_impl)
+  CERES_TEST(symmetric_linear_solver)
+  CERES_TEST(system)
+  CERES_TEST(triplet_sparse_matrix)
+  CERES_TEST(unsymmetric_linear_solver)
+  CERES_TEST(visibility)
+  CERES_TEST(visibility_based_preconditioner)
+ENDIF (BUILD_TESTS)
diff --git a/internal/ceres/autodiff_cost_function_test.cc b/internal/ceres/autodiff_cost_function_test.cc
new file mode 100644
index 0000000..2f44595
--- /dev/null
+++ b/internal/ceres/autodiff_cost_function_test.cc
@@ -0,0 +1,97 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/autodiff_cost_function.h"
+
+#include <cstddef>
+
+#include "gtest/gtest.h"
+#include "ceres/cost_function.h"
+
+namespace ceres {
+namespace internal {
+
+class BinaryScalarCost {
+ public:
+  explicit BinaryScalarCost(double a): a_(a) {}
+  template <typename T>
+  bool operator()(const T* const x, const T* const y,
+                  T* cost) const {
+    cost[0] =
+      x[0] * y[0] + x[1] * y[1]  - T(a_);
+    return true;
+  }
+ private:
+  double a_;
+};
+
+
+TEST(AutoDiffResidualAndJacobian, BilinearDifferentiationTest) {
+  CostFunction* cost_function  =
+    new AutoDiffCostFunction<BinaryScalarCost, 1, 2, 2>(
+        new BinaryScalarCost(1.0));
+
+  double** parameters = new double*[2];
+  parameters[0] = new double[2];
+  parameters[1] = new double[2];
+
+  parameters[0][0] = 1;
+  parameters[0][1] = 2;
+
+  parameters[1][0] = 3;
+  parameters[1][1] = 4;
+
+  double** jacobians = new double*[2];
+  jacobians[0] = new double[2];
+  jacobians[1] = new double[2];
+
+
+  double residuals = 0.0;
+
+  cost_function->Evaluate(parameters, &residuals, NULL);
+  EXPECT_EQ(residuals, 10);
+  cost_function->Evaluate(parameters, &residuals, jacobians);
+
+  EXPECT_EQ(jacobians[0][0], 3);
+  EXPECT_EQ(jacobians[0][1], 4);
+  EXPECT_EQ(jacobians[1][0], 1);
+  EXPECT_EQ(jacobians[1][1], 2);
+
+  delete []jacobians[0];
+  delete []jacobians[1];
+  delete []parameters[0];
+  delete []parameters[1];
+  delete []jacobians;
+  delete []parameters;
+  delete cost_function;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/autodiff_test.cc b/internal/ceres/autodiff_test.cc
new file mode 100644
index 0000000..e9f0c5e
--- /dev/null
+++ b/internal/ceres/autodiff_test.cc
@@ -0,0 +1,341 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/internal/autodiff.h"
+
+#include "gtest/gtest.h"
+#include "ceres/random.h"
+
+namespace ceres {
+namespace internal {
+
+template <typename T> inline
+T &RowMajor(T *base, int rows, int cols, int i, int j) {
+  return base[cols * i + j];
+}
+
+// Do (symmetric) finite differencing using the given function object 'b' of
+// type 'B' and scalar type 'T' with step size 'del'.
+//
+// The type B should have a signature
+//
+//   bool operator()(T const *, T *) const;
+//
+// which maps a vector of parameters to a vector of outputs.
+template <typename B, typename T, int M, int N> inline
+bool SymmetricDiff(const B& b,
+                   const T par[N],
+                   T del,           // step size.
+                   T fun[M],
+                   T jac[M * N]) {  // row-major.
+  if (!b(par, fun)) {
+    return false;
+  }
+
+  // Temporary parameter vector.
+  T tmp_par[N];
+  for (int j = 0; j < N; ++j) {
+    tmp_par[j] = par[j];
+  }
+
+  // For each dimension, we do one forward step and one backward step in
+  // parameter space, and store the output vector vectors in these vectors.
+  T fwd_fun[M];
+  T bwd_fun[M];
+
+  for (int j = 0; j < N; ++j) {
+    // Forward step.
+    tmp_par[j] = par[j] + del;
+    if (!b(tmp_par, fwd_fun)) {
+      return false;
+    }
+
+    // Backward step.
+    tmp_par[j] = par[j] - del;
+    if (!b(tmp_par, bwd_fun)) {
+      return false;
+    }
+
+    // Symmetric differencing:
+    //   f'(a) = (f(a + h) - f(a - h)) / (2 h)
+    for (int i = 0; i < M; ++i) {
+      RowMajor(jac, M, N, i, j) =
+          (fwd_fun[i] - bwd_fun[i]) / (T(2) * del);
+    }
+
+    // Restore our temporary vector.
+    tmp_par[j] = par[j];
+  }
+
+  return true;
+}
+
+template <typename A> inline
+void QuaternionToScaledRotation(A const q[4], A R[3 * 3]) {
+  // Make convenient names for elements of q.
+  A a = q[0];
+  A b = q[1];
+  A c = q[2];
+  A d = q[3];
+  // This is not to eliminate common sub-expression, but to
+  // make the lines shorter so that they fit in 80 columns!
+  A aa = a*a;
+  A ab = a*b;
+  A ac = a*c;
+  A ad = a*d;
+  A bb = b*b;
+  A bc = b*c;
+  A bd = b*d;
+  A cc = c*c;
+  A cd = c*d;
+  A dd = d*d;
+#define R(i, j) RowMajor(R, 3, 3, (i), (j))
+  R(0, 0) =  aa+bb-cc-dd; R(0, 1) = A(2)*(bc-ad); R(0, 2) = A(2)*(ac+bd);  // NOLINT
+  R(1, 0) = A(2)*(ad+bc); R(1, 1) =  aa-bb+cc-dd; R(1, 2) = A(2)*(cd-ab);  // NOLINT
+  R(2, 0) = A(2)*(bd-ac); R(2, 1) = A(2)*(ab+cd); R(2, 2) =  aa-bb-cc+dd;  // NOLINT
+#undef R
+}
+
+// A structure for projecting a 3x4 camera matrix and a
+// homogeneous 3D point, to a 2D inhomogeneous point.
+struct Projective {
+  // Function that takes P and X as separate vectors:
+  //   P, X -> x
+  template <typename A>
+  bool operator()(A const P[12], A const X[4], A x[2]) const {
+    A PX[3];
+    for (int i = 0; i < 3; ++i) {
+      PX[i] = RowMajor(P, 3, 4, i, 0) * X[0] +
+              RowMajor(P, 3, 4, i, 1) * X[1] +
+              RowMajor(P, 3, 4, i, 2) * X[2] +
+              RowMajor(P, 3, 4, i, 3) * X[3];
+    }
+    if (PX[2] != 0.0) {
+      x[0] = PX[0] / PX[2];
+      x[1] = PX[1] / PX[2];
+      return true;
+    }
+    return false;
+  }
+
+  // Version that takes P and X packed in one vector:
+  //
+  //   (P, X) -> x
+  //
+  template <typename A>
+  bool operator()(A const P_X[12 + 4], A x[2]) const {
+    return operator()(P_X + 0, P_X + 12, x);
+  }
+};
+
+// Test projective camera model projector.
+TEST(AutoDiff, ProjectiveCameraModel) {
+  srand(5);
+  double const tol = 1e-10;  // floating-point tolerance.
+  double const del = 1e-4;   // finite-difference step.
+  double const err = 1e-6;   // finite-difference tolerance.
+
+  Projective b;
+
+  // Make random P and X, in a single vector.
+  double PX[12 + 4];
+  for (int i = 0; i < 12 + 4; ++i) {
+    PX[i] = RandDouble();
+  }
+
+  // Handy names for the P and X parts.
+  double *P = PX + 0;
+  double *X = PX + 12;
+
+  // Apply the mapping, to get image point b_x.
+  double b_x[2];
+  b(P, X, b_x);
+
+  // Use finite differencing to estimate the Jacobian.
+  double fd_x[2];
+  double fd_J[2 * (12 + 4)];
+  ASSERT_TRUE((SymmetricDiff<Projective, double, 2, 12 + 4>(b, PX, del,
+                                                            fd_x, fd_J)));
+
+  for (int i = 0; i < 2; ++i) {
+    ASSERT_EQ(fd_x[i], b_x[i]);
+  }
+
+  // Use automatic differentiation to compute the Jacobian.
+  double ad_x1[2];
+  double J_PX[2 * (12 + 4)];
+  {
+    double *parameters[] = { PX };
+    double *jacobians[] = { J_PX };
+    ASSERT_TRUE((AutoDiff<Projective, double, 2, 12 + 4>::Differentiate(
+        b, parameters, ad_x1, jacobians)));
+
+    for (int i = 0; i < 2; ++i) {
+      ASSERT_NEAR(ad_x1[i], b_x[i], tol);
+    }
+  }
+
+  // Use automatic differentiation (again), with two arguments.
+  {
+    double ad_x2[2];
+    double J_P[2 * 12];
+    double J_X[2 * 4];
+    double *parameters[] = { P, X };
+    double *jacobians[] = { J_P, J_X };
+    ASSERT_TRUE((AutoDiff<Projective, double, 2, 12, 4>::Differentiate(
+        b, parameters, ad_x2, jacobians)));
+
+    for (int i = 0; i < 2; ++i) {
+      ASSERT_NEAR(ad_x2[i], b_x[i], tol);
+    }
+
+    // Now compare the jacobians we got.
+    for (int i = 0; i < 2; ++i) {
+      for (int j = 0; j < 12 + 4; ++j) {
+        ASSERT_NEAR(J_PX[(12 + 4) * i + j], fd_J[(12 + 4) * i + j], err);
+      }
+
+      for (int j = 0; j < 12; ++j) {
+        ASSERT_NEAR(J_PX[(12 + 4) * i + j], J_P[12 * i + j], tol);
+      }
+      for (int j = 0; j < 4; ++j) {
+        ASSERT_NEAR(J_PX[(12 + 4) * i + 12 + j], J_X[4 * i + j], tol);
+      }
+    }
+  }
+}
+
+// Object to implement the projection by a calibrated camera.
+struct Metric {
+  // The mapping is
+  //
+  //   q, c, X -> x = dehomg(R(q) (X - c))
+  //
+  // where q is a quaternion and c is the center of projection.
+  //
+  // This function takes three input vectors.
+  template <typename A>
+  bool operator()(A const q[4], A const c[3], A const X[3], A x[2]) const {
+    A R[3 * 3];
+    QuaternionToScaledRotation(q, R);
+
+    // Convert the quaternion mapping all the way to projective matrix.
+    A P[3 * 4];
+
+    // Set P(:, 1:3) = R
+    for (int i = 0; i < 3; ++i) {
+      for (int j = 0; j < 3; ++j) {
+        RowMajor(P, 3, 4, i, j) = RowMajor(R, 3, 3, i, j);
+      }
+    }
+
+    // Set P(:, 4) = - R c
+    for (int i = 0; i < 3; ++i) {
+      RowMajor(P, 3, 4, i, 3) =
+        - (RowMajor(R, 3, 3, i, 0) * c[0] +
+           RowMajor(R, 3, 3, i, 1) * c[1] +
+           RowMajor(R, 3, 3, i, 2) * c[2]);
+    }
+
+    A X1[4] = { X[0], X[1], X[2], A(1) };
+    Projective p;
+    return p(P, X1, x);
+  }
+
+  // A version that takes a single vector.
+  template <typename A>
+  bool operator()(A const q_c_X[4 + 3 + 3], A x[2]) const {
+    return operator()(q_c_X, q_c_X + 4, q_c_X + 4 + 3, x);
+  }
+};
+
+// This test is similar in structure to the previous one.
+TEST(AutoDiff, Metric) {
+  srand(5);
+  double const tol = 1e-10;  // floating-point tolerance.
+  double const del = 1e-4;   // finite-difference step.
+  double const err = 1e-5;   // finite-difference tolerance.
+
+  Metric b;
+
+  // Make random parameter vector.
+  double qcX[4 + 3 + 3];
+  for (int i = 0; i < 4 + 3 + 3; ++i)
+    qcX[i] = RandDouble();
+
+  // Handy names.
+  double *q = qcX;
+  double *c = qcX + 4;
+  double *X = qcX + 4 + 3;
+
+  // Compute projection, b_x.
+  double b_x[2];
+  ASSERT_TRUE(b(q, c, X, b_x));
+
+  // Finite differencing estimate of Jacobian.
+  double fd_x[2];
+  double fd_J[2 * (4 + 3 + 3)];
+  ASSERT_TRUE((SymmetricDiff<Metric, double, 2, 4 + 3 + 3>(b, qcX, del,
+                                                           fd_x, fd_J)));
+
+  for (int i = 0; i < 2; ++i) {
+    ASSERT_NEAR(fd_x[i], b_x[i], tol);
+  }
+
+  // Automatic differentiation.
+  double ad_x[2];
+  double J_q[2 * 4];
+  double J_c[2 * 3];
+  double J_X[2 * 3];
+  double *parameters[] = { q, c, X };
+  double *jacobians[] = { J_q, J_c, J_X };
+  ASSERT_TRUE((AutoDiff<Metric, double, 2, 4, 3, 3>::Differentiate(
+      b, parameters, ad_x, jacobians)));
+
+  for (int i = 0; i < 2; ++i) {
+    ASSERT_NEAR(ad_x[i], b_x[i], tol);
+  }
+
+  // Compare the pieces.
+  for (int i = 0; i < 2; ++i) {
+    for (int j = 0; j < 4; ++j) {
+      ASSERT_NEAR(J_q[4 * i + j], fd_J[(4 + 3 + 3) * i + j], err);
+    }
+    for (int j = 0; j < 3; ++j) {
+      ASSERT_NEAR(J_c[3 * i + j], fd_J[(4 + 3 + 3) * i + j + 4], err);
+    }
+    for (int j = 0; j < 3; ++j) {
+      ASSERT_NEAR(J_X[3 * i + j], fd_J[(4 + 3 + 3) * i + j + 4 + 3], err);
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_evaluate_preparer.cc b/internal/ceres/block_evaluate_preparer.cc
new file mode 100644
index 0000000..05e63eb
--- /dev/null
+++ b/internal/ceres/block_evaluate_preparer.cc
@@ -0,0 +1,73 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/block_evaluate_preparer.h"
+
+#include <vector>
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/parameter_block.h"
+#include "ceres/residual_block.h"
+#include "ceres/sparse_matrix.h"
+
+namespace ceres {
+namespace internal {
+
+void BlockEvaluatePreparer::Init(int** jacobian_layout) {
+  jacobian_layout_ = jacobian_layout;
+}
+
+// Point the jacobian blocks directly into the block sparse matrix.
+void BlockEvaluatePreparer::Prepare(const ResidualBlock* residual_block,
+                                    int residual_block_index,
+                                    SparseMatrix* jacobian,
+                                    double** jacobians) const {
+  CHECK(jacobian != NULL);
+  double* jacobian_values =
+      down_cast<BlockSparseMatrix*>(jacobian)->mutable_values();
+
+  const int* jacobian_block_offset = jacobian_layout_[residual_block_index];
+  const int num_parameter_blocks = residual_block->NumParameterBlocks();
+  for (int j = 0; j < num_parameter_blocks; ++j) {
+    if (!residual_block->parameter_blocks()[j]->IsConstant()) {
+      jacobians[j] = jacobian_values + *jacobian_block_offset;
+
+      // The jacobian_block_offset can't be indexed with 'j' since the code
+      // that creates the layout strips out any blocks for inactive
+      // parameters. Instead, bump the pointer for active parameters only.
+      jacobian_block_offset++;
+    } else {
+      jacobians[j] = NULL;
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_evaluate_preparer.h b/internal/ceres/block_evaluate_preparer.h
new file mode 100644
index 0000000..a786931
--- /dev/null
+++ b/internal/ceres/block_evaluate_preparer.h
@@ -0,0 +1,67 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A evaluate preparer which puts jacobian the evaluated jacobian blocks
+// directly into their final resting place in an overall block sparse matrix.
+// The evaluator takes care to avoid evaluating the jacobian for fixed
+// parameters.
+
+#ifndef CERES_INTERNAL_BLOCK_EVALUATE_PREPARER_H_
+#define CERES_INTERNAL_BLOCK_EVALUATE_PREPARER_H_
+
+namespace ceres {
+namespace internal {
+
+class ResidualBlock;
+class SparseMatrix;
+
+class BlockEvaluatePreparer {
+ public:
+  // Using Init() instead of a constructor allows for allocating this structure
+  // with new[]. This is because C++ doesn't allow passing arguments to objects
+  // constructed with new[] (as opposed to plain 'new').
+  void Init(int** jacobian_layout);
+
+  // EvaluatePreparer interface
+
+  // Point the jacobian blocks directly into the block sparse matrix.
+  void Prepare(const ResidualBlock* residual_block,
+               int residual_block_index,
+               SparseMatrix* jacobian,
+               double** jacobians) const;
+
+ private:
+  int const* const* jacobian_layout_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_EVALUATE_PREPARER_H_
diff --git a/internal/ceres/block_jacobian_writer.cc b/internal/ceres/block_jacobian_writer.cc
new file mode 100644
index 0000000..52a58bb
--- /dev/null
+++ b/internal/ceres/block_jacobian_writer.cc
@@ -0,0 +1,209 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/block_jacobian_writer.h"
+
+#include "ceres/block_evaluate_preparer.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+// Given the residual block ordering, build a lookup table to determine which
+// per-parameter jacobian goes where in the overall program jacobian.
+//
+// Since we expect to use a Schur type linear solver to solve the LM step, take
+// extra care to place the E blocks and the F blocks contiguously. E blocks are
+// the first num_eliminate_blocks parameter blocks as indicated by the parameter
+// block ordering. The remaining parameter blocks are the F blocks.
+//
+// TODO(keir): Consider if we should use a boolean for each parameter block
+// instead of num_eliminate_blocks.
+void BuildJacobianLayout(const Program& program,
+                         int num_eliminate_blocks,
+                         vector<int*>* jacobian_layout,
+                         vector<int>* jacobian_layout_storage) {
+  const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
+
+  // Iterate over all the active residual blocks and determine how many E blocks
+  // are there. This will determine where the F blocks start in the jacobian
+  // matrix. Also compute the number of jacobian blocks.
+  int f_block_pos = 0;
+  int num_jacobian_blocks = 0;
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    ResidualBlock* residual_block = residual_blocks[i];
+    const int num_residuals = residual_block->NumResiduals();
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+
+    // Advance f_block_pos over each E block for this residual.
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+      if (!parameter_block->IsConstant()) {
+        // Only count blocks for active parameters.
+        num_jacobian_blocks++;
+        if (parameter_block->index() < num_eliminate_blocks) {
+          f_block_pos += num_residuals * parameter_block->LocalSize();
+        }
+      }
+    }
+  }
+
+  // We now know that the E blocks are laid out starting at zero, and the F
+  // blocks are laid out starting at f_block_pos. Iterate over the residual
+  // blocks again, and this time fill the jacobian_layout array with the
+  // position information.
+
+  jacobian_layout->resize(program.NumResidualBlocks());
+  jacobian_layout_storage->resize(num_jacobian_blocks);
+
+  int e_block_pos = 0;
+  int* jacobian_pos = &(*jacobian_layout_storage)[0];
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    const ResidualBlock* residual_block = residual_blocks[i];
+    const int num_residuals = residual_block->NumResiduals();
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+
+    (*jacobian_layout)[i] = jacobian_pos;
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+      const int parameter_block_index = parameter_block->index();
+      if (parameter_block->IsConstant()) {
+        continue;
+      }
+      const int jacobian_block_size =
+          num_residuals * parameter_block->LocalSize();
+      if (parameter_block_index < num_eliminate_blocks) {
+        *jacobian_pos = e_block_pos;
+        e_block_pos += jacobian_block_size;
+      } else {
+        *jacobian_pos = f_block_pos;
+        f_block_pos += jacobian_block_size;
+      }
+      jacobian_pos++;
+    }
+  }
+}
+
+}  // namespace
+
+BlockJacobianWriter::BlockJacobianWriter(const Evaluator::Options& options,
+                                         Program* program)
+    : program_(program) {
+  CHECK_GE(options.num_eliminate_blocks, 0)
+      << "num_eliminate_blocks must be greater than 0.";
+
+  BuildJacobianLayout(*program,
+                      options.num_eliminate_blocks,
+                      &jacobian_layout_,
+                      &jacobian_layout_storage_);
+}
+
+// Create evaluate prepareres that point directly into the final jacobian. This
+// makes the final Write() a nop.
+BlockEvaluatePreparer* BlockJacobianWriter::CreateEvaluatePreparers(
+    int num_threads) {
+  BlockEvaluatePreparer* preparers = new BlockEvaluatePreparer[num_threads];
+  for (int i = 0; i < num_threads; i++) {
+    preparers[i].Init(&jacobian_layout_[0]);
+  }
+  return preparers;
+}
+
+SparseMatrix* BlockJacobianWriter::CreateJacobian() const {
+  CompressedRowBlockStructure* bs = new CompressedRowBlockStructure;
+
+  const vector<ParameterBlock*>& parameter_blocks =
+      program_->parameter_blocks();
+
+  // Construct the column blocks.
+  bs->cols.resize(parameter_blocks.size());
+  for (int i = 0, cursor = 0; i < parameter_blocks.size(); ++i) {
+    CHECK_NE(parameter_blocks[i]->index(), -1);
+    CHECK(!parameter_blocks[i]->IsConstant());
+    bs->cols[i].size = parameter_blocks[i]->LocalSize();
+    bs->cols[i].position = cursor;
+    cursor += bs->cols[i].size;
+  }
+
+  // Construct the cells in each row.
+  const vector<ResidualBlock*>& residual_blocks =
+      program_->residual_blocks();
+  int row_block_position = 0;
+  bs->rows.resize(residual_blocks.size());
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    const ResidualBlock* residual_block = residual_blocks[i];
+    CompressedRow* row = &bs->rows[i];
+
+    row->block.size = residual_block->NumResiduals();
+    row->block.position = row_block_position;
+    row_block_position += row->block.size;
+
+    // Size the row by the number of active parameters in this residual.
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+    int num_active_parameter_blocks = 0;
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      if (residual_block->parameter_blocks()[j]->index() != -1) {
+        num_active_parameter_blocks++;
+      }
+    }
+    row->cells.resize(num_active_parameter_blocks);
+
+    // Add layout information for the active parameters in this row.
+    for (int j = 0, k = 0; j < num_parameter_blocks; ++j) {
+      const ParameterBlock* parameter_block =
+          residual_block->parameter_blocks()[j];
+      if (!parameter_block->IsConstant()) {
+        Cell& cell = row->cells[k];
+        cell.block_id = parameter_block->index();
+        cell.position = jacobian_layout_[i][k];
+
+        // Only increment k for active parameters, since there is only layout
+        // information for active parameters.
+        k++;
+      }
+    }
+
+    sort(row->cells.begin(), row->cells.end(), CellLessThan);
+  }
+
+  BlockSparseMatrix* jacobian = new BlockSparseMatrix(bs);
+  CHECK_NOTNULL(jacobian);
+  return jacobian;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_jacobian_writer.h b/internal/ceres/block_jacobian_writer.h
new file mode 100644
index 0000000..140c721
--- /dev/null
+++ b/internal/ceres/block_jacobian_writer.h
@@ -0,0 +1,127 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A jacobian writer that writes to block sparse matrices. The "writer" name is
+// misleading, since the Write() operation on the block jacobian writer does not
+// write anything. Instead, the Prepare() method on the BlockEvaluatePreparers
+// makes a jacobians array which has direct pointers into the block sparse
+// jacobian. When the cost function is evaluated, the jacobian blocks get placed
+// directly in their final location.
+
+#ifndef CERES_INTERNAL_BLOCK_JACOBIAN_WRITER_H_
+#define CERES_INTERNAL_BLOCK_JACOBIAN_WRITER_H_
+
+#include <vector>
+#include "ceres/evaluator.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockEvaluatePreparer;
+class Program;
+class SparseMatrix;
+
+class BlockJacobianWriter {
+ public:
+  BlockJacobianWriter(const Evaluator::Options& options,
+                      Program* program);
+
+  // JacobianWriter interface.
+
+  // Create evaluate prepareres that point directly into the final jacobian.
+  // This makes the final Write() a nop.
+  BlockEvaluatePreparer* CreateEvaluatePreparers(int num_threads);
+
+  SparseMatrix* CreateJacobian() const;
+
+  void Write(int /* residual_id */,
+             int /* residual_offset */,
+             double** /* jacobians */,
+             SparseMatrix* /* jacobian */) {
+    // This is a noop since the blocks were written directly into their final
+    // position by the outside evaluate call, thanks to the jacobians array
+    // prepared by the BlockEvaluatePreparers.
+  }
+
+ private:
+  Program* program_;
+
+  // Stores the position of each residual / parameter jacobian.
+  //
+  // The block sparse matrix that this writer writes to is stored as a set of
+  // contiguos dense blocks, one after each other; see BlockSparseMatrix. The
+  // "double* values_" member of the block sparse matrix contains all of these
+  // blocks. Given a pointer to the first element of a block and the size of
+  // that block, it's possible to write to it.
+  //
+  // In the case of a block sparse jacobian, the jacobian writer needs a way to
+  // find the offset in the values_ array of each residual/parameter jacobian
+  // block.
+  //
+  // That is the purpose of jacobian_layout_.
+  //
+  // In particular, jacobian_layout_[i][j] is the offset in the values_ array of
+  // the derivative of residual block i with respect to the parameter block at
+  // active argument position j.
+  //
+  // The active qualifier means that non-active parameters do not count. Care
+  // must be taken when indexing into jacobian_layout_ to account for this.
+  // Consider a single residual example:
+  //
+  //   r(x, y, z)
+  //
+  // with r in R^3, x in R^4, y in R^2, and z in R^5.
+  // Take y as a constant (non-active) parameter.
+  // Take r as residual number 0.
+  //
+  // In this case, the active arguments are only (x, z), so the active argument
+  // position for x is 0, and the active argument position for z is 1. This is
+  // similar to thinking of r as taking only 2 parameters:
+  //
+  //   r(x, z)
+  //
+  // There are only 2 jacobian blocks: dr/dx and dr/dz. jacobian_layout_ would
+  // have the following contents:
+  //
+  //   jacobian_layout_[0] = { 0, 12 }
+  //
+  // which indicates that dr/dx is located at values_[0], and dr/dz is at
+  // values_[12]. See BlockEvaluatePreparer::Prepare()'s comments about 'j'.
+  vector<int*> jacobian_layout_;
+
+  // The pointers in jacobian_layout_ point directly into this vector.
+  vector<int> jacobian_layout_storage_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_JACOBIAN_WRITER_H_
diff --git a/internal/ceres/block_random_access_dense_matrix.cc b/internal/ceres/block_random_access_dense_matrix.cc
new file mode 100644
index 0000000..2afaf5e
--- /dev/null
+++ b/internal/ceres/block_random_access_dense_matrix.cc
@@ -0,0 +1,83 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_random_access_dense_matrix.h"
+
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+BlockRandomAccessDenseMatrix::BlockRandomAccessDenseMatrix(
+    const vector<int>& blocks) {
+  block_layout_.resize(blocks.size(), 0);
+  num_rows_ = 0;
+  for (int i = 0; i < blocks.size(); ++i) {
+    block_layout_[i] = num_rows_;
+    num_rows_ += blocks[i];
+  }
+
+  values_.reset(new double[num_rows_ * num_rows_]);
+  CHECK_NOTNULL(values_.get());
+  cell_info_.values = values_.get();
+  SetZero();
+}
+
+// Assume that the user does not hold any locks on any cell blocks
+// when they are calling SetZero.
+BlockRandomAccessDenseMatrix::~BlockRandomAccessDenseMatrix() {
+}
+
+CellInfo* BlockRandomAccessDenseMatrix::GetCell(const int row_block_id,
+                                                const int col_block_id,
+                                                int* row,
+                                                int* col,
+                                                int* row_stride,
+                                                int* col_stride) {
+  *row = block_layout_[row_block_id];
+  *col = block_layout_[col_block_id];
+  *row_stride = num_rows_;
+  *col_stride = num_rows_;
+  return &cell_info_;
+}
+
+// Assume that the user does not hold any locks on any cell blocks
+// when they are calling SetZero.
+void BlockRandomAccessDenseMatrix::SetZero() {
+  if (num_rows_) {
+    VectorRef(values_.get(), num_rows_ * num_rows_).setZero();
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_random_access_dense_matrix.h b/internal/ceres/block_random_access_dense_matrix.h
new file mode 100644
index 0000000..3a00962
--- /dev/null
+++ b/internal/ceres/block_random_access_dense_matrix.h
@@ -0,0 +1,98 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_
+#define CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_
+
+#include "ceres/block_random_access_matrix.h"
+
+#include <vector>
+
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+// A square block random accessible matrix with the same row and
+// column block structure. All cells are stored in the same single
+// array, so that its also accessible as a dense matrix of size
+// num_rows x num_cols.
+//
+// This class is NOT thread safe. Since all n^2 cells are stored,
+// GetCell never returns NULL for any (row_block_id, col_block_id)
+// pair.
+//
+// ReturnCell is a nop.
+class BlockRandomAccessDenseMatrix : public BlockRandomAccessMatrix {
+ public:
+  // blocks is a vector of block sizes. The resulting matrix has
+  // blocks.size() * blocks.size() cells.
+  explicit BlockRandomAccessDenseMatrix(const vector<int>& blocks);
+
+  // The destructor is not thread safe. It assumes that no one is
+  // modifying any cells when the matrix is being destroyed.
+  virtual ~BlockRandomAccessDenseMatrix();
+
+  // BlockRandomAccessMatrix interface.
+  virtual CellInfo* GetCell(int row_block_id,
+                            int col_block_id,
+                            int* row,
+                            int* col,
+                            int* row_stride,
+                            int* col_stride);
+
+  // This is not a thread safe method, it assumes that no cell is
+  // locked.
+  virtual void SetZero();
+
+  // Since the matrix is square with the same row and column block
+  // structure, num_rows() = num_cols().
+  virtual int num_rows() const { return num_rows_; }
+  virtual int num_cols() const { return num_rows_; }
+
+  // The underlying matrix storing the cells.
+  const double* values() const { return values_.get(); }
+  double* mutable_values() { return values_.get(); }
+
+ private:
+  CellInfo cell_info_;
+  int num_rows_;
+  vector<int> block_layout_;
+  scoped_array<double> values_;
+
+  DISALLOW_COPY_AND_ASSIGN(BlockRandomAccessDenseMatrix);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_
diff --git a/internal/ceres/block_random_access_dense_matrix_test.cc b/internal/ceres/block_random_access_dense_matrix_test.cc
new file mode 100644
index 0000000..359eb93
--- /dev/null
+++ b/internal/ceres/block_random_access_dense_matrix_test.cc
@@ -0,0 +1,115 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <vector>
+#include "gtest/gtest.h"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(BlockRandomAccessDenseMatrix, GetCell) {
+  vector<int> blocks;
+  blocks.push_back(3);
+  blocks.push_back(4);
+  blocks.push_back(5);
+  const int num_rows = 3 + 4 + 5;
+  BlockRandomAccessDenseMatrix m(blocks);
+  EXPECT_EQ(m.num_rows(), num_rows);
+  EXPECT_EQ(m.num_cols(), num_rows);
+
+  int row_idx = 0;
+  for (int i = 0; i < blocks.size(); ++i) {
+    int col_idx = 0;
+    for (int j = 0; j < blocks.size(); ++j) {
+      int row;
+      int col;
+      int row_stride;
+      int col_stride;
+      CellInfo* cell =
+          m.GetCell(i, j, &row, &col, &row_stride, &col_stride);
+
+      EXPECT_TRUE(cell != NULL);
+      EXPECT_EQ(row, row_idx);
+      EXPECT_EQ(col, col_idx);
+      EXPECT_EQ(row_stride, 3 + 4 + 5);
+      EXPECT_EQ(col_stride, 3 + 4 + 5);
+      col_idx += blocks[j];
+    }
+    row_idx += blocks[i];
+  }
+}
+
+TEST(BlockRandomAccessDenseMatrix, WriteCell) {
+  vector<int> blocks;
+  blocks.push_back(3);
+  blocks.push_back(4);
+  blocks.push_back(5);
+  const int num_rows = 3 + 4 + 5;
+
+  BlockRandomAccessDenseMatrix m(blocks);
+
+  // Fill the cell (i,j) with (i + 1) * (j + 1)
+  for (int i = 0; i < blocks.size(); ++i) {
+    for (int j = 0; j < blocks.size(); ++j) {
+      int row;
+      int col;
+      int row_stride;
+      int col_stride;
+      CellInfo* cell = m.GetCell(
+          i, j, &row, &col, &row_stride, &col_stride);
+      MatrixRef(cell->values, row_stride, col_stride).block(
+          row, col, blocks[i], blocks[j]) =
+          (i+1) * (j+1) * Matrix::Ones(blocks[i], blocks[j]);
+    }
+  }
+
+  // Check the values in the array are correct by going over the
+  // entries of each block manually.
+  int row_idx = 0;
+  for (int i = 0; i < blocks.size(); ++i) {
+    int col_idx = 0;
+    for (int j = 0; j < blocks.size(); ++j) {
+      // Check the values of this block.
+      for (int r = 0; r < blocks[i]; ++r) {
+        for (int c = 0; c < blocks[j]; ++c) {
+          int pos = row_idx * num_rows + col_idx;
+          EXPECT_EQ(m.values()[pos], (i + 1) * (j + 1));
+        }
+      }
+      col_idx += blocks[j];
+    }
+    row_idx += blocks[i];
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_random_access_matrix.cc b/internal/ceres/block_random_access_matrix.cc
new file mode 100644
index 0000000..58fe4a1
--- /dev/null
+++ b/internal/ceres/block_random_access_matrix.cc
@@ -0,0 +1,40 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_random_access_matrix.h"
+
+namespace ceres {
+namespace internal {
+
+BlockRandomAccessMatrix::~BlockRandomAccessMatrix() {
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_random_access_matrix.h b/internal/ceres/block_random_access_matrix.h
new file mode 100644
index 0000000..f398af3
--- /dev/null
+++ b/internal/ceres/block_random_access_matrix.h
@@ -0,0 +1,132 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Interface for matrices that allow block based random access.
+
+#ifndef CERES_INTERNAL_BLOCK_RANDOM_ACCESS_MATRIX_H_
+#define CERES_INTERNAL_BLOCK_RANDOM_ACCESS_MATRIX_H_
+
+#include "ceres/mutex.h"
+
+namespace ceres {
+namespace internal {
+
+// A matrix implementing the BlockRandomAccessMatrix interface is a
+// matrix whose rows and columns are divided into blocks. For example
+// the matrix A:
+//
+//            3     4      5
+//  A =  5 [c_11  c_12  c_13]
+//       4 [c_21  c_22  c_23]
+//
+// has row blocks of size 5 and 4, and column blocks of size 3, 4 and
+// 5. It has six cells corresponding to the six row-column block
+// combinations.
+//
+// BlockRandomAccessMatrix objects provide access to cells c_ij using
+// the GetCell method. when a cell is present, GetCell will return a
+// CellInfo object containing a pointer to an array which contains the
+// cell as a submatrix and a mutex that guards this submatrix. If the
+// user is accessing the matrix concurrently, it is his responsibility
+// to use the mutex to exclude other writers from writing to the cell
+// concurrently.
+//
+// There is no requirement that all cells be present, i.e. the matrix
+// itself can be block sparse. When a cell is not present, the GetCell
+// method will return a NULL pointer.
+//
+// There is no requirement about how the cells are stored beyond that
+// form a dense submatrix of a larger dense matrix. Like everywhere
+// else in Ceres, RowMajor storage assumed.
+//
+// Example usage:
+//
+//  BlockRandomAccessMatrix* A = new BlockRandomAccessMatrixSubClass(...)
+//
+//  int row, col, row_stride, col_stride;
+//  CellInfo* cell = A->GetCell(row_block_id, col_block_id,
+//                              &row, &col,
+//                              &row_stride, &col_stride);
+//
+//  if (cell != NULL) {
+//     MatrixRef m(cell->values, row_stride, col_stride);
+//     MutexLock l(&cell->m);
+//     m.block(row, col, row_block_size, col_block_size) = ...
+//  }
+
+// Structure to carry a pointer to the array containing a cell and the
+// Mutex guarding it.
+struct CellInfo {
+  CellInfo()
+      : values(NULL) {
+  }
+
+  explicit CellInfo(double* ptr)
+      : values(ptr) {
+  }
+
+  double* values;
+  Mutex m;
+};
+
+class BlockRandomAccessMatrix {
+ public:
+  virtual ~BlockRandomAccessMatrix();
+
+  // If the cell (row_block_id, col_block_id) is present, then return
+  // a CellInfo with a pointer to the dense matrix containing it,
+  // otherwise return NULL. The dense matrix containing this cell has
+  // size row_stride, col_stride and the cell is located at position
+  // (row, col) within this matrix.
+  //
+  // The size of the cell is row_block_size x col_block_size is
+  // assumed known to the caller. row_block_size less than or equal to
+  // row_stride and col_block_size is upper bounded by col_stride.
+  virtual CellInfo* GetCell(int row_block_id,
+                            int col_block_id,
+                            int* row,
+                            int* col,
+                            int* row_stride,
+                            int* col_stride) = 0;
+
+  // Zero out the values of the array. The structure of the matrix
+  // (size and sparsity) is preserved.
+  virtual void SetZero() = 0;
+
+  // Number of scalar rows and columns in the matrix, i.e the sum of
+  // all row blocks and column block sizes respectively.
+  virtual int num_rows() const = 0;
+  virtual int num_cols() const = 0;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_RANDOM_ACCESS_MATRIX_H_
diff --git a/internal/ceres/block_random_access_sparse_matrix.cc b/internal/ceres/block_random_access_sparse_matrix.cc
new file mode 100644
index 0000000..c496fcd
--- /dev/null
+++ b/internal/ceres/block_random_access_sparse_matrix.cc
@@ -0,0 +1,158 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_random_access_sparse_matrix.h"
+
+#include <algorithm>
+#include <set>
+#include <utility>
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/mutex.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+BlockRandomAccessSparseMatrix::BlockRandomAccessSparseMatrix(
+    const vector<int>& blocks,
+    const set<pair<int, int> >& block_pairs)
+    : kMaxRowBlocks(10 * 1000 * 1000),
+      blocks_(blocks) {
+  CHECK_LT(blocks.size(), kMaxRowBlocks);
+
+  // Build the row/column layout vector and count the number of scalar
+  // rows/columns.
+  int num_cols = 0;
+  vector<int> col_layout;
+  for (int i = 0; i < blocks_.size(); ++i) {
+    col_layout.push_back(num_cols);
+    num_cols += blocks_[i];
+  }
+
+  // Count the number of scalar non-zero entries and build the layout
+  // object for looking into the values array of the
+  // TripletSparseMatrix.
+  int num_nonzeros = 0;
+  for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
+       it != block_pairs.end();
+       ++it) {
+    const int row_block_size = blocks_[it->first];
+    const int col_block_size = blocks_[it->second];
+    num_nonzeros += row_block_size * col_block_size;
+  }
+
+  VLOG(1) << "Matrix Size [" << num_cols
+          << "," << num_cols
+          << "] " << num_nonzeros;
+
+  tsm_.reset(new TripletSparseMatrix(num_cols, num_cols, num_nonzeros));
+  tsm_->set_num_nonzeros(num_nonzeros);
+  int* rows = tsm_->mutable_rows();
+  int* cols = tsm_->mutable_cols();
+  double* values = tsm_->mutable_values();
+
+  int pos = 0;
+  for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
+       it != block_pairs.end();
+       ++it) {
+    const int row_block_size = blocks_[it->first];
+    const int col_block_size = blocks_[it->second];
+    layout_[IntPairToLong(it->first, it->second)] =
+        new CellInfo(values + pos);
+    pos += row_block_size * col_block_size;
+  }
+
+  // Fill the sparsity pattern of the underlying matrix.
+  for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
+       it != block_pairs.end();
+       ++it) {
+    const int row_block_id = it->first;
+    const int col_block_id = it->second;
+    const int row_block_size = blocks_[row_block_id];
+    const int col_block_size = blocks_[col_block_id];
+    int pos =
+        layout_[IntPairToLong(row_block_id, col_block_id)]->values - values;
+    for (int r = 0; r < row_block_size; ++r) {
+      for (int c = 0; c < col_block_size; ++c, ++pos) {
+          rows[pos] = col_layout[row_block_id] + r;
+          cols[pos] = col_layout[col_block_id] + c;
+          values[pos] = 1.0;
+          DCHECK_LT(rows[pos], tsm_->num_rows());
+          DCHECK_LT(cols[pos], tsm_->num_rows());
+      }
+    }
+  }
+}
+
+// Assume that the user does not hold any locks on any cell blocks
+// when they are calling SetZero.
+BlockRandomAccessSparseMatrix::~BlockRandomAccessSparseMatrix() {
+  for (LayoutType::iterator it = layout_.begin();
+       it != layout_.end();
+       ++it) {
+    delete it->second;
+  }
+}
+
+CellInfo* BlockRandomAccessSparseMatrix::GetCell(int row_block_id,
+                                                 int col_block_id,
+                                                 int* row,
+                                                 int* col,
+                                                 int* row_stride,
+                                                 int* col_stride) {
+  const LayoutType::iterator it  =
+      layout_.find(IntPairToLong(row_block_id, col_block_id));
+  if (it == layout_.end()) {
+    return NULL;
+  }
+
+  // Each cell is stored contiguously as its own little dense matrix.
+  *row = 0;
+  *col = 0;
+  *row_stride = blocks_[row_block_id];
+  *col_stride = blocks_[col_block_id];
+  return it->second;
+}
+
+// Assume that the user does not hold any locks on any cell blocks
+// when they are calling SetZero.
+void BlockRandomAccessSparseMatrix::SetZero() {
+  if (tsm_->num_nonzeros()) {
+    VectorRef(tsm_->mutable_values(),
+              tsm_->num_nonzeros()).setZero();
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_random_access_sparse_matrix.h b/internal/ceres/block_random_access_sparse_matrix.h
new file mode 100644
index 0000000..12613c3
--- /dev/null
+++ b/internal/ceres/block_random_access_sparse_matrix.h
@@ -0,0 +1,109 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_BLOCK_RANDOM_ACCESS_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_BLOCK_RANDOM_ACCESS_SPARSE_MATRIX_H_
+
+#include <set>
+#include <vector>
+#include <utility>
+#include "ceres/mutex.h"
+#include "ceres/block_random_access_matrix.h"
+#include "ceres/collections_port.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+// A threaf safe square block sparse implementation of
+// BlockRandomAccessMatrix. Internally a TripletSparseMatrix is used
+// for doing the actual storage. This class augments this matrix with
+// an unordered_map that allows random read/write access.
+class BlockRandomAccessSparseMatrix : public BlockRandomAccessMatrix {
+ public:
+  // blocks is an array of block sizes. block_pairs is a set of
+  // <row_block_id, col_block_id> pairs to identify the non-zero cells
+  // of this matrix.
+  BlockRandomAccessSparseMatrix(const vector<int>& blocks,
+                                const set<pair<int, int> >& block_pairs);
+
+  // The destructor is not thread safe. It assumes that no one is
+  // modifying any cells when the matrix is being destroyed.
+  virtual ~BlockRandomAccessSparseMatrix();
+
+  // BlockRandomAccessMatrix Interface.
+  virtual CellInfo* GetCell(int row_block_id,
+                            int col_block_id,
+                            int* row,
+                            int* col,
+                            int* row_stride,
+                            int* col_stride);
+
+  // This is not a thread safe method, it assumes that no cell is
+  // locked.
+  virtual void SetZero();
+  virtual bool IsThreadSafe() const { return true; }
+
+  // Since the matrix is square, num_rows() == num_cols().
+  virtual int num_rows() const { return tsm_->num_rows(); }
+  virtual int num_cols() const { return tsm_->num_cols(); }
+
+  // Access to the underlying matrix object.
+  const TripletSparseMatrix* matrix() const { return tsm_.get(); }
+  TripletSparseMatrix* mutable_matrix() { return tsm_.get(); }
+
+ private:
+  long int IntPairToLong(int a, int b) {
+    return a * kMaxRowBlocks + b;
+  }
+
+  const int kMaxRowBlocks;
+  // row/column block sizes.
+  const vector<int> blocks_;
+
+  // A mapping from <row_block_id, col_block_id> to the position in
+  // the values array of tsm_ where the block is stored.
+  typedef HashMap<long int, CellInfo* > LayoutType;
+  LayoutType layout_;
+
+  // The underlying matrix object which actually stores the cells.
+  scoped_ptr<TripletSparseMatrix> tsm_;
+
+  DISALLOW_COPY_AND_ASSIGN(BlockRandomAccessSparseMatrix);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_RANDOM_ACCESS_SPARSE_MATRIX_H_
diff --git a/internal/ceres/block_random_access_sparse_matrix_test.cc b/internal/ceres/block_random_access_sparse_matrix_test.cc
new file mode 100644
index 0000000..ee40c1d
--- /dev/null
+++ b/internal/ceres/block_random_access_sparse_matrix_test.cc
@@ -0,0 +1,113 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <vector>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/block_random_access_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(BlockRandomAccessSparseMatrix, GetCell) {
+  vector<int> blocks;
+  blocks.push_back(3);
+  blocks.push_back(4);
+  blocks.push_back(5);
+  const int num_rows = 3 + 4 + 5;
+
+  set< pair<int, int> > block_pairs;
+  int num_nonzeros = 0;
+  block_pairs.insert(make_pair(0, 0));
+  num_nonzeros += blocks[0] * blocks[0];
+
+  block_pairs.insert(make_pair(1, 1));
+  num_nonzeros += blocks[1] * blocks[1];
+
+  block_pairs.insert(make_pair(1, 2));
+  num_nonzeros += blocks[1] * blocks[2];
+
+  block_pairs.insert(make_pair(2, 0));
+  num_nonzeros += blocks[2] * blocks[0];
+
+  BlockRandomAccessSparseMatrix m(blocks, block_pairs);
+  EXPECT_EQ(m.num_rows(), num_rows);
+  EXPECT_EQ(m.num_cols(), num_rows);
+
+  for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
+       it != block_pairs.end();
+       ++it) {
+    const int row_block_id = it->first;
+    const int col_block_id = it->second;
+    int row;
+    int col;
+    int row_stride;
+    int col_stride;
+    CellInfo* cell =  m.GetCell(row_block_id, col_block_id,
+                                &row, &col,
+                                &row_stride, &col_stride);
+    EXPECT_TRUE(cell != NULL);
+    EXPECT_EQ(row, 0);
+    EXPECT_EQ(col, 0);
+    EXPECT_EQ(row_stride, blocks[row_block_id]);
+    EXPECT_EQ(col_stride, blocks[col_block_id]);
+
+    // Write into the block
+    MatrixRef(cell->values, row_stride, col_stride).block(
+        row, col, blocks[row_block_id], blocks[col_block_id]) =
+        (row_block_id + 1) * (col_block_id +1) *
+        Matrix::Ones(blocks[row_block_id], blocks[col_block_id]);
+  }
+
+  const TripletSparseMatrix* tsm = m.matrix();
+  EXPECT_EQ(tsm->num_nonzeros(), num_nonzeros);
+  EXPECT_EQ(tsm->max_num_nonzeros(), num_nonzeros);
+
+  Matrix dense;
+  tsm->ToDenseMatrix(&dense);
+
+  // (0,0)
+  EXPECT_EQ((dense.block(0, 0, 3, 3) - Matrix::Ones(3, 3)).norm(), 0);
+  // (1,1)
+  EXPECT_EQ((dense.block(3, 3, 4, 4) - 2 * 2 * Matrix::Ones(4, 4)).norm(), 0);
+  // (1,2)
+  EXPECT_EQ((dense.block(3, 3 + 4, 4, 5) - 2 * 3 * Matrix::Ones(4, 5)).norm(),
+            0);
+  // (2,0)
+  EXPECT_EQ((dense.block(3 + 4, 0, 5, 3) - 3 * 1 * Matrix::Ones(5, 3)).norm(),
+            0);
+
+  // There is nothing else in the matrix besides these four blocks.
+  EXPECT_EQ(dense.norm(), sqrt(9 + 16 * 16 + 36 * 20 + 9 * 15));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_sparse_matrix.cc b/internal/ceres/block_sparse_matrix.cc
new file mode 100644
index 0000000..c1be940
--- /dev/null
+++ b/internal/ceres/block_sparse_matrix.cc
@@ -0,0 +1,263 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_sparse_matrix.h"
+
+#include <cstddef>
+#include <algorithm>
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/block_structure.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+BlockSparseMatrix::~BlockSparseMatrix() {}
+
+BlockSparseMatrix::BlockSparseMatrix(
+    CompressedRowBlockStructure* block_structure)
+    : num_rows_(0),
+      num_cols_(0),
+      num_nonzeros_(0),
+      values_(NULL),
+      block_structure_(block_structure) {
+  CHECK_NOTNULL(block_structure_.get());
+
+  // Count the number of columns in the matrix.
+  for (int i = 0; i < block_structure_->cols.size(); ++i) {
+    num_cols_ += block_structure_->cols[i].size;
+  }
+
+  // Count the number of non-zero entries and the number of rows in
+  // the matrix.
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_size = block_structure_->rows[i].block.size;
+    num_rows_ += row_block_size;
+
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      num_nonzeros_ += col_block_size * row_block_size;
+    }
+  }
+
+  CHECK_GE(num_rows_, 0);
+  CHECK_GE(num_cols_, 0);
+  CHECK_GE(num_nonzeros_, 0);
+  VLOG(2) << "Allocating values array with "
+          << num_nonzeros_ * sizeof(double) << " bytes.";  // NOLINT
+  values_.reset(new double[num_nonzeros_]);
+  CHECK_NOTNULL(values_.get());
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+BlockSparseMatrix::BlockSparseMatrix(const SparseMatrixProto& outer_proto) {
+  CHECK(outer_proto.has_block_matrix());
+
+  const BlockSparseMatrixProto& proto = outer_proto.block_matrix();
+  CHECK(proto.has_num_rows());
+  CHECK(proto.has_num_cols());
+  CHECK_EQ(proto.num_nonzeros(), proto.values_size());
+
+  num_rows_ = proto.num_rows();
+  num_cols_ = proto.num_cols();
+  num_nonzeros_ = proto.num_nonzeros();
+
+  // Copy out the values into *this.
+  values_.reset(new double[num_nonzeros_]);
+  for (int i = 0; i < proto.num_nonzeros(); ++i) {
+    values_[i] = proto.values(i);
+  }
+
+  // Create the block structure according to the proto.
+  block_structure_.reset(new CompressedRowBlockStructure);
+  ProtoToBlockStructure(proto.block_structure(), block_structure_.get());
+}
+#endif
+
+void BlockSparseMatrix::SetZero() {
+  fill(values_.get(), values_.get() + num_nonzeros_, 0.0);
+}
+
+void BlockSparseMatrix::RightMultiply(const double* x,  double* y) const {
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(y);
+
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_pos = block_structure_->rows[i].block.position;
+    int row_block_size = block_structure_->rows[i].block.size;
+    VectorRef yref(y + row_block_pos, row_block_size);
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      ConstVectorRef xref(x + col_block_pos, col_block_size);
+      MatrixRef m(values_.get() + cells[j].position,
+                  row_block_size, col_block_size);
+      yref += m.lazyProduct(xref);
+    }
+  }
+}
+
+void BlockSparseMatrix::LeftMultiply(const double* x, double* y) const {
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(y);
+
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_pos = block_structure_->rows[i].block.position;
+    int row_block_size = block_structure_->rows[i].block.size;
+    const ConstVectorRef xref(x + row_block_pos, row_block_size);
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      VectorRef yref(y + col_block_pos, col_block_size);
+      MatrixRef m(values_.get() + cells[j].position,
+                  row_block_size, col_block_size);
+      yref += m.transpose().lazyProduct(xref);
+    }
+  }
+}
+
+void BlockSparseMatrix::SquaredColumnNorm(double* x) const {
+  CHECK_NOTNULL(x);
+  VectorRef(x, num_cols_).setZero();
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_size = block_structure_->rows[i].block.size;
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      const MatrixRef m(values_.get() + cells[j].position,
+                        row_block_size, col_block_size);
+      VectorRef(x + col_block_pos, col_block_size) += m.colwise().squaredNorm();
+    }
+  }
+}
+
+void BlockSparseMatrix::ScaleColumns(const double* scale) {
+  CHECK_NOTNULL(scale);
+
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_size = block_structure_->rows[i].block.size;
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      MatrixRef m(values_.get() + cells[j].position,
+                        row_block_size, col_block_size);
+      m *= ConstVectorRef(scale + col_block_pos, col_block_size).asDiagonal();
+    }
+  }
+}
+
+void BlockSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const {
+  CHECK_NOTNULL(dense_matrix);
+
+  dense_matrix->resize(num_rows_, num_cols_);
+  dense_matrix->setZero();
+  Matrix& m = *dense_matrix;
+
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_pos = block_structure_->rows[i].block.position;
+    int row_block_size = block_structure_->rows[i].block.size;
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      int jac_pos = cells[j].position;
+      m.block(row_block_pos, col_block_pos, row_block_size, col_block_size)
+          += MatrixRef(values_.get() + jac_pos, row_block_size, col_block_size);
+    }
+  }
+}
+
+void BlockSparseMatrix::ToTripletSparseMatrix(
+    TripletSparseMatrix* matrix) const {
+  CHECK_NOTNULL(matrix);
+
+  matrix->Reserve(num_nonzeros_);
+  matrix->Resize(num_rows_, num_cols_);
+  matrix->SetZero();
+
+  for (int i = 0; i < block_structure_->rows.size(); ++i) {
+    int row_block_pos = block_structure_->rows[i].block.position;
+    int row_block_size = block_structure_->rows[i].block.size;
+    const vector<Cell>& cells = block_structure_->rows[i].cells;
+    for (int j = 0; j < cells.size(); ++j) {
+      int col_block_id = cells[j].block_id;
+      int col_block_size = block_structure_->cols[col_block_id].size;
+      int col_block_pos = block_structure_->cols[col_block_id].position;
+      int jac_pos = cells[j].position;
+       for (int r = 0; r < row_block_size; ++r) {
+        for (int c = 0; c < col_block_size; ++c, ++jac_pos) {
+          matrix->mutable_rows()[jac_pos] = row_block_pos + r;
+          matrix->mutable_cols()[jac_pos] = col_block_pos + c;
+          matrix->mutable_values()[jac_pos] = values_[jac_pos];
+        }
+      }
+    }
+  }
+  matrix->set_num_nonzeros(num_nonzeros_);
+}
+
+// Return a pointer to the block structure. We continue to hold
+// ownership of the object though.
+const CompressedRowBlockStructure* BlockSparseMatrix::block_structure()
+    const {
+  return block_structure_.get();
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+void BlockSparseMatrix::ToProto(SparseMatrixProto* outer_proto) const {
+  outer_proto->Clear();
+
+  BlockSparseMatrixProto* proto = outer_proto->mutable_block_matrix();
+  proto->set_num_rows(num_rows_);
+  proto->set_num_cols(num_cols_);
+  proto->set_num_nonzeros(num_nonzeros_);
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    proto->add_values(values_[i]);
+  }
+  BlockStructureToProto(*block_structure_, proto->mutable_block_structure());
+}
+#endif
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_sparse_matrix.h b/internal/ceres/block_sparse_matrix.h
new file mode 100644
index 0000000..b151dd0
--- /dev/null
+++ b/internal/ceres/block_sparse_matrix.h
@@ -0,0 +1,142 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Implementation of the SparseMatrix interface for block sparse
+// matrices.
+
+#ifndef CERES_INTERNAL_BLOCK_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_BLOCK_SPARSE_MATRIX_H_
+
+#include "ceres/block_structure.h"
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+class SparseMatrixProto;
+class TripletSparseMatrix;
+
+// A further extension of the SparseMatrix interface to support block-oriented
+// matrices. The key addition is the RowBlockValues() accessor, which enables
+// the lazy block sparse matrix implementation.
+class BlockSparseMatrixBase : public SparseMatrix {
+ public:
+  BlockSparseMatrixBase() {}
+  virtual ~BlockSparseMatrixBase() {}
+
+  // Convert this matrix into a triplet sparse matrix.
+  virtual void ToTripletSparseMatrix(TripletSparseMatrix* matrix) const = 0;
+
+  // Returns a pointer to the block structure. Does not transfer
+  // ownership.
+  virtual const CompressedRowBlockStructure* block_structure() const = 0;
+
+  // Returns a pointer to a row of the matrix. The returned array is only valid
+  // until the next call to RowBlockValues. The caller does not own the result.
+  //
+  // The returned array is laid out such that cells on the specified row are
+  // contiguous in the returned array, though neighbouring cells in row order
+  // may not be contiguous in the row values. The cell values for cell
+  // (row_block, cell_block) are found at offset
+  //
+  //   block_structure()->rows[row_block].cells[cell_block].position
+  //
+  virtual const double* RowBlockValues(int row_block_index) const = 0;
+
+ private:
+  DISALLOW_COPY_AND_ASSIGN(BlockSparseMatrixBase);
+};
+
+// This class implements the SparseMatrix interface for storing and
+// manipulating block sparse matrices. The block structure is stored
+// in the CompressedRowBlockStructure object and one is needed to
+// initialize the matrix. For details on how the blocks structure of
+// the matrix is stored please see the documentation
+//
+//   internal/ceres/block_structure.h
+//
+class BlockSparseMatrix : public BlockSparseMatrixBase {
+ public:
+  // Construct a block sparse matrix with a fully initialized
+  // CompressedRowBlockStructure objected. The matrix takes over
+  // ownership of this object and destroys it upon destruction.
+  //
+  // TODO(sameeragarwal): Add a function which will validate legal
+  // CompressedRowBlockStructure objects.
+  explicit BlockSparseMatrix(CompressedRowBlockStructure* block_structure);
+
+  // Construct a block sparse matrix from a protocol buffer.
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  explicit BlockSparseMatrix(const SparseMatrixProto& proto);
+#endif
+
+  BlockSparseMatrix();
+  virtual ~BlockSparseMatrix();
+
+  // Implementation of SparseMatrix interface.
+  virtual void SetZero();
+  virtual void RightMultiply(const double* x, double* y) const;
+  virtual void LeftMultiply(const double* x, double* y) const;
+  virtual void SquaredColumnNorm(double* x) const;
+  virtual void ScaleColumns(const double* scale);
+  virtual void ToDenseMatrix(Matrix* dense_matrix) const;
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  virtual void ToProto(SparseMatrixProto* proto) const;
+#endif
+  virtual int num_rows()         const { return num_rows_;     }
+  virtual int num_cols()         const { return num_cols_;     }
+  virtual int num_nonzeros()     const { return num_nonzeros_; }
+  virtual const double* values() const { return values_.get(); }
+  virtual double* mutable_values()     { return values_.get(); }
+
+  // Implementation of BlockSparseMatrixBase interface.
+  virtual void ToTripletSparseMatrix(TripletSparseMatrix* matrix) const;
+  virtual const CompressedRowBlockStructure* block_structure() const;
+  virtual const double* RowBlockValues(int row_block_index) const {
+    return values_.get();
+  }
+
+ private:
+  int num_rows_;
+  int num_cols_;
+  int max_num_nonzeros_;
+  int num_nonzeros_;
+  scoped_array<double> values_;
+  scoped_ptr<CompressedRowBlockStructure> block_structure_;
+  DISALLOW_COPY_AND_ASSIGN(BlockSparseMatrix);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_SPARSE_MATRIX_H_
diff --git a/internal/ceres/block_sparse_matrix_test.cc b/internal/ceres/block_sparse_matrix_test.cc
new file mode 100644
index 0000000..faf440f
--- /dev/null
+++ b/internal/ceres/block_sparse_matrix_test.cc
@@ -0,0 +1,135 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_sparse_matrix.h"
+
+#include <string>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockSparseMatrixTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(2));
+    CHECK_NOTNULL(problem.get());
+    A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+
+    problem.reset(CreateLinearLeastSquaresProblemFromId(1));
+    CHECK_NOTNULL(problem.get());
+    B_.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
+
+    CHECK_EQ(A_->num_rows(), B_->num_rows());
+    CHECK_EQ(A_->num_cols(), B_->num_cols());
+    CHECK_EQ(A_->num_nonzeros(), B_->num_nonzeros());
+  }
+
+  scoped_ptr<BlockSparseMatrix> A_;
+  scoped_ptr<TripletSparseMatrix> B_;
+};
+
+TEST_F(BlockSparseMatrixTest, SetZeroTest) {
+  A_->SetZero();
+  EXPECT_EQ(13, A_->num_nonzeros());
+}
+
+TEST_F(BlockSparseMatrixTest, RightMultiplyTest) {
+  Vector y_a = Vector::Zero(A_->num_rows());
+  Vector y_b = Vector::Zero(A_->num_rows());
+  for (int i = 0; i < A_->num_cols(); ++i) {
+    Vector x = Vector::Zero(A_->num_cols());
+    x[i] = 1.0;
+    A_->RightMultiply(x.data(), y_a.data());
+    B_->RightMultiply(x.data(), y_b.data());
+    EXPECT_LT((y_a - y_b).norm(), 1e-12);
+  }
+}
+
+TEST_F(BlockSparseMatrixTest, LeftMultiplyTest) {
+  Vector y_a = Vector::Zero(A_->num_cols());
+  Vector y_b = Vector::Zero(A_->num_cols());
+  for (int i = 0; i < A_->num_rows(); ++i) {
+    Vector x = Vector::Zero(A_->num_rows());
+    x[i] = 1.0;
+    A_->LeftMultiply(x.data(), y_a.data());
+    B_->LeftMultiply(x.data(), y_b.data());
+    EXPECT_LT((y_a - y_b).norm(), 1e-12);
+  }
+}
+
+TEST_F(BlockSparseMatrixTest, SquaredColumnNormTest) {
+  Vector y_a = Vector::Zero(A_->num_cols());
+  Vector y_b = Vector::Zero(A_->num_cols());
+  A_->SquaredColumnNorm(y_a.data());
+  B_->SquaredColumnNorm(y_b.data());
+  EXPECT_LT((y_a - y_b).norm(), 1e-12);
+}
+
+TEST_F(BlockSparseMatrixTest, ToDenseMatrixTest) {
+  Matrix m_a;
+  Matrix m_b;
+  A_->ToDenseMatrix(&m_a);
+  B_->ToDenseMatrix(&m_b);
+  EXPECT_LT((m_a - m_b).norm(), 1e-12);
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(BlockSparseMatrixTest, Serialization) {
+  // Roundtrip through serialization and check for equality.
+  SparseMatrixProto proto;
+  A_->ToProto(&proto);
+
+  LOG(INFO) << proto.DebugString();
+
+  BlockSparseMatrix A2(proto);
+
+  Matrix m_a;
+  Matrix m_b;
+  A_->ToDenseMatrix(&m_a);
+  A2.ToDenseMatrix(&m_b);
+
+  LOG(INFO) << "\n" << m_a;
+  LOG(INFO) << "\n" << m_b;
+
+  EXPECT_LT((m_a - m_b).norm(), 1e-12);
+}
+#endif
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_structure.cc b/internal/ceres/block_structure.cc
new file mode 100644
index 0000000..5add4f3
--- /dev/null
+++ b/internal/ceres/block_structure.cc
@@ -0,0 +1,92 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/block_structure.h"
+#include "ceres/matrix_proto.h"
+
+namespace ceres {
+namespace internal {
+
+bool CellLessThan(const Cell& lhs, const Cell& rhs) {
+  return (lhs.block_id < rhs.block_id);
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+void ProtoToBlockStructure(const BlockStructureProto &proto,
+                           CompressedRowBlockStructure *block_structure) {
+  // Decode the column blocks.
+  block_structure->cols.resize(proto.cols_size());
+  for (int i = 0; i < proto.cols_size(); ++i) {
+    block_structure->cols[i].size = proto.cols(i).size();
+    block_structure->cols[i].position =
+        proto.cols(i).position();
+  }
+  // Decode the row structure.
+  block_structure->rows.resize(proto.rows_size());
+  for (int i = 0; i < proto.rows_size(); ++i) {
+    const CompressedRowProto &row = proto.rows(i);
+    block_structure->rows[i].block.size = row.block().size();
+    block_structure->rows[i].block.position = row.block().position();
+
+    // Copy the cells within the row.
+    block_structure->rows[i].cells.resize(row.cells_size());
+    for (int j = 0; j < row.cells_size(); ++j) {
+      const CellProto &cell = row.cells(j);
+      block_structure->rows[i].cells[j].block_id = cell.block_id();
+      block_structure->rows[i].cells[j].position = cell.position();
+    }
+  }
+}
+
+void BlockStructureToProto(const CompressedRowBlockStructure &block_structure,
+                           BlockStructureProto *proto) {
+  // Encode the column blocks.
+  for (int i = 0; i < block_structure.cols.size(); ++i) {
+    BlockProto *block = proto->add_cols();
+    block->set_size(block_structure.cols[i].size);
+    block->set_position(block_structure.cols[i].position);
+  }
+  // Encode the row structure.
+  for (int i = 0; i < block_structure.rows.size(); ++i) {
+    CompressedRowProto *row = proto->add_rows();
+    BlockProto *block = row->mutable_block();
+    block->set_size(block_structure.rows[i].block.size);
+    block->set_position(block_structure.rows[i].block.position);
+    for (int j = 0; j < block_structure.rows[i].cells.size(); ++j) {
+      CellProto *cell = row->add_cells();
+      cell->set_block_id(block_structure.rows[i].cells[j].block_id);
+      cell->set_position(block_structure.rows[i].cells[j].position);
+    }
+  }
+}
+#endif
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/block_structure.h b/internal/ceres/block_structure.h
new file mode 100644
index 0000000..f509067
--- /dev/null
+++ b/internal/ceres/block_structure.h
@@ -0,0 +1,105 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Block structure objects are used to carry information about the
+// dense block structure of sparse matrices. The BlockSparseMatrix
+// object uses the BlockStructure objects to keep track of the matrix
+// structure and operate upon it. This allows us to use more cache
+// friendly block oriented linear algebra operations on the matrix
+// instead of accessing it one scalar entry at a time.
+
+#ifndef CERES_INTERNAL_BLOCK_STRUCTURE_H_
+#define CERES_INTERNAL_BLOCK_STRUCTURE_H_
+
+#include <vector>
+#include "ceres/internal/port.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockStructureProto;
+
+typedef int16 BlockSize;
+
+struct Block {
+  Block() : size(-1), position(-1) {}
+  Block(int size_, int position_) : size(size_), position(position_) {}
+
+  BlockSize size;
+  int position;  // Position along the row/column.
+};
+
+struct Cell {
+  Cell() : block_id(-1), position(-1) {}
+  Cell(int block_id_, int position_)
+      : block_id(block_id_), position(position_) {}
+
+  // Column or row block id as the case maybe.
+  int block_id;
+  // Where in the values array of the jacobian is this cell located.
+  int position;
+};
+
+// Order cell by their block_id;
+bool CellLessThan(const Cell& lhs, const Cell& rhs);
+
+struct CompressedList {
+  Block block;
+  vector<Cell> cells;
+};
+
+typedef CompressedList CompressedRow;
+typedef CompressedList CompressedColumn;
+
+struct CompressedRowBlockStructure {
+  vector<Block> cols;
+  vector<CompressedRow> rows;
+};
+
+struct CompressedColumnBlockStructure {
+  vector<Block> rows;
+  vector<CompressedColumn> cols;
+};
+
+// Deserialize the given block structure proto to the given block structure.
+// Destroys previous contents of block_structure.
+void ProtoToBlockStructure(const BlockStructureProto &proto,
+                           CompressedRowBlockStructure *block_structure);
+
+// Serialize the given block structure to the given proto. Destroys previous
+// contents of proto.
+void BlockStructureToProto(const CompressedRowBlockStructure &block_structure,
+                           BlockStructureProto *proto);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_BLOCK_STRUCTURE_H_
diff --git a/internal/ceres/canonical_views_clustering.cc b/internal/ceres/canonical_views_clustering.cc
new file mode 100644
index 0000000..53190ad
--- /dev/null
+++ b/internal/ceres/canonical_views_clustering.cc
@@ -0,0 +1,238 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: David Gallup (dgallup@google.com)
+//         Sameer Agarwal (sameeragarwal@google.com)
+
+#include "ceres/canonical_views_clustering.h"
+
+#include <glog/logging.h>
+#include "ceres/graph.h"
+#include "ceres/collections_port.h"
+#include "ceres/map_util.h"
+#include "ceres/internal/macros.h"
+
+namespace ceres {
+namespace internal {
+
+typedef HashMap<int, int> IntMap;
+typedef HashSet<int> IntSet;
+
+class CanonicalViewsClustering {
+ public:
+  CanonicalViewsClustering() {}
+
+  // Compute the canonical views clustering of the vertices of the
+  // graph. centers will contain the vertices that are the identified
+  // as the canonical views/cluster centers, and membership is a map
+  // from vertices to cluster_ids. The i^th cluster center corresponds
+  // to the i^th cluster. It is possible depending on the
+  // configuration of the clustering algorithm that some of the
+  // vertices may not be assigned to any cluster. In this case they
+  // are assigned to a cluster with id = kInvalidClusterId.
+  void ComputeClustering(const Graph<int>& graph,
+                         const CanonicalViewsClusteringOptions& options,
+                         vector<int>* centers,
+                         IntMap* membership);
+
+ private:
+  void FindValidViews(IntSet* valid_views) const;
+  double ComputeClusteringQualityDifference(const int candidate,
+                                            const vector<int>& centers) const;
+  void UpdateCanonicalViewAssignments(const int canonical_view);
+  void ComputeClusterMembership(const vector<int>& centers,
+                                IntMap* membership) const;
+
+  CanonicalViewsClusteringOptions options_;
+  const Graph<int>* graph_;
+  // Maps a view to its representative canonical view (its cluster
+  // center).
+  IntMap view_to_canonical_view_;
+  // Maps a view to its similarity to its current cluster center.
+  HashMap<int, double> view_to_canonical_view_similarity_;
+  DISALLOW_COPY_AND_ASSIGN(CanonicalViewsClustering);
+};
+
+void ComputeCanonicalViewsClustering(
+    const Graph<int>& graph,
+    const CanonicalViewsClusteringOptions& options,
+    vector<int>* centers,
+    IntMap* membership) {
+  time_t start_time = time(NULL);
+  CanonicalViewsClustering cv;
+  cv.ComputeClustering(graph, options, centers, membership);
+  VLOG(2) << "Canonical views clustering time (secs): "
+          << time(NULL) - start_time;
+}
+
+// Implementation of CanonicalViewsClustering
+void CanonicalViewsClustering::ComputeClustering(
+    const Graph<int>& graph,
+    const CanonicalViewsClusteringOptions& options,
+    vector<int>* centers,
+    IntMap* membership) {
+  options_ = options;
+  CHECK_NOTNULL(centers)->clear();
+  CHECK_NOTNULL(membership)->clear();
+  graph_ = &graph;
+
+  IntSet valid_views;
+  FindValidViews(&valid_views);
+  while (valid_views.size() > 0) {
+    // Find the next best canonical view.
+    double best_difference = -std::numeric_limits<double>::max();
+    int best_view = 0;
+
+    // TODO(sameeragarwal): Make this loop multi-threaded.
+    for (IntSet::const_iterator view = valid_views.begin();
+         view != valid_views.end();
+         ++view) {
+      const double difference =
+          ComputeClusteringQualityDifference(*view, *centers);
+      if (difference > best_difference) {
+        best_difference = difference;
+        best_view = *view;
+      }
+    }
+
+    CHECK_GT(best_difference, -std::numeric_limits<double>::max());
+
+    // Add canonical view if quality improves, or if minimum is not
+    // yet met, otherwise break.
+    if ((best_difference <= 0) &&
+        (centers->size() >= options_.min_views)) {
+      break;
+    }
+
+    centers->push_back(best_view);
+    valid_views.erase(best_view);
+    UpdateCanonicalViewAssignments(best_view);
+  }
+
+  ComputeClusterMembership(*centers, membership);
+}
+
+// Return the set of vertices of the graph which have valid vertex
+// weights.
+void CanonicalViewsClustering::FindValidViews(
+    IntSet* valid_views) const {
+  const IntSet& views = graph_->vertices();
+  for (IntSet::const_iterator view = views.begin();
+       view != views.end();
+       ++view) {
+    if (graph_->VertexWeight(*view) != Graph<int>::InvalidWeight()) {
+      valid_views->insert(*view);
+    }
+  }
+}
+
+// Computes the difference in the quality score if 'candidate' were
+// added to the set of canonical views.
+double CanonicalViewsClustering::ComputeClusteringQualityDifference(
+    const int candidate,
+    const vector<int>& centers) const {
+  // View score.
+  double difference =
+      options_.view_score_weight * graph_->VertexWeight(candidate);
+
+  // Compute how much the quality score changes if the candidate view
+  // was added to the list of canonical views and its nearest
+  // neighbors became members of its cluster.
+  const IntSet& neighbors = graph_->Neighbors(candidate);
+  for (IntSet::const_iterator neighbor = neighbors.begin();
+       neighbor != neighbors.end();
+       ++neighbor) {
+    const double old_similarity =
+        FindWithDefault(view_to_canonical_view_similarity_, *neighbor, 0.0);
+    const double new_similarity = graph_->EdgeWeight(*neighbor, candidate);
+    if (new_similarity > old_similarity) {
+      difference += new_similarity - old_similarity;
+    }
+  }
+
+  // Number of views penalty.
+  difference -= options_.size_penalty_weight;
+
+  // Orthogonality.
+  for (int i = 0; i < centers.size(); ++i) {
+    difference -= options_.similarity_penalty_weight *
+        graph_->EdgeWeight(centers[i], candidate);
+  }
+
+  return difference;
+}
+
+// Reassign views if they're more similar to the new canonical view.
+void CanonicalViewsClustering::UpdateCanonicalViewAssignments(
+    const int canonical_view) {
+  const IntSet& neighbors = graph_->Neighbors(canonical_view);
+  for (IntSet::const_iterator neighbor = neighbors.begin();
+       neighbor != neighbors.end();
+       ++neighbor) {
+    const double old_similarity =
+        FindWithDefault(view_to_canonical_view_similarity_, *neighbor, 0.0);
+    const double new_similarity =
+        graph_->EdgeWeight(*neighbor, canonical_view);
+    if (new_similarity > old_similarity) {
+      view_to_canonical_view_[*neighbor] = canonical_view;
+      view_to_canonical_view_similarity_[*neighbor] = new_similarity;
+    }
+  }
+}
+
+// Assign a cluster id to each view.
+void CanonicalViewsClustering::ComputeClusterMembership(
+    const vector<int>& centers,
+    IntMap* membership) const {
+  CHECK_NOTNULL(membership)->clear();
+
+  // The i^th cluster has cluster id i.
+  IntMap center_to_cluster_id;
+  for (int i = 0; i < centers.size(); ++i) {
+    center_to_cluster_id[centers[i]] = i;
+  }
+
+  static const int kInvalidClusterId = -1;
+
+  const IntSet& views = graph_->vertices();
+  for (IntSet::const_iterator view = views.begin();
+       view != views.end();
+       ++view) {
+    IntMap::const_iterator it =
+        view_to_canonical_view_.find(*view);
+    int cluster_id = kInvalidClusterId;
+    if (it != view_to_canonical_view_.end()) {
+      cluster_id = FindOrDie(center_to_cluster_id, it->second);
+    }
+
+    InsertOrDie(membership, *view, cluster_id);
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/canonical_views_clustering.h b/internal/ceres/canonical_views_clustering.h
new file mode 100644
index 0000000..2d1eb40
--- /dev/null
+++ b/internal/ceres/canonical_views_clustering.h
@@ -0,0 +1,133 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// An implementation of the Canonical Views clustering algorithm from
+// "Scene Summarization for Online Image Collections", Ian Simon, Noah
+// Snavely, Steven M. Seitz, ICCV 2007.
+//
+// More details can be found at
+// http://grail.cs.washington.edu/projects/canonview/
+//
+// Ceres uses this algorithm to perform view clustering for
+// constructing visibility based preconditioners.
+
+#ifndef CERES_INTERNAL_CANONICAL_VIEWS_CLUSTERING_H_
+#define CERES_INTERNAL_CANONICAL_VIEWS_CLUSTERING_H_
+
+#include <vector>
+
+#include <glog/logging.h>
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+#include "ceres/map_util.h"
+#include "ceres/internal/macros.h"
+
+namespace ceres {
+namespace internal {
+
+class CanonicalViewsClusteringOptions;
+
+// Compute a partitioning of the vertices of the graph using the
+// canonical views clustering algorithm.
+//
+// In the following we will use the terms vertices and views
+// interchangably.  Given a weighted Graph G(V,E), the canonical views
+// of G are the the set of vertices that best "summarize" the content
+// of the graph. If w_ij i s the weight connecting the vertex i to
+// vertex j, and C is the set of canonical views. Then the objective
+// of the canonical views algorithm is
+//
+//   E[C] = sum_[i in V] max_[j in C] w_ij
+//          - size_penalty_weight * |C|
+//          - similarity_penalty_weight * sum_[i in C, j in C, j > i] w_ij
+//
+// alpha is the size penalty that penalizes large number of canonical
+// views.
+//
+// beta is the similarity penalty that penalizes canonical views that
+// are too similar to other canonical views.
+//
+// Thus the canonical views algorithm tries to find a canonical view
+// for each vertex in the graph which best explains it, while trying
+// to minimize the number of canonical views and the overlap between
+// them.
+//
+// We further augment the above objective function by allowing for per
+// vertex weights, higher weights indicating a higher preference for
+// being chosen as a canonical view. Thus if w_i is the vertex weight
+// for vertex i, the objective function is then
+//
+//   E[C] = sum_[i in V] max_[j in C] w_ij
+//          - size_penalty_weight * |C|
+//          - similarity_penalty_weight * sum_[i in C, j in C, j > i] w_ij
+//          + view_score_weight * sum_[i in C] w_i
+//
+// centers will contain the vertices that are the identified
+// as the canonical views/cluster centers, and membership is a map
+// from vertices to cluster_ids. The i^th cluster center corresponds
+// to the i^th cluster.
+//
+// It is possible depending on the configuration of the clustering
+// algorithm that some of the vertices may not be assigned to any
+// cluster. In this case they are assigned to a cluster with id = -1;
+void ComputeCanonicalViewsClustering(
+    const Graph<int>& graph,
+    const CanonicalViewsClusteringOptions& options,
+    vector<int>* centers,
+    HashMap<int, int>* membership);
+
+struct CanonicalViewsClusteringOptions {
+  CanonicalViewsClusteringOptions()
+      : min_views(3),
+        size_penalty_weight(5.75),
+        similarity_penalty_weight(100.0),
+        view_score_weight(0.0) {
+  }
+  // The minimum number of canonical views to compute.
+  int min_views;
+
+  // Penalty weight for the number of canonical views.  A higher
+  // number will result in fewer canonical views.
+  double size_penalty_weight;
+
+  // Penalty weight for the diversity (orthogonality) of the
+  // canonical views.  A higher number will encourage less similar
+  // canonical views.
+  double similarity_penalty_weight;
+
+  // Weight for per-view scores.  Lower weight places less
+  // confidence in the view scores.
+  double view_score_weight;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_CANONICAL_VIEWS_CLUSTERING_H_
diff --git a/internal/ceres/canonical_views_clustering_test.cc b/internal/ceres/canonical_views_clustering_test.cc
new file mode 100644
index 0000000..29bac3c
--- /dev/null
+++ b/internal/ceres/canonical_views_clustering_test.cc
@@ -0,0 +1,143 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: Sameer Agarwal (sameeragarwal@google.com)
+//         David Gallup (dgallup@google.com)
+
+#include "ceres/canonical_views_clustering.h"
+
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+#include "gtest/gtest.h"
+
+namespace ceres {
+namespace internal {
+
+const int kVertexIds[] = {0, 1, 2, 3};
+class CanonicalViewsTest : public ::testing::Test {
+ protected:
+  virtual void SetUp() {
+    // The graph structure is as follows.
+    //
+    // Vertex weights:   0      2      2      0
+    //                   V0-----V1-----V2-----V3
+    // Edge weights:        0.8    0.9    0.3
+    const double kVertexWeights[] = {0.0, 2.0, 2.0, -1.0};
+    for (int i = 0; i < 4; ++i) {
+      graph_.AddVertex(i, kVertexWeights[i]);
+    }
+    // Create self edges.
+    // CanonicalViews requires that every view "sees" itself.
+    for (int i = 0; i < 4; ++i) {
+      graph_.AddEdge(i, i, 1.0);
+    }
+
+    // Create three edges.
+    const double kEdgeWeights[] = {0.8, 0.9, 0.3};
+    for (int i = 0; i < 3; ++i) {
+      // The graph interface is directed, so remember to create both
+      // edges.
+      graph_.AddEdge(kVertexIds[i], kVertexIds[i + 1], kEdgeWeights[i]);
+    }
+  }
+
+  void ComputeClustering() {
+    ComputeCanonicalViewsClustering(graph_, options_, &centers_, &membership_);
+  }
+
+  Graph<int> graph_;
+
+  CanonicalViewsClusteringOptions options_;
+  vector<int> centers_;
+  HashMap<int, int> membership_;
+};
+
+TEST_F(CanonicalViewsTest, ComputeCanonicalViewsTest) {
+  options_.min_views = 0;
+  options_.size_penalty_weight = 0.5;
+  options_.similarity_penalty_weight = 0.0;
+  options_.view_score_weight = 0.0;
+  ComputeClustering();
+
+  // 2 canonical views.
+  EXPECT_EQ(centers_.size(), 2);
+  EXPECT_EQ(centers_[0], kVertexIds[1]);
+  EXPECT_EQ(centers_[1], kVertexIds[3]);
+
+  // Check cluster membership.
+  EXPECT_EQ(FindOrDie(membership_, kVertexIds[0]), 0);
+  EXPECT_EQ(FindOrDie(membership_, kVertexIds[1]), 0);
+  EXPECT_EQ(FindOrDie(membership_, kVertexIds[2]), 0);
+  EXPECT_EQ(FindOrDie(membership_, kVertexIds[3]), 1);
+}
+
+// Increases size penalty so the second canonical view won't be
+// chosen.
+TEST_F(CanonicalViewsTest, SizePenaltyTest) {
+  options_.min_views = 0;
+  options_.size_penalty_weight = 2.0;
+  options_.similarity_penalty_weight = 0.0;
+  options_.view_score_weight = 0.0;
+  ComputeClustering();
+
+  // 1 canonical view.
+  EXPECT_EQ(centers_.size(), 1);
+  EXPECT_EQ(centers_[0], kVertexIds[1]);
+}
+
+
+// Increases view score weight so vertex 2 will be chosen.
+TEST_F(CanonicalViewsTest, ViewScoreTest) {
+  options_.min_views = 0;
+  options_.size_penalty_weight = 0.5;
+  options_.similarity_penalty_weight = 0.0;
+  options_.view_score_weight = 1.0;
+  ComputeClustering();
+
+  // 2 canonical views.
+  EXPECT_EQ(centers_.size(), 2);
+  EXPECT_EQ(centers_[0], kVertexIds[1]);
+  EXPECT_EQ(centers_[1], kVertexIds[2]);
+}
+
+// Increases similarity penalty so vertex 2 won't be chosen despite
+// it's view score.
+TEST_F(CanonicalViewsTest, SimilarityPenaltyTest) {
+  options_.min_views = 0;
+  options_.size_penalty_weight = 0.5;
+  options_.similarity_penalty_weight = 3.0;
+  options_.view_score_weight = 1.0;
+  ComputeClustering();
+
+  // 2 canonical views.
+  EXPECT_EQ(centers_.size(), 1);
+  EXPECT_EQ(centers_[0], kVertexIds[1]);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/casts.h b/internal/ceres/casts.h
new file mode 100644
index 0000000..99cf218
--- /dev/null
+++ b/internal/ceres/casts.h
@@ -0,0 +1,108 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_CASTS_H_
+#define CERES_INTERNAL_CASTS_H_
+
+#include <cassert>
+#include <cstddef>  // For NULL.
+
+namespace ceres {
+
+// Identity metafunction.
+template <class T>
+struct identity_ {
+  typedef T type;
+};
+
+// Use implicit_cast as a safe version of static_cast or const_cast
+// for implicit conversions. For example:
+// - Upcasting in a type hierarchy.
+// - Performing arithmetic conversions (int32 to int64, int to double, etc.).
+// - Adding const or volatile qualifiers.
+//
+// In general, implicit_cast can be used to convert this code
+//   To to = from;
+//   DoSomething(to);
+// to this
+//   DoSomething(implicit_cast<To>(from));
+//
+// base::identity_ is used to make a non-deduced context, which
+// forces all callers to explicitly specify the template argument.
+template<typename To>
+inline To implicit_cast(typename identity_<To>::type to) {
+  return to;
+}
+
+// This version of implicit_cast is used when two template arguments
+// are specified. It's obsolete and should not be used.
+template<typename To, typename From>
+inline To implicit_cast(typename identity_<From>::type const &f) {
+  return f;
+}
+
+// When you upcast (that is, cast a pointer from type Foo to type
+// SuperclassOfFoo), it's fine to use implicit_cast<>, since upcasts
+// always succeed.  When you downcast (that is, cast a pointer from
+// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
+// how do you know the pointer is really of type SubclassOfFoo?  It
+// could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,
+// when you downcast, you should use this macro.  In debug mode, we
+// use dynamic_cast<> to double-check the downcast is legal (we die
+// if it's not).  In normal mode, we do the efficient static_cast<>
+// instead.  Thus, it's important to test in debug mode to make sure
+// the cast is legal!
+//    This is the only place in the code we should use dynamic_cast<>.
+// In particular, you SHOULDN'T be using dynamic_cast<> in order to
+// do RTTI (eg code like this:
+//    if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);
+//    if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);
+// You should design the code some other way not to need this.
+
+template<typename To, typename From>     // use like this: down_cast<T*>(foo);
+inline To down_cast(From* f) {                   // so we only accept pointers
+  // Ensures that To is a sub-type of From *.  This test is here only
+  // for compile-time type checking, and has no overhead in an
+  // optimized build at run-time, as it will be optimized away
+  // completely.
+
+  // TODO(csilvers): This should use COMPILE_ASSERT.
+  if (false) {
+    implicit_cast<From*, To>(NULL);
+  }
+
+  // uses RTTI in dbg and fastbuild. asserts are disabled in opt builds.
+  assert(f == NULL || dynamic_cast<To>(f) != NULL);  // NOLINT
+  return static_cast<To>(f);
+}
+
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_CASTS_H_
diff --git a/internal/ceres/collections_port.cc b/internal/ceres/collections_port.cc
new file mode 100644
index 0000000..fbeb61c
--- /dev/null
+++ b/internal/ceres/collections_port.cc
@@ -0,0 +1,43 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/collections_port.h"
+
+inline uint32 Hash32NumWithSeed(uint32 num, uint32 c) {
+  uint32 b = 0x9e3779b9UL;            // the golden ratio; an arbitrary value
+  mix(num, b, c);
+  return c;
+}
+
+inline uint64 Hash64NumWithSeed(uint64 num, uint64 c) {
+  uint64 b = GG_ULONGLONG(0xe08c1d668b756f82);   // more of the golden ratio
+  mix(num, b, c);
+  return c;
+}
diff --git a/internal/ceres/collections_port.h b/internal/ceres/collections_port.h
new file mode 100644
index 0000000..7255285
--- /dev/null
+++ b/internal/ceres/collections_port.h
@@ -0,0 +1,136 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Portable HashMap and HashSet, and a specialized overload for hashing pairs.
+
+#ifndef CERES_INTERNAL_COLLECTIONS_PORT_H_
+#define CERES_INTERNAL_COLLECTIONS_PORT_H_
+
+#include <tr1/unordered_map>
+#include <tr1/unordered_set>
+#include <utility>
+#include "ceres/integral_types.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+template<typename K, typename V>
+struct HashMap : tr1::unordered_map<K, V> {};
+
+template<typename K>
+struct HashSet : tr1::unordered_set<K> {};
+
+#ifdef _WIN32
+#define GG_LONGLONG(x) x##I64
+#define GG_ULONGLONG(x) x##UI64
+#else
+#define GG_LONGLONG(x) x##LL
+#define GG_ULONGLONG(x) x##ULL
+#endif
+
+// The hash function is due to Bob Jenkins (see
+// http://burtleburtle.net/bob/hash/index.html). Each mix takes 36 instructions,
+// in 18 cycles if you're lucky. On x86 architectures, this requires 45
+// instructions in 27 cycles, if you're lucky.
+//
+// 32bit version
+inline void hash_mix(uint32& a, uint32& b, uint32& c) {
+  a -= b; a -= c; a ^= (c>>13);
+  b -= c; b -= a; b ^= (a<<8);
+  c -= a; c -= b; c ^= (b>>13);
+  a -= b; a -= c; a ^= (c>>12);
+  b -= c; b -= a; b ^= (a<<16);
+  c -= a; c -= b; c ^= (b>>5);
+  a -= b; a -= c; a ^= (c>>3);
+  b -= c; b -= a; b ^= (a<<10);
+  c -= a; c -= b; c ^= (b>>15);
+}
+
+// 64bit version
+inline void hash_mix(uint64& a, uint64& b, uint64& c) {
+  a -= b; a -= c; a ^= (c>>43);
+  b -= c; b -= a; b ^= (a<<9);
+  c -= a; c -= b; c ^= (b>>8);
+  a -= b; a -= c; a ^= (c>>38);
+  b -= c; b -= a; b ^= (a<<23);
+  c -= a; c -= b; c ^= (b>>5);
+  a -= b; a -= c; a ^= (c>>35);
+  b -= c; b -= a; b ^= (a<<49);
+  c -= a; c -= b; c ^= (b>>11);
+}
+
+inline uint32 Hash32NumWithSeed(uint32 num, uint32 c) {
+  // The golden ratio; an arbitrary value.
+  uint32 b = 0x9e3779b9UL;
+  hash_mix(num, b, c);
+  return c;
+}
+
+inline uint64 Hash64NumWithSeed(uint64 num, uint64 c) {
+  // More of the golden ratio.
+  uint64 b = GG_ULONGLONG(0xe08c1d668b756f82);
+  hash_mix(num, b, c);
+  return c;
+}
+
+}  // namespace internal
+}  // namespace ceres
+
+// Since on some platforms this is a doubly-nested namespace (std::tr1) and
+// others it is not, the entire namespace line must be in a macro.
+CERES_HASH_NAMESPACE_START
+
+// The outrageously annoying specializations below are for portability reasons.
+// In short, it's not possible to have two overloads of hash<pair<T1, T2>
+
+// Hasher for STL pairs. Requires hashers for both members to be defined.
+template<typename T>
+struct hash<pair<T, T> > {
+  size_t operator()(const pair<T, T>& p) const {
+    size_t h1 = hash<T>()(p.first);
+    size_t h2 = hash<T>()(p.second);
+    // The decision below is at compile time
+    return (sizeof(h1) <= sizeof(ceres::internal::uint32)) ?
+            ceres::internal::Hash32NumWithSeed(h1, h2) :
+            ceres::internal::Hash64NumWithSeed(h1, h2);
+  }
+  // Less than operator for MSVC.
+  bool operator()(const pair<T, T>& a,
+                  const pair<T, T>& b) const {
+    return a < b;
+  }
+  static const size_t bucket_size = 4;  // These are required by MSVC
+  static const size_t min_buckets = 8;  // 4 and 8 are defaults.
+};
+
+CERES_HASH_NAMESPACE_END
+
+#endif  // CERES_INTERNAL_COLLECTIONS_PORT_H_
diff --git a/internal/ceres/compressed_row_jacobian_writer.cc b/internal/ceres/compressed_row_jacobian_writer.cc
new file mode 100644
index 0000000..aa883b7
--- /dev/null
+++ b/internal/ceres/compressed_row_jacobian_writer.cc
@@ -0,0 +1,201 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/compressed_row_jacobian_writer.h"
+
+#include "ceres/casts.h"
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/scratch_evaluate_preparer.h"
+
+namespace ceres {
+namespace internal {
+
+SparseMatrix* CompressedRowJacobianWriter::CreateJacobian() const {
+  const vector<ResidualBlock*>& residual_blocks =
+      program_->residual_blocks();
+
+  int total_num_residuals = program_->NumResiduals();
+  int total_num_effective_parameters = program_->NumEffectiveParameters();
+
+  // Count the number of jacobian nonzeros.
+  int num_jacobian_nonzeros = 0;
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    ResidualBlock* residual_block = residual_blocks[i];
+    const int num_residuals = residual_block->NumResiduals();
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+      if (!parameter_block->IsConstant()) {
+        num_jacobian_nonzeros += num_residuals * parameter_block->LocalSize();
+      }
+    }
+  }
+
+  // Allocate storage for the jacobian with some extra space at the end.
+  // Allocate more space than needed to store the jacobian so that when the LM
+  // algorithm adds the diagonal, no reallocation is necessary. This reduces
+  // peak memory usage significantly.
+  CompressedRowSparseMatrix* jacobian =
+      new CompressedRowSparseMatrix(
+          total_num_residuals,
+          total_num_effective_parameters,
+          num_jacobian_nonzeros + total_num_effective_parameters);
+
+  // At this stage, the CompressedSparseMatrix is an invalid state. But this
+  // seems to be the only way to construct it without doing a memory copy.
+  int* rows = jacobian->mutable_rows();
+  int* cols = jacobian->mutable_cols();
+  int row_pos = 0;
+  rows[0] = 0;
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    const ResidualBlock* residual_block = residual_blocks[i];
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+
+    // Count the number of derivatives for a row of this residual block and
+    // build a list of active parameter block indices.
+    int num_derivatives = 0;
+    vector<int> parameter_indices;
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+      if (!parameter_block->IsConstant()) {
+        parameter_indices.push_back(parameter_block->index());
+        num_derivatives += parameter_block->LocalSize();
+      }
+    }
+
+    // Sort the parameters by their position in the state vector.
+    sort(parameter_indices.begin(), parameter_indices.end());
+    CHECK(unique(parameter_indices.begin(), parameter_indices.end()) ==
+          parameter_indices.end())
+          << "Ceres internal error:  "
+          << "Duplicate parameter blocks detected in a cost function. "
+          << "This should never happen. Please report this to "
+          << "the Ceres developers.";
+
+    // Update the row indices.
+    const int num_residuals = residual_block->NumResiduals();
+    for (int j = 0; j < num_residuals; ++j) {
+      rows[row_pos + j + 1] = rows[row_pos + j] + num_derivatives;
+    }
+
+    // Iterate over parameter blocks in the order which they occur in the
+    // parameter vector. This code mirrors that in Write(), where jacobian
+    // values are updated.
+    int col_pos = 0;
+    for (int j = 0; j < parameter_indices.size(); ++j) {
+      ParameterBlock* parameter_block =
+          program_->parameter_blocks()[parameter_indices[j]];
+      const int parameter_block_size = parameter_block->LocalSize();
+
+      for (int r = 0; r < num_residuals; ++r) {
+        // This is the position in the values array of the jacobian where this
+        // row of the jacobian block should go.
+        const int column_block_begin = rows[row_pos + r] + col_pos;
+
+        for (int c = 0; c < parameter_block_size; ++c) {
+          cols[column_block_begin + c] = parameter_block->delta_offset() + c;
+        }
+      }
+      col_pos += parameter_block_size;
+    }
+    row_pos += num_residuals;
+  }
+
+  CHECK_EQ(num_jacobian_nonzeros, rows[total_num_residuals]);
+  return jacobian;
+}
+
+void CompressedRowJacobianWriter::Write(int residual_id,
+                                        int residual_offset,
+                                        double **jacobians,
+                                        SparseMatrix* base_jacobian) {
+  CompressedRowSparseMatrix* jacobian =
+      down_cast<CompressedRowSparseMatrix*>(base_jacobian);
+
+  double* jacobian_values = jacobian->mutable_values();
+  const int* jacobian_rows = jacobian->rows();
+
+  const ResidualBlock* residual_block =
+      program_->residual_blocks()[residual_id];
+  const int num_parameter_blocks = residual_block->NumParameterBlocks();
+  const int num_residuals = residual_block->NumResiduals();
+
+  // It is necessary to determine the order of the jacobian blocks before
+  // copying them into the CompressedRowSparseMatrix. Just because a cost
+  // function uses parameter blocks 1 after 2 in its arguments does not mean
+  // that the block 1 occurs before block 2 in the column layout of the
+  // jacobian. Thus, determine the order by sorting the jacobian blocks by their
+  // position in the state vector.
+  vector<pair<int, int> > evaluated_jacobian_blocks;
+  for (int j = 0; j < num_parameter_blocks; ++j) {
+    const ParameterBlock* parameter_block =
+        residual_block->parameter_blocks()[j];
+    if (!parameter_block->IsConstant()) {
+      evaluated_jacobian_blocks.push_back(
+          make_pair(parameter_block->index(), j));
+    }
+  }
+  sort(evaluated_jacobian_blocks.begin(), evaluated_jacobian_blocks.end());
+
+  // Where in the current row does the jacobian for a parameter block begin.
+  int col_pos = 0;
+
+  // Iterate over the jacobian blocks in increasing order of their
+  // positions in the reduced parameter vector.
+  for (int i = 0; i < evaluated_jacobian_blocks.size(); ++i) {
+    const ParameterBlock* parameter_block =
+        program_->parameter_blocks()[evaluated_jacobian_blocks[i].first];
+    const int argument = evaluated_jacobian_blocks[i].second;
+    const int parameter_block_size = parameter_block->LocalSize();
+
+    // Copy one row of the jacobian block at a time.
+    for (int r = 0; r < num_residuals; ++r) {
+      // Position of the r^th row of the current jacobian block.
+      const double* block_row_begin =
+          jacobians[argument] + r * parameter_block_size;
+
+      // Position in the values array of the jacobian where this
+      // row of the jacobian block should go.
+      double* column_block_begin =
+          jacobian_values + jacobian_rows[residual_offset + r] + col_pos;
+
+      copy(block_row_begin,
+           block_row_begin + parameter_block_size,
+           column_block_begin);
+    }
+    col_pos += parameter_block_size;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/compressed_row_jacobian_writer.h b/internal/ceres/compressed_row_jacobian_writer.h
new file mode 100644
index 0000000..c103165
--- /dev/null
+++ b/internal/ceres/compressed_row_jacobian_writer.h
@@ -0,0 +1,75 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A jacobian writer that directly writes to compressed row sparse matrices.
+
+#ifndef CERES_INTERNAL_COMPRESSED_ROW_JACOBIAN_WRITER_H_
+#define CERES_INTERNAL_COMPRESSED_ROW_JACOBIAN_WRITER_H_
+
+#include "ceres/evaluator.h"
+#include "ceres/scratch_evaluate_preparer.h"
+
+namespace ceres {
+namespace internal {
+
+class Program;
+class SparseMatrix;
+
+class CompressedRowJacobianWriter {
+ public:
+  CompressedRowJacobianWriter(Evaluator::Options /* ignored */,
+                              Program* program)
+    : program_(program) {
+  }
+
+  // JacobianWriter interface.
+
+  // Since the compressed row matrix has different layout than that assumed by
+  // the cost functions, use scratch space to store the jacobians temporarily
+  // then copy them over to the larger jacobian in the Write() function.
+  ScratchEvaluatePreparer* CreateEvaluatePreparers(int num_threads) {
+    return ScratchEvaluatePreparer::Create(*program_, num_threads);
+  }
+
+  SparseMatrix* CreateJacobian() const;
+
+  void Write(int residual_id,
+             int residual_offset,
+             double **jacobians,
+             SparseMatrix* base_jacobian);
+
+ private:
+  Program* program_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_COMPRESSED_ROW_JACOBIAN_WRITER_H_
diff --git a/internal/ceres/compressed_row_sparse_matrix.cc b/internal/ceres/compressed_row_sparse_matrix.cc
new file mode 100644
index 0000000..8fd568f
--- /dev/null
+++ b/internal/ceres/compressed_row_sparse_matrix.cc
@@ -0,0 +1,325 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/compressed_row_sparse_matrix.h"
+
+#include <algorithm>
+#include <vector>
+#include "ceres/matrix_proto.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+// Helper functor used by the constructor for reordering the contents
+// of a TripletSparseMatrix.
+struct RowColLessThan {
+  RowColLessThan(const int* rows, const int* cols)
+      : rows(rows), cols(cols) {
+  }
+
+  bool operator()(const int x, const int y) const {
+    if (rows[x] == rows[y]) {
+      return (cols[x] < cols[y]);
+    }
+    return (rows[x] < rows[y]);
+  }
+
+  const int* rows;
+  const int* cols;
+};
+
+}  // namespace
+
+// This constructor gives you a semi-initialized CompressedRowSparseMatrix.
+CompressedRowSparseMatrix::CompressedRowSparseMatrix(int num_rows,
+                                                     int num_cols,
+                                                     int max_num_nonzeros) {
+  num_rows_ = num_rows;
+  num_cols_ = num_cols;
+  max_num_nonzeros_ = max_num_nonzeros;
+
+  VLOG(1) << "# of rows: " << num_rows_ << " # of columns: " << num_cols_
+          << " max_num_nonzeros: " << max_num_nonzeros_
+          << ". Allocating " << (num_rows_ + 1) * sizeof(int) +  // NOLINT
+      max_num_nonzeros_ * sizeof(int) +  // NOLINT
+      max_num_nonzeros_ * sizeof(double);  // NOLINT
+
+  rows_.reset(new int[num_rows_ + 1]);
+  cols_.reset(new int[max_num_nonzeros_]);
+  values_.reset(new double[max_num_nonzeros_]);
+
+  fill(rows_.get(), rows_.get() + num_rows_ + 1, 0);
+  fill(cols_.get(), cols_.get() + max_num_nonzeros_, 0);
+  fill(values_.get(), values_.get() + max_num_nonzeros_, 0);
+}
+
+CompressedRowSparseMatrix::CompressedRowSparseMatrix(
+    const TripletSparseMatrix& m) {
+  num_rows_ = m.num_rows();
+  num_cols_ = m.num_cols();
+  max_num_nonzeros_ = m.max_num_nonzeros();
+
+  // index is the list of indices into the TripletSparseMatrix m.
+  vector<int> index(m.num_nonzeros(), 0);
+  for (int i = 0; i < m.num_nonzeros(); ++i) {
+    index[i] = i;
+  }
+
+  // Sort index such that the entries of m are ordered by row and ties
+  // are broken by column.
+  sort(index.begin(), index.end(), RowColLessThan(m.rows(), m.cols()));
+
+  VLOG(1) << "# of rows: " << num_rows_ << " # of columns: " << num_cols_
+          << " max_num_nonzeros: " << max_num_nonzeros_
+          << ". Allocating " << (num_rows_ + 1) * sizeof(int) +  // NOLINT
+      max_num_nonzeros_ * sizeof(int) +  // NOLINT
+      max_num_nonzeros_ * sizeof(double);  // NOLINT
+
+  rows_.reset(new int[num_rows_ + 1]);
+  cols_.reset(new int[max_num_nonzeros_]);
+  values_.reset(new double[max_num_nonzeros_]);
+
+  // rows_ = 0
+  fill(rows_.get(), rows_.get() + num_rows_ + 1, 0);
+
+  // Copy the contents of the cols and values array in the order given
+  // by index and count the number of entries in each row.
+  for (int i = 0; i < m.num_nonzeros(); ++i) {
+    const int idx = index[i];
+    ++rows_[m.rows()[idx] + 1];
+    cols_[i] = m.cols()[idx];
+    values_[i] = m.values()[idx];
+  }
+
+  // Find the cumulative sum of the row counts.
+  for (int i = 1; i < num_rows_ + 1; ++i) {
+    rows_[i] += rows_[i-1];
+  }
+
+  CHECK_EQ(num_nonzeros(), m.num_nonzeros());
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+CompressedRowSparseMatrix::CompressedRowSparseMatrix(
+    const SparseMatrixProto& outer_proto) {
+  CHECK(outer_proto.has_compressed_row_matrix());
+
+  const CompressedRowSparseMatrixProto& proto =
+      outer_proto.compressed_row_matrix();
+
+  num_rows_ = proto.num_rows();
+  num_cols_ = proto.num_cols();
+
+  rows_.reset(new int[proto.rows_size()]);
+  cols_.reset(new int[proto.cols_size()]);
+  values_.reset(new double[proto.values_size()]);
+
+  for (int i = 0; i < proto.rows_size(); ++i) {
+    rows_[i] = proto.rows(i);
+  }
+
+  CHECK_EQ(proto.rows_size(), num_rows_ + 1);
+  CHECK_EQ(proto.cols_size(), proto.values_size());
+  CHECK_EQ(proto.cols_size(), rows_[num_rows_]);
+
+  for (int i = 0; i < proto.cols_size(); ++i) {
+    cols_[i] = proto.cols(i);
+    values_[i] = proto.values(i);
+  }
+
+  max_num_nonzeros_ = proto.cols_size();
+}
+#endif
+
+CompressedRowSparseMatrix::CompressedRowSparseMatrix(const double* diagonal,
+                                                     int num_rows) {
+  CHECK_NOTNULL(diagonal);
+
+  num_rows_ = num_rows;
+  num_cols_ = num_rows;
+  max_num_nonzeros_ = num_rows;
+
+  rows_.reset(new int[num_rows_ + 1]);
+  cols_.reset(new int[num_rows_]);
+  values_.reset(new double[num_rows_]);
+
+  rows_[0] = 0;
+  for (int i = 0; i < num_rows_; ++i) {
+    cols_[i] = i;
+    values_[i] = diagonal[i];
+    rows_[i + 1] = i + 1;
+  }
+
+  CHECK_EQ(num_nonzeros(), num_rows);
+}
+
+CompressedRowSparseMatrix::~CompressedRowSparseMatrix() {
+}
+
+void CompressedRowSparseMatrix::SetZero() {
+  fill(values_.get(), values_.get() + num_nonzeros(), 0.0);
+}
+
+void CompressedRowSparseMatrix::RightMultiply(const double* x,
+                                              double* y) const {
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(y);
+
+  for (int r = 0; r < num_rows_; ++r) {
+    for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx) {
+      y[r] += values_[idx] * x[cols_[idx]];
+    }
+  }
+}
+
+void CompressedRowSparseMatrix::LeftMultiply(const double* x, double* y) const {
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(y);
+
+  for (int r = 0; r < num_rows_; ++r) {
+    for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx) {
+      y[cols_[idx]] += values_[idx] * x[r];
+    }
+  }
+}
+
+void CompressedRowSparseMatrix::SquaredColumnNorm(double* x) const {
+  CHECK_NOTNULL(x);
+
+  fill(x, x + num_cols_, 0.0);
+  for (int idx = 0; idx < rows_[num_rows_]; ++idx) {
+    x[cols_[idx]] += values_[idx] * values_[idx];
+  }
+}
+
+void CompressedRowSparseMatrix::ScaleColumns(const double* scale) {
+  CHECK_NOTNULL(scale);
+
+  for (int idx = 0; idx < rows_[num_rows_]; ++idx) {
+    values_[idx] *= scale[cols_[idx]];
+  }
+}
+
+void CompressedRowSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const {
+  CHECK_NOTNULL(dense_matrix);
+  dense_matrix->resize(num_rows_, num_cols_);
+  dense_matrix->setZero();
+
+  for (int r = 0; r < num_rows_; ++r) {
+    for (int idx = rows_[r]; idx < rows_[r + 1]; ++idx) {
+      (*dense_matrix)(r, cols_[idx]) = values_[idx];
+    }
+  }
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+void CompressedRowSparseMatrix::ToProto(SparseMatrixProto* outer_proto) const {
+  CHECK_NOTNULL(outer_proto);
+
+  outer_proto->Clear();
+  CompressedRowSparseMatrixProto* proto
+      = outer_proto->mutable_compressed_row_matrix();
+
+  proto->set_num_rows(num_rows_);
+  proto->set_num_cols(num_cols_);
+
+  for (int r = 0; r < num_rows_ + 1; ++r) {
+    proto->add_rows(rows_[r]);
+  }
+
+  for (int idx = 0; idx < rows_[num_rows_]; ++idx) {
+    proto->add_cols(cols_[idx]);
+    proto->add_values(values_[idx]);
+  }
+}
+#endif
+
+void CompressedRowSparseMatrix::DeleteRows(int delta_rows) {
+  CHECK_GE(delta_rows, 0);
+  CHECK_LE(delta_rows, num_rows_);
+
+  int new_num_rows = num_rows_ - delta_rows;
+
+  num_rows_ = new_num_rows;
+  int* new_rows = new int[num_rows_ + 1];
+  copy(rows_.get(), rows_.get() + num_rows_ + 1, new_rows);
+  rows_.reset(new_rows);
+}
+
+void CompressedRowSparseMatrix::AppendRows(const CompressedRowSparseMatrix& m) {
+  CHECK_EQ(m.num_cols(), num_cols_);
+
+  // Check if there is enough space. If not, then allocate new arrays
+  // to hold the combined matrix and copy the contents of this matrix
+  // into it.
+  if (max_num_nonzeros_ < num_nonzeros() + m.num_nonzeros()) {
+    int new_max_num_nonzeros =  num_nonzeros() + m.num_nonzeros();
+
+    VLOG(1) << "Reallocating " << sizeof(int) * new_max_num_nonzeros;  // NOLINT
+
+    int* new_cols = new int[new_max_num_nonzeros];
+    copy(cols_.get(), cols_.get() + max_num_nonzeros_, new_cols);
+    cols_.reset(new_cols);
+
+    double* new_values = new double[new_max_num_nonzeros];
+    copy(values_.get(), values_.get() + max_num_nonzeros_, new_values);
+    values_.reset(new_values);
+
+    max_num_nonzeros_ = new_max_num_nonzeros;
+  }
+
+  // Copy the contents of m into this matrix.
+  copy(m.cols(), m.cols() + m.num_nonzeros(), cols_.get() + num_nonzeros());
+  copy(m.values(),
+       m.values() + m.num_nonzeros(),
+       values_.get() + num_nonzeros());
+
+  // Create the new rows array to hold the enlarged matrix.
+  int* new_rows = new int[num_rows_ + m.num_rows() + 1];
+  // The first num_rows_ entries are the same
+  copy(rows_.get(), rows_.get() + num_rows_, new_rows);
+
+  // new_rows = [rows_, m.row() + rows_[num_rows_]]
+  fill(new_rows + num_rows_,
+       new_rows + num_rows_ + m.num_rows() + 1,
+       rows_[num_rows_]);
+
+  for (int r = 0; r < m.num_rows() + 1; ++r) {
+    new_rows[num_rows_ + r] += m.rows()[r];
+  }
+
+  rows_.reset(new_rows);
+  num_rows_ += m.num_rows();
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/compressed_row_sparse_matrix.h b/internal/ceres/compressed_row_sparse_matrix.h
new file mode 100644
index 0000000..43712a8
--- /dev/null
+++ b/internal/ceres/compressed_row_sparse_matrix.h
@@ -0,0 +1,129 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_COMPRESSED_ROW_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_COMPRESSED_ROW_SPARSE_MATRIX_H_
+
+#include <glog/logging.h>
+#include "ceres/sparse_matrix.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/macros.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class SparseMatrixProto;
+
+class CompressedRowSparseMatrix : public SparseMatrix {
+ public:
+  // Build a matrix with the same content as the TripletSparseMatrix
+  // m. TripletSparseMatrix objects are easier to construct
+  // incrementally, so we use them to initialize SparseMatrix
+  // objects.
+  //
+  // We assume that m does not have any repeated entries.
+  explicit CompressedRowSparseMatrix(const TripletSparseMatrix& m);
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  explicit CompressedRowSparseMatrix(const SparseMatrixProto& proto);
+#endif
+
+  // Use this constructor only if you know what you are doing. This
+  // creates a "blank" matrix with the appropriate amount of memory
+  // allocated. However, the object itself is in an inconsistent state
+  // as the rows and cols matrices do not match the values of
+  // num_rows, num_cols and max_num_nonzeros.
+  //
+  // The use case for this constructor is that when the user knows the
+  // size of the matrix to begin with and wants to update the layout
+  // manually, instead of going via the indirect route of first
+  // constructing a TripletSparseMatrix, which leads to more than
+  // double the peak memory usage.
+  CompressedRowSparseMatrix(int num_rows,
+                            int num_cols,
+                            int max_num_nonzeros);
+
+  // Build a square sparse diagonal matrix with num_rows rows and
+  // columns. The diagonal m(i,i) = diagonal(i);
+  CompressedRowSparseMatrix(const double* diagonal, int num_rows);
+
+  virtual ~CompressedRowSparseMatrix();
+
+  // SparseMatrix interface.
+  virtual void SetZero();
+  virtual void RightMultiply(const double* x, double* y) const;
+  virtual void LeftMultiply(const double* x, double* y) const;
+  virtual void SquaredColumnNorm(double* x) const;
+  virtual void ScaleColumns(const double* scale);
+
+  virtual void ToDenseMatrix(Matrix* dense_matrix) const;
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  virtual void ToProto(SparseMatrixProto* proto) const;
+#endif
+
+  virtual int num_rows() const { return num_rows_; }
+  virtual int num_cols() const { return num_cols_; }
+  virtual int num_nonzeros() const { return rows_[num_rows_]; }
+  virtual const double* values() const { return values_.get(); }
+  virtual double* mutable_values() { return values_.get(); }
+
+  // Delete the bottom delta_rows.
+  // num_rows -= delta_rows
+  void DeleteRows(int delta_rows);
+
+  // Append the contents of m to the bottom of this matrix. m must
+  // have the same number of columns as this matrix.
+  void AppendRows(const CompressedRowSparseMatrix& m);
+
+  // Low level access methods that expose the structure of the matrix.
+  const int* cols() const { return cols_.get(); }
+  int* mutable_cols() { return cols_.get(); }
+
+  const int* rows() const { return rows_.get(); }
+  int* mutable_rows() { return rows_.get(); }
+
+ private:
+  scoped_array<int> cols_;
+  scoped_array<int> rows_;
+  scoped_array<double> values_;
+
+  int num_rows_;
+  int num_cols_;
+
+  int max_num_nonzeros_;
+
+  DISALLOW_COPY_AND_ASSIGN(CompressedRowSparseMatrix);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_COMPRESSED_ROW_SPARSE_MATRIX_H_
diff --git a/internal/ceres/compressed_row_sparse_matrix_test.cc b/internal/ceres/compressed_row_sparse_matrix_test.cc
new file mode 100644
index 0000000..bfb4457
--- /dev/null
+++ b/internal/ceres/compressed_row_sparse_matrix_test.cc
@@ -0,0 +1,183 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/compressed_row_sparse_matrix.h"
+
+#include "gtest/gtest.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+void CompareMatrices(const SparseMatrix* a, const SparseMatrix* b) {
+  EXPECT_EQ(a->num_rows(), b->num_rows());
+  EXPECT_EQ(a->num_cols(), b->num_cols());
+
+  int num_rows = a->num_rows();
+  int num_cols = a->num_cols();
+
+  for (int i = 0; i < num_cols; ++i) {
+    Vector x = Vector::Zero(num_cols);
+    x(i) = 1.0;
+
+    Vector y_a = Vector::Zero(num_rows);
+    Vector y_b = Vector::Zero(num_rows);
+
+    a->RightMultiply(x.data(), y_a.data());
+    b->RightMultiply(x.data(), y_b.data());
+
+    EXPECT_EQ((y_a - y_b).norm(), 0);
+  }
+}
+
+class CompressedRowSparseMatrixTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(1));
+
+    CHECK_NOTNULL(problem.get());
+
+    tsm.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
+    crsm.reset(new CompressedRowSparseMatrix(*tsm));
+
+    num_rows = tsm->num_rows();
+    num_cols = tsm->num_cols();
+  }
+
+  int num_rows;
+  int num_cols;
+
+  scoped_ptr<TripletSparseMatrix> tsm;
+  scoped_ptr<CompressedRowSparseMatrix> crsm;
+};
+
+TEST_F(CompressedRowSparseMatrixTest, RightMultiply) {
+  CompareMatrices(tsm.get(), crsm.get());
+}
+
+TEST_F(CompressedRowSparseMatrixTest, LeftMultiply) {
+  for (int i = 0; i < num_rows; ++i) {
+    Vector a = Vector::Zero(num_rows);
+    a(i) = 1.0;
+
+    Vector b1 = Vector::Zero(num_cols);
+    Vector b2 = Vector::Zero(num_cols);
+
+    tsm->LeftMultiply(a.data(), b1.data());
+    crsm->LeftMultiply(a.data(), b2.data());
+
+    EXPECT_EQ((b1 - b2).norm(), 0);
+  }
+}
+
+TEST_F(CompressedRowSparseMatrixTest, ColumnNorm) {
+  Vector b1 = Vector::Zero(num_cols);
+  Vector b2 = Vector::Zero(num_cols);
+
+  tsm->SquaredColumnNorm(b1.data());
+  crsm->SquaredColumnNorm(b2.data());
+
+  EXPECT_EQ((b1 - b2).norm(), 0);
+}
+
+TEST_F(CompressedRowSparseMatrixTest, Scale) {
+  Vector scale(num_cols);
+  for (int i = 0; i < num_cols; ++i) {
+    scale(i) = i + 1;
+  }
+
+  tsm->ScaleColumns(scale.data());
+  crsm->ScaleColumns(scale.data());
+  CompareMatrices(tsm.get(), crsm.get());
+}
+
+TEST_F(CompressedRowSparseMatrixTest, DeleteRows) {
+  for (int i = 0; i < num_rows; ++i) {
+    tsm->Resize(num_rows - i, num_cols);
+    crsm->DeleteRows(crsm->num_rows() - tsm->num_rows());
+    CompareMatrices(tsm.get(), crsm.get());
+  }
+}
+
+TEST_F(CompressedRowSparseMatrixTest, AppendRows) {
+  for (int i = 0; i < num_rows; ++i) {
+    TripletSparseMatrix tsm_appendage(*tsm);
+    tsm_appendage.Resize(i, num_cols);
+
+    tsm->AppendRows(tsm_appendage);
+    CompressedRowSparseMatrix crsm_appendage(tsm_appendage);
+    crsm->AppendRows(crsm_appendage);
+
+    CompareMatrices(tsm.get(), crsm.get());
+  }
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(CompressedRowSparseMatrixTest, Serialization) {
+  SparseMatrixProto proto;
+  crsm->ToProto(&proto);
+
+  CompressedRowSparseMatrix n(proto);
+  ASSERT_EQ(n.num_rows(), crsm->num_rows());
+  ASSERT_EQ(n.num_cols(), crsm->num_cols());
+  ASSERT_EQ(n.num_nonzeros(), crsm->num_nonzeros());
+
+  for (int i = 0; i < n.num_rows() + 1; ++i) {
+    ASSERT_EQ(crsm->rows()[i], proto.compressed_row_matrix().rows(i));
+    ASSERT_EQ(crsm->rows()[i], n.rows()[i]);
+  }
+
+  for (int i = 0; i < crsm->num_nonzeros(); ++i) {
+    ASSERT_EQ(crsm->cols()[i], proto.compressed_row_matrix().cols(i));
+    ASSERT_EQ(crsm->cols()[i], n.cols()[i]);
+    ASSERT_EQ(crsm->values()[i], proto.compressed_row_matrix().values(i));
+    ASSERT_EQ(crsm->values()[i], n.values()[i]);
+  }
+}
+#endif
+
+TEST_F(CompressedRowSparseMatrixTest, ToDenseMatrix) {
+  Matrix tsm_dense;
+  Matrix crsm_dense;
+
+  tsm->ToDenseMatrix(&tsm_dense);
+  crsm->ToDenseMatrix(&crsm_dense);
+
+  EXPECT_EQ((tsm_dense - crsm_dense).norm(), 0.0);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/conditioned_cost_function.cc b/internal/ceres/conditioned_cost_function.cc
new file mode 100644
index 0000000..ca80bfb
--- /dev/null
+++ b/internal/ceres/conditioned_cost_function.cc
@@ -0,0 +1,130 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: wjr@google.com (William Rucklidge)
+//
+// This file contains the implementation of the conditioned cost function.
+
+#include "ceres/conditioned_cost_function.h"
+
+#include <cstddef>
+
+#include <glog/logging.h>
+#include "ceres/stl_util.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+// This cost function has the same dimensions (parameters, residuals) as
+// the one it's wrapping.
+ConditionedCostFunction::ConditionedCostFunction(
+    CostFunction* wrapped_cost_function,
+    const vector<CostFunction*>& conditioners,
+    Ownership ownership)
+    : wrapped_cost_function_(wrapped_cost_function),
+      conditioners_(conditioners),
+      ownership_(ownership) {
+  // Set up our dimensions.
+  set_num_residuals(wrapped_cost_function_->num_residuals());
+  *mutable_parameter_block_sizes() =
+      wrapped_cost_function_->parameter_block_sizes();
+
+  // Sanity-check the conditioners' dimensions.
+  CHECK_EQ(wrapped_cost_function_->num_residuals(), conditioners_.size());
+  for (int i = 0; i < wrapped_cost_function_->num_residuals(); i++) {
+    if (conditioners[i]) {
+      CHECK_EQ(1, conditioners[i]->num_residuals());
+      CHECK_EQ(1, conditioners[i]->parameter_block_sizes().size());
+      CHECK_EQ(1, conditioners[i]->parameter_block_sizes()[0]);
+    }
+  }
+}
+
+ConditionedCostFunction::~ConditionedCostFunction() {
+  if (ownership_ == TAKE_OWNERSHIP) {
+    STLDeleteElements(&conditioners_);
+  } else {
+    wrapped_cost_function_.release();
+  }
+}
+
+bool ConditionedCostFunction::Evaluate(double const* const* parameters,
+                                       double* residuals,
+                                       double** jacobians) const {
+  bool success = wrapped_cost_function_->Evaluate(parameters, residuals,
+                                                  jacobians);
+  if (!success) {
+    return false;
+  }
+
+  for (int r = 0; r < wrapped_cost_function_->num_residuals(); r++) {
+    // On output, we want to have
+    // residuals[r] = conditioners[r](wrapped_residuals[r])
+    // For parameter block i, column c,
+    // jacobians[i][r*parameter_block_size_[i] + c] =
+    //   = d residual[r] / d parameters[i][c]
+    //   = conditioners[r]'(wrapped_residuals[r]) *
+    //       d wrapped_residuals[r] / d parameters[i][c]
+    if (conditioners_[r]) {
+      double conditioner_derivative;
+      double* conditioner_derivative_pointer = &conditioner_derivative;
+      double** conditioner_derivative_pointer2 =
+          &conditioner_derivative_pointer;
+      if (!jacobians) {
+        conditioner_derivative_pointer2 = NULL;
+      }
+
+      double unconditioned_residual = residuals[r];
+      double* parameter_pointer = &unconditioned_residual;
+      success = conditioners_[r]->Evaluate(&parameter_pointer,
+                                           &residuals[r],
+                                           conditioner_derivative_pointer2);
+      if (!success) {
+        return false;
+      }
+
+      if (jacobians) {
+        for (int i = 0;
+             i < wrapped_cost_function_->parameter_block_sizes().size();
+             i++) {
+          if (jacobians[i]) {
+            int parameter_block_size =
+                wrapped_cost_function_->parameter_block_sizes()[i];
+            VectorRef jacobian_row(jacobians[i] + r * parameter_block_size,
+                                   parameter_block_size, 1);
+            jacobian_row *= conditioner_derivative;
+          }
+        }
+      }
+    }
+  }
+  return true;
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/conditioned_cost_function_test.cc b/internal/ceres/conditioned_cost_function_test.cc
new file mode 100644
index 0000000..13135a7
--- /dev/null
+++ b/internal/ceres/conditioned_cost_function_test.cc
@@ -0,0 +1,126 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: wjr@google.com (William Rucklidge)
+//
+// Tests for the conditioned cost function.
+
+#include "ceres/conditioned_cost_function.h"
+
+#include "gtest/gtest.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/normal_prior.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+// The size of the cost functions we build.
+static const int kTestCostFunctionSize = 3;
+
+// A simple cost function: return ax + b.
+class LinearCostFunction : public CostFunction {
+ public:
+  LinearCostFunction(double a, double b) : a_(a), b_(b) {
+    set_num_residuals(1);
+    mutable_parameter_block_sizes()->push_back(1);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    *residuals = **parameters * a_ + b_;
+    if (jacobians && *jacobians) {
+      **jacobians = a_;
+    }
+
+    return true;
+  }
+
+ private:
+  const double a_, b_;
+};
+
+// Tests that ConditionedCostFunction does what it's supposed to.
+TEST(CostFunctionTest, ConditionedCostFunction) {
+  double v1[kTestCostFunctionSize], v2[kTestCostFunctionSize],
+      jac[kTestCostFunctionSize * kTestCostFunctionSize],
+      result[kTestCostFunctionSize];
+
+  for (int i = 0; i < kTestCostFunctionSize; i++) {
+    v1[i] = i;
+    v2[i] = i * 10;
+    // Seed a few garbage values in the Jacobian matrix, to make sure that
+    // they're overwritten.
+    jac[i * 2] = i * i;
+    result[i] = i * i * i;
+  }
+
+  // Make a cost function that computes x - v2
+  VectorRef v2_vector(v2, kTestCostFunctionSize, 1);
+  Matrix identity(kTestCostFunctionSize, kTestCostFunctionSize);
+  identity.setIdentity();
+  NormalPrior* difference_cost_function = new NormalPrior(identity, v2_vector);
+
+  vector<CostFunction*> conditioners;
+  for (int i = 0; i < kTestCostFunctionSize; i++) {
+    conditioners.push_back(new LinearCostFunction(i + 2, i * 7));
+  }
+
+  ConditionedCostFunction conditioned_cost_function(difference_cost_function,
+                                                    conditioners,
+                                                    TAKE_OWNERSHIP);
+  EXPECT_EQ(difference_cost_function->num_residuals(),
+            conditioned_cost_function.num_residuals());
+  EXPECT_EQ(difference_cost_function->parameter_block_sizes(),
+            conditioned_cost_function.parameter_block_sizes());
+
+  double *parameters[1];
+  parameters[0] = v1;
+  double *jacs[1];
+  jacs[0] = jac;
+
+  conditioned_cost_function.Evaluate(parameters, result, jacs);
+  for (int i = 0; i < kTestCostFunctionSize; i++) {
+    EXPECT_DOUBLE_EQ((i + 2) * (v1[i] - v2[i]) + i * 7, result[i]);
+  }
+
+  for (int i = 0; i < kTestCostFunctionSize; i++) {
+    for (int j = 0; j < kTestCostFunctionSize; j++) {
+      double actual = jac[i * kTestCostFunctionSize + j];
+      if (i != j) {
+        EXPECT_DOUBLE_EQ(0, actual);
+      } else {
+        EXPECT_DOUBLE_EQ(i + 2, actual);
+      }
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/conjugate_gradients_solver.cc b/internal/ceres/conjugate_gradients_solver.cc
new file mode 100644
index 0000000..1a7b5d8
--- /dev/null
+++ b/internal/ceres/conjugate_gradients_solver.cc
@@ -0,0 +1,231 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// A preconditioned conjugate gradients solver
+// (ConjugateGradientsSolver) for positive semidefinite linear
+// systems.
+//
+// We have also augmented the termination criterion used by this
+// solver to support not just residual based termination but also
+// termination based on decrease in the value of the quadratic model
+// that CG optimizes.
+
+#include "ceres/conjugate_gradients_solver.h"
+
+#include <cmath>
+#include <cstddef>
+#include <glog/logging.h>
+#include "ceres/linear_operator.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+bool IsZeroOrInfinity(double x) {
+  return ((x == 0.0) || (isinf(x)));
+}
+
+// Constant used in the MATLAB implementation ~ 2 * eps.
+const double kEpsilon = 2.2204e-16;
+
+}  // namespace
+
+ConjugateGradientsSolver::ConjugateGradientsSolver(
+    const LinearSolver::Options& options)
+    : options_(options) {
+}
+
+LinearSolver::Summary ConjugateGradientsSolver::Solve(
+    LinearOperator* A,
+    const double* b,
+    const LinearSolver::PerSolveOptions& per_solve_options,
+    double* x) {
+  CHECK_NOTNULL(A);
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(b);
+  CHECK_EQ(A->num_rows(), A->num_cols());
+
+  LinearSolver::Summary summary;
+  summary.termination_type = MAX_ITERATIONS;
+  summary.num_iterations = 0;
+
+  int num_cols = A->num_cols();
+  VectorRef xref(x, num_cols);
+  ConstVectorRef bref(b, num_cols);
+
+  double norm_b = bref.norm();
+  if (norm_b == 0.0) {
+    xref.setZero();
+    summary.termination_type = TOLERANCE;
+    return summary;
+  }
+
+  Vector r(num_cols);
+  Vector p(num_cols);
+  Vector z(num_cols);
+  Vector tmp(num_cols);
+
+  double tol_r = per_solve_options.r_tolerance * norm_b;
+
+  tmp.setZero();
+  A->RightMultiply(x, tmp.data());
+  r = bref - tmp;
+  double norm_r = r.norm();
+
+  if (norm_r <= tol_r) {
+    summary.termination_type = TOLERANCE;
+    return summary;
+  }
+
+  double rho = 1.0;
+
+  // Initial value of the quadratic model Q = x'Ax - 2 * b'x.
+  double Q0 = -1.0 * xref.dot(bref + r);
+
+  for (summary.num_iterations = 1;
+       summary.num_iterations < options_.max_num_iterations;
+       ++summary.num_iterations) {
+    VLOG(2) << "cg iteration " << summary.num_iterations;
+
+    // Apply preconditioner
+    if (per_solve_options.preconditioner != NULL) {
+      z.setZero();
+      per_solve_options.preconditioner->RightMultiply(r.data(), z.data());
+    } else {
+      z = r;
+    }
+
+    double last_rho = rho;
+    rho = r.dot(z);
+
+    if (IsZeroOrInfinity(rho)) {
+      LOG(ERROR) << "Numerical failure. rho = " << rho;
+      summary.termination_type = FAILURE;
+      break;
+    };
+
+    if (summary.num_iterations == 1) {
+      p = z;
+    } else {
+      double beta = rho / last_rho;
+      if (IsZeroOrInfinity(beta)) {
+        LOG(ERROR) << "Numerical failure. beta = " << beta;
+        summary.termination_type = FAILURE;
+        break;
+      }
+      p = z + beta * p;
+    }
+
+    Vector& q = z;
+    q.setZero();
+    A->RightMultiply(p.data(), q.data());
+    double pq = p.dot(q);
+
+    if ((pq <= 0) || isinf(pq))  {
+      LOG(ERROR) << "Numerical failure. pq = " << pq;
+      summary.termination_type = FAILURE;
+      break;
+    }
+
+    double alpha = rho / pq;
+    if (isinf(alpha)) {
+      LOG(ERROR) << "Numerical failure. alpha " << alpha;
+      summary.termination_type = FAILURE;
+      break;
+    }
+
+    xref = xref + alpha * p;
+
+    // Ideally we would just use the update r = r - alpha*q to keep
+    // track of the residual vector. However this estimate tends to
+    // drift over time due to round off errors. Thus every
+    // residual_reset_period iterations, we calculate the residual as
+    // r = b - Ax. We do not do this every iteration because this
+    // requires an additional matrix vector multiply which would
+    // double the complexity of the CG algorithm.
+    if (summary.num_iterations % options_.residual_reset_period == 0) {
+      tmp.setZero();
+      A->RightMultiply(x, tmp.data());
+      r = bref - tmp;
+    } else {
+      r = r - alpha * q;
+    }
+
+    // Quadratic model based termination.
+    //   Q1 = x'Ax - 2 * b' x.
+    double Q1 = -1.0 * xref.dot(bref + r);
+
+    // For PSD matrices A, let
+    //
+    //   Q(x) = x'Ax - 2b'x
+    //
+    // be the cost of the quadratic function defined by A and b. Then,
+    // the solver terminates at iteration i if
+    //
+    //   i * (Q(x_i) - Q(x_i-1)) / Q(x_i) < q_tolerance.
+    //
+    // This termination criterion is more useful when using CG to
+    // solve the Newton step. This particular convergence test comes
+    // from Stephen Nash's work on truncated Newton
+    // methods. References:
+    //
+    // 1. Stephen G. Nash & Ariela Sofer, Assessing A Search Direction
+    // Within A Truncated Newton Method, Operation Research Letters
+    // 9(1990) 219-221.
+    //
+    // 2. Stephen G. Nash, A Survey of Truncated Newton Methods,
+    // Journal of Computational and Applied Mathematics, 124(1-2),
+    // 45-59, 2000.
+    double zeta = summary.num_iterations * (Q1 - Q0) / Q1;
+    VLOG(2) << "Q termination: zeta " << zeta
+            << " " << per_solve_options.q_tolerance;
+    if (zeta < per_solve_options.q_tolerance) {
+      summary.termination_type = TOLERANCE;
+      break;
+    }
+    Q0 = Q1;
+
+    // Residual based termination.
+    norm_r = r. norm();
+    VLOG(2) << "R termination: norm_r " << norm_r
+            << " " << tol_r;
+    if (norm_r <= tol_r) {
+      summary.termination_type = TOLERANCE;
+      break;
+    }
+  }
+
+  return summary;
+};
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/conjugate_gradients_solver.h b/internal/ceres/conjugate_gradients_solver.h
new file mode 100644
index 0000000..57f99e3
--- /dev/null
+++ b/internal/ceres/conjugate_gradients_solver.h
@@ -0,0 +1,74 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Preconditioned Conjugate Gradients based solver for positive
+// semidefinite linear systems.
+
+#ifndef CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_
+#define CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_
+
+#include "ceres/linear_solver.h"
+#include "ceres/internal/macros.h"
+
+namespace ceres {
+namespace internal {
+
+class LinearOperator;
+
+// This class implements the now classical Conjugate Gradients
+// algorithm of Hestenes & Stiefel for solving postive semidefinite
+// linear sytems. Optionally it can use a preconditioner also to
+// reduce the condition number of the linear system and improve the
+// convergence rate. Modern references for Conjugate Gradients are the
+// books by Yousef Saad and Trefethen & Bau. This implementation of CG
+// has been augmented with additional termination tests that are
+// needed for forcing early termination when used as part of an
+// inexact Newton solver.
+//
+// For more details see the documentation for
+// LinearSolver::PerSolveOptions::r_tolerance and
+// LinearSolver::PerSolveOptions::q_tolerance in linear_solver.h.
+class ConjugateGradientsSolver : public LinearSolver {
+ public:
+  explicit ConjugateGradientsSolver(const LinearSolver::Options& options);
+  virtual Summary Solve(LinearOperator* A,
+                        const double* b,
+                        const LinearSolver::PerSolveOptions& per_solve_options,
+                        double* x);
+
+ private:
+  const LinearSolver::Options options_;
+  DISALLOW_COPY_AND_ASSIGN(ConjugateGradientsSolver);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_CONJUGATE_GRADIENTS_SOLVER_H_
diff --git a/internal/ceres/corrector.cc b/internal/ceres/corrector.cc
new file mode 100644
index 0000000..4ca2c6f
--- /dev/null
+++ b/internal/ceres/corrector.cc
@@ -0,0 +1,125 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/corrector.h"
+
+#include <cstddef>
+#include <cmath>
+#include <glog/logging.h>
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+Corrector::Corrector(double sq_norm, const double rho[3]) {
+  CHECK_GE(sq_norm, 0.0);
+  CHECK_GT(rho[1], 0.0);
+  sqrt_rho1_ = sqrt(rho[1]);
+
+  // If sq_norm = 0.0, the correction becomes trivial, the residual
+  // and the jacobian are scaled by the squareroot of the derivative
+  // of rho. Handling this case explicitly avoids the divide by zero
+  // error that would occur below.
+  //
+  // The case where rho'' < 0 also gets special handling. Technically
+  // it shouldn't, and the computation of the scaling should proceed
+  // as below, however we found in experiments that applying the
+  // curvature correction when rho'' < 0, which is the case when we
+  // are in the outlier region slows down the convergence of the
+  // algorithm significantly.
+  //
+  // Thus, we have divided the action of the robustifier into two
+  // parts. In the inliner region, we do the full second order
+  // correction which re-wights the gradient of the function by the
+  // square root of the derivative of rho, and the Gauss-Newton
+  // Hessian gets both the scaling and the rank-1 curvature
+  // correction. Normaly, alpha is upper bounded by one, but with this
+  // change, alpha is bounded above by zero.
+  //
+  // Empirically we have observed that the full Triggs correction and
+  // the clamped correction both start out as very good approximations
+  // to the loss function when we are in the convex part of the
+  // function, but as the function starts transitioning from convex to
+  // concave, the Triggs approximation diverges more and more and
+  // ultimately becomes linear. The clamped Triggs model however
+  // remains quadratic.
+  //
+  // The reason why the Triggs approximation becomes so poor is
+  // because the curvature correction that it applies to the gauss
+  // newton hessian goes from being a full rank correction to a rank
+  // deficient correction making the inversion of the Hessian fraught
+  // with all sorts of misery and suffering.
+  //
+  // The clamped correction retains its quadratic nature and inverting it
+  // is always well formed.
+  if ((sq_norm == 0.0) || (rho[2] <= 0.0)) {
+    residual_scaling_ = sqrt_rho1_;
+    alpha_sq_norm_ = 0.0;
+    return;
+  }
+
+  // Calculate the smaller of the two solutions to the equation
+  //
+  // 0.5 *  alpha^2 - alpha - rho'' / rho' *  z'z = 0.
+  //
+  // Start by calculating the discriminant D.
+  const double D = 1.0 + 2.0 * sq_norm*rho[2] / rho[1];
+
+  // Since both rho[1] and rho[2] are guaranteed to be positive at
+  // this point, we know that D > 1.0.
+
+  const double alpha = 1.0 - sqrt(D);
+
+  // Calculate the constants needed by the correction routines.
+  residual_scaling_ = sqrt_rho1_ / (1 - alpha);
+  alpha_sq_norm_ = alpha / sq_norm;
+}
+
+void Corrector::CorrectResiduals(int nrow, double* residuals) {
+  DCHECK(residuals != NULL);
+  VectorRef r_ref(residuals, nrow);
+  // Equation 11 in BANS.
+  r_ref *= residual_scaling_;
+}
+
+void Corrector::CorrectJacobian(int nrow, int ncol,
+                                double* residuals, double* jacobian) {
+  DCHECK(residuals != NULL);
+  DCHECK(jacobian != NULL);
+  ConstVectorRef r_ref(residuals, nrow);
+  MatrixRef j_ref(jacobian, nrow, ncol);
+
+  // Equation 11 in BANS.
+  j_ref = sqrt_rho1_ * (j_ref - alpha_sq_norm_ *
+                        r_ref * (r_ref.transpose() * j_ref));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/corrector.h b/internal/ceres/corrector.h
new file mode 100644
index 0000000..9914641
--- /dev/null
+++ b/internal/ceres/corrector.h
@@ -0,0 +1,88 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Class definition for the object that is responsible for applying a
+// second order correction to the Gauss-Newton based on the ideas in
+// BANS by Triggs et al.
+
+#ifndef CERES_INTERNAL_CORRECTOR_H_
+#define CERES_INTERNAL_CORRECTOR_H_
+
+namespace ceres {
+namespace internal {
+
+// Corrector is responsible for applying the second order correction
+// to the residual and jacobian of a least squares problem based on a
+// radial robust loss.
+//
+// The key idea here is to look at the expressions for the robustified
+// gauss newton approximation and then take its squareroot to get the
+// corresponding corrections to the residual and jacobian.  For the
+// full expressions see Eq. 10 and 11 in BANS by Triggs et al.
+class Corrector {
+ public:
+  // The constructor takes the squared norm, the value, the first and
+  // second derivatives of the LossFunction. It precalculates some of
+  // the constants that are needed to apply the correction. The
+  // correction constant alpha is constrained to be smaller than 1, if
+  // it becomes larger than 1, then it will reverse the sign of the
+  // residual and the correction. If alpha is equal to 1 will result
+  // in a divide by zero error. Thus we constrain alpha to be upper
+  // bounded by 1 - epsilon_.
+  //
+  // rho[1] needs to be positive. The constructor will crash if this
+  // condition is not met.
+  //
+  // In practical use CorrectJacobian should always be called before
+  // CorrectResidual, because the jacobian correction depends on the
+  // value of the uncorrected residual values.
+  explicit Corrector(double sq_norm, const double rho[3]);
+
+  // residuals *= sqrt(rho[1]) / (1 - alpha)
+  void CorrectResiduals(int nrow, double* residuals);
+
+  // jacobian = sqrt(rho[1]) * jacobian -
+  // sqrt(rho[1]) * alpha / sq_norm * residuals residuals' * jacobian.
+  //
+  // The method assumes that the jacobian has row-major storage. It is
+  // the caller's responsibility to ensure that the pointer to
+  // jacobian is not null.
+  void CorrectJacobian(int nrow, int ncol,
+                       double* residuals, double* jacobian);
+
+ private:
+  double sqrt_rho1_;
+  double residual_scaling_;
+  double alpha_sq_norm_;
+};
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_CORRECTOR_H_
diff --git a/internal/ceres/corrector_test.cc b/internal/ceres/corrector_test.cc
new file mode 100644
index 0000000..b2556af
--- /dev/null
+++ b/internal/ceres/corrector_test.cc
@@ -0,0 +1,276 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/corrector.h"
+
+#include <algorithm>
+#include <cmath>
+#include <cstring>
+#include <cstdlib>
+#include "gtest/gtest.h"
+#include "ceres/random.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+// If rho[1] is zero, the Corrector constructor should crash.
+TEST(Corrector, ZeroGradientDeathTest) {
+  const double kRho[] = {0.0, 0.0, 0.0};
+  ASSERT_DEATH({Corrector c(1.0, kRho);},
+               ".*");
+}
+
+// If rho[1] is negative, the Corrector constructor should crash.
+TEST(Corrector, NegativeGradientDeathTest) {
+  const double kRho[] = {0.0, -0.1, 0.0};
+  ASSERT_DEATH({Corrector c(1.0, kRho);},
+               ".*");
+}
+
+TEST(Corrector, ScalarCorrection) {
+  double residuals = sqrt(3.0);
+  double jacobian = 10.0;
+  double sq_norm = residuals * residuals;
+
+  const double kRho[] = {sq_norm, 0.1, -0.01};
+
+  // In light of the rho'' < 0 clamping now implemented in
+  // corrector.cc, alpha = 0 whenever rho'' < 0.
+  const double kAlpha = 0.0;
+
+  // Thus the expected value of the residual is
+  // residual[i] * sqrt(kRho[1]) / (1.0 - kAlpha).
+  const double kExpectedResidual =
+      residuals * sqrt(kRho[1]) / (1 - kAlpha);
+
+  // The jacobian in this case will be
+  // sqrt(kRho[1]) * (1 - kAlpha) * jacobian.
+  const double kExpectedJacobian = sqrt(kRho[1]) * (1 - kAlpha) * jacobian;
+
+  Corrector c(sq_norm, kRho);
+  c.CorrectJacobian(1.0, 1.0, &residuals, &jacobian);
+  c.CorrectResiduals(1.0, &residuals);
+
+  ASSERT_NEAR(residuals, kExpectedResidual, 1e-6);
+  ASSERT_NEAR(kExpectedJacobian, jacobian, 1e-6);
+}
+
+TEST(Corrector, ScalarCorrectionZeroResidual) {
+  double residuals = 0.0;
+  double jacobian = 10.0;
+  double sq_norm = residuals * residuals;
+
+  const double kRho[] = {0.0, 0.1, -0.01};
+  Corrector c(sq_norm, kRho);
+
+  // The alpha equation is
+  // 1/2 alpha^2 - alpha + 0.0 = 0.
+  // i.e. alpha = 1.0 - sqrt(1.0).
+  //      alpha = 0.0.
+  // Thus the expected value of the residual is
+  // residual[i] * sqrt(kRho[1])
+  const double kExpectedResidual = residuals * sqrt(kRho[1]);
+
+  // The jacobian in this case will be
+  // sqrt(kRho[1]) * jacobian.
+  const double kExpectedJacobian = sqrt(kRho[1]) * jacobian;
+
+  c.CorrectJacobian(1, 1, &residuals, &jacobian);
+  c.CorrectResiduals(1, &residuals);
+
+  ASSERT_NEAR(residuals, kExpectedResidual, 1e-6);
+  ASSERT_NEAR(kExpectedJacobian, jacobian, 1e-6);
+}
+
+// Scaling behaviour for one dimensional functions.
+TEST(Corrector, ScalarCorrectionAlphaClamped) {
+  double residuals = sqrt(3.0);
+  double jacobian = 10.0;
+  double sq_norm = residuals * residuals;
+
+  const double kRho[] = {3, 0.1, -0.1};
+
+  // rho[2] < 0 -> alpha = 0.0
+  const double kAlpha = 0.0;
+
+  // Thus the expected value of the residual is
+  // residual[i] * sqrt(kRho[1]) / (1.0 - kAlpha).
+  const double kExpectedResidual =
+      residuals * sqrt(kRho[1]) / (1.0 - kAlpha);
+
+  // The jacobian in this case will be scaled by
+  // sqrt(rho[1]) * (1 - alpha) * J.
+  const double kExpectedJacobian = sqrt(kRho[1]) *
+      (1.0 - kAlpha) * jacobian;
+
+  Corrector c(sq_norm, kRho);
+  c.CorrectJacobian(1, 1, &residuals, &jacobian);
+  c.CorrectResiduals(1, &residuals);
+
+  ASSERT_NEAR(residuals, kExpectedResidual, 1e-6);
+  ASSERT_NEAR(kExpectedJacobian, jacobian, 1e-6);
+}
+
+// Test that the corrected multidimensional residual and jacobians
+// match the expected values and the resulting modified normal
+// equations match the robustified gauss newton approximation.
+TEST(Corrector, MultidimensionalGaussNewtonApproximation) {
+  double residuals[3];
+  double jacobian[2 * 3];
+  double rho[3];
+
+  // Eigen matrix references for linear algebra.
+  MatrixRef jac(jacobian, 3, 2);
+  VectorRef res(residuals, 3);
+
+  // Ground truth values of the modified jacobian and residuals.
+  Matrix g_jac(3, 2);
+  Vector g_res(3);
+
+  // Ground truth values of the robustified Gauss-Newton
+  // approximation.
+  Matrix g_hess(2, 2);
+  Vector g_grad(2);
+
+  // Corrected hessian and gradient implied by the modified jacobian
+  // and hessians.
+  Matrix c_hess(2, 2);
+  Vector c_grad(2);
+
+  srand(5);
+  for (int iter = 0; iter < 10000; ++iter) {
+    // Initialize the jacobian and residual.
+    for (int i = 0; i < 2 * 3; ++i)
+      jacobian[i] = RandDouble();
+    for (int i = 0; i < 3; ++i)
+      residuals[i] = RandDouble();
+
+    const double sq_norm = res.dot(res);
+
+    rho[0] = sq_norm;
+    rho[1] = RandDouble();
+    rho[2] = 2.0 * RandDouble() - 1.0;
+
+    // If rho[2] > 0, then the curvature correction to the correction
+    // and the gauss newton approximation will match. Otherwise, we
+    // will clamp alpha to 0.
+
+    const double kD = 1 + 2 * rho[2] / rho[1] * sq_norm;
+    const double kAlpha = (rho[2] > 0.0) ? 1 - sqrt(kD) : 0.0;
+
+    // Ground truth values.
+    g_res = sqrt(rho[1]) / (1.0 - kAlpha) * res;
+    g_jac = sqrt(rho[1]) * (jac - kAlpha / sq_norm *
+                            res * res.transpose() * jac);
+
+    g_grad = rho[1] * jac.transpose() * res;
+    g_hess = rho[1] * jac.transpose() * jac +
+        2.0 * rho[2] * jac.transpose() * res * res.transpose() * jac;
+
+    Corrector c(sq_norm, rho);
+    c.CorrectJacobian(3, 2, residuals, jacobian);
+    c.CorrectResiduals(3, residuals);
+
+    // Corrected gradient and hessian.
+    c_grad  = jac.transpose() * res;
+    c_hess = jac.transpose() * jac;
+
+    ASSERT_NEAR((g_res - res).norm(), 0.0, 1e-10);
+    ASSERT_NEAR((g_jac - jac).norm(), 0.0, 1e-10);
+
+    ASSERT_NEAR((g_grad - c_grad).norm(), 0.0, 1e-10);
+  }
+}
+
+TEST(Corrector, MultidimensionalGaussNewtonApproximationZeroResidual) {
+  double residuals[3];
+  double jacobian[2 * 3];
+  double rho[3];
+
+  // Eigen matrix references for linear algebra.
+  MatrixRef jac(jacobian, 3, 2);
+  VectorRef res(residuals, 3);
+
+  // Ground truth values of the modified jacobian and residuals.
+  Matrix g_jac(3, 2);
+  Vector g_res(3);
+
+  // Ground truth values of the robustified Gauss-Newton
+  // approximation.
+  Matrix g_hess(2, 2);
+  Vector g_grad(2);
+
+  // Corrected hessian and gradient implied by the modified jacobian
+  // and hessians.
+  Matrix c_hess(2, 2);
+  Vector c_grad(2);
+
+  srand(5);
+  for (int iter = 0; iter < 10000; ++iter) {
+    // Initialize the jacobian.
+    for (int i = 0; i < 2 * 3; ++i)
+      jacobian[i] = RandDouble();
+
+    // Zero residuals
+    res.setZero();
+
+    const double sq_norm = res.dot(res);
+
+    rho[0] = sq_norm;
+    rho[1] = RandDouble();
+    rho[2] = 2 * RandDouble() - 1.0;
+
+    // Ground truth values.
+    g_res = sqrt(rho[1]) * res;
+    g_jac = sqrt(rho[1]) * jac;
+
+    g_grad = rho[1] * jac.transpose() * res;
+    g_hess = rho[1] * jac.transpose() * jac +
+        2.0 * rho[2] * jac.transpose() * res * res.transpose() * jac;
+
+    Corrector c(sq_norm, rho);
+    c.CorrectJacobian(3, 2, residuals, jacobian);
+    c.CorrectResiduals(3, residuals);
+
+    // Corrected gradient and hessian.
+    c_grad = jac.transpose() * res;
+    c_hess = jac.transpose() * jac;
+
+    ASSERT_NEAR((g_res - res).norm(), 0.0, 1e-10);
+    ASSERT_NEAR((g_jac - jac).norm(), 0.0, 1e-10);
+
+    ASSERT_NEAR((g_grad - c_grad).norm(), 0.0, 1e-10);
+    ASSERT_NEAR((g_hess - c_hess).norm(), 0.0, 1e-10);
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/dense_jacobian_writer.h b/internal/ceres/dense_jacobian_writer.h
new file mode 100644
index 0000000..1177b83
--- /dev/null
+++ b/internal/ceres/dense_jacobian_writer.h
@@ -0,0 +1,110 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A jacobian writer that writes to dense Eigen matrices.
+
+#ifndef CERES_INTERNAL_DENSE_JACOBIAN_WRITER_H_
+#define CERES_INTERNAL_DENSE_JACOBIAN_WRITER_H_
+
+#include "ceres/casts.h"
+#include "ceres/dense_sparse_matrix.h"
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/scratch_evaluate_preparer.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+class DenseJacobianWriter {
+ public:
+  DenseJacobianWriter(Evaluator::Options /* ignored */,
+                      Program* program)
+    : program_(program) {
+  }
+
+  // JacobianWriter interface.
+
+  // Since the dense matrix has different layout than that assumed by the cost
+  // functions, use scratch space to store the jacobians temporarily then copy
+  // them over to the larger jacobian later.
+  ScratchEvaluatePreparer* CreateEvaluatePreparers(int num_threads) {
+    return ScratchEvaluatePreparer::Create(*program_, num_threads);
+  }
+
+  SparseMatrix* CreateJacobian() const {
+    return new DenseSparseMatrix(program_->NumResiduals(),
+                                 program_->NumEffectiveParameters());
+  }
+
+  void Write(int residual_id,
+             int residual_offset,
+             double **jacobians,
+             SparseMatrix* jacobian) {
+    DenseSparseMatrix* dense_jacobian;
+    if (jacobian != NULL) {
+      dense_jacobian = down_cast<DenseSparseMatrix*>(jacobian);
+    }
+    const ResidualBlock* residual_block =
+        program_->residual_blocks()[residual_id];
+    int num_parameter_blocks = residual_block->NumParameterBlocks();
+    int num_residuals = residual_block->NumResiduals();
+
+    // Now copy the jacobians for each parameter into the dense jacobian matrix.
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+
+      // If the parameter block is fixed, then there is nothing to do.
+      if (parameter_block->IsConstant()) {
+        continue;
+      }
+
+      int parameter_block_size = parameter_block->LocalSize();
+      MatrixRef parameter_jacobian(jacobians[j],
+                                   num_residuals,
+                                   parameter_block_size);
+
+      dense_jacobian->mutable_matrix().block(
+          residual_offset,
+          parameter_block->delta_offset(),
+          num_residuals,
+          parameter_block_size) = parameter_jacobian;
+    }
+  }
+
+ private:
+  Program* program_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_DENSE_JACOBIAN_WRITER_H_
diff --git a/internal/ceres/dense_qr_solver.cc b/internal/ceres/dense_qr_solver.cc
new file mode 100644
index 0000000..3285054
--- /dev/null
+++ b/internal/ceres/dense_qr_solver.cc
@@ -0,0 +1,93 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/dense_qr_solver.h"
+
+#include <cstddef>
+
+#include "Eigen/Dense"
+#include "ceres/linear_solver.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+DenseQRSolver::DenseQRSolver(const LinearSolver::Options& options)
+    : options_(options) {}
+
+LinearSolver::Summary DenseQRSolver::SolveImpl(
+    DenseSparseMatrix* A,
+    const double* b,
+    const LinearSolver::PerSolveOptions& per_solve_options,
+    double* x) {
+  const int num_rows = A->num_rows();
+  const int num_cols = A->num_cols();
+  VLOG(2) << "DenseQRSolver: "
+          << num_rows << " x " << num_cols << " system.";
+
+  if (per_solve_options.D != NULL) {
+    // Temporarily append a diagonal block to the A matrix, but undo
+    // it before returning the matrix to the user.
+    A->AppendDiagonal(per_solve_options.D);
+  }
+
+  // rhs = [b;0] to account for the additional rows in the lhs.
+  Vector rhs(num_rows + ((per_solve_options.D !=NULL) ? num_cols : 0));
+  rhs.setZero();
+  rhs.head(num_rows) = ConstVectorRef(b, num_rows);
+
+  // Solve the system.
+  VectorRef(x, num_cols) = A->matrix().colPivHouseholderQr().solve(rhs);
+
+  VLOG(3) << "A:\n" << A->matrix();
+  VLOG(3) << "x:\n" << VectorRef(x, num_cols);
+  VLOG(3) << "b:\n" << rhs;
+  VLOG(3) << "error: " << (A->matrix() * VectorRef(x, num_cols) - rhs).norm();
+
+
+  if (per_solve_options.D != NULL) {
+    // Undo the modifications to the matrix A.
+    A->RemoveDiagonal();
+  }
+
+  // We always succeed, since the QR solver returns the best solution
+  // it can. It is the job of the caller to determine if the solution
+  // is good enough or not.
+  LinearSolver::Summary summary;
+  summary.num_iterations = 1;
+  summary.termination_type = TOLERANCE;
+  return summary;
+}
+
+}   // namespace internal
+}   // namespace ceres
diff --git a/internal/ceres/dense_qr_solver.h b/internal/ceres/dense_qr_solver.h
new file mode 100644
index 0000000..990c8d4
--- /dev/null
+++ b/internal/ceres/dense_qr_solver.h
@@ -0,0 +1,99 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Solve dense rectangular systems Ax = b using the QR factoriztion.
+#ifndef CERES_INTERNAL_DENSE_QR_SOLVER_H_
+#define CERES_INTERNAL_DENSE_QR_SOLVER_H_
+
+#include "ceres/linear_solver.h"
+#include "ceres/internal/macros.h"
+
+namespace ceres {
+namespace internal {
+
+class DenseSparseMatrix;
+
+// This class implements the LinearSolver interface for solving
+// rectangular/unsymmetric (well constrained) linear systems of the
+// form
+//
+//   Ax = b
+//
+// Since there does not usually exist a solution that satisfies these
+// equations, the solver instead solves the linear least squares
+// problem
+//
+//   min_x |Ax - b|^2
+//
+// The solution strategy is based on computing the QR decomposition of
+// A, i.e.
+//
+//   A = QR
+//
+// Where Q is an orthonormal matrix and R is an upper triangular
+// matrix. Then
+//
+//     Ax = b
+//    QRx = b
+//  Q'QRx = Q'b
+//     Rx = Q'b
+//      x = R^{-1} Q'b
+//
+// If the PerSolveOptions struct has a non-null array D, then the
+// augmented/regularized linear system
+//
+//   [    A    ]x = [b]
+//   [ diag(D) ]    [0]
+//
+// is solved.
+//
+// This class uses the dense QR factorization routines from the Eigen
+// library. This solver always returns a solution, it is the user's
+// responsibility to judge if the solution is good enough for their
+// purposes.
+class DenseQRSolver: public DenseSparseMatrixSolver {
+ public:
+  explicit DenseQRSolver(const LinearSolver::Options& options);
+
+ private:
+  virtual LinearSolver::Summary SolveImpl(
+      DenseSparseMatrix* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& per_solve_options,
+      double* x);
+
+  const LinearSolver::Options options_;
+  DISALLOW_COPY_AND_ASSIGN(DenseQRSolver);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_DENSE_QR_SOLVER_H_
diff --git a/internal/ceres/dense_sparse_matrix.cc b/internal/ceres/dense_sparse_matrix.cc
new file mode 100644
index 0000000..ffbfab6
--- /dev/null
+++ b/internal/ceres/dense_sparse_matrix.cc
@@ -0,0 +1,184 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/dense_sparse_matrix.h"
+
+#include <algorithm>
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+DenseSparseMatrix::DenseSparseMatrix(int num_rows, int num_cols)
+    : has_diagonal_appended_(false),
+      has_diagonal_reserved_(false) {
+  // Allocate enough space for the diagonal.
+  m_.resize(num_rows, num_cols);
+  m_.setZero();
+}
+
+DenseSparseMatrix::DenseSparseMatrix(const TripletSparseMatrix& m)
+    : m_(Eigen::MatrixXd::Zero(m.num_rows(), m.num_cols())),
+      has_diagonal_appended_(false),
+      has_diagonal_reserved_(false) {
+  const double *values = m.values();
+  const int *rows = m.rows();
+  const int *cols = m.cols();
+  int num_nonzeros = m.num_nonzeros();
+
+  for (int i = 0; i < num_nonzeros; ++i) {
+    m_(rows[i], cols[i]) += values[i];
+  }
+}
+
+DenseSparseMatrix::DenseSparseMatrix(const Matrix& m)
+    : m_(m),
+      has_diagonal_appended_(false),
+      has_diagonal_reserved_(false) {
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+DenseSparseMatrix::DenseSparseMatrix(const SparseMatrixProto& outer_proto)
+    : m_(Eigen::MatrixXd::Zero(
+        outer_proto.dense_matrix().num_rows(),
+        outer_proto.dense_matrix().num_cols())),
+      has_diagonal_appended_(false),
+      has_diagonal_reserved_(false) {
+  const DenseSparseMatrixProto& proto = outer_proto.dense_matrix();
+  for (int i = 0; i < m_.rows(); ++i) {
+    for (int j = 0; j < m_.cols(); ++j) {
+      m_(i, j) = proto.values(m_.cols() * i + j);
+    }
+  }
+}
+#endif
+
+void DenseSparseMatrix::SetZero() {
+  m_.setZero();
+}
+
+void DenseSparseMatrix::RightMultiply(const double* x, double* y) const {
+  VectorRef(y, num_rows()) += matrix() * ConstVectorRef(x, num_cols());
+}
+
+void DenseSparseMatrix::LeftMultiply(const double* x, double* y) const {
+  VectorRef(y, num_cols()) +=
+      matrix().transpose() * ConstVectorRef(x, num_rows());
+}
+
+void DenseSparseMatrix::SquaredColumnNorm(double* x) const {
+  VectorRef(x, num_cols()) = m_.colwise().squaredNorm();
+}
+
+void DenseSparseMatrix::ScaleColumns(const double* scale) {
+  m_ *= ConstVectorRef(scale, num_cols()).asDiagonal();
+}
+
+void DenseSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const {
+  *dense_matrix = m_;
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+void DenseSparseMatrix::ToProto(SparseMatrixProto* outer_proto) const {
+  CHECK(!has_diagonal_appended_) << "Not supported.";
+  outer_proto->Clear();
+  DenseSparseMatrixProto* proto = outer_proto->mutable_dense_matrix();
+
+  proto->set_num_rows(num_rows());
+  proto->set_num_cols(num_cols());
+
+  int num_nnz = num_nonzeros();
+  for (int i = 0; i < num_nnz; ++i) {
+    proto->add_values(m_.data()[i]);
+  }
+}
+#endif
+
+void DenseSparseMatrix::AppendDiagonal(double *d) {
+  CHECK(!has_diagonal_appended_);
+  if (!has_diagonal_reserved_) {
+    Matrix tmp = m_;
+    m_.resize(m_.rows() + m_.cols(), m_.cols());
+    m_.setZero();
+    m_.block(0, 0, tmp.rows(), tmp.cols()) = tmp;
+    has_diagonal_reserved_ = true;
+  }
+
+  m_.bottomLeftCorner(m_.cols(), m_.cols()) =
+      ConstVectorRef(d, m_.cols()).asDiagonal();
+  has_diagonal_appended_ = true;
+}
+
+void DenseSparseMatrix::RemoveDiagonal() {
+  CHECK(has_diagonal_appended_);
+  has_diagonal_appended_ = false;
+  // Leave the diagonal reserved.
+}
+
+int DenseSparseMatrix::num_rows() const {
+  if (has_diagonal_reserved_ && !has_diagonal_appended_) {
+    return m_.rows() - m_.cols();
+  }
+  return m_.rows();
+}
+
+int DenseSparseMatrix::num_cols() const {
+  return m_.cols();
+}
+
+int DenseSparseMatrix::num_nonzeros() const {
+  if (has_diagonal_reserved_ && !has_diagonal_appended_) {
+    return (m_.rows() - m_.cols()) * m_.cols();
+  }
+  return m_.rows() * m_.cols();
+}
+
+ConstAlignedMatrixRef DenseSparseMatrix::matrix() const {
+  if (has_diagonal_reserved_ && !has_diagonal_appended_) {
+    return ConstAlignedMatrixRef(
+        m_.data(), m_.rows() - m_.cols(), m_.cols());
+  }
+  return ConstAlignedMatrixRef(m_.data(), m_.rows(), m_.cols());
+}
+
+AlignedMatrixRef DenseSparseMatrix::mutable_matrix() {
+  if (has_diagonal_reserved_ && !has_diagonal_appended_) {
+    return AlignedMatrixRef(
+        m_.data(), m_.rows() - m_.cols(), m_.cols());
+  }
+  return AlignedMatrixRef(m_.data(), m_.rows(), m_.cols());
+}
+
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/dense_sparse_matrix.h b/internal/ceres/dense_sparse_matrix.h
new file mode 100644
index 0000000..5ce29ee
--- /dev/null
+++ b/internal/ceres/dense_sparse_matrix.h
@@ -0,0 +1,115 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A dense matrix implemented under the SparseMatrix interface.
+
+#ifndef CERES_INTERNAL_DENSE_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_DENSE_SPARSE_MATRIX_H_
+
+#include <glog/logging.h>
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class SparseMatrixProto;
+class TripletSparseMatrix;
+
+class DenseSparseMatrix : public SparseMatrix {
+ public:
+  // Build a matrix with the same content as the TripletSparseMatrix
+  // m. This assumes that m does not have any repeated entries.
+  explicit DenseSparseMatrix(const TripletSparseMatrix& m);
+  explicit DenseSparseMatrix(const Matrix& m);
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  explicit DenseSparseMatrix(const SparseMatrixProto& proto);
+#endif
+
+  DenseSparseMatrix(int num_rows, int num_cols);
+
+  virtual ~DenseSparseMatrix() {}
+
+  // SparseMatrix interface.
+  virtual void SetZero();
+  virtual void RightMultiply(const double* x, double* y) const;
+  virtual void LeftMultiply(const double* x, double* y) const;
+  virtual void SquaredColumnNorm(double* x) const;
+  virtual void ScaleColumns(const double* scale);
+  virtual void ToDenseMatrix(Matrix* dense_matrix) const;
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  virtual void ToProto(SparseMatrixProto* proto) const;
+#endif
+  virtual int num_rows() const;
+  virtual int num_cols() const;
+  virtual int num_nonzeros() const;
+  virtual const double* values() const { return m_.data(); }
+  virtual double* mutable_values() { return m_.data(); }
+
+  ConstAlignedMatrixRef matrix() const;
+  AlignedMatrixRef mutable_matrix();
+
+  // Only one diagonal can be appended at a time. The diagonal is appended to
+  // as a new set of rows, e.g.
+  //
+  // Original matrix:
+  //
+  //   x x x
+  //   x x x
+  //   x x x
+  //
+  // After append diagonal (1, 2, 3):
+  //
+  //   x x x
+  //   x x x
+  //   x x x
+  //   1 0 0
+  //   0 2 0
+  //   0 0 3
+  //
+  // Calling RemoveDiagonal removes the block. It is a fatal error to append a
+  // diagonal to a matrix that already has an appended diagonal, and it is also
+  // a fatal error to remove a diagonal from a matrix that has none.
+  void AppendDiagonal(double *d);
+  void RemoveDiagonal();
+
+ private:
+  Matrix m_;
+  bool has_diagonal_appended_;
+  bool has_diagonal_reserved_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_DENSE_SPARSE_MATRIX_H_
diff --git a/internal/ceres/dense_sparse_matrix_test.cc b/internal/ceres/dense_sparse_matrix_test.cc
new file mode 100644
index 0000000..d7d64e3
--- /dev/null
+++ b/internal/ceres/dense_sparse_matrix_test.cc
@@ -0,0 +1,232 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// TODO(keir): Implement a generic "compare sparse matrix implementations" test
+// suite that can compare all the implementations. Then this file would shrink
+// in size.
+
+#include "ceres/dense_sparse_matrix.h"
+
+#include "gtest/gtest.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+void CompareMatrices(const SparseMatrix* a, const SparseMatrix* b) {
+  EXPECT_EQ(a->num_rows(), b->num_rows());
+  EXPECT_EQ(a->num_cols(), b->num_cols());
+
+  int num_rows = a->num_rows();
+  int num_cols = a->num_cols();
+
+  for (int i = 0; i < num_cols; ++i) {
+    Vector x = Vector::Zero(num_cols);
+    x(i) = 1.0;
+
+    Vector y_a = Vector::Zero(num_rows);
+    Vector y_b = Vector::Zero(num_rows);
+
+    a->RightMultiply(x.data(), y_a.data());
+    b->RightMultiply(x.data(), y_b.data());
+
+    EXPECT_EQ((y_a - y_b).norm(), 0);
+  }
+}
+
+class DenseSparseMatrixTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(1));
+
+    CHECK_NOTNULL(problem.get());
+
+    tsm.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
+    dsm.reset(new DenseSparseMatrix(*tsm));
+
+    num_rows = tsm->num_rows();
+    num_cols = tsm->num_cols();
+  }
+
+  int num_rows;
+  int num_cols;
+
+  scoped_ptr<TripletSparseMatrix> tsm;
+  scoped_ptr<DenseSparseMatrix> dsm;
+};
+
+TEST_F(DenseSparseMatrixTest, RightMultiply) {
+  CompareMatrices(tsm.get(), dsm.get());
+
+  // Try with a not entirely zero vector to verify column interactions, which
+  // could be masked by a subtle bug when using the elementary vectors.
+  Vector a(num_cols);
+  for (int i = 0; i < num_cols; i++) {
+    a(i) = i;
+  }
+  Vector b1 = Vector::Zero(num_rows);
+  Vector b2 = Vector::Zero(num_rows);
+
+  tsm->RightMultiply(a.data(), b1.data());
+  dsm->RightMultiply(a.data(), b2.data());
+
+  EXPECT_EQ((b1 - b2).norm(), 0);
+}
+
+TEST_F(DenseSparseMatrixTest, LeftMultiply) {
+  for (int i = 0; i < num_rows; ++i) {
+    Vector a = Vector::Zero(num_rows);
+    a(i) = 1.0;
+
+    Vector b1 = Vector::Zero(num_cols);
+    Vector b2 = Vector::Zero(num_cols);
+
+    tsm->LeftMultiply(a.data(), b1.data());
+    dsm->LeftMultiply(a.data(), b2.data());
+
+    EXPECT_EQ((b1 - b2).norm(), 0);
+  }
+
+  // Try with a not entirely zero vector to verify column interactions, which
+  // could be masked by a subtle bug when using the elementary vectors.
+  Vector a(num_rows);
+  for (int i = 0; i < num_rows; i++) {
+    a(i) = i;
+  }
+  Vector b1 = Vector::Zero(num_cols);
+  Vector b2 = Vector::Zero(num_cols);
+
+  tsm->LeftMultiply(a.data(), b1.data());
+  dsm->LeftMultiply(a.data(), b2.data());
+
+  EXPECT_EQ((b1 - b2).norm(), 0);
+}
+
+TEST_F(DenseSparseMatrixTest, ColumnNorm) {
+  Vector b1 = Vector::Zero(num_cols);
+  Vector b2 = Vector::Zero(num_cols);
+
+  tsm->SquaredColumnNorm(b1.data());
+  dsm->SquaredColumnNorm(b2.data());
+
+  EXPECT_EQ((b1 - b2).norm(), 0);
+}
+
+TEST_F(DenseSparseMatrixTest, Scale) {
+  Vector scale(num_cols);
+  for (int i = 0; i < num_cols; ++i) {
+    scale(i) = i + 1;
+  }
+  tsm->ScaleColumns(scale.data());
+  dsm->ScaleColumns(scale.data());
+  CompareMatrices(tsm.get(), dsm.get());
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(DenseSparseMatrixTest, Serialization) {
+  SparseMatrixProto proto;
+  dsm->ToProto(&proto);
+
+  DenseSparseMatrix n(proto);
+  ASSERT_EQ(dsm->num_rows(),     n.num_rows());
+  ASSERT_EQ(dsm->num_cols(),     n.num_cols());
+  ASSERT_EQ(dsm->num_nonzeros(), n.num_nonzeros());
+
+  for (int i = 0; i < n.num_rows() + 1; ++i) {
+    ASSERT_EQ(dsm->values()[i], proto.dense_matrix().values(i));
+  }
+}
+#endif
+
+TEST_F(DenseSparseMatrixTest, ToDenseMatrix) {
+  Matrix tsm_dense;
+  Matrix dsm_dense;
+
+  tsm->ToDenseMatrix(&tsm_dense);
+  dsm->ToDenseMatrix(&dsm_dense);
+
+  EXPECT_EQ((tsm_dense - dsm_dense).norm(), 0.0);
+}
+
+// TODO(keir): Make this work without protocol buffers.
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(DenseSparseMatrixTest, AppendDiagonal) {
+  DenseSparseMatrixProto proto;
+  proto.set_num_rows(3);
+  proto.set_num_cols(3);
+  for (int i = 0; i < 9; ++i) {
+    proto.add_values(i);
+  }
+  SparseMatrixProto outer_proto;
+  *outer_proto.mutable_dense_matrix() = proto;
+
+  DenseSparseMatrix dsm(outer_proto);
+
+  double diagonal[] = { 10, 11, 12 };
+  dsm.AppendDiagonal(diagonal);
+
+  // Verify the diagonal got added.
+  Matrix m = dsm.matrix();
+  EXPECT_EQ(6, m.rows());
+  EXPECT_EQ(3, m.cols());
+  for (int i = 0; i < 3; ++i) {
+    for (int j = 0; j < 3; ++j) {
+      EXPECT_EQ(3 * i + j, m(i, j));
+      if (i == j) {
+        EXPECT_EQ(10 + i, m(i + 3, j));
+      } else {
+        EXPECT_EQ(0, m(i + 3, j));
+      }
+    }
+  }
+
+  // Verify the diagonal gets removed.
+  dsm.RemoveDiagonal();
+  m = dsm.matrix();
+
+  EXPECT_EQ(3, m.rows());
+  EXPECT_EQ(3, m.cols());
+
+  for (int i = 0; i < 3; ++i) {
+    for (int j = 0; j < 3; ++j) {
+      EXPECT_EQ(3 * i + j, m(i, j));
+    }
+  }
+}
+#endif
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/detect_structure.cc b/internal/ceres/detect_structure.cc
new file mode 100644
index 0000000..e975504
--- /dev/null
+++ b/internal/ceres/detect_structure.cc
@@ -0,0 +1,114 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <glog/logging.h>
+#include "ceres/detect_structure.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+void DetectStructure(const CompressedRowBlockStructure& bs,
+                     const int num_eliminate_blocks,
+                     int* row_block_size,
+                     int* e_block_size,
+                     int* f_block_size) {
+  const int num_row_blocks = bs.rows.size();
+  *row_block_size = 0;
+  *e_block_size = 0;
+  *f_block_size = 0;
+
+  // Iterate over row blocks of the matrix, checking if row_block,
+  // e_block or f_block sizes remain constant.
+  for (int r = 0; r < num_row_blocks; ++r) {
+    const CompressedRow& row = bs.rows[r];
+    // We do not care about the sizes of the blocks in rows which do
+    // not contain e_blocks.
+    if (row.cells.front().block_id >= num_eliminate_blocks) {
+      break;
+    }
+    const int e_block_id = row.cells.front().block_id;
+
+    if (*row_block_size == 0) {
+      *row_block_size = row.block.size;
+    } else if (*row_block_size != Eigen::Dynamic &&
+               *row_block_size != row.block.size) {
+      *row_block_size = Eigen::Dynamic;
+      VLOG(2) << "Dynamic row block size because the block size changed from "
+              << *row_block_size << " to "
+              << row.block.size;
+    }
+
+
+    if (*e_block_size == 0) {
+      *e_block_size = bs.cols[e_block_id].size;
+    } else if (*e_block_size != Eigen::Dynamic &&
+               *e_block_size != bs.cols[e_block_id].size) {
+      *e_block_size = Eigen::Dynamic;
+      VLOG(2) << "Dynamic e block size because the block size changed from "
+              << *e_block_size << " to "
+              << bs.cols[e_block_id].size;
+    }
+
+    if (*f_block_size == 0) {
+      if (row.cells.size() > 1) {
+        const int f_block_id = row.cells[1].block_id;
+        *f_block_size = bs.cols[f_block_id].size;
+      }
+    } else if (*f_block_size != Eigen::Dynamic) {
+      for (int c = 1; c < row.cells.size(); ++c) {
+        if (*f_block_size != bs.cols[row.cells[c].block_id].size) {
+          *f_block_size = Eigen::Dynamic;
+          VLOG(2) << "Dynamic f block size because the block size "
+                    << "changed from " << *f_block_size << " to "
+                    << bs.cols[row.cells[c].block_id].size;
+            break;
+        }
+      }
+    }
+
+    const bool is_everything_dynamic = (*row_block_size == Eigen::Dynamic &&
+                                        *e_block_size == Eigen::Dynamic &&
+                                        *f_block_size == Eigen::Dynamic);
+    if (is_everything_dynamic) {
+      break;
+    }
+  }
+
+  CHECK_NE(*row_block_size, 0) << "No rows found";
+  CHECK_NE(*e_block_size, 0) << "No e type blocks found";
+  VLOG(1) << "Schur complement static structure <"
+          << *row_block_size << ","
+          << *e_block_size << ","
+          << *f_block_size << ">.";
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/detect_structure.h b/internal/ceres/detect_structure.h
new file mode 100644
index 0000000..8af4f23
--- /dev/null
+++ b/internal/ceres/detect_structure.h
@@ -0,0 +1,63 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_DETECT_STRUCTURE_H_
+#define CERES_INTERNAL_DETECT_STRUCTURE_H_
+
+#include "ceres/block_structure.h"
+
+namespace ceres {
+namespace internal {
+
+// Detect static blocks in the problem sparsity. For rows containing
+// e_blocks, we are interested in detecting if the size of the row
+// blocks, e_blocks and the f_blocks remain constant. If they do, then
+// we can use template specialization to improve the performance of
+// the block level linear algebra operations used by the
+// SchurEliminator.
+//
+// If a block size is not constant, we return Eigen::Dynamic as the
+// value. This just means that the eliminator uses dynamically sized
+// linear algebra operations rather than static operations whose size
+// is known as compile time.
+//
+// For more details about e_blocks and f_blocks, see
+// schur_complement.h. This information is used to initialized an
+// appropriate template specialization of SchurEliminator.
+void DetectStructure(const CompressedRowBlockStructure& bs,
+                     const int num_eliminate_blocks,
+                     int* row_block_size,
+                     int* e_block_size,
+                     int* f_block_size);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_DETECT_STRUCTURE_H_
diff --git a/internal/ceres/evaluator.cc b/internal/ceres/evaluator.cc
new file mode 100644
index 0000000..38c3fdb
--- /dev/null
+++ b/internal/ceres/evaluator.cc
@@ -0,0 +1,75 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include <glog/logging.h>
+#include "ceres/evaluator.h"
+#include "ceres/block_evaluate_preparer.h"
+#include "ceres/block_jacobian_writer.h"
+#include "ceres/compressed_row_jacobian_writer.h"
+#include "ceres/scratch_evaluate_preparer.h"
+#include "ceres/dense_jacobian_writer.h"
+#include "ceres/program_evaluator.h"
+
+namespace ceres {
+namespace internal {
+
+Evaluator::~Evaluator() {}
+
+Evaluator* Evaluator::Create(const Evaluator::Options& options,
+                             Program* program,
+                             string* error) {
+  switch (options.linear_solver_type) {
+    case DENSE_QR:
+      return new ProgramEvaluator<ScratchEvaluatePreparer,
+                                  DenseJacobianWriter>(options,
+                                                       program);
+    case DENSE_SCHUR:
+    case SPARSE_SCHUR:
+    case ITERATIVE_SCHUR:
+      return new ProgramEvaluator<BlockEvaluatePreparer,
+                                  BlockJacobianWriter>(options,
+                                                       program);
+    case SPARSE_NORMAL_CHOLESKY:
+      return new ProgramEvaluator<ScratchEvaluatePreparer,
+                                  CompressedRowJacobianWriter>(options,
+                                                               program);
+    case CONJUGATE_GRADIENTS:
+      *error = "CONJUGATE_GRADIENTS is not supported as a linear "
+          "solver. If you want to use an iterative linear solver, "
+          "use ITERATIVE_SCHUR instead.";
+      return NULL;
+    default:
+      *error = "Invalid Linear Solver Type. Unable to create evaluator.";
+      return NULL;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/evaluator.h b/internal/ceres/evaluator.h
new file mode 100644
index 0000000..adefdd2
--- /dev/null
+++ b/internal/ceres/evaluator.h
@@ -0,0 +1,129 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_EVALUATOR_H_
+#define CERES_INTERNAL_EVALUATOR_H_
+
+#include <string>
+#include "ceres/internal/port.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class Program;
+class SparseMatrix;
+
+// The Evaluator interface offers a way to interact with a least squares cost
+// function that is useful for an optimizer that wants to minimize the least
+// squares objective. This insulates the optimizer from issues like Jacobian
+// storage, parameterization, etc.
+class Evaluator {
+ public:
+  virtual ~Evaluator();
+
+  struct Options {
+    Options()
+        : num_threads(1),
+          num_eliminate_blocks(-1),
+          linear_solver_type(DENSE_QR) {}
+
+    int num_threads;
+    int num_eliminate_blocks;
+    LinearSolverType linear_solver_type;
+  };
+
+  static Evaluator* Create(const Options& options,
+                           Program* program,
+                           string* error);
+
+  // Build and return a sparse matrix for storing and working with the Jacobian
+  // of the objective function. The jacobian has dimensions
+  // NumEffectiveParameters() by NumParameters(), and is typically extremely
+  // sparse. Since the sparsity pattern of the Jacobian remains constant over
+  // the lifetime of the optimization problem, this method is used to
+  // instantiate a SparseMatrix object with the appropriate sparsity structure
+  // (which can be an expensive operation) and then reused by the optimization
+  // algorithm and the various linear solvers.
+  //
+  // It is expected that the classes implementing this interface will be aware
+  // of their client's requirements for the kind of sparse matrix storage and
+  // layout that is needed for an efficient implementation. For example
+  // CompressedRowOptimizationProblem creates a compressed row representation of
+  // the jacobian for use with CHOLMOD, where as BlockOptimizationProblem
+  // creates a BlockSparseMatrix representation of the jacobian for use in the
+  // Schur complement based methods.
+  virtual SparseMatrix* CreateJacobian() const = 0;
+
+  // Evaluate the cost function for the given state. Returns the cost,
+  // residuals, and jacobian in the corresponding arguments. Both residuals and
+  // jacobian are optional; to avoid computing them, pass NULL.
+  //
+  // If non-NULL, the Jacobian must have a suitable sparsity pattern; only the
+  // values array of the jacobian is modified.
+  //
+  // state is an array of size NumParameters(), cost is a pointer to a single
+  // double, and residuals is an array of doubles of size NumResiduals().
+  virtual bool Evaluate(const double* state,
+                        double* cost,
+                        double* residuals,
+                        SparseMatrix* jacobian) = 0;
+
+  // Make a change delta (of size NumEffectiveParameters()) to state (of size
+  // NumParameters()) and store the result in state_plus_delta.
+  //
+  // In the case that there are no parameterizations used, this is equivalent to
+  //
+  //   state_plus_delta[i] = state[i] + delta[i] ;
+  //
+  // however, the mapping is more complicated in the case of parameterizations
+  // like quaternions. This is the same as the "Plus()" operation in
+  // local_parameterization.h, but operating over the entire state vector for a
+  // problem.
+  virtual bool Plus(const double* state,
+                    const double* delta,
+                    double* state_plus_delta) const = 0;
+
+  // The number of parameters in the optimization problem.
+  virtual int NumParameters() const = 0;
+
+  // This is the effective number of parameters that the optimizer may adjust.
+  // This applies when there are parameterizations on some of the parameters.
+  virtual int NumEffectiveParameters()  const = 0;
+
+  // The number of residuals in the optimization problem.
+  virtual int NumResiduals() const = 0;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_EVALUATOR_H_
diff --git a/internal/ceres/evaluator_test.cc b/internal/ceres/evaluator_test.cc
new file mode 100644
index 0000000..b7381a4
--- /dev/null
+++ b/internal/ceres/evaluator_test.cc
@@ -0,0 +1,803 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Tests shared across evaluators. The tests try all combinations of linear
+// solver and num_eliminate_blocks (for schur-based solvers).
+
+#include "ceres/evaluator.h"
+
+#include "gtest/gtest.h"
+#include "ceres/casts.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/types.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+// TODO(keir): Consider pushing this into a common test utils file.
+template<int kFactor, int kNumResiduals,
+         int N0 = 0, int N1 = 0, int N2 = 0, bool kSucceeds = true>
+class ParameterIgnoringCostFunction
+    : public SizedCostFunction<kNumResiduals, N0, N1, N2> {
+  typedef SizedCostFunction<kNumResiduals, N0, N1, N2> Base;
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < Base::num_residuals(); ++i) {
+      residuals[i] = i + 1;
+    }
+    if (jacobians) {
+      for (int k = 0; k < Base::parameter_block_sizes().size(); ++k) {
+        // The jacobians here are full sized, but they are transformed in the
+        // evaluator into the "local" jacobian. In the tests, the "subset
+        // constant" parameterization is used, which should pick out columns
+        // from these jacobians. Put values in the jacobian that make this
+        // obvious; in particular, make the jacobians like this:
+        //
+        //   1 2 3 4 ...
+        //   1 2 3 4 ...   .*  kFactor
+        //   1 2 3 4 ...
+        //
+        // where the multiplication by kFactor makes it easier to distinguish
+        // between Jacobians of different residuals for the same parameter.
+        if (jacobians[k] != NULL) {
+          MatrixRef jacobian(jacobians[k],
+                             Base::num_residuals(),
+                             Base::parameter_block_sizes()[k]);
+          for (int j = 0; j < Base::parameter_block_sizes()[k]; ++j) {
+            jacobian.col(j).setConstant(kFactor * (j + 1));
+          }
+        }
+      }
+    }
+    return kSucceeds;
+  }
+};
+
+struct EvaluatorTest
+    : public ::testing::TestWithParam<pair<LinearSolverType, int> > {
+  Evaluator* CreateEvaluator(Program* program) {
+    // This program is straight from the ProblemImpl, and so has no index/offset
+    // yet; compute it here as required by the evalutor implementations.
+    program->SetParameterOffsetsAndIndex();
+
+    VLOG(1) << "Creating evaluator with type: " << GetParam().first
+            << " and num_eliminate_blocks: " << GetParam().second;
+    Evaluator::Options options;
+    options.linear_solver_type = GetParam().first;
+    options.num_eliminate_blocks = GetParam().second;
+    string error;
+    return Evaluator::Create(options, program, &error);
+  }
+};
+
+void SetSparseMatrixConstant(SparseMatrix* sparse_matrix, double value) {
+  VectorRef(sparse_matrix->mutable_values(),
+            sparse_matrix->num_nonzeros()).setConstant(value);
+}
+
+TEST_P(EvaluatorTest, SingleResidualProblem) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 2, 3, 4>,
+                           NULL,
+                           x, y, z);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(3, jacobian->num_rows());
+  ASSERT_EQ(9, jacobian->num_cols());
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(7.0, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(3, 9);
+    expected_jacobian
+        // x       y          z
+        << 1, 2,   1, 2, 3,   1, 2, 3, 4,
+           1, 2,   1, 2, 3,   1, 2, 3, 4,
+           1, 2,   1, 2, 3,   1, 2, 3, 4;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+TEST_P(EvaluatorTest, SingleResidualProblemWithPermutedParameters) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // Add the parameters in explicit order to force the ordering in the program.
+  problem.AddParameterBlock(x,  2);
+  problem.AddParameterBlock(y,  3);
+  problem.AddParameterBlock(z,  4);
+
+  // Then use a cost function which is similar to the others, but swap around
+  // the ordering of the parameters to the cost function. This shouldn't affect
+  // the jacobian evaluation, but requires explicit handling in the evaluators.
+  // At one point the compressed row evaluator had a bug that went undetected
+  // for a long time, since by chance most users added parameters to the problem
+  // in the same order that they occured as parameters to a cost function.
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 4, 3, 2>,
+                           NULL,
+                           z, y, x);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(3, jacobian->num_rows());
+  ASSERT_EQ(9, jacobian->num_cols());
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(7.0, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(3, 9);
+    expected_jacobian
+        // x       y          z
+        << 1, 2,   1, 2, 3,   1, 2, 3, 4,
+           1, 2,   1, 2, 3,   1, 2, 3, 4,
+           1, 2,   1, 2, 3,   1, 2, 3, 4;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+TEST_P(EvaluatorTest, SingleResidualProblemWithNuisanceParameters) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // These parameters are not used.
+  double w1[2];
+  double w2[1];
+  double w3[1];
+  double w4[3];
+
+  // Add the parameters in a mixed order so the Jacobian is "checkered" with the
+  // values from the other parameters.
+  problem.AddParameterBlock(w1, 2);
+  problem.AddParameterBlock(x,  2);
+  problem.AddParameterBlock(w2, 1);
+  problem.AddParameterBlock(y,  3);
+  problem.AddParameterBlock(w3, 1);
+  problem.AddParameterBlock(z,  4);
+  problem.AddParameterBlock(w4, 3);
+
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 2, 3, 4>,
+                           NULL,
+                           x, y, z);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(3, jacobian->num_rows());
+  ASSERT_EQ(16, jacobian->num_cols());
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(7.0, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[3] = { -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(7.0, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(3.0, residuals[2]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(3, 16);
+    expected_jacobian
+        // w1       x        w2    y           w2    z              w3
+        << 0, 0,    1, 2,    0,    1, 2, 3,    0,    1, 2, 3, 4,    0, 0, 0,
+           0, 0,    1, 2,    0,    1, 2, 3,    0,    1, 2, 3, 4,    0, 0, 0,
+           0, 0,    1, 2,    0,    1, 2, 3,    0,    1, 2, 3, 4,    0, 0, 0;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+TEST_P(EvaluatorTest, MultipleResidualProblem) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // Add the parameters in explicit order to force the ordering in the program.
+  problem.AddParameterBlock(x,  2);
+  problem.AddParameterBlock(y,  3);
+  problem.AddParameterBlock(z,  4);
+
+  // f(x, y) in R^2
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 2, 2, 3>,
+                           NULL,
+                           x, y);
+
+  // g(x, z) in R^3
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<2, 3, 2, 4>,
+                           NULL,
+                           x, z);
+
+  // h(y, z) in R^4
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<3, 4, 3, 4>,
+                           NULL,
+                           y, z);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(9, jacobian->num_rows());
+  ASSERT_EQ(9, jacobian->num_cols());
+
+  //                      f       g           h
+  double expected_cost = (1 + 4 + 1 + 4 + 9 + 1 + 4 + 9 + 16) / 2.0;
+
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(expected_cost, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(9, 9);
+    expected_jacobian <<
+    //                x        y           z
+        /* f(x, y) */ 1, 2,    1, 2, 3,    0, 0, 0, 0,
+                      1, 2,    1, 2, 3,    0, 0, 0, 0,
+
+        /* g(x, z) */ 2, 4,    0, 0, 0,    2, 4, 6, 8,
+                      2, 4,    0, 0, 0,    2, 4, 6, 8,
+                      2, 4,    0, 0, 0,    2, 4, 6, 8,
+
+        /* h(y, z) */ 0, 0,    3, 6, 9,    3, 6, 9, 12,
+                      0, 0,    3, 6, 9,    3, 6, 9, 12,
+                      0, 0,    3, 6, 9,    3, 6, 9, 12,
+                      0, 0,    3, 6, 9,    3, 6, 9, 12;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+TEST_P(EvaluatorTest, MultipleResidualsWithLocalParameterizations) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // Add the parameters in explicit order to force the ordering in the program.
+  problem.AddParameterBlock(x,  2);
+
+  // Fix y's first dimension.
+  vector<int> y_fixed;
+  y_fixed.push_back(0);
+  problem.AddParameterBlock(y, 3, new SubsetParameterization(3, y_fixed));
+
+  // Fix z's second dimension.
+  vector<int> z_fixed;
+  z_fixed.push_back(1);
+  problem.AddParameterBlock(z, 4, new SubsetParameterization(4, z_fixed));
+
+  // f(x, y) in R^2
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 2, 2, 3>,
+                           NULL,
+                           x, y);
+
+  // g(x, z) in R^3
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<2, 3, 2, 4>,
+                           NULL,
+                           x, z);
+
+  // h(y, z) in R^4
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<3, 4, 3, 4>,
+                           NULL,
+                           y, z);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(9, jacobian->num_rows());
+  ASSERT_EQ(7, jacobian->num_cols());
+
+  //                      f       g           h
+  double expected_cost = (1 + 4 + 1 + 4 + 9 + 1 + 4 + 9 + 16) / 2.0;
+
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(expected_cost, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    // Note y and z are missing columns due to the subset parameterization.
+    Matrix expected_jacobian(9, 7);
+    expected_jacobian <<
+    //                x        y        z
+        /* f(x, y) */ 1, 2,    2, 3,    0, 0, 0,
+                      1, 2,    2, 3,    0, 0, 0,
+
+        /* g(x, z) */ 2, 4,    0, 0,    2, 6, 8,
+                      2, 4,    0, 0,    2, 6, 8,
+                      2, 4,    0, 0,    2, 6, 8,
+
+        /* h(y, z) */ 0, 0,    6, 9,    3, 9, 12,
+                      0, 0,    6, 9,    3, 9, 12,
+                      0, 0,    6, 9,    3, 9, 12,
+                      0, 0,    6, 9,    3, 9, 12;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+TEST_P(EvaluatorTest, MultipleResidualProblemWithSomeConstantParameters) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // Add the parameters in explicit order to force the ordering in the program.
+  problem.AddParameterBlock(x,  2);
+  problem.AddParameterBlock(y,  3);
+  problem.AddParameterBlock(z,  4);
+
+  // f(x, y) in R^2
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 2, 2, 3>,
+                           NULL,
+                           x, y);
+
+  // g(x, z) in R^3
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<2, 3, 2, 4>,
+                           NULL,
+                           x, z);
+
+  // h(y, z) in R^4
+  problem.AddResidualBlock(new ParameterIgnoringCostFunction<3, 4, 3, 4>,
+                           NULL,
+                           y, z);
+
+  // For this test, "z" is constant.
+  problem.SetParameterBlockConstant(z);
+
+  // Create the reduced program which is missing the fixed "z" variable.
+  // Normally, the preprocessing of the program that happens in solver_impl
+  // takes care of this, but we don't want to invoke the solver here.
+  Program reduced_program;
+  *reduced_program.mutable_residual_blocks() =
+      problem.program().residual_blocks();
+  *reduced_program.mutable_parameter_blocks() =
+      problem.program().parameter_blocks();
+
+  // "z" is the last parameter; pop it off.
+  reduced_program.mutable_parameter_blocks()->pop_back();
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(&reduced_program));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  ASSERT_EQ(9, jacobian->num_rows());
+  ASSERT_EQ(5, jacobian->num_cols());
+
+  //                      f       g           h
+  double expected_cost = (1 + 4 + 1 + 4 + 9 + 1 + 4 + 9 + 16) / 2.0;
+
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(expected_cost, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[9] = { -2, -2, -2, -2, -2, -2, -2, -2, -2 };
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(expected_cost, cost);
+    EXPECT_EQ(1.0, residuals[0]);
+    EXPECT_EQ(2.0, residuals[1]);
+    EXPECT_EQ(1.0, residuals[2]);
+    EXPECT_EQ(2.0, residuals[3]);
+    EXPECT_EQ(3.0, residuals[4]);
+    EXPECT_EQ(1.0, residuals[5]);
+    EXPECT_EQ(2.0, residuals[6]);
+    EXPECT_EQ(3.0, residuals[7]);
+    EXPECT_EQ(4.0, residuals[8]);
+
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(9, 5);
+    expected_jacobian <<
+    //                x        y
+        /* f(x, y) */ 1, 2,    1, 2, 3,
+                      1, 2,    1, 2, 3,
+
+        /* g(x, z) */ 2, 4,    0, 0, 0,
+                      2, 4,    0, 0, 0,
+                      2, 4,    0, 0, 0,
+
+        /* h(y, z) */ 0, 0,    3, 6, 9,
+                      0, 0,    3, 6, 9,
+                      0, 0,    3, 6, 9,
+                      0, 0,    3, 6, 9;
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+TEST_P(EvaluatorTest, EvaluatorAbortsForResidualsThatFailToEvaluate) {
+  ProblemImpl problem;
+
+  // The values are ignored completely by the cost function.
+  double x[2];
+  double y[3];
+  double z[4];
+  double state[9];
+
+  // Switch the return value to failure.
+  problem.AddResidualBlock(
+      new ParameterIgnoringCostFunction<20, 3, 2, 3, 4, false>, NULL, x, y, z);
+
+  scoped_ptr<Evaluator> evaluator(CreateEvaluator(problem.mutable_program()));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+  double cost;
+  EXPECT_FALSE(evaluator->Evaluate(state, &cost, NULL, NULL));
+}
+
+// In the pairs, the first argument is the linear solver type, and the second
+// argument is num_eliminate_blocks. Changing the num_eliminate_blocks only
+// makes sense for the schur-based solvers.
+//
+// Try all values of num_eliminate_blocks that make sense given that in the
+// tests a maximum of 4 parameter blocks are present.
+INSTANTIATE_TEST_CASE_P(
+    LinearSolvers,
+    EvaluatorTest,
+    ::testing::Values(make_pair(DENSE_QR, 0),
+                      make_pair(DENSE_SCHUR, 0),
+                      make_pair(DENSE_SCHUR, 1),
+                      make_pair(DENSE_SCHUR, 2),
+                      make_pair(DENSE_SCHUR, 3),
+                      make_pair(DENSE_SCHUR, 4),
+                      make_pair(SPARSE_SCHUR, 0),
+                      make_pair(SPARSE_SCHUR, 1),
+                      make_pair(SPARSE_SCHUR, 2),
+                      make_pair(SPARSE_SCHUR, 3),
+                      make_pair(SPARSE_SCHUR, 4),
+                      make_pair(ITERATIVE_SCHUR, 0),
+                      make_pair(ITERATIVE_SCHUR, 1),
+                      make_pair(ITERATIVE_SCHUR, 2),
+                      make_pair(ITERATIVE_SCHUR, 3),
+                      make_pair(ITERATIVE_SCHUR, 4),
+                      make_pair(SPARSE_NORMAL_CHOLESKY, 0)));
+
+// Simple cost function used to check if the evaluator is sensitive to
+// state changes.
+class ParameterSensitiveCostFunction : public SizedCostFunction<2, 2> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    double x1 = parameters[0][0];
+    double x2 = parameters[0][1];
+    residuals[0] = x1 * x1;
+    residuals[1] = x2 * x2;
+
+    if (jacobians != NULL) {
+      double* jacobian = jacobians[0];
+      if (jacobian != NULL) {
+        jacobian[0] = 2.0 * x1;
+        jacobian[1] = 0.0;
+        jacobian[2] = 0.0;
+        jacobian[3] = 2.0 * x2;
+      }
+    }
+    return true;
+  }
+};
+
+TEST(Evaluator, EvaluatorRespectsParameterChanges) {
+  ProblemImpl problem;
+
+  double x[2];
+  x[0] = 1.0;
+  x[1] = 1.0;
+
+  problem.AddResidualBlock(new ParameterSensitiveCostFunction(), NULL, x);
+  Program* program = problem.mutable_program();
+  program->SetParameterOffsetsAndIndex();
+
+  Evaluator::Options options;
+  options.linear_solver_type = DENSE_QR;
+  options.num_eliminate_blocks = 0;
+  string error;
+  scoped_ptr<Evaluator> evaluator(Evaluator::Create(options, program, &error));
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+
+  ASSERT_EQ(2, jacobian->num_rows());
+  ASSERT_EQ(2, jacobian->num_cols());
+
+  double state[2];
+  state[0] = 2.0;
+  state[1] = 3.0;
+
+  // The original state of a residual block comes from the user's
+  // state. So the original state is 1.0, 1.0, and the only way we get
+  // the 2.0, 3.0 results in the following tests is if it respects the
+  // values in the state vector.
+
+  // Cost only; no residuals and no jacobian.
+  {
+    double cost = -1;
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL));
+    EXPECT_EQ(48.5, cost);
+  }
+
+  // Cost and residuals, no jacobian.
+  {
+    double cost = -1;
+    double residuals[2] = { -2, -2 };
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL));
+    EXPECT_EQ(48.5, cost);
+    EXPECT_EQ(4, residuals[0]);
+    EXPECT_EQ(9, residuals[1]);
+  }
+
+  // Cost, residuals, and jacobian.
+  {
+    double cost = -1;
+    double residuals[2] = { -2, -2};
+    SetSparseMatrixConstant(jacobian.get(), -1);
+    ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, jacobian.get()));
+    EXPECT_EQ(48.5, cost);
+    EXPECT_EQ(4, residuals[0]);
+    EXPECT_EQ(9, residuals[1]);
+    Matrix actual_jacobian;
+    jacobian->ToDenseMatrix(&actual_jacobian);
+
+    Matrix expected_jacobian(2, 2);
+    expected_jacobian
+        << 2 * state[0], 0,
+           0, 2 * state[1];
+
+    EXPECT_TRUE((actual_jacobian.array() == expected_jacobian.array()).all())
+        << "Actual:\n" << actual_jacobian
+        << "\nExpected:\n" << expected_jacobian;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/file.cc b/internal/ceres/file.cc
new file mode 100644
index 0000000..5fc9d22
--- /dev/null
+++ b/internal/ceres/file.cc
@@ -0,0 +1,93 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Really simple file IO.
+
+#include <cstdio>
+#include <glog/logging.h>
+
+namespace ceres {
+namespace internal {
+
+using std::string;
+
+void WriteStringToFileOrDie(const string &data, const string &filename) {
+  FILE* file_descriptor = fopen(filename.c_str(), "wb");
+  if (!file_descriptor) {
+    LOG(FATAL) << "Couldn't write to file: " << filename;
+  }
+  fwrite(data.c_str(), 1, data.size(), file_descriptor);
+  fclose(file_descriptor);
+}
+
+void ReadFileToStringOrDie(const string &filename, string *data) {
+  FILE* file_descriptor = file_descriptor = fopen(filename.c_str(), "r");
+
+  if (!file_descriptor) {
+    LOG(FATAL) << "Couldn't read file: " << filename;
+  }
+
+  // Resize the input buffer appropriately.
+  fseek(file_descriptor, 0L, SEEK_END);
+  int num_bytes = ftell(file_descriptor);
+  data->resize(num_bytes);
+
+  // Read the data.
+  fseek(file_descriptor, 0L, SEEK_SET);
+  int num_read = fread(&((*data)[0]),
+                       sizeof((*data)[0]),
+                       num_bytes,
+                       file_descriptor);
+  if (num_read != num_bytes) {
+    LOG(FATAL) << "Couldn't read all of " << filename
+               << "expected bytes: " << num_bytes * sizeof((*data)[0])
+               << "actual bytes: " << num_read;
+  }
+  fclose(file_descriptor);
+}
+
+string JoinPath(const string& dirname, const string& basename) {
+#ifdef _WIN32
+    static const char separator = '\\';
+#else
+    static const char separator = '/';
+#endif  // _WIN32
+
+  if ((!basename.empty() && basename[0] == separator) || dirname.empty()) {
+    return basename;
+  } else if (dirname[dirname.size() - 1] == separator) {
+    return dirname + basename;
+  } else {
+    return dirname + string(&separator, 1) + basename;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/file.h b/internal/ceres/file.h
new file mode 100644
index 0000000..4741d65
--- /dev/null
+++ b/internal/ceres/file.h
@@ -0,0 +1,52 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Simple file IO support. This is a portability shim.
+
+#ifndef CERES_INTERNAL_FILE_H_
+#define CERES_INTERNAL_FILE_H_
+
+#include <string>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+void WriteStringToFileOrDie(const string &data, const string &filename);
+void ReadFileToStringOrDie(const string &filename, string *data);
+
+// Join two path components, adding a slash if necessary.  If basename is an
+// absolute path then JoinPath ignores dirname and simply returns basename.
+string JoinPath(const string& dirname, const string& basename);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_FILE_H_
diff --git a/internal/ceres/generate_eliminator_specialization.py b/internal/ceres/generate_eliminator_specialization.py
new file mode 100644
index 0000000..af9873f
--- /dev/null
+++ b/internal/ceres/generate_eliminator_specialization.py
@@ -0,0 +1,186 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+#
+# Copyright 2011 Google Inc. All Rights Reserved.
+# Author: sameeragarwal@google.com (Sameer Agarwal)
+#
+# Script for explicitly generating template specialization of the
+# SchurEliminator class. It is a rather large class
+# and the number of explicit instantiations is also large. Explicitly
+# generating these instantiations in separate .cc files breaks the
+# compilation into separate compilation unit rather than one large cc
+# file which takes 2+GB of RAM to compile.
+#
+# This script creates two sets of files.
+#
+# 1. schur_eliminator_x_x_x.cc
+# where, the x indicates the template parameters and
+#
+# 2. schur_eliminator.cc
+#
+# that contains a factory function for instantiating these classes
+# based on runtime parameters.
+#
+# The list of tuples, specializations indicates the set of
+# specializations that is generated.
+
+# Set of template specializations to generate
+SPECIALIZATIONS = [(2, 2, 2),
+                   (2, 2, 3),
+                   (2, 2, 4),
+                   (2, 2, "Dynamic"),
+                   (2, 3, 3),
+                   (2, 3, 4),
+                   (2, 3, 9),
+                   (2, 3, "Dynamic"),
+                   (2, 4, 3),
+                   (2, 4, 4),
+                   (2, 4, "Dynamic"),
+                   (4, 4, 2),
+                   (4, 4, 3),
+                   (4, 4, 4),
+                   (4, 4, "Dynamic"),
+                   ("Dynamic", "Dynamic", "Dynamic")]
+
+SPECIALIZATION_FILE = """// Copyright 2011 Google Inc. All Rights Reserved.
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<%s, %s, %s>;
+
+}  // namespace internal
+}  // namespace ceres
+
+"""
+
+FACTORY_FILE_HEADER = """// Copyright 2011 Google Inc. All Rights Reserved.
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_template_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+SchurEliminatorBase*
+SchurEliminatorBase::Create(const LinearSolver::Options& options) {
+#ifndef CERES_RESTRICT_SCHUR_SPECIALIZATION
+"""
+
+FACTORY_CONDITIONAL = """  if ((options.row_block_size == %s) &&
+      (options.e_block_size == %s) &&
+      (options.f_block_size == %s)) {
+    return new SchurEliminator<%s, %s, %s>(options);
+  }
+"""
+
+FACTORY_FOOTER = """
+#endif
+  VLOG(1) << "Template specializations not found for <"
+          << options.row_block_size << ","
+          << options.e_block_size << ","
+          << options.f_block_size << ">";
+  return new SchurEliminator<Dynamic, Dynamic, Dynamic>(options);
+}
+
+}  // namespace internal
+}  // namespace ceres
+"""
+
+
+def SuffixForSize(size):
+  if size == "Dynamic":
+    return "d"
+  return str(size)
+
+
+def SpecializationFilename(prefix, row_block_size, e_block_size, f_block_size):
+  return "_".join([prefix] + map(SuffixForSize, (row_block_size,
+                                                 e_block_size,
+                                                 f_block_size)))
+
+
+def Specialize():
+  """
+  Generate specialization code and the conditionals to instantiate it.
+  """
+  f = open("schur_eliminator.cc", "w")
+  f.write(FACTORY_FILE_HEADER)
+
+  for row_block_size, e_block_size, f_block_size in SPECIALIZATIONS:
+    output = SpecializationFilename("generated/schur_eliminator",
+                                    row_block_size,
+                                    e_block_size,
+                                    f_block_size) + ".cc"
+    fptr = open(output, "w")
+    fptr.write(SPECIALIZATION_FILE % (row_block_size,
+                                      e_block_size,
+                                      f_block_size))
+    fptr.close()
+
+    f.write(FACTORY_CONDITIONAL % (row_block_size,
+                                   e_block_size,
+                                   f_block_size,
+                                   row_block_size,
+                                   e_block_size,
+                                   f_block_size))
+  f.write(FACTORY_FOOTER)
+  f.close()
+
+
+if __name__ == "__main__":
+  Specialize()
diff --git a/internal/ceres/generated/schur_eliminator_2_2_2.cc b/internal/ceres/generated/schur_eliminator_2_2_2.cc
new file mode 100644
index 0000000..5529386
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_2_2.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 2, 2>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_2_3.cc b/internal/ceres/generated/schur_eliminator_2_2_3.cc
new file mode 100644
index 0000000..fd7af95
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_2_3.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 2, 3>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_2_4.cc b/internal/ceres/generated/schur_eliminator_2_2_4.cc
new file mode 100644
index 0000000..109483e
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_2_4.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 2, 4>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_2_d.cc b/internal/ceres/generated/schur_eliminator_2_2_d.cc
new file mode 100644
index 0000000..b93e82f
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_2_d.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 2, Dynamic>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_3_3.cc b/internal/ceres/generated/schur_eliminator_2_3_3.cc
new file mode 100644
index 0000000..86352c0
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_3_3.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 3, 3>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_3_4.cc b/internal/ceres/generated/schur_eliminator_2_3_4.cc
new file mode 100644
index 0000000..200df7f
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_3_4.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 3, 4>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_3_9.cc b/internal/ceres/generated/schur_eliminator_2_3_9.cc
new file mode 100644
index 0000000..1fda343
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_3_9.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 3, 9>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_3_d.cc b/internal/ceres/generated/schur_eliminator_2_3_d.cc
new file mode 100644
index 0000000..385cd2d
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_3_d.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 3, Dynamic>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_4_3.cc b/internal/ceres/generated/schur_eliminator_2_4_3.cc
new file mode 100644
index 0000000..7b15d63
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_4_3.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 4, 3>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_4_4.cc b/internal/ceres/generated/schur_eliminator_2_4_4.cc
new file mode 100644
index 0000000..29a610d
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_4_4.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 4, 4>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_2_4_d.cc b/internal/ceres/generated/schur_eliminator_2_4_d.cc
new file mode 100644
index 0000000..a3bc4dc
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_2_4_d.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<2, 4, Dynamic>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_4_4_2.cc b/internal/ceres/generated/schur_eliminator_4_4_2.cc
new file mode 100644
index 0000000..f71a4f6
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_4_4_2.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<4, 4, 2>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_4_4_3.cc b/internal/ceres/generated/schur_eliminator_4_4_3.cc
new file mode 100644
index 0000000..52259fb
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_4_4_3.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<4, 4, 3>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_4_4_4.cc b/internal/ceres/generated/schur_eliminator_4_4_4.cc
new file mode 100644
index 0000000..775424e
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_4_4_4.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<4, 4, 4>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_4_4_d.cc b/internal/ceres/generated/schur_eliminator_4_4_d.cc
new file mode 100644
index 0000000..97cde59
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_4_4_d.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<4, 4, Dynamic>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/generated/schur_eliminator_d_d_d.cc b/internal/ceres/generated/schur_eliminator_d_d_d.cc
new file mode 100644
index 0000000..4cba32e
--- /dev/null
+++ b/internal/ceres/generated/schur_eliminator_d_d_d.cc
@@ -0,0 +1,53 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Template specialization of SchurEliminator.
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_eliminator_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/schur_eliminator_impl.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+template class SchurEliminator<Dynamic, Dynamic, Dynamic>;
+
+}  // namespace internal
+}  // namespace ceres
+
diff --git a/internal/ceres/gmock/gmock.h b/internal/ceres/gmock/gmock.h
new file mode 100644
index 0000000..2ce6dc1
--- /dev/null
+++ b/internal/ceres/gmock/gmock.h
@@ -0,0 +1,12822 @@
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This is the main header file a user should include.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_H_
+
+// This file implements the following syntax:
+//
+//   ON_CALL(mock_object.Method(...))
+//     .With(...) ?
+//     .WillByDefault(...);
+//
+// where With() is optional and WillByDefault() must appear exactly
+// once.
+//
+//   EXPECT_CALL(mock_object.Method(...))
+//     .With(...) ?
+//     .Times(...) ?
+//     .InSequence(...) *
+//     .WillOnce(...) *
+//     .WillRepeatedly(...) ?
+//     .RetiresOnSaturation() ? ;
+//
+// where all clauses are optional and WillOnce() can be repeated.
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some commonly used actions.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_
+
+#include <algorithm>
+#include <string>
+
+#ifndef _WIN32_WCE
+# include <errno.h>
+#endif
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file defines some utilities useful for implementing Google
+// Mock.  They are subject to change without notice, so please DO NOT
+// USE THEM IN USER CODE.
+
+#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
+#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
+
+#include <stdio.h>
+#include <ostream>  // NOLINT
+#include <string>
+
+// This file was GENERATED by a script.  DO NOT EDIT BY HAND!!!
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file contains template meta-programming utility classes needed
+// for implementing Google Mock.
+
+#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_
+#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_
+
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: vadimb@google.com (Vadim Berman)
+//
+// Low-level types and utilities for porting Google Mock to various
+// platforms.  They are subject to change without notice.  DO NOT USE
+// THEM IN USER CODE.
+
+#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
+#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
+
+#include <assert.h>
+#include <stdlib.h>
+#include <iostream>
+
+// Most of the types needed for porting Google Mock are also required
+// for Google Test and are defined in gtest-port.h.
+#include "gtest/gtest.h"
+
+// To avoid conditional compilation everywhere, we make it
+// gmock-port.h's responsibility to #include the header implementing
+// tr1/tuple.  gmock-port.h does this via gtest-port.h, which is
+// guaranteed to pull in the tuple header.
+
+// For MS Visual C++, check the compiler version. At least VS 2003 is
+// required to compile Google Mock.
+#if defined(_MSC_VER) && _MSC_VER < 1310
+# error "At least Visual C++ 2003 (7.1) is required to compile Google Mock."
+#endif
+
+// Macro for referencing flags.  This is public as we want the user to
+// use this syntax to reference Google Mock flags.
+#define GMOCK_FLAG(name) FLAGS_gmock_##name
+
+// Macros for declaring flags.
+#define GMOCK_DECLARE_bool_(name) extern bool GMOCK_FLAG(name)
+#define GMOCK_DECLARE_int32_(name) \
+    extern ::testing::internal::Int32 GMOCK_FLAG(name)
+#define GMOCK_DECLARE_string_(name) \
+    extern ::testing::internal::String GMOCK_FLAG(name)
+
+// Macros for defining flags.
+#define GMOCK_DEFINE_bool_(name, default_val, doc) \
+    bool GMOCK_FLAG(name) = (default_val)
+#define GMOCK_DEFINE_int32_(name, default_val, doc) \
+    ::testing::internal::Int32 GMOCK_FLAG(name) = (default_val)
+#define GMOCK_DEFINE_string_(name, default_val, doc) \
+    ::testing::internal::String GMOCK_FLAG(name) = (default_val)
+
+#endif  // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
+
+namespace testing {
+
+template <typename T>
+class Matcher;
+
+namespace internal {
+
+// An IgnoredValue object can be implicitly constructed from ANY value.
+// This is used in implementing the IgnoreResult(a) action.
+class IgnoredValue {
+ public:
+  // This constructor template allows any value to be implicitly
+  // converted to IgnoredValue.  The object has no data member and
+  // doesn't try to remember anything about the argument.  We
+  // deliberately omit the 'explicit' keyword in order to allow the
+  // conversion to be implicit.
+  template <typename T>
+  IgnoredValue(const T&) {}
+};
+
+// MatcherTuple<T>::type is a tuple type where each field is a Matcher
+// for the corresponding field in tuple type T.
+template <typename Tuple>
+struct MatcherTuple;
+
+template <>
+struct MatcherTuple< ::std::tr1::tuple<> > {
+  typedef ::std::tr1::tuple< > type;
+};
+
+template <typename A1>
+struct MatcherTuple< ::std::tr1::tuple<A1> > {
+  typedef ::std::tr1::tuple<Matcher<A1> > type;
+};
+
+template <typename A1, typename A2>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
+};
+
+template <typename A1, typename A2, typename A3>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>,
+      Matcher<A4> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5,
+    typename A6>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5>, Matcher<A6> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5,
+    typename A6, typename A7>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5>, Matcher<A6>, Matcher<A7> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5,
+    typename A6, typename A7, typename A8>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5>, Matcher<A6>, Matcher<A7>, Matcher<A8> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5,
+    typename A6, typename A7, typename A8, typename A9>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5>, Matcher<A6>, Matcher<A7>, Matcher<A8>, Matcher<A9> > type;
+};
+
+template <typename A1, typename A2, typename A3, typename A4, typename A5,
+    typename A6, typename A7, typename A8, typename A9, typename A10>
+struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9,
+    A10> > {
+  typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
+      Matcher<A5>, Matcher<A6>, Matcher<A7>, Matcher<A8>, Matcher<A9>,
+      Matcher<A10> > type;
+};
+
+// Template struct Function<F>, where F must be a function type, contains
+// the following typedefs:
+//
+//   Result:               the function's return type.
+//   ArgumentN:            the type of the N-th argument, where N starts with 1.
+//   ArgumentTuple:        the tuple type consisting of all parameters of F.
+//   ArgumentMatcherTuple: the tuple type consisting of Matchers for all
+//                         parameters of F.
+//   MakeResultVoid:       the function type obtained by substituting void
+//                         for the return type of F.
+//   MakeResultIgnoredValue:
+//                         the function type obtained by substituting Something
+//                         for the return type of F.
+template <typename F>
+struct Function;
+
+template <typename R>
+struct Function<R()> {
+  typedef R Result;
+  typedef ::std::tr1::tuple<> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid();
+  typedef IgnoredValue MakeResultIgnoredValue();
+};
+
+template <typename R, typename A1>
+struct Function<R(A1)>
+    : Function<R()> {
+  typedef A1 Argument1;
+  typedef ::std::tr1::tuple<A1> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1);
+  typedef IgnoredValue MakeResultIgnoredValue(A1);
+};
+
+template <typename R, typename A1, typename A2>
+struct Function<R(A1, A2)>
+    : Function<R(A1)> {
+  typedef A2 Argument2;
+  typedef ::std::tr1::tuple<A1, A2> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2);
+};
+
+template <typename R, typename A1, typename A2, typename A3>
+struct Function<R(A1, A2, A3)>
+    : Function<R(A1, A2)> {
+  typedef A3 Argument3;
+  typedef ::std::tr1::tuple<A1, A2, A3> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4>
+struct Function<R(A1, A2, A3, A4)>
+    : Function<R(A1, A2, A3)> {
+  typedef A4 Argument4;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5>
+struct Function<R(A1, A2, A3, A4, A5)>
+    : Function<R(A1, A2, A3, A4)> {
+  typedef A5 Argument5;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6>
+struct Function<R(A1, A2, A3, A4, A5, A6)>
+    : Function<R(A1, A2, A3, A4, A5)> {
+  typedef A6 Argument6;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7>
+struct Function<R(A1, A2, A3, A4, A5, A6, A7)>
+    : Function<R(A1, A2, A3, A4, A5, A6)> {
+  typedef A7 Argument7;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8>
+struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8)>
+    : Function<R(A1, A2, A3, A4, A5, A6, A7)> {
+  typedef A8 Argument8;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9>
+struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)>
+    : Function<R(A1, A2, A3, A4, A5, A6, A7, A8)> {
+  typedef A9 Argument9;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8, A9);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8,
+      A9);
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9,
+    typename A10>
+struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)>
+    : Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> {
+  typedef A10 Argument10;
+  typedef ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9,
+      A10> ArgumentTuple;
+  typedef typename MatcherTuple<ArgumentTuple>::type ArgumentMatcherTuple;
+  typedef void MakeResultVoid(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10);
+  typedef IgnoredValue MakeResultIgnoredValue(A1, A2, A3, A4, A5, A6, A7, A8,
+      A9, A10);
+};
+
+}  // namespace internal
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_GENERATED_INTERNAL_UTILS_H_
+
+namespace testing {
+namespace internal {
+
+// Converts an identifier name to a space-separated list of lower-case
+// words.  Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
+// treated as one word.  For example, both "FooBar123" and
+// "foo_bar_123" are converted to "foo bar 123".
+string ConvertIdentifierNameToWords(const char* id_name);
+
+// PointeeOf<Pointer>::type is the type of a value pointed to by a
+// Pointer, which can be either a smart pointer or a raw pointer.  The
+// following default implementation is for the case where Pointer is a
+// smart pointer.
+template <typename Pointer>
+struct PointeeOf {
+  // Smart pointer classes define type element_type as the type of
+  // their pointees.
+  typedef typename Pointer::element_type type;
+};
+// This specialization is for the raw pointer case.
+template <typename T>
+struct PointeeOf<T*> { typedef T type; };  // NOLINT
+
+// GetRawPointer(p) returns the raw pointer underlying p when p is a
+// smart pointer, or returns p itself when p is already a raw pointer.
+// The following default implementation is for the smart pointer case.
+template <typename Pointer>
+inline typename Pointer::element_type* GetRawPointer(const Pointer& p) {
+  return p.get();
+}
+// This overloaded version is for the raw pointer case.
+template <typename Element>
+inline Element* GetRawPointer(Element* p) { return p; }
+
+// This comparator allows linked_ptr to be stored in sets.
+template <typename T>
+struct LinkedPtrLessThan {
+  bool operator()(const ::testing::internal::linked_ptr<T>& lhs,
+                  const ::testing::internal::linked_ptr<T>& rhs) const {
+    return lhs.get() < rhs.get();
+  }
+};
+
+// Symbian compilation can be done with wchar_t being either a native
+// type or a typedef.  Using Google Mock with OpenC without wchar_t
+// should require the definition of _STLP_NO_WCHAR_T.
+//
+// MSVC treats wchar_t as a native type usually, but treats it as the
+// same as unsigned short when the compiler option /Zc:wchar_t- is
+// specified.  It defines _NATIVE_WCHAR_T_DEFINED symbol when wchar_t
+// is a native type.
+#if (GTEST_OS_SYMBIAN && defined(_STLP_NO_WCHAR_T)) || \
+    (defined(_MSC_VER) && !defined(_NATIVE_WCHAR_T_DEFINED))
+// wchar_t is a typedef.
+#else
+# define GMOCK_WCHAR_T_IS_NATIVE_ 1
+#endif
+
+// signed wchar_t and unsigned wchar_t are NOT in the C++ standard.
+// Using them is a bad practice and not portable.  So DON'T use them.
+//
+// Still, Google Mock is designed to work even if the user uses signed
+// wchar_t or unsigned wchar_t (obviously, assuming the compiler
+// supports them).
+//
+// To gcc,
+//   wchar_t == signed wchar_t != unsigned wchar_t == unsigned int
+#ifdef __GNUC__
+// signed/unsigned wchar_t are valid types.
+# define GMOCK_HAS_SIGNED_WCHAR_T_ 1
+#endif
+
+// In what follows, we use the term "kind" to indicate whether a type
+// is bool, an integer type (excluding bool), a floating-point type,
+// or none of them.  This categorization is useful for determining
+// when a matcher argument type can be safely converted to another
+// type in the implementation of SafeMatcherCast.
+enum TypeKind {
+  kBool, kInteger, kFloatingPoint, kOther
+};
+
+// KindOf<T>::value is the kind of type T.
+template <typename T> struct KindOf {
+  enum { value = kOther };  // The default kind.
+};
+
+// This macro declares that the kind of 'type' is 'kind'.
+#define GMOCK_DECLARE_KIND_(type, kind) \
+  template <> struct KindOf<type> { enum { value = kind }; }
+
+GMOCK_DECLARE_KIND_(bool, kBool);
+
+// All standard integer types.
+GMOCK_DECLARE_KIND_(char, kInteger);
+GMOCK_DECLARE_KIND_(signed char, kInteger);
+GMOCK_DECLARE_KIND_(unsigned char, kInteger);
+GMOCK_DECLARE_KIND_(short, kInteger);  // NOLINT
+GMOCK_DECLARE_KIND_(unsigned short, kInteger);  // NOLINT
+GMOCK_DECLARE_KIND_(int, kInteger);
+GMOCK_DECLARE_KIND_(unsigned int, kInteger);
+GMOCK_DECLARE_KIND_(long, kInteger);  // NOLINT
+GMOCK_DECLARE_KIND_(unsigned long, kInteger);  // NOLINT
+
+#if GMOCK_WCHAR_T_IS_NATIVE_
+GMOCK_DECLARE_KIND_(wchar_t, kInteger);
+#endif
+
+// Non-standard integer types.
+GMOCK_DECLARE_KIND_(Int64, kInteger);
+GMOCK_DECLARE_KIND_(UInt64, kInteger);
+
+// All standard floating-point types.
+GMOCK_DECLARE_KIND_(float, kFloatingPoint);
+GMOCK_DECLARE_KIND_(double, kFloatingPoint);
+GMOCK_DECLARE_KIND_(long double, kFloatingPoint);
+
+#undef GMOCK_DECLARE_KIND_
+
+// Evaluates to the kind of 'type'.
+#define GMOCK_KIND_OF_(type) \
+  static_cast< ::testing::internal::TypeKind>( \
+      ::testing::internal::KindOf<type>::value)
+
+// Evaluates to true iff integer type T is signed.
+#define GMOCK_IS_SIGNED_(T) (static_cast<T>(-1) < 0)
+
+// LosslessArithmeticConvertibleImpl<kFromKind, From, kToKind, To>::value
+// is true iff arithmetic type From can be losslessly converted to
+// arithmetic type To.
+//
+// It's the user's responsibility to ensure that both From and To are
+// raw (i.e. has no CV modifier, is not a pointer, and is not a
+// reference) built-in arithmetic types, kFromKind is the kind of
+// From, and kToKind is the kind of To; the value is
+// implementation-defined when the above pre-condition is violated.
+template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
+struct LosslessArithmeticConvertibleImpl : public false_type {};
+
+// Converting bool to bool is lossless.
+template <>
+struct LosslessArithmeticConvertibleImpl<kBool, bool, kBool, bool>
+    : public true_type {};  // NOLINT
+
+// Converting bool to any integer type is lossless.
+template <typename To>
+struct LosslessArithmeticConvertibleImpl<kBool, bool, kInteger, To>
+    : public true_type {};  // NOLINT
+
+// Converting bool to any floating-point type is lossless.
+template <typename To>
+struct LosslessArithmeticConvertibleImpl<kBool, bool, kFloatingPoint, To>
+    : public true_type {};  // NOLINT
+
+// Converting an integer to bool is lossy.
+template <typename From>
+struct LosslessArithmeticConvertibleImpl<kInteger, From, kBool, bool>
+    : public false_type {};  // NOLINT
+
+// Converting an integer to another non-bool integer is lossless iff
+// the target type's range encloses the source type's range.
+template <typename From, typename To>
+struct LosslessArithmeticConvertibleImpl<kInteger, From, kInteger, To>
+    : public bool_constant<
+      // When converting from a smaller size to a larger size, we are
+      // fine as long as we are not converting from signed to unsigned.
+      ((sizeof(From) < sizeof(To)) &&
+       (!GMOCK_IS_SIGNED_(From) || GMOCK_IS_SIGNED_(To))) ||
+      // When converting between the same size, the signedness must match.
+      ((sizeof(From) == sizeof(To)) &&
+       (GMOCK_IS_SIGNED_(From) == GMOCK_IS_SIGNED_(To)))> {};  // NOLINT
+
+#undef GMOCK_IS_SIGNED_
+
+// Converting an integer to a floating-point type may be lossy, since
+// the format of a floating-point number is implementation-defined.
+template <typename From, typename To>
+struct LosslessArithmeticConvertibleImpl<kInteger, From, kFloatingPoint, To>
+    : public false_type {};  // NOLINT
+
+// Converting a floating-point to bool is lossy.
+template <typename From>
+struct LosslessArithmeticConvertibleImpl<kFloatingPoint, From, kBool, bool>
+    : public false_type {};  // NOLINT
+
+// Converting a floating-point to an integer is lossy.
+template <typename From, typename To>
+struct LosslessArithmeticConvertibleImpl<kFloatingPoint, From, kInteger, To>
+    : public false_type {};  // NOLINT
+
+// Converting a floating-point to another floating-point is lossless
+// iff the target type is at least as big as the source type.
+template <typename From, typename To>
+struct LosslessArithmeticConvertibleImpl<
+  kFloatingPoint, From, kFloatingPoint, To>
+    : public bool_constant<sizeof(From) <= sizeof(To)> {};  // NOLINT
+
+// LosslessArithmeticConvertible<From, To>::value is true iff arithmetic
+// type From can be losslessly converted to arithmetic type To.
+//
+// It's the user's responsibility to ensure that both From and To are
+// raw (i.e. has no CV modifier, is not a pointer, and is not a
+// reference) built-in arithmetic types; the value is
+// implementation-defined when the above pre-condition is violated.
+template <typename From, typename To>
+struct LosslessArithmeticConvertible
+    : public LosslessArithmeticConvertibleImpl<
+  GMOCK_KIND_OF_(From), From, GMOCK_KIND_OF_(To), To> {};  // NOLINT
+
+// This interface knows how to report a Google Mock failure (either
+// non-fatal or fatal).
+class FailureReporterInterface {
+ public:
+  // The type of a failure (either non-fatal or fatal).
+  enum FailureType {
+    NONFATAL, FATAL
+  };
+
+  virtual ~FailureReporterInterface() {}
+
+  // Reports a failure that occurred at the given source file location.
+  virtual void ReportFailure(FailureType type, const char* file, int line,
+                             const string& message) = 0;
+};
+
+// Returns the failure reporter used by Google Mock.
+FailureReporterInterface* GetFailureReporter();
+
+// Asserts that condition is true; aborts the process with the given
+// message if condition is false.  We cannot use LOG(FATAL) or CHECK()
+// as Google Mock might be used to mock the log sink itself.  We
+// inline this function to prevent it from showing up in the stack
+// trace.
+inline void Assert(bool condition, const char* file, int line,
+                   const string& msg) {
+  if (!condition) {
+    GetFailureReporter()->ReportFailure(FailureReporterInterface::FATAL,
+                                        file, line, msg);
+  }
+}
+inline void Assert(bool condition, const char* file, int line) {
+  Assert(condition, file, line, "Assertion failed.");
+}
+
+// Verifies that condition is true; generates a non-fatal failure if
+// condition is false.
+inline void Expect(bool condition, const char* file, int line,
+                   const string& msg) {
+  if (!condition) {
+    GetFailureReporter()->ReportFailure(FailureReporterInterface::NONFATAL,
+                                        file, line, msg);
+  }
+}
+inline void Expect(bool condition, const char* file, int line) {
+  Expect(condition, file, line, "Expectation failed.");
+}
+
+// Severity level of a log.
+enum LogSeverity {
+  INFO = 0,
+  WARNING = 1
+};
+
+// Valid values for the --gmock_verbose flag.
+
+// All logs (informational and warnings) are printed.
+const char kInfoVerbosity[] = "info";
+// Only warnings are printed.
+const char kWarningVerbosity[] = "warning";
+// No logs are printed.
+const char kErrorVerbosity[] = "error";
+
+// Returns true iff a log with the given severity is visible according
+// to the --gmock_verbose flag.
+bool LogIsVisible(LogSeverity severity);
+
+// Prints the given message to stdout iff 'severity' >= the level
+// specified by the --gmock_verbose flag.  If stack_frames_to_skip >=
+// 0, also prints the stack trace excluding the top
+// stack_frames_to_skip frames.  In opt mode, any positive
+// stack_frames_to_skip is treated as 0, since we don't know which
+// function calls will be inlined by the compiler and need to be
+// conservative.
+void Log(LogSeverity severity, const string& message, int stack_frames_to_skip);
+
+// TODO(wan@google.com): group all type utilities together.
+
+// Type traits.
+
+// is_reference<T>::value is non-zero iff T is a reference type.
+template <typename T> struct is_reference : public false_type {};
+template <typename T> struct is_reference<T&> : public true_type {};
+
+// type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
+template <typename T1, typename T2> struct type_equals : public false_type {};
+template <typename T> struct type_equals<T, T> : public true_type {};
+
+// remove_reference<T>::type removes the reference from type T, if any.
+template <typename T> struct remove_reference { typedef T type; };  // NOLINT
+template <typename T> struct remove_reference<T&> { typedef T type; }; // NOLINT
+
+// Invalid<T>() returns an invalid value of type T.  This is useful
+// when a value of type T is needed for compilation, but the statement
+// will not really be executed (or we don't care if the statement
+// crashes).
+template <typename T>
+inline T Invalid() {
+  return *static_cast<typename remove_reference<T>::type*>(NULL);
+}
+template <>
+inline void Invalid<void>() {}
+
+// Given a raw type (i.e. having no top-level reference or const
+// modifier) RawContainer that's either an STL-style container or a
+// native array, class StlContainerView<RawContainer> has the
+// following members:
+//
+//   - type is a type that provides an STL-style container view to
+//     (i.e. implements the STL container concept for) RawContainer;
+//   - const_reference is a type that provides a reference to a const
+//     RawContainer;
+//   - ConstReference(raw_container) returns a const reference to an STL-style
+//     container view to raw_container, which is a RawContainer.
+//   - Copy(raw_container) returns an STL-style container view of a
+//     copy of raw_container, which is a RawContainer.
+//
+// This generic version is used when RawContainer itself is already an
+// STL-style container.
+template <class RawContainer>
+class StlContainerView {
+ public:
+  typedef RawContainer type;
+  typedef const type& const_reference;
+
+  static const_reference ConstReference(const RawContainer& container) {
+    // Ensures that RawContainer is not a const type.
+    testing::StaticAssertTypeEq<RawContainer,
+        GTEST_REMOVE_CONST_(RawContainer)>();
+    return container;
+  }
+  static type Copy(const RawContainer& container) { return container; }
+};
+
+// This specialization is used when RawContainer is a native array type.
+template <typename Element, size_t N>
+class StlContainerView<Element[N]> {
+ public:
+  typedef GTEST_REMOVE_CONST_(Element) RawElement;
+  typedef internal::NativeArray<RawElement> type;
+  // NativeArray<T> can represent a native array either by value or by
+  // reference (selected by a constructor argument), so 'const type'
+  // can be used to reference a const native array.  We cannot
+  // 'typedef const type& const_reference' here, as that would mean
+  // ConstReference() has to return a reference to a local variable.
+  typedef const type const_reference;
+
+  static const_reference ConstReference(const Element (&array)[N]) {
+    // Ensures that Element is not a const type.
+    testing::StaticAssertTypeEq<Element, RawElement>();
+#if GTEST_OS_SYMBIAN
+    // The Nokia Symbian compiler confuses itself in template instantiation
+    // for this call without the cast to Element*:
+    // function call '[testing::internal::NativeArray<char *>].NativeArray(
+    //     {lval} const char *[4], long, testing::internal::RelationToSource)'
+    //     does not match
+    // 'testing::internal::NativeArray<char *>::NativeArray(
+    //     char *const *, unsigned int, testing::internal::RelationToSource)'
+    // (instantiating: 'testing::internal::ContainsMatcherImpl
+    //     <const char * (&)[4]>::Matches(const char * (&)[4]) const')
+    // (instantiating: 'testing::internal::StlContainerView<char *[4]>::
+    //     ConstReference(const char * (&)[4])')
+    // (and though the N parameter type is mismatched in the above explicit
+    // conversion of it doesn't help - only the conversion of the array).
+    return type(const_cast<Element*>(&array[0]), N, kReference);
+#else
+    return type(array, N, kReference);
+#endif  // GTEST_OS_SYMBIAN
+  }
+  static type Copy(const Element (&array)[N]) {
+#if GTEST_OS_SYMBIAN
+    return type(const_cast<Element*>(&array[0]), N, kCopy);
+#else
+    return type(array, N, kCopy);
+#endif  // GTEST_OS_SYMBIAN
+  }
+};
+
+// This specialization is used when RawContainer is a native array
+// represented as a (pointer, size) tuple.
+template <typename ElementPointer, typename Size>
+class StlContainerView< ::std::tr1::tuple<ElementPointer, Size> > {
+ public:
+  typedef GTEST_REMOVE_CONST_(
+      typename internal::PointeeOf<ElementPointer>::type) RawElement;
+  typedef internal::NativeArray<RawElement> type;
+  typedef const type const_reference;
+
+  static const_reference ConstReference(
+      const ::std::tr1::tuple<ElementPointer, Size>& array) {
+    using ::std::tr1::get;
+    return type(get<0>(array), get<1>(array), kReference);
+  }
+  static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
+    using ::std::tr1::get;
+    return type(get<0>(array), get<1>(array), kCopy);
+  }
+};
+
+// The following specialization prevents the user from instantiating
+// StlContainer with a reference type.
+template <typename T> class StlContainerView<T&>;
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
+
+namespace testing {
+
+// To implement an action Foo, define:
+//   1. a class FooAction that implements the ActionInterface interface, and
+//   2. a factory function that creates an Action object from a
+//      const FooAction*.
+//
+// The two-level delegation design follows that of Matcher, providing
+// consistency for extension developers.  It also eases ownership
+// management as Action objects can now be copied like plain values.
+
+namespace internal {
+
+template <typename F1, typename F2>
+class ActionAdaptor;
+
+// BuiltInDefaultValue<T>::Get() returns the "built-in" default
+// value for type T, which is NULL when T is a pointer type, 0 when T
+// is a numeric type, false when T is bool, or "" when T is string or
+// std::string.  For any other type T, this value is undefined and the
+// function will abort the process.
+template <typename T>
+class BuiltInDefaultValue {
+ public:
+  // This function returns true iff type T has a built-in default value.
+  static bool Exists() { return false; }
+  static T Get() {
+    Assert(false, __FILE__, __LINE__,
+           "Default action undefined for the function return type.");
+    return internal::Invalid<T>();
+    // The above statement will never be reached, but is required in
+    // order for this function to compile.
+  }
+};
+
+// This partial specialization says that we use the same built-in
+// default value for T and const T.
+template <typename T>
+class BuiltInDefaultValue<const T> {
+ public:
+  static bool Exists() { return BuiltInDefaultValue<T>::Exists(); }
+  static T Get() { return BuiltInDefaultValue<T>::Get(); }
+};
+
+// This partial specialization defines the default values for pointer
+// types.
+template <typename T>
+class BuiltInDefaultValue<T*> {
+ public:
+  static bool Exists() { return true; }
+  static T* Get() { return NULL; }
+};
+
+// The following specializations define the default values for
+// specific types we care about.
+#define GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(type, value) \
+  template <> \
+  class BuiltInDefaultValue<type> { \
+   public: \
+    static bool Exists() { return true; } \
+    static type Get() { return value; } \
+  }
+
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(void, );  // NOLINT
+#if GTEST_HAS_GLOBAL_STRING
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(::string, "");
+#endif  // GTEST_HAS_GLOBAL_STRING
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(::std::string, "");
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(bool, false);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned char, '\0');
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed char, '\0');
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(char, '\0');
+
+// There's no need for a default action for signed wchar_t, as that
+// type is the same as wchar_t for gcc, and invalid for MSVC.
+//
+// There's also no need for a default action for unsigned wchar_t, as
+// that type is the same as unsigned int for gcc, and invalid for
+// MSVC.
+#if GMOCK_WCHAR_T_IS_NATIVE_
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(wchar_t, 0U);  // NOLINT
+#endif
+
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned short, 0U);  // NOLINT
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed short, 0);     // NOLINT
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned int, 0U);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed int, 0);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(unsigned long, 0UL);  // NOLINT
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(signed long, 0L);     // NOLINT
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(UInt64, 0);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(Int64, 0);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(float, 0);
+GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_(double, 0);
+
+#undef GMOCK_DEFINE_DEFAULT_ACTION_FOR_RETURN_TYPE_
+
+}  // namespace internal
+
+// When an unexpected function call is encountered, Google Mock will
+// let it return a default value if the user has specified one for its
+// return type, or if the return type has a built-in default value;
+// otherwise Google Mock won't know what value to return and will have
+// to abort the process.
+//
+// The DefaultValue<T> class allows a user to specify the
+// default value for a type T that is both copyable and publicly
+// destructible (i.e. anything that can be used as a function return
+// type).  The usage is:
+//
+//   // Sets the default value for type T to be foo.
+//   DefaultValue<T>::Set(foo);
+template <typename T>
+class DefaultValue {
+ public:
+  // Sets the default value for type T; requires T to be
+  // copy-constructable and have a public destructor.
+  static void Set(T x) {
+    delete value_;
+    value_ = new T(x);
+  }
+
+  // Unsets the default value for type T.
+  static void Clear() {
+    delete value_;
+    value_ = NULL;
+  }
+
+  // Returns true iff the user has set the default value for type T.
+  static bool IsSet() { return value_ != NULL; }
+
+  // Returns true if T has a default return value set by the user or there
+  // exists a built-in default value.
+  static bool Exists() {
+    return IsSet() || internal::BuiltInDefaultValue<T>::Exists();
+  }
+
+  // Returns the default value for type T if the user has set one;
+  // otherwise returns the built-in default value if there is one;
+  // otherwise aborts the process.
+  static T Get() {
+    return value_ == NULL ?
+        internal::BuiltInDefaultValue<T>::Get() : *value_;
+  }
+ private:
+  static const T* value_;
+};
+
+// This partial specialization allows a user to set default values for
+// reference types.
+template <typename T>
+class DefaultValue<T&> {
+ public:
+  // Sets the default value for type T&.
+  static void Set(T& x) {  // NOLINT
+    address_ = &x;
+  }
+
+  // Unsets the default value for type T&.
+  static void Clear() {
+    address_ = NULL;
+  }
+
+  // Returns true iff the user has set the default value for type T&.
+  static bool IsSet() { return address_ != NULL; }
+
+  // Returns true if T has a default return value set by the user or there
+  // exists a built-in default value.
+  static bool Exists() {
+    return IsSet() || internal::BuiltInDefaultValue<T&>::Exists();
+  }
+
+  // Returns the default value for type T& if the user has set one;
+  // otherwise returns the built-in default value if there is one;
+  // otherwise aborts the process.
+  static T& Get() {
+    return address_ == NULL ?
+        internal::BuiltInDefaultValue<T&>::Get() : *address_;
+  }
+ private:
+  static T* address_;
+};
+
+// This specialization allows DefaultValue<void>::Get() to
+// compile.
+template <>
+class DefaultValue<void> {
+ public:
+  static bool Exists() { return true; }
+  static void Get() {}
+};
+
+// Points to the user-set default value for type T.
+template <typename T>
+const T* DefaultValue<T>::value_ = NULL;
+
+// Points to the user-set default value for type T&.
+template <typename T>
+T* DefaultValue<T&>::address_ = NULL;
+
+// Implement this interface to define an action for function type F.
+template <typename F>
+class ActionInterface {
+ public:
+  typedef typename internal::Function<F>::Result Result;
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  ActionInterface() {}
+  virtual ~ActionInterface() {}
+
+  // Performs the action.  This method is not const, as in general an
+  // action can have side effects and be stateful.  For example, a
+  // get-the-next-element-from-the-collection action will need to
+  // remember the current element.
+  virtual Result Perform(const ArgumentTuple& args) = 0;
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ActionInterface);
+};
+
+// An Action<F> is a copyable and IMMUTABLE (except by assignment)
+// object that represents an action to be taken when a mock function
+// of type F is called.  The implementation of Action<T> is just a
+// linked_ptr to const ActionInterface<T>, so copying is fairly cheap.
+// Don't inherit from Action!
+//
+// You can view an object implementing ActionInterface<F> as a
+// concrete action (including its current state), and an Action<F>
+// object as a handle to it.
+template <typename F>
+class Action {
+ public:
+  typedef typename internal::Function<F>::Result Result;
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  // Constructs a null Action.  Needed for storing Action objects in
+  // STL containers.
+  Action() : impl_(NULL) {}
+
+  // Constructs an Action from its implementation.  A NULL impl is
+  // used to represent the "do-default" action.
+  explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
+
+  // Copy constructor.
+  Action(const Action& action) : impl_(action.impl_) {}
+
+  // This constructor allows us to turn an Action<Func> object into an
+  // Action<F>, as long as F's arguments can be implicitly converted
+  // to Func's and Func's return type can be implicitly converted to
+  // F's.
+  template <typename Func>
+  explicit Action(const Action<Func>& action);
+
+  // Returns true iff this is the DoDefault() action.
+  bool IsDoDefault() const { return impl_.get() == NULL; }
+
+  // Performs the action.  Note that this method is const even though
+  // the corresponding method in ActionInterface is not.  The reason
+  // is that a const Action<F> means that it cannot be re-bound to
+  // another concrete action, not that the concrete action it binds to
+  // cannot change state.  (Think of the difference between a const
+  // pointer and a pointer to const.)
+  Result Perform(const ArgumentTuple& args) const {
+    internal::Assert(
+        !IsDoDefault(), __FILE__, __LINE__,
+        "You are using DoDefault() inside a composite action like "
+        "DoAll() or WithArgs().  This is not supported for technical "
+        "reasons.  Please instead spell out the default action, or "
+        "assign the default action to an Action variable and use "
+        "the variable in various places.");
+    return impl_->Perform(args);
+  }
+
+ private:
+  template <typename F1, typename F2>
+  friend class internal::ActionAdaptor;
+
+  internal::linked_ptr<ActionInterface<F> > impl_;
+};
+
+// The PolymorphicAction class template makes it easy to implement a
+// polymorphic action (i.e. an action that can be used in mock
+// functions of than one type, e.g. Return()).
+//
+// To define a polymorphic action, a user first provides a COPYABLE
+// implementation class that has a Perform() method template:
+//
+//   class FooAction {
+//    public:
+//     template <typename Result, typename ArgumentTuple>
+//     Result Perform(const ArgumentTuple& args) const {
+//       // Processes the arguments and returns a result, using
+//       // tr1::get<N>(args) to get the N-th (0-based) argument in the tuple.
+//     }
+//     ...
+//   };
+//
+// Then the user creates the polymorphic action using
+// MakePolymorphicAction(object) where object has type FooAction.  See
+// the definition of Return(void) and SetArgumentPointee<N>(value) for
+// complete examples.
+template <typename Impl>
+class PolymorphicAction {
+ public:
+  explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
+
+  template <typename F>
+  operator Action<F>() const {
+    return Action<F>(new MonomorphicImpl<F>(impl_));
+  }
+
+ private:
+  template <typename F>
+  class MonomorphicImpl : public ActionInterface<F> {
+   public:
+    typedef typename internal::Function<F>::Result Result;
+    typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+    explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
+
+    virtual Result Perform(const ArgumentTuple& args) {
+      return impl_.template Perform<Result>(args);
+    }
+
+   private:
+    Impl impl_;
+
+    GTEST_DISALLOW_ASSIGN_(MonomorphicImpl);
+  };
+
+  Impl impl_;
+
+  GTEST_DISALLOW_ASSIGN_(PolymorphicAction);
+};
+
+// Creates an Action from its implementation and returns it.  The
+// created Action object owns the implementation.
+template <typename F>
+Action<F> MakeAction(ActionInterface<F>* impl) {
+  return Action<F>(impl);
+}
+
+// Creates a polymorphic action from its implementation.  This is
+// easier to use than the PolymorphicAction<Impl> constructor as it
+// doesn't require you to explicitly write the template argument, e.g.
+//
+//   MakePolymorphicAction(foo);
+// vs
+//   PolymorphicAction<TypeOfFoo>(foo);
+template <typename Impl>
+inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
+  return PolymorphicAction<Impl>(impl);
+}
+
+namespace internal {
+
+// Allows an Action<F2> object to pose as an Action<F1>, as long as F2
+// and F1 are compatible.
+template <typename F1, typename F2>
+class ActionAdaptor : public ActionInterface<F1> {
+ public:
+  typedef typename internal::Function<F1>::Result Result;
+  typedef typename internal::Function<F1>::ArgumentTuple ArgumentTuple;
+
+  explicit ActionAdaptor(const Action<F2>& from) : impl_(from.impl_) {}
+
+  virtual Result Perform(const ArgumentTuple& args) {
+    return impl_->Perform(args);
+  }
+
+ private:
+  const internal::linked_ptr<ActionInterface<F2> > impl_;
+
+  GTEST_DISALLOW_ASSIGN_(ActionAdaptor);
+};
+
+// Implements the polymorphic Return(x) action, which can be used in
+// any function that returns the type of x, regardless of the argument
+// types.
+//
+// Note: The value passed into Return must be converted into
+// Function<F>::Result when this action is cast to Action<F> rather than
+// when that action is performed. This is important in scenarios like
+//
+// MOCK_METHOD1(Method, T(U));
+// ...
+// {
+//   Foo foo;
+//   X x(&foo);
+//   EXPECT_CALL(mock, Method(_)).WillOnce(Return(x));
+// }
+//
+// In the example above the variable x holds reference to foo which leaves
+// scope and gets destroyed.  If copying X just copies a reference to foo,
+// that copy will be left with a hanging reference.  If conversion to T
+// makes a copy of foo, the above code is safe. To support that scenario, we
+// need to make sure that the type conversion happens inside the EXPECT_CALL
+// statement, and conversion of the result of Return to Action<T(U)> is a
+// good place for that.
+//
+template <typename R>
+class ReturnAction {
+ public:
+  // Constructs a ReturnAction object from the value to be returned.
+  // 'value' is passed by value instead of by const reference in order
+  // to allow Return("string literal") to compile.
+  explicit ReturnAction(R value) : value_(value) {}
+
+  // This template type conversion operator allows Return(x) to be
+  // used in ANY function that returns x's type.
+  template <typename F>
+  operator Action<F>() const {
+    // Assert statement belongs here because this is the best place to verify
+    // conditions on F. It produces the clearest error messages
+    // in most compilers.
+    // Impl really belongs in this scope as a local class but can't
+    // because MSVC produces duplicate symbols in different translation units
+    // in this case. Until MS fixes that bug we put Impl into the class scope
+    // and put the typedef both here (for use in assert statement) and
+    // in the Impl class. But both definitions must be the same.
+    typedef typename Function<F>::Result Result;
+    GTEST_COMPILE_ASSERT_(
+        !internal::is_reference<Result>::value,
+        use_ReturnRef_instead_of_Return_to_return_a_reference);
+    return Action<F>(new Impl<F>(value_));
+  }
+
+ private:
+  // Implements the Return(x) action for a particular function type F.
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename Function<F>::Result Result;
+    typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+
+    // The implicit cast is necessary when Result has more than one
+    // single-argument constructor (e.g. Result is std::vector<int>) and R
+    // has a type conversion operator template.  In that case, value_(value)
+    // won't compile as the compiler doesn't known which constructor of
+    // Result to call.  ImplicitCast_ forces the compiler to convert R to
+    // Result without considering explicit constructors, thus resolving the
+    // ambiguity. value_ is then initialized using its copy constructor.
+    explicit Impl(R value)
+        : value_(::testing::internal::ImplicitCast_<Result>(value)) {}
+
+    virtual Result Perform(const ArgumentTuple&) { return value_; }
+
+   private:
+    GTEST_COMPILE_ASSERT_(!internal::is_reference<Result>::value,
+                          Result_cannot_be_a_reference_type);
+    Result value_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  R value_;
+
+  GTEST_DISALLOW_ASSIGN_(ReturnAction);
+};
+
+// Implements the ReturnNull() action.
+class ReturnNullAction {
+ public:
+  // Allows ReturnNull() to be used in any pointer-returning function.
+  template <typename Result, typename ArgumentTuple>
+  static Result Perform(const ArgumentTuple&) {
+    GTEST_COMPILE_ASSERT_(internal::is_pointer<Result>::value,
+                          ReturnNull_can_be_used_to_return_a_pointer_only);
+    return NULL;
+  }
+};
+
+// Implements the Return() action.
+class ReturnVoidAction {
+ public:
+  // Allows Return() to be used in any void-returning function.
+  template <typename Result, typename ArgumentTuple>
+  static void Perform(const ArgumentTuple&) {
+    CompileAssertTypesEqual<void, Result>();
+  }
+};
+
+// Implements the polymorphic ReturnRef(x) action, which can be used
+// in any function that returns a reference to the type of x,
+// regardless of the argument types.
+template <typename T>
+class ReturnRefAction {
+ public:
+  // Constructs a ReturnRefAction object from the reference to be returned.
+  explicit ReturnRefAction(T& ref) : ref_(ref) {}  // NOLINT
+
+  // This template type conversion operator allows ReturnRef(x) to be
+  // used in ANY function that returns a reference to x's type.
+  template <typename F>
+  operator Action<F>() const {
+    typedef typename Function<F>::Result Result;
+    // Asserts that the function return type is a reference.  This
+    // catches the user error of using ReturnRef(x) when Return(x)
+    // should be used, and generates some helpful error message.
+    GTEST_COMPILE_ASSERT_(internal::is_reference<Result>::value,
+                          use_Return_instead_of_ReturnRef_to_return_a_value);
+    return Action<F>(new Impl<F>(ref_));
+  }
+
+ private:
+  // Implements the ReturnRef(x) action for a particular function type F.
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename Function<F>::Result Result;
+    typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+
+    explicit Impl(T& ref) : ref_(ref) {}  // NOLINT
+
+    virtual Result Perform(const ArgumentTuple&) {
+      return ref_;
+    }
+
+   private:
+    T& ref_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  T& ref_;
+
+  GTEST_DISALLOW_ASSIGN_(ReturnRefAction);
+};
+
+// Implements the polymorphic ReturnRefOfCopy(x) action, which can be
+// used in any function that returns a reference to the type of x,
+// regardless of the argument types.
+template <typename T>
+class ReturnRefOfCopyAction {
+ public:
+  // Constructs a ReturnRefOfCopyAction object from the reference to
+  // be returned.
+  explicit ReturnRefOfCopyAction(const T& value) : value_(value) {}  // NOLINT
+
+  // This template type conversion operator allows ReturnRefOfCopy(x) to be
+  // used in ANY function that returns a reference to x's type.
+  template <typename F>
+  operator Action<F>() const {
+    typedef typename Function<F>::Result Result;
+    // Asserts that the function return type is a reference.  This
+    // catches the user error of using ReturnRefOfCopy(x) when Return(x)
+    // should be used, and generates some helpful error message.
+    GTEST_COMPILE_ASSERT_(
+        internal::is_reference<Result>::value,
+        use_Return_instead_of_ReturnRefOfCopy_to_return_a_value);
+    return Action<F>(new Impl<F>(value_));
+  }
+
+ private:
+  // Implements the ReturnRefOfCopy(x) action for a particular function type F.
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename Function<F>::Result Result;
+    typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+
+    explicit Impl(const T& value) : value_(value) {}  // NOLINT
+
+    virtual Result Perform(const ArgumentTuple&) {
+      return value_;
+    }
+
+   private:
+    T value_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  const T value_;
+
+  GTEST_DISALLOW_ASSIGN_(ReturnRefOfCopyAction);
+};
+
+// Implements the polymorphic DoDefault() action.
+class DoDefaultAction {
+ public:
+  // This template type conversion operator allows DoDefault() to be
+  // used in any function.
+  template <typename F>
+  operator Action<F>() const { return Action<F>(NULL); }
+};
+
+// Implements the Assign action to set a given pointer referent to a
+// particular value.
+template <typename T1, typename T2>
+class AssignAction {
+ public:
+  AssignAction(T1* ptr, T2 value) : ptr_(ptr), value_(value) {}
+
+  template <typename Result, typename ArgumentTuple>
+  void Perform(const ArgumentTuple& /* args */) const {
+    *ptr_ = value_;
+  }
+
+ private:
+  T1* const ptr_;
+  const T2 value_;
+
+  GTEST_DISALLOW_ASSIGN_(AssignAction);
+};
+
+#if !GTEST_OS_WINDOWS_MOBILE
+
+// Implements the SetErrnoAndReturn action to simulate return from
+// various system calls and libc functions.
+template <typename T>
+class SetErrnoAndReturnAction {
+ public:
+  SetErrnoAndReturnAction(int errno_value, T result)
+      : errno_(errno_value),
+        result_(result) {}
+  template <typename Result, typename ArgumentTuple>
+  Result Perform(const ArgumentTuple& /* args */) const {
+    errno = errno_;
+    return result_;
+  }
+
+ private:
+  const int errno_;
+  const T result_;
+
+  GTEST_DISALLOW_ASSIGN_(SetErrnoAndReturnAction);
+};
+
+#endif  // !GTEST_OS_WINDOWS_MOBILE
+
+// Implements the SetArgumentPointee<N>(x) action for any function
+// whose N-th argument (0-based) is a pointer to x's type.  The
+// template parameter kIsProto is true iff type A is ProtocolMessage,
+// proto2::Message, or a sub-class of those.
+template <size_t N, typename A, bool kIsProto>
+class SetArgumentPointeeAction {
+ public:
+  // Constructs an action that sets the variable pointed to by the
+  // N-th function argument to 'value'.
+  explicit SetArgumentPointeeAction(const A& value) : value_(value) {}
+
+  template <typename Result, typename ArgumentTuple>
+  void Perform(const ArgumentTuple& args) const {
+    CompileAssertTypesEqual<void, Result>();
+    *::std::tr1::get<N>(args) = value_;
+  }
+
+ private:
+  const A value_;
+
+  GTEST_DISALLOW_ASSIGN_(SetArgumentPointeeAction);
+};
+
+template <size_t N, typename Proto>
+class SetArgumentPointeeAction<N, Proto, true> {
+ public:
+  // Constructs an action that sets the variable pointed to by the
+  // N-th function argument to 'proto'.  Both ProtocolMessage and
+  // proto2::Message have the CopyFrom() method, so the same
+  // implementation works for both.
+  explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) {
+    proto_->CopyFrom(proto);
+  }
+
+  template <typename Result, typename ArgumentTuple>
+  void Perform(const ArgumentTuple& args) const {
+    CompileAssertTypesEqual<void, Result>();
+    ::std::tr1::get<N>(args)->CopyFrom(*proto_);
+  }
+
+ private:
+  const internal::linked_ptr<Proto> proto_;
+
+  GTEST_DISALLOW_ASSIGN_(SetArgumentPointeeAction);
+};
+
+// Implements the InvokeWithoutArgs(f) action.  The template argument
+// FunctionImpl is the implementation type of f, which can be either a
+// function pointer or a functor.  InvokeWithoutArgs(f) can be used as an
+// Action<F> as long as f's type is compatible with F (i.e. f can be
+// assigned to a tr1::function<F>).
+template <typename FunctionImpl>
+class InvokeWithoutArgsAction {
+ public:
+  // The c'tor makes a copy of function_impl (either a function
+  // pointer or a functor).
+  explicit InvokeWithoutArgsAction(FunctionImpl function_impl)
+      : function_impl_(function_impl) {}
+
+  // Allows InvokeWithoutArgs(f) to be used as any action whose type is
+  // compatible with f.
+  template <typename Result, typename ArgumentTuple>
+  Result Perform(const ArgumentTuple&) { return function_impl_(); }
+
+ private:
+  FunctionImpl function_impl_;
+
+  GTEST_DISALLOW_ASSIGN_(InvokeWithoutArgsAction);
+};
+
+// Implements the InvokeWithoutArgs(object_ptr, &Class::Method) action.
+template <class Class, typename MethodPtr>
+class InvokeMethodWithoutArgsAction {
+ public:
+  InvokeMethodWithoutArgsAction(Class* obj_ptr, MethodPtr method_ptr)
+      : obj_ptr_(obj_ptr), method_ptr_(method_ptr) {}
+
+  template <typename Result, typename ArgumentTuple>
+  Result Perform(const ArgumentTuple&) const {
+    return (obj_ptr_->*method_ptr_)();
+  }
+
+ private:
+  Class* const obj_ptr_;
+  const MethodPtr method_ptr_;
+
+  GTEST_DISALLOW_ASSIGN_(InvokeMethodWithoutArgsAction);
+};
+
+// Implements the IgnoreResult(action) action.
+template <typename A>
+class IgnoreResultAction {
+ public:
+  explicit IgnoreResultAction(const A& action) : action_(action) {}
+
+  template <typename F>
+  operator Action<F>() const {
+    // Assert statement belongs here because this is the best place to verify
+    // conditions on F. It produces the clearest error messages
+    // in most compilers.
+    // Impl really belongs in this scope as a local class but can't
+    // because MSVC produces duplicate symbols in different translation units
+    // in this case. Until MS fixes that bug we put Impl into the class scope
+    // and put the typedef both here (for use in assert statement) and
+    // in the Impl class. But both definitions must be the same.
+    typedef typename internal::Function<F>::Result Result;
+
+    // Asserts at compile time that F returns void.
+    CompileAssertTypesEqual<void, Result>();
+
+    return Action<F>(new Impl<F>(action_));
+  }
+
+ private:
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename internal::Function<F>::Result Result;
+    typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+    explicit Impl(const A& action) : action_(action) {}
+
+    virtual void Perform(const ArgumentTuple& args) {
+      // Performs the action and ignores its result.
+      action_.Perform(args);
+    }
+
+   private:
+    // Type OriginalFunction is the same as F except that its return
+    // type is IgnoredValue.
+    typedef typename internal::Function<F>::MakeResultIgnoredValue
+        OriginalFunction;
+
+    const Action<OriginalFunction> action_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  const A action_;
+
+  GTEST_DISALLOW_ASSIGN_(IgnoreResultAction);
+};
+
+// A ReferenceWrapper<T> object represents a reference to type T,
+// which can be either const or not.  It can be explicitly converted
+// from, and implicitly converted to, a T&.  Unlike a reference,
+// ReferenceWrapper<T> can be copied and can survive template type
+// inference.  This is used to support by-reference arguments in the
+// InvokeArgument<N>(...) action.  The idea was from "reference
+// wrappers" in tr1, which we don't have in our source tree yet.
+template <typename T>
+class ReferenceWrapper {
+ public:
+  // Constructs a ReferenceWrapper<T> object from a T&.
+  explicit ReferenceWrapper(T& l_value) : pointer_(&l_value) {}  // NOLINT
+
+  // Allows a ReferenceWrapper<T> object to be implicitly converted to
+  // a T&.
+  operator T&() const { return *pointer_; }
+ private:
+  T* pointer_;
+};
+
+// Allows the expression ByRef(x) to be printed as a reference to x.
+template <typename T>
+void PrintTo(const ReferenceWrapper<T>& ref, ::std::ostream* os) {
+  T& value = ref;
+  UniversalPrinter<T&>::Print(value, os);
+}
+
+// Does two actions sequentially.  Used for implementing the DoAll(a1,
+// a2, ...) action.
+template <typename Action1, typename Action2>
+class DoBothAction {
+ public:
+  DoBothAction(Action1 action1, Action2 action2)
+      : action1_(action1), action2_(action2) {}
+
+  // This template type conversion operator allows DoAll(a1, ..., a_n)
+  // to be used in ANY function of compatible type.
+  template <typename F>
+  operator Action<F>() const {
+    return Action<F>(new Impl<F>(action1_, action2_));
+  }
+
+ private:
+  // Implements the DoAll(...) action for a particular function type F.
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename Function<F>::Result Result;
+    typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+    typedef typename Function<F>::MakeResultVoid VoidResult;
+
+    Impl(const Action<VoidResult>& action1, const Action<F>& action2)
+        : action1_(action1), action2_(action2) {}
+
+    virtual Result Perform(const ArgumentTuple& args) {
+      action1_.Perform(args);
+      return action2_.Perform(args);
+    }
+
+   private:
+    const Action<VoidResult> action1_;
+    const Action<F> action2_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  Action1 action1_;
+  Action2 action2_;
+
+  GTEST_DISALLOW_ASSIGN_(DoBothAction);
+};
+
+}  // namespace internal
+
+// An Unused object can be implicitly constructed from ANY value.
+// This is handy when defining actions that ignore some or all of the
+// mock function arguments.  For example, given
+//
+//   MOCK_METHOD3(Foo, double(const string& label, double x, double y));
+//   MOCK_METHOD3(Bar, double(int index, double x, double y));
+//
+// instead of
+//
+//   double DistanceToOriginWithLabel(const string& label, double x, double y) {
+//     return sqrt(x*x + y*y);
+//   }
+//   double DistanceToOriginWithIndex(int index, double x, double y) {
+//     return sqrt(x*x + y*y);
+//   }
+//   ...
+//   EXEPCT_CALL(mock, Foo("abc", _, _))
+//       .WillOnce(Invoke(DistanceToOriginWithLabel));
+//   EXEPCT_CALL(mock, Bar(5, _, _))
+//       .WillOnce(Invoke(DistanceToOriginWithIndex));
+//
+// you could write
+//
+//   // We can declare any uninteresting argument as Unused.
+//   double DistanceToOrigin(Unused, double x, double y) {
+//     return sqrt(x*x + y*y);
+//   }
+//   ...
+//   EXEPCT_CALL(mock, Foo("abc", _, _)).WillOnce(Invoke(DistanceToOrigin));
+//   EXEPCT_CALL(mock, Bar(5, _, _)).WillOnce(Invoke(DistanceToOrigin));
+typedef internal::IgnoredValue Unused;
+
+// This constructor allows us to turn an Action<From> object into an
+// Action<To>, as long as To's arguments can be implicitly converted
+// to From's and From's return type cann be implicitly converted to
+// To's.
+template <typename To>
+template <typename From>
+Action<To>::Action(const Action<From>& from)
+    : impl_(new internal::ActionAdaptor<To, From>(from)) {}
+
+// Creates an action that returns 'value'.  'value' is passed by value
+// instead of const reference - otherwise Return("string literal")
+// will trigger a compiler error about using array as initializer.
+template <typename R>
+internal::ReturnAction<R> Return(R value) {
+  return internal::ReturnAction<R>(value);
+}
+
+// Creates an action that returns NULL.
+inline PolymorphicAction<internal::ReturnNullAction> ReturnNull() {
+  return MakePolymorphicAction(internal::ReturnNullAction());
+}
+
+// Creates an action that returns from a void function.
+inline PolymorphicAction<internal::ReturnVoidAction> Return() {
+  return MakePolymorphicAction(internal::ReturnVoidAction());
+}
+
+// Creates an action that returns the reference to a variable.
+template <typename R>
+inline internal::ReturnRefAction<R> ReturnRef(R& x) {  // NOLINT
+  return internal::ReturnRefAction<R>(x);
+}
+
+// Creates an action that returns the reference to a copy of the
+// argument.  The copy is created when the action is constructed and
+// lives as long as the action.
+template <typename R>
+inline internal::ReturnRefOfCopyAction<R> ReturnRefOfCopy(const R& x) {
+  return internal::ReturnRefOfCopyAction<R>(x);
+}
+
+// Creates an action that does the default action for the give mock function.
+inline internal::DoDefaultAction DoDefault() {
+  return internal::DoDefaultAction();
+}
+
+// Creates an action that sets the variable pointed by the N-th
+// (0-based) function argument to 'value'.
+template <size_t N, typename T>
+PolymorphicAction<
+  internal::SetArgumentPointeeAction<
+    N, T, internal::IsAProtocolMessage<T>::value> >
+SetArgPointee(const T& x) {
+  return MakePolymorphicAction(internal::SetArgumentPointeeAction<
+      N, T, internal::IsAProtocolMessage<T>::value>(x));
+}
+
+#if !((GTEST_GCC_VER_ && GTEST_GCC_VER_ < 40000) || GTEST_OS_SYMBIAN)
+// This overload allows SetArgPointee() to accept a string literal.
+// GCC prior to the version 4.0 and Symbian C++ compiler cannot distinguish
+// this overload from the templated version and emit a compile error.
+template <size_t N>
+PolymorphicAction<
+  internal::SetArgumentPointeeAction<N, const char*, false> >
+SetArgPointee(const char* p) {
+  return MakePolymorphicAction(internal::SetArgumentPointeeAction<
+      N, const char*, false>(p));
+}
+
+template <size_t N>
+PolymorphicAction<
+  internal::SetArgumentPointeeAction<N, const wchar_t*, false> >
+SetArgPointee(const wchar_t* p) {
+  return MakePolymorphicAction(internal::SetArgumentPointeeAction<
+      N, const wchar_t*, false>(p));
+}
+#endif
+
+// The following version is DEPRECATED.
+template <size_t N, typename T>
+PolymorphicAction<
+  internal::SetArgumentPointeeAction<
+    N, T, internal::IsAProtocolMessage<T>::value> >
+SetArgumentPointee(const T& x) {
+  return MakePolymorphicAction(internal::SetArgumentPointeeAction<
+      N, T, internal::IsAProtocolMessage<T>::value>(x));
+}
+
+// Creates an action that sets a pointer referent to a given value.
+template <typename T1, typename T2>
+PolymorphicAction<internal::AssignAction<T1, T2> > Assign(T1* ptr, T2 val) {
+  return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
+}
+
+#if !GTEST_OS_WINDOWS_MOBILE
+
+// Creates an action that sets errno and returns the appropriate error.
+template <typename T>
+PolymorphicAction<internal::SetErrnoAndReturnAction<T> >
+SetErrnoAndReturn(int errval, T result) {
+  return MakePolymorphicAction(
+      internal::SetErrnoAndReturnAction<T>(errval, result));
+}
+
+#endif  // !GTEST_OS_WINDOWS_MOBILE
+
+// Various overloads for InvokeWithoutArgs().
+
+// Creates an action that invokes 'function_impl' with no argument.
+template <typename FunctionImpl>
+PolymorphicAction<internal::InvokeWithoutArgsAction<FunctionImpl> >
+InvokeWithoutArgs(FunctionImpl function_impl) {
+  return MakePolymorphicAction(
+      internal::InvokeWithoutArgsAction<FunctionImpl>(function_impl));
+}
+
+// Creates an action that invokes the given method on the given object
+// with no argument.
+template <class Class, typename MethodPtr>
+PolymorphicAction<internal::InvokeMethodWithoutArgsAction<Class, MethodPtr> >
+InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) {
+  return MakePolymorphicAction(
+      internal::InvokeMethodWithoutArgsAction<Class, MethodPtr>(
+          obj_ptr, method_ptr));
+}
+
+// Creates an action that performs an_action and throws away its
+// result.  In other words, it changes the return type of an_action to
+// void.  an_action MUST NOT return void, or the code won't compile.
+template <typename A>
+inline internal::IgnoreResultAction<A> IgnoreResult(const A& an_action) {
+  return internal::IgnoreResultAction<A>(an_action);
+}
+
+// Creates a reference wrapper for the given L-value.  If necessary,
+// you can explicitly specify the type of the reference.  For example,
+// suppose 'derived' is an object of type Derived, ByRef(derived)
+// would wrap a Derived&.  If you want to wrap a const Base& instead,
+// where Base is a base class of Derived, just write:
+//
+//   ByRef<const Base>(derived)
+template <typename T>
+inline internal::ReferenceWrapper<T> ByRef(T& l_value) {  // NOLINT
+  return internal::ReferenceWrapper<T>(l_value);
+}
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some commonly used cardinalities.  More
+// cardinalities can be defined by the user implementing the
+// CardinalityInterface interface if necessary.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
+
+#include <limits.h>
+#include <ostream>  // NOLINT
+
+namespace testing {
+
+// To implement a cardinality Foo, define:
+//   1. a class FooCardinality that implements the
+//      CardinalityInterface interface, and
+//   2. a factory function that creates a Cardinality object from a
+//      const FooCardinality*.
+//
+// The two-level delegation design follows that of Matcher, providing
+// consistency for extension developers.  It also eases ownership
+// management as Cardinality objects can now be copied like plain values.
+
+// The implementation of a cardinality.
+class CardinalityInterface {
+ public:
+  virtual ~CardinalityInterface() {}
+
+  // Conservative estimate on the lower/upper bound of the number of
+  // calls allowed.
+  virtual int ConservativeLowerBound() const { return 0; }
+  virtual int ConservativeUpperBound() const { return INT_MAX; }
+
+  // Returns true iff call_count calls will satisfy this cardinality.
+  virtual bool IsSatisfiedByCallCount(int call_count) const = 0;
+
+  // Returns true iff call_count calls will saturate this cardinality.
+  virtual bool IsSaturatedByCallCount(int call_count) const = 0;
+
+  // Describes self to an ostream.
+  virtual void DescribeTo(::std::ostream* os) const = 0;
+};
+
+// A Cardinality is a copyable and IMMUTABLE (except by assignment)
+// object that specifies how many times a mock function is expected to
+// be called.  The implementation of Cardinality is just a linked_ptr
+// to const CardinalityInterface, so copying is fairly cheap.
+// Don't inherit from Cardinality!
+class Cardinality {
+ public:
+  // Constructs a null cardinality.  Needed for storing Cardinality
+  // objects in STL containers.
+  Cardinality() {}
+
+  // Constructs a Cardinality from its implementation.
+  explicit Cardinality(const CardinalityInterface* impl) : impl_(impl) {}
+
+  // Conservative estimate on the lower/upper bound of the number of
+  // calls allowed.
+  int ConservativeLowerBound() const { return impl_->ConservativeLowerBound(); }
+  int ConservativeUpperBound() const { return impl_->ConservativeUpperBound(); }
+
+  // Returns true iff call_count calls will satisfy this cardinality.
+  bool IsSatisfiedByCallCount(int call_count) const {
+    return impl_->IsSatisfiedByCallCount(call_count);
+  }
+
+  // Returns true iff call_count calls will saturate this cardinality.
+  bool IsSaturatedByCallCount(int call_count) const {
+    return impl_->IsSaturatedByCallCount(call_count);
+  }
+
+  // Returns true iff call_count calls will over-saturate this
+  // cardinality, i.e. exceed the maximum number of allowed calls.
+  bool IsOverSaturatedByCallCount(int call_count) const {
+    return impl_->IsSaturatedByCallCount(call_count) &&
+        !impl_->IsSatisfiedByCallCount(call_count);
+  }
+
+  // Describes self to an ostream
+  void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
+
+  // Describes the given actual call count to an ostream.
+  static void DescribeActualCallCountTo(int actual_call_count,
+                                        ::std::ostream* os);
+ private:
+  internal::linked_ptr<const CardinalityInterface> impl_;
+};
+
+// Creates a cardinality that allows at least n calls.
+Cardinality AtLeast(int n);
+
+// Creates a cardinality that allows at most n calls.
+Cardinality AtMost(int n);
+
+// Creates a cardinality that allows any number of calls.
+Cardinality AnyNumber();
+
+// Creates a cardinality that allows between min and max calls.
+Cardinality Between(int min, int max);
+
+// Creates a cardinality that allows exactly n calls.
+Cardinality Exactly(int n);
+
+// Creates a cardinality from its implementation.
+inline Cardinality MakeCardinality(const CardinalityInterface* c) {
+  return Cardinality(c);
+}
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_CARDINALITIES_H_
+// This file was GENERATED by a script.  DO NOT EDIT BY HAND!!!
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some commonly used variadic actions.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_
+
+
+namespace testing {
+namespace internal {
+
+// InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary
+// function or method with the unpacked values, where F is a function
+// type that takes N arguments.
+template <typename Result, typename ArgumentTuple>
+class InvokeHelper;
+
+template <typename R>
+class InvokeHelper<R, ::std::tr1::tuple<> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<>&) {
+    return function();
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<>&) {
+    return (obj_ptr->*method_ptr)();
+  }
+};
+
+template <typename R, typename A1>
+class InvokeHelper<R, ::std::tr1::tuple<A1> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2,
+      A3>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3,
+      A4>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5, A6>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args), get<5>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5, A6, A7>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6,
+                            A7>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args), get<5>(args), get<6>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5, A6, A7, A8>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7,
+                            A8>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5, A6, A7, A8, A9>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8,
+                            A9>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args),
+        get<8>(args));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9,
+    typename A10>
+class InvokeHelper<R, ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9,
+    A10> > {
+ public:
+  template <typename Function>
+  static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4,
+      A5, A6, A7, A8, A9, A10>& args) {
+    using ::std::tr1::get;
+    return function(get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args),
+        get<9>(args));
+  }
+
+  template <class Class, typename MethodPtr>
+  static R InvokeMethod(Class* obj_ptr,
+                        MethodPtr method_ptr,
+                        const ::std::tr1::tuple<A1, A2, A3, A4, A5, A6, A7, A8,
+                            A9, A10>& args) {
+    using ::std::tr1::get;
+    return (obj_ptr->*method_ptr)(get<0>(args), get<1>(args), get<2>(args),
+        get<3>(args), get<4>(args), get<5>(args), get<6>(args), get<7>(args),
+        get<8>(args), get<9>(args));
+  }
+};
+
+// CallableHelper has static methods for invoking "callables",
+// i.e. function pointers and functors.  It uses overloading to
+// provide a uniform interface for invoking different kinds of
+// callables.  In particular, you can use:
+//
+//   CallableHelper<R>::Call(callable, a1, a2, ..., an)
+//
+// to invoke an n-ary callable, where R is its return type.  If an
+// argument, say a2, needs to be passed by reference, you should write
+// ByRef(a2) instead of a2 in the above expression.
+template <typename R>
+class CallableHelper {
+ public:
+  // Calls a nullary callable.
+  template <typename Function>
+  static R Call(Function function) { return function(); }
+
+  // Calls a unary callable.
+
+  // We deliberately pass a1 by value instead of const reference here
+  // in case it is a C-string literal.  If we had declared the
+  // parameter as 'const A1& a1' and write Call(function, "Hi"), the
+  // compiler would've thought A1 is 'char[3]', which causes trouble
+  // when you need to copy a value of type A1.  By declaring the
+  // parameter as 'A1 a1', the compiler will correctly infer that A1
+  // is 'const char*' when it sees Call(function, "Hi").
+  //
+  // Since this function is defined inline, the compiler can get rid
+  // of the copying of the arguments.  Therefore the performance won't
+  // be hurt.
+  template <typename Function, typename A1>
+  static R Call(Function function, A1 a1) { return function(a1); }
+
+  // Calls a binary callable.
+  template <typename Function, typename A1, typename A2>
+  static R Call(Function function, A1 a1, A2 a2) {
+    return function(a1, a2);
+  }
+
+  // Calls a ternary callable.
+  template <typename Function, typename A1, typename A2, typename A3>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3) {
+    return function(a1, a2, a3);
+  }
+
+  // Calls a 4-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4) {
+    return function(a1, a2, a3, a4);
+  }
+
+  // Calls a 5-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) {
+    return function(a1, a2, a3, a4, a5);
+  }
+
+  // Calls a 6-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5, typename A6>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) {
+    return function(a1, a2, a3, a4, a5, a6);
+  }
+
+  // Calls a 7-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5, typename A6, typename A7>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6,
+      A7 a7) {
+    return function(a1, a2, a3, a4, a5, a6, a7);
+  }
+
+  // Calls a 8-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5, typename A6, typename A7, typename A8>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6,
+      A7 a7, A8 a8) {
+    return function(a1, a2, a3, a4, a5, a6, a7, a8);
+  }
+
+  // Calls a 9-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5, typename A6, typename A7, typename A8,
+      typename A9>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6,
+      A7 a7, A8 a8, A9 a9) {
+    return function(a1, a2, a3, a4, a5, a6, a7, a8, a9);
+  }
+
+  // Calls a 10-ary callable.
+  template <typename Function, typename A1, typename A2, typename A3,
+      typename A4, typename A5, typename A6, typename A7, typename A8,
+      typename A9, typename A10>
+  static R Call(Function function, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6,
+      A7 a7, A8 a8, A9 a9, A10 a10) {
+    return function(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
+  }
+
+};  // class CallableHelper
+
+// An INTERNAL macro for extracting the type of a tuple field.  It's
+// subject to change without notice - DO NOT USE IN USER CODE!
+#define GMOCK_FIELD_(Tuple, N) \
+    typename ::std::tr1::tuple_element<N, Tuple>::type
+
+// SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the
+// type of an n-ary function whose i-th (1-based) argument type is the
+// k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
+// type, and whose return type is Result.  For example,
+//   SelectArgs<int, ::std::tr1::tuple<bool, char, double, long>, 0, 3>::type
+// is int(bool, long).
+//
+// SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args)
+// returns the selected fields (k1, k2, ..., k_n) of args as a tuple.
+// For example,
+//   SelectArgs<int, ::std::tr1::tuple<bool, char, double>, 2, 0>::Select(
+//       ::std::tr1::make_tuple(true, 'a', 2.5))
+// returns ::std::tr1::tuple (2.5, true).
+//
+// The numbers in list k1, k2, ..., k_n must be >= 0, where n can be
+// in the range [0, 10].  Duplicates are allowed and they don't have
+// to be in an ascending or descending order.
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5, int k6, int k7, int k8, int k9, int k10>
+class SelectArgs {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5),
+      GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7),
+      GMOCK_FIELD_(ArgumentTuple, k8), GMOCK_FIELD_(ArgumentTuple, k9),
+      GMOCK_FIELD_(ArgumentTuple, k10));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
+        get<k8>(args), get<k9>(args), get<k10>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple>
+class SelectArgs<Result, ArgumentTuple,
+                 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type();
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& /* args */) {
+    using ::std::tr1::get;
+    return SelectedArgs();
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, k5, -1, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5, int k6>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, k5, k6, -1, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5),
+      GMOCK_FIELD_(ArgumentTuple, k6));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args), get<k6>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5, int k6, int k7>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, k5, k6, k7, -1, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5),
+      GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5, int k6, int k7, int k8>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, k5, k6, k7, k8, -1, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5),
+      GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7),
+      GMOCK_FIELD_(ArgumentTuple, k8));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
+        get<k8>(args));
+  }
+};
+
+template <typename Result, typename ArgumentTuple, int k1, int k2, int k3,
+    int k4, int k5, int k6, int k7, int k8, int k9>
+class SelectArgs<Result, ArgumentTuple,
+                 k1, k2, k3, k4, k5, k6, k7, k8, k9, -1> {
+ public:
+  typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1),
+      GMOCK_FIELD_(ArgumentTuple, k2), GMOCK_FIELD_(ArgumentTuple, k3),
+      GMOCK_FIELD_(ArgumentTuple, k4), GMOCK_FIELD_(ArgumentTuple, k5),
+      GMOCK_FIELD_(ArgumentTuple, k6), GMOCK_FIELD_(ArgumentTuple, k7),
+      GMOCK_FIELD_(ArgumentTuple, k8), GMOCK_FIELD_(ArgumentTuple, k9));
+  typedef typename Function<type>::ArgumentTuple SelectedArgs;
+  static SelectedArgs Select(const ArgumentTuple& args) {
+    using ::std::tr1::get;
+    return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
+        get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
+        get<k8>(args), get<k9>(args));
+  }
+};
+
+#undef GMOCK_FIELD_
+
+// Implements the WithArgs action.
+template <typename InnerAction, int k1 = -1, int k2 = -1, int k3 = -1,
+    int k4 = -1, int k5 = -1, int k6 = -1, int k7 = -1, int k8 = -1,
+    int k9 = -1, int k10 = -1>
+class WithArgsAction {
+ public:
+  explicit WithArgsAction(const InnerAction& action) : action_(action) {}
+
+  template <typename F>
+  operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
+
+ private:
+  template <typename F>
+  class Impl : public ActionInterface<F> {
+   public:
+    typedef typename Function<F>::Result Result;
+    typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+
+    explicit Impl(const InnerAction& action) : action_(action) {}
+
+    virtual Result Perform(const ArgumentTuple& args) {
+      return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
+          k5, k6, k7, k8, k9, k10>::Select(args));
+    }
+
+   private:
+    typedef typename SelectArgs<Result, ArgumentTuple,
+        k1, k2, k3, k4, k5, k6, k7, k8, k9, k10>::type InnerFunctionType;
+
+    Action<InnerFunctionType> action_;
+  };
+
+  const InnerAction action_;
+
+  GTEST_DISALLOW_ASSIGN_(WithArgsAction);
+};
+
+// A macro from the ACTION* family (defined later in this file)
+// defines an action that can be used in a mock function.  Typically,
+// these actions only care about a subset of the arguments of the mock
+// function.  For example, if such an action only uses the second
+// argument, it can be used in any mock function that takes >= 2
+// arguments where the type of the second argument is compatible.
+//
+// Therefore, the action implementation must be prepared to take more
+// arguments than it needs.  The ExcessiveArg type is used to
+// represent those excessive arguments.  In order to keep the compiler
+// error messages tractable, we define it in the testing namespace
+// instead of testing::internal.  However, this is an INTERNAL TYPE
+// and subject to change without notice, so a user MUST NOT USE THIS
+// TYPE DIRECTLY.
+struct ExcessiveArg {};
+
+// A helper class needed for implementing the ACTION* macros.
+template <typename Result, class Impl>
+class ActionHelper {
+ public:
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<>(args, ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0>(args, get<0>(args),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1>(args, get<0>(args),
+        get<1>(args), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2>(args, get<0>(args),
+        get<1>(args), get<2>(args), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2,
+      A3>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3>(args, get<0>(args),
+        get<1>(args), get<2>(args), get<3>(args), ExcessiveArg(),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3,
+      A4>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4>(args,
+        get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args),
+        ExcessiveArg(), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4,
+      typename A5>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
+      A5>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5>(args,
+        get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args),
+        get<5>(args), ExcessiveArg(), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4,
+      typename A5, typename A6>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
+      A5, A6>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6>(args,
+        get<0>(args), get<1>(args), get<2>(args), get<3>(args), get<4>(args),
+        get<5>(args), get<6>(args), ExcessiveArg(), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4,
+      typename A5, typename A6, typename A7>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
+      A5, A6, A7>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6,
+        A7>(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args), ExcessiveArg(),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4,
+      typename A5, typename A6, typename A7, typename A8>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
+      A5, A6, A7, A8>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6, A7,
+        A8>(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args),
+        ExcessiveArg());
+  }
+
+  template <typename A0, typename A1, typename A2, typename A3, typename A4,
+      typename A5, typename A6, typename A7, typename A8, typename A9>
+  static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
+      A5, A6, A7, A8, A9>& args) {
+    using ::std::tr1::get;
+    return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6, A7, A8,
+        A9>(args, get<0>(args), get<1>(args), get<2>(args), get<3>(args),
+        get<4>(args), get<5>(args), get<6>(args), get<7>(args), get<8>(args),
+        get<9>(args));
+  }
+};
+
+}  // namespace internal
+
+// Various overloads for Invoke().
+
+// WithArgs<N1, N2, ..., Nk>(an_action) creates an action that passes
+// the selected arguments of the mock function to an_action and
+// performs it.  It serves as an adaptor between actions with
+// different argument lists.  C++ doesn't support default arguments for
+// function templates, so we have to overload it.
+template <int k1, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1>(action);
+}
+
+template <int k1, int k2, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2>(action);
+}
+
+template <int k1, int k2, int k3, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3>(action);
+}
+
+template <int k1, int k2, int k3, int k4, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7,
+    typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6,
+      k7>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7,
+      k8>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    int k9, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8, k9>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8,
+      k9>(action);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    int k9, int k10, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8,
+    k9, k10>
+WithArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8,
+      k9, k10>(action);
+}
+
+// Creates an action that does actions a1, a2, ..., sequentially in
+// each invocation.
+template <typename Action1, typename Action2>
+inline internal::DoBothAction<Action1, Action2>
+DoAll(Action1 a1, Action2 a2) {
+  return internal::DoBothAction<Action1, Action2>(a1, a2);
+}
+
+template <typename Action1, typename Action2, typename Action3>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    Action3> >
+DoAll(Action1 a1, Action2 a2, Action3 a3) {
+  return DoAll(a1, DoAll(a2, a3));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, Action4> > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4) {
+  return DoAll(a1, DoAll(a2, a3, a4));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    Action5> > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5, typename Action6>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    internal::DoBothAction<Action5, Action6> > > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5, a6));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5, typename Action6, typename Action7>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    internal::DoBothAction<Action5, internal::DoBothAction<Action6,
+    Action7> > > > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
+    Action7 a7) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5, typename Action6, typename Action7,
+    typename Action8>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    internal::DoBothAction<Action5, internal::DoBothAction<Action6,
+    internal::DoBothAction<Action7, Action8> > > > > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
+    Action7 a7, Action8 a8) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5, typename Action6, typename Action7,
+    typename Action8, typename Action9>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    internal::DoBothAction<Action5, internal::DoBothAction<Action6,
+    internal::DoBothAction<Action7, internal::DoBothAction<Action8,
+    Action9> > > > > > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
+    Action7 a7, Action8 a8, Action9 a9) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8, a9));
+}
+
+template <typename Action1, typename Action2, typename Action3,
+    typename Action4, typename Action5, typename Action6, typename Action7,
+    typename Action8, typename Action9, typename Action10>
+inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
+    internal::DoBothAction<Action3, internal::DoBothAction<Action4,
+    internal::DoBothAction<Action5, internal::DoBothAction<Action6,
+    internal::DoBothAction<Action7, internal::DoBothAction<Action8,
+    internal::DoBothAction<Action9, Action10> > > > > > > > >
+DoAll(Action1 a1, Action2 a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
+    Action7 a7, Action8 a8, Action9 a9, Action10 a10) {
+  return DoAll(a1, DoAll(a2, a3, a4, a5, a6, a7, a8, a9, a10));
+}
+
+}  // namespace testing
+
+// The ACTION* family of macros can be used in a namespace scope to
+// define custom actions easily.  The syntax:
+//
+//   ACTION(name) { statements; }
+//
+// will define an action with the given name that executes the
+// statements.  The value returned by the statements will be used as
+// the return value of the action.  Inside the statements, you can
+// refer to the K-th (0-based) argument of the mock function by
+// 'argK', and refer to its type by 'argK_type'.  For example:
+//
+//   ACTION(IncrementArg1) {
+//     arg1_type temp = arg1;
+//     return ++(*temp);
+//   }
+//
+// allows you to write
+//
+//   ...WillOnce(IncrementArg1());
+//
+// You can also refer to the entire argument tuple and its type by
+// 'args' and 'args_type', and refer to the mock function type and its
+// return type by 'function_type' and 'return_type'.
+//
+// Note that you don't need to specify the types of the mock function
+// arguments.  However rest assured that your code is still type-safe:
+// you'll get a compiler error if *arg1 doesn't support the ++
+// operator, or if the type of ++(*arg1) isn't compatible with the
+// mock function's return type, for example.
+//
+// Sometimes you'll want to parameterize the action.   For that you can use
+// another macro:
+//
+//   ACTION_P(name, param_name) { statements; }
+//
+// For example:
+//
+//   ACTION_P(Add, n) { return arg0 + n; }
+//
+// will allow you to write:
+//
+//   ...WillOnce(Add(5));
+//
+// Note that you don't need to provide the type of the parameter
+// either.  If you need to reference the type of a parameter named
+// 'foo', you can write 'foo_type'.  For example, in the body of
+// ACTION_P(Add, n) above, you can write 'n_type' to refer to the type
+// of 'n'.
+//
+// We also provide ACTION_P2, ACTION_P3, ..., up to ACTION_P10 to support
+// multi-parameter actions.
+//
+// For the purpose of typing, you can view
+//
+//   ACTION_Pk(Foo, p1, ..., pk) { ... }
+//
+// as shorthand for
+//
+//   template <typename p1_type, ..., typename pk_type>
+//   FooActionPk<p1_type, ..., pk_type> Foo(p1_type p1, ..., pk_type pk) { ... }
+//
+// In particular, you can provide the template type arguments
+// explicitly when invoking Foo(), as in Foo<long, bool>(5, false);
+// although usually you can rely on the compiler to infer the types
+// for you automatically.  You can assign the result of expression
+// Foo(p1, ..., pk) to a variable of type FooActionPk<p1_type, ...,
+// pk_type>.  This can be useful when composing actions.
+//
+// You can also overload actions with different numbers of parameters:
+//
+//   ACTION_P(Plus, a) { ... }
+//   ACTION_P2(Plus, a, b) { ... }
+//
+// While it's tempting to always use the ACTION* macros when defining
+// a new action, you should also consider implementing ActionInterface
+// or using MakePolymorphicAction() instead, especially if you need to
+// use the action a lot.  While these approaches require more work,
+// they give you more control on the types of the mock function
+// arguments and the action parameters, which in general leads to
+// better compiler error messages that pay off in the long run.  They
+// also allow overloading actions based on parameter types (as opposed
+// to just based on the number of parameters).
+//
+// CAVEAT:
+//
+// ACTION*() can only be used in a namespace scope.  The reason is
+// that C++ doesn't yet allow function-local types to be used to
+// instantiate templates.  The up-coming C++0x standard will fix this.
+// Once that's done, we'll consider supporting using ACTION*() inside
+// a function.
+//
+// MORE INFORMATION:
+//
+// To learn more about using these macros, please search for 'ACTION'
+// on http://code.google.com/p/googlemock/wiki/CookBook.
+
+// An internal macro needed for implementing ACTION*().
+#define GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_\
+    const args_type& args GTEST_ATTRIBUTE_UNUSED_,\
+    arg0_type arg0 GTEST_ATTRIBUTE_UNUSED_,\
+    arg1_type arg1 GTEST_ATTRIBUTE_UNUSED_,\
+    arg2_type arg2 GTEST_ATTRIBUTE_UNUSED_,\
+    arg3_type arg3 GTEST_ATTRIBUTE_UNUSED_,\
+    arg4_type arg4 GTEST_ATTRIBUTE_UNUSED_,\
+    arg5_type arg5 GTEST_ATTRIBUTE_UNUSED_,\
+    arg6_type arg6 GTEST_ATTRIBUTE_UNUSED_,\
+    arg7_type arg7 GTEST_ATTRIBUTE_UNUSED_,\
+    arg8_type arg8 GTEST_ATTRIBUTE_UNUSED_,\
+    arg9_type arg9 GTEST_ATTRIBUTE_UNUSED_
+
+// Sometimes you want to give an action explicit template parameters
+// that cannot be inferred from its value parameters.  ACTION() and
+// ACTION_P*() don't support that.  ACTION_TEMPLATE() remedies that
+// and can be viewed as an extension to ACTION() and ACTION_P*().
+//
+// The syntax:
+//
+//   ACTION_TEMPLATE(ActionName,
+//                   HAS_m_TEMPLATE_PARAMS(kind1, name1, ..., kind_m, name_m),
+//                   AND_n_VALUE_PARAMS(p1, ..., p_n)) { statements; }
+//
+// defines an action template that takes m explicit template
+// parameters and n value parameters.  name_i is the name of the i-th
+// template parameter, and kind_i specifies whether it's a typename,
+// an integral constant, or a template.  p_i is the name of the i-th
+// value parameter.
+//
+// Example:
+//
+//   // DuplicateArg<k, T>(output) converts the k-th argument of the mock
+//   // function to type T and copies it to *output.
+//   ACTION_TEMPLATE(DuplicateArg,
+//                   HAS_2_TEMPLATE_PARAMS(int, k, typename, T),
+//                   AND_1_VALUE_PARAMS(output)) {
+//     *output = T(std::tr1::get<k>(args));
+//   }
+//   ...
+//     int n;
+//     EXPECT_CALL(mock, Foo(_, _))
+//         .WillOnce(DuplicateArg<1, unsigned char>(&n));
+//
+// To create an instance of an action template, write:
+//
+//   ActionName<t1, ..., t_m>(v1, ..., v_n)
+//
+// where the ts are the template arguments and the vs are the value
+// arguments.  The value argument types are inferred by the compiler.
+// If you want to explicitly specify the value argument types, you can
+// provide additional template arguments:
+//
+//   ActionName<t1, ..., t_m, u1, ..., u_k>(v1, ..., v_n)
+//
+// where u_i is the desired type of v_i.
+//
+// ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded on the
+// number of value parameters, but not on the number of template
+// parameters.  Without the restriction, the meaning of the following
+// is unclear:
+//
+//   OverloadedAction<int, bool>(x);
+//
+// Are we using a single-template-parameter action where 'bool' refers
+// to the type of x, or are we using a two-template-parameter action
+// where the compiler is asked to infer the type of x?
+//
+// Implementation notes:
+//
+// GMOCK_INTERNAL_*_HAS_m_TEMPLATE_PARAMS and
+// GMOCK_INTERNAL_*_AND_n_VALUE_PARAMS are internal macros for
+// implementing ACTION_TEMPLATE.  The main trick we use is to create
+// new macro invocations when expanding a macro.  For example, we have
+//
+//   #define ACTION_TEMPLATE(name, template_params, value_params)
+//       ... GMOCK_INTERNAL_DECL_##template_params ...
+//
+// which causes ACTION_TEMPLATE(..., HAS_1_TEMPLATE_PARAMS(typename, T), ...)
+// to expand to
+//
+//       ... GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(typename, T) ...
+//
+// Since GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS is a macro, the
+// preprocessor will continue to expand it to
+//
+//       ... typename T ...
+//
+// This technique conforms to the C++ standard and is portable.  It
+// allows us to implement action templates using O(N) code, where N is
+// the maximum number of template/value parameters supported.  Without
+// using it, we'd have to devote O(N^2) amount of code to implement all
+// combinations of m and n.
+
+// Declares the template parameters.
+#define GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(kind0, name0) kind0 name0
+#define GMOCK_INTERNAL_DECL_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \
+    name1) kind0 name0, kind1 name1
+#define GMOCK_INTERNAL_DECL_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2) kind0 name0, kind1 name1, kind2 name2
+#define GMOCK_INTERNAL_DECL_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3) kind0 name0, kind1 name1, kind2 name2, \
+    kind3 name3
+#define GMOCK_INTERNAL_DECL_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4) kind0 name0, kind1 name1, \
+    kind2 name2, kind3 name3, kind4 name4
+#define GMOCK_INTERNAL_DECL_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5) kind0 name0, \
+    kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5
+#define GMOCK_INTERNAL_DECL_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
+    name6) kind0 name0, kind1 name1, kind2 name2, kind3 name3, kind4 name4, \
+    kind5 name5, kind6 name6
+#define GMOCK_INTERNAL_DECL_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
+    kind7, name7) kind0 name0, kind1 name1, kind2 name2, kind3 name3, \
+    kind4 name4, kind5 name5, kind6 name6, kind7 name7
+#define GMOCK_INTERNAL_DECL_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
+    kind7, name7, kind8, name8) kind0 name0, kind1 name1, kind2 name2, \
+    kind3 name3, kind4 name4, kind5 name5, kind6 name6, kind7 name7, \
+    kind8 name8
+#define GMOCK_INTERNAL_DECL_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \
+    name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
+    name6, kind7, name7, kind8, name8, kind9, name9) kind0 name0, \
+    kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5, \
+    kind6 name6, kind7 name7, kind8 name8, kind9 name9
+
+// Lists the template parameters.
+#define GMOCK_INTERNAL_LIST_HAS_1_TEMPLATE_PARAMS(kind0, name0) name0
+#define GMOCK_INTERNAL_LIST_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \
+    name1) name0, name1
+#define GMOCK_INTERNAL_LIST_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2) name0, name1, name2
+#define GMOCK_INTERNAL_LIST_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3) name0, name1, name2, name3
+#define GMOCK_INTERNAL_LIST_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4) name0, name1, name2, name3, \
+    name4
+#define GMOCK_INTERNAL_LIST_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5) name0, name1, \
+    name2, name3, name4, name5
+#define GMOCK_INTERNAL_LIST_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
+    name6) name0, name1, name2, name3, name4, name5, name6
+#define GMOCK_INTERNAL_LIST_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
+    kind7, name7) name0, name1, name2, name3, name4, name5, name6, name7
+#define GMOCK_INTERNAL_LIST_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
+    kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
+    kind7, name7, kind8, name8) name0, name1, name2, name3, name4, name5, \
+    name6, name7, name8
+#define GMOCK_INTERNAL_LIST_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \
+    name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
+    name6, kind7, name7, kind8, name8, kind9, name9) name0, name1, name2, \
+    name3, name4, name5, name6, name7, name8, name9
+
+// Declares the types of value parameters.
+#define GMOCK_INTERNAL_DECL_TYPE_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \
+    typename p0##_type, typename p1##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \
+    typename p0##_type, typename p1##_type, typename p2##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \
+    typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \
+    typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type, typename p4##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \
+    typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type, typename p4##_type, typename p5##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6) , typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type, typename p4##_type, typename p5##_type, \
+    typename p6##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7) , typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type, typename p4##_type, typename p5##_type, \
+    typename p6##_type, typename p7##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7, p8) , typename p0##_type, typename p1##_type, typename p2##_type, \
+    typename p3##_type, typename p4##_type, typename p5##_type, \
+    typename p6##_type, typename p7##_type, typename p8##_type
+#define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7, p8, p9) , typename p0##_type, typename p1##_type, \
+    typename p2##_type, typename p3##_type, typename p4##_type, \
+    typename p5##_type, typename p6##_type, typename p7##_type, \
+    typename p8##_type, typename p9##_type
+
+// Initializes the value parameters.
+#define GMOCK_INTERNAL_INIT_AND_0_VALUE_PARAMS()\
+    ()
+#define GMOCK_INTERNAL_INIT_AND_1_VALUE_PARAMS(p0)\
+    (p0##_type gmock_p0) : p0(gmock_p0)
+#define GMOCK_INTERNAL_INIT_AND_2_VALUE_PARAMS(p0, p1)\
+    (p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), p1(gmock_p1)
+#define GMOCK_INTERNAL_INIT_AND_3_VALUE_PARAMS(p0, p1, p2)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2)
+#define GMOCK_INTERNAL_INIT_AND_4_VALUE_PARAMS(p0, p1, p2, p3)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3)
+#define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4)
+#define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5)
+#define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+        p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6)
+#define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+        p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+        p7(gmock_p7)
+#define GMOCK_INTERNAL_INIT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+        p6##_type gmock_p6, p7##_type gmock_p7, \
+        p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+        p8(gmock_p8)
+#define GMOCK_INTERNAL_INIT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8, p9)\
+    (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+        p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+        p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \
+        p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+        p8(gmock_p8), p9(gmock_p9)
+
+// Declares the fields for storing the value parameters.
+#define GMOCK_INTERNAL_DEFN_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_DEFN_AND_1_VALUE_PARAMS(p0) p0##_type p0;
+#define GMOCK_INTERNAL_DEFN_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0; \
+    p1##_type p1;
+#define GMOCK_INTERNAL_DEFN_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0; \
+    p1##_type p1; p2##_type p2;
+#define GMOCK_INTERNAL_DEFN_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0; \
+    p1##_type p1; p2##_type p2; p3##_type p3;
+#define GMOCK_INTERNAL_DEFN_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \
+    p4) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4;
+#define GMOCK_INTERNAL_DEFN_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \
+    p5) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
+    p5##_type p5;
+#define GMOCK_INTERNAL_DEFN_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
+    p5##_type p5; p6##_type p6;
+#define GMOCK_INTERNAL_DEFN_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
+    p5##_type p5; p6##_type p6; p7##_type p7;
+#define GMOCK_INTERNAL_DEFN_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \
+    p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8;
+#define GMOCK_INTERNAL_DEFN_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8, p9) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \
+    p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; \
+    p9##_type p9;
+
+// Lists the value parameters.
+#define GMOCK_INTERNAL_LIST_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_LIST_AND_1_VALUE_PARAMS(p0) p0
+#define GMOCK_INTERNAL_LIST_AND_2_VALUE_PARAMS(p0, p1) p0, p1
+#define GMOCK_INTERNAL_LIST_AND_3_VALUE_PARAMS(p0, p1, p2) p0, p1, p2
+#define GMOCK_INTERNAL_LIST_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0, p1, p2, p3
+#define GMOCK_INTERNAL_LIST_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) p0, p1, \
+    p2, p3, p4
+#define GMOCK_INTERNAL_LIST_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) p0, \
+    p1, p2, p3, p4, p5
+#define GMOCK_INTERNAL_LIST_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6) p0, p1, p2, p3, p4, p5, p6
+#define GMOCK_INTERNAL_LIST_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7) p0, p1, p2, p3, p4, p5, p6, p7
+#define GMOCK_INTERNAL_LIST_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8) p0, p1, p2, p3, p4, p5, p6, p7, p8
+#define GMOCK_INTERNAL_LIST_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8, p9) p0, p1, p2, p3, p4, p5, p6, p7, p8, p9
+
+// Lists the value parameter types.
+#define GMOCK_INTERNAL_LIST_TYPE_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_LIST_TYPE_AND_1_VALUE_PARAMS(p0) , p0##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_2_VALUE_PARAMS(p0, p1) , p0##_type, \
+    p1##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , p0##_type, \
+    p1##_type, p2##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \
+    p0##_type, p1##_type, p2##_type, p3##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \
+    p0##_type, p1##_type, p2##_type, p3##_type, p4##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \
+    p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type, \
+    p6##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+    p5##_type, p6##_type, p7##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7, p8) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+    p5##_type, p6##_type, p7##_type, p8##_type
+#define GMOCK_INTERNAL_LIST_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6, p7, p8, p9) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+    p5##_type, p6##_type, p7##_type, p8##_type, p9##_type
+
+// Declares the value parameters.
+#define GMOCK_INTERNAL_DECL_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_DECL_AND_1_VALUE_PARAMS(p0) p0##_type p0
+#define GMOCK_INTERNAL_DECL_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0, \
+    p1##_type p1
+#define GMOCK_INTERNAL_DECL_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0, \
+    p1##_type p1, p2##_type p2
+#define GMOCK_INTERNAL_DECL_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0, \
+    p1##_type p1, p2##_type p2, p3##_type p3
+#define GMOCK_INTERNAL_DECL_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \
+    p4) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4
+#define GMOCK_INTERNAL_DECL_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \
+    p5) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
+    p5##_type p5
+#define GMOCK_INTERNAL_DECL_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
+    p6) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
+    p5##_type p5, p6##_type p6
+#define GMOCK_INTERNAL_DECL_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
+    p5##_type p5, p6##_type p6, p7##_type p7
+#define GMOCK_INTERNAL_DECL_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+    p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8
+#define GMOCK_INTERNAL_DECL_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8, p9) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+    p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \
+    p9##_type p9
+
+// The suffix of the class template implementing the action template.
+#define GMOCK_INTERNAL_COUNT_AND_0_VALUE_PARAMS()
+#define GMOCK_INTERNAL_COUNT_AND_1_VALUE_PARAMS(p0) P
+#define GMOCK_INTERNAL_COUNT_AND_2_VALUE_PARAMS(p0, p1) P2
+#define GMOCK_INTERNAL_COUNT_AND_3_VALUE_PARAMS(p0, p1, p2) P3
+#define GMOCK_INTERNAL_COUNT_AND_4_VALUE_PARAMS(p0, p1, p2, p3) P4
+#define GMOCK_INTERNAL_COUNT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) P5
+#define GMOCK_INTERNAL_COUNT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) P6
+#define GMOCK_INTERNAL_COUNT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6) P7
+#define GMOCK_INTERNAL_COUNT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7) P8
+#define GMOCK_INTERNAL_COUNT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8) P9
+#define GMOCK_INTERNAL_COUNT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
+    p7, p8, p9) P10
+
+// The name of the class template implementing the action template.
+#define GMOCK_ACTION_CLASS_(name, value_params)\
+    GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params)
+
+#define ACTION_TEMPLATE(name, template_params, value_params)\
+  template <GMOCK_INTERNAL_DECL_##template_params\
+            GMOCK_INTERNAL_DECL_TYPE_##value_params>\
+  class GMOCK_ACTION_CLASS_(name, value_params) {\
+   public:\
+    GMOCK_ACTION_CLASS_(name, value_params)\
+        GMOCK_INTERNAL_INIT_##value_params {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      explicit gmock_Impl GMOCK_INTERNAL_INIT_##value_params {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      GMOCK_INTERNAL_DEFN_##value_params\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(\
+          new gmock_Impl<F>(GMOCK_INTERNAL_LIST_##value_params));\
+    }\
+    GMOCK_INTERNAL_DEFN_##value_params\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(GMOCK_ACTION_CLASS_(name, value_params));\
+  };\
+  template <GMOCK_INTERNAL_DECL_##template_params\
+            GMOCK_INTERNAL_DECL_TYPE_##value_params>\
+  inline GMOCK_ACTION_CLASS_(name, value_params)<\
+      GMOCK_INTERNAL_LIST_##template_params\
+      GMOCK_INTERNAL_LIST_TYPE_##value_params> name(\
+          GMOCK_INTERNAL_DECL_##value_params) {\
+    return GMOCK_ACTION_CLASS_(name, value_params)<\
+        GMOCK_INTERNAL_LIST_##template_params\
+        GMOCK_INTERNAL_LIST_TYPE_##value_params>(\
+            GMOCK_INTERNAL_LIST_##value_params);\
+  }\
+  template <GMOCK_INTERNAL_DECL_##template_params\
+            GMOCK_INTERNAL_DECL_TYPE_##value_params>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type,\
+      typename arg3_type, typename arg4_type, typename arg5_type,\
+      typename arg6_type, typename arg7_type, typename arg8_type,\
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      GMOCK_ACTION_CLASS_(name, value_params)<\
+          GMOCK_INTERNAL_LIST_##template_params\
+          GMOCK_INTERNAL_LIST_TYPE_##value_params>::gmock_Impl<F>::\
+              gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION(name)\
+  class name##Action {\
+   public:\
+    name##Action() {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl() {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>());\
+    }\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##Action);\
+  };\
+  inline name##Action name() {\
+    return name##Action();\
+  }\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##Action::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P(name, p0)\
+  template <typename p0##_type>\
+  class name##ActionP {\
+   public:\
+    name##ActionP(p0##_type gmock_p0) : p0(gmock_p0) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      explicit gmock_Impl(p0##_type gmock_p0) : p0(gmock_p0) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0));\
+    }\
+    p0##_type p0;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP);\
+  };\
+  template <typename p0##_type>\
+  inline name##ActionP<p0##_type> name(p0##_type p0) {\
+    return name##ActionP<p0##_type>(p0);\
+  }\
+  template <typename p0##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP<p0##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P2(name, p0, p1)\
+  template <typename p0##_type, typename p1##_type>\
+  class name##ActionP2 {\
+   public:\
+    name##ActionP2(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \
+        p1(gmock_p1) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \
+          p1(gmock_p1) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP2);\
+  };\
+  template <typename p0##_type, typename p1##_type>\
+  inline name##ActionP2<p0##_type, p1##_type> name(p0##_type p0, \
+      p1##_type p1) {\
+    return name##ActionP2<p0##_type, p1##_type>(p0, p1);\
+  }\
+  template <typename p0##_type, typename p1##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP2<p0##_type, p1##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P3(name, p0, p1, p2)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  class name##ActionP3 {\
+   public:\
+    name##ActionP3(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, \
+          p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP3);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  inline name##ActionP3<p0##_type, p1##_type, p2##_type> name(p0##_type p0, \
+      p1##_type p1, p2##_type p2) {\
+    return name##ActionP3<p0##_type, p1##_type, p2##_type>(p0, p1, p2);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP3<p0##_type, p1##_type, \
+          p2##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P4(name, p0, p1, p2, p3)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  class name##ActionP4 {\
+   public:\
+    name##ActionP4(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+          p3(gmock_p3) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP4);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  inline name##ActionP4<p0##_type, p1##_type, p2##_type, \
+      p3##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
+      p3##_type p3) {\
+    return name##ActionP4<p0##_type, p1##_type, p2##_type, p3##_type>(p0, p1, \
+        p2, p3);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP4<p0##_type, p1##_type, p2##_type, \
+          p3##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P5(name, p0, p1, p2, p3, p4)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  class name##ActionP5 {\
+   public:\
+    name##ActionP5(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, \
+        p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), \
+          p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP5);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  inline name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4) {\
+    return name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type>(p0, p1, p2, p3, p4);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+          p4##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P6(name, p0, p1, p2, p3, p4, p5)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  class name##ActionP6 {\
+   public:\
+    name##ActionP6(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, \
+          p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+          p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP6);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  inline name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
+      p3##_type p3, p4##_type p4, p5##_type p5) {\
+    return name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type>(p0, p1, p2, p3, p4, p5);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+          p5##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P7(name, p0, p1, p2, p3, p4, p5, p6)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  class name##ActionP7 {\
+   public:\
+    name##ActionP7(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), \
+        p6(gmock_p6) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+          p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
+          p6));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP7);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  inline name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type> name(p0##_type p0, p1##_type p1, \
+      p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
+      p6##_type p6) {\
+    return name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type>(p0, p1, p2, p3, p4, p5, p6);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+          p5##_type, p6##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P8(name, p0, p1, p2, p3, p4, p5, p6, p7)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  class name##ActionP8 {\
+   public:\
+    name##ActionP8(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, \
+        p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+        p7(gmock_p7) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), \
+          p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), \
+          p5(gmock_p5), p6(gmock_p6), p7(gmock_p7) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
+          p6, p7));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP8);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  inline name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type> name(p0##_type p0, \
+      p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
+      p6##_type p6, p7##_type p7) {\
+    return name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type>(p0, p1, p2, p3, p4, p5, \
+        p6, p7);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+          p5##_type, p6##_type, \
+          p7##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  class name##ActionP9 {\
+   public:\
+    name##ActionP9(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
+        p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+        p8(gmock_p8) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7, \
+          p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+          p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+          p7(gmock_p7), p8(gmock_p8) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+      p8##_type p8;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
+          p6, p7, p8));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+    p8##_type p8;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP9);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  inline name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type, \
+      p8##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, \
+      p8##_type p8) {\
+    return name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type, p8##_type>(p0, p1, p2, \
+        p3, p4, p5, p6, p7, p8);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+          p5##_type, p6##_type, p7##_type, \
+          p8##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+#define ACTION_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  class name##ActionP10 {\
+   public:\
+    name##ActionP10(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
+        p8##_type gmock_p8, p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+        p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\
+    template <typename F>\
+    class gmock_Impl : public ::testing::ActionInterface<F> {\
+     public:\
+      typedef F function_type;\
+      typedef typename ::testing::internal::Function<F>::Result return_type;\
+      typedef typename ::testing::internal::Function<F>::ArgumentTuple\
+          args_type;\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \
+          p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+          p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+          p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\
+      virtual return_type Perform(const args_type& args) {\
+        return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
+            Perform(this, args);\
+      }\
+      template <typename arg0_type, typename arg1_type, typename arg2_type, \
+          typename arg3_type, typename arg4_type, typename arg5_type, \
+          typename arg6_type, typename arg7_type, typename arg8_type, \
+          typename arg9_type>\
+      return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
+          arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
+          arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
+          arg9_type arg9) const;\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+      p8##_type p8;\
+      p9##_type p9;\
+     private:\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename F> operator ::testing::Action<F>() const {\
+      return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
+          p6, p7, p8, p9));\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+    p8##_type p8;\
+    p9##_type p9;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##ActionP10);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  inline name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, \
+      p9##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \
+      p9##_type p9) {\
+    return name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, p9##_type>(p0, \
+        p1, p2, p3, p4, p5, p6, p7, p8, p9);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  template <typename F>\
+  template <typename arg0_type, typename arg1_type, typename arg2_type, \
+      typename arg3_type, typename arg4_type, typename arg5_type, \
+      typename arg6_type, typename arg7_type, typename arg8_type, \
+      typename arg9_type>\
+  typename ::testing::internal::Function<F>::Result\
+      name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+          p5##_type, p6##_type, p7##_type, p8##_type, \
+          p9##_type>::gmock_Impl<F>::gmock_PerformImpl(\
+          GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
+
+// TODO(wan@google.com): move the following to a different .h file
+// such that we don't have to run 'pump' every time the code is
+// updated.
+namespace testing {
+
+// The ACTION*() macros trigger warning C4100 (unreferenced formal
+// parameter) in MSVC with -W4.  Unfortunately they cannot be fixed in
+// the macro definition, as the warnings are generated when the macro
+// is expanded and macro expansion cannot contain #pragma.  Therefore
+// we suppress them here.
+#ifdef _MSC_VER
+# pragma warning(push)
+# pragma warning(disable:4100)
+#endif
+
+// Various overloads for InvokeArgument<N>().
+//
+// The InvokeArgument<N>(a1, a2, ..., a_k) action invokes the N-th
+// (0-based) argument, which must be a k-ary callable, of the mock
+// function, with arguments a1, a2, ..., a_k.
+//
+// Notes:
+//
+//   1. The arguments are passed by value by default.  If you need to
+//   pass an argument by reference, wrap it inside ByRef().  For
+//   example,
+//
+//     InvokeArgument<1>(5, string("Hello"), ByRef(foo))
+//
+//   passes 5 and string("Hello") by value, and passes foo by
+//   reference.
+//
+//   2. If the callable takes an argument by reference but ByRef() is
+//   not used, it will receive the reference to a copy of the value,
+//   instead of the original value.  For example, when the 0-th
+//   argument of the mock function takes a const string&, the action
+//
+//     InvokeArgument<0>(string("Hello"))
+//
+//   makes a copy of the temporary string("Hello") object and passes a
+//   reference of the copy, instead of the original temporary object,
+//   to the callable.  This makes it easy for a user to define an
+//   InvokeArgument action from temporary values and have it performed
+//   later.
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_0_VALUE_PARAMS()) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args));
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_1_VALUE_PARAMS(p0)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_2_VALUE_PARAMS(p0, p1)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_3_VALUE_PARAMS(p0, p1, p2)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4, p5);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4, p5, p6);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4, p5, p6, p7);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4, p5, p6, p7, p8);
+}
+
+ACTION_TEMPLATE(InvokeArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) {
+  return internal::CallableHelper<return_type>::Call(
+      ::std::tr1::get<k>(args), p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);
+}
+
+// Various overloads for ReturnNew<T>().
+//
+// The ReturnNew<T>(a1, a2, ..., a_k) action returns a pointer to a new
+// instance of type T, constructed on the heap with constructor arguments
+// a1, a2, ..., and a_k. The caller assumes ownership of the returned value.
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_0_VALUE_PARAMS()) {
+  return new T();
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_1_VALUE_PARAMS(p0)) {
+  return new T(p0);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_2_VALUE_PARAMS(p0, p1)) {
+  return new T(p0, p1);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_3_VALUE_PARAMS(p0, p1, p2)) {
+  return new T(p0, p1, p2);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
+  return new T(p0, p1, p2, p3);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
+  return new T(p0, p1, p2, p3, p4);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
+  return new T(p0, p1, p2, p3, p4, p5);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) {
+  return new T(p0, p1, p2, p3, p4, p5, p6);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) {
+  return new T(p0, p1, p2, p3, p4, p5, p6, p7);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) {
+  return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8);
+}
+
+ACTION_TEMPLATE(ReturnNew,
+                HAS_1_TEMPLATE_PARAMS(typename, T),
+                AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) {
+  return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);
+}
+
+#ifdef _MSC_VER
+# pragma warning(pop)
+#endif
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_
+// This file was GENERATED by command:
+//     pump.py gmock-generated-function-mockers.h.pump
+// DO NOT EDIT BY HAND!!!
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements function mockers of various arities.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements the ON_CALL() and EXPECT_CALL() macros.
+//
+// A user can use the ON_CALL() macro to specify the default action of
+// a mock method.  The syntax is:
+//
+//   ON_CALL(mock_object, Method(argument-matchers))
+//       .With(multi-argument-matcher)
+//       .WillByDefault(action);
+//
+//  where the .With() clause is optional.
+//
+// A user can use the EXPECT_CALL() macro to specify an expectation on
+// a mock method.  The syntax is:
+//
+//   EXPECT_CALL(mock_object, Method(argument-matchers))
+//       .With(multi-argument-matchers)
+//       .Times(cardinality)
+//       .InSequence(sequences)
+//       .After(expectations)
+//       .WillOnce(action)
+//       .WillRepeatedly(action)
+//       .RetiresOnSaturation();
+//
+// where all clauses are optional, and .InSequence()/.After()/
+// .WillOnce() can appear any number of times.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
+
+#include <map>
+#include <set>
+#include <sstream>
+#include <string>
+#include <vector>
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some commonly used argument matchers.  More
+// matchers can be defined by the user implementing the
+// MatcherInterface<T> interface if necessary.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
+
+#include <algorithm>
+#include <limits>
+#include <ostream>  // NOLINT
+#include <sstream>
+#include <string>
+#include <utility>
+#include <vector>
+
+
+namespace testing {
+
+// To implement a matcher Foo for type T, define:
+//   1. a class FooMatcherImpl that implements the
+//      MatcherInterface<T> interface, and
+//   2. a factory function that creates a Matcher<T> object from a
+//      FooMatcherImpl*.
+//
+// The two-level delegation design makes it possible to allow a user
+// to write "v" instead of "Eq(v)" where a Matcher is expected, which
+// is impossible if we pass matchers by pointers.  It also eases
+// ownership management as Matcher objects can now be copied like
+// plain values.
+
+// MatchResultListener is an abstract class.  Its << operator can be
+// used by a matcher to explain why a value matches or doesn't match.
+//
+// TODO(wan@google.com): add method
+//   bool InterestedInWhy(bool result) const;
+// to indicate whether the listener is interested in why the match
+// result is 'result'.
+class MatchResultListener {
+ public:
+  // Creates a listener object with the given underlying ostream.  The
+  // listener does not own the ostream.
+  explicit MatchResultListener(::std::ostream* os) : stream_(os) {}
+  virtual ~MatchResultListener() = 0;  // Makes this class abstract.
+
+  // Streams x to the underlying ostream; does nothing if the ostream
+  // is NULL.
+  template <typename T>
+  MatchResultListener& operator<<(const T& x) {
+    if (stream_ != NULL)
+      *stream_ << x;
+    return *this;
+  }
+
+  // Returns the underlying ostream.
+  ::std::ostream* stream() { return stream_; }
+
+  // Returns true iff the listener is interested in an explanation of
+  // the match result.  A matcher's MatchAndExplain() method can use
+  // this information to avoid generating the explanation when no one
+  // intends to hear it.
+  bool IsInterested() const { return stream_ != NULL; }
+
+ private:
+  ::std::ostream* const stream_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener);
+};
+
+inline MatchResultListener::~MatchResultListener() {
+}
+
+// The implementation of a matcher.
+template <typename T>
+class MatcherInterface {
+ public:
+  virtual ~MatcherInterface() {}
+
+  // Returns true iff the matcher matches x; also explains the match
+  // result to 'listener', in the form of a non-restrictive relative
+  // clause ("which ...", "whose ...", etc) that describes x.  For
+  // example, the MatchAndExplain() method of the Pointee(...) matcher
+  // should generate an explanation like "which points to ...".
+  //
+  // You should override this method when defining a new matcher.
+  //
+  // It's the responsibility of the caller (Google Mock) to guarantee
+  // that 'listener' is not NULL.  This helps to simplify a matcher's
+  // implementation when it doesn't care about the performance, as it
+  // can talk to 'listener' without checking its validity first.
+  // However, in order to implement dummy listeners efficiently,
+  // listener->stream() may be NULL.
+  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
+
+  // Describes this matcher to an ostream.  The function should print
+  // a verb phrase that describes the property a value matching this
+  // matcher should have.  The subject of the verb phrase is the value
+  // being matched.  For example, the DescribeTo() method of the Gt(7)
+  // matcher prints "is greater than 7".
+  virtual void DescribeTo(::std::ostream* os) const = 0;
+
+  // Describes the negation of this matcher to an ostream.  For
+  // example, if the description of this matcher is "is greater than
+  // 7", the negated description could be "is not greater than 7".
+  // You are not required to override this when implementing
+  // MatcherInterface, but it is highly advised so that your matcher
+  // can produce good error messages.
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "not (";
+    DescribeTo(os);
+    *os << ")";
+  }
+};
+
+namespace internal {
+
+// A match result listener that ignores the explanation.
+class DummyMatchResultListener : public MatchResultListener {
+ public:
+  DummyMatchResultListener() : MatchResultListener(NULL) {}
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener);
+};
+
+// A match result listener that forwards the explanation to a given
+// ostream.  The difference between this and MatchResultListener is
+// that the former is concrete.
+class StreamMatchResultListener : public MatchResultListener {
+ public:
+  explicit StreamMatchResultListener(::std::ostream* os)
+      : MatchResultListener(os) {}
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener);
+};
+
+// A match result listener that stores the explanation in a string.
+class StringMatchResultListener : public MatchResultListener {
+ public:
+  StringMatchResultListener() : MatchResultListener(&ss_) {}
+
+  // Returns the explanation heard so far.
+  internal::string str() const { return ss_.str(); }
+
+ private:
+  ::std::stringstream ss_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(StringMatchResultListener);
+};
+
+// An internal class for implementing Matcher<T>, which will derive
+// from it.  We put functionalities common to all Matcher<T>
+// specializations here to avoid code duplication.
+template <typename T>
+class MatcherBase {
+ public:
+  // Returns true iff the matcher matches x; also explains the match
+  // result to 'listener'.
+  bool MatchAndExplain(T x, MatchResultListener* listener) const {
+    return impl_->MatchAndExplain(x, listener);
+  }
+
+  // Returns true iff this matcher matches x.
+  bool Matches(T x) const {
+    DummyMatchResultListener dummy;
+    return MatchAndExplain(x, &dummy);
+  }
+
+  // Describes this matcher to an ostream.
+  void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
+
+  // Describes the negation of this matcher to an ostream.
+  void DescribeNegationTo(::std::ostream* os) const {
+    impl_->DescribeNegationTo(os);
+  }
+
+  // Explains why x matches, or doesn't match, the matcher.
+  void ExplainMatchResultTo(T x, ::std::ostream* os) const {
+    StreamMatchResultListener listener(os);
+    MatchAndExplain(x, &listener);
+  }
+
+ protected:
+  MatcherBase() {}
+
+  // Constructs a matcher from its implementation.
+  explicit MatcherBase(const MatcherInterface<T>* impl)
+      : impl_(impl) {}
+
+  virtual ~MatcherBase() {}
+
+ private:
+  // shared_ptr (util/gtl/shared_ptr.h) and linked_ptr have similar
+  // interfaces.  The former dynamically allocates a chunk of memory
+  // to hold the reference count, while the latter tracks all
+  // references using a circular linked list without allocating
+  // memory.  It has been observed that linked_ptr performs better in
+  // typical scenarios.  However, shared_ptr can out-perform
+  // linked_ptr when there are many more uses of the copy constructor
+  // than the default constructor.
+  //
+  // If performance becomes a problem, we should see if using
+  // shared_ptr helps.
+  ::testing::internal::linked_ptr<const MatcherInterface<T> > impl_;
+};
+
+}  // namespace internal
+
+// A Matcher<T> is a copyable and IMMUTABLE (except by assignment)
+// object that can check whether a value of type T matches.  The
+// implementation of Matcher<T> is just a linked_ptr to const
+// MatcherInterface<T>, so copying is fairly cheap.  Don't inherit
+// from Matcher!
+template <typename T>
+class Matcher : public internal::MatcherBase<T> {
+ public:
+  // Constructs a null matcher.  Needed for storing Matcher objects in STL
+  // containers.  A default-constructed matcher is not yet initialized.  You
+  // cannot use it until a valid value has been assigned to it.
+  Matcher() {}
+
+  // Constructs a matcher from its implementation.
+  explicit Matcher(const MatcherInterface<T>* impl)
+      : internal::MatcherBase<T>(impl) {}
+
+  // Implicit constructor here allows people to write
+  // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
+  Matcher(T value);  // NOLINT
+};
+
+// The following two specializations allow the user to write str
+// instead of Eq(str) and "foo" instead of Eq("foo") when a string
+// matcher is expected.
+template <>
+class Matcher<const internal::string&>
+    : public internal::MatcherBase<const internal::string&> {
+ public:
+  Matcher() {}
+
+  explicit Matcher(const MatcherInterface<const internal::string&>* impl)
+      : internal::MatcherBase<const internal::string&>(impl) {}
+
+  // Allows the user to write str instead of Eq(str) sometimes, where
+  // str is a string object.
+  Matcher(const internal::string& s);  // NOLINT
+
+  // Allows the user to write "foo" instead of Eq("foo") sometimes.
+  Matcher(const char* s);  // NOLINT
+};
+
+template <>
+class Matcher<internal::string>
+    : public internal::MatcherBase<internal::string> {
+ public:
+  Matcher() {}
+
+  explicit Matcher(const MatcherInterface<internal::string>* impl)
+      : internal::MatcherBase<internal::string>(impl) {}
+
+  // Allows the user to write str instead of Eq(str) sometimes, where
+  // str is a string object.
+  Matcher(const internal::string& s);  // NOLINT
+
+  // Allows the user to write "foo" instead of Eq("foo") sometimes.
+  Matcher(const char* s);  // NOLINT
+};
+
+// The PolymorphicMatcher class template makes it easy to implement a
+// polymorphic matcher (i.e. a matcher that can match values of more
+// than one type, e.g. Eq(n) and NotNull()).
+//
+// To define a polymorphic matcher, a user should provide an Impl
+// class that has a DescribeTo() method and a DescribeNegationTo()
+// method, and define a member function (or member function template)
+//
+//   bool MatchAndExplain(const Value& value,
+//                        MatchResultListener* listener) const;
+//
+// See the definition of NotNull() for a complete example.
+template <class Impl>
+class PolymorphicMatcher {
+ public:
+  explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {}
+
+  // Returns a mutable reference to the underlying matcher
+  // implementation object.
+  Impl& mutable_impl() { return impl_; }
+
+  // Returns an immutable reference to the underlying matcher
+  // implementation object.
+  const Impl& impl() const { return impl_; }
+
+  template <typename T>
+  operator Matcher<T>() const {
+    return Matcher<T>(new MonomorphicImpl<T>(impl_));
+  }
+
+ private:
+  template <typename T>
+  class MonomorphicImpl : public MatcherInterface<T> {
+   public:
+    explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      impl_.DescribeTo(os);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      impl_.DescribeNegationTo(os);
+    }
+
+    virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
+      return impl_.MatchAndExplain(x, listener);
+    }
+
+   private:
+    const Impl impl_;
+
+    GTEST_DISALLOW_ASSIGN_(MonomorphicImpl);
+  };
+
+  Impl impl_;
+
+  GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher);
+};
+
+// Creates a matcher from its implementation.  This is easier to use
+// than the Matcher<T> constructor as it doesn't require you to
+// explicitly write the template argument, e.g.
+//
+//   MakeMatcher(foo);
+// vs
+//   Matcher<const string&>(foo);
+template <typename T>
+inline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
+  return Matcher<T>(impl);
+};
+
+// Creates a polymorphic matcher from its implementation.  This is
+// easier to use than the PolymorphicMatcher<Impl> constructor as it
+// doesn't require you to explicitly write the template argument, e.g.
+//
+//   MakePolymorphicMatcher(foo);
+// vs
+//   PolymorphicMatcher<TypeOfFoo>(foo);
+template <class Impl>
+inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {
+  return PolymorphicMatcher<Impl>(impl);
+}
+
+// In order to be safe and clear, casting between different matcher
+// types is done explicitly via MatcherCast<T>(m), which takes a
+// matcher m and returns a Matcher<T>.  It compiles only when T can be
+// statically converted to the argument type of m.
+template <typename T, typename M>
+Matcher<T> MatcherCast(M m);
+
+// Implements SafeMatcherCast().
+//
+// We use an intermediate class to do the actual safe casting as Nokia's
+// Symbian compiler cannot decide between
+// template <T, M> ... (M) and
+// template <T, U> ... (const Matcher<U>&)
+// for function templates but can for member function templates.
+template <typename T>
+class SafeMatcherCastImpl {
+ public:
+  // This overload handles polymorphic matchers only since monomorphic
+  // matchers are handled by the next one.
+  template <typename M>
+  static inline Matcher<T> Cast(M polymorphic_matcher) {
+    return Matcher<T>(polymorphic_matcher);
+  }
+
+  // This overload handles monomorphic matchers.
+  //
+  // In general, if type T can be implicitly converted to type U, we can
+  // safely convert a Matcher<U> to a Matcher<T> (i.e. Matcher is
+  // contravariant): just keep a copy of the original Matcher<U>, convert the
+  // argument from type T to U, and then pass it to the underlying Matcher<U>.
+  // The only exception is when U is a reference and T is not, as the
+  // underlying Matcher<U> may be interested in the argument's address, which
+  // is not preserved in the conversion from T to U.
+  template <typename U>
+  static inline Matcher<T> Cast(const Matcher<U>& matcher) {
+    // Enforce that T can be implicitly converted to U.
+    GTEST_COMPILE_ASSERT_((internal::ImplicitlyConvertible<T, U>::value),
+                          T_must_be_implicitly_convertible_to_U);
+    // Enforce that we are not converting a non-reference type T to a reference
+    // type U.
+    GTEST_COMPILE_ASSERT_(
+        internal::is_reference<T>::value || !internal::is_reference<U>::value,
+        cannot_convert_non_referentce_arg_to_reference);
+    // In case both T and U are arithmetic types, enforce that the
+    // conversion is not lossy.
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(T) RawT;
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(U) RawU;
+    const bool kTIsOther = GMOCK_KIND_OF_(RawT) == internal::kOther;
+    const bool kUIsOther = GMOCK_KIND_OF_(RawU) == internal::kOther;
+    GTEST_COMPILE_ASSERT_(
+        kTIsOther || kUIsOther ||
+        (internal::LosslessArithmeticConvertible<RawT, RawU>::value),
+        conversion_of_arithmetic_types_must_be_lossless);
+    return MatcherCast<T>(matcher);
+  }
+};
+
+template <typename T, typename M>
+inline Matcher<T> SafeMatcherCast(const M& polymorphic_matcher) {
+  return SafeMatcherCastImpl<T>::Cast(polymorphic_matcher);
+}
+
+// A<T>() returns a matcher that matches any value of type T.
+template <typename T>
+Matcher<T> A();
+
+// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION
+// and MUST NOT BE USED IN USER CODE!!!
+namespace internal {
+
+// If the explanation is not empty, prints it to the ostream.
+inline void PrintIfNotEmpty(const internal::string& explanation,
+                            std::ostream* os) {
+  if (explanation != "" && os != NULL) {
+    *os << ", " << explanation;
+  }
+}
+
+// Returns true if the given type name is easy to read by a human.
+// This is used to decide whether printing the type of a value might
+// be helpful.
+inline bool IsReadableTypeName(const string& type_name) {
+  // We consider a type name readable if it's short or doesn't contain
+  // a template or function type.
+  return (type_name.length() <= 20 ||
+          type_name.find_first_of("<(") == string::npos);
+}
+
+// Matches the value against the given matcher, prints the value and explains
+// the match result to the listener. Returns the match result.
+// 'listener' must not be NULL.
+// Value cannot be passed by const reference, because some matchers take a
+// non-const argument.
+template <typename Value, typename T>
+bool MatchPrintAndExplain(Value& value, const Matcher<T>& matcher,
+                          MatchResultListener* listener) {
+  if (!listener->IsInterested()) {
+    // If the listener is not interested, we do not need to construct the
+    // inner explanation.
+    return matcher.Matches(value);
+  }
+
+  StringMatchResultListener inner_listener;
+  const bool match = matcher.MatchAndExplain(value, &inner_listener);
+
+  UniversalPrint(value, listener->stream());
+#if GTEST_HAS_RTTI
+  const string& type_name = GetTypeName<Value>();
+  if (IsReadableTypeName(type_name))
+    *listener->stream() << " (of type " << type_name << ")";
+#endif
+  PrintIfNotEmpty(inner_listener.str(), listener->stream());
+
+  return match;
+}
+
+// An internal helper class for doing compile-time loop on a tuple's
+// fields.
+template <size_t N>
+class TuplePrefix {
+ public:
+  // TuplePrefix<N>::Matches(matcher_tuple, value_tuple) returns true
+  // iff the first N fields of matcher_tuple matches the first N
+  // fields of value_tuple, respectively.
+  template <typename MatcherTuple, typename ValueTuple>
+  static bool Matches(const MatcherTuple& matcher_tuple,
+                      const ValueTuple& value_tuple) {
+    using ::std::tr1::get;
+    return TuplePrefix<N - 1>::Matches(matcher_tuple, value_tuple)
+        && get<N - 1>(matcher_tuple).Matches(get<N - 1>(value_tuple));
+  }
+
+  // TuplePrefix<N>::ExplainMatchFailuresTo(matchers, values, os)
+  // describes failures in matching the first N fields of matchers
+  // against the first N fields of values.  If there is no failure,
+  // nothing will be streamed to os.
+  template <typename MatcherTuple, typename ValueTuple>
+  static void ExplainMatchFailuresTo(const MatcherTuple& matchers,
+                                     const ValueTuple& values,
+                                     ::std::ostream* os) {
+    using ::std::tr1::tuple_element;
+    using ::std::tr1::get;
+
+    // First, describes failures in the first N - 1 fields.
+    TuplePrefix<N - 1>::ExplainMatchFailuresTo(matchers, values, os);
+
+    // Then describes the failure (if any) in the (N - 1)-th (0-based)
+    // field.
+    typename tuple_element<N - 1, MatcherTuple>::type matcher =
+        get<N - 1>(matchers);
+    typedef typename tuple_element<N - 1, ValueTuple>::type Value;
+    Value value = get<N - 1>(values);
+    StringMatchResultListener listener;
+    if (!matcher.MatchAndExplain(value, &listener)) {
+      // TODO(wan): include in the message the name of the parameter
+      // as used in MOCK_METHOD*() when possible.
+      *os << "  Expected arg #" << N - 1 << ": ";
+      get<N - 1>(matchers).DescribeTo(os);
+      *os << "\n           Actual: ";
+      // We remove the reference in type Value to prevent the
+      // universal printer from printing the address of value, which
+      // isn't interesting to the user most of the time.  The
+      // matcher's MatchAndExplain() method handles the case when
+      // the address is interesting.
+      internal::UniversalPrint(value, os);
+      PrintIfNotEmpty(listener.str(), os);
+      *os << "\n";
+    }
+  }
+};
+
+// The base case.
+template <>
+class TuplePrefix<0> {
+ public:
+  template <typename MatcherTuple, typename ValueTuple>
+  static bool Matches(const MatcherTuple& /* matcher_tuple */,
+                      const ValueTuple& /* value_tuple */) {
+    return true;
+  }
+
+  template <typename MatcherTuple, typename ValueTuple>
+  static void ExplainMatchFailuresTo(const MatcherTuple& /* matchers */,
+                                     const ValueTuple& /* values */,
+                                     ::std::ostream* /* os */) {}
+};
+
+// TupleMatches(matcher_tuple, value_tuple) returns true iff all
+// matchers in matcher_tuple match the corresponding fields in
+// value_tuple.  It is a compiler error if matcher_tuple and
+// value_tuple have different number of fields or incompatible field
+// types.
+template <typename MatcherTuple, typename ValueTuple>
+bool TupleMatches(const MatcherTuple& matcher_tuple,
+                  const ValueTuple& value_tuple) {
+  using ::std::tr1::tuple_size;
+  // Makes sure that matcher_tuple and value_tuple have the same
+  // number of fields.
+  GTEST_COMPILE_ASSERT_(tuple_size<MatcherTuple>::value ==
+                        tuple_size<ValueTuple>::value,
+                        matcher_and_value_have_different_numbers_of_fields);
+  return TuplePrefix<tuple_size<ValueTuple>::value>::
+      Matches(matcher_tuple, value_tuple);
+}
+
+// Describes failures in matching matchers against values.  If there
+// is no failure, nothing will be streamed to os.
+template <typename MatcherTuple, typename ValueTuple>
+void ExplainMatchFailureTupleTo(const MatcherTuple& matchers,
+                                const ValueTuple& values,
+                                ::std::ostream* os) {
+  using ::std::tr1::tuple_size;
+  TuplePrefix<tuple_size<MatcherTuple>::value>::ExplainMatchFailuresTo(
+      matchers, values, os);
+}
+
+// The MatcherCastImpl class template is a helper for implementing
+// MatcherCast().  We need this helper in order to partially
+// specialize the implementation of MatcherCast() (C++ allows
+// class/struct templates to be partially specialized, but not
+// function templates.).
+
+// This general version is used when MatcherCast()'s argument is a
+// polymorphic matcher (i.e. something that can be converted to a
+// Matcher but is not one yet; for example, Eq(value)).
+template <typename T, typename M>
+class MatcherCastImpl {
+ public:
+  static Matcher<T> Cast(M polymorphic_matcher) {
+    return Matcher<T>(polymorphic_matcher);
+  }
+};
+
+// This more specialized version is used when MatcherCast()'s argument
+// is already a Matcher.  This only compiles when type T can be
+// statically converted to type U.
+template <typename T, typename U>
+class MatcherCastImpl<T, Matcher<U> > {
+ public:
+  static Matcher<T> Cast(const Matcher<U>& source_matcher) {
+    return Matcher<T>(new Impl(source_matcher));
+  }
+
+ private:
+  class Impl : public MatcherInterface<T> {
+   public:
+    explicit Impl(const Matcher<U>& source_matcher)
+        : source_matcher_(source_matcher) {}
+
+    // We delegate the matching logic to the source matcher.
+    virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
+      return source_matcher_.MatchAndExplain(static_cast<U>(x), listener);
+    }
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      source_matcher_.DescribeTo(os);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      source_matcher_.DescribeNegationTo(os);
+    }
+
+   private:
+    const Matcher<U> source_matcher_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+};
+
+// This even more specialized version is used for efficiently casting
+// a matcher to its own type.
+template <typename T>
+class MatcherCastImpl<T, Matcher<T> > {
+ public:
+  static Matcher<T> Cast(const Matcher<T>& matcher) { return matcher; }
+};
+
+// Implements A<T>().
+template <typename T>
+class AnyMatcherImpl : public MatcherInterface<T> {
+ public:
+  virtual bool MatchAndExplain(
+      T /* x */, MatchResultListener* /* listener */) const { return true; }
+  virtual void DescribeTo(::std::ostream* os) const { *os << "is anything"; }
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    // This is mostly for completeness' safe, as it's not very useful
+    // to write Not(A<bool>()).  However we cannot completely rule out
+    // such a possibility, and it doesn't hurt to be prepared.
+    *os << "never matches";
+  }
+};
+
+// Implements _, a matcher that matches any value of any
+// type.  This is a polymorphic matcher, so we need a template type
+// conversion operator to make it appearing as a Matcher<T> for any
+// type T.
+class AnythingMatcher {
+ public:
+  template <typename T>
+  operator Matcher<T>() const { return A<T>(); }
+};
+
+// Implements a matcher that compares a given value with a
+// pre-supplied value using one of the ==, <=, <, etc, operators.  The
+// two values being compared don't have to have the same type.
+//
+// The matcher defined here is polymorphic (for example, Eq(5) can be
+// used to match an int, a short, a double, etc).  Therefore we use
+// a template type conversion operator in the implementation.
+//
+// We define this as a macro in order to eliminate duplicated source
+// code.
+//
+// The following template definition assumes that the Rhs parameter is
+// a "bare" type (i.e. neither 'const T' nor 'T&').
+#define GMOCK_IMPLEMENT_COMPARISON_MATCHER_( \
+    name, op, relation, negated_relation) \
+  template <typename Rhs> class name##Matcher { \
+   public: \
+    explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \
+    template <typename Lhs> \
+    operator Matcher<Lhs>() const { \
+      return MakeMatcher(new Impl<Lhs>(rhs_)); \
+    } \
+   private: \
+    template <typename Lhs> \
+    class Impl : public MatcherInterface<Lhs> { \
+     public: \
+      explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \
+      virtual bool MatchAndExplain(\
+          Lhs lhs, MatchResultListener* /* listener */) const { \
+        return lhs op rhs_; \
+      } \
+      virtual void DescribeTo(::std::ostream* os) const { \
+        *os << relation  " "; \
+        UniversalPrint(rhs_, os); \
+      } \
+      virtual void DescribeNegationTo(::std::ostream* os) const { \
+        *os << negated_relation  " "; \
+        UniversalPrint(rhs_, os); \
+      } \
+     private: \
+      Rhs rhs_; \
+      GTEST_DISALLOW_ASSIGN_(Impl); \
+    }; \
+    Rhs rhs_; \
+    GTEST_DISALLOW_ASSIGN_(name##Matcher); \
+  }
+
+// Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
+// respectively.
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Eq, ==, "is equal to", "isn't equal to");
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "is >=", "isn't >=");
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Gt, >, "is >", "isn't >");
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Le, <=, "is <=", "isn't <=");
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Lt, <, "is <", "isn't <");
+GMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ne, !=, "isn't equal to", "is equal to");
+
+#undef GMOCK_IMPLEMENT_COMPARISON_MATCHER_
+
+// Implements the polymorphic IsNull() matcher, which matches any raw or smart
+// pointer that is NULL.
+class IsNullMatcher {
+ public:
+  template <typename Pointer>
+  bool MatchAndExplain(const Pointer& p,
+                       MatchResultListener* /* listener */) const {
+    return GetRawPointer(p) == NULL;
+  }
+
+  void DescribeTo(::std::ostream* os) const { *os << "is NULL"; }
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "isn't NULL";
+  }
+};
+
+// Implements the polymorphic NotNull() matcher, which matches any raw or smart
+// pointer that is not NULL.
+class NotNullMatcher {
+ public:
+  template <typename Pointer>
+  bool MatchAndExplain(const Pointer& p,
+                       MatchResultListener* /* listener */) const {
+    return GetRawPointer(p) != NULL;
+  }
+
+  void DescribeTo(::std::ostream* os) const { *os << "isn't NULL"; }
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "is NULL";
+  }
+};
+
+// Ref(variable) matches any argument that is a reference to
+// 'variable'.  This matcher is polymorphic as it can match any
+// super type of the type of 'variable'.
+//
+// The RefMatcher template class implements Ref(variable).  It can
+// only be instantiated with a reference type.  This prevents a user
+// from mistakenly using Ref(x) to match a non-reference function
+// argument.  For example, the following will righteously cause a
+// compiler error:
+//
+//   int n;
+//   Matcher<int> m1 = Ref(n);   // This won't compile.
+//   Matcher<int&> m2 = Ref(n);  // This will compile.
+template <typename T>
+class RefMatcher;
+
+template <typename T>
+class RefMatcher<T&> {
+  // Google Mock is a generic framework and thus needs to support
+  // mocking any function types, including those that take non-const
+  // reference arguments.  Therefore the template parameter T (and
+  // Super below) can be instantiated to either a const type or a
+  // non-const type.
+ public:
+  // RefMatcher() takes a T& instead of const T&, as we want the
+  // compiler to catch using Ref(const_value) as a matcher for a
+  // non-const reference.
+  explicit RefMatcher(T& x) : object_(x) {}  // NOLINT
+
+  template <typename Super>
+  operator Matcher<Super&>() const {
+    // By passing object_ (type T&) to Impl(), which expects a Super&,
+    // we make sure that Super is a super type of T.  In particular,
+    // this catches using Ref(const_value) as a matcher for a
+    // non-const reference, as you cannot implicitly convert a const
+    // reference to a non-const reference.
+    return MakeMatcher(new Impl<Super>(object_));
+  }
+
+ private:
+  template <typename Super>
+  class Impl : public MatcherInterface<Super&> {
+   public:
+    explicit Impl(Super& x) : object_(x) {}  // NOLINT
+
+    // MatchAndExplain() takes a Super& (as opposed to const Super&)
+    // in order to match the interface MatcherInterface<Super&>.
+    virtual bool MatchAndExplain(
+        Super& x, MatchResultListener* listener) const {
+      *listener << "which is located @" << static_cast<const void*>(&x);
+      return &x == &object_;
+    }
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      *os << "references the variable ";
+      UniversalPrinter<Super&>::Print(object_, os);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      *os << "does not reference the variable ";
+      UniversalPrinter<Super&>::Print(object_, os);
+    }
+
+   private:
+    const Super& object_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  T& object_;
+
+  GTEST_DISALLOW_ASSIGN_(RefMatcher);
+};
+
+// Polymorphic helper functions for narrow and wide string matchers.
+inline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) {
+  return String::CaseInsensitiveCStringEquals(lhs, rhs);
+}
+
+inline bool CaseInsensitiveCStringEquals(const wchar_t* lhs,
+                                         const wchar_t* rhs) {
+  return String::CaseInsensitiveWideCStringEquals(lhs, rhs);
+}
+
+// String comparison for narrow or wide strings that can have embedded NUL
+// characters.
+template <typename StringType>
+bool CaseInsensitiveStringEquals(const StringType& s1,
+                                 const StringType& s2) {
+  // Are the heads equal?
+  if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {
+    return false;
+  }
+
+  // Skip the equal heads.
+  const typename StringType::value_type nul = 0;
+  const size_t i1 = s1.find(nul), i2 = s2.find(nul);
+
+  // Are we at the end of either s1 or s2?
+  if (i1 == StringType::npos || i2 == StringType::npos) {
+    return i1 == i2;
+  }
+
+  // Are the tails equal?
+  return CaseInsensitiveStringEquals(s1.substr(i1 + 1), s2.substr(i2 + 1));
+}
+
+// String matchers.
+
+// Implements equality-based string matchers like StrEq, StrCaseNe, and etc.
+template <typename StringType>
+class StrEqualityMatcher {
+ public:
+  typedef typename StringType::const_pointer ConstCharPointer;
+
+  StrEqualityMatcher(const StringType& str, bool expect_eq,
+                     bool case_sensitive)
+      : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
+
+  // When expect_eq_ is true, returns true iff s is equal to string_;
+  // otherwise returns true iff s is not equal to string_.
+  bool MatchAndExplain(ConstCharPointer s,
+                       MatchResultListener* listener) const {
+    if (s == NULL) {
+      return !expect_eq_;
+    }
+    return MatchAndExplain(StringType(s), listener);
+  }
+
+  bool MatchAndExplain(const StringType& s,
+                       MatchResultListener* /* listener */) const {
+    const bool eq = case_sensitive_ ? s == string_ :
+        CaseInsensitiveStringEquals(s, string_);
+    return expect_eq_ == eq;
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    DescribeToHelper(expect_eq_, os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    DescribeToHelper(!expect_eq_, os);
+  }
+
+ private:
+  void DescribeToHelper(bool expect_eq, ::std::ostream* os) const {
+    *os << (expect_eq ? "is " : "isn't ");
+    *os << "equal to ";
+    if (!case_sensitive_) {
+      *os << "(ignoring case) ";
+    }
+    UniversalPrint(string_, os);
+  }
+
+  const StringType string_;
+  const bool expect_eq_;
+  const bool case_sensitive_;
+
+  GTEST_DISALLOW_ASSIGN_(StrEqualityMatcher);
+};
+
+// Implements the polymorphic HasSubstr(substring) matcher, which
+// can be used as a Matcher<T> as long as T can be converted to a
+// string.
+template <typename StringType>
+class HasSubstrMatcher {
+ public:
+  typedef typename StringType::const_pointer ConstCharPointer;
+
+  explicit HasSubstrMatcher(const StringType& substring)
+      : substring_(substring) {}
+
+  // These overloaded methods allow HasSubstr(substring) to be used as a
+  // Matcher<T> as long as T can be converted to string.  Returns true
+  // iff s contains substring_ as a substring.
+  bool MatchAndExplain(ConstCharPointer s,
+                       MatchResultListener* listener) const {
+    return s != NULL && MatchAndExplain(StringType(s), listener);
+  }
+
+  bool MatchAndExplain(const StringType& s,
+                       MatchResultListener* /* listener */) const {
+    return s.find(substring_) != StringType::npos;
+  }
+
+  // Describes what this matcher matches.
+  void DescribeTo(::std::ostream* os) const {
+    *os << "has substring ";
+    UniversalPrint(substring_, os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "has no substring ";
+    UniversalPrint(substring_, os);
+  }
+
+ private:
+  const StringType substring_;
+
+  GTEST_DISALLOW_ASSIGN_(HasSubstrMatcher);
+};
+
+// Implements the polymorphic StartsWith(substring) matcher, which
+// can be used as a Matcher<T> as long as T can be converted to a
+// string.
+template <typename StringType>
+class StartsWithMatcher {
+ public:
+  typedef typename StringType::const_pointer ConstCharPointer;
+
+  explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) {
+  }
+
+  // These overloaded methods allow StartsWith(prefix) to be used as a
+  // Matcher<T> as long as T can be converted to string.  Returns true
+  // iff s starts with prefix_.
+  bool MatchAndExplain(ConstCharPointer s,
+                       MatchResultListener* listener) const {
+    return s != NULL && MatchAndExplain(StringType(s), listener);
+  }
+
+  bool MatchAndExplain(const StringType& s,
+                       MatchResultListener* /* listener */) const {
+    return s.length() >= prefix_.length() &&
+        s.substr(0, prefix_.length()) == prefix_;
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "starts with ";
+    UniversalPrint(prefix_, os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't start with ";
+    UniversalPrint(prefix_, os);
+  }
+
+ private:
+  const StringType prefix_;
+
+  GTEST_DISALLOW_ASSIGN_(StartsWithMatcher);
+};
+
+// Implements the polymorphic EndsWith(substring) matcher, which
+// can be used as a Matcher<T> as long as T can be converted to a
+// string.
+template <typename StringType>
+class EndsWithMatcher {
+ public:
+  typedef typename StringType::const_pointer ConstCharPointer;
+
+  explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {}
+
+  // These overloaded methods allow EndsWith(suffix) to be used as a
+  // Matcher<T> as long as T can be converted to string.  Returns true
+  // iff s ends with suffix_.
+  bool MatchAndExplain(ConstCharPointer s,
+                       MatchResultListener* listener) const {
+    return s != NULL && MatchAndExplain(StringType(s), listener);
+  }
+
+  bool MatchAndExplain(const StringType& s,
+                       MatchResultListener* /* listener */) const {
+    return s.length() >= suffix_.length() &&
+        s.substr(s.length() - suffix_.length()) == suffix_;
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "ends with ";
+    UniversalPrint(suffix_, os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't end with ";
+    UniversalPrint(suffix_, os);
+  }
+
+ private:
+  const StringType suffix_;
+
+  GTEST_DISALLOW_ASSIGN_(EndsWithMatcher);
+};
+
+// Implements polymorphic matchers MatchesRegex(regex) and
+// ContainsRegex(regex), which can be used as a Matcher<T> as long as
+// T can be converted to a string.
+class MatchesRegexMatcher {
+ public:
+  MatchesRegexMatcher(const RE* regex, bool full_match)
+      : regex_(regex), full_match_(full_match) {}
+
+  // These overloaded methods allow MatchesRegex(regex) to be used as
+  // a Matcher<T> as long as T can be converted to string.  Returns
+  // true iff s matches regular expression regex.  When full_match_ is
+  // true, a full match is done; otherwise a partial match is done.
+  bool MatchAndExplain(const char* s,
+                       MatchResultListener* listener) const {
+    return s != NULL && MatchAndExplain(internal::string(s), listener);
+  }
+
+  bool MatchAndExplain(const internal::string& s,
+                       MatchResultListener* /* listener */) const {
+    return full_match_ ? RE::FullMatch(s, *regex_) :
+        RE::PartialMatch(s, *regex_);
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << (full_match_ ? "matches" : "contains")
+        << " regular expression ";
+    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't " << (full_match_ ? "match" : "contain")
+        << " regular expression ";
+    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
+  }
+
+ private:
+  const internal::linked_ptr<const RE> regex_;
+  const bool full_match_;
+
+  GTEST_DISALLOW_ASSIGN_(MatchesRegexMatcher);
+};
+
+// Implements a matcher that compares the two fields of a 2-tuple
+// using one of the ==, <=, <, etc, operators.  The two fields being
+// compared don't have to have the same type.
+//
+// The matcher defined here is polymorphic (for example, Eq() can be
+// used to match a tuple<int, short>, a tuple<const long&, double>,
+// etc).  Therefore we use a template type conversion operator in the
+// implementation.
+//
+// We define this as a macro in order to eliminate duplicated source
+// code.
+#define GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(name, op, relation) \
+  class name##2Matcher { \
+   public: \
+    template <typename T1, typename T2> \
+    operator Matcher< ::std::tr1::tuple<T1, T2> >() const { \
+      return MakeMatcher(new Impl< ::std::tr1::tuple<T1, T2> >); \
+    } \
+    template <typename T1, typename T2> \
+    operator Matcher<const ::std::tr1::tuple<T1, T2>&>() const { \
+      return MakeMatcher(new Impl<const ::std::tr1::tuple<T1, T2>&>); \
+    } \
+   private: \
+    template <typename Tuple> \
+    class Impl : public MatcherInterface<Tuple> { \
+     public: \
+      virtual bool MatchAndExplain( \
+          Tuple args, \
+          MatchResultListener* /* listener */) const { \
+        return ::std::tr1::get<0>(args) op ::std::tr1::get<1>(args); \
+      } \
+      virtual void DescribeTo(::std::ostream* os) const { \
+        *os << "are " relation;                                 \
+      } \
+      virtual void DescribeNegationTo(::std::ostream* os) const { \
+        *os << "aren't " relation; \
+      } \
+    }; \
+  }
+
+// Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively.
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Eq, ==, "an equal pair");
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(
+    Ge, >=, "a pair where the first >= the second");
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(
+    Gt, >, "a pair where the first > the second");
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(
+    Le, <=, "a pair where the first <= the second");
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(
+    Lt, <, "a pair where the first < the second");
+GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ne, !=, "an unequal pair");
+
+#undef GMOCK_IMPLEMENT_COMPARISON2_MATCHER_
+
+// Implements the Not(...) matcher for a particular argument type T.
+// We do not nest it inside the NotMatcher class template, as that
+// will prevent different instantiations of NotMatcher from sharing
+// the same NotMatcherImpl<T> class.
+template <typename T>
+class NotMatcherImpl : public MatcherInterface<T> {
+ public:
+  explicit NotMatcherImpl(const Matcher<T>& matcher)
+      : matcher_(matcher) {}
+
+  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
+    return !matcher_.MatchAndExplain(x, listener);
+  }
+
+  virtual void DescribeTo(::std::ostream* os) const {
+    matcher_.DescribeNegationTo(os);
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    matcher_.DescribeTo(os);
+  }
+
+ private:
+  const Matcher<T> matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(NotMatcherImpl);
+};
+
+// Implements the Not(m) matcher, which matches a value that doesn't
+// match matcher m.
+template <typename InnerMatcher>
+class NotMatcher {
+ public:
+  explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
+
+  // This template type conversion operator allows Not(m) to be used
+  // to match any type m can match.
+  template <typename T>
+  operator Matcher<T>() const {
+    return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
+  }
+
+ private:
+  InnerMatcher matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(NotMatcher);
+};
+
+// Implements the AllOf(m1, m2) matcher for a particular argument type
+// T. We do not nest it inside the BothOfMatcher class template, as
+// that will prevent different instantiations of BothOfMatcher from
+// sharing the same BothOfMatcherImpl<T> class.
+template <typename T>
+class BothOfMatcherImpl : public MatcherInterface<T> {
+ public:
+  BothOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
+      : matcher1_(matcher1), matcher2_(matcher2) {}
+
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "(";
+    matcher1_.DescribeTo(os);
+    *os << ") and (";
+    matcher2_.DescribeTo(os);
+    *os << ")";
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "(";
+    matcher1_.DescribeNegationTo(os);
+    *os << ") or (";
+    matcher2_.DescribeNegationTo(os);
+    *os << ")";
+  }
+
+  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
+    // If either matcher1_ or matcher2_ doesn't match x, we only need
+    // to explain why one of them fails.
+    StringMatchResultListener listener1;
+    if (!matcher1_.MatchAndExplain(x, &listener1)) {
+      *listener << listener1.str();
+      return false;
+    }
+
+    StringMatchResultListener listener2;
+    if (!matcher2_.MatchAndExplain(x, &listener2)) {
+      *listener << listener2.str();
+      return false;
+    }
+
+    // Otherwise we need to explain why *both* of them match.
+    const internal::string s1 = listener1.str();
+    const internal::string s2 = listener2.str();
+
+    if (s1 == "") {
+      *listener << s2;
+    } else {
+      *listener << s1;
+      if (s2 != "") {
+        *listener << ", and " << s2;
+      }
+    }
+    return true;
+  }
+
+ private:
+  const Matcher<T> matcher1_;
+  const Matcher<T> matcher2_;
+
+  GTEST_DISALLOW_ASSIGN_(BothOfMatcherImpl);
+};
+
+// Used for implementing the AllOf(m_1, ..., m_n) matcher, which
+// matches a value that matches all of the matchers m_1, ..., and m_n.
+template <typename Matcher1, typename Matcher2>
+class BothOfMatcher {
+ public:
+  BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
+      : matcher1_(matcher1), matcher2_(matcher2) {}
+
+  // This template type conversion operator allows a
+  // BothOfMatcher<Matcher1, Matcher2> object to match any type that
+  // both Matcher1 and Matcher2 can match.
+  template <typename T>
+  operator Matcher<T>() const {
+    return Matcher<T>(new BothOfMatcherImpl<T>(SafeMatcherCast<T>(matcher1_),
+                                               SafeMatcherCast<T>(matcher2_)));
+  }
+
+ private:
+  Matcher1 matcher1_;
+  Matcher2 matcher2_;
+
+  GTEST_DISALLOW_ASSIGN_(BothOfMatcher);
+};
+
+// Implements the AnyOf(m1, m2) matcher for a particular argument type
+// T.  We do not nest it inside the AnyOfMatcher class template, as
+// that will prevent different instantiations of AnyOfMatcher from
+// sharing the same EitherOfMatcherImpl<T> class.
+template <typename T>
+class EitherOfMatcherImpl : public MatcherInterface<T> {
+ public:
+  EitherOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
+      : matcher1_(matcher1), matcher2_(matcher2) {}
+
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "(";
+    matcher1_.DescribeTo(os);
+    *os << ") or (";
+    matcher2_.DescribeTo(os);
+    *os << ")";
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "(";
+    matcher1_.DescribeNegationTo(os);
+    *os << ") and (";
+    matcher2_.DescribeNegationTo(os);
+    *os << ")";
+  }
+
+  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
+    // If either matcher1_ or matcher2_ matches x, we just need to
+    // explain why *one* of them matches.
+    StringMatchResultListener listener1;
+    if (matcher1_.MatchAndExplain(x, &listener1)) {
+      *listener << listener1.str();
+      return true;
+    }
+
+    StringMatchResultListener listener2;
+    if (matcher2_.MatchAndExplain(x, &listener2)) {
+      *listener << listener2.str();
+      return true;
+    }
+
+    // Otherwise we need to explain why *both* of them fail.
+    const internal::string s1 = listener1.str();
+    const internal::string s2 = listener2.str();
+
+    if (s1 == "") {
+      *listener << s2;
+    } else {
+      *listener << s1;
+      if (s2 != "") {
+        *listener << ", and " << s2;
+      }
+    }
+    return false;
+  }
+
+ private:
+  const Matcher<T> matcher1_;
+  const Matcher<T> matcher2_;
+
+  GTEST_DISALLOW_ASSIGN_(EitherOfMatcherImpl);
+};
+
+// Used for implementing the AnyOf(m_1, ..., m_n) matcher, which
+// matches a value that matches at least one of the matchers m_1, ...,
+// and m_n.
+template <typename Matcher1, typename Matcher2>
+class EitherOfMatcher {
+ public:
+  EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
+      : matcher1_(matcher1), matcher2_(matcher2) {}
+
+  // This template type conversion operator allows a
+  // EitherOfMatcher<Matcher1, Matcher2> object to match any type that
+  // both Matcher1 and Matcher2 can match.
+  template <typename T>
+  operator Matcher<T>() const {
+    return Matcher<T>(new EitherOfMatcherImpl<T>(
+        SafeMatcherCast<T>(matcher1_), SafeMatcherCast<T>(matcher2_)));
+  }
+
+ private:
+  Matcher1 matcher1_;
+  Matcher2 matcher2_;
+
+  GTEST_DISALLOW_ASSIGN_(EitherOfMatcher);
+};
+
+// Used for implementing Truly(pred), which turns a predicate into a
+// matcher.
+template <typename Predicate>
+class TrulyMatcher {
+ public:
+  explicit TrulyMatcher(Predicate pred) : predicate_(pred) {}
+
+  // This method template allows Truly(pred) to be used as a matcher
+  // for type T where T is the argument type of predicate 'pred'.  The
+  // argument is passed by reference as the predicate may be
+  // interested in the address of the argument.
+  template <typename T>
+  bool MatchAndExplain(T& x,  // NOLINT
+                       MatchResultListener* /* listener */) const {
+    // Without the if-statement, MSVC sometimes warns about converting
+    // a value to bool (warning 4800).
+    //
+    // We cannot write 'return !!predicate_(x);' as that doesn't work
+    // when predicate_(x) returns a class convertible to bool but
+    // having no operator!().
+    if (predicate_(x))
+      return true;
+    return false;
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "satisfies the given predicate";
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't satisfy the given predicate";
+  }
+
+ private:
+  Predicate predicate_;
+
+  GTEST_DISALLOW_ASSIGN_(TrulyMatcher);
+};
+
+// Used for implementing Matches(matcher), which turns a matcher into
+// a predicate.
+template <typename M>
+class MatcherAsPredicate {
+ public:
+  explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
+
+  // This template operator() allows Matches(m) to be used as a
+  // predicate on type T where m is a matcher on type T.
+  //
+  // The argument x is passed by reference instead of by value, as
+  // some matcher may be interested in its address (e.g. as in
+  // Matches(Ref(n))(x)).
+  template <typename T>
+  bool operator()(const T& x) const {
+    // We let matcher_ commit to a particular type here instead of
+    // when the MatcherAsPredicate object was constructed.  This
+    // allows us to write Matches(m) where m is a polymorphic matcher
+    // (e.g. Eq(5)).
+    //
+    // If we write Matcher<T>(matcher_).Matches(x) here, it won't
+    // compile when matcher_ has type Matcher<const T&>; if we write
+    // Matcher<const T&>(matcher_).Matches(x) here, it won't compile
+    // when matcher_ has type Matcher<T>; if we just write
+    // matcher_.Matches(x), it won't compile when matcher_ is
+    // polymorphic, e.g. Eq(5).
+    //
+    // MatcherCast<const T&>() is necessary for making the code work
+    // in all of the above situations.
+    return MatcherCast<const T&>(matcher_).Matches(x);
+  }
+
+ private:
+  M matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(MatcherAsPredicate);
+};
+
+// For implementing ASSERT_THAT() and EXPECT_THAT().  The template
+// argument M must be a type that can be converted to a matcher.
+template <typename M>
+class PredicateFormatterFromMatcher {
+ public:
+  explicit PredicateFormatterFromMatcher(const M& m) : matcher_(m) {}
+
+  // This template () operator allows a PredicateFormatterFromMatcher
+  // object to act as a predicate-formatter suitable for using with
+  // Google Test's EXPECT_PRED_FORMAT1() macro.
+  template <typename T>
+  AssertionResult operator()(const char* value_text, const T& x) const {
+    // We convert matcher_ to a Matcher<const T&> *now* instead of
+    // when the PredicateFormatterFromMatcher object was constructed,
+    // as matcher_ may be polymorphic (e.g. NotNull()) and we won't
+    // know which type to instantiate it to until we actually see the
+    // type of x here.
+    //
+    // We write MatcherCast<const T&>(matcher_) instead of
+    // Matcher<const T&>(matcher_), as the latter won't compile when
+    // matcher_ has type Matcher<T> (e.g. An<int>()).
+    const Matcher<const T&> matcher = MatcherCast<const T&>(matcher_);
+    StringMatchResultListener listener;
+    if (MatchPrintAndExplain(x, matcher, &listener))
+      return AssertionSuccess();
+
+    ::std::stringstream ss;
+    ss << "Value of: " << value_text << "\n"
+       << "Expected: ";
+    matcher.DescribeTo(&ss);
+    ss << "\n  Actual: " << listener.str();
+    return AssertionFailure() << ss.str();
+  }
+
+ private:
+  const M matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(PredicateFormatterFromMatcher);
+};
+
+// A helper function for converting a matcher to a predicate-formatter
+// without the user needing to explicitly write the type.  This is
+// used for implementing ASSERT_THAT() and EXPECT_THAT().
+template <typename M>
+inline PredicateFormatterFromMatcher<M>
+MakePredicateFormatterFromMatcher(const M& matcher) {
+  return PredicateFormatterFromMatcher<M>(matcher);
+}
+
+// Implements the polymorphic floating point equality matcher, which
+// matches two float values using ULP-based approximation.  The
+// template is meant to be instantiated with FloatType being either
+// float or double.
+template <typename FloatType>
+class FloatingEqMatcher {
+ public:
+  // Constructor for FloatingEqMatcher.
+  // The matcher's input will be compared with rhs.  The matcher treats two
+  // NANs as equal if nan_eq_nan is true.  Otherwise, under IEEE standards,
+  // equality comparisons between NANs will always return false.
+  FloatingEqMatcher(FloatType rhs, bool nan_eq_nan) :
+    rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
+
+  // Implements floating point equality matcher as a Matcher<T>.
+  template <typename T>
+  class Impl : public MatcherInterface<T> {
+   public:
+    Impl(FloatType rhs, bool nan_eq_nan) :
+      rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
+
+    virtual bool MatchAndExplain(T value,
+                                 MatchResultListener* /* listener */) const {
+      const FloatingPoint<FloatType> lhs(value), rhs(rhs_);
+
+      // Compares NaNs first, if nan_eq_nan_ is true.
+      if (nan_eq_nan_ && lhs.is_nan()) {
+        return rhs.is_nan();
+      }
+
+      return lhs.AlmostEquals(rhs);
+    }
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      // os->precision() returns the previously set precision, which we
+      // store to restore the ostream to its original configuration
+      // after outputting.
+      const ::std::streamsize old_precision = os->precision(
+          ::std::numeric_limits<FloatType>::digits10 + 2);
+      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
+        if (nan_eq_nan_) {
+          *os << "is NaN";
+        } else {
+          *os << "never matches";
+        }
+      } else {
+        *os << "is approximately " << rhs_;
+      }
+      os->precision(old_precision);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      // As before, get original precision.
+      const ::std::streamsize old_precision = os->precision(
+          ::std::numeric_limits<FloatType>::digits10 + 2);
+      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
+        if (nan_eq_nan_) {
+          *os << "isn't NaN";
+        } else {
+          *os << "is anything";
+        }
+      } else {
+        *os << "isn't approximately " << rhs_;
+      }
+      // Restore original precision.
+      os->precision(old_precision);
+    }
+
+   private:
+    const FloatType rhs_;
+    const bool nan_eq_nan_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  // The following 3 type conversion operators allow FloatEq(rhs) and
+  // NanSensitiveFloatEq(rhs) to be used as a Matcher<float>, a
+  // Matcher<const float&>, or a Matcher<float&>, but nothing else.
+  // (While Google's C++ coding style doesn't allow arguments passed
+  // by non-const reference, we may see them in code not conforming to
+  // the style.  Therefore Google Mock needs to support them.)
+  operator Matcher<FloatType>() const {
+    return MakeMatcher(new Impl<FloatType>(rhs_, nan_eq_nan_));
+  }
+
+  operator Matcher<const FloatType&>() const {
+    return MakeMatcher(new Impl<const FloatType&>(rhs_, nan_eq_nan_));
+  }
+
+  operator Matcher<FloatType&>() const {
+    return MakeMatcher(new Impl<FloatType&>(rhs_, nan_eq_nan_));
+  }
+ private:
+  const FloatType rhs_;
+  const bool nan_eq_nan_;
+
+  GTEST_DISALLOW_ASSIGN_(FloatingEqMatcher);
+};
+
+// Implements the Pointee(m) matcher for matching a pointer whose
+// pointee matches matcher m.  The pointer can be either raw or smart.
+template <typename InnerMatcher>
+class PointeeMatcher {
+ public:
+  explicit PointeeMatcher(const InnerMatcher& matcher) : matcher_(matcher) {}
+
+  // This type conversion operator template allows Pointee(m) to be
+  // used as a matcher for any pointer type whose pointee type is
+  // compatible with the inner matcher, where type Pointer can be
+  // either a raw pointer or a smart pointer.
+  //
+  // The reason we do this instead of relying on
+  // MakePolymorphicMatcher() is that the latter is not flexible
+  // enough for implementing the DescribeTo() method of Pointee().
+  template <typename Pointer>
+  operator Matcher<Pointer>() const {
+    return MakeMatcher(new Impl<Pointer>(matcher_));
+  }
+
+ private:
+  // The monomorphic implementation that works for a particular pointer type.
+  template <typename Pointer>
+  class Impl : public MatcherInterface<Pointer> {
+   public:
+    typedef typename PointeeOf<GTEST_REMOVE_CONST_(  // NOLINT
+        GTEST_REMOVE_REFERENCE_(Pointer))>::type Pointee;
+
+    explicit Impl(const InnerMatcher& matcher)
+        : matcher_(MatcherCast<const Pointee&>(matcher)) {}
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      *os << "points to a value that ";
+      matcher_.DescribeTo(os);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      *os << "does not point to a value that ";
+      matcher_.DescribeTo(os);
+    }
+
+    virtual bool MatchAndExplain(Pointer pointer,
+                                 MatchResultListener* listener) const {
+      if (GetRawPointer(pointer) == NULL)
+        return false;
+
+      *listener << "which points to ";
+      return MatchPrintAndExplain(*pointer, matcher_, listener);
+    }
+
+   private:
+    const Matcher<const Pointee&> matcher_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+  const InnerMatcher matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(PointeeMatcher);
+};
+
+// Implements the Field() matcher for matching a field (i.e. member
+// variable) of an object.
+template <typename Class, typename FieldType>
+class FieldMatcher {
+ public:
+  FieldMatcher(FieldType Class::*field,
+               const Matcher<const FieldType&>& matcher)
+      : field_(field), matcher_(matcher) {}
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "is an object whose given field ";
+    matcher_.DescribeTo(os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "is an object whose given field ";
+    matcher_.DescribeNegationTo(os);
+  }
+
+  template <typename T>
+  bool MatchAndExplain(const T& value, MatchResultListener* listener) const {
+    return MatchAndExplainImpl(
+        typename ::testing::internal::
+            is_pointer<GTEST_REMOVE_CONST_(T)>::type(),
+        value, listener);
+  }
+
+ private:
+  // The first argument of MatchAndExplainImpl() is needed to help
+  // Symbian's C++ compiler choose which overload to use.  Its type is
+  // true_type iff the Field() matcher is used to match a pointer.
+  bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj,
+                           MatchResultListener* listener) const {
+    *listener << "whose given field is ";
+    return MatchPrintAndExplain(obj.*field_, matcher_, listener);
+  }
+
+  bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,
+                           MatchResultListener* listener) const {
+    if (p == NULL)
+      return false;
+
+    *listener << "which points to an object ";
+    // Since *p has a field, it must be a class/struct/union type and
+    // thus cannot be a pointer.  Therefore we pass false_type() as
+    // the first argument.
+    return MatchAndExplainImpl(false_type(), *p, listener);
+  }
+
+  const FieldType Class::*field_;
+  const Matcher<const FieldType&> matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(FieldMatcher);
+};
+
+// Implements the Property() matcher for matching a property
+// (i.e. return value of a getter method) of an object.
+template <typename Class, typename PropertyType>
+class PropertyMatcher {
+ public:
+  // The property may have a reference type, so 'const PropertyType&'
+  // may cause double references and fail to compile.  That's why we
+  // need GTEST_REFERENCE_TO_CONST, which works regardless of
+  // PropertyType being a reference or not.
+  typedef GTEST_REFERENCE_TO_CONST_(PropertyType) RefToConstProperty;
+
+  PropertyMatcher(PropertyType (Class::*property)() const,
+                  const Matcher<RefToConstProperty>& matcher)
+      : property_(property), matcher_(matcher) {}
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "is an object whose given property ";
+    matcher_.DescribeTo(os);
+  }
+
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "is an object whose given property ";
+    matcher_.DescribeNegationTo(os);
+  }
+
+  template <typename T>
+  bool MatchAndExplain(const T&value, MatchResultListener* listener) const {
+    return MatchAndExplainImpl(
+        typename ::testing::internal::
+            is_pointer<GTEST_REMOVE_CONST_(T)>::type(),
+        value, listener);
+  }
+
+ private:
+  // The first argument of MatchAndExplainImpl() is needed to help
+  // Symbian's C++ compiler choose which overload to use.  Its type is
+  // true_type iff the Property() matcher is used to match a pointer.
+  bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj,
+                           MatchResultListener* listener) const {
+    *listener << "whose given property is ";
+    // Cannot pass the return value (for example, int) to MatchPrintAndExplain,
+    // which takes a non-const reference as argument.
+    RefToConstProperty result = (obj.*property_)();
+    return MatchPrintAndExplain(result, matcher_, listener);
+  }
+
+  bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,
+                           MatchResultListener* listener) const {
+    if (p == NULL)
+      return false;
+
+    *listener << "which points to an object ";
+    // Since *p has a property method, it must be a class/struct/union
+    // type and thus cannot be a pointer.  Therefore we pass
+    // false_type() as the first argument.
+    return MatchAndExplainImpl(false_type(), *p, listener);
+  }
+
+  PropertyType (Class::*property_)() const;
+  const Matcher<RefToConstProperty> matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(PropertyMatcher);
+};
+
+// Type traits specifying various features of different functors for ResultOf.
+// The default template specifies features for functor objects.
+// Functor classes have to typedef argument_type and result_type
+// to be compatible with ResultOf.
+template <typename Functor>
+struct CallableTraits {
+  typedef typename Functor::result_type ResultType;
+  typedef Functor StorageType;
+
+  static void CheckIsValid(Functor /* functor */) {}
+  template <typename T>
+  static ResultType Invoke(Functor f, T arg) { return f(arg); }
+};
+
+// Specialization for function pointers.
+template <typename ArgType, typename ResType>
+struct CallableTraits<ResType(*)(ArgType)> {
+  typedef ResType ResultType;
+  typedef ResType(*StorageType)(ArgType);
+
+  static void CheckIsValid(ResType(*f)(ArgType)) {
+    GTEST_CHECK_(f != NULL)
+        << "NULL function pointer is passed into ResultOf().";
+  }
+  template <typename T>
+  static ResType Invoke(ResType(*f)(ArgType), T arg) {
+    return (*f)(arg);
+  }
+};
+
+// Implements the ResultOf() matcher for matching a return value of a
+// unary function of an object.
+template <typename Callable>
+class ResultOfMatcher {
+ public:
+  typedef typename CallableTraits<Callable>::ResultType ResultType;
+
+  ResultOfMatcher(Callable callable, const Matcher<ResultType>& matcher)
+      : callable_(callable), matcher_(matcher) {
+    CallableTraits<Callable>::CheckIsValid(callable_);
+  }
+
+  template <typename T>
+  operator Matcher<T>() const {
+    return Matcher<T>(new Impl<T>(callable_, matcher_));
+  }
+
+ private:
+  typedef typename CallableTraits<Callable>::StorageType CallableStorageType;
+
+  template <typename T>
+  class Impl : public MatcherInterface<T> {
+   public:
+    Impl(CallableStorageType callable, const Matcher<ResultType>& matcher)
+        : callable_(callable), matcher_(matcher) {}
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      *os << "is mapped by the given callable to a value that ";
+      matcher_.DescribeTo(os);
+    }
+
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      *os << "is mapped by the given callable to a value that ";
+      matcher_.DescribeNegationTo(os);
+    }
+
+    virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const {
+      *listener << "which is mapped by the given callable to ";
+      // Cannot pass the return value (for example, int) to
+      // MatchPrintAndExplain, which takes a non-const reference as argument.
+      ResultType result =
+          CallableTraits<Callable>::template Invoke<T>(callable_, obj);
+      return MatchPrintAndExplain(result, matcher_, listener);
+    }
+
+   private:
+    // Functors often define operator() as non-const method even though
+    // they are actualy stateless. But we need to use them even when
+    // 'this' is a const pointer. It's the user's responsibility not to
+    // use stateful callables with ResultOf(), which does't guarantee
+    // how many times the callable will be invoked.
+    mutable CallableStorageType callable_;
+    const Matcher<ResultType> matcher_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };  // class Impl
+
+  const CallableStorageType callable_;
+  const Matcher<ResultType> matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(ResultOfMatcher);
+};
+
+// Implements an equality matcher for any STL-style container whose elements
+// support ==. This matcher is like Eq(), but its failure explanations provide
+// more detailed information that is useful when the container is used as a set.
+// The failure message reports elements that are in one of the operands but not
+// the other. The failure messages do not report duplicate or out-of-order
+// elements in the containers (which don't properly matter to sets, but can
+// occur if the containers are vectors or lists, for example).
+//
+// Uses the container's const_iterator, value_type, operator ==,
+// begin(), and end().
+template <typename Container>
+class ContainerEqMatcher {
+ public:
+  typedef internal::StlContainerView<Container> View;
+  typedef typename View::type StlContainer;
+  typedef typename View::const_reference StlContainerReference;
+
+  // We make a copy of rhs in case the elements in it are modified
+  // after this matcher is created.
+  explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
+    // Makes sure the user doesn't instantiate this class template
+    // with a const or reference type.
+    (void)testing::StaticAssertTypeEq<Container,
+        GTEST_REMOVE_REFERENCE_AND_CONST_(Container)>();
+  }
+
+  void DescribeTo(::std::ostream* os) const {
+    *os << "equals ";
+    UniversalPrint(rhs_, os);
+  }
+  void DescribeNegationTo(::std::ostream* os) const {
+    *os << "does not equal ";
+    UniversalPrint(rhs_, os);
+  }
+
+  template <typename LhsContainer>
+  bool MatchAndExplain(const LhsContainer& lhs,
+                       MatchResultListener* listener) const {
+    // GTEST_REMOVE_CONST_() is needed to work around an MSVC 8.0 bug
+    // that causes LhsContainer to be a const type sometimes.
+    typedef internal::StlContainerView<GTEST_REMOVE_CONST_(LhsContainer)>
+        LhsView;
+    typedef typename LhsView::type LhsStlContainer;
+    StlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
+    if (lhs_stl_container == rhs_)
+      return true;
+
+    ::std::ostream* const os = listener->stream();
+    if (os != NULL) {
+      // Something is different. Check for extra values first.
+      bool printed_header = false;
+      for (typename LhsStlContainer::const_iterator it =
+               lhs_stl_container.begin();
+           it != lhs_stl_container.end(); ++it) {
+        if (internal::ArrayAwareFind(rhs_.begin(), rhs_.end(), *it) ==
+            rhs_.end()) {
+          if (printed_header) {
+            *os << ", ";
+          } else {
+            *os << "which has these unexpected elements: ";
+            printed_header = true;
+          }
+          UniversalPrint(*it, os);
+        }
+      }
+
+      // Now check for missing values.
+      bool printed_header2 = false;
+      for (typename StlContainer::const_iterator it = rhs_.begin();
+           it != rhs_.end(); ++it) {
+        if (internal::ArrayAwareFind(
+                lhs_stl_container.begin(), lhs_stl_container.end(), *it) ==
+            lhs_stl_container.end()) {
+          if (printed_header2) {
+            *os << ", ";
+          } else {
+            *os << (printed_header ? ",\nand" : "which")
+                << " doesn't have these expected elements: ";
+            printed_header2 = true;
+          }
+          UniversalPrint(*it, os);
+        }
+      }
+    }
+
+    return false;
+  }
+
+ private:
+  const StlContainer rhs_;
+
+  GTEST_DISALLOW_ASSIGN_(ContainerEqMatcher);
+};
+
+// Implements Pointwise(tuple_matcher, rhs_container).  tuple_matcher
+// must be able to be safely cast to Matcher<tuple<const T1&, const
+// T2&> >, where T1 and T2 are the types of elements in the LHS
+// container and the RHS container respectively.
+template <typename TupleMatcher, typename RhsContainer>
+class PointwiseMatcher {
+ public:
+  typedef internal::StlContainerView<RhsContainer> RhsView;
+  typedef typename RhsView::type RhsStlContainer;
+  typedef typename RhsStlContainer::value_type RhsValue;
+
+  // Like ContainerEq, we make a copy of rhs in case the elements in
+  // it are modified after this matcher is created.
+  PointwiseMatcher(const TupleMatcher& tuple_matcher, const RhsContainer& rhs)
+      : tuple_matcher_(tuple_matcher), rhs_(RhsView::Copy(rhs)) {
+    // Makes sure the user doesn't instantiate this class template
+    // with a const or reference type.
+    (void)testing::StaticAssertTypeEq<RhsContainer,
+        GTEST_REMOVE_REFERENCE_AND_CONST_(RhsContainer)>();
+  }
+
+  template <typename LhsContainer>
+  operator Matcher<LhsContainer>() const {
+    return MakeMatcher(new Impl<LhsContainer>(tuple_matcher_, rhs_));
+  }
+
+  template <typename LhsContainer>
+  class Impl : public MatcherInterface<LhsContainer> {
+   public:
+    typedef internal::StlContainerView<
+         GTEST_REMOVE_REFERENCE_AND_CONST_(LhsContainer)> LhsView;
+    typedef typename LhsView::type LhsStlContainer;
+    typedef typename LhsView::const_reference LhsStlContainerReference;
+    typedef typename LhsStlContainer::value_type LhsValue;
+    // We pass the LHS value and the RHS value to the inner matcher by
+    // reference, as they may be expensive to copy.  We must use tuple
+    // instead of pair here, as a pair cannot hold references (C++ 98,
+    // 20.2.2 [lib.pairs]).
+    typedef std::tr1::tuple<const LhsValue&, const RhsValue&> InnerMatcherArg;
+
+    Impl(const TupleMatcher& tuple_matcher, const RhsStlContainer& rhs)
+        // mono_tuple_matcher_ holds a monomorphic version of the tuple matcher.
+        : mono_tuple_matcher_(SafeMatcherCast<InnerMatcherArg>(tuple_matcher)),
+          rhs_(rhs) {}
+
+    virtual void DescribeTo(::std::ostream* os) const {
+      *os << "contains " << rhs_.size()
+          << " values, where each value and its corresponding value in ";
+      UniversalPrinter<RhsStlContainer>::Print(rhs_, os);
+      *os << " ";
+      mono_tuple_matcher_.DescribeTo(os);
+    }
+    virtual void DescribeNegationTo(::std::ostream* os) const {
+      *os << "doesn't contain exactly " << rhs_.size()
+          << " values, or contains a value x at some index i"
+          << " where x and the i-th value of ";
+      UniversalPrint(rhs_, os);
+      *os << " ";
+      mono_tuple_matcher_.DescribeNegationTo(os);
+    }
+
+    virtual bool MatchAndExplain(LhsContainer lhs,
+                                 MatchResultListener* listener) const {
+      LhsStlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
+      const size_t actual_size = lhs_stl_container.size();
+      if (actual_size != rhs_.size()) {
+        *listener << "which contains " << actual_size << " values";
+        return false;
+      }
+
+      typename LhsStlContainer::const_iterator left = lhs_stl_container.begin();
+      typename RhsStlContainer::const_iterator right = rhs_.begin();
+      for (size_t i = 0; i != actual_size; ++i, ++left, ++right) {
+        const InnerMatcherArg value_pair(*left, *right);
+
+        if (listener->IsInterested()) {
+          StringMatchResultListener inner_listener;
+          if (!mono_tuple_matcher_.MatchAndExplain(
+                  value_pair, &inner_listener)) {
+            *listener << "where the value pair (";
+            UniversalPrint(*left, listener->stream());
+            *listener << ", ";
+            UniversalPrint(*right, listener->stream());
+            *listener << ") at index #" << i << " don't match";
+            PrintIfNotEmpty(inner_listener.str(), listener->stream());
+            return false;
+          }
+        } else {
+          if (!mono_tuple_matcher_.Matches(value_pair))
+            return false;
+        }
+      }
+
+      return true;
+    }
+
+   private:
+    const Matcher<InnerMatcherArg> mono_tuple_matcher_;
+    const RhsStlContainer rhs_;
+
+    GTEST_DISALLOW_ASSIGN_(Impl);
+  };
+
+ private:
+  const TupleMatcher tuple_matcher_;
+  const RhsStlContainer rhs_;
+
+  GTEST_DISALLOW_ASSIGN_(PointwiseMatcher);
+};
+
+// Holds the logic common to ContainsMatcherImpl and EachMatcherImpl.
+template <typename Container>
+class QuantifierMatcherImpl : public MatcherInterface<Container> {
+ public:
+  typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+  typedef StlContainerView<RawContainer> View;
+  typedef typename View::type StlContainer;
+  typedef typename View::const_reference StlContainerReference;
+  typedef typename StlContainer::value_type Element;
+
+  template <typename InnerMatcher>
+  explicit QuantifierMatcherImpl(InnerMatcher inner_matcher)
+      : inner_matcher_(
+           testing::SafeMatcherCast<const Element&>(inner_matcher)) {}
+
+  // Checks whether:
+  // * All elements in the container match, if all_elements_should_match.
+  // * Any element in the container matches, if !all_elements_should_match.
+  bool MatchAndExplainImpl(bool all_elements_should_match,
+                           Container container,
+                           MatchResultListener* listener) const {
+    StlContainerReference stl_container = View::ConstReference(container);
+    size_t i = 0;
+    for (typename StlContainer::const_iterator it = stl_container.begin();
+         it != stl_container.end(); ++it, ++i) {
+      StringMatchResultListener inner_listener;
+      const bool matches = inner_matcher_.MatchAndExplain(*it, &inner_listener);
+
+      if (matches != all_elements_should_match) {
+        *listener << "whose element #" << i
+                  << (matches ? " matches" : " doesn't match");
+        PrintIfNotEmpty(inner_listener.str(), listener->stream());
+        return !all_elements_should_match;
+      }
+    }
+    return all_elements_should_match;
+  }
+
+ protected:
+  const Matcher<const Element&> inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(QuantifierMatcherImpl);
+};
+
+// Implements Contains(element_matcher) for the given argument type Container.
+// Symmetric to EachMatcherImpl.
+template <typename Container>
+class ContainsMatcherImpl : public QuantifierMatcherImpl<Container> {
+ public:
+  template <typename InnerMatcher>
+  explicit ContainsMatcherImpl(InnerMatcher inner_matcher)
+      : QuantifierMatcherImpl<Container>(inner_matcher) {}
+
+  // Describes what this matcher does.
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "contains at least one element that ";
+    this->inner_matcher_.DescribeTo(os);
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't contain any element that ";
+    this->inner_matcher_.DescribeTo(os);
+  }
+
+  virtual bool MatchAndExplain(Container container,
+                               MatchResultListener* listener) const {
+    return this->MatchAndExplainImpl(false, container, listener);
+  }
+
+ private:
+  GTEST_DISALLOW_ASSIGN_(ContainsMatcherImpl);
+};
+
+// Implements Each(element_matcher) for the given argument type Container.
+// Symmetric to ContainsMatcherImpl.
+template <typename Container>
+class EachMatcherImpl : public QuantifierMatcherImpl<Container> {
+ public:
+  template <typename InnerMatcher>
+  explicit EachMatcherImpl(InnerMatcher inner_matcher)
+      : QuantifierMatcherImpl<Container>(inner_matcher) {}
+
+  // Describes what this matcher does.
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "only contains elements that ";
+    this->inner_matcher_.DescribeTo(os);
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "contains some element that ";
+    this->inner_matcher_.DescribeNegationTo(os);
+  }
+
+  virtual bool MatchAndExplain(Container container,
+                               MatchResultListener* listener) const {
+    return this->MatchAndExplainImpl(true, container, listener);
+  }
+
+ private:
+  GTEST_DISALLOW_ASSIGN_(EachMatcherImpl);
+};
+
+// Implements polymorphic Contains(element_matcher).
+template <typename M>
+class ContainsMatcher {
+ public:
+  explicit ContainsMatcher(M m) : inner_matcher_(m) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    return MakeMatcher(new ContainsMatcherImpl<Container>(inner_matcher_));
+  }
+
+ private:
+  const M inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(ContainsMatcher);
+};
+
+// Implements polymorphic Each(element_matcher).
+template <typename M>
+class EachMatcher {
+ public:
+  explicit EachMatcher(M m) : inner_matcher_(m) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    return MakeMatcher(new EachMatcherImpl<Container>(inner_matcher_));
+  }
+
+ private:
+  const M inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(EachMatcher);
+};
+
+// Implements Key(inner_matcher) for the given argument pair type.
+// Key(inner_matcher) matches an std::pair whose 'first' field matches
+// inner_matcher.  For example, Contains(Key(Ge(5))) can be used to match an
+// std::map that contains at least one element whose key is >= 5.
+template <typename PairType>
+class KeyMatcherImpl : public MatcherInterface<PairType> {
+ public:
+  typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
+  typedef typename RawPairType::first_type KeyType;
+
+  template <typename InnerMatcher>
+  explicit KeyMatcherImpl(InnerMatcher inner_matcher)
+      : inner_matcher_(
+          testing::SafeMatcherCast<const KeyType&>(inner_matcher)) {
+  }
+
+  // Returns true iff 'key_value.first' (the key) matches the inner matcher.
+  virtual bool MatchAndExplain(PairType key_value,
+                               MatchResultListener* listener) const {
+    StringMatchResultListener inner_listener;
+    const bool match = inner_matcher_.MatchAndExplain(key_value.first,
+                                                      &inner_listener);
+    const internal::string explanation = inner_listener.str();
+    if (explanation != "") {
+      *listener << "whose first field is a value " << explanation;
+    }
+    return match;
+  }
+
+  // Describes what this matcher does.
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "has a key that ";
+    inner_matcher_.DescribeTo(os);
+  }
+
+  // Describes what the negation of this matcher does.
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "doesn't have a key that ";
+    inner_matcher_.DescribeTo(os);
+  }
+
+ private:
+  const Matcher<const KeyType&> inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(KeyMatcherImpl);
+};
+
+// Implements polymorphic Key(matcher_for_key).
+template <typename M>
+class KeyMatcher {
+ public:
+  explicit KeyMatcher(M m) : matcher_for_key_(m) {}
+
+  template <typename PairType>
+  operator Matcher<PairType>() const {
+    return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
+  }
+
+ private:
+  const M matcher_for_key_;
+
+  GTEST_DISALLOW_ASSIGN_(KeyMatcher);
+};
+
+// Implements Pair(first_matcher, second_matcher) for the given argument pair
+// type with its two matchers. See Pair() function below.
+template <typename PairType>
+class PairMatcherImpl : public MatcherInterface<PairType> {
+ public:
+  typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
+  typedef typename RawPairType::first_type FirstType;
+  typedef typename RawPairType::second_type SecondType;
+
+  template <typename FirstMatcher, typename SecondMatcher>
+  PairMatcherImpl(FirstMatcher first_matcher, SecondMatcher second_matcher)
+      : first_matcher_(
+            testing::SafeMatcherCast<const FirstType&>(first_matcher)),
+        second_matcher_(
+            testing::SafeMatcherCast<const SecondType&>(second_matcher)) {
+  }
+
+  // Describes what this matcher does.
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "has a first field that ";
+    first_matcher_.DescribeTo(os);
+    *os << ", and has a second field that ";
+    second_matcher_.DescribeTo(os);
+  }
+
+  // Describes what the negation of this matcher does.
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "has a first field that ";
+    first_matcher_.DescribeNegationTo(os);
+    *os << ", or has a second field that ";
+    second_matcher_.DescribeNegationTo(os);
+  }
+
+  // Returns true iff 'a_pair.first' matches first_matcher and 'a_pair.second'
+  // matches second_matcher.
+  virtual bool MatchAndExplain(PairType a_pair,
+                               MatchResultListener* listener) const {
+    if (!listener->IsInterested()) {
+      // If the listener is not interested, we don't need to construct the
+      // explanation.
+      return first_matcher_.Matches(a_pair.first) &&
+             second_matcher_.Matches(a_pair.second);
+    }
+    StringMatchResultListener first_inner_listener;
+    if (!first_matcher_.MatchAndExplain(a_pair.first,
+                                        &first_inner_listener)) {
+      *listener << "whose first field does not match";
+      PrintIfNotEmpty(first_inner_listener.str(), listener->stream());
+      return false;
+    }
+    StringMatchResultListener second_inner_listener;
+    if (!second_matcher_.MatchAndExplain(a_pair.second,
+                                         &second_inner_listener)) {
+      *listener << "whose second field does not match";
+      PrintIfNotEmpty(second_inner_listener.str(), listener->stream());
+      return false;
+    }
+    ExplainSuccess(first_inner_listener.str(), second_inner_listener.str(),
+                   listener);
+    return true;
+  }
+
+ private:
+  void ExplainSuccess(const internal::string& first_explanation,
+                      const internal::string& second_explanation,
+                      MatchResultListener* listener) const {
+    *listener << "whose both fields match";
+    if (first_explanation != "") {
+      *listener << ", where the first field is a value " << first_explanation;
+    }
+    if (second_explanation != "") {
+      *listener << ", ";
+      if (first_explanation != "") {
+        *listener << "and ";
+      } else {
+        *listener << "where ";
+      }
+      *listener << "the second field is a value " << second_explanation;
+    }
+  }
+
+  const Matcher<const FirstType&> first_matcher_;
+  const Matcher<const SecondType&> second_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(PairMatcherImpl);
+};
+
+// Implements polymorphic Pair(first_matcher, second_matcher).
+template <typename FirstMatcher, typename SecondMatcher>
+class PairMatcher {
+ public:
+  PairMatcher(FirstMatcher first_matcher, SecondMatcher second_matcher)
+      : first_matcher_(first_matcher), second_matcher_(second_matcher) {}
+
+  template <typename PairType>
+  operator Matcher<PairType> () const {
+    return MakeMatcher(
+        new PairMatcherImpl<PairType>(
+            first_matcher_, second_matcher_));
+  }
+
+ private:
+  const FirstMatcher first_matcher_;
+  const SecondMatcher second_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(PairMatcher);
+};
+
+// Implements ElementsAre() and ElementsAreArray().
+template <typename Container>
+class ElementsAreMatcherImpl : public MatcherInterface<Container> {
+ public:
+  typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+  typedef internal::StlContainerView<RawContainer> View;
+  typedef typename View::type StlContainer;
+  typedef typename View::const_reference StlContainerReference;
+  typedef typename StlContainer::value_type Element;
+
+  // Constructs the matcher from a sequence of element values or
+  // element matchers.
+  template <typename InputIter>
+  ElementsAreMatcherImpl(InputIter first, size_t a_count) {
+    matchers_.reserve(a_count);
+    InputIter it = first;
+    for (size_t i = 0; i != a_count; ++i, ++it) {
+      matchers_.push_back(MatcherCast<const Element&>(*it));
+    }
+  }
+
+  // Describes what this matcher does.
+  virtual void DescribeTo(::std::ostream* os) const {
+    if (count() == 0) {
+      *os << "is empty";
+    } else if (count() == 1) {
+      *os << "has 1 element that ";
+      matchers_[0].DescribeTo(os);
+    } else {
+      *os << "has " << Elements(count()) << " where\n";
+      for (size_t i = 0; i != count(); ++i) {
+        *os << "element #" << i << " ";
+        matchers_[i].DescribeTo(os);
+        if (i + 1 < count()) {
+          *os << ",\n";
+        }
+      }
+    }
+  }
+
+  // Describes what the negation of this matcher does.
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    if (count() == 0) {
+      *os << "isn't empty";
+      return;
+    }
+
+    *os << "doesn't have " << Elements(count()) << ", or\n";
+    for (size_t i = 0; i != count(); ++i) {
+      *os << "element #" << i << " ";
+      matchers_[i].DescribeNegationTo(os);
+      if (i + 1 < count()) {
+        *os << ", or\n";
+      }
+    }
+  }
+
+  virtual bool MatchAndExplain(Container container,
+                               MatchResultListener* listener) const {
+    StlContainerReference stl_container = View::ConstReference(container);
+    const size_t actual_count = stl_container.size();
+    if (actual_count != count()) {
+      // The element count doesn't match.  If the container is empty,
+      // there's no need to explain anything as Google Mock already
+      // prints the empty container.  Otherwise we just need to show
+      // how many elements there actually are.
+      if (actual_count != 0) {
+        *listener << "which has " << Elements(actual_count);
+      }
+      return false;
+    }
+
+    typename StlContainer::const_iterator it = stl_container.begin();
+    // explanations[i] is the explanation of the element at index i.
+    std::vector<internal::string> explanations(count());
+    for (size_t i = 0; i != count();  ++it, ++i) {
+      StringMatchResultListener s;
+      if (matchers_[i].MatchAndExplain(*it, &s)) {
+        explanations[i] = s.str();
+      } else {
+        // The container has the right size but the i-th element
+        // doesn't match its expectation.
+        *listener << "whose element #" << i << " doesn't match";
+        PrintIfNotEmpty(s.str(), listener->stream());
+        return false;
+      }
+    }
+
+    // Every element matches its expectation.  We need to explain why
+    // (the obvious ones can be skipped).
+    bool reason_printed = false;
+    for (size_t i = 0; i != count(); ++i) {
+      const internal::string& s = explanations[i];
+      if (!s.empty()) {
+        if (reason_printed) {
+          *listener << ",\nand ";
+        }
+        *listener << "whose element #" << i << " matches, " << s;
+        reason_printed = true;
+      }
+    }
+
+    return true;
+  }
+
+ private:
+  static Message Elements(size_t count) {
+    return Message() << count << (count == 1 ? " element" : " elements");
+  }
+
+  size_t count() const { return matchers_.size(); }
+  std::vector<Matcher<const Element&> > matchers_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcherImpl);
+};
+
+// Implements ElementsAre() of 0 arguments.
+class ElementsAreMatcher0 {
+ public:
+  ElementsAreMatcher0() {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&>* const matchers = NULL;
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 0));
+  }
+};
+
+// Implements ElementsAreArray().
+template <typename T>
+class ElementsAreArrayMatcher {
+ public:
+  ElementsAreArrayMatcher(const T* first, size_t count) :
+      first_(first), count_(count) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(first_, count_));
+  }
+
+ private:
+  const T* const first_;
+  const size_t count_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreArrayMatcher);
+};
+
+// Returns the description for a matcher defined using the MATCHER*()
+// macro where the user-supplied description string is "", if
+// 'negation' is false; otherwise returns the description of the
+// negation of the matcher.  'param_values' contains a list of strings
+// that are the print-out of the matcher's parameters.
+string FormatMatcherDescription(bool negation, const char* matcher_name,
+                                const Strings& param_values);
+
+}  // namespace internal
+
+// Implements MatcherCast().
+template <typename T, typename M>
+inline Matcher<T> MatcherCast(M matcher) {
+  return internal::MatcherCastImpl<T, M>::Cast(matcher);
+}
+
+// _ is a matcher that matches anything of any type.
+//
+// This definition is fine as:
+//
+//   1. The C++ standard permits using the name _ in a namespace that
+//      is not the global namespace or ::std.
+//   2. The AnythingMatcher class has no data member or constructor,
+//      so it's OK to create global variables of this type.
+//   3. c-style has approved of using _ in this case.
+const internal::AnythingMatcher _ = {};
+// Creates a matcher that matches any value of the given type T.
+template <typename T>
+inline Matcher<T> A() { return MakeMatcher(new internal::AnyMatcherImpl<T>()); }
+
+// Creates a matcher that matches any value of the given type T.
+template <typename T>
+inline Matcher<T> An() { return A<T>(); }
+
+// Creates a polymorphic matcher that matches anything equal to x.
+// Note: if the parameter of Eq() were declared as const T&, Eq("foo")
+// wouldn't compile.
+template <typename T>
+inline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }
+
+// Constructs a Matcher<T> from a 'value' of type T.  The constructed
+// matcher matches any value that's equal to 'value'.
+template <typename T>
+Matcher<T>::Matcher(T value) { *this = Eq(value); }
+
+// Creates a monomorphic matcher that matches anything with type Lhs
+// and equal to rhs.  A user may need to use this instead of Eq(...)
+// in order to resolve an overloading ambiguity.
+//
+// TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
+// or Matcher<T>(x), but more readable than the latter.
+//
+// We could define similar monomorphic matchers for other comparison
+// operations (e.g. TypedLt, TypedGe, and etc), but decided not to do
+// it yet as those are used much less than Eq() in practice.  A user
+// can always write Matcher<T>(Lt(5)) to be explicit about the type,
+// for example.
+template <typename Lhs, typename Rhs>
+inline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }
+
+// Creates a polymorphic matcher that matches anything >= x.
+template <typename Rhs>
+inline internal::GeMatcher<Rhs> Ge(Rhs x) {
+  return internal::GeMatcher<Rhs>(x);
+}
+
+// Creates a polymorphic matcher that matches anything > x.
+template <typename Rhs>
+inline internal::GtMatcher<Rhs> Gt(Rhs x) {
+  return internal::GtMatcher<Rhs>(x);
+}
+
+// Creates a polymorphic matcher that matches anything <= x.
+template <typename Rhs>
+inline internal::LeMatcher<Rhs> Le(Rhs x) {
+  return internal::LeMatcher<Rhs>(x);
+}
+
+// Creates a polymorphic matcher that matches anything < x.
+template <typename Rhs>
+inline internal::LtMatcher<Rhs> Lt(Rhs x) {
+  return internal::LtMatcher<Rhs>(x);
+}
+
+// Creates a polymorphic matcher that matches anything != x.
+template <typename Rhs>
+inline internal::NeMatcher<Rhs> Ne(Rhs x) {
+  return internal::NeMatcher<Rhs>(x);
+}
+
+// Creates a polymorphic matcher that matches any NULL pointer.
+inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
+  return MakePolymorphicMatcher(internal::IsNullMatcher());
+}
+
+// Creates a polymorphic matcher that matches any non-NULL pointer.
+// This is convenient as Not(NULL) doesn't compile (the compiler
+// thinks that that expression is comparing a pointer with an integer).
+inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
+  return MakePolymorphicMatcher(internal::NotNullMatcher());
+}
+
+// Creates a polymorphic matcher that matches any argument that
+// references variable x.
+template <typename T>
+inline internal::RefMatcher<T&> Ref(T& x) {  // NOLINT
+  return internal::RefMatcher<T&>(x);
+}
+
+// Creates a matcher that matches any double argument approximately
+// equal to rhs, where two NANs are considered unequal.
+inline internal::FloatingEqMatcher<double> DoubleEq(double rhs) {
+  return internal::FloatingEqMatcher<double>(rhs, false);
+}
+
+// Creates a matcher that matches any double argument approximately
+// equal to rhs, including NaN values when rhs is NaN.
+inline internal::FloatingEqMatcher<double> NanSensitiveDoubleEq(double rhs) {
+  return internal::FloatingEqMatcher<double>(rhs, true);
+}
+
+// Creates a matcher that matches any float argument approximately
+// equal to rhs, where two NANs are considered unequal.
+inline internal::FloatingEqMatcher<float> FloatEq(float rhs) {
+  return internal::FloatingEqMatcher<float>(rhs, false);
+}
+
+// Creates a matcher that matches any double argument approximately
+// equal to rhs, including NaN values when rhs is NaN.
+inline internal::FloatingEqMatcher<float> NanSensitiveFloatEq(float rhs) {
+  return internal::FloatingEqMatcher<float>(rhs, true);
+}
+
+// Creates a matcher that matches a pointer (raw or smart) that points
+// to a value that matches inner_matcher.
+template <typename InnerMatcher>
+inline internal::PointeeMatcher<InnerMatcher> Pointee(
+    const InnerMatcher& inner_matcher) {
+  return internal::PointeeMatcher<InnerMatcher>(inner_matcher);
+}
+
+// Creates a matcher that matches an object whose given field matches
+// 'matcher'.  For example,
+//   Field(&Foo::number, Ge(5))
+// matches a Foo object x iff x.number >= 5.
+template <typename Class, typename FieldType, typename FieldMatcher>
+inline PolymorphicMatcher<
+  internal::FieldMatcher<Class, FieldType> > Field(
+    FieldType Class::*field, const FieldMatcher& matcher) {
+  return MakePolymorphicMatcher(
+      internal::FieldMatcher<Class, FieldType>(
+          field, MatcherCast<const FieldType&>(matcher)));
+  // The call to MatcherCast() is required for supporting inner
+  // matchers of compatible types.  For example, it allows
+  //   Field(&Foo::bar, m)
+  // to compile where bar is an int32 and m is a matcher for int64.
+}
+
+// Creates a matcher that matches an object whose given property
+// matches 'matcher'.  For example,
+//   Property(&Foo::str, StartsWith("hi"))
+// matches a Foo object x iff x.str() starts with "hi".
+template <typename Class, typename PropertyType, typename PropertyMatcher>
+inline PolymorphicMatcher<
+  internal::PropertyMatcher<Class, PropertyType> > Property(
+    PropertyType (Class::*property)() const, const PropertyMatcher& matcher) {
+  return MakePolymorphicMatcher(
+      internal::PropertyMatcher<Class, PropertyType>(
+          property,
+          MatcherCast<GTEST_REFERENCE_TO_CONST_(PropertyType)>(matcher)));
+  // The call to MatcherCast() is required for supporting inner
+  // matchers of compatible types.  For example, it allows
+  //   Property(&Foo::bar, m)
+  // to compile where bar() returns an int32 and m is a matcher for int64.
+}
+
+// Creates a matcher that matches an object iff the result of applying
+// a callable to x matches 'matcher'.
+// For example,
+//   ResultOf(f, StartsWith("hi"))
+// matches a Foo object x iff f(x) starts with "hi".
+// callable parameter can be a function, function pointer, or a functor.
+// Callable has to satisfy the following conditions:
+//   * It is required to keep no state affecting the results of
+//     the calls on it and make no assumptions about how many calls
+//     will be made. Any state it keeps must be protected from the
+//     concurrent access.
+//   * If it is a function object, it has to define type result_type.
+//     We recommend deriving your functor classes from std::unary_function.
+template <typename Callable, typename ResultOfMatcher>
+internal::ResultOfMatcher<Callable> ResultOf(
+    Callable callable, const ResultOfMatcher& matcher) {
+  return internal::ResultOfMatcher<Callable>(
+          callable,
+          MatcherCast<typename internal::CallableTraits<Callable>::ResultType>(
+              matcher));
+  // The call to MatcherCast() is required for supporting inner
+  // matchers of compatible types.  For example, it allows
+  //   ResultOf(Function, m)
+  // to compile where Function() returns an int32 and m is a matcher for int64.
+}
+
+// String matchers.
+
+// Matches a string equal to str.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
+    StrEq(const internal::string& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
+      str, true, true));
+}
+
+// Matches a string not equal to str.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
+    StrNe(const internal::string& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
+      str, false, true));
+}
+
+// Matches a string equal to str, ignoring case.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
+    StrCaseEq(const internal::string& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
+      str, true, false));
+}
+
+// Matches a string not equal to str, ignoring case.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
+    StrCaseNe(const internal::string& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
+      str, false, false));
+}
+
+// Creates a matcher that matches any string, std::string, or C string
+// that contains the given substring.
+inline PolymorphicMatcher<internal::HasSubstrMatcher<internal::string> >
+    HasSubstr(const internal::string& substring) {
+  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::string>(
+      substring));
+}
+
+// Matches a string that starts with 'prefix' (case-sensitive).
+inline PolymorphicMatcher<internal::StartsWithMatcher<internal::string> >
+    StartsWith(const internal::string& prefix) {
+  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::string>(
+      prefix));
+}
+
+// Matches a string that ends with 'suffix' (case-sensitive).
+inline PolymorphicMatcher<internal::EndsWithMatcher<internal::string> >
+    EndsWith(const internal::string& suffix) {
+  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::string>(
+      suffix));
+}
+
+// Matches a string that fully matches regular expression 'regex'.
+// The matcher takes ownership of 'regex'.
+inline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
+    const internal::RE* regex) {
+  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true));
+}
+inline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
+    const internal::string& regex) {
+  return MatchesRegex(new internal::RE(regex));
+}
+
+// Matches a string that contains regular expression 'regex'.
+// The matcher takes ownership of 'regex'.
+inline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
+    const internal::RE* regex) {
+  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false));
+}
+inline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
+    const internal::string& regex) {
+  return ContainsRegex(new internal::RE(regex));
+}
+
+#if GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
+// Wide string matchers.
+
+// Matches a string equal to str.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
+    StrEq(const internal::wstring& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
+      str, true, true));
+}
+
+// Matches a string not equal to str.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
+    StrNe(const internal::wstring& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
+      str, false, true));
+}
+
+// Matches a string equal to str, ignoring case.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
+    StrCaseEq(const internal::wstring& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
+      str, true, false));
+}
+
+// Matches a string not equal to str, ignoring case.
+inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
+    StrCaseNe(const internal::wstring& str) {
+  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
+      str, false, false));
+}
+
+// Creates a matcher that matches any wstring, std::wstring, or C wide string
+// that contains the given substring.
+inline PolymorphicMatcher<internal::HasSubstrMatcher<internal::wstring> >
+    HasSubstr(const internal::wstring& substring) {
+  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::wstring>(
+      substring));
+}
+
+// Matches a string that starts with 'prefix' (case-sensitive).
+inline PolymorphicMatcher<internal::StartsWithMatcher<internal::wstring> >
+    StartsWith(const internal::wstring& prefix) {
+  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::wstring>(
+      prefix));
+}
+
+// Matches a string that ends with 'suffix' (case-sensitive).
+inline PolymorphicMatcher<internal::EndsWithMatcher<internal::wstring> >
+    EndsWith(const internal::wstring& suffix) {
+  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::wstring>(
+      suffix));
+}
+
+#endif  // GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field == the second field.
+inline internal::Eq2Matcher Eq() { return internal::Eq2Matcher(); }
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field >= the second field.
+inline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field > the second field.
+inline internal::Gt2Matcher Gt() { return internal::Gt2Matcher(); }
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field <= the second field.
+inline internal::Le2Matcher Le() { return internal::Le2Matcher(); }
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field < the second field.
+inline internal::Lt2Matcher Lt() { return internal::Lt2Matcher(); }
+
+// Creates a polymorphic matcher that matches a 2-tuple where the
+// first field != the second field.
+inline internal::Ne2Matcher Ne() { return internal::Ne2Matcher(); }
+
+// Creates a matcher that matches any value of type T that m doesn't
+// match.
+template <typename InnerMatcher>
+inline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
+  return internal::NotMatcher<InnerMatcher>(m);
+}
+
+// Returns a matcher that matches anything that satisfies the given
+// predicate.  The predicate can be any unary function or functor
+// whose return type can be implicitly converted to bool.
+template <typename Predicate>
+inline PolymorphicMatcher<internal::TrulyMatcher<Predicate> >
+Truly(Predicate pred) {
+  return MakePolymorphicMatcher(internal::TrulyMatcher<Predicate>(pred));
+}
+
+// Returns a matcher that matches an equal container.
+// This matcher behaves like Eq(), but in the event of mismatch lists the
+// values that are included in one container but not the other. (Duplicate
+// values and order differences are not explained.)
+template <typename Container>
+inline PolymorphicMatcher<internal::ContainerEqMatcher<  // NOLINT
+                            GTEST_REMOVE_CONST_(Container)> >
+    ContainerEq(const Container& rhs) {
+  // This following line is for working around a bug in MSVC 8.0,
+  // which causes Container to be a const type sometimes.
+  typedef GTEST_REMOVE_CONST_(Container) RawContainer;
+  return MakePolymorphicMatcher(
+      internal::ContainerEqMatcher<RawContainer>(rhs));
+}
+
+// Matches an STL-style container or a native array that contains the
+// same number of elements as in rhs, where its i-th element and rhs's
+// i-th element (as a pair) satisfy the given pair matcher, for all i.
+// TupleMatcher must be able to be safely cast to Matcher<tuple<const
+// T1&, const T2&> >, where T1 and T2 are the types of elements in the
+// LHS container and the RHS container respectively.
+template <typename TupleMatcher, typename Container>
+inline internal::PointwiseMatcher<TupleMatcher,
+                                  GTEST_REMOVE_CONST_(Container)>
+Pointwise(const TupleMatcher& tuple_matcher, const Container& rhs) {
+  // This following line is for working around a bug in MSVC 8.0,
+  // which causes Container to be a const type sometimes.
+  typedef GTEST_REMOVE_CONST_(Container) RawContainer;
+  return internal::PointwiseMatcher<TupleMatcher, RawContainer>(
+      tuple_matcher, rhs);
+}
+
+// Matches an STL-style container or a native array that contains at
+// least one element matching the given value or matcher.
+//
+// Examples:
+//   ::std::set<int> page_ids;
+//   page_ids.insert(3);
+//   page_ids.insert(1);
+//   EXPECT_THAT(page_ids, Contains(1));
+//   EXPECT_THAT(page_ids, Contains(Gt(2)));
+//   EXPECT_THAT(page_ids, Not(Contains(4)));
+//
+//   ::std::map<int, size_t> page_lengths;
+//   page_lengths[1] = 100;
+//   EXPECT_THAT(page_lengths,
+//               Contains(::std::pair<const int, size_t>(1, 100)));
+//
+//   const char* user_ids[] = { "joe", "mike", "tom" };
+//   EXPECT_THAT(user_ids, Contains(Eq(::std::string("tom"))));
+template <typename M>
+inline internal::ContainsMatcher<M> Contains(M matcher) {
+  return internal::ContainsMatcher<M>(matcher);
+}
+
+// Matches an STL-style container or a native array that contains only
+// elements matching the given value or matcher.
+//
+// Each(m) is semantically equivalent to Not(Contains(Not(m))). Only
+// the messages are different.
+//
+// Examples:
+//   ::std::set<int> page_ids;
+//   // Each(m) matches an empty container, regardless of what m is.
+//   EXPECT_THAT(page_ids, Each(Eq(1)));
+//   EXPECT_THAT(page_ids, Each(Eq(77)));
+//
+//   page_ids.insert(3);
+//   EXPECT_THAT(page_ids, Each(Gt(0)));
+//   EXPECT_THAT(page_ids, Not(Each(Gt(4))));
+//   page_ids.insert(1);
+//   EXPECT_THAT(page_ids, Not(Each(Lt(2))));
+//
+//   ::std::map<int, size_t> page_lengths;
+//   page_lengths[1] = 100;
+//   page_lengths[2] = 200;
+//   page_lengths[3] = 300;
+//   EXPECT_THAT(page_lengths, Not(Each(Pair(1, 100))));
+//   EXPECT_THAT(page_lengths, Each(Key(Le(3))));
+//
+//   const char* user_ids[] = { "joe", "mike", "tom" };
+//   EXPECT_THAT(user_ids, Not(Each(Eq(::std::string("tom")))));
+template <typename M>
+inline internal::EachMatcher<M> Each(M matcher) {
+  return internal::EachMatcher<M>(matcher);
+}
+
+// Key(inner_matcher) matches an std::pair whose 'first' field matches
+// inner_matcher.  For example, Contains(Key(Ge(5))) can be used to match an
+// std::map that contains at least one element whose key is >= 5.
+template <typename M>
+inline internal::KeyMatcher<M> Key(M inner_matcher) {
+  return internal::KeyMatcher<M>(inner_matcher);
+}
+
+// Pair(first_matcher, second_matcher) matches a std::pair whose 'first' field
+// matches first_matcher and whose 'second' field matches second_matcher.  For
+// example, EXPECT_THAT(map_type, ElementsAre(Pair(Ge(5), "foo"))) can be used
+// to match a std::map<int, string> that contains exactly one element whose key
+// is >= 5 and whose value equals "foo".
+template <typename FirstMatcher, typename SecondMatcher>
+inline internal::PairMatcher<FirstMatcher, SecondMatcher>
+Pair(FirstMatcher first_matcher, SecondMatcher second_matcher) {
+  return internal::PairMatcher<FirstMatcher, SecondMatcher>(
+      first_matcher, second_matcher);
+}
+
+// Returns a predicate that is satisfied by anything that matches the
+// given matcher.
+template <typename M>
+inline internal::MatcherAsPredicate<M> Matches(M matcher) {
+  return internal::MatcherAsPredicate<M>(matcher);
+}
+
+// Returns true iff the value matches the matcher.
+template <typename T, typename M>
+inline bool Value(const T& value, M matcher) {
+  return testing::Matches(matcher)(value);
+}
+
+// Matches the value against the given matcher and explains the match
+// result to listener.
+template <typename T, typename M>
+inline bool ExplainMatchResult(
+    M matcher, const T& value, MatchResultListener* listener) {
+  return SafeMatcherCast<const T&>(matcher).MatchAndExplain(value, listener);
+}
+
+// AllArgs(m) is a synonym of m.  This is useful in
+//
+//   EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
+//
+// which is easier to read than
+//
+//   EXPECT_CALL(foo, Bar(_, _)).With(Eq());
+template <typename InnerMatcher>
+inline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; }
+
+// These macros allow using matchers to check values in Google Test
+// tests.  ASSERT_THAT(value, matcher) and EXPECT_THAT(value, matcher)
+// succeed iff the value matches the matcher.  If the assertion fails,
+// the value and the description of the matcher will be printed.
+#define ASSERT_THAT(value, matcher) ASSERT_PRED_FORMAT1(\
+    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
+#define EXPECT_THAT(value, matcher) EXPECT_PRED_FORMAT1(\
+    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
+
+namespace testing {
+
+// An abstract handle of an expectation.
+class Expectation;
+
+// A set of expectation handles.
+class ExpectationSet;
+
+// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION
+// and MUST NOT BE USED IN USER CODE!!!
+namespace internal {
+
+// Implements a mock function.
+template <typename F> class FunctionMocker;
+
+// Base class for expectations.
+class ExpectationBase;
+
+// Implements an expectation.
+template <typename F> class TypedExpectation;
+
+// Helper class for testing the Expectation class template.
+class ExpectationTester;
+
+// Base class for function mockers.
+template <typename F> class FunctionMockerBase;
+
+// Protects the mock object registry (in class Mock), all function
+// mockers, and all expectations.
+//
+// The reason we don't use more fine-grained protection is: when a
+// mock function Foo() is called, it needs to consult its expectations
+// to see which one should be picked.  If another thread is allowed to
+// call a mock function (either Foo() or a different one) at the same
+// time, it could affect the "retired" attributes of Foo()'s
+// expectations when InSequence() is used, and thus affect which
+// expectation gets picked.  Therefore, we sequence all mock function
+// calls to ensure the integrity of the mock objects' states.
+GTEST_DECLARE_STATIC_MUTEX_(g_gmock_mutex);
+
+// Untyped base class for ActionResultHolder<R>.
+class UntypedActionResultHolderBase;
+
+// Abstract base class of FunctionMockerBase.  This is the
+// type-agnostic part of the function mocker interface.  Its pure
+// virtual methods are implemented by FunctionMockerBase.
+class UntypedFunctionMockerBase {
+ public:
+  UntypedFunctionMockerBase();
+  virtual ~UntypedFunctionMockerBase();
+
+  // Verifies that all expectations on this mock function have been
+  // satisfied.  Reports one or more Google Test non-fatal failures
+  // and returns false if not.
+  // L >= g_gmock_mutex
+  bool VerifyAndClearExpectationsLocked();
+
+  // Clears the ON_CALL()s set on this mock function.
+  // L >= g_gmock_mutex
+  virtual void ClearDefaultActionsLocked() = 0;
+
+  // In all of the following Untyped* functions, it's the caller's
+  // responsibility to guarantee the correctness of the arguments'
+  // types.
+
+  // Performs the default action with the given arguments and returns
+  // the action's result.  The call description string will be used in
+  // the error message to describe the call in the case the default
+  // action fails.
+  // L = *
+  virtual UntypedActionResultHolderBase* UntypedPerformDefaultAction(
+      const void* untyped_args,
+      const string& call_description) const = 0;
+
+  // Performs the given action with the given arguments and returns
+  // the action's result.
+  // L = *
+  virtual UntypedActionResultHolderBase* UntypedPerformAction(
+      const void* untyped_action,
+      const void* untyped_args) const = 0;
+
+  // Writes a message that the call is uninteresting (i.e. neither
+  // explicitly expected nor explicitly unexpected) to the given
+  // ostream.
+  // L < g_gmock_mutex
+  virtual void UntypedDescribeUninterestingCall(const void* untyped_args,
+                                                ::std::ostream* os) const = 0;
+
+  // Returns the expectation that matches the given function arguments
+  // (or NULL is there's no match); when a match is found,
+  // untyped_action is set to point to the action that should be
+  // performed (or NULL if the action is "do default"), and
+  // is_excessive is modified to indicate whether the call exceeds the
+  // expected number.
+  // L < g_gmock_mutex
+  virtual const ExpectationBase* UntypedFindMatchingExpectation(
+      const void* untyped_args,
+      const void** untyped_action, bool* is_excessive,
+      ::std::ostream* what, ::std::ostream* why) = 0;
+
+  // Prints the given function arguments to the ostream.
+  virtual void UntypedPrintArgs(const void* untyped_args,
+                                ::std::ostream* os) const = 0;
+
+  // Sets the mock object this mock method belongs to, and registers
+  // this information in the global mock registry.  Will be called
+  // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
+  // method.
+  // TODO(wan@google.com): rename to SetAndRegisterOwner().
+  // L < g_gmock_mutex
+  void RegisterOwner(const void* mock_obj);
+
+  // Sets the mock object this mock method belongs to, and sets the
+  // name of the mock function.  Will be called upon each invocation
+  // of this mock function.
+  // L < g_gmock_mutex
+  void SetOwnerAndName(const void* mock_obj, const char* name);
+
+  // Returns the mock object this mock method belongs to.  Must be
+  // called after RegisterOwner() or SetOwnerAndName() has been
+  // called.
+  // L < g_gmock_mutex
+  const void* MockObject() const;
+
+  // Returns the name of this mock method.  Must be called after
+  // SetOwnerAndName() has been called.
+  // L < g_gmock_mutex
+  const char* Name() const;
+
+  // Returns the result of invoking this mock function with the given
+  // arguments.  This function can be safely called from multiple
+  // threads concurrently.  The caller is responsible for deleting the
+  // result.
+  // L < g_gmock_mutex
+  const UntypedActionResultHolderBase* UntypedInvokeWith(
+      const void* untyped_args);
+
+ protected:
+  typedef std::vector<const void*> UntypedOnCallSpecs;
+
+  typedef std::vector<internal::linked_ptr<ExpectationBase> >
+  UntypedExpectations;
+
+  // Returns an Expectation object that references and co-owns exp,
+  // which must be an expectation on this mock function.
+  Expectation GetHandleOf(ExpectationBase* exp);
+
+  // Address of the mock object this mock method belongs to.  Only
+  // valid after this mock method has been called or
+  // ON_CALL/EXPECT_CALL has been invoked on it.
+  const void* mock_obj_;  // Protected by g_gmock_mutex.
+
+  // Name of the function being mocked.  Only valid after this mock
+  // method has been called.
+  const char* name_;  // Protected by g_gmock_mutex.
+
+  // All default action specs for this function mocker.
+  UntypedOnCallSpecs untyped_on_call_specs_;
+
+  // All expectations for this function mocker.
+  UntypedExpectations untyped_expectations_;
+};  // class UntypedFunctionMockerBase
+
+// Untyped base class for OnCallSpec<F>.
+class UntypedOnCallSpecBase {
+ public:
+  // The arguments are the location of the ON_CALL() statement.
+  UntypedOnCallSpecBase(const char* a_file, int a_line)
+      : file_(a_file), line_(a_line), last_clause_(kNone) {}
+
+  // Where in the source file was the default action spec defined?
+  const char* file() const { return file_; }
+  int line() const { return line_; }
+
+ protected:
+  // Gives each clause in the ON_CALL() statement a name.
+  enum Clause {
+    // Do not change the order of the enum members!  The run-time
+    // syntax checking relies on it.
+    kNone,
+    kWith,
+    kWillByDefault
+  };
+
+  // Asserts that the ON_CALL() statement has a certain property.
+  void AssertSpecProperty(bool property, const string& failure_message) const {
+    Assert(property, file_, line_, failure_message);
+  }
+
+  // Expects that the ON_CALL() statement has a certain property.
+  void ExpectSpecProperty(bool property, const string& failure_message) const {
+    Expect(property, file_, line_, failure_message);
+  }
+
+  const char* file_;
+  int line_;
+
+  // The last clause in the ON_CALL() statement as seen so far.
+  // Initially kNone and changes as the statement is parsed.
+  Clause last_clause_;
+};  // class UntypedOnCallSpecBase
+
+// This template class implements an ON_CALL spec.
+template <typename F>
+class OnCallSpec : public UntypedOnCallSpecBase {
+ public:
+  typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+  typedef typename Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;
+
+  // Constructs an OnCallSpec object from the information inside
+  // the parenthesis of an ON_CALL() statement.
+  OnCallSpec(const char* a_file, int a_line,
+             const ArgumentMatcherTuple& matchers)
+      : UntypedOnCallSpecBase(a_file, a_line),
+        matchers_(matchers),
+        // By default, extra_matcher_ should match anything.  However,
+        // we cannot initialize it with _ as that triggers a compiler
+        // bug in Symbian's C++ compiler (cannot decide between two
+        // overloaded constructors of Matcher<const ArgumentTuple&>).
+        extra_matcher_(A<const ArgumentTuple&>()) {
+  }
+
+  // Implements the .With() clause.
+  OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
+    // Makes sure this is called at most once.
+    ExpectSpecProperty(last_clause_ < kWith,
+                       ".With() cannot appear "
+                       "more than once in an ON_CALL().");
+    last_clause_ = kWith;
+
+    extra_matcher_ = m;
+    return *this;
+  }
+
+  // Implements the .WillByDefault() clause.
+  OnCallSpec& WillByDefault(const Action<F>& action) {
+    ExpectSpecProperty(last_clause_ < kWillByDefault,
+                       ".WillByDefault() must appear "
+                       "exactly once in an ON_CALL().");
+    last_clause_ = kWillByDefault;
+
+    ExpectSpecProperty(!action.IsDoDefault(),
+                       "DoDefault() cannot be used in ON_CALL().");
+    action_ = action;
+    return *this;
+  }
+
+  // Returns true iff the given arguments match the matchers.
+  bool Matches(const ArgumentTuple& args) const {
+    return TupleMatches(matchers_, args) && extra_matcher_.Matches(args);
+  }
+
+  // Returns the action specified by the user.
+  const Action<F>& GetAction() const {
+    AssertSpecProperty(last_clause_ == kWillByDefault,
+                       ".WillByDefault() must appear exactly "
+                       "once in an ON_CALL().");
+    return action_;
+  }
+
+ private:
+  // The information in statement
+  //
+  //   ON_CALL(mock_object, Method(matchers))
+  //       .With(multi-argument-matcher)
+  //       .WillByDefault(action);
+  //
+  // is recorded in the data members like this:
+  //
+  //   source file that contains the statement => file_
+  //   line number of the statement            => line_
+  //   matchers                                => matchers_
+  //   multi-argument-matcher                  => extra_matcher_
+  //   action                                  => action_
+  ArgumentMatcherTuple matchers_;
+  Matcher<const ArgumentTuple&> extra_matcher_;
+  Action<F> action_;
+};  // class OnCallSpec
+
+// Possible reactions on uninteresting calls.  TODO(wan@google.com):
+// rename the enum values to the kFoo style.
+enum CallReaction {
+  ALLOW,
+  WARN,
+  FAIL
+};
+
+}  // namespace internal
+
+// Utilities for manipulating mock objects.
+class Mock {
+ public:
+  // The following public methods can be called concurrently.
+
+  // Tells Google Mock to ignore mock_obj when checking for leaked
+  // mock objects.
+  static void AllowLeak(const void* mock_obj);
+
+  // Verifies and clears all expectations on the given mock object.
+  // If the expectations aren't satisfied, generates one or more
+  // Google Test non-fatal failures and returns false.
+  static bool VerifyAndClearExpectations(void* mock_obj);
+
+  // Verifies all expectations on the given mock object and clears its
+  // default actions and expectations.  Returns true iff the
+  // verification was successful.
+  static bool VerifyAndClear(void* mock_obj);
+ private:
+  friend class internal::UntypedFunctionMockerBase;
+
+  // Needed for a function mocker to register itself (so that we know
+  // how to clear a mock object).
+  template <typename F>
+  friend class internal::FunctionMockerBase;
+
+  template <typename M>
+  friend class NiceMock;
+
+  template <typename M>
+  friend class StrictMock;
+
+  // Tells Google Mock to allow uninteresting calls on the given mock
+  // object.
+  // L < g_gmock_mutex
+  static void AllowUninterestingCalls(const void* mock_obj);
+
+  // Tells Google Mock to warn the user about uninteresting calls on
+  // the given mock object.
+  // L < g_gmock_mutex
+  static void WarnUninterestingCalls(const void* mock_obj);
+
+  // Tells Google Mock to fail uninteresting calls on the given mock
+  // object.
+  // L < g_gmock_mutex
+  static void FailUninterestingCalls(const void* mock_obj);
+
+  // Tells Google Mock the given mock object is being destroyed and
+  // its entry in the call-reaction table should be removed.
+  // L < g_gmock_mutex
+  static void UnregisterCallReaction(const void* mock_obj);
+
+  // Returns the reaction Google Mock will have on uninteresting calls
+  // made on the given mock object.
+  // L < g_gmock_mutex
+  static internal::CallReaction GetReactionOnUninterestingCalls(
+      const void* mock_obj);
+
+  // Verifies that all expectations on the given mock object have been
+  // satisfied.  Reports one or more Google Test non-fatal failures
+  // and returns false if not.
+  // L >= g_gmock_mutex
+  static bool VerifyAndClearExpectationsLocked(void* mock_obj);
+
+  // Clears all ON_CALL()s set on the given mock object.
+  // L >= g_gmock_mutex
+  static void ClearDefaultActionsLocked(void* mock_obj);
+
+  // Registers a mock object and a mock method it owns.
+  // L < g_gmock_mutex
+  static void Register(const void* mock_obj,
+                       internal::UntypedFunctionMockerBase* mocker);
+
+  // Tells Google Mock where in the source code mock_obj is used in an
+  // ON_CALL or EXPECT_CALL.  In case mock_obj is leaked, this
+  // information helps the user identify which object it is.
+  // L < g_gmock_mutex
+  static void RegisterUseByOnCallOrExpectCall(
+      const void* mock_obj, const char* file, int line);
+
+  // Unregisters a mock method; removes the owning mock object from
+  // the registry when the last mock method associated with it has
+  // been unregistered.  This is called only in the destructor of
+  // FunctionMockerBase.
+  // L >= g_gmock_mutex
+  static void UnregisterLocked(internal::UntypedFunctionMockerBase* mocker);
+};  // class Mock
+
+// An abstract handle of an expectation.  Useful in the .After()
+// clause of EXPECT_CALL() for setting the (partial) order of
+// expectations.  The syntax:
+//
+//   Expectation e1 = EXPECT_CALL(...)...;
+//   EXPECT_CALL(...).After(e1)...;
+//
+// sets two expectations where the latter can only be matched after
+// the former has been satisfied.
+//
+// Notes:
+//   - This class is copyable and has value semantics.
+//   - Constness is shallow: a const Expectation object itself cannot
+//     be modified, but the mutable methods of the ExpectationBase
+//     object it references can be called via expectation_base().
+//   - The constructors and destructor are defined out-of-line because
+//     the Symbian WINSCW compiler wants to otherwise instantiate them
+//     when it sees this class definition, at which point it doesn't have
+//     ExpectationBase available yet, leading to incorrect destruction
+//     in the linked_ptr (or compilation errors if using a checking
+//     linked_ptr).
+class Expectation {
+ public:
+  // Constructs a null object that doesn't reference any expectation.
+  Expectation();
+
+  ~Expectation();
+
+  // This single-argument ctor must not be explicit, in order to support the
+  //   Expectation e = EXPECT_CALL(...);
+  // syntax.
+  //
+  // A TypedExpectation object stores its pre-requisites as
+  // Expectation objects, and needs to call the non-const Retire()
+  // method on the ExpectationBase objects they reference.  Therefore
+  // Expectation must receive a *non-const* reference to the
+  // ExpectationBase object.
+  Expectation(internal::ExpectationBase& exp);  // NOLINT
+
+  // The compiler-generated copy ctor and operator= work exactly as
+  // intended, so we don't need to define our own.
+
+  // Returns true iff rhs references the same expectation as this object does.
+  bool operator==(const Expectation& rhs) const {
+    return expectation_base_ == rhs.expectation_base_;
+  }
+
+  bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }
+
+ private:
+  friend class ExpectationSet;
+  friend class Sequence;
+  friend class ::testing::internal::ExpectationBase;
+  friend class ::testing::internal::UntypedFunctionMockerBase;
+
+  template <typename F>
+  friend class ::testing::internal::FunctionMockerBase;
+
+  template <typename F>
+  friend class ::testing::internal::TypedExpectation;
+
+  // This comparator is needed for putting Expectation objects into a set.
+  class Less {
+   public:
+    bool operator()(const Expectation& lhs, const Expectation& rhs) const {
+      return lhs.expectation_base_.get() < rhs.expectation_base_.get();
+    }
+  };
+
+  typedef ::std::set<Expectation, Less> Set;
+
+  Expectation(
+      const internal::linked_ptr<internal::ExpectationBase>& expectation_base);
+
+  // Returns the expectation this object references.
+  const internal::linked_ptr<internal::ExpectationBase>&
+  expectation_base() const {
+    return expectation_base_;
+  }
+
+  // A linked_ptr that co-owns the expectation this handle references.
+  internal::linked_ptr<internal::ExpectationBase> expectation_base_;
+};
+
+// A set of expectation handles.  Useful in the .After() clause of
+// EXPECT_CALL() for setting the (partial) order of expectations.  The
+// syntax:
+//
+//   ExpectationSet es;
+//   es += EXPECT_CALL(...)...;
+//   es += EXPECT_CALL(...)...;
+//   EXPECT_CALL(...).After(es)...;
+//
+// sets three expectations where the last one can only be matched
+// after the first two have both been satisfied.
+//
+// This class is copyable and has value semantics.
+class ExpectationSet {
+ public:
+  // A bidirectional iterator that can read a const element in the set.
+  typedef Expectation::Set::const_iterator const_iterator;
+
+  // An object stored in the set.  This is an alias of Expectation.
+  typedef Expectation::Set::value_type value_type;
+
+  // Constructs an empty set.
+  ExpectationSet() {}
+
+  // This single-argument ctor must not be explicit, in order to support the
+  //   ExpectationSet es = EXPECT_CALL(...);
+  // syntax.
+  ExpectationSet(internal::ExpectationBase& exp) {  // NOLINT
+    *this += Expectation(exp);
+  }
+
+  // This single-argument ctor implements implicit conversion from
+  // Expectation and thus must not be explicit.  This allows either an
+  // Expectation or an ExpectationSet to be used in .After().
+  ExpectationSet(const Expectation& e) {  // NOLINT
+    *this += e;
+  }
+
+  // The compiler-generator ctor and operator= works exactly as
+  // intended, so we don't need to define our own.
+
+  // Returns true iff rhs contains the same set of Expectation objects
+  // as this does.
+  bool operator==(const ExpectationSet& rhs) const {
+    return expectations_ == rhs.expectations_;
+  }
+
+  bool operator!=(const ExpectationSet& rhs) const { return !(*this == rhs); }
+
+  // Implements the syntax
+  //   expectation_set += EXPECT_CALL(...);
+  ExpectationSet& operator+=(const Expectation& e) {
+    expectations_.insert(e);
+    return *this;
+  }
+
+  int size() const { return static_cast<int>(expectations_.size()); }
+
+  const_iterator begin() const { return expectations_.begin(); }
+  const_iterator end() const { return expectations_.end(); }
+
+ private:
+  Expectation::Set expectations_;
+};
+
+
+// Sequence objects are used by a user to specify the relative order
+// in which the expectations should match.  They are copyable (we rely
+// on the compiler-defined copy constructor and assignment operator).
+class Sequence {
+ public:
+  // Constructs an empty sequence.
+  Sequence() : last_expectation_(new Expectation) {}
+
+  // Adds an expectation to this sequence.  The caller must ensure
+  // that no other thread is accessing this Sequence object.
+  void AddExpectation(const Expectation& expectation) const;
+
+ private:
+  // The last expectation in this sequence.  We use a linked_ptr here
+  // because Sequence objects are copyable and we want the copies to
+  // be aliases.  The linked_ptr allows the copies to co-own and share
+  // the same Expectation object.
+  internal::linked_ptr<Expectation> last_expectation_;
+};  // class Sequence
+
+// An object of this type causes all EXPECT_CALL() statements
+// encountered in its scope to be put in an anonymous sequence.  The
+// work is done in the constructor and destructor.  You should only
+// create an InSequence object on the stack.
+//
+// The sole purpose for this class is to support easy definition of
+// sequential expectations, e.g.
+//
+//   {
+//     InSequence dummy;  // The name of the object doesn't matter.
+//
+//     // The following expectations must match in the order they appear.
+//     EXPECT_CALL(a, Bar())...;
+//     EXPECT_CALL(a, Baz())...;
+//     ...
+//     EXPECT_CALL(b, Xyz())...;
+//   }
+//
+// You can create InSequence objects in multiple threads, as long as
+// they are used to affect different mock objects.  The idea is that
+// each thread can create and set up its own mocks as if it's the only
+// thread.  However, for clarity of your tests we recommend you to set
+// up mocks in the main thread unless you have a good reason not to do
+// so.
+class InSequence {
+ public:
+  InSequence();
+  ~InSequence();
+ private:
+  bool sequence_created_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(InSequence);  // NOLINT
+} GTEST_ATTRIBUTE_UNUSED_;
+
+namespace internal {
+
+// Points to the implicit sequence introduced by a living InSequence
+// object (if any) in the current thread or NULL.
+extern ThreadLocal<Sequence*> g_gmock_implicit_sequence;
+
+// Base class for implementing expectations.
+//
+// There are two reasons for having a type-agnostic base class for
+// Expectation:
+//
+//   1. We need to store collections of expectations of different
+//   types (e.g. all pre-requisites of a particular expectation, all
+//   expectations in a sequence).  Therefore these expectation objects
+//   must share a common base class.
+//
+//   2. We can avoid binary code bloat by moving methods not depending
+//   on the template argument of Expectation to the base class.
+//
+// This class is internal and mustn't be used by user code directly.
+class ExpectationBase {
+ public:
+  // source_text is the EXPECT_CALL(...) source that created this Expectation.
+  ExpectationBase(const char* file, int line, const string& source_text);
+
+  virtual ~ExpectationBase();
+
+  // Where in the source file was the expectation spec defined?
+  const char* file() const { return file_; }
+  int line() const { return line_; }
+  const char* source_text() const { return source_text_.c_str(); }
+  // Returns the cardinality specified in the expectation spec.
+  const Cardinality& cardinality() const { return cardinality_; }
+
+  // Describes the source file location of this expectation.
+  void DescribeLocationTo(::std::ostream* os) const {
+    *os << FormatFileLocation(file(), line()) << " ";
+  }
+
+  // Describes how many times a function call matching this
+  // expectation has occurred.
+  // L >= g_gmock_mutex
+  void DescribeCallCountTo(::std::ostream* os) const;
+
+  // If this mock method has an extra matcher (i.e. .With(matcher)),
+  // describes it to the ostream.
+  virtual void MaybeDescribeExtraMatcherTo(::std::ostream* os) = 0;
+
+ protected:
+  friend class ::testing::Expectation;
+  friend class UntypedFunctionMockerBase;
+
+  enum Clause {
+    // Don't change the order of the enum members!
+    kNone,
+    kWith,
+    kTimes,
+    kInSequence,
+    kAfter,
+    kWillOnce,
+    kWillRepeatedly,
+    kRetiresOnSaturation
+  };
+
+  typedef std::vector<const void*> UntypedActions;
+
+  // Returns an Expectation object that references and co-owns this
+  // expectation.
+  virtual Expectation GetHandle() = 0;
+
+  // Asserts that the EXPECT_CALL() statement has the given property.
+  void AssertSpecProperty(bool property, const string& failure_message) const {
+    Assert(property, file_, line_, failure_message);
+  }
+
+  // Expects that the EXPECT_CALL() statement has the given property.
+  void ExpectSpecProperty(bool property, const string& failure_message) const {
+    Expect(property, file_, line_, failure_message);
+  }
+
+  // Explicitly specifies the cardinality of this expectation.  Used
+  // by the subclasses to implement the .Times() clause.
+  void SpecifyCardinality(const Cardinality& cardinality);
+
+  // Returns true iff the user specified the cardinality explicitly
+  // using a .Times().
+  bool cardinality_specified() const { return cardinality_specified_; }
+
+  // Sets the cardinality of this expectation spec.
+  void set_cardinality(const Cardinality& a_cardinality) {
+    cardinality_ = a_cardinality;
+  }
+
+  // The following group of methods should only be called after the
+  // EXPECT_CALL() statement, and only when g_gmock_mutex is held by
+  // the current thread.
+
+  // Retires all pre-requisites of this expectation.
+  // L >= g_gmock_mutex
+  void RetireAllPreRequisites();
+
+  // Returns true iff this expectation is retired.
+  // L >= g_gmock_mutex
+  bool is_retired() const {
+    g_gmock_mutex.AssertHeld();
+    return retired_;
+  }
+
+  // Retires this expectation.
+  // L >= g_gmock_mutex
+  void Retire() {
+    g_gmock_mutex.AssertHeld();
+    retired_ = true;
+  }
+
+  // Returns true iff this expectation is satisfied.
+  // L >= g_gmock_mutex
+  bool IsSatisfied() const {
+    g_gmock_mutex.AssertHeld();
+    return cardinality().IsSatisfiedByCallCount(call_count_);
+  }
+
+  // Returns true iff this expectation is saturated.
+  // L >= g_gmock_mutex
+  bool IsSaturated() const {
+    g_gmock_mutex.AssertHeld();
+    return cardinality().IsSaturatedByCallCount(call_count_);
+  }
+
+  // Returns true iff this expectation is over-saturated.
+  // L >= g_gmock_mutex
+  bool IsOverSaturated() const {
+    g_gmock_mutex.AssertHeld();
+    return cardinality().IsOverSaturatedByCallCount(call_count_);
+  }
+
+  // Returns true iff all pre-requisites of this expectation are satisfied.
+  // L >= g_gmock_mutex
+  bool AllPrerequisitesAreSatisfied() const;
+
+  // Adds unsatisfied pre-requisites of this expectation to 'result'.
+  // L >= g_gmock_mutex
+  void FindUnsatisfiedPrerequisites(ExpectationSet* result) const;
+
+  // Returns the number this expectation has been invoked.
+  // L >= g_gmock_mutex
+  int call_count() const {
+    g_gmock_mutex.AssertHeld();
+    return call_count_;
+  }
+
+  // Increments the number this expectation has been invoked.
+  // L >= g_gmock_mutex
+  void IncrementCallCount() {
+    g_gmock_mutex.AssertHeld();
+    call_count_++;
+  }
+
+  // Checks the action count (i.e. the number of WillOnce() and
+  // WillRepeatedly() clauses) against the cardinality if this hasn't
+  // been done before.  Prints a warning if there are too many or too
+  // few actions.
+  // L < mutex_
+  void CheckActionCountIfNotDone() const;
+
+  friend class ::testing::Sequence;
+  friend class ::testing::internal::ExpectationTester;
+
+  template <typename Function>
+  friend class TypedExpectation;
+
+  // Implements the .Times() clause.
+  void UntypedTimes(const Cardinality& a_cardinality);
+
+  // This group of fields are part of the spec and won't change after
+  // an EXPECT_CALL() statement finishes.
+  const char* file_;          // The file that contains the expectation.
+  int line_;                  // The line number of the expectation.
+  const string source_text_;  // The EXPECT_CALL(...) source text.
+  // True iff the cardinality is specified explicitly.
+  bool cardinality_specified_;
+  Cardinality cardinality_;            // The cardinality of the expectation.
+  // The immediate pre-requisites (i.e. expectations that must be
+  // satisfied before this expectation can be matched) of this
+  // expectation.  We use linked_ptr in the set because we want an
+  // Expectation object to be co-owned by its FunctionMocker and its
+  // successors.  This allows multiple mock objects to be deleted at
+  // different times.
+  ExpectationSet immediate_prerequisites_;
+
+  // This group of fields are the current state of the expectation,
+  // and can change as the mock function is called.
+  int call_count_;  // How many times this expectation has been invoked.
+  bool retired_;    // True iff this expectation has retired.
+  UntypedActions untyped_actions_;
+  bool extra_matcher_specified_;
+  bool repeated_action_specified_;  // True if a WillRepeatedly() was specified.
+  bool retires_on_saturation_;
+  Clause last_clause_;
+  mutable bool action_count_checked_;  // Under mutex_.
+  mutable Mutex mutex_;  // Protects action_count_checked_.
+
+  GTEST_DISALLOW_ASSIGN_(ExpectationBase);
+};  // class ExpectationBase
+
+// Impements an expectation for the given function type.
+template <typename F>
+class TypedExpectation : public ExpectationBase {
+ public:
+  typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+  typedef typename Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;
+  typedef typename Function<F>::Result Result;
+
+  TypedExpectation(FunctionMockerBase<F>* owner,
+                   const char* a_file, int a_line, const string& a_source_text,
+                   const ArgumentMatcherTuple& m)
+      : ExpectationBase(a_file, a_line, a_source_text),
+        owner_(owner),
+        matchers_(m),
+        // By default, extra_matcher_ should match anything.  However,
+        // we cannot initialize it with _ as that triggers a compiler
+        // bug in Symbian's C++ compiler (cannot decide between two
+        // overloaded constructors of Matcher<const ArgumentTuple&>).
+        extra_matcher_(A<const ArgumentTuple&>()),
+        repeated_action_(DoDefault()) {}
+
+  virtual ~TypedExpectation() {
+    // Check the validity of the action count if it hasn't been done
+    // yet (for example, if the expectation was never used).
+    CheckActionCountIfNotDone();
+    for (UntypedActions::const_iterator it = untyped_actions_.begin();
+         it != untyped_actions_.end(); ++it) {
+      delete static_cast<const Action<F>*>(*it);
+    }
+  }
+
+  // Implements the .With() clause.
+  TypedExpectation& With(const Matcher<const ArgumentTuple&>& m) {
+    if (last_clause_ == kWith) {
+      ExpectSpecProperty(false,
+                         ".With() cannot appear "
+                         "more than once in an EXPECT_CALL().");
+    } else {
+      ExpectSpecProperty(last_clause_ < kWith,
+                         ".With() must be the first "
+                         "clause in an EXPECT_CALL().");
+    }
+    last_clause_ = kWith;
+
+    extra_matcher_ = m;
+    extra_matcher_specified_ = true;
+    return *this;
+  }
+
+  // Implements the .Times() clause.
+  TypedExpectation& Times(const Cardinality& a_cardinality) {
+    ExpectationBase::UntypedTimes(a_cardinality);
+    return *this;
+  }
+
+  // Implements the .Times() clause.
+  TypedExpectation& Times(int n) {
+    return Times(Exactly(n));
+  }
+
+  // Implements the .InSequence() clause.
+  TypedExpectation& InSequence(const Sequence& s) {
+    ExpectSpecProperty(last_clause_ <= kInSequence,
+                       ".InSequence() cannot appear after .After(),"
+                       " .WillOnce(), .WillRepeatedly(), or "
+                       ".RetiresOnSaturation().");
+    last_clause_ = kInSequence;
+
+    s.AddExpectation(GetHandle());
+    return *this;
+  }
+  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2) {
+    return InSequence(s1).InSequence(s2);
+  }
+  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
+                               const Sequence& s3) {
+    return InSequence(s1, s2).InSequence(s3);
+  }
+  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
+                               const Sequence& s3, const Sequence& s4) {
+    return InSequence(s1, s2, s3).InSequence(s4);
+  }
+  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
+                               const Sequence& s3, const Sequence& s4,
+                               const Sequence& s5) {
+    return InSequence(s1, s2, s3, s4).InSequence(s5);
+  }
+
+  // Implements that .After() clause.
+  TypedExpectation& After(const ExpectationSet& s) {
+    ExpectSpecProperty(last_clause_ <= kAfter,
+                       ".After() cannot appear after .WillOnce(),"
+                       " .WillRepeatedly(), or "
+                       ".RetiresOnSaturation().");
+    last_clause_ = kAfter;
+
+    for (ExpectationSet::const_iterator it = s.begin(); it != s.end(); ++it) {
+      immediate_prerequisites_ += *it;
+    }
+    return *this;
+  }
+  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) {
+    return After(s1).After(s2);
+  }
+  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
+                          const ExpectationSet& s3) {
+    return After(s1, s2).After(s3);
+  }
+  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
+                          const ExpectationSet& s3, const ExpectationSet& s4) {
+    return After(s1, s2, s3).After(s4);
+  }
+  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
+                          const ExpectationSet& s3, const ExpectationSet& s4,
+                          const ExpectationSet& s5) {
+    return After(s1, s2, s3, s4).After(s5);
+  }
+
+  // Implements the .WillOnce() clause.
+  TypedExpectation& WillOnce(const Action<F>& action) {
+    ExpectSpecProperty(last_clause_ <= kWillOnce,
+                       ".WillOnce() cannot appear after "
+                       ".WillRepeatedly() or .RetiresOnSaturation().");
+    last_clause_ = kWillOnce;
+
+    untyped_actions_.push_back(new Action<F>(action));
+    if (!cardinality_specified()) {
+      set_cardinality(Exactly(static_cast<int>(untyped_actions_.size())));
+    }
+    return *this;
+  }
+
+  // Implements the .WillRepeatedly() clause.
+  TypedExpectation& WillRepeatedly(const Action<F>& action) {
+    if (last_clause_ == kWillRepeatedly) {
+      ExpectSpecProperty(false,
+                         ".WillRepeatedly() cannot appear "
+                         "more than once in an EXPECT_CALL().");
+    } else {
+      ExpectSpecProperty(last_clause_ < kWillRepeatedly,
+                         ".WillRepeatedly() cannot appear "
+                         "after .RetiresOnSaturation().");
+    }
+    last_clause_ = kWillRepeatedly;
+    repeated_action_specified_ = true;
+
+    repeated_action_ = action;
+    if (!cardinality_specified()) {
+      set_cardinality(AtLeast(static_cast<int>(untyped_actions_.size())));
+    }
+
+    // Now that no more action clauses can be specified, we check
+    // whether their count makes sense.
+    CheckActionCountIfNotDone();
+    return *this;
+  }
+
+  // Implements the .RetiresOnSaturation() clause.
+  TypedExpectation& RetiresOnSaturation() {
+    ExpectSpecProperty(last_clause_ < kRetiresOnSaturation,
+                       ".RetiresOnSaturation() cannot appear "
+                       "more than once.");
+    last_clause_ = kRetiresOnSaturation;
+    retires_on_saturation_ = true;
+
+    // Now that no more action clauses can be specified, we check
+    // whether their count makes sense.
+    CheckActionCountIfNotDone();
+    return *this;
+  }
+
+  // Returns the matchers for the arguments as specified inside the
+  // EXPECT_CALL() macro.
+  const ArgumentMatcherTuple& matchers() const {
+    return matchers_;
+  }
+
+  // Returns the matcher specified by the .With() clause.
+  const Matcher<const ArgumentTuple&>& extra_matcher() const {
+    return extra_matcher_;
+  }
+
+  // Returns the action specified by the .WillRepeatedly() clause.
+  const Action<F>& repeated_action() const { return repeated_action_; }
+
+  // If this mock method has an extra matcher (i.e. .With(matcher)),
+  // describes it to the ostream.
+  virtual void MaybeDescribeExtraMatcherTo(::std::ostream* os) {
+    if (extra_matcher_specified_) {
+      *os << "    Expected args: ";
+      extra_matcher_.DescribeTo(os);
+      *os << "\n";
+    }
+  }
+
+ private:
+  template <typename Function>
+  friend class FunctionMockerBase;
+
+  // Returns an Expectation object that references and co-owns this
+  // expectation.
+  virtual Expectation GetHandle() {
+    return owner_->GetHandleOf(this);
+  }
+
+  // The following methods will be called only after the EXPECT_CALL()
+  // statement finishes and when the current thread holds
+  // g_gmock_mutex.
+
+  // Returns true iff this expectation matches the given arguments.
+  // L >= g_gmock_mutex
+  bool Matches(const ArgumentTuple& args) const {
+    g_gmock_mutex.AssertHeld();
+    return TupleMatches(matchers_, args) && extra_matcher_.Matches(args);
+  }
+
+  // Returns true iff this expectation should handle the given arguments.
+  // L >= g_gmock_mutex
+  bool ShouldHandleArguments(const ArgumentTuple& args) const {
+    g_gmock_mutex.AssertHeld();
+
+    // In case the action count wasn't checked when the expectation
+    // was defined (e.g. if this expectation has no WillRepeatedly()
+    // or RetiresOnSaturation() clause), we check it when the
+    // expectation is used for the first time.
+    CheckActionCountIfNotDone();
+    return !is_retired() && AllPrerequisitesAreSatisfied() && Matches(args);
+  }
+
+  // Describes the result of matching the arguments against this
+  // expectation to the given ostream.
+  // L >= g_gmock_mutex
+  void ExplainMatchResultTo(const ArgumentTuple& args,
+                            ::std::ostream* os) const {
+    g_gmock_mutex.AssertHeld();
+
+    if (is_retired()) {
+      *os << "         Expected: the expectation is active\n"
+          << "           Actual: it is retired\n";
+    } else if (!Matches(args)) {
+      if (!TupleMatches(matchers_, args)) {
+        ExplainMatchFailureTupleTo(matchers_, args, os);
+      }
+      StringMatchResultListener listener;
+      if (!extra_matcher_.MatchAndExplain(args, &listener)) {
+        *os << "    Expected args: ";
+        extra_matcher_.DescribeTo(os);
+        *os << "\n           Actual: don't match";
+
+        internal::PrintIfNotEmpty(listener.str(), os);
+        *os << "\n";
+      }
+    } else if (!AllPrerequisitesAreSatisfied()) {
+      *os << "         Expected: all pre-requisites are satisfied\n"
+          << "           Actual: the following immediate pre-requisites "
+          << "are not satisfied:\n";
+      ExpectationSet unsatisfied_prereqs;
+      FindUnsatisfiedPrerequisites(&unsatisfied_prereqs);
+      int i = 0;
+      for (ExpectationSet::const_iterator it = unsatisfied_prereqs.begin();
+           it != unsatisfied_prereqs.end(); ++it) {
+        it->expectation_base()->DescribeLocationTo(os);
+        *os << "pre-requisite #" << i++ << "\n";
+      }
+      *os << "                   (end of pre-requisites)\n";
+    } else {
+      // This line is here just for completeness' sake.  It will never
+      // be executed as currently the ExplainMatchResultTo() function
+      // is called only when the mock function call does NOT match the
+      // expectation.
+      *os << "The call matches the expectation.\n";
+    }
+  }
+
+  // Returns the action that should be taken for the current invocation.
+  // L >= g_gmock_mutex
+  const Action<F>& GetCurrentAction(const FunctionMockerBase<F>* mocker,
+                                    const ArgumentTuple& args) const {
+    g_gmock_mutex.AssertHeld();
+    const int count = call_count();
+    Assert(count >= 1, __FILE__, __LINE__,
+           "call_count() is <= 0 when GetCurrentAction() is "
+           "called - this should never happen.");
+
+    const int action_count = static_cast<int>(untyped_actions_.size());
+    if (action_count > 0 && !repeated_action_specified_ &&
+        count > action_count) {
+      // If there is at least one WillOnce() and no WillRepeatedly(),
+      // we warn the user when the WillOnce() clauses ran out.
+      ::std::stringstream ss;
+      DescribeLocationTo(&ss);
+      ss << "Actions ran out in " << source_text() << "...\n"
+         << "Called " << count << " times, but only "
+         << action_count << " WillOnce()"
+         << (action_count == 1 ? " is" : "s are") << " specified - ";
+      mocker->DescribeDefaultActionTo(args, &ss);
+      Log(WARNING, ss.str(), 1);
+    }
+
+    return count <= action_count ?
+        *static_cast<const Action<F>*>(untyped_actions_[count - 1]) :
+        repeated_action();
+  }
+
+  // Given the arguments of a mock function call, if the call will
+  // over-saturate this expectation, returns the default action;
+  // otherwise, returns the next action in this expectation.  Also
+  // describes *what* happened to 'what', and explains *why* Google
+  // Mock does it to 'why'.  This method is not const as it calls
+  // IncrementCallCount().  A return value of NULL means the default
+  // action.
+  // L >= g_gmock_mutex
+  const Action<F>* GetActionForArguments(const FunctionMockerBase<F>* mocker,
+                                         const ArgumentTuple& args,
+                                         ::std::ostream* what,
+                                         ::std::ostream* why) {
+    g_gmock_mutex.AssertHeld();
+    if (IsSaturated()) {
+      // We have an excessive call.
+      IncrementCallCount();
+      *what << "Mock function called more times than expected - ";
+      mocker->DescribeDefaultActionTo(args, what);
+      DescribeCallCountTo(why);
+
+      // TODO(wan@google.com): allow the user to control whether
+      // unexpected calls should fail immediately or continue using a
+      // flag --gmock_unexpected_calls_are_fatal.
+      return NULL;
+    }
+
+    IncrementCallCount();
+    RetireAllPreRequisites();
+
+    if (retires_on_saturation_ && IsSaturated()) {
+      Retire();
+    }
+
+    // Must be done after IncrementCount()!
+    *what << "Mock function call matches " << source_text() <<"...\n";
+    return &(GetCurrentAction(mocker, args));
+  }
+
+  // All the fields below won't change once the EXPECT_CALL()
+  // statement finishes.
+  FunctionMockerBase<F>* const owner_;
+  ArgumentMatcherTuple matchers_;
+  Matcher<const ArgumentTuple&> extra_matcher_;
+  Action<F> repeated_action_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TypedExpectation);
+};  // class TypedExpectation
+
+// A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
+// specifying the default behavior of, or expectation on, a mock
+// function.
+
+// Note: class MockSpec really belongs to the ::testing namespace.
+// However if we define it in ::testing, MSVC will complain when
+// classes in ::testing::internal declare it as a friend class
+// template.  To workaround this compiler bug, we define MockSpec in
+// ::testing::internal and import it into ::testing.
+
+// Logs a message including file and line number information.
+void LogWithLocation(testing::internal::LogSeverity severity,
+                     const char* file, int line,
+                     const string& message);
+
+template <typename F>
+class MockSpec {
+ public:
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+  typedef typename internal::Function<F>::ArgumentMatcherTuple
+      ArgumentMatcherTuple;
+
+  // Constructs a MockSpec object, given the function mocker object
+  // that the spec is associated with.
+  explicit MockSpec(internal::FunctionMockerBase<F>* function_mocker)
+      : function_mocker_(function_mocker) {}
+
+  // Adds a new default action spec to the function mocker and returns
+  // the newly created spec.
+  internal::OnCallSpec<F>& InternalDefaultActionSetAt(
+      const char* file, int line, const char* obj, const char* call) {
+    LogWithLocation(internal::INFO, file, line,
+        string("ON_CALL(") + obj + ", " + call + ") invoked");
+    return function_mocker_->AddNewOnCallSpec(file, line, matchers_);
+  }
+
+  // Adds a new expectation spec to the function mocker and returns
+  // the newly created spec.
+  internal::TypedExpectation<F>& InternalExpectedAt(
+      const char* file, int line, const char* obj, const char* call) {
+    const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")");
+    LogWithLocation(internal::INFO, file, line, source_text + " invoked");
+    return function_mocker_->AddNewExpectation(
+        file, line, source_text, matchers_);
+  }
+
+ private:
+  template <typename Function>
+  friend class internal::FunctionMocker;
+
+  void SetMatchers(const ArgumentMatcherTuple& matchers) {
+    matchers_ = matchers;
+  }
+
+  // The function mocker that owns this spec.
+  internal::FunctionMockerBase<F>* const function_mocker_;
+  // The argument matchers specified in the spec.
+  ArgumentMatcherTuple matchers_;
+
+  GTEST_DISALLOW_ASSIGN_(MockSpec);
+};  // class MockSpec
+
+// MSVC warns about using 'this' in base member initializer list, so
+// we need to temporarily disable the warning.  We have to do it for
+// the entire class to suppress the warning, even though it's about
+// the constructor only.
+
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4355)  // Temporarily disables warning 4355.
+#endif  // _MSV_VER
+
+// C++ treats the void type specially.  For example, you cannot define
+// a void-typed variable or pass a void value to a function.
+// ActionResultHolder<T> holds a value of type T, where T must be a
+// copyable type or void (T doesn't need to be default-constructable).
+// It hides the syntactic difference between void and other types, and
+// is used to unify the code for invoking both void-returning and
+// non-void-returning mock functions.
+
+// Untyped base class for ActionResultHolder<T>.
+class UntypedActionResultHolderBase {
+ public:
+  virtual ~UntypedActionResultHolderBase() {}
+
+  // Prints the held value as an action's result to os.
+  virtual void PrintAsActionResult(::std::ostream* os) const = 0;
+};
+
+// This generic definition is used when T is not void.
+template <typename T>
+class ActionResultHolder : public UntypedActionResultHolderBase {
+ public:
+  explicit ActionResultHolder(T a_value) : value_(a_value) {}
+
+  // The compiler-generated copy constructor and assignment operator
+  // are exactly what we need, so we don't need to define them.
+
+  // Returns the held value and deletes this object.
+  T GetValueAndDelete() const {
+    T retval(value_);
+    delete this;
+    return retval;
+  }
+
+  // Prints the held value as an action's result to os.
+  virtual void PrintAsActionResult(::std::ostream* os) const {
+    *os << "\n          Returns: ";
+    // T may be a reference type, so we don't use UniversalPrint().
+    UniversalPrinter<T>::Print(value_, os);
+  }
+
+  // Performs the given mock function's default action and returns the
+  // result in a new-ed ActionResultHolder.
+  template <typename F>
+  static ActionResultHolder* PerformDefaultAction(
+      const FunctionMockerBase<F>* func_mocker,
+      const typename Function<F>::ArgumentTuple& args,
+      const string& call_description) {
+    return new ActionResultHolder(
+        func_mocker->PerformDefaultAction(args, call_description));
+  }
+
+  // Performs the given action and returns the result in a new-ed
+  // ActionResultHolder.
+  template <typename F>
+  static ActionResultHolder*
+  PerformAction(const Action<F>& action,
+                const typename Function<F>::ArgumentTuple& args) {
+    return new ActionResultHolder(action.Perform(args));
+  }
+
+ private:
+  T value_;
+
+  // T could be a reference type, so = isn't supported.
+  GTEST_DISALLOW_ASSIGN_(ActionResultHolder);
+};
+
+// Specialization for T = void.
+template <>
+class ActionResultHolder<void> : public UntypedActionResultHolderBase {
+ public:
+  void GetValueAndDelete() const { delete this; }
+
+  virtual void PrintAsActionResult(::std::ostream* /* os */) const {}
+
+  // Performs the given mock function's default action and returns NULL;
+  template <typename F>
+  static ActionResultHolder* PerformDefaultAction(
+      const FunctionMockerBase<F>* func_mocker,
+      const typename Function<F>::ArgumentTuple& args,
+      const string& call_description) {
+    func_mocker->PerformDefaultAction(args, call_description);
+    return NULL;
+  }
+
+  // Performs the given action and returns NULL.
+  template <typename F>
+  static ActionResultHolder* PerformAction(
+      const Action<F>& action,
+      const typename Function<F>::ArgumentTuple& args) {
+    action.Perform(args);
+    return NULL;
+  }
+};
+
+// The base of the function mocker class for the given function type.
+// We put the methods in this class instead of its child to avoid code
+// bloat.
+template <typename F>
+class FunctionMockerBase : public UntypedFunctionMockerBase {
+ public:
+  typedef typename Function<F>::Result Result;
+  typedef typename Function<F>::ArgumentTuple ArgumentTuple;
+  typedef typename Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;
+
+  FunctionMockerBase() : current_spec_(this) {}
+
+  // The destructor verifies that all expectations on this mock
+  // function have been satisfied.  If not, it will report Google Test
+  // non-fatal failures for the violations.
+  // L < g_gmock_mutex
+  virtual ~FunctionMockerBase() {
+    MutexLock l(&g_gmock_mutex);
+    VerifyAndClearExpectationsLocked();
+    Mock::UnregisterLocked(this);
+    ClearDefaultActionsLocked();
+  }
+
+  // Returns the ON_CALL spec that matches this mock function with the
+  // given arguments; returns NULL if no matching ON_CALL is found.
+  // L = *
+  const OnCallSpec<F>* FindOnCallSpec(
+      const ArgumentTuple& args) const {
+    for (UntypedOnCallSpecs::const_reverse_iterator it
+             = untyped_on_call_specs_.rbegin();
+         it != untyped_on_call_specs_.rend(); ++it) {
+      const OnCallSpec<F>* spec = static_cast<const OnCallSpec<F>*>(*it);
+      if (spec->Matches(args))
+        return spec;
+    }
+
+    return NULL;
+  }
+
+  // Performs the default action of this mock function on the given arguments
+  // and returns the result. Asserts with a helpful call descrption if there is
+  // no valid return value. This method doesn't depend on the mutable state of
+  // this object, and thus can be called concurrently without locking.
+  // L = *
+  Result PerformDefaultAction(const ArgumentTuple& args,
+                              const string& call_description) const {
+    const OnCallSpec<F>* const spec =
+        this->FindOnCallSpec(args);
+    if (spec != NULL) {
+      return spec->GetAction().Perform(args);
+    }
+    Assert(DefaultValue<Result>::Exists(), "", -1,
+           call_description + "\n    The mock function has no default action "
+           "set, and its return type has no default value set.");
+    return DefaultValue<Result>::Get();
+  }
+
+  // Performs the default action with the given arguments and returns
+  // the action's result.  The call description string will be used in
+  // the error message to describe the call in the case the default
+  // action fails.  The caller is responsible for deleting the result.
+  // L = *
+  virtual UntypedActionResultHolderBase* UntypedPerformDefaultAction(
+      const void* untyped_args,  // must point to an ArgumentTuple
+      const string& call_description) const {
+    const ArgumentTuple& args =
+        *static_cast<const ArgumentTuple*>(untyped_args);
+    return ResultHolder::PerformDefaultAction(this, args, call_description);
+  }
+
+  // Performs the given action with the given arguments and returns
+  // the action's result.  The caller is responsible for deleting the
+  // result.
+  // L = *
+  virtual UntypedActionResultHolderBase* UntypedPerformAction(
+      const void* untyped_action, const void* untyped_args) const {
+    // Make a copy of the action before performing it, in case the
+    // action deletes the mock object (and thus deletes itself).
+    const Action<F> action = *static_cast<const Action<F>*>(untyped_action);
+    const ArgumentTuple& args =
+        *static_cast<const ArgumentTuple*>(untyped_args);
+    return ResultHolder::PerformAction(action, args);
+  }
+
+  // Implements UntypedFunctionMockerBase::ClearDefaultActionsLocked():
+  // clears the ON_CALL()s set on this mock function.
+  // L >= g_gmock_mutex
+  virtual void ClearDefaultActionsLocked() {
+    g_gmock_mutex.AssertHeld();
+    for (UntypedOnCallSpecs::const_iterator it =
+             untyped_on_call_specs_.begin();
+         it != untyped_on_call_specs_.end(); ++it) {
+      delete static_cast<const OnCallSpec<F>*>(*it);
+    }
+    untyped_on_call_specs_.clear();
+  }
+
+ protected:
+  template <typename Function>
+  friend class MockSpec;
+
+  typedef ActionResultHolder<Result> ResultHolder;
+
+  // Returns the result of invoking this mock function with the given
+  // arguments.  This function can be safely called from multiple
+  // threads concurrently.
+  // L < g_gmock_mutex
+  Result InvokeWith(const ArgumentTuple& args) {
+    return static_cast<const ResultHolder*>(
+        this->UntypedInvokeWith(&args))->GetValueAndDelete();
+  }
+
+  // Adds and returns a default action spec for this mock function.
+  // L < g_gmock_mutex
+  OnCallSpec<F>& AddNewOnCallSpec(
+      const char* file, int line,
+      const ArgumentMatcherTuple& m) {
+    Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
+    OnCallSpec<F>* const on_call_spec = new OnCallSpec<F>(file, line, m);
+    untyped_on_call_specs_.push_back(on_call_spec);
+    return *on_call_spec;
+  }
+
+  // Adds and returns an expectation spec for this mock function.
+  // L < g_gmock_mutex
+  TypedExpectation<F>& AddNewExpectation(
+      const char* file,
+      int line,
+      const string& source_text,
+      const ArgumentMatcherTuple& m) {
+    Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
+    TypedExpectation<F>* const expectation =
+        new TypedExpectation<F>(this, file, line, source_text, m);
+    const linked_ptr<ExpectationBase> untyped_expectation(expectation);
+    untyped_expectations_.push_back(untyped_expectation);
+
+    // Adds this expectation into the implicit sequence if there is one.
+    Sequence* const implicit_sequence = g_gmock_implicit_sequence.get();
+    if (implicit_sequence != NULL) {
+      implicit_sequence->AddExpectation(Expectation(untyped_expectation));
+    }
+
+    return *expectation;
+  }
+
+  // The current spec (either default action spec or expectation spec)
+  // being described on this function mocker.
+  MockSpec<F>& current_spec() { return current_spec_; }
+
+ private:
+  template <typename Func> friend class TypedExpectation;
+
+  // Some utilities needed for implementing UntypedInvokeWith().
+
+  // Describes what default action will be performed for the given
+  // arguments.
+  // L = *
+  void DescribeDefaultActionTo(const ArgumentTuple& args,
+                               ::std::ostream* os) const {
+    const OnCallSpec<F>* const spec = FindOnCallSpec(args);
+
+    if (spec == NULL) {
+      *os << (internal::type_equals<Result, void>::value ?
+              "returning directly.\n" :
+              "returning default value.\n");
+    } else {
+      *os << "taking default action specified at:\n"
+          << FormatFileLocation(spec->file(), spec->line()) << "\n";
+    }
+  }
+
+  // Writes a message that the call is uninteresting (i.e. neither
+  // explicitly expected nor explicitly unexpected) to the given
+  // ostream.
+  // L < g_gmock_mutex
+  virtual void UntypedDescribeUninterestingCall(const void* untyped_args,
+                                                ::std::ostream* os) const {
+    const ArgumentTuple& args =
+        *static_cast<const ArgumentTuple*>(untyped_args);
+    *os << "Uninteresting mock function call - ";
+    DescribeDefaultActionTo(args, os);
+    *os << "    Function call: " << Name();
+    UniversalPrint(args, os);
+  }
+
+  // Returns the expectation that matches the given function arguments
+  // (or NULL is there's no match); when a match is found,
+  // untyped_action is set to point to the action that should be
+  // performed (or NULL if the action is "do default"), and
+  // is_excessive is modified to indicate whether the call exceeds the
+  // expected number.
+  //
+  // Critical section: We must find the matching expectation and the
+  // corresponding action that needs to be taken in an ATOMIC
+  // transaction.  Otherwise another thread may call this mock
+  // method in the middle and mess up the state.
+  //
+  // However, performing the action has to be left out of the critical
+  // section.  The reason is that we have no control on what the
+  // action does (it can invoke an arbitrary user function or even a
+  // mock function) and excessive locking could cause a dead lock.
+  // L < g_gmock_mutex
+  virtual const ExpectationBase* UntypedFindMatchingExpectation(
+      const void* untyped_args,
+      const void** untyped_action, bool* is_excessive,
+      ::std::ostream* what, ::std::ostream* why) {
+    const ArgumentTuple& args =
+        *static_cast<const ArgumentTuple*>(untyped_args);
+    MutexLock l(&g_gmock_mutex);
+    TypedExpectation<F>* exp = this->FindMatchingExpectationLocked(args);
+    if (exp == NULL) {  // A match wasn't found.
+      this->FormatUnexpectedCallMessageLocked(args, what, why);
+      return NULL;
+    }
+
+    // This line must be done before calling GetActionForArguments(),
+    // which will increment the call count for *exp and thus affect
+    // its saturation status.
+    *is_excessive = exp->IsSaturated();
+    const Action<F>* action = exp->GetActionForArguments(this, args, what, why);
+    if (action != NULL && action->IsDoDefault())
+      action = NULL;  // Normalize "do default" to NULL.
+    *untyped_action = action;
+    return exp;
+  }
+
+  // Prints the given function arguments to the ostream.
+  virtual void UntypedPrintArgs(const void* untyped_args,
+                                ::std::ostream* os) const {
+    const ArgumentTuple& args =
+        *static_cast<const ArgumentTuple*>(untyped_args);
+    UniversalPrint(args, os);
+  }
+
+  // Returns the expectation that matches the arguments, or NULL if no
+  // expectation matches them.
+  // L >= g_gmock_mutex
+  TypedExpectation<F>* FindMatchingExpectationLocked(
+      const ArgumentTuple& args) const {
+    g_gmock_mutex.AssertHeld();
+    for (typename UntypedExpectations::const_reverse_iterator it =
+             untyped_expectations_.rbegin();
+         it != untyped_expectations_.rend(); ++it) {
+      TypedExpectation<F>* const exp =
+          static_cast<TypedExpectation<F>*>(it->get());
+      if (exp->ShouldHandleArguments(args)) {
+        return exp;
+      }
+    }
+    return NULL;
+  }
+
+  // Returns a message that the arguments don't match any expectation.
+  // L >= g_gmock_mutex
+  void FormatUnexpectedCallMessageLocked(const ArgumentTuple& args,
+                                         ::std::ostream* os,
+                                         ::std::ostream* why) const {
+    g_gmock_mutex.AssertHeld();
+    *os << "\nUnexpected mock function call - ";
+    DescribeDefaultActionTo(args, os);
+    PrintTriedExpectationsLocked(args, why);
+  }
+
+  // Prints a list of expectations that have been tried against the
+  // current mock function call.
+  // L >= g_gmock_mutex
+  void PrintTriedExpectationsLocked(const ArgumentTuple& args,
+                                    ::std::ostream* why) const {
+    g_gmock_mutex.AssertHeld();
+    const int count = static_cast<int>(untyped_expectations_.size());
+    *why << "Google Mock tried the following " << count << " "
+         << (count == 1 ? "expectation, but it didn't match" :
+             "expectations, but none matched")
+         << ":\n";
+    for (int i = 0; i < count; i++) {
+      TypedExpectation<F>* const expectation =
+          static_cast<TypedExpectation<F>*>(untyped_expectations_[i].get());
+      *why << "\n";
+      expectation->DescribeLocationTo(why);
+      if (count > 1) {
+        *why << "tried expectation #" << i << ": ";
+      }
+      *why << expectation->source_text() << "...\n";
+      expectation->ExplainMatchResultTo(args, why);
+      expectation->DescribeCallCountTo(why);
+    }
+  }
+
+  // The current spec (either default action spec or expectation spec)
+  // being described on this function mocker.
+  MockSpec<F> current_spec_;
+
+  // There is no generally useful and implementable semantics of
+  // copying a mock object, so copying a mock is usually a user error.
+  // Thus we disallow copying function mockers.  If the user really
+  // wants to copy a mock object, he should implement his own copy
+  // operation, for example:
+  //
+  //   class MockFoo : public Foo {
+  //    public:
+  //     // Defines a copy constructor explicitly.
+  //     MockFoo(const MockFoo& src) {}
+  //     ...
+  //   };
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(FunctionMockerBase);
+};  // class FunctionMockerBase
+
+#ifdef _MSC_VER
+# pragma warning(pop)  // Restores the warning state.
+#endif  // _MSV_VER
+
+// Implements methods of FunctionMockerBase.
+
+// Verifies that all expectations on this mock function have been
+// satisfied.  Reports one or more Google Test non-fatal failures and
+// returns false if not.
+// L >= g_gmock_mutex
+
+// Reports an uninteresting call (whose description is in msg) in the
+// manner specified by 'reaction'.
+void ReportUninterestingCall(CallReaction reaction, const string& msg);
+
+}  // namespace internal
+
+// The style guide prohibits "using" statements in a namespace scope
+// inside a header file.  However, the MockSpec class template is
+// meant to be defined in the ::testing namespace.  The following line
+// is just a trick for working around a bug in MSVC 8.0, which cannot
+// handle it if we define MockSpec in ::testing.
+using internal::MockSpec;
+
+// Const(x) is a convenient function for obtaining a const reference
+// to x.  This is useful for setting expectations on an overloaded
+// const mock method, e.g.
+//
+//   class MockFoo : public FooInterface {
+//    public:
+//     MOCK_METHOD0(Bar, int());
+//     MOCK_CONST_METHOD0(Bar, int&());
+//   };
+//
+//   MockFoo foo;
+//   // Expects a call to non-const MockFoo::Bar().
+//   EXPECT_CALL(foo, Bar());
+//   // Expects a call to const MockFoo::Bar().
+//   EXPECT_CALL(Const(foo), Bar());
+template <typename T>
+inline const T& Const(const T& x) { return x; }
+
+// Constructs an Expectation object that references and co-owns exp.
+inline Expectation::Expectation(internal::ExpectationBase& exp)  // NOLINT
+    : expectation_base_(exp.GetHandle().expectation_base()) {}
+
+}  // namespace testing
+
+// A separate macro is required to avoid compile errors when the name
+// of the method used in call is a result of macro expansion.
+// See CompilesWithMethodNameExpandedFromMacro tests in
+// internal/gmock-spec-builders_test.cc for more details.
+#define GMOCK_ON_CALL_IMPL_(obj, call) \
+    ((obj).gmock_##call).InternalDefaultActionSetAt(__FILE__, __LINE__, \
+                                                    #obj, #call)
+#define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)
+
+#define GMOCK_EXPECT_CALL_IMPL_(obj, call) \
+    ((obj).gmock_##call).InternalExpectedAt(__FILE__, __LINE__, #obj, #call)
+#define EXPECT_CALL(obj, call) GMOCK_EXPECT_CALL_IMPL_(obj, call)
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
+
+namespace testing {
+namespace internal {
+
+template <typename F>
+class FunctionMockerBase;
+
+// Note: class FunctionMocker really belongs to the ::testing
+// namespace.  However if we define it in ::testing, MSVC will
+// complain when classes in ::testing::internal declare it as a
+// friend class template.  To workaround this compiler bug, we define
+// FunctionMocker in ::testing::internal and import it into ::testing.
+template <typename F>
+class FunctionMocker;
+
+template <typename R>
+class FunctionMocker<R()> : public
+    internal::FunctionMockerBase<R()> {
+ public:
+  typedef R F();
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With() {
+    return this->current_spec();
+  }
+
+  R Invoke() {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple());
+  }
+};
+
+template <typename R, typename A1>
+class FunctionMocker<R(A1)> : public
+    internal::FunctionMockerBase<R(A1)> {
+ public:
+  typedef R F(A1);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1));
+  }
+};
+
+template <typename R, typename A1, typename A2>
+class FunctionMocker<R(A1, A2)> : public
+    internal::FunctionMockerBase<R(A1, A2)> {
+ public:
+  typedef R F(A1, A2);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3>
+class FunctionMocker<R(A1, A2, A3)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3)> {
+ public:
+  typedef R F(A1, A2, A3);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4>
+class FunctionMocker<R(A1, A2, A3, A4)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4)> {
+ public:
+  typedef R F(A1, A2, A3, A4);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5>
+class FunctionMocker<R(A1, A2, A3, A4, A5)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4,
+        m5));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6>
+class FunctionMocker<R(A1, A2, A3, A4, A5, A6)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5, A6)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5, A6);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
+      const Matcher<A6>& m6) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
+        m6));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5, a6));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7>
+class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5, A6, A7)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5, A6, A7);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
+      const Matcher<A6>& m6, const Matcher<A7>& m7) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
+        m6, m7));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5, a6, a7));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8>
+class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5, A6, A7, A8)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5, A6, A7, A8);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
+      const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
+        m6, m7, m8));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5, a6, a7, a8));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9>
+class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5, A6, A7, A8, A9);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
+      const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8,
+      const Matcher<A9>& m9) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
+        m6, m7, m8, m9));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5, a6, a7, a8, a9));
+  }
+};
+
+template <typename R, typename A1, typename A2, typename A3, typename A4,
+    typename A5, typename A6, typename A7, typename A8, typename A9,
+    typename A10>
+class FunctionMocker<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> : public
+    internal::FunctionMockerBase<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> {
+ public:
+  typedef R F(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10);
+  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
+
+  MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2,
+      const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
+      const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8,
+      const Matcher<A9>& m9, const Matcher<A10>& m10) {
+    this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
+        m6, m7, m8, m9, m10));
+    return this->current_spec();
+  }
+
+  R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9,
+      A10 a10) {
+    // Even though gcc and MSVC don't enforce it, 'this->' is required
+    // by the C++ standard [14.6.4] here, as the base class type is
+    // dependent on the template argument (and thus shouldn't be
+    // looked into when resolving InvokeWith).
+    return this->InvokeWith(ArgumentTuple(a1, a2, a3, a4, a5, a6, a7, a8, a9,
+        a10));
+  }
+};
+
+}  // namespace internal
+
+// The style guide prohibits "using" statements in a namespace scope
+// inside a header file.  However, the FunctionMocker class template
+// is meant to be defined in the ::testing namespace.  The following
+// line is just a trick for working around a bug in MSVC 8.0, which
+// cannot handle it if we define FunctionMocker in ::testing.
+using internal::FunctionMocker;
+
+// The result type of function type F.
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_RESULT_(tn, F) tn ::testing::internal::Function<F>::Result
+
+// The type of argument N of function type F.
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_ARG_(tn, F, N) tn ::testing::internal::Function<F>::Argument##N
+
+// The matcher type for argument N of function type F.
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_MATCHER_(tn, F, N) const ::testing::Matcher<GMOCK_ARG_(tn, F, N)>&
+
+// The variable for mocking the given method.
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_MOCKER_(arity, constness, Method) \
+    GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD0_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method() constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 0, \
+        this_method_does_not_take_0_arguments); \
+    GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(0, constness, Method).Invoke(); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method() constness { \
+    GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(0, constness, Method).With(); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(0, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD1_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 1, \
+        this_method_does_not_take_1_argument); \
+    GMOCK_MOCKER_(1, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(1, constness, Method).Invoke(gmock_a1); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1) constness { \
+    GMOCK_MOCKER_(1, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(1, constness, Method).With(gmock_a1); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(1, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD2_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 2, \
+        this_method_does_not_take_2_arguments); \
+    GMOCK_MOCKER_(2, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(2, constness, Method).Invoke(gmock_a1, gmock_a2); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2) constness { \
+    GMOCK_MOCKER_(2, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(2, constness, Method).With(gmock_a1, gmock_a2); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(2, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD3_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 3, \
+        this_method_does_not_take_3_arguments); \
+    GMOCK_MOCKER_(3, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(3, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3) constness { \
+    GMOCK_MOCKER_(3, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(3, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(3, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD4_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 4, \
+        this_method_does_not_take_4_arguments); \
+    GMOCK_MOCKER_(4, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(4, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4) constness { \
+    GMOCK_MOCKER_(4, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(4, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(4, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD5_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 5, \
+        this_method_does_not_take_5_arguments); \
+    GMOCK_MOCKER_(5, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(5, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5) constness { \
+    GMOCK_MOCKER_(5, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(5, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(5, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD6_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5, \
+                                 GMOCK_ARG_(tn, F, 6) gmock_a6) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 6, \
+        this_method_does_not_take_6_arguments); \
+    GMOCK_MOCKER_(6, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(6, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5, \
+                     GMOCK_MATCHER_(tn, F, 6) gmock_a6) constness { \
+    GMOCK_MOCKER_(6, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(6, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(6, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD7_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5, \
+                                 GMOCK_ARG_(tn, F, 6) gmock_a6, \
+                                 GMOCK_ARG_(tn, F, 7) gmock_a7) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 7, \
+        this_method_does_not_take_7_arguments); \
+    GMOCK_MOCKER_(7, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(7, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5, \
+                     GMOCK_MATCHER_(tn, F, 6) gmock_a6, \
+                     GMOCK_MATCHER_(tn, F, 7) gmock_a7) constness { \
+    GMOCK_MOCKER_(7, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(7, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(7, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD8_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5, \
+                                 GMOCK_ARG_(tn, F, 6) gmock_a6, \
+                                 GMOCK_ARG_(tn, F, 7) gmock_a7, \
+                                 GMOCK_ARG_(tn, F, 8) gmock_a8) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 8, \
+        this_method_does_not_take_8_arguments); \
+    GMOCK_MOCKER_(8, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(8, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5, \
+                     GMOCK_MATCHER_(tn, F, 6) gmock_a6, \
+                     GMOCK_MATCHER_(tn, F, 7) gmock_a7, \
+                     GMOCK_MATCHER_(tn, F, 8) gmock_a8) constness { \
+    GMOCK_MOCKER_(8, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(8, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(8, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD9_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5, \
+                                 GMOCK_ARG_(tn, F, 6) gmock_a6, \
+                                 GMOCK_ARG_(tn, F, 7) gmock_a7, \
+                                 GMOCK_ARG_(tn, F, 8) gmock_a8, \
+                                 GMOCK_ARG_(tn, F, 9) gmock_a9) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 9, \
+        this_method_does_not_take_9_arguments); \
+    GMOCK_MOCKER_(9, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(9, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8, \
+        gmock_a9); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5, \
+                     GMOCK_MATCHER_(tn, F, 6) gmock_a6, \
+                     GMOCK_MATCHER_(tn, F, 7) gmock_a7, \
+                     GMOCK_MATCHER_(tn, F, 8) gmock_a8, \
+                     GMOCK_MATCHER_(tn, F, 9) gmock_a9) constness { \
+    GMOCK_MOCKER_(9, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(9, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8, \
+        gmock_a9); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(9, constness, Method)
+
+// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
+#define GMOCK_METHOD10_(tn, constness, ct, Method, F) \
+  GMOCK_RESULT_(tn, F) ct Method(GMOCK_ARG_(tn, F, 1) gmock_a1, \
+                                 GMOCK_ARG_(tn, F, 2) gmock_a2, \
+                                 GMOCK_ARG_(tn, F, 3) gmock_a3, \
+                                 GMOCK_ARG_(tn, F, 4) gmock_a4, \
+                                 GMOCK_ARG_(tn, F, 5) gmock_a5, \
+                                 GMOCK_ARG_(tn, F, 6) gmock_a6, \
+                                 GMOCK_ARG_(tn, F, 7) gmock_a7, \
+                                 GMOCK_ARG_(tn, F, 8) gmock_a8, \
+                                 GMOCK_ARG_(tn, F, 9) gmock_a9, \
+                                 GMOCK_ARG_(tn, F, 10) gmock_a10) constness { \
+    GTEST_COMPILE_ASSERT_(::std::tr1::tuple_size< \
+        tn ::testing::internal::Function<F>::ArgumentTuple>::value == 10, \
+        this_method_does_not_take_10_arguments); \
+    GMOCK_MOCKER_(10, constness, Method).SetOwnerAndName(this, #Method); \
+    return GMOCK_MOCKER_(10, constness, Method).Invoke(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8, gmock_a9, \
+        gmock_a10); \
+  } \
+  ::testing::MockSpec<F>& \
+      gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, \
+                     GMOCK_MATCHER_(tn, F, 2) gmock_a2, \
+                     GMOCK_MATCHER_(tn, F, 3) gmock_a3, \
+                     GMOCK_MATCHER_(tn, F, 4) gmock_a4, \
+                     GMOCK_MATCHER_(tn, F, 5) gmock_a5, \
+                     GMOCK_MATCHER_(tn, F, 6) gmock_a6, \
+                     GMOCK_MATCHER_(tn, F, 7) gmock_a7, \
+                     GMOCK_MATCHER_(tn, F, 8) gmock_a8, \
+                     GMOCK_MATCHER_(tn, F, 9) gmock_a9, \
+                     GMOCK_MATCHER_(tn, F, 10) gmock_a10) constness { \
+    GMOCK_MOCKER_(10, constness, Method).RegisterOwner(this); \
+    return GMOCK_MOCKER_(10, constness, Method).With(gmock_a1, gmock_a2, \
+        gmock_a3, gmock_a4, gmock_a5, gmock_a6, gmock_a7, gmock_a8, gmock_a9, \
+        gmock_a10); \
+  } \
+  mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(10, constness, Method)
+
+#define MOCK_METHOD0(m, F) GMOCK_METHOD0_(, , , m, F)
+#define MOCK_METHOD1(m, F) GMOCK_METHOD1_(, , , m, F)
+#define MOCK_METHOD2(m, F) GMOCK_METHOD2_(, , , m, F)
+#define MOCK_METHOD3(m, F) GMOCK_METHOD3_(, , , m, F)
+#define MOCK_METHOD4(m, F) GMOCK_METHOD4_(, , , m, F)
+#define MOCK_METHOD5(m, F) GMOCK_METHOD5_(, , , m, F)
+#define MOCK_METHOD6(m, F) GMOCK_METHOD6_(, , , m, F)
+#define MOCK_METHOD7(m, F) GMOCK_METHOD7_(, , , m, F)
+#define MOCK_METHOD8(m, F) GMOCK_METHOD8_(, , , m, F)
+#define MOCK_METHOD9(m, F) GMOCK_METHOD9_(, , , m, F)
+#define MOCK_METHOD10(m, F) GMOCK_METHOD10_(, , , m, F)
+
+#define MOCK_CONST_METHOD0(m, F) GMOCK_METHOD0_(, const, , m, F)
+#define MOCK_CONST_METHOD1(m, F) GMOCK_METHOD1_(, const, , m, F)
+#define MOCK_CONST_METHOD2(m, F) GMOCK_METHOD2_(, const, , m, F)
+#define MOCK_CONST_METHOD3(m, F) GMOCK_METHOD3_(, const, , m, F)
+#define MOCK_CONST_METHOD4(m, F) GMOCK_METHOD4_(, const, , m, F)
+#define MOCK_CONST_METHOD5(m, F) GMOCK_METHOD5_(, const, , m, F)
+#define MOCK_CONST_METHOD6(m, F) GMOCK_METHOD6_(, const, , m, F)
+#define MOCK_CONST_METHOD7(m, F) GMOCK_METHOD7_(, const, , m, F)
+#define MOCK_CONST_METHOD8(m, F) GMOCK_METHOD8_(, const, , m, F)
+#define MOCK_CONST_METHOD9(m, F) GMOCK_METHOD9_(, const, , m, F)
+#define MOCK_CONST_METHOD10(m, F) GMOCK_METHOD10_(, const, , m, F)
+
+#define MOCK_METHOD0_T(m, F) GMOCK_METHOD0_(typename, , , m, F)
+#define MOCK_METHOD1_T(m, F) GMOCK_METHOD1_(typename, , , m, F)
+#define MOCK_METHOD2_T(m, F) GMOCK_METHOD2_(typename, , , m, F)
+#define MOCK_METHOD3_T(m, F) GMOCK_METHOD3_(typename, , , m, F)
+#define MOCK_METHOD4_T(m, F) GMOCK_METHOD4_(typename, , , m, F)
+#define MOCK_METHOD5_T(m, F) GMOCK_METHOD5_(typename, , , m, F)
+#define MOCK_METHOD6_T(m, F) GMOCK_METHOD6_(typename, , , m, F)
+#define MOCK_METHOD7_T(m, F) GMOCK_METHOD7_(typename, , , m, F)
+#define MOCK_METHOD8_T(m, F) GMOCK_METHOD8_(typename, , , m, F)
+#define MOCK_METHOD9_T(m, F) GMOCK_METHOD9_(typename, , , m, F)
+#define MOCK_METHOD10_T(m, F) GMOCK_METHOD10_(typename, , , m, F)
+
+#define MOCK_CONST_METHOD0_T(m, F) GMOCK_METHOD0_(typename, const, , m, F)
+#define MOCK_CONST_METHOD1_T(m, F) GMOCK_METHOD1_(typename, const, , m, F)
+#define MOCK_CONST_METHOD2_T(m, F) GMOCK_METHOD2_(typename, const, , m, F)
+#define MOCK_CONST_METHOD3_T(m, F) GMOCK_METHOD3_(typename, const, , m, F)
+#define MOCK_CONST_METHOD4_T(m, F) GMOCK_METHOD4_(typename, const, , m, F)
+#define MOCK_CONST_METHOD5_T(m, F) GMOCK_METHOD5_(typename, const, , m, F)
+#define MOCK_CONST_METHOD6_T(m, F) GMOCK_METHOD6_(typename, const, , m, F)
+#define MOCK_CONST_METHOD7_T(m, F) GMOCK_METHOD7_(typename, const, , m, F)
+#define MOCK_CONST_METHOD8_T(m, F) GMOCK_METHOD8_(typename, const, , m, F)
+#define MOCK_CONST_METHOD9_T(m, F) GMOCK_METHOD9_(typename, const, , m, F)
+#define MOCK_CONST_METHOD10_T(m, F) GMOCK_METHOD10_(typename, const, , m, F)
+
+#define MOCK_METHOD0_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD0_(, , ct, m, F)
+#define MOCK_METHOD1_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD1_(, , ct, m, F)
+#define MOCK_METHOD2_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD2_(, , ct, m, F)
+#define MOCK_METHOD3_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD3_(, , ct, m, F)
+#define MOCK_METHOD4_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD4_(, , ct, m, F)
+#define MOCK_METHOD5_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD5_(, , ct, m, F)
+#define MOCK_METHOD6_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD6_(, , ct, m, F)
+#define MOCK_METHOD7_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD7_(, , ct, m, F)
+#define MOCK_METHOD8_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD8_(, , ct, m, F)
+#define MOCK_METHOD9_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD9_(, , ct, m, F)
+#define MOCK_METHOD10_WITH_CALLTYPE(ct, m, F) GMOCK_METHOD10_(, , ct, m, F)
+
+#define MOCK_CONST_METHOD0_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD0_(, const, ct, m, F)
+#define MOCK_CONST_METHOD1_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD1_(, const, ct, m, F)
+#define MOCK_CONST_METHOD2_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD2_(, const, ct, m, F)
+#define MOCK_CONST_METHOD3_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD3_(, const, ct, m, F)
+#define MOCK_CONST_METHOD4_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD4_(, const, ct, m, F)
+#define MOCK_CONST_METHOD5_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD5_(, const, ct, m, F)
+#define MOCK_CONST_METHOD6_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD6_(, const, ct, m, F)
+#define MOCK_CONST_METHOD7_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD7_(, const, ct, m, F)
+#define MOCK_CONST_METHOD8_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD8_(, const, ct, m, F)
+#define MOCK_CONST_METHOD9_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD9_(, const, ct, m, F)
+#define MOCK_CONST_METHOD10_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD10_(, const, ct, m, F)
+
+#define MOCK_METHOD0_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD0_(typename, , ct, m, F)
+#define MOCK_METHOD1_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD1_(typename, , ct, m, F)
+#define MOCK_METHOD2_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD2_(typename, , ct, m, F)
+#define MOCK_METHOD3_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD3_(typename, , ct, m, F)
+#define MOCK_METHOD4_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD4_(typename, , ct, m, F)
+#define MOCK_METHOD5_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD5_(typename, , ct, m, F)
+#define MOCK_METHOD6_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD6_(typename, , ct, m, F)
+#define MOCK_METHOD7_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD7_(typename, , ct, m, F)
+#define MOCK_METHOD8_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD8_(typename, , ct, m, F)
+#define MOCK_METHOD9_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD9_(typename, , ct, m, F)
+#define MOCK_METHOD10_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD10_(typename, , ct, m, F)
+
+#define MOCK_CONST_METHOD0_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD0_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD1_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD1_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD2_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD2_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD3_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD3_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD4_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD4_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD5_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD5_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD6_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD6_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD7_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD7_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD8_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD8_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD9_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD9_(typename, const, ct, m, F)
+#define MOCK_CONST_METHOD10_T_WITH_CALLTYPE(ct, m, F) \
+    GMOCK_METHOD10_(typename, const, ct, m, F)
+
+// A MockFunction<F> class has one mock method whose type is F.  It is
+// useful when you just want your test code to emit some messages and
+// have Google Mock verify the right messages are sent (and perhaps at
+// the right times).  For example, if you are exercising code:
+//
+//   Foo(1);
+//   Foo(2);
+//   Foo(3);
+//
+// and want to verify that Foo(1) and Foo(3) both invoke
+// mock.Bar("a"), but Foo(2) doesn't invoke anything, you can write:
+//
+// TEST(FooTest, InvokesBarCorrectly) {
+//   MyMock mock;
+//   MockFunction<void(string check_point_name)> check;
+//   {
+//     InSequence s;
+//
+//     EXPECT_CALL(mock, Bar("a"));
+//     EXPECT_CALL(check, Call("1"));
+//     EXPECT_CALL(check, Call("2"));
+//     EXPECT_CALL(mock, Bar("a"));
+//   }
+//   Foo(1);
+//   check.Call("1");
+//   Foo(2);
+//   check.Call("2");
+//   Foo(3);
+// }
+//
+// The expectation spec says that the first Bar("a") must happen
+// before check point "1", the second Bar("a") must happen after check
+// point "2", and nothing should happen between the two check
+// points. The explicit check points make it easy to tell which
+// Bar("a") is called by which call to Foo().
+template <typename F>
+class MockFunction;
+
+template <typename R>
+class MockFunction<R()> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD0_T(Call, R());
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0>
+class MockFunction<R(A0)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD1_T(Call, R(A0));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1>
+class MockFunction<R(A0, A1)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD2_T(Call, R(A0, A1));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2>
+class MockFunction<R(A0, A1, A2)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD3_T(Call, R(A0, A1, A2));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3>
+class MockFunction<R(A0, A1, A2, A3)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD4_T(Call, R(A0, A1, A2, A3));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4>
+class MockFunction<R(A0, A1, A2, A3, A4)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD5_T(Call, R(A0, A1, A2, A3, A4));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4, typename A5>
+class MockFunction<R(A0, A1, A2, A3, A4, A5)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD6_T(Call, R(A0, A1, A2, A3, A4, A5));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4, typename A5, typename A6>
+class MockFunction<R(A0, A1, A2, A3, A4, A5, A6)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD7_T(Call, R(A0, A1, A2, A3, A4, A5, A6));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4, typename A5, typename A6, typename A7>
+class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD8_T(Call, R(A0, A1, A2, A3, A4, A5, A6, A7));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4, typename A5, typename A6, typename A7, typename A8>
+class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7, A8)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD9_T(Call, R(A0, A1, A2, A3, A4, A5, A6, A7, A8));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+template <typename R, typename A0, typename A1, typename A2, typename A3,
+    typename A4, typename A5, typename A6, typename A7, typename A8,
+    typename A9>
+class MockFunction<R(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> {
+ public:
+  MockFunction() {}
+
+  MOCK_METHOD10_T(Call, R(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9));
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
+};
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_
+// This file was GENERATED by command:
+//     pump.py gmock-generated-matchers.h.pump
+// DO NOT EDIT BY HAND!!!
+
+// Copyright 2008, Google 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 Google 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.
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some commonly used variadic matchers.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
+
+#include <sstream>
+#include <string>
+#include <vector>
+
+namespace testing {
+namespace internal {
+
+// The type of the i-th (0-based) field of Tuple.
+#define GMOCK_FIELD_TYPE_(Tuple, i) \
+    typename ::std::tr1::tuple_element<i, Tuple>::type
+
+// TupleFields<Tuple, k0, ..., kn> is for selecting fields from a
+// tuple of type Tuple.  It has two members:
+//
+//   type: a tuple type whose i-th field is the ki-th field of Tuple.
+//   GetSelectedFields(t): returns fields k0, ..., and kn of t as a tuple.
+//
+// For example, in class TupleFields<tuple<bool, char, int>, 2, 0>, we have:
+//
+//   type is tuple<int, bool>, and
+//   GetSelectedFields(make_tuple(true, 'a', 42)) is (42, true).
+
+template <class Tuple, int k0 = -1, int k1 = -1, int k2 = -1, int k3 = -1,
+    int k4 = -1, int k5 = -1, int k6 = -1, int k7 = -1, int k8 = -1,
+    int k9 = -1>
+class TupleFields;
+
+// This generic version is used when there are 10 selectors.
+template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6,
+    int k7, int k8, int k9>
+class TupleFields {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
+      GMOCK_FIELD_TYPE_(Tuple, k5), GMOCK_FIELD_TYPE_(Tuple, k6),
+      GMOCK_FIELD_TYPE_(Tuple, k7), GMOCK_FIELD_TYPE_(Tuple, k8),
+      GMOCK_FIELD_TYPE_(Tuple, k9)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
+        get<k5>(t), get<k6>(t), get<k7>(t), get<k8>(t), get<k9>(t));
+  }
+};
+
+// The following specialization is used for 0 ~ 9 selectors.
+
+template <class Tuple>
+class TupleFields<Tuple, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<> type;
+  static type GetSelectedFields(const Tuple& /* t */) {
+    using ::std::tr1::get;
+    return type();
+  }
+};
+
+template <class Tuple, int k0>
+class TupleFields<Tuple, k0, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1>
+class TupleFields<Tuple, k0, k1, -1, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2>
+class TupleFields<Tuple, k0, k1, k2, -1, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3>
+class TupleFields<Tuple, k0, k1, k2, k3, -1, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3, int k4>
+class TupleFields<Tuple, k0, k1, k2, k3, k4, -1, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5>
+class TupleFields<Tuple, k0, k1, k2, k3, k4, k5, -1, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
+      GMOCK_FIELD_TYPE_(Tuple, k5)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
+        get<k5>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6>
+class TupleFields<Tuple, k0, k1, k2, k3, k4, k5, k6, -1, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
+      GMOCK_FIELD_TYPE_(Tuple, k5), GMOCK_FIELD_TYPE_(Tuple, k6)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
+        get<k5>(t), get<k6>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6,
+    int k7>
+class TupleFields<Tuple, k0, k1, k2, k3, k4, k5, k6, k7, -1, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
+      GMOCK_FIELD_TYPE_(Tuple, k5), GMOCK_FIELD_TYPE_(Tuple, k6),
+      GMOCK_FIELD_TYPE_(Tuple, k7)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
+        get<k5>(t), get<k6>(t), get<k7>(t));
+  }
+};
+
+template <class Tuple, int k0, int k1, int k2, int k3, int k4, int k5, int k6,
+    int k7, int k8>
+class TupleFields<Tuple, k0, k1, k2, k3, k4, k5, k6, k7, k8, -1> {
+ public:
+  typedef ::std::tr1::tuple<GMOCK_FIELD_TYPE_(Tuple, k0),
+      GMOCK_FIELD_TYPE_(Tuple, k1), GMOCK_FIELD_TYPE_(Tuple, k2),
+      GMOCK_FIELD_TYPE_(Tuple, k3), GMOCK_FIELD_TYPE_(Tuple, k4),
+      GMOCK_FIELD_TYPE_(Tuple, k5), GMOCK_FIELD_TYPE_(Tuple, k6),
+      GMOCK_FIELD_TYPE_(Tuple, k7), GMOCK_FIELD_TYPE_(Tuple, k8)> type;
+  static type GetSelectedFields(const Tuple& t) {
+    using ::std::tr1::get;
+    return type(get<k0>(t), get<k1>(t), get<k2>(t), get<k3>(t), get<k4>(t),
+        get<k5>(t), get<k6>(t), get<k7>(t), get<k8>(t));
+  }
+};
+
+#undef GMOCK_FIELD_TYPE_
+
+// Implements the Args() matcher.
+template <class ArgsTuple, int k0 = -1, int k1 = -1, int k2 = -1, int k3 = -1,
+    int k4 = -1, int k5 = -1, int k6 = -1, int k7 = -1, int k8 = -1,
+    int k9 = -1>
+class ArgsMatcherImpl : public MatcherInterface<ArgsTuple> {
+ public:
+  // ArgsTuple may have top-level const or reference modifiers.
+  typedef GTEST_REMOVE_REFERENCE_AND_CONST_(ArgsTuple) RawArgsTuple;
+  typedef typename internal::TupleFields<RawArgsTuple, k0, k1, k2, k3, k4, k5,
+      k6, k7, k8, k9>::type SelectedArgs;
+  typedef Matcher<const SelectedArgs&> MonomorphicInnerMatcher;
+
+  template <typename InnerMatcher>
+  explicit ArgsMatcherImpl(const InnerMatcher& inner_matcher)
+      : inner_matcher_(SafeMatcherCast<const SelectedArgs&>(inner_matcher)) {}
+
+  virtual bool MatchAndExplain(ArgsTuple args,
+                               MatchResultListener* listener) const {
+    const SelectedArgs& selected_args = GetSelectedArgs(args);
+    if (!listener->IsInterested())
+      return inner_matcher_.Matches(selected_args);
+
+    PrintIndices(listener->stream());
+    *listener << "are " << PrintToString(selected_args);
+
+    StringMatchResultListener inner_listener;
+    const bool match = inner_matcher_.MatchAndExplain(selected_args,
+                                                      &inner_listener);
+    PrintIfNotEmpty(inner_listener.str(), listener->stream());
+    return match;
+  }
+
+  virtual void DescribeTo(::std::ostream* os) const {
+    *os << "are a tuple ";
+    PrintIndices(os);
+    inner_matcher_.DescribeTo(os);
+  }
+
+  virtual void DescribeNegationTo(::std::ostream* os) const {
+    *os << "are a tuple ";
+    PrintIndices(os);
+    inner_matcher_.DescribeNegationTo(os);
+  }
+
+ private:
+  static SelectedArgs GetSelectedArgs(ArgsTuple args) {
+    return TupleFields<RawArgsTuple, k0, k1, k2, k3, k4, k5, k6, k7, k8,
+        k9>::GetSelectedFields(args);
+  }
+
+  // Prints the indices of the selected fields.
+  static void PrintIndices(::std::ostream* os) {
+    *os << "whose fields (";
+    const int indices[10] = { k0, k1, k2, k3, k4, k5, k6, k7, k8, k9 };
+    for (int i = 0; i < 10; i++) {
+      if (indices[i] < 0)
+        break;
+
+      if (i >= 1)
+        *os << ", ";
+
+      *os << "#" << indices[i];
+    }
+    *os << ") ";
+  }
+
+  const MonomorphicInnerMatcher inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(ArgsMatcherImpl);
+};
+
+template <class InnerMatcher, int k0 = -1, int k1 = -1, int k2 = -1,
+    int k3 = -1, int k4 = -1, int k5 = -1, int k6 = -1, int k7 = -1,
+    int k8 = -1, int k9 = -1>
+class ArgsMatcher {
+ public:
+  explicit ArgsMatcher(const InnerMatcher& inner_matcher)
+      : inner_matcher_(inner_matcher) {}
+
+  template <typename ArgsTuple>
+  operator Matcher<ArgsTuple>() const {
+    return MakeMatcher(new ArgsMatcherImpl<ArgsTuple, k0, k1, k2, k3, k4, k5,
+        k6, k7, k8, k9>(inner_matcher_));
+  }
+
+ private:
+  const InnerMatcher inner_matcher_;
+
+  GTEST_DISALLOW_ASSIGN_(ArgsMatcher);
+};
+
+// Implements ElementsAre() of 1-10 arguments.
+
+template <typename T1>
+class ElementsAreMatcher1 {
+ public:
+  explicit ElementsAreMatcher1(const T1& e1) : e1_(e1) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    // Nokia's Symbian Compiler has a nasty bug where the object put
+    // in a one-element local array is not destructed when the array
+    // goes out of scope.  This leads to obvious badness as we've
+    // added the linked_ptr in it to our other linked_ptrs list.
+    // Hence we implement ElementsAreMatcher1 specially to avoid using
+    // a local array.
+    const Matcher<const Element&> matcher =
+        MatcherCast<const Element&>(e1_);
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(&matcher, 1));
+  }
+
+ private:
+  const T1& e1_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher1);
+};
+
+template <typename T1, typename T2>
+class ElementsAreMatcher2 {
+ public:
+  ElementsAreMatcher2(const T1& e1, const T2& e2) : e1_(e1), e2_(e2) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 2));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher2);
+};
+
+template <typename T1, typename T2, typename T3>
+class ElementsAreMatcher3 {
+ public:
+  ElementsAreMatcher3(const T1& e1, const T2& e2, const T3& e3) : e1_(e1),
+      e2_(e2), e3_(e3) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 3));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher3);
+};
+
+template <typename T1, typename T2, typename T3, typename T4>
+class ElementsAreMatcher4 {
+ public:
+  ElementsAreMatcher4(const T1& e1, const T2& e2, const T3& e3,
+      const T4& e4) : e1_(e1), e2_(e2), e3_(e3), e4_(e4) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 4));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher4);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+class ElementsAreMatcher5 {
+ public:
+  ElementsAreMatcher5(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), e5_(e5) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 5));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher5);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+class ElementsAreMatcher6 {
+ public:
+  ElementsAreMatcher6(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5, const T6& e6) : e1_(e1), e2_(e2), e3_(e3), e4_(e4),
+      e5_(e5), e6_(e6) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+      MatcherCast<const Element&>(e6_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 6));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+  const T6& e6_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher6);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+class ElementsAreMatcher7 {
+ public:
+  ElementsAreMatcher7(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5, const T6& e6, const T7& e7) : e1_(e1), e2_(e2), e3_(e3),
+      e4_(e4), e5_(e5), e6_(e6), e7_(e7) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+      MatcherCast<const Element&>(e6_),
+      MatcherCast<const Element&>(e7_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 7));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+  const T6& e6_;
+  const T7& e7_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher7);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+class ElementsAreMatcher8 {
+ public:
+  ElementsAreMatcher8(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5, const T6& e6, const T7& e7, const T8& e8) : e1_(e1),
+      e2_(e2), e3_(e3), e4_(e4), e5_(e5), e6_(e6), e7_(e7), e8_(e8) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+      MatcherCast<const Element&>(e6_),
+      MatcherCast<const Element&>(e7_),
+      MatcherCast<const Element&>(e8_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 8));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+  const T6& e6_;
+  const T7& e7_;
+  const T8& e8_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher8);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+class ElementsAreMatcher9 {
+ public:
+  ElementsAreMatcher9(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5, const T6& e6, const T7& e7, const T8& e8,
+      const T9& e9) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), e5_(e5), e6_(e6),
+      e7_(e7), e8_(e8), e9_(e9) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+      MatcherCast<const Element&>(e6_),
+      MatcherCast<const Element&>(e7_),
+      MatcherCast<const Element&>(e8_),
+      MatcherCast<const Element&>(e9_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 9));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+  const T6& e6_;
+  const T7& e7_;
+  const T8& e8_;
+  const T9& e9_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher9);
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+class ElementsAreMatcher10 {
+ public:
+  ElementsAreMatcher10(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+      const T5& e5, const T6& e6, const T7& e7, const T8& e8, const T9& e9,
+      const T10& e10) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), e5_(e5), e6_(e6),
+      e7_(e7), e8_(e8), e9_(e9), e10_(e10) {}
+
+  template <typename Container>
+  operator Matcher<Container>() const {
+    typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
+    typedef typename internal::StlContainerView<RawContainer>::type::value_type
+        Element;
+
+    const Matcher<const Element&> matchers[] = {
+      MatcherCast<const Element&>(e1_),
+      MatcherCast<const Element&>(e2_),
+      MatcherCast<const Element&>(e3_),
+      MatcherCast<const Element&>(e4_),
+      MatcherCast<const Element&>(e5_),
+      MatcherCast<const Element&>(e6_),
+      MatcherCast<const Element&>(e7_),
+      MatcherCast<const Element&>(e8_),
+      MatcherCast<const Element&>(e9_),
+      MatcherCast<const Element&>(e10_),
+    };
+
+    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 10));
+  }
+
+ private:
+  const T1& e1_;
+  const T2& e2_;
+  const T3& e3_;
+  const T4& e4_;
+  const T5& e5_;
+  const T6& e6_;
+  const T7& e7_;
+  const T8& e8_;
+  const T9& e9_;
+  const T10& e10_;
+
+  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcher10);
+};
+
+}  // namespace internal
+
+// Args<N1, N2, ..., Nk>(a_matcher) matches a tuple if the selected
+// fields of it matches a_matcher.  C++ doesn't support default
+// arguments for function templates, so we have to overload it.
+template <typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher>(matcher);
+}
+
+template <int k1, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1>(matcher);
+}
+
+template <int k1, int k2, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2>(matcher);
+}
+
+template <int k1, int k2, int k3, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7,
+    typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6,
+      k7>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7, k8>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7,
+      k8>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    int k9, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7, k8, k9>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7, k8,
+      k9>(matcher);
+}
+
+template <int k1, int k2, int k3, int k4, int k5, int k6, int k7, int k8,
+    int k9, int k10, typename InnerMatcher>
+inline internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7, k8, k9,
+    k10>
+Args(const InnerMatcher& matcher) {
+  return internal::ArgsMatcher<InnerMatcher, k1, k2, k3, k4, k5, k6, k7, k8,
+      k9, k10>(matcher);
+}
+
+// ElementsAre(e0, e1, ..., e_n) matches an STL-style container with
+// (n + 1) elements, where the i-th element in the container must
+// match the i-th argument in the list.  Each argument of
+// ElementsAre() can be either a value or a matcher.  We support up to
+// 10 arguments.
+//
+// NOTE: Since ElementsAre() cares about the order of the elements, it
+// must not be used with containers whose elements's order is
+// undefined (e.g. hash_map).
+
+inline internal::ElementsAreMatcher0 ElementsAre() {
+  return internal::ElementsAreMatcher0();
+}
+
+template <typename T1>
+inline internal::ElementsAreMatcher1<T1> ElementsAre(const T1& e1) {
+  return internal::ElementsAreMatcher1<T1>(e1);
+}
+
+template <typename T1, typename T2>
+inline internal::ElementsAreMatcher2<T1, T2> ElementsAre(const T1& e1,
+    const T2& e2) {
+  return internal::ElementsAreMatcher2<T1, T2>(e1, e2);
+}
+
+template <typename T1, typename T2, typename T3>
+inline internal::ElementsAreMatcher3<T1, T2, T3> ElementsAre(const T1& e1,
+    const T2& e2, const T3& e3) {
+  return internal::ElementsAreMatcher3<T1, T2, T3>(e1, e2, e3);
+}
+
+template <typename T1, typename T2, typename T3, typename T4>
+inline internal::ElementsAreMatcher4<T1, T2, T3, T4> ElementsAre(const T1& e1,
+    const T2& e2, const T3& e3, const T4& e4) {
+  return internal::ElementsAreMatcher4<T1, T2, T3, T4>(e1, e2, e3, e4);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+inline internal::ElementsAreMatcher5<T1, T2, T3, T4,
+    T5> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5) {
+  return internal::ElementsAreMatcher5<T1, T2, T3, T4, T5>(e1, e2, e3, e4, e5);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+inline internal::ElementsAreMatcher6<T1, T2, T3, T4, T5,
+    T6> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5, const T6& e6) {
+  return internal::ElementsAreMatcher6<T1, T2, T3, T4, T5, T6>(e1, e2, e3, e4,
+      e5, e6);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+inline internal::ElementsAreMatcher7<T1, T2, T3, T4, T5, T6,
+    T7> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5, const T6& e6, const T7& e7) {
+  return internal::ElementsAreMatcher7<T1, T2, T3, T4, T5, T6, T7>(e1, e2, e3,
+      e4, e5, e6, e7);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+inline internal::ElementsAreMatcher8<T1, T2, T3, T4, T5, T6, T7,
+    T8> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5, const T6& e6, const T7& e7, const T8& e8) {
+  return internal::ElementsAreMatcher8<T1, T2, T3, T4, T5, T6, T7, T8>(e1, e2,
+      e3, e4, e5, e6, e7, e8);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+inline internal::ElementsAreMatcher9<T1, T2, T3, T4, T5, T6, T7, T8,
+    T9> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5, const T6& e6, const T7& e7, const T8& e8, const T9& e9) {
+  return internal::ElementsAreMatcher9<T1, T2, T3, T4, T5, T6, T7, T8, T9>(e1,
+      e2, e3, e4, e5, e6, e7, e8, e9);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+inline internal::ElementsAreMatcher10<T1, T2, T3, T4, T5, T6, T7, T8, T9,
+    T10> ElementsAre(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
+    const T5& e5, const T6& e6, const T7& e7, const T8& e8, const T9& e9,
+    const T10& e10) {
+  return internal::ElementsAreMatcher10<T1, T2, T3, T4, T5, T6, T7, T8, T9,
+      T10>(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10);
+}
+
+// ElementsAreArray(array) and ElementAreArray(array, count) are like
+// ElementsAre(), except that they take an array of values or
+// matchers.  The former form infers the size of 'array', which must
+// be a static C-style array.  In the latter form, 'array' can either
+// be a static array or a pointer to a dynamically created array.
+
+template <typename T>
+inline internal::ElementsAreArrayMatcher<T> ElementsAreArray(
+    const T* first, size_t count) {
+  return internal::ElementsAreArrayMatcher<T>(first, count);
+}
+
+template <typename T, size_t N>
+inline internal::ElementsAreArrayMatcher<T>
+ElementsAreArray(const T (&array)[N]) {
+  return internal::ElementsAreArrayMatcher<T>(array, N);
+}
+
+// AllOf(m1, m2, ..., mk) matches any value that matches all of the given
+// sub-matchers.  AllOf is called fully qualified to prevent ADL from firing.
+
+template <typename Matcher1, typename Matcher2>
+inline internal::BothOfMatcher<Matcher1, Matcher2>
+AllOf(Matcher1 m1, Matcher2 m2) {
+  return internal::BothOfMatcher<Matcher1, Matcher2>(m1, m2);
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    Matcher3> >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, Matcher4> > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    Matcher5> > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    internal::BothOfMatcher<Matcher5, Matcher6> > > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5, m6));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    internal::BothOfMatcher<Matcher5, internal::BothOfMatcher<Matcher6,
+    Matcher7> > > > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5, m6, m7));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    internal::BothOfMatcher<Matcher5, internal::BothOfMatcher<Matcher6,
+    internal::BothOfMatcher<Matcher7, Matcher8> > > > > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5, m6, m7, m8));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8, typename Matcher9>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    internal::BothOfMatcher<Matcher5, internal::BothOfMatcher<Matcher6,
+    internal::BothOfMatcher<Matcher7, internal::BothOfMatcher<Matcher8,
+    Matcher9> > > > > > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8, Matcher9 m9) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5, m6, m7, m8, m9));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8, typename Matcher9, typename Matcher10>
+inline internal::BothOfMatcher<Matcher1, internal::BothOfMatcher<Matcher2,
+    internal::BothOfMatcher<Matcher3, internal::BothOfMatcher<Matcher4,
+    internal::BothOfMatcher<Matcher5, internal::BothOfMatcher<Matcher6,
+    internal::BothOfMatcher<Matcher7, internal::BothOfMatcher<Matcher8,
+    internal::BothOfMatcher<Matcher9, Matcher10> > > > > > > > >
+AllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8, Matcher9 m9, Matcher10 m10) {
+  return ::testing::AllOf(m1, ::testing::AllOf(m2, m3, m4, m5, m6, m7, m8, m9,
+      m10));
+}
+
+// AnyOf(m1, m2, ..., mk) matches any value that matches any of the given
+// sub-matchers.  AnyOf is called fully qualified to prevent ADL from firing.
+
+template <typename Matcher1, typename Matcher2>
+inline internal::EitherOfMatcher<Matcher1, Matcher2>
+AnyOf(Matcher1 m1, Matcher2 m2) {
+  return internal::EitherOfMatcher<Matcher1, Matcher2>(m1, m2);
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    Matcher3> >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, Matcher4> > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    Matcher5> > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    internal::EitherOfMatcher<Matcher5, Matcher6> > > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5, m6));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    internal::EitherOfMatcher<Matcher5, internal::EitherOfMatcher<Matcher6,
+    Matcher7> > > > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5, m6, m7));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    internal::EitherOfMatcher<Matcher5, internal::EitherOfMatcher<Matcher6,
+    internal::EitherOfMatcher<Matcher7, Matcher8> > > > > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5, m6, m7, m8));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8, typename Matcher9>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    internal::EitherOfMatcher<Matcher5, internal::EitherOfMatcher<Matcher6,
+    internal::EitherOfMatcher<Matcher7, internal::EitherOfMatcher<Matcher8,
+    Matcher9> > > > > > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8, Matcher9 m9) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5, m6, m7, m8, m9));
+}
+
+template <typename Matcher1, typename Matcher2, typename Matcher3,
+    typename Matcher4, typename Matcher5, typename Matcher6, typename Matcher7,
+    typename Matcher8, typename Matcher9, typename Matcher10>
+inline internal::EitherOfMatcher<Matcher1, internal::EitherOfMatcher<Matcher2,
+    internal::EitherOfMatcher<Matcher3, internal::EitherOfMatcher<Matcher4,
+    internal::EitherOfMatcher<Matcher5, internal::EitherOfMatcher<Matcher6,
+    internal::EitherOfMatcher<Matcher7, internal::EitherOfMatcher<Matcher8,
+    internal::EitherOfMatcher<Matcher9, Matcher10> > > > > > > > >
+AnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5,
+    Matcher6 m6, Matcher7 m7, Matcher8 m8, Matcher9 m9, Matcher10 m10) {
+  return ::testing::AnyOf(m1, ::testing::AnyOf(m2, m3, m4, m5, m6, m7, m8, m9,
+      m10));
+}
+
+}  // namespace testing
+
+
+// The MATCHER* family of macros can be used in a namespace scope to
+// define custom matchers easily.
+//
+// Basic Usage
+// ===========
+//
+// The syntax
+//
+//   MATCHER(name, description_string) { statements; }
+//
+// defines a matcher with the given name that executes the statements,
+// which must return a bool to indicate if the match succeeds.  Inside
+// the statements, you can refer to the value being matched by 'arg',
+// and refer to its type by 'arg_type'.
+//
+// The description string documents what the matcher does, and is used
+// to generate the failure message when the match fails.  Since a
+// MATCHER() is usually defined in a header file shared by multiple
+// C++ source files, we require the description to be a C-string
+// literal to avoid possible side effects.  It can be empty, in which
+// case we'll use the sequence of words in the matcher name as the
+// description.
+//
+// For example:
+//
+//   MATCHER(IsEven, "") { return (arg % 2) == 0; }
+//
+// allows you to write
+//
+//   // Expects mock_foo.Bar(n) to be called where n is even.
+//   EXPECT_CALL(mock_foo, Bar(IsEven()));
+//
+// or,
+//
+//   // Verifies that the value of some_expression is even.
+//   EXPECT_THAT(some_expression, IsEven());
+//
+// If the above assertion fails, it will print something like:
+//
+//   Value of: some_expression
+//   Expected: is even
+//     Actual: 7
+//
+// where the description "is even" is automatically calculated from the
+// matcher name IsEven.
+//
+// Argument Type
+// =============
+//
+// Note that the type of the value being matched (arg_type) is
+// determined by the context in which you use the matcher and is
+// supplied to you by the compiler, so you don't need to worry about
+// declaring it (nor can you).  This allows the matcher to be
+// polymorphic.  For example, IsEven() can be used to match any type
+// where the value of "(arg % 2) == 0" can be implicitly converted to
+// a bool.  In the "Bar(IsEven())" example above, if method Bar()
+// takes an int, 'arg_type' will be int; if it takes an unsigned long,
+// 'arg_type' will be unsigned long; and so on.
+//
+// Parameterizing Matchers
+// =======================
+//
+// Sometimes you'll want to parameterize the matcher.  For that you
+// can use another macro:
+//
+//   MATCHER_P(name, param_name, description_string) { statements; }
+//
+// For example:
+//
+//   MATCHER_P(HasAbsoluteValue, value, "") { return abs(arg) == value; }
+//
+// will allow you to write:
+//
+//   EXPECT_THAT(Blah("a"), HasAbsoluteValue(n));
+//
+// which may lead to this message (assuming n is 10):
+//
+//   Value of: Blah("a")
+//   Expected: has absolute value 10
+//     Actual: -9
+//
+// Note that both the matcher description and its parameter are
+// printed, making the message human-friendly.
+//
+// In the matcher definition body, you can write 'foo_type' to
+// reference the type of a parameter named 'foo'.  For example, in the
+// body of MATCHER_P(HasAbsoluteValue, value) above, you can write
+// 'value_type' to refer to the type of 'value'.
+//
+// We also provide MATCHER_P2, MATCHER_P3, ..., up to MATCHER_P10 to
+// support multi-parameter matchers.
+//
+// Describing Parameterized Matchers
+// =================================
+//
+// The last argument to MATCHER*() is a string-typed expression.  The
+// expression can reference all of the matcher's parameters and a
+// special bool-typed variable named 'negation'.  When 'negation' is
+// false, the expression should evaluate to the matcher's description;
+// otherwise it should evaluate to the description of the negation of
+// the matcher.  For example,
+//
+//   using testing::PrintToString;
+//
+//   MATCHER_P2(InClosedRange, low, hi,
+//       string(negation ? "is not" : "is") + " in range [" +
+//       PrintToString(low) + ", " + PrintToString(hi) + "]") {
+//     return low <= arg && arg <= hi;
+//   }
+//   ...
+//   EXPECT_THAT(3, InClosedRange(4, 6));
+//   EXPECT_THAT(3, Not(InClosedRange(2, 4)));
+//
+// would generate two failures that contain the text:
+//
+//   Expected: is in range [4, 6]
+//   ...
+//   Expected: is not in range [2, 4]
+//
+// If you specify "" as the description, the failure message will
+// contain the sequence of words in the matcher name followed by the
+// parameter values printed as a tuple.  For example,
+//
+//   MATCHER_P2(InClosedRange, low, hi, "") { ... }
+//   ...
+//   EXPECT_THAT(3, InClosedRange(4, 6));
+//   EXPECT_THAT(3, Not(InClosedRange(2, 4)));
+//
+// would generate two failures that contain the text:
+//
+//   Expected: in closed range (4, 6)
+//   ...
+//   Expected: not (in closed range (2, 4))
+//
+// Types of Matcher Parameters
+// ===========================
+//
+// For the purpose of typing, you can view
+//
+//   MATCHER_Pk(Foo, p1, ..., pk, description_string) { ... }
+//
+// as shorthand for
+//
+//   template <typename p1_type, ..., typename pk_type>
+//   FooMatcherPk<p1_type, ..., pk_type>
+//   Foo(p1_type p1, ..., pk_type pk) { ... }
+//
+// When you write Foo(v1, ..., vk), the compiler infers the types of
+// the parameters v1, ..., and vk for you.  If you are not happy with
+// the result of the type inference, you can specify the types by
+// explicitly instantiating the template, as in Foo<long, bool>(5,
+// false).  As said earlier, you don't get to (or need to) specify
+// 'arg_type' as that's determined by the context in which the matcher
+// is used.  You can assign the result of expression Foo(p1, ..., pk)
+// to a variable of type FooMatcherPk<p1_type, ..., pk_type>.  This
+// can be useful when composing matchers.
+//
+// While you can instantiate a matcher template with reference types,
+// passing the parameters by pointer usually makes your code more
+// readable.  If, however, you still want to pass a parameter by
+// reference, be aware that in the failure message generated by the
+// matcher you will see the value of the referenced object but not its
+// address.
+//
+// Explaining Match Results
+// ========================
+//
+// Sometimes the matcher description alone isn't enough to explain why
+// the match has failed or succeeded.  For example, when expecting a
+// long string, it can be very helpful to also print the diff between
+// the expected string and the actual one.  To achieve that, you can
+// optionally stream additional information to a special variable
+// named result_listener, whose type is a pointer to class
+// MatchResultListener:
+//
+//   MATCHER_P(EqualsLongString, str, "") {
+//     if (arg == str) return true;
+//
+//     *result_listener << "the difference: "
+///                     << DiffStrings(str, arg);
+//     return false;
+//   }
+//
+// Overloading Matchers
+// ====================
+//
+// You can overload matchers with different numbers of parameters:
+//
+//   MATCHER_P(Blah, a, description_string1) { ... }
+//   MATCHER_P2(Blah, a, b, description_string2) { ... }
+//
+// Caveats
+// =======
+//
+// When defining a new matcher, you should also consider implementing
+// MatcherInterface or using MakePolymorphicMatcher().  These
+// approaches require more work than the MATCHER* macros, but also
+// give you more control on the types of the value being matched and
+// the matcher parameters, which may leads to better compiler error
+// messages when the matcher is used wrong.  They also allow
+// overloading matchers based on parameter types (as opposed to just
+// based on the number of parameters).
+//
+// MATCHER*() can only be used in a namespace scope.  The reason is
+// that C++ doesn't yet allow function-local types to be used to
+// instantiate templates.  The up-coming C++0x standard will fix this.
+// Once that's done, we'll consider supporting using MATCHER*() inside
+// a function.
+//
+// More Information
+// ================
+//
+// To learn more about using these macros, please search for 'MATCHER'
+// on http://code.google.com/p/googlemock/wiki/CookBook.
+
+#define MATCHER(name, description)\
+  class name##Matcher {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl()\
+           {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<>()));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>());\
+    }\
+    name##Matcher() {\
+    }\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##Matcher);\
+  };\
+  inline name##Matcher name() {\
+    return name##Matcher();\
+  }\
+  template <typename arg_type>\
+  bool name##Matcher::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P(name, p0, description)\
+  template <typename p0##_type>\
+  class name##MatcherP {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      explicit gmock_Impl(p0##_type gmock_p0)\
+           : p0(gmock_p0) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type>(p0)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0));\
+    }\
+    name##MatcherP(p0##_type gmock_p0) : p0(gmock_p0) {\
+    }\
+    p0##_type p0;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP);\
+  };\
+  template <typename p0##_type>\
+  inline name##MatcherP<p0##_type> name(p0##_type p0) {\
+    return name##MatcherP<p0##_type>(p0);\
+  }\
+  template <typename p0##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP<p0##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P2(name, p0, p1, description)\
+  template <typename p0##_type, typename p1##_type>\
+  class name##MatcherP2 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1)\
+           : p0(gmock_p0), p1(gmock_p1) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type>(p0, p1)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1));\
+    }\
+    name##MatcherP2(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \
+        p1(gmock_p1) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP2);\
+  };\
+  template <typename p0##_type, typename p1##_type>\
+  inline name##MatcherP2<p0##_type, p1##_type> name(p0##_type p0, \
+      p1##_type p1) {\
+    return name##MatcherP2<p0##_type, p1##_type>(p0, p1);\
+  }\
+  template <typename p0##_type, typename p1##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP2<p0##_type, \
+      p1##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P3(name, p0, p1, p2, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  class name##MatcherP3 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type>(p0, p1, \
+                    p2)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2));\
+    }\
+    name##MatcherP3(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP3);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  inline name##MatcherP3<p0##_type, p1##_type, p2##_type> name(p0##_type p0, \
+      p1##_type p1, p2##_type p2) {\
+    return name##MatcherP3<p0##_type, p1##_type, p2##_type>(p0, p1, p2);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP3<p0##_type, p1##_type, \
+      p2##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P4(name, p0, p1, p2, p3, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  class name##MatcherP4 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, \
+                    p3##_type>(p0, p1, p2, p3)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3));\
+    }\
+    name##MatcherP4(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP4);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  inline name##MatcherP4<p0##_type, p1##_type, p2##_type, \
+      p3##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
+      p3##_type p3) {\
+    return name##MatcherP4<p0##_type, p1##_type, p2##_type, p3##_type>(p0, \
+        p1, p2, p3);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP4<p0##_type, p1##_type, p2##_type, \
+      p3##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P5(name, p0, p1, p2, p3, p4, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  class name##MatcherP5 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type>(p0, p1, p2, p3, p4)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4));\
+    }\
+    name##MatcherP5(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, \
+        p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP5);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  inline name##MatcherP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4) {\
+    return name##MatcherP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type>(p0, p1, p2, p3, p4);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP5<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P6(name, p0, p1, p2, p3, p4, p5, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  class name##MatcherP6 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4), p5(gmock_p5) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type, p5##_type>(p0, p1, p2, p3, p4, p5)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4, p5));\
+    }\
+    name##MatcherP6(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP6);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  inline name##MatcherP6<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
+      p3##_type p3, p4##_type p4, p5##_type p5) {\
+    return name##MatcherP6<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type>(p0, p1, p2, p3, p4, p5);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP6<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+      p5##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P7(name, p0, p1, p2, p3, p4, p5, p6, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  class name##MatcherP7 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4), p5(gmock_p5), p6(gmock_p6) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type, p5##_type, p6##_type>(p0, p1, p2, p3, p4, p5, \
+                    p6)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4, p5, p6));\
+    }\
+    name##MatcherP7(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), \
+        p6(gmock_p6) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP7);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  inline name##MatcherP7<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type> name(p0##_type p0, p1##_type p1, \
+      p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
+      p6##_type p6) {\
+    return name##MatcherP7<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type>(p0, p1, p2, p3, p4, p5, p6);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP7<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+      p5##_type, p6##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P8(name, p0, p1, p2, p3, p4, p5, p6, p7, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  class name##MatcherP8 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type, p5##_type, p6##_type, p7##_type>(p0, p1, p2, \
+                    p3, p4, p5, p6, p7)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4, p5, p6, p7));\
+    }\
+    name##MatcherP8(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, \
+        p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+        p7(gmock_p7) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP8);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  inline name##MatcherP8<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type> name(p0##_type p0, \
+      p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
+      p6##_type p6, p7##_type p7) {\
+    return name##MatcherP8<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type>(p0, p1, p2, p3, p4, p5, \
+        p6, p7);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP8<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+      p5##_type, p6##_type, \
+      p7##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  class name##MatcherP9 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+               p8(gmock_p8) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+      p8##_type p8;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type, p5##_type, p6##_type, p7##_type, \
+                    p8##_type>(p0, p1, p2, p3, p4, p5, p6, p7, p8)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4, p5, p6, p7, p8));\
+    }\
+    name##MatcherP9(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
+        p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
+        p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+        p8(gmock_p8) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+    p8##_type p8;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP9);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  inline name##MatcherP9<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type, \
+      p8##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, \
+      p8##_type p8) {\
+    return name##MatcherP9<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type, p8##_type>(p0, p1, p2, \
+        p3, p4, p5, p6, p7, p8);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP9<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
+      p5##_type, p6##_type, p7##_type, \
+      p8##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#define MATCHER_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, description)\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  class name##MatcherP10 {\
+   public:\
+    template <typename arg_type>\
+    class gmock_Impl : public ::testing::MatcherInterface<arg_type> {\
+     public:\
+      gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
+          p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
+          p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \
+          p9##_type gmock_p9)\
+           : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), \
+               p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
+               p8(gmock_p8), p9(gmock_p9) {}\
+      virtual bool MatchAndExplain(\
+          arg_type arg, ::testing::MatchResultListener* result_listener) const;\
+      virtual void DescribeTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(false);\
+      }\
+      virtual void DescribeNegationTo(::std::ostream* gmock_os) const {\
+        *gmock_os << FormatDescription(true);\
+      }\
+      p0##_type p0;\
+      p1##_type p1;\
+      p2##_type p2;\
+      p3##_type p3;\
+      p4##_type p4;\
+      p5##_type p5;\
+      p6##_type p6;\
+      p7##_type p7;\
+      p8##_type p8;\
+      p9##_type p9;\
+     private:\
+      ::testing::internal::string FormatDescription(bool negation) const {\
+        const ::testing::internal::string gmock_description = (description);\
+        if (!gmock_description.empty())\
+          return gmock_description;\
+        return ::testing::internal::FormatMatcherDescription(\
+            negation, #name,\
+            ::testing::internal::UniversalTersePrintTupleFieldsToStrings(\
+                ::std::tr1::tuple<p0##_type, p1##_type, p2##_type, p3##_type, \
+                    p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, \
+                    p9##_type>(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)));\
+      }\
+      GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
+    };\
+    template <typename arg_type>\
+    operator ::testing::Matcher<arg_type>() const {\
+      return ::testing::Matcher<arg_type>(\
+          new gmock_Impl<arg_type>(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9));\
+    }\
+    name##MatcherP10(p0##_type gmock_p0, p1##_type gmock_p1, \
+        p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
+        p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
+        p8##_type gmock_p8, p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), \
+        p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
+        p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {\
+    }\
+    p0##_type p0;\
+    p1##_type p1;\
+    p2##_type p2;\
+    p3##_type p3;\
+    p4##_type p4;\
+    p5##_type p5;\
+    p6##_type p6;\
+    p7##_type p7;\
+    p8##_type p8;\
+    p9##_type p9;\
+   private:\
+    GTEST_DISALLOW_ASSIGN_(name##MatcherP10);\
+  };\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  inline name##MatcherP10<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, \
+      p9##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
+      p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \
+      p9##_type p9) {\
+    return name##MatcherP10<p0##_type, p1##_type, p2##_type, p3##_type, \
+        p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, p9##_type>(p0, \
+        p1, p2, p3, p4, p5, p6, p7, p8, p9);\
+  }\
+  template <typename p0##_type, typename p1##_type, typename p2##_type, \
+      typename p3##_type, typename p4##_type, typename p5##_type, \
+      typename p6##_type, typename p7##_type, typename p8##_type, \
+      typename p9##_type>\
+  template <typename arg_type>\
+  bool name##MatcherP10<p0##_type, p1##_type, p2##_type, p3##_type, \
+      p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, \
+      p9##_type>::gmock_Impl<arg_type>::MatchAndExplain(\
+      arg_type arg,\
+      ::testing::MatchResultListener* result_listener GTEST_ATTRIBUTE_UNUSED_)\
+          const
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_MATCHERS_H_
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements some actions that depend on gmock-generated-actions.h.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_
+
+#include <algorithm>
+
+
+namespace testing {
+namespace internal {
+
+// Implements the Invoke(f) action.  The template argument
+// FunctionImpl is the implementation type of f, which can be either a
+// function pointer or a functor.  Invoke(f) can be used as an
+// Action<F> as long as f's type is compatible with F (i.e. f can be
+// assigned to a tr1::function<F>).
+template <typename FunctionImpl>
+class InvokeAction {
+ public:
+  // The c'tor makes a copy of function_impl (either a function
+  // pointer or a functor).
+  explicit InvokeAction(FunctionImpl function_impl)
+      : function_impl_(function_impl) {}
+
+  template <typename Result, typename ArgumentTuple>
+  Result Perform(const ArgumentTuple& args) {
+    return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
+  }
+
+ private:
+  FunctionImpl function_impl_;
+
+  GTEST_DISALLOW_ASSIGN_(InvokeAction);
+};
+
+// Implements the Invoke(object_ptr, &Class::Method) action.
+template <class Class, typename MethodPtr>
+class InvokeMethodAction {
+ public:
+  InvokeMethodAction(Class* obj_ptr, MethodPtr method_ptr)
+      : obj_ptr_(obj_ptr), method_ptr_(method_ptr) {}
+
+  template <typename Result, typename ArgumentTuple>
+  Result Perform(const ArgumentTuple& args) const {
+    return InvokeHelper<Result, ArgumentTuple>::InvokeMethod(
+        obj_ptr_, method_ptr_, args);
+  }
+
+ private:
+  Class* const obj_ptr_;
+  const MethodPtr method_ptr_;
+
+  GTEST_DISALLOW_ASSIGN_(InvokeMethodAction);
+};
+
+}  // namespace internal
+
+// Various overloads for Invoke().
+
+// Creates an action that invokes 'function_impl' with the mock
+// function's arguments.
+template <typename FunctionImpl>
+PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke(
+    FunctionImpl function_impl) {
+  return MakePolymorphicAction(
+      internal::InvokeAction<FunctionImpl>(function_impl));
+}
+
+// Creates an action that invokes the given method on the given object
+// with the mock function's arguments.
+template <class Class, typename MethodPtr>
+PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke(
+    Class* obj_ptr, MethodPtr method_ptr) {
+  return MakePolymorphicAction(
+      internal::InvokeMethodAction<Class, MethodPtr>(obj_ptr, method_ptr));
+}
+
+// WithoutArgs(inner_action) can be used in a mock function with a
+// non-empty argument list to perform inner_action, which takes no
+// argument.  In other words, it adapts an action accepting no
+// argument to one that accepts (and ignores) arguments.
+template <typename InnerAction>
+inline internal::WithArgsAction<InnerAction>
+WithoutArgs(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction>(action);
+}
+
+// WithArg<k>(an_action) creates an action that passes the k-th
+// (0-based) argument of the mock function to an_action and performs
+// it.  It adapts an action accepting one argument to one that accepts
+// multiple arguments.  For convenience, we also provide
+// WithArgs<k>(an_action) (defined below) as a synonym.
+template <int k, typename InnerAction>
+inline internal::WithArgsAction<InnerAction, k>
+WithArg(const InnerAction& action) {
+  return internal::WithArgsAction<InnerAction, k>(action);
+}
+
+// The ACTION*() macros trigger warning C4100 (unreferenced formal
+// parameter) in MSVC with -W4.  Unfortunately they cannot be fixed in
+// the macro definition, as the warnings are generated when the macro
+// is expanded and macro expansion cannot contain #pragma.  Therefore
+// we suppress them here.
+#ifdef _MSC_VER
+# pragma warning(push)
+# pragma warning(disable:4100)
+#endif
+
+// Action ReturnArg<k>() returns the k-th argument of the mock function.
+ACTION_TEMPLATE(ReturnArg,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_0_VALUE_PARAMS()) {
+  return std::tr1::get<k>(args);
+}
+
+// Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
+// mock function to *pointer.
+ACTION_TEMPLATE(SaveArg,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_1_VALUE_PARAMS(pointer)) {
+  *pointer = ::std::tr1::get<k>(args);
+}
+
+// Action SaveArgPointee<k>(pointer) saves the value pointed to
+// by the k-th (0-based) argument of the mock function to *pointer.
+ACTION_TEMPLATE(SaveArgPointee,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_1_VALUE_PARAMS(pointer)) {
+  *pointer = *::std::tr1::get<k>(args);
+}
+
+// Action SetArgReferee<k>(value) assigns 'value' to the variable
+// referenced by the k-th (0-based) argument of the mock function.
+ACTION_TEMPLATE(SetArgReferee,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_1_VALUE_PARAMS(value)) {
+  typedef typename ::std::tr1::tuple_element<k, args_type>::type argk_type;
+  // Ensures that argument #k is a reference.  If you get a compiler
+  // error on the next line, you are using SetArgReferee<k>(value) in
+  // a mock function whose k-th (0-based) argument is not a reference.
+  GTEST_COMPILE_ASSERT_(internal::is_reference<argk_type>::value,
+                        SetArgReferee_must_be_used_with_a_reference_argument);
+  ::std::tr1::get<k>(args) = value;
+}
+
+// Action SetArrayArgument<k>(first, last) copies the elements in
+// source range [first, last) to the array pointed to by the k-th
+// (0-based) argument, which can be either a pointer or an
+// iterator. The action does not take ownership of the elements in the
+// source range.
+ACTION_TEMPLATE(SetArrayArgument,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_2_VALUE_PARAMS(first, last)) {
+  // Microsoft compiler deprecates ::std::copy, so we want to suppress warning
+  // 4996 (Function call with parameters that may be unsafe) there.
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4996)  // Temporarily disables warning 4996.
+#endif
+  ::std::copy(first, last, ::std::tr1::get<k>(args));
+#ifdef _MSC_VER
+# pragma warning(pop)           // Restores the warning state.
+#endif
+}
+
+// Action DeleteArg<k>() deletes the k-th (0-based) argument of the mock
+// function.
+ACTION_TEMPLATE(DeleteArg,
+                HAS_1_TEMPLATE_PARAMS(int, k),
+                AND_0_VALUE_PARAMS()) {
+  delete ::std::tr1::get<k>(args);
+}
+
+// This action returns the value pointed to by 'pointer'.
+ACTION_P(ReturnPointee, pointer) { return *pointer; }
+
+// Action Throw(exception) can be used in a mock function of any type
+// to throw the given exception.  Any copyable value can be thrown.
+#if GTEST_HAS_EXCEPTIONS
+
+// Suppresses the 'unreachable code' warning that VC generates in opt modes.
+# ifdef _MSC_VER
+#  pragma warning(push)          // Saves the current warning state.
+#  pragma warning(disable:4702)  // Temporarily disables warning 4702.
+# endif
+ACTION_P(Throw, exception) { throw exception; }
+# ifdef _MSC_VER
+#  pragma warning(pop)           // Restores the warning state.
+# endif
+
+#endif  // GTEST_HAS_EXCEPTIONS
+
+#ifdef _MSC_VER
+# pragma warning(pop)
+#endif
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_
+// This file was GENERATED by a script.  DO NOT EDIT BY HAND!!!
+
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Implements class templates NiceMock and StrictMock.
+//
+// Given a mock class MockFoo that is created using Google Mock,
+// NiceMock<MockFoo> is a subclass of MockFoo that allows
+// uninteresting calls (i.e. calls to mock methods that have no
+// EXPECT_CALL specs), and StrictMock<MockFoo> is a subclass of
+// MockFoo that treats all uninteresting calls as errors.
+//
+// NiceMock and StrictMock "inherits" the constructors of their
+// respective base class, with up-to 10 arguments.  Therefore you can
+// write NiceMock<MockFoo>(5, "a") to construct a nice mock where
+// MockFoo has a constructor that accepts (int, const char*), for
+// example.
+//
+// A known limitation is that NiceMock<MockFoo> and
+// StrictMock<MockFoo> only works for mock methods defined using the
+// MOCK_METHOD* family of macros DIRECTLY in the MockFoo class.  If a
+// mock method is defined in a base class of MockFoo, the "nice" or
+// "strict" modifier may not affect it, depending on the compiler.  In
+// particular, nesting NiceMock and StrictMock is NOT supported.
+//
+// Another known limitation is that the constructors of the base mock
+// cannot have arguments passed by non-const reference, which are
+// banned by the Google C++ style guide anyway.
+
+#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
+#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
+
+
+namespace testing {
+
+template <class MockClass>
+class NiceMock : public MockClass {
+ public:
+  // We don't factor out the constructor body to a common method, as
+  // we have to avoid a possible clash with members of MockClass.
+  NiceMock() {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  // C++ doesn't (yet) allow inheritance of constructors, so we have
+  // to define it for each arity.
+  template <typename A1>
+  explicit NiceMock(const A1& a1) : MockClass(a1) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+  template <typename A1, typename A2>
+  NiceMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3,
+      const A4& a4) : MockClass(a1, a2, a3, a4) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
+      a6, a7) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
+      a2, a3, a4, a5, a6, a7, a8) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8, typename A9>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8,
+      const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8, typename A9, typename A10>
+  NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
+      const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
+    ::testing::Mock::AllowUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  virtual ~NiceMock() {
+    ::testing::Mock::UnregisterCallReaction(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(NiceMock);
+};
+
+template <class MockClass>
+class StrictMock : public MockClass {
+ public:
+  // We don't factor out the constructor body to a common method, as
+  // we have to avoid a possible clash with members of MockClass.
+  StrictMock() {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1>
+  explicit StrictMock(const A1& a1) : MockClass(a1) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+  template <typename A1, typename A2>
+  StrictMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3,
+      const A4& a4) : MockClass(a1, a2, a3, a4) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
+      a6, a7) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
+      a2, a3, a4, a5, a6, a7, a8) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8, typename A9>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8,
+      const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  template <typename A1, typename A2, typename A3, typename A4, typename A5,
+      typename A6, typename A7, typename A8, typename A9, typename A10>
+  StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
+      const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
+      const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
+    ::testing::Mock::FailUninterestingCalls(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+  virtual ~StrictMock() {
+    ::testing::Mock::UnregisterCallReaction(
+        internal::ImplicitCast_<MockClass*>(this));
+  }
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(StrictMock);
+};
+
+// The following specializations catch some (relatively more common)
+// user errors of nesting nice and strict mocks.  They do NOT catch
+// all possible errors.
+
+// These specializations are declared but not defined, as NiceMock and
+// StrictMock cannot be nested.
+template <typename MockClass>
+class NiceMock<NiceMock<MockClass> >;
+template <typename MockClass>
+class NiceMock<StrictMock<MockClass> >;
+template <typename MockClass>
+class StrictMock<NiceMock<MockClass> >;
+template <typename MockClass>
+class StrictMock<StrictMock<MockClass> >;
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
+
+namespace testing {
+
+// Declares Google Mock flags that we want a user to use programmatically.
+GMOCK_DECLARE_bool_(catch_leaked_mocks);
+GMOCK_DECLARE_string_(verbose);
+
+// Initializes Google Mock.  This must be called before running the
+// tests.  In particular, it parses the command line for the flags
+// that Google Mock recognizes.  Whenever a Google Mock flag is seen,
+// it is removed from argv, and *argc is decremented.
+//
+// No value is returned.  Instead, the Google Mock flag variables are
+// updated.
+//
+// Since Google Test is needed for Google Mock to work, this function
+// also initializes Google Test and parses its flags, if that hasn't
+// been done.
+void InitGoogleMock(int* argc, char** argv);
+
+// This overloaded version can be used in Windows programs compiled in
+// UNICODE mode.
+void InitGoogleMock(int* argc, wchar_t** argv);
+
+}  // namespace testing
+
+#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_H_
diff --git a/internal/ceres/gmock_gtest_all.cc b/internal/ceres/gmock_gtest_all.cc
new file mode 100644
index 0000000..f7ead68
--- /dev/null
+++ b/internal/ceres/gmock_gtest_all.cc
@@ -0,0 +1,10554 @@
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: mheule@google.com (Markus Heule)
+//
+// Google C++ Testing Framework (Google Test)
+//
+// Sometimes it's desirable to build Google Test by compiling a single file.
+// This file serves this purpose.
+
+// This line ensures that gtest.h can be compiled on its own, even
+// when it's fused.
+#include "gtest/gtest.h"
+
+// The following lines pull in the real gtest *.cc files.
+// Copyright 2005, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// The Google C++ Testing Framework (Google Test)
+
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// Utilities for testing Google Test itself and code that uses Google Test
+// (e.g. frameworks built on top of Google Test).
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_
+#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_
+
+
+namespace testing {
+
+// This helper class can be used to mock out Google Test failure reporting
+// so that we can test Google Test or code that builds on Google Test.
+//
+// An object of this class appends a TestPartResult object to the
+// TestPartResultArray object given in the constructor whenever a Google Test
+// failure is reported. It can either intercept only failures that are
+// generated in the same thread that created this object or it can intercept
+// all generated failures. The scope of this mock object can be controlled with
+// the second argument to the two arguments constructor.
+class GTEST_API_ ScopedFakeTestPartResultReporter
+    : public TestPartResultReporterInterface {
+ public:
+  // The two possible mocking modes of this object.
+  enum InterceptMode {
+    INTERCEPT_ONLY_CURRENT_THREAD,  // Intercepts only thread local failures.
+    INTERCEPT_ALL_THREADS           // Intercepts all failures.
+  };
+
+  // The c'tor sets this object as the test part result reporter used
+  // by Google Test.  The 'result' parameter specifies where to report the
+  // results. This reporter will only catch failures generated in the current
+  // thread. DEPRECATED
+  explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result);
+
+  // Same as above, but you can choose the interception scope of this object.
+  ScopedFakeTestPartResultReporter(InterceptMode intercept_mode,
+                                   TestPartResultArray* result);
+
+  // The d'tor restores the previous test part result reporter.
+  virtual ~ScopedFakeTestPartResultReporter();
+
+  // Appends the TestPartResult object to the TestPartResultArray
+  // received in the constructor.
+  //
+  // This method is from the TestPartResultReporterInterface
+  // interface.
+  virtual void ReportTestPartResult(const TestPartResult& result);
+ private:
+  void Init();
+
+  const InterceptMode intercept_mode_;
+  TestPartResultReporterInterface* old_reporter_;
+  TestPartResultArray* const result_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);
+};
+
+namespace internal {
+
+// A helper class for implementing EXPECT_FATAL_FAILURE() and
+// EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
+// TestPartResultArray contains exactly one failure that has the given
+// type and contains the given substring.  If that's not the case, a
+// non-fatal failure will be generated.
+class GTEST_API_ SingleFailureChecker {
+ public:
+  // The constructor remembers the arguments.
+  SingleFailureChecker(const TestPartResultArray* results,
+                       TestPartResult::Type type,
+                       const string& substr);
+  ~SingleFailureChecker();
+ private:
+  const TestPartResultArray* const results_;
+  const TestPartResult::Type type_;
+  const string substr_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker);
+};
+
+}  // namespace internal
+
+}  // namespace testing
+
+// A set of macros for testing Google Test assertions or code that's expected
+// to generate Google Test fatal failures.  It verifies that the given
+// statement will cause exactly one fatal Google Test failure with 'substr'
+// being part of the failure message.
+//
+// There are two different versions of this macro. EXPECT_FATAL_FAILURE only
+// affects and considers failures generated in the current thread and
+// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads.
+//
+// The verification of the assertion is done correctly even when the statement
+// throws an exception or aborts the current function.
+//
+// Known restrictions:
+//   - 'statement' cannot reference local non-static variables or
+//     non-static members of the current object.
+//   - 'statement' cannot return a value.
+//   - You cannot stream a failure message to this macro.
+//
+// Note that even though the implementations of the following two
+// macros are much alike, we cannot refactor them to use a common
+// helper macro, due to some peculiarity in how the preprocessor
+// works.  The AcceptsMacroThatExpandsToUnprotectedComma test in
+// gtest_unittest.cc will fail to compile if we do that.
+#define EXPECT_FATAL_FAILURE(statement, substr) \
+  do { \
+    class GTestExpectFatalFailureHelper {\
+     public:\
+      static void Execute() { statement; }\
+    };\
+    ::testing::TestPartResultArray gtest_failures;\
+    ::testing::internal::SingleFailureChecker gtest_checker(\
+        &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
+    {\
+      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
+          ::testing::ScopedFakeTestPartResultReporter:: \
+          INTERCEPT_ONLY_CURRENT_THREAD, &gtest_failures);\
+      GTestExpectFatalFailureHelper::Execute();\
+    }\
+  } while (::testing::internal::AlwaysFalse())
+
+#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \
+  do { \
+    class GTestExpectFatalFailureHelper {\
+     public:\
+      static void Execute() { statement; }\
+    };\
+    ::testing::TestPartResultArray gtest_failures;\
+    ::testing::internal::SingleFailureChecker gtest_checker(\
+        &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
+    {\
+      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
+          ::testing::ScopedFakeTestPartResultReporter:: \
+          INTERCEPT_ALL_THREADS, &gtest_failures);\
+      GTestExpectFatalFailureHelper::Execute();\
+    }\
+  } while (::testing::internal::AlwaysFalse())
+
+// A macro for testing Google Test assertions or code that's expected to
+// generate Google Test non-fatal failures.  It asserts that the given
+// statement will cause exactly one non-fatal Google Test failure with 'substr'
+// being part of the failure message.
+//
+// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only
+// affects and considers failures generated in the current thread and
+// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads.
+//
+// 'statement' is allowed to reference local variables and members of
+// the current object.
+//
+// The verification of the assertion is done correctly even when the statement
+// throws an exception or aborts the current function.
+//
+// Known restrictions:
+//   - You cannot stream a failure message to this macro.
+//
+// Note that even though the implementations of the following two
+// macros are much alike, we cannot refactor them to use a common
+// helper macro, due to some peculiarity in how the preprocessor
+// works.  If we do that, the code won't compile when the user gives
+// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that
+// expands to code containing an unprotected comma.  The
+// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc
+// catches that.
+//
+// For the same reason, we have to write
+//   if (::testing::internal::AlwaysTrue()) { statement; }
+// instead of
+//   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
+// to avoid an MSVC warning on unreachable code.
+#define EXPECT_NONFATAL_FAILURE(statement, substr) \
+  do {\
+    ::testing::TestPartResultArray gtest_failures;\
+    ::testing::internal::SingleFailureChecker gtest_checker(\
+        &gtest_failures, ::testing::TestPartResult::kNonFatalFailure, \
+        (substr));\
+    {\
+      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
+          ::testing::ScopedFakeTestPartResultReporter:: \
+          INTERCEPT_ONLY_CURRENT_THREAD, &gtest_failures);\
+      if (::testing::internal::AlwaysTrue()) { statement; }\
+    }\
+  } while (::testing::internal::AlwaysFalse())
+
+#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \
+  do {\
+    ::testing::TestPartResultArray gtest_failures;\
+    ::testing::internal::SingleFailureChecker gtest_checker(\
+        &gtest_failures, ::testing::TestPartResult::kNonFatalFailure, \
+        (substr));\
+    {\
+      ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
+          ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS,\
+          &gtest_failures);\
+      if (::testing::internal::AlwaysTrue()) { statement; }\
+    }\
+  } while (::testing::internal::AlwaysFalse())
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_SPI_H_
+
+#include <ctype.h>
+#include <math.h>
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <wchar.h>
+#include <wctype.h>
+
+#include <algorithm>
+#include <ostream>  // NOLINT
+#include <sstream>
+#include <vector>
+
+#if GTEST_OS_LINUX
+
+// TODO(kenton@google.com): Use autoconf to detect availability of
+// gettimeofday().
+# define GTEST_HAS_GETTIMEOFDAY_ 1
+
+# include <fcntl.h>  // NOLINT
+# include <limits.h>  // NOLINT
+# include <sched.h>  // NOLINT
+// Declares vsnprintf().  This header is not available on Windows.
+# include <strings.h>  // NOLINT
+# include <sys/mman.h>  // NOLINT
+# include <sys/time.h>  // NOLINT
+# include <unistd.h>  // NOLINT
+# include <string>
+
+#elif GTEST_OS_SYMBIAN
+# define GTEST_HAS_GETTIMEOFDAY_ 1
+# include <sys/time.h>  // NOLINT
+
+#elif GTEST_OS_ZOS
+# define GTEST_HAS_GETTIMEOFDAY_ 1
+# include <sys/time.h>  // NOLINT
+
+// On z/OS we additionally need strings.h for strcasecmp.
+# include <strings.h>  // NOLINT
+
+#elif GTEST_OS_WINDOWS_MOBILE  // We are on Windows CE.
+
+# include <windows.h>  // NOLINT
+
+#elif GTEST_OS_WINDOWS  // We are on Windows proper.
+
+# include <io.h>  // NOLINT
+# include <sys/timeb.h>  // NOLINT
+# include <sys/types.h>  // NOLINT
+# include <sys/stat.h>  // NOLINT
+
+# if GTEST_OS_WINDOWS_MINGW
+// MinGW has gettimeofday() but not _ftime64().
+// TODO(kenton@google.com): Use autoconf to detect availability of
+//   gettimeofday().
+// TODO(kenton@google.com): There are other ways to get the time on
+//   Windows, like GetTickCount() or GetSystemTimeAsFileTime().  MinGW
+//   supports these.  consider using them instead.
+#  define GTEST_HAS_GETTIMEOFDAY_ 1
+#  include <sys/time.h>  // NOLINT
+# endif  // GTEST_OS_WINDOWS_MINGW
+
+// cpplint thinks that the header is already included, so we want to
+// silence it.
+# include <windows.h>  // NOLINT
+
+#else
+
+// Assume other platforms have gettimeofday().
+// TODO(kenton@google.com): Use autoconf to detect availability of
+//   gettimeofday().
+# define GTEST_HAS_GETTIMEOFDAY_ 1
+
+// cpplint thinks that the header is already included, so we want to
+// silence it.
+# include <sys/time.h>  // NOLINT
+# include <unistd.h>  // NOLINT
+
+#endif  // GTEST_OS_LINUX
+
+#if GTEST_HAS_EXCEPTIONS
+# include <stdexcept>
+#endif
+
+#if GTEST_CAN_STREAM_RESULTS_
+# include <arpa/inet.h>  // NOLINT
+# include <netdb.h>  // NOLINT
+#endif
+
+// Indicates that this translation unit is part of Google Test's
+// implementation.  It must come before gtest-internal-inl.h is
+// included, or there will be a compiler error.  This trick is to
+// prevent a user from accidentally including gtest-internal-inl.h in
+// his code.
+#define GTEST_IMPLEMENTATION_ 1
+// Copyright 2005, Google 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 Google 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.
+
+// Utility functions and classes used by the Google C++ testing framework.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// This file contains purely Google Test's internal implementation.  Please
+// DO NOT #INCLUDE IT IN A USER PROGRAM.
+
+#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_
+#define GTEST_SRC_GTEST_INTERNAL_INL_H_
+
+// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is
+// part of Google Test's implementation; otherwise it's undefined.
+#if !GTEST_IMPLEMENTATION_
+// A user is trying to include this from his code - just say no.
+# error "gtest-internal-inl.h is part of Google Test's internal implementation."
+# error "It must not be included except by Google Test itself."
+#endif  // GTEST_IMPLEMENTATION_
+
+#ifndef _WIN32_WCE
+# include <errno.h>
+#endif  // !_WIN32_WCE
+#include <stddef.h>
+#include <stdlib.h>  // For strtoll/_strtoul64/malloc/free.
+#include <string.h>  // For memmove.
+
+#include <algorithm>
+#include <string>
+#include <vector>
+
+
+#if GTEST_OS_WINDOWS
+# include <windows.h>  // NOLINT
+#endif  // GTEST_OS_WINDOWS
+
+
+namespace testing {
+
+// Declares the flags.
+//
+// We don't want the users to modify this flag in the code, but want
+// Google Test's own unit tests to be able to access it. Therefore we
+// declare it here as opposed to in gtest.h.
+GTEST_DECLARE_bool_(death_test_use_fork);
+
+namespace internal {
+
+// The value of GetTestTypeId() as seen from within the Google Test
+// library.  This is solely for testing GetTestTypeId().
+GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest;
+
+// Names of the flags (needed for parsing Google Test flags).
+const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests";
+const char kBreakOnFailureFlag[] = "break_on_failure";
+const char kCatchExceptionsFlag[] = "catch_exceptions";
+const char kColorFlag[] = "color";
+const char kFilterFlag[] = "filter";
+const char kListTestsFlag[] = "list_tests";
+const char kOutputFlag[] = "output";
+const char kPrintTimeFlag[] = "print_time";
+const char kRandomSeedFlag[] = "random_seed";
+const char kRepeatFlag[] = "repeat";
+const char kShuffleFlag[] = "shuffle";
+const char kStackTraceDepthFlag[] = "stack_trace_depth";
+const char kStreamResultToFlag[] = "stream_result_to";
+const char kThrowOnFailureFlag[] = "throw_on_failure";
+
+// A valid random seed must be in [1, kMaxRandomSeed].
+const int kMaxRandomSeed = 99999;
+
+// g_help_flag is true iff the --help flag or an equivalent form is
+// specified on the command line.
+GTEST_API_ extern bool g_help_flag;
+
+// Returns the current time in milliseconds.
+GTEST_API_ TimeInMillis GetTimeInMillis();
+
+// Returns true iff Google Test should use colors in the output.
+GTEST_API_ bool ShouldUseColor(bool stdout_is_tty);
+
+// Formats the given time in milliseconds as seconds.
+GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms);
+
+// Parses a string for an Int32 flag, in the form of "--flag=value".
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+GTEST_API_ bool ParseInt32Flag(
+    const char* str, const char* flag, Int32* value);
+
+// Returns a random seed in range [1, kMaxRandomSeed] based on the
+// given --gtest_random_seed flag value.
+inline int GetRandomSeedFromFlag(Int32 random_seed_flag) {
+  const unsigned int raw_seed = (random_seed_flag == 0) ?
+      static_cast<unsigned int>(GetTimeInMillis()) :
+      static_cast<unsigned int>(random_seed_flag);
+
+  // Normalizes the actual seed to range [1, kMaxRandomSeed] such that
+  // it's easy to type.
+  const int normalized_seed =
+      static_cast<int>((raw_seed - 1U) %
+                       static_cast<unsigned int>(kMaxRandomSeed)) + 1;
+  return normalized_seed;
+}
+
+// Returns the first valid random seed after 'seed'.  The behavior is
+// undefined if 'seed' is invalid.  The seed after kMaxRandomSeed is
+// considered to be 1.
+inline int GetNextRandomSeed(int seed) {
+  GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)
+      << "Invalid random seed " << seed << " - must be in [1, "
+      << kMaxRandomSeed << "].";
+  const int next_seed = seed + 1;
+  return (next_seed > kMaxRandomSeed) ? 1 : next_seed;
+}
+
+// This class saves the values of all Google Test flags in its c'tor, and
+// restores them in its d'tor.
+class GTestFlagSaver {
+ public:
+  // The c'tor.
+  GTestFlagSaver() {
+    also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests);
+    break_on_failure_ = GTEST_FLAG(break_on_failure);
+    catch_exceptions_ = GTEST_FLAG(catch_exceptions);
+    color_ = GTEST_FLAG(color);
+    death_test_style_ = GTEST_FLAG(death_test_style);
+    death_test_use_fork_ = GTEST_FLAG(death_test_use_fork);
+    filter_ = GTEST_FLAG(filter);
+    internal_run_death_test_ = GTEST_FLAG(internal_run_death_test);
+    list_tests_ = GTEST_FLAG(list_tests);
+    output_ = GTEST_FLAG(output);
+    print_time_ = GTEST_FLAG(print_time);
+    random_seed_ = GTEST_FLAG(random_seed);
+    repeat_ = GTEST_FLAG(repeat);
+    shuffle_ = GTEST_FLAG(shuffle);
+    stack_trace_depth_ = GTEST_FLAG(stack_trace_depth);
+    stream_result_to_ = GTEST_FLAG(stream_result_to);
+    throw_on_failure_ = GTEST_FLAG(throw_on_failure);
+  }
+
+  // The d'tor is not virtual.  DO NOT INHERIT FROM THIS CLASS.
+  ~GTestFlagSaver() {
+    GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_;
+    GTEST_FLAG(break_on_failure) = break_on_failure_;
+    GTEST_FLAG(catch_exceptions) = catch_exceptions_;
+    GTEST_FLAG(color) = color_;
+    GTEST_FLAG(death_test_style) = death_test_style_;
+    GTEST_FLAG(death_test_use_fork) = death_test_use_fork_;
+    GTEST_FLAG(filter) = filter_;
+    GTEST_FLAG(internal_run_death_test) = internal_run_death_test_;
+    GTEST_FLAG(list_tests) = list_tests_;
+    GTEST_FLAG(output) = output_;
+    GTEST_FLAG(print_time) = print_time_;
+    GTEST_FLAG(random_seed) = random_seed_;
+    GTEST_FLAG(repeat) = repeat_;
+    GTEST_FLAG(shuffle) = shuffle_;
+    GTEST_FLAG(stack_trace_depth) = stack_trace_depth_;
+    GTEST_FLAG(stream_result_to) = stream_result_to_;
+    GTEST_FLAG(throw_on_failure) = throw_on_failure_;
+  }
+ private:
+  // Fields for saving the original values of flags.
+  bool also_run_disabled_tests_;
+  bool break_on_failure_;
+  bool catch_exceptions_;
+  String color_;
+  String death_test_style_;
+  bool death_test_use_fork_;
+  String filter_;
+  String internal_run_death_test_;
+  bool list_tests_;
+  String output_;
+  bool print_time_;
+  bool pretty_;
+  internal::Int32 random_seed_;
+  internal::Int32 repeat_;
+  bool shuffle_;
+  internal::Int32 stack_trace_depth_;
+  String stream_result_to_;
+  bool throw_on_failure_;
+} GTEST_ATTRIBUTE_UNUSED_;
+
+// Converts a Unicode code point to a narrow string in UTF-8 encoding.
+// code_point parameter is of type UInt32 because wchar_t may not be
+// wide enough to contain a code point.
+// The output buffer str must containt at least 32 characters.
+// The function returns the address of the output buffer.
+// If the code_point is not a valid Unicode code point
+// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output
+// as '(Invalid Unicode 0xXXXXXXXX)'.
+GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
+
+// Converts a wide string to a narrow string in UTF-8 encoding.
+// The wide string is assumed to have the following encoding:
+//   UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS)
+//   UTF-32 if sizeof(wchar_t) == 4 (on Linux)
+// Parameter str points to a null-terminated wide string.
+// Parameter num_chars may additionally limit the number
+// of wchar_t characters processed. -1 is used when the entire string
+// should be processed.
+// If the string contains code points that are not valid Unicode code points
+// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output
+// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding
+// and contains invalid UTF-16 surrogate pairs, values in those pairs
+// will be encoded as individual Unicode characters from Basic Normal Plane.
+GTEST_API_ String WideStringToUtf8(const wchar_t* str, int num_chars);
+
+// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file
+// if the variable is present. If a file already exists at this location, this
+// function will write over it. If the variable is present, but the file cannot
+// be created, prints an error and exits.
+void WriteToShardStatusFileIfNeeded();
+
+// Checks whether sharding is enabled by examining the relevant
+// environment variable values. If the variables are present,
+// but inconsistent (e.g., shard_index >= total_shards), prints
+// an error and exits. If in_subprocess_for_death_test, sharding is
+// disabled because it must only be applied to the original test
+// process. Otherwise, we could filter out death tests we intended to execute.
+GTEST_API_ bool ShouldShard(const char* total_shards_str,
+                            const char* shard_index_str,
+                            bool in_subprocess_for_death_test);
+
+// Parses the environment variable var as an Int32. If it is unset,
+// returns default_val. If it is not an Int32, prints an error and
+// and aborts.
+GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val);
+
+// Given the total number of shards, the shard index, and the test id,
+// returns true iff the test should be run on this shard. The test id is
+// some arbitrary but unique non-negative integer assigned to each test
+// method. Assumes that 0 <= shard_index < total_shards.
+GTEST_API_ bool ShouldRunTestOnShard(
+    int total_shards, int shard_index, int test_id);
+
+// STL container utilities.
+
+// Returns the number of elements in the given container that satisfy
+// the given predicate.
+template <class Container, typename Predicate>
+inline int CountIf(const Container& c, Predicate predicate) {
+  // Implemented as an explicit loop since std::count_if() in libCstd on
+  // Solaris has a non-standard signature.
+  int count = 0;
+  for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) {
+    if (predicate(*it))
+      ++count;
+  }
+  return count;
+}
+
+// Applies a function/functor to each element in the container.
+template <class Container, typename Functor>
+void ForEach(const Container& c, Functor functor) {
+  std::for_each(c.begin(), c.end(), functor);
+}
+
+// Returns the i-th element of the vector, or default_value if i is not
+// in range [0, v.size()).
+template <typename E>
+inline E GetElementOr(const std::vector<E>& v, int i, E default_value) {
+  return (i < 0 || i >= static_cast<int>(v.size())) ? default_value : v[i];
+}
+
+// Performs an in-place shuffle of a range of the vector's elements.
+// 'begin' and 'end' are element indices as an STL-style range;
+// i.e. [begin, end) are shuffled, where 'end' == size() means to
+// shuffle to the end of the vector.
+template <typename E>
+void ShuffleRange(internal::Random* random, int begin, int end,
+                  std::vector<E>* v) {
+  const int size = static_cast<int>(v->size());
+  GTEST_CHECK_(0 <= begin && begin <= size)
+      << "Invalid shuffle range start " << begin << ": must be in range [0, "
+      << size << "].";
+  GTEST_CHECK_(begin <= end && end <= size)
+      << "Invalid shuffle range finish " << end << ": must be in range ["
+      << begin << ", " << size << "].";
+
+  // Fisher-Yates shuffle, from
+  // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle
+  for (int range_width = end - begin; range_width >= 2; range_width--) {
+    const int last_in_range = begin + range_width - 1;
+    const int selected = begin + random->Generate(range_width);
+    std::swap((*v)[selected], (*v)[last_in_range]);
+  }
+}
+
+// Performs an in-place shuffle of the vector's elements.
+template <typename E>
+inline void Shuffle(internal::Random* random, std::vector<E>* v) {
+  ShuffleRange(random, 0, static_cast<int>(v->size()), v);
+}
+
+// A function for deleting an object.  Handy for being used as a
+// functor.
+template <typename T>
+static void Delete(T* x) {
+  delete x;
+}
+
+// A predicate that checks the key of a TestProperty against a known key.
+//
+// TestPropertyKeyIs is copyable.
+class TestPropertyKeyIs {
+ public:
+  // Constructor.
+  //
+  // TestPropertyKeyIs has NO default constructor.
+  explicit TestPropertyKeyIs(const char* key)
+      : key_(key) {}
+
+  // Returns true iff the test name of test property matches on key_.
+  bool operator()(const TestProperty& test_property) const {
+    return String(test_property.key()).Compare(key_) == 0;
+  }
+
+ private:
+  String key_;
+};
+
+// Class UnitTestOptions.
+//
+// This class contains functions for processing options the user
+// specifies when running the tests.  It has only static members.
+//
+// In most cases, the user can specify an option using either an
+// environment variable or a command line flag.  E.g. you can set the
+// test filter using either GTEST_FILTER or --gtest_filter.  If both
+// the variable and the flag are present, the latter overrides the
+// former.
+class GTEST_API_ UnitTestOptions {
+ public:
+  // Functions for processing the gtest_output flag.
+
+  // Returns the output format, or "" for normal printed output.
+  static String GetOutputFormat();
+
+  // Returns the absolute path of the requested output file, or the
+  // default (test_detail.xml in the original working directory) if
+  // none was explicitly specified.
+  static String GetAbsolutePathToOutputFile();
+
+  // Functions for processing the gtest_filter flag.
+
+  // Returns true iff the wildcard pattern matches the string.  The
+  // first ':' or '\0' character in pattern marks the end of it.
+  //
+  // This recursive algorithm isn't very efficient, but is clear and
+  // works well enough for matching test names, which are short.
+  static bool PatternMatchesString(const char *pattern, const char *str);
+
+  // Returns true iff the user-specified filter matches the test case
+  // name and the test name.
+  static bool FilterMatchesTest(const String &test_case_name,
+                                const String &test_name);
+
+#if GTEST_OS_WINDOWS
+  // Function for supporting the gtest_catch_exception flag.
+
+  // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
+  // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise.
+  // This function is useful as an __except condition.
+  static int GTestShouldProcessSEH(DWORD exception_code);
+#endif  // GTEST_OS_WINDOWS
+
+  // Returns true if "name" matches the ':' separated list of glob-style
+  // filters in "filter".
+  static bool MatchesFilter(const String& name, const char* filter);
+};
+
+// Returns the current application's name, removing directory path if that
+// is present.  Used by UnitTestOptions::GetOutputFile.
+GTEST_API_ FilePath GetCurrentExecutableName();
+
+// The role interface for getting the OS stack trace as a string.
+class OsStackTraceGetterInterface {
+ public:
+  OsStackTraceGetterInterface() {}
+  virtual ~OsStackTraceGetterInterface() {}
+
+  // Returns the current OS stack trace as a String.  Parameters:
+  //
+  //   max_depth  - the maximum number of stack frames to be included
+  //                in the trace.
+  //   skip_count - the number of top frames to be skipped; doesn't count
+  //                against max_depth.
+  virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
+
+  // UponLeavingGTest() should be called immediately before Google Test calls
+  // user code. It saves some information about the current stack that
+  // CurrentStackTrace() will use to find and hide Google Test stack frames.
+  virtual void UponLeavingGTest() = 0;
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface);
+};
+
+// A working implementation of the OsStackTraceGetterInterface interface.
+class OsStackTraceGetter : public OsStackTraceGetterInterface {
+ public:
+  OsStackTraceGetter() : caller_frame_(NULL) {}
+  virtual String CurrentStackTrace(int max_depth, int skip_count);
+  virtual void UponLeavingGTest();
+
+  // This string is inserted in place of stack frames that are part of
+  // Google Test's implementation.
+  static const char* const kElidedFramesMarker;
+
+ private:
+  Mutex mutex_;  // protects all internal state
+
+  // We save the stack frame below the frame that calls user code.
+  // We do this because the address of the frame immediately below
+  // the user code changes between the call to UponLeavingGTest()
+  // and any calls to CurrentStackTrace() from within the user code.
+  void* caller_frame_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter);
+};
+
+// Information about a Google Test trace point.
+struct TraceInfo {
+  const char* file;
+  int line;
+  String message;
+};
+
+// This is the default global test part result reporter used in UnitTestImpl.
+// This class should only be used by UnitTestImpl.
+class DefaultGlobalTestPartResultReporter
+  : public TestPartResultReporterInterface {
+ public:
+  explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test);
+  // Implements the TestPartResultReporterInterface. Reports the test part
+  // result in the current test.
+  virtual void ReportTestPartResult(const TestPartResult& result);
+
+ private:
+  UnitTestImpl* const unit_test_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter);
+};
+
+// This is the default per thread test part result reporter used in
+// UnitTestImpl. This class should only be used by UnitTestImpl.
+class DefaultPerThreadTestPartResultReporter
+    : public TestPartResultReporterInterface {
+ public:
+  explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test);
+  // Implements the TestPartResultReporterInterface. The implementation just
+  // delegates to the current global test part result reporter of *unit_test_.
+  virtual void ReportTestPartResult(const TestPartResult& result);
+
+ private:
+  UnitTestImpl* const unit_test_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter);
+};
+
+// The private implementation of the UnitTest class.  We don't protect
+// the methods under a mutex, as this class is not accessible by a
+// user and the UnitTest class that delegates work to this class does
+// proper locking.
+class GTEST_API_ UnitTestImpl {
+ public:
+  explicit UnitTestImpl(UnitTest* parent);
+  virtual ~UnitTestImpl();
+
+  // There are two different ways to register your own TestPartResultReporter.
+  // You can register your own repoter to listen either only for test results
+  // from the current thread or for results from all threads.
+  // By default, each per-thread test result repoter just passes a new
+  // TestPartResult to the global test result reporter, which registers the
+  // test part result for the currently running test.
+
+  // Returns the global test part result reporter.
+  TestPartResultReporterInterface* GetGlobalTestPartResultReporter();
+
+  // Sets the global test part result reporter.
+  void SetGlobalTestPartResultReporter(
+      TestPartResultReporterInterface* reporter);
+
+  // Returns the test part result reporter for the current thread.
+  TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread();
+
+  // Sets the test part result reporter for the current thread.
+  void SetTestPartResultReporterForCurrentThread(
+      TestPartResultReporterInterface* reporter);
+
+  // Gets the number of successful test cases.
+  int successful_test_case_count() const;
+
+  // Gets the number of failed test cases.
+  int failed_test_case_count() const;
+
+  // Gets the number of all test cases.
+  int total_test_case_count() const;
+
+  // Gets the number of all test cases that contain at least one test
+  // that should run.
+  int test_case_to_run_count() const;
+
+  // Gets the number of successful tests.
+  int successful_test_count() const;
+
+  // Gets the number of failed tests.
+  int failed_test_count() const;
+
+  // Gets the number of disabled tests.
+  int disabled_test_count() const;
+
+  // Gets the number of all tests.
+  int total_test_count() const;
+
+  // Gets the number of tests that should run.
+  int test_to_run_count() const;
+
+  // Gets the elapsed time, in milliseconds.
+  TimeInMillis elapsed_time() const { return elapsed_time_; }
+
+  // Returns true iff the unit test passed (i.e. all test cases passed).
+  bool Passed() const { return !Failed(); }
+
+  // Returns true iff the unit test failed (i.e. some test case failed
+  // or something outside of all tests failed).
+  bool Failed() const {
+    return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
+  }
+
+  // Gets the i-th test case among all the test cases. i can range from 0 to
+  // total_test_case_count() - 1. If i is not in that range, returns NULL.
+  const TestCase* GetTestCase(int i) const {
+    const int index = GetElementOr(test_case_indices_, i, -1);
+    return index < 0 ? NULL : test_cases_[i];
+  }
+
+  // Gets the i-th test case among all the test cases. i can range from 0 to
+  // total_test_case_count() - 1. If i is not in that range, returns NULL.
+  TestCase* GetMutableTestCase(int i) {
+    const int index = GetElementOr(test_case_indices_, i, -1);
+    return index < 0 ? NULL : test_cases_[index];
+  }
+
+  // Provides access to the event listener list.
+  TestEventListeners* listeners() { return &listeners_; }
+
+  // Returns the TestResult for the test that's currently running, or
+  // the TestResult for the ad hoc test if no test is running.
+  TestResult* current_test_result();
+
+  // Returns the TestResult for the ad hoc test.
+  const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
+
+  // Sets the OS stack trace getter.
+  //
+  // Does nothing if the input and the current OS stack trace getter
+  // are the same; otherwise, deletes the old getter and makes the
+  // input the current getter.
+  void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);
+
+  // Returns the current OS stack trace getter if it is not NULL;
+  // otherwise, creates an OsStackTraceGetter, makes it the current
+  // getter, and returns it.
+  OsStackTraceGetterInterface* os_stack_trace_getter();
+
+  // Returns the current OS stack trace as a String.
+  //
+  // The maximum number of stack frames to be included is specified by
+  // the gtest_stack_trace_depth flag.  The skip_count parameter
+  // specifies the number of top frames to be skipped, which doesn't
+  // count against the number of frames to be included.
+  //
+  // For example, if Foo() calls Bar(), which in turn calls
+  // CurrentOsStackTraceExceptTop(1), Foo() will be included in the
+  // trace but Bar() and CurrentOsStackTraceExceptTop() won't.
+  String CurrentOsStackTraceExceptTop(int skip_count);
+
+  // Finds and returns a TestCase with the given name.  If one doesn't
+  // exist, creates one and returns it.
+  //
+  // Arguments:
+  //
+  //   test_case_name: name of the test case
+  //   type_param:     the name of the test's type parameter, or NULL if
+  //                   this is not a typed or a type-parameterized test.
+  //   set_up_tc:      pointer to the function that sets up the test case
+  //   tear_down_tc:   pointer to the function that tears down the test case
+  TestCase* GetTestCase(const char* test_case_name,
+                        const char* type_param,
+                        Test::SetUpTestCaseFunc set_up_tc,
+                        Test::TearDownTestCaseFunc tear_down_tc);
+
+  // Adds a TestInfo to the unit test.
+  //
+  // Arguments:
+  //
+  //   set_up_tc:    pointer to the function that sets up the test case
+  //   tear_down_tc: pointer to the function that tears down the test case
+  //   test_info:    the TestInfo object
+  void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc,
+                   Test::TearDownTestCaseFunc tear_down_tc,
+                   TestInfo* test_info) {
+    // In order to support thread-safe death tests, we need to
+    // remember the original working directory when the test program
+    // was first invoked.  We cannot do this in RUN_ALL_TESTS(), as
+    // the user may have changed the current directory before calling
+    // RUN_ALL_TESTS().  Therefore we capture the current directory in
+    // AddTestInfo(), which is called to register a TEST or TEST_F
+    // before main() is reached.
+    if (original_working_dir_.IsEmpty()) {
+      original_working_dir_.Set(FilePath::GetCurrentDir());
+      GTEST_CHECK_(!original_working_dir_.IsEmpty())
+          << "Failed to get the current working directory.";
+    }
+
+    GetTestCase(test_info->test_case_name(),
+                test_info->type_param(),
+                set_up_tc,
+                tear_down_tc)->AddTestInfo(test_info);
+  }
+
+#if GTEST_HAS_PARAM_TEST
+  // Returns ParameterizedTestCaseRegistry object used to keep track of
+  // value-parameterized tests and instantiate and register them.
+  internal::ParameterizedTestCaseRegistry& parameterized_test_registry() {
+    return parameterized_test_registry_;
+  }
+#endif  // GTEST_HAS_PARAM_TEST
+
+  // Sets the TestCase object for the test that's currently running.
+  void set_current_test_case(TestCase* a_current_test_case) {
+    current_test_case_ = a_current_test_case;
+  }
+
+  // Sets the TestInfo object for the test that's currently running.  If
+  // current_test_info is NULL, the assertion results will be stored in
+  // ad_hoc_test_result_.
+  void set_current_test_info(TestInfo* a_current_test_info) {
+    current_test_info_ = a_current_test_info;
+  }
+
+  // Registers all parameterized tests defined using TEST_P and
+  // INSTANTIATE_TEST_CASE_P, creating regular tests for each test/parameter
+  // combination. This method can be called more then once; it has guards
+  // protecting from registering the tests more then once.  If
+  // value-parameterized tests are disabled, RegisterParameterizedTests is
+  // present but does nothing.
+  void RegisterParameterizedTests();
+
+  // Runs all tests in this UnitTest object, prints the result, and
+  // returns true if all tests are successful.  If any exception is
+  // thrown during a test, this test is considered to be failed, but
+  // the rest of the tests will still be run.
+  bool RunAllTests();
+
+  // Clears the results of all tests, except the ad hoc tests.
+  void ClearNonAdHocTestResult() {
+    ForEach(test_cases_, TestCase::ClearTestCaseResult);
+  }
+
+  // Clears the results of ad-hoc test assertions.
+  void ClearAdHocTestResult() {
+    ad_hoc_test_result_.Clear();
+  }
+
+  enum ReactionToSharding {
+    HONOR_SHARDING_PROTOCOL,
+    IGNORE_SHARDING_PROTOCOL
+  };
+
+  // Matches the full name of each test against the user-specified
+  // filter to decide whether the test should run, then records the
+  // result in each TestCase and TestInfo object.
+  // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests
+  // based on sharding variables in the environment.
+  // Returns the number of tests that should run.
+  int FilterTests(ReactionToSharding shard_tests);
+
+  // Prints the names of the tests matching the user-specified filter flag.
+  void ListTestsMatchingFilter();
+
+  const TestCase* current_test_case() const { return current_test_case_; }
+  TestInfo* current_test_info() { return current_test_info_; }
+  const TestInfo* current_test_info() const { return current_test_info_; }
+
+  // Returns the vector of environments that need to be set-up/torn-down
+  // before/after the tests are run.
+  std::vector<Environment*>& environments() { return environments_; }
+
+  // Getters for the per-thread Google Test trace stack.
+  std::vector<TraceInfo>& gtest_trace_stack() {
+    return *(gtest_trace_stack_.pointer());
+  }
+  const std::vector<TraceInfo>& gtest_trace_stack() const {
+    return gtest_trace_stack_.get();
+  }
+
+#if GTEST_HAS_DEATH_TEST
+  void InitDeathTestSubprocessControlInfo() {
+    internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag());
+  }
+  // Returns a pointer to the parsed --gtest_internal_run_death_test
+  // flag, or NULL if that flag was not specified.
+  // This information is useful only in a death test child process.
+  // Must not be called before a call to InitGoogleTest.
+  const InternalRunDeathTestFlag* internal_run_death_test_flag() const {
+    return internal_run_death_test_flag_.get();
+  }
+
+  // Returns a pointer to the current death test factory.
+  internal::DeathTestFactory* death_test_factory() {
+    return death_test_factory_.get();
+  }
+
+  void SuppressTestEventsIfInSubprocess();
+
+  friend class ReplaceDeathTestFactory;
+#endif  // GTEST_HAS_DEATH_TEST
+
+  // Initializes the event listener performing XML output as specified by
+  // UnitTestOptions. Must not be called before InitGoogleTest.
+  void ConfigureXmlOutput();
+
+#if GTEST_CAN_STREAM_RESULTS_
+  // Initializes the event listener for streaming test results to a socket.
+  // Must not be called before InitGoogleTest.
+  void ConfigureStreamingOutput();
+#endif
+
+  // Performs initialization dependent upon flag values obtained in
+  // ParseGoogleTestFlagsOnly.  Is called from InitGoogleTest after the call to
+  // ParseGoogleTestFlagsOnly.  In case a user neglects to call InitGoogleTest
+  // this function is also called from RunAllTests.  Since this function can be
+  // called more than once, it has to be idempotent.
+  void PostFlagParsingInit();
+
+  // Gets the random seed used at the start of the current test iteration.
+  int random_seed() const { return random_seed_; }
+
+  // Gets the random number generator.
+  internal::Random* random() { return &random_; }
+
+  // Shuffles all test cases, and the tests within each test case,
+  // making sure that death tests are still run first.
+  void ShuffleTests();
+
+  // Restores the test cases and tests to their order before the first shuffle.
+  void UnshuffleTests();
+
+  // Returns the value of GTEST_FLAG(catch_exceptions) at the moment
+  // UnitTest::Run() starts.
+  bool catch_exceptions() const { return catch_exceptions_; }
+
+ private:
+  friend class ::testing::UnitTest;
+
+  // Used by UnitTest::Run() to capture the state of
+  // GTEST_FLAG(catch_exceptions) at the moment it starts.
+  void set_catch_exceptions(bool value) { catch_exceptions_ = value; }
+
+  // The UnitTest object that owns this implementation object.
+  UnitTest* const parent_;
+
+  // The working directory when the first TEST() or TEST_F() was
+  // executed.
+  internal::FilePath original_working_dir_;
+
+  // The default test part result reporters.
+  DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_;
+  DefaultPerThreadTestPartResultReporter
+      default_per_thread_test_part_result_reporter_;
+
+  // Points to (but doesn't own) the global test part result reporter.
+  TestPartResultReporterInterface* global_test_part_result_repoter_;
+
+  // Protects read and write access to global_test_part_result_reporter_.
+  internal::Mutex global_test_part_result_reporter_mutex_;
+
+  // Points to (but doesn't own) the per-thread test part result reporter.
+  internal::ThreadLocal<TestPartResultReporterInterface*>
+      per_thread_test_part_result_reporter_;
+
+  // The vector of environments that need to be set-up/torn-down
+  // before/after the tests are run.
+  std::vector<Environment*> environments_;
+
+  // The vector of TestCases in their original order.  It owns the
+  // elements in the vector.
+  std::vector<TestCase*> test_cases_;
+
+  // Provides a level of indirection for the test case list to allow
+  // easy shuffling and restoring the test case order.  The i-th
+  // element of this vector is the index of the i-th test case in the
+  // shuffled order.
+  std::vector<int> test_case_indices_;
+
+#if GTEST_HAS_PARAM_TEST
+  // ParameterizedTestRegistry object used to register value-parameterized
+  // tests.
+  internal::ParameterizedTestCaseRegistry parameterized_test_registry_;
+
+  // Indicates whether RegisterParameterizedTests() has been called already.
+  bool parameterized_tests_registered_;
+#endif  // GTEST_HAS_PARAM_TEST
+
+  // Index of the last death test case registered.  Initially -1.
+  int last_death_test_case_;
+
+  // This points to the TestCase for the currently running test.  It
+  // changes as Google Test goes through one test case after another.
+  // When no test is running, this is set to NULL and Google Test
+  // stores assertion results in ad_hoc_test_result_.  Initially NULL.
+  TestCase* current_test_case_;
+
+  // This points to the TestInfo for the currently running test.  It
+  // changes as Google Test goes through one test after another.  When
+  // no test is running, this is set to NULL and Google Test stores
+  // assertion results in ad_hoc_test_result_.  Initially NULL.
+  TestInfo* current_test_info_;
+
+  // Normally, a user only writes assertions inside a TEST or TEST_F,
+  // or inside a function called by a TEST or TEST_F.  Since Google
+  // Test keeps track of which test is current running, it can
+  // associate such an assertion with the test it belongs to.
+  //
+  // If an assertion is encountered when no TEST or TEST_F is running,
+  // Google Test attributes the assertion result to an imaginary "ad hoc"
+  // test, and records the result in ad_hoc_test_result_.
+  TestResult ad_hoc_test_result_;
+
+  // The list of event listeners that can be used to track events inside
+  // Google Test.
+  TestEventListeners listeners_;
+
+  // The OS stack trace getter.  Will be deleted when the UnitTest
+  // object is destructed.  By default, an OsStackTraceGetter is used,
+  // but the user can set this field to use a custom getter if that is
+  // desired.
+  OsStackTraceGetterInterface* os_stack_trace_getter_;
+
+  // True iff PostFlagParsingInit() has been called.
+  bool post_flag_parse_init_performed_;
+
+  // The random number seed used at the beginning of the test run.
+  int random_seed_;
+
+  // Our random number generator.
+  internal::Random random_;
+
+  // How long the test took to run, in milliseconds.
+  TimeInMillis elapsed_time_;
+
+#if GTEST_HAS_DEATH_TEST
+  // The decomposed components of the gtest_internal_run_death_test flag,
+  // parsed when RUN_ALL_TESTS is called.
+  internal::scoped_ptr<InternalRunDeathTestFlag> internal_run_death_test_flag_;
+  internal::scoped_ptr<internal::DeathTestFactory> death_test_factory_;
+#endif  // GTEST_HAS_DEATH_TEST
+
+  // A per-thread stack of traces created by the SCOPED_TRACE() macro.
+  internal::ThreadLocal<std::vector<TraceInfo> > gtest_trace_stack_;
+
+  // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests()
+  // starts.
+  bool catch_exceptions_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl);
+};  // class UnitTestImpl
+
+// Convenience function for accessing the global UnitTest
+// implementation object.
+inline UnitTestImpl* GetUnitTestImpl() {
+  return UnitTest::GetInstance()->impl();
+}
+
+#if GTEST_USES_SIMPLE_RE
+
+// Internal helper functions for implementing the simple regular
+// expression matcher.
+GTEST_API_ bool IsInSet(char ch, const char* str);
+GTEST_API_ bool IsAsciiDigit(char ch);
+GTEST_API_ bool IsAsciiPunct(char ch);
+GTEST_API_ bool IsRepeat(char ch);
+GTEST_API_ bool IsAsciiWhiteSpace(char ch);
+GTEST_API_ bool IsAsciiWordChar(char ch);
+GTEST_API_ bool IsValidEscape(char ch);
+GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch);
+GTEST_API_ bool ValidateRegex(const char* regex);
+GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str);
+GTEST_API_ bool MatchRepetitionAndRegexAtHead(
+    bool escaped, char ch, char repeat, const char* regex, const char* str);
+GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str);
+
+#endif  // GTEST_USES_SIMPLE_RE
+
+// Parses the command line for Google Test flags, without initializing
+// other parts of Google Test.
+GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv);
+GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv);
+
+#if GTEST_HAS_DEATH_TEST
+
+// Returns the message describing the last system error, regardless of the
+// platform.
+GTEST_API_ String GetLastErrnoDescription();
+
+# if GTEST_OS_WINDOWS
+// Provides leak-safe Windows kernel handle ownership.
+class AutoHandle {
+ public:
+  AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
+  explicit AutoHandle(HANDLE handle) : handle_(handle) {}
+
+  ~AutoHandle() { Reset(); }
+
+  HANDLE Get() const { return handle_; }
+  void Reset() { Reset(INVALID_HANDLE_VALUE); }
+  void Reset(HANDLE handle) {
+    if (handle != handle_) {
+      if (handle_ != INVALID_HANDLE_VALUE)
+        ::CloseHandle(handle_);
+      handle_ = handle;
+    }
+  }
+
+ private:
+  HANDLE handle_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);
+};
+# endif  // GTEST_OS_WINDOWS
+
+// Attempts to parse a string into a positive integer pointed to by the
+// number parameter.  Returns true if that is possible.
+// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use
+// it here.
+template <typename Integer>
+bool ParseNaturalNumber(const ::std::string& str, Integer* number) {
+  // Fail fast if the given string does not begin with a digit;
+  // this bypasses strtoXXX's "optional leading whitespace and plus
+  // or minus sign" semantics, which are undesirable here.
+  if (str.empty() || !IsDigit(str[0])) {
+    return false;
+  }
+  errno = 0;
+
+  char* end;
+  // BiggestConvertible is the largest integer type that system-provided
+  // string-to-number conversion routines can return.
+
+# if GTEST_OS_WINDOWS && !defined(__GNUC__)
+
+  // MSVC and C++ Builder define __int64 instead of the standard long long.
+  typedef unsigned __int64 BiggestConvertible;
+  const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
+
+# else
+
+  typedef unsigned long long BiggestConvertible;  // NOLINT
+  const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
+
+# endif  // GTEST_OS_WINDOWS && !defined(__GNUC__)
+
+  const bool parse_success = *end == '\0' && errno == 0;
+
+  // TODO(vladl@google.com): Convert this to compile time assertion when it is
+  // available.
+  GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed));
+
+  const Integer result = static_cast<Integer>(parsed);
+  if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {
+    *number = result;
+    return true;
+  }
+  return false;
+}
+#endif  // GTEST_HAS_DEATH_TEST
+
+// TestResult contains some private methods that should be hidden from
+// Google Test user but are required for testing. This class allow our tests
+// to access them.
+//
+// This class is supplied only for the purpose of testing Google Test's own
+// constructs. Do not use it in user tests, either directly or indirectly.
+class TestResultAccessor {
+ public:
+  static void RecordProperty(TestResult* test_result,
+                             const TestProperty& property) {
+    test_result->RecordProperty(property);
+  }
+
+  static void ClearTestPartResults(TestResult* test_result) {
+    test_result->ClearTestPartResults();
+  }
+
+  static const std::vector<testing::TestPartResult>& test_part_results(
+      const TestResult& test_result) {
+    return test_result.test_part_results();
+  }
+};
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_SRC_GTEST_INTERNAL_INL_H_
+#undef GTEST_IMPLEMENTATION_
+
+#if GTEST_OS_WINDOWS
+# define vsnprintf _vsnprintf
+#endif  // GTEST_OS_WINDOWS
+
+namespace testing {
+
+using internal::CountIf;
+using internal::ForEach;
+using internal::GetElementOr;
+using internal::Shuffle;
+
+// Constants.
+
+// A test whose test case name or test name matches this filter is
+// disabled and not run.
+static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*";
+
+// A test case whose name matches this filter is considered a death
+// test case and will be run before test cases whose name doesn't
+// match this filter.
+static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*";
+
+// A test filter that matches everything.
+static const char kUniversalFilter[] = "*";
+
+// The default output file for XML output.
+static const char kDefaultOutputFile[] = "test_detail.xml";
+
+// The environment variable name for the test shard index.
+static const char kTestShardIndex[] = "GTEST_SHARD_INDEX";
+// The environment variable name for the total number of test shards.
+static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS";
+// The environment variable name for the test shard status file.
+static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE";
+
+namespace internal {
+
+// The text used in failure messages to indicate the start of the
+// stack trace.
+const char kStackTraceMarker[] = "\nStack trace:\n";
+
+// g_help_flag is true iff the --help flag or an equivalent form is
+// specified on the command line.
+bool g_help_flag = false;
+
+}  // namespace internal
+
+GTEST_DEFINE_bool_(
+    also_run_disabled_tests,
+    internal::BoolFromGTestEnv("also_run_disabled_tests", false),
+    "Run disabled tests too, in addition to the tests normally being run.");
+
+GTEST_DEFINE_bool_(
+    break_on_failure,
+    internal::BoolFromGTestEnv("break_on_failure", false),
+    "True iff a failed assertion should be a debugger break-point.");
+
+GTEST_DEFINE_bool_(
+    catch_exceptions,
+    internal::BoolFromGTestEnv("catch_exceptions", true),
+    "True iff " GTEST_NAME_
+    " should catch exceptions and treat them as test failures.");
+
+GTEST_DEFINE_string_(
+    color,
+    internal::StringFromGTestEnv("color", "auto"),
+    "Whether to use colors in the output.  Valid values: yes, no, "
+    "and auto.  'auto' means to use colors if the output is "
+    "being sent to a terminal and the TERM environment variable "
+    "is set to xterm, xterm-color, xterm-256color, linux or cygwin.");
+
+GTEST_DEFINE_string_(
+    filter,
+    internal::StringFromGTestEnv("filter", kUniversalFilter),
+    "A colon-separated list of glob (not regex) patterns "
+    "for filtering the tests to run, optionally followed by a "
+    "'-' and a : separated list of negative patterns (tests to "
+    "exclude).  A test is run if it matches one of the positive "
+    "patterns and does not match any of the negative patterns.");
+
+GTEST_DEFINE_bool_(list_tests, false,
+                   "List all tests without running them.");
+
+GTEST_DEFINE_string_(
+    output,
+    internal::StringFromGTestEnv("output", ""),
+    "A format (currently must be \"xml\"), optionally followed "
+    "by a colon and an output file name or directory. A directory "
+    "is indicated by a trailing pathname separator. "
+    "Examples: \"xml:filename.xml\", \"xml::directoryname/\". "
+    "If a directory is specified, output files will be created "
+    "within that directory, with file-names based on the test "
+    "executable's name and, if necessary, made unique by adding "
+    "digits.");
+
+GTEST_DEFINE_bool_(
+    print_time,
+    internal::BoolFromGTestEnv("print_time", true),
+    "True iff " GTEST_NAME_
+    " should display elapsed time in text output.");
+
+GTEST_DEFINE_int32_(
+    random_seed,
+    internal::Int32FromGTestEnv("random_seed", 0),
+    "Random number seed to use when shuffling test orders.  Must be in range "
+    "[1, 99999], or 0 to use a seed based on the current time.");
+
+GTEST_DEFINE_int32_(
+    repeat,
+    internal::Int32FromGTestEnv("repeat", 1),
+    "How many times to repeat each test.  Specify a negative number "
+    "for repeating forever.  Useful for shaking out flaky tests.");
+
+GTEST_DEFINE_bool_(
+    show_internal_stack_frames, false,
+    "True iff " GTEST_NAME_ " should include internal stack frames when "
+    "printing test failure stack traces.");
+
+GTEST_DEFINE_bool_(
+    shuffle,
+    internal::BoolFromGTestEnv("shuffle", false),
+    "True iff " GTEST_NAME_
+    " should randomize tests' order on every run.");
+
+GTEST_DEFINE_int32_(
+    stack_trace_depth,
+    internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth),
+    "The maximum number of stack frames to print when an "
+    "assertion fails.  The valid range is 0 through 100, inclusive.");
+
+GTEST_DEFINE_string_(
+    stream_result_to,
+    internal::StringFromGTestEnv("stream_result_to", ""),
+    "This flag specifies the host name and the port number on which to stream "
+    "test results. Example: \"localhost:555\". The flag is effective only on "
+    "Linux.");
+
+GTEST_DEFINE_bool_(
+    throw_on_failure,
+    internal::BoolFromGTestEnv("throw_on_failure", false),
+    "When this flag is specified, a failed assertion will throw an exception "
+    "if exceptions are enabled or exit the program with a non-zero code "
+    "otherwise.");
+
+namespace internal {
+
+// Generates a random number from [0, range), using a Linear
+// Congruential Generator (LCG).  Crashes if 'range' is 0 or greater
+// than kMaxRange.
+UInt32 Random::Generate(UInt32 range) {
+  // These constants are the same as are used in glibc's rand(3).
+  state_ = (1103515245U*state_ + 12345U) % kMaxRange;
+
+  GTEST_CHECK_(range > 0)
+      << "Cannot generate a number in the range [0, 0).";
+  GTEST_CHECK_(range <= kMaxRange)
+      << "Generation of a number in [0, " << range << ") was requested, "
+      << "but this can only generate numbers in [0, " << kMaxRange << ").";
+
+  // Converting via modulus introduces a bit of downward bias, but
+  // it's simple, and a linear congruential generator isn't too good
+  // to begin with.
+  return state_ % range;
+}
+
+// GTestIsInitialized() returns true iff the user has initialized
+// Google Test.  Useful for catching the user mistake of not initializing
+// Google Test before calling RUN_ALL_TESTS().
+//
+// A user must call testing::InitGoogleTest() to initialize Google
+// Test.  g_init_gtest_count is set to the number of times
+// InitGoogleTest() has been called.  We don't protect this variable
+// under a mutex as it is only accessed in the main thread.
+int g_init_gtest_count = 0;
+static bool GTestIsInitialized() { return g_init_gtest_count != 0; }
+
+// Iterates over a vector of TestCases, keeping a running sum of the
+// results of calling a given int-returning method on each.
+// Returns the sum.
+static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
+                               int (TestCase::*method)() const) {
+  int sum = 0;
+  for (size_t i = 0; i < case_list.size(); i++) {
+    sum += (case_list[i]->*method)();
+  }
+  return sum;
+}
+
+// Returns true iff the test case passed.
+static bool TestCasePassed(const TestCase* test_case) {
+  return test_case->should_run() && test_case->Passed();
+}
+
+// Returns true iff the test case failed.
+static bool TestCaseFailed(const TestCase* test_case) {
+  return test_case->should_run() && test_case->Failed();
+}
+
+// Returns true iff test_case contains at least one test that should
+// run.
+static bool ShouldRunTestCase(const TestCase* test_case) {
+  return test_case->should_run();
+}
+
+// AssertHelper constructor.
+AssertHelper::AssertHelper(TestPartResult::Type type,
+                           const char* file,
+                           int line,
+                           const char* message)
+    : data_(new AssertHelperData(type, file, line, message)) {
+}
+
+AssertHelper::~AssertHelper() {
+  delete data_;
+}
+
+// Message assignment, for assertion streaming support.
+void AssertHelper::operator=(const Message& message) const {
+  UnitTest::GetInstance()->
+    AddTestPartResult(data_->type, data_->file, data_->line,
+                      AppendUserMessage(data_->message, message),
+                      UnitTest::GetInstance()->impl()
+                      ->CurrentOsStackTraceExceptTop(1)
+                      // Skips the stack frame for this function itself.
+                      );  // NOLINT
+}
+
+// Mutex for linked pointers.
+GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex);
+
+// Application pathname gotten in InitGoogleTest.
+String g_executable_path;
+
+// Returns the current application's name, removing directory path if that
+// is present.
+FilePath GetCurrentExecutableName() {
+  FilePath result;
+
+#if GTEST_OS_WINDOWS
+  result.Set(FilePath(g_executable_path).RemoveExtension("exe"));
+#else
+  result.Set(FilePath(g_executable_path));
+#endif  // GTEST_OS_WINDOWS
+
+  return result.RemoveDirectoryName();
+}
+
+// Functions for processing the gtest_output flag.
+
+// Returns the output format, or "" for normal printed output.
+String UnitTestOptions::GetOutputFormat() {
+  const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
+  if (gtest_output_flag == NULL) return String("");
+
+  const char* const colon = strchr(gtest_output_flag, ':');
+  return (colon == NULL) ?
+      String(gtest_output_flag) :
+      String(gtest_output_flag, colon - gtest_output_flag);
+}
+
+// Returns the name of the requested output file, or the default if none
+// was explicitly specified.
+String UnitTestOptions::GetAbsolutePathToOutputFile() {
+  const char* const gtest_output_flag = GTEST_FLAG(output).c_str();
+  if (gtest_output_flag == NULL)
+    return String("");
+
+  const char* const colon = strchr(gtest_output_flag, ':');
+  if (colon == NULL)
+    return String(internal::FilePath::ConcatPaths(
+               internal::FilePath(
+                   UnitTest::GetInstance()->original_working_dir()),
+               internal::FilePath(kDefaultOutputFile)).ToString() );
+
+  internal::FilePath output_name(colon + 1);
+  if (!output_name.IsAbsolutePath())
+    // TODO(wan@google.com): on Windows \some\path is not an absolute
+    // path (as its meaning depends on the current drive), yet the
+    // following logic for turning it into an absolute path is wrong.
+    // Fix it.
+    output_name = internal::FilePath::ConcatPaths(
+        internal::FilePath(UnitTest::GetInstance()->original_working_dir()),
+        internal::FilePath(colon + 1));
+
+  if (!output_name.IsDirectory())
+    return output_name.ToString();
+
+  internal::FilePath result(internal::FilePath::GenerateUniqueFileName(
+      output_name, internal::GetCurrentExecutableName(),
+      GetOutputFormat().c_str()));
+  return result.ToString();
+}
+
+// Returns true iff the wildcard pattern matches the string.  The
+// first ':' or '\0' character in pattern marks the end of it.
+//
+// This recursive algorithm isn't very efficient, but is clear and
+// works well enough for matching test names, which are short.
+bool UnitTestOptions::PatternMatchesString(const char *pattern,
+                                           const char *str) {
+  switch (*pattern) {
+    case '\0':
+    case ':':  // Either ':' or '\0' marks the end of the pattern.
+      return *str == '\0';
+    case '?':  // Matches any single character.
+      return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
+    case '*':  // Matches any string (possibly empty) of characters.
+      return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
+          PatternMatchesString(pattern + 1, str);
+    default:  // Non-special character.  Matches itself.
+      return *pattern == *str &&
+          PatternMatchesString(pattern + 1, str + 1);
+  }
+}
+
+bool UnitTestOptions::MatchesFilter(const String& name, const char* filter) {
+  const char *cur_pattern = filter;
+  for (;;) {
+    if (PatternMatchesString(cur_pattern, name.c_str())) {
+      return true;
+    }
+
+    // Finds the next pattern in the filter.
+    cur_pattern = strchr(cur_pattern, ':');
+
+    // Returns if no more pattern can be found.
+    if (cur_pattern == NULL) {
+      return false;
+    }
+
+    // Skips the pattern separater (the ':' character).
+    cur_pattern++;
+  }
+}
+
+// TODO(keithray): move String function implementations to gtest-string.cc.
+
+// Returns true iff the user-specified filter matches the test case
+// name and the test name.
+bool UnitTestOptions::FilterMatchesTest(const String &test_case_name,
+                                        const String &test_name) {
+  const String& full_name = String::Format("%s.%s",
+                                           test_case_name.c_str(),
+                                           test_name.c_str());
+
+  // Split --gtest_filter at '-', if there is one, to separate into
+  // positive filter and negative filter portions
+  const char* const p = GTEST_FLAG(filter).c_str();
+  const char* const dash = strchr(p, '-');
+  String positive;
+  String negative;
+  if (dash == NULL) {
+    positive = GTEST_FLAG(filter).c_str();  // Whole string is a positive filter
+    negative = String("");
+  } else {
+    positive = String(p, dash - p);  // Everything up to the dash
+    negative = String(dash+1);       // Everything after the dash
+    if (positive.empty()) {
+      // Treat '-test1' as the same as '*-test1'
+      positive = kUniversalFilter;
+    }
+  }
+
+  // A filter is a colon-separated list of patterns.  It matches a
+  // test if any pattern in it matches the test.
+  return (MatchesFilter(full_name, positive.c_str()) &&
+          !MatchesFilter(full_name, negative.c_str()));
+}
+
+#if GTEST_HAS_SEH
+// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
+// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise.
+// This function is useful as an __except condition.
+int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) {
+  // Google Test should handle a SEH exception if:
+  //   1. the user wants it to, AND
+  //   2. this is not a breakpoint exception, AND
+  //   3. this is not a C++ exception (VC++ implements them via SEH,
+  //      apparently).
+  //
+  // SEH exception code for C++ exceptions.
+  // (see http://support.microsoft.com/kb/185294 for more information).
+  const DWORD kCxxExceptionCode = 0xe06d7363;
+
+  bool should_handle = true;
+
+  if (!GTEST_FLAG(catch_exceptions))
+    should_handle = false;
+  else if (exception_code == EXCEPTION_BREAKPOINT)
+    should_handle = false;
+  else if (exception_code == kCxxExceptionCode)
+    should_handle = false;
+
+  return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH;
+}
+#endif  // GTEST_HAS_SEH
+
+}  // namespace internal
+
+// The c'tor sets this object as the test part result reporter used by
+// Google Test.  The 'result' parameter specifies where to report the
+// results. Intercepts only failures from the current thread.
+ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(
+    TestPartResultArray* result)
+    : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD),
+      result_(result) {
+  Init();
+}
+
+// The c'tor sets this object as the test part result reporter used by
+// Google Test.  The 'result' parameter specifies where to report the
+// results.
+ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter(
+    InterceptMode intercept_mode, TestPartResultArray* result)
+    : intercept_mode_(intercept_mode),
+      result_(result) {
+  Init();
+}
+
+void ScopedFakeTestPartResultReporter::Init() {
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  if (intercept_mode_ == INTERCEPT_ALL_THREADS) {
+    old_reporter_ = impl->GetGlobalTestPartResultReporter();
+    impl->SetGlobalTestPartResultReporter(this);
+  } else {
+    old_reporter_ = impl->GetTestPartResultReporterForCurrentThread();
+    impl->SetTestPartResultReporterForCurrentThread(this);
+  }
+}
+
+// The d'tor restores the test part result reporter used by Google Test
+// before.
+ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() {
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  if (intercept_mode_ == INTERCEPT_ALL_THREADS) {
+    impl->SetGlobalTestPartResultReporter(old_reporter_);
+  } else {
+    impl->SetTestPartResultReporterForCurrentThread(old_reporter_);
+  }
+}
+
+// Increments the test part result count and remembers the result.
+// This method is from the TestPartResultReporterInterface interface.
+void ScopedFakeTestPartResultReporter::ReportTestPartResult(
+    const TestPartResult& result) {
+  result_->Append(result);
+}
+
+namespace internal {
+
+// Returns the type ID of ::testing::Test.  We should always call this
+// instead of GetTypeId< ::testing::Test>() to get the type ID of
+// testing::Test.  This is to work around a suspected linker bug when
+// using Google Test as a framework on Mac OS X.  The bug causes
+// GetTypeId< ::testing::Test>() to return different values depending
+// on whether the call is from the Google Test framework itself or
+// from user test code.  GetTestTypeId() is guaranteed to always
+// return the same value, as it always calls GetTypeId<>() from the
+// gtest.cc, which is within the Google Test framework.
+TypeId GetTestTypeId() {
+  return GetTypeId<Test>();
+}
+
+// The value of GetTestTypeId() as seen from within the Google Test
+// library.  This is solely for testing GetTestTypeId().
+extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId();
+
+// This predicate-formatter checks that 'results' contains a test part
+// failure of the given type and that the failure message contains the
+// given substring.
+AssertionResult HasOneFailure(const char* /* results_expr */,
+                              const char* /* type_expr */,
+                              const char* /* substr_expr */,
+                              const TestPartResultArray& results,
+                              TestPartResult::Type type,
+                              const string& substr) {
+  const String expected(type == TestPartResult::kFatalFailure ?
+                        "1 fatal failure" :
+                        "1 non-fatal failure");
+  Message msg;
+  if (results.size() != 1) {
+    msg << "Expected: " << expected << "\n"
+        << "  Actual: " << results.size() << " failures";
+    for (int i = 0; i < results.size(); i++) {
+      msg << "\n" << results.GetTestPartResult(i);
+    }
+    return AssertionFailure() << msg;
+  }
+
+  const TestPartResult& r = results.GetTestPartResult(0);
+  if (r.type() != type) {
+    return AssertionFailure() << "Expected: " << expected << "\n"
+                              << "  Actual:\n"
+                              << r;
+  }
+
+  if (strstr(r.message(), substr.c_str()) == NULL) {
+    return AssertionFailure() << "Expected: " << expected << " containing \""
+                              << substr << "\"\n"
+                              << "  Actual:\n"
+                              << r;
+  }
+
+  return AssertionSuccess();
+}
+
+// The constructor of SingleFailureChecker remembers where to look up
+// test part results, what type of failure we expect, and what
+// substring the failure message should contain.
+SingleFailureChecker:: SingleFailureChecker(
+    const TestPartResultArray* results,
+    TestPartResult::Type type,
+    const string& substr)
+    : results_(results),
+      type_(type),
+      substr_(substr) {}
+
+// The destructor of SingleFailureChecker verifies that the given
+// TestPartResultArray contains exactly one failure that has the given
+// type and contains the given substring.  If that's not the case, a
+// non-fatal failure will be generated.
+SingleFailureChecker::~SingleFailureChecker() {
+  EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_);
+}
+
+DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter(
+    UnitTestImpl* unit_test) : unit_test_(unit_test) {}
+
+void DefaultGlobalTestPartResultReporter::ReportTestPartResult(
+    const TestPartResult& result) {
+  unit_test_->current_test_result()->AddTestPartResult(result);
+  unit_test_->listeners()->repeater()->OnTestPartResult(result);
+}
+
+DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter(
+    UnitTestImpl* unit_test) : unit_test_(unit_test) {}
+
+void DefaultPerThreadTestPartResultReporter::ReportTestPartResult(
+    const TestPartResult& result) {
+  unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result);
+}
+
+// Returns the global test part result reporter.
+TestPartResultReporterInterface*
+UnitTestImpl::GetGlobalTestPartResultReporter() {
+  internal::MutexLock lock(&global_test_part_result_reporter_mutex_);
+  return global_test_part_result_repoter_;
+}
+
+// Sets the global test part result reporter.
+void UnitTestImpl::SetGlobalTestPartResultReporter(
+    TestPartResultReporterInterface* reporter) {
+  internal::MutexLock lock(&global_test_part_result_reporter_mutex_);
+  global_test_part_result_repoter_ = reporter;
+}
+
+// Returns the test part result reporter for the current thread.
+TestPartResultReporterInterface*
+UnitTestImpl::GetTestPartResultReporterForCurrentThread() {
+  return per_thread_test_part_result_reporter_.get();
+}
+
+// Sets the test part result reporter for the current thread.
+void UnitTestImpl::SetTestPartResultReporterForCurrentThread(
+    TestPartResultReporterInterface* reporter) {
+  per_thread_test_part_result_reporter_.set(reporter);
+}
+
+// Gets the number of successful test cases.
+int UnitTestImpl::successful_test_case_count() const {
+  return CountIf(test_cases_, TestCasePassed);
+}
+
+// Gets the number of failed test cases.
+int UnitTestImpl::failed_test_case_count() const {
+  return CountIf(test_cases_, TestCaseFailed);
+}
+
+// Gets the number of all test cases.
+int UnitTestImpl::total_test_case_count() const {
+  return static_cast<int>(test_cases_.size());
+}
+
+// Gets the number of all test cases that contain at least one test
+// that should run.
+int UnitTestImpl::test_case_to_run_count() const {
+  return CountIf(test_cases_, ShouldRunTestCase);
+}
+
+// Gets the number of successful tests.
+int UnitTestImpl::successful_test_count() const {
+  return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
+}
+
+// Gets the number of failed tests.
+int UnitTestImpl::failed_test_count() const {
+  return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
+}
+
+// Gets the number of disabled tests.
+int UnitTestImpl::disabled_test_count() const {
+  return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
+}
+
+// Gets the number of all tests.
+int UnitTestImpl::total_test_count() const {
+  return SumOverTestCaseList(test_cases_, &TestCase::total_test_count);
+}
+
+// Gets the number of tests that should run.
+int UnitTestImpl::test_to_run_count() const {
+  return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count);
+}
+
+// Returns the current OS stack trace as a String.
+//
+// The maximum number of stack frames to be included is specified by
+// the gtest_stack_trace_depth flag.  The skip_count parameter
+// specifies the number of top frames to be skipped, which doesn't
+// count against the number of frames to be included.
+//
+// For example, if Foo() calls Bar(), which in turn calls
+// CurrentOsStackTraceExceptTop(1), Foo() will be included in the
+// trace but Bar() and CurrentOsStackTraceExceptTop() won't.
+String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
+  (void)skip_count;
+  return String("");
+}
+
+// Returns the current time in milliseconds.
+TimeInMillis GetTimeInMillis() {
+#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__)
+  // Difference between 1970-01-01 and 1601-01-01 in milliseconds.
+  // http://analogous.blogspot.com/2005/04/epoch.html
+  const TimeInMillis kJavaEpochToWinFileTimeDelta =
+    static_cast<TimeInMillis>(116444736UL) * 100000UL;
+  const DWORD kTenthMicrosInMilliSecond = 10000;
+
+  SYSTEMTIME now_systime;
+  FILETIME now_filetime;
+  ULARGE_INTEGER now_int64;
+  // TODO(kenton@google.com): Shouldn't this just use
+  //   GetSystemTimeAsFileTime()?
+  GetSystemTime(&now_systime);
+  if (SystemTimeToFileTime(&now_systime, &now_filetime)) {
+    now_int64.LowPart = now_filetime.dwLowDateTime;
+    now_int64.HighPart = now_filetime.dwHighDateTime;
+    now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) -
+      kJavaEpochToWinFileTimeDelta;
+    return now_int64.QuadPart;
+  }
+  return 0;
+#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_
+  __timeb64 now;
+
+# ifdef _MSC_VER
+
+  // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996
+  // (deprecated function) there.
+  // TODO(kenton@google.com): Use GetTickCount()?  Or use
+  //   SystemTimeToFileTime()
+#  pragma warning(push)          // Saves the current warning state.
+#  pragma warning(disable:4996)  // Temporarily disables warning 4996.
+  _ftime64(&now);
+#  pragma warning(pop)           // Restores the warning state.
+# else
+
+  _ftime64(&now);
+
+# endif  // _MSC_VER
+
+  return static_cast<TimeInMillis>(now.time) * 1000 + now.millitm;
+#elif GTEST_HAS_GETTIMEOFDAY_
+  struct timeval now;
+  gettimeofday(&now, NULL);
+  return static_cast<TimeInMillis>(now.tv_sec) * 1000 + now.tv_usec / 1000;
+#else
+# error "Don't know how to get the current time on your system."
+#endif
+}
+
+// Utilities
+
+// class String
+
+// Returns the input enclosed in double quotes if it's not NULL;
+// otherwise returns "(null)".  For example, "\"Hello\"" is returned
+// for input "Hello".
+//
+// This is useful for printing a C string in the syntax of a literal.
+//
+// Known issue: escape sequences are not handled yet.
+String String::ShowCStringQuoted(const char* c_str) {
+  return c_str ? String::Format("\"%s\"", c_str) : String("(null)");
+}
+
+// Copies at most length characters from str into a newly-allocated
+// piece of memory of size length+1.  The memory is allocated with new[].
+// A terminating null byte is written to the memory, and a pointer to it
+// is returned.  If str is NULL, NULL is returned.
+static char* CloneString(const char* str, size_t length) {
+  if (str == NULL) {
+    return NULL;
+  } else {
+    char* const clone = new char[length + 1];
+    posix::StrNCpy(clone, str, length);
+    clone[length] = '\0';
+    return clone;
+  }
+}
+
+// Clones a 0-terminated C string, allocating memory using new.  The
+// caller is responsible for deleting[] the return value.  Returns the
+// cloned string, or NULL if the input is NULL.
+const char * String::CloneCString(const char* c_str) {
+  return (c_str == NULL) ?
+                    NULL : CloneString(c_str, strlen(c_str));
+}
+
+#if GTEST_OS_WINDOWS_MOBILE
+// Creates a UTF-16 wide string from the given ANSI string, allocating
+// memory using new. The caller is responsible for deleting the return
+// value using delete[]. Returns the wide string, or NULL if the
+// input is NULL.
+LPCWSTR String::AnsiToUtf16(const char* ansi) {
+  if (!ansi) return NULL;
+  const int length = strlen(ansi);
+  const int unicode_length =
+      MultiByteToWideChar(CP_ACP, 0, ansi, length,
+                          NULL, 0);
+  WCHAR* unicode = new WCHAR[unicode_length + 1];
+  MultiByteToWideChar(CP_ACP, 0, ansi, length,
+                      unicode, unicode_length);
+  unicode[unicode_length] = 0;
+  return unicode;
+}
+
+// Creates an ANSI string from the given wide string, allocating
+// memory using new. The caller is responsible for deleting the return
+// value using delete[]. Returns the ANSI string, or NULL if the
+// input is NULL.
+const char* String::Utf16ToAnsi(LPCWSTR utf16_str)  {
+  if (!utf16_str) return NULL;
+  const int ansi_length =
+      WideCharToMultiByte(CP_ACP, 0, utf16_str, -1,
+                          NULL, 0, NULL, NULL);
+  char* ansi = new char[ansi_length + 1];
+  WideCharToMultiByte(CP_ACP, 0, utf16_str, -1,
+                      ansi, ansi_length, NULL, NULL);
+  ansi[ansi_length] = 0;
+  return ansi;
+}
+
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+// Compares two C strings.  Returns true iff they have the same content.
+//
+// Unlike strcmp(), this function can handle NULL argument(s).  A NULL
+// C string is considered different to any non-NULL C string,
+// including the empty string.
+bool String::CStringEquals(const char * lhs, const char * rhs) {
+  if ( lhs == NULL ) return rhs == NULL;
+
+  if ( rhs == NULL ) return false;
+
+  return strcmp(lhs, rhs) == 0;
+}
+
+#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING
+
+// Converts an array of wide chars to a narrow string using the UTF-8
+// encoding, and streams the result to the given Message object.
+static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length,
+                                     Message* msg) {
+  // TODO(wan): consider allowing a testing::String object to
+  // contain '\0'.  This will make it behave more like std::string,
+  // and will allow ToUtf8String() to return the correct encoding
+  // for '\0' s.t. we can get rid of the conditional here (and in
+  // several other places).
+  for (size_t i = 0; i != length; ) {  // NOLINT
+    if (wstr[i] != L'\0') {
+      *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));
+      while (i != length && wstr[i] != L'\0')
+        i++;
+    } else {
+      *msg << '\0';
+      i++;
+    }
+  }
+}
+
+#endif  // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING
+
+}  // namespace internal
+
+#if GTEST_HAS_STD_WSTRING
+// Converts the given wide string to a narrow string using the UTF-8
+// encoding, and streams the result to this Message object.
+Message& Message::operator <<(const ::std::wstring& wstr) {
+  internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
+  return *this;
+}
+#endif  // GTEST_HAS_STD_WSTRING
+
+#if GTEST_HAS_GLOBAL_WSTRING
+// Converts the given wide string to a narrow string using the UTF-8
+// encoding, and streams the result to this Message object.
+Message& Message::operator <<(const ::wstring& wstr) {
+  internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
+  return *this;
+}
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+// AssertionResult constructors.
+// Used in EXPECT_TRUE/FALSE(assertion_result).
+AssertionResult::AssertionResult(const AssertionResult& other)
+    : success_(other.success_),
+      message_(other.message_.get() != NULL ?
+               new ::std::string(*other.message_) :
+               static_cast< ::std::string*>(NULL)) {
+}
+
+// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
+AssertionResult AssertionResult::operator!() const {
+  AssertionResult negation(!success_);
+  if (message_.get() != NULL)
+    negation << *message_;
+  return negation;
+}
+
+// Makes a successful assertion result.
+AssertionResult AssertionSuccess() {
+  return AssertionResult(true);
+}
+
+// Makes a failed assertion result.
+AssertionResult AssertionFailure() {
+  return AssertionResult(false);
+}
+
+// Makes a failed assertion result with the given failure message.
+// Deprecated; use AssertionFailure() << message.
+AssertionResult AssertionFailure(const Message& message) {
+  return AssertionFailure() << message;
+}
+
+namespace internal {
+
+// Constructs and returns the message for an equality assertion
+// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
+//
+// The first four parameters are the expressions used in the assertion
+// and their values, as strings.  For example, for ASSERT_EQ(foo, bar)
+// where foo is 5 and bar is 6, we have:
+//
+//   expected_expression: "foo"
+//   actual_expression:   "bar"
+//   expected_value:      "5"
+//   actual_value:        "6"
+//
+// The ignoring_case parameter is true iff the assertion is a
+// *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
+// be inserted into the message.
+AssertionResult EqFailure(const char* expected_expression,
+                          const char* actual_expression,
+                          const String& expected_value,
+                          const String& actual_value,
+                          bool ignoring_case) {
+  Message msg;
+  msg << "Value of: " << actual_expression;
+  if (actual_value != actual_expression) {
+    msg << "\n  Actual: " << actual_value;
+  }
+
+  msg << "\nExpected: " << expected_expression;
+  if (ignoring_case) {
+    msg << " (ignoring case)";
+  }
+  if (expected_value != expected_expression) {
+    msg << "\nWhich is: " << expected_value;
+  }
+
+  return AssertionFailure() << msg;
+}
+
+// Constructs a failure message for Boolean assertions such as EXPECT_TRUE.
+String GetBoolAssertionFailureMessage(const AssertionResult& assertion_result,
+                                      const char* expression_text,
+                                      const char* actual_predicate_value,
+                                      const char* expected_predicate_value) {
+  const char* actual_message = assertion_result.message();
+  Message msg;
+  msg << "Value of: " << expression_text
+      << "\n  Actual: " << actual_predicate_value;
+  if (actual_message[0] != '\0')
+    msg << " (" << actual_message << ")";
+  msg << "\nExpected: " << expected_predicate_value;
+  return msg.GetString();
+}
+
+// Helper function for implementing ASSERT_NEAR.
+AssertionResult DoubleNearPredFormat(const char* expr1,
+                                     const char* expr2,
+                                     const char* abs_error_expr,
+                                     double val1,
+                                     double val2,
+                                     double abs_error) {
+  const double diff = fabs(val1 - val2);
+  if (diff <= abs_error) return AssertionSuccess();
+
+  // TODO(wan): do not print the value of an expression if it's
+  // already a literal.
+  return AssertionFailure()
+      << "The difference between " << expr1 << " and " << expr2
+      << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n"
+      << expr1 << " evaluates to " << val1 << ",\n"
+      << expr2 << " evaluates to " << val2 << ", and\n"
+      << abs_error_expr << " evaluates to " << abs_error << ".";
+}
+
+
+// Helper template for implementing FloatLE() and DoubleLE().
+template <typename RawType>
+AssertionResult FloatingPointLE(const char* expr1,
+                                const char* expr2,
+                                RawType val1,
+                                RawType val2) {
+  // Returns success if val1 is less than val2,
+  if (val1 < val2) {
+    return AssertionSuccess();
+  }
+
+  // or if val1 is almost equal to val2.
+  const FloatingPoint<RawType> lhs(val1), rhs(val2);
+  if (lhs.AlmostEquals(rhs)) {
+    return AssertionSuccess();
+  }
+
+  // Note that the above two checks will both fail if either val1 or
+  // val2 is NaN, as the IEEE floating-point standard requires that
+  // any predicate involving a NaN must return false.
+
+  ::std::stringstream val1_ss;
+  val1_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
+          << val1;
+
+  ::std::stringstream val2_ss;
+  val2_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
+          << val2;
+
+  return AssertionFailure()
+      << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n"
+      << "  Actual: " << StringStreamToString(&val1_ss) << " vs "
+      << StringStreamToString(&val2_ss);
+}
+
+}  // namespace internal
+
+// Asserts that val1 is less than, or almost equal to, val2.  Fails
+// otherwise.  In particular, it fails if either val1 or val2 is NaN.
+AssertionResult FloatLE(const char* expr1, const char* expr2,
+                        float val1, float val2) {
+  return internal::FloatingPointLE<float>(expr1, expr2, val1, val2);
+}
+
+// Asserts that val1 is less than, or almost equal to, val2.  Fails
+// otherwise.  In particular, it fails if either val1 or val2 is NaN.
+AssertionResult DoubleLE(const char* expr1, const char* expr2,
+                         double val1, double val2) {
+  return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
+}
+
+namespace internal {
+
+// The helper function for {ASSERT|EXPECT}_EQ with int or enum
+// arguments.
+AssertionResult CmpHelperEQ(const char* expected_expression,
+                            const char* actual_expression,
+                            BiggestInt expected,
+                            BiggestInt actual) {
+  if (expected == actual) {
+    return AssertionSuccess();
+  }
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   FormatForComparisonFailureMessage(expected, actual),
+                   FormatForComparisonFailureMessage(actual, expected),
+                   false);
+}
+
+// A macro for implementing the helper functions needed to implement
+// ASSERT_?? and EXPECT_?? with integer or enum arguments.  It is here
+// just to avoid copy-and-paste of similar code.
+#define GTEST_IMPL_CMP_HELPER_(op_name, op)\
+AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
+                                   BiggestInt val1, BiggestInt val2) {\
+  if (val1 op val2) {\
+    return AssertionSuccess();\
+  } else {\
+    return AssertionFailure() \
+        << "Expected: (" << expr1 << ") " #op " (" << expr2\
+        << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
+        << " vs " << FormatForComparisonFailureMessage(val2, val1);\
+  }\
+}
+
+// Implements the helper function for {ASSERT|EXPECT}_NE with int or
+// enum arguments.
+GTEST_IMPL_CMP_HELPER_(NE, !=)
+// Implements the helper function for {ASSERT|EXPECT}_LE with int or
+// enum arguments.
+GTEST_IMPL_CMP_HELPER_(LE, <=)
+// Implements the helper function for {ASSERT|EXPECT}_LT with int or
+// enum arguments.
+GTEST_IMPL_CMP_HELPER_(LT, < )
+// Implements the helper function for {ASSERT|EXPECT}_GE with int or
+// enum arguments.
+GTEST_IMPL_CMP_HELPER_(GE, >=)
+// Implements the helper function for {ASSERT|EXPECT}_GT with int or
+// enum arguments.
+GTEST_IMPL_CMP_HELPER_(GT, > )
+
+#undef GTEST_IMPL_CMP_HELPER_
+
+// The helper function for {ASSERT|EXPECT}_STREQ.
+AssertionResult CmpHelperSTREQ(const char* expected_expression,
+                               const char* actual_expression,
+                               const char* expected,
+                               const char* actual) {
+  if (String::CStringEquals(expected, actual)) {
+    return AssertionSuccess();
+  }
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   String::ShowCStringQuoted(expected),
+                   String::ShowCStringQuoted(actual),
+                   false);
+}
+
+// The helper function for {ASSERT|EXPECT}_STRCASEEQ.
+AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
+                                   const char* actual_expression,
+                                   const char* expected,
+                                   const char* actual) {
+  if (String::CaseInsensitiveCStringEquals(expected, actual)) {
+    return AssertionSuccess();
+  }
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   String::ShowCStringQuoted(expected),
+                   String::ShowCStringQuoted(actual),
+                   true);
+}
+
+// The helper function for {ASSERT|EXPECT}_STRNE.
+AssertionResult CmpHelperSTRNE(const char* s1_expression,
+                               const char* s2_expression,
+                               const char* s1,
+                               const char* s2) {
+  if (!String::CStringEquals(s1, s2)) {
+    return AssertionSuccess();
+  } else {
+    return AssertionFailure() << "Expected: (" << s1_expression << ") != ("
+                              << s2_expression << "), actual: \""
+                              << s1 << "\" vs \"" << s2 << "\"";
+  }
+}
+
+// The helper function for {ASSERT|EXPECT}_STRCASENE.
+AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
+                                   const char* s2_expression,
+                                   const char* s1,
+                                   const char* s2) {
+  if (!String::CaseInsensitiveCStringEquals(s1, s2)) {
+    return AssertionSuccess();
+  } else {
+    return AssertionFailure()
+        << "Expected: (" << s1_expression << ") != ("
+        << s2_expression << ") (ignoring case), actual: \""
+        << s1 << "\" vs \"" << s2 << "\"";
+  }
+}
+
+}  // namespace internal
+
+namespace {
+
+// Helper functions for implementing IsSubString() and IsNotSubstring().
+
+// This group of overloaded functions return true iff needle is a
+// substring of haystack.  NULL is considered a substring of itself
+// only.
+
+bool IsSubstringPred(const char* needle, const char* haystack) {
+  if (needle == NULL || haystack == NULL)
+    return needle == haystack;
+
+  return strstr(haystack, needle) != NULL;
+}
+
+bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) {
+  if (needle == NULL || haystack == NULL)
+    return needle == haystack;
+
+  return wcsstr(haystack, needle) != NULL;
+}
+
+// StringType here can be either ::std::string or ::std::wstring.
+template <typename StringType>
+bool IsSubstringPred(const StringType& needle,
+                     const StringType& haystack) {
+  return haystack.find(needle) != StringType::npos;
+}
+
+// This function implements either IsSubstring() or IsNotSubstring(),
+// depending on the value of the expected_to_be_substring parameter.
+// StringType here can be const char*, const wchar_t*, ::std::string,
+// or ::std::wstring.
+template <typename StringType>
+AssertionResult IsSubstringImpl(
+    bool expected_to_be_substring,
+    const char* needle_expr, const char* haystack_expr,
+    const StringType& needle, const StringType& haystack) {
+  if (IsSubstringPred(needle, haystack) == expected_to_be_substring)
+    return AssertionSuccess();
+
+  const bool is_wide_string = sizeof(needle[0]) > 1;
+  const char* const begin_string_quote = is_wide_string ? "L\"" : "\"";
+  return AssertionFailure()
+      << "Value of: " << needle_expr << "\n"
+      << "  Actual: " << begin_string_quote << needle << "\"\n"
+      << "Expected: " << (expected_to_be_substring ? "" : "not ")
+      << "a substring of " << haystack_expr << "\n"
+      << "Which is: " << begin_string_quote << haystack << "\"";
+}
+
+}  // namespace
+
+// IsSubstring() and IsNotSubstring() check whether needle is a
+// substring of haystack (NULL is considered a substring of itself
+// only), and return an appropriate error message when they fail.
+
+AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const char* needle, const char* haystack) {
+  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const wchar_t* needle, const wchar_t* haystack) {
+  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const char* needle, const char* haystack) {
+  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const wchar_t* needle, const wchar_t* haystack) {
+  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::string& needle, const ::std::string& haystack) {
+  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::string& needle, const ::std::string& haystack) {
+  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);
+}
+
+#if GTEST_HAS_STD_WSTRING
+AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::wstring& needle, const ::std::wstring& haystack) {
+  return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack);
+}
+
+AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::wstring& needle, const ::std::wstring& haystack) {
+  return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack);
+}
+#endif  // GTEST_HAS_STD_WSTRING
+
+namespace internal {
+
+#if GTEST_OS_WINDOWS
+
+namespace {
+
+// Helper function for IsHRESULT{SuccessFailure} predicates
+AssertionResult HRESULTFailureHelper(const char* expr,
+                                     const char* expected,
+                                     long hr) {  // NOLINT
+# if GTEST_OS_WINDOWS_MOBILE
+
+  // Windows CE doesn't support FormatMessage.
+  const char error_text[] = "";
+
+# else
+
+  // Looks up the human-readable system message for the HRESULT code
+  // and since we're not passing any params to FormatMessage, we don't
+  // want inserts expanded.
+  const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM |
+                       FORMAT_MESSAGE_IGNORE_INSERTS;
+  const DWORD kBufSize = 4096;  // String::Format can't exceed this length.
+  // Gets the system's human readable message string for this HRESULT.
+  char error_text[kBufSize] = { '\0' };
+  DWORD message_length = ::FormatMessageA(kFlags,
+                                          0,  // no source, we're asking system
+                                          hr,  // the error
+                                          0,  // no line width restrictions
+                                          error_text,  // output buffer
+                                          kBufSize,  // buf size
+                                          NULL);  // no arguments for inserts
+  // Trims tailing white space (FormatMessage leaves a trailing cr-lf)
+  for (; message_length && IsSpace(error_text[message_length - 1]);
+          --message_length) {
+    error_text[message_length - 1] = '\0';
+  }
+
+# endif  // GTEST_OS_WINDOWS_MOBILE
+
+  const String error_hex(String::Format("0x%08X ", hr));
+  return ::testing::AssertionFailure()
+      << "Expected: " << expr << " " << expected << ".\n"
+      << "  Actual: " << error_hex << error_text << "\n";
+}
+
+}  // namespace
+
+AssertionResult IsHRESULTSuccess(const char* expr, long hr) {  // NOLINT
+  if (SUCCEEDED(hr)) {
+    return AssertionSuccess();
+  }
+  return HRESULTFailureHelper(expr, "succeeds", hr);
+}
+
+AssertionResult IsHRESULTFailure(const char* expr, long hr) {  // NOLINT
+  if (FAILED(hr)) {
+    return AssertionSuccess();
+  }
+  return HRESULTFailureHelper(expr, "fails", hr);
+}
+
+#endif  // GTEST_OS_WINDOWS
+
+// Utility functions for encoding Unicode text (wide strings) in
+// UTF-8.
+
+// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8
+// like this:
+//
+// Code-point length   Encoding
+//   0 -  7 bits       0xxxxxxx
+//   8 - 11 bits       110xxxxx 10xxxxxx
+//  12 - 16 bits       1110xxxx 10xxxxxx 10xxxxxx
+//  17 - 21 bits       11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
+
+// The maximum code-point a one-byte UTF-8 sequence can represent.
+const UInt32 kMaxCodePoint1 = (static_cast<UInt32>(1) <<  7) - 1;
+
+// The maximum code-point a two-byte UTF-8 sequence can represent.
+const UInt32 kMaxCodePoint2 = (static_cast<UInt32>(1) << (5 + 6)) - 1;
+
+// The maximum code-point a three-byte UTF-8 sequence can represent.
+const UInt32 kMaxCodePoint3 = (static_cast<UInt32>(1) << (4 + 2*6)) - 1;
+
+// The maximum code-point a four-byte UTF-8 sequence can represent.
+const UInt32 kMaxCodePoint4 = (static_cast<UInt32>(1) << (3 + 3*6)) - 1;
+
+// Chops off the n lowest bits from a bit pattern.  Returns the n
+// lowest bits.  As a side effect, the original bit pattern will be
+// shifted to the right by n bits.
+inline UInt32 ChopLowBits(UInt32* bits, int n) {
+  const UInt32 low_bits = *bits & ((static_cast<UInt32>(1) << n) - 1);
+  *bits >>= n;
+  return low_bits;
+}
+
+// Converts a Unicode code point to a narrow string in UTF-8 encoding.
+// code_point parameter is of type UInt32 because wchar_t may not be
+// wide enough to contain a code point.
+// The output buffer str must containt at least 32 characters.
+// The function returns the address of the output buffer.
+// If the code_point is not a valid Unicode code point
+// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output
+// as '(Invalid Unicode 0xXXXXXXXX)'.
+char* CodePointToUtf8(UInt32 code_point, char* str) {
+  if (code_point <= kMaxCodePoint1) {
+    str[1] = '\0';
+    str[0] = static_cast<char>(code_point);                          // 0xxxxxxx
+  } else if (code_point <= kMaxCodePoint2) {
+    str[2] = '\0';
+    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[0] = static_cast<char>(0xC0 | code_point);                   // 110xxxxx
+  } else if (code_point <= kMaxCodePoint3) {
+    str[3] = '\0';
+    str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[0] = static_cast<char>(0xE0 | code_point);                   // 1110xxxx
+  } else if (code_point <= kMaxCodePoint4) {
+    str[4] = '\0';
+    str[3] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[2] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[1] = static_cast<char>(0x80 | ChopLowBits(&code_point, 6));  // 10xxxxxx
+    str[0] = static_cast<char>(0xF0 | code_point);                   // 11110xxx
+  } else {
+    // The longest string String::Format can produce when invoked
+    // with these parameters is 28 character long (not including
+    // the terminating nul character). We are asking for 32 character
+    // buffer just in case. This is also enough for strncpy to
+    // null-terminate the destination string.
+    posix::StrNCpy(
+        str, String::Format("(Invalid Unicode 0x%X)", code_point).c_str(), 32);
+    str[31] = '\0';  // Makes sure no change in the format to strncpy leaves
+                     // the result unterminated.
+  }
+  return str;
+}
+
+// The following two functions only make sense if the the system
+// uses UTF-16 for wide string encoding. All supported systems
+// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16.
+
+// Determines if the arguments constitute UTF-16 surrogate pair
+// and thus should be combined into a single Unicode code point
+// using CreateCodePointFromUtf16SurrogatePair.
+inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) {
+  return sizeof(wchar_t) == 2 &&
+      (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00;
+}
+
+// Creates a Unicode code point from UTF16 surrogate pair.
+inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first,
+                                                    wchar_t second) {
+  const UInt32 mask = (1 << 10) - 1;
+  return (sizeof(wchar_t) == 2) ?
+      (((first & mask) << 10) | (second & mask)) + 0x10000 :
+      // This function should not be called when the condition is
+      // false, but we provide a sensible default in case it is.
+      static_cast<UInt32>(first);
+}
+
+// Converts a wide string to a narrow string in UTF-8 encoding.
+// The wide string is assumed to have the following encoding:
+//   UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS)
+//   UTF-32 if sizeof(wchar_t) == 4 (on Linux)
+// Parameter str points to a null-terminated wide string.
+// Parameter num_chars may additionally limit the number
+// of wchar_t characters processed. -1 is used when the entire string
+// should be processed.
+// If the string contains code points that are not valid Unicode code points
+// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output
+// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding
+// and contains invalid UTF-16 surrogate pairs, values in those pairs
+// will be encoded as individual Unicode characters from Basic Normal Plane.
+String WideStringToUtf8(const wchar_t* str, int num_chars) {
+  if (num_chars == -1)
+    num_chars = static_cast<int>(wcslen(str));
+
+  ::std::stringstream stream;
+  for (int i = 0; i < num_chars; ++i) {
+    UInt32 unicode_code_point;
+
+    if (str[i] == L'\0') {
+      break;
+    } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) {
+      unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i],
+                                                                 str[i + 1]);
+      i++;
+    } else {
+      unicode_code_point = static_cast<UInt32>(str[i]);
+    }
+
+    char buffer[32];  // CodePointToUtf8 requires a buffer this big.
+    stream << CodePointToUtf8(unicode_code_point, buffer);
+  }
+  return StringStreamToString(&stream);
+}
+
+// Converts a wide C string to a String using the UTF-8 encoding.
+// NULL will be converted to "(null)".
+String String::ShowWideCString(const wchar_t * wide_c_str) {
+  if (wide_c_str == NULL) return String("(null)");
+
+  return String(internal::WideStringToUtf8(wide_c_str, -1).c_str());
+}
+
+// Similar to ShowWideCString(), except that this function encloses
+// the converted string in double quotes.
+String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) {
+  if (wide_c_str == NULL) return String("(null)");
+
+  return String::Format("L\"%s\"",
+                        String::ShowWideCString(wide_c_str).c_str());
+}
+
+// Compares two wide C strings.  Returns true iff they have the same
+// content.
+//
+// Unlike wcscmp(), this function can handle NULL argument(s).  A NULL
+// C string is considered different to any non-NULL C string,
+// including the empty string.
+bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) {
+  if (lhs == NULL) return rhs == NULL;
+
+  if (rhs == NULL) return false;
+
+  return wcscmp(lhs, rhs) == 0;
+}
+
+// Helper function for *_STREQ on wide strings.
+AssertionResult CmpHelperSTREQ(const char* expected_expression,
+                               const char* actual_expression,
+                               const wchar_t* expected,
+                               const wchar_t* actual) {
+  if (String::WideCStringEquals(expected, actual)) {
+    return AssertionSuccess();
+  }
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   String::ShowWideCStringQuoted(expected),
+                   String::ShowWideCStringQuoted(actual),
+                   false);
+}
+
+// Helper function for *_STRNE on wide strings.
+AssertionResult CmpHelperSTRNE(const char* s1_expression,
+                               const char* s2_expression,
+                               const wchar_t* s1,
+                               const wchar_t* s2) {
+  if (!String::WideCStringEquals(s1, s2)) {
+    return AssertionSuccess();
+  }
+
+  return AssertionFailure() << "Expected: (" << s1_expression << ") != ("
+                            << s2_expression << "), actual: "
+                            << String::ShowWideCStringQuoted(s1)
+                            << " vs " << String::ShowWideCStringQuoted(s2);
+}
+
+// Compares two C strings, ignoring case.  Returns true iff they have
+// the same content.
+//
+// Unlike strcasecmp(), this function can handle NULL argument(s).  A
+// NULL C string is considered different to any non-NULL C string,
+// including the empty string.
+bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) {
+  if (lhs == NULL)
+    return rhs == NULL;
+  if (rhs == NULL)
+    return false;
+  return posix::StrCaseCmp(lhs, rhs) == 0;
+}
+
+  // Compares two wide C strings, ignoring case.  Returns true iff they
+  // have the same content.
+  //
+  // Unlike wcscasecmp(), this function can handle NULL argument(s).
+  // A NULL C string is considered different to any non-NULL wide C string,
+  // including the empty string.
+  // NB: The implementations on different platforms slightly differ.
+  // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
+  // environment variable. On GNU platform this method uses wcscasecmp
+  // which compares according to LC_CTYPE category of the current locale.
+  // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the
+  // current locale.
+bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
+                                              const wchar_t* rhs) {
+  if (lhs == NULL) return rhs == NULL;
+
+  if (rhs == NULL) return false;
+
+#if GTEST_OS_WINDOWS
+  return _wcsicmp(lhs, rhs) == 0;
+#elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID
+  return wcscasecmp(lhs, rhs) == 0;
+#else
+  // Android, Mac OS X and Cygwin don't define wcscasecmp.
+  // Other unknown OSes may not define it either.
+  wint_t left, right;
+  do {
+    left = towlower(*lhs++);
+    right = towlower(*rhs++);
+  } while (left && left == right);
+  return left == right;
+#endif  // OS selector
+}
+
+// Compares this with another String.
+// Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0
+// if this is greater than rhs.
+int String::Compare(const String & rhs) const {
+  const char* const lhs_c_str = c_str();
+  const char* const rhs_c_str = rhs.c_str();
+
+  if (lhs_c_str == NULL) {
+    return rhs_c_str == NULL ? 0 : -1;  // NULL < anything except NULL
+  } else if (rhs_c_str == NULL) {
+    return 1;
+  }
+
+  const size_t shorter_str_len =
+      length() <= rhs.length() ? length() : rhs.length();
+  for (size_t i = 0; i != shorter_str_len; i++) {
+    if (lhs_c_str[i] < rhs_c_str[i]) {
+      return -1;
+    } else if (lhs_c_str[i] > rhs_c_str[i]) {
+      return 1;
+    }
+  }
+  return (length() < rhs.length()) ? -1 :
+      (length() > rhs.length()) ? 1 : 0;
+}
+
+// Returns true iff this String ends with the given suffix.  *Any*
+// String is considered to end with a NULL or empty suffix.
+bool String::EndsWith(const char* suffix) const {
+  if (suffix == NULL || CStringEquals(suffix, "")) return true;
+
+  if (c_str() == NULL) return false;
+
+  const size_t this_len = strlen(c_str());
+  const size_t suffix_len = strlen(suffix);
+  return (this_len >= suffix_len) &&
+         CStringEquals(c_str() + this_len - suffix_len, suffix);
+}
+
+// Returns true iff this String ends with the given suffix, ignoring case.
+// Any String is considered to end with a NULL or empty suffix.
+bool String::EndsWithCaseInsensitive(const char* suffix) const {
+  if (suffix == NULL || CStringEquals(suffix, "")) return true;
+
+  if (c_str() == NULL) return false;
+
+  const size_t this_len = strlen(c_str());
+  const size_t suffix_len = strlen(suffix);
+  return (this_len >= suffix_len) &&
+         CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);
+}
+
+// Formats a list of arguments to a String, using the same format
+// spec string as for printf.
+//
+// We do not use the StringPrintf class as it is not universally
+// available.
+//
+// The result is limited to 4096 characters (including the tailing 0).
+// If 4096 characters are not enough to format the input, or if
+// there's an error, "<formatting error or buffer exceeded>" is
+// returned.
+String String::Format(const char * format, ...) {
+  va_list args;
+  va_start(args, format);
+
+  char buffer[4096];
+  const int kBufferSize = sizeof(buffer)/sizeof(buffer[0]);
+
+  // MSVC 8 deprecates vsnprintf(), so we want to suppress warning
+  // 4996 (deprecated function) there.
+#ifdef _MSC_VER  // We are using MSVC.
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4996)  // Temporarily disables warning 4996.
+
+  const int size = vsnprintf(buffer, kBufferSize, format, args);
+
+# pragma warning(pop)           // Restores the warning state.
+#else  // We are not using MSVC.
+  const int size = vsnprintf(buffer, kBufferSize, format, args);
+#endif  // _MSC_VER
+  va_end(args);
+
+  // vsnprintf()'s behavior is not portable.  When the buffer is not
+  // big enough, it returns a negative value in MSVC, and returns the
+  // needed buffer size on Linux.  When there is an output error, it
+  // always returns a negative value.  For simplicity, we lump the two
+  // error cases together.
+  if (size < 0 || size >= kBufferSize) {
+    return String("<formatting error or buffer exceeded>");
+  } else {
+    return String(buffer, size);
+  }
+}
+
+// Converts the buffer in a stringstream to a String, converting NUL
+// bytes to "\\0" along the way.
+String StringStreamToString(::std::stringstream* ss) {
+  const ::std::string& str = ss->str();
+  const char* const start = str.c_str();
+  const char* const end = start + str.length();
+
+  // We need to use a helper stringstream to do this transformation
+  // because String doesn't support push_back().
+  ::std::stringstream helper;
+  for (const char* ch = start; ch != end; ++ch) {
+    if (*ch == '\0') {
+      helper << "\\0";  // Replaces NUL with "\\0";
+    } else {
+      helper.put(*ch);
+    }
+  }
+
+  return String(helper.str().c_str());
+}
+
+// Appends the user-supplied message to the Google-Test-generated message.
+String AppendUserMessage(const String& gtest_msg,
+                         const Message& user_msg) {
+  // Appends the user message if it's non-empty.
+  const String user_msg_string = user_msg.GetString();
+  if (user_msg_string.empty()) {
+    return gtest_msg;
+  }
+
+  Message msg;
+  msg << gtest_msg << "\n" << user_msg_string;
+
+  return msg.GetString();
+}
+
+}  // namespace internal
+
+// class TestResult
+
+// Creates an empty TestResult.
+TestResult::TestResult()
+    : death_test_count_(0),
+      elapsed_time_(0) {
+}
+
+// D'tor.
+TestResult::~TestResult() {
+}
+
+// Returns the i-th test part result among all the results. i can
+// range from 0 to total_part_count() - 1. If i is not in that range,
+// aborts the program.
+const TestPartResult& TestResult::GetTestPartResult(int i) const {
+  if (i < 0 || i >= total_part_count())
+    internal::posix::Abort();
+  return test_part_results_.at(i);
+}
+
+// Returns the i-th test property. i can range from 0 to
+// test_property_count() - 1. If i is not in that range, aborts the
+// program.
+const TestProperty& TestResult::GetTestProperty(int i) const {
+  if (i < 0 || i >= test_property_count())
+    internal::posix::Abort();
+  return test_properties_.at(i);
+}
+
+// Clears the test part results.
+void TestResult::ClearTestPartResults() {
+  test_part_results_.clear();
+}
+
+// Adds a test part result to the list.
+void TestResult::AddTestPartResult(const TestPartResult& test_part_result) {
+  test_part_results_.push_back(test_part_result);
+}
+
+// Adds a test property to the list. If a property with the same key as the
+// supplied property is already represented, the value of this test_property
+// replaces the old value for that key.
+void TestResult::RecordProperty(const TestProperty& test_property) {
+  if (!ValidateTestProperty(test_property)) {
+    return;
+  }
+  internal::MutexLock lock(&test_properites_mutex_);
+  const std::vector<TestProperty>::iterator property_with_matching_key =
+      std::find_if(test_properties_.begin(), test_properties_.end(),
+                   internal::TestPropertyKeyIs(test_property.key()));
+  if (property_with_matching_key == test_properties_.end()) {
+    test_properties_.push_back(test_property);
+    return;
+  }
+  property_with_matching_key->SetValue(test_property.value());
+}
+
+// Adds a failure if the key is a reserved attribute of Google Test
+// testcase tags.  Returns true if the property is valid.
+bool TestResult::ValidateTestProperty(const TestProperty& test_property) {
+  internal::String key(test_property.key());
+  if (key == "name" || key == "status" || key == "time" || key == "classname") {
+    ADD_FAILURE()
+        << "Reserved key used in RecordProperty(): "
+        << key
+        << " ('name', 'status', 'time', and 'classname' are reserved by "
+        << GTEST_NAME_ << ")";
+    return false;
+  }
+  return true;
+}
+
+// Clears the object.
+void TestResult::Clear() {
+  test_part_results_.clear();
+  test_properties_.clear();
+  death_test_count_ = 0;
+  elapsed_time_ = 0;
+}
+
+// Returns true iff the test failed.
+bool TestResult::Failed() const {
+  for (int i = 0; i < total_part_count(); ++i) {
+    if (GetTestPartResult(i).failed())
+      return true;
+  }
+  return false;
+}
+
+// Returns true iff the test part fatally failed.
+static bool TestPartFatallyFailed(const TestPartResult& result) {
+  return result.fatally_failed();
+}
+
+// Returns true iff the test fatally failed.
+bool TestResult::HasFatalFailure() const {
+  return CountIf(test_part_results_, TestPartFatallyFailed) > 0;
+}
+
+// Returns true iff the test part non-fatally failed.
+static bool TestPartNonfatallyFailed(const TestPartResult& result) {
+  return result.nonfatally_failed();
+}
+
+// Returns true iff the test has a non-fatal failure.
+bool TestResult::HasNonfatalFailure() const {
+  return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0;
+}
+
+// Gets the number of all test parts.  This is the sum of the number
+// of successful test parts and the number of failed test parts.
+int TestResult::total_part_count() const {
+  return static_cast<int>(test_part_results_.size());
+}
+
+// Returns the number of the test properties.
+int TestResult::test_property_count() const {
+  return static_cast<int>(test_properties_.size());
+}
+
+// class Test
+
+// Creates a Test object.
+
+// The c'tor saves the values of all Google Test flags.
+Test::Test()
+    : gtest_flag_saver_(new internal::GTestFlagSaver) {
+}
+
+// The d'tor restores the values of all Google Test flags.
+Test::~Test() {
+  delete gtest_flag_saver_;
+}
+
+// Sets up the test fixture.
+//
+// A sub-class may override this.
+void Test::SetUp() {
+}
+
+// Tears down the test fixture.
+//
+// A sub-class may override this.
+void Test::TearDown() {
+}
+
+// Allows user supplied key value pairs to be recorded for later output.
+void Test::RecordProperty(const char* key, const char* value) {
+  UnitTest::GetInstance()->RecordPropertyForCurrentTest(key, value);
+}
+
+// Allows user supplied key value pairs to be recorded for later output.
+void Test::RecordProperty(const char* key, int value) {
+  Message value_message;
+  value_message << value;
+  RecordProperty(key, value_message.GetString().c_str());
+}
+
+namespace internal {
+
+void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
+                                    const String& message) {
+  // This function is a friend of UnitTest and as such has access to
+  // AddTestPartResult.
+  UnitTest::GetInstance()->AddTestPartResult(
+      result_type,
+      NULL,  // No info about the source file where the exception occurred.
+      -1,    // We have no info on which line caused the exception.
+      message,
+      String());  // No stack trace, either.
+}
+
+}  // namespace internal
+
+// Google Test requires all tests in the same test case to use the same test
+// fixture class.  This function checks if the current test has the
+// same fixture class as the first test in the current test case.  If
+// yes, it returns true; otherwise it generates a Google Test failure and
+// returns false.
+bool Test::HasSameFixtureClass() {
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  const TestCase* const test_case = impl->current_test_case();
+
+  // Info about the first test in the current test case.
+  const TestInfo* const first_test_info = test_case->test_info_list()[0];
+  const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_;
+  const char* const first_test_name = first_test_info->name();
+
+  // Info about the current test.
+  const TestInfo* const this_test_info = impl->current_test_info();
+  const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_;
+  const char* const this_test_name = this_test_info->name();
+
+  if (this_fixture_id != first_fixture_id) {
+    // Is the first test defined using TEST?
+    const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId();
+    // Is this test defined using TEST?
+    const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId();
+
+    if (first_is_TEST || this_is_TEST) {
+      // The user mixed TEST and TEST_F in this test case - we'll tell
+      // him/her how to fix it.
+
+      // Gets the name of the TEST and the name of the TEST_F.  Note
+      // that first_is_TEST and this_is_TEST cannot both be true, as
+      // the fixture IDs are different for the two tests.
+      const char* const TEST_name =
+          first_is_TEST ? first_test_name : this_test_name;
+      const char* const TEST_F_name =
+          first_is_TEST ? this_test_name : first_test_name;
+
+      ADD_FAILURE()
+          << "All tests in the same test case must use the same test fixture\n"
+          << "class, so mixing TEST_F and TEST in the same test case is\n"
+          << "illegal.  In test case " << this_test_info->test_case_name()
+          << ",\n"
+          << "test " << TEST_F_name << " is defined using TEST_F but\n"
+          << "test " << TEST_name << " is defined using TEST.  You probably\n"
+          << "want to change the TEST to TEST_F or move it to another test\n"
+          << "case.";
+    } else {
+      // The user defined two fixture classes with the same name in
+      // two namespaces - we'll tell him/her how to fix it.
+      ADD_FAILURE()
+          << "All tests in the same test case must use the same test fixture\n"
+          << "class.  However, in test case "
+          << this_test_info->test_case_name() << ",\n"
+          << "you defined test " << first_test_name
+          << " and test " << this_test_name << "\n"
+          << "using two different test fixture classes.  This can happen if\n"
+          << "the two classes are from different namespaces or translation\n"
+          << "units and have the same name.  You should probably rename one\n"
+          << "of the classes to put the tests into different test cases.";
+    }
+    return false;
+  }
+
+  return true;
+}
+
+#if GTEST_HAS_SEH
+
+// Adds an "exception thrown" fatal failure to the current test.  This
+// function returns its result via an output parameter pointer because VC++
+// prohibits creation of objects with destructors on stack in functions
+// using __try (see error C2712).
+static internal::String* FormatSehExceptionMessage(DWORD exception_code,
+                                                   const char* location) {
+  Message message;
+  message << "SEH exception with code 0x" << std::setbase(16) <<
+    exception_code << std::setbase(10) << " thrown in " << location << ".";
+
+  return new internal::String(message.GetString());
+}
+
+#endif  // GTEST_HAS_SEH
+
+#if GTEST_HAS_EXCEPTIONS
+
+// Adds an "exception thrown" fatal failure to the current test.
+static internal::String FormatCxxExceptionMessage(const char* description,
+                                                  const char* location) {
+  Message message;
+  if (description != NULL) {
+    message << "C++ exception with description \"" << description << "\"";
+  } else {
+    message << "Unknown C++ exception";
+  }
+  message << " thrown in " << location << ".";
+
+  return message.GetString();
+}
+
+static internal::String PrintTestPartResultToString(
+    const TestPartResult& test_part_result);
+
+// A failed Google Test assertion will throw an exception of this type when
+// GTEST_FLAG(throw_on_failure) is true (if exceptions are enabled).  We
+// derive it from std::runtime_error, which is for errors presumably
+// detectable only at run time.  Since std::runtime_error inherits from
+// std::exception, many testing frameworks know how to extract and print the
+// message inside it.
+class GoogleTestFailureException : public ::std::runtime_error {
+ public:
+  explicit GoogleTestFailureException(const TestPartResult& failure)
+      : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {}
+};
+#endif  // GTEST_HAS_EXCEPTIONS
+
+namespace internal {
+// We put these helper functions in the internal namespace as IBM's xlC
+// compiler rejects the code if they were declared static.
+
+// Runs the given method and handles SEH exceptions it throws, when
+// SEH is supported; returns the 0-value for type Result in case of an
+// SEH exception.  (Microsoft compilers cannot handle SEH and C++
+// exceptions in the same function.  Therefore, we provide a separate
+// wrapper function for handling SEH exceptions.)
+template <class T, typename Result>
+Result HandleSehExceptionsInMethodIfSupported(
+    T* object, Result (T::*method)(), const char* location) {
+#if GTEST_HAS_SEH
+  __try {
+    return (object->*method)();
+  } __except (internal::UnitTestOptions::GTestShouldProcessSEH(  // NOLINT
+      GetExceptionCode())) {
+    // We create the exception message on the heap because VC++ prohibits
+    // creation of objects with destructors on stack in functions using __try
+    // (see error C2712).
+    internal::String* exception_message = FormatSehExceptionMessage(
+        GetExceptionCode(), location);
+    internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure,
+                                             *exception_message);
+    delete exception_message;
+    return static_cast<Result>(0);
+  }
+#else
+  (void)location;
+  return (object->*method)();
+#endif  // GTEST_HAS_SEH
+}
+
+// Runs the given method and catches and reports C++ and/or SEH-style
+// exceptions, if they are supported; returns the 0-value for type
+// Result in case of an SEH exception.
+template <class T, typename Result>
+Result HandleExceptionsInMethodIfSupported(
+    T* object, Result (T::*method)(), const char* location) {
+  // NOTE: The user code can affect the way in which Google Test handles
+  // exceptions by setting GTEST_FLAG(catch_exceptions), but only before
+  // RUN_ALL_TESTS() starts. It is technically possible to check the flag
+  // after the exception is caught and either report or re-throw the
+  // exception based on the flag's value:
+  //
+  // try {
+  //   // Perform the test method.
+  // } catch (...) {
+  //   if (GTEST_FLAG(catch_exceptions))
+  //     // Report the exception as failure.
+  //   else
+  //     throw;  // Re-throws the original exception.
+  // }
+  //
+  // However, the purpose of this flag is to allow the program to drop into
+  // the debugger when the exception is thrown. On most platforms, once the
+  // control enters the catch block, the exception origin information is
+  // lost and the debugger will stop the program at the point of the
+  // re-throw in this function -- instead of at the point of the original
+  // throw statement in the code under test.  For this reason, we perform
+  // the check early, sacrificing the ability to affect Google Test's
+  // exception handling in the method where the exception is thrown.
+  if (internal::GetUnitTestImpl()->catch_exceptions()) {
+#if GTEST_HAS_EXCEPTIONS
+    try {
+      return HandleSehExceptionsInMethodIfSupported(object, method, location);
+    } catch (const GoogleTestFailureException&) {  // NOLINT
+      // This exception doesn't originate in code under test. It makes no
+      // sense to report it as a test failure.
+      throw;
+    } catch (const std::exception& e) {  // NOLINT
+      internal::ReportFailureInUnknownLocation(
+          TestPartResult::kFatalFailure,
+          FormatCxxExceptionMessage(e.what(), location));
+    } catch (...) {  // NOLINT
+      internal::ReportFailureInUnknownLocation(
+          TestPartResult::kFatalFailure,
+          FormatCxxExceptionMessage(NULL, location));
+    }
+    return static_cast<Result>(0);
+#else
+    return HandleSehExceptionsInMethodIfSupported(object, method, location);
+#endif  // GTEST_HAS_EXCEPTIONS
+  } else {
+    return (object->*method)();
+  }
+}
+
+}  // namespace internal
+
+// Runs the test and updates the test result.
+void Test::Run() {
+  if (!HasSameFixtureClass()) return;
+
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+  internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()");
+  // We will run the test only if SetUp() was successful.
+  if (!HasFatalFailure()) {
+    impl->os_stack_trace_getter()->UponLeavingGTest();
+    internal::HandleExceptionsInMethodIfSupported(
+        this, &Test::TestBody, "the test body");
+  }
+
+  // However, we want to clean up as much as possible.  Hence we will
+  // always call TearDown(), even if SetUp() or the test body has
+  // failed.
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+  internal::HandleExceptionsInMethodIfSupported(
+      this, &Test::TearDown, "TearDown()");
+}
+
+// Returns true iff the current test has a fatal failure.
+bool Test::HasFatalFailure() {
+  return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure();
+}
+
+// Returns true iff the current test has a non-fatal failure.
+bool Test::HasNonfatalFailure() {
+  return internal::GetUnitTestImpl()->current_test_result()->
+      HasNonfatalFailure();
+}
+
+// class TestInfo
+
+// Constructs a TestInfo object. It assumes ownership of the test factory
+// object.
+// TODO(vladl@google.com): Make a_test_case_name and a_name const string&'s
+// to signify they cannot be NULLs.
+TestInfo::TestInfo(const char* a_test_case_name,
+                   const char* a_name,
+                   const char* a_type_param,
+                   const char* a_value_param,
+                   internal::TypeId fixture_class_id,
+                   internal::TestFactoryBase* factory)
+    : test_case_name_(a_test_case_name),
+      name_(a_name),
+      type_param_(a_type_param ? new std::string(a_type_param) : NULL),
+      value_param_(a_value_param ? new std::string(a_value_param) : NULL),
+      fixture_class_id_(fixture_class_id),
+      should_run_(false),
+      is_disabled_(false),
+      matches_filter_(false),
+      factory_(factory),
+      result_() {}
+
+// Destructs a TestInfo object.
+TestInfo::~TestInfo() { delete factory_; }
+
+namespace internal {
+
+// Creates a new TestInfo object and registers it with Google Test;
+// returns the created object.
+//
+// Arguments:
+//
+//   test_case_name:   name of the test case
+//   name:             name of the test
+//   type_param:       the name of the test's type parameter, or NULL if
+//                     this is not a typed or a type-parameterized test.
+//   value_param:      text representation of the test's value parameter,
+//                     or NULL if this is not a value-parameterized test.
+//   fixture_class_id: ID of the test fixture class
+//   set_up_tc:        pointer to the function that sets up the test case
+//   tear_down_tc:     pointer to the function that tears down the test case
+//   factory:          pointer to the factory that creates a test object.
+//                     The newly created TestInfo instance will assume
+//                     ownership of the factory object.
+TestInfo* MakeAndRegisterTestInfo(
+    const char* test_case_name, const char* name,
+    const char* type_param,
+    const char* value_param,
+    TypeId fixture_class_id,
+    SetUpTestCaseFunc set_up_tc,
+    TearDownTestCaseFunc tear_down_tc,
+    TestFactoryBase* factory) {
+  TestInfo* const test_info =
+      new TestInfo(test_case_name, name, type_param, value_param,
+                   fixture_class_id, factory);
+  GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
+  return test_info;
+}
+
+#if GTEST_HAS_PARAM_TEST
+void ReportInvalidTestCaseType(const char* test_case_name,
+                               const char* file, int line) {
+  Message errors;
+  errors
+      << "Attempted redefinition of test case " << test_case_name << ".\n"
+      << "All tests in the same test case must use the same test fixture\n"
+      << "class.  However, in test case " << test_case_name << ", you tried\n"
+      << "to define a test using a fixture class different from the one\n"
+      << "used earlier. This can happen if the two fixture classes are\n"
+      << "from different namespaces and have the same name. You should\n"
+      << "probably rename one of the classes to put the tests into different\n"
+      << "test cases.";
+
+  fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
+          errors.GetString().c_str());
+}
+#endif  // GTEST_HAS_PARAM_TEST
+
+}  // namespace internal
+
+namespace {
+
+// A predicate that checks the test name of a TestInfo against a known
+// value.
+//
+// This is used for implementation of the TestCase class only.  We put
+// it in the anonymous namespace to prevent polluting the outer
+// namespace.
+//
+// TestNameIs is copyable.
+class TestNameIs {
+ public:
+  // Constructor.
+  //
+  // TestNameIs has NO default constructor.
+  explicit TestNameIs(const char* name)
+      : name_(name) {}
+
+  // Returns true iff the test name of test_info matches name_.
+  bool operator()(const TestInfo * test_info) const {
+    return test_info && internal::String(test_info->name()).Compare(name_) == 0;
+  }
+
+ private:
+  internal::String name_;
+};
+
+}  // namespace
+
+namespace internal {
+
+// This method expands all parameterized tests registered with macros TEST_P
+// and INSTANTIATE_TEST_CASE_P into regular tests and registers those.
+// This will be done just once during the program runtime.
+void UnitTestImpl::RegisterParameterizedTests() {
+#if GTEST_HAS_PARAM_TEST
+  if (!parameterized_tests_registered_) {
+    parameterized_test_registry_.RegisterTests();
+    parameterized_tests_registered_ = true;
+  }
+#endif
+}
+
+}  // namespace internal
+
+// Creates the test object, runs it, records its result, and then
+// deletes it.
+void TestInfo::Run() {
+  if (!should_run_) return;
+
+  // Tells UnitTest where to store test result.
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  impl->set_current_test_info(this);
+
+  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();
+
+  // Notifies the unit test event listeners that a test is about to start.
+  repeater->OnTestStart(*this);
+
+  const TimeInMillis start = internal::GetTimeInMillis();
+
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+
+  // Creates the test object.
+  Test* const test = internal::HandleExceptionsInMethodIfSupported(
+      factory_, &internal::TestFactoryBase::CreateTest,
+      "the test fixture's constructor");
+
+  // Runs the test only if the test object was created and its
+  // constructor didn't generate a fatal failure.
+  if ((test != NULL) && !Test::HasFatalFailure()) {
+    // This doesn't throw as all user code that can throw are wrapped into
+    // exception handling code.
+    test->Run();
+  }
+
+  // Deletes the test object.
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+  internal::HandleExceptionsInMethodIfSupported(
+      test, &Test::DeleteSelf_, "the test fixture's destructor");
+
+  result_.set_elapsed_time(internal::GetTimeInMillis() - start);
+
+  // Notifies the unit test event listener that a test has just finished.
+  repeater->OnTestEnd(*this);
+
+  // Tells UnitTest to stop associating assertion results to this
+  // test.
+  impl->set_current_test_info(NULL);
+}
+
+// class TestCase
+
+// Gets the number of successful tests in this test case.
+int TestCase::successful_test_count() const {
+  return CountIf(test_info_list_, TestPassed);
+}
+
+// Gets the number of failed tests in this test case.
+int TestCase::failed_test_count() const {
+  return CountIf(test_info_list_, TestFailed);
+}
+
+int TestCase::disabled_test_count() const {
+  return CountIf(test_info_list_, TestDisabled);
+}
+
+// Get the number of tests in this test case that should run.
+int TestCase::test_to_run_count() const {
+  return CountIf(test_info_list_, ShouldRunTest);
+}
+
+// Gets the number of all tests.
+int TestCase::total_test_count() const {
+  return static_cast<int>(test_info_list_.size());
+}
+
+// Creates a TestCase with the given name.
+//
+// Arguments:
+//
+//   name:         name of the test case
+//   a_type_param: the name of the test case's type parameter, or NULL if
+//                 this is not a typed or a type-parameterized test case.
+//   set_up_tc:    pointer to the function that sets up the test case
+//   tear_down_tc: pointer to the function that tears down the test case
+TestCase::TestCase(const char* a_name, const char* a_type_param,
+                   Test::SetUpTestCaseFunc set_up_tc,
+                   Test::TearDownTestCaseFunc tear_down_tc)
+    : name_(a_name),
+      type_param_(a_type_param ? new std::string(a_type_param) : NULL),
+      set_up_tc_(set_up_tc),
+      tear_down_tc_(tear_down_tc),
+      should_run_(false),
+      elapsed_time_(0) {
+}
+
+// Destructor of TestCase.
+TestCase::~TestCase() {
+  // Deletes every Test in the collection.
+  ForEach(test_info_list_, internal::Delete<TestInfo>);
+}
+
+// Returns the i-th test among all the tests. i can range from 0 to
+// total_test_count() - 1. If i is not in that range, returns NULL.
+const TestInfo* TestCase::GetTestInfo(int i) const {
+  const int index = GetElementOr(test_indices_, i, -1);
+  return index < 0 ? NULL : test_info_list_[index];
+}
+
+// Returns the i-th test among all the tests. i can range from 0 to
+// total_test_count() - 1. If i is not in that range, returns NULL.
+TestInfo* TestCase::GetMutableTestInfo(int i) {
+  const int index = GetElementOr(test_indices_, i, -1);
+  return index < 0 ? NULL : test_info_list_[index];
+}
+
+// Adds a test to this test case.  Will delete the test upon
+// destruction of the TestCase object.
+void TestCase::AddTestInfo(TestInfo * test_info) {
+  test_info_list_.push_back(test_info);
+  test_indices_.push_back(static_cast<int>(test_indices_.size()));
+}
+
+// Runs every test in this TestCase.
+void TestCase::Run() {
+  if (!should_run_) return;
+
+  internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
+  impl->set_current_test_case(this);
+
+  TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater();
+
+  repeater->OnTestCaseStart(*this);
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+  internal::HandleExceptionsInMethodIfSupported(
+      this, &TestCase::RunSetUpTestCase, "SetUpTestCase()");
+
+  const internal::TimeInMillis start = internal::GetTimeInMillis();
+  for (int i = 0; i < total_test_count(); i++) {
+    GetMutableTestInfo(i)->Run();
+  }
+  elapsed_time_ = internal::GetTimeInMillis() - start;
+
+  impl->os_stack_trace_getter()->UponLeavingGTest();
+  internal::HandleExceptionsInMethodIfSupported(
+      this, &TestCase::RunTearDownTestCase, "TearDownTestCase()");
+
+  repeater->OnTestCaseEnd(*this);
+  impl->set_current_test_case(NULL);
+}
+
+// Clears the results of all tests in this test case.
+void TestCase::ClearResult() {
+  ForEach(test_info_list_, TestInfo::ClearTestResult);
+}
+
+// Shuffles the tests in this test case.
+void TestCase::ShuffleTests(internal::Random* random) {
+  Shuffle(random, &test_indices_);
+}
+
+// Restores the test order to before the first shuffle.
+void TestCase::UnshuffleTests() {
+  for (size_t i = 0; i < test_indices_.size(); i++) {
+    test_indices_[i] = static_cast<int>(i);
+  }
+}
+
+// Formats a countable noun.  Depending on its quantity, either the
+// singular form or the plural form is used. e.g.
+//
+// FormatCountableNoun(1, "formula", "formuli") returns "1 formula".
+// FormatCountableNoun(5, "book", "books") returns "5 books".
+static internal::String FormatCountableNoun(int count,
+                                            const char * singular_form,
+                                            const char * plural_form) {
+  return internal::String::Format("%d %s", count,
+                                  count == 1 ? singular_form : plural_form);
+}
+
+// Formats the count of tests.
+static internal::String FormatTestCount(int test_count) {
+  return FormatCountableNoun(test_count, "test", "tests");
+}
+
+// Formats the count of test cases.
+static internal::String FormatTestCaseCount(int test_case_count) {
+  return FormatCountableNoun(test_case_count, "test case", "test cases");
+}
+
+// Converts a TestPartResult::Type enum to human-friendly string
+// representation.  Both kNonFatalFailure and kFatalFailure are translated
+// to "Failure", as the user usually doesn't care about the difference
+// between the two when viewing the test result.
+static const char * TestPartResultTypeToString(TestPartResult::Type type) {
+  switch (type) {
+    case TestPartResult::kSuccess:
+      return "Success";
+
+    case TestPartResult::kNonFatalFailure:
+    case TestPartResult::kFatalFailure:
+#ifdef _MSC_VER
+      return "error: ";
+#else
+      return "Failure\n";
+#endif
+    default:
+      return "Unknown result type";
+  }
+}
+
+// Prints a TestPartResult to a String.
+static internal::String PrintTestPartResultToString(
+    const TestPartResult& test_part_result) {
+  return (Message()
+          << internal::FormatFileLocation(test_part_result.file_name(),
+                                          test_part_result.line_number())
+          << " " << TestPartResultTypeToString(test_part_result.type())
+          << test_part_result.message()).GetString();
+}
+
+// Prints a TestPartResult.
+static void PrintTestPartResult(const TestPartResult& test_part_result) {
+  const internal::String& result =
+      PrintTestPartResultToString(test_part_result);
+  printf("%s\n", result.c_str());
+  fflush(stdout);
+  // If the test program runs in Visual Studio or a debugger, the
+  // following statements add the test part result message to the Output
+  // window such that the user can double-click on it to jump to the
+  // corresponding source code location; otherwise they do nothing.
+#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE
+  // We don't call OutputDebugString*() on Windows Mobile, as printing
+  // to stdout is done by OutputDebugString() there already - we don't
+  // want the same message printed twice.
+  ::OutputDebugStringA(result.c_str());
+  ::OutputDebugStringA("\n");
+#endif
+}
+
+// class PrettyUnitTestResultPrinter
+
+namespace internal {
+
+enum GTestColor {
+  COLOR_DEFAULT,
+  COLOR_RED,
+  COLOR_GREEN,
+  COLOR_YELLOW
+};
+
+#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE
+
+// Returns the character attribute for the given color.
+WORD GetColorAttribute(GTestColor color) {
+  switch (color) {
+    case COLOR_RED:    return FOREGROUND_RED;
+    case COLOR_GREEN:  return FOREGROUND_GREEN;
+    case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN;
+    default:           return 0;
+  }
+}
+
+#else
+
+// Returns the ANSI color code for the given color.  COLOR_DEFAULT is
+// an invalid input.
+const char* GetAnsiColorCode(GTestColor color) {
+  switch (color) {
+    case COLOR_RED:     return "1";
+    case COLOR_GREEN:   return "2";
+    case COLOR_YELLOW:  return "3";
+    default:            return NULL;
+  };
+}
+
+#endif  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE
+
+// Returns true iff Google Test should use colors in the output.
+bool ShouldUseColor(bool stdout_is_tty) {
+  const char* const gtest_color = GTEST_FLAG(color).c_str();
+
+  if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) {
+#if GTEST_OS_WINDOWS
+    // On Windows the TERM variable is usually not set, but the
+    // console there does support colors.
+    return stdout_is_tty;
+#else
+    // On non-Windows platforms, we rely on the TERM variable.
+    const char* const term = posix::GetEnv("TERM");
+    const bool term_supports_color =
+        String::CStringEquals(term, "xterm") ||
+        String::CStringEquals(term, "xterm-color") ||
+        String::CStringEquals(term, "xterm-256color") ||
+        String::CStringEquals(term, "screen") ||
+        String::CStringEquals(term, "linux") ||
+        String::CStringEquals(term, "cygwin");
+    return stdout_is_tty && term_supports_color;
+#endif  // GTEST_OS_WINDOWS
+  }
+
+  return String::CaseInsensitiveCStringEquals(gtest_color, "yes") ||
+      String::CaseInsensitiveCStringEquals(gtest_color, "true") ||
+      String::CaseInsensitiveCStringEquals(gtest_color, "t") ||
+      String::CStringEquals(gtest_color, "1");
+  // We take "yes", "true", "t", and "1" as meaning "yes".  If the
+  // value is neither one of these nor "auto", we treat it as "no" to
+  // be conservative.
+}
+
+// Helpers for printing colored strings to stdout. Note that on Windows, we
+// cannot simply emit special characters and have the terminal change colors.
+// This routine must actually emit the characters rather than return a string
+// that would be colored when printed, as can be done on Linux.
+void ColoredPrintf(GTestColor color, const char* fmt, ...) {
+  va_list args;
+  va_start(args, fmt);
+
+#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS
+  const bool use_color = false;
+#else
+  static const bool in_color_mode =
+      ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0);
+  const bool use_color = in_color_mode && (color != COLOR_DEFAULT);
+#endif  // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS
+  // The '!= 0' comparison is necessary to satisfy MSVC 7.1.
+
+  if (!use_color) {
+    vprintf(fmt, args);
+    va_end(args);
+    return;
+  }
+
+#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE
+  const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE);
+
+  // Gets the current text color.
+  CONSOLE_SCREEN_BUFFER_INFO buffer_info;
+  GetConsoleScreenBufferInfo(stdout_handle, &buffer_info);
+  const WORD old_color_attrs = buffer_info.wAttributes;
+
+  // We need to flush the stream buffers into the console before each
+  // SetConsoleTextAttribute call lest it affect the text that is already
+  // printed but has not yet reached the console.
+  fflush(stdout);
+  SetConsoleTextAttribute(stdout_handle,
+                          GetColorAttribute(color) | FOREGROUND_INTENSITY);
+  vprintf(fmt, args);
+
+  fflush(stdout);
+  // Restores the text color.
+  SetConsoleTextAttribute(stdout_handle, old_color_attrs);
+#else
+  printf("\033[0;3%sm", GetAnsiColorCode(color));
+  vprintf(fmt, args);
+  printf("\033[m");  // Resets the terminal to default.
+#endif  // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE
+  va_end(args);
+}
+
+void PrintFullTestCommentIfPresent(const TestInfo& test_info) {
+  const char* const type_param = test_info.type_param();
+  const char* const value_param = test_info.value_param();
+
+  if (type_param != NULL || value_param != NULL) {
+    printf(", where ");
+    if (type_param != NULL) {
+      printf("TypeParam = %s", type_param);
+      if (value_param != NULL)
+        printf(" and ");
+    }
+    if (value_param != NULL) {
+      printf("GetParam() = %s", value_param);
+    }
+  }
+}
+
+// This class implements the TestEventListener interface.
+//
+// Class PrettyUnitTestResultPrinter is copyable.
+class PrettyUnitTestResultPrinter : public TestEventListener {
+ public:
+  PrettyUnitTestResultPrinter() {}
+  static void PrintTestName(const char * test_case, const char * test) {
+    printf("%s.%s", test_case, test);
+  }
+
+  // The following methods override what's in the TestEventListener class.
+  virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration);
+  virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test);
+  virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestCaseStart(const TestCase& test_case);
+  virtual void OnTestStart(const TestInfo& test_info);
+  virtual void OnTestPartResult(const TestPartResult& result);
+  virtual void OnTestEnd(const TestInfo& test_info);
+  virtual void OnTestCaseEnd(const TestCase& test_case);
+  virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test);
+  virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration);
+  virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {}
+
+ private:
+  static void PrintFailedTests(const UnitTest& unit_test);
+
+  internal::String test_case_name_;
+};
+
+  // Fired before each iteration of tests starts.
+void PrettyUnitTestResultPrinter::OnTestIterationStart(
+    const UnitTest& unit_test, int iteration) {
+  if (GTEST_FLAG(repeat) != 1)
+    printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1);
+
+  const char* const filter = GTEST_FLAG(filter).c_str();
+
+  // Prints the filter if it's not *.  This reminds the user that some
+  // tests may be skipped.
+  if (!internal::String::CStringEquals(filter, kUniversalFilter)) {
+    ColoredPrintf(COLOR_YELLOW,
+                  "Note: %s filter = %s\n", GTEST_NAME_, filter);
+  }
+
+  if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) {
+    const Int32 shard_index = Int32FromEnvOrDie(kTestShardIndex, -1);
+    ColoredPrintf(COLOR_YELLOW,
+                  "Note: This is test shard %d of %s.\n",
+                  static_cast<int>(shard_index) + 1,
+                  internal::posix::GetEnv(kTestTotalShards));
+  }
+
+  if (GTEST_FLAG(shuffle)) {
+    ColoredPrintf(COLOR_YELLOW,
+                  "Note: Randomizing tests' orders with a seed of %d .\n",
+                  unit_test.random_seed());
+  }
+
+  ColoredPrintf(COLOR_GREEN,  "[==========] ");
+  printf("Running %s from %s.\n",
+         FormatTestCount(unit_test.test_to_run_count()).c_str(),
+         FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str());
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart(
+    const UnitTest& /*unit_test*/) {
+  ColoredPrintf(COLOR_GREEN,  "[----------] ");
+  printf("Global test environment set-up.\n");
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) {
+  test_case_name_ = test_case.name();
+  const internal::String counts =
+      FormatCountableNoun(test_case.test_to_run_count(), "test", "tests");
+  ColoredPrintf(COLOR_GREEN, "[----------] ");
+  printf("%s from %s", counts.c_str(), test_case_name_.c_str());
+  if (test_case.type_param() == NULL) {
+    printf("\n");
+  } else {
+    printf(", where TypeParam = %s\n", test_case.type_param());
+  }
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
+  ColoredPrintf(COLOR_GREEN,  "[ RUN      ] ");
+  PrintTestName(test_case_name_.c_str(), test_info.name());
+  printf("\n");
+  fflush(stdout);
+}
+
+// Called after an assertion failure.
+void PrettyUnitTestResultPrinter::OnTestPartResult(
+    const TestPartResult& result) {
+  // If the test part succeeded, we don't need to do anything.
+  if (result.type() == TestPartResult::kSuccess)
+    return;
+
+  // Print failure message from the assertion (e.g. expected this and got that).
+  PrintTestPartResult(result);
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) {
+  if (test_info.result()->Passed()) {
+    ColoredPrintf(COLOR_GREEN, "[       OK ] ");
+  } else {
+    ColoredPrintf(COLOR_RED, "[  FAILED  ] ");
+  }
+  PrintTestName(test_case_name_.c_str(), test_info.name());
+  if (test_info.result()->Failed())
+    PrintFullTestCommentIfPresent(test_info);
+
+  if (GTEST_FLAG(print_time)) {
+    printf(" (%s ms)\n", internal::StreamableToString(
+           test_info.result()->elapsed_time()).c_str());
+  } else {
+    printf("\n");
+  }
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) {
+  if (!GTEST_FLAG(print_time)) return;
+
+  test_case_name_ = test_case.name();
+  const internal::String counts =
+      FormatCountableNoun(test_case.test_to_run_count(), "test", "tests");
+  ColoredPrintf(COLOR_GREEN, "[----------] ");
+  printf("%s from %s (%s ms total)\n\n",
+         counts.c_str(), test_case_name_.c_str(),
+         internal::StreamableToString(test_case.elapsed_time()).c_str());
+  fflush(stdout);
+}
+
+void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart(
+    const UnitTest& /*unit_test*/) {
+  ColoredPrintf(COLOR_GREEN,  "[----------] ");
+  printf("Global test environment tear-down\n");
+  fflush(stdout);
+}
+
+// Internal helper for printing the list of failed tests.
+void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) {
+  const int failed_test_count = unit_test.failed_test_count();
+  if (failed_test_count == 0) {
+    return;
+  }
+
+  for (int i = 0; i < unit_test.total_test_case_count(); ++i) {
+    const TestCase& test_case = *unit_test.GetTestCase(i);
+    if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
+      continue;
+    }
+    for (int j = 0; j < test_case.total_test_count(); ++j) {
+      const TestInfo& test_info = *test_case.GetTestInfo(j);
+      if (!test_info.should_run() || test_info.result()->Passed()) {
+        continue;
+      }
+      ColoredPrintf(COLOR_RED, "[  FAILED  ] ");
+      printf("%s.%s", test_case.name(), test_info.name());
+      PrintFullTestCommentIfPresent(test_info);
+      printf("\n");
+    }
+  }
+}
+
+void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,
+                                                     int /*iteration*/) {
+  ColoredPrintf(COLOR_GREEN,  "[==========] ");
+  printf("%s from %s ran.",
+         FormatTestCount(unit_test.test_to_run_count()).c_str(),
+         FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str());
+  if (GTEST_FLAG(print_time)) {
+    printf(" (%s ms total)",
+           internal::StreamableToString(unit_test.elapsed_time()).c_str());
+  }
+  printf("\n");
+  ColoredPrintf(COLOR_GREEN,  "[  PASSED  ] ");
+  printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str());
+
+  int num_failures = unit_test.failed_test_count();
+  if (!unit_test.Passed()) {
+    const int failed_test_count = unit_test.failed_test_count();
+    ColoredPrintf(COLOR_RED,  "[  FAILED  ] ");
+    printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str());
+    PrintFailedTests(unit_test);
+    printf("\n%2d FAILED %s\n", num_failures,
+                        num_failures == 1 ? "TEST" : "TESTS");
+  }
+
+  int num_disabled = unit_test.disabled_test_count();
+  if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) {
+    if (!num_failures) {
+      printf("\n");  // Add a spacer if no FAILURE banner is displayed.
+    }
+    ColoredPrintf(COLOR_YELLOW,
+                  "  YOU HAVE %d DISABLED %s\n\n",
+                  num_disabled,
+                  num_disabled == 1 ? "TEST" : "TESTS");
+  }
+  // Ensure that Google Test output is printed before, e.g., heapchecker output.
+  fflush(stdout);
+}
+
+// End PrettyUnitTestResultPrinter
+
+// class TestEventRepeater
+//
+// This class forwards events to other event listeners.
+class TestEventRepeater : public TestEventListener {
+ public:
+  TestEventRepeater() : forwarding_enabled_(true) {}
+  virtual ~TestEventRepeater();
+  void Append(TestEventListener *listener);
+  TestEventListener* Release(TestEventListener* listener);
+
+  // Controls whether events will be forwarded to listeners_. Set to false
+  // in death test child processes.
+  bool forwarding_enabled() const { return forwarding_enabled_; }
+  void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; }
+
+  virtual void OnTestProgramStart(const UnitTest& unit_test);
+  virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration);
+  virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test);
+  virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test);
+  virtual void OnTestCaseStart(const TestCase& test_case);
+  virtual void OnTestStart(const TestInfo& test_info);
+  virtual void OnTestPartResult(const TestPartResult& result);
+  virtual void OnTestEnd(const TestInfo& test_info);
+  virtual void OnTestCaseEnd(const TestCase& test_case);
+  virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test);
+  virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test);
+  virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration);
+  virtual void OnTestProgramEnd(const UnitTest& unit_test);
+
+ private:
+  // Controls whether events will be forwarded to listeners_. Set to false
+  // in death test child processes.
+  bool forwarding_enabled_;
+  // The list of listeners that receive events.
+  std::vector<TestEventListener*> listeners_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater);
+};
+
+TestEventRepeater::~TestEventRepeater() {
+  ForEach(listeners_, Delete<TestEventListener>);
+}
+
+void TestEventRepeater::Append(TestEventListener *listener) {
+  listeners_.push_back(listener);
+}
+
+// TODO(vladl@google.com): Factor the search functionality into Vector::Find.
+TestEventListener* TestEventRepeater::Release(TestEventListener *listener) {
+  for (size_t i = 0; i < listeners_.size(); ++i) {
+    if (listeners_[i] == listener) {
+      listeners_.erase(listeners_.begin() + i);
+      return listener;
+    }
+  }
+
+  return NULL;
+}
+
+// Since most methods are very similar, use macros to reduce boilerplate.
+// This defines a member that forwards the call to all listeners.
+#define GTEST_REPEATER_METHOD_(Name, Type) \
+void TestEventRepeater::Name(const Type& parameter) { \
+  if (forwarding_enabled_) { \
+    for (size_t i = 0; i < listeners_.size(); i++) { \
+      listeners_[i]->Name(parameter); \
+    } \
+  } \
+}
+// This defines a member that forwards the call to all listeners in reverse
+// order.
+#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \
+void TestEventRepeater::Name(const Type& parameter) { \
+  if (forwarding_enabled_) { \
+    for (int i = static_cast<int>(listeners_.size()) - 1; i >= 0; i--) { \
+      listeners_[i]->Name(parameter); \
+    } \
+  } \
+}
+
+GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest)
+GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest)
+GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase)
+GTEST_REPEATER_METHOD_(OnTestStart, TestInfo)
+GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult)
+GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest)
+GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest)
+GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest)
+GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo)
+GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase)
+GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest)
+
+#undef GTEST_REPEATER_METHOD_
+#undef GTEST_REVERSE_REPEATER_METHOD_
+
+void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test,
+                                             int iteration) {
+  if (forwarding_enabled_) {
+    for (size_t i = 0; i < listeners_.size(); i++) {
+      listeners_[i]->OnTestIterationStart(unit_test, iteration);
+    }
+  }
+}
+
+void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test,
+                                           int iteration) {
+  if (forwarding_enabled_) {
+    for (int i = static_cast<int>(listeners_.size()) - 1; i >= 0; i--) {
+      listeners_[i]->OnTestIterationEnd(unit_test, iteration);
+    }
+  }
+}
+
+// End TestEventRepeater
+
+// This class generates an XML output file.
+class XmlUnitTestResultPrinter : public EmptyTestEventListener {
+ public:
+  explicit XmlUnitTestResultPrinter(const char* output_file);
+
+  virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration);
+
+ private:
+  // Is c a whitespace character that is normalized to a space character
+  // when it appears in an XML attribute value?
+  static bool IsNormalizableWhitespace(char c) {
+    return c == 0x9 || c == 0xA || c == 0xD;
+  }
+
+  // May c appear in a well-formed XML document?
+  static bool IsValidXmlCharacter(char c) {
+    return IsNormalizableWhitespace(c) || c >= 0x20;
+  }
+
+  // Returns an XML-escaped copy of the input string str.  If
+  // is_attribute is true, the text is meant to appear as an attribute
+  // value, and normalizable whitespace is preserved by replacing it
+  // with character references.
+  static String EscapeXml(const char* str, bool is_attribute);
+
+  // Returns the given string with all characters invalid in XML removed.
+  static string RemoveInvalidXmlCharacters(const string& str);
+
+  // Convenience wrapper around EscapeXml when str is an attribute value.
+  static String EscapeXmlAttribute(const char* str) {
+    return EscapeXml(str, true);
+  }
+
+  // Convenience wrapper around EscapeXml when str is not an attribute value.
+  static String EscapeXmlText(const char* str) { return EscapeXml(str, false); }
+
+  // Streams an XML CDATA section, escaping invalid CDATA sequences as needed.
+  static void OutputXmlCDataSection(::std::ostream* stream, const char* data);
+
+  // Streams an XML representation of a TestInfo object.
+  static void OutputXmlTestInfo(::std::ostream* stream,
+                                const char* test_case_name,
+                                const TestInfo& test_info);
+
+  // Prints an XML representation of a TestCase object
+  static void PrintXmlTestCase(FILE* out, const TestCase& test_case);
+
+  // Prints an XML summary of unit_test to output stream out.
+  static void PrintXmlUnitTest(FILE* out, const UnitTest& unit_test);
+
+  // Produces a string representing the test properties in a result as space
+  // delimited XML attributes based on the property key="value" pairs.
+  // When the String is not empty, it includes a space at the beginning,
+  // to delimit this attribute from prior attributes.
+  static String TestPropertiesAsXmlAttributes(const TestResult& result);
+
+  // The output file.
+  const String output_file_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter);
+};
+
+// Creates a new XmlUnitTestResultPrinter.
+XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file)
+    : output_file_(output_file) {
+  if (output_file_.c_str() == NULL || output_file_.empty()) {
+    fprintf(stderr, "XML output file may not be null\n");
+    fflush(stderr);
+    exit(EXIT_FAILURE);
+  }
+}
+
+// Called after the unit test ends.
+void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test,
+                                                  int /*iteration*/) {
+  FILE* xmlout = NULL;
+  FilePath output_file(output_file_);
+  FilePath output_dir(output_file.RemoveFileName());
+
+  if (output_dir.CreateDirectoriesRecursively()) {
+    xmlout = posix::FOpen(output_file_.c_str(), "w");
+  }
+  if (xmlout == NULL) {
+    // TODO(wan): report the reason of the failure.
+    //
+    // We don't do it for now as:
+    //
+    //   1. There is no urgent need for it.
+    //   2. It's a bit involved to make the errno variable thread-safe on
+    //      all three operating systems (Linux, Windows, and Mac OS).
+    //   3. To interpret the meaning of errno in a thread-safe way,
+    //      we need the strerror_r() function, which is not available on
+    //      Windows.
+    fprintf(stderr,
+            "Unable to open file \"%s\"\n",
+            output_file_.c_str());
+    fflush(stderr);
+    exit(EXIT_FAILURE);
+  }
+  PrintXmlUnitTest(xmlout, unit_test);
+  fclose(xmlout);
+}
+
+// Returns an XML-escaped copy of the input string str.  If is_attribute
+// is true, the text is meant to appear as an attribute value, and
+// normalizable whitespace is preserved by replacing it with character
+// references.
+//
+// Invalid XML characters in str, if any, are stripped from the output.
+// It is expected that most, if not all, of the text processed by this
+// module will consist of ordinary English text.
+// If this module is ever modified to produce version 1.1 XML output,
+// most invalid characters can be retained using character references.
+// TODO(wan): It might be nice to have a minimally invasive, human-readable
+// escaping scheme for invalid characters, rather than dropping them.
+String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) {
+  Message m;
+
+  if (str != NULL) {
+    for (const char* src = str; *src; ++src) {
+      switch (*src) {
+        case '<':
+          m << "&lt;";
+          break;
+        case '>':
+          m << "&gt;";
+          break;
+        case '&':
+          m << "&amp;";
+          break;
+        case '\'':
+          if (is_attribute)
+            m << "&apos;";
+          else
+            m << '\'';
+          break;
+        case '"':
+          if (is_attribute)
+            m << "&quot;";
+          else
+            m << '"';
+          break;
+        default:
+          if (IsValidXmlCharacter(*src)) {
+            if (is_attribute && IsNormalizableWhitespace(*src))
+              m << String::Format("&#x%02X;", unsigned(*src));
+            else
+              m << *src;
+          }
+          break;
+      }
+    }
+  }
+
+  return m.GetString();
+}
+
+// Returns the given string with all characters invalid in XML removed.
+// Currently invalid characters are dropped from the string. An
+// alternative is to replace them with certain characters such as . or ?.
+string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const string& str) {
+  string output;
+  output.reserve(str.size());
+  for (string::const_iterator it = str.begin(); it != str.end(); ++it)
+    if (IsValidXmlCharacter(*it))
+      output.push_back(*it);
+
+  return output;
+}
+
+// The following routines generate an XML representation of a UnitTest
+// object.
+//
+// This is how Google Test concepts map to the DTD:
+//
+// <testsuites name="AllTests">        <-- corresponds to a UnitTest object
+//   <testsuite name="testcase-name">  <-- corresponds to a TestCase object
+//     <testcase name="test-name">     <-- corresponds to a TestInfo object
+//       <failure message="...">...</failure>
+//       <failure message="...">...</failure>
+//       <failure message="...">...</failure>
+//                                     <-- individual assertion failures
+//     </testcase>
+//   </testsuite>
+// </testsuites>
+
+// Formats the given time in milliseconds as seconds.
+std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) {
+  ::std::stringstream ss;
+  ss << ms/1000.0;
+  return ss.str();
+}
+
+// Streams an XML CDATA section, escaping invalid CDATA sequences as needed.
+void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream,
+                                                     const char* data) {
+  const char* segment = data;
+  *stream << "<![CDATA[";
+  for (;;) {
+    const char* const next_segment = strstr(segment, "]]>");
+    if (next_segment != NULL) {
+      stream->write(
+          segment, static_cast<std::streamsize>(next_segment - segment));
+      *stream << "]]>]]&gt;<![CDATA[";
+      segment = next_segment + strlen("]]>");
+    } else {
+      *stream << segment;
+      break;
+    }
+  }
+  *stream << "]]>";
+}
+
+// Prints an XML representation of a TestInfo object.
+// TODO(wan): There is also value in printing properties with the plain printer.
+void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream,
+                                                 const char* test_case_name,
+                                                 const TestInfo& test_info) {
+  const TestResult& result = *test_info.result();
+  *stream << "    <testcase name=\""
+          << EscapeXmlAttribute(test_info.name()).c_str() << "\"";
+
+  if (test_info.value_param() != NULL) {
+    *stream << " value_param=\"" << EscapeXmlAttribute(test_info.value_param())
+            << "\"";
+  }
+  if (test_info.type_param() != NULL) {
+    *stream << " type_param=\"" << EscapeXmlAttribute(test_info.type_param())
+            << "\"";
+  }
+
+  *stream << " status=\""
+          << (test_info.should_run() ? "run" : "notrun")
+          << "\" time=\""
+          << FormatTimeInMillisAsSeconds(result.elapsed_time())
+          << "\" classname=\"" << EscapeXmlAttribute(test_case_name).c_str()
+          << "\"" << TestPropertiesAsXmlAttributes(result).c_str();
+
+  int failures = 0;
+  for (int i = 0; i < result.total_part_count(); ++i) {
+    const TestPartResult& part = result.GetTestPartResult(i);
+    if (part.failed()) {
+      if (++failures == 1)
+        *stream << ">\n";
+      *stream << "      <failure message=\""
+              << EscapeXmlAttribute(part.summary()).c_str()
+              << "\" type=\"\">";
+      const string location = internal::FormatCompilerIndependentFileLocation(
+          part.file_name(), part.line_number());
+      const string message = location + "\n" + part.message();
+      OutputXmlCDataSection(stream,
+                            RemoveInvalidXmlCharacters(message).c_str());
+      *stream << "</failure>\n";
+    }
+  }
+
+  if (failures == 0)
+    *stream << " />\n";
+  else
+    *stream << "    </testcase>\n";
+}
+
+// Prints an XML representation of a TestCase object
+void XmlUnitTestResultPrinter::PrintXmlTestCase(FILE* out,
+                                                const TestCase& test_case) {
+  fprintf(out,
+          "  <testsuite name=\"%s\" tests=\"%d\" failures=\"%d\" "
+          "disabled=\"%d\" ",
+          EscapeXmlAttribute(test_case.name()).c_str(),
+          test_case.total_test_count(),
+          test_case.failed_test_count(),
+          test_case.disabled_test_count());
+  fprintf(out,
+          "errors=\"0\" time=\"%s\">\n",
+          FormatTimeInMillisAsSeconds(test_case.elapsed_time()).c_str());
+  for (int i = 0; i < test_case.total_test_count(); ++i) {
+    ::std::stringstream stream;
+    OutputXmlTestInfo(&stream, test_case.name(), *test_case.GetTestInfo(i));
+    fprintf(out, "%s", StringStreamToString(&stream).c_str());
+  }
+  fprintf(out, "  </testsuite>\n");
+}
+
+// Prints an XML summary of unit_test to output stream out.
+void XmlUnitTestResultPrinter::PrintXmlUnitTest(FILE* out,
+                                                const UnitTest& unit_test) {
+  fprintf(out, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
+  fprintf(out,
+          "<testsuites tests=\"%d\" failures=\"%d\" disabled=\"%d\" "
+          "errors=\"0\" time=\"%s\" ",
+          unit_test.total_test_count(),
+          unit_test.failed_test_count(),
+          unit_test.disabled_test_count(),
+          FormatTimeInMillisAsSeconds(unit_test.elapsed_time()).c_str());
+  if (GTEST_FLAG(shuffle)) {
+    fprintf(out, "random_seed=\"%d\" ", unit_test.random_seed());
+  }
+  fprintf(out, "name=\"AllTests\">\n");
+  for (int i = 0; i < unit_test.total_test_case_count(); ++i)
+    PrintXmlTestCase(out, *unit_test.GetTestCase(i));
+  fprintf(out, "</testsuites>\n");
+}
+
+// Produces a string representing the test properties in a result as space
+// delimited XML attributes based on the property key="value" pairs.
+String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes(
+    const TestResult& result) {
+  Message attributes;
+  for (int i = 0; i < result.test_property_count(); ++i) {
+    const TestProperty& property = result.GetTestProperty(i);
+    attributes << " " << property.key() << "="
+        << "\"" << EscapeXmlAttribute(property.value()) << "\"";
+  }
+  return attributes.GetString();
+}
+
+// End XmlUnitTestResultPrinter
+
+#if GTEST_CAN_STREAM_RESULTS_
+
+// Streams test results to the given port on the given host machine.
+class StreamingListener : public EmptyTestEventListener {
+ public:
+  // Escapes '=', '&', '%', and '\n' characters in str as "%xx".
+  static string UrlEncode(const char* str);
+
+  StreamingListener(const string& host, const string& port)
+      : sockfd_(-1), host_name_(host), port_num_(port) {
+    MakeConnection();
+    Send("gtest_streaming_protocol_version=1.0\n");
+  }
+
+  virtual ~StreamingListener() {
+    if (sockfd_ != -1)
+      CloseConnection();
+  }
+
+  void OnTestProgramStart(const UnitTest& /* unit_test */) {
+    Send("event=TestProgramStart\n");
+  }
+
+  void OnTestProgramEnd(const UnitTest& unit_test) {
+    // Note that Google Test current only report elapsed time for each
+    // test iteration, not for the entire test program.
+    Send(String::Format("event=TestProgramEnd&passed=%d\n",
+                        unit_test.Passed()));
+
+    // Notify the streaming server to stop.
+    CloseConnection();
+  }
+
+  void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) {
+    Send(String::Format("event=TestIterationStart&iteration=%d\n",
+                        iteration));
+  }
+
+  void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) {
+    Send(String::Format("event=TestIterationEnd&passed=%d&elapsed_time=%sms\n",
+                        unit_test.Passed(),
+                        StreamableToString(unit_test.elapsed_time()).c_str()));
+  }
+
+  void OnTestCaseStart(const TestCase& test_case) {
+    Send(String::Format("event=TestCaseStart&name=%s\n", test_case.name()));
+  }
+
+  void OnTestCaseEnd(const TestCase& test_case) {
+    Send(String::Format("event=TestCaseEnd&passed=%d&elapsed_time=%sms\n",
+                        test_case.Passed(),
+                        StreamableToString(test_case.elapsed_time()).c_str()));
+  }
+
+  void OnTestStart(const TestInfo& test_info) {
+    Send(String::Format("event=TestStart&name=%s\n", test_info.name()));
+  }
+
+  void OnTestEnd(const TestInfo& test_info) {
+    Send(String::Format(
+        "event=TestEnd&passed=%d&elapsed_time=%sms\n",
+        (test_info.result())->Passed(),
+        StreamableToString((test_info.result())->elapsed_time()).c_str()));
+  }
+
+  void OnTestPartResult(const TestPartResult& test_part_result) {
+    const char* file_name = test_part_result.file_name();
+    if (file_name == NULL)
+      file_name = "";
+    Send(String::Format("event=TestPartResult&file=%s&line=%d&message=",
+                        UrlEncode(file_name).c_str(),
+                        test_part_result.line_number()));
+    Send(UrlEncode(test_part_result.message()) + "\n");
+  }
+
+ private:
+  // Creates a client socket and connects to the server.
+  void MakeConnection();
+
+  // Closes the socket.
+  void CloseConnection() {
+    GTEST_CHECK_(sockfd_ != -1)
+        << "CloseConnection() can be called only when there is a connection.";
+
+    close(sockfd_);
+    sockfd_ = -1;
+  }
+
+  // Sends a string to the socket.
+  void Send(const string& message) {
+    GTEST_CHECK_(sockfd_ != -1)
+        << "Send() can be called only when there is a connection.";
+
+    const int len = static_cast<int>(message.length());
+    if (write(sockfd_, message.c_str(), len) != len) {
+      GTEST_LOG_(WARNING)
+          << "stream_result_to: failed to stream to "
+          << host_name_ << ":" << port_num_;
+    }
+  }
+
+  int sockfd_;   // socket file descriptor
+  const string host_name_;
+  const string port_num_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener);
+};  // class StreamingListener
+
+// Checks if str contains '=', '&', '%' or '\n' characters. If yes,
+// replaces them by "%xx" where xx is their hexadecimal value. For
+// example, replaces "=" with "%3D".  This algorithm is O(strlen(str))
+// in both time and space -- important as the input str may contain an
+// arbitrarily long test failure message and stack trace.
+string StreamingListener::UrlEncode(const char* str) {
+  string result;
+  result.reserve(strlen(str) + 1);
+  for (char ch = *str; ch != '\0'; ch = *++str) {
+    switch (ch) {
+      case '%':
+      case '=':
+      case '&':
+      case '\n':
+        result.append(String::Format("%%%02x", static_cast<unsigned char>(ch)));
+        break;
+      default:
+        result.push_back(ch);
+        break;
+    }
+  }
+  return result;
+}
+
+void StreamingListener::MakeConnection() {
+  GTEST_CHECK_(sockfd_ == -1)
+      << "MakeConnection() can't be called when there is already a connection.";
+
+  addrinfo hints;
+  memset(&hints, 0, sizeof(hints));
+  hints.ai_family = AF_UNSPEC;    // To allow both IPv4 and IPv6 addresses.
+  hints.ai_socktype = SOCK_STREAM;
+  addrinfo* servinfo = NULL;
+
+  // Use the getaddrinfo() to get a linked list of IP addresses for
+  // the given host name.
+  const int error_num = getaddrinfo(
+      host_name_.c_str(), port_num_.c_str(), &hints, &servinfo);
+  if (error_num != 0) {
+    GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: "
+                        << gai_strerror(error_num);
+  }
+
+  // Loop through all the results and connect to the first we can.
+  for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != NULL;
+       cur_addr = cur_addr->ai_next) {
+    sockfd_ = socket(
+        cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol);
+    if (sockfd_ != -1) {
+      // Connect the client socket to the server socket.
+      if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) {
+        close(sockfd_);
+        sockfd_ = -1;
+      }
+    }
+  }
+
+  freeaddrinfo(servinfo);  // all done with this structure
+
+  if (sockfd_ == -1) {
+    GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to "
+                        << host_name_ << ":" << port_num_;
+  }
+}
+
+// End of class Streaming Listener
+#endif  // GTEST_CAN_STREAM_RESULTS__
+
+// Class ScopedTrace
+
+// Pushes the given source file location and message onto a per-thread
+// trace stack maintained by Google Test.
+// L < UnitTest::mutex_
+ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) {
+  TraceInfo trace;
+  trace.file = file;
+  trace.line = line;
+  trace.message = message.GetString();
+
+  UnitTest::GetInstance()->PushGTestTrace(trace);
+}
+
+// Pops the info pushed by the c'tor.
+// L < UnitTest::mutex_
+ScopedTrace::~ScopedTrace() {
+  UnitTest::GetInstance()->PopGTestTrace();
+}
+
+
+// class OsStackTraceGetter
+
+// Returns the current OS stack trace as a String.  Parameters:
+//
+//   max_depth  - the maximum number of stack frames to be included
+//                in the trace.
+//   skip_count - the number of top frames to be skipped; doesn't count
+//                against max_depth.
+//
+// L < mutex_
+// We use "L < mutex_" to denote that the function may acquire mutex_.
+String OsStackTraceGetter::CurrentStackTrace(int, int) {
+  return String("");
+}
+
+// L < mutex_
+void OsStackTraceGetter::UponLeavingGTest() {
+}
+
+const char* const
+OsStackTraceGetter::kElidedFramesMarker =
+    "... " GTEST_NAME_ " internal frames ...";
+
+}  // namespace internal
+
+// class TestEventListeners
+
+TestEventListeners::TestEventListeners()
+    : repeater_(new internal::TestEventRepeater()),
+      default_result_printer_(NULL),
+      default_xml_generator_(NULL) {
+}
+
+TestEventListeners::~TestEventListeners() { delete repeater_; }
+
+// Returns the standard listener responsible for the default console
+// output.  Can be removed from the listeners list to shut down default
+// console output.  Note that removing this object from the listener list
+// with Release transfers its ownership to the user.
+void TestEventListeners::Append(TestEventListener* listener) {
+  repeater_->Append(listener);
+}
+
+// Removes the given event listener from the list and returns it.  It then
+// becomes the caller's responsibility to delete the listener. Returns
+// NULL if the listener is not found in the list.
+TestEventListener* TestEventListeners::Release(TestEventListener* listener) {
+  if (listener == default_result_printer_)
+    default_result_printer_ = NULL;
+  else if (listener == default_xml_generator_)
+    default_xml_generator_ = NULL;
+  return repeater_->Release(listener);
+}
+
+// Returns repeater that broadcasts the TestEventListener events to all
+// subscribers.
+TestEventListener* TestEventListeners::repeater() { return repeater_; }
+
+// Sets the default_result_printer attribute to the provided listener.
+// The listener is also added to the listener list and previous
+// default_result_printer is removed from it and deleted. The listener can
+// also be NULL in which case it will not be added to the list. Does
+// nothing if the previous and the current listener objects are the same.
+void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) {
+  if (default_result_printer_ != listener) {
+    // It is an error to pass this method a listener that is already in the
+    // list.
+    delete Release(default_result_printer_);
+    default_result_printer_ = listener;
+    if (listener != NULL)
+      Append(listener);
+  }
+}
+
+// Sets the default_xml_generator attribute to the provided listener.  The
+// listener is also added to the listener list and previous
+// default_xml_generator is removed from it and deleted. The listener can
+// also be NULL in which case it will not be added to the list. Does
+// nothing if the previous and the current listener objects are the same.
+void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) {
+  if (default_xml_generator_ != listener) {
+    // It is an error to pass this method a listener that is already in the
+    // list.
+    delete Release(default_xml_generator_);
+    default_xml_generator_ = listener;
+    if (listener != NULL)
+      Append(listener);
+  }
+}
+
+// Controls whether events will be forwarded by the repeater to the
+// listeners in the list.
+bool TestEventListeners::EventForwardingEnabled() const {
+  return repeater_->forwarding_enabled();
+}
+
+void TestEventListeners::SuppressEventForwarding() {
+  repeater_->set_forwarding_enabled(false);
+}
+
+// class UnitTest
+
+// Gets the singleton UnitTest object.  The first time this method is
+// called, a UnitTest object is constructed and returned.  Consecutive
+// calls will return the same object.
+//
+// We don't protect this under mutex_ as a user is not supposed to
+// call this before main() starts, from which point on the return
+// value will never change.
+UnitTest * UnitTest::GetInstance() {
+  // When compiled with MSVC 7.1 in optimized mode, destroying the
+  // UnitTest object upon exiting the program messes up the exit code,
+  // causing successful tests to appear failed.  We have to use a
+  // different implementation in this case to bypass the compiler bug.
+  // This implementation makes the compiler happy, at the cost of
+  // leaking the UnitTest object.
+
+  // CodeGear C++Builder insists on a public destructor for the
+  // default implementation.  Use this implementation to keep good OO
+  // design with private destructor.
+
+#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__)
+  static UnitTest* const instance = new UnitTest;
+  return instance;
+#else
+  static UnitTest instance;
+  return &instance;
+#endif  // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__)
+}
+
+// Gets the number of successful test cases.
+int UnitTest::successful_test_case_count() const {
+  return impl()->successful_test_case_count();
+}
+
+// Gets the number of failed test cases.
+int UnitTest::failed_test_case_count() const {
+  return impl()->failed_test_case_count();
+}
+
+// Gets the number of all test cases.
+int UnitTest::total_test_case_count() const {
+  return impl()->total_test_case_count();
+}
+
+// Gets the number of all test cases that contain at least one test
+// that should run.
+int UnitTest::test_case_to_run_count() const {
+  return impl()->test_case_to_run_count();
+}
+
+// Gets the number of successful tests.
+int UnitTest::successful_test_count() const {
+  return impl()->successful_test_count();
+}
+
+// Gets the number of failed tests.
+int UnitTest::failed_test_count() const { return impl()->failed_test_count(); }
+
+// Gets the number of disabled tests.
+int UnitTest::disabled_test_count() const {
+  return impl()->disabled_test_count();
+}
+
+// Gets the number of all tests.
+int UnitTest::total_test_count() const { return impl()->total_test_count(); }
+
+// Gets the number of tests that should run.
+int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); }
+
+// Gets the elapsed time, in milliseconds.
+internal::TimeInMillis UnitTest::elapsed_time() const {
+  return impl()->elapsed_time();
+}
+
+// Returns true iff the unit test passed (i.e. all test cases passed).
+bool UnitTest::Passed() const { return impl()->Passed(); }
+
+// Returns true iff the unit test failed (i.e. some test case failed
+// or something outside of all tests failed).
+bool UnitTest::Failed() const { return impl()->Failed(); }
+
+// Gets the i-th test case among all the test cases. i can range from 0 to
+// total_test_case_count() - 1. If i is not in that range, returns NULL.
+const TestCase* UnitTest::GetTestCase(int i) const {
+  return impl()->GetTestCase(i);
+}
+
+// Gets the i-th test case among all the test cases. i can range from 0 to
+// total_test_case_count() - 1. If i is not in that range, returns NULL.
+TestCase* UnitTest::GetMutableTestCase(int i) {
+  return impl()->GetMutableTestCase(i);
+}
+
+// Returns the list of event listeners that can be used to track events
+// inside Google Test.
+TestEventListeners& UnitTest::listeners() {
+  return *impl()->listeners();
+}
+
+// Registers and returns a global test environment.  When a test
+// program is run, all global test environments will be set-up in the
+// order they were registered.  After all tests in the program have
+// finished, all global test environments will be torn-down in the
+// *reverse* order they were registered.
+//
+// The UnitTest object takes ownership of the given environment.
+//
+// We don't protect this under mutex_, as we only support calling it
+// from the main thread.
+Environment* UnitTest::AddEnvironment(Environment* env) {
+  if (env == NULL) {
+    return NULL;
+  }
+
+  impl_->environments().push_back(env);
+  return env;
+}
+
+// Adds a TestPartResult to the current TestResult object.  All Google Test
+// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call
+// this to report their results.  The user code should use the
+// assertion macros instead of calling this directly.
+// L < mutex_
+void UnitTest::AddTestPartResult(TestPartResult::Type result_type,
+                                 const char* file_name,
+                                 int line_number,
+                                 const internal::String& message,
+                                 const internal::String& os_stack_trace) {
+  Message msg;
+  msg << message;
+
+  internal::MutexLock lock(&mutex_);
+  if (impl_->gtest_trace_stack().size() > 0) {
+    msg << "\n" << GTEST_NAME_ << " trace:";
+
+    for (int i = static_cast<int>(impl_->gtest_trace_stack().size());
+         i > 0; --i) {
+      const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1];
+      msg << "\n" << internal::FormatFileLocation(trace.file, trace.line)
+          << " " << trace.message;
+    }
+  }
+
+  if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) {
+    msg << internal::kStackTraceMarker << os_stack_trace;
+  }
+
+  const TestPartResult result =
+    TestPartResult(result_type, file_name, line_number,
+                   msg.GetString().c_str());
+  impl_->GetTestPartResultReporterForCurrentThread()->
+      ReportTestPartResult(result);
+
+  if (result_type != TestPartResult::kSuccess) {
+    // gtest_break_on_failure takes precedence over
+    // gtest_throw_on_failure.  This allows a user to set the latter
+    // in the code (perhaps in order to use Google Test assertions
+    // with another testing framework) and specify the former on the
+    // command line for debugging.
+    if (GTEST_FLAG(break_on_failure)) {
+#if GTEST_OS_WINDOWS
+      // Using DebugBreak on Windows allows gtest to still break into a debugger
+      // when a failure happens and both the --gtest_break_on_failure and
+      // the --gtest_catch_exceptions flags are specified.
+      DebugBreak();
+#else
+      // Dereference NULL through a volatile pointer to prevent the compiler
+      // from removing. We use this rather than abort() or __builtin_trap() for
+      // portability: Symbian doesn't implement abort() well, and some debuggers
+      // don't correctly trap abort().
+      *static_cast<volatile int*>(NULL) = 1;
+#endif  // GTEST_OS_WINDOWS
+    } else if (GTEST_FLAG(throw_on_failure)) {
+#if GTEST_HAS_EXCEPTIONS
+      throw GoogleTestFailureException(result);
+#else
+      // We cannot call abort() as it generates a pop-up in debug mode
+      // that cannot be suppressed in VC 7.1 or below.
+      exit(1);
+#endif
+    }
+  }
+}
+
+// Creates and adds a property to the current TestResult. If a property matching
+// the supplied value already exists, updates its value instead.
+void UnitTest::RecordPropertyForCurrentTest(const char* key,
+                                            const char* value) {
+  const TestProperty test_property(key, value);
+  impl_->current_test_result()->RecordProperty(test_property);
+}
+
+// Runs all tests in this UnitTest object and prints the result.
+// Returns 0 if successful, or 1 otherwise.
+//
+// We don't protect this under mutex_, as we only support calling it
+// from the main thread.
+int UnitTest::Run() {
+  // Captures the value of GTEST_FLAG(catch_exceptions).  This value will be
+  // used for the duration of the program.
+  impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions));
+
+#if GTEST_HAS_SEH
+  const bool in_death_test_child_process =
+      internal::GTEST_FLAG(internal_run_death_test).length() > 0;
+
+  // Either the user wants Google Test to catch exceptions thrown by the
+  // tests or this is executing in the context of death test child
+  // process. In either case the user does not want to see pop-up dialogs
+  // about crashes - they are expected.
+  if (impl()->catch_exceptions() || in_death_test_child_process) {
+
+# if !GTEST_OS_WINDOWS_MOBILE
+    // SetErrorMode doesn't exist on CE.
+    SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT |
+                 SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);
+# endif  // !GTEST_OS_WINDOWS_MOBILE
+
+# if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE
+    // Death test children can be terminated with _abort().  On Windows,
+    // _abort() can show a dialog with a warning message.  This forces the
+    // abort message to go to stderr instead.
+    _set_error_mode(_OUT_TO_STDERR);
+# endif
+
+# if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE
+    // In the debug version, Visual Studio pops up a separate dialog
+    // offering a choice to debug the aborted program. We need to suppress
+    // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement
+    // executed. Google Test will notify the user of any unexpected
+    // failure via stderr.
+    //
+    // VC++ doesn't define _set_abort_behavior() prior to the version 8.0.
+    // Users of prior VC versions shall suffer the agony and pain of
+    // clicking through the countless debug dialogs.
+    // TODO(vladl@google.com): find a way to suppress the abort dialog() in the
+    // debug mode when compiled with VC 7.1 or lower.
+    if (!GTEST_FLAG(break_on_failure))
+      _set_abort_behavior(
+          0x0,                                    // Clear the following flags:
+          _WRITE_ABORT_MSG | _CALL_REPORTFAULT);  // pop-up window, core dump.
+# endif
+
+  }
+#endif  // GTEST_HAS_SEH
+
+  return internal::HandleExceptionsInMethodIfSupported(
+      impl(),
+      &internal::UnitTestImpl::RunAllTests,
+      "auxiliary test code (environments or event listeners)") ? 0 : 1;
+}
+
+// Returns the working directory when the first TEST() or TEST_F() was
+// executed.
+const char* UnitTest::original_working_dir() const {
+  return impl_->original_working_dir_.c_str();
+}
+
+// Returns the TestCase object for the test that's currently running,
+// or NULL if no test is running.
+// L < mutex_
+const TestCase* UnitTest::current_test_case() const {
+  internal::MutexLock lock(&mutex_);
+  return impl_->current_test_case();
+}
+
+// Returns the TestInfo object for the test that's currently running,
+// or NULL if no test is running.
+// L < mutex_
+const TestInfo* UnitTest::current_test_info() const {
+  internal::MutexLock lock(&mutex_);
+  return impl_->current_test_info();
+}
+
+// Returns the random seed used at the start of the current test run.
+int UnitTest::random_seed() const { return impl_->random_seed(); }
+
+#if GTEST_HAS_PARAM_TEST
+// Returns ParameterizedTestCaseRegistry object used to keep track of
+// value-parameterized tests and instantiate and register them.
+// L < mutex_
+internal::ParameterizedTestCaseRegistry&
+    UnitTest::parameterized_test_registry() {
+  return impl_->parameterized_test_registry();
+}
+#endif  // GTEST_HAS_PARAM_TEST
+
+// Creates an empty UnitTest.
+UnitTest::UnitTest() {
+  impl_ = new internal::UnitTestImpl(this);
+}
+
+// Destructor of UnitTest.
+UnitTest::~UnitTest() {
+  delete impl_;
+}
+
+// Pushes a trace defined by SCOPED_TRACE() on to the per-thread
+// Google Test trace stack.
+// L < mutex_
+void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) {
+  internal::MutexLock lock(&mutex_);
+  impl_->gtest_trace_stack().push_back(trace);
+}
+
+// Pops a trace from the per-thread Google Test trace stack.
+// L < mutex_
+void UnitTest::PopGTestTrace() {
+  internal::MutexLock lock(&mutex_);
+  impl_->gtest_trace_stack().pop_back();
+}
+
+namespace internal {
+
+UnitTestImpl::UnitTestImpl(UnitTest* parent)
+    : parent_(parent),
+#ifdef _MSC_VER
+# pragma warning(push)                    // Saves the current warning state.
+# pragma warning(disable:4355)            // Temporarily disables warning 4355
+                                         // (using this in initializer).
+      default_global_test_part_result_reporter_(this),
+      default_per_thread_test_part_result_reporter_(this),
+# pragma warning(pop)                     // Restores the warning state again.
+#else
+      default_global_test_part_result_reporter_(this),
+      default_per_thread_test_part_result_reporter_(this),
+#endif  // _MSC_VER
+      global_test_part_result_repoter_(
+          &default_global_test_part_result_reporter_),
+      per_thread_test_part_result_reporter_(
+          &default_per_thread_test_part_result_reporter_),
+#if GTEST_HAS_PARAM_TEST
+      parameterized_test_registry_(),
+      parameterized_tests_registered_(false),
+#endif  // GTEST_HAS_PARAM_TEST
+      last_death_test_case_(-1),
+      current_test_case_(NULL),
+      current_test_info_(NULL),
+      ad_hoc_test_result_(),
+      os_stack_trace_getter_(NULL),
+      post_flag_parse_init_performed_(false),
+      random_seed_(0),  // Will be overridden by the flag before first use.
+      random_(0),  // Will be reseeded before first use.
+      elapsed_time_(0),
+#if GTEST_HAS_DEATH_TEST
+      internal_run_death_test_flag_(NULL),
+      death_test_factory_(new DefaultDeathTestFactory),
+#endif
+      // Will be overridden by the flag before first use.
+      catch_exceptions_(false) {
+  listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter);
+}
+
+UnitTestImpl::~UnitTestImpl() {
+  // Deletes every TestCase.
+  ForEach(test_cases_, internal::Delete<TestCase>);
+
+  // Deletes every Environment.
+  ForEach(environments_, internal::Delete<Environment>);
+
+  delete os_stack_trace_getter_;
+}
+
+#if GTEST_HAS_DEATH_TEST
+// Disables event forwarding if the control is currently in a death test
+// subprocess. Must not be called before InitGoogleTest.
+void UnitTestImpl::SuppressTestEventsIfInSubprocess() {
+  if (internal_run_death_test_flag_.get() != NULL)
+    listeners()->SuppressEventForwarding();
+}
+#endif  // GTEST_HAS_DEATH_TEST
+
+// Initializes event listeners performing XML output as specified by
+// UnitTestOptions. Must not be called before InitGoogleTest.
+void UnitTestImpl::ConfigureXmlOutput() {
+  const String& output_format = UnitTestOptions::GetOutputFormat();
+  if (output_format == "xml") {
+    listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter(
+        UnitTestOptions::GetAbsolutePathToOutputFile().c_str()));
+  } else if (output_format != "") {
+    printf("WARNING: unrecognized output format \"%s\" ignored.\n",
+           output_format.c_str());
+    fflush(stdout);
+  }
+}
+
+#if GTEST_CAN_STREAM_RESULTS_
+// Initializes event listeners for streaming test results in String form.
+// Must not be called before InitGoogleTest.
+void UnitTestImpl::ConfigureStreamingOutput() {
+  const string& target = GTEST_FLAG(stream_result_to);
+  if (!target.empty()) {
+    const size_t pos = target.find(':');
+    if (pos != string::npos) {
+      listeners()->Append(new StreamingListener(target.substr(0, pos),
+                                                target.substr(pos+1)));
+    } else {
+      printf("WARNING: unrecognized streaming target \"%s\" ignored.\n",
+             target.c_str());
+      fflush(stdout);
+    }
+  }
+}
+#endif  // GTEST_CAN_STREAM_RESULTS_
+
+// Performs initialization dependent upon flag values obtained in
+// ParseGoogleTestFlagsOnly.  Is called from InitGoogleTest after the call to
+// ParseGoogleTestFlagsOnly.  In case a user neglects to call InitGoogleTest
+// this function is also called from RunAllTests.  Since this function can be
+// called more than once, it has to be idempotent.
+void UnitTestImpl::PostFlagParsingInit() {
+  // Ensures that this function does not execute more than once.
+  if (!post_flag_parse_init_performed_) {
+    post_flag_parse_init_performed_ = true;
+
+#if GTEST_HAS_DEATH_TEST
+    InitDeathTestSubprocessControlInfo();
+    SuppressTestEventsIfInSubprocess();
+#endif  // GTEST_HAS_DEATH_TEST
+
+    // Registers parameterized tests. This makes parameterized tests
+    // available to the UnitTest reflection API without running
+    // RUN_ALL_TESTS.
+    RegisterParameterizedTests();
+
+    // Configures listeners for XML output. This makes it possible for users
+    // to shut down the default XML output before invoking RUN_ALL_TESTS.
+    ConfigureXmlOutput();
+
+#if GTEST_CAN_STREAM_RESULTS_
+    // Configures listeners for streaming test results to the specified server.
+    ConfigureStreamingOutput();
+#endif  // GTEST_CAN_STREAM_RESULTS_
+  }
+}
+
+// A predicate that checks the name of a TestCase against a known
+// value.
+//
+// This is used for implementation of the UnitTest class only.  We put
+// it in the anonymous namespace to prevent polluting the outer
+// namespace.
+//
+// TestCaseNameIs is copyable.
+class TestCaseNameIs {
+ public:
+  // Constructor.
+  explicit TestCaseNameIs(const String& name)
+      : name_(name) {}
+
+  // Returns true iff the name of test_case matches name_.
+  bool operator()(const TestCase* test_case) const {
+    return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0;
+  }
+
+ private:
+  String name_;
+};
+
+// Finds and returns a TestCase with the given name.  If one doesn't
+// exist, creates one and returns it.  It's the CALLER'S
+// RESPONSIBILITY to ensure that this function is only called WHEN THE
+// TESTS ARE NOT SHUFFLED.
+//
+// Arguments:
+//
+//   test_case_name: name of the test case
+//   type_param:     the name of the test case's type parameter, or NULL if
+//                   this is not a typed or a type-parameterized test case.
+//   set_up_tc:      pointer to the function that sets up the test case
+//   tear_down_tc:   pointer to the function that tears down the test case
+TestCase* UnitTestImpl::GetTestCase(const char* test_case_name,
+                                    const char* type_param,
+                                    Test::SetUpTestCaseFunc set_up_tc,
+                                    Test::TearDownTestCaseFunc tear_down_tc) {
+  // Can we find a TestCase with the given name?
+  const std::vector<TestCase*>::const_iterator test_case =
+      std::find_if(test_cases_.begin(), test_cases_.end(),
+                   TestCaseNameIs(test_case_name));
+
+  if (test_case != test_cases_.end())
+    return *test_case;
+
+  // No.  Let's create one.
+  TestCase* const new_test_case =
+      new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc);
+
+  // Is this a death test case?
+  if (internal::UnitTestOptions::MatchesFilter(String(test_case_name),
+                                               kDeathTestCaseFilter)) {
+    // Yes.  Inserts the test case after the last death test case
+    // defined so far.  This only works when the test cases haven't
+    // been shuffled.  Otherwise we may end up running a death test
+    // after a non-death test.
+    ++last_death_test_case_;
+    test_cases_.insert(test_cases_.begin() + last_death_test_case_,
+                       new_test_case);
+  } else {
+    // No.  Appends to the end of the list.
+    test_cases_.push_back(new_test_case);
+  }
+
+  test_case_indices_.push_back(static_cast<int>(test_case_indices_.size()));
+  return new_test_case;
+}
+
+// Helpers for setting up / tearing down the given environment.  They
+// are for use in the ForEach() function.
+static void SetUpEnvironment(Environment* env) { env->SetUp(); }
+static void TearDownEnvironment(Environment* env) { env->TearDown(); }
+
+// Runs all tests in this UnitTest object, prints the result, and
+// returns true if all tests are successful.  If any exception is
+// thrown during a test, the test is considered to be failed, but the
+// rest of the tests will still be run.
+//
+// When parameterized tests are enabled, it expands and registers
+// parameterized tests first in RegisterParameterizedTests().
+// All other functions called from RunAllTests() may safely assume that
+// parameterized tests are ready to be counted and run.
+bool UnitTestImpl::RunAllTests() {
+  // Makes sure InitGoogleTest() was called.
+  if (!GTestIsInitialized()) {
+    printf("%s",
+           "\nThis test program did NOT call ::testing::InitGoogleTest "
+           "before calling RUN_ALL_TESTS().  Please fix it.\n");
+    return false;
+  }
+
+  // Do not run any test if the --help flag was specified.
+  if (g_help_flag)
+    return true;
+
+  // Repeats the call to the post-flag parsing initialization in case the
+  // user didn't call InitGoogleTest.
+  PostFlagParsingInit();
+
+  // Even if sharding is not on, test runners may want to use the
+  // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding
+  // protocol.
+  internal::WriteToShardStatusFileIfNeeded();
+
+  // True iff we are in a subprocess for running a thread-safe-style
+  // death test.
+  bool in_subprocess_for_death_test = false;
+
+#if GTEST_HAS_DEATH_TEST
+  in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL);
+#endif  // GTEST_HAS_DEATH_TEST
+
+  const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex,
+                                        in_subprocess_for_death_test);
+
+  // Compares the full test names with the filter to decide which
+  // tests to run.
+  const bool has_tests_to_run = FilterTests(should_shard
+                                              ? HONOR_SHARDING_PROTOCOL
+                                              : IGNORE_SHARDING_PROTOCOL) > 0;
+
+  // Lists the tests and exits if the --gtest_list_tests flag was specified.
+  if (GTEST_FLAG(list_tests)) {
+    // This must be called *after* FilterTests() has been called.
+    ListTestsMatchingFilter();
+    return true;
+  }
+
+  random_seed_ = GTEST_FLAG(shuffle) ?
+      GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0;
+
+  // True iff at least one test has failed.
+  bool failed = false;
+
+  TestEventListener* repeater = listeners()->repeater();
+
+  repeater->OnTestProgramStart(*parent_);
+
+  // How many times to repeat the tests?  We don't want to repeat them
+  // when we are inside the subprocess of a death test.
+  const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat);
+  // Repeats forever if the repeat count is negative.
+  const bool forever = repeat < 0;
+  for (int i = 0; forever || i != repeat; i++) {
+    // We want to preserve failures generated by ad-hoc test
+    // assertions executed before RUN_ALL_TESTS().
+    ClearNonAdHocTestResult();
+
+    const TimeInMillis start = GetTimeInMillis();
+
+    // Shuffles test cases and tests if requested.
+    if (has_tests_to_run && GTEST_FLAG(shuffle)) {
+      random()->Reseed(random_seed_);
+      // This should be done before calling OnTestIterationStart(),
+      // such that a test event listener can see the actual test order
+      // in the event.
+      ShuffleTests();
+    }
+
+    // Tells the unit test event listeners that the tests are about to start.
+    repeater->OnTestIterationStart(*parent_, i);
+
+    // Runs each test case if there is at least one test to run.
+    if (has_tests_to_run) {
+      // Sets up all environments beforehand.
+      repeater->OnEnvironmentsSetUpStart(*parent_);
+      ForEach(environments_, SetUpEnvironment);
+      repeater->OnEnvironmentsSetUpEnd(*parent_);
+
+      // Runs the tests only if there was no fatal failure during global
+      // set-up.
+      if (!Test::HasFatalFailure()) {
+        for (int test_index = 0; test_index < total_test_case_count();
+             test_index++) {
+          GetMutableTestCase(test_index)->Run();
+        }
+      }
+
+      // Tears down all environments in reverse order afterwards.
+      repeater->OnEnvironmentsTearDownStart(*parent_);
+      std::for_each(environments_.rbegin(), environments_.rend(),
+                    TearDownEnvironment);
+      repeater->OnEnvironmentsTearDownEnd(*parent_);
+    }
+
+    elapsed_time_ = GetTimeInMillis() - start;
+
+    // Tells the unit test event listener that the tests have just finished.
+    repeater->OnTestIterationEnd(*parent_, i);
+
+    // Gets the result and clears it.
+    if (!Passed()) {
+      failed = true;
+    }
+
+    // Restores the original test order after the iteration.  This
+    // allows the user to quickly repro a failure that happens in the
+    // N-th iteration without repeating the first (N - 1) iterations.
+    // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in
+    // case the user somehow changes the value of the flag somewhere
+    // (it's always safe to unshuffle the tests).
+    UnshuffleTests();
+
+    if (GTEST_FLAG(shuffle)) {
+      // Picks a new random seed for each iteration.
+      random_seed_ = GetNextRandomSeed(random_seed_);
+    }
+  }
+
+  repeater->OnTestProgramEnd(*parent_);
+
+  return !failed;
+}
+
+// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file
+// if the variable is present. If a file already exists at this location, this
+// function will write over it. If the variable is present, but the file cannot
+// be created, prints an error and exits.
+void WriteToShardStatusFileIfNeeded() {
+  const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile);
+  if (test_shard_file != NULL) {
+    FILE* const file = posix::FOpen(test_shard_file, "w");
+    if (file == NULL) {
+      ColoredPrintf(COLOR_RED,
+                    "Could not write to the test shard status file \"%s\" "
+                    "specified by the %s environment variable.\n",
+                    test_shard_file, kTestShardStatusFile);
+      fflush(stdout);
+      exit(EXIT_FAILURE);
+    }
+    fclose(file);
+  }
+}
+
+// Checks whether sharding is enabled by examining the relevant
+// environment variable values. If the variables are present,
+// but inconsistent (i.e., shard_index >= total_shards), prints
+// an error and exits. If in_subprocess_for_death_test, sharding is
+// disabled because it must only be applied to the original test
+// process. Otherwise, we could filter out death tests we intended to execute.
+bool ShouldShard(const char* total_shards_env,
+                 const char* shard_index_env,
+                 bool in_subprocess_for_death_test) {
+  if (in_subprocess_for_death_test) {
+    return false;
+  }
+
+  const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1);
+  const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1);
+
+  if (total_shards == -1 && shard_index == -1) {
+    return false;
+  } else if (total_shards == -1 && shard_index != -1) {
+    const Message msg = Message()
+      << "Invalid environment variables: you have "
+      << kTestShardIndex << " = " << shard_index
+      << ", but have left " << kTestTotalShards << " unset.\n";
+    ColoredPrintf(COLOR_RED, msg.GetString().c_str());
+    fflush(stdout);
+    exit(EXIT_FAILURE);
+  } else if (total_shards != -1 && shard_index == -1) {
+    const Message msg = Message()
+      << "Invalid environment variables: you have "
+      << kTestTotalShards << " = " << total_shards
+      << ", but have left " << kTestShardIndex << " unset.\n";
+    ColoredPrintf(COLOR_RED, msg.GetString().c_str());
+    fflush(stdout);
+    exit(EXIT_FAILURE);
+  } else if (shard_index < 0 || shard_index >= total_shards) {
+    const Message msg = Message()
+      << "Invalid environment variables: we require 0 <= "
+      << kTestShardIndex << " < " << kTestTotalShards
+      << ", but you have " << kTestShardIndex << "=" << shard_index
+      << ", " << kTestTotalShards << "=" << total_shards << ".\n";
+    ColoredPrintf(COLOR_RED, msg.GetString().c_str());
+    fflush(stdout);
+    exit(EXIT_FAILURE);
+  }
+
+  return total_shards > 1;
+}
+
+// Parses the environment variable var as an Int32. If it is unset,
+// returns default_val. If it is not an Int32, prints an error
+// and aborts.
+Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) {
+  const char* str_val = posix::GetEnv(var);
+  if (str_val == NULL) {
+    return default_val;
+  }
+
+  Int32 result;
+  if (!ParseInt32(Message() << "The value of environment variable " << var,
+                  str_val, &result)) {
+    exit(EXIT_FAILURE);
+  }
+  return result;
+}
+
+// Given the total number of shards, the shard index, and the test id,
+// returns true iff the test should be run on this shard. The test id is
+// some arbitrary but unique non-negative integer assigned to each test
+// method. Assumes that 0 <= shard_index < total_shards.
+bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) {
+  return (test_id % total_shards) == shard_index;
+}
+
+// Compares the name of each test with the user-specified filter to
+// decide whether the test should be run, then records the result in
+// each TestCase and TestInfo object.
+// If shard_tests == true, further filters tests based on sharding
+// variables in the environment - see
+// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide.
+// Returns the number of tests that should run.
+int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) {
+  const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ?
+      Int32FromEnvOrDie(kTestTotalShards, -1) : -1;
+  const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ?
+      Int32FromEnvOrDie(kTestShardIndex, -1) : -1;
+
+  // num_runnable_tests are the number of tests that will
+  // run across all shards (i.e., match filter and are not disabled).
+  // num_selected_tests are the number of tests to be run on
+  // this shard.
+  int num_runnable_tests = 0;
+  int num_selected_tests = 0;
+  for (size_t i = 0; i < test_cases_.size(); i++) {
+    TestCase* const test_case = test_cases_[i];
+    const String &test_case_name = test_case->name();
+    test_case->set_should_run(false);
+
+    for (size_t j = 0; j < test_case->test_info_list().size(); j++) {
+      TestInfo* const test_info = test_case->test_info_list()[j];
+      const String test_name(test_info->name());
+      // A test is disabled if test case name or test name matches
+      // kDisableTestFilter.
+      const bool is_disabled =
+          internal::UnitTestOptions::MatchesFilter(test_case_name,
+                                                   kDisableTestFilter) ||
+          internal::UnitTestOptions::MatchesFilter(test_name,
+                                                   kDisableTestFilter);
+      test_info->is_disabled_ = is_disabled;
+
+      const bool matches_filter =
+          internal::UnitTestOptions::FilterMatchesTest(test_case_name,
+                                                       test_name);
+      test_info->matches_filter_ = matches_filter;
+
+      const bool is_runnable =
+          (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) &&
+          matches_filter;
+
+      const bool is_selected = is_runnable &&
+          (shard_tests == IGNORE_SHARDING_PROTOCOL ||
+           ShouldRunTestOnShard(total_shards, shard_index,
+                                num_runnable_tests));
+
+      num_runnable_tests += is_runnable;
+      num_selected_tests += is_selected;
+
+      test_info->should_run_ = is_selected;
+      test_case->set_should_run(test_case->should_run() || is_selected);
+    }
+  }
+  return num_selected_tests;
+}
+
+// Prints the names of the tests matching the user-specified filter flag.
+void UnitTestImpl::ListTestsMatchingFilter() {
+  for (size_t i = 0; i < test_cases_.size(); i++) {
+    const TestCase* const test_case = test_cases_[i];
+    bool printed_test_case_name = false;
+
+    for (size_t j = 0; j < test_case->test_info_list().size(); j++) {
+      const TestInfo* const test_info =
+          test_case->test_info_list()[j];
+      if (test_info->matches_filter_) {
+        if (!printed_test_case_name) {
+          printed_test_case_name = true;
+          printf("%s.\n", test_case->name());
+        }
+        printf("  %s\n", test_info->name());
+      }
+    }
+  }
+  fflush(stdout);
+}
+
+// Sets the OS stack trace getter.
+//
+// Does nothing if the input and the current OS stack trace getter are
+// the same; otherwise, deletes the old getter and makes the input the
+// current getter.
+void UnitTestImpl::set_os_stack_trace_getter(
+    OsStackTraceGetterInterface* getter) {
+  if (os_stack_trace_getter_ != getter) {
+    delete os_stack_trace_getter_;
+    os_stack_trace_getter_ = getter;
+  }
+}
+
+// Returns the current OS stack trace getter if it is not NULL;
+// otherwise, creates an OsStackTraceGetter, makes it the current
+// getter, and returns it.
+OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() {
+  if (os_stack_trace_getter_ == NULL) {
+    os_stack_trace_getter_ = new OsStackTraceGetter;
+  }
+
+  return os_stack_trace_getter_;
+}
+
+// Returns the TestResult for the test that's currently running, or
+// the TestResult for the ad hoc test if no test is running.
+TestResult* UnitTestImpl::current_test_result() {
+  return current_test_info_ ?
+      &(current_test_info_->result_) : &ad_hoc_test_result_;
+}
+
+// Shuffles all test cases, and the tests within each test case,
+// making sure that death tests are still run first.
+void UnitTestImpl::ShuffleTests() {
+  // Shuffles the death test cases.
+  ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_);
+
+  // Shuffles the non-death test cases.
+  ShuffleRange(random(), last_death_test_case_ + 1,
+               static_cast<int>(test_cases_.size()), &test_case_indices_);
+
+  // Shuffles the tests inside each test case.
+  for (size_t i = 0; i < test_cases_.size(); i++) {
+    test_cases_[i]->ShuffleTests(random());
+  }
+}
+
+// Restores the test cases and tests to their order before the first shuffle.
+void UnitTestImpl::UnshuffleTests() {
+  for (size_t i = 0; i < test_cases_.size(); i++) {
+    // Unshuffles the tests in each test case.
+    test_cases_[i]->UnshuffleTests();
+    // Resets the index of each test case.
+    test_case_indices_[i] = static_cast<int>(i);
+  }
+}
+
+// Returns the current OS stack trace as a String.
+//
+// The maximum number of stack frames to be included is specified by
+// the gtest_stack_trace_depth flag.  The skip_count parameter
+// specifies the number of top frames to be skipped, which doesn't
+// count against the number of frames to be included.
+//
+// For example, if Foo() calls Bar(), which in turn calls
+// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
+// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
+String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/,
+                                       int skip_count) {
+  // We pass skip_count + 1 to skip this wrapper function in addition
+  // to what the user really wants to skip.
+  return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);
+}
+
+// Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to
+// suppress unreachable code warnings.
+namespace {
+class ClassUniqueToAlwaysTrue {};
+}
+
+bool IsTrue(bool condition) { return condition; }
+
+bool AlwaysTrue() {
+#if GTEST_HAS_EXCEPTIONS
+  // This condition is always false so AlwaysTrue() never actually throws,
+  // but it makes the compiler think that it may throw.
+  if (IsTrue(false))
+    throw ClassUniqueToAlwaysTrue();
+#endif  // GTEST_HAS_EXCEPTIONS
+  return true;
+}
+
+// If *pstr starts with the given prefix, modifies *pstr to be right
+// past the prefix and returns true; otherwise leaves *pstr unchanged
+// and returns false.  None of pstr, *pstr, and prefix can be NULL.
+bool SkipPrefix(const char* prefix, const char** pstr) {
+  const size_t prefix_len = strlen(prefix);
+  if (strncmp(*pstr, prefix, prefix_len) == 0) {
+    *pstr += prefix_len;
+    return true;
+  }
+  return false;
+}
+
+// Parses a string as a command line flag.  The string should have
+// the format "--flag=value".  When def_optional is true, the "=value"
+// part can be omitted.
+//
+// Returns the value of the flag, or NULL if the parsing failed.
+const char* ParseFlagValue(const char* str,
+                           const char* flag,
+                           bool def_optional) {
+  // str and flag must not be NULL.
+  if (str == NULL || flag == NULL) return NULL;
+
+  // The flag must start with "--" followed by GTEST_FLAG_PREFIX_.
+  const String flag_str = String::Format("--%s%s", GTEST_FLAG_PREFIX_, flag);
+  const size_t flag_len = flag_str.length();
+  if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL;
+
+  // Skips the flag name.
+  const char* flag_end = str + flag_len;
+
+  // When def_optional is true, it's OK to not have a "=value" part.
+  if (def_optional && (flag_end[0] == '\0')) {
+    return flag_end;
+  }
+
+  // If def_optional is true and there are more characters after the
+  // flag name, or if def_optional is false, there must be a '=' after
+  // the flag name.
+  if (flag_end[0] != '=') return NULL;
+
+  // Returns the string after "=".
+  return flag_end + 1;
+}
+
+// Parses a string for a bool flag, in the form of either
+// "--flag=value" or "--flag".
+//
+// In the former case, the value is taken as true as long as it does
+// not start with '0', 'f', or 'F'.
+//
+// In the latter case, the value is taken as true.
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+bool ParseBoolFlag(const char* str, const char* flag, bool* value) {
+  // Gets the value of the flag as a string.
+  const char* const value_str = ParseFlagValue(str, flag, true);
+
+  // Aborts if the parsing failed.
+  if (value_str == NULL) return false;
+
+  // Converts the string value to a bool.
+  *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F');
+  return true;
+}
+
+// Parses a string for an Int32 flag, in the form of
+// "--flag=value".
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+bool ParseInt32Flag(const char* str, const char* flag, Int32* value) {
+  // Gets the value of the flag as a string.
+  const char* const value_str = ParseFlagValue(str, flag, false);
+
+  // Aborts if the parsing failed.
+  if (value_str == NULL) return false;
+
+  // Sets *value to the value of the flag.
+  return ParseInt32(Message() << "The value of flag --" << flag,
+                    value_str, value);
+}
+
+// Parses a string for a string flag, in the form of
+// "--flag=value".
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+bool ParseStringFlag(const char* str, const char* flag, String* value) {
+  // Gets the value of the flag as a string.
+  const char* const value_str = ParseFlagValue(str, flag, false);
+
+  // Aborts if the parsing failed.
+  if (value_str == NULL) return false;
+
+  // Sets *value to the value of the flag.
+  *value = value_str;
+  return true;
+}
+
+// Determines whether a string has a prefix that Google Test uses for its
+// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_.
+// If Google Test detects that a command line flag has its prefix but is not
+// recognized, it will print its help message. Flags starting with
+// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test
+// internal flags and do not trigger the help message.
+static bool HasGoogleTestFlagPrefix(const char* str) {
+  return (SkipPrefix("--", &str) ||
+          SkipPrefix("-", &str) ||
+          SkipPrefix("/", &str)) &&
+         !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) &&
+         (SkipPrefix(GTEST_FLAG_PREFIX_, &str) ||
+          SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str));
+}
+
+// Prints a string containing code-encoded text.  The following escape
+// sequences can be used in the string to control the text color:
+//
+//   @@    prints a single '@' character.
+//   @R    changes the color to red.
+//   @G    changes the color to green.
+//   @Y    changes the color to yellow.
+//   @D    changes to the default terminal text color.
+//
+// TODO(wan@google.com): Write tests for this once we add stdout
+// capturing to Google Test.
+static void PrintColorEncoded(const char* str) {
+  GTestColor color = COLOR_DEFAULT;  // The current color.
+
+  // Conceptually, we split the string into segments divided by escape
+  // sequences.  Then we print one segment at a time.  At the end of
+  // each iteration, the str pointer advances to the beginning of the
+  // next segment.
+  for (;;) {
+    const char* p = strchr(str, '@');
+    if (p == NULL) {
+      ColoredPrintf(color, "%s", str);
+      return;
+    }
+
+    ColoredPrintf(color, "%s", String(str, p - str).c_str());
+
+    const char ch = p[1];
+    str = p + 2;
+    if (ch == '@') {
+      ColoredPrintf(color, "@");
+    } else if (ch == 'D') {
+      color = COLOR_DEFAULT;
+    } else if (ch == 'R') {
+      color = COLOR_RED;
+    } else if (ch == 'G') {
+      color = COLOR_GREEN;
+    } else if (ch == 'Y') {
+      color = COLOR_YELLOW;
+    } else {
+      --str;
+    }
+  }
+}
+
+static const char kColorEncodedHelpMessage[] =
+"This program contains tests written using " GTEST_NAME_ ". You can use the\n"
+"following command line flags to control its behavior:\n"
+"\n"
+"Test Selection:\n"
+"  @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n"
+"      List the names of all tests instead of running them. The name of\n"
+"      TEST(Foo, Bar) is \"Foo.Bar\".\n"
+"  @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS"
+    "[@G-@YNEGATIVE_PATTERNS]@D\n"
+"      Run only the tests whose name matches one of the positive patterns but\n"
+"      none of the negative patterns. '?' matches any single character; '*'\n"
+"      matches any substring; ':' separates two patterns.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n"
+"      Run all disabled tests too.\n"
+"\n"
+"Test Execution:\n"
+"  @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n"
+"      Run the tests repeatedly; use a negative count to repeat forever.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n"
+"      Randomize tests' orders on every iteration.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n"
+"      Random number seed to use for shuffling test orders (between 1 and\n"
+"      99999, or 0 to use a seed based on the current time).\n"
+"\n"
+"Test Output:\n"
+"  @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n"
+"      Enable/disable colored output. The default is @Gauto@D.\n"
+"  -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n"
+"      Don't print the elapsed time of each test.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G"
+    GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n"
+"      Generate an XML report in the given directory or with the given file\n"
+"      name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n"
+#if GTEST_CAN_STREAM_RESULTS_
+"  @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n"
+"      Stream test results to the given server.\n"
+#endif  // GTEST_CAN_STREAM_RESULTS_
+"\n"
+"Assertion Behavior:\n"
+#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS
+"  @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n"
+"      Set the default death test style.\n"
+#endif  // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS
+"  @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n"
+"      Turn assertion failures into debugger break-points.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n"
+"      Turn assertion failures into C++ exceptions.\n"
+"  @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n"
+"      Do not report exceptions as test failures. Instead, allow them\n"
+"      to crash the program or throw a pop-up (on Windows).\n"
+"\n"
+"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set "
+    "the corresponding\n"
+"environment variable of a flag (all letters in upper-case). For example, to\n"
+"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_
+    "color=no@D or set\n"
+"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n"
+"\n"
+"For more information, please read the " GTEST_NAME_ " documentation at\n"
+"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n"
+"(not one in your own code or tests), please report it to\n"
+"@G<" GTEST_DEV_EMAIL_ ">@D.\n";
+
+// Parses the command line for Google Test flags, without initializing
+// other parts of Google Test.  The type parameter CharType can be
+// instantiated to either char or wchar_t.
+template <typename CharType>
+void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) {
+  for (int i = 1; i < *argc; i++) {
+    const String arg_string = StreamableToString(argv[i]);
+    const char* const arg = arg_string.c_str();
+
+    using internal::ParseBoolFlag;
+    using internal::ParseInt32Flag;
+    using internal::ParseStringFlag;
+
+    // Do we see a Google Test flag?
+    if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag,
+                      &GTEST_FLAG(also_run_disabled_tests)) ||
+        ParseBoolFlag(arg, kBreakOnFailureFlag,
+                      &GTEST_FLAG(break_on_failure)) ||
+        ParseBoolFlag(arg, kCatchExceptionsFlag,
+                      &GTEST_FLAG(catch_exceptions)) ||
+        ParseStringFlag(arg, kColorFlag, &GTEST_FLAG(color)) ||
+        ParseStringFlag(arg, kDeathTestStyleFlag,
+                        &GTEST_FLAG(death_test_style)) ||
+        ParseBoolFlag(arg, kDeathTestUseFork,
+                      &GTEST_FLAG(death_test_use_fork)) ||
+        ParseStringFlag(arg, kFilterFlag, &GTEST_FLAG(filter)) ||
+        ParseStringFlag(arg, kInternalRunDeathTestFlag,
+                        &GTEST_FLAG(internal_run_death_test)) ||
+        ParseBoolFlag(arg, kListTestsFlag, &GTEST_FLAG(list_tests)) ||
+        ParseStringFlag(arg, kOutputFlag, &GTEST_FLAG(output)) ||
+        ParseBoolFlag(arg, kPrintTimeFlag, &GTEST_FLAG(print_time)) ||
+        ParseInt32Flag(arg, kRandomSeedFlag, &GTEST_FLAG(random_seed)) ||
+        ParseInt32Flag(arg, kRepeatFlag, &GTEST_FLAG(repeat)) ||
+        ParseBoolFlag(arg, kShuffleFlag, &GTEST_FLAG(shuffle)) ||
+        ParseInt32Flag(arg, kStackTraceDepthFlag,
+                       &GTEST_FLAG(stack_trace_depth)) ||
+        ParseStringFlag(arg, kStreamResultToFlag,
+                        &GTEST_FLAG(stream_result_to)) ||
+        ParseBoolFlag(arg, kThrowOnFailureFlag,
+                      &GTEST_FLAG(throw_on_failure))
+        ) {
+      // Yes.  Shift the remainder of the argv list left by one.  Note
+      // that argv has (*argc + 1) elements, the last one always being
+      // NULL.  The following loop moves the trailing NULL element as
+      // well.
+      for (int j = i; j != *argc; j++) {
+        argv[j] = argv[j + 1];
+      }
+
+      // Decrements the argument count.
+      (*argc)--;
+
+      // We also need to decrement the iterator as we just removed
+      // an element.
+      i--;
+    } else if (arg_string == "--help" || arg_string == "-h" ||
+               arg_string == "-?" || arg_string == "/?" ||
+               HasGoogleTestFlagPrefix(arg)) {
+      // Both help flag and unrecognized Google Test flags (excluding
+      // internal ones) trigger help display.
+      g_help_flag = true;
+    }
+  }
+
+  if (g_help_flag) {
+    // We print the help here instead of in RUN_ALL_TESTS(), as the
+    // latter may not be called at all if the user is using Google
+    // Test with another testing framework.
+    PrintColorEncoded(kColorEncodedHelpMessage);
+  }
+}
+
+// Parses the command line for Google Test flags, without initializing
+// other parts of Google Test.
+void ParseGoogleTestFlagsOnly(int* argc, char** argv) {
+  ParseGoogleTestFlagsOnlyImpl(argc, argv);
+}
+void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) {
+  ParseGoogleTestFlagsOnlyImpl(argc, argv);
+}
+
+// The internal implementation of InitGoogleTest().
+//
+// The type parameter CharType can be instantiated to either char or
+// wchar_t.
+template <typename CharType>
+void InitGoogleTestImpl(int* argc, CharType** argv) {
+  g_init_gtest_count++;
+
+  // We don't want to run the initialization code twice.
+  if (g_init_gtest_count != 1) return;
+
+  if (*argc <= 0) return;
+
+  internal::g_executable_path = internal::StreamableToString(argv[0]);
+
+#if GTEST_HAS_DEATH_TEST
+
+  g_argvs.clear();
+  for (int i = 0; i != *argc; i++) {
+    g_argvs.push_back(StreamableToString(argv[i]));
+  }
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+  ParseGoogleTestFlagsOnly(argc, argv);
+  GetUnitTestImpl()->PostFlagParsingInit();
+}
+
+}  // namespace internal
+
+// Initializes Google Test.  This must be called before calling
+// RUN_ALL_TESTS().  In particular, it parses a command line for the
+// flags that Google Test recognizes.  Whenever a Google Test flag is
+// seen, it is removed from argv, and *argc is decremented.
+//
+// No value is returned.  Instead, the Google Test flag variables are
+// updated.
+//
+// Calling the function for the second time has no user-visible effect.
+void InitGoogleTest(int* argc, char** argv) {
+  internal::InitGoogleTestImpl(argc, argv);
+}
+
+// This overloaded version can be used in Windows programs compiled in
+// UNICODE mode.
+void InitGoogleTest(int* argc, wchar_t** argv) {
+  internal::InitGoogleTestImpl(argc, argv);
+}
+
+}  // namespace testing
+// Copyright 2005, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev)
+//
+// This file implements death tests.
+
+
+#if GTEST_HAS_DEATH_TEST
+
+# if GTEST_OS_MAC
+#  include <crt_externs.h>
+# endif  // GTEST_OS_MAC
+
+# include <errno.h>
+# include <fcntl.h>
+# include <limits.h>
+# include <stdarg.h>
+
+# if GTEST_OS_WINDOWS
+#  include <windows.h>
+# else
+#  include <sys/mman.h>
+#  include <sys/wait.h>
+# endif  // GTEST_OS_WINDOWS
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+
+// Indicates that this translation unit is part of Google Test's
+// implementation.  It must come before gtest-internal-inl.h is
+// included, or there will be a compiler error.  This trick is to
+// prevent a user from accidentally including gtest-internal-inl.h in
+// his code.
+#define GTEST_IMPLEMENTATION_ 1
+#undef GTEST_IMPLEMENTATION_
+
+namespace testing {
+
+// Constants.
+
+// The default death test style.
+static const char kDefaultDeathTestStyle[] = "fast";
+
+GTEST_DEFINE_string_(
+    death_test_style,
+    internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle),
+    "Indicates how to run a death test in a forked child process: "
+    "\"threadsafe\" (child process re-executes the test binary "
+    "from the beginning, running only the specific death test) or "
+    "\"fast\" (child process runs the death test immediately "
+    "after forking).");
+
+GTEST_DEFINE_bool_(
+    death_test_use_fork,
+    internal::BoolFromGTestEnv("death_test_use_fork", false),
+    "Instructs to use fork()/_exit() instead of clone() in death tests. "
+    "Ignored and always uses fork() on POSIX systems where clone() is not "
+    "implemented. Useful when running under valgrind or similar tools if "
+    "those do not support clone(). Valgrind 3.3.1 will just fail if "
+    "it sees an unsupported combination of clone() flags. "
+    "It is not recommended to use this flag w/o valgrind though it will "
+    "work in 99% of the cases. Once valgrind is fixed, this flag will "
+    "most likely be removed.");
+
+namespace internal {
+GTEST_DEFINE_string_(
+    internal_run_death_test, "",
+    "Indicates the file, line number, temporal index of "
+    "the single death test to run, and a file descriptor to "
+    "which a success code may be sent, all separated by "
+    "colons.  This flag is specified if and only if the current "
+    "process is a sub-process launched for running a thread-safe "
+    "death test.  FOR INTERNAL USE ONLY.");
+}  // namespace internal
+
+#if GTEST_HAS_DEATH_TEST
+
+// ExitedWithCode constructor.
+ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {
+}
+
+// ExitedWithCode function-call operator.
+bool ExitedWithCode::operator()(int exit_status) const {
+# if GTEST_OS_WINDOWS
+
+  return exit_status == exit_code_;
+
+# else
+
+  return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_;
+
+# endif  // GTEST_OS_WINDOWS
+}
+
+# if !GTEST_OS_WINDOWS
+// KilledBySignal constructor.
+KilledBySignal::KilledBySignal(int signum) : signum_(signum) {
+}
+
+// KilledBySignal function-call operator.
+bool KilledBySignal::operator()(int exit_status) const {
+  return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
+}
+# endif  // !GTEST_OS_WINDOWS
+
+namespace internal {
+
+// Utilities needed for death tests.
+
+// Generates a textual description of a given exit code, in the format
+// specified by wait(2).
+static String ExitSummary(int exit_code) {
+  Message m;
+
+# if GTEST_OS_WINDOWS
+
+  m << "Exited with exit status " << exit_code;
+
+# else
+
+  if (WIFEXITED(exit_code)) {
+    m << "Exited with exit status " << WEXITSTATUS(exit_code);
+  } else if (WIFSIGNALED(exit_code)) {
+    m << "Terminated by signal " << WTERMSIG(exit_code);
+  }
+#  ifdef WCOREDUMP
+  if (WCOREDUMP(exit_code)) {
+    m << " (core dumped)";
+  }
+#  endif
+# endif  // GTEST_OS_WINDOWS
+
+  return m.GetString();
+}
+
+// Returns true if exit_status describes a process that was terminated
+// by a signal, or exited normally with a nonzero exit code.
+bool ExitedUnsuccessfully(int exit_status) {
+  return !ExitedWithCode(0)(exit_status);
+}
+
+# if !GTEST_OS_WINDOWS
+// Generates a textual failure message when a death test finds more than
+// one thread running, or cannot determine the number of threads, prior
+// to executing the given statement.  It is the responsibility of the
+// caller not to pass a thread_count of 1.
+static String DeathTestThreadWarning(size_t thread_count) {
+  Message msg;
+  msg << "Death tests use fork(), which is unsafe particularly"
+      << " in a threaded context. For this test, " << GTEST_NAME_ << " ";
+  if (thread_count == 0)
+    msg << "couldn't detect the number of threads.";
+  else
+    msg << "detected " << thread_count << " threads.";
+  return msg.GetString();
+}
+# endif  // !GTEST_OS_WINDOWS
+
+// Flag characters for reporting a death test that did not die.
+static const char kDeathTestLived = 'L';
+static const char kDeathTestReturned = 'R';
+static const char kDeathTestThrew = 'T';
+static const char kDeathTestInternalError = 'I';
+
+// An enumeration describing all of the possible ways that a death test can
+// conclude.  DIED means that the process died while executing the test
+// code; LIVED means that process lived beyond the end of the test code;
+// RETURNED means that the test statement attempted to execute a return
+// statement, which is not allowed; THREW means that the test statement
+// returned control by throwing an exception.  IN_PROGRESS means the test
+// has not yet concluded.
+// TODO(vladl@google.com): Unify names and possibly values for
+// AbortReason, DeathTestOutcome, and flag characters above.
+enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW };
+
+// Routine for aborting the program which is safe to call from an
+// exec-style death test child process, in which case the error
+// message is propagated back to the parent process.  Otherwise, the
+// message is simply printed to stderr.  In either case, the program
+// then exits with status 1.
+void DeathTestAbort(const String& message) {
+  // On a POSIX system, this function may be called from a threadsafe-style
+  // death test child process, which operates on a very small stack.  Use
+  // the heap for any additional non-minuscule memory requirements.
+  const InternalRunDeathTestFlag* const flag =
+      GetUnitTestImpl()->internal_run_death_test_flag();
+  if (flag != NULL) {
+    FILE* parent = posix::FDOpen(flag->write_fd(), "w");
+    fputc(kDeathTestInternalError, parent);
+    fprintf(parent, "%s", message.c_str());
+    fflush(parent);
+    _exit(1);
+  } else {
+    fprintf(stderr, "%s", message.c_str());
+    fflush(stderr);
+    posix::Abort();
+  }
+}
+
+// A replacement for CHECK that calls DeathTestAbort if the assertion
+// fails.
+# define GTEST_DEATH_TEST_CHECK_(expression) \
+  do { \
+    if (!::testing::internal::IsTrue(expression)) { \
+      DeathTestAbort(::testing::internal::String::Format( \
+          "CHECK failed: File %s, line %d: %s", \
+          __FILE__, __LINE__, #expression)); \
+    } \
+  } while (::testing::internal::AlwaysFalse())
+
+// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for
+// evaluating any system call that fulfills two conditions: it must return
+// -1 on failure, and set errno to EINTR when it is interrupted and
+// should be tried again.  The macro expands to a loop that repeatedly
+// evaluates the expression as long as it evaluates to -1 and sets
+// errno to EINTR.  If the expression evaluates to -1 but errno is
+// something other than EINTR, DeathTestAbort is called.
+# define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \
+  do { \
+    int gtest_retval; \
+    do { \
+      gtest_retval = (expression); \
+    } while (gtest_retval == -1 && errno == EINTR); \
+    if (gtest_retval == -1) { \
+      DeathTestAbort(::testing::internal::String::Format( \
+          "CHECK failed: File %s, line %d: %s != -1", \
+          __FILE__, __LINE__, #expression)); \
+    } \
+  } while (::testing::internal::AlwaysFalse())
+
+// Returns the message describing the last system error in errno.
+String GetLastErrnoDescription() {
+    return String(errno == 0 ? "" : posix::StrError(errno));
+}
+
+// This is called from a death test parent process to read a failure
+// message from the death test child process and log it with the FATAL
+// severity. On Windows, the message is read from a pipe handle. On other
+// platforms, it is read from a file descriptor.
+static void FailFromInternalError(int fd) {
+  Message error;
+  char buffer[256];
+  int num_read;
+
+  do {
+    while ((num_read = posix::Read(fd, buffer, 255)) > 0) {
+      buffer[num_read] = '\0';
+      error << buffer;
+    }
+  } while (num_read == -1 && errno == EINTR);
+
+  if (num_read == 0) {
+    GTEST_LOG_(FATAL) << error.GetString();
+  } else {
+    const int last_error = errno;
+    GTEST_LOG_(FATAL) << "Error while reading death test internal: "
+                      << GetLastErrnoDescription() << " [" << last_error << "]";
+  }
+}
+
+// Death test constructor.  Increments the running death test count
+// for the current test.
+DeathTest::DeathTest() {
+  TestInfo* const info = GetUnitTestImpl()->current_test_info();
+  if (info == NULL) {
+    DeathTestAbort("Cannot run a death test outside of a TEST or "
+                   "TEST_F construct");
+  }
+}
+
+// Creates and returns a death test by dispatching to the current
+// death test factory.
+bool DeathTest::Create(const char* statement, const RE* regex,
+                       const char* file, int line, DeathTest** test) {
+  return GetUnitTestImpl()->death_test_factory()->Create(
+      statement, regex, file, line, test);
+}
+
+const char* DeathTest::LastMessage() {
+  return last_death_test_message_.c_str();
+}
+
+void DeathTest::set_last_death_test_message(const String& message) {
+  last_death_test_message_ = message;
+}
+
+String DeathTest::last_death_test_message_;
+
+// Provides cross platform implementation for some death functionality.
+class DeathTestImpl : public DeathTest {
+ protected:
+  DeathTestImpl(const char* a_statement, const RE* a_regex)
+      : statement_(a_statement),
+        regex_(a_regex),
+        spawned_(false),
+        status_(-1),
+        outcome_(IN_PROGRESS),
+        read_fd_(-1),
+        write_fd_(-1) {}
+
+  // read_fd_ is expected to be closed and cleared by a derived class.
+  ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
+
+  void Abort(AbortReason reason);
+  virtual bool Passed(bool status_ok);
+
+  const char* statement() const { return statement_; }
+  const RE* regex() const { return regex_; }
+  bool spawned() const { return spawned_; }
+  void set_spawned(bool is_spawned) { spawned_ = is_spawned; }
+  int status() const { return status_; }
+  void set_status(int a_status) { status_ = a_status; }
+  DeathTestOutcome outcome() const { return outcome_; }
+  void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; }
+  int read_fd() const { return read_fd_; }
+  void set_read_fd(int fd) { read_fd_ = fd; }
+  int write_fd() const { return write_fd_; }
+  void set_write_fd(int fd) { write_fd_ = fd; }
+
+  // Called in the parent process only. Reads the result code of the death
+  // test child process via a pipe, interprets it to set the outcome_
+  // member, and closes read_fd_.  Outputs diagnostics and terminates in
+  // case of unexpected codes.
+  void ReadAndInterpretStatusByte();
+
+ private:
+  // The textual content of the code this object is testing.  This class
+  // doesn't own this string and should not attempt to delete it.
+  const char* const statement_;
+  // The regular expression which test output must match.  DeathTestImpl
+  // doesn't own this object and should not attempt to delete it.
+  const RE* const regex_;
+  // True if the death test child process has been successfully spawned.
+  bool spawned_;
+  // The exit status of the child process.
+  int status_;
+  // How the death test concluded.
+  DeathTestOutcome outcome_;
+  // Descriptor to the read end of the pipe to the child process.  It is
+  // always -1 in the child process.  The child keeps its write end of the
+  // pipe in write_fd_.
+  int read_fd_;
+  // Descriptor to the child's write end of the pipe to the parent process.
+  // It is always -1 in the parent process.  The parent keeps its end of the
+  // pipe in read_fd_.
+  int write_fd_;
+};
+
+// Called in the parent process only. Reads the result code of the death
+// test child process via a pipe, interprets it to set the outcome_
+// member, and closes read_fd_.  Outputs diagnostics and terminates in
+// case of unexpected codes.
+void DeathTestImpl::ReadAndInterpretStatusByte() {
+  char flag;
+  int bytes_read;
+
+  // The read() here blocks until data is available (signifying the
+  // failure of the death test) or until the pipe is closed (signifying
+  // its success), so it's okay to call this in the parent before
+  // the child process has exited.
+  do {
+    bytes_read = posix::Read(read_fd(), &flag, 1);
+  } while (bytes_read == -1 && errno == EINTR);
+
+  if (bytes_read == 0) {
+    set_outcome(DIED);
+  } else if (bytes_read == 1) {
+    switch (flag) {
+      case kDeathTestReturned:
+        set_outcome(RETURNED);
+        break;
+      case kDeathTestThrew:
+        set_outcome(THREW);
+        break;
+      case kDeathTestLived:
+        set_outcome(LIVED);
+        break;
+      case kDeathTestInternalError:
+        FailFromInternalError(read_fd());  // Does not return.
+        break;
+      default:
+        GTEST_LOG_(FATAL) << "Death test child process reported "
+                          << "unexpected status byte ("
+                          << static_cast<unsigned int>(flag) << ")";
+    }
+  } else {
+    GTEST_LOG_(FATAL) << "Read from death test child process failed: "
+                      << GetLastErrnoDescription();
+  }
+  GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd()));
+  set_read_fd(-1);
+}
+
+// Signals that the death test code which should have exited, didn't.
+// Should be called only in a death test child process.
+// Writes a status byte to the child's status file descriptor, then
+// calls _exit(1).
+void DeathTestImpl::Abort(AbortReason reason) {
+  // The parent process considers the death test to be a failure if
+  // it finds any data in our pipe.  So, here we write a single flag byte
+  // to the pipe, then exit.
+  const char status_ch =
+      reason == TEST_DID_NOT_DIE ? kDeathTestLived :
+      reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned;
+
+  GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1));
+  // We are leaking the descriptor here because on some platforms (i.e.,
+  // when built as Windows DLL), destructors of global objects will still
+  // run after calling _exit(). On such systems, write_fd_ will be
+  // indirectly closed from the destructor of UnitTestImpl, causing double
+  // close if it is also closed here. On debug configurations, double close
+  // may assert. As there are no in-process buffers to flush here, we are
+  // relying on the OS to close the descriptor after the process terminates
+  // when the destructors are not run.
+  _exit(1);  // Exits w/o any normal exit hooks (we were supposed to crash)
+}
+
+// Returns an indented copy of stderr output for a death test.
+// This makes distinguishing death test output lines from regular log lines
+// much easier.
+static ::std::string FormatDeathTestOutput(const ::std::string& output) {
+  ::std::string ret;
+  for (size_t at = 0; ; ) {
+    const size_t line_end = output.find('\n', at);
+    ret += "[  DEATH   ] ";
+    if (line_end == ::std::string::npos) {
+      ret += output.substr(at);
+      break;
+    }
+    ret += output.substr(at, line_end + 1 - at);
+    at = line_end + 1;
+  }
+  return ret;
+}
+
+// Assesses the success or failure of a death test, using both private
+// members which have previously been set, and one argument:
+//
+// Private data members:
+//   outcome:  An enumeration describing how the death test
+//             concluded: DIED, LIVED, THREW, or RETURNED.  The death test
+//             fails in the latter three cases.
+//   status:   The exit status of the child process. On *nix, it is in the
+//             in the format specified by wait(2). On Windows, this is the
+//             value supplied to the ExitProcess() API or a numeric code
+//             of the exception that terminated the program.
+//   regex:    A regular expression object to be applied to
+//             the test's captured standard error output; the death test
+//             fails if it does not match.
+//
+// Argument:
+//   status_ok: true if exit_status is acceptable in the context of
+//              this particular death test, which fails if it is false
+//
+// Returns true iff all of the above conditions are met.  Otherwise, the
+// first failing condition, in the order given above, is the one that is
+// reported. Also sets the last death test message string.
+bool DeathTestImpl::Passed(bool status_ok) {
+  if (!spawned())
+    return false;
+
+  const String error_message = GetCapturedStderr();
+
+  bool success = false;
+  Message buffer;
+
+  buffer << "Death test: " << statement() << "\n";
+  switch (outcome()) {
+    case LIVED:
+      buffer << "    Result: failed to die.\n"
+             << " Error msg:\n" << FormatDeathTestOutput(error_message);
+      break;
+    case THREW:
+      buffer << "    Result: threw an exception.\n"
+             << " Error msg:\n" << FormatDeathTestOutput(error_message);
+      break;
+    case RETURNED:
+      buffer << "    Result: illegal return in test statement.\n"
+             << " Error msg:\n" << FormatDeathTestOutput(error_message);
+      break;
+    case DIED:
+      if (status_ok) {
+        const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
+        if (matched) {
+          success = true;
+        } else {
+          buffer << "    Result: died but not with expected error.\n"
+                 << "  Expected: " << regex()->pattern() << "\n"
+                 << "Actual msg:\n" << FormatDeathTestOutput(error_message);
+        }
+      } else {
+        buffer << "    Result: died but not with expected exit code:\n"
+               << "            " << ExitSummary(status()) << "\n"
+               << "Actual msg:\n" << FormatDeathTestOutput(error_message);
+      }
+      break;
+    case IN_PROGRESS:
+    default:
+      GTEST_LOG_(FATAL)
+          << "DeathTest::Passed somehow called before conclusion of test";
+  }
+
+  DeathTest::set_last_death_test_message(buffer.GetString());
+  return success;
+}
+
+# if GTEST_OS_WINDOWS
+// WindowsDeathTest implements death tests on Windows. Due to the
+// specifics of starting new processes on Windows, death tests there are
+// always threadsafe, and Google Test considers the
+// --gtest_death_test_style=fast setting to be equivalent to
+// --gtest_death_test_style=threadsafe there.
+//
+// A few implementation notes:  Like the Linux version, the Windows
+// implementation uses pipes for child-to-parent communication. But due to
+// the specifics of pipes on Windows, some extra steps are required:
+//
+// 1. The parent creates a communication pipe and stores handles to both
+//    ends of it.
+// 2. The parent starts the child and provides it with the information
+//    necessary to acquire the handle to the write end of the pipe.
+// 3. The child acquires the write end of the pipe and signals the parent
+//    using a Windows event.
+// 4. Now the parent can release the write end of the pipe on its side. If
+//    this is done before step 3, the object's reference count goes down to
+//    0 and it is destroyed, preventing the child from acquiring it. The
+//    parent now has to release it, or read operations on the read end of
+//    the pipe will not return when the child terminates.
+// 5. The parent reads child's output through the pipe (outcome code and
+//    any possible error messages) from the pipe, and its stderr and then
+//    determines whether to fail the test.
+//
+// Note: to distinguish Win32 API calls from the local method and function
+// calls, the former are explicitly resolved in the global namespace.
+//
+class WindowsDeathTest : public DeathTestImpl {
+ public:
+  WindowsDeathTest(const char* a_statement,
+                   const RE* a_regex,
+                   const char* file,
+                   int line)
+      : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {}
+
+  // All of these virtual functions are inherited from DeathTest.
+  virtual int Wait();
+  virtual TestRole AssumeRole();
+
+ private:
+  // The name of the file in which the death test is located.
+  const char* const file_;
+  // The line number on which the death test is located.
+  const int line_;
+  // Handle to the write end of the pipe to the child process.
+  AutoHandle write_handle_;
+  // Child process handle.
+  AutoHandle child_handle_;
+  // Event the child process uses to signal the parent that it has
+  // acquired the handle to the write end of the pipe. After seeing this
+  // event the parent can release its own handles to make sure its
+  // ReadFile() calls return when the child terminates.
+  AutoHandle event_handle_;
+};
+
+// Waits for the child in a death test to exit, returning its exit
+// status, or 0 if no child process exists.  As a side effect, sets the
+// outcome data member.
+int WindowsDeathTest::Wait() {
+  if (!spawned())
+    return 0;
+
+  // Wait until the child either signals that it has acquired the write end
+  // of the pipe or it dies.
+  const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() };
+  switch (::WaitForMultipleObjects(2,
+                                   wait_handles,
+                                   FALSE,  // Waits for any of the handles.
+                                   INFINITE)) {
+    case WAIT_OBJECT_0:
+    case WAIT_OBJECT_0 + 1:
+      break;
+    default:
+      GTEST_DEATH_TEST_CHECK_(false);  // Should not get here.
+  }
+
+  // The child has acquired the write end of the pipe or exited.
+  // We release the handle on our side and continue.
+  write_handle_.Reset();
+  event_handle_.Reset();
+
+  ReadAndInterpretStatusByte();
+
+  // Waits for the child process to exit if it haven't already. This
+  // returns immediately if the child has already exited, regardless of
+  // whether previous calls to WaitForMultipleObjects synchronized on this
+  // handle or not.
+  GTEST_DEATH_TEST_CHECK_(
+      WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(),
+                                             INFINITE));
+  DWORD status_code;
+  GTEST_DEATH_TEST_CHECK_(
+      ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE);
+  child_handle_.Reset();
+  set_status(static_cast<int>(status_code));
+  return status();
+}
+
+// The AssumeRole process for a Windows death test.  It creates a child
+// process with the same executable as the current process to run the
+// death test.  The child process is given the --gtest_filter and
+// --gtest_internal_run_death_test flags such that it knows to run the
+// current death test only.
+DeathTest::TestRole WindowsDeathTest::AssumeRole() {
+  const UnitTestImpl* const impl = GetUnitTestImpl();
+  const InternalRunDeathTestFlag* const flag =
+      impl->internal_run_death_test_flag();
+  const TestInfo* const info = impl->current_test_info();
+  const int death_test_index = info->result()->death_test_count();
+
+  if (flag != NULL) {
+    // ParseInternalRunDeathTestFlag() has performed all the necessary
+    // processing.
+    set_write_fd(flag->write_fd());
+    return EXECUTE_TEST;
+  }
+
+  // WindowsDeathTest uses an anonymous pipe to communicate results of
+  // a death test.
+  SECURITY_ATTRIBUTES handles_are_inheritable = {
+    sizeof(SECURITY_ATTRIBUTES), NULL, TRUE };
+  HANDLE read_handle, write_handle;
+  GTEST_DEATH_TEST_CHECK_(
+      ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable,
+                   0)  // Default buffer size.
+      != FALSE);
+  set_read_fd(::_open_osfhandle(reinterpret_cast<intptr_t>(read_handle),
+                                O_RDONLY));
+  write_handle_.Reset(write_handle);
+  event_handle_.Reset(::CreateEvent(
+      &handles_are_inheritable,
+      TRUE,    // The event will automatically reset to non-signaled state.
+      FALSE,   // The initial state is non-signalled.
+      NULL));  // The even is unnamed.
+  GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL);
+  const String filter_flag = String::Format("--%s%s=%s.%s",
+                                            GTEST_FLAG_PREFIX_, kFilterFlag,
+                                            info->test_case_name(),
+                                            info->name());
+  const String internal_flag = String::Format(
+    "--%s%s=%s|%d|%d|%u|%Iu|%Iu",
+      GTEST_FLAG_PREFIX_,
+      kInternalRunDeathTestFlag,
+      file_, line_,
+      death_test_index,
+      static_cast<unsigned int>(::GetCurrentProcessId()),
+      // size_t has the same with as pointers on both 32-bit and 64-bit
+      // Windows platforms.
+      // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx.
+      reinterpret_cast<size_t>(write_handle),
+      reinterpret_cast<size_t>(event_handle_.Get()));
+
+  char executable_path[_MAX_PATH + 1];  // NOLINT
+  GTEST_DEATH_TEST_CHECK_(
+      _MAX_PATH + 1 != ::GetModuleFileNameA(NULL,
+                                            executable_path,
+                                            _MAX_PATH));
+
+  String command_line = String::Format("%s %s \"%s\"",
+                                       ::GetCommandLineA(),
+                                       filter_flag.c_str(),
+                                       internal_flag.c_str());
+
+  DeathTest::set_last_death_test_message("");
+
+  CaptureStderr();
+  // Flush the log buffers since the log streams are shared with the child.
+  FlushInfoLog();
+
+  // The child process will share the standard handles with the parent.
+  STARTUPINFOA startup_info;
+  memset(&startup_info, 0, sizeof(STARTUPINFO));
+  startup_info.dwFlags = STARTF_USESTDHANDLES;
+  startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE);
+  startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE);
+  startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE);
+
+  PROCESS_INFORMATION process_info;
+  GTEST_DEATH_TEST_CHECK_(::CreateProcessA(
+      executable_path,
+      const_cast<char*>(command_line.c_str()),
+      NULL,   // Retuned process handle is not inheritable.
+      NULL,   // Retuned thread handle is not inheritable.
+      TRUE,   // Child inherits all inheritable handles (for write_handle_).
+      0x0,    // Default creation flags.
+      NULL,   // Inherit the parent's environment.
+      UnitTest::GetInstance()->original_working_dir(),
+      &startup_info,
+      &process_info) != FALSE);
+  child_handle_.Reset(process_info.hProcess);
+  ::CloseHandle(process_info.hThread);
+  set_spawned(true);
+  return OVERSEE_TEST;
+}
+# else  // We are not on Windows.
+
+// ForkingDeathTest provides implementations for most of the abstract
+// methods of the DeathTest interface.  Only the AssumeRole method is
+// left undefined.
+class ForkingDeathTest : public DeathTestImpl {
+ public:
+  ForkingDeathTest(const char* statement, const RE* regex);
+
+  // All of these virtual functions are inherited from DeathTest.
+  virtual int Wait();
+
+ protected:
+  void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; }
+
+ private:
+  // PID of child process during death test; 0 in the child process itself.
+  pid_t child_pid_;
+};
+
+// Constructs a ForkingDeathTest.
+ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
+    : DeathTestImpl(a_statement, a_regex),
+      child_pid_(-1) {}
+
+// Waits for the child in a death test to exit, returning its exit
+// status, or 0 if no child process exists.  As a side effect, sets the
+// outcome data member.
+int ForkingDeathTest::Wait() {
+  if (!spawned())
+    return 0;
+
+  ReadAndInterpretStatusByte();
+
+  int status_value;
+  GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0));
+  set_status(status_value);
+  return status_value;
+}
+
+// A concrete death test class that forks, then immediately runs the test
+// in the child process.
+class NoExecDeathTest : public ForkingDeathTest {
+ public:
+  NoExecDeathTest(const char* a_statement, const RE* a_regex) :
+      ForkingDeathTest(a_statement, a_regex) { }
+  virtual TestRole AssumeRole();
+};
+
+// The AssumeRole process for a fork-and-run death test.  It implements a
+// straightforward fork, with a simple pipe to transmit the status byte.
+DeathTest::TestRole NoExecDeathTest::AssumeRole() {
+  const size_t thread_count = GetThreadCount();
+  if (thread_count != 1) {
+    GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
+  }
+
+  int pipe_fd[2];
+  GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
+
+  DeathTest::set_last_death_test_message("");
+  CaptureStderr();
+  // When we fork the process below, the log file buffers are copied, but the
+  // file descriptors are shared.  We flush all log files here so that closing
+  // the file descriptors in the child process doesn't throw off the
+  // synchronization between descriptors and buffers in the parent process.
+  // This is as close to the fork as possible to avoid a race condition in case
+  // there are multiple threads running before the death test, and another
+  // thread writes to the log file.
+  FlushInfoLog();
+
+  const pid_t child_pid = fork();
+  GTEST_DEATH_TEST_CHECK_(child_pid != -1);
+  set_child_pid(child_pid);
+  if (child_pid == 0) {
+    GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
+    set_write_fd(pipe_fd[1]);
+    // Redirects all logging to stderr in the child process to prevent
+    // concurrent writes to the log files.  We capture stderr in the parent
+    // process and append the child process' output to a log.
+    LogToStderr();
+    // Event forwarding to the listeners of event listener API mush be shut
+    // down in death test subprocesses.
+    GetUnitTestImpl()->listeners()->SuppressEventForwarding();
+    return EXECUTE_TEST;
+  } else {
+    GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
+    set_read_fd(pipe_fd[0]);
+    set_spawned(true);
+    return OVERSEE_TEST;
+  }
+}
+
+// A concrete death test class that forks and re-executes the main
+// program from the beginning, with command-line flags set that cause
+// only this specific death test to be run.
+class ExecDeathTest : public ForkingDeathTest {
+ public:
+  ExecDeathTest(const char* a_statement, const RE* a_regex,
+                const char* file, int line) :
+      ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { }
+  virtual TestRole AssumeRole();
+ private:
+  // The name of the file in which the death test is located.
+  const char* const file_;
+  // The line number on which the death test is located.
+  const int line_;
+};
+
+// Utility class for accumulating command-line arguments.
+class Arguments {
+ public:
+  Arguments() {
+    args_.push_back(NULL);
+  }
+
+  ~Arguments() {
+    for (std::vector<char*>::iterator i = args_.begin(); i != args_.end();
+         ++i) {
+      free(*i);
+    }
+  }
+  void AddArgument(const char* argument) {
+    args_.insert(args_.end() - 1, posix::StrDup(argument));
+  }
+
+  template <typename Str>
+  void AddArguments(const ::std::vector<Str>& arguments) {
+    for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
+         i != arguments.end();
+         ++i) {
+      args_.insert(args_.end() - 1, posix::StrDup(i->c_str()));
+    }
+  }
+  char* const* Argv() {
+    return &args_[0];
+  }
+ private:
+  std::vector<char*> args_;
+};
+
+// A struct that encompasses the arguments to the child process of a
+// threadsafe-style death test process.
+struct ExecDeathTestArgs {
+  char* const* argv;  // Command-line arguments for the child's call to exec
+  int close_fd;       // File descriptor to close; the read end of a pipe
+};
+
+#  if GTEST_OS_MAC
+inline char** GetEnviron() {
+  // When Google Test is built as a framework on MacOS X, the environ variable
+  // is unavailable. Apple's documentation (man environ) recommends using
+  // _NSGetEnviron() instead.
+  return *_NSGetEnviron();
+}
+#  else
+// Some POSIX platforms expect you to declare environ. extern "C" makes
+// it reside in the global namespace.
+extern "C" char** environ;
+inline char** GetEnviron() { return environ; }
+#  endif  // GTEST_OS_MAC
+
+// The main function for a threadsafe-style death test child process.
+// This function is called in a clone()-ed process and thus must avoid
+// any potentially unsafe operations like malloc or libc functions.
+static int ExecDeathTestChildMain(void* child_arg) {
+  ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg);
+  GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd));
+
+  // We need to execute the test program in the same environment where
+  // it was originally invoked.  Therefore we change to the original
+  // working directory first.
+  const char* const original_dir =
+      UnitTest::GetInstance()->original_working_dir();
+  // We can safely call chdir() as it's a direct system call.
+  if (chdir(original_dir) != 0) {
+    DeathTestAbort(String::Format("chdir(\"%s\") failed: %s",
+                                  original_dir,
+                                  GetLastErrnoDescription().c_str()));
+    return EXIT_FAILURE;
+  }
+
+  // We can safely call execve() as it's a direct system call.  We
+  // cannot use execvp() as it's a libc function and thus potentially
+  // unsafe.  Since execve() doesn't search the PATH, the user must
+  // invoke the test program via a valid path that contains at least
+  // one path separator.
+  execve(args->argv[0], args->argv, GetEnviron());
+  DeathTestAbort(String::Format("execve(%s, ...) in %s failed: %s",
+                                args->argv[0],
+                                original_dir,
+                                GetLastErrnoDescription().c_str()));
+  return EXIT_FAILURE;
+}
+
+// Two utility routines that together determine the direction the stack
+// grows.
+// This could be accomplished more elegantly by a single recursive
+// function, but we want to guard against the unlikely possibility of
+// a smart compiler optimizing the recursion away.
+//
+// GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining
+// StackLowerThanAddress into StackGrowsDown, which then doesn't give
+// correct answer.
+bool StackLowerThanAddress(const void* ptr) GTEST_NO_INLINE_;
+bool StackLowerThanAddress(const void* ptr) {
+  int dummy;
+  return &dummy < ptr;
+}
+
+bool StackGrowsDown() {
+  int dummy;
+  return StackLowerThanAddress(&dummy);
+}
+
+// A threadsafe implementation of fork(2) for threadsafe-style death tests
+// that uses clone(2).  It dies with an error message if anything goes
+// wrong.
+static pid_t ExecDeathTestFork(char* const* argv, int close_fd) {
+  ExecDeathTestArgs args = { argv, close_fd };
+  pid_t child_pid = -1;
+
+#  if GTEST_HAS_CLONE
+  const bool use_fork = GTEST_FLAG(death_test_use_fork);
+
+  if (!use_fork) {
+    static const bool stack_grows_down = StackGrowsDown();
+    const size_t stack_size = getpagesize();
+    // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead.
+    void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE,
+                             MAP_ANON | MAP_PRIVATE, -1, 0);
+    GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED);
+    void* const stack_top =
+        static_cast<char*>(stack) + (stack_grows_down ? stack_size : 0);
+
+    child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args);
+
+    GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1);
+  }
+#  else
+  const bool use_fork = true;
+#  endif  // GTEST_HAS_CLONE
+
+  if (use_fork && (child_pid = fork()) == 0) {
+      ExecDeathTestChildMain(&args);
+      _exit(0);
+  }
+
+  GTEST_DEATH_TEST_CHECK_(child_pid != -1);
+  return child_pid;
+}
+
+// The AssumeRole process for a fork-and-exec death test.  It re-executes the
+// main program from the beginning, setting the --gtest_filter
+// and --gtest_internal_run_death_test flags to cause only the current
+// death test to be re-run.
+DeathTest::TestRole ExecDeathTest::AssumeRole() {
+  const UnitTestImpl* const impl = GetUnitTestImpl();
+  const InternalRunDeathTestFlag* const flag =
+      impl->internal_run_death_test_flag();
+  const TestInfo* const info = impl->current_test_info();
+  const int death_test_index = info->result()->death_test_count();
+
+  if (flag != NULL) {
+    set_write_fd(flag->write_fd());
+    return EXECUTE_TEST;
+  }
+
+  int pipe_fd[2];
+  GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
+  // Clear the close-on-exec flag on the write end of the pipe, lest
+  // it be closed when the child process does an exec:
+  GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);
+
+  const String filter_flag =
+      String::Format("--%s%s=%s.%s",
+                     GTEST_FLAG_PREFIX_, kFilterFlag,
+                     info->test_case_name(), info->name());
+  const String internal_flag =
+      String::Format("--%s%s=%s|%d|%d|%d",
+                     GTEST_FLAG_PREFIX_, kInternalRunDeathTestFlag,
+                     file_, line_, death_test_index, pipe_fd[1]);
+  Arguments args;
+  args.AddArguments(GetArgvs());
+  args.AddArgument(filter_flag.c_str());
+  args.AddArgument(internal_flag.c_str());
+
+  DeathTest::set_last_death_test_message("");
+
+  CaptureStderr();
+  // See the comment in NoExecDeathTest::AssumeRole for why the next line
+  // is necessary.
+  FlushInfoLog();
+
+  const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]);
+  GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
+  set_child_pid(child_pid);
+  set_read_fd(pipe_fd[0]);
+  set_spawned(true);
+  return OVERSEE_TEST;
+}
+
+# endif  // !GTEST_OS_WINDOWS
+
+// Creates a concrete DeathTest-derived class that depends on the
+// --gtest_death_test_style flag, and sets the pointer pointed to
+// by the "test" argument to its address.  If the test should be
+// skipped, sets that pointer to NULL.  Returns true, unless the
+// flag is set to an invalid value.
+bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex,
+                                     const char* file, int line,
+                                     DeathTest** test) {
+  UnitTestImpl* const impl = GetUnitTestImpl();
+  const InternalRunDeathTestFlag* const flag =
+      impl->internal_run_death_test_flag();
+  const int death_test_index = impl->current_test_info()
+      ->increment_death_test_count();
+
+  if (flag != NULL) {
+    if (death_test_index > flag->index()) {
+      DeathTest::set_last_death_test_message(String::Format(
+          "Death test count (%d) somehow exceeded expected maximum (%d)",
+          death_test_index, flag->index()));
+      return false;
+    }
+
+    if (!(flag->file() == file && flag->line() == line &&
+          flag->index() == death_test_index)) {
+      *test = NULL;
+      return true;
+    }
+  }
+
+# if GTEST_OS_WINDOWS
+
+  if (GTEST_FLAG(death_test_style) == "threadsafe" ||
+      GTEST_FLAG(death_test_style) == "fast") {
+    *test = new WindowsDeathTest(statement, regex, file, line);
+  }
+
+# else
+
+  if (GTEST_FLAG(death_test_style) == "threadsafe") {
+    *test = new ExecDeathTest(statement, regex, file, line);
+  } else if (GTEST_FLAG(death_test_style) == "fast") {
+    *test = new NoExecDeathTest(statement, regex);
+  }
+
+# endif  // GTEST_OS_WINDOWS
+
+  else {  // NOLINT - this is more readable than unbalanced brackets inside #if.
+    DeathTest::set_last_death_test_message(String::Format(
+        "Unknown death test style \"%s\" encountered",
+        GTEST_FLAG(death_test_style).c_str()));
+    return false;
+  }
+
+  return true;
+}
+
+// Splits a given string on a given delimiter, populating a given
+// vector with the fields.  GTEST_HAS_DEATH_TEST implies that we have
+// ::std::string, so we can use it here.
+static void SplitString(const ::std::string& str, char delimiter,
+                        ::std::vector< ::std::string>* dest) {
+  ::std::vector< ::std::string> parsed;
+  ::std::string::size_type pos = 0;
+  while (::testing::internal::AlwaysTrue()) {
+    const ::std::string::size_type colon = str.find(delimiter, pos);
+    if (colon == ::std::string::npos) {
+      parsed.push_back(str.substr(pos));
+      break;
+    } else {
+      parsed.push_back(str.substr(pos, colon - pos));
+      pos = colon + 1;
+    }
+  }
+  dest->swap(parsed);
+}
+
+# if GTEST_OS_WINDOWS
+// Recreates the pipe and event handles from the provided parameters,
+// signals the event, and returns a file descriptor wrapped around the pipe
+// handle. This function is called in the child process only.
+int GetStatusFileDescriptor(unsigned int parent_process_id,
+                            size_t write_handle_as_size_t,
+                            size_t event_handle_as_size_t) {
+  AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE,
+                                                   FALSE,  // Non-inheritable.
+                                                   parent_process_id));
+  if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) {
+    DeathTestAbort(String::Format("Unable to open parent process %u",
+                                  parent_process_id));
+  }
+
+  // TODO(vladl@google.com): Replace the following check with a
+  // compile-time assertion when available.
+  GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t));
+
+  const HANDLE write_handle =
+      reinterpret_cast<HANDLE>(write_handle_as_size_t);
+  HANDLE dup_write_handle;
+
+  // The newly initialized handle is accessible only in in the parent
+  // process. To obtain one accessible within the child, we need to use
+  // DuplicateHandle.
+  if (!::DuplicateHandle(parent_process_handle.Get(), write_handle,
+                         ::GetCurrentProcess(), &dup_write_handle,
+                         0x0,    // Requested privileges ignored since
+                                 // DUPLICATE_SAME_ACCESS is used.
+                         FALSE,  // Request non-inheritable handler.
+                         DUPLICATE_SAME_ACCESS)) {
+    DeathTestAbort(String::Format(
+        "Unable to duplicate the pipe handle %Iu from the parent process %u",
+        write_handle_as_size_t, parent_process_id));
+  }
+
+  const HANDLE event_handle = reinterpret_cast<HANDLE>(event_handle_as_size_t);
+  HANDLE dup_event_handle;
+
+  if (!::DuplicateHandle(parent_process_handle.Get(), event_handle,
+                         ::GetCurrentProcess(), &dup_event_handle,
+                         0x0,
+                         FALSE,
+                         DUPLICATE_SAME_ACCESS)) {
+    DeathTestAbort(String::Format(
+        "Unable to duplicate the event handle %Iu from the parent process %u",
+        event_handle_as_size_t, parent_process_id));
+  }
+
+  const int write_fd =
+      ::_open_osfhandle(reinterpret_cast<intptr_t>(dup_write_handle), O_APPEND);
+  if (write_fd == -1) {
+    DeathTestAbort(String::Format(
+        "Unable to convert pipe handle %Iu to a file descriptor",
+        write_handle_as_size_t));
+  }
+
+  // Signals the parent that the write end of the pipe has been acquired
+  // so the parent can release its own write end.
+  ::SetEvent(dup_event_handle);
+
+  return write_fd;
+}
+# endif  // GTEST_OS_WINDOWS
+
+// Returns a newly created InternalRunDeathTestFlag object with fields
+// initialized from the GTEST_FLAG(internal_run_death_test) flag if
+// the flag is specified; otherwise returns NULL.
+InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() {
+  if (GTEST_FLAG(internal_run_death_test) == "") return NULL;
+
+  // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we
+  // can use it here.
+  int line = -1;
+  int index = -1;
+  ::std::vector< ::std::string> fields;
+  SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
+  int write_fd = -1;
+
+# if GTEST_OS_WINDOWS
+
+  unsigned int parent_process_id = 0;
+  size_t write_handle_as_size_t = 0;
+  size_t event_handle_as_size_t = 0;
+
+  if (fields.size() != 6
+      || !ParseNaturalNumber(fields[1], &line)
+      || !ParseNaturalNumber(fields[2], &index)
+      || !ParseNaturalNumber(fields[3], &parent_process_id)
+      || !ParseNaturalNumber(fields[4], &write_handle_as_size_t)
+      || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) {
+    DeathTestAbort(String::Format(
+        "Bad --gtest_internal_run_death_test flag: %s",
+        GTEST_FLAG(internal_run_death_test).c_str()));
+  }
+  write_fd = GetStatusFileDescriptor(parent_process_id,
+                                     write_handle_as_size_t,
+                                     event_handle_as_size_t);
+# else
+
+  if (fields.size() != 4
+      || !ParseNaturalNumber(fields[1], &line)
+      || !ParseNaturalNumber(fields[2], &index)
+      || !ParseNaturalNumber(fields[3], &write_fd)) {
+    DeathTestAbort(String::Format(
+        "Bad --gtest_internal_run_death_test flag: %s",
+        GTEST_FLAG(internal_run_death_test).c_str()));
+  }
+
+# endif  // GTEST_OS_WINDOWS
+
+  return new InternalRunDeathTestFlag(fields[0], line, index, write_fd);
+}
+
+}  // namespace internal
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+}  // namespace testing
+// Copyright 2008, Google 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 Google 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.
+//
+// Authors: keith.ray@gmail.com (Keith Ray)
+
+
+#include <stdlib.h>
+
+#if GTEST_OS_WINDOWS_MOBILE
+# include <windows.h>
+#elif GTEST_OS_WINDOWS
+# include <direct.h>
+# include <io.h>
+#elif GTEST_OS_SYMBIAN || GTEST_OS_NACL
+// Symbian OpenC and NaCl have PATH_MAX in sys/syslimits.h
+# include <sys/syslimits.h>
+#else
+# include <limits.h>
+# include <climits>  // Some Linux distributions define PATH_MAX here.
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+#if GTEST_OS_WINDOWS
+# define GTEST_PATH_MAX_ _MAX_PATH
+#elif defined(PATH_MAX)
+# define GTEST_PATH_MAX_ PATH_MAX
+#elif defined(_XOPEN_PATH_MAX)
+# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX
+#else
+# define GTEST_PATH_MAX_ _POSIX_PATH_MAX
+#endif  // GTEST_OS_WINDOWS
+
+
+namespace testing {
+namespace internal {
+
+#if GTEST_OS_WINDOWS
+// On Windows, '\\' is the standard path separator, but many tools and the
+// Windows API also accept '/' as an alternate path separator. Unless otherwise
+// noted, a file path can contain either kind of path separators, or a mixture
+// of them.
+const char kPathSeparator = '\\';
+const char kAlternatePathSeparator = '/';
+const char kPathSeparatorString[] = "\\";
+const char kAlternatePathSeparatorString[] = "/";
+# if GTEST_OS_WINDOWS_MOBILE
+// Windows CE doesn't have a current directory. You should not use
+// the current directory in tests on Windows CE, but this at least
+// provides a reasonable fallback.
+const char kCurrentDirectoryString[] = "\\";
+// Windows CE doesn't define INVALID_FILE_ATTRIBUTES
+const DWORD kInvalidFileAttributes = 0xffffffff;
+# else
+const char kCurrentDirectoryString[] = ".\\";
+# endif  // GTEST_OS_WINDOWS_MOBILE
+#else
+const char kPathSeparator = '/';
+const char kPathSeparatorString[] = "/";
+const char kCurrentDirectoryString[] = "./";
+#endif  // GTEST_OS_WINDOWS
+
+// Returns whether the given character is a valid path separator.
+static bool IsPathSeparator(char c) {
+#if GTEST_HAS_ALT_PATH_SEP_
+  return (c == kPathSeparator) || (c == kAlternatePathSeparator);
+#else
+  return c == kPathSeparator;
+#endif
+}
+
+// Returns the current working directory, or "" if unsuccessful.
+FilePath FilePath::GetCurrentDir() {
+#if GTEST_OS_WINDOWS_MOBILE
+  // Windows CE doesn't have a current directory, so we just return
+  // something reasonable.
+  return FilePath(kCurrentDirectoryString);
+#elif GTEST_OS_WINDOWS
+  char cwd[GTEST_PATH_MAX_ + 1] = { '\0' };
+  return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
+#else
+  char cwd[GTEST_PATH_MAX_ + 1] = { '\0' };
+  return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd);
+#endif  // GTEST_OS_WINDOWS_MOBILE
+}
+
+// Returns a copy of the FilePath with the case-insensitive extension removed.
+// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
+// FilePath("dir/file"). If a case-insensitive extension is not
+// found, returns a copy of the original FilePath.
+FilePath FilePath::RemoveExtension(const char* extension) const {
+  String dot_extension(String::Format(".%s", extension));
+  if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) {
+    return FilePath(String(pathname_.c_str(), pathname_.length() - 4));
+  }
+  return *this;
+}
+
+// Returns a pointer to the last occurence of a valid path separator in
+// the FilePath. On Windows, for example, both '/' and '\' are valid path
+// separators. Returns NULL if no path separator was found.
+const char* FilePath::FindLastPathSeparator() const {
+  const char* const last_sep = strrchr(c_str(), kPathSeparator);
+#if GTEST_HAS_ALT_PATH_SEP_
+  const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator);
+  // Comparing two pointers of which only one is NULL is undefined.
+  if (last_alt_sep != NULL &&
+      (last_sep == NULL || last_alt_sep > last_sep)) {
+    return last_alt_sep;
+  }
+#endif
+  return last_sep;
+}
+
+// Returns a copy of the FilePath with the directory part removed.
+// Example: FilePath("path/to/file").RemoveDirectoryName() returns
+// FilePath("file"). If there is no directory part ("just_a_file"), it returns
+// the FilePath unmodified. If there is no file part ("just_a_dir/") it
+// returns an empty FilePath ("").
+// On Windows platform, '\' is the path separator, otherwise it is '/'.
+FilePath FilePath::RemoveDirectoryName() const {
+  const char* const last_sep = FindLastPathSeparator();
+  return last_sep ? FilePath(String(last_sep + 1)) : *this;
+}
+
+// RemoveFileName returns the directory path with the filename removed.
+// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
+// If the FilePath is "a_file" or "/a_file", RemoveFileName returns
+// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does
+// not have a file, like "just/a/dir/", it returns the FilePath unmodified.
+// On Windows platform, '\' is the path separator, otherwise it is '/'.
+FilePath FilePath::RemoveFileName() const {
+  const char* const last_sep = FindLastPathSeparator();
+  String dir;
+  if (last_sep) {
+    dir = String(c_str(), last_sep + 1 - c_str());
+  } else {
+    dir = kCurrentDirectoryString;
+  }
+  return FilePath(dir);
+}
+
+// Helper functions for naming files in a directory for xml output.
+
+// Given directory = "dir", base_name = "test", number = 0,
+// extension = "xml", returns "dir/test.xml". If number is greater
+// than zero (e.g., 12), returns "dir/test_12.xml".
+// On Windows platform, uses \ as the separator rather than /.
+FilePath FilePath::MakeFileName(const FilePath& directory,
+                                const FilePath& base_name,
+                                int number,
+                                const char* extension) {
+  String file;
+  if (number == 0) {
+    file = String::Format("%s.%s", base_name.c_str(), extension);
+  } else {
+    file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
+  }
+  return ConcatPaths(directory, FilePath(file));
+}
+
+// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
+// On Windows, uses \ as the separator rather than /.
+FilePath FilePath::ConcatPaths(const FilePath& directory,
+                               const FilePath& relative_path) {
+  if (directory.IsEmpty())
+    return relative_path;
+  const FilePath dir(directory.RemoveTrailingPathSeparator());
+  return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator,
+                                 relative_path.c_str()));
+}
+
+// Returns true if pathname describes something findable in the file-system,
+// either a file, directory, or whatever.
+bool FilePath::FileOrDirectoryExists() const {
+#if GTEST_OS_WINDOWS_MOBILE
+  LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
+  const DWORD attributes = GetFileAttributes(unicode);
+  delete [] unicode;
+  return attributes != kInvalidFileAttributes;
+#else
+  posix::StatStruct file_stat;
+  return posix::Stat(pathname_.c_str(), &file_stat) == 0;
+#endif  // GTEST_OS_WINDOWS_MOBILE
+}
+
+// Returns true if pathname describes a directory in the file-system
+// that exists.
+bool FilePath::DirectoryExists() const {
+  bool result = false;
+#if GTEST_OS_WINDOWS
+  // Don't strip off trailing separator if path is a root directory on
+  // Windows (like "C:\\").
+  const FilePath& path(IsRootDirectory() ? *this :
+                                           RemoveTrailingPathSeparator());
+#else
+  const FilePath& path(*this);
+#endif
+
+#if GTEST_OS_WINDOWS_MOBILE
+  LPCWSTR unicode = String::AnsiToUtf16(path.c_str());
+  const DWORD attributes = GetFileAttributes(unicode);
+  delete [] unicode;
+  if ((attributes != kInvalidFileAttributes) &&
+      (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
+    result = true;
+  }
+#else
+  posix::StatStruct file_stat;
+  result = posix::Stat(path.c_str(), &file_stat) == 0 &&
+      posix::IsDir(file_stat);
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+  return result;
+}
+
+// Returns true if pathname describes a root directory. (Windows has one
+// root directory per disk drive.)
+bool FilePath::IsRootDirectory() const {
+#if GTEST_OS_WINDOWS
+  // TODO(wan@google.com): on Windows a network share like
+  // \\server\share can be a root directory, although it cannot be the
+  // current directory.  Handle this properly.
+  return pathname_.length() == 3 && IsAbsolutePath();
+#else
+  return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
+#endif
+}
+
+// Returns true if pathname describes an absolute path.
+bool FilePath::IsAbsolutePath() const {
+  const char* const name = pathname_.c_str();
+#if GTEST_OS_WINDOWS
+  return pathname_.length() >= 3 &&
+     ((name[0] >= 'a' && name[0] <= 'z') ||
+      (name[0] >= 'A' && name[0] <= 'Z')) &&
+     name[1] == ':' &&
+     IsPathSeparator(name[2]);
+#else
+  return IsPathSeparator(name[0]);
+#endif
+}
+
+// Returns a pathname for a file that does not currently exist. The pathname
+// will be directory/base_name.extension or
+// directory/base_name_<number>.extension if directory/base_name.extension
+// already exists. The number will be incremented until a pathname is found
+// that does not already exist.
+// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
+// There could be a race condition if two or more processes are calling this
+// function at the same time -- they could both pick the same filename.
+FilePath FilePath::GenerateUniqueFileName(const FilePath& directory,
+                                          const FilePath& base_name,
+                                          const char* extension) {
+  FilePath full_pathname;
+  int number = 0;
+  do {
+    full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
+  } while (full_pathname.FileOrDirectoryExists());
+  return full_pathname;
+}
+
+// Returns true if FilePath ends with a path separator, which indicates that
+// it is intended to represent a directory. Returns false otherwise.
+// This does NOT check that a directory (or file) actually exists.
+bool FilePath::IsDirectory() const {
+  return !pathname_.empty() &&
+         IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
+}
+
+// Create directories so that path exists. Returns true if successful or if
+// the directories already exist; returns false if unable to create directories
+// for any reason.
+bool FilePath::CreateDirectoriesRecursively() const {
+  if (!this->IsDirectory()) {
+    return false;
+  }
+
+  if (pathname_.length() == 0 || this->DirectoryExists()) {
+    return true;
+  }
+
+  const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName());
+  return parent.CreateDirectoriesRecursively() && this->CreateFolder();
+}
+
+// Create the directory so that path exists. Returns true if successful or
+// if the directory already exists; returns false if unable to create the
+// directory for any reason, including if the parent directory does not
+// exist. Not named "CreateDirectory" because that's a macro on Windows.
+bool FilePath::CreateFolder() const {
+#if GTEST_OS_WINDOWS_MOBILE
+  FilePath removed_sep(this->RemoveTrailingPathSeparator());
+  LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str());
+  int result = CreateDirectory(unicode, NULL) ? 0 : -1;
+  delete [] unicode;
+#elif GTEST_OS_WINDOWS
+  int result = _mkdir(pathname_.c_str());
+#else
+  int result = mkdir(pathname_.c_str(), 0777);
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+  if (result == -1) {
+    return this->DirectoryExists();  // An error is OK if the directory exists.
+  }
+  return true;  // No error.
+}
+
+// If input name has a trailing separator character, remove it and return the
+// name, otherwise return the name string unmodified.
+// On Windows platform, uses \ as the separator, other platforms use /.
+FilePath FilePath::RemoveTrailingPathSeparator() const {
+  return IsDirectory()
+      ? FilePath(String(pathname_.c_str(), pathname_.length() - 1))
+      : *this;
+}
+
+// Removes any redundant separators that might be in the pathname.
+// For example, "bar///foo" becomes "bar/foo". Does not eliminate other
+// redundancies that might be in a pathname involving "." or "..".
+// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share).
+void FilePath::Normalize() {
+  if (pathname_.c_str() == NULL) {
+    pathname_ = "";
+    return;
+  }
+  const char* src = pathname_.c_str();
+  char* const dest = new char[pathname_.length() + 1];
+  char* dest_ptr = dest;
+  memset(dest_ptr, 0, pathname_.length() + 1);
+
+  while (*src != '\0') {
+    *dest_ptr = *src;
+    if (!IsPathSeparator(*src)) {
+      src++;
+    } else {
+#if GTEST_HAS_ALT_PATH_SEP_
+      if (*dest_ptr == kAlternatePathSeparator) {
+        *dest_ptr = kPathSeparator;
+      }
+#endif
+      while (IsPathSeparator(*src))
+        src++;
+    }
+    dest_ptr++;
+  }
+  *dest_ptr = '\0';
+  pathname_ = dest;
+  delete[] dest;
+}
+
+}  // namespace internal
+}  // namespace testing
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+
+#include <limits.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#if GTEST_OS_WINDOWS_MOBILE
+# include <windows.h>  // For TerminateProcess()
+#elif GTEST_OS_WINDOWS
+# include <io.h>
+# include <sys/stat.h>
+#else
+# include <unistd.h>
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+#if GTEST_OS_MAC
+# include <mach/mach_init.h>
+# include <mach/task.h>
+# include <mach/vm_map.h>
+#endif  // GTEST_OS_MAC
+
+
+// Indicates that this translation unit is part of Google Test's
+// implementation.  It must come before gtest-internal-inl.h is
+// included, or there will be a compiler error.  This trick is to
+// prevent a user from accidentally including gtest-internal-inl.h in
+// his code.
+#define GTEST_IMPLEMENTATION_ 1
+#undef GTEST_IMPLEMENTATION_
+
+namespace testing {
+namespace internal {
+
+#if defined(_MSC_VER) || defined(__BORLANDC__)
+// MSVC and C++Builder do not provide a definition of STDERR_FILENO.
+const int kStdOutFileno = 1;
+const int kStdErrFileno = 2;
+#else
+const int kStdOutFileno = STDOUT_FILENO;
+const int kStdErrFileno = STDERR_FILENO;
+#endif  // _MSC_VER
+
+#if GTEST_OS_MAC
+
+// Returns the number of threads running in the process, or 0 to indicate that
+// we cannot detect it.
+size_t GetThreadCount() {
+  const task_t task = mach_task_self();
+  mach_msg_type_number_t thread_count;
+  thread_act_array_t thread_list;
+  const kern_return_t status = task_threads(task, &thread_list, &thread_count);
+  if (status == KERN_SUCCESS) {
+    // task_threads allocates resources in thread_list and we need to free them
+    // to avoid leaks.
+    vm_deallocate(task,
+                  reinterpret_cast<vm_address_t>(thread_list),
+                  sizeof(thread_t) * thread_count);
+    return static_cast<size_t>(thread_count);
+  } else {
+    return 0;
+  }
+}
+
+#else
+
+size_t GetThreadCount() {
+  // There's no portable way to detect the number of threads, so we just
+  // return 0 to indicate that we cannot detect it.
+  return 0;
+}
+
+#endif  // GTEST_OS_MAC
+
+#if GTEST_USES_POSIX_RE
+
+// Implements RE.  Currently only needed for death tests.
+
+RE::~RE() {
+  if (is_valid_) {
+    // regfree'ing an invalid regex might crash because the content
+    // of the regex is undefined. Since the regex's are essentially
+    // the same, one cannot be valid (or invalid) without the other
+    // being so too.
+    regfree(&partial_regex_);
+    regfree(&full_regex_);
+  }
+  free(const_cast<char*>(pattern_));
+}
+
+// Returns true iff regular expression re matches the entire str.
+bool RE::FullMatch(const char* str, const RE& re) {
+  if (!re.is_valid_) return false;
+
+  regmatch_t match;
+  return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
+}
+
+// Returns true iff regular expression re matches a substring of str
+// (including str itself).
+bool RE::PartialMatch(const char* str, const RE& re) {
+  if (!re.is_valid_) return false;
+
+  regmatch_t match;
+  return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;
+}
+
+// Initializes an RE from its string representation.
+void RE::Init(const char* regex) {
+  pattern_ = posix::StrDup(regex);
+
+  // Reserves enough bytes to hold the regular expression used for a
+  // full match.
+  const size_t full_regex_len = strlen(regex) + 10;
+  char* const full_pattern = new char[full_regex_len];
+
+  snprintf(full_pattern, full_regex_len, "^(%s)$", regex);
+  is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0;
+  // We want to call regcomp(&partial_regex_, ...) even if the
+  // previous expression returns false.  Otherwise partial_regex_ may
+  // not be properly initialized can may cause trouble when it's
+  // freed.
+  //
+  // Some implementation of POSIX regex (e.g. on at least some
+  // versions of Cygwin) doesn't accept the empty string as a valid
+  // regex.  We change it to an equivalent form "()" to be safe.
+  if (is_valid_) {
+    const char* const partial_regex = (*regex == '\0') ? "()" : regex;
+    is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0;
+  }
+  EXPECT_TRUE(is_valid_)
+      << "Regular expression \"" << regex
+      << "\" is not a valid POSIX Extended regular expression.";
+
+  delete[] full_pattern;
+}
+
+#elif GTEST_USES_SIMPLE_RE
+
+// Returns true iff ch appears anywhere in str (excluding the
+// terminating '\0' character).
+bool IsInSet(char ch, const char* str) {
+  return ch != '\0' && strchr(str, ch) != NULL;
+}
+
+// Returns true iff ch belongs to the given classification.  Unlike
+// similar functions in <ctype.h>, these aren't affected by the
+// current locale.
+bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
+bool IsAsciiPunct(char ch) {
+  return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
+}
+bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
+bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
+bool IsAsciiWordChar(char ch) {
+  return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') ||
+      ('0' <= ch && ch <= '9') || ch == '_';
+}
+
+// Returns true iff "\\c" is a supported escape sequence.
+bool IsValidEscape(char c) {
+  return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
+}
+
+// Returns true iff the given atom (specified by escaped and pattern)
+// matches ch.  The result is undefined if the atom is invalid.
+bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
+  if (escaped) {  // "\\p" where p is pattern_char.
+    switch (pattern_char) {
+      case 'd': return IsAsciiDigit(ch);
+      case 'D': return !IsAsciiDigit(ch);
+      case 'f': return ch == '\f';
+      case 'n': return ch == '\n';
+      case 'r': return ch == '\r';
+      case 's': return IsAsciiWhiteSpace(ch);
+      case 'S': return !IsAsciiWhiteSpace(ch);
+      case 't': return ch == '\t';
+      case 'v': return ch == '\v';
+      case 'w': return IsAsciiWordChar(ch);
+      case 'W': return !IsAsciiWordChar(ch);
+    }
+    return IsAsciiPunct(pattern_char) && pattern_char == ch;
+  }
+
+  return (pattern_char == '.' && ch != '\n') || pattern_char == ch;
+}
+
+// Helper function used by ValidateRegex() to format error messages.
+String FormatRegexSyntaxError(const char* regex, int index) {
+  return (Message() << "Syntax error at index " << index
+          << " in simple regular expression \"" << regex << "\": ").GetString();
+}
+
+// Generates non-fatal failures and returns false if regex is invalid;
+// otherwise returns true.
+bool ValidateRegex(const char* regex) {
+  if (regex == NULL) {
+    // TODO(wan@google.com): fix the source file location in the
+    // assertion failures to match where the regex is used in user
+    // code.
+    ADD_FAILURE() << "NULL is not a valid simple regular expression.";
+    return false;
+  }
+
+  bool is_valid = true;
+
+  // True iff ?, *, or + can follow the previous atom.
+  bool prev_repeatable = false;
+  for (int i = 0; regex[i]; i++) {
+    if (regex[i] == '\\') {  // An escape sequence
+      i++;
+      if (regex[i] == '\0') {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1)
+                      << "'\\' cannot appear at the end.";
+        return false;
+      }
+
+      if (!IsValidEscape(regex[i])) {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1)
+                      << "invalid escape sequence \"\\" << regex[i] << "\".";
+        is_valid = false;
+      }
+      prev_repeatable = true;
+    } else {  // Not an escape sequence.
+      const char ch = regex[i];
+
+      if (ch == '^' && i > 0) {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)
+                      << "'^' can only appear at the beginning.";
+        is_valid = false;
+      } else if (ch == '$' && regex[i + 1] != '\0') {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)
+                      << "'$' can only appear at the end.";
+        is_valid = false;
+      } else if (IsInSet(ch, "()[]{}|")) {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)
+                      << "'" << ch << "' is unsupported.";
+        is_valid = false;
+      } else if (IsRepeat(ch) && !prev_repeatable) {
+        ADD_FAILURE() << FormatRegexSyntaxError(regex, i)
+                      << "'" << ch << "' can only follow a repeatable token.";
+        is_valid = false;
+      }
+
+      prev_repeatable = !IsInSet(ch, "^$?*+");
+    }
+  }
+
+  return is_valid;
+}
+
+// Matches a repeated regex atom followed by a valid simple regular
+// expression.  The regex atom is defined as c if escaped is false,
+// or \c otherwise.  repeat is the repetition meta character (?, *,
+// or +).  The behavior is undefined if str contains too many
+// characters to be indexable by size_t, in which case the test will
+// probably time out anyway.  We are fine with this limitation as
+// std::string has it too.
+bool MatchRepetitionAndRegexAtHead(
+    bool escaped, char c, char repeat, const char* regex,
+    const char* str) {
+  const size_t min_count = (repeat == '+') ? 1 : 0;
+  const size_t max_count = (repeat == '?') ? 1 :
+      static_cast<size_t>(-1) - 1;
+  // We cannot call numeric_limits::max() as it conflicts with the
+  // max() macro on Windows.
+
+  for (size_t i = 0; i <= max_count; ++i) {
+    // We know that the atom matches each of the first i characters in str.
+    if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
+      // We have enough matches at the head, and the tail matches too.
+      // Since we only care about *whether* the pattern matches str
+      // (as opposed to *how* it matches), there is no need to find a
+      // greedy match.
+      return true;
+    }
+    if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
+      return false;
+  }
+  return false;
+}
+
+// Returns true iff regex matches a prefix of str.  regex must be a
+// valid simple regular expression and not start with "^", or the
+// result is undefined.
+bool MatchRegexAtHead(const char* regex, const char* str) {
+  if (*regex == '\0')  // An empty regex matches a prefix of anything.
+    return true;
+
+  // "$" only matches the end of a string.  Note that regex being
+  // valid guarantees that there's nothing after "$" in it.
+  if (*regex == '$')
+    return *str == '\0';
+
+  // Is the first thing in regex an escape sequence?
+  const bool escaped = *regex == '\\';
+  if (escaped)
+    ++regex;
+  if (IsRepeat(regex[1])) {
+    // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so
+    // here's an indirect recursion.  It terminates as the regex gets
+    // shorter in each recursion.
+    return MatchRepetitionAndRegexAtHead(
+        escaped, regex[0], regex[1], regex + 2, str);
+  } else {
+    // regex isn't empty, isn't "$", and doesn't start with a
+    // repetition.  We match the first atom of regex with the first
+    // character of str and recurse.
+    return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &&
+        MatchRegexAtHead(regex + 1, str + 1);
+  }
+}
+
+// Returns true iff regex matches any substring of str.  regex must be
+// a valid simple regular expression, or the result is undefined.
+//
+// The algorithm is recursive, but the recursion depth doesn't exceed
+// the regex length, so we won't need to worry about running out of
+// stack space normally.  In rare cases the time complexity can be
+// exponential with respect to the regex length + the string length,
+// but usually it's must faster (often close to linear).
+bool MatchRegexAnywhere(const char* regex, const char* str) {
+  if (regex == NULL || str == NULL)
+    return false;
+
+  if (*regex == '^')
+    return MatchRegexAtHead(regex + 1, str);
+
+  // A successful match can be anywhere in str.
+  do {
+    if (MatchRegexAtHead(regex, str))
+      return true;
+  } while (*str++ != '\0');
+  return false;
+}
+
+// Implements the RE class.
+
+RE::~RE() {
+  free(const_cast<char*>(pattern_));
+  free(const_cast<char*>(full_pattern_));
+}
+
+// Returns true iff regular expression re matches the entire str.
+bool RE::FullMatch(const char* str, const RE& re) {
+  return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str);
+}
+
+// Returns true iff regular expression re matches a substring of str
+// (including str itself).
+bool RE::PartialMatch(const char* str, const RE& re) {
+  return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str);
+}
+
+// Initializes an RE from its string representation.
+void RE::Init(const char* regex) {
+  pattern_ = full_pattern_ = NULL;
+  if (regex != NULL) {
+    pattern_ = posix::StrDup(regex);
+  }
+
+  is_valid_ = ValidateRegex(regex);
+  if (!is_valid_) {
+    // No need to calculate the full pattern when the regex is invalid.
+    return;
+  }
+
+  const size_t len = strlen(regex);
+  // Reserves enough bytes to hold the regular expression used for a
+  // full match: we need space to prepend a '^', append a '$', and
+  // terminate the string with '\0'.
+  char* buffer = static_cast<char*>(malloc(len + 3));
+  full_pattern_ = buffer;
+
+  if (*regex != '^')
+    *buffer++ = '^';  // Makes sure full_pattern_ starts with '^'.
+
+  // We don't use snprintf or strncpy, as they trigger a warning when
+  // compiled with VC++ 8.0.
+  memcpy(buffer, regex, len);
+  buffer += len;
+
+  if (len == 0 || regex[len - 1] != '$')
+    *buffer++ = '$';  // Makes sure full_pattern_ ends with '$'.
+
+  *buffer = '\0';
+}
+
+#endif  // GTEST_USES_POSIX_RE
+
+const char kUnknownFile[] = "unknown file";
+
+// Formats a source file path and a line number as they would appear
+// in an error message from the compiler used to compile this code.
+GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) {
+  const char* const file_name = file == NULL ? kUnknownFile : file;
+
+  if (line < 0) {
+    return String::Format("%s:", file_name).c_str();
+  }
+#ifdef _MSC_VER
+  return String::Format("%s(%d):", file_name, line).c_str();
+#else
+  return String::Format("%s:%d:", file_name, line).c_str();
+#endif  // _MSC_VER
+}
+
+// Formats a file location for compiler-independent XML output.
+// Although this function is not platform dependent, we put it next to
+// FormatFileLocation in order to contrast the two functions.
+// Note that FormatCompilerIndependentFileLocation() does NOT append colon
+// to the file location it produces, unlike FormatFileLocation().
+GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(
+    const char* file, int line) {
+  const char* const file_name = file == NULL ? kUnknownFile : file;
+
+  if (line < 0)
+    return file_name;
+  else
+    return String::Format("%s:%d", file_name, line).c_str();
+}
+
+
+GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line)
+    : severity_(severity) {
+  const char* const marker =
+      severity == GTEST_INFO ?    "[  INFO ]" :
+      severity == GTEST_WARNING ? "[WARNING]" :
+      severity == GTEST_ERROR ?   "[ ERROR ]" : "[ FATAL ]";
+  GetStream() << ::std::endl << marker << " "
+              << FormatFileLocation(file, line).c_str() << ": ";
+}
+
+// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
+GTestLog::~GTestLog() {
+  GetStream() << ::std::endl;
+  if (severity_ == GTEST_FATAL) {
+    fflush(stderr);
+    posix::Abort();
+  }
+}
+// Disable Microsoft deprecation warnings for POSIX functions called from
+// this class (creat, dup, dup2, and close)
+#ifdef _MSC_VER
+# pragma warning(push)
+# pragma warning(disable: 4996)
+#endif  // _MSC_VER
+
+#if GTEST_HAS_STREAM_REDIRECTION
+
+// Object that captures an output stream (stdout/stderr).
+class CapturedStream {
+ public:
+  // The ctor redirects the stream to a temporary file.
+  CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) {
+
+# if GTEST_OS_WINDOWS
+    char temp_dir_path[MAX_PATH + 1] = { '\0' };  // NOLINT
+    char temp_file_path[MAX_PATH + 1] = { '\0' };  // NOLINT
+
+    ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path);
+    const UINT success = ::GetTempFileNameA(temp_dir_path,
+                                            "gtest_redir",
+                                            0,  // Generate unique file name.
+                                            temp_file_path);
+    GTEST_CHECK_(success != 0)
+        << "Unable to create a temporary file in " << temp_dir_path;
+    const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE);
+    GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file "
+                                    << temp_file_path;
+    filename_ = temp_file_path;
+# else
+    // There's no guarantee that a test has write access to the
+    // current directory, so we create the temporary file in the /tmp
+    // directory instead.
+    char name_template[] = "/tmp/captured_stream.XXXXXX";
+    const int captured_fd = mkstemp(name_template);
+    filename_ = name_template;
+# endif  // GTEST_OS_WINDOWS
+    fflush(NULL);
+    dup2(captured_fd, fd_);
+    close(captured_fd);
+  }
+
+  ~CapturedStream() {
+    remove(filename_.c_str());
+  }
+
+  String GetCapturedString() {
+    if (uncaptured_fd_ != -1) {
+      // Restores the original stream.
+      fflush(NULL);
+      dup2(uncaptured_fd_, fd_);
+      close(uncaptured_fd_);
+      uncaptured_fd_ = -1;
+    }
+
+    FILE* const file = posix::FOpen(filename_.c_str(), "r");
+    const String content = ReadEntireFile(file);
+    posix::FClose(file);
+    return content;
+  }
+
+ private:
+  // Reads the entire content of a file as a String.
+  static String ReadEntireFile(FILE* file);
+
+  // Returns the size (in bytes) of a file.
+  static size_t GetFileSize(FILE* file);
+
+  const int fd_;  // A stream to capture.
+  int uncaptured_fd_;
+  // Name of the temporary file holding the stderr output.
+  ::std::string filename_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream);
+};
+
+// Returns the size (in bytes) of a file.
+size_t CapturedStream::GetFileSize(FILE* file) {
+  fseek(file, 0, SEEK_END);
+  return static_cast<size_t>(ftell(file));
+}
+
+// Reads the entire content of a file as a string.
+String CapturedStream::ReadEntireFile(FILE* file) {
+  const size_t file_size = GetFileSize(file);
+  char* const buffer = new char[file_size];
+
+  size_t bytes_last_read = 0;  // # of bytes read in the last fread()
+  size_t bytes_read = 0;       // # of bytes read so far
+
+  fseek(file, 0, SEEK_SET);
+
+  // Keeps reading the file until we cannot read further or the
+  // pre-determined file size is reached.
+  do {
+    bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
+    bytes_read += bytes_last_read;
+  } while (bytes_last_read > 0 && bytes_read < file_size);
+
+  const String content(buffer, bytes_read);
+  delete[] buffer;
+
+  return content;
+}
+
+# ifdef _MSC_VER
+#  pragma warning(pop)
+# endif  // _MSC_VER
+
+static CapturedStream* g_captured_stderr = NULL;
+static CapturedStream* g_captured_stdout = NULL;
+
+// Starts capturing an output stream (stdout/stderr).
+void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) {
+  if (*stream != NULL) {
+    GTEST_LOG_(FATAL) << "Only one " << stream_name
+                      << " capturer can exist at a time.";
+  }
+  *stream = new CapturedStream(fd);
+}
+
+// Stops capturing the output stream and returns the captured string.
+String GetCapturedStream(CapturedStream** captured_stream) {
+  const String content = (*captured_stream)->GetCapturedString();
+
+  delete *captured_stream;
+  *captured_stream = NULL;
+
+  return content;
+}
+
+// Starts capturing stdout.
+void CaptureStdout() {
+  CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout);
+}
+
+// Starts capturing stderr.
+void CaptureStderr() {
+  CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr);
+}
+
+// Stops capturing stdout and returns the captured string.
+String GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); }
+
+// Stops capturing stderr and returns the captured string.
+String GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); }
+
+#endif  // GTEST_HAS_STREAM_REDIRECTION
+
+#if GTEST_HAS_DEATH_TEST
+
+// A copy of all command line arguments.  Set by InitGoogleTest().
+::std::vector<String> g_argvs;
+
+// Returns the command line as a vector of strings.
+const ::std::vector<String>& GetArgvs() { return g_argvs; }
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+#if GTEST_OS_WINDOWS_MOBILE
+namespace posix {
+void Abort() {
+  DebugBreak();
+  TerminateProcess(GetCurrentProcess(), 1);
+}
+}  // namespace posix
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+// Returns the name of the environment variable corresponding to the
+// given flag.  For example, FlagToEnvVar("foo") will return
+// "GTEST_FOO" in the open-source version.
+static String FlagToEnvVar(const char* flag) {
+  const String full_flag =
+      (Message() << GTEST_FLAG_PREFIX_ << flag).GetString();
+
+  Message env_var;
+  for (size_t i = 0; i != full_flag.length(); i++) {
+    env_var << ToUpper(full_flag.c_str()[i]);
+  }
+
+  return env_var.GetString();
+}
+
+// Parses 'str' for a 32-bit signed integer.  If successful, writes
+// the result to *value and returns true; otherwise leaves *value
+// unchanged and returns false.
+bool ParseInt32(const Message& src_text, const char* str, Int32* value) {
+  // Parses the environment variable as a decimal integer.
+  char* end = NULL;
+  const long long_value = strtol(str, &end, 10);  // NOLINT
+
+  // Has strtol() consumed all characters in the string?
+  if (*end != '\0') {
+    // No - an invalid character was encountered.
+    Message msg;
+    msg << "WARNING: " << src_text
+        << " is expected to be a 32-bit integer, but actually"
+        << " has value \"" << str << "\".\n";
+    printf("%s", msg.GetString().c_str());
+    fflush(stdout);
+    return false;
+  }
+
+  // Is the parsed value in the range of an Int32?
+  const Int32 result = static_cast<Int32>(long_value);
+  if (long_value == LONG_MAX || long_value == LONG_MIN ||
+      // The parsed value overflows as a long.  (strtol() returns
+      // LONG_MAX or LONG_MIN when the input overflows.)
+      result != long_value
+      // The parsed value overflows as an Int32.
+      ) {
+    Message msg;
+    msg << "WARNING: " << src_text
+        << " is expected to be a 32-bit integer, but actually"
+        << " has value " << str << ", which overflows.\n";
+    printf("%s", msg.GetString().c_str());
+    fflush(stdout);
+    return false;
+  }
+
+  *value = result;
+  return true;
+}
+
+// Reads and returns the Boolean environment variable corresponding to
+// the given flag; if it's not set, returns default_value.
+//
+// The value is considered true iff it's not "0".
+bool BoolFromGTestEnv(const char* flag, bool default_value) {
+  const String env_var = FlagToEnvVar(flag);
+  const char* const string_value = posix::GetEnv(env_var.c_str());
+  return string_value == NULL ?
+      default_value : strcmp(string_value, "0") != 0;
+}
+
+// Reads and returns a 32-bit integer stored in the environment
+// variable corresponding to the given flag; if it isn't set or
+// doesn't represent a valid 32-bit integer, returns default_value.
+Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) {
+  const String env_var = FlagToEnvVar(flag);
+  const char* const string_value = posix::GetEnv(env_var.c_str());
+  if (string_value == NULL) {
+    // The environment variable is not set.
+    return default_value;
+  }
+
+  Int32 result = default_value;
+  if (!ParseInt32(Message() << "Environment variable " << env_var,
+                  string_value, &result)) {
+    printf("The default value %s is used.\n",
+           (Message() << default_value).GetString().c_str());
+    fflush(stdout);
+    return default_value;
+  }
+
+  return result;
+}
+
+// Reads and returns the string environment variable corresponding to
+// the given flag; if it's not set, returns default_value.
+const char* StringFromGTestEnv(const char* flag, const char* default_value) {
+  const String env_var = FlagToEnvVar(flag);
+  const char* const value = posix::GetEnv(env_var.c_str());
+  return value == NULL ? default_value : value;
+}
+
+}  // namespace internal
+}  // namespace testing
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Test - The Google C++ Testing Framework
+//
+// This file implements a universal value printer that can print a
+// value of any type T:
+//
+//   void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);
+//
+// It uses the << operator when possible, and prints the bytes in the
+// object otherwise.  A user can override its behavior for a class
+// type Foo by defining either operator<<(::std::ostream&, const Foo&)
+// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that
+// defines Foo.
+
+#include <ctype.h>
+#include <stdio.h>
+#include <ostream>  // NOLINT
+#include <string>
+
+namespace testing {
+
+namespace {
+
+using ::std::ostream;
+
+#if GTEST_OS_WINDOWS_MOBILE  // Windows CE does not define _snprintf_s.
+# define snprintf _snprintf
+#elif _MSC_VER >= 1400  // VC 8.0 and later deprecate snprintf and _snprintf.
+# define snprintf _snprintf_s
+#elif _MSC_VER
+# define snprintf _snprintf
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+// Prints a segment of bytes in the given object.
+void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start,
+                                size_t count, ostream* os) {
+  char text[5] = "";
+  for (size_t i = 0; i != count; i++) {
+    const size_t j = start + i;
+    if (i != 0) {
+      // Organizes the bytes into groups of 2 for easy parsing by
+      // human.
+      if ((j % 2) == 0)
+        *os << ' ';
+      else
+        *os << '-';
+    }
+    snprintf(text, sizeof(text), "%02X", obj_bytes[j]);
+    *os << text;
+  }
+}
+
+// Prints the bytes in the given value to the given ostream.
+void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count,
+                              ostream* os) {
+  // Tells the user how big the object is.
+  *os << count << "-byte object <";
+
+  const size_t kThreshold = 132;
+  const size_t kChunkSize = 64;
+  // If the object size is bigger than kThreshold, we'll have to omit
+  // some details by printing only the first and the last kChunkSize
+  // bytes.
+  // TODO(wan): let the user control the threshold using a flag.
+  if (count < kThreshold) {
+    PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
+  } else {
+    PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os);
+    *os << " ... ";
+    // Rounds up to 2-byte boundary.
+    const size_t resume_pos = (count - kChunkSize + 1)/2*2;
+    PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
+  }
+  *os << ">";
+}
+
+}  // namespace
+
+namespace internal2 {
+
+// Delegates to PrintBytesInObjectToImpl() to print the bytes in the
+// given object.  The delegation simplifies the implementation, which
+// uses the << operator and thus is easier done outside of the
+// ::testing::internal namespace, which contains a << operator that
+// sometimes conflicts with the one in STL.
+void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count,
+                          ostream* os) {
+  PrintBytesInObjectToImpl(obj_bytes, count, os);
+}
+
+}  // namespace internal2
+
+namespace internal {
+
+// Depending on the value of a char (or wchar_t), we print it in one
+// of three formats:
+//   - as is if it's a printable ASCII (e.g. 'a', '2', ' '),
+//   - as a hexidecimal escape sequence (e.g. '\x7F'), or
+//   - as a special escape sequence (e.g. '\r', '\n').
+enum CharFormat {
+  kAsIs,
+  kHexEscape,
+  kSpecialEscape
+};
+
+// Returns true if c is a printable ASCII character.  We test the
+// value of c directly instead of calling isprint(), which is buggy on
+// Windows Mobile.
+inline bool IsPrintableAscii(wchar_t c) {
+  return 0x20 <= c && c <= 0x7E;
+}
+
+// Prints a wide or narrow char c as a character literal without the
+// quotes, escaping it when necessary; returns how c was formatted.
+// The template argument UnsignedChar is the unsigned version of Char,
+// which is the type of c.
+template <typename UnsignedChar, typename Char>
+static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
+  switch (static_cast<wchar_t>(c)) {
+    case L'\0':
+      *os << "\\0";
+      break;
+    case L'\'':
+      *os << "\\'";
+      break;
+    case L'\\':
+      *os << "\\\\";
+      break;
+    case L'\a':
+      *os << "\\a";
+      break;
+    case L'\b':
+      *os << "\\b";
+      break;
+    case L'\f':
+      *os << "\\f";
+      break;
+    case L'\n':
+      *os << "\\n";
+      break;
+    case L'\r':
+      *os << "\\r";
+      break;
+    case L'\t':
+      *os << "\\t";
+      break;
+    case L'\v':
+      *os << "\\v";
+      break;
+    default:
+      if (IsPrintableAscii(c)) {
+        *os << static_cast<char>(c);
+        return kAsIs;
+      } else {
+        *os << String::Format("\\x%X", static_cast<UnsignedChar>(c));
+        return kHexEscape;
+      }
+  }
+  return kSpecialEscape;
+}
+
+// Prints a char c as if it's part of a string literal, escaping it when
+// necessary; returns how c was formatted.
+static CharFormat PrintAsWideStringLiteralTo(wchar_t c, ostream* os) {
+  switch (c) {
+    case L'\'':
+      *os << "'";
+      return kAsIs;
+    case L'"':
+      *os << "\\\"";
+      return kSpecialEscape;
+    default:
+      return PrintAsCharLiteralTo<wchar_t>(c, os);
+  }
+}
+
+// Prints a char c as if it's part of a string literal, escaping it when
+// necessary; returns how c was formatted.
+static CharFormat PrintAsNarrowStringLiteralTo(char c, ostream* os) {
+  return PrintAsWideStringLiteralTo(static_cast<unsigned char>(c), os);
+}
+
+// Prints a wide or narrow character c and its code.  '\0' is printed
+// as "'\\0'", other unprintable characters are also properly escaped
+// using the standard C++ escape sequence.  The template argument
+// UnsignedChar is the unsigned version of Char, which is the type of c.
+template <typename UnsignedChar, typename Char>
+void PrintCharAndCodeTo(Char c, ostream* os) {
+  // First, print c as a literal in the most readable form we can find.
+  *os << ((sizeof(c) > 1) ? "L'" : "'");
+  const CharFormat format = PrintAsCharLiteralTo<UnsignedChar>(c, os);
+  *os << "'";
+
+  // To aid user debugging, we also print c's code in decimal, unless
+  // it's 0 (in which case c was printed as '\\0', making the code
+  // obvious).
+  if (c == 0)
+    return;
+  *os << " (" << String::Format("%d", c).c_str();
+
+  // For more convenience, we print c's code again in hexidecimal,
+  // unless c was already printed in the form '\x##' or the code is in
+  // [1, 9].
+  if (format == kHexEscape || (1 <= c && c <= 9)) {
+    // Do nothing.
+  } else {
+    *os << String::Format(", 0x%X",
+                          static_cast<UnsignedChar>(c)).c_str();
+  }
+  *os << ")";
+}
+
+void PrintTo(unsigned char c, ::std::ostream* os) {
+  PrintCharAndCodeTo<unsigned char>(c, os);
+}
+void PrintTo(signed char c, ::std::ostream* os) {
+  PrintCharAndCodeTo<unsigned char>(c, os);
+}
+
+// Prints a wchar_t as a symbol if it is printable or as its internal
+// code otherwise and also as its code.  L'\0' is printed as "L'\\0'".
+void PrintTo(wchar_t wc, ostream* os) {
+  PrintCharAndCodeTo<wchar_t>(wc, os);
+}
+
+// Prints the given array of characters to the ostream.
+// The array starts at *begin, the length is len, it may include '\0' characters
+// and may not be null-terminated.
+static void PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) {
+  *os << "\"";
+  bool is_previous_hex = false;
+  for (size_t index = 0; index < len; ++index) {
+    const char cur = begin[index];
+    if (is_previous_hex && IsXDigit(cur)) {
+      // Previous character is of '\x..' form and this character can be
+      // interpreted as another hexadecimal digit in its number. Break string to
+      // disambiguate.
+      *os << "\" \"";
+    }
+    is_previous_hex = PrintAsNarrowStringLiteralTo(cur, os) == kHexEscape;
+  }
+  *os << "\"";
+}
+
+// Prints a (const) char array of 'len' elements, starting at address 'begin'.
+void UniversalPrintArray(const char* begin, size_t len, ostream* os) {
+  PrintCharsAsStringTo(begin, len, os);
+}
+
+// Prints the given array of wide characters to the ostream.
+// The array starts at *begin, the length is len, it may include L'\0'
+// characters and may not be null-terminated.
+static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len,
+                                     ostream* os) {
+  *os << "L\"";
+  bool is_previous_hex = false;
+  for (size_t index = 0; index < len; ++index) {
+    const wchar_t cur = begin[index];
+    if (is_previous_hex && isascii(cur) && IsXDigit(static_cast<char>(cur))) {
+      // Previous character is of '\x..' form and this character can be
+      // interpreted as another hexadecimal digit in its number. Break string to
+      // disambiguate.
+      *os << "\" L\"";
+    }
+    is_previous_hex = PrintAsWideStringLiteralTo(cur, os) == kHexEscape;
+  }
+  *os << "\"";
+}
+
+// Prints the given C string to the ostream.
+void PrintTo(const char* s, ostream* os) {
+  if (s == NULL) {
+    *os << "NULL";
+  } else {
+    *os << ImplicitCast_<const void*>(s) << " pointing to ";
+    PrintCharsAsStringTo(s, strlen(s), os);
+  }
+}
+
+// MSVC compiler can be configured to define whar_t as a typedef
+// of unsigned short. Defining an overload for const wchar_t* in that case
+// would cause pointers to unsigned shorts be printed as wide strings,
+// possibly accessing more memory than intended and causing invalid
+// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when
+// wchar_t is implemented as a native type.
+#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)
+// Prints the given wide C string to the ostream.
+void PrintTo(const wchar_t* s, ostream* os) {
+  if (s == NULL) {
+    *os << "NULL";
+  } else {
+    *os << ImplicitCast_<const void*>(s) << " pointing to ";
+    PrintWideCharsAsStringTo(s, wcslen(s), os);
+  }
+}
+#endif  // wchar_t is native
+
+// Prints a ::string object.
+#if GTEST_HAS_GLOBAL_STRING
+void PrintStringTo(const ::string& s, ostream* os) {
+  PrintCharsAsStringTo(s.data(), s.size(), os);
+}
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+void PrintStringTo(const ::std::string& s, ostream* os) {
+  PrintCharsAsStringTo(s.data(), s.size(), os);
+}
+
+// Prints a ::wstring object.
+#if GTEST_HAS_GLOBAL_WSTRING
+void PrintWideStringTo(const ::wstring& s, ostream* os) {
+  PrintWideCharsAsStringTo(s.data(), s.size(), os);
+}
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+#if GTEST_HAS_STD_WSTRING
+void PrintWideStringTo(const ::std::wstring& s, ostream* os) {
+  PrintWideCharsAsStringTo(s.data(), s.size(), os);
+}
+#endif  // GTEST_HAS_STD_WSTRING
+
+}  // namespace internal
+
+}  // namespace testing
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: mheule@google.com (Markus Heule)
+//
+// The Google C++ Testing Framework (Google Test)
+
+
+// Indicates that this translation unit is part of Google Test's
+// implementation.  It must come before gtest-internal-inl.h is
+// included, or there will be a compiler error.  This trick is to
+// prevent a user from accidentally including gtest-internal-inl.h in
+// his code.
+#define GTEST_IMPLEMENTATION_ 1
+#undef GTEST_IMPLEMENTATION_
+
+namespace testing {
+
+using internal::GetUnitTestImpl;
+
+// Gets the summary of the failure message by omitting the stack trace
+// in it.
+internal::String TestPartResult::ExtractSummary(const char* message) {
+  const char* const stack_trace = strstr(message, internal::kStackTraceMarker);
+  return stack_trace == NULL ? internal::String(message) :
+      internal::String(message, stack_trace - message);
+}
+
+// Prints a TestPartResult object.
+std::ostream& operator<<(std::ostream& os, const TestPartResult& result) {
+  return os
+      << result.file_name() << ":" << result.line_number() << ": "
+      << (result.type() == TestPartResult::kSuccess ? "Success" :
+          result.type() == TestPartResult::kFatalFailure ? "Fatal failure" :
+          "Non-fatal failure") << ":\n"
+      << result.message() << std::endl;
+}
+
+// Appends a TestPartResult to the array.
+void TestPartResultArray::Append(const TestPartResult& result) {
+  array_.push_back(result);
+}
+
+// Returns the TestPartResult at the given index (0-based).
+const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const {
+  if (index < 0 || index >= size()) {
+    printf("\nInvalid index (%d) into TestPartResultArray.\n", index);
+    internal::posix::Abort();
+  }
+
+  return array_[index];
+}
+
+// Returns the number of TestPartResult objects in the array.
+int TestPartResultArray::size() const {
+  return static_cast<int>(array_.size());
+}
+
+namespace internal {
+
+HasNewFatalFailureHelper::HasNewFatalFailureHelper()
+    : has_new_fatal_failure_(false),
+      original_reporter_(GetUnitTestImpl()->
+                         GetTestPartResultReporterForCurrentThread()) {
+  GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this);
+}
+
+HasNewFatalFailureHelper::~HasNewFatalFailureHelper() {
+  GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(
+      original_reporter_);
+}
+
+void HasNewFatalFailureHelper::ReportTestPartResult(
+    const TestPartResult& result) {
+  if (result.fatally_failed())
+    has_new_fatal_failure_ = true;
+  original_reporter_->ReportTestPartResult(result);
+}
+
+}  // namespace internal
+
+}  // namespace testing
+// Copyright 2008 Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+
+namespace testing {
+namespace internal {
+
+#if GTEST_HAS_TYPED_TEST_P
+
+// Skips to the first non-space char in str. Returns an empty string if str
+// contains only whitespace characters.
+static const char* SkipSpaces(const char* str) {
+  while (IsSpace(*str))
+    str++;
+  return str;
+}
+
+// Verifies that registered_tests match the test names in
+// defined_test_names_; returns registered_tests if successful, or
+// aborts the program otherwise.
+const char* TypedTestCasePState::VerifyRegisteredTestNames(
+    const char* file, int line, const char* registered_tests) {
+  typedef ::std::set<const char*>::const_iterator DefinedTestIter;
+  registered_ = true;
+
+  // Skip initial whitespace in registered_tests since some
+  // preprocessors prefix stringizied literals with whitespace.
+  registered_tests = SkipSpaces(registered_tests);
+
+  Message errors;
+  ::std::set<String> tests;
+  for (const char* names = registered_tests; names != NULL;
+       names = SkipComma(names)) {
+    const String name = GetPrefixUntilComma(names);
+    if (tests.count(name) != 0) {
+      errors << "Test " << name << " is listed more than once.\n";
+      continue;
+    }
+
+    bool found = false;
+    for (DefinedTestIter it = defined_test_names_.begin();
+         it != defined_test_names_.end();
+         ++it) {
+      if (name == *it) {
+        found = true;
+        break;
+      }
+    }
+
+    if (found) {
+      tests.insert(name);
+    } else {
+      errors << "No test named " << name
+             << " can be found in this test case.\n";
+    }
+  }
+
+  for (DefinedTestIter it = defined_test_names_.begin();
+       it != defined_test_names_.end();
+       ++it) {
+    if (tests.count(*it) == 0) {
+      errors << "You forgot to list test " << *it << ".\n";
+    }
+  }
+
+  const String& errors_str = errors.GetString();
+  if (errors_str != "") {
+    fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
+            errors_str.c_str());
+    fflush(stderr);
+    posix::Abort();
+  }
+
+  return registered_tests;
+}
+
+#endif  // GTEST_HAS_TYPED_TEST_P
+
+}  // namespace internal
+}  // namespace testing
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// Google C++ Mocking Framework (Google Mock)
+//
+// This file #includes all Google Mock implementation .cc files.  The
+// purpose is to allow a user to build Google Mock by compiling this
+// file alone.
+
+// This line ensures that gmock.h can be compiled on its own, even
+// when it's fused.
+#include "gmock/gmock.h"
+
+// The following lines pull in the real gmock *.cc files.
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements cardinalities.
+
+
+#include <limits.h>
+#include <ostream>  // NOLINT
+#include <sstream>
+#include <string>
+
+namespace testing {
+
+namespace {
+
+// Implements the Between(m, n) cardinality.
+class BetweenCardinalityImpl : public CardinalityInterface {
+ public:
+  BetweenCardinalityImpl(int min, int max)
+      : min_(min >= 0 ? min : 0),
+        max_(max >= min_ ? max : min_) {
+    std::stringstream ss;
+    if (min < 0) {
+      ss << "The invocation lower bound must be >= 0, "
+         << "but is actually " << min << ".";
+      internal::Expect(false, __FILE__, __LINE__, ss.str());
+    } else if (max < 0) {
+      ss << "The invocation upper bound must be >= 0, "
+         << "but is actually " << max << ".";
+      internal::Expect(false, __FILE__, __LINE__, ss.str());
+    } else if (min > max) {
+      ss << "The invocation upper bound (" << max
+         << ") must be >= the invocation lower bound (" << min
+         << ").";
+      internal::Expect(false, __FILE__, __LINE__, ss.str());
+    }
+  }
+
+  // Conservative estimate on the lower/upper bound of the number of
+  // calls allowed.
+  virtual int ConservativeLowerBound() const { return min_; }
+  virtual int ConservativeUpperBound() const { return max_; }
+
+  virtual bool IsSatisfiedByCallCount(int call_count) const {
+    return min_ <= call_count && call_count <= max_ ;
+  }
+
+  virtual bool IsSaturatedByCallCount(int call_count) const {
+    return call_count >= max_;
+  }
+
+  virtual void DescribeTo(::std::ostream* os) const;
+ private:
+  const int min_;
+  const int max_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(BetweenCardinalityImpl);
+};
+
+// Formats "n times" in a human-friendly way.
+inline internal::string FormatTimes(int n) {
+  if (n == 1) {
+    return "once";
+  } else if (n == 2) {
+    return "twice";
+  } else {
+    std::stringstream ss;
+    ss << n << " times";
+    return ss.str();
+  }
+}
+
+// Describes the Between(m, n) cardinality in human-friendly text.
+void BetweenCardinalityImpl::DescribeTo(::std::ostream* os) const {
+  if (min_ == 0) {
+    if (max_ == 0) {
+      *os << "never called";
+    } else if (max_ == INT_MAX) {
+      *os << "called any number of times";
+    } else {
+      *os << "called at most " << FormatTimes(max_);
+    }
+  } else if (min_ == max_) {
+    *os << "called " << FormatTimes(min_);
+  } else if (max_ == INT_MAX) {
+    *os << "called at least " << FormatTimes(min_);
+  } else {
+    // 0 < min_ < max_ < INT_MAX
+    *os << "called between " << min_ << " and " << max_ << " times";
+  }
+}
+
+}  // Unnamed namespace
+
+// Describes the given call count to an ostream.
+void Cardinality::DescribeActualCallCountTo(int actual_call_count,
+                                            ::std::ostream* os) {
+  if (actual_call_count > 0) {
+    *os << "called " << FormatTimes(actual_call_count);
+  } else {
+    *os << "never called";
+  }
+}
+
+// Creates a cardinality that allows at least n calls.
+Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
+
+// Creates a cardinality that allows at most n calls.
+Cardinality AtMost(int n) { return Between(0, n); }
+
+// Creates a cardinality that allows any number of calls.
+Cardinality AnyNumber() { return AtLeast(0); }
+
+// Creates a cardinality that allows between min and max calls.
+Cardinality Between(int min, int max) {
+  return Cardinality(new BetweenCardinalityImpl(min, max));
+}
+
+// Creates a cardinality that allows exactly n calls.
+Cardinality Exactly(int n) { return Between(n, n); }
+
+}  // namespace testing
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file defines some utilities useful for implementing Google
+// Mock.  They are subject to change without notice, so please DO NOT
+// USE THEM IN USER CODE.
+
+
+#include <ctype.h>
+#include <ostream>  // NOLINT
+#include <string>
+
+namespace testing {
+namespace internal {
+
+// Converts an identifier name to a space-separated list of lower-case
+// words.  Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
+// treated as one word.  For example, both "FooBar123" and
+// "foo_bar_123" are converted to "foo bar 123".
+string ConvertIdentifierNameToWords(const char* id_name) {
+  string result;
+  char prev_char = '\0';
+  for (const char* p = id_name; *p != '\0'; prev_char = *(p++)) {
+    // We don't care about the current locale as the input is
+    // guaranteed to be a valid C++ identifier name.
+    const bool starts_new_word = IsUpper(*p) ||
+        (!IsAlpha(prev_char) && IsLower(*p)) ||
+        (!IsDigit(prev_char) && IsDigit(*p));
+
+    if (IsAlNum(*p)) {
+      if (starts_new_word && result != "")
+        result += ' ';
+      result += ToLower(*p);
+    }
+  }
+  return result;
+}
+
+// This class reports Google Mock failures as Google Test failures.  A
+// user can define another class in a similar fashion if he intends to
+// use Google Mock with a testing framework other than Google Test.
+class GoogleTestFailureReporter : public FailureReporterInterface {
+ public:
+  virtual void ReportFailure(FailureType type, const char* file, int line,
+                             const string& message) {
+    AssertHelper(type == FATAL ?
+                 TestPartResult::kFatalFailure :
+                 TestPartResult::kNonFatalFailure,
+                 file,
+                 line,
+                 message.c_str()) = Message();
+    if (type == FATAL) {
+      posix::Abort();
+    }
+  }
+};
+
+// Returns the global failure reporter.  Will create a
+// GoogleTestFailureReporter and return it the first time called.
+FailureReporterInterface* GetFailureReporter() {
+  // Points to the global failure reporter used by Google Mock.  gcc
+  // guarantees that the following use of failure_reporter is
+  // thread-safe.  We may need to add additional synchronization to
+  // protect failure_reporter if we port Google Mock to other
+  // compilers.
+  static FailureReporterInterface* const failure_reporter =
+      new GoogleTestFailureReporter();
+  return failure_reporter;
+}
+
+// Protects global resources (stdout in particular) used by Log().
+static GTEST_DEFINE_STATIC_MUTEX_(g_log_mutex);
+
+// Returns true iff a log with the given severity is visible according
+// to the --gmock_verbose flag.
+bool LogIsVisible(LogSeverity severity) {
+  if (GMOCK_FLAG(verbose) == kInfoVerbosity) {
+    // Always show the log if --gmock_verbose=info.
+    return true;
+  } else if (GMOCK_FLAG(verbose) == kErrorVerbosity) {
+    // Always hide it if --gmock_verbose=error.
+    return false;
+  } else {
+    // If --gmock_verbose is neither "info" nor "error", we treat it
+    // as "warning" (its default value).
+    return severity == WARNING;
+  }
+}
+
+// Prints the given message to stdout iff 'severity' >= the level
+// specified by the --gmock_verbose flag.  If stack_frames_to_skip >=
+// 0, also prints the stack trace excluding the top
+// stack_frames_to_skip frames.  In opt mode, any positive
+// stack_frames_to_skip is treated as 0, since we don't know which
+// function calls will be inlined by the compiler and need to be
+// conservative.
+void Log(LogSeverity severity, const string& message,
+         int stack_frames_to_skip) {
+  if (!LogIsVisible(severity))
+    return;
+
+  // Ensures that logs from different threads don't interleave.
+  MutexLock l(&g_log_mutex);
+
+  // "using ::std::cout;" doesn't work with Symbian's STLport, where cout is a
+  // macro.
+
+  if (severity == WARNING) {
+    // Prints a GMOCK WARNING marker to make the warnings easily searchable.
+    std::cout << "\nGMOCK WARNING:";
+  }
+  // Pre-pends a new-line to message if it doesn't start with one.
+  if (message.empty() || message[0] != '\n') {
+    std::cout << "\n";
+  }
+  std::cout << message;
+  if (stack_frames_to_skip >= 0) {
+#ifdef NDEBUG
+    // In opt mode, we have to be conservative and skip no stack frame.
+    const int actual_to_skip = 0;
+#else
+    // In dbg mode, we can do what the caller tell us to do (plus one
+    // for skipping this function's stack frame).
+    const int actual_to_skip = stack_frames_to_skip + 1;
+#endif  // NDEBUG
+
+    // Appends a new-line to message if it doesn't end with one.
+    if (!message.empty() && *message.rbegin() != '\n') {
+      std::cout << "\n";
+    }
+    std::cout << "Stack trace:\n"
+         << ::testing::internal::GetCurrentOsStackTraceExceptTop(
+             ::testing::UnitTest::GetInstance(), actual_to_skip);
+  }
+  std::cout << ::std::flush;
+}
+
+}  // namespace internal
+}  // namespace testing
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements Matcher<const string&>, Matcher<string>, and
+// utilities for defining matchers.
+
+
+#include <string.h>
+#include <sstream>
+#include <string>
+
+namespace testing {
+
+// Constructs a matcher that matches a const string& whose value is
+// equal to s.
+Matcher<const internal::string&>::Matcher(const internal::string& s) {
+  *this = Eq(s);
+}
+
+// Constructs a matcher that matches a const string& whose value is
+// equal to s.
+Matcher<const internal::string&>::Matcher(const char* s) {
+  *this = Eq(internal::string(s));
+}
+
+// Constructs a matcher that matches a string whose value is equal to s.
+Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); }
+
+// Constructs a matcher that matches a string whose value is equal to s.
+Matcher<internal::string>::Matcher(const char* s) {
+  *this = Eq(internal::string(s));
+}
+
+namespace internal {
+
+// Joins a vector of strings as if they are fields of a tuple; returns
+// the joined string.
+string JoinAsTuple(const Strings& fields) {
+  switch (fields.size()) {
+    case 0:
+      return "";
+    case 1:
+      return fields[0];
+    default:
+      string result = "(" + fields[0];
+      for (size_t i = 1; i < fields.size(); i++) {
+        result += ", ";
+        result += fields[i];
+      }
+      result += ")";
+      return result;
+  }
+}
+
+// Returns the description for a matcher defined using the MATCHER*()
+// macro where the user-supplied description string is "", if
+// 'negation' is false; otherwise returns the description of the
+// negation of the matcher.  'param_values' contains a list of strings
+// that are the print-out of the matcher's parameters.
+string FormatMatcherDescription(bool negation, const char* matcher_name,
+                                const Strings& param_values) {
+  string result = ConvertIdentifierNameToWords(matcher_name);
+  if (param_values.size() >= 1)
+    result += " " + JoinAsTuple(param_values);
+  return negation ? "not (" + result + ")" : result;
+}
+
+}  // namespace internal
+}  // namespace testing
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Mock - a framework for writing C++ mock classes.
+//
+// This file implements the spec builder syntax (ON_CALL and
+// EXPECT_CALL).
+
+
+#include <stdlib.h>
+#include <iostream>  // NOLINT
+#include <map>
+#include <set>
+#include <string>
+
+#if GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC
+# include <unistd.h>  // NOLINT
+#endif
+
+namespace testing {
+namespace internal {
+
+// Protects the mock object registry (in class Mock), all function
+// mockers, and all expectations.
+GTEST_DEFINE_STATIC_MUTEX_(g_gmock_mutex);
+
+// Logs a message including file and line number information.
+void LogWithLocation(testing::internal::LogSeverity severity,
+                     const char* file, int line,
+                     const string& message) {
+  ::std::ostringstream s;
+  s << file << ":" << line << ": " << message << ::std::endl;
+  Log(severity, s.str(), 0);
+}
+
+// Constructs an ExpectationBase object.
+ExpectationBase::ExpectationBase(const char* a_file,
+                                 int a_line,
+                                 const string& a_source_text)
+    : file_(a_file),
+      line_(a_line),
+      source_text_(a_source_text),
+      cardinality_specified_(false),
+      cardinality_(Exactly(1)),
+      call_count_(0),
+      retired_(false),
+      extra_matcher_specified_(false),
+      repeated_action_specified_(false),
+      retires_on_saturation_(false),
+      last_clause_(kNone),
+      action_count_checked_(false) {}
+
+// Destructs an ExpectationBase object.
+ExpectationBase::~ExpectationBase() {}
+
+// Explicitly specifies the cardinality of this expectation.  Used by
+// the subclasses to implement the .Times() clause.
+void ExpectationBase::SpecifyCardinality(const Cardinality& a_cardinality) {
+  cardinality_specified_ = true;
+  cardinality_ = a_cardinality;
+}
+
+// Retires all pre-requisites of this expectation.
+void ExpectationBase::RetireAllPreRequisites() {
+  if (is_retired()) {
+    // We can take this short-cut as we never retire an expectation
+    // until we have retired all its pre-requisites.
+    return;
+  }
+
+  for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();
+       it != immediate_prerequisites_.end(); ++it) {
+    ExpectationBase* const prerequisite = it->expectation_base().get();
+    if (!prerequisite->is_retired()) {
+      prerequisite->RetireAllPreRequisites();
+      prerequisite->Retire();
+    }
+  }
+}
+
+// Returns true iff all pre-requisites of this expectation have been
+// satisfied.
+// L >= g_gmock_mutex
+bool ExpectationBase::AllPrerequisitesAreSatisfied() const {
+  g_gmock_mutex.AssertHeld();
+  for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();
+       it != immediate_prerequisites_.end(); ++it) {
+    if (!(it->expectation_base()->IsSatisfied()) ||
+        !(it->expectation_base()->AllPrerequisitesAreSatisfied()))
+      return false;
+  }
+  return true;
+}
+
+// Adds unsatisfied pre-requisites of this expectation to 'result'.
+// L >= g_gmock_mutex
+void ExpectationBase::FindUnsatisfiedPrerequisites(
+    ExpectationSet* result) const {
+  g_gmock_mutex.AssertHeld();
+  for (ExpectationSet::const_iterator it = immediate_prerequisites_.begin();
+       it != immediate_prerequisites_.end(); ++it) {
+    if (it->expectation_base()->IsSatisfied()) {
+      // If *it is satisfied and has a call count of 0, some of its
+      // pre-requisites may not be satisfied yet.
+      if (it->expectation_base()->call_count_ == 0) {
+        it->expectation_base()->FindUnsatisfiedPrerequisites(result);
+      }
+    } else {
+      // Now that we know *it is unsatisfied, we are not so interested
+      // in whether its pre-requisites are satisfied.  Therefore we
+      // don't recursively call FindUnsatisfiedPrerequisites() here.
+      *result += *it;
+    }
+  }
+}
+
+// Describes how many times a function call matching this
+// expectation has occurred.
+// L >= g_gmock_mutex
+void ExpectationBase::DescribeCallCountTo(::std::ostream* os) const {
+  g_gmock_mutex.AssertHeld();
+
+  // Describes how many times the function is expected to be called.
+  *os << "         Expected: to be ";
+  cardinality().DescribeTo(os);
+  *os << "\n           Actual: ";
+  Cardinality::DescribeActualCallCountTo(call_count(), os);
+
+  // Describes the state of the expectation (e.g. is it satisfied?
+  // is it active?).
+  *os << " - " << (IsOverSaturated() ? "over-saturated" :
+                   IsSaturated() ? "saturated" :
+                   IsSatisfied() ? "satisfied" : "unsatisfied")
+      << " and "
+      << (is_retired() ? "retired" : "active");
+}
+
+// Checks the action count (i.e. the number of WillOnce() and
+// WillRepeatedly() clauses) against the cardinality if this hasn't
+// been done before.  Prints a warning if there are too many or too
+// few actions.
+// L < mutex_
+void ExpectationBase::CheckActionCountIfNotDone() const {
+  bool should_check = false;
+  {
+    MutexLock l(&mutex_);
+    if (!action_count_checked_) {
+      action_count_checked_ = true;
+      should_check = true;
+    }
+  }
+
+  if (should_check) {
+    if (!cardinality_specified_) {
+      // The cardinality was inferred - no need to check the action
+      // count against it.
+      return;
+    }
+
+    // The cardinality was explicitly specified.
+    const int action_count = static_cast<int>(untyped_actions_.size());
+    const int upper_bound = cardinality().ConservativeUpperBound();
+    const int lower_bound = cardinality().ConservativeLowerBound();
+    bool too_many;  // True if there are too many actions, or false
+    // if there are too few.
+    if (action_count > upper_bound ||
+        (action_count == upper_bound && repeated_action_specified_)) {
+      too_many = true;
+    } else if (0 < action_count && action_count < lower_bound &&
+               !repeated_action_specified_) {
+      too_many = false;
+    } else {
+      return;
+    }
+
+    ::std::stringstream ss;
+    DescribeLocationTo(&ss);
+    ss << "Too " << (too_many ? "many" : "few")
+       << " actions specified in " << source_text() << "...\n"
+       << "Expected to be ";
+    cardinality().DescribeTo(&ss);
+    ss << ", but has " << (too_many ? "" : "only ")
+       << action_count << " WillOnce()"
+       << (action_count == 1 ? "" : "s");
+    if (repeated_action_specified_) {
+      ss << " and a WillRepeatedly()";
+    }
+    ss << ".";
+    Log(WARNING, ss.str(), -1);  // -1 means "don't print stack trace".
+  }
+}
+
+// Implements the .Times() clause.
+void ExpectationBase::UntypedTimes(const Cardinality& a_cardinality) {
+  if (last_clause_ == kTimes) {
+    ExpectSpecProperty(false,
+                       ".Times() cannot appear "
+                       "more than once in an EXPECT_CALL().");
+  } else {
+    ExpectSpecProperty(last_clause_ < kTimes,
+                       ".Times() cannot appear after "
+                       ".InSequence(), .WillOnce(), .WillRepeatedly(), "
+                       "or .RetiresOnSaturation().");
+  }
+  last_clause_ = kTimes;
+
+  SpecifyCardinality(a_cardinality);
+}
+
+// Points to the implicit sequence introduced by a living InSequence
+// object (if any) in the current thread or NULL.
+ThreadLocal<Sequence*> g_gmock_implicit_sequence;
+
+// Reports an uninteresting call (whose description is in msg) in the
+// manner specified by 'reaction'.
+void ReportUninterestingCall(CallReaction reaction, const string& msg) {
+  switch (reaction) {
+    case ALLOW:
+      Log(INFO, msg, 3);
+      break;
+    case WARN:
+      Log(WARNING, msg, 3);
+      break;
+    default:  // FAIL
+      Expect(false, NULL, -1, msg);
+  }
+}
+
+UntypedFunctionMockerBase::UntypedFunctionMockerBase()
+    : mock_obj_(NULL), name_("") {}
+
+UntypedFunctionMockerBase::~UntypedFunctionMockerBase() {}
+
+// Sets the mock object this mock method belongs to, and registers
+// this information in the global mock registry.  Will be called
+// whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
+// method.
+// L < g_gmock_mutex
+void UntypedFunctionMockerBase::RegisterOwner(const void* mock_obj) {
+  {
+    MutexLock l(&g_gmock_mutex);
+    mock_obj_ = mock_obj;
+  }
+  Mock::Register(mock_obj, this);
+}
+
+// Sets the mock object this mock method belongs to, and sets the name
+// of the mock function.  Will be called upon each invocation of this
+// mock function.
+// L < g_gmock_mutex
+void UntypedFunctionMockerBase::SetOwnerAndName(
+    const void* mock_obj, const char* name) {
+  // We protect name_ under g_gmock_mutex in case this mock function
+  // is called from two threads concurrently.
+  MutexLock l(&g_gmock_mutex);
+  mock_obj_ = mock_obj;
+  name_ = name;
+}
+
+// Returns the name of the function being mocked.  Must be called
+// after RegisterOwner() or SetOwnerAndName() has been called.
+// L < g_gmock_mutex
+const void* UntypedFunctionMockerBase::MockObject() const {
+  const void* mock_obj;
+  {
+    // We protect mock_obj_ under g_gmock_mutex in case this mock
+    // function is called from two threads concurrently.
+    MutexLock l(&g_gmock_mutex);
+    Assert(mock_obj_ != NULL, __FILE__, __LINE__,
+           "MockObject() must not be called before RegisterOwner() or "
+           "SetOwnerAndName() has been called.");
+    mock_obj = mock_obj_;
+  }
+  return mock_obj;
+}
+
+// Returns the name of this mock method.  Must be called after
+// SetOwnerAndName() has been called.
+// L < g_gmock_mutex
+const char* UntypedFunctionMockerBase::Name() const {
+  const char* name;
+  {
+    // We protect name_ under g_gmock_mutex in case this mock
+    // function is called from two threads concurrently.
+    MutexLock l(&g_gmock_mutex);
+    Assert(name_ != NULL, __FILE__, __LINE__,
+           "Name() must not be called before SetOwnerAndName() has "
+           "been called.");
+    name = name_;
+  }
+  return name;
+}
+
+// Calculates the result of invoking this mock function with the given
+// arguments, prints it, and returns it.  The caller is responsible
+// for deleting the result.
+// L < g_gmock_mutex
+const UntypedActionResultHolderBase*
+UntypedFunctionMockerBase::UntypedInvokeWith(const void* const untyped_args) {
+  if (untyped_expectations_.size() == 0) {
+    // No expectation is set on this mock method - we have an
+    // uninteresting call.
+
+    // We must get Google Mock's reaction on uninteresting calls
+    // made on this mock object BEFORE performing the action,
+    // because the action may DELETE the mock object and make the
+    // following expression meaningless.
+    const CallReaction reaction =
+        Mock::GetReactionOnUninterestingCalls(MockObject());
+
+    // True iff we need to print this call's arguments and return
+    // value.  This definition must be kept in sync with
+    // the behavior of ReportUninterestingCall().
+    const bool need_to_report_uninteresting_call =
+        // If the user allows this uninteresting call, we print it
+        // only when he wants informational messages.
+        reaction == ALLOW ? LogIsVisible(INFO) :
+        // If the user wants this to be a warning, we print it only
+        // when he wants to see warnings.
+        reaction == WARN ? LogIsVisible(WARNING) :
+        // Otherwise, the user wants this to be an error, and we
+        // should always print detailed information in the error.
+        true;
+
+    if (!need_to_report_uninteresting_call) {
+      // Perform the action without printing the call information.
+      return this->UntypedPerformDefaultAction(untyped_args, "");
+    }
+
+    // Warns about the uninteresting call.
+    ::std::stringstream ss;
+    this->UntypedDescribeUninterestingCall(untyped_args, &ss);
+
+    // Calculates the function result.
+    const UntypedActionResultHolderBase* const result =
+        this->UntypedPerformDefaultAction(untyped_args, ss.str());
+
+    // Prints the function result.
+    if (result != NULL)
+      result->PrintAsActionResult(&ss);
+
+    ReportUninterestingCall(reaction, ss.str());
+    return result;
+  }
+
+  bool is_excessive = false;
+  ::std::stringstream ss;
+  ::std::stringstream why;
+  ::std::stringstream loc;
+  const void* untyped_action = NULL;
+
+  // The UntypedFindMatchingExpectation() function acquires and
+  // releases g_gmock_mutex.
+  const ExpectationBase* const untyped_expectation =
+      this->UntypedFindMatchingExpectation(
+          untyped_args, &untyped_action, &is_excessive,
+          &ss, &why);
+  const bool found = untyped_expectation != NULL;
+
+  // True iff we need to print the call's arguments and return value.
+  // This definition must be kept in sync with the uses of Expect()
+  // and Log() in this function.
+  const bool need_to_report_call = !found || is_excessive || LogIsVisible(INFO);
+  if (!need_to_report_call) {
+    // Perform the action without printing the call information.
+    return
+        untyped_action == NULL ?
+        this->UntypedPerformDefaultAction(untyped_args, "") :
+        this->UntypedPerformAction(untyped_action, untyped_args);
+  }
+
+  ss << "    Function call: " << Name();
+  this->UntypedPrintArgs(untyped_args, &ss);
+
+  // In case the action deletes a piece of the expectation, we
+  // generate the message beforehand.
+  if (found && !is_excessive) {
+    untyped_expectation->DescribeLocationTo(&loc);
+  }
+
+  const UntypedActionResultHolderBase* const result =
+      untyped_action == NULL ?
+      this->UntypedPerformDefaultAction(untyped_args, ss.str()) :
+      this->UntypedPerformAction(untyped_action, untyped_args);
+  if (result != NULL)
+    result->PrintAsActionResult(&ss);
+  ss << "\n" << why.str();
+
+  if (!found) {
+    // No expectation matches this call - reports a failure.
+    Expect(false, NULL, -1, ss.str());
+  } else if (is_excessive) {
+    // We had an upper-bound violation and the failure message is in ss.
+    Expect(false, untyped_expectation->file(),
+           untyped_expectation->line(), ss.str());
+  } else {
+    // We had an expected call and the matching expectation is
+    // described in ss.
+    Log(INFO, loc.str() + ss.str(), 2);
+  }
+
+  return result;
+}
+
+// Returns an Expectation object that references and co-owns exp,
+// which must be an expectation on this mock function.
+Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) {
+  for (UntypedExpectations::const_iterator it =
+           untyped_expectations_.begin();
+       it != untyped_expectations_.end(); ++it) {
+    if (it->get() == exp) {
+      return Expectation(*it);
+    }
+  }
+
+  Assert(false, __FILE__, __LINE__, "Cannot find expectation.");
+  return Expectation();
+  // The above statement is just to make the code compile, and will
+  // never be executed.
+}
+
+// Verifies that all expectations on this mock function have been
+// satisfied.  Reports one or more Google Test non-fatal failures
+// and returns false if not.
+// L >= g_gmock_mutex
+bool UntypedFunctionMockerBase::VerifyAndClearExpectationsLocked() {
+  g_gmock_mutex.AssertHeld();
+  bool expectations_met = true;
+  for (UntypedExpectations::const_iterator it =
+           untyped_expectations_.begin();
+       it != untyped_expectations_.end(); ++it) {
+    ExpectationBase* const untyped_expectation = it->get();
+    if (untyped_expectation->IsOverSaturated()) {
+      // There was an upper-bound violation.  Since the error was
+      // already reported when it occurred, there is no need to do
+      // anything here.
+      expectations_met = false;
+    } else if (!untyped_expectation->IsSatisfied()) {
+      expectations_met = false;
+      ::std::stringstream ss;
+      ss  << "Actual function call count doesn't match "
+          << untyped_expectation->source_text() << "...\n";
+      // No need to show the source file location of the expectation
+      // in the description, as the Expect() call that follows already
+      // takes care of it.
+      untyped_expectation->MaybeDescribeExtraMatcherTo(&ss);
+      untyped_expectation->DescribeCallCountTo(&ss);
+      Expect(false, untyped_expectation->file(),
+             untyped_expectation->line(), ss.str());
+    }
+  }
+  untyped_expectations_.clear();
+  return expectations_met;
+}
+
+}  // namespace internal
+
+// Class Mock.
+
+namespace {
+
+typedef std::set<internal::UntypedFunctionMockerBase*> FunctionMockers;
+
+// The current state of a mock object.  Such information is needed for
+// detecting leaked mock objects and explicitly verifying a mock's
+// expectations.
+struct MockObjectState {
+  MockObjectState()
+      : first_used_file(NULL), first_used_line(-1), leakable(false) {}
+
+  // Where in the source file an ON_CALL or EXPECT_CALL is first
+  // invoked on this mock object.
+  const char* first_used_file;
+  int first_used_line;
+  ::std::string first_used_test_case;
+  ::std::string first_used_test;
+  bool leakable;  // true iff it's OK to leak the object.
+  FunctionMockers function_mockers;  // All registered methods of the object.
+};
+
+// A global registry holding the state of all mock objects that are
+// alive.  A mock object is added to this registry the first time
+// Mock::AllowLeak(), ON_CALL(), or EXPECT_CALL() is called on it.  It
+// is removed from the registry in the mock object's destructor.
+class MockObjectRegistry {
+ public:
+  // Maps a mock object (identified by its address) to its state.
+  typedef std::map<const void*, MockObjectState> StateMap;
+
+  // This destructor will be called when a program exits, after all
+  // tests in it have been run.  By then, there should be no mock
+  // object alive.  Therefore we report any living object as test
+  // failure, unless the user explicitly asked us to ignore it.
+  ~MockObjectRegistry() {
+    // "using ::std::cout;" doesn't work with Symbian's STLport, where cout is
+    // a macro.
+
+    if (!GMOCK_FLAG(catch_leaked_mocks))
+      return;
+
+    int leaked_count = 0;
+    for (StateMap::const_iterator it = states_.begin(); it != states_.end();
+         ++it) {
+      if (it->second.leakable)  // The user said it's fine to leak this object.
+        continue;
+
+      // TODO(wan@google.com): Print the type of the leaked object.
+      // This can help the user identify the leaked object.
+      std::cout << "\n";
+      const MockObjectState& state = it->second;
+      std::cout << internal::FormatFileLocation(state.first_used_file,
+                                                state.first_used_line);
+      std::cout << " ERROR: this mock object";
+      if (state.first_used_test != "") {
+        std::cout << " (used in test " << state.first_used_test_case << "."
+             << state.first_used_test << ")";
+      }
+      std::cout << " should be deleted but never is. Its address is @"
+           << it->first << ".";
+      leaked_count++;
+    }
+    if (leaked_count > 0) {
+      std::cout << "\nERROR: " << leaked_count
+           << " leaked mock " << (leaked_count == 1 ? "object" : "objects")
+           << " found at program exit.\n";
+      std::cout.flush();
+      ::std::cerr.flush();
+      // RUN_ALL_TESTS() has already returned when this destructor is
+      // called.  Therefore we cannot use the normal Google Test
+      // failure reporting mechanism.
+      _exit(1);  // We cannot call exit() as it is not reentrant and
+                 // may already have been called.
+    }
+  }
+
+  StateMap& states() { return states_; }
+ private:
+  StateMap states_;
+};
+
+// Protected by g_gmock_mutex.
+MockObjectRegistry g_mock_object_registry;
+
+// Maps a mock object to the reaction Google Mock should have when an
+// uninteresting method is called.  Protected by g_gmock_mutex.
+std::map<const void*, internal::CallReaction> g_uninteresting_call_reaction;
+
+// Sets the reaction Google Mock should have when an uninteresting
+// method of the given mock object is called.
+// L < g_gmock_mutex
+void SetReactionOnUninterestingCalls(const void* mock_obj,
+                                     internal::CallReaction reaction) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  g_uninteresting_call_reaction[mock_obj] = reaction;
+}
+
+}  // namespace
+
+// Tells Google Mock to allow uninteresting calls on the given mock
+// object.
+// L < g_gmock_mutex
+void Mock::AllowUninterestingCalls(const void* mock_obj) {
+  SetReactionOnUninterestingCalls(mock_obj, internal::ALLOW);
+}
+
+// Tells Google Mock to warn the user about uninteresting calls on the
+// given mock object.
+// L < g_gmock_mutex
+void Mock::WarnUninterestingCalls(const void* mock_obj) {
+  SetReactionOnUninterestingCalls(mock_obj, internal::WARN);
+}
+
+// Tells Google Mock to fail uninteresting calls on the given mock
+// object.
+// L < g_gmock_mutex
+void Mock::FailUninterestingCalls(const void* mock_obj) {
+  SetReactionOnUninterestingCalls(mock_obj, internal::FAIL);
+}
+
+// Tells Google Mock the given mock object is being destroyed and its
+// entry in the call-reaction table should be removed.
+// L < g_gmock_mutex
+void Mock::UnregisterCallReaction(const void* mock_obj) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  g_uninteresting_call_reaction.erase(mock_obj);
+}
+
+// Returns the reaction Google Mock will have on uninteresting calls
+// made on the given mock object.
+// L < g_gmock_mutex
+internal::CallReaction Mock::GetReactionOnUninterestingCalls(
+    const void* mock_obj) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  return (g_uninteresting_call_reaction.count(mock_obj) == 0) ?
+      internal::WARN : g_uninteresting_call_reaction[mock_obj];
+}
+
+// Tells Google Mock to ignore mock_obj when checking for leaked mock
+// objects.
+// L < g_gmock_mutex
+void Mock::AllowLeak(const void* mock_obj) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  g_mock_object_registry.states()[mock_obj].leakable = true;
+}
+
+// Verifies and clears all expectations on the given mock object.  If
+// the expectations aren't satisfied, generates one or more Google
+// Test non-fatal failures and returns false.
+// L < g_gmock_mutex
+bool Mock::VerifyAndClearExpectations(void* mock_obj) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  return VerifyAndClearExpectationsLocked(mock_obj);
+}
+
+// Verifies all expectations on the given mock object and clears its
+// default actions and expectations.  Returns true iff the
+// verification was successful.
+// L < g_gmock_mutex
+bool Mock::VerifyAndClear(void* mock_obj) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  ClearDefaultActionsLocked(mock_obj);
+  return VerifyAndClearExpectationsLocked(mock_obj);
+}
+
+// Verifies and clears all expectations on the given mock object.  If
+// the expectations aren't satisfied, generates one or more Google
+// Test non-fatal failures and returns false.
+// L >= g_gmock_mutex
+bool Mock::VerifyAndClearExpectationsLocked(void* mock_obj) {
+  internal::g_gmock_mutex.AssertHeld();
+  if (g_mock_object_registry.states().count(mock_obj) == 0) {
+    // No EXPECT_CALL() was set on the given mock object.
+    return true;
+  }
+
+  // Verifies and clears the expectations on each mock method in the
+  // given mock object.
+  bool expectations_met = true;
+  FunctionMockers& mockers =
+      g_mock_object_registry.states()[mock_obj].function_mockers;
+  for (FunctionMockers::const_iterator it = mockers.begin();
+       it != mockers.end(); ++it) {
+    if (!(*it)->VerifyAndClearExpectationsLocked()) {
+      expectations_met = false;
+    }
+  }
+
+  // We don't clear the content of mockers, as they may still be
+  // needed by ClearDefaultActionsLocked().
+  return expectations_met;
+}
+
+// Registers a mock object and a mock method it owns.
+// L < g_gmock_mutex
+void Mock::Register(const void* mock_obj,
+                    internal::UntypedFunctionMockerBase* mocker) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  g_mock_object_registry.states()[mock_obj].function_mockers.insert(mocker);
+}
+
+// Tells Google Mock where in the source code mock_obj is used in an
+// ON_CALL or EXPECT_CALL.  In case mock_obj is leaked, this
+// information helps the user identify which object it is.
+// L < g_gmock_mutex
+void Mock::RegisterUseByOnCallOrExpectCall(
+    const void* mock_obj, const char* file, int line) {
+  internal::MutexLock l(&internal::g_gmock_mutex);
+  MockObjectState& state = g_mock_object_registry.states()[mock_obj];
+  if (state.first_used_file == NULL) {
+    state.first_used_file = file;
+    state.first_used_line = line;
+    const TestInfo* const test_info =
+        UnitTest::GetInstance()->current_test_info();
+    if (test_info != NULL) {
+      // TODO(wan@google.com): record the test case name when the
+      // ON_CALL or EXPECT_CALL is invoked from SetUpTestCase() or
+      // TearDownTestCase().
+      state.first_used_test_case = test_info->test_case_name();
+      state.first_used_test = test_info->name();
+    }
+  }
+}
+
+// Unregisters a mock method; removes the owning mock object from the
+// registry when the last mock method associated with it has been
+// unregistered.  This is called only in the destructor of
+// FunctionMockerBase.
+// L >= g_gmock_mutex
+void Mock::UnregisterLocked(internal::UntypedFunctionMockerBase* mocker) {
+  internal::g_gmock_mutex.AssertHeld();
+  for (MockObjectRegistry::StateMap::iterator it =
+           g_mock_object_registry.states().begin();
+       it != g_mock_object_registry.states().end(); ++it) {
+    FunctionMockers& mockers = it->second.function_mockers;
+    if (mockers.erase(mocker) > 0) {
+      // mocker was in mockers and has been just removed.
+      if (mockers.empty()) {
+        g_mock_object_registry.states().erase(it);
+      }
+      return;
+    }
+  }
+}
+
+// Clears all ON_CALL()s set on the given mock object.
+// L >= g_gmock_mutex
+void Mock::ClearDefaultActionsLocked(void* mock_obj) {
+  internal::g_gmock_mutex.AssertHeld();
+
+  if (g_mock_object_registry.states().count(mock_obj) == 0) {
+    // No ON_CALL() was set on the given mock object.
+    return;
+  }
+
+  // Clears the default actions for each mock method in the given mock
+  // object.
+  FunctionMockers& mockers =
+      g_mock_object_registry.states()[mock_obj].function_mockers;
+  for (FunctionMockers::const_iterator it = mockers.begin();
+       it != mockers.end(); ++it) {
+    (*it)->ClearDefaultActionsLocked();
+  }
+
+  // We don't clear the content of mockers, as they may still be
+  // needed by VerifyAndClearExpectationsLocked().
+}
+
+Expectation::Expectation() {}
+
+Expectation::Expectation(
+    const internal::linked_ptr<internal::ExpectationBase>& an_expectation_base)
+    : expectation_base_(an_expectation_base) {}
+
+Expectation::~Expectation() {}
+
+// Adds an expectation to a sequence.
+void Sequence::AddExpectation(const Expectation& expectation) const {
+  if (*last_expectation_ != expectation) {
+    if (last_expectation_->expectation_base() != NULL) {
+      expectation.expectation_base()->immediate_prerequisites_
+          += *last_expectation_;
+    }
+    *last_expectation_ = expectation;
+  }
+}
+
+// Creates the implicit sequence if there isn't one.
+InSequence::InSequence() {
+  if (internal::g_gmock_implicit_sequence.get() == NULL) {
+    internal::g_gmock_implicit_sequence.set(new Sequence);
+    sequence_created_ = true;
+  } else {
+    sequence_created_ = false;
+  }
+}
+
+// Deletes the implicit sequence if it was created by the constructor
+// of this object.
+InSequence::~InSequence() {
+  if (sequence_created_) {
+    delete internal::g_gmock_implicit_sequence.get();
+    internal::g_gmock_implicit_sequence.set(NULL);
+  }
+}
+
+}  // namespace testing
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+
+namespace testing {
+
+// TODO(wan@google.com): support using environment variables to
+// control the flag values, like what Google Test does.
+
+GMOCK_DEFINE_bool_(catch_leaked_mocks, true,
+                   "true iff Google Mock should report leaked mock objects "
+                   "as failures.");
+
+GMOCK_DEFINE_string_(verbose, internal::kWarningVerbosity,
+                     "Controls how verbose Google Mock's output is."
+                     "  Valid values:\n"
+                     "  info    - prints all messages.\n"
+                     "  warning - prints warnings and errors.\n"
+                     "  error   - prints errors only.");
+
+namespace internal {
+
+// Parses a string as a command line flag.  The string should have the
+// format "--gmock_flag=value".  When def_optional is true, the
+// "=value" part can be omitted.
+//
+// Returns the value of the flag, or NULL if the parsing failed.
+static const char* ParseGoogleMockFlagValue(const char* str,
+                                            const char* flag,
+                                            bool def_optional) {
+  // str and flag must not be NULL.
+  if (str == NULL || flag == NULL) return NULL;
+
+  // The flag must start with "--gmock_".
+  const String flag_str = String::Format("--gmock_%s", flag);
+  const size_t flag_len = flag_str.length();
+  if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL;
+
+  // Skips the flag name.
+  const char* flag_end = str + flag_len;
+
+  // When def_optional is true, it's OK to not have a "=value" part.
+  if (def_optional && (flag_end[0] == '\0')) {
+    return flag_end;
+  }
+
+  // If def_optional is true and there are more characters after the
+  // flag name, or if def_optional is false, there must be a '=' after
+  // the flag name.
+  if (flag_end[0] != '=') return NULL;
+
+  // Returns the string after "=".
+  return flag_end + 1;
+}
+
+// Parses a string for a Google Mock bool flag, in the form of
+// "--gmock_flag=value".
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+static bool ParseGoogleMockBoolFlag(const char* str, const char* flag,
+                                    bool* value) {
+  // Gets the value of the flag as a string.
+  const char* const value_str = ParseGoogleMockFlagValue(str, flag, true);
+
+  // Aborts if the parsing failed.
+  if (value_str == NULL) return false;
+
+  // Converts the string value to a bool.
+  *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F');
+  return true;
+}
+
+// Parses a string for a Google Mock string flag, in the form of
+// "--gmock_flag=value".
+//
+// On success, stores the value of the flag in *value, and returns
+// true.  On failure, returns false without changing *value.
+static bool ParseGoogleMockStringFlag(const char* str, const char* flag,
+                                      String* value) {
+  // Gets the value of the flag as a string.
+  const char* const value_str = ParseGoogleMockFlagValue(str, flag, false);
+
+  // Aborts if the parsing failed.
+  if (value_str == NULL) return false;
+
+  // Sets *value to the value of the flag.
+  *value = value_str;
+  return true;
+}
+
+// The internal implementation of InitGoogleMock().
+//
+// The type parameter CharType can be instantiated to either char or
+// wchar_t.
+template <typename CharType>
+void InitGoogleMockImpl(int* argc, CharType** argv) {
+  // Makes sure Google Test is initialized.  InitGoogleTest() is
+  // idempotent, so it's fine if the user has already called it.
+  InitGoogleTest(argc, argv);
+  if (*argc <= 0) return;
+
+  for (int i = 1; i != *argc; i++) {
+    const String arg_string = StreamableToString(argv[i]);
+    const char* const arg = arg_string.c_str();
+
+    // Do we see a Google Mock flag?
+    if (ParseGoogleMockBoolFlag(arg, "catch_leaked_mocks",
+                                &GMOCK_FLAG(catch_leaked_mocks)) ||
+        ParseGoogleMockStringFlag(arg, "verbose", &GMOCK_FLAG(verbose))) {
+      // Yes.  Shift the remainder of the argv list left by one.  Note
+      // that argv has (*argc + 1) elements, the last one always being
+      // NULL.  The following loop moves the trailing NULL element as
+      // well.
+      for (int j = i; j != *argc; j++) {
+        argv[j] = argv[j + 1];
+      }
+
+      // Decrements the argument count.
+      (*argc)--;
+
+      // We also need to decrement the iterator as we just removed
+      // an element.
+      i--;
+    }
+  }
+}
+
+}  // namespace internal
+
+// Initializes Google Mock.  This must be called before running the
+// tests.  In particular, it parses a command line for the flags that
+// Google Mock recognizes.  Whenever a Google Mock flag is seen, it is
+// removed from argv, and *argc is decremented.
+//
+// No value is returned.  Instead, the Google Mock flag variables are
+// updated.
+//
+// Since Google Test is needed for Google Mock to work, this function
+// also initializes Google Test and parses its flags, if that hasn't
+// been done.
+void InitGoogleMock(int* argc, char** argv) {
+  internal::InitGoogleMockImpl(argc, argv);
+}
+
+// This overloaded version can be used in Windows programs compiled in
+// UNICODE mode.
+void InitGoogleMock(int* argc, wchar_t** argv) {
+  internal::InitGoogleMockImpl(argc, argv);
+}
+
+}  // namespace testing
diff --git a/internal/ceres/gmock_main.cc b/internal/ceres/gmock_main.cc
new file mode 100644
index 0000000..92b74d2
--- /dev/null
+++ b/internal/ceres/gmock_main.cc
@@ -0,0 +1,62 @@
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+#include <iostream>
+#include "gflags/gflags.h"
+#include "glog/logging.h"
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+
+// NOTE(keir): This flag is normally part of gtest within Google but isn't in
+// the open source Google Test, since it is build-system dependent. However for
+// Ceres this is needed for our tests. Add the new flag here.
+DEFINE_string(test_srcdir, "", "The location of the source code.");
+
+// MS C++ compiler/linker has a bug on Windows (not on Windows CE), which
+// causes a link error when _tmain is defined in a static library and UNICODE
+// is enabled. For this reason instead of _tmain, main function is used on
+// Windows. See the following link to track the current status of this bug:
+// http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=394464  // NOLINT
+#if GTEST_OS_WINDOWS_MOBILE
+# include <tchar.h>  // NOLINT
+
+int _tmain(int argc, TCHAR** argv) {
+#else
+int main(int argc, char** argv) {
+#endif  // GTEST_OS_WINDOWS_MOBILE
+  google::ParseCommandLineFlags(&argc, &argv, true);
+  google::InitGoogleLogging(argv[0]);
+  // Since Google Mock depends on Google Test, InitGoogleMock() is
+  // also responsible for initializing Google Test.  Therefore there's
+  // no need for calling testing::InitGoogleTest() separately.
+  testing::InitGoogleMock(&argc, argv);
+  return RUN_ALL_TESTS();
+}
diff --git a/internal/ceres/gradient_checking_cost_function.cc b/internal/ceres/gradient_checking_cost_function.cc
new file mode 100644
index 0000000..abba408
--- /dev/null
+++ b/internal/ceres/gradient_checking_cost_function.cc
@@ -0,0 +1,308 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/gradient_checking_cost_function.h"
+
+#include <algorithm>
+#include <cmath>
+#include <numeric>
+#include <string>
+#include <vector>
+
+#include <glog/logging.h>
+#include "ceres/parameter_block.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/runtime_numeric_diff_cost_function.h"
+#include "ceres/stringprintf.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/problem.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+// True if x and y have an absolute relative difference less than
+// relative_precision and false otherwise. Stores the relative and absolute
+// difference in relative/absolute_error if non-NULL.
+bool IsClose(double x, double y, double relative_precision,
+             double *relative_error,
+             double *absolute_error) {
+  double local_absolute_error;
+  double local_relative_error;
+  if (!absolute_error) {
+    absolute_error = &local_absolute_error;
+  }
+  if (!relative_error) {
+    relative_error = &local_relative_error;
+  }
+  *absolute_error = fabs(x - y);
+  *relative_error = *absolute_error / max(fabs(x), fabs(y));
+  if (x == 0 || y == 0) {
+    // If x or y is exactly zero, then relative difference doesn't have any
+    // meaning. Take the absolute difference instead.
+    *relative_error = *absolute_error;
+  }
+  return fabs(*relative_error) < fabs(relative_precision);
+}
+
+class GradientCheckingCostFunction : public CostFunction {
+ public:
+  GradientCheckingCostFunction(const CostFunction* function,
+                               double relative_step_size,
+                               double relative_precision,
+                               const string& extra_info)
+      : function_(function),
+        finite_diff_cost_function_(
+            CreateRuntimeNumericDiffCostFunction(function,
+                                                 CENTRAL,
+                                                 relative_step_size)),
+        relative_precision_(relative_precision),
+        extra_info_(extra_info) {
+    *mutable_parameter_block_sizes() = function->parameter_block_sizes();
+    set_num_residuals(function->num_residuals());
+  }
+
+  virtual ~GradientCheckingCostFunction() { }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    if (!jacobians) {
+      // Nothing to check in this case; just forward.
+      return function_->Evaluate(parameters, residuals, NULL);
+    }
+
+    int num_residuals = function_->num_residuals();
+
+    // Make space for the jacobians of the two methods.
+    const vector<int16>& block_sizes = function_->parameter_block_sizes();
+    vector<Matrix> term_jacobians(block_sizes.size());
+    vector<Matrix> finite_difference_jacobians(block_sizes.size());
+    vector<double*> term_jacobian_pointers(block_sizes.size());
+    vector<double*> finite_difference_jacobian_pointers(block_sizes.size());
+    for (int i = 0; i < block_sizes.size(); i++) {
+      term_jacobians[i].resize(num_residuals, block_sizes[i]);
+      term_jacobian_pointers[i] = term_jacobians[i].data();
+      finite_difference_jacobians[i].resize(num_residuals, block_sizes[i]);
+      finite_difference_jacobian_pointers[i] =
+          finite_difference_jacobians[i].data();
+    }
+
+    // Evaluate the derivative using the user supplied code.
+    if (!function_->Evaluate(parameters,
+                             residuals,
+                             &term_jacobian_pointers[0])) {
+      LOG(WARNING) << "Function evaluation failed.";
+      return false;
+    }
+
+    // Evaluate the derivative using numeric derivatives.
+    finite_diff_cost_function_->Evaluate(
+        parameters,
+        residuals,
+        &finite_difference_jacobian_pointers[0]);
+
+    // See if any elements have relative error larger than the threshold.
+    int num_bad_jacobian_components = 0;
+    double worst_relative_error = 0;
+
+    // Accumulate the error message for all the jacobians, since it won't get
+    // output if there are no bad jacobian components.
+    string m;
+    for (int k = 0; k < block_sizes.size(); k++) {
+      // Copy the original jacobian blocks into the jacobians array.
+      if (jacobians[k] != NULL) {
+        MatrixRef(jacobians[k],
+                  term_jacobians[k].rows(),
+                  term_jacobians[k].cols()) = term_jacobians[k];
+      }
+
+      StringAppendF(&m,
+                    "========== "
+                    "Jacobian for " "block %d: (%ld by %ld)) "
+                    "==========\n",
+                    k,
+                    term_jacobians[k].rows(),
+                    term_jacobians[k].cols());
+      // The funny spacing creates appropriately aligned column headers.
+      m += " block  row  col        user dx/dy    num diff dx/dy         "
+           "abs error    relative error         parameter          residual\n";
+
+      for (int i = 0; i < term_jacobians[k].rows(); i++) {
+        for (int j = 0; j < term_jacobians[k].cols(); j++) {
+          double term_jacobian = term_jacobians[k](i, j);
+          double finite_jacobian = finite_difference_jacobians[k](i, j);
+          double relative_error, absolute_error;
+          bool bad_jacobian_entry =
+              !IsClose(term_jacobian,
+                       finite_jacobian,
+                       relative_precision_,
+                       &relative_error,
+                       &absolute_error);
+          worst_relative_error = std::max(worst_relative_error,
+                                          relative_error);
+
+          StringAppendF(&m, "%6d %4d %4d %17g %17g %17g %17g %17g %17g",
+                        k, i, j,
+                        term_jacobian, finite_jacobian,
+                        absolute_error, relative_error,
+                        parameters[k][j],
+                        residuals[i]);
+
+          if (bad_jacobian_entry) {
+            num_bad_jacobian_components++;
+            StringAppendF(
+                &m, " ------ (%d,%d,%d) Relative error worse than %g",
+                k, i, j, relative_precision_);
+          }
+          m += "\n";
+        }
+      }
+    }
+
+    // Since there were some bad errors, dump comprehensive debug info.
+    if (num_bad_jacobian_components) {
+      string header = StringPrintf("Detected %d bad jacobian component(s). "
+                                   "Worst relative error was %g.\n",
+                                   num_bad_jacobian_components,
+                                   worst_relative_error);
+      if (!extra_info_.empty()) {
+        header += "Extra info for this residual: " + extra_info_ + "\n";
+      }
+      LOG(WARNING) << "\n" << header << m;
+    }
+    return true;
+  }
+
+ private:
+  const CostFunction* function_;
+  internal::scoped_ptr<CostFunction> finite_diff_cost_function_;
+  double relative_precision_;
+  string extra_info_;
+};
+
+}  // namespace
+
+CostFunction *CreateGradientCheckingCostFunction(
+    const CostFunction *cost_function,
+    double relative_step_size,
+    double relative_precision,
+    const string& extra_info) {
+  return new GradientCheckingCostFunction(cost_function,
+                                          relative_step_size,
+                                          relative_precision,
+                                          extra_info);
+}
+
+ProblemImpl* CreateGradientCheckingProblemImpl(ProblemImpl* problem_impl,
+                                               double relative_step_size,
+                                               double relative_precision) {
+  // We create new CostFunctions by wrapping the original CostFunction
+  // in a gradient checking CostFunction. So its okay for the
+  // ProblemImpl to take ownership of it and destroy it. The
+  // LossFunctions and LocalParameterizations are reused and since
+  // they are owned by problem_impl, gradient_checking_problem_impl
+  // should not take ownership of it.
+  Problem::Options gradient_checking_problem_options;
+  gradient_checking_problem_options.cost_function_ownership = TAKE_OWNERSHIP;
+  gradient_checking_problem_options.loss_function_ownership =
+      DO_NOT_TAKE_OWNERSHIP;
+  gradient_checking_problem_options.local_parameterization_ownership =
+      DO_NOT_TAKE_OWNERSHIP;
+
+  ProblemImpl* gradient_checking_problem_impl = new ProblemImpl(
+      gradient_checking_problem_options);
+
+  Program* program = problem_impl->mutable_program();
+
+  // For every ParameterBlock in problem_impl, create a new parameter
+  // block with the same local parameterization and constancy.
+  const vector<ParameterBlock*>& parameter_blocks = program->parameter_blocks();
+  for (int i = 0; i < parameter_blocks.size(); ++i) {
+    ParameterBlock* parameter_block = parameter_blocks[i];
+    gradient_checking_problem_impl->AddParameterBlock(
+        parameter_block->mutable_user_state(),
+        parameter_block->Size(),
+        parameter_block->mutable_local_parameterization());
+
+    if (parameter_block->IsConstant()) {
+      gradient_checking_problem_impl->SetParameterBlockConstant(
+          parameter_block->mutable_user_state());
+    }
+  }
+
+  // For every ResidualBlock in problem_impl, create a new
+  // ResidualBlock by wrapping its CostFunction inside a
+  // GradientCheckingCostFunction.
+  const vector<ResidualBlock*>& residual_blocks = program->residual_blocks();
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    ResidualBlock* residual_block = residual_blocks[i];
+
+    // Build a human readable string which identifies the
+    // ResidualBlock. This is used by the GradientCheckingCostFunction
+    // when logging debugging information.
+    string extra_info = StringPrintf(
+        "Residual block id %d; depends on parameters [", i);
+    vector<double*> parameter_blocks;
+    for (int j = 0; j < residual_block->NumParameterBlocks(); ++j) {
+      ParameterBlock* parameter_block = residual_block->parameter_blocks()[j];
+      parameter_blocks.push_back(parameter_block->mutable_user_state());
+      StringAppendF(&extra_info, "%p", parameter_block->mutable_user_state());
+      extra_info += (j < residual_block->NumParameterBlocks() - 1) ? ", " : "]";
+    }
+
+    // Wrap the original CostFunction in a GradientCheckingCostFunction.
+    CostFunction* gradient_checking_cost_function =
+        CreateGradientCheckingCostFunction(residual_block->cost_function(),
+                                           relative_step_size,
+                                           relative_precision,
+                                           extra_info);
+
+    // The const_cast is necessary because
+    // ProblemImpl::AddResidualBlock can potentially take ownership of
+    // the LossFunction, but in this case we are guaranteed that this
+    // will not be the case, so this const_cast is harmless.
+    gradient_checking_problem_impl->AddResidualBlock(
+        gradient_checking_cost_function,
+        const_cast<LossFunction*>(residual_block->loss_function()),
+        parameter_blocks);
+  }
+
+  return gradient_checking_problem_impl;
+}
+
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/gradient_checking_cost_function.h b/internal/ceres/gradient_checking_cost_function.h
new file mode 100644
index 0000000..d49c8e6
--- /dev/null
+++ b/internal/ceres/gradient_checking_cost_function.h
@@ -0,0 +1,85 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_GRADIENT_CHECKING_COST_FUNCTION_H_
+#define CERES_INTERNAL_GRADIENT_CHECKING_COST_FUNCTION_H_
+
+#include <string>
+
+#include "ceres/cost_function.h"
+
+namespace ceres {
+namespace internal {
+
+class ProblemImpl;
+
+// Creates a CostFunction that checks the jacobians that cost_function computes
+// with finite differences. Bad results are logged; required precision is
+// controlled by relative_precision and the numeric differentiation step size is
+// controlled with relative_step_size. See solver.h for a better explanation of
+// relative_step_size. Caller owns result.
+//
+// The condition enforced is that
+//
+//    (J_actual(i, j) - J_numeric(i, j))
+//   ------------------------------------  <  relative_precision
+//   max(J_actual(i, j), J_numeric(i, j))
+//
+// where J_actual(i, j) is the jacobian as computed by the supplied cost
+// function (by the user) and J_numeric is the jacobian as computed by finite
+// differences.
+//
+// Note: This is quite inefficient and is intended only for debugging.
+CostFunction* CreateGradientCheckingCostFunction(
+    const CostFunction* cost_function,
+    double relative_step_size,
+    double relative_precision,
+    const string& extra_info);
+
+// Create a new ProblemImpl object from the input problem_impl, where
+// each CostFunctions in problem_impl are wrapped inside a
+// GradientCheckingCostFunctions. This gives us a ProblemImpl object
+// which checks its derivatives against estimates from numeric
+// differentiation everytime a ResidualBlock is evaluated.
+//
+// relative_step_size and relative_precision are parameters to control
+// the numeric differentiation and the relative tolerance between the
+// jacobian computed by the CostFunctions in problem_impl and
+// jacobians obtained by numerically differentiating them. For more
+// details see the documentation for
+// CreateGradientCheckingCostFunction above.
+ProblemImpl* CreateGradientCheckingProblemImpl(ProblemImpl* problem_impl,
+                                               double relative_step_size,
+                                               double relative_precision);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_GRADIENT_CHECKING_COST_FUNCTION_H_
diff --git a/internal/ceres/gradient_checking_cost_function_test.cc b/internal/ceres/gradient_checking_cost_function_test.cc
new file mode 100644
index 0000000..cde613b
--- /dev/null
+++ b/internal/ceres/gradient_checking_cost_function_test.cc
@@ -0,0 +1,414 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/gradient_checking_cost_function.h"
+
+#include <cmath>
+#include <vector>
+
+#include <glog/logging.h>
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+#include "ceres/mock_log.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/parameter_block.h"
+#include "ceres/residual_block.h"
+#include "ceres/random.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/loss_function.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/types.h"
+
+using testing::AllOf;
+using testing::AnyNumber;
+using testing::HasSubstr;
+using testing::ScopedMockLog;
+using testing::_;
+
+namespace ceres {
+namespace internal {
+
+// Pick a (non-quadratic) function whose derivative are easy:
+//
+//    f = exp(- a' x).
+//   df = - f a.
+//
+// where 'a' is a vector of the same size as 'x'. In the block
+// version, they are both block vectors, of course.
+template<int bad_block = 1, int bad_variable = 2>
+class TestTerm : public CostFunction {
+ public:
+  // The constructor of this function needs to know the number
+  // of blocks desired, and the size of each block.
+  TestTerm(int arity, int const *dim) : arity_(arity) {
+    // Make 'arity' random vectors.
+    a_.resize(arity_);
+    for (int j = 0; j < arity_; ++j) {
+      a_[j].resize(dim[j]);
+      for (int u = 0; u < dim[j]; ++u) {
+        a_[j][u] = 2.0 * RandDouble() - 1.0;
+      }
+    }
+
+    for (int i = 0; i < arity_; i++) {
+      mutable_parameter_block_sizes()->push_back(dim[i]);
+    }
+    set_num_residuals(1);
+  }
+
+  bool Evaluate(double const* const* parameters,
+                double* residuals,
+                double** jacobians) const {
+    // Compute a . x.
+    double ax = 0;
+    for (int j = 0; j < arity_; ++j) {
+      for (int u = 0; u < parameter_block_sizes()[j]; ++u) {
+        ax += a_[j][u] * parameters[j][u];
+      }
+    }
+
+    // This is the cost, but also appears as a factor
+    // in the derivatives.
+    double f = *residuals = exp(-ax);
+
+    // Accumulate 1st order derivatives.
+    if (jacobians) {
+      for (int j = 0; j < arity_; ++j) {
+        if (jacobians[j]) {
+          for (int u = 0; u < parameter_block_sizes()[j]; ++u) {
+            // See comments before class.
+            jacobians[j][u] = - f * a_[j][u];
+
+            if (bad_block == j && bad_variable == u) {
+              // Whoopsiedoopsie! Deliberately introduce a faulty jacobian entry
+              // like what happens when users make an error in their jacobian
+              // computations. This should get detected.
+              LOG(INFO) << "Poisoning jacobian for parameter block " << j
+                        << ", row 0, column " << u;
+              jacobians[j][u] += 500;
+            }
+          }
+        }
+      }
+    }
+
+    return true;
+  }
+
+ private:
+  int arity_;
+  vector<vector<double> > a_;
+};
+
+TEST(GradientCheckingCostFunction, ResidualsAndJacobiansArePreservedTest) {
+  srand(5);
+
+  // Test with 3 blocks of size 2, 3 and 4.
+  int const arity = 3;
+  int const dim[arity] = { 2, 3, 4 };
+
+  // Make a random set of blocks.
+  vector<double*> parameters(arity);
+  for (int j = 0; j < arity; ++j) {
+    parameters[j] = new double[dim[j]];
+    for (int u = 0; u < dim[j]; ++u) {
+      parameters[j][u] = 2.0 * RandDouble() - 1.0;
+    }
+  }
+
+  double original_residual;
+  double residual;
+  vector<double*> original_jacobians(arity);
+  vector<double*> jacobians(arity);
+
+  for (int j = 0; j < arity; ++j) {
+    // Since residual is one dimensional the jacobians have the same
+    // size as the parameter blocks.
+    jacobians[j] = new double[dim[j]];
+    original_jacobians[j] = new double[dim[j]];
+  }
+
+  const double kRelativeStepSize = 1e-6;
+  const double kRelativePrecision = 1e-4;
+
+  TestTerm<-1, -1> term(arity, dim);
+  scoped_ptr<CostFunction> gradient_checking_cost_function(
+      CreateGradientCheckingCostFunction(&term,
+                                         kRelativeStepSize,
+                                         kRelativePrecision,
+                                         "Ignored."));
+  term.Evaluate(&parameters[0],
+                &original_residual,
+                &original_jacobians[0]);
+
+  gradient_checking_cost_function->Evaluate(&parameters[0],
+                                            &residual,
+                                            &jacobians[0]);
+  EXPECT_EQ(original_residual, residual);
+
+  for (int j = 0; j < arity; j++) {
+    for (int k = 0; k < dim[j]; ++k) {
+      EXPECT_EQ(original_jacobians[j][k], jacobians[j][k]);
+    }
+
+    delete[] parameters[j];
+    delete[] jacobians[j];
+    delete[] original_jacobians[j];
+  }
+}
+
+TEST(GradientCheckingCostFunction, SmokeTest) {
+  srand(5);
+
+  // Test with 3 blocks of size 2, 3 and 4.
+  int const arity = 3;
+  int const dim[arity] = { 2, 3, 4 };
+
+  // Make a random set of blocks.
+  vector<double*> parameters(arity);
+  for (int j = 0; j < arity; ++j) {
+    parameters[j] = new double[dim[j]];
+    for (int u = 0; u < dim[j]; ++u) {
+      parameters[j][u] = 2.0 * RandDouble() - 1.0;
+    }
+  }
+
+  double residual;
+  vector<double*> jacobians(arity);
+  for (int j = 0; j < arity; ++j) {
+    // Since residual is one dimensional the jacobians have the same size as the
+    // parameter blocks.
+    jacobians[j] = new double[dim[j]];
+  }
+
+  const double kRelativeStepSize = 1e-6;
+  const double kRelativePrecision = 1e-4;
+
+  // Should have one term that's bad, causing everything to get dumped.
+  LOG(INFO) << "Bad gradient";
+  {
+    TestTerm<1, 2> term(arity, dim);
+    scoped_ptr<CostFunction> gradient_checking_cost_function(
+        CreateGradientCheckingCostFunction(&term,
+                                           kRelativeStepSize,
+                                           kRelativePrecision,
+                                           "Fuzzy bananas"));
+
+    ScopedMockLog log;
+    EXPECT_CALL(log, Log(_, _, _)).Times(AnyNumber());
+    EXPECT_CALL(log, Log(WARNING, _,
+                         AllOf(HasSubstr("(1,0,2) Relative error worse than"),
+                               HasSubstr("Fuzzy bananas"))));
+
+    gradient_checking_cost_function->Evaluate(&parameters[0],
+                                              &residual,
+                                              &jacobians[0]);
+  }
+
+  // The gradient is correct, so no errors are reported.
+  LOG(INFO) << "Good gradient";
+  {
+    TestTerm<-1, -1> term(arity, dim);
+    scoped_ptr<CostFunction> gradient_checking_cost_function(
+        CreateGradientCheckingCostFunction(&term,
+                                           kRelativeStepSize,
+                                           kRelativePrecision,
+                                           "Ignored."));
+
+    ScopedMockLog log;
+    EXPECT_CALL(log, Log(_, _, _)).Times(0);
+
+    gradient_checking_cost_function->Evaluate(&parameters[0],
+                                              &residual,
+                                              &jacobians[0]);
+  }
+
+  for (int j = 0; j < arity; j++) {
+    delete[] parameters[j];
+    delete[] jacobians[j];
+  }
+}
+
+// The following three classes are for the purposes of defining
+// function signatures. They have dummy Evaluate functions.
+
+// Trivial cost function that accepts a single argument.
+class UnaryCostFunction : public CostFunction {
+ public:
+  UnaryCostFunction(int num_residuals, int16 parameter_block_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block_size);
+  }
+  virtual ~UnaryCostFunction() {}
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 1;
+    }
+    return true;
+  }
+};
+
+// Trivial cost function that accepts two arguments.
+class BinaryCostFunction: public CostFunction {
+ public:
+  BinaryCostFunction(int num_residuals,
+                     int16 parameter_block1_size,
+                     int16 parameter_block2_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block1_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block2_size);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 2;
+    }
+    return true;
+  }
+};
+
+// Trivial cost function that accepts three arguments.
+class TernaryCostFunction: public CostFunction {
+ public:
+  TernaryCostFunction(int num_residuals,
+                      int16 parameter_block1_size,
+                      int16 parameter_block2_size,
+                      int16 parameter_block3_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block1_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block2_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block3_size);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 3;
+    }
+    return true;
+  }
+};
+
+// Verify that the two ParameterBlocks are formed from the same user
+// array and have the same LocalParameterization object.
+void ParameterBlocksAreEquivalent(const ParameterBlock*  left,
+                                  const ParameterBlock* right) {
+  CHECK_NOTNULL(left);
+  CHECK_NOTNULL(right);
+  EXPECT_EQ(left->user_state(), right->user_state());
+  EXPECT_EQ(left->Size(), right->Size());
+  EXPECT_EQ(left->Size(), right->Size());
+  EXPECT_EQ(left->LocalSize(), right->LocalSize());
+  EXPECT_EQ(left->local_parameterization(), right->local_parameterization());
+  EXPECT_EQ(left->IsConstant(), right->IsConstant());
+}
+
+TEST(GradientCheckingProblemImpl, ProblemDimensionsMatch) {
+  double x[3], y[4], z[5], w[4];
+
+  ProblemImpl problem_impl;
+  problem_impl.AddParameterBlock(x, 3);
+  problem_impl.AddParameterBlock(y, 4);
+  problem_impl.SetParameterBlockConstant(y);
+  problem_impl.AddParameterBlock(z, 5);
+  problem_impl.AddParameterBlock(w, 4, new QuaternionParameterization);
+  problem_impl.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+  problem_impl.AddResidualBlock(new BinaryCostFunction(6, 5, 4) ,
+                                NULL, z, y);
+  problem_impl.AddResidualBlock(new BinaryCostFunction(3, 3, 5),
+                                new TrivialLoss, x, z);
+  problem_impl.AddResidualBlock(new BinaryCostFunction(7, 5, 3),
+                                NULL, z, x);
+  problem_impl.AddResidualBlock(new TernaryCostFunction(1, 5, 3, 4),
+                                NULL, z, x, y);
+
+  scoped_ptr<ProblemImpl> gradient_checking_problem_impl(
+      CreateGradientCheckingProblemImpl(&problem_impl, 1.0, 1.0));
+
+  // The dimensions of the two problems match.
+  EXPECT_EQ(problem_impl.NumParameterBlocks(),
+            gradient_checking_problem_impl->NumParameterBlocks());
+  EXPECT_EQ(problem_impl.NumResidualBlocks(),
+            gradient_checking_problem_impl->NumResidualBlocks());
+
+  EXPECT_EQ(problem_impl.NumParameters(),
+            gradient_checking_problem_impl->NumParameters());
+  EXPECT_EQ(problem_impl.NumResiduals(),
+            gradient_checking_problem_impl->NumResiduals());
+
+  const Program& program = problem_impl.program();
+  const Program& gradient_checking_program =
+      gradient_checking_problem_impl->program();
+
+  // Since we added the ParameterBlocks and ResidualBlocks explicitly,
+  // they should be in the same order in the two programs. It is
+  // possible that may change due to implementation changes to
+  // Program. This is not exepected to be the case and writing code to
+  // anticipate that possibility not worth the extra complexity in
+  // this test.
+  for (int i = 0; i < program.parameter_blocks().size(); ++i) {
+    ParameterBlocksAreEquivalent(
+        program.parameter_blocks()[i],
+        gradient_checking_program.parameter_blocks()[i]);
+  }
+
+  for (int i = 0; i < program.residual_blocks().size(); ++i) {
+    // Compare the sizes of the two ResidualBlocks.
+    const ResidualBlock* original_residual_block =
+        program.residual_blocks()[i];
+    const ResidualBlock* new_residual_block =
+        gradient_checking_program.residual_blocks()[i];
+    EXPECT_EQ(original_residual_block->NumParameterBlocks(),
+              new_residual_block->NumParameterBlocks());
+    EXPECT_EQ(original_residual_block->NumResiduals(),
+              new_residual_block->NumResiduals());
+    EXPECT_EQ(original_residual_block->NumScratchDoublesForEvaluate(),
+              new_residual_block->NumScratchDoublesForEvaluate());
+
+    // Verify that the ParameterBlocks for the two residuals are equivalent.
+    for (int j = 0; j < original_residual_block->NumParameterBlocks(); ++j) {
+      ParameterBlocksAreEquivalent(
+          original_residual_block->parameter_blocks()[j],
+          new_residual_block->parameter_blocks()[j]);
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/graph.h b/internal/ceres/graph.h
new file mode 100644
index 0000000..fd7a224
--- /dev/null
+++ b/internal/ceres/graph.h
@@ -0,0 +1,138 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_GRAPH_H_
+#define CERES_INTERNAL_GRAPH_H_
+
+#include <limits>
+#include <glog/logging.h>
+#include "ceres/integral_types.h"
+#include "ceres/map_util.h"
+#include "ceres/collections_port.h"
+#include "ceres/internal/macros.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+// A weighted undirected graph templated over the vertex ids. Vertex
+// should be hashable and comparable.
+template <typename Vertex>
+class Graph {
+ public:
+  Graph() {}
+
+  // Add a weighted vertex. If the vertex already exists in the graph,
+  // its weight is set to the new weight.
+  void AddVertex(const Vertex& vertex, double weight) {
+    if (vertices_.find(vertex) == vertices_.end()) {
+      vertices_.insert(vertex);
+      edges_[vertex] = HashSet<Vertex>();
+    }
+    vertex_weights_[vertex] = weight;
+  }
+
+  // Uses weight = 1.0. If vertex already exists, its weight is set to
+  // 1.0.
+  void AddVertex(const Vertex& vertex) {
+    AddVertex(vertex, 1.0);
+  }
+
+  // Add a weighted edge between the vertex1 and vertex2. Calling
+  // AddEdge on a pair of vertices which do not exist in the graph yet
+  // will result in undefined behavior.
+  //
+  // It is legal to call this method repeatedly for the same set of
+  // vertices.
+  void AddEdge(const Vertex& vertex1, const Vertex& vertex2, double weight) {
+    DCHECK(vertices_.find(vertex1) != vertices_.end());
+    DCHECK(vertices_.find(vertex2) != vertices_.end());
+
+    if (edges_[vertex1].insert(vertex2).second) {
+      edges_[vertex2].insert(vertex1);
+    }
+
+    if (vertex1 < vertex2) {
+      edge_weights_[make_pair(vertex1, vertex2)] = weight;
+    } else {
+      edge_weights_[make_pair(vertex2, vertex1)] = weight;
+    }
+  }
+
+  // Uses weight = 1.0.
+  void AddEdge(const Vertex& vertex1, const Vertex& vertex2) {
+    AddEdge(vertex1, vertex2, 1.0);
+  }
+
+  // Calling VertexWeight on a vertex not in the graph will result in
+  // undefined behavior.
+  double VertexWeight(const Vertex& vertex) const {
+    return FindOrDie(vertex_weights_, vertex);
+  }
+
+  // Calling EdgeWeight on a pair of vertices where either one of the
+  // vertices is not present in the graph will result in undefined
+  // behaviour. If there is no edge connecting vertex1 and vertex2,
+  // the edge weight is zero.
+  double EdgeWeight(const Vertex& vertex1, const Vertex& vertex2) const {
+    if (vertex1 < vertex2) {
+      return FindWithDefault(edge_weights_, make_pair(vertex1, vertex2), 0.0);
+    } else {
+      return FindWithDefault(edge_weights_, make_pair(vertex2, vertex1), 0.0);
+    }
+  }
+
+  // Calling Neighbors on a vertex not in the graph will result in
+  // undefined behaviour.
+  const HashSet<Vertex>& Neighbors(const Vertex& vertex) const {
+    return FindOrDie(edges_, vertex);
+  }
+
+  const HashSet<Vertex>& vertices() const {
+    return vertices_;
+  }
+
+  static double InvalidWeight() {
+    return std::numeric_limits<double>::quiet_NaN();
+  };
+
+ private:
+  HashSet<Vertex> vertices_;
+  HashMap<Vertex, double> vertex_weights_;
+  HashMap<Vertex, HashSet<Vertex> > edges_;
+  HashMap<pair<Vertex, Vertex>, double> edge_weights_;
+
+  DISALLOW_COPY_AND_ASSIGN(Graph);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_GRAPH_H_
diff --git a/internal/ceres/graph_algorithms.h b/internal/ceres/graph_algorithms.h
new file mode 100644
index 0000000..b1c42c6
--- /dev/null
+++ b/internal/ceres/graph_algorithms.h
@@ -0,0 +1,267 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Various algorithms that operate on undirected graphs.
+
+#ifndef CERES_INTERNAL_GRAPH_ALGORITHMS_H_
+#define CERES_INTERNAL_GRAPH_ALGORITHMS_H_
+
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+
+namespace ceres {
+namespace internal {
+
+// Compare two vertices of a graph by their degrees.
+template <typename Vertex>
+class VertexDegreeLessThan {
+ public:
+  explicit VertexDegreeLessThan(const Graph<Vertex>& graph)
+      : graph_(graph) {}
+
+  bool operator()(const Vertex& lhs, const Vertex& rhs) const {
+    return (graph_.Neighbors(lhs).size() < graph_.Neighbors(rhs).size());
+  }
+
+ private:
+  const Graph<Vertex>& graph_;
+};
+
+// Order the vertices of a graph using its (approximately) largest
+// independent set, where an independent set of a graph is a set of
+// vertices that have no edges connecting them. The maximum
+// independent set problem is NP-Hard, but there are effective
+// approximation algorithms available. The implementation here uses a
+// breadth first search that explores the vertices in order of
+// increasing degree. The same idea is used by Saad & Li in "MIQR: A
+// multilevel incomplete QR preconditioner for large sparse
+// least-squares problems", SIMAX, 2007.
+//
+// Given a undirected graph G(V,E), the algorithm is a greedy BFS
+// search where the vertices are explored in increasing order of their
+// degree. The output vector ordering contains elements of S in
+// increasing order of their degree, followed by elements of V - S in
+// increasing order of degree. The return value of the function is the
+// cardinality of S.
+template <typename Vertex>
+int IndependentSetOrdering(const Graph<Vertex>& graph,
+                           vector<Vertex>* ordering) {
+  const HashSet<Vertex>& vertices = graph.vertices();
+  const int num_vertices = vertices.size();
+
+  CHECK_NOTNULL(ordering);
+  ordering->clear();
+  ordering->reserve(num_vertices);
+
+  // Colors for labeling the graph during the BFS.
+  const char kWhite = 0;
+  const char kGrey = 1;
+  const char kBlack = 2;
+
+  // Mark all vertices white.
+  HashMap<Vertex, char> vertex_color;
+  vector<Vertex> vertex_queue;
+  for (typename HashSet<Vertex>::const_iterator it = vertices.begin();
+       it != vertices.end();
+       ++it) {
+    vertex_color[*it] = kWhite;
+    vertex_queue.push_back(*it);
+  }
+
+
+  sort(vertex_queue.begin(), vertex_queue.end(),
+       VertexDegreeLessThan<Vertex>(graph));
+
+  // Iterate over vertex_queue. Pick the first white vertex, add it
+  // to the independent set. Mark it black and its neighbors grey.
+  for (int i = 0; i < vertex_queue.size(); ++i) {
+    const Vertex& vertex = vertex_queue[i];
+    if (vertex_color[vertex] != kWhite) {
+      continue;
+    }
+
+    ordering->push_back(vertex);
+    vertex_color[vertex] = kBlack;
+    const HashSet<Vertex>& neighbors = graph.Neighbors(vertex);
+    for (typename HashSet<Vertex>::const_iterator it = neighbors.begin();
+         it != neighbors.end();
+         ++it) {
+      vertex_color[*it] = kGrey;
+    }
+  }
+
+  int independent_set_size = ordering->size();
+
+  // Iterate over the vertices and add all the grey vertices to the
+  // ordering. At this stage there should only be black or grey
+  // vertices in the graph.
+  for (typename vector<Vertex>::const_iterator it = vertex_queue.begin();
+       it != vertex_queue.end();
+       ++it) {
+    const Vertex vertex = *it;
+    DCHECK(vertex_color[vertex] != kWhite);
+    if (vertex_color[vertex] != kBlack) {
+      ordering->push_back(vertex);
+    }
+  }
+
+  CHECK_EQ(ordering->size(), num_vertices);
+  return independent_set_size;
+}
+
+// Find the connected component for a vertex implemented using the
+// find and update operation for disjoint-set. Recursively traverse
+// the disjoint set structure till you reach a vertex whose connected
+// component has the same id as the vertex itself. Along the way
+// update the connected components of all the vertices. This updating
+// is what gives this data structure its efficiency.
+template <typename Vertex>
+Vertex FindConnectedComponent(const Vertex& vertex,
+                              HashMap<Vertex, Vertex>* union_find) {
+  typename HashMap<Vertex, Vertex>::iterator it = union_find->find(vertex);
+  DCHECK(it != union_find->end());
+  if (it->second != vertex) {
+    it->second = FindConnectedComponent(it->second, union_find);
+  }
+
+  return it->second;
+}
+
+// Compute a degree two constrained Maximum Spanning Tree/forest of
+// the input graph. Caller owns the result.
+//
+// Finding degree 2 spanning tree of a graph is not always
+// possible. For example a star graph, i.e. a graph with n-nodes
+// where one node is connected to the other n-1 nodes does not have
+// a any spanning trees of degree less than n-1.Even if such a tree
+// exists, finding such a tree is NP-Hard.
+
+// We get around both of these problems by using a greedy, degree
+// constrained variant of Kruskal's algorithm. We start with a graph
+// G_T with the same vertex set V as the input graph G(V,E) but an
+// empty edge set. We then iterate over the edges of G in decreasing
+// order of weight, adding them to G_T if doing so does not create a
+// cycle in G_T} and the degree of all the vertices in G_T remains
+// bounded by two. This O(|E|) algorithm results in a degree-2
+// spanning forest, or a collection of linear paths that span the
+// graph G.
+template <typename Vertex>
+Graph<Vertex>*
+Degree2MaximumSpanningForest(const Graph<Vertex>& graph) {
+  // Array of edges sorted in decreasing order of their weights.
+  vector<pair<double, pair<Vertex, Vertex> > > weighted_edges;
+  Graph<Vertex>* forest = new Graph<Vertex>();
+
+  // Disjoint-set to keep track of the connected components in the
+  // maximum spanning tree.
+  HashMap<Vertex, Vertex> disjoint_set;
+
+  // Sort of the edges in the graph in decreasing order of their
+  // weight. Also add the vertices of the graph to the Maximum
+  // Spanning Tree graph and set each vertex to be its own connected
+  // component in the disjoint_set structure.
+  const HashSet<Vertex>& vertices = graph.vertices();
+  for (typename HashSet<Vertex>::const_iterator it = vertices.begin();
+       it != vertices.end();
+       ++it) {
+    const Vertex vertex1 = *it;
+    forest->AddVertex(vertex1, graph.VertexWeight(vertex1));
+    disjoint_set[vertex1] = vertex1;
+
+    const HashSet<Vertex>& neighbors = graph.Neighbors(vertex1);
+    for (typename HashSet<Vertex>::const_iterator it2 = neighbors.begin();
+         it2 != neighbors.end();
+         ++it2) {
+      const Vertex vertex2 = *it2;
+      if (vertex1 >= vertex2) {
+        continue;
+      }
+      const double weight = graph.EdgeWeight(vertex1, vertex2);
+      weighted_edges.push_back(make_pair(weight, make_pair(vertex1, vertex2)));
+    }
+  }
+
+  // The elements of this vector, are pairs<edge_weight,
+  // edge>. Sorting it using the reverse iterators gives us the edges
+  // in decreasing order of edges.
+  sort(weighted_edges.rbegin(), weighted_edges.rend());
+
+  // Greedily add edges to the spanning tree/forest as long as they do
+  // not violate the degree/cycle constraint.
+  for (int i =0; i < weighted_edges.size(); ++i) {
+    const pair<Vertex, Vertex>& edge = weighted_edges[i].second;
+    const Vertex vertex1 = edge.first;
+    const Vertex vertex2 = edge.second;
+
+    // Check if either of the vertices are of degree 2 already, in
+    // which case adding this edge will violate the degree 2
+    // constraint.
+    if ((forest->Neighbors(vertex1).size() == 2) ||
+        (forest->Neighbors(vertex2).size() == 2)) {
+      continue;
+    }
+
+    // Find the id of the connected component to which the two
+    // vertices belong to. If the id is the same, it means that the
+    // two of them are already connected to each other via some other
+    // vertex, and adding this edge will create a cycle.
+    Vertex root1 = FindConnectedComponent(vertex1, &disjoint_set);
+    Vertex root2 = FindConnectedComponent(vertex2, &disjoint_set);
+
+    if (root1 == root2) {
+      continue;
+    }
+
+    // This edge can be added, add an edge in either direction with
+    // the same weight as the original graph.
+    const double edge_weight = graph.EdgeWeight(vertex1, vertex2);
+    forest->AddEdge(vertex1, vertex2, edge_weight);
+    forest->AddEdge(vertex2, vertex1, edge_weight);
+
+    // Connected the two connected components by updating the
+    // disjoint_set structure. Always connect the connected component
+    // with the greater index with the connected component with the
+    // smaller index. This should ensure shallower trees, for quicker
+    // lookup.
+    if (root2 < root1) {
+      std::swap(root1, root2);
+    };
+
+    disjoint_set[root2] = root1;
+  }
+  return forest;
+}
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_GRAPH_ALGORITHMS_H_
diff --git a/internal/ceres/graph_algorithms_test.cc b/internal/ceres/graph_algorithms_test.cc
new file mode 100644
index 0000000..bce0183
--- /dev/null
+++ b/internal/ceres/graph_algorithms_test.cc
@@ -0,0 +1,169 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/graph_algorithms.h"
+
+#include <algorithm>
+#include "gtest/gtest.h"
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(IndependentSetOrdering, Chain) {
+  Graph<int> graph;
+  graph.AddVertex(0);
+  graph.AddVertex(1);
+  graph.AddVertex(2);
+  graph.AddVertex(3);
+  graph.AddVertex(4);
+
+  graph.AddEdge(0, 1);
+  graph.AddEdge(1, 2);
+  graph.AddEdge(2, 3);
+  graph.AddEdge(3, 4);
+
+  // 0-1-2-3-4
+  // 0, 2, 4 should be in the independent set.
+  vector<int> ordering;
+  int independent_set_size = IndependentSetOrdering(graph, &ordering);
+
+  sort(ordering.begin(), ordering.begin() + 3);
+  sort(ordering.begin() + 3, ordering.end());
+
+  EXPECT_EQ(independent_set_size, 3);
+  EXPECT_EQ(ordering.size(), 5);
+  EXPECT_EQ(ordering[0], 0);
+  EXPECT_EQ(ordering[1], 2);
+  EXPECT_EQ(ordering[2], 4);
+  EXPECT_EQ(ordering[3], 1);
+  EXPECT_EQ(ordering[4], 3);
+}
+
+TEST(IndependentSetOrdering, Star) {
+  Graph<int> graph;
+  graph.AddVertex(0);
+  graph.AddVertex(1);
+  graph.AddVertex(2);
+  graph.AddVertex(3);
+  graph.AddVertex(4);
+
+  graph.AddEdge(0, 1);
+  graph.AddEdge(0, 2);
+  graph.AddEdge(0, 3);
+  graph.AddEdge(0, 4);
+
+  //      1
+  //      |
+  //    4-0-2
+  //      |
+  //      3
+  // 1, 2, 3, 4 should be in the indepdendent set.
+  vector<int> ordering;
+  int independent_set_size = IndependentSetOrdering(graph, &ordering);
+  EXPECT_EQ(independent_set_size, 4);
+  EXPECT_EQ(ordering.size(), 5);
+  EXPECT_EQ(ordering[4], 0);
+  sort(ordering.begin(), ordering.begin() + 4);
+  EXPECT_EQ(ordering[0], 1);
+  EXPECT_EQ(ordering[1], 2);
+  EXPECT_EQ(ordering[2], 3);
+  EXPECT_EQ(ordering[3], 4);
+}
+
+TEST(Degree2MaximumSpanningForest, PreserveWeights) {
+  Graph<int> graph;
+  graph.AddVertex(0, 1.0);
+  graph.AddVertex(1, 2.0);
+  graph.AddEdge(0, 1, 0.5);
+  graph.AddEdge(1, 0, 0.5);
+
+  scoped_ptr<Graph<int> > forest(Degree2MaximumSpanningForest(graph));
+
+  const HashSet<int>& vertices = forest->vertices();
+  EXPECT_EQ(vertices.size(), 2);
+  EXPECT_EQ(forest->VertexWeight(0), 1.0);
+  EXPECT_EQ(forest->VertexWeight(1), 2.0);
+  EXPECT_EQ(forest->Neighbors(0).size(), 1.0);
+  EXPECT_EQ(forest->EdgeWeight(0, 1), 0.5);
+}
+
+TEST(Degree2MaximumSpanningForest, StarGraph) {
+  Graph<int> graph;
+  graph.AddVertex(0);
+  graph.AddVertex(1);
+  graph.AddVertex(2);
+  graph.AddVertex(3);
+  graph.AddVertex(4);
+
+  graph.AddEdge(0, 1, 1.0);
+  graph.AddEdge(0, 2, 2.0);
+  graph.AddEdge(0, 3, 3.0);
+  graph.AddEdge(0, 4, 4.0);
+
+  scoped_ptr<Graph<int> > forest(Degree2MaximumSpanningForest(graph));
+  const HashSet<int>& vertices = forest->vertices();
+  EXPECT_EQ(vertices.size(), 5);
+
+  {
+    const HashSet<int>& neighbors = forest->Neighbors(0);
+    EXPECT_EQ(neighbors.size(), 2);
+    EXPECT_TRUE(neighbors.find(4) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(3) != neighbors.end());
+  }
+
+  {
+    const HashSet<int>& neighbors = forest->Neighbors(3);
+    EXPECT_EQ(neighbors.size(), 1);
+    EXPECT_TRUE(neighbors.find(0) != neighbors.end());
+  }
+
+  {
+    const HashSet<int>& neighbors = forest->Neighbors(4);
+    EXPECT_EQ(neighbors.size(), 1);
+    EXPECT_TRUE(neighbors.find(0) != neighbors.end());
+  }
+
+  {
+    const HashSet<int>& neighbors = forest->Neighbors(1);
+    EXPECT_EQ(neighbors.size(), 0);
+  }
+
+  {
+    const HashSet<int>& neighbors = forest->Neighbors(2);
+    EXPECT_EQ(neighbors.size(), 0);
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/graph_test.cc b/internal/ceres/graph_test.cc
new file mode 100644
index 0000000..ce82dea
--- /dev/null
+++ b/internal/ceres/graph_test.cc
@@ -0,0 +1,107 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/graph.h"
+
+#include "gtest/gtest.h"
+#include "ceres/collections_port.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(Graph, EmptyGraph) {
+  Graph<int> graph;
+  EXPECT_EQ(graph.vertices().size(), 0);
+}
+
+TEST(Graph, AddVertexAndEdge) {
+  Graph<int> graph;
+  graph.AddVertex(0, 1.0);
+  graph.AddVertex(1, 2.0);
+  graph.AddEdge(0, 1, 0.5);
+
+  const HashSet<int>& vertices = graph.vertices();
+  EXPECT_EQ(vertices.size(), 2);
+  EXPECT_EQ(graph.VertexWeight(0), 1.0);
+  EXPECT_EQ(graph.VertexWeight(1), 2.0);
+  EXPECT_EQ(graph.Neighbors(0).size(), 1);
+  EXPECT_EQ(graph.Neighbors(1).size(), 1);
+  EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
+  EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
+}
+
+TEST(Graph, AddVertexIdempotence) {
+  Graph<int> graph;
+  graph.AddVertex(0, 1.0);
+  graph.AddVertex(1, 2.0);
+  graph.AddEdge(0, 1, 0.5);
+
+  const HashSet<int>& vertices = graph.vertices();
+
+  EXPECT_EQ(vertices.size(), 2);
+
+  // Try adding the vertex again with a new weight.
+  graph.AddVertex(0, 3.0);
+  EXPECT_EQ(vertices.size(), 2);
+
+  // The vertex weight is reset.
+  EXPECT_EQ(graph.VertexWeight(0), 3.0);
+
+  // Rest of the graph remains the same.
+  EXPECT_EQ(graph.VertexWeight(1), 2.0);
+  EXPECT_EQ(graph.Neighbors(0).size(), 1);
+  EXPECT_EQ(graph.Neighbors(1).size(), 1);
+  EXPECT_EQ(graph.EdgeWeight(0, 1), 0.5);
+  EXPECT_EQ(graph.EdgeWeight(1, 0), 0.5);
+}
+
+TEST(Graph, DieOnNonExistentVertex) {
+  Graph<int> graph;
+  graph.AddVertex(0, 1.0);
+  graph.AddVertex(1, 2.0);
+  graph.AddEdge(0, 1, 0.5);
+
+  EXPECT_DEATH(graph.VertexWeight(2), "key not found");
+  EXPECT_DEATH(graph.Neighbors(2), "key not found");
+}
+
+TEST(Graph, NonExistentEdge) {
+  Graph<int> graph;
+  graph.AddVertex(0, 1.0);
+  graph.AddVertex(1, 2.0);
+  graph.AddEdge(0, 1, 0.5);
+
+  // Default value for non-existent edges is 0.
+  EXPECT_EQ(graph.EdgeWeight(2, 3), 0);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/gtest/gtest.h b/internal/ceres/gtest/gtest.h
new file mode 100644
index 0000000..3143bd6
--- /dev/null
+++ b/internal/ceres/gtest/gtest.h
@@ -0,0 +1,19537 @@
+// Copyright 2005, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file defines the public API for Google Test.  It should be
+// included by any test program that uses Google Test.
+//
+// IMPORTANT NOTE: Due to limitation of the C++ language, we have to
+// leave some internal implementation details in this header file.
+// They are clearly marked by comments like this:
+//
+//   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+//
+// Such code is NOT meant to be used by a user directly, and is subject
+// to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
+// program!
+//
+// Acknowledgment: Google Test borrowed the idea of automatic test
+// registration from Barthelemy Dagenais' (barthelemy@prologique.com)
+// easyUnit framework.
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_H_
+#define GTEST_INCLUDE_GTEST_GTEST_H_
+
+#include <limits>
+#include <vector>
+
+// Copyright 2005, Google 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 Google 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.
+//
+// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file declares functions and macros used internally by
+// Google Test.  They are subject to change without notice.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
+
+// Copyright 2005, Google 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 Google 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.
+//
+// Authors: wan@google.com (Zhanyong Wan)
+//
+// Low-level types and utilities for porting Google Test to various
+// platforms.  They are subject to change without notice.  DO NOT USE
+// THEM IN USER CODE.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
+
+// The user can define the following macros in the build script to
+// control Google Test's behavior.  If the user doesn't define a macro
+// in this list, Google Test will define it.
+//
+//   GTEST_HAS_CLONE          - Define it to 1/0 to indicate that clone(2)
+//                              is/isn't available.
+//   GTEST_HAS_EXCEPTIONS     - Define it to 1/0 to indicate that exceptions
+//                              are enabled.
+//   GTEST_HAS_GLOBAL_STRING  - Define it to 1/0 to indicate that ::string
+//                              is/isn't available (some systems define
+//                              ::string, which is different to std::string).
+//   GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
+//                              is/isn't available (some systems define
+//                              ::wstring, which is different to std::wstring).
+//   GTEST_HAS_POSIX_RE       - Define it to 1/0 to indicate that POSIX regular
+//                              expressions are/aren't available.
+//   GTEST_HAS_PTHREAD        - Define it to 1/0 to indicate that <pthread.h>
+//                              is/isn't available.
+//   GTEST_HAS_RTTI           - Define it to 1/0 to indicate that RTTI is/isn't
+//                              enabled.
+//   GTEST_HAS_STD_WSTRING    - Define it to 1/0 to indicate that
+//                              std::wstring does/doesn't work (Google Test can
+//                              be used where std::wstring is unavailable).
+//   GTEST_HAS_TR1_TUPLE      - Define it to 1/0 to indicate tr1::tuple
+//                              is/isn't available.
+//   GTEST_HAS_SEH            - Define it to 1/0 to indicate whether the
+//                              compiler supports Microsoft's "Structured
+//                              Exception Handling".
+//   GTEST_HAS_STREAM_REDIRECTION
+//                            - Define it to 1/0 to indicate whether the
+//                              platform supports I/O stream redirection using
+//                              dup() and dup2().
+//   GTEST_USE_OWN_TR1_TUPLE  - Define it to 1/0 to indicate whether Google
+//                              Test's own tr1 tuple implementation should be
+//                              used.  Unused when the user sets
+//                              GTEST_HAS_TR1_TUPLE to 0.
+//   GTEST_LINKED_AS_SHARED_LIBRARY
+//                            - Define to 1 when compiling tests that use
+//                              Google Test as a shared library (known as
+//                              DLL on Windows).
+//   GTEST_CREATE_SHARED_LIBRARY
+//                            - Define to 1 when compiling Google Test itself
+//                              as a shared library.
+
+// This header defines the following utilities:
+//
+// Macros indicating the current platform (defined to 1 if compiled on
+// the given platform; otherwise undefined):
+//   GTEST_OS_AIX      - IBM AIX
+//   GTEST_OS_CYGWIN   - Cygwin
+//   GTEST_OS_HPUX     - HP-UX
+//   GTEST_OS_LINUX    - Linux
+//     GTEST_OS_LINUX_ANDROID - Google Android
+//   GTEST_OS_MAC      - Mac OS X
+//   GTEST_OS_NACL     - Google Native Client (NaCl)
+//   GTEST_OS_SOLARIS  - Sun Solaris
+//   GTEST_OS_SYMBIAN  - Symbian
+//   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)
+//     GTEST_OS_WINDOWS_DESKTOP  - Windows Desktop
+//     GTEST_OS_WINDOWS_MINGW    - MinGW
+//     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
+//   GTEST_OS_ZOS      - z/OS
+//
+// Among the platforms, Cygwin, Linux, Max OS X, and Windows have the
+// most stable support.  Since core members of the Google Test project
+// don't have access to other platforms, support for them may be less
+// stable.  If you notice any problems on your platform, please notify
+// googletestframework@googlegroups.com (patches for fixing them are
+// even more welcome!).
+//
+// Note that it is possible that none of the GTEST_OS_* macros are defined.
+//
+// Macros indicating available Google Test features (defined to 1 if
+// the corresponding feature is supported; otherwise undefined):
+//   GTEST_HAS_COMBINE      - the Combine() function (for value-parameterized
+//                            tests)
+//   GTEST_HAS_DEATH_TEST   - death tests
+//   GTEST_HAS_PARAM_TEST   - value-parameterized tests
+//   GTEST_HAS_TYPED_TEST   - typed tests
+//   GTEST_HAS_TYPED_TEST_P - type-parameterized tests
+//   GTEST_USES_POSIX_RE    - enhanced POSIX regex is used. Do not confuse with
+//                            GTEST_HAS_POSIX_RE (see above) which users can
+//                            define themselves.
+//   GTEST_USES_SIMPLE_RE   - our own simple regex is used;
+//                            the above two are mutually exclusive.
+//   GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ().
+//
+// Macros for basic C++ coding:
+//   GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning.
+//   GTEST_ATTRIBUTE_UNUSED_  - declares that a class' instances or a
+//                              variable don't have to be used.
+//   GTEST_DISALLOW_ASSIGN_   - disables operator=.
+//   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
+//   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.
+//
+// Synchronization:
+//   Mutex, MutexLock, ThreadLocal, GetThreadCount()
+//                  - synchronization primitives.
+//   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
+//                         synchronization primitives have real implementations
+//                         and Google Test is thread-safe; or 0 otherwise.
+//
+// Template meta programming:
+//   is_pointer     - as in TR1; needed on Symbian and IBM XL C/C++ only.
+//   IteratorTraits - partial implementation of std::iterator_traits, which
+//                    is not available in libCstd when compiled with Sun C++.
+//
+// Smart pointers:
+//   scoped_ptr     - as in TR2.
+//
+// Regular expressions:
+//   RE             - a simple regular expression class using the POSIX
+//                    Extended Regular Expression syntax on UNIX-like
+//                    platforms, or a reduced regular exception syntax on
+//                    other platforms, including Windows.
+//
+// Logging:
+//   GTEST_LOG_()   - logs messages at the specified severity level.
+//   LogToStderr()  - directs all log messages to stderr.
+//   FlushInfoLog() - flushes informational log messages.
+//
+// Stdout and stderr capturing:
+//   CaptureStdout()     - starts capturing stdout.
+//   GetCapturedStdout() - stops capturing stdout and returns the captured
+//                         string.
+//   CaptureStderr()     - starts capturing stderr.
+//   GetCapturedStderr() - stops capturing stderr and returns the captured
+//                         string.
+//
+// Integer types:
+//   TypeWithSize   - maps an integer to a int type.
+//   Int32, UInt32, Int64, UInt64, TimeInMillis
+//                  - integers of known sizes.
+//   BiggestInt     - the biggest signed integer type.
+//
+// Command-line utilities:
+//   GTEST_FLAG()       - references a flag.
+//   GTEST_DECLARE_*()  - declares a flag.
+//   GTEST_DEFINE_*()   - defines a flag.
+//   GetArgvs()         - returns the command line as a vector of strings.
+//
+// Environment variable utilities:
+//   GetEnv()             - gets the value of an environment variable.
+//   BoolFromGTestEnv()   - parses a bool environment variable.
+//   Int32FromGTestEnv()  - parses an Int32 environment variable.
+//   StringFromGTestEnv() - parses a string environment variable.
+
+#include <ctype.h>   // for isspace, etc
+#include <stddef.h>  // for ptrdiff_t
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#ifndef _WIN32_WCE
+# include <sys/types.h>
+# include <sys/stat.h>
+#endif  // !_WIN32_WCE
+
+#include <iostream>  // NOLINT
+#include <sstream>  // NOLINT
+#include <string>  // NOLINT
+
+#define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com"
+#define GTEST_FLAG_PREFIX_ "gtest_"
+#define GTEST_FLAG_PREFIX_DASH_ "gtest-"
+#define GTEST_FLAG_PREFIX_UPPER_ "GTEST_"
+#define GTEST_NAME_ "Google Test"
+#define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/"
+
+// Determines the version of gcc that is used to compile this.
+#ifdef __GNUC__
+// 40302 means version 4.3.2.
+# define GTEST_GCC_VER_ \
+    (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
+#endif  // __GNUC__
+
+// Determines the platform on which Google Test is compiled.
+#ifdef __CYGWIN__
+# define GTEST_OS_CYGWIN 1
+#elif defined __SYMBIAN32__
+# define GTEST_OS_SYMBIAN 1
+#elif defined _WIN32
+# define GTEST_OS_WINDOWS 1
+# ifdef _WIN32_WCE
+#  define GTEST_OS_WINDOWS_MOBILE 1
+# elif defined(__MINGW__) || defined(__MINGW32__)
+#  define GTEST_OS_WINDOWS_MINGW 1
+# else
+#  define GTEST_OS_WINDOWS_DESKTOP 1
+# endif  // _WIN32_WCE
+#elif defined __APPLE__
+# define GTEST_OS_MAC 1
+#elif defined __linux__
+# define GTEST_OS_LINUX 1
+# ifdef ANDROID
+#  define GTEST_OS_LINUX_ANDROID 1
+# endif  // ANDROID
+#elif defined __MVS__
+# define GTEST_OS_ZOS 1
+#elif defined(__sun) && defined(__SVR4)
+# define GTEST_OS_SOLARIS 1
+#elif defined(_AIX)
+# define GTEST_OS_AIX 1
+#elif defined(__hpux)
+# define GTEST_OS_HPUX 1
+#elif defined __native_client__
+# define GTEST_OS_NACL 1
+#endif  // __CYGWIN__
+
+// Brings in definitions for functions used in the testing::internal::posix
+// namespace (read, write, close, chdir, isatty, stat). We do not currently
+// use them on Windows Mobile.
+#if !GTEST_OS_WINDOWS
+// This assumes that non-Windows OSes provide unistd.h. For OSes where this
+// is not the case, we need to include headers that provide the functions
+// mentioned above.
+# include <unistd.h>
+# if !GTEST_OS_NACL
+// TODO(vladl@google.com): Remove this condition when Native Client SDK adds
+// strings.h (tracked in
+// http://code.google.com/p/nativeclient/issues/detail?id=1175).
+#  include <strings.h>  // Native Client doesn't provide strings.h.
+# endif
+#elif !GTEST_OS_WINDOWS_MOBILE
+# include <direct.h>
+# include <io.h>
+#endif
+
+// Defines this to true iff Google Test can use POSIX regular expressions.
+#ifndef GTEST_HAS_POSIX_RE
+# define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS)
+#endif
+
+#if GTEST_HAS_POSIX_RE
+
+// On some platforms, <regex.h> needs someone to define size_t, and
+// won't compile otherwise.  We can #include it here as we already
+// included <stdlib.h>, which is guaranteed to define size_t through
+// <stddef.h>.
+# include <regex.h>  // NOLINT
+
+# define GTEST_USES_POSIX_RE 1
+
+#elif GTEST_OS_WINDOWS
+
+// <regex.h> is not available on Windows.  Use our own simple regex
+// implementation instead.
+# define GTEST_USES_SIMPLE_RE 1
+
+#else
+
+// <regex.h> may not be available on this platform.  Use our own
+// simple regex implementation instead.
+# define GTEST_USES_SIMPLE_RE 1
+
+#endif  // GTEST_HAS_POSIX_RE
+
+#ifndef GTEST_HAS_EXCEPTIONS
+// The user didn't tell us whether exceptions are enabled, so we need
+// to figure it out.
+# if defined(_MSC_VER) || defined(__BORLANDC__)
+// MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS
+// macro to enable exceptions, so we'll do the same.
+// Assumes that exceptions are enabled by default.
+#  ifndef _HAS_EXCEPTIONS
+#   define _HAS_EXCEPTIONS 1
+#  endif  // _HAS_EXCEPTIONS
+#  define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS
+# elif defined(__GNUC__) && __EXCEPTIONS
+// gcc defines __EXCEPTIONS to 1 iff exceptions are enabled.
+#  define GTEST_HAS_EXCEPTIONS 1
+# elif defined(__SUNPRO_CC)
+// Sun Pro CC supports exceptions.  However, there is no compile-time way of
+// detecting whether they are enabled or not.  Therefore, we assume that
+// they are enabled unless the user tells us otherwise.
+#  define GTEST_HAS_EXCEPTIONS 1
+# elif defined(__IBMCPP__) && __EXCEPTIONS
+// xlC defines __EXCEPTIONS to 1 iff exceptions are enabled.
+#  define GTEST_HAS_EXCEPTIONS 1
+# elif defined(__HP_aCC)
+// Exception handling is in effect by default in HP aCC compiler. It has to
+// be turned of by +noeh compiler option if desired.
+#  define GTEST_HAS_EXCEPTIONS 1
+# else
+// For other compilers, we assume exceptions are disabled to be
+// conservative.
+#  define GTEST_HAS_EXCEPTIONS 0
+# endif  // defined(_MSC_VER) || defined(__BORLANDC__)
+#endif  // GTEST_HAS_EXCEPTIONS
+
+#if !defined(GTEST_HAS_STD_STRING)
+// Even though we don't use this macro any longer, we keep it in case
+// some clients still depend on it.
+# define GTEST_HAS_STD_STRING 1
+#elif !GTEST_HAS_STD_STRING
+// The user told us that ::std::string isn't available.
+# error "Google Test cannot be used where ::std::string isn't available."
+#endif  // !defined(GTEST_HAS_STD_STRING)
+
+#ifndef GTEST_HAS_GLOBAL_STRING
+// The user didn't tell us whether ::string is available, so we need
+// to figure it out.
+
+# define GTEST_HAS_GLOBAL_STRING 0
+
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+#ifndef GTEST_HAS_STD_WSTRING
+// The user didn't tell us whether ::std::wstring is available, so we need
+// to figure it out.
+// TODO(wan@google.com): uses autoconf to detect whether ::std::wstring
+//   is available.
+
+// Cygwin 1.7 and below doesn't support ::std::wstring.
+// Solaris' libc++ doesn't support it either.  Android has
+// no support for it at least as recent as Froyo (2.2).
+# define GTEST_HAS_STD_WSTRING \
+    (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
+
+#endif  // GTEST_HAS_STD_WSTRING
+
+#ifndef GTEST_HAS_GLOBAL_WSTRING
+// The user didn't tell us whether ::wstring is available, so we need
+// to figure it out.
+# define GTEST_HAS_GLOBAL_WSTRING \
+    (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING)
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+// Determines whether RTTI is available.
+#ifndef GTEST_HAS_RTTI
+// The user didn't tell us whether RTTI is enabled, so we need to
+// figure it out.
+
+# ifdef _MSC_VER
+
+#  ifdef _CPPRTTI  // MSVC defines this macro iff RTTI is enabled.
+#   define GTEST_HAS_RTTI 1
+#  else
+#   define GTEST_HAS_RTTI 0
+#  endif
+
+// Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled.
+# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302)
+
+#  ifdef __GXX_RTTI
+#   define GTEST_HAS_RTTI 1
+#  else
+#   define GTEST_HAS_RTTI 0
+#  endif  // __GXX_RTTI
+
+// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
+// both the typeid and dynamic_cast features are present.
+# elif defined(__IBMCPP__) && (__IBMCPP__ >= 900)
+
+#  ifdef __RTTI_ALL__
+#   define GTEST_HAS_RTTI 1
+#  else
+#   define GTEST_HAS_RTTI 0
+#  endif
+
+# else
+
+// For all other compilers, we assume RTTI is enabled.
+#  define GTEST_HAS_RTTI 1
+
+# endif  // _MSC_VER
+
+#endif  // GTEST_HAS_RTTI
+
+// It's this header's responsibility to #include <typeinfo> when RTTI
+// is enabled.
+#if GTEST_HAS_RTTI
+# include <typeinfo>
+#endif
+
+// Determines whether Google Test can use the pthreads library.
+#ifndef GTEST_HAS_PTHREAD
+// The user didn't tell us explicitly, so we assume pthreads support is
+// available on Linux and Mac.
+//
+// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0
+// to your compiler flags.
+# define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX)
+#endif  // GTEST_HAS_PTHREAD
+
+#if GTEST_HAS_PTHREAD
+// gtest-port.h guarantees to #include <pthread.h> when GTEST_HAS_PTHREAD is
+// true.
+# include <pthread.h>  // NOLINT
+
+// For timespec and nanosleep, used below.
+# include <time.h>  // NOLINT
+#endif
+
+// Determines whether Google Test can use tr1/tuple.  You can define
+// this macro to 0 to prevent Google Test from using tuple (any
+// feature depending on tuple with be disabled in this mode).
+#ifndef GTEST_HAS_TR1_TUPLE
+// The user didn't tell us not to do it, so we assume it's OK.
+# define GTEST_HAS_TR1_TUPLE 1
+#endif  // GTEST_HAS_TR1_TUPLE
+
+// Determines whether Google Test's own tr1 tuple implementation
+// should be used.
+#ifndef GTEST_USE_OWN_TR1_TUPLE
+// The user didn't tell us, so we need to figure it out.
+
+// We use our own TR1 tuple if we aren't sure the user has an
+// implementation of it already.  At this time, GCC 4.0.0+ and MSVC
+// 2010 are the only mainstream compilers that come with a TR1 tuple
+// implementation.  NVIDIA's CUDA NVCC compiler pretends to be GCC by
+// defining __GNUC__ and friends, but cannot compile GCC's tuple
+// implementation.  MSVC 2008 (9.0) provides TR1 tuple in a 323 MB
+// Feature Pack download, which we cannot assume the user has.
+# if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000)) \
+    || _MSC_VER >= 1600
+#  define GTEST_USE_OWN_TR1_TUPLE 0
+# else
+#  define GTEST_USE_OWN_TR1_TUPLE 1
+# endif
+
+#endif  // GTEST_USE_OWN_TR1_TUPLE
+
+// To avoid conditional compilation everywhere, we make it
+// gtest-port.h's responsibility to #include the header implementing
+// tr1/tuple.
+#if GTEST_HAS_TR1_TUPLE
+
+# if GTEST_USE_OWN_TR1_TUPLE
+// This file was GENERATED by a script.  DO NOT EDIT BY HAND!!!
+
+// Copyright 2009 Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Implements a subset of TR1 tuple needed by Google Test and Google Mock.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
+
+#include <utility>  // For ::std::pair.
+
+// The compiler used in Symbian has a bug that prevents us from declaring the
+// tuple template as a friend (it complains that tuple is redefined).  This
+// hack bypasses the bug by declaring the members that should otherwise be
+// private as public.
+// Sun Studio versions < 12 also have the above bug.
+#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590)
+# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public:
+#else
+# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \
+    template <GTEST_10_TYPENAMES_(U)> friend class tuple; \
+   private:
+#endif
+
+// GTEST_n_TUPLE_(T) is the type of an n-tuple.
+#define GTEST_0_TUPLE_(T) tuple<>
+#define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \
+    void, void, void>
+#define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \
+    void, void, void>
+#define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \
+    void, void, void>
+#define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \
+    void, void, void>
+#define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \
+    void, void, void>
+#define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \
+    void, void, void>
+#define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \
+    void, void, void>
+#define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \
+    T##7, void, void>
+#define GTEST_9_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \
+    T##7, T##8, void>
+#define GTEST_10_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \
+    T##7, T##8, T##9>
+
+// GTEST_n_TYPENAMES_(T) declares a list of n typenames.
+#define GTEST_0_TYPENAMES_(T)
+#define GTEST_1_TYPENAMES_(T) typename T##0
+#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1
+#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2
+#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3
+#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4
+#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4, typename T##5
+#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4, typename T##5, typename T##6
+#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4, typename T##5, typename T##6, typename T##7
+#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4, typename T##5, typename T##6, \
+    typename T##7, typename T##8
+#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \
+    typename T##3, typename T##4, typename T##5, typename T##6, \
+    typename T##7, typename T##8, typename T##9
+
+// In theory, defining stuff in the ::std namespace is undefined
+// behavior.  We can do this as we are playing the role of a standard
+// library vendor.
+namespace std {
+namespace tr1 {
+
+template <typename T0 = void, typename T1 = void, typename T2 = void,
+    typename T3 = void, typename T4 = void, typename T5 = void,
+    typename T6 = void, typename T7 = void, typename T8 = void,
+    typename T9 = void>
+class tuple;
+
+// Anything in namespace gtest_internal is Google Test's INTERNAL
+// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.
+namespace gtest_internal {
+
+// ByRef<T>::type is T if T is a reference; otherwise it's const T&.
+template <typename T>
+struct ByRef { typedef const T& type; };  // NOLINT
+template <typename T>
+struct ByRef<T&> { typedef T& type; };  // NOLINT
+
+// A handy wrapper for ByRef.
+#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
+
+// AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
+// is the same as tr1::add_reference<T>::type.
+template <typename T>
+struct AddRef { typedef T& type; };  // NOLINT
+template <typename T>
+struct AddRef<T&> { typedef T& type; };  // NOLINT
+
+// A handy wrapper for AddRef.
+#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type
+
+// A helper for implementing get<k>().
+template <int k> class Get;
+
+// A helper for implementing tuple_element<k, T>.  kIndexValid is true
+// iff k < the number of fields in tuple type T.
+template <bool kIndexValid, int kIndex, class Tuple>
+struct TupleElement;
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 0, GTEST_10_TUPLE_(T)> { typedef T0 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 1, GTEST_10_TUPLE_(T)> { typedef T1 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 2, GTEST_10_TUPLE_(T)> { typedef T2 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 3, GTEST_10_TUPLE_(T)> { typedef T3 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 4, GTEST_10_TUPLE_(T)> { typedef T4 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 5, GTEST_10_TUPLE_(T)> { typedef T5 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 6, GTEST_10_TUPLE_(T)> { typedef T6 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 7, GTEST_10_TUPLE_(T)> { typedef T7 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 8, GTEST_10_TUPLE_(T)> { typedef T8 type; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct TupleElement<true, 9, GTEST_10_TUPLE_(T)> { typedef T9 type; };
+
+}  // namespace gtest_internal
+
+template <>
+class tuple<> {
+ public:
+  tuple() {}
+  tuple(const tuple& /* t */)  {}
+  tuple& operator=(const tuple& /* t */) { return *this; }
+};
+
+template <GTEST_1_TYPENAMES_(T)>
+class GTEST_1_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {}
+
+  tuple(const tuple& t) : f0_(t.f0_) {}
+
+  template <GTEST_1_TYPENAMES_(U)>
+  tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_1_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_1_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_1_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    return *this;
+  }
+
+  T0 f0_;
+};
+
+template <GTEST_2_TYPENAMES_(T)>
+class GTEST_2_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0),
+      f1_(f1) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {}
+
+  template <GTEST_2_TYPENAMES_(U)>
+  tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {}
+  template <typename U0, typename U1>
+  tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_2_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_2_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+  template <typename U0, typename U1>
+  tuple& operator=(const ::std::pair<U0, U1>& p) {
+    f0_ = p.first;
+    f1_ = p.second;
+    return *this;
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_2_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+};
+
+template <GTEST_3_TYPENAMES_(T)>
+class GTEST_3_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}
+
+  template <GTEST_3_TYPENAMES_(U)>
+  tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_3_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_3_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_3_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+};
+
+template <GTEST_4_TYPENAMES_(T)>
+class GTEST_4_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2),
+      f3_(f3) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {}
+
+  template <GTEST_4_TYPENAMES_(U)>
+  tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_4_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_4_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_4_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+};
+
+template <GTEST_5_TYPENAMES_(T)>
+class GTEST_5_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3,
+      GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_) {}
+
+  template <GTEST_5_TYPENAMES_(U)>
+  tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_5_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_5_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_5_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+};
+
+template <GTEST_6_TYPENAMES_(T)>
+class GTEST_6_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
+      GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
+      f5_(f5) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_), f5_(t.f5_) {}
+
+  template <GTEST_6_TYPENAMES_(U)>
+  tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_6_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_6_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_6_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    f5_ = t.f5_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+  T5 f5_;
+};
+
+template <GTEST_7_TYPENAMES_(T)>
+class GTEST_7_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
+      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2),
+      f3_(f3), f4_(f4), f5_(f5), f6_(f6) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}
+
+  template <GTEST_7_TYPENAMES_(U)>
+  tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_7_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_7_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_7_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    f5_ = t.f5_;
+    f6_ = t.f6_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+  T5 f5_;
+  T6 f6_;
+};
+
+template <GTEST_8_TYPENAMES_(T)>
+class GTEST_8_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
+      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6,
+      GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
+      f5_(f5), f6_(f6), f7_(f7) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}
+
+  template <GTEST_8_TYPENAMES_(U)>
+  tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_8_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_8_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_8_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    f5_ = t.f5_;
+    f6_ = t.f6_;
+    f7_ = t.f7_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+  T5 f5_;
+  T6 f6_;
+  T7 f7_;
+};
+
+template <GTEST_9_TYPENAMES_(T)>
+class GTEST_9_TUPLE_(T) {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
+      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7,
+      GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
+      f5_(f5), f6_(f6), f7_(f7), f8_(f8) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}
+
+  template <GTEST_9_TYPENAMES_(U)>
+  tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_9_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_9_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_9_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    f5_ = t.f5_;
+    f6_ = t.f6_;
+    f7_ = t.f7_;
+    f8_ = t.f8_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+  T5 f5_;
+  T6 f6_;
+  T7 f7_;
+  T8 f8_;
+};
+
+template <GTEST_10_TYPENAMES_(T)>
+class tuple {
+ public:
+  template <int k> friend class gtest_internal::Get;
+
+  tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(),
+      f9_() {}
+
+  explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
+      GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
+      GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7,
+      GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2),
+      f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {}
+
+  tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
+      f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {}
+
+  template <GTEST_10_TYPENAMES_(U)>
+  tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
+      f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_),
+      f9_(t.f9_) {}
+
+  tuple& operator=(const tuple& t) { return CopyFrom(t); }
+
+  template <GTEST_10_TYPENAMES_(U)>
+  tuple& operator=(const GTEST_10_TUPLE_(U)& t) {
+    return CopyFrom(t);
+  }
+
+  GTEST_DECLARE_TUPLE_AS_FRIEND_
+
+  template <GTEST_10_TYPENAMES_(U)>
+  tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) {
+    f0_ = t.f0_;
+    f1_ = t.f1_;
+    f2_ = t.f2_;
+    f3_ = t.f3_;
+    f4_ = t.f4_;
+    f5_ = t.f5_;
+    f6_ = t.f6_;
+    f7_ = t.f7_;
+    f8_ = t.f8_;
+    f9_ = t.f9_;
+    return *this;
+  }
+
+  T0 f0_;
+  T1 f1_;
+  T2 f2_;
+  T3 f3_;
+  T4 f4_;
+  T5 f5_;
+  T6 f6_;
+  T7 f7_;
+  T8 f8_;
+  T9 f9_;
+};
+
+// 6.1.3.2 Tuple creation functions.
+
+// Known limitations: we don't support passing an
+// std::tr1::reference_wrapper<T> to make_tuple().  And we don't
+// implement tie().
+
+inline tuple<> make_tuple() { return tuple<>(); }
+
+template <GTEST_1_TYPENAMES_(T)>
+inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) {
+  return GTEST_1_TUPLE_(T)(f0);
+}
+
+template <GTEST_2_TYPENAMES_(T)>
+inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) {
+  return GTEST_2_TUPLE_(T)(f0, f1);
+}
+
+template <GTEST_3_TYPENAMES_(T)>
+inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) {
+  return GTEST_3_TUPLE_(T)(f0, f1, f2);
+}
+
+template <GTEST_4_TYPENAMES_(T)>
+inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3) {
+  return GTEST_4_TUPLE_(T)(f0, f1, f2, f3);
+}
+
+template <GTEST_5_TYPENAMES_(T)>
+inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4) {
+  return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4);
+}
+
+template <GTEST_6_TYPENAMES_(T)>
+inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4, const T5& f5) {
+  return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5);
+}
+
+template <GTEST_7_TYPENAMES_(T)>
+inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4, const T5& f5, const T6& f6) {
+  return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6);
+}
+
+template <GTEST_8_TYPENAMES_(T)>
+inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) {
+  return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7);
+}
+
+template <GTEST_9_TYPENAMES_(T)>
+inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7,
+    const T8& f8) {
+  return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8);
+}
+
+template <GTEST_10_TYPENAMES_(T)>
+inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2,
+    const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7,
+    const T8& f8, const T9& f9) {
+  return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9);
+}
+
+// 6.1.3.3 Tuple helper classes.
+
+template <typename Tuple> struct tuple_size;
+
+template <GTEST_0_TYPENAMES_(T)>
+struct tuple_size<GTEST_0_TUPLE_(T)> { static const int value = 0; };
+
+template <GTEST_1_TYPENAMES_(T)>
+struct tuple_size<GTEST_1_TUPLE_(T)> { static const int value = 1; };
+
+template <GTEST_2_TYPENAMES_(T)>
+struct tuple_size<GTEST_2_TUPLE_(T)> { static const int value = 2; };
+
+template <GTEST_3_TYPENAMES_(T)>
+struct tuple_size<GTEST_3_TUPLE_(T)> { static const int value = 3; };
+
+template <GTEST_4_TYPENAMES_(T)>
+struct tuple_size<GTEST_4_TUPLE_(T)> { static const int value = 4; };
+
+template <GTEST_5_TYPENAMES_(T)>
+struct tuple_size<GTEST_5_TUPLE_(T)> { static const int value = 5; };
+
+template <GTEST_6_TYPENAMES_(T)>
+struct tuple_size<GTEST_6_TUPLE_(T)> { static const int value = 6; };
+
+template <GTEST_7_TYPENAMES_(T)>
+struct tuple_size<GTEST_7_TUPLE_(T)> { static const int value = 7; };
+
+template <GTEST_8_TYPENAMES_(T)>
+struct tuple_size<GTEST_8_TUPLE_(T)> { static const int value = 8; };
+
+template <GTEST_9_TYPENAMES_(T)>
+struct tuple_size<GTEST_9_TUPLE_(T)> { static const int value = 9; };
+
+template <GTEST_10_TYPENAMES_(T)>
+struct tuple_size<GTEST_10_TUPLE_(T)> { static const int value = 10; };
+
+template <int k, class Tuple>
+struct tuple_element {
+  typedef typename gtest_internal::TupleElement<
+      k < (tuple_size<Tuple>::value), k, Tuple>::type type;
+};
+
+#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type
+
+// 6.1.3.4 Element access.
+
+namespace gtest_internal {
+
+template <>
+class Get<0> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple))
+  Field(Tuple& t) { return t.f0_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple))
+  ConstField(const Tuple& t) { return t.f0_; }
+};
+
+template <>
+class Get<1> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple))
+  Field(Tuple& t) { return t.f1_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple))
+  ConstField(const Tuple& t) { return t.f1_; }
+};
+
+template <>
+class Get<2> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple))
+  Field(Tuple& t) { return t.f2_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple))
+  ConstField(const Tuple& t) { return t.f2_; }
+};
+
+template <>
+class Get<3> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple))
+  Field(Tuple& t) { return t.f3_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple))
+  ConstField(const Tuple& t) { return t.f3_; }
+};
+
+template <>
+class Get<4> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple))
+  Field(Tuple& t) { return t.f4_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple))
+  ConstField(const Tuple& t) { return t.f4_; }
+};
+
+template <>
+class Get<5> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple))
+  Field(Tuple& t) { return t.f5_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple))
+  ConstField(const Tuple& t) { return t.f5_; }
+};
+
+template <>
+class Get<6> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple))
+  Field(Tuple& t) { return t.f6_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple))
+  ConstField(const Tuple& t) { return t.f6_; }
+};
+
+template <>
+class Get<7> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple))
+  Field(Tuple& t) { return t.f7_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple))
+  ConstField(const Tuple& t) { return t.f7_; }
+};
+
+template <>
+class Get<8> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple))
+  Field(Tuple& t) { return t.f8_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple))
+  ConstField(const Tuple& t) { return t.f8_; }
+};
+
+template <>
+class Get<9> {
+ public:
+  template <class Tuple>
+  static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple))
+  Field(Tuple& t) { return t.f9_; }  // NOLINT
+
+  template <class Tuple>
+  static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple))
+  ConstField(const Tuple& t) { return t.f9_; }
+};
+
+}  // namespace gtest_internal
+
+template <int k, GTEST_10_TYPENAMES_(T)>
+GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T)))
+get(GTEST_10_TUPLE_(T)& t) {
+  return gtest_internal::Get<k>::Field(t);
+}
+
+template <int k, GTEST_10_TYPENAMES_(T)>
+GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k,  GTEST_10_TUPLE_(T)))
+get(const GTEST_10_TUPLE_(T)& t) {
+  return gtest_internal::Get<k>::ConstField(t);
+}
+
+// 6.1.3.5 Relational operators
+
+// We only implement == and !=, as we don't have a need for the rest yet.
+
+namespace gtest_internal {
+
+// SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the
+// first k fields of t1 equals the first k fields of t2.
+// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if
+// k1 != k2.
+template <int kSize1, int kSize2>
+struct SameSizeTuplePrefixComparator;
+
+template <>
+struct SameSizeTuplePrefixComparator<0, 0> {
+  template <class Tuple1, class Tuple2>
+  static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
+    return true;
+  }
+};
+
+template <int k>
+struct SameSizeTuplePrefixComparator<k, k> {
+  template <class Tuple1, class Tuple2>
+  static bool Eq(const Tuple1& t1, const Tuple2& t2) {
+    return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
+        ::std::tr1::get<k - 1>(t1) == ::std::tr1::get<k - 1>(t2);
+  }
+};
+
+}  // namespace gtest_internal
+
+template <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>
+inline bool operator==(const GTEST_10_TUPLE_(T)& t,
+                       const GTEST_10_TUPLE_(U)& u) {
+  return gtest_internal::SameSizeTuplePrefixComparator<
+      tuple_size<GTEST_10_TUPLE_(T)>::value,
+      tuple_size<GTEST_10_TUPLE_(U)>::value>::Eq(t, u);
+}
+
+template <GTEST_10_TYPENAMES_(T), GTEST_10_TYPENAMES_(U)>
+inline bool operator!=(const GTEST_10_TUPLE_(T)& t,
+                       const GTEST_10_TUPLE_(U)& u) { return !(t == u); }
+
+// 6.1.4 Pairs.
+// Unimplemented.
+
+}  // namespace tr1
+}  // namespace std
+
+#undef GTEST_0_TUPLE_
+#undef GTEST_1_TUPLE_
+#undef GTEST_2_TUPLE_
+#undef GTEST_3_TUPLE_
+#undef GTEST_4_TUPLE_
+#undef GTEST_5_TUPLE_
+#undef GTEST_6_TUPLE_
+#undef GTEST_7_TUPLE_
+#undef GTEST_8_TUPLE_
+#undef GTEST_9_TUPLE_
+#undef GTEST_10_TUPLE_
+
+#undef GTEST_0_TYPENAMES_
+#undef GTEST_1_TYPENAMES_
+#undef GTEST_2_TYPENAMES_
+#undef GTEST_3_TYPENAMES_
+#undef GTEST_4_TYPENAMES_
+#undef GTEST_5_TYPENAMES_
+#undef GTEST_6_TYPENAMES_
+#undef GTEST_7_TYPENAMES_
+#undef GTEST_8_TYPENAMES_
+#undef GTEST_9_TYPENAMES_
+#undef GTEST_10_TYPENAMES_
+
+#undef GTEST_DECLARE_TUPLE_AS_FRIEND_
+#undef GTEST_BY_REF_
+#undef GTEST_ADD_REF_
+#undef GTEST_TUPLE_ELEMENT_
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
+# elif GTEST_OS_SYMBIAN
+
+// On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
+// use STLport's tuple implementation, which unfortunately doesn't
+// work as the copy of STLport distributed with Symbian is incomplete.
+// By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to
+// use its own tuple implementation.
+#  ifdef BOOST_HAS_TR1_TUPLE
+#   undef BOOST_HAS_TR1_TUPLE
+#  endif  // BOOST_HAS_TR1_TUPLE
+
+// This prevents <boost/tr1/detail/config.hpp>, which defines
+// BOOST_HAS_TR1_TUPLE, from being #included by Boost's <tuple>.
+#  define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED
+#  include <tuple>
+
+# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)
+// GCC 4.0+ implements tr1/tuple in the <tr1/tuple> header.  This does
+// not conform to the TR1 spec, which requires the header to be <tuple>.
+
+#  if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
+// Until version 4.3.2, gcc has a bug that causes <tr1/functional>,
+// which is #included by <tr1/tuple>, to not compile when RTTI is
+// disabled.  _TR1_FUNCTIONAL is the header guard for
+// <tr1/functional>.  Hence the following #define is a hack to prevent
+// <tr1/functional> from being included.
+#   define _TR1_FUNCTIONAL 1
+#   include <tr1/tuple>
+#   undef _TR1_FUNCTIONAL  // Allows the user to #include
+                        // <tr1/functional> if he chooses to.
+#  else
+#   include <tr1/tuple>  // NOLINT
+#  endif  // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
+
+# else
+// If the compiler is not GCC 4.0+, we assume the user is using a
+// spec-conforming TR1 implementation.
+#  include <tuple>  // NOLINT
+# endif  // GTEST_USE_OWN_TR1_TUPLE
+
+#endif  // GTEST_HAS_TR1_TUPLE
+
+// Determines whether clone(2) is supported.
+// Usually it will only be available on Linux, excluding
+// Linux on the Itanium architecture.
+// Also see http://linux.die.net/man/2/clone.
+#ifndef GTEST_HAS_CLONE
+// The user didn't tell us, so we need to figure it out.
+
+# if GTEST_OS_LINUX && !defined(__ia64__)
+#  define GTEST_HAS_CLONE 1
+# else
+#  define GTEST_HAS_CLONE 0
+# endif  // GTEST_OS_LINUX && !defined(__ia64__)
+
+#endif  // GTEST_HAS_CLONE
+
+// Determines whether to support stream redirection. This is used to test
+// output correctness and to implement death tests.
+#ifndef GTEST_HAS_STREAM_REDIRECTION
+// By default, we assume that stream redirection is supported on all
+// platforms except known mobile ones.
+# if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
+#  define GTEST_HAS_STREAM_REDIRECTION 0
+# else
+#  define GTEST_HAS_STREAM_REDIRECTION 1
+# endif  // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN
+#endif  // GTEST_HAS_STREAM_REDIRECTION
+
+// Determines whether to support death tests.
+// Google Test does not support death tests for VC 7.1 and earlier as
+// abort() in a VC 7.1 application compiled as GUI in debug config
+// pops up a dialog window that cannot be suppressed programmatically.
+#if (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \
+     (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \
+     GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX)
+# define GTEST_HAS_DEATH_TEST 1
+# include <vector>  // NOLINT
+#endif
+
+// We don't support MSVC 7.1 with exceptions disabled now.  Therefore
+// all the compilers we care about are adequate for supporting
+// value-parameterized tests.
+#define GTEST_HAS_PARAM_TEST 1
+
+// Determines whether to support type-driven tests.
+
+// Typed tests need <typeinfo> and variadic macros, which GCC, VC++ 8.0,
+// Sun Pro CC, IBM Visual Age, and HP aCC support.
+#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \
+    defined(__IBMCPP__) || defined(__HP_aCC)
+# define GTEST_HAS_TYPED_TEST 1
+# define GTEST_HAS_TYPED_TEST_P 1
+#endif
+
+// Determines whether to support Combine(). This only makes sense when
+// value-parameterized tests are enabled.  The implementation doesn't
+// work on Sun Studio since it doesn't understand templated conversion
+// operators.
+#if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC)
+# define GTEST_HAS_COMBINE 1
+#endif
+
+// Determines whether the system compiler uses UTF-16 for encoding wide strings.
+#define GTEST_WIDE_STRING_USES_UTF16_ \
+    (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX)
+
+// Determines whether test results can be streamed to a socket.
+#if GTEST_OS_LINUX
+# define GTEST_CAN_STREAM_RESULTS_ 1
+#endif
+
+// Defines some utility macros.
+
+// The GNU compiler emits a warning if nested "if" statements are followed by
+// an "else" statement and braces are not used to explicitly disambiguate the
+// "else" binding.  This leads to problems with code like:
+//
+//   if (gate)
+//     ASSERT_*(condition) << "Some message";
+//
+// The "switch (0) case 0:" idiom is used to suppress this.
+#ifdef __INTEL_COMPILER
+# define GTEST_AMBIGUOUS_ELSE_BLOCKER_
+#else
+# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default:  // NOLINT
+#endif
+
+// Use this annotation at the end of a struct/class definition to
+// prevent the compiler from optimizing away instances that are never
+// used.  This is useful when all interesting logic happens inside the
+// c'tor and / or d'tor.  Example:
+//
+//   struct Foo {
+//     Foo() { ... }
+//   } GTEST_ATTRIBUTE_UNUSED_;
+//
+// Also use it after a variable or parameter declaration to tell the
+// compiler the variable/parameter does not have to be used.
+#if defined(__GNUC__) && !defined(COMPILER_ICC)
+# define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
+#else
+# define GTEST_ATTRIBUTE_UNUSED_
+#endif
+
+// A macro to disallow operator=
+// This should be used in the private: declarations for a class.
+#define GTEST_DISALLOW_ASSIGN_(type)\
+  void operator=(type const &)
+
+// A macro to disallow copy constructor and operator=
+// This should be used in the private: declarations for a class.
+#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
+  type(type const &);\
+  GTEST_DISALLOW_ASSIGN_(type)
+
+// Tell the compiler to warn about unused return values for functions declared
+// with this macro.  The macro should be used on function declarations
+// following the argument list:
+//
+//   Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_;
+#if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC)
+# define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
+#else
+# define GTEST_MUST_USE_RESULT_
+#endif  // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC
+
+// Determine whether the compiler supports Microsoft's Structured Exception
+// Handling.  This is supported by several Windows compilers but generally
+// does not exist on any other system.
+#ifndef GTEST_HAS_SEH
+// The user didn't tell us, so we need to figure it out.
+
+# if defined(_MSC_VER) || defined(__BORLANDC__)
+// These two compilers are known to support SEH.
+#  define GTEST_HAS_SEH 1
+# else
+// Assume no SEH.
+#  define GTEST_HAS_SEH 0
+# endif
+
+#endif  // GTEST_HAS_SEH
+
+#ifdef _MSC_VER
+
+# if GTEST_LINKED_AS_SHARED_LIBRARY
+#  define GTEST_API_ __declspec(dllimport)
+# elif GTEST_CREATE_SHARED_LIBRARY
+#  define GTEST_API_ __declspec(dllexport)
+# endif
+
+#endif  // _MSC_VER
+
+#ifndef GTEST_API_
+# define GTEST_API_
+#endif
+
+#ifdef __GNUC__
+// Ask the compiler to never inline a given function.
+# define GTEST_NO_INLINE_ __attribute__((noinline))
+#else
+# define GTEST_NO_INLINE_
+#endif
+
+namespace testing {
+
+class Message;
+
+namespace internal {
+
+class String;
+
+// The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time
+// expression is true. For example, you could use it to verify the
+// size of a static array:
+//
+//   GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
+//                         content_type_names_incorrect_size);
+//
+// or to make sure a struct is smaller than a certain size:
+//
+//   GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
+//
+// The second argument to the macro is the name of the variable. If
+// the expression is false, most compilers will issue a warning/error
+// containing the name of the variable.
+
+template <bool>
+struct CompileAssert {
+};
+
+#define GTEST_COMPILE_ASSERT_(expr, msg) \
+  typedef ::testing::internal::CompileAssert<(bool(expr))> \
+      msg[bool(expr) ? 1 : -1]
+
+// Implementation details of GTEST_COMPILE_ASSERT_:
+//
+// - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1
+//   elements (and thus is invalid) when the expression is false.
+//
+// - The simpler definition
+//
+//    #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
+//
+//   does not work, as gcc supports variable-length arrays whose sizes
+//   are determined at run-time (this is gcc's extension and not part
+//   of the C++ standard).  As a result, gcc fails to reject the
+//   following code with the simple definition:
+//
+//     int foo;
+//     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
+//                                      // not a compile-time constant.
+//
+// - By using the type CompileAssert<(bool(expr))>, we ensures that
+//   expr is a compile-time constant.  (Template arguments must be
+//   determined at compile-time.)
+//
+// - The outter parentheses in CompileAssert<(bool(expr))> are necessary
+//   to work around a bug in gcc 3.4.4 and 4.0.1.  If we had written
+//
+//     CompileAssert<bool(expr)>
+//
+//   instead, these compilers will refuse to compile
+//
+//     GTEST_COMPILE_ASSERT_(5 > 0, some_message);
+//
+//   (They seem to think the ">" in "5 > 0" marks the end of the
+//   template argument list.)
+//
+// - The array size is (bool(expr) ? 1 : -1), instead of simply
+//
+//     ((expr) ? 1 : -1).
+//
+//   This is to avoid running into a bug in MS VC 7.1, which
+//   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
+
+// StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h.
+//
+// This template is declared, but intentionally undefined.
+template <typename T1, typename T2>
+struct StaticAssertTypeEqHelper;
+
+template <typename T>
+struct StaticAssertTypeEqHelper<T, T> {};
+
+#if GTEST_HAS_GLOBAL_STRING
+typedef ::string string;
+#else
+typedef ::std::string string;
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+#if GTEST_HAS_GLOBAL_WSTRING
+typedef ::wstring wstring;
+#elif GTEST_HAS_STD_WSTRING
+typedef ::std::wstring wstring;
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+// A helper for suppressing warnings on constant condition.  It just
+// returns 'condition'.
+GTEST_API_ bool IsTrue(bool condition);
+
+// Defines scoped_ptr.
+
+// This implementation of scoped_ptr is PARTIAL - it only contains
+// enough stuff to satisfy Google Test's need.
+template <typename T>
+class scoped_ptr {
+ public:
+  typedef T element_type;
+
+  explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
+  ~scoped_ptr() { reset(); }
+
+  T& operator*() const { return *ptr_; }
+  T* operator->() const { return ptr_; }
+  T* get() const { return ptr_; }
+
+  T* release() {
+    T* const ptr = ptr_;
+    ptr_ = NULL;
+    return ptr;
+  }
+
+  void reset(T* p = NULL) {
+    if (p != ptr_) {
+      if (IsTrue(sizeof(T) > 0)) {  // Makes sure T is a complete type.
+        delete ptr_;
+      }
+      ptr_ = p;
+    }
+  }
+ private:
+  T* ptr_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);
+};
+
+// Defines RE.
+
+// A simple C++ wrapper for <regex.h>.  It uses the POSIX Extended
+// Regular Expression syntax.
+class GTEST_API_ RE {
+ public:
+  // A copy constructor is required by the Standard to initialize object
+  // references from r-values.
+  RE(const RE& other) { Init(other.pattern()); }
+
+  // Constructs an RE from a string.
+  RE(const ::std::string& regex) { Init(regex.c_str()); }  // NOLINT
+
+#if GTEST_HAS_GLOBAL_STRING
+
+  RE(const ::string& regex) { Init(regex.c_str()); }  // NOLINT
+
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+  RE(const char* regex) { Init(regex); }  // NOLINT
+  ~RE();
+
+  // Returns the string representation of the regex.
+  const char* pattern() const { return pattern_; }
+
+  // FullMatch(str, re) returns true iff regular expression re matches
+  // the entire str.
+  // PartialMatch(str, re) returns true iff regular expression re
+  // matches a substring of str (including str itself).
+  //
+  // TODO(wan@google.com): make FullMatch() and PartialMatch() work
+  // when str contains NUL characters.
+  static bool FullMatch(const ::std::string& str, const RE& re) {
+    return FullMatch(str.c_str(), re);
+  }
+  static bool PartialMatch(const ::std::string& str, const RE& re) {
+    return PartialMatch(str.c_str(), re);
+  }
+
+#if GTEST_HAS_GLOBAL_STRING
+
+  static bool FullMatch(const ::string& str, const RE& re) {
+    return FullMatch(str.c_str(), re);
+  }
+  static bool PartialMatch(const ::string& str, const RE& re) {
+    return PartialMatch(str.c_str(), re);
+  }
+
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+  static bool FullMatch(const char* str, const RE& re);
+  static bool PartialMatch(const char* str, const RE& re);
+
+ private:
+  void Init(const char* regex);
+
+  // We use a const char* instead of a string, as Google Test may be used
+  // where string is not available.  We also do not use Google Test's own
+  // String type here, in order to simplify dependencies between the
+  // files.
+  const char* pattern_;
+  bool is_valid_;
+
+#if GTEST_USES_POSIX_RE
+
+  regex_t full_regex_;     // For FullMatch().
+  regex_t partial_regex_;  // For PartialMatch().
+
+#else  // GTEST_USES_SIMPLE_RE
+
+  const char* full_pattern_;  // For FullMatch();
+
+#endif
+
+  GTEST_DISALLOW_ASSIGN_(RE);
+};
+
+// Formats a source file path and a line number as they would appear
+// in an error message from the compiler used to compile this code.
+GTEST_API_ ::std::string FormatFileLocation(const char* file, int line);
+
+// Formats a file location for compiler-independent XML output.
+// Although this function is not platform dependent, we put it next to
+// FormatFileLocation in order to contrast the two functions.
+GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file,
+                                                               int line);
+
+// Defines logging utilities:
+//   GTEST_LOG_(severity) - logs messages at the specified severity level. The
+//                          message itself is streamed into the macro.
+//   LogToStderr()  - directs all log messages to stderr.
+//   FlushInfoLog() - flushes informational log messages.
+
+enum GTestLogSeverity {
+  GTEST_INFO,
+  GTEST_WARNING,
+  GTEST_ERROR,
+  GTEST_FATAL
+};
+
+// Formats log entry severity, provides a stream object for streaming the
+// log message, and terminates the message with a newline when going out of
+// scope.
+class GTEST_API_ GTestLog {
+ public:
+  GTestLog(GTestLogSeverity severity, const char* file, int line);
+
+  // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
+  ~GTestLog();
+
+  ::std::ostream& GetStream() { return ::std::cerr; }
+
+ private:
+  const GTestLogSeverity severity_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog);
+};
+
+#define GTEST_LOG_(severity) \
+    ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
+                                  __FILE__, __LINE__).GetStream()
+
+inline void LogToStderr() {}
+inline void FlushInfoLog() { fflush(NULL); }
+
+// INTERNAL IMPLEMENTATION - DO NOT USE.
+//
+// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
+// is not satisfied.
+//  Synopsys:
+//    GTEST_CHECK_(boolean_condition);
+//     or
+//    GTEST_CHECK_(boolean_condition) << "Additional message";
+//
+//    This checks the condition and if the condition is not satisfied
+//    it prints message about the condition violation, including the
+//    condition itself, plus additional message streamed into it, if any,
+//    and then it aborts the program. It aborts the program irrespective of
+//    whether it is built in the debug mode or not.
+#define GTEST_CHECK_(condition) \
+    GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+    if (::testing::internal::IsTrue(condition)) \
+      ; \
+    else \
+      GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
+
+// An all-mode assert to verify that the given POSIX-style function
+// call returns 0 (indicating success).  Known limitation: this
+// doesn't expand to a balanced 'if' statement, so enclose the macro
+// in {} if you need to use it as the only statement in an 'if'
+// branch.
+#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \
+  if (const int gtest_error = (posix_call)) \
+    GTEST_LOG_(FATAL) << #posix_call << "failed with error " \
+                      << gtest_error
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Use ImplicitCast_ as a safe version of static_cast for upcasting in
+// the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a
+// const Foo*).  When you use ImplicitCast_, the compiler checks that
+// the cast is safe.  Such explicit ImplicitCast_s are necessary in
+// surprisingly many situations where C++ demands an exact type match
+// instead of an argument type convertable to a target type.
+//
+// The syntax for using ImplicitCast_ is the same as for static_cast:
+//
+//   ImplicitCast_<ToType>(expr)
+//
+// ImplicitCast_ would have been part of the C++ standard library,
+// but the proposal was submitted too late.  It will probably make
+// its way into the language in the future.
+//
+// This relatively ugly name is intentional. It prevents clashes with
+// similar functions users may have (e.g., implicit_cast). The internal
+// namespace alone is not enough because the function can be found by ADL.
+template<typename To>
+inline To ImplicitCast_(To x) { return x; }
+
+// When you upcast (that is, cast a pointer from type Foo to type
+// SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts
+// always succeed.  When you downcast (that is, cast a pointer from
+// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
+// how do you know the pointer is really of type SubclassOfFoo?  It
+// could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,
+// when you downcast, you should use this macro.  In debug mode, we
+// use dynamic_cast<> to double-check the downcast is legal (we die
+// if it's not).  In normal mode, we do the efficient static_cast<>
+// instead.  Thus, it's important to test in debug mode to make sure
+// the cast is legal!
+//    This is the only place in the code we should use dynamic_cast<>.
+// In particular, you SHOULDN'T be using dynamic_cast<> in order to
+// do RTTI (eg code like this:
+//    if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);
+//    if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);
+// You should design the code some other way not to need this.
+//
+// This relatively ugly name is intentional. It prevents clashes with
+// similar functions users may have (e.g., down_cast). The internal
+// namespace alone is not enough because the function can be found by ADL.
+template<typename To, typename From>  // use like this: DownCast_<T*>(foo);
+inline To DownCast_(From* f) {  // so we only accept pointers
+  // Ensures that To is a sub-type of From *.  This test is here only
+  // for compile-time type checking, and has no overhead in an
+  // optimized build at run-time, as it will be optimized away
+  // completely.
+  if (false) {
+    const To to = NULL;
+    ::testing::internal::ImplicitCast_<From*>(to);
+  }
+
+#if GTEST_HAS_RTTI
+  // RTTI: debug mode only!
+  GTEST_CHECK_(f == NULL || dynamic_cast<To>(f) != NULL);
+#endif
+  return static_cast<To>(f);
+}
+
+// Downcasts the pointer of type Base to Derived.
+// Derived must be a subclass of Base. The parameter MUST
+// point to a class of type Derived, not any subclass of it.
+// When RTTI is available, the function performs a runtime
+// check to enforce this.
+template <class Derived, class Base>
+Derived* CheckedDowncastToActualType(Base* base) {
+#if GTEST_HAS_RTTI
+  GTEST_CHECK_(typeid(*base) == typeid(Derived));
+  return dynamic_cast<Derived*>(base);  // NOLINT
+#else
+  return static_cast<Derived*>(base);  // Poor man's downcast.
+#endif
+}
+
+#if GTEST_HAS_STREAM_REDIRECTION
+
+// Defines the stderr capturer:
+//   CaptureStdout     - starts capturing stdout.
+//   GetCapturedStdout - stops capturing stdout and returns the captured string.
+//   CaptureStderr     - starts capturing stderr.
+//   GetCapturedStderr - stops capturing stderr and returns the captured string.
+//
+GTEST_API_ void CaptureStdout();
+GTEST_API_ String GetCapturedStdout();
+GTEST_API_ void CaptureStderr();
+GTEST_API_ String GetCapturedStderr();
+
+#endif  // GTEST_HAS_STREAM_REDIRECTION
+
+
+#if GTEST_HAS_DEATH_TEST
+
+// A copy of all command line arguments.  Set by InitGoogleTest().
+extern ::std::vector<String> g_argvs;
+
+// GTEST_HAS_DEATH_TEST implies we have ::std::string.
+const ::std::vector<String>& GetArgvs();
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+// Defines synchronization primitives.
+
+#if GTEST_HAS_PTHREAD
+
+// Sleeps for (roughly) n milli-seconds.  This function is only for
+// testing Google Test's own constructs.  Don't use it in user tests,
+// either directly or indirectly.
+inline void SleepMilliseconds(int n) {
+  const timespec time = {
+    0,                  // 0 seconds.
+    n * 1000L * 1000L,  // And n ms.
+  };
+  nanosleep(&time, NULL);
+}
+
+// Allows a controller thread to pause execution of newly created
+// threads until notified.  Instances of this class must be created
+// and destroyed in the controller thread.
+//
+// This class is only for testing Google Test's own constructs. Do not
+// use it in user tests, either directly or indirectly.
+class Notification {
+ public:
+  Notification() : notified_(false) {}
+
+  // Notifies all threads created with this notification to start. Must
+  // be called from the controller thread.
+  void Notify() { notified_ = true; }
+
+  // Blocks until the controller thread notifies. Must be called from a test
+  // thread.
+  void WaitForNotification() {
+    while(!notified_) {
+      SleepMilliseconds(10);
+    }
+  }
+
+ private:
+  volatile bool notified_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
+};
+
+// As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
+// Consequently, it cannot select a correct instantiation of ThreadWithParam
+// in order to call its Run(). Introducing ThreadWithParamBase as a
+// non-templated base class for ThreadWithParam allows us to bypass this
+// problem.
+class ThreadWithParamBase {
+ public:
+  virtual ~ThreadWithParamBase() {}
+  virtual void Run() = 0;
+};
+
+// pthread_create() accepts a pointer to a function type with the C linkage.
+// According to the Standard (7.5/1), function types with different linkages
+// are different even if they are otherwise identical.  Some compilers (for
+// example, SunStudio) treat them as different types.  Since class methods
+// cannot be defined with C-linkage we need to define a free C-function to
+// pass into pthread_create().
+extern "C" inline void* ThreadFuncWithCLinkage(void* thread) {
+  static_cast<ThreadWithParamBase*>(thread)->Run();
+  return NULL;
+}
+
+// Helper class for testing Google Test's multi-threading constructs.
+// To use it, write:
+//
+//   void ThreadFunc(int param) { /* Do things with param */ }
+//   Notification thread_can_start;
+//   ...
+//   // The thread_can_start parameter is optional; you can supply NULL.
+//   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
+//   thread_can_start.Notify();
+//
+// These classes are only for testing Google Test's own constructs. Do
+// not use them in user tests, either directly or indirectly.
+template <typename T>
+class ThreadWithParam : public ThreadWithParamBase {
+ public:
+  typedef void (*UserThreadFunc)(T);
+
+  ThreadWithParam(
+      UserThreadFunc func, T param, Notification* thread_can_start)
+      : func_(func),
+        param_(param),
+        thread_can_start_(thread_can_start),
+        finished_(false) {
+    ThreadWithParamBase* const base = this;
+    // The thread can be created only after all fields except thread_
+    // have been initialized.
+    GTEST_CHECK_POSIX_SUCCESS_(
+        pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
+  }
+  ~ThreadWithParam() { Join(); }
+
+  void Join() {
+    if (!finished_) {
+      GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0));
+      finished_ = true;
+    }
+  }
+
+  virtual void Run() {
+    if (thread_can_start_ != NULL)
+      thread_can_start_->WaitForNotification();
+    func_(param_);
+  }
+
+ private:
+  const UserThreadFunc func_;  // User-supplied thread function.
+  const T param_;  // User-supplied parameter to the thread function.
+  // When non-NULL, used to block execution until the controller thread
+  // notifies.
+  Notification* const thread_can_start_;
+  bool finished_;  // true iff we know that the thread function has finished.
+  pthread_t thread_;  // The native thread object.
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam);
+};
+
+// MutexBase and Mutex implement mutex on pthreads-based platforms. They
+// are used in conjunction with class MutexLock:
+//
+//   Mutex mutex;
+//   ...
+//   MutexLock lock(&mutex);  // Acquires the mutex and releases it at the end
+//                            // of the current scope.
+//
+// MutexBase implements behavior for both statically and dynamically
+// allocated mutexes.  Do not use MutexBase directly.  Instead, write
+// the following to define a static mutex:
+//
+//   GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex);
+//
+// You can forward declare a static mutex like this:
+//
+//   GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex);
+//
+// To create a dynamic mutex, just define an object of type Mutex.
+class MutexBase {
+ public:
+  // Acquires this mutex.
+  void Lock() {
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_));
+    owner_ = pthread_self();
+  }
+
+  // Releases this mutex.
+  void Unlock() {
+    // We don't protect writing to owner_ here, as it's the caller's
+    // responsibility to ensure that the current thread holds the
+    // mutex when this is called.
+    owner_ = 0;
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));
+  }
+
+  // Does nothing if the current thread holds the mutex. Otherwise, crashes
+  // with high probability.
+  void AssertHeld() const {
+    GTEST_CHECK_(owner_ == pthread_self())
+        << "The current thread is not holding the mutex @" << this;
+  }
+
+  // A static mutex may be used before main() is entered.  It may even
+  // be used before the dynamic initialization stage.  Therefore we
+  // must be able to initialize a static mutex object at link time.
+  // This means MutexBase has to be a POD and its member variables
+  // have to be public.
+ public:
+  pthread_mutex_t mutex_;  // The underlying pthread mutex.
+  pthread_t owner_;  // The thread holding the mutex; 0 means no one holds it.
+};
+
+// Forward-declares a static mutex.
+# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \
+    extern ::testing::internal::MutexBase mutex
+
+// Defines and statically (i.e. at link time) initializes a static mutex.
+# define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
+    ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, 0 }
+
+// The Mutex class can only be used for mutexes created at runtime. It
+// shares its API with MutexBase otherwise.
+class Mutex : public MutexBase {
+ public:
+  Mutex() {
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL));
+    owner_ = 0;
+  }
+  ~Mutex() {
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_));
+  }
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex);
+};
+
+// We cannot name this class MutexLock as the ctor declaration would
+// conflict with a macro named MutexLock, which is defined on some
+// platforms.  Hence the typedef trick below.
+class GTestMutexLock {
+ public:
+  explicit GTestMutexLock(MutexBase* mutex)
+      : mutex_(mutex) { mutex_->Lock(); }
+
+  ~GTestMutexLock() { mutex_->Unlock(); }
+
+ private:
+  MutexBase* const mutex_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock);
+};
+
+typedef GTestMutexLock MutexLock;
+
+// Helpers for ThreadLocal.
+
+// pthread_key_create() requires DeleteThreadLocalValue() to have
+// C-linkage.  Therefore it cannot be templatized to access
+// ThreadLocal<T>.  Hence the need for class
+// ThreadLocalValueHolderBase.
+class ThreadLocalValueHolderBase {
+ public:
+  virtual ~ThreadLocalValueHolderBase() {}
+};
+
+// Called by pthread to delete thread-local data stored by
+// pthread_setspecific().
+extern "C" inline void DeleteThreadLocalValue(void* value_holder) {
+  delete static_cast<ThreadLocalValueHolderBase*>(value_holder);
+}
+
+// Implements thread-local storage on pthreads-based systems.
+//
+//   // Thread 1
+//   ThreadLocal<int> tl(100);  // 100 is the default value for each thread.
+//
+//   // Thread 2
+//   tl.set(150);  // Changes the value for thread 2 only.
+//   EXPECT_EQ(150, tl.get());
+//
+//   // Thread 1
+//   EXPECT_EQ(100, tl.get());  // In thread 1, tl has the original value.
+//   tl.set(200);
+//   EXPECT_EQ(200, tl.get());
+//
+// The template type argument T must have a public copy constructor.
+// In addition, the default ThreadLocal constructor requires T to have
+// a public default constructor.
+//
+// An object managed for a thread by a ThreadLocal instance is deleted
+// when the thread exits.  Or, if the ThreadLocal instance dies in
+// that thread, when the ThreadLocal dies.  It's the user's
+// responsibility to ensure that all other threads using a ThreadLocal
+// have exited when it dies, or the per-thread objects for those
+// threads will not be deleted.
+//
+// Google Test only uses global ThreadLocal objects.  That means they
+// will die after main() has returned.  Therefore, no per-thread
+// object managed by Google Test will be leaked as long as all threads
+// using Google Test have exited when main() returns.
+template <typename T>
+class ThreadLocal {
+ public:
+  ThreadLocal() : key_(CreateKey()),
+                  default_() {}
+  explicit ThreadLocal(const T& value) : key_(CreateKey()),
+                                         default_(value) {}
+
+  ~ThreadLocal() {
+    // Destroys the managed object for the current thread, if any.
+    DeleteThreadLocalValue(pthread_getspecific(key_));
+
+    // Releases resources associated with the key.  This will *not*
+    // delete managed objects for other threads.
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
+  }
+
+  T* pointer() { return GetOrCreateValue(); }
+  const T* pointer() const { return GetOrCreateValue(); }
+  const T& get() const { return *pointer(); }
+  void set(const T& value) { *pointer() = value; }
+
+ private:
+  // Holds a value of type T.
+  class ValueHolder : public ThreadLocalValueHolderBase {
+   public:
+    explicit ValueHolder(const T& value) : value_(value) {}
+
+    T* pointer() { return &value_; }
+
+   private:
+    T value_;
+    GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder);
+  };
+
+  static pthread_key_t CreateKey() {
+    pthread_key_t key;
+    // When a thread exits, DeleteThreadLocalValue() will be called on
+    // the object managed for that thread.
+    GTEST_CHECK_POSIX_SUCCESS_(
+        pthread_key_create(&key, &DeleteThreadLocalValue));
+    return key;
+  }
+
+  T* GetOrCreateValue() const {
+    ThreadLocalValueHolderBase* const holder =
+        static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
+    if (holder != NULL) {
+      return CheckedDowncastToActualType<ValueHolder>(holder)->pointer();
+    }
+
+    ValueHolder* const new_holder = new ValueHolder(default_);
+    ThreadLocalValueHolderBase* const holder_base = new_holder;
+    GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
+    return new_holder->pointer();
+  }
+
+  // A key pthreads uses for looking up per-thread values.
+  const pthread_key_t key_;
+  const T default_;  // The default value for each thread.
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal);
+};
+
+# define GTEST_IS_THREADSAFE 1
+
+#else  // GTEST_HAS_PTHREAD
+
+// A dummy implementation of synchronization primitives (mutex, lock,
+// and thread-local variable).  Necessary for compiling Google Test where
+// mutex is not supported - using Google Test in multiple threads is not
+// supported on such platforms.
+
+class Mutex {
+ public:
+  Mutex() {}
+  void AssertHeld() const {}
+};
+
+# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \
+  extern ::testing::internal::Mutex mutex
+
+# define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex
+
+class GTestMutexLock {
+ public:
+  explicit GTestMutexLock(Mutex*) {}  // NOLINT
+};
+
+typedef GTestMutexLock MutexLock;
+
+template <typename T>
+class ThreadLocal {
+ public:
+  ThreadLocal() : value_() {}
+  explicit ThreadLocal(const T& value) : value_(value) {}
+  T* pointer() { return &value_; }
+  const T* pointer() const { return &value_; }
+  const T& get() const { return value_; }
+  void set(const T& value) { value_ = value; }
+ private:
+  T value_;
+};
+
+// The above synchronization primitives have dummy implementations.
+// Therefore Google Test is not thread-safe.
+# define GTEST_IS_THREADSAFE 0
+
+#endif  // GTEST_HAS_PTHREAD
+
+// Returns the number of threads running in the process, or 0 to indicate that
+// we cannot detect it.
+GTEST_API_ size_t GetThreadCount();
+
+// Passing non-POD classes through ellipsis (...) crashes the ARM
+// compiler and generates a warning in Sun Studio.  The Nokia Symbian
+// and the IBM XL C/C++ compiler try to instantiate a copy constructor
+// for objects passed through ellipsis (...), failing for uncopyable
+// objects.  We define this to ensure that only POD is passed through
+// ellipsis on these systems.
+#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
+// We lose support for NULL detection where the compiler doesn't like
+// passing non-POD classes through ellipsis (...).
+# define GTEST_ELLIPSIS_NEEDS_POD_ 1
+#else
+# define GTEST_CAN_COMPARE_NULL 1
+#endif
+
+// The Nokia Symbian and IBM XL C/C++ compilers cannot decide between
+// const T& and const T* in a function template.  These compilers
+// _can_ decide between class template specializations for T and T*,
+// so a tr1::type_traits-like is_pointer works.
+#if defined(__SYMBIAN32__) || defined(__IBMCPP__)
+# define GTEST_NEEDS_IS_POINTER_ 1
+#endif
+
+template <bool bool_value>
+struct bool_constant {
+  typedef bool_constant<bool_value> type;
+  static const bool value = bool_value;
+};
+template <bool bool_value> const bool bool_constant<bool_value>::value;
+
+typedef bool_constant<false> false_type;
+typedef bool_constant<true> true_type;
+
+template <typename T>
+struct is_pointer : public false_type {};
+
+template <typename T>
+struct is_pointer<T*> : public true_type {};
+
+template <typename Iterator>
+struct IteratorTraits {
+  typedef typename Iterator::value_type value_type;
+};
+
+template <typename T>
+struct IteratorTraits<T*> {
+  typedef T value_type;
+};
+
+template <typename T>
+struct IteratorTraits<const T*> {
+  typedef T value_type;
+};
+
+#if GTEST_OS_WINDOWS
+# define GTEST_PATH_SEP_ "\\"
+# define GTEST_HAS_ALT_PATH_SEP_ 1
+// The biggest signed integer type the compiler supports.
+typedef __int64 BiggestInt;
+#else
+# define GTEST_PATH_SEP_ "/"
+# define GTEST_HAS_ALT_PATH_SEP_ 0
+typedef long long BiggestInt;  // NOLINT
+#endif  // GTEST_OS_WINDOWS
+
+// Utilities for char.
+
+// isspace(int ch) and friends accept an unsigned char or EOF.  char
+// may be signed, depending on the compiler (or compiler flags).
+// Therefore we need to cast a char to unsigned char before calling
+// isspace(), etc.
+
+inline bool IsAlpha(char ch) {
+  return isalpha(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsAlNum(char ch) {
+  return isalnum(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsDigit(char ch) {
+  return isdigit(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsLower(char ch) {
+  return islower(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsSpace(char ch) {
+  return isspace(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsUpper(char ch) {
+  return isupper(static_cast<unsigned char>(ch)) != 0;
+}
+inline bool IsXDigit(char ch) {
+  return isxdigit(static_cast<unsigned char>(ch)) != 0;
+}
+
+inline char ToLower(char ch) {
+  return static_cast<char>(tolower(static_cast<unsigned char>(ch)));
+}
+inline char ToUpper(char ch) {
+  return static_cast<char>(toupper(static_cast<unsigned char>(ch)));
+}
+
+// The testing::internal::posix namespace holds wrappers for common
+// POSIX functions.  These wrappers hide the differences between
+// Windows/MSVC and POSIX systems.  Since some compilers define these
+// standard functions as macros, the wrapper cannot have the same name
+// as the wrapped function.
+
+namespace posix {
+
+// Functions with a different name on Windows.
+
+#if GTEST_OS_WINDOWS
+
+typedef struct _stat StatStruct;
+
+# ifdef __BORLANDC__
+inline int IsATTY(int fd) { return isatty(fd); }
+inline int StrCaseCmp(const char* s1, const char* s2) {
+  return stricmp(s1, s2);
+}
+inline char* StrDup(const char* src) { return strdup(src); }
+# else  // !__BORLANDC__
+#  if GTEST_OS_WINDOWS_MOBILE
+inline int IsATTY(int /* fd */) { return 0; }
+#  else
+inline int IsATTY(int fd) { return _isatty(fd); }
+#  endif  // GTEST_OS_WINDOWS_MOBILE
+inline int StrCaseCmp(const char* s1, const char* s2) {
+  return _stricmp(s1, s2);
+}
+inline char* StrDup(const char* src) { return _strdup(src); }
+# endif  // __BORLANDC__
+
+# if GTEST_OS_WINDOWS_MOBILE
+inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
+// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
+// time and thus not defined there.
+# else
+inline int FileNo(FILE* file) { return _fileno(file); }
+inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
+inline int RmDir(const char* dir) { return _rmdir(dir); }
+inline bool IsDir(const StatStruct& st) {
+  return (_S_IFDIR & st.st_mode) != 0;
+}
+# endif  // GTEST_OS_WINDOWS_MOBILE
+
+#else
+
+typedef struct stat StatStruct;
+
+inline int FileNo(FILE* file) { return fileno(file); }
+inline int IsATTY(int fd) { return isatty(fd); }
+inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
+inline int StrCaseCmp(const char* s1, const char* s2) {
+  return strcasecmp(s1, s2);
+}
+inline char* StrDup(const char* src) { return strdup(src); }
+inline int RmDir(const char* dir) { return rmdir(dir); }
+inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
+
+#endif  // GTEST_OS_WINDOWS
+
+// Functions deprecated by MSVC 8.0.
+
+#ifdef _MSC_VER
+// Temporarily disable warning 4996 (deprecated function).
+# pragma warning(push)
+# pragma warning(disable:4996)
+#endif
+
+inline const char* StrNCpy(char* dest, const char* src, size_t n) {
+  return strncpy(dest, src, n);
+}
+
+// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and
+// StrError() aren't needed on Windows CE at this time and thus not
+// defined there.
+
+#if !GTEST_OS_WINDOWS_MOBILE
+inline int ChDir(const char* dir) { return chdir(dir); }
+#endif
+inline FILE* FOpen(const char* path, const char* mode) {
+  return fopen(path, mode);
+}
+#if !GTEST_OS_WINDOWS_MOBILE
+inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
+  return freopen(path, mode, stream);
+}
+inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
+#endif
+inline int FClose(FILE* fp) { return fclose(fp); }
+#if !GTEST_OS_WINDOWS_MOBILE
+inline int Read(int fd, void* buf, unsigned int count) {
+  return static_cast<int>(read(fd, buf, count));
+}
+inline int Write(int fd, const void* buf, unsigned int count) {
+  return static_cast<int>(write(fd, buf, count));
+}
+inline int Close(int fd) { return close(fd); }
+inline const char* StrError(int errnum) { return strerror(errnum); }
+#endif
+inline const char* GetEnv(const char* name) {
+#if GTEST_OS_WINDOWS_MOBILE
+  // We are on Windows CE, which has no environment variables.
+  return NULL;
+#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9)
+  // Environment variables which we programmatically clear will be set to the
+  // empty string rather than unset (NULL).  Handle that case.
+  const char* const env = getenv(name);
+  return (env != NULL && env[0] != '\0') ? env : NULL;
+#else
+  return getenv(name);
+#endif
+}
+
+#ifdef _MSC_VER
+# pragma warning(pop)  // Restores the warning state.
+#endif
+
+#if GTEST_OS_WINDOWS_MOBILE
+// Windows CE has no C library. The abort() function is used in
+// several places in Google Test. This implementation provides a reasonable
+// imitation of standard behaviour.
+void Abort();
+#else
+inline void Abort() { abort(); }
+#endif  // GTEST_OS_WINDOWS_MOBILE
+
+}  // namespace posix
+
+// The maximum number a BiggestInt can represent.  This definition
+// works no matter BiggestInt is represented in one's complement or
+// two's complement.
+//
+// We cannot rely on numeric_limits in STL, as __int64 and long long
+// are not part of standard C++ and numeric_limits doesn't need to be
+// defined for them.
+const BiggestInt kMaxBiggestInt =
+    ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));
+
+// This template class serves as a compile-time function from size to
+// type.  It maps a size in bytes to a primitive type with that
+// size. e.g.
+//
+//   TypeWithSize<4>::UInt
+//
+// is typedef-ed to be unsigned int (unsigned integer made up of 4
+// bytes).
+//
+// Such functionality should belong to STL, but I cannot find it
+// there.
+//
+// Google Test uses this class in the implementation of floating-point
+// comparison.
+//
+// For now it only handles UInt (unsigned int) as that's all Google Test
+// needs.  Other types can be easily added in the future if need
+// arises.
+template <size_t size>
+class TypeWithSize {
+ public:
+  // This prevents the user from using TypeWithSize<N> with incorrect
+  // values of N.
+  typedef void UInt;
+};
+
+// The specialization for size 4.
+template <>
+class TypeWithSize<4> {
+ public:
+  // unsigned int has size 4 in both gcc and MSVC.
+  //
+  // As base/basictypes.h doesn't compile on Windows, we cannot use
+  // uint32, uint64, and etc here.
+  typedef int Int;
+  typedef unsigned int UInt;
+};
+
+// The specialization for size 8.
+template <>
+class TypeWithSize<8> {
+ public:
+
+#if GTEST_OS_WINDOWS
+  typedef __int64 Int;
+  typedef unsigned __int64 UInt;
+#else
+  typedef long long Int;  // NOLINT
+  typedef unsigned long long UInt;  // NOLINT
+#endif  // GTEST_OS_WINDOWS
+};
+
+// Integer types of known sizes.
+typedef TypeWithSize<4>::Int Int32;
+typedef TypeWithSize<4>::UInt UInt32;
+typedef TypeWithSize<8>::Int Int64;
+typedef TypeWithSize<8>::UInt UInt64;
+typedef TypeWithSize<8>::Int TimeInMillis;  // Represents time in milliseconds.
+
+// Utilities for command line flags and environment variables.
+
+// Macro for referencing flags.
+#define GTEST_FLAG(name) FLAGS_gtest_##name
+
+// Macros for declaring flags.
+#define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
+#define GTEST_DECLARE_int32_(name) \
+    GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
+#define GTEST_DECLARE_string_(name) \
+    GTEST_API_ extern ::testing::internal::String GTEST_FLAG(name)
+
+// Macros for defining flags.
+#define GTEST_DEFINE_bool_(name, default_val, doc) \
+    GTEST_API_ bool GTEST_FLAG(name) = (default_val)
+#define GTEST_DEFINE_int32_(name, default_val, doc) \
+    GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
+#define GTEST_DEFINE_string_(name, default_val, doc) \
+    GTEST_API_ ::testing::internal::String GTEST_FLAG(name) = (default_val)
+
+// Parses 'str' for a 32-bit signed integer.  If successful, writes the result
+// to *value and returns true; otherwise leaves *value unchanged and returns
+// false.
+// TODO(chandlerc): Find a better way to refactor flag and environment parsing
+// out of both gtest-port.cc and gtest.cc to avoid exporting this utility
+// function.
+bool ParseInt32(const Message& src_text, const char* str, Int32* value);
+
+// Parses a bool/Int32/string from the environment variable
+// corresponding to the given Google Test flag.
+bool BoolFromGTestEnv(const char* flag, bool default_val);
+GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val);
+const char* StringFromGTestEnv(const char* flag, const char* default_val);
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
+
+#if GTEST_OS_LINUX
+# include <stdlib.h>
+# include <sys/types.h>
+# include <sys/wait.h>
+# include <unistd.h>
+#endif  // GTEST_OS_LINUX
+
+#include <ctype.h>
+#include <string.h>
+#include <iomanip>
+#include <limits>
+#include <set>
+
+// Copyright 2005, Google 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 Google 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.
+//
+// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file declares the String class and functions used internally by
+// Google Test.  They are subject to change without notice. They should not used
+// by code external to Google Test.
+//
+// This header file is #included by <gtest/internal/gtest-internal.h>.
+// It should not be #included by other files.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
+
+#ifdef __BORLANDC__
+// string.h is not guaranteed to provide strcpy on C++ Builder.
+# include <mem.h>
+#endif
+
+#include <string.h>
+
+#include <string>
+
+namespace testing {
+namespace internal {
+
+// String - a UTF-8 string class.
+//
+// For historic reasons, we don't use std::string.
+//
+// TODO(wan@google.com): replace this class with std::string or
+// implement it in terms of the latter.
+//
+// Note that String can represent both NULL and the empty string,
+// while std::string cannot represent NULL.
+//
+// NULL and the empty string are considered different.  NULL is less
+// than anything (including the empty string) except itself.
+//
+// This class only provides minimum functionality necessary for
+// implementing Google Test.  We do not intend to implement a full-fledged
+// string class here.
+//
+// Since the purpose of this class is to provide a substitute for
+// std::string on platforms where it cannot be used, we define a copy
+// constructor and assignment operators such that we don't need
+// conditional compilation in a lot of places.
+//
+// In order to make the representation efficient, the d'tor of String
+// is not virtual.  Therefore DO NOT INHERIT FROM String.
+class GTEST_API_ String {
+ public:
+  // Static utility methods
+
+  // Returns the input enclosed in double quotes if it's not NULL;
+  // otherwise returns "(null)".  For example, "\"Hello\"" is returned
+  // for input "Hello".
+  //
+  // This is useful for printing a C string in the syntax of a literal.
+  //
+  // Known issue: escape sequences are not handled yet.
+  static String ShowCStringQuoted(const char* c_str);
+
+  // Clones a 0-terminated C string, allocating memory using new.  The
+  // caller is responsible for deleting the return value using
+  // delete[].  Returns the cloned string, or NULL if the input is
+  // NULL.
+  //
+  // This is different from strdup() in string.h, which allocates
+  // memory using malloc().
+  static const char* CloneCString(const char* c_str);
+
+#if GTEST_OS_WINDOWS_MOBILE
+  // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be
+  // able to pass strings to Win32 APIs on CE we need to convert them
+  // to 'Unicode', UTF-16.
+
+  // Creates a UTF-16 wide string from the given ANSI string, allocating
+  // memory using new. The caller is responsible for deleting the return
+  // value using delete[]. Returns the wide string, or NULL if the
+  // input is NULL.
+  //
+  // The wide string is created using the ANSI codepage (CP_ACP) to
+  // match the behaviour of the ANSI versions of Win32 calls and the
+  // C runtime.
+  static LPCWSTR AnsiToUtf16(const char* c_str);
+
+  // Creates an ANSI string from the given wide string, allocating
+  // memory using new. The caller is responsible for deleting the return
+  // value using delete[]. Returns the ANSI string, or NULL if the
+  // input is NULL.
+  //
+  // The returned string is created using the ANSI codepage (CP_ACP) to
+  // match the behaviour of the ANSI versions of Win32 calls and the
+  // C runtime.
+  static const char* Utf16ToAnsi(LPCWSTR utf16_str);
+#endif
+
+  // Compares two C strings.  Returns true iff they have the same content.
+  //
+  // Unlike strcmp(), this function can handle NULL argument(s).  A
+  // NULL C string is considered different to any non-NULL C string,
+  // including the empty string.
+  static bool CStringEquals(const char* lhs, const char* rhs);
+
+  // Converts a wide C string to a String using the UTF-8 encoding.
+  // NULL will be converted to "(null)".  If an error occurred during
+  // the conversion, "(failed to convert from wide string)" is
+  // returned.
+  static String ShowWideCString(const wchar_t* wide_c_str);
+
+  // Similar to ShowWideCString(), except that this function encloses
+  // the converted string in double quotes.
+  static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
+
+  // Compares two wide C strings.  Returns true iff they have the same
+  // content.
+  //
+  // Unlike wcscmp(), this function can handle NULL argument(s).  A
+  // NULL C string is considered different to any non-NULL C string,
+  // including the empty string.
+  static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
+
+  // Compares two C strings, ignoring case.  Returns true iff they
+  // have the same content.
+  //
+  // Unlike strcasecmp(), this function can handle NULL argument(s).
+  // A NULL C string is considered different to any non-NULL C string,
+  // including the empty string.
+  static bool CaseInsensitiveCStringEquals(const char* lhs,
+                                           const char* rhs);
+
+  // Compares two wide C strings, ignoring case.  Returns true iff they
+  // have the same content.
+  //
+  // Unlike wcscasecmp(), this function can handle NULL argument(s).
+  // A NULL C string is considered different to any non-NULL wide C string,
+  // including the empty string.
+  // NB: The implementations on different platforms slightly differ.
+  // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
+  // environment variable. On GNU platform this method uses wcscasecmp
+  // which compares according to LC_CTYPE category of the current locale.
+  // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the
+  // current locale.
+  static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
+                                               const wchar_t* rhs);
+
+  // Formats a list of arguments to a String, using the same format
+  // spec string as for printf.
+  //
+  // We do not use the StringPrintf class as it is not universally
+  // available.
+  //
+  // The result is limited to 4096 characters (including the tailing
+  // 0).  If 4096 characters are not enough to format the input,
+  // "<buffer exceeded>" is returned.
+  static String Format(const char* format, ...);
+
+  // C'tors
+
+  // The default c'tor constructs a NULL string.
+  String() : c_str_(NULL), length_(0) {}
+
+  // Constructs a String by cloning a 0-terminated C string.
+  String(const char* a_c_str) {  // NOLINT
+    if (a_c_str == NULL) {
+      c_str_ = NULL;
+      length_ = 0;
+    } else {
+      ConstructNonNull(a_c_str, strlen(a_c_str));
+    }
+  }
+
+  // Constructs a String by copying a given number of chars from a
+  // buffer.  E.g. String("hello", 3) creates the string "hel",
+  // String("a\0bcd", 4) creates "a\0bc", String(NULL, 0) creates "",
+  // and String(NULL, 1) results in access violation.
+  String(const char* buffer, size_t a_length) {
+    ConstructNonNull(buffer, a_length);
+  }
+
+  // The copy c'tor creates a new copy of the string.  The two
+  // String objects do not share content.
+  String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
+
+  // D'tor.  String is intended to be a final class, so the d'tor
+  // doesn't need to be virtual.
+  ~String() { delete[] c_str_; }
+
+  // Allows a String to be implicitly converted to an ::std::string or
+  // ::string, and vice versa.  Converting a String containing a NULL
+  // pointer to ::std::string or ::string is undefined behavior.
+  // Converting a ::std::string or ::string containing an embedded NUL
+  // character to a String will result in the prefix up to the first
+  // NUL character.
+  String(const ::std::string& str) {
+    ConstructNonNull(str.c_str(), str.length());
+  }
+
+  operator ::std::string() const { return ::std::string(c_str(), length()); }
+
+#if GTEST_HAS_GLOBAL_STRING
+  String(const ::string& str) {
+    ConstructNonNull(str.c_str(), str.length());
+  }
+
+  operator ::string() const { return ::string(c_str(), length()); }
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+  // Returns true iff this is an empty string (i.e. "").
+  bool empty() const { return (c_str() != NULL) && (length() == 0); }
+
+  // Compares this with another String.
+  // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0
+  // if this is greater than rhs.
+  int Compare(const String& rhs) const;
+
+  // Returns true iff this String equals the given C string.  A NULL
+  // string and a non-NULL string are considered not equal.
+  bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; }
+
+  // Returns true iff this String is less than the given String.  A
+  // NULL string is considered less than "".
+  bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
+
+  // Returns true iff this String doesn't equal the given C string.  A NULL
+  // string and a non-NULL string are considered not equal.
+  bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); }
+
+  // Returns true iff this String ends with the given suffix.  *Any*
+  // String is considered to end with a NULL or empty suffix.
+  bool EndsWith(const char* suffix) const;
+
+  // Returns true iff this String ends with the given suffix, not considering
+  // case. Any String is considered to end with a NULL or empty suffix.
+  bool EndsWithCaseInsensitive(const char* suffix) const;
+
+  // Returns the length of the encapsulated string, or 0 if the
+  // string is NULL.
+  size_t length() const { return length_; }
+
+  // Gets the 0-terminated C string this String object represents.
+  // The String object still owns the string.  Therefore the caller
+  // should NOT delete the return value.
+  const char* c_str() const { return c_str_; }
+
+  // Assigns a C string to this object.  Self-assignment works.
+  const String& operator=(const char* a_c_str) {
+    return *this = String(a_c_str);
+  }
+
+  // Assigns a String object to this object.  Self-assignment works.
+  const String& operator=(const String& rhs) {
+    if (this != &rhs) {
+      delete[] c_str_;
+      if (rhs.c_str() == NULL) {
+        c_str_ = NULL;
+        length_ = 0;
+      } else {
+        ConstructNonNull(rhs.c_str(), rhs.length());
+      }
+    }
+
+    return *this;
+  }
+
+ private:
+  // Constructs a non-NULL String from the given content.  This
+  // function can only be called when c_str_ has not been allocated.
+  // ConstructNonNull(NULL, 0) results in an empty string ("").
+  // ConstructNonNull(NULL, non_zero) is undefined behavior.
+  void ConstructNonNull(const char* buffer, size_t a_length) {
+    char* const str = new char[a_length + 1];
+    memcpy(str, buffer, a_length);
+    str[a_length] = '\0';
+    c_str_ = str;
+    length_ = a_length;
+  }
+
+  const char* c_str_;
+  size_t length_;
+};  // class String
+
+// Streams a String to an ostream.  Each '\0' character in the String
+// is replaced with "\\0".
+inline ::std::ostream& operator<<(::std::ostream& os, const String& str) {
+  if (str.c_str() == NULL) {
+    os << "(null)";
+  } else {
+    const char* const c_str = str.c_str();
+    for (size_t i = 0; i != str.length(); i++) {
+      if (c_str[i] == '\0') {
+        os << "\\0";
+      } else {
+        os << c_str[i];
+      }
+    }
+  }
+  return os;
+}
+
+// Gets the content of the stringstream's buffer as a String.  Each '\0'
+// character in the buffer is replaced with "\\0".
+GTEST_API_ String StringStreamToString(::std::stringstream* stream);
+
+// Converts a streamable value to a String.  A NULL pointer is
+// converted to "(null)".  When the input value is a ::string,
+// ::std::string, ::wstring, or ::std::wstring object, each NUL
+// character in it is replaced with "\\0".
+
+// Declared here but defined in gtest.h, so that it has access
+// to the definition of the Message class, required by the ARM
+// compiler.
+template <typename T>
+String StreamableToString(const T& streamable);
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: keith.ray@gmail.com (Keith Ray)
+//
+// Google Test filepath utilities
+//
+// This header file declares classes and functions used internally by
+// Google Test.  They are subject to change without notice.
+//
+// This file is #included in <gtest/internal/gtest-internal.h>.
+// Do not include this header file separately!
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
+
+
+namespace testing {
+namespace internal {
+
+// FilePath - a class for file and directory pathname manipulation which
+// handles platform-specific conventions (like the pathname separator).
+// Used for helper functions for naming files in a directory for xml output.
+// Except for Set methods, all methods are const or static, which provides an
+// "immutable value object" -- useful for peace of mind.
+// A FilePath with a value ending in a path separator ("like/this/") represents
+// a directory, otherwise it is assumed to represent a file. In either case,
+// it may or may not represent an actual file or directory in the file system.
+// Names are NOT checked for syntax correctness -- no checking for illegal
+// characters, malformed paths, etc.
+
+class GTEST_API_ FilePath {
+ public:
+  FilePath() : pathname_("") { }
+  FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
+
+  explicit FilePath(const char* pathname) : pathname_(pathname) {
+    Normalize();
+  }
+
+  explicit FilePath(const String& pathname) : pathname_(pathname) {
+    Normalize();
+  }
+
+  FilePath& operator=(const FilePath& rhs) {
+    Set(rhs);
+    return *this;
+  }
+
+  void Set(const FilePath& rhs) {
+    pathname_ = rhs.pathname_;
+  }
+
+  String ToString() const { return pathname_; }
+  const char* c_str() const { return pathname_.c_str(); }
+
+  // Returns the current working directory, or "" if unsuccessful.
+  static FilePath GetCurrentDir();
+
+  // Given directory = "dir", base_name = "test", number = 0,
+  // extension = "xml", returns "dir/test.xml". If number is greater
+  // than zero (e.g., 12), returns "dir/test_12.xml".
+  // On Windows platform, uses \ as the separator rather than /.
+  static FilePath MakeFileName(const FilePath& directory,
+                               const FilePath& base_name,
+                               int number,
+                               const char* extension);
+
+  // Given directory = "dir", relative_path = "test.xml",
+  // returns "dir/test.xml".
+  // On Windows, uses \ as the separator rather than /.
+  static FilePath ConcatPaths(const FilePath& directory,
+                              const FilePath& relative_path);
+
+  // Returns a pathname for a file that does not currently exist. The pathname
+  // will be directory/base_name.extension or
+  // directory/base_name_<number>.extension if directory/base_name.extension
+  // already exists. The number will be incremented until a pathname is found
+  // that does not already exist.
+  // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'.
+  // There could be a race condition if two or more processes are calling this
+  // function at the same time -- they could both pick the same filename.
+  static FilePath GenerateUniqueFileName(const FilePath& directory,
+                                         const FilePath& base_name,
+                                         const char* extension);
+
+  // Returns true iff the path is NULL or "".
+  bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; }
+
+  // If input name has a trailing separator character, removes it and returns
+  // the name, otherwise return the name string unmodified.
+  // On Windows platform, uses \ as the separator, other platforms use /.
+  FilePath RemoveTrailingPathSeparator() const;
+
+  // Returns a copy of the FilePath with the directory part removed.
+  // Example: FilePath("path/to/file").RemoveDirectoryName() returns
+  // FilePath("file"). If there is no directory part ("just_a_file"), it returns
+  // the FilePath unmodified. If there is no file part ("just_a_dir/") it
+  // returns an empty FilePath ("").
+  // On Windows platform, '\' is the path separator, otherwise it is '/'.
+  FilePath RemoveDirectoryName() const;
+
+  // RemoveFileName returns the directory path with the filename removed.
+  // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
+  // If the FilePath is "a_file" or "/a_file", RemoveFileName returns
+  // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does
+  // not have a file, like "just/a/dir/", it returns the FilePath unmodified.
+  // On Windows platform, '\' is the path separator, otherwise it is '/'.
+  FilePath RemoveFileName() const;
+
+  // Returns a copy of the FilePath with the case-insensitive extension removed.
+  // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
+  // FilePath("dir/file"). If a case-insensitive extension is not
+  // found, returns a copy of the original FilePath.
+  FilePath RemoveExtension(const char* extension) const;
+
+  // Creates directories so that path exists. Returns true if successful or if
+  // the directories already exist; returns false if unable to create
+  // directories for any reason. Will also return false if the FilePath does
+  // not represent a directory (that is, it doesn't end with a path separator).
+  bool CreateDirectoriesRecursively() const;
+
+  // Create the directory so that path exists. Returns true if successful or
+  // if the directory already exists; returns false if unable to create the
+  // directory for any reason, including if the parent directory does not
+  // exist. Not named "CreateDirectory" because that's a macro on Windows.
+  bool CreateFolder() const;
+
+  // Returns true if FilePath describes something in the file-system,
+  // either a file, directory, or whatever, and that something exists.
+  bool FileOrDirectoryExists() const;
+
+  // Returns true if pathname describes a directory in the file-system
+  // that exists.
+  bool DirectoryExists() const;
+
+  // Returns true if FilePath ends with a path separator, which indicates that
+  // it is intended to represent a directory. Returns false otherwise.
+  // This does NOT check that a directory (or file) actually exists.
+  bool IsDirectory() const;
+
+  // Returns true if pathname describes a root directory. (Windows has one
+  // root directory per disk drive.)
+  bool IsRootDirectory() const;
+
+  // Returns true if pathname describes an absolute path.
+  bool IsAbsolutePath() const;
+
+ private:
+  // Replaces multiple consecutive separators with a single separator.
+  // For example, "bar///foo" becomes "bar/foo". Does not eliminate other
+  // redundancies that might be in a pathname involving "." or "..".
+  //
+  // A pathname with multiple consecutive separators may occur either through
+  // user error or as a result of some scripts or APIs that generate a pathname
+  // with a trailing separator. On other platforms the same API or script
+  // may NOT generate a pathname with a trailing "/". Then elsewhere that
+  // pathname may have another "/" and pathname components added to it,
+  // without checking for the separator already being there.
+  // The script language and operating system may allow paths like "foo//bar"
+  // but some of the functions in FilePath will not handle that correctly. In
+  // particular, RemoveTrailingPathSeparator() only removes one separator, and
+  // it is called in CreateDirectoriesRecursively() assuming that it will change
+  // a pathname from directory syntax (trailing separator) to filename syntax.
+  //
+  // On Windows this method also replaces the alternate path separator '/' with
+  // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
+  // "bar\\foo".
+
+  void Normalize();
+
+  // Returns a pointer to the last occurence of a valid path separator in
+  // the FilePath. On Windows, for example, both '/' and '\' are valid path
+  // separators. Returns NULL if no path separator was found.
+  const char* FindLastPathSeparator() const;
+
+  String pathname_;
+};  // class FilePath
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
+// This file was GENERATED by command:
+//     pump.py gtest-type-util.h.pump
+// DO NOT EDIT BY HAND!!!
+
+// Copyright 2008 Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Type utilities needed for implementing typed and type-parameterized
+// tests.  This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!
+//
+// Currently we support at most 50 types in a list, and at most 50
+// type-parameterized tests in one type-parameterized test case.
+// Please contact googletestframework@googlegroups.com if you need
+// more.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
+
+
+// #ifdef __GNUC__ is too general here.  It is possible to use gcc without using
+// libstdc++ (which is where cxxabi.h comes from).
+# ifdef __GLIBCXX__
+#  include <cxxabi.h>
+# elif defined(__HP_aCC)
+#  include <acxx_demangle.h>
+# endif  // __GLIBCXX__
+
+namespace testing {
+namespace internal {
+
+// GetTypeName<T>() returns a human-readable name of type T.
+// NB: This function is also used in Google Mock, so don't move it inside of
+// the typed-test-only section below.
+template <typename T>
+String GetTypeName() {
+# if GTEST_HAS_RTTI
+
+  const char* const name = typeid(T).name();
+#  if defined(__GLIBCXX__) || defined(__HP_aCC)
+  int status = 0;
+  // gcc's implementation of typeid(T).name() mangles the type name,
+  // so we have to demangle it.
+#   ifdef __GLIBCXX__
+  using abi::__cxa_demangle;
+#   endif // __GLIBCXX__
+  char* const readable_name = __cxa_demangle(name, 0, 0, &status);
+  const String name_str(status == 0 ? readable_name : name);
+  free(readable_name);
+  return name_str;
+#  else
+  return name;
+#  endif  // __GLIBCXX__ || __HP_aCC
+
+# else
+
+  return "<type>";
+
+# endif  // GTEST_HAS_RTTI
+}
+
+#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
+
+// AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same
+// type.  This can be used as a compile-time assertion to ensure that
+// two types are equal.
+
+template <typename T1, typename T2>
+struct AssertTypeEq;
+
+template <typename T>
+struct AssertTypeEq<T, T> {
+  typedef bool type;
+};
+
+// A unique type used as the default value for the arguments of class
+// template Types.  This allows us to simulate variadic templates
+// (e.g. Types<int>, Type<int, double>, and etc), which C++ doesn't
+// support directly.
+struct None {};
+
+// The following family of struct and struct templates are used to
+// represent type lists.  In particular, TypesN<T1, T2, ..., TN>
+// represents a type list with N types (T1, T2, ..., and TN) in it.
+// Except for Types0, every struct in the family has two member types:
+// Head for the first type in the list, and Tail for the rest of the
+// list.
+
+// The empty type list.
+struct Types0 {};
+
+// Type lists of length 1, 2, 3, and so on.
+
+template <typename T1>
+struct Types1 {
+  typedef T1 Head;
+  typedef Types0 Tail;
+};
+template <typename T1, typename T2>
+struct Types2 {
+  typedef T1 Head;
+  typedef Types1<T2> Tail;
+};
+
+template <typename T1, typename T2, typename T3>
+struct Types3 {
+  typedef T1 Head;
+  typedef Types2<T2, T3> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4>
+struct Types4 {
+  typedef T1 Head;
+  typedef Types3<T2, T3, T4> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+struct Types5 {
+  typedef T1 Head;
+  typedef Types4<T2, T3, T4, T5> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+struct Types6 {
+  typedef T1 Head;
+  typedef Types5<T2, T3, T4, T5, T6> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+struct Types7 {
+  typedef T1 Head;
+  typedef Types6<T2, T3, T4, T5, T6, T7> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+struct Types8 {
+  typedef T1 Head;
+  typedef Types7<T2, T3, T4, T5, T6, T7, T8> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+struct Types9 {
+  typedef T1 Head;
+  typedef Types8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+struct Types10 {
+  typedef T1 Head;
+  typedef Types9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11>
+struct Types11 {
+  typedef T1 Head;
+  typedef Types10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12>
+struct Types12 {
+  typedef T1 Head;
+  typedef Types11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13>
+struct Types13 {
+  typedef T1 Head;
+  typedef Types12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14>
+struct Types14 {
+  typedef T1 Head;
+  typedef Types13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15>
+struct Types15 {
+  typedef T1 Head;
+  typedef Types14<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16>
+struct Types16 {
+  typedef T1 Head;
+  typedef Types15<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17>
+struct Types17 {
+  typedef T1 Head;
+  typedef Types16<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18>
+struct Types18 {
+  typedef T1 Head;
+  typedef Types17<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19>
+struct Types19 {
+  typedef T1 Head;
+  typedef Types18<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20>
+struct Types20 {
+  typedef T1 Head;
+  typedef Types19<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21>
+struct Types21 {
+  typedef T1 Head;
+  typedef Types20<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22>
+struct Types22 {
+  typedef T1 Head;
+  typedef Types21<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23>
+struct Types23 {
+  typedef T1 Head;
+  typedef Types22<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24>
+struct Types24 {
+  typedef T1 Head;
+  typedef Types23<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25>
+struct Types25 {
+  typedef T1 Head;
+  typedef Types24<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26>
+struct Types26 {
+  typedef T1 Head;
+  typedef Types25<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27>
+struct Types27 {
+  typedef T1 Head;
+  typedef Types26<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28>
+struct Types28 {
+  typedef T1 Head;
+  typedef Types27<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29>
+struct Types29 {
+  typedef T1 Head;
+  typedef Types28<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30>
+struct Types30 {
+  typedef T1 Head;
+  typedef Types29<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31>
+struct Types31 {
+  typedef T1 Head;
+  typedef Types30<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32>
+struct Types32 {
+  typedef T1 Head;
+  typedef Types31<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33>
+struct Types33 {
+  typedef T1 Head;
+  typedef Types32<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34>
+struct Types34 {
+  typedef T1 Head;
+  typedef Types33<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35>
+struct Types35 {
+  typedef T1 Head;
+  typedef Types34<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36>
+struct Types36 {
+  typedef T1 Head;
+  typedef Types35<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37>
+struct Types37 {
+  typedef T1 Head;
+  typedef Types36<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38>
+struct Types38 {
+  typedef T1 Head;
+  typedef Types37<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39>
+struct Types39 {
+  typedef T1 Head;
+  typedef Types38<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40>
+struct Types40 {
+  typedef T1 Head;
+  typedef Types39<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41>
+struct Types41 {
+  typedef T1 Head;
+  typedef Types40<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42>
+struct Types42 {
+  typedef T1 Head;
+  typedef Types41<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43>
+struct Types43 {
+  typedef T1 Head;
+  typedef Types42<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44>
+struct Types44 {
+  typedef T1 Head;
+  typedef Types43<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45>
+struct Types45 {
+  typedef T1 Head;
+  typedef Types44<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46>
+struct Types46 {
+  typedef T1 Head;
+  typedef Types45<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45, T46> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47>
+struct Types47 {
+  typedef T1 Head;
+  typedef Types46<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45, T46, T47> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48>
+struct Types48 {
+  typedef T1 Head;
+  typedef Types47<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45, T46, T47, T48> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49>
+struct Types49 {
+  typedef T1 Head;
+  typedef Types48<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45, T46, T47, T48, T49> Tail;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49, typename T50>
+struct Types50 {
+  typedef T1 Head;
+  typedef Types49<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+      T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+      T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+      T44, T45, T46, T47, T48, T49, T50> Tail;
+};
+
+
+}  // namespace internal
+
+// We don't want to require the users to write TypesN<...> directly,
+// as that would require them to count the length.  Types<...> is much
+// easier to write, but generates horrible messages when there is a
+// compiler error, as gcc insists on printing out each template
+// argument, even if it has the default value (this means Types<int>
+// will appear as Types<int, None, None, ..., None> in the compiler
+// errors).
+//
+// Our solution is to combine the best part of the two approaches: a
+// user would write Types<T1, ..., TN>, and Google Test will translate
+// that to TypesN<T1, ..., TN> internally to make error messages
+// readable.  The translation is done by the 'type' member of the
+// Types template.
+template <typename T1 = internal::None, typename T2 = internal::None,
+    typename T3 = internal::None, typename T4 = internal::None,
+    typename T5 = internal::None, typename T6 = internal::None,
+    typename T7 = internal::None, typename T8 = internal::None,
+    typename T9 = internal::None, typename T10 = internal::None,
+    typename T11 = internal::None, typename T12 = internal::None,
+    typename T13 = internal::None, typename T14 = internal::None,
+    typename T15 = internal::None, typename T16 = internal::None,
+    typename T17 = internal::None, typename T18 = internal::None,
+    typename T19 = internal::None, typename T20 = internal::None,
+    typename T21 = internal::None, typename T22 = internal::None,
+    typename T23 = internal::None, typename T24 = internal::None,
+    typename T25 = internal::None, typename T26 = internal::None,
+    typename T27 = internal::None, typename T28 = internal::None,
+    typename T29 = internal::None, typename T30 = internal::None,
+    typename T31 = internal::None, typename T32 = internal::None,
+    typename T33 = internal::None, typename T34 = internal::None,
+    typename T35 = internal::None, typename T36 = internal::None,
+    typename T37 = internal::None, typename T38 = internal::None,
+    typename T39 = internal::None, typename T40 = internal::None,
+    typename T41 = internal::None, typename T42 = internal::None,
+    typename T43 = internal::None, typename T44 = internal::None,
+    typename T45 = internal::None, typename T46 = internal::None,
+    typename T47 = internal::None, typename T48 = internal::None,
+    typename T49 = internal::None, typename T50 = internal::None>
+struct Types {
+  typedef internal::Types50<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46, T47, T48, T49, T50> type;
+};
+
+template <>
+struct Types<internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types0 type;
+};
+template <typename T1>
+struct Types<T1, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types1<T1> type;
+};
+template <typename T1, typename T2>
+struct Types<T1, T2, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types2<T1, T2> type;
+};
+template <typename T1, typename T2, typename T3>
+struct Types<T1, T2, T3, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types3<T1, T2, T3> type;
+};
+template <typename T1, typename T2, typename T3, typename T4>
+struct Types<T1, T2, T3, T4, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types4<T1, T2, T3, T4> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+struct Types<T1, T2, T3, T4, T5, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types5<T1, T2, T3, T4, T5> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+struct Types<T1, T2, T3, T4, T5, T6, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types6<T1, T2, T3, T4, T5, T6> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+struct Types<T1, T2, T3, T4, T5, T6, T7, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types7<T1, T2, T3, T4, T5, T6, T7> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types8<T1, T2, T3, T4, T5, T6, T7, T8> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types9<T1, T2, T3, T4, T5, T6, T7, T8, T9> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types23<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types24<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types25<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types26<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types27<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types28<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types29<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types30<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types31<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types32<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types33<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types34<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types35<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types36<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types37<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types38<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types39<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types40<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types41<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, internal::None,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types42<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None, internal::None> {
+  typedef internal::Types43<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None, internal::None> {
+  typedef internal::Types44<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45,
+    internal::None, internal::None, internal::None, internal::None,
+    internal::None> {
+  typedef internal::Types45<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45,
+    T46, internal::None, internal::None, internal::None, internal::None> {
+  typedef internal::Types46<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45,
+    T46, T47, internal::None, internal::None, internal::None> {
+  typedef internal::Types47<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46, T47> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45,
+    T46, T47, T48, internal::None, internal::None> {
+  typedef internal::Types48<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46, T47, T48> type;
+};
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49>
+struct Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15,
+    T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29, T30,
+    T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44, T45,
+    T46, T47, T48, T49, internal::None> {
+  typedef internal::Types49<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46, T47, T48, T49> type;
+};
+
+namespace internal {
+
+# define GTEST_TEMPLATE_ template <typename T> class
+
+// The template "selector" struct TemplateSel<Tmpl> is used to
+// represent Tmpl, which must be a class template with one type
+// parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
+// as the type Tmpl<T>.  This allows us to actually instantiate the
+// template "selected" by TemplateSel<Tmpl>.
+//
+// This trick is necessary for simulating typedef for class templates,
+// which C++ doesn't support directly.
+template <GTEST_TEMPLATE_ Tmpl>
+struct TemplateSel {
+  template <typename T>
+  struct Bind {
+    typedef Tmpl<T> type;
+  };
+};
+
+# define GTEST_BIND_(TmplSel, T) \
+  TmplSel::template Bind<T>::type
+
+// A unique struct template used as the default value for the
+// arguments of class template Templates.  This allows us to simulate
+// variadic templates (e.g. Templates<int>, Templates<int, double>,
+// and etc), which C++ doesn't support directly.
+template <typename T>
+struct NoneT {};
+
+// The following family of struct and struct templates are used to
+// represent template lists.  In particular, TemplatesN<T1, T2, ...,
+// TN> represents a list of N templates (T1, T2, ..., and TN).  Except
+// for Templates0, every struct in the family has two member types:
+// Head for the selector of the first template in the list, and Tail
+// for the rest of the list.
+
+// The empty template list.
+struct Templates0 {};
+
+// Template lists of length 1, 2, 3, and so on.
+
+template <GTEST_TEMPLATE_ T1>
+struct Templates1 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates0 Tail;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2>
+struct Templates2 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates1<T2> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3>
+struct Templates3 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates2<T2, T3> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4>
+struct Templates4 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates3<T2, T3, T4> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5>
+struct Templates5 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates4<T2, T3, T4, T5> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6>
+struct Templates6 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates5<T2, T3, T4, T5, T6> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7>
+struct Templates7 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates6<T2, T3, T4, T5, T6, T7> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8>
+struct Templates8 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates7<T2, T3, T4, T5, T6, T7, T8> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9>
+struct Templates9 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates8<T2, T3, T4, T5, T6, T7, T8, T9> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10>
+struct Templates10 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates9<T2, T3, T4, T5, T6, T7, T8, T9, T10> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11>
+struct Templates11 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates10<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12>
+struct Templates12 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates11<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13>
+struct Templates13 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates12<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14>
+struct Templates14 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates13<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15>
+struct Templates15 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates14<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16>
+struct Templates16 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates15<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17>
+struct Templates17 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates16<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18>
+struct Templates18 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates17<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19>
+struct Templates19 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates18<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20>
+struct Templates20 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates19<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21>
+struct Templates21 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates20<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22>
+struct Templates22 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates21<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23>
+struct Templates23 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates22<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24>
+struct Templates24 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates23<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25>
+struct Templates25 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates24<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26>
+struct Templates26 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates25<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27>
+struct Templates27 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates26<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28>
+struct Templates28 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates27<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29>
+struct Templates29 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates28<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30>
+struct Templates30 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates29<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31>
+struct Templates31 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates30<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32>
+struct Templates32 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates31<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33>
+struct Templates33 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates32<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34>
+struct Templates34 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates33<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35>
+struct Templates35 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates34<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36>
+struct Templates36 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates35<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37>
+struct Templates37 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates36<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38>
+struct Templates38 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates37<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39>
+struct Templates39 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates38<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40>
+struct Templates40 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates39<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41>
+struct Templates41 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates40<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42>
+struct Templates42 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates41<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43>
+struct Templates43 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates42<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44>
+struct Templates44 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates43<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45>
+struct Templates45 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates44<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46>
+struct Templates46 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates45<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45, T46> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47>
+struct Templates47 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates46<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45, T46, T47> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47, GTEST_TEMPLATE_ T48>
+struct Templates48 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates47<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45, T46, T47, T48> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47, GTEST_TEMPLATE_ T48,
+    GTEST_TEMPLATE_ T49>
+struct Templates49 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates48<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45, T46, T47, T48, T49> Tail;
+};
+
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47, GTEST_TEMPLATE_ T48,
+    GTEST_TEMPLATE_ T49, GTEST_TEMPLATE_ T50>
+struct Templates50 {
+  typedef TemplateSel<T1> Head;
+  typedef Templates49<T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+      T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+      T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+      T43, T44, T45, T46, T47, T48, T49, T50> Tail;
+};
+
+
+// We don't want to require the users to write TemplatesN<...> directly,
+// as that would require them to count the length.  Templates<...> is much
+// easier to write, but generates horrible messages when there is a
+// compiler error, as gcc insists on printing out each template
+// argument, even if it has the default value (this means Templates<list>
+// will appear as Templates<list, NoneT, NoneT, ..., NoneT> in the compiler
+// errors).
+//
+// Our solution is to combine the best part of the two approaches: a
+// user would write Templates<T1, ..., TN>, and Google Test will translate
+// that to TemplatesN<T1, ..., TN> internally to make error messages
+// readable.  The translation is done by the 'type' member of the
+// Templates template.
+template <GTEST_TEMPLATE_ T1 = NoneT, GTEST_TEMPLATE_ T2 = NoneT,
+    GTEST_TEMPLATE_ T3 = NoneT, GTEST_TEMPLATE_ T4 = NoneT,
+    GTEST_TEMPLATE_ T5 = NoneT, GTEST_TEMPLATE_ T6 = NoneT,
+    GTEST_TEMPLATE_ T7 = NoneT, GTEST_TEMPLATE_ T8 = NoneT,
+    GTEST_TEMPLATE_ T9 = NoneT, GTEST_TEMPLATE_ T10 = NoneT,
+    GTEST_TEMPLATE_ T11 = NoneT, GTEST_TEMPLATE_ T12 = NoneT,
+    GTEST_TEMPLATE_ T13 = NoneT, GTEST_TEMPLATE_ T14 = NoneT,
+    GTEST_TEMPLATE_ T15 = NoneT, GTEST_TEMPLATE_ T16 = NoneT,
+    GTEST_TEMPLATE_ T17 = NoneT, GTEST_TEMPLATE_ T18 = NoneT,
+    GTEST_TEMPLATE_ T19 = NoneT, GTEST_TEMPLATE_ T20 = NoneT,
+    GTEST_TEMPLATE_ T21 = NoneT, GTEST_TEMPLATE_ T22 = NoneT,
+    GTEST_TEMPLATE_ T23 = NoneT, GTEST_TEMPLATE_ T24 = NoneT,
+    GTEST_TEMPLATE_ T25 = NoneT, GTEST_TEMPLATE_ T26 = NoneT,
+    GTEST_TEMPLATE_ T27 = NoneT, GTEST_TEMPLATE_ T28 = NoneT,
+    GTEST_TEMPLATE_ T29 = NoneT, GTEST_TEMPLATE_ T30 = NoneT,
+    GTEST_TEMPLATE_ T31 = NoneT, GTEST_TEMPLATE_ T32 = NoneT,
+    GTEST_TEMPLATE_ T33 = NoneT, GTEST_TEMPLATE_ T34 = NoneT,
+    GTEST_TEMPLATE_ T35 = NoneT, GTEST_TEMPLATE_ T36 = NoneT,
+    GTEST_TEMPLATE_ T37 = NoneT, GTEST_TEMPLATE_ T38 = NoneT,
+    GTEST_TEMPLATE_ T39 = NoneT, GTEST_TEMPLATE_ T40 = NoneT,
+    GTEST_TEMPLATE_ T41 = NoneT, GTEST_TEMPLATE_ T42 = NoneT,
+    GTEST_TEMPLATE_ T43 = NoneT, GTEST_TEMPLATE_ T44 = NoneT,
+    GTEST_TEMPLATE_ T45 = NoneT, GTEST_TEMPLATE_ T46 = NoneT,
+    GTEST_TEMPLATE_ T47 = NoneT, GTEST_TEMPLATE_ T48 = NoneT,
+    GTEST_TEMPLATE_ T49 = NoneT, GTEST_TEMPLATE_ T50 = NoneT>
+struct Templates {
+  typedef Templates50<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45, T46, T47, T48, T49, T50> type;
+};
+
+template <>
+struct Templates<NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT> {
+  typedef Templates0 type;
+};
+template <GTEST_TEMPLATE_ T1>
+struct Templates<T1, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT> {
+  typedef Templates1<T1> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2>
+struct Templates<T1, T2, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT> {
+  typedef Templates2<T1, T2> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3>
+struct Templates<T1, T2, T3, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates3<T1, T2, T3> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4>
+struct Templates<T1, T2, T3, T4, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates4<T1, T2, T3, T4> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5>
+struct Templates<T1, T2, T3, T4, T5, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates5<T1, T2, T3, T4, T5> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6>
+struct Templates<T1, T2, T3, T4, T5, T6, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates6<T1, T2, T3, T4, T5, T6> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates7<T1, T2, T3, T4, T5, T6, T7> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates8<T1, T2, T3, T4, T5, T6, T7, T8> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates9<T1, T2, T3, T4, T5, T6, T7, T8, T9> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT> {
+  typedef Templates22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT> {
+  typedef Templates23<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT> {
+  typedef Templates24<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT> {
+  typedef Templates25<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT> {
+  typedef Templates26<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT> {
+  typedef Templates27<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT> {
+  typedef Templates28<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT> {
+  typedef Templates29<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates30<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates31<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates32<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates33<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates34<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates35<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates36<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, NoneT, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates37<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, NoneT, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates38<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates39<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, NoneT, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates40<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, NoneT, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates41<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, NoneT,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates42<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates43<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    NoneT, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates44<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    T45, NoneT, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates45<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    T45, T46, NoneT, NoneT, NoneT, NoneT> {
+  typedef Templates46<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45, T46> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    T45, T46, T47, NoneT, NoneT, NoneT> {
+  typedef Templates47<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45, T46, T47> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47, GTEST_TEMPLATE_ T48>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    T45, T46, T47, T48, NoneT, NoneT> {
+  typedef Templates48<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45, T46, T47, T48> type;
+};
+template <GTEST_TEMPLATE_ T1, GTEST_TEMPLATE_ T2, GTEST_TEMPLATE_ T3,
+    GTEST_TEMPLATE_ T4, GTEST_TEMPLATE_ T5, GTEST_TEMPLATE_ T6,
+    GTEST_TEMPLATE_ T7, GTEST_TEMPLATE_ T8, GTEST_TEMPLATE_ T9,
+    GTEST_TEMPLATE_ T10, GTEST_TEMPLATE_ T11, GTEST_TEMPLATE_ T12,
+    GTEST_TEMPLATE_ T13, GTEST_TEMPLATE_ T14, GTEST_TEMPLATE_ T15,
+    GTEST_TEMPLATE_ T16, GTEST_TEMPLATE_ T17, GTEST_TEMPLATE_ T18,
+    GTEST_TEMPLATE_ T19, GTEST_TEMPLATE_ T20, GTEST_TEMPLATE_ T21,
+    GTEST_TEMPLATE_ T22, GTEST_TEMPLATE_ T23, GTEST_TEMPLATE_ T24,
+    GTEST_TEMPLATE_ T25, GTEST_TEMPLATE_ T26, GTEST_TEMPLATE_ T27,
+    GTEST_TEMPLATE_ T28, GTEST_TEMPLATE_ T29, GTEST_TEMPLATE_ T30,
+    GTEST_TEMPLATE_ T31, GTEST_TEMPLATE_ T32, GTEST_TEMPLATE_ T33,
+    GTEST_TEMPLATE_ T34, GTEST_TEMPLATE_ T35, GTEST_TEMPLATE_ T36,
+    GTEST_TEMPLATE_ T37, GTEST_TEMPLATE_ T38, GTEST_TEMPLATE_ T39,
+    GTEST_TEMPLATE_ T40, GTEST_TEMPLATE_ T41, GTEST_TEMPLATE_ T42,
+    GTEST_TEMPLATE_ T43, GTEST_TEMPLATE_ T44, GTEST_TEMPLATE_ T45,
+    GTEST_TEMPLATE_ T46, GTEST_TEMPLATE_ T47, GTEST_TEMPLATE_ T48,
+    GTEST_TEMPLATE_ T49>
+struct Templates<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14,
+    T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28, T29,
+    T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43, T44,
+    T45, T46, T47, T48, T49, NoneT> {
+  typedef Templates49<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+      T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+      T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+      T42, T43, T44, T45, T46, T47, T48, T49> type;
+};
+
+// The TypeList template makes it possible to use either a single type
+// or a Types<...> list in TYPED_TEST_CASE() and
+// INSTANTIATE_TYPED_TEST_CASE_P().
+
+template <typename T>
+struct TypeList { typedef Types1<T> type; };
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49, typename T50>
+struct TypeList<Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46, T47, T48, T49, T50> > {
+  typedef typename Types<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+      T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+      T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+      T41, T42, T43, T44, T45, T46, T47, T48, T49, T50>::type type;
+};
+
+#endif  // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
+
+// Due to C++ preprocessor weirdness, we need double indirection to
+// concatenate two tokens when one of them is __LINE__.  Writing
+//
+//   foo ## __LINE__
+//
+// will result in the token foo__LINE__, instead of foo followed by
+// the current line number.  For more details, see
+// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6
+#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
+#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
+
+// Google Test defines the testing::Message class to allow construction of
+// test messages via the << operator.  The idea is that anything
+// streamable to std::ostream can be streamed to a testing::Message.
+// This allows a user to use his own types in Google Test assertions by
+// overloading the << operator.
+//
+// util/gtl/stl_logging-inl.h overloads << for STL containers.  These
+// overloads cannot be defined in the std namespace, as that will be
+// undefined behavior.  Therefore, they are defined in the global
+// namespace instead.
+//
+// C++'s symbol lookup rule (i.e. Koenig lookup) says that these
+// overloads are visible in either the std namespace or the global
+// namespace, but not other namespaces, including the testing
+// namespace which Google Test's Message class is in.
+//
+// To allow STL containers (and other types that has a << operator
+// defined in the global namespace) to be used in Google Test assertions,
+// testing::Message must access the custom << operator from the global
+// namespace.  Hence this helper function.
+//
+// Note: Jeffrey Yasskin suggested an alternative fix by "using
+// ::operator<<;" in the definition of Message's operator<<.  That fix
+// doesn't require a helper function, but unfortunately doesn't
+// compile with MSVC.
+template <typename T>
+inline void GTestStreamToHelper(std::ostream* os, const T& val) {
+  *os << val;
+}
+
+class ProtocolMessage;
+namespace proto2 { class Message; }
+
+namespace testing {
+
+// Forward declarations.
+
+class AssertionResult;                 // Result of an assertion.
+class Message;                         // Represents a failure message.
+class Test;                            // Represents a test.
+class TestInfo;                        // Information about a test.
+class TestPartResult;                  // Result of a test part.
+class UnitTest;                        // A collection of test cases.
+
+template <typename T>
+::std::string PrintToString(const T& value);
+
+namespace internal {
+
+struct TraceInfo;                      // Information about a trace point.
+class ScopedTrace;                     // Implements scoped trace.
+class TestInfoImpl;                    // Opaque implementation of TestInfo
+class UnitTestImpl;                    // Opaque implementation of UnitTest
+
+// How many times InitGoogleTest() has been called.
+extern int g_init_gtest_count;
+
+// The text used in failure messages to indicate the start of the
+// stack trace.
+GTEST_API_ extern const char kStackTraceMarker[];
+
+// A secret type that Google Test users don't know about.  It has no
+// definition on purpose.  Therefore it's impossible to create a
+// Secret object, which is what we want.
+class Secret;
+
+// Two overloaded helpers for checking at compile time whether an
+// expression is a null pointer literal (i.e. NULL or any 0-valued
+// compile-time integral constant).  Their return values have
+// different sizes, so we can use sizeof() to test which version is
+// picked by the compiler.  These helpers have no implementations, as
+// we only need their signatures.
+//
+// Given IsNullLiteralHelper(x), the compiler will pick the first
+// version if x can be implicitly converted to Secret*, and pick the
+// second version otherwise.  Since Secret is a secret and incomplete
+// type, the only expression a user can write that has type Secret* is
+// a null pointer literal.  Therefore, we know that x is a null
+// pointer literal if and only if the first version is picked by the
+// compiler.
+char IsNullLiteralHelper(Secret* p);
+char (&IsNullLiteralHelper(...))[2];  // NOLINT
+
+// A compile-time bool constant that is true if and only if x is a
+// null pointer literal (i.e. NULL or any 0-valued compile-time
+// integral constant).
+#ifdef GTEST_ELLIPSIS_NEEDS_POD_
+// We lose support for NULL detection where the compiler doesn't like
+// passing non-POD classes through ellipsis (...).
+# define GTEST_IS_NULL_LITERAL_(x) false
+#else
+# define GTEST_IS_NULL_LITERAL_(x) \
+    (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
+#endif  // GTEST_ELLIPSIS_NEEDS_POD_
+
+// Appends the user-supplied message to the Google-Test-generated message.
+GTEST_API_ String AppendUserMessage(const String& gtest_msg,
+                                    const Message& user_msg);
+
+// A helper class for creating scoped traces in user programs.
+class GTEST_API_ ScopedTrace {
+ public:
+  // The c'tor pushes the given source file location and message onto
+  // a trace stack maintained by Google Test.
+  ScopedTrace(const char* file, int line, const Message& message);
+
+  // The d'tor pops the info pushed by the c'tor.
+  //
+  // Note that the d'tor is not virtual in order to be efficient.
+  // Don't inherit from ScopedTrace!
+  ~ScopedTrace();
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
+} GTEST_ATTRIBUTE_UNUSED_;  // A ScopedTrace object does its job in its
+                            // c'tor and d'tor.  Therefore it doesn't
+                            // need to be used otherwise.
+
+// Converts a streamable value to a String.  A NULL pointer is
+// converted to "(null)".  When the input value is a ::string,
+// ::std::string, ::wstring, or ::std::wstring object, each NUL
+// character in it is replaced with "\\0".
+// Declared here but defined in gtest.h, so that it has access
+// to the definition of the Message class, required by the ARM
+// compiler.
+template <typename T>
+String StreamableToString(const T& streamable);
+
+// The Symbian compiler has a bug that prevents it from selecting the
+// correct overload of FormatForComparisonFailureMessage (see below)
+// unless we pass the first argument by reference.  If we do that,
+// however, Visual Age C++ 10.1 generates a compiler error.  Therefore
+// we only apply the work-around for Symbian.
+#if defined(__SYMBIAN32__)
+# define GTEST_CREF_WORKAROUND_ const&
+#else
+# define GTEST_CREF_WORKAROUND_
+#endif
+
+// When this operand is a const char* or char*, if the other operand
+// is a ::std::string or ::string, we print this operand as a C string
+// rather than a pointer (we do the same for wide strings); otherwise
+// we print it as a pointer to be safe.
+
+// This internal macro is used to avoid duplicated code.
+#define GTEST_FORMAT_IMPL_(operand2_type, operand1_printer)\
+inline String FormatForComparisonFailureMessage(\
+    operand2_type::value_type* GTEST_CREF_WORKAROUND_ str, \
+    const operand2_type& /*operand2*/) {\
+  return operand1_printer(str);\
+}\
+inline String FormatForComparisonFailureMessage(\
+    const operand2_type::value_type* GTEST_CREF_WORKAROUND_ str, \
+    const operand2_type& /*operand2*/) {\
+  return operand1_printer(str);\
+}
+
+GTEST_FORMAT_IMPL_(::std::string, String::ShowCStringQuoted)
+#if GTEST_HAS_STD_WSTRING
+GTEST_FORMAT_IMPL_(::std::wstring, String::ShowWideCStringQuoted)
+#endif  // GTEST_HAS_STD_WSTRING
+
+#if GTEST_HAS_GLOBAL_STRING
+GTEST_FORMAT_IMPL_(::string, String::ShowCStringQuoted)
+#endif  // GTEST_HAS_GLOBAL_STRING
+#if GTEST_HAS_GLOBAL_WSTRING
+GTEST_FORMAT_IMPL_(::wstring, String::ShowWideCStringQuoted)
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+#undef GTEST_FORMAT_IMPL_
+
+// The next four overloads handle the case where the operand being
+// printed is a char/wchar_t pointer and the other operand is not a
+// string/wstring object.  In such cases, we just print the operand as
+// a pointer to be safe.
+#define GTEST_FORMAT_CHAR_PTR_IMPL_(CharType)                       \
+  template <typename T>                                             \
+  String FormatForComparisonFailureMessage(CharType* GTEST_CREF_WORKAROUND_ p, \
+                                           const T&) { \
+    return PrintToString(static_cast<const void*>(p));              \
+  }
+
+GTEST_FORMAT_CHAR_PTR_IMPL_(char)
+GTEST_FORMAT_CHAR_PTR_IMPL_(const char)
+GTEST_FORMAT_CHAR_PTR_IMPL_(wchar_t)
+GTEST_FORMAT_CHAR_PTR_IMPL_(const wchar_t)
+
+#undef GTEST_FORMAT_CHAR_PTR_IMPL_
+
+// Constructs and returns the message for an equality assertion
+// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
+//
+// The first four parameters are the expressions used in the assertion
+// and their values, as strings.  For example, for ASSERT_EQ(foo, bar)
+// where foo is 5 and bar is 6, we have:
+//
+//   expected_expression: "foo"
+//   actual_expression:   "bar"
+//   expected_value:      "5"
+//   actual_value:        "6"
+//
+// The ignoring_case parameter is true iff the assertion is a
+// *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
+// be inserted into the message.
+GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
+                                     const char* actual_expression,
+                                     const String& expected_value,
+                                     const String& actual_value,
+                                     bool ignoring_case);
+
+// Constructs a failure message for Boolean assertions such as EXPECT_TRUE.
+GTEST_API_ String GetBoolAssertionFailureMessage(
+    const AssertionResult& assertion_result,
+    const char* expression_text,
+    const char* actual_predicate_value,
+    const char* expected_predicate_value);
+
+// This template class represents an IEEE floating-point number
+// (either single-precision or double-precision, depending on the
+// template parameters).
+//
+// The purpose of this class is to do more sophisticated number
+// comparison.  (Due to round-off error, etc, it's very unlikely that
+// two floating-points will be equal exactly.  Hence a naive
+// comparison by the == operation often doesn't work.)
+//
+// Format of IEEE floating-point:
+//
+//   The most-significant bit being the leftmost, an IEEE
+//   floating-point looks like
+//
+//     sign_bit exponent_bits fraction_bits
+//
+//   Here, sign_bit is a single bit that designates the sign of the
+//   number.
+//
+//   For float, there are 8 exponent bits and 23 fraction bits.
+//
+//   For double, there are 11 exponent bits and 52 fraction bits.
+//
+//   More details can be found at
+//   http://en.wikipedia.org/wiki/IEEE_floating-point_standard.
+//
+// Template parameter:
+//
+//   RawType: the raw floating-point type (either float or double)
+template <typename RawType>
+class FloatingPoint {
+ public:
+  // Defines the unsigned integer type that has the same size as the
+  // floating point number.
+  typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
+
+  // Constants.
+
+  // # of bits in a number.
+  static const size_t kBitCount = 8*sizeof(RawType);
+
+  // # of fraction bits in a number.
+  static const size_t kFractionBitCount =
+    std::numeric_limits<RawType>::digits - 1;
+
+  // # of exponent bits in a number.
+  static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount;
+
+  // The mask for the sign bit.
+  static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1);
+
+  // The mask for the fraction bits.
+  static const Bits kFractionBitMask =
+    ~static_cast<Bits>(0) >> (kExponentBitCount + 1);
+
+  // The mask for the exponent bits.
+  static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask);
+
+  // How many ULP's (Units in the Last Place) we want to tolerate when
+  // comparing two numbers.  The larger the value, the more error we
+  // allow.  A 0 value means that two numbers must be exactly the same
+  // to be considered equal.
+  //
+  // The maximum error of a single floating-point operation is 0.5
+  // units in the last place.  On Intel CPU's, all floating-point
+  // calculations are done with 80-bit precision, while double has 64
+  // bits.  Therefore, 4 should be enough for ordinary use.
+  //
+  // See the following article for more details on ULP:
+  // http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm.
+  static const size_t kMaxUlps = 4;
+
+  // Constructs a FloatingPoint from a raw floating-point number.
+  //
+  // On an Intel CPU, passing a non-normalized NAN (Not a Number)
+  // around may change its bits, although the new value is guaranteed
+  // to be also a NAN.  Therefore, don't expect this constructor to
+  // preserve the bits in x when x is a NAN.
+  explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
+
+  // Static methods
+
+  // Reinterprets a bit pattern as a floating-point number.
+  //
+  // This function is needed to test the AlmostEquals() method.
+  static RawType ReinterpretBits(const Bits bits) {
+    FloatingPoint fp(0);
+    fp.u_.bits_ = bits;
+    return fp.u_.value_;
+  }
+
+  // Returns the floating-point number that represent positive infinity.
+  static RawType Infinity() {
+    return ReinterpretBits(kExponentBitMask);
+  }
+
+  // Non-static methods
+
+  // Returns the bits that represents this number.
+  const Bits &bits() const { return u_.bits_; }
+
+  // Returns the exponent bits of this number.
+  Bits exponent_bits() const { return kExponentBitMask & u_.bits_; }
+
+  // Returns the fraction bits of this number.
+  Bits fraction_bits() const { return kFractionBitMask & u_.bits_; }
+
+  // Returns the sign bit of this number.
+  Bits sign_bit() const { return kSignBitMask & u_.bits_; }
+
+  // Returns true iff this is NAN (not a number).
+  bool is_nan() const {
+    // It's a NAN if the exponent bits are all ones and the fraction
+    // bits are not entirely zeros.
+    return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0);
+  }
+
+  // Returns true iff this number is at most kMaxUlps ULP's away from
+  // rhs.  In particular, this function:
+  //
+  //   - returns false if either number is (or both are) NAN.
+  //   - treats really large numbers as almost equal to infinity.
+  //   - thinks +0.0 and -0.0 are 0 DLP's apart.
+  bool AlmostEquals(const FloatingPoint& rhs) const {
+    // The IEEE standard says that any comparison operation involving
+    // a NAN must return false.
+    if (is_nan() || rhs.is_nan()) return false;
+
+    return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
+        <= kMaxUlps;
+  }
+
+ private:
+  // The data type used to store the actual floating-point number.
+  union FloatingPointUnion {
+    RawType value_;  // The raw floating-point number.
+    Bits bits_;      // The bits that represent the number.
+  };
+
+  // Converts an integer from the sign-and-magnitude representation to
+  // the biased representation.  More precisely, let N be 2 to the
+  // power of (kBitCount - 1), an integer x is represented by the
+  // unsigned number x + N.
+  //
+  // For instance,
+  //
+  //   -N + 1 (the most negative number representable using
+  //          sign-and-magnitude) is represented by 1;
+  //   0      is represented by N; and
+  //   N - 1  (the biggest number representable using
+  //          sign-and-magnitude) is represented by 2N - 1.
+  //
+  // Read http://en.wikipedia.org/wiki/Signed_number_representations
+  // for more details on signed number representations.
+  static Bits SignAndMagnitudeToBiased(const Bits &sam) {
+    if (kSignBitMask & sam) {
+      // sam represents a negative number.
+      return ~sam + 1;
+    } else {
+      // sam represents a positive number.
+      return kSignBitMask | sam;
+    }
+  }
+
+  // Given two numbers in the sign-and-magnitude representation,
+  // returns the distance between them as an unsigned number.
+  static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1,
+                                                     const Bits &sam2) {
+    const Bits biased1 = SignAndMagnitudeToBiased(sam1);
+    const Bits biased2 = SignAndMagnitudeToBiased(sam2);
+    return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
+  }
+
+  FloatingPointUnion u_;
+};
+
+// Typedefs the instances of the FloatingPoint template class that we
+// care to use.
+typedef FloatingPoint<float> Float;
+typedef FloatingPoint<double> Double;
+
+// In order to catch the mistake of putting tests that use different
+// test fixture classes in the same test case, we need to assign
+// unique IDs to fixture classes and compare them.  The TypeId type is
+// used to hold such IDs.  The user should treat TypeId as an opaque
+// type: the only operation allowed on TypeId values is to compare
+// them for equality using the == operator.
+typedef const void* TypeId;
+
+template <typename T>
+class TypeIdHelper {
+ public:
+  // dummy_ must not have a const type.  Otherwise an overly eager
+  // compiler (e.g. MSVC 7.1 & 8.0) may try to merge
+  // TypeIdHelper<T>::dummy_ for different Ts as an "optimization".
+  static bool dummy_;
+};
+
+template <typename T>
+bool TypeIdHelper<T>::dummy_ = false;
+
+// GetTypeId<T>() returns the ID of type T.  Different values will be
+// returned for different types.  Calling the function twice with the
+// same type argument is guaranteed to return the same ID.
+template <typename T>
+TypeId GetTypeId() {
+  // The compiler is required to allocate a different
+  // TypeIdHelper<T>::dummy_ variable for each T used to instantiate
+  // the template.  Therefore, the address of dummy_ is guaranteed to
+  // be unique.
+  return &(TypeIdHelper<T>::dummy_);
+}
+
+// Returns the type ID of ::testing::Test.  Always call this instead
+// of GetTypeId< ::testing::Test>() to get the type ID of
+// ::testing::Test, as the latter may give the wrong result due to a
+// suspected linker bug when compiling Google Test as a Mac OS X
+// framework.
+GTEST_API_ TypeId GetTestTypeId();
+
+// Defines the abstract factory interface that creates instances
+// of a Test object.
+class TestFactoryBase {
+ public:
+  virtual ~TestFactoryBase() {}
+
+  // Creates a test instance to run. The instance is both created and destroyed
+  // within TestInfoImpl::Run()
+  virtual Test* CreateTest() = 0;
+
+ protected:
+  TestFactoryBase() {}
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase);
+};
+
+// This class provides implementation of TeastFactoryBase interface.
+// It is used in TEST and TEST_F macros.
+template <class TestClass>
+class TestFactoryImpl : public TestFactoryBase {
+ public:
+  virtual Test* CreateTest() { return new TestClass; }
+};
+
+#if GTEST_OS_WINDOWS
+
+// Predicate-formatters for implementing the HRESULT checking macros
+// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}
+// We pass a long instead of HRESULT to avoid causing an
+// include dependency for the HRESULT type.
+GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr,
+                                            long hr);  // NOLINT
+GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
+                                            long hr);  // NOLINT
+
+#endif  // GTEST_OS_WINDOWS
+
+// Types of SetUpTestCase() and TearDownTestCase() functions.
+typedef void (*SetUpTestCaseFunc)();
+typedef void (*TearDownTestCaseFunc)();
+
+// Creates a new TestInfo object and registers it with Google Test;
+// returns the created object.
+//
+// Arguments:
+//
+//   test_case_name:   name of the test case
+//   name:             name of the test
+//   type_param        the name of the test's type parameter, or NULL if
+//                     this is not  a typed or a type-parameterized test.
+//   value_param       text representation of the test's value parameter,
+//                     or NULL if this is not a type-parameterized test.
+//   fixture_class_id: ID of the test fixture class
+//   set_up_tc:        pointer to the function that sets up the test case
+//   tear_down_tc:     pointer to the function that tears down the test case
+//   factory:          pointer to the factory that creates a test object.
+//                     The newly created TestInfo instance will assume
+//                     ownership of the factory object.
+GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
+    const char* test_case_name, const char* name,
+    const char* type_param,
+    const char* value_param,
+    TypeId fixture_class_id,
+    SetUpTestCaseFunc set_up_tc,
+    TearDownTestCaseFunc tear_down_tc,
+    TestFactoryBase* factory);
+
+// If *pstr starts with the given prefix, modifies *pstr to be right
+// past the prefix and returns true; otherwise leaves *pstr unchanged
+// and returns false.  None of pstr, *pstr, and prefix can be NULL.
+GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr);
+
+#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
+
+// State of the definition of a type-parameterized test case.
+class GTEST_API_ TypedTestCasePState {
+ public:
+  TypedTestCasePState() : registered_(false) {}
+
+  // Adds the given test name to defined_test_names_ and return true
+  // if the test case hasn't been registered; otherwise aborts the
+  // program.
+  bool AddTestName(const char* file, int line, const char* case_name,
+                   const char* test_name) {
+    if (registered_) {
+      fprintf(stderr, "%s Test %s must be defined before "
+              "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",
+              FormatFileLocation(file, line).c_str(), test_name, case_name);
+      fflush(stderr);
+      posix::Abort();
+    }
+    defined_test_names_.insert(test_name);
+    return true;
+  }
+
+  // Verifies that registered_tests match the test names in
+  // defined_test_names_; returns registered_tests if successful, or
+  // aborts the program otherwise.
+  const char* VerifyRegisteredTestNames(
+      const char* file, int line, const char* registered_tests);
+
+ private:
+  bool registered_;
+  ::std::set<const char*> defined_test_names_;
+};
+
+// Skips to the first non-space char after the first comma in 'str';
+// returns NULL if no comma is found in 'str'.
+inline const char* SkipComma(const char* str) {
+  const char* comma = strchr(str, ',');
+  if (comma == NULL) {
+    return NULL;
+  }
+  while (IsSpace(*(++comma))) {}
+  return comma;
+}
+
+// Returns the prefix of 'str' before the first comma in it; returns
+// the entire string if it contains no comma.
+inline String GetPrefixUntilComma(const char* str) {
+  const char* comma = strchr(str, ',');
+  return comma == NULL ? String(str) : String(str, comma - str);
+}
+
+// TypeParameterizedTest<Fixture, TestSel, Types>::Register()
+// registers a list of type-parameterized tests with Google Test.  The
+// return value is insignificant - we just need to return something
+// such that we can call this function in a namespace scope.
+//
+// Implementation note: The GTEST_TEMPLATE_ macro declares a template
+// template parameter.  It's defined in gtest-type-util.h.
+template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
+class TypeParameterizedTest {
+ public:
+  // 'index' is the index of the test in the type list 'Types'
+  // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase,
+  // Types).  Valid values for 'index' are [0, N - 1] where N is the
+  // length of Types.
+  static bool Register(const char* prefix, const char* case_name,
+                       const char* test_names, int index) {
+    typedef typename Types::Head Type;
+    typedef Fixture<Type> FixtureClass;
+    typedef typename GTEST_BIND_(TestSel, Type) TestClass;
+
+    // First, registers the first type-parameterized test in the type
+    // list.
+    MakeAndRegisterTestInfo(
+        String::Format("%s%s%s/%d", prefix, prefix[0] == '\0' ? "" : "/",
+                       case_name, index).c_str(),
+        GetPrefixUntilComma(test_names).c_str(),
+        GetTypeName<Type>().c_str(),
+        NULL,  // No value parameter.
+        GetTypeId<FixtureClass>(),
+        TestClass::SetUpTestCase,
+        TestClass::TearDownTestCase,
+        new TestFactoryImpl<TestClass>);
+
+    // Next, recurses (at compile time) with the tail of the type list.
+    return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail>
+        ::Register(prefix, case_name, test_names, index + 1);
+  }
+};
+
+// The base case for the compile time recursion.
+template <GTEST_TEMPLATE_ Fixture, class TestSel>
+class TypeParameterizedTest<Fixture, TestSel, Types0> {
+ public:
+  static bool Register(const char* /*prefix*/, const char* /*case_name*/,
+                       const char* /*test_names*/, int /*index*/) {
+    return true;
+  }
+};
+
+// TypeParameterizedTestCase<Fixture, Tests, Types>::Register()
+// registers *all combinations* of 'Tests' and 'Types' with Google
+// Test.  The return value is insignificant - we just need to return
+// something such that we can call this function in a namespace scope.
+template <GTEST_TEMPLATE_ Fixture, typename Tests, typename Types>
+class TypeParameterizedTestCase {
+ public:
+  static bool Register(const char* prefix, const char* case_name,
+                       const char* test_names) {
+    typedef typename Tests::Head Head;
+
+    // First, register the first test in 'Test' for each type in 'Types'.
+    TypeParameterizedTest<Fixture, Head, Types>::Register(
+        prefix, case_name, test_names, 0);
+
+    // Next, recurses (at compile time) with the tail of the test list.
+    return TypeParameterizedTestCase<Fixture, typename Tests::Tail, Types>
+        ::Register(prefix, case_name, SkipComma(test_names));
+  }
+};
+
+// The base case for the compile time recursion.
+template <GTEST_TEMPLATE_ Fixture, typename Types>
+class TypeParameterizedTestCase<Fixture, Templates0, Types> {
+ public:
+  static bool Register(const char* /*prefix*/, const char* /*case_name*/,
+                       const char* /*test_names*/) {
+    return true;
+  }
+};
+
+#endif  // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
+
+// Returns the current OS stack trace as a String.
+//
+// The maximum number of stack frames to be included is specified by
+// the gtest_stack_trace_depth flag.  The skip_count parameter
+// specifies the number of top frames to be skipped, which doesn't
+// count against the number of frames to be included.
+//
+// For example, if Foo() calls Bar(), which in turn calls
+// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
+// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
+GTEST_API_ String GetCurrentOsStackTraceExceptTop(UnitTest* unit_test,
+                                                  int skip_count);
+
+// Helpers for suppressing warnings on unreachable code or constant
+// condition.
+
+// Always returns true.
+GTEST_API_ bool AlwaysTrue();
+
+// Always returns false.
+inline bool AlwaysFalse() { return !AlwaysTrue(); }
+
+// Helper for suppressing false warning from Clang on a const char*
+// variable declared in a conditional expression always being NULL in
+// the else branch.
+struct GTEST_API_ ConstCharPtr {
+  ConstCharPtr(const char* str) : value(str) {}
+  operator bool() const { return true; }
+  const char* value;
+};
+
+// A simple Linear Congruential Generator for generating random
+// numbers with a uniform distribution.  Unlike rand() and srand(), it
+// doesn't use global state (and therefore can't interfere with user
+// code).  Unlike rand_r(), it's portable.  An LCG isn't very random,
+// but it's good enough for our purposes.
+class GTEST_API_ Random {
+ public:
+  static const UInt32 kMaxRange = 1u << 31;
+
+  explicit Random(UInt32 seed) : state_(seed) {}
+
+  void Reseed(UInt32 seed) { state_ = seed; }
+
+  // Generates a random number from [0, range).  Crashes if 'range' is
+  // 0 or greater than kMaxRange.
+  UInt32 Generate(UInt32 range);
+
+ private:
+  UInt32 state_;
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);
+};
+
+// Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
+// compiler error iff T1 and T2 are different types.
+template <typename T1, typename T2>
+struct CompileAssertTypesEqual;
+
+template <typename T>
+struct CompileAssertTypesEqual<T, T> {
+};
+
+// Removes the reference from a type if it is a reference type,
+// otherwise leaves it unchanged.  This is the same as
+// tr1::remove_reference, which is not widely available yet.
+template <typename T>
+struct RemoveReference { typedef T type; };  // NOLINT
+template <typename T>
+struct RemoveReference<T&> { typedef T type; };  // NOLINT
+
+// A handy wrapper around RemoveReference that works when the argument
+// T depends on template parameters.
+#define GTEST_REMOVE_REFERENCE_(T) \
+    typename ::testing::internal::RemoveReference<T>::type
+
+// Removes const from a type if it is a const type, otherwise leaves
+// it unchanged.  This is the same as tr1::remove_const, which is not
+// widely available yet.
+template <typename T>
+struct RemoveConst { typedef T type; };  // NOLINT
+template <typename T>
+struct RemoveConst<const T> { typedef T type; };  // NOLINT
+
+// MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above
+// definition to fail to remove the const in 'const int[3]' and 'const
+// char[3][4]'.  The following specialization works around the bug.
+// However, it causes trouble with GCC and thus needs to be
+// conditionally compiled.
+#if defined(_MSC_VER) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
+template <typename T, size_t N>
+struct RemoveConst<const T[N]> {
+  typedef typename RemoveConst<T>::type type[N];
+};
+#endif
+
+// A handy wrapper around RemoveConst that works when the argument
+// T depends on template parameters.
+#define GTEST_REMOVE_CONST_(T) \
+    typename ::testing::internal::RemoveConst<T>::type
+
+// Turns const U&, U&, const U, and U all into U.
+#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \
+    GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T))
+
+// Adds reference to a type if it is not a reference type,
+// otherwise leaves it unchanged.  This is the same as
+// tr1::add_reference, which is not widely available yet.
+template <typename T>
+struct AddReference { typedef T& type; };  // NOLINT
+template <typename T>
+struct AddReference<T&> { typedef T& type; };  // NOLINT
+
+// A handy wrapper around AddReference that works when the argument T
+// depends on template parameters.
+#define GTEST_ADD_REFERENCE_(T) \
+    typename ::testing::internal::AddReference<T>::type
+
+// Adds a reference to const on top of T as necessary.  For example,
+// it transforms
+//
+//   char         ==> const char&
+//   const char   ==> const char&
+//   char&        ==> const char&
+//   const char&  ==> const char&
+//
+// The argument T must depend on some template parameters.
+#define GTEST_REFERENCE_TO_CONST_(T) \
+    GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T))
+
+// ImplicitlyConvertible<From, To>::value is a compile-time bool
+// constant that's true iff type From can be implicitly converted to
+// type To.
+template <typename From, typename To>
+class ImplicitlyConvertible {
+ private:
+  // We need the following helper functions only for their types.
+  // They have no implementations.
+
+  // MakeFrom() is an expression whose type is From.  We cannot simply
+  // use From(), as the type From may not have a public default
+  // constructor.
+  static From MakeFrom();
+
+  // These two functions are overloaded.  Given an expression
+  // Helper(x), the compiler will pick the first version if x can be
+  // implicitly converted to type To; otherwise it will pick the
+  // second version.
+  //
+  // The first version returns a value of size 1, and the second
+  // version returns a value of size 2.  Therefore, by checking the
+  // size of Helper(x), which can be done at compile time, we can tell
+  // which version of Helper() is used, and hence whether x can be
+  // implicitly converted to type To.
+  static char Helper(To);
+  static char (&Helper(...))[2];  // NOLINT
+
+  // We have to put the 'public' section after the 'private' section,
+  // or MSVC refuses to compile the code.
+ public:
+  // MSVC warns about implicitly converting from double to int for
+  // possible loss of data, so we need to temporarily disable the
+  // warning.
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4244)  // Temporarily disables warning 4244.
+
+  static const bool value =
+      sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
+# pragma warning(pop)           // Restores the warning state.
+#elif defined(__BORLANDC__)
+  // C++Builder cannot use member overload resolution during template
+  // instantiation.  The simplest workaround is to use its C++0x type traits
+  // functions (C++Builder 2009 and above only).
+  static const bool value = __is_convertible(From, To);
+#else
+  static const bool value =
+      sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
+#endif  // _MSV_VER
+};
+template <typename From, typename To>
+const bool ImplicitlyConvertible<From, To>::value;
+
+// IsAProtocolMessage<T>::value is a compile-time bool constant that's
+// true iff T is type ProtocolMessage, proto2::Message, or a subclass
+// of those.
+template <typename T>
+struct IsAProtocolMessage
+    : public bool_constant<
+  ImplicitlyConvertible<const T*, const ::ProtocolMessage*>::value ||
+  ImplicitlyConvertible<const T*, const ::proto2::Message*>::value> {
+};
+
+// When the compiler sees expression IsContainerTest<C>(0), if C is an
+// STL-style container class, the first overload of IsContainerTest
+// will be viable (since both C::iterator* and C::const_iterator* are
+// valid types and NULL can be implicitly converted to them).  It will
+// be picked over the second overload as 'int' is a perfect match for
+// the type of argument 0.  If C::iterator or C::const_iterator is not
+// a valid type, the first overload is not viable, and the second
+// overload will be picked.  Therefore, we can determine whether C is
+// a container class by checking the type of IsContainerTest<C>(0).
+// The value of the expression is insignificant.
+//
+// Note that we look for both C::iterator and C::const_iterator.  The
+// reason is that C++ injects the name of a class as a member of the
+// class itself (e.g. you can refer to class iterator as either
+// 'iterator' or 'iterator::iterator').  If we look for C::iterator
+// only, for example, we would mistakenly think that a class named
+// iterator is an STL container.
+//
+// Also note that the simpler approach of overloading
+// IsContainerTest(typename C::const_iterator*) and
+// IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
+typedef int IsContainer;
+template <class C>
+IsContainer IsContainerTest(int /* dummy */,
+                            typename C::iterator* /* it */ = NULL,
+                            typename C::const_iterator* /* const_it */ = NULL) {
+  return 0;
+}
+
+typedef char IsNotContainer;
+template <class C>
+IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; }
+
+// EnableIf<condition>::type is void when 'Cond' is true, and
+// undefined when 'Cond' is false.  To use SFINAE to make a function
+// overload only apply when a particular expression is true, add
+// "typename EnableIf<expression>::type* = 0" as the last parameter.
+template<bool> struct EnableIf;
+template<> struct EnableIf<true> { typedef void type; };  // NOLINT
+
+// Utilities for native arrays.
+
+// ArrayEq() compares two k-dimensional native arrays using the
+// elements' operator==, where k can be any integer >= 0.  When k is
+// 0, ArrayEq() degenerates into comparing a single pair of values.
+
+template <typename T, typename U>
+bool ArrayEq(const T* lhs, size_t size, const U* rhs);
+
+// This generic version is used when k is 0.
+template <typename T, typename U>
+inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
+
+// This overload is used when k >= 1.
+template <typename T, typename U, size_t N>
+inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
+  return internal::ArrayEq(lhs, N, rhs);
+}
+
+// This helper reduces code bloat.  If we instead put its logic inside
+// the previous ArrayEq() function, arrays with different sizes would
+// lead to different copies of the template code.
+template <typename T, typename U>
+bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
+  for (size_t i = 0; i != size; i++) {
+    if (!internal::ArrayEq(lhs[i], rhs[i]))
+      return false;
+  }
+  return true;
+}
+
+// Finds the first element in the iterator range [begin, end) that
+// equals elem.  Element may be a native array type itself.
+template <typename Iter, typename Element>
+Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) {
+  for (Iter it = begin; it != end; ++it) {
+    if (internal::ArrayEq(*it, elem))
+      return it;
+  }
+  return end;
+}
+
+// CopyArray() copies a k-dimensional native array using the elements'
+// operator=, where k can be any integer >= 0.  When k is 0,
+// CopyArray() degenerates into copying a single value.
+
+template <typename T, typename U>
+void CopyArray(const T* from, size_t size, U* to);
+
+// This generic version is used when k is 0.
+template <typename T, typename U>
+inline void CopyArray(const T& from, U* to) { *to = from; }
+
+// This overload is used when k >= 1.
+template <typename T, typename U, size_t N>
+inline void CopyArray(const T(&from)[N], U(*to)[N]) {
+  internal::CopyArray(from, N, *to);
+}
+
+// This helper reduces code bloat.  If we instead put its logic inside
+// the previous CopyArray() function, arrays with different sizes
+// would lead to different copies of the template code.
+template <typename T, typename U>
+void CopyArray(const T* from, size_t size, U* to) {
+  for (size_t i = 0; i != size; i++) {
+    internal::CopyArray(from[i], to + i);
+  }
+}
+
+// The relation between an NativeArray object (see below) and the
+// native array it represents.
+enum RelationToSource {
+  kReference,  // The NativeArray references the native array.
+  kCopy        // The NativeArray makes a copy of the native array and
+               // owns the copy.
+};
+
+// Adapts a native array to a read-only STL-style container.  Instead
+// of the complete STL container concept, this adaptor only implements
+// members useful for Google Mock's container matchers.  New members
+// should be added as needed.  To simplify the implementation, we only
+// support Element being a raw type (i.e. having no top-level const or
+// reference modifier).  It's the client's responsibility to satisfy
+// this requirement.  Element can be an array type itself (hence
+// multi-dimensional arrays are supported).
+template <typename Element>
+class NativeArray {
+ public:
+  // STL-style container typedefs.
+  typedef Element value_type;
+  typedef Element* iterator;
+  typedef const Element* const_iterator;
+
+  // Constructs from a native array.
+  NativeArray(const Element* array, size_t count, RelationToSource relation) {
+    Init(array, count, relation);
+  }
+
+  // Copy constructor.
+  NativeArray(const NativeArray& rhs) {
+    Init(rhs.array_, rhs.size_, rhs.relation_to_source_);
+  }
+
+  ~NativeArray() {
+    // Ensures that the user doesn't instantiate NativeArray with a
+    // const or reference type.
+    static_cast<void>(StaticAssertTypeEqHelper<Element,
+        GTEST_REMOVE_REFERENCE_AND_CONST_(Element)>());
+    if (relation_to_source_ == kCopy)
+      delete[] array_;
+  }
+
+  // STL-style container methods.
+  size_t size() const { return size_; }
+  const_iterator begin() const { return array_; }
+  const_iterator end() const { return array_ + size_; }
+  bool operator==(const NativeArray& rhs) const {
+    return size() == rhs.size() &&
+        ArrayEq(begin(), size(), rhs.begin());
+  }
+
+ private:
+  // Initializes this object; makes a copy of the input array if
+  // 'relation' is kCopy.
+  void Init(const Element* array, size_t a_size, RelationToSource relation) {
+    if (relation == kReference) {
+      array_ = array;
+    } else {
+      Element* const copy = new Element[a_size];
+      CopyArray(array, a_size, copy);
+      array_ = copy;
+    }
+    size_ = a_size;
+    relation_to_source_ = relation;
+  }
+
+  const Element* array_;
+  size_t size_;
+  RelationToSource relation_to_source_;
+
+  GTEST_DISALLOW_ASSIGN_(NativeArray);
+};
+
+}  // namespace internal
+}  // namespace testing
+
+#define GTEST_MESSAGE_AT_(file, line, message, result_type) \
+  ::testing::internal::AssertHelper(result_type, file, line, message) \
+    = ::testing::Message()
+
+#define GTEST_MESSAGE_(message, result_type) \
+  GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type)
+
+#define GTEST_FATAL_FAILURE_(message) \
+  return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure)
+
+#define GTEST_NONFATAL_FAILURE_(message) \
+  GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)
+
+#define GTEST_SUCCESS_(message) \
+  GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)
+
+// Suppresses MSVC warnings 4072 (unreachable code) for the code following
+// statement if it returns or throws (or doesn't return or throw in some
+// situations).
+#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
+  if (::testing::internal::AlwaysTrue()) { statement; }
+
+#define GTEST_TEST_THROW_(statement, expected_exception, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (::testing::internal::ConstCharPtr gtest_msg = "") { \
+    bool gtest_caught_expected = false; \
+    try { \
+      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+    } \
+    catch (expected_exception const&) { \
+      gtest_caught_expected = true; \
+    } \
+    catch (...) { \
+      gtest_msg.value = \
+          "Expected: " #statement " throws an exception of type " \
+          #expected_exception ".\n  Actual: it throws a different type."; \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
+    } \
+    if (!gtest_caught_expected) { \
+      gtest_msg.value = \
+          "Expected: " #statement " throws an exception of type " \
+          #expected_exception ".\n  Actual: it throws nothing."; \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
+    } \
+  } else \
+    GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \
+      fail(gtest_msg.value)
+
+#define GTEST_TEST_NO_THROW_(statement, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (::testing::internal::AlwaysTrue()) { \
+    try { \
+      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+    } \
+    catch (...) { \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \
+    } \
+  } else \
+    GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \
+      fail("Expected: " #statement " doesn't throw an exception.\n" \
+           "  Actual: it throws.")
+
+#define GTEST_TEST_ANY_THROW_(statement, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (::testing::internal::AlwaysTrue()) { \
+    bool gtest_caught_any = false; \
+    try { \
+      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+    } \
+    catch (...) { \
+      gtest_caught_any = true; \
+    } \
+    if (!gtest_caught_any) { \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \
+    } \
+  } else \
+    GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \
+      fail("Expected: " #statement " throws an exception.\n" \
+           "  Actual: it doesn't.")
+
+
+// Implements Boolean test assertions such as EXPECT_TRUE. expression can be
+// either a boolean expression or an AssertionResult. text is a textual
+// represenation of expression as it was passed into the EXPECT_TRUE.
+#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (const ::testing::AssertionResult gtest_ar_ = \
+      ::testing::AssertionResult(expression)) \
+    ; \
+  else \
+    fail(::testing::internal::GetBoolAssertionFailureMessage(\
+        gtest_ar_, text, #actual, #expected).c_str())
+
+#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (::testing::internal::AlwaysTrue()) { \
+    ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \
+    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+    if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \
+    } \
+  } else \
+    GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \
+      fail("Expected: " #statement " doesn't generate new fatal " \
+           "failures in the current thread.\n" \
+           "  Actual: it does.")
+
+// Expands to the name of the class that implements the given test.
+#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
+  test_case_name##_##test_name##_Test
+
+// Helper macro for defining tests.
+#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
+class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
+ public:\
+  GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
+ private:\
+  virtual void TestBody();\
+  static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(\
+      GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\
+};\
+\
+::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
+  ::test_info_ =\
+    ::testing::internal::MakeAndRegisterTestInfo(\
+        #test_case_name, #test_name, NULL, NULL, \
+        (parent_id), \
+        parent_class::SetUpTestCase, \
+        parent_class::TearDownTestCase, \
+        new ::testing::internal::TestFactoryImpl<\
+            GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\
+void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
+// Copyright 2005, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file defines the public API for death tests.  It is
+// #included by gtest.h so a user doesn't need to include this
+// directly.
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
+#define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
+
+// Copyright 2005, Google 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 Google 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.
+//
+// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file defines internal utilities needed for implementing
+// death tests.  They are subject to change without notice.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_
+
+
+#include <stdio.h>
+
+namespace testing {
+namespace internal {
+
+GTEST_DECLARE_string_(internal_run_death_test);
+
+// Names of the flags (needed for parsing Google Test flags).
+const char kDeathTestStyleFlag[] = "death_test_style";
+const char kDeathTestUseFork[] = "death_test_use_fork";
+const char kInternalRunDeathTestFlag[] = "internal_run_death_test";
+
+#if GTEST_HAS_DEATH_TEST
+
+// DeathTest is a class that hides much of the complexity of the
+// GTEST_DEATH_TEST_ macro.  It is abstract; its static Create method
+// returns a concrete class that depends on the prevailing death test
+// style, as defined by the --gtest_death_test_style and/or
+// --gtest_internal_run_death_test flags.
+
+// In describing the results of death tests, these terms are used with
+// the corresponding definitions:
+//
+// exit status:  The integer exit information in the format specified
+//               by wait(2)
+// exit code:    The integer code passed to exit(3), _exit(2), or
+//               returned from main()
+class GTEST_API_ DeathTest {
+ public:
+  // Create returns false if there was an error determining the
+  // appropriate action to take for the current death test; for example,
+  // if the gtest_death_test_style flag is set to an invalid value.
+  // The LastMessage method will return a more detailed message in that
+  // case.  Otherwise, the DeathTest pointer pointed to by the "test"
+  // argument is set.  If the death test should be skipped, the pointer
+  // is set to NULL; otherwise, it is set to the address of a new concrete
+  // DeathTest object that controls the execution of the current test.
+  static bool Create(const char* statement, const RE* regex,
+                     const char* file, int line, DeathTest** test);
+  DeathTest();
+  virtual ~DeathTest() { }
+
+  // A helper class that aborts a death test when it's deleted.
+  class ReturnSentinel {
+   public:
+    explicit ReturnSentinel(DeathTest* test) : test_(test) { }
+    ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); }
+   private:
+    DeathTest* const test_;
+    GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
+  } GTEST_ATTRIBUTE_UNUSED_;
+
+  // An enumeration of possible roles that may be taken when a death
+  // test is encountered.  EXECUTE means that the death test logic should
+  // be executed immediately.  OVERSEE means that the program should prepare
+  // the appropriate environment for a child process to execute the death
+  // test, then wait for it to complete.
+  enum TestRole { OVERSEE_TEST, EXECUTE_TEST };
+
+  // An enumeration of the three reasons that a test might be aborted.
+  enum AbortReason {
+    TEST_ENCOUNTERED_RETURN_STATEMENT,
+    TEST_THREW_EXCEPTION,
+    TEST_DID_NOT_DIE
+  };
+
+  // Assumes one of the above roles.
+  virtual TestRole AssumeRole() = 0;
+
+  // Waits for the death test to finish and returns its status.
+  virtual int Wait() = 0;
+
+  // Returns true if the death test passed; that is, the test process
+  // exited during the test, its exit status matches a user-supplied
+  // predicate, and its stderr output matches a user-supplied regular
+  // expression.
+  // The user-supplied predicate may be a macro expression rather
+  // than a function pointer or functor, or else Wait and Passed could
+  // be combined.
+  virtual bool Passed(bool exit_status_ok) = 0;
+
+  // Signals that the death test did not die as expected.
+  virtual void Abort(AbortReason reason) = 0;
+
+  // Returns a human-readable outcome message regarding the outcome of
+  // the last death test.
+  static const char* LastMessage();
+
+  static void set_last_death_test_message(const String& message);
+
+ private:
+  // A string containing a description of the outcome of the last death test.
+  static String last_death_test_message_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest);
+};
+
+// Factory interface for death tests.  May be mocked out for testing.
+class DeathTestFactory {
+ public:
+  virtual ~DeathTestFactory() { }
+  virtual bool Create(const char* statement, const RE* regex,
+                      const char* file, int line, DeathTest** test) = 0;
+};
+
+// A concrete DeathTestFactory implementation for normal use.
+class DefaultDeathTestFactory : public DeathTestFactory {
+ public:
+  virtual bool Create(const char* statement, const RE* regex,
+                      const char* file, int line, DeathTest** test);
+};
+
+// Returns true if exit_status describes a process that was terminated
+// by a signal, or exited normally with a nonzero exit code.
+GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
+
+// Traps C++ exceptions escaping statement and reports them as test
+// failures. Note that trapping SEH exceptions is not implemented here.
+# if GTEST_HAS_EXCEPTIONS
+#  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
+  try { \
+    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+  } catch (const ::std::exception& gtest_exception) { \
+    fprintf(\
+        stderr, \
+        "\n%s: Caught std::exception-derived exception escaping the " \
+        "death test statement. Exception message: %s\n", \
+        ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \
+        gtest_exception.what()); \
+    fflush(stderr); \
+    death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \
+  } catch (...) { \
+    death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \
+  }
+
+# else
+#  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
+  GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
+
+# endif
+
+// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*,
+// ASSERT_EXIT*, and EXPECT_EXIT*.
+# define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (::testing::internal::AlwaysTrue()) { \
+    const ::testing::internal::RE& gtest_regex = (regex); \
+    ::testing::internal::DeathTest* gtest_dt; \
+    if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
+        __FILE__, __LINE__, &gtest_dt)) { \
+      goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
+    } \
+    if (gtest_dt != NULL) { \
+      ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
+          gtest_dt_ptr(gtest_dt); \
+      switch (gtest_dt->AssumeRole()) { \
+        case ::testing::internal::DeathTest::OVERSEE_TEST: \
+          if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
+            goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
+          } \
+          break; \
+        case ::testing::internal::DeathTest::EXECUTE_TEST: { \
+          ::testing::internal::DeathTest::ReturnSentinel \
+              gtest_sentinel(gtest_dt); \
+          GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \
+          gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \
+          break; \
+        } \
+        default: \
+          break; \
+      } \
+    } \
+  } else \
+    GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \
+      fail(::testing::internal::DeathTest::LastMessage())
+// The symbol "fail" here expands to something into which a message
+// can be streamed.
+
+// A class representing the parsed contents of the
+// --gtest_internal_run_death_test flag, as it existed when
+// RUN_ALL_TESTS was called.
+class InternalRunDeathTestFlag {
+ public:
+  InternalRunDeathTestFlag(const String& a_file,
+                           int a_line,
+                           int an_index,
+                           int a_write_fd)
+      : file_(a_file), line_(a_line), index_(an_index),
+        write_fd_(a_write_fd) {}
+
+  ~InternalRunDeathTestFlag() {
+    if (write_fd_ >= 0)
+      posix::Close(write_fd_);
+  }
+
+  String file() const { return file_; }
+  int line() const { return line_; }
+  int index() const { return index_; }
+  int write_fd() const { return write_fd_; }
+
+ private:
+  String file_;
+  int line_;
+  int index_;
+  int write_fd_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag);
+};
+
+// Returns a newly created InternalRunDeathTestFlag object with fields
+// initialized from the GTEST_FLAG(internal_run_death_test) flag if
+// the flag is specified; otherwise returns NULL.
+InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag();
+
+#else  // GTEST_HAS_DEATH_TEST
+
+// This macro is used for implementing macros such as
+// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where
+// death tests are not supported. Those macros must compile on such systems
+// iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on
+// systems that support death tests. This allows one to write such a macro
+// on a system that does not support death tests and be sure that it will
+// compile on a death-test supporting system.
+//
+// Parameters:
+//   statement -  A statement that a macro such as EXPECT_DEATH would test
+//                for program termination. This macro has to make sure this
+//                statement is compiled but not executed, to ensure that
+//                EXPECT_DEATH_IF_SUPPORTED compiles with a certain
+//                parameter iff EXPECT_DEATH compiles with it.
+//   regex     -  A regex that a macro such as EXPECT_DEATH would use to test
+//                the output of statement.  This parameter has to be
+//                compiled but not evaluated by this macro, to ensure that
+//                this macro only accepts expressions that a macro such as
+//                EXPECT_DEATH would accept.
+//   terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
+//                and a return statement for ASSERT_DEATH_IF_SUPPORTED.
+//                This ensures that ASSERT_DEATH_IF_SUPPORTED will not
+//                compile inside functions where ASSERT_DEATH doesn't
+//                compile.
+//
+//  The branch that has an always false condition is used to ensure that
+//  statement and regex are compiled (and thus syntactically correct) but
+//  never executed. The unreachable code macro protects the terminator
+//  statement from generating an 'unreachable code' warning in case
+//  statement unconditionally returns or throws. The Message constructor at
+//  the end allows the syntax of streaming additional messages into the
+//  macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH.
+# define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
+    GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+    if (::testing::internal::AlwaysTrue()) { \
+      GTEST_LOG_(WARNING) \
+          << "Death tests are not supported on this platform.\n" \
+          << "Statement '" #statement "' cannot be verified."; \
+    } else if (::testing::internal::AlwaysFalse()) { \
+      ::testing::internal::RE::PartialMatch(".*", (regex)); \
+      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
+      terminator; \
+    } else \
+      ::testing::Message()
+
+#endif  // GTEST_HAS_DEATH_TEST
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_
+
+namespace testing {
+
+// This flag controls the style of death tests.  Valid values are "threadsafe",
+// meaning that the death test child process will re-execute the test binary
+// from the start, running only a single death test, or "fast",
+// meaning that the child process will execute the test logic immediately
+// after forking.
+GTEST_DECLARE_string_(death_test_style);
+
+#if GTEST_HAS_DEATH_TEST
+
+// The following macros are useful for writing death tests.
+
+// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
+// executed:
+//
+//   1. It generates a warning if there is more than one active
+//   thread.  This is because it's safe to fork() or clone() only
+//   when there is a single thread.
+//
+//   2. The parent process clone()s a sub-process and runs the death
+//   test in it; the sub-process exits with code 0 at the end of the
+//   death test, if it hasn't exited already.
+//
+//   3. The parent process waits for the sub-process to terminate.
+//
+//   4. The parent process checks the exit code and error message of
+//   the sub-process.
+//
+// Examples:
+//
+//   ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
+//   for (int i = 0; i < 5; i++) {
+//     EXPECT_DEATH(server.ProcessRequest(i),
+//                  "Invalid request .* in ProcessRequest()")
+//         << "Failed to die on request " << i);
+//   }
+//
+//   ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
+//
+//   bool KilledBySIGHUP(int exit_code) {
+//     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
+//   }
+//
+//   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
+//
+// On the regular expressions used in death tests:
+//
+//   On POSIX-compliant systems (*nix), we use the <regex.h> library,
+//   which uses the POSIX extended regex syntax.
+//
+//   On other platforms (e.g. Windows), we only support a simple regex
+//   syntax implemented as part of Google Test.  This limited
+//   implementation should be enough most of the time when writing
+//   death tests; though it lacks many features you can find in PCRE
+//   or POSIX extended regex syntax.  For example, we don't support
+//   union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and
+//   repetition count ("x{5,7}"), among others.
+//
+//   Below is the syntax that we do support.  We chose it to be a
+//   subset of both PCRE and POSIX extended regex, so it's easy to
+//   learn wherever you come from.  In the following: 'A' denotes a
+//   literal character, period (.), or a single \\ escape sequence;
+//   'x' and 'y' denote regular expressions; 'm' and 'n' are for
+//   natural numbers.
+//
+//     c     matches any literal character c
+//     \\d   matches any decimal digit
+//     \\D   matches any character that's not a decimal digit
+//     \\f   matches \f
+//     \\n   matches \n
+//     \\r   matches \r
+//     \\s   matches any ASCII whitespace, including \n
+//     \\S   matches any character that's not a whitespace
+//     \\t   matches \t
+//     \\v   matches \v
+//     \\w   matches any letter, _, or decimal digit
+//     \\W   matches any character that \\w doesn't match
+//     \\c   matches any literal character c, which must be a punctuation
+//     .     matches any single character except \n
+//     A?    matches 0 or 1 occurrences of A
+//     A*    matches 0 or many occurrences of A
+//     A+    matches 1 or many occurrences of A
+//     ^     matches the beginning of a string (not that of each line)
+//     $     matches the end of a string (not that of each line)
+//     xy    matches x followed by y
+//
+//   If you accidentally use PCRE or POSIX extended regex features
+//   not implemented by us, you will get a run-time failure.  In that
+//   case, please try to rewrite your regular expression within the
+//   above syntax.
+//
+//   This implementation is *not* meant to be as highly tuned or robust
+//   as a compiled regex library, but should perform well enough for a
+//   death test, which already incurs significant overhead by launching
+//   a child process.
+//
+// Known caveats:
+//
+//   A "threadsafe" style death test obtains the path to the test
+//   program from argv[0] and re-executes it in the sub-process.  For
+//   simplicity, the current implementation doesn't search the PATH
+//   when launching the sub-process.  This means that the user must
+//   invoke the test program via a path that contains at least one
+//   path separator (e.g. path/to/foo_test and
+//   /absolute/path/to/bar_test are fine, but foo_test is not).  This
+//   is rarely a problem as people usually don't put the test binary
+//   directory in PATH.
+//
+// TODO(wan@google.com): make thread-safe death tests search the PATH.
+
+// Asserts that a given statement causes the program to exit, with an
+// integer exit status that satisfies predicate, and emitting error output
+// that matches regex.
+# define ASSERT_EXIT(statement, predicate, regex) \
+    GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
+
+// Like ASSERT_EXIT, but continues on to successive tests in the
+// test case, if any:
+# define EXPECT_EXIT(statement, predicate, regex) \
+    GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
+
+// Asserts that a given statement causes the program to exit, either by
+// explicitly exiting with a nonzero exit code or being killed by a
+// signal, and emitting error output that matches regex.
+# define ASSERT_DEATH(statement, regex) \
+    ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
+
+// Like ASSERT_DEATH, but continues on to successive tests in the
+// test case, if any:
+# define EXPECT_DEATH(statement, regex) \
+    EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
+
+// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
+
+// Tests that an exit code describes a normal exit with a given exit code.
+class GTEST_API_ ExitedWithCode {
+ public:
+  explicit ExitedWithCode(int exit_code);
+  bool operator()(int exit_status) const;
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ExitedWithCode& other);
+
+  const int exit_code_;
+};
+
+# if !GTEST_OS_WINDOWS
+// Tests that an exit code describes an exit due to termination by a
+// given signal.
+class GTEST_API_ KilledBySignal {
+ public:
+  explicit KilledBySignal(int signum);
+  bool operator()(int exit_status) const;
+ private:
+  const int signum_;
+};
+# endif  // !GTEST_OS_WINDOWS
+
+// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
+// The death testing framework causes this to have interesting semantics,
+// since the sideeffects of the call are only visible in opt mode, and not
+// in debug mode.
+//
+// In practice, this can be used to test functions that utilize the
+// LOG(DFATAL) macro using the following style:
+//
+// int DieInDebugOr12(int* sideeffect) {
+//   if (sideeffect) {
+//     *sideeffect = 12;
+//   }
+//   LOG(DFATAL) << "death";
+//   return 12;
+// }
+//
+// TEST(TestCase, TestDieOr12WorksInDgbAndOpt) {
+//   int sideeffect = 0;
+//   // Only asserts in dbg.
+//   EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
+//
+// #ifdef NDEBUG
+//   // opt-mode has sideeffect visible.
+//   EXPECT_EQ(12, sideeffect);
+// #else
+//   // dbg-mode no visible sideeffect.
+//   EXPECT_EQ(0, sideeffect);
+// #endif
+// }
+//
+// This will assert that DieInDebugReturn12InOpt() crashes in debug
+// mode, usually due to a DCHECK or LOG(DFATAL), but returns the
+// appropriate fallback value (12 in this case) in opt mode. If you
+// need to test that a function has appropriate side-effects in opt
+// mode, include assertions against the side-effects.  A general
+// pattern for this is:
+//
+// EXPECT_DEBUG_DEATH({
+//   // Side-effects here will have an effect after this statement in
+//   // opt mode, but none in debug mode.
+//   EXPECT_EQ(12, DieInDebugOr12(&sideeffect));
+// }, "death");
+//
+# ifdef NDEBUG
+
+#  define EXPECT_DEBUG_DEATH(statement, regex) \
+  do { statement; } while (::testing::internal::AlwaysFalse())
+
+#  define ASSERT_DEBUG_DEATH(statement, regex) \
+  do { statement; } while (::testing::internal::AlwaysFalse())
+
+# else
+
+#  define EXPECT_DEBUG_DEATH(statement, regex) \
+  EXPECT_DEATH(statement, regex)
+
+#  define ASSERT_DEBUG_DEATH(statement, regex) \
+  ASSERT_DEATH(statement, regex)
+
+# endif  // NDEBUG for EXPECT_DEBUG_DEATH
+#endif  // GTEST_HAS_DEATH_TEST
+
+// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and
+// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if
+// death tests are supported; otherwise they just issue a warning.  This is
+// useful when you are combining death test assertions with normal test
+// assertions in one test.
+#if GTEST_HAS_DEATH_TEST
+# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
+    EXPECT_DEATH(statement, regex)
+# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
+    ASSERT_DEATH(statement, regex)
+#else
+# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
+    GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
+# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
+    GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return)
+#endif
+
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
+// Copyright 2005, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// The Google C++ Testing Framework (Google Test)
+//
+// This header file defines the Message class.
+//
+// IMPORTANT NOTE: Due to limitation of the C++ language, we have to
+// leave some internal implementation details in this header file.
+// They are clearly marked by comments like this:
+//
+//   // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+//
+// Such code is NOT meant to be used by a user directly, and is subject
+// to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
+// program!
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
+#define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
+
+#include <limits>
+
+
+namespace testing {
+
+// The Message class works like an ostream repeater.
+//
+// Typical usage:
+//
+//   1. You stream a bunch of values to a Message object.
+//      It will remember the text in a stringstream.
+//   2. Then you stream the Message object to an ostream.
+//      This causes the text in the Message to be streamed
+//      to the ostream.
+//
+// For example;
+//
+//   testing::Message foo;
+//   foo << 1 << " != " << 2;
+//   std::cout << foo;
+//
+// will print "1 != 2".
+//
+// Message is not intended to be inherited from.  In particular, its
+// destructor is not virtual.
+//
+// Note that stringstream behaves differently in gcc and in MSVC.  You
+// can stream a NULL char pointer to it in the former, but not in the
+// latter (it causes an access violation if you do).  The Message
+// class hides this difference by treating a NULL char pointer as
+// "(null)".
+class GTEST_API_ Message {
+ private:
+  // The type of basic IO manipulators (endl, ends, and flush) for
+  // narrow streams.
+  typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
+
+ public:
+  // Constructs an empty Message.
+  // We allocate the stringstream separately because otherwise each use of
+  // ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's
+  // stack frame leading to huge stack frames in some cases; gcc does not reuse
+  // the stack space.
+  Message() : ss_(new ::std::stringstream) {
+    // By default, we want there to be enough precision when printing
+    // a double to a Message.
+    *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2);
+  }
+
+  // Copy constructor.
+  Message(const Message& msg) : ss_(new ::std::stringstream) {  // NOLINT
+    *ss_ << msg.GetString();
+  }
+
+  // Constructs a Message from a C-string.
+  explicit Message(const char* str) : ss_(new ::std::stringstream) {
+    *ss_ << str;
+  }
+
+#if GTEST_OS_SYMBIAN
+  // Streams a value (either a pointer or not) to this object.
+  template <typename T>
+  inline Message& operator <<(const T& value) {
+    StreamHelper(typename internal::is_pointer<T>::type(), value);
+    return *this;
+  }
+#else
+  // Streams a non-pointer value to this object.
+  template <typename T>
+  inline Message& operator <<(const T& val) {
+    ::GTestStreamToHelper(ss_.get(), val);
+    return *this;
+  }
+
+  // Streams a pointer value to this object.
+  //
+  // This function is an overload of the previous one.  When you
+  // stream a pointer to a Message, this definition will be used as it
+  // is more specialized.  (The C++ Standard, section
+  // [temp.func.order].)  If you stream a non-pointer, then the
+  // previous definition will be used.
+  //
+  // The reason for this overload is that streaming a NULL pointer to
+  // ostream is undefined behavior.  Depending on the compiler, you
+  // may get "0", "(nil)", "(null)", or an access violation.  To
+  // ensure consistent result across compilers, we always treat NULL
+  // as "(null)".
+  template <typename T>
+  inline Message& operator <<(T* const& pointer) {  // NOLINT
+    if (pointer == NULL) {
+      *ss_ << "(null)";
+    } else {
+      ::GTestStreamToHelper(ss_.get(), pointer);
+    }
+    return *this;
+  }
+#endif  // GTEST_OS_SYMBIAN
+
+  // Since the basic IO manipulators are overloaded for both narrow
+  // and wide streams, we have to provide this specialized definition
+  // of operator <<, even though its body is the same as the
+  // templatized version above.  Without this definition, streaming
+  // endl or other basic IO manipulators to Message will confuse the
+  // compiler.
+  Message& operator <<(BasicNarrowIoManip val) {
+    *ss_ << val;
+    return *this;
+  }
+
+  // Instead of 1/0, we want to see true/false for bool values.
+  Message& operator <<(bool b) {
+    return *this << (b ? "true" : "false");
+  }
+
+  // These two overloads allow streaming a wide C string to a Message
+  // using the UTF-8 encoding.
+  Message& operator <<(const wchar_t* wide_c_str) {
+    return *this << internal::String::ShowWideCString(wide_c_str);
+  }
+  Message& operator <<(wchar_t* wide_c_str) {
+    return *this << internal::String::ShowWideCString(wide_c_str);
+  }
+
+#if GTEST_HAS_STD_WSTRING
+  // Converts the given wide string to a narrow string using the UTF-8
+  // encoding, and streams the result to this Message object.
+  Message& operator <<(const ::std::wstring& wstr);
+#endif  // GTEST_HAS_STD_WSTRING
+
+#if GTEST_HAS_GLOBAL_WSTRING
+  // Converts the given wide string to a narrow string using the UTF-8
+  // encoding, and streams the result to this Message object.
+  Message& operator <<(const ::wstring& wstr);
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+  // Gets the text streamed to this object so far as a String.
+  // Each '\0' character in the buffer is replaced with "\\0".
+  //
+  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+  internal::String GetString() const {
+    return internal::StringStreamToString(ss_.get());
+  }
+
+ private:
+
+#if GTEST_OS_SYMBIAN
+  // These are needed as the Nokia Symbian Compiler cannot decide between
+  // const T& and const T* in a function template. The Nokia compiler _can_
+  // decide between class template specializations for T and T*, so a
+  // tr1::type_traits-like is_pointer works, and we can overload on that.
+  template <typename T>
+  inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) {
+    if (pointer == NULL) {
+      *ss_ << "(null)";
+    } else {
+      ::GTestStreamToHelper(ss_.get(), pointer);
+    }
+  }
+  template <typename T>
+  inline void StreamHelper(internal::false_type /*dummy*/, const T& value) {
+    ::GTestStreamToHelper(ss_.get(), value);
+  }
+#endif  // GTEST_OS_SYMBIAN
+
+  // We'll hold the text streamed to this object here.
+  const internal::scoped_ptr< ::std::stringstream> ss_;
+
+  // We declare (but don't implement) this to prevent the compiler
+  // from implementing the assignment operator.
+  void operator=(const Message&);
+};
+
+// Streams a Message to an ostream.
+inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
+  return os << sb.GetString();
+}
+
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
+// This file was GENERATED by command:
+//     pump.py gtest-param-test.h.pump
+// DO NOT EDIT BY HAND!!!
+
+// Copyright 2008, Google 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 Google 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.
+//
+// Authors: vladl@google.com (Vlad Losev)
+//
+// Macros and functions for implementing parameterized tests
+// in Google C++ Testing Framework (Google Test)
+//
+// This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!
+//
+#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
+#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
+
+
+// Value-parameterized tests allow you to test your code with different
+// parameters without writing multiple copies of the same test.
+//
+// Here is how you use value-parameterized tests:
+
+#if 0
+
+// To write value-parameterized tests, first you should define a fixture
+// class. It is usually derived from testing::TestWithParam<T> (see below for
+// another inheritance scheme that's sometimes useful in more complicated
+// class hierarchies), where the type of your parameter values.
+// TestWithParam<T> is itself derived from testing::Test. T can be any
+// copyable type. If it's a raw pointer, you are responsible for managing the
+// lifespan of the pointed values.
+
+class FooTest : public ::testing::TestWithParam<const char*> {
+  // You can implement all the usual class fixture members here.
+};
+
+// Then, use the TEST_P macro to define as many parameterized tests
+// for this fixture as you want. The _P suffix is for "parameterized"
+// or "pattern", whichever you prefer to think.
+
+TEST_P(FooTest, DoesBlah) {
+  // Inside a test, access the test parameter with the GetParam() method
+  // of the TestWithParam<T> class:
+  EXPECT_TRUE(foo.Blah(GetParam()));
+  ...
+}
+
+TEST_P(FooTest, HasBlahBlah) {
+  ...
+}
+
+// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
+// case with any set of parameters you want. Google Test defines a number
+// of functions for generating test parameters. They return what we call
+// (surprise!) parameter generators. Here is a  summary of them, which
+// are all in the testing namespace:
+//
+//
+//  Range(begin, end [, step]) - Yields values {begin, begin+step,
+//                               begin+step+step, ...}. The values do not
+//                               include end. step defaults to 1.
+//  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
+//  ValuesIn(container)        - Yields values from a C-style array, an STL
+//  ValuesIn(begin,end)          container, or an iterator range [begin, end).
+//  Bool()                     - Yields sequence {false, true}.
+//  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product
+//                               for the math savvy) of the values generated
+//                               by the N generators.
+//
+// For more details, see comments at the definitions of these functions below
+// in this file.
+//
+// The following statement will instantiate tests from the FooTest test case
+// each with parameter values "meeny", "miny", and "moe".
+
+INSTANTIATE_TEST_CASE_P(InstantiationName,
+                        FooTest,
+                        Values("meeny", "miny", "moe"));
+
+// To distinguish different instances of the pattern, (yes, you
+// can instantiate it more then once) the first argument to the
+// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the
+// actual test case name. Remember to pick unique prefixes for different
+// instantiations. The tests from the instantiation above will have
+// these names:
+//
+//    * InstantiationName/FooTest.DoesBlah/0 for "meeny"
+//    * InstantiationName/FooTest.DoesBlah/1 for "miny"
+//    * InstantiationName/FooTest.DoesBlah/2 for "moe"
+//    * InstantiationName/FooTest.HasBlahBlah/0 for "meeny"
+//    * InstantiationName/FooTest.HasBlahBlah/1 for "miny"
+//    * InstantiationName/FooTest.HasBlahBlah/2 for "moe"
+//
+// You can use these names in --gtest_filter.
+//
+// This statement will instantiate all tests from FooTest again, each
+// with parameter values "cat" and "dog":
+
+const char* pets[] = {"cat", "dog"};
+INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
+
+// The tests from the instantiation above will have these names:
+//
+//    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
+//    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
+//    * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat"
+//    * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog"
+//
+// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests
+// in the given test case, whether their definitions come before or
+// AFTER the INSTANTIATE_TEST_CASE_P statement.
+//
+// Please also note that generator expressions (including parameters to the
+// generators) are evaluated in InitGoogleTest(), after main() has started.
+// This allows the user on one hand, to adjust generator parameters in order
+// to dynamically determine a set of tests to run and on the other hand,
+// give the user a chance to inspect the generated tests with Google Test
+// reflection API before RUN_ALL_TESTS() is executed.
+//
+// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
+// for more examples.
+//
+// In the future, we plan to publish the API for defining new parameter
+// generators. But for now this interface remains part of the internal
+// implementation and is subject to change.
+//
+//
+// A parameterized test fixture must be derived from testing::Test and from
+// testing::WithParamInterface<T>, where T is the type of the parameter
+// values. Inheriting from TestWithParam<T> satisfies that requirement because
+// TestWithParam<T> inherits from both Test and WithParamInterface. In more
+// complicated hierarchies, however, it is occasionally useful to inherit
+// separately from Test and WithParamInterface. For example:
+
+class BaseTest : public ::testing::Test {
+  // You can inherit all the usual members for a non-parameterized test
+  // fixture here.
+};
+
+class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
+  // The usual test fixture members go here too.
+};
+
+TEST_F(BaseTest, HasFoo) {
+  // This is an ordinary non-parameterized test.
+}
+
+TEST_P(DerivedTest, DoesBlah) {
+  // GetParam works just the same here as if you inherit from TestWithParam.
+  EXPECT_TRUE(foo.Blah(GetParam()));
+}
+
+#endif  // 0
+
+
+#if !GTEST_OS_SYMBIAN
+# include <utility>
+#endif
+
+// scripts/fuse_gtest.py depends on gtest's own header being #included
+// *unconditionally*.  Therefore these #includes cannot be moved
+// inside #if GTEST_HAS_PARAM_TEST.
+// Copyright 2008 Google 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 Google 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.
+//
+// Author: vladl@google.com (Vlad Losev)
+
+// Type and function utilities for implementing parameterized tests.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_
+
+#include <iterator>
+#include <utility>
+#include <vector>
+
+// scripts/fuse_gtest.py depends on gtest's own header being #included
+// *unconditionally*.  Therefore these #includes cannot be moved
+// inside #if GTEST_HAS_PARAM_TEST.
+// Copyright 2003 Google 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 Google 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.
+//
+// Authors: Dan Egnor (egnor@google.com)
+//
+// A "smart" pointer type with reference tracking.  Every pointer to a
+// particular object is kept on a circular linked list.  When the last pointer
+// to an object is destroyed or reassigned, the object is deleted.
+//
+// Used properly, this deletes the object when the last reference goes away.
+// There are several caveats:
+// - Like all reference counting schemes, cycles lead to leaks.
+// - Each smart pointer is actually two pointers (8 bytes instead of 4).
+// - Every time a pointer is assigned, the entire list of pointers to that
+//   object is traversed.  This class is therefore NOT SUITABLE when there
+//   will often be more than two or three pointers to a particular object.
+// - References are only tracked as long as linked_ptr<> objects are copied.
+//   If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS
+//   will happen (double deletion).
+//
+// A good use of this class is storing object references in STL containers.
+// You can safely put linked_ptr<> in a vector<>.
+// Other uses may not be as good.
+//
+// Note: If you use an incomplete type with linked_ptr<>, the class
+// *containing* linked_ptr<> must have a constructor and destructor (even
+// if they do nothing!).
+//
+// Bill Gibbons suggested we use something like this.
+//
+// Thread Safety:
+//   Unlike other linked_ptr implementations, in this implementation
+//   a linked_ptr object is thread-safe in the sense that:
+//     - it's safe to copy linked_ptr objects concurrently,
+//     - it's safe to copy *from* a linked_ptr and read its underlying
+//       raw pointer (e.g. via get()) concurrently, and
+//     - it's safe to write to two linked_ptrs that point to the same
+//       shared object concurrently.
+// TODO(wan@google.com): rename this to safe_linked_ptr to avoid
+// confusion with normal linked_ptr.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_
+
+#include <stdlib.h>
+#include <assert.h>
+
+
+namespace testing {
+namespace internal {
+
+// Protects copying of all linked_ptr objects.
+GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex);
+
+// This is used internally by all instances of linked_ptr<>.  It needs to be
+// a non-template class because different types of linked_ptr<> can refer to
+// the same object (linked_ptr<Superclass>(obj) vs linked_ptr<Subclass>(obj)).
+// So, it needs to be possible for different types of linked_ptr to participate
+// in the same circular linked list, so we need a single class type here.
+//
+// DO NOT USE THIS CLASS DIRECTLY YOURSELF.  Use linked_ptr<T>.
+class linked_ptr_internal {
+ public:
+  // Create a new circle that includes only this instance.
+  void join_new() {
+    next_ = this;
+  }
+
+  // Many linked_ptr operations may change p.link_ for some linked_ptr
+  // variable p in the same circle as this object.  Therefore we need
+  // to prevent two such operations from occurring concurrently.
+  //
+  // Note that different types of linked_ptr objects can coexist in a
+  // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
+  // linked_ptr<Derived2>).  Therefore we must use a single mutex to
+  // protect all linked_ptr objects.  This can create serious
+  // contention in production code, but is acceptable in a testing
+  // framework.
+
+  // Join an existing circle.
+  // L < g_linked_ptr_mutex
+  void join(linked_ptr_internal const* ptr) {
+    MutexLock lock(&g_linked_ptr_mutex);
+
+    linked_ptr_internal const* p = ptr;
+    while (p->next_ != ptr) p = p->next_;
+    p->next_ = this;
+    next_ = ptr;
+  }
+
+  // Leave whatever circle we're part of.  Returns true if we were the
+  // last member of the circle.  Once this is done, you can join() another.
+  // L < g_linked_ptr_mutex
+  bool depart() {
+    MutexLock lock(&g_linked_ptr_mutex);
+
+    if (next_ == this) return true;
+    linked_ptr_internal const* p = next_;
+    while (p->next_ != this) p = p->next_;
+    p->next_ = next_;
+    return false;
+  }
+
+ private:
+  mutable linked_ptr_internal const* next_;
+};
+
+template <typename T>
+class linked_ptr {
+ public:
+  typedef T element_type;
+
+  // Take over ownership of a raw pointer.  This should happen as soon as
+  // possible after the object is created.
+  explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
+  ~linked_ptr() { depart(); }
+
+  // Copy an existing linked_ptr<>, adding ourselves to the list of references.
+  template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
+  linked_ptr(linked_ptr const& ptr) {  // NOLINT
+    assert(&ptr != this);
+    copy(&ptr);
+  }
+
+  // Assignment releases the old value and acquires the new.
+  template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) {
+    depart();
+    copy(&ptr);
+    return *this;
+  }
+
+  linked_ptr& operator=(linked_ptr const& ptr) {
+    if (&ptr != this) {
+      depart();
+      copy(&ptr);
+    }
+    return *this;
+  }
+
+  // Smart pointer members.
+  void reset(T* ptr = NULL) {
+    depart();
+    capture(ptr);
+  }
+  T* get() const { return value_; }
+  T* operator->() const { return value_; }
+  T& operator*() const { return *value_; }
+
+  bool operator==(T* p) const { return value_ == p; }
+  bool operator!=(T* p) const { return value_ != p; }
+  template <typename U>
+  bool operator==(linked_ptr<U> const& ptr) const {
+    return value_ == ptr.get();
+  }
+  template <typename U>
+  bool operator!=(linked_ptr<U> const& ptr) const {
+    return value_ != ptr.get();
+  }
+
+ private:
+  template <typename U>
+  friend class linked_ptr;
+
+  T* value_;
+  linked_ptr_internal link_;
+
+  void depart() {
+    if (link_.depart()) delete value_;
+  }
+
+  void capture(T* ptr) {
+    value_ = ptr;
+    link_.join_new();
+  }
+
+  template <typename U> void copy(linked_ptr<U> const* ptr) {
+    value_ = ptr->get();
+    if (value_)
+      link_.join(&ptr->link_);
+    else
+      link_.join_new();
+  }
+};
+
+template<typename T> inline
+bool operator==(T* ptr, const linked_ptr<T>& x) {
+  return ptr == x.get();
+}
+
+template<typename T> inline
+bool operator!=(T* ptr, const linked_ptr<T>& x) {
+  return ptr != x.get();
+}
+
+// A function to convert T* into linked_ptr<T>
+// Doing e.g. make_linked_ptr(new FooBarBaz<type>(arg)) is a shorter notation
+// for linked_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))
+template <typename T>
+linked_ptr<T> make_linked_ptr(T* ptr) {
+  return linked_ptr<T>(ptr);
+}
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_
+// Copyright 2007, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+// Google Test - The Google C++ Testing Framework
+//
+// This file implements a universal value printer that can print a
+// value of any type T:
+//
+//   void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);
+//
+// A user can teach this function how to print a class type T by
+// defining either operator<<() or PrintTo() in the namespace that
+// defines T.  More specifically, the FIRST defined function in the
+// following list will be used (assuming T is defined in namespace
+// foo):
+//
+//   1. foo::PrintTo(const T&, ostream*)
+//   2. operator<<(ostream&, const T&) defined in either foo or the
+//      global namespace.
+//
+// If none of the above is defined, it will print the debug string of
+// the value if it is a protocol buffer, or print the raw bytes in the
+// value otherwise.
+//
+// To aid debugging: when T is a reference type, the address of the
+// value is also printed; when T is a (const) char pointer, both the
+// pointer value and the NUL-terminated string it points to are
+// printed.
+//
+// We also provide some convenient wrappers:
+//
+//   // Prints a value to a string.  For a (const or not) char
+//   // pointer, the NUL-terminated string (but not the pointer) is
+//   // printed.
+//   std::string ::testing::PrintToString(const T& value);
+//
+//   // Prints a value tersely: for a reference type, the referenced
+//   // value (but not the address) is printed; for a (const or not) char
+//   // pointer, the NUL-terminated string (but not the pointer) is
+//   // printed.
+//   void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
+//
+//   // Prints value using the type inferred by the compiler.  The difference
+//   // from UniversalTersePrint() is that this function prints both the
+//   // pointer and the NUL-terminated string for a (const or not) char pointer.
+//   void ::testing::internal::UniversalPrint(const T& value, ostream*);
+//
+//   // Prints the fields of a tuple tersely to a string vector, one
+//   // element for each field. Tuple support must be enabled in
+//   // gtest-port.h.
+//   std::vector<string> UniversalTersePrintTupleFieldsToStrings(
+//       const Tuple& value);
+//
+// Known limitation:
+//
+// The print primitives print the elements of an STL-style container
+// using the compiler-inferred type of *iter where iter is a
+// const_iterator of the container.  When const_iterator is an input
+// iterator but not a forward iterator, this inferred type may not
+// match value_type, and the print output may be incorrect.  In
+// practice, this is rarely a problem as for most containers
+// const_iterator is a forward iterator.  We'll fix this if there's an
+// actual need for it.  Note that this fix cannot rely on value_type
+// being defined as many user-defined container types don't have
+// value_type.
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_
+#define GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_
+
+#include <ostream>  // NOLINT
+#include <sstream>
+#include <string>
+#include <utility>
+#include <vector>
+
+namespace testing {
+
+// Definitions in the 'internal' and 'internal2' name spaces are
+// subject to change without notice.  DO NOT USE THEM IN USER CODE!
+namespace internal2 {
+
+// Prints the given number of bytes in the given object to the given
+// ostream.
+GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes,
+                                     size_t count,
+                                     ::std::ostream* os);
+
+// For selecting which printer to use when a given type has neither <<
+// nor PrintTo().
+enum TypeKind {
+  kProtobuf,              // a protobuf type
+  kConvertibleToInteger,  // a type implicitly convertible to BiggestInt
+                          // (e.g. a named or unnamed enum type)
+  kOtherType              // anything else
+};
+
+// TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
+// by the universal printer to print a value of type T when neither
+// operator<< nor PrintTo() is defined for T, where kTypeKind is the
+// "kind" of T as defined by enum TypeKind.
+template <typename T, TypeKind kTypeKind>
+class TypeWithoutFormatter {
+ public:
+  // This default version is called when kTypeKind is kOtherType.
+  static void PrintValue(const T& value, ::std::ostream* os) {
+    PrintBytesInObjectTo(reinterpret_cast<const unsigned char*>(&value),
+                         sizeof(value), os);
+  }
+};
+
+// We print a protobuf using its ShortDebugString() when the string
+// doesn't exceed this many characters; otherwise we print it using
+// DebugString() for better readability.
+const size_t kProtobufOneLinerMaxLength = 50;
+
+template <typename T>
+class TypeWithoutFormatter<T, kProtobuf> {
+ public:
+  static void PrintValue(const T& value, ::std::ostream* os) {
+    const ::testing::internal::string short_str = value.ShortDebugString();
+    const ::testing::internal::string pretty_str =
+        short_str.length() <= kProtobufOneLinerMaxLength ?
+        short_str : ("\n" + value.DebugString());
+    *os << ("<" + pretty_str + ">");
+  }
+};
+
+template <typename T>
+class TypeWithoutFormatter<T, kConvertibleToInteger> {
+ public:
+  // Since T has no << operator or PrintTo() but can be implicitly
+  // converted to BiggestInt, we print it as a BiggestInt.
+  //
+  // Most likely T is an enum type (either named or unnamed), in which
+  // case printing it as an integer is the desired behavior.  In case
+  // T is not an enum, printing it as an integer is the best we can do
+  // given that it has no user-defined printer.
+  static void PrintValue(const T& value, ::std::ostream* os) {
+    const internal::BiggestInt kBigInt = value;
+    *os << kBigInt;
+  }
+};
+
+// Prints the given value to the given ostream.  If the value is a
+// protocol message, its debug string is printed; if it's an enum or
+// of a type implicitly convertible to BiggestInt, it's printed as an
+// integer; otherwise the bytes in the value are printed.  This is
+// what UniversalPrinter<T>::Print() does when it knows nothing about
+// type T and T has neither << operator nor PrintTo().
+//
+// A user can override this behavior for a class type Foo by defining
+// a << operator in the namespace where Foo is defined.
+//
+// We put this operator in namespace 'internal2' instead of 'internal'
+// to simplify the implementation, as much code in 'internal' needs to
+// use << in STL, which would conflict with our own << were it defined
+// in 'internal'.
+//
+// Note that this operator<< takes a generic std::basic_ostream<Char,
+// CharTraits> type instead of the more restricted std::ostream.  If
+// we define it to take an std::ostream instead, we'll get an
+// "ambiguous overloads" compiler error when trying to print a type
+// Foo that supports streaming to std::basic_ostream<Char,
+// CharTraits>, as the compiler cannot tell whether
+// operator<<(std::ostream&, const T&) or
+// operator<<(std::basic_stream<Char, CharTraits>, const Foo&) is more
+// specific.
+template <typename Char, typename CharTraits, typename T>
+::std::basic_ostream<Char, CharTraits>& operator<<(
+    ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
+  TypeWithoutFormatter<T,
+      (internal::IsAProtocolMessage<T>::value ? kProtobuf :
+       internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
+       kConvertibleToInteger : kOtherType)>::PrintValue(x, &os);
+  return os;
+}
+
+}  // namespace internal2
+}  // namespace testing
+
+// This namespace MUST NOT BE NESTED IN ::testing, or the name look-up
+// magic needed for implementing UniversalPrinter won't work.
+namespace testing_internal {
+
+// Used to print a value that is not an STL-style container when the
+// user doesn't define PrintTo() for it.
+template <typename T>
+void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
+  // With the following statement, during unqualified name lookup,
+  // testing::internal2::operator<< appears as if it was declared in
+  // the nearest enclosing namespace that contains both
+  // ::testing_internal and ::testing::internal2, i.e. the global
+  // namespace.  For more details, refer to the C++ Standard section
+  // 7.3.4-1 [namespace.udir].  This allows us to fall back onto
+  // testing::internal2::operator<< in case T doesn't come with a <<
+  // operator.
+  //
+  // We cannot write 'using ::testing::internal2::operator<<;', which
+  // gcc 3.3 fails to compile due to a compiler bug.
+  using namespace ::testing::internal2;  // NOLINT
+
+  // Assuming T is defined in namespace foo, in the next statement,
+  // the compiler will consider all of:
+  //
+  //   1. foo::operator<< (thanks to Koenig look-up),
+  //   2. ::operator<< (as the current namespace is enclosed in ::),
+  //   3. testing::internal2::operator<< (thanks to the using statement above).
+  //
+  // The operator<< whose type matches T best will be picked.
+  //
+  // We deliberately allow #2 to be a candidate, as sometimes it's
+  // impossible to define #1 (e.g. when foo is ::std, defining
+  // anything in it is undefined behavior unless you are a compiler
+  // vendor.).
+  *os << value;
+}
+
+}  // namespace testing_internal
+
+namespace testing {
+namespace internal {
+
+// UniversalPrinter<T>::Print(value, ostream_ptr) prints the given
+// value to the given ostream.  The caller must ensure that
+// 'ostream_ptr' is not NULL, or the behavior is undefined.
+//
+// We define UniversalPrinter as a class template (as opposed to a
+// function template), as we need to partially specialize it for
+// reference types, which cannot be done with function templates.
+template <typename T>
+class UniversalPrinter;
+
+template <typename T>
+void UniversalPrint(const T& value, ::std::ostream* os);
+
+// Used to print an STL-style container when the user doesn't define
+// a PrintTo() for it.
+template <typename C>
+void DefaultPrintTo(IsContainer /* dummy */,
+                    false_type /* is not a pointer */,
+                    const C& container, ::std::ostream* os) {
+  const size_t kMaxCount = 32;  // The maximum number of elements to print.
+  *os << '{';
+  size_t count = 0;
+  for (typename C::const_iterator it = container.begin();
+       it != container.end(); ++it, ++count) {
+    if (count > 0) {
+      *os << ',';
+      if (count == kMaxCount) {  // Enough has been printed.
+        *os << " ...";
+        break;
+      }
+    }
+    *os << ' ';
+    // We cannot call PrintTo(*it, os) here as PrintTo() doesn't
+    // handle *it being a native array.
+    internal::UniversalPrint(*it, os);
+  }
+
+  if (count > 0) {
+    *os << ' ';
+  }
+  *os << '}';
+}
+
+// Used to print a pointer that is neither a char pointer nor a member
+// pointer, when the user doesn't define PrintTo() for it.  (A member
+// variable pointer or member function pointer doesn't really point to
+// a location in the address space.  Their representation is
+// implementation-defined.  Therefore they will be printed as raw
+// bytes.)
+template <typename T>
+void DefaultPrintTo(IsNotContainer /* dummy */,
+                    true_type /* is a pointer */,
+                    T* p, ::std::ostream* os) {
+  if (p == NULL) {
+    *os << "NULL";
+  } else {
+    // C++ doesn't allow casting from a function pointer to any object
+    // pointer.
+    //
+    // IsTrue() silences warnings: "Condition is always true",
+    // "unreachable code".
+    if (IsTrue(ImplicitlyConvertible<T*, const void*>::value)) {
+      // T is not a function type.  We just call << to print p,
+      // relying on ADL to pick up user-defined << for their pointer
+      // types, if any.
+      *os << p;
+    } else {
+      // T is a function type, so '*os << p' doesn't do what we want
+      // (it just prints p as bool).  We want to print p as a const
+      // void*.  However, we cannot cast it to const void* directly,
+      // even using reinterpret_cast, as earlier versions of gcc
+      // (e.g. 3.4.5) cannot compile the cast when p is a function
+      // pointer.  Casting to UInt64 first solves the problem.
+      *os << reinterpret_cast<const void*>(
+          reinterpret_cast<internal::UInt64>(p));
+    }
+  }
+}
+
+// Used to print a non-container, non-pointer value when the user
+// doesn't define PrintTo() for it.
+template <typename T>
+void DefaultPrintTo(IsNotContainer /* dummy */,
+                    false_type /* is not a pointer */,
+                    const T& value, ::std::ostream* os) {
+  ::testing_internal::DefaultPrintNonContainerTo(value, os);
+}
+
+// Prints the given value using the << operator if it has one;
+// otherwise prints the bytes in it.  This is what
+// UniversalPrinter<T>::Print() does when PrintTo() is not specialized
+// or overloaded for type T.
+//
+// A user can override this behavior for a class type Foo by defining
+// an overload of PrintTo() in the namespace where Foo is defined.  We
+// give the user this option as sometimes defining a << operator for
+// Foo is not desirable (e.g. the coding style may prevent doing it,
+// or there is already a << operator but it doesn't do what the user
+// wants).
+template <typename T>
+void PrintTo(const T& value, ::std::ostream* os) {
+  // DefaultPrintTo() is overloaded.  The type of its first two
+  // arguments determine which version will be picked.  If T is an
+  // STL-style container, the version for container will be called; if
+  // T is a pointer, the pointer version will be called; otherwise the
+  // generic version will be called.
+  //
+  // Note that we check for container types here, prior to we check
+  // for protocol message types in our operator<<.  The rationale is:
+  //
+  // For protocol messages, we want to give people a chance to
+  // override Google Mock's format by defining a PrintTo() or
+  // operator<<.  For STL containers, other formats can be
+  // incompatible with Google Mock's format for the container
+  // elements; therefore we check for container types here to ensure
+  // that our format is used.
+  //
+  // The second argument of DefaultPrintTo() is needed to bypass a bug
+  // in Symbian's C++ compiler that prevents it from picking the right
+  // overload between:
+  //
+  //   PrintTo(const T& x, ...);
+  //   PrintTo(T* x, ...);
+  DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
+}
+
+// The following list of PrintTo() overloads tells
+// UniversalPrinter<T>::Print() how to print standard types (built-in
+// types, strings, plain arrays, and pointers).
+
+// Overloads for various char types.
+GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os);
+GTEST_API_ void PrintTo(signed char c, ::std::ostream* os);
+inline void PrintTo(char c, ::std::ostream* os) {
+  // When printing a plain char, we always treat it as unsigned.  This
+  // way, the output won't be affected by whether the compiler thinks
+  // char is signed or not.
+  PrintTo(static_cast<unsigned char>(c), os);
+}
+
+// Overloads for other simple built-in types.
+inline void PrintTo(bool x, ::std::ostream* os) {
+  *os << (x ? "true" : "false");
+}
+
+// Overload for wchar_t type.
+// Prints a wchar_t as a symbol if it is printable or as its internal
+// code otherwise and also as its decimal code (except for L'\0').
+// The L'\0' char is printed as "L'\\0'". The decimal code is printed
+// as signed integer when wchar_t is implemented by the compiler
+// as a signed type and is printed as an unsigned integer when wchar_t
+// is implemented as an unsigned type.
+GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os);
+
+// Overloads for C strings.
+GTEST_API_ void PrintTo(const char* s, ::std::ostream* os);
+inline void PrintTo(char* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const char*>(s), os);
+}
+
+// signed/unsigned char is often used for representing binary data, so
+// we print pointers to it as void* to be safe.
+inline void PrintTo(const signed char* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const void*>(s), os);
+}
+inline void PrintTo(signed char* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const void*>(s), os);
+}
+inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const void*>(s), os);
+}
+inline void PrintTo(unsigned char* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const void*>(s), os);
+}
+
+// MSVC can be configured to define wchar_t as a typedef of unsigned
+// short.  It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native
+// type.  When wchar_t is a typedef, defining an overload for const
+// wchar_t* would cause unsigned short* be printed as a wide string,
+// possibly causing invalid memory accesses.
+#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED)
+// Overloads for wide C strings
+GTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os);
+inline void PrintTo(wchar_t* s, ::std::ostream* os) {
+  PrintTo(ImplicitCast_<const wchar_t*>(s), os);
+}
+#endif
+
+// Overload for C arrays.  Multi-dimensional arrays are printed
+// properly.
+
+// Prints the given number of elements in an array, without printing
+// the curly braces.
+template <typename T>
+void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
+  UniversalPrint(a[0], os);
+  for (size_t i = 1; i != count; i++) {
+    *os << ", ";
+    UniversalPrint(a[i], os);
+  }
+}
+
+// Overloads for ::string and ::std::string.
+#if GTEST_HAS_GLOBAL_STRING
+GTEST_API_ void PrintStringTo(const ::string&s, ::std::ostream* os);
+inline void PrintTo(const ::string& s, ::std::ostream* os) {
+  PrintStringTo(s, os);
+}
+#endif  // GTEST_HAS_GLOBAL_STRING
+
+GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os);
+inline void PrintTo(const ::std::string& s, ::std::ostream* os) {
+  PrintStringTo(s, os);
+}
+
+// Overloads for ::wstring and ::std::wstring.
+#if GTEST_HAS_GLOBAL_WSTRING
+GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os);
+inline void PrintTo(const ::wstring& s, ::std::ostream* os) {
+  PrintWideStringTo(s, os);
+}
+#endif  // GTEST_HAS_GLOBAL_WSTRING
+
+#if GTEST_HAS_STD_WSTRING
+GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os);
+inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) {
+  PrintWideStringTo(s, os);
+}
+#endif  // GTEST_HAS_STD_WSTRING
+
+#if GTEST_HAS_TR1_TUPLE
+// Overload for ::std::tr1::tuple.  Needed for printing function arguments,
+// which are packed as tuples.
+
+// Helper function for printing a tuple.  T must be instantiated with
+// a tuple type.
+template <typename T>
+void PrintTupleTo(const T& t, ::std::ostream* os);
+
+// Overloaded PrintTo() for tuples of various arities.  We support
+// tuples of up-to 10 fields.  The following implementation works
+// regardless of whether tr1::tuple is implemented using the
+// non-standard variadic template feature or not.
+
+inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1>
+void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2>
+void PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3>& t, ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4>& t, ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5>& t,
+             ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+          typename T6>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6>& t,
+             ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+          typename T6, typename T7>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7>& t,
+             ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+          typename T6, typename T7, typename T8>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8>& t,
+             ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+          typename T6, typename T7, typename T8, typename T9>
+void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>& t,
+             ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+          typename T6, typename T7, typename T8, typename T9, typename T10>
+void PrintTo(
+    const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& t,
+    ::std::ostream* os) {
+  PrintTupleTo(t, os);
+}
+#endif  // GTEST_HAS_TR1_TUPLE
+
+// Overload for std::pair.
+template <typename T1, typename T2>
+void PrintTo(const ::std::pair<T1, T2>& value, ::std::ostream* os) {
+  *os << '(';
+  // We cannot use UniversalPrint(value.first, os) here, as T1 may be
+  // a reference type.  The same for printing value.second.
+  UniversalPrinter<T1>::Print(value.first, os);
+  *os << ", ";
+  UniversalPrinter<T2>::Print(value.second, os);
+  *os << ')';
+}
+
+// Implements printing a non-reference type T by letting the compiler
+// pick the right overload of PrintTo() for T.
+template <typename T>
+class UniversalPrinter {
+ public:
+  // MSVC warns about adding const to a function type, so we want to
+  // disable the warning.
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4180)  // Temporarily disables warning 4180.
+#endif  // _MSC_VER
+
+  // Note: we deliberately don't call this PrintTo(), as that name
+  // conflicts with ::testing::internal::PrintTo in the body of the
+  // function.
+  static void Print(const T& value, ::std::ostream* os) {
+    // By default, ::testing::internal::PrintTo() is used for printing
+    // the value.
+    //
+    // Thanks to Koenig look-up, if T is a class and has its own
+    // PrintTo() function defined in its namespace, that function will
+    // be visible here.  Since it is more specific than the generic ones
+    // in ::testing::internal, it will be picked by the compiler in the
+    // following statement - exactly what we want.
+    PrintTo(value, os);
+  }
+
+#ifdef _MSC_VER
+# pragma warning(pop)           // Restores the warning state.
+#endif  // _MSC_VER
+};
+
+// UniversalPrintArray(begin, len, os) prints an array of 'len'
+// elements, starting at address 'begin'.
+template <typename T>
+void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) {
+  if (len == 0) {
+    *os << "{}";
+  } else {
+    *os << "{ ";
+    const size_t kThreshold = 18;
+    const size_t kChunkSize = 8;
+    // If the array has more than kThreshold elements, we'll have to
+    // omit some details by printing only the first and the last
+    // kChunkSize elements.
+    // TODO(wan@google.com): let the user control the threshold using a flag.
+    if (len <= kThreshold) {
+      PrintRawArrayTo(begin, len, os);
+    } else {
+      PrintRawArrayTo(begin, kChunkSize, os);
+      *os << ", ..., ";
+      PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os);
+    }
+    *os << " }";
+  }
+}
+// This overload prints a (const) char array compactly.
+GTEST_API_ void UniversalPrintArray(const char* begin,
+                                    size_t len,
+                                    ::std::ostream* os);
+
+// Implements printing an array type T[N].
+template <typename T, size_t N>
+class UniversalPrinter<T[N]> {
+ public:
+  // Prints the given array, omitting some elements when there are too
+  // many.
+  static void Print(const T (&a)[N], ::std::ostream* os) {
+    UniversalPrintArray(a, N, os);
+  }
+};
+
+// Implements printing a reference type T&.
+template <typename T>
+class UniversalPrinter<T&> {
+ public:
+  // MSVC warns about adding const to a function type, so we want to
+  // disable the warning.
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4180)  // Temporarily disables warning 4180.
+#endif  // _MSC_VER
+
+  static void Print(const T& value, ::std::ostream* os) {
+    // Prints the address of the value.  We use reinterpret_cast here
+    // as static_cast doesn't compile when T is a function type.
+    *os << "@" << reinterpret_cast<const void*>(&value) << " ";
+
+    // Then prints the value itself.
+    UniversalPrint(value, os);
+  }
+
+#ifdef _MSC_VER
+# pragma warning(pop)           // Restores the warning state.
+#endif  // _MSC_VER
+};
+
+// Prints a value tersely: for a reference type, the referenced value
+// (but not the address) is printed; for a (const) char pointer, the
+// NUL-terminated string (but not the pointer) is printed.
+template <typename T>
+void UniversalTersePrint(const T& value, ::std::ostream* os) {
+  UniversalPrint(value, os);
+}
+inline void UniversalTersePrint(const char* str, ::std::ostream* os) {
+  if (str == NULL) {
+    *os << "NULL";
+  } else {
+    UniversalPrint(string(str), os);
+  }
+}
+inline void UniversalTersePrint(char* str, ::std::ostream* os) {
+  UniversalTersePrint(static_cast<const char*>(str), os);
+}
+
+// Prints a value using the type inferred by the compiler.  The
+// difference between this and UniversalTersePrint() is that for a
+// (const) char pointer, this prints both the pointer and the
+// NUL-terminated string.
+template <typename T>
+void UniversalPrint(const T& value, ::std::ostream* os) {
+  UniversalPrinter<T>::Print(value, os);
+}
+
+#if GTEST_HAS_TR1_TUPLE
+typedef ::std::vector<string> Strings;
+
+// This helper template allows PrintTo() for tuples and
+// UniversalTersePrintTupleFieldsToStrings() to be defined by
+// induction on the number of tuple fields.  The idea is that
+// TuplePrefixPrinter<N>::PrintPrefixTo(t, os) prints the first N
+// fields in tuple t, and can be defined in terms of
+// TuplePrefixPrinter<N - 1>.
+
+// The inductive case.
+template <size_t N>
+struct TuplePrefixPrinter {
+  // Prints the first N fields of a tuple.
+  template <typename Tuple>
+  static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
+    TuplePrefixPrinter<N - 1>::PrintPrefixTo(t, os);
+    *os << ", ";
+    UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
+        ::Print(::std::tr1::get<N - 1>(t), os);
+  }
+
+  // Tersely prints the first N fields of a tuple to a string vector,
+  // one element for each field.
+  template <typename Tuple>
+  static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
+    TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
+    ::std::stringstream ss;
+    UniversalTersePrint(::std::tr1::get<N - 1>(t), &ss);
+    strings->push_back(ss.str());
+  }
+};
+
+// Base cases.
+template <>
+struct TuplePrefixPrinter<0> {
+  template <typename Tuple>
+  static void PrintPrefixTo(const Tuple&, ::std::ostream*) {}
+
+  template <typename Tuple>
+  static void TersePrintPrefixToStrings(const Tuple&, Strings*) {}
+};
+// We have to specialize the entire TuplePrefixPrinter<> class
+// template here, even though the definition of
+// TersePrintPrefixToStrings() is the same as the generic version, as
+// Embarcadero (formerly CodeGear, formerly Borland) C++ doesn't
+// support specializing a method template of a class template.
+template <>
+struct TuplePrefixPrinter<1> {
+  template <typename Tuple>
+  static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
+    UniversalPrinter<typename ::std::tr1::tuple_element<0, Tuple>::type>::
+        Print(::std::tr1::get<0>(t), os);
+  }
+
+  template <typename Tuple>
+  static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
+    ::std::stringstream ss;
+    UniversalTersePrint(::std::tr1::get<0>(t), &ss);
+    strings->push_back(ss.str());
+  }
+};
+
+// Helper function for printing a tuple.  T must be instantiated with
+// a tuple type.
+template <typename T>
+void PrintTupleTo(const T& t, ::std::ostream* os) {
+  *os << "(";
+  TuplePrefixPrinter< ::std::tr1::tuple_size<T>::value>::
+      PrintPrefixTo(t, os);
+  *os << ")";
+}
+
+// Prints the fields of a tuple tersely to a string vector, one
+// element for each field.  See the comment before
+// UniversalTersePrint() for how we define "tersely".
+template <typename Tuple>
+Strings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) {
+  Strings result;
+  TuplePrefixPrinter< ::std::tr1::tuple_size<Tuple>::value>::
+      TersePrintPrefixToStrings(value, &result);
+  return result;
+}
+#endif  // GTEST_HAS_TR1_TUPLE
+
+}  // namespace internal
+
+template <typename T>
+::std::string PrintToString(const T& value) {
+  ::std::stringstream ss;
+  internal::UniversalTersePrint(value, &ss);
+  return ss.str();
+}
+
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_
+
+#if GTEST_HAS_PARAM_TEST
+
+namespace testing {
+namespace internal {
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Outputs a message explaining invalid registration of different
+// fixture class for the same test case. This may happen when
+// TEST_P macro is used to define two tests with the same name
+// but in different namespaces.
+GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name,
+                                          const char* file, int line);
+
+template <typename> class ParamGeneratorInterface;
+template <typename> class ParamGenerator;
+
+// Interface for iterating over elements provided by an implementation
+// of ParamGeneratorInterface<T>.
+template <typename T>
+class ParamIteratorInterface {
+ public:
+  virtual ~ParamIteratorInterface() {}
+  // A pointer to the base generator instance.
+  // Used only for the purposes of iterator comparison
+  // to make sure that two iterators belong to the same generator.
+  virtual const ParamGeneratorInterface<T>* BaseGenerator() const = 0;
+  // Advances iterator to point to the next element
+  // provided by the generator. The caller is responsible
+  // for not calling Advance() on an iterator equal to
+  // BaseGenerator()->End().
+  virtual void Advance() = 0;
+  // Clones the iterator object. Used for implementing copy semantics
+  // of ParamIterator<T>.
+  virtual ParamIteratorInterface* Clone() const = 0;
+  // Dereferences the current iterator and provides (read-only) access
+  // to the pointed value. It is the caller's responsibility not to call
+  // Current() on an iterator equal to BaseGenerator()->End().
+  // Used for implementing ParamGenerator<T>::operator*().
+  virtual const T* Current() const = 0;
+  // Determines whether the given iterator and other point to the same
+  // element in the sequence generated by the generator.
+  // Used for implementing ParamGenerator<T>::operator==().
+  virtual bool Equals(const ParamIteratorInterface& other) const = 0;
+};
+
+// Class iterating over elements provided by an implementation of
+// ParamGeneratorInterface<T>. It wraps ParamIteratorInterface<T>
+// and implements the const forward iterator concept.
+template <typename T>
+class ParamIterator {
+ public:
+  typedef T value_type;
+  typedef const T& reference;
+  typedef ptrdiff_t difference_type;
+
+  // ParamIterator assumes ownership of the impl_ pointer.
+  ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
+  ParamIterator& operator=(const ParamIterator& other) {
+    if (this != &other)
+      impl_.reset(other.impl_->Clone());
+    return *this;
+  }
+
+  const T& operator*() const { return *impl_->Current(); }
+  const T* operator->() const { return impl_->Current(); }
+  // Prefix version of operator++.
+  ParamIterator& operator++() {
+    impl_->Advance();
+    return *this;
+  }
+  // Postfix version of operator++.
+  ParamIterator operator++(int /*unused*/) {
+    ParamIteratorInterface<T>* clone = impl_->Clone();
+    impl_->Advance();
+    return ParamIterator(clone);
+  }
+  bool operator==(const ParamIterator& other) const {
+    return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
+  }
+  bool operator!=(const ParamIterator& other) const {
+    return !(*this == other);
+  }
+
+ private:
+  friend class ParamGenerator<T>;
+  explicit ParamIterator(ParamIteratorInterface<T>* impl) : impl_(impl) {}
+  scoped_ptr<ParamIteratorInterface<T> > impl_;
+};
+
+// ParamGeneratorInterface<T> is the binary interface to access generators
+// defined in other translation units.
+template <typename T>
+class ParamGeneratorInterface {
+ public:
+  typedef T ParamType;
+
+  virtual ~ParamGeneratorInterface() {}
+
+  // Generator interface definition
+  virtual ParamIteratorInterface<T>* Begin() const = 0;
+  virtual ParamIteratorInterface<T>* End() const = 0;
+};
+
+// Wraps ParamGeneratorInterface<T> and provides general generator syntax
+// compatible with the STL Container concept.
+// This class implements copy initialization semantics and the contained
+// ParamGeneratorInterface<T> instance is shared among all copies
+// of the original object. This is possible because that instance is immutable.
+template<typename T>
+class ParamGenerator {
+ public:
+  typedef ParamIterator<T> iterator;
+
+  explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
+  ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
+
+  ParamGenerator& operator=(const ParamGenerator& other) {
+    impl_ = other.impl_;
+    return *this;
+  }
+
+  iterator begin() const { return iterator(impl_->Begin()); }
+  iterator end() const { return iterator(impl_->End()); }
+
+ private:
+  linked_ptr<const ParamGeneratorInterface<T> > impl_;
+};
+
+// Generates values from a range of two comparable values. Can be used to
+// generate sequences of user-defined types that implement operator+() and
+// operator<().
+// This class is used in the Range() function.
+template <typename T, typename IncrementT>
+class RangeGenerator : public ParamGeneratorInterface<T> {
+ public:
+  RangeGenerator(T begin, T end, IncrementT step)
+      : begin_(begin), end_(end),
+        step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
+  virtual ~RangeGenerator() {}
+
+  virtual ParamIteratorInterface<T>* Begin() const {
+    return new Iterator(this, begin_, 0, step_);
+  }
+  virtual ParamIteratorInterface<T>* End() const {
+    return new Iterator(this, end_, end_index_, step_);
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<T> {
+   public:
+    Iterator(const ParamGeneratorInterface<T>* base, T value, int index,
+             IncrementT step)
+        : base_(base), value_(value), index_(index), step_(step) {}
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
+      return base_;
+    }
+    virtual void Advance() {
+      value_ = value_ + step_;
+      index_++;
+    }
+    virtual ParamIteratorInterface<T>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const T* Current() const { return &value_; }
+    virtual bool Equals(const ParamIteratorInterface<T>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const int other_index =
+          CheckedDowncastToActualType<const Iterator>(&other)->index_;
+      return index_ == other_index;
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : ParamIteratorInterface<T>(),
+          base_(other.base_), value_(other.value_), index_(other.index_),
+          step_(other.step_) {}
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<T>* const base_;
+    T value_;
+    int index_;
+    const IncrementT step_;
+  };  // class RangeGenerator::Iterator
+
+  static int CalculateEndIndex(const T& begin,
+                               const T& end,
+                               const IncrementT& step) {
+    int end_index = 0;
+    for (T i = begin; i < end; i = i + step)
+      end_index++;
+    return end_index;
+  }
+
+  // No implementation - assignment is unsupported.
+  void operator=(const RangeGenerator& other);
+
+  const T begin_;
+  const T end_;
+  const IncrementT step_;
+  // The index for the end() iterator. All the elements in the generated
+  // sequence are indexed (0-based) to aid iterator comparison.
+  const int end_index_;
+};  // class RangeGenerator
+
+
+// Generates values from a pair of STL-style iterators. Used in the
+// ValuesIn() function. The elements are copied from the source range
+// since the source can be located on the stack, and the generator
+// is likely to persist beyond that stack frame.
+template <typename T>
+class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface<T> {
+ public:
+  template <typename ForwardIterator>
+  ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end)
+      : container_(begin, end) {}
+  virtual ~ValuesInIteratorRangeGenerator() {}
+
+  virtual ParamIteratorInterface<T>* Begin() const {
+    return new Iterator(this, container_.begin());
+  }
+  virtual ParamIteratorInterface<T>* End() const {
+    return new Iterator(this, container_.end());
+  }
+
+ private:
+  typedef typename ::std::vector<T> ContainerType;
+
+  class Iterator : public ParamIteratorInterface<T> {
+   public:
+    Iterator(const ParamGeneratorInterface<T>* base,
+             typename ContainerType::const_iterator iterator)
+        : base_(base), iterator_(iterator) {}
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
+      return base_;
+    }
+    virtual void Advance() {
+      ++iterator_;
+      value_.reset();
+    }
+    virtual ParamIteratorInterface<T>* Clone() const {
+      return new Iterator(*this);
+    }
+    // We need to use cached value referenced by iterator_ because *iterator_
+    // can return a temporary object (and of type other then T), so just
+    // having "return &*iterator_;" doesn't work.
+    // value_ is updated here and not in Advance() because Advance()
+    // can advance iterator_ beyond the end of the range, and we cannot
+    // detect that fact. The client code, on the other hand, is
+    // responsible for not calling Current() on an out-of-range iterator.
+    virtual const T* Current() const {
+      if (value_.get() == NULL)
+        value_.reset(new T(*iterator_));
+      return value_.get();
+    }
+    virtual bool Equals(const ParamIteratorInterface<T>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      return iterator_ ==
+          CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
+    }
+
+   private:
+    Iterator(const Iterator& other)
+          // The explicit constructor call suppresses a false warning
+          // emitted by gcc when supplied with the -Wextra option.
+        : ParamIteratorInterface<T>(),
+          base_(other.base_),
+          iterator_(other.iterator_) {}
+
+    const ParamGeneratorInterface<T>* const base_;
+    typename ContainerType::const_iterator iterator_;
+    // A cached value of *iterator_. We keep it here to allow access by
+    // pointer in the wrapping iterator's operator->().
+    // value_ needs to be mutable to be accessed in Current().
+    // Use of scoped_ptr helps manage cached value's lifetime,
+    // which is bound by the lifespan of the iterator itself.
+    mutable scoped_ptr<const T> value_;
+  };  // class ValuesInIteratorRangeGenerator::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const ValuesInIteratorRangeGenerator& other);
+
+  const ContainerType container_;
+};  // class ValuesInIteratorRangeGenerator
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Stores a parameter value and later creates tests parameterized with that
+// value.
+template <class TestClass>
+class ParameterizedTestFactory : public TestFactoryBase {
+ public:
+  typedef typename TestClass::ParamType ParamType;
+  explicit ParameterizedTestFactory(ParamType parameter) :
+      parameter_(parameter) {}
+  virtual Test* CreateTest() {
+    TestClass::SetParam(&parameter_);
+    return new TestClass();
+  }
+
+ private:
+  const ParamType parameter_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
+};
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// TestMetaFactoryBase is a base class for meta-factories that create
+// test factories for passing into MakeAndRegisterTestInfo function.
+template <class ParamType>
+class TestMetaFactoryBase {
+ public:
+  virtual ~TestMetaFactoryBase() {}
+
+  virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
+};
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// TestMetaFactory creates test factories for passing into
+// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives
+// ownership of test factory pointer, same factory object cannot be passed
+// into that method twice. But ParameterizedTestCaseInfo is going to call
+// it for each Test/Parameter value combination. Thus it needs meta factory
+// creator class.
+template <class TestCase>
+class TestMetaFactory
+    : public TestMetaFactoryBase<typename TestCase::ParamType> {
+ public:
+  typedef typename TestCase::ParamType ParamType;
+
+  TestMetaFactory() {}
+
+  virtual TestFactoryBase* CreateTestFactory(ParamType parameter) {
+    return new ParameterizedTestFactory<TestCase>(parameter);
+  }
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory);
+};
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// ParameterizedTestCaseInfoBase is a generic interface
+// to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase
+// accumulates test information provided by TEST_P macro invocations
+// and generators provided by INSTANTIATE_TEST_CASE_P macro invocations
+// and uses that information to register all resulting test instances
+// in RegisterTests method. The ParameterizeTestCaseRegistry class holds
+// a collection of pointers to the ParameterizedTestCaseInfo objects
+// and calls RegisterTests() on each of them when asked.
+class ParameterizedTestCaseInfoBase {
+ public:
+  virtual ~ParameterizedTestCaseInfoBase() {}
+
+  // Base part of test case name for display purposes.
+  virtual const string& GetTestCaseName() const = 0;
+  // Test case id to verify identity.
+  virtual TypeId GetTestCaseTypeId() const = 0;
+  // UnitTest class invokes this method to register tests in this
+  // test case right before running them in RUN_ALL_TESTS macro.
+  // This method should not be called more then once on any single
+  // instance of a ParameterizedTestCaseInfoBase derived class.
+  virtual void RegisterTests() = 0;
+
+ protected:
+  ParameterizedTestCaseInfoBase() {}
+
+ private:
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase);
+};
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// ParameterizedTestCaseInfo accumulates tests obtained from TEST_P
+// macro invocations for a particular test case and generators
+// obtained from INSTANTIATE_TEST_CASE_P macro invocations for that
+// test case. It registers tests with all values generated by all
+// generators when asked.
+template <class TestCase>
+class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase {
+ public:
+  // ParamType and GeneratorCreationFunc are private types but are required
+  // for declarations of public methods AddTestPattern() and
+  // AddTestCaseInstantiation().
+  typedef typename TestCase::ParamType ParamType;
+  // A function that returns an instance of appropriate generator type.
+  typedef ParamGenerator<ParamType>(GeneratorCreationFunc)();
+
+  explicit ParameterizedTestCaseInfo(const char* name)
+      : test_case_name_(name) {}
+
+  // Test case base name for display purposes.
+  virtual const string& GetTestCaseName() const { return test_case_name_; }
+  // Test case id to verify identity.
+  virtual TypeId GetTestCaseTypeId() const { return GetTypeId<TestCase>(); }
+  // TEST_P macro uses AddTestPattern() to record information
+  // about a single test in a LocalTestInfo structure.
+  // test_case_name is the base name of the test case (without invocation
+  // prefix). test_base_name is the name of an individual test without
+  // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
+  // test case base name and DoBar is test base name.
+  void AddTestPattern(const char* test_case_name,
+                      const char* test_base_name,
+                      TestMetaFactoryBase<ParamType>* meta_factory) {
+    tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
+                                                       test_base_name,
+                                                       meta_factory)));
+  }
+  // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information
+  // about a generator.
+  int AddTestCaseInstantiation(const string& instantiation_name,
+                               GeneratorCreationFunc* func,
+                               const char* /* file */,
+                               int /* line */) {
+    instantiations_.push_back(::std::make_pair(instantiation_name, func));
+    return 0;  // Return value used only to run this method in namespace scope.
+  }
+  // UnitTest class invokes this method to register tests in this test case
+  // test cases right before running tests in RUN_ALL_TESTS macro.
+  // This method should not be called more then once on any single
+  // instance of a ParameterizedTestCaseInfoBase derived class.
+  // UnitTest has a guard to prevent from calling this method more then once.
+  virtual void RegisterTests() {
+    for (typename TestInfoContainer::iterator test_it = tests_.begin();
+         test_it != tests_.end(); ++test_it) {
+      linked_ptr<TestInfo> test_info = *test_it;
+      for (typename InstantiationContainer::iterator gen_it =
+               instantiations_.begin(); gen_it != instantiations_.end();
+               ++gen_it) {
+        const string& instantiation_name = gen_it->first;
+        ParamGenerator<ParamType> generator((*gen_it->second)());
+
+        Message test_case_name_stream;
+        if ( !instantiation_name.empty() )
+          test_case_name_stream << instantiation_name << "/";
+        test_case_name_stream << test_info->test_case_base_name;
+
+        int i = 0;
+        for (typename ParamGenerator<ParamType>::iterator param_it =
+                 generator.begin();
+             param_it != generator.end(); ++param_it, ++i) {
+          Message test_name_stream;
+          test_name_stream << test_info->test_base_name << "/" << i;
+          MakeAndRegisterTestInfo(
+              test_case_name_stream.GetString().c_str(),
+              test_name_stream.GetString().c_str(),
+              NULL,  // No type parameter.
+              PrintToString(*param_it).c_str(),
+              GetTestCaseTypeId(),
+              TestCase::SetUpTestCase,
+              TestCase::TearDownTestCase,
+              test_info->test_meta_factory->CreateTestFactory(*param_it));
+        }  // for param_it
+      }  // for gen_it
+    }  // for test_it
+  }  // RegisterTests
+
+ private:
+  // LocalTestInfo structure keeps information about a single test registered
+  // with TEST_P macro.
+  struct TestInfo {
+    TestInfo(const char* a_test_case_base_name,
+             const char* a_test_base_name,
+             TestMetaFactoryBase<ParamType>* a_test_meta_factory) :
+        test_case_base_name(a_test_case_base_name),
+        test_base_name(a_test_base_name),
+        test_meta_factory(a_test_meta_factory) {}
+
+    const string test_case_base_name;
+    const string test_base_name;
+    const scoped_ptr<TestMetaFactoryBase<ParamType> > test_meta_factory;
+  };
+  typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
+  // Keeps pairs of <Instantiation name, Sequence generator creation function>
+  // received from INSTANTIATE_TEST_CASE_P macros.
+  typedef ::std::vector<std::pair<string, GeneratorCreationFunc*> >
+      InstantiationContainer;
+
+  const string test_case_name_;
+  TestInfoContainer tests_;
+  InstantiationContainer instantiations_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo);
+};  // class ParameterizedTestCaseInfo
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase
+// classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P
+// macros use it to locate their corresponding ParameterizedTestCaseInfo
+// descriptors.
+class ParameterizedTestCaseRegistry {
+ public:
+  ParameterizedTestCaseRegistry() {}
+  ~ParameterizedTestCaseRegistry() {
+    for (TestCaseInfoContainer::iterator it = test_case_infos_.begin();
+         it != test_case_infos_.end(); ++it) {
+      delete *it;
+    }
+  }
+
+  // Looks up or creates and returns a structure containing information about
+  // tests and instantiations of a particular test case.
+  template <class TestCase>
+  ParameterizedTestCaseInfo<TestCase>* GetTestCasePatternHolder(
+      const char* test_case_name,
+      const char* file,
+      int line) {
+    ParameterizedTestCaseInfo<TestCase>* typed_test_info = NULL;
+    for (TestCaseInfoContainer::iterator it = test_case_infos_.begin();
+         it != test_case_infos_.end(); ++it) {
+      if ((*it)->GetTestCaseName() == test_case_name) {
+        if ((*it)->GetTestCaseTypeId() != GetTypeId<TestCase>()) {
+          // Complain about incorrect usage of Google Test facilities
+          // and terminate the program since we cannot guaranty correct
+          // test case setup and tear-down in this case.
+          ReportInvalidTestCaseType(test_case_name,  file, line);
+          posix::Abort();
+        } else {
+          // At this point we are sure that the object we found is of the same
+          // type we are looking for, so we downcast it to that type
+          // without further checks.
+          typed_test_info = CheckedDowncastToActualType<
+              ParameterizedTestCaseInfo<TestCase> >(*it);
+        }
+        break;
+      }
+    }
+    if (typed_test_info == NULL) {
+      typed_test_info = new ParameterizedTestCaseInfo<TestCase>(test_case_name);
+      test_case_infos_.push_back(typed_test_info);
+    }
+    return typed_test_info;
+  }
+  void RegisterTests() {
+    for (TestCaseInfoContainer::iterator it = test_case_infos_.begin();
+         it != test_case_infos_.end(); ++it) {
+      (*it)->RegisterTests();
+    }
+  }
+
+ private:
+  typedef ::std::vector<ParameterizedTestCaseInfoBase*> TestCaseInfoContainer;
+
+  TestCaseInfoContainer test_case_infos_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry);
+};
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  //  GTEST_HAS_PARAM_TEST
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_
+// This file was GENERATED by command:
+//     pump.py gtest-param-util-generated.h.pump
+// DO NOT EDIT BY HAND!!!
+
+// Copyright 2008 Google 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 Google 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.
+//
+// Author: vladl@google.com (Vlad Losev)
+
+// Type and function utilities for implementing parameterized tests.
+// This file is generated by a SCRIPT.  DO NOT EDIT BY HAND!
+//
+// Currently Google Test supports at most 50 arguments in Values,
+// and at most 10 arguments in Combine. Please contact
+// googletestframework@googlegroups.com if you need more.
+// Please note that the number of arguments to Combine is limited
+// by the maximum arity of the implementation of tr1::tuple which is
+// currently set at 10.
+
+#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
+#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
+
+// scripts/fuse_gtest.py depends on gtest's own header being #included
+// *unconditionally*.  Therefore these #includes cannot be moved
+// inside #if GTEST_HAS_PARAM_TEST.
+
+#if GTEST_HAS_PARAM_TEST
+
+namespace testing {
+
+// Forward declarations of ValuesIn(), which is implemented in
+// include/gtest/gtest-param-test.h.
+template <typename ForwardIterator>
+internal::ParamGenerator<
+  typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>
+ValuesIn(ForwardIterator begin, ForwardIterator end);
+
+template <typename T, size_t N>
+internal::ParamGenerator<T> ValuesIn(const T (&array)[N]);
+
+template <class Container>
+internal::ParamGenerator<typename Container::value_type> ValuesIn(
+    const Container& container);
+
+namespace internal {
+
+// Used in the Values() function to provide polymorphic capabilities.
+template <typename T1>
+class ValueArray1 {
+ public:
+  explicit ValueArray1(T1 v1) : v1_(v1) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const { return ValuesIn(&v1_, &v1_ + 1); }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray1& other);
+
+  const T1 v1_;
+};
+
+template <typename T1, typename T2>
+class ValueArray2 {
+ public:
+  ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray2& other);
+
+  const T1 v1_;
+  const T2 v2_;
+};
+
+template <typename T1, typename T2, typename T3>
+class ValueArray3 {
+ public:
+  ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray3& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4>
+class ValueArray4 {
+ public:
+  ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray4& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+class ValueArray5 {
+ public:
+  ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray5& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+class ValueArray6 {
+ public:
+  ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray6& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+class ValueArray7 {
+ public:
+  ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray7& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+class ValueArray8 {
+ public:
+  ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+      T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray8& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+class ValueArray9 {
+ public:
+  ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8,
+      T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray9& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+class ValueArray10 {
+ public:
+  ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray10& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11>
+class ValueArray11 {
+ public:
+  ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),
+      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray11& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12>
+class ValueArray12 {
+ public:
+  ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),
+      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray12& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13>
+class ValueArray13 {
+ public:
+  ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
+      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),
+      v12_(v12), v13_(v13) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray13& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14>
+class ValueArray14 {
+ public:
+  ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray14& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15>
+class ValueArray15 {
+ public:
+  ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray15& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16>
+class ValueArray16 {
+ public:
+  ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),
+      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),
+      v16_(v16) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray16& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17>
+class ValueArray17 {
+ public:
+  ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16,
+      T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray17& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18>
+class ValueArray18 {
+ public:
+  ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray18& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19>
+class ValueArray19 {
+ public:
+  ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),
+      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),
+      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray19& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20>
+class ValueArray20 {
+ public:
+  ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),
+      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),
+      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),
+      v19_(v19), v20_(v20) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray20& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21>
+class ValueArray21 {
+ public:
+  ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
+      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),
+      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),
+      v18_(v18), v19_(v19), v20_(v20), v21_(v21) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray21& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22>
+class ValueArray22 {
+ public:
+  ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray22& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23>
+class ValueArray23 {
+ public:
+  ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_,
+        v23_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray23& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24>
+class ValueArray24 {
+ public:
+  ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),
+      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),
+      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),
+      v22_(v22), v23_(v23), v24_(v24) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray24& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25>
+class ValueArray25 {
+ public:
+  ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24,
+      T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray25& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26>
+class ValueArray26 {
+ public:
+  ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray26& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27>
+class ValueArray27 {
+ public:
+  ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),
+      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),
+      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),
+      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),
+      v26_(v26), v27_(v27) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray27& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28>
+class ValueArray28 {
+ public:
+  ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),
+      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),
+      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),
+      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),
+      v25_(v25), v26_(v26), v27_(v27), v28_(v28) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray28& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29>
+class ValueArray29 {
+ public:
+  ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
+      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),
+      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),
+      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),
+      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray29& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30>
+class ValueArray30 {
+ public:
+  ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray30& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31>
+class ValueArray31 {
+ public:
+  ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30), v31_(v31) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray31& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32>
+class ValueArray32 {
+ public:
+  ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),
+      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),
+      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),
+      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),
+      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray32& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33>
+class ValueArray33 {
+ public:
+  ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32,
+      T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray33& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34>
+class ValueArray34 {
+ public:
+  ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33), v34_(v34) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray34& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35>
+class ValueArray35 {
+ public:
+  ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),
+      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),
+      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),
+      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),
+      v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31),
+      v32_(v32), v33_(v33), v34_(v34), v35_(v35) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_,
+        v35_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray35& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36>
+class ValueArray36 {
+ public:
+  ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),
+      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),
+      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),
+      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),
+      v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30),
+      v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray36& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37>
+class ValueArray37 {
+ public:
+  ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
+      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),
+      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),
+      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),
+      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29),
+      v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35),
+      v36_(v36), v37_(v37) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray37& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38>
+class ValueArray38 {
+ public:
+  ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),
+      v35_(v35), v36_(v36), v37_(v37), v38_(v38) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray38& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39>
+class ValueArray39 {
+ public:
+  ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),
+      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray39& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40>
+class ValueArray40 {
+ public:
+  ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),
+      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),
+      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),
+      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),
+      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33),
+      v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39),
+      v40_(v40) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray40& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41>
+class ValueArray41 {
+ public:
+  ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40,
+      T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),
+      v39_(v39), v40_(v40), v41_(v41) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray41& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42>
+class ValueArray42 {
+ public:
+  ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),
+      v39_(v39), v40_(v40), v41_(v41), v42_(v42) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray42& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43>
+class ValueArray43 {
+ public:
+  ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6),
+      v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13),
+      v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19),
+      v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25),
+      v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31),
+      v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37),
+      v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray43& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44>
+class ValueArray44 {
+ public:
+  ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5),
+      v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12),
+      v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18),
+      v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24),
+      v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30),
+      v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36),
+      v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42),
+      v43_(v43), v44_(v44) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray44& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45>
+class ValueArray45 {
+ public:
+  ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4),
+      v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11),
+      v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17),
+      v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23),
+      v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29),
+      v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35),
+      v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41),
+      v42_(v42), v43_(v43), v44_(v44), v45_(v45) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray45& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46>
+class ValueArray46 {
+ public:
+  ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3),
+      v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),
+      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40),
+      v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray46& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+  const T46 v46_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47>
+class ValueArray47 {
+ public:
+  ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2),
+      v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
+      v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
+      v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
+      v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
+      v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34),
+      v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40),
+      v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46),
+      v47_(v47) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_,
+        v47_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray47& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+  const T46 v46_;
+  const T47 v47_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48>
+class ValueArray48 {
+ public:
+  ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1),
+      v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9),
+      v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15),
+      v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21),
+      v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27),
+      v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33),
+      v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39),
+      v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45),
+      v46_(v46), v47_(v47), v48_(v48) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_,
+        v48_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray48& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+  const T46 v46_;
+  const T47 v47_;
+  const T48 v48_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49>
+class ValueArray49 {
+ public:
+  ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48,
+      T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),
+      v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44),
+      v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_,
+        v48_, v49_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray49& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+  const T46 v46_;
+  const T47 v47_;
+  const T48 v48_;
+  const T49 v49_;
+};
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49, typename T50>
+class ValueArray50 {
+ public:
+  ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+      T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+      T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+      T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+      T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+      T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49,
+      T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7),
+      v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14),
+      v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20),
+      v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26),
+      v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32),
+      v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38),
+      v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44),
+      v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {}
+
+  template <typename T>
+  operator ParamGenerator<T>() const {
+    const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_,
+        v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_,
+        v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_,
+        v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_,
+        v48_, v49_, v50_};
+    return ValuesIn(array);
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const ValueArray50& other);
+
+  const T1 v1_;
+  const T2 v2_;
+  const T3 v3_;
+  const T4 v4_;
+  const T5 v5_;
+  const T6 v6_;
+  const T7 v7_;
+  const T8 v8_;
+  const T9 v9_;
+  const T10 v10_;
+  const T11 v11_;
+  const T12 v12_;
+  const T13 v13_;
+  const T14 v14_;
+  const T15 v15_;
+  const T16 v16_;
+  const T17 v17_;
+  const T18 v18_;
+  const T19 v19_;
+  const T20 v20_;
+  const T21 v21_;
+  const T22 v22_;
+  const T23 v23_;
+  const T24 v24_;
+  const T25 v25_;
+  const T26 v26_;
+  const T27 v27_;
+  const T28 v28_;
+  const T29 v29_;
+  const T30 v30_;
+  const T31 v31_;
+  const T32 v32_;
+  const T33 v33_;
+  const T34 v34_;
+  const T35 v35_;
+  const T36 v36_;
+  const T37 v37_;
+  const T38 v38_;
+  const T39 v39_;
+  const T40 v40_;
+  const T41 v41_;
+  const T42 v42_;
+  const T43 v43_;
+  const T44 v44_;
+  const T45 v45_;
+  const T46 v46_;
+  const T47 v47_;
+  const T48 v48_;
+  const T49 v49_;
+  const T50 v50_;
+};
+
+# if GTEST_HAS_COMBINE
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Generates values from the Cartesian product of values produced
+// by the argument generators.
+//
+template <typename T1, typename T2>
+class CartesianProductGenerator2
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2> ParamType;
+
+  CartesianProductGenerator2(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2)
+      : g1_(g1), g2_(g2) {}
+  virtual ~CartesianProductGenerator2() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current2_;
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator2::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator2& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+};  // class CartesianProductGenerator2
+
+
+template <typename T1, typename T2, typename T3>
+class CartesianProductGenerator3
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3> ParamType;
+
+  CartesianProductGenerator3(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3)
+      : g1_(g1), g2_(g2), g3_(g3) {}
+  virtual ~CartesianProductGenerator3() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current3_;
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator3::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator3& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+};  // class CartesianProductGenerator3
+
+
+template <typename T1, typename T2, typename T3, typename T4>
+class CartesianProductGenerator4
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4> ParamType;
+
+  CartesianProductGenerator4(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {}
+  virtual ~CartesianProductGenerator4() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current4_;
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator4::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator4& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+};  // class CartesianProductGenerator4
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+class CartesianProductGenerator5
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5> ParamType;
+
+  CartesianProductGenerator5(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {}
+  virtual ~CartesianProductGenerator5() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current5_;
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator5::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator5& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+};  // class CartesianProductGenerator5
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+class CartesianProductGenerator6
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5,
+        T6> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5, T6> ParamType;
+
+  CartesianProductGenerator6(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,
+      const ParamGenerator<T6>& g6)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {}
+  virtual ~CartesianProductGenerator6() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5,
+      const ParamGenerator<T6>& g6,
+      const typename ParamGenerator<T6>::iterator& current6)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
+          begin6_(g6.begin()), end6_(g6.end()), current6_(current6)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current6_;
+      if (current6_ == end6_) {
+        current6_ = begin6_;
+        ++current5_;
+      }
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_ &&
+          current6_ == typed_other->current6_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_),
+        begin6_(other.begin6_),
+        end6_(other.end6_),
+        current6_(other.current6_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_, *current6_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_ ||
+          current6_ == end6_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    const typename ParamGenerator<T6>::iterator begin6_;
+    const typename ParamGenerator<T6>::iterator end6_;
+    typename ParamGenerator<T6>::iterator current6_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator6::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator6& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+  const ParamGenerator<T6> g6_;
+};  // class CartesianProductGenerator6
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+class CartesianProductGenerator7
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
+        T7> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7> ParamType;
+
+  CartesianProductGenerator7(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,
+      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {}
+  virtual ~CartesianProductGenerator7() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,
+        g7_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5,
+      const ParamGenerator<T6>& g6,
+      const typename ParamGenerator<T6>::iterator& current6,
+      const ParamGenerator<T7>& g7,
+      const typename ParamGenerator<T7>::iterator& current7)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
+          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),
+          begin7_(g7.begin()), end7_(g7.end()), current7_(current7)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current7_;
+      if (current7_ == end7_) {
+        current7_ = begin7_;
+        ++current6_;
+      }
+      if (current6_ == end6_) {
+        current6_ = begin6_;
+        ++current5_;
+      }
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_ &&
+          current6_ == typed_other->current6_ &&
+          current7_ == typed_other->current7_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_),
+        begin6_(other.begin6_),
+        end6_(other.end6_),
+        current6_(other.current6_),
+        begin7_(other.begin7_),
+        end7_(other.end7_),
+        current7_(other.current7_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_, *current6_, *current7_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_ ||
+          current6_ == end6_ ||
+          current7_ == end7_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    const typename ParamGenerator<T6>::iterator begin6_;
+    const typename ParamGenerator<T6>::iterator end6_;
+    typename ParamGenerator<T6>::iterator current6_;
+    const typename ParamGenerator<T7>::iterator begin7_;
+    const typename ParamGenerator<T7>::iterator end7_;
+    typename ParamGenerator<T7>::iterator current7_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator7::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator7& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+  const ParamGenerator<T6> g6_;
+  const ParamGenerator<T7> g7_;
+};  // class CartesianProductGenerator7
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+class CartesianProductGenerator8
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
+        T7, T8> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8> ParamType;
+
+  CartesianProductGenerator8(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,
+      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,
+      const ParamGenerator<T8>& g8)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7),
+          g8_(g8) {}
+  virtual ~CartesianProductGenerator8() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,
+        g7_.begin(), g8_, g8_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,
+        g8_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5,
+      const ParamGenerator<T6>& g6,
+      const typename ParamGenerator<T6>::iterator& current6,
+      const ParamGenerator<T7>& g7,
+      const typename ParamGenerator<T7>::iterator& current7,
+      const ParamGenerator<T8>& g8,
+      const typename ParamGenerator<T8>::iterator& current8)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
+          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),
+          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),
+          begin8_(g8.begin()), end8_(g8.end()), current8_(current8)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current8_;
+      if (current8_ == end8_) {
+        current8_ = begin8_;
+        ++current7_;
+      }
+      if (current7_ == end7_) {
+        current7_ = begin7_;
+        ++current6_;
+      }
+      if (current6_ == end6_) {
+        current6_ = begin6_;
+        ++current5_;
+      }
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_ &&
+          current6_ == typed_other->current6_ &&
+          current7_ == typed_other->current7_ &&
+          current8_ == typed_other->current8_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_),
+        begin6_(other.begin6_),
+        end6_(other.end6_),
+        current6_(other.current6_),
+        begin7_(other.begin7_),
+        end7_(other.end7_),
+        current7_(other.current7_),
+        begin8_(other.begin8_),
+        end8_(other.end8_),
+        current8_(other.current8_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_, *current6_, *current7_, *current8_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_ ||
+          current6_ == end6_ ||
+          current7_ == end7_ ||
+          current8_ == end8_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    const typename ParamGenerator<T6>::iterator begin6_;
+    const typename ParamGenerator<T6>::iterator end6_;
+    typename ParamGenerator<T6>::iterator current6_;
+    const typename ParamGenerator<T7>::iterator begin7_;
+    const typename ParamGenerator<T7>::iterator end7_;
+    typename ParamGenerator<T7>::iterator current7_;
+    const typename ParamGenerator<T8>::iterator begin8_;
+    const typename ParamGenerator<T8>::iterator end8_;
+    typename ParamGenerator<T8>::iterator current8_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator8::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator8& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+  const ParamGenerator<T6> g6_;
+  const ParamGenerator<T7> g7_;
+  const ParamGenerator<T8> g8_;
+};  // class CartesianProductGenerator8
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+class CartesianProductGenerator9
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
+        T7, T8, T9> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9> ParamType;
+
+  CartesianProductGenerator9(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,
+      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,
+      const ParamGenerator<T8>& g8, const ParamGenerator<T9>& g9)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),
+          g9_(g9) {}
+  virtual ~CartesianProductGenerator9() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,
+        g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,
+        g8_.end(), g9_, g9_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5,
+      const ParamGenerator<T6>& g6,
+      const typename ParamGenerator<T6>::iterator& current6,
+      const ParamGenerator<T7>& g7,
+      const typename ParamGenerator<T7>::iterator& current7,
+      const ParamGenerator<T8>& g8,
+      const typename ParamGenerator<T8>::iterator& current8,
+      const ParamGenerator<T9>& g9,
+      const typename ParamGenerator<T9>::iterator& current9)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
+          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),
+          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),
+          begin8_(g8.begin()), end8_(g8.end()), current8_(current8),
+          begin9_(g9.begin()), end9_(g9.end()), current9_(current9)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current9_;
+      if (current9_ == end9_) {
+        current9_ = begin9_;
+        ++current8_;
+      }
+      if (current8_ == end8_) {
+        current8_ = begin8_;
+        ++current7_;
+      }
+      if (current7_ == end7_) {
+        current7_ = begin7_;
+        ++current6_;
+      }
+      if (current6_ == end6_) {
+        current6_ = begin6_;
+        ++current5_;
+      }
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_ &&
+          current6_ == typed_other->current6_ &&
+          current7_ == typed_other->current7_ &&
+          current8_ == typed_other->current8_ &&
+          current9_ == typed_other->current9_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_),
+        begin6_(other.begin6_),
+        end6_(other.end6_),
+        current6_(other.current6_),
+        begin7_(other.begin7_),
+        end7_(other.end7_),
+        current7_(other.current7_),
+        begin8_(other.begin8_),
+        end8_(other.end8_),
+        current8_(other.current8_),
+        begin9_(other.begin9_),
+        end9_(other.end9_),
+        current9_(other.current9_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_, *current6_, *current7_, *current8_,
+            *current9_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_ ||
+          current6_ == end6_ ||
+          current7_ == end7_ ||
+          current8_ == end8_ ||
+          current9_ == end9_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    const typename ParamGenerator<T6>::iterator begin6_;
+    const typename ParamGenerator<T6>::iterator end6_;
+    typename ParamGenerator<T6>::iterator current6_;
+    const typename ParamGenerator<T7>::iterator begin7_;
+    const typename ParamGenerator<T7>::iterator end7_;
+    typename ParamGenerator<T7>::iterator current7_;
+    const typename ParamGenerator<T8>::iterator begin8_;
+    const typename ParamGenerator<T8>::iterator end8_;
+    typename ParamGenerator<T8>::iterator current8_;
+    const typename ParamGenerator<T9>::iterator begin9_;
+    const typename ParamGenerator<T9>::iterator end9_;
+    typename ParamGenerator<T9>::iterator current9_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator9::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator9& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+  const ParamGenerator<T6> g6_;
+  const ParamGenerator<T7> g7_;
+  const ParamGenerator<T8> g8_;
+  const ParamGenerator<T9> g9_;
+};  // class CartesianProductGenerator9
+
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+class CartesianProductGenerator10
+    : public ParamGeneratorInterface< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
+        T7, T8, T9, T10> > {
+ public:
+  typedef ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> ParamType;
+
+  CartesianProductGenerator10(const ParamGenerator<T1>& g1,
+      const ParamGenerator<T2>& g2, const ParamGenerator<T3>& g3,
+      const ParamGenerator<T4>& g4, const ParamGenerator<T5>& g5,
+      const ParamGenerator<T6>& g6, const ParamGenerator<T7>& g7,
+      const ParamGenerator<T8>& g8, const ParamGenerator<T9>& g9,
+      const ParamGenerator<T10>& g10)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),
+          g9_(g9), g10_(g10) {}
+  virtual ~CartesianProductGenerator10() {}
+
+  virtual ParamIteratorInterface<ParamType>* Begin() const {
+    return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_,
+        g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_,
+        g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin());
+  }
+  virtual ParamIteratorInterface<ParamType>* End() const {
+    return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(),
+        g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_,
+        g8_.end(), g9_, g9_.end(), g10_, g10_.end());
+  }
+
+ private:
+  class Iterator : public ParamIteratorInterface<ParamType> {
+   public:
+    Iterator(const ParamGeneratorInterface<ParamType>* base,
+      const ParamGenerator<T1>& g1,
+      const typename ParamGenerator<T1>::iterator& current1,
+      const ParamGenerator<T2>& g2,
+      const typename ParamGenerator<T2>::iterator& current2,
+      const ParamGenerator<T3>& g3,
+      const typename ParamGenerator<T3>::iterator& current3,
+      const ParamGenerator<T4>& g4,
+      const typename ParamGenerator<T4>::iterator& current4,
+      const ParamGenerator<T5>& g5,
+      const typename ParamGenerator<T5>::iterator& current5,
+      const ParamGenerator<T6>& g6,
+      const typename ParamGenerator<T6>::iterator& current6,
+      const ParamGenerator<T7>& g7,
+      const typename ParamGenerator<T7>::iterator& current7,
+      const ParamGenerator<T8>& g8,
+      const typename ParamGenerator<T8>::iterator& current8,
+      const ParamGenerator<T9>& g9,
+      const typename ParamGenerator<T9>::iterator& current9,
+      const ParamGenerator<T10>& g10,
+      const typename ParamGenerator<T10>::iterator& current10)
+        : base_(base),
+          begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
+          begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
+          begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
+          begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
+          begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
+          begin6_(g6.begin()), end6_(g6.end()), current6_(current6),
+          begin7_(g7.begin()), end7_(g7.end()), current7_(current7),
+          begin8_(g8.begin()), end8_(g8.end()), current8_(current8),
+          begin9_(g9.begin()), end9_(g9.end()), current9_(current9),
+          begin10_(g10.begin()), end10_(g10.end()), current10_(current10)    {
+      ComputeCurrentValue();
+    }
+    virtual ~Iterator() {}
+
+    virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
+      return base_;
+    }
+    // Advance should not be called on beyond-of-range iterators
+    // so no component iterators must be beyond end of range, either.
+    virtual void Advance() {
+      assert(!AtEnd());
+      ++current10_;
+      if (current10_ == end10_) {
+        current10_ = begin10_;
+        ++current9_;
+      }
+      if (current9_ == end9_) {
+        current9_ = begin9_;
+        ++current8_;
+      }
+      if (current8_ == end8_) {
+        current8_ = begin8_;
+        ++current7_;
+      }
+      if (current7_ == end7_) {
+        current7_ = begin7_;
+        ++current6_;
+      }
+      if (current6_ == end6_) {
+        current6_ = begin6_;
+        ++current5_;
+      }
+      if (current5_ == end5_) {
+        current5_ = begin5_;
+        ++current4_;
+      }
+      if (current4_ == end4_) {
+        current4_ = begin4_;
+        ++current3_;
+      }
+      if (current3_ == end3_) {
+        current3_ = begin3_;
+        ++current2_;
+      }
+      if (current2_ == end2_) {
+        current2_ = begin2_;
+        ++current1_;
+      }
+      ComputeCurrentValue();
+    }
+    virtual ParamIteratorInterface<ParamType>* Clone() const {
+      return new Iterator(*this);
+    }
+    virtual const ParamType* Current() const { return &current_value_; }
+    virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
+      // Having the same base generator guarantees that the other
+      // iterator is of the same type and we can downcast.
+      GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
+          << "The program attempted to compare iterators "
+          << "from different generators." << std::endl;
+      const Iterator* typed_other =
+          CheckedDowncastToActualType<const Iterator>(&other);
+      // We must report iterators equal if they both point beyond their
+      // respective ranges. That can happen in a variety of fashions,
+      // so we have to consult AtEnd().
+      return (AtEnd() && typed_other->AtEnd()) ||
+         (
+          current1_ == typed_other->current1_ &&
+          current2_ == typed_other->current2_ &&
+          current3_ == typed_other->current3_ &&
+          current4_ == typed_other->current4_ &&
+          current5_ == typed_other->current5_ &&
+          current6_ == typed_other->current6_ &&
+          current7_ == typed_other->current7_ &&
+          current8_ == typed_other->current8_ &&
+          current9_ == typed_other->current9_ &&
+          current10_ == typed_other->current10_);
+    }
+
+   private:
+    Iterator(const Iterator& other)
+        : base_(other.base_),
+        begin1_(other.begin1_),
+        end1_(other.end1_),
+        current1_(other.current1_),
+        begin2_(other.begin2_),
+        end2_(other.end2_),
+        current2_(other.current2_),
+        begin3_(other.begin3_),
+        end3_(other.end3_),
+        current3_(other.current3_),
+        begin4_(other.begin4_),
+        end4_(other.end4_),
+        current4_(other.current4_),
+        begin5_(other.begin5_),
+        end5_(other.end5_),
+        current5_(other.current5_),
+        begin6_(other.begin6_),
+        end6_(other.end6_),
+        current6_(other.current6_),
+        begin7_(other.begin7_),
+        end7_(other.end7_),
+        current7_(other.current7_),
+        begin8_(other.begin8_),
+        end8_(other.end8_),
+        current8_(other.current8_),
+        begin9_(other.begin9_),
+        end9_(other.end9_),
+        current9_(other.current9_),
+        begin10_(other.begin10_),
+        end10_(other.end10_),
+        current10_(other.current10_) {
+      ComputeCurrentValue();
+    }
+
+    void ComputeCurrentValue() {
+      if (!AtEnd())
+        current_value_ = ParamType(*current1_, *current2_, *current3_,
+            *current4_, *current5_, *current6_, *current7_, *current8_,
+            *current9_, *current10_);
+    }
+    bool AtEnd() const {
+      // We must report iterator past the end of the range when either of the
+      // component iterators has reached the end of its range.
+      return
+          current1_ == end1_ ||
+          current2_ == end2_ ||
+          current3_ == end3_ ||
+          current4_ == end4_ ||
+          current5_ == end5_ ||
+          current6_ == end6_ ||
+          current7_ == end7_ ||
+          current8_ == end8_ ||
+          current9_ == end9_ ||
+          current10_ == end10_;
+    }
+
+    // No implementation - assignment is unsupported.
+    void operator=(const Iterator& other);
+
+    const ParamGeneratorInterface<ParamType>* const base_;
+    // begin[i]_ and end[i]_ define the i-th range that Iterator traverses.
+    // current[i]_ is the actual traversing iterator.
+    const typename ParamGenerator<T1>::iterator begin1_;
+    const typename ParamGenerator<T1>::iterator end1_;
+    typename ParamGenerator<T1>::iterator current1_;
+    const typename ParamGenerator<T2>::iterator begin2_;
+    const typename ParamGenerator<T2>::iterator end2_;
+    typename ParamGenerator<T2>::iterator current2_;
+    const typename ParamGenerator<T3>::iterator begin3_;
+    const typename ParamGenerator<T3>::iterator end3_;
+    typename ParamGenerator<T3>::iterator current3_;
+    const typename ParamGenerator<T4>::iterator begin4_;
+    const typename ParamGenerator<T4>::iterator end4_;
+    typename ParamGenerator<T4>::iterator current4_;
+    const typename ParamGenerator<T5>::iterator begin5_;
+    const typename ParamGenerator<T5>::iterator end5_;
+    typename ParamGenerator<T5>::iterator current5_;
+    const typename ParamGenerator<T6>::iterator begin6_;
+    const typename ParamGenerator<T6>::iterator end6_;
+    typename ParamGenerator<T6>::iterator current6_;
+    const typename ParamGenerator<T7>::iterator begin7_;
+    const typename ParamGenerator<T7>::iterator end7_;
+    typename ParamGenerator<T7>::iterator current7_;
+    const typename ParamGenerator<T8>::iterator begin8_;
+    const typename ParamGenerator<T8>::iterator end8_;
+    typename ParamGenerator<T8>::iterator current8_;
+    const typename ParamGenerator<T9>::iterator begin9_;
+    const typename ParamGenerator<T9>::iterator end9_;
+    typename ParamGenerator<T9>::iterator current9_;
+    const typename ParamGenerator<T10>::iterator begin10_;
+    const typename ParamGenerator<T10>::iterator end10_;
+    typename ParamGenerator<T10>::iterator current10_;
+    ParamType current_value_;
+  };  // class CartesianProductGenerator10::Iterator
+
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductGenerator10& other);
+
+  const ParamGenerator<T1> g1_;
+  const ParamGenerator<T2> g2_;
+  const ParamGenerator<T3> g3_;
+  const ParamGenerator<T4> g4_;
+  const ParamGenerator<T5> g5_;
+  const ParamGenerator<T6> g6_;
+  const ParamGenerator<T7> g7_;
+  const ParamGenerator<T8> g8_;
+  const ParamGenerator<T9> g9_;
+  const ParamGenerator<T10> g10_;
+};  // class CartesianProductGenerator10
+
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Helper classes providing Combine() with polymorphic features. They allow
+// casting CartesianProductGeneratorN<T> to ParamGenerator<U> if T is
+// convertible to U.
+//
+template <class Generator1, class Generator2>
+class CartesianProductHolder2 {
+ public:
+CartesianProductHolder2(const Generator1& g1, const Generator2& g2)
+      : g1_(g1), g2_(g2) {}
+  template <typename T1, typename T2>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2> >(
+        new CartesianProductGenerator2<T1, T2>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder2& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+};  // class CartesianProductHolder2
+
+template <class Generator1, class Generator2, class Generator3>
+class CartesianProductHolder3 {
+ public:
+CartesianProductHolder3(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3)
+      : g1_(g1), g2_(g2), g3_(g3) {}
+  template <typename T1, typename T2, typename T3>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3> >(
+        new CartesianProductGenerator3<T1, T2, T3>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder3& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+};  // class CartesianProductHolder3
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4>
+class CartesianProductHolder4 {
+ public:
+CartesianProductHolder4(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {}
+  template <typename T1, typename T2, typename T3, typename T4>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4> >(
+        new CartesianProductGenerator4<T1, T2, T3, T4>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder4& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+};  // class CartesianProductHolder4
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5>
+class CartesianProductHolder5 {
+ public:
+CartesianProductHolder5(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5> >(
+        new CartesianProductGenerator5<T1, T2, T3, T4, T5>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder5& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+};  // class CartesianProductHolder5
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5, class Generator6>
+class CartesianProductHolder6 {
+ public:
+CartesianProductHolder6(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5,
+    const Generator6& g6)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+      typename T6>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6> >(
+        new CartesianProductGenerator6<T1, T2, T3, T4, T5, T6>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_),
+        static_cast<ParamGenerator<T6> >(g6_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder6& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+  const Generator6 g6_;
+};  // class CartesianProductHolder6
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5, class Generator6, class Generator7>
+class CartesianProductHolder7 {
+ public:
+CartesianProductHolder7(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5,
+    const Generator6& g6, const Generator7& g7)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+      typename T6, typename T7>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6,
+      T7> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7> >(
+        new CartesianProductGenerator7<T1, T2, T3, T4, T5, T6, T7>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_),
+        static_cast<ParamGenerator<T6> >(g6_),
+        static_cast<ParamGenerator<T7> >(g7_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder7& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+  const Generator6 g6_;
+  const Generator7 g7_;
+};  // class CartesianProductHolder7
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5, class Generator6, class Generator7,
+    class Generator8>
+class CartesianProductHolder8 {
+ public:
+CartesianProductHolder8(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5,
+    const Generator6& g6, const Generator7& g7, const Generator8& g8)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7),
+          g8_(g8) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+      typename T6, typename T7, typename T8>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7,
+      T8> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8> >(
+        new CartesianProductGenerator8<T1, T2, T3, T4, T5, T6, T7, T8>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_),
+        static_cast<ParamGenerator<T6> >(g6_),
+        static_cast<ParamGenerator<T7> >(g7_),
+        static_cast<ParamGenerator<T8> >(g8_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder8& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+  const Generator6 g6_;
+  const Generator7 g7_;
+  const Generator8 g8_;
+};  // class CartesianProductHolder8
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5, class Generator6, class Generator7,
+    class Generator8, class Generator9>
+class CartesianProductHolder9 {
+ public:
+CartesianProductHolder9(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5,
+    const Generator6& g6, const Generator7& g7, const Generator8& g8,
+    const Generator9& g9)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),
+          g9_(g9) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+      typename T6, typename T7, typename T8, typename T9>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8,
+      T9> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8,
+        T9> >(
+        new CartesianProductGenerator9<T1, T2, T3, T4, T5, T6, T7, T8, T9>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_),
+        static_cast<ParamGenerator<T6> >(g6_),
+        static_cast<ParamGenerator<T7> >(g7_),
+        static_cast<ParamGenerator<T8> >(g8_),
+        static_cast<ParamGenerator<T9> >(g9_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder9& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+  const Generator6 g6_;
+  const Generator7 g7_;
+  const Generator8 g8_;
+  const Generator9 g9_;
+};  // class CartesianProductHolder9
+
+template <class Generator1, class Generator2, class Generator3,
+    class Generator4, class Generator5, class Generator6, class Generator7,
+    class Generator8, class Generator9, class Generator10>
+class CartesianProductHolder10 {
+ public:
+CartesianProductHolder10(const Generator1& g1, const Generator2& g2,
+    const Generator3& g3, const Generator4& g4, const Generator5& g5,
+    const Generator6& g6, const Generator7& g7, const Generator8& g8,
+    const Generator9& g9, const Generator10& g10)
+      : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8),
+          g9_(g9), g10_(g10) {}
+  template <typename T1, typename T2, typename T3, typename T4, typename T5,
+      typename T6, typename T7, typename T8, typename T9, typename T10>
+  operator ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8,
+      T9, T10> >() const {
+    return ParamGenerator< ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8,
+        T9, T10> >(
+        new CartesianProductGenerator10<T1, T2, T3, T4, T5, T6, T7, T8, T9,
+            T10>(
+        static_cast<ParamGenerator<T1> >(g1_),
+        static_cast<ParamGenerator<T2> >(g2_),
+        static_cast<ParamGenerator<T3> >(g3_),
+        static_cast<ParamGenerator<T4> >(g4_),
+        static_cast<ParamGenerator<T5> >(g5_),
+        static_cast<ParamGenerator<T6> >(g6_),
+        static_cast<ParamGenerator<T7> >(g7_),
+        static_cast<ParamGenerator<T8> >(g8_),
+        static_cast<ParamGenerator<T9> >(g9_),
+        static_cast<ParamGenerator<T10> >(g10_)));
+  }
+
+ private:
+  // No implementation - assignment is unsupported.
+  void operator=(const CartesianProductHolder10& other);
+
+  const Generator1 g1_;
+  const Generator2 g2_;
+  const Generator3 g3_;
+  const Generator4 g4_;
+  const Generator5 g5_;
+  const Generator6 g6_;
+  const Generator7 g7_;
+  const Generator8 g8_;
+  const Generator9 g9_;
+  const Generator10 g10_;
+};  // class CartesianProductHolder10
+
+# endif  // GTEST_HAS_COMBINE
+
+}  // namespace internal
+}  // namespace testing
+
+#endif  //  GTEST_HAS_PARAM_TEST
+
+#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
+
+#if GTEST_HAS_PARAM_TEST
+
+namespace testing {
+
+// Functions producing parameter generators.
+//
+// Google Test uses these generators to produce parameters for value-
+// parameterized tests. When a parameterized test case is instantiated
+// with a particular generator, Google Test creates and runs tests
+// for each element in the sequence produced by the generator.
+//
+// In the following sample, tests from test case FooTest are instantiated
+// each three times with parameter values 3, 5, and 8:
+//
+// class FooTest : public TestWithParam<int> { ... };
+//
+// TEST_P(FooTest, TestThis) {
+// }
+// TEST_P(FooTest, TestThat) {
+// }
+// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8));
+//
+
+// Range() returns generators providing sequences of values in a range.
+//
+// Synopsis:
+// Range(start, end)
+//   - returns a generator producing a sequence of values {start, start+1,
+//     start+2, ..., }.
+// Range(start, end, step)
+//   - returns a generator producing a sequence of values {start, start+step,
+//     start+step+step, ..., }.
+// Notes:
+//   * The generated sequences never include end. For example, Range(1, 5)
+//     returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2)
+//     returns a generator producing {1, 3, 5, 7}.
+//   * start and end must have the same type. That type may be any integral or
+//     floating-point type or a user defined type satisfying these conditions:
+//     * It must be assignable (have operator=() defined).
+//     * It must have operator+() (operator+(int-compatible type) for
+//       two-operand version).
+//     * It must have operator<() defined.
+//     Elements in the resulting sequences will also have that type.
+//   * Condition start < end must be satisfied in order for resulting sequences
+//     to contain any elements.
+//
+template <typename T, typename IncrementT>
+internal::ParamGenerator<T> Range(T start, T end, IncrementT step) {
+  return internal::ParamGenerator<T>(
+      new internal::RangeGenerator<T, IncrementT>(start, end, step));
+}
+
+template <typename T>
+internal::ParamGenerator<T> Range(T start, T end) {
+  return Range(start, end, 1);
+}
+
+// ValuesIn() function allows generation of tests with parameters coming from
+// a container.
+//
+// Synopsis:
+// ValuesIn(const T (&array)[N])
+//   - returns a generator producing sequences with elements from
+//     a C-style array.
+// ValuesIn(const Container& container)
+//   - returns a generator producing sequences with elements from
+//     an STL-style container.
+// ValuesIn(Iterator begin, Iterator end)
+//   - returns a generator producing sequences with elements from
+//     a range [begin, end) defined by a pair of STL-style iterators. These
+//     iterators can also be plain C pointers.
+//
+// Please note that ValuesIn copies the values from the containers
+// passed in and keeps them to generate tests in RUN_ALL_TESTS().
+//
+// Examples:
+//
+// This instantiates tests from test case StringTest
+// each with C-string values of "foo", "bar", and "baz":
+//
+// const char* strings[] = {"foo", "bar", "baz"};
+// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings));
+//
+// This instantiates tests from test case StlStringTest
+// each with STL strings with values "a" and "b":
+//
+// ::std::vector< ::std::string> GetParameterStrings() {
+//   ::std::vector< ::std::string> v;
+//   v.push_back("a");
+//   v.push_back("b");
+//   return v;
+// }
+//
+// INSTANTIATE_TEST_CASE_P(CharSequence,
+//                         StlStringTest,
+//                         ValuesIn(GetParameterStrings()));
+//
+//
+// This will also instantiate tests from CharTest
+// each with parameter values 'a' and 'b':
+//
+// ::std::list<char> GetParameterChars() {
+//   ::std::list<char> list;
+//   list.push_back('a');
+//   list.push_back('b');
+//   return list;
+// }
+// ::std::list<char> l = GetParameterChars();
+// INSTANTIATE_TEST_CASE_P(CharSequence2,
+//                         CharTest,
+//                         ValuesIn(l.begin(), l.end()));
+//
+template <typename ForwardIterator>
+internal::ParamGenerator<
+  typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>
+ValuesIn(ForwardIterator begin, ForwardIterator end) {
+  typedef typename ::testing::internal::IteratorTraits<ForwardIterator>
+      ::value_type ParamType;
+  return internal::ParamGenerator<ParamType>(
+      new internal::ValuesInIteratorRangeGenerator<ParamType>(begin, end));
+}
+
+template <typename T, size_t N>
+internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
+  return ValuesIn(array, array + N);
+}
+
+template <class Container>
+internal::ParamGenerator<typename Container::value_type> ValuesIn(
+    const Container& container) {
+  return ValuesIn(container.begin(), container.end());
+}
+
+// Values() allows generating tests from explicitly specified list of
+// parameters.
+//
+// Synopsis:
+// Values(T v1, T v2, ..., T vN)
+//   - returns a generator producing sequences with elements v1, v2, ..., vN.
+//
+// For example, this instantiates tests from test case BarTest each
+// with values "one", "two", and "three":
+//
+// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
+//
+// This instantiates tests from test case BazTest each with values 1, 2, 3.5.
+// The exact type of values will depend on the type of parameter in BazTest.
+//
+// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
+//
+// Currently, Values() supports from 1 to 50 parameters.
+//
+template <typename T1>
+internal::ValueArray1<T1> Values(T1 v1) {
+  return internal::ValueArray1<T1>(v1);
+}
+
+template <typename T1, typename T2>
+internal::ValueArray2<T1, T2> Values(T1 v1, T2 v2) {
+  return internal::ValueArray2<T1, T2>(v1, v2);
+}
+
+template <typename T1, typename T2, typename T3>
+internal::ValueArray3<T1, T2, T3> Values(T1 v1, T2 v2, T3 v3) {
+  return internal::ValueArray3<T1, T2, T3>(v1, v2, v3);
+}
+
+template <typename T1, typename T2, typename T3, typename T4>
+internal::ValueArray4<T1, T2, T3, T4> Values(T1 v1, T2 v2, T3 v3, T4 v4) {
+  return internal::ValueArray4<T1, T2, T3, T4>(v1, v2, v3, v4);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5>
+internal::ValueArray5<T1, T2, T3, T4, T5> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5) {
+  return internal::ValueArray5<T1, T2, T3, T4, T5>(v1, v2, v3, v4, v5);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6>
+internal::ValueArray6<T1, T2, T3, T4, T5, T6> Values(T1 v1, T2 v2, T3 v3,
+    T4 v4, T5 v5, T6 v6) {
+  return internal::ValueArray6<T1, T2, T3, T4, T5, T6>(v1, v2, v3, v4, v5, v6);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7>
+internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7> Values(T1 v1, T2 v2, T3 v3,
+    T4 v4, T5 v5, T6 v6, T7 v7) {
+  return internal::ValueArray7<T1, T2, T3, T4, T5, T6, T7>(v1, v2, v3, v4, v5,
+      v6, v7);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8>
+internal::ValueArray8<T1, T2, T3, T4, T5, T6, T7, T8> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) {
+  return internal::ValueArray8<T1, T2, T3, T4, T5, T6, T7, T8>(v1, v2, v3, v4,
+      v5, v6, v7, v8);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9>
+internal::ValueArray9<T1, T2, T3, T4, T5, T6, T7, T8, T9> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) {
+  return internal::ValueArray9<T1, T2, T3, T4, T5, T6, T7, T8, T9>(v1, v2, v3,
+      v4, v5, v6, v7, v8, v9);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10>
+internal::ValueArray10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> Values(T1 v1,
+    T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) {
+  return internal::ValueArray10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(v1,
+      v2, v3, v4, v5, v6, v7, v8, v9, v10);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11>
+internal::ValueArray11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10,
+    T11> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11) {
+  return internal::ValueArray11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10,
+      T11>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12>
+internal::ValueArray12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+    T12> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12) {
+  return internal::ValueArray12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13>
+internal::ValueArray13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
+    T13> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13) {
+  return internal::ValueArray13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14>
+internal::ValueArray14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) {
+  return internal::ValueArray14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13,
+      v14);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15>
+internal::ValueArray15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8,
+    T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) {
+  return internal::ValueArray15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12,
+      v13, v14, v15);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16>
+internal::ValueArray16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16) {
+  return internal::ValueArray16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11,
+      v12, v13, v14, v15, v16);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17>
+internal::ValueArray17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17) {
+  return internal::ValueArray17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10,
+      v11, v12, v13, v14, v15, v16, v17);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18>
+internal::ValueArray18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6,
+    T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18) {
+  return internal::ValueArray18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18>(v1, v2, v3, v4, v5, v6, v7, v8, v9,
+      v10, v11, v12, v13, v14, v15, v16, v17, v18);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19>
+internal::ValueArray19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5,
+    T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14,
+    T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) {
+  return internal::ValueArray19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19>(v1, v2, v3, v4, v5, v6, v7, v8,
+      v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20>
+internal::ValueArray20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13,
+    T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) {
+  return internal::ValueArray20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20>(v1, v2, v3, v4, v5, v6, v7,
+      v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21>
+internal::ValueArray21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13,
+    T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) {
+  return internal::ValueArray21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>(v1, v2, v3, v4, v5, v6,
+      v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22>
+internal::ValueArray22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22> Values(T1 v1, T2 v2, T3 v3,
+    T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22) {
+  return internal::ValueArray22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>(v1, v2, v3, v4,
+      v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19,
+      v20, v21, v22);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23>
+internal::ValueArray23<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22, T23 v23) {
+  return internal::ValueArray23<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23>(v1, v2, v3,
+      v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19,
+      v20, v21, v22, v23);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24>
+internal::ValueArray24<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22, T23 v23, T24 v24) {
+  return internal::ValueArray24<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24>(v1, v2,
+      v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18,
+      v19, v20, v21, v22, v23, v24);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25>
+internal::ValueArray25<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25> Values(T1 v1,
+    T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11,
+    T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19,
+    T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) {
+  return internal::ValueArray25<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25>(v1,
+      v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17,
+      v18, v19, v20, v21, v22, v23, v24, v25);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26>
+internal::ValueArray26<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+    T26> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26) {
+  return internal::ValueArray26<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,
+      v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27>
+internal::ValueArray27<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26,
+    T27> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27) {
+  return internal::ValueArray27<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14,
+      v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28>
+internal::ValueArray28<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27,
+    T28> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28) {
+  return internal::ValueArray28<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13,
+      v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27,
+      v28);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29>
+internal::ValueArray29<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28, T29 v29) {
+  return internal::ValueArray29<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12,
+      v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26,
+      v27, v28, v29);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30>
+internal::ValueArray30<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8,
+    T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16,
+    T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24,
+    T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) {
+  return internal::ValueArray30<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11,
+      v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25,
+      v26, v27, v28, v29, v30);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31>
+internal::ValueArray31<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) {
+  return internal::ValueArray31<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10,
+      v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24,
+      v25, v26, v27, v28, v29, v30, v31);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32>
+internal::ValueArray32<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31,
+    T32 v32) {
+  return internal::ValueArray32<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32>(v1, v2, v3, v4, v5, v6, v7, v8, v9,
+      v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23,
+      v24, v25, v26, v27, v28, v29, v30, v31, v32);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33>
+internal::ValueArray33<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6,
+    T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31,
+    T32 v32, T33 v33) {
+  return internal::ValueArray33<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33>(v1, v2, v3, v4, v5, v6, v7, v8,
+      v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23,
+      v24, v25, v26, v27, v28, v29, v30, v31, v32, v33);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34>
+internal::ValueArray34<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5,
+    T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14,
+    T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22,
+    T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30,
+    T31 v31, T32 v32, T33 v33, T34 v34) {
+  return internal::ValueArray34<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34>(v1, v2, v3, v4, v5, v6, v7,
+      v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22,
+      v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35>
+internal::ValueArray35<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13,
+    T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21,
+    T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29,
+    T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) {
+  return internal::ValueArray35<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35>(v1, v2, v3, v4, v5, v6,
+      v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21,
+      v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36>
+internal::ValueArray36<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13,
+    T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21,
+    T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29,
+    T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) {
+  return internal::ValueArray36<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36>(v1, v2, v3, v4,
+      v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19,
+      v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33,
+      v34, v35, v36);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37>
+internal::ValueArray37<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37> Values(T1 v1, T2 v2, T3 v3,
+    T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28,
+    T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36,
+    T37 v37) {
+  return internal::ValueArray37<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37>(v1, v2, v3,
+      v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19,
+      v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33,
+      v34, v35, v36, v37);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38>
+internal::ValueArray38<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28,
+    T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36,
+    T37 v37, T38 v38) {
+  return internal::ValueArray38<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38>(v1, v2,
+      v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18,
+      v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32,
+      v33, v34, v35, v36, v37, v38);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39>
+internal::ValueArray39<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39> Values(T1 v1, T2 v2,
+    T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12,
+    T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20,
+    T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28,
+    T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36,
+    T37 v37, T38 v38, T39 v39) {
+  return internal::ValueArray39<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39>(v1,
+      v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17,
+      v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31,
+      v32, v33, v34, v35, v36, v37, v38, v39);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40>
+internal::ValueArray40<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40> Values(T1 v1,
+    T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11,
+    T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19,
+    T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27,
+    T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35,
+    T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) {
+  return internal::ValueArray40<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,
+      v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29,
+      v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41>
+internal::ValueArray41<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40,
+    T41> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+    T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) {
+  return internal::ValueArray41<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14,
+      v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28,
+      v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42>
+internal::ValueArray42<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41,
+    T42> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+    T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+    T42 v42) {
+  return internal::ValueArray42<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13,
+      v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27,
+      v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41,
+      v42);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43>
+internal::ValueArray43<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42,
+    T43> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+    T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+    T42 v42, T43 v43) {
+  return internal::ValueArray43<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12,
+      v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26,
+      v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40,
+      v41, v42, v43);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44>
+internal::ValueArray44<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9,
+    T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17,
+    T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25,
+    T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33,
+    T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41,
+    T42 v42, T43 v43, T44 v44) {
+  return internal::ValueArray44<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11,
+      v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25,
+      v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39,
+      v40, v41, v42, v43, v44);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45>
+internal::ValueArray45<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8,
+    T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16,
+    T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24,
+    T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32,
+    T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40,
+    T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) {
+  return internal::ValueArray45<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10,
+      v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24,
+      v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38,
+      v39, v40, v41, v42, v43, v44, v45);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46>
+internal::ValueArray46<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31,
+    T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39,
+    T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) {
+  return internal::ValueArray46<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45, T46>(v1, v2, v3, v4, v5, v6, v7, v8, v9,
+      v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23,
+      v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37,
+      v38, v39, v40, v41, v42, v43, v44, v45, v46);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47>
+internal::ValueArray47<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46, T47> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7,
+    T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31,
+    T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39,
+    T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) {
+  return internal::ValueArray47<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45, T46, T47>(v1, v2, v3, v4, v5, v6, v7, v8,
+      v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23,
+      v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37,
+      v38, v39, v40, v41, v42, v43, v44, v45, v46, v47);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48>
+internal::ValueArray48<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46, T47, T48> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6,
+    T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15,
+    T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23,
+    T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31,
+    T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39,
+    T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47,
+    T48 v48) {
+  return internal::ValueArray48<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45, T46, T47, T48>(v1, v2, v3, v4, v5, v6, v7,
+      v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22,
+      v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36,
+      v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49>
+internal::ValueArray49<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46, T47, T48, T49> Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5,
+    T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14,
+    T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22,
+    T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30,
+    T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38,
+    T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46,
+    T47 v47, T48 v48, T49 v49) {
+  return internal::ValueArray49<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45, T46, T47, T48, T49>(v1, v2, v3, v4, v5, v6,
+      v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21,
+      v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35,
+      v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49);
+}
+
+template <typename T1, typename T2, typename T3, typename T4, typename T5,
+    typename T6, typename T7, typename T8, typename T9, typename T10,
+    typename T11, typename T12, typename T13, typename T14, typename T15,
+    typename T16, typename T17, typename T18, typename T19, typename T20,
+    typename T21, typename T22, typename T23, typename T24, typename T25,
+    typename T26, typename T27, typename T28, typename T29, typename T30,
+    typename T31, typename T32, typename T33, typename T34, typename T35,
+    typename T36, typename T37, typename T38, typename T39, typename T40,
+    typename T41, typename T42, typename T43, typename T44, typename T45,
+    typename T46, typename T47, typename T48, typename T49, typename T50>
+internal::ValueArray50<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
+    T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25, T26, T27, T28,
+    T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39, T40, T41, T42, T43,
+    T44, T45, T46, T47, T48, T49, T50> Values(T1 v1, T2 v2, T3 v3, T4 v4,
+    T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13,
+    T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21,
+    T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29,
+    T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37,
+    T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45,
+    T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) {
+  return internal::ValueArray50<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
+      T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
+      T26, T27, T28, T29, T30, T31, T32, T33, T34, T35, T36, T37, T38, T39,
+      T40, T41, T42, T43, T44, T45, T46, T47, T48, T49, T50>(v1, v2, v3, v4,
+      v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19,
+      v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33,
+      v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47,
+      v48, v49, v50);
+}
+
+// Bool() allows generating tests with parameters in a set of (false, true).
+//
+// Synopsis:
+// Bool()
+//   - returns a generator producing sequences with elements {false, true}.
+//
+// It is useful when testing code that depends on Boolean flags. Combinations
+// of multiple flags can be tested when several Bool()'s are combined using
+// Combine() function.
+//
+// In the following example all tests in the test case FlagDependentTest
+// will be instantiated twice with parameters false and true.
+//
+// class FlagDependentTest : public testing::TestWithParam<bool> {
+//   virtual void SetUp() {
+//     external_flag = GetParam();
+//   }
+// }
+// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool());
+//
+inline internal::ParamGenerator<bool> Bool() {
+  return Values(false, true);
+}
+
+# if GTEST_HAS_COMBINE
+// Combine() allows the user to combine two or more sequences to produce
+// values of a Cartesian product of those sequences' elements.
+//
+// Synopsis:
+// Combine(gen1, gen2, ..., genN)
+//   - returns a generator producing sequences with elements coming from
+//     the Cartesian product of elements from the sequences generated by
+//     gen1, gen2, ..., genN. The sequence elements will have a type of
+//     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
+//     of elements from sequences produces by gen1, gen2, ..., genN.
+//
+// Combine can have up to 10 arguments. This number is currently limited
+// by the maximum number of elements in the tuple implementation used by Google
+// Test.
+//
+// Example:
+//
+// This will instantiate tests in test case AnimalTest each one with
+// the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
+// tuple("dog", BLACK), and tuple("dog", WHITE):
+//
+// enum Color { BLACK, GRAY, WHITE };
+// class AnimalTest
+//     : public testing::TestWithParam<tuple<const char*, Color> > {...};
+//
+// TEST_P(AnimalTest, AnimalLooksNice) {...}
+//
+// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest,
+//                         Combine(Values("cat", "dog"),
+//                                 Values(BLACK, WHITE)));
+//
+// This will instantiate tests in FlagDependentTest with all variations of two
+// Boolean flags:
+//
+// class FlagDependentTest
+//     : public testing::TestWithParam<tuple(bool, bool)> > {
+//   virtual void SetUp() {
+//     // Assigns external_flag_1 and external_flag_2 values from the tuple.
+//     tie(external_flag_1, external_flag_2) = GetParam();
+//   }
+// };
+//
+// TEST_P(FlagDependentTest, TestFeature1) {
+//   // Test your code using external_flag_1 and external_flag_2 here.
+// }
+// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest,
+//                         Combine(Bool(), Bool()));
+//
+template <typename Generator1, typename Generator2>
+internal::CartesianProductHolder2<Generator1, Generator2> Combine(
+    const Generator1& g1, const Generator2& g2) {
+  return internal::CartesianProductHolder2<Generator1, Generator2>(
+      g1, g2);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3>
+internal::CartesianProductHolder3<Generator1, Generator2, Generator3> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3) {
+  return internal::CartesianProductHolder3<Generator1, Generator2, Generator3>(
+      g1, g2, g3);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4>
+internal::CartesianProductHolder4<Generator1, Generator2, Generator3,
+    Generator4> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4) {
+  return internal::CartesianProductHolder4<Generator1, Generator2, Generator3,
+      Generator4>(
+      g1, g2, g3, g4);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5>
+internal::CartesianProductHolder5<Generator1, Generator2, Generator3,
+    Generator4, Generator5> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5) {
+  return internal::CartesianProductHolder5<Generator1, Generator2, Generator3,
+      Generator4, Generator5>(
+      g1, g2, g3, g4, g5);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5, typename Generator6>
+internal::CartesianProductHolder6<Generator1, Generator2, Generator3,
+    Generator4, Generator5, Generator6> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5, const Generator6& g6) {
+  return internal::CartesianProductHolder6<Generator1, Generator2, Generator3,
+      Generator4, Generator5, Generator6>(
+      g1, g2, g3, g4, g5, g6);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5, typename Generator6,
+    typename Generator7>
+internal::CartesianProductHolder7<Generator1, Generator2, Generator3,
+    Generator4, Generator5, Generator6, Generator7> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5, const Generator6& g6,
+        const Generator7& g7) {
+  return internal::CartesianProductHolder7<Generator1, Generator2, Generator3,
+      Generator4, Generator5, Generator6, Generator7>(
+      g1, g2, g3, g4, g5, g6, g7);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5, typename Generator6,
+    typename Generator7, typename Generator8>
+internal::CartesianProductHolder8<Generator1, Generator2, Generator3,
+    Generator4, Generator5, Generator6, Generator7, Generator8> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5, const Generator6& g6,
+        const Generator7& g7, const Generator8& g8) {
+  return internal::CartesianProductHolder8<Generator1, Generator2, Generator3,
+      Generator4, Generator5, Generator6, Generator7, Generator8>(
+      g1, g2, g3, g4, g5, g6, g7, g8);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5, typename Generator6,
+    typename Generator7, typename Generator8, typename Generator9>
+internal::CartesianProductHolder9<Generator1, Generator2, Generator3,
+    Generator4, Generator5, Generator6, Generator7, Generator8,
+    Generator9> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5, const Generator6& g6,
+        const Generator7& g7, const Generator8& g8, const Generator9& g9) {
+  return internal::CartesianProductHolder9<Generator1, Generator2, Generator3,
+      Generator4, Generator5, Generator6, Generator7, Generator8, Generator9>(
+      g1, g2, g3, g4, g5, g6, g7, g8, g9);
+}
+
+template <typename Generator1, typename Generator2, typename Generator3,
+    typename Generator4, typename Generator5, typename Generator6,
+    typename Generator7, typename Generator8, typename Generator9,
+    typename Generator10>
+internal::CartesianProductHolder10<Generator1, Generator2, Generator3,
+    Generator4, Generator5, Generator6, Generator7, Generator8, Generator9,
+    Generator10> Combine(
+    const Generator1& g1, const Generator2& g2, const Generator3& g3,
+        const Generator4& g4, const Generator5& g5, const Generator6& g6,
+        const Generator7& g7, const Generator8& g8, const Generator9& g9,
+        const Generator10& g10) {
+  return internal::CartesianProductHolder10<Generator1, Generator2, Generator3,
+      Generator4, Generator5, Generator6, Generator7, Generator8, Generator9,
+      Generator10>(
+      g1, g2, g3, g4, g5, g6, g7, g8, g9, g10);
+}
+# endif  // GTEST_HAS_COMBINE
+
+
+
+# define TEST_P(test_case_name, test_name) \
+  class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
+      : public test_case_name { \
+   public: \
+    GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \
+    virtual void TestBody(); \
+   private: \
+    static int AddToRegistry() { \
+      ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \
+          GetTestCasePatternHolder<test_case_name>(\
+              #test_case_name, __FILE__, __LINE__)->AddTestPattern(\
+                  #test_case_name, \
+                  #test_name, \
+                  new ::testing::internal::TestMetaFactory< \
+                      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \
+      return 0; \
+    } \
+    static int gtest_registering_dummy_; \
+    GTEST_DISALLOW_COPY_AND_ASSIGN_(\
+        GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \
+  }; \
+  int GTEST_TEST_CLASS_NAME_(test_case_name, \
+                             test_name)::gtest_registering_dummy_ = \
+      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \
+  void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()
+
+# define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \
+  ::testing::internal::ParamGenerator<test_case_name::ParamType> \
+      gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
+  int gtest_##prefix##test_case_name##_dummy_ = \
+      ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \
+          GetTestCasePatternHolder<test_case_name>(\
+              #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\
+                  #prefix, \
+                  &gtest_##prefix##test_case_name##_EvalGenerator_, \
+                  __FILE__, __LINE__)
+
+}  // namespace testing
+
+#endif  // GTEST_HAS_PARAM_TEST
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_
+// Copyright 2006, Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+//
+// Google C++ Testing Framework definitions useful in production code.
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_
+#define GTEST_INCLUDE_GTEST_GTEST_PROD_H_
+
+// When you need to test the private or protected members of a class,
+// use the FRIEND_TEST macro to declare your tests as friends of the
+// class.  For example:
+//
+// class MyClass {
+//  private:
+//   void MyMethod();
+//   FRIEND_TEST(MyClassTest, MyMethod);
+// };
+//
+// class MyClassTest : public testing::Test {
+//   // ...
+// };
+//
+// TEST_F(MyClassTest, MyMethod) {
+//   // Can call MyClass::MyMethod() here.
+// }
+
+#define FRIEND_TEST(test_case_name, test_name)\
+friend class test_case_name##_##test_name##_Test
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_PROD_H_
+// Copyright 2008, Google 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 Google 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.
+//
+// Author: mheule@google.com (Markus Heule)
+//
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
+#define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
+
+#include <iosfwd>
+#include <vector>
+
+namespace testing {
+
+// A copyable object representing the result of a test part (i.e. an
+// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()).
+//
+// Don't inherit from TestPartResult as its destructor is not virtual.
+class GTEST_API_ TestPartResult {
+ public:
+  // The possible outcomes of a test part (i.e. an assertion or an
+  // explicit SUCCEED(), FAIL(), or ADD_FAILURE()).
+  enum Type {
+    kSuccess,          // Succeeded.
+    kNonFatalFailure,  // Failed but the test can continue.
+    kFatalFailure      // Failed and the test should be terminated.
+  };
+
+  // C'tor.  TestPartResult does NOT have a default constructor.
+  // Always use this constructor (with parameters) to create a
+  // TestPartResult object.
+  TestPartResult(Type a_type,
+                 const char* a_file_name,
+                 int a_line_number,
+                 const char* a_message)
+      : type_(a_type),
+        file_name_(a_file_name),
+        line_number_(a_line_number),
+        summary_(ExtractSummary(a_message)),
+        message_(a_message) {
+  }
+
+  // Gets the outcome of the test part.
+  Type type() const { return type_; }
+
+  // Gets the name of the source file where the test part took place, or
+  // NULL if it's unknown.
+  const char* file_name() const { return file_name_.c_str(); }
+
+  // Gets the line in the source file where the test part took place,
+  // or -1 if it's unknown.
+  int line_number() const { return line_number_; }
+
+  // Gets the summary of the failure message.
+  const char* summary() const { return summary_.c_str(); }
+
+  // Gets the message associated with the test part.
+  const char* message() const { return message_.c_str(); }
+
+  // Returns true iff the test part passed.
+  bool passed() const { return type_ == kSuccess; }
+
+  // Returns true iff the test part failed.
+  bool failed() const { return type_ != kSuccess; }
+
+  // Returns true iff the test part non-fatally failed.
+  bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
+
+  // Returns true iff the test part fatally failed.
+  bool fatally_failed() const { return type_ == kFatalFailure; }
+ private:
+  Type type_;
+
+  // Gets the summary of the failure message by omitting the stack
+  // trace in it.
+  static internal::String ExtractSummary(const char* message);
+
+  // The name of the source file where the test part took place, or
+  // NULL if the source file is unknown.
+  internal::String file_name_;
+  // The line in the source file where the test part took place, or -1
+  // if the line number is unknown.
+  int line_number_;
+  internal::String summary_;  // The test failure summary.
+  internal::String message_;  // The test failure message.
+};
+
+// Prints a TestPartResult object.
+std::ostream& operator<<(std::ostream& os, const TestPartResult& result);
+
+// An array of TestPartResult objects.
+//
+// Don't inherit from TestPartResultArray as its destructor is not
+// virtual.
+class GTEST_API_ TestPartResultArray {
+ public:
+  TestPartResultArray() {}
+
+  // Appends the given TestPartResult to the array.
+  void Append(const TestPartResult& result);
+
+  // Returns the TestPartResult at the given index (0-based).
+  const TestPartResult& GetTestPartResult(int index) const;
+
+  // Returns the number of TestPartResult objects in the array.
+  int size() const;
+
+ private:
+  std::vector<TestPartResult> array_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);
+};
+
+// This interface knows how to report a test part result.
+class TestPartResultReporterInterface {
+ public:
+  virtual ~TestPartResultReporterInterface() {}
+
+  virtual void ReportTestPartResult(const TestPartResult& result) = 0;
+};
+
+namespace internal {
+
+// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a
+// statement generates new fatal failures. To do so it registers itself as the
+// current test part result reporter. Besides checking if fatal failures were
+// reported, it only delegates the reporting to the former result reporter.
+// The original result reporter is restored in the destructor.
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+class GTEST_API_ HasNewFatalFailureHelper
+    : public TestPartResultReporterInterface {
+ public:
+  HasNewFatalFailureHelper();
+  virtual ~HasNewFatalFailureHelper();
+  virtual void ReportTestPartResult(const TestPartResult& result);
+  bool has_new_fatal_failure() const { return has_new_fatal_failure_; }
+ private:
+  bool has_new_fatal_failure_;
+  TestPartResultReporterInterface* original_reporter_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper);
+};
+
+}  // namespace internal
+
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_
+// Copyright 2008 Google 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 Google 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.
+//
+// Author: wan@google.com (Zhanyong Wan)
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
+#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
+
+// This header implements typed tests and type-parameterized tests.
+
+// Typed (aka type-driven) tests repeat the same test for types in a
+// list.  You must know which types you want to test with when writing
+// typed tests. Here's how you do it:
+
+#if 0
+
+// First, define a fixture class template.  It should be parameterized
+// by a type.  Remember to derive it from testing::Test.
+template <typename T>
+class FooTest : public testing::Test {
+ public:
+  ...
+  typedef std::list<T> List;
+  static T shared_;
+  T value_;
+};
+
+// Next, associate a list of types with the test case, which will be
+// repeated for each type in the list.  The typedef is necessary for
+// the macro to parse correctly.
+typedef testing::Types<char, int, unsigned int> MyTypes;
+TYPED_TEST_CASE(FooTest, MyTypes);
+
+// If the type list contains only one type, you can write that type
+// directly without Types<...>:
+//   TYPED_TEST_CASE(FooTest, int);
+
+// Then, use TYPED_TEST() instead of TEST_F() to define as many typed
+// tests for this test case as you want.
+TYPED_TEST(FooTest, DoesBlah) {
+  // Inside a test, refer to TypeParam to get the type parameter.
+  // Since we are inside a derived class template, C++ requires use to
+  // visit the members of FooTest via 'this'.
+  TypeParam n = this->value_;
+
+  // To visit static members of the fixture, add the TestFixture::
+  // prefix.
+  n += TestFixture::shared_;
+
+  // To refer to typedefs in the fixture, add the "typename
+  // TestFixture::" prefix.
+  typename TestFixture::List values;
+  values.push_back(n);
+  ...
+}
+
+TYPED_TEST(FooTest, HasPropertyA) { ... }
+
+#endif  // 0
+
+// Type-parameterized tests are abstract test patterns parameterized
+// by a type.  Compared with typed tests, type-parameterized tests
+// allow you to define the test pattern without knowing what the type
+// parameters are.  The defined pattern can be instantiated with
+// different types any number of times, in any number of translation
+// units.
+//
+// If you are designing an interface or concept, you can define a
+// suite of type-parameterized tests to verify properties that any
+// valid implementation of the interface/concept should have.  Then,
+// each implementation can easily instantiate the test suite to verify
+// that it conforms to the requirements, without having to write
+// similar tests repeatedly.  Here's an example:
+
+#if 0
+
+// First, define a fixture class template.  It should be parameterized
+// by a type.  Remember to derive it from testing::Test.
+template <typename T>
+class FooTest : public testing::Test {
+  ...
+};
+
+// Next, declare that you will define a type-parameterized test case
+// (the _P suffix is for "parameterized" or "pattern", whichever you
+// prefer):
+TYPED_TEST_CASE_P(FooTest);
+
+// Then, use TYPED_TEST_P() to define as many type-parameterized tests
+// for this type-parameterized test case as you want.
+TYPED_TEST_P(FooTest, DoesBlah) {
+  // Inside a test, refer to TypeParam to get the type parameter.
+  TypeParam n = 0;
+  ...
+}
+
+TYPED_TEST_P(FooTest, HasPropertyA) { ... }
+
+// Now the tricky part: you need to register all test patterns before
+// you can instantiate them.  The first argument of the macro is the
+// test case name; the rest are the names of the tests in this test
+// case.
+REGISTER_TYPED_TEST_CASE_P(FooTest,
+                           DoesBlah, HasPropertyA);
+
+// Finally, you are free to instantiate the pattern with the types you
+// want.  If you put the above code in a header file, you can #include
+// it in multiple C++ source files and instantiate it multiple times.
+//
+// To distinguish different instances of the pattern, the first
+// argument to the INSTANTIATE_* macro is a prefix that will be added
+// to the actual test case name.  Remember to pick unique prefixes for
+// different instances.
+typedef testing::Types<char, int, unsigned int> MyTypes;
+INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes);
+
+// If the type list contains only one type, you can write that type
+// directly without Types<...>:
+//   INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int);
+
+#endif  // 0
+
+
+// Implements typed tests.
+
+#if GTEST_HAS_TYPED_TEST
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Expands to the name of the typedef for the type parameters of the
+// given test case.
+# define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_
+
+// The 'Types' template argument below must have spaces around it
+// since some compilers may choke on '>>' when passing a template
+// instance (e.g. Types<int>)
+# define TYPED_TEST_CASE(CaseName, Types) \
+  typedef ::testing::internal::TypeList< Types >::type \
+      GTEST_TYPE_PARAMS_(CaseName)
+
+# define TYPED_TEST(CaseName, TestName) \
+  template <typename gtest_TypeParam_> \
+  class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
+      : public CaseName<gtest_TypeParam_> { \
+   private: \
+    typedef CaseName<gtest_TypeParam_> TestFixture; \
+    typedef gtest_TypeParam_ TypeParam; \
+    virtual void TestBody(); \
+  }; \
+  bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
+      ::testing::internal::TypeParameterizedTest< \
+          CaseName, \
+          ::testing::internal::TemplateSel< \
+              GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \
+          GTEST_TYPE_PARAMS_(CaseName)>::Register(\
+              "", #CaseName, #TestName, 0); \
+  template <typename gtest_TypeParam_> \
+  void GTEST_TEST_CLASS_NAME_(CaseName, TestName)<gtest_TypeParam_>::TestBody()
+
+#endif  // GTEST_HAS_TYPED_TEST
+
+// Implements type-parameterized tests.
+
+#if GTEST_HAS_TYPED_TEST_P
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Expands to the namespace name that the type-parameterized tests for
+// the given type-parameterized test case are defined in.  The exact
+// name of the namespace is subject to change without notice.
+# define GTEST_CASE_NAMESPACE_(TestCaseName) \
+  gtest_case_##TestCaseName##_
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+//
+// Expands to the name of the variable used to remember the names of
+// the defined tests in the given test case.
+# define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
+  gtest_typed_test_case_p_state_##TestCaseName##_
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
+//
+// Expands to the name of the variable used to remember the names of
+// the registered tests in the given test case.
+# define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \
+  gtest_registered_test_names_##TestCaseName##_
+
+// The variables defined in the type-parameterized test macros are
+// static as typically these macros are used in a .h file that can be
+// #included in multiple translation units linked together.
+# define TYPED_TEST_CASE_P(CaseName) \
+  static ::testing::internal::TypedTestCasePState \
+      GTEST_TYPED_TEST_CASE_P_STATE_(CaseName)
+
+# define TYPED_TEST_P(CaseName, TestName) \
+  namespace GTEST_CASE_NAMESPACE_(CaseName) { \
+  template <typename gtest_TypeParam_> \
+  class TestName : public CaseName<gtest_TypeParam_> { \
+   private: \
+    typedef CaseName<gtest_TypeParam_> TestFixture; \
+    typedef gtest_TypeParam_ TypeParam; \
+    virtual void TestBody(); \
+  }; \
+  static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \
+      GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\
+          __FILE__, __LINE__, #CaseName, #TestName); \
+  } \
+  template <typename gtest_TypeParam_> \
+  void GTEST_CASE_NAMESPACE_(CaseName)::TestName<gtest_TypeParam_>::TestBody()
+
+# define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \
+  namespace GTEST_CASE_NAMESPACE_(CaseName) { \
+  typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
+  } \
+  static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \
+      GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\
+          __FILE__, __LINE__, #__VA_ARGS__)
+
+// The 'Types' template argument below must have spaces around it
+// since some compilers may choke on '>>' when passing a template
+// instance (e.g. Types<int>)
+# define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
+  bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
+      ::testing::internal::TypeParameterizedTestCase<CaseName, \
+          GTEST_CASE_NAMESPACE_(CaseName)::gtest_AllTests_, \
+          ::testing::internal::TypeList< Types >::type>::Register(\
+              #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
+
+#endif  // GTEST_HAS_TYPED_TEST_P
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
+
+// Depending on the platform, different string classes are available.
+// On Linux, in addition to ::std::string, Google also makes use of
+// class ::string, which has the same interface as ::std::string, but
+// has a different implementation.
+//
+// The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that
+// ::string is available AND is a distinct type to ::std::string, or
+// define it to 0 to indicate otherwise.
+//
+// If the user's ::std::string and ::string are the same class due to
+// aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
+//
+// If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined
+// heuristically.
+
+namespace testing {
+
+// Declares the flags.
+
+// This flag temporary enables the disabled tests.
+GTEST_DECLARE_bool_(also_run_disabled_tests);
+
+// This flag brings the debugger on an assertion failure.
+GTEST_DECLARE_bool_(break_on_failure);
+
+// This flag controls whether Google Test catches all test-thrown exceptions
+// and logs them as failures.
+GTEST_DECLARE_bool_(catch_exceptions);
+
+// This flag enables using colors in terminal output. Available values are
+// "yes" to enable colors, "no" (disable colors), or "auto" (the default)
+// to let Google Test decide.
+GTEST_DECLARE_string_(color);
+
+// This flag sets up the filter to select by name using a glob pattern
+// the tests to run. If the filter is not given all tests are executed.
+GTEST_DECLARE_string_(filter);
+
+// This flag causes the Google Test to list tests. None of the tests listed
+// are actually run if the flag is provided.
+GTEST_DECLARE_bool_(list_tests);
+
+// This flag controls whether Google Test emits a detailed XML report to a file
+// in addition to its normal textual output.
+GTEST_DECLARE_string_(output);
+
+// This flags control whether Google Test prints the elapsed time for each
+// test.
+GTEST_DECLARE_bool_(print_time);
+
+// This flag specifies the random number seed.
+GTEST_DECLARE_int32_(random_seed);
+
+// This flag sets how many times the tests are repeated. The default value
+// is 1. If the value is -1 the tests are repeating forever.
+GTEST_DECLARE_int32_(repeat);
+
+// This flag controls whether Google Test includes Google Test internal
+// stack frames in failure stack traces.
+GTEST_DECLARE_bool_(show_internal_stack_frames);
+
+// When this flag is specified, tests' order is randomized on every iteration.
+GTEST_DECLARE_bool_(shuffle);
+
+// This flag specifies the maximum number of stack frames to be
+// printed in a failure message.
+GTEST_DECLARE_int32_(stack_trace_depth);
+
+// When this flag is specified, a failed assertion will throw an
+// exception if exceptions are enabled, or exit the program with a
+// non-zero code otherwise.
+GTEST_DECLARE_bool_(throw_on_failure);
+
+// When this flag is set with a "host:port" string, on supported
+// platforms test results are streamed to the specified port on
+// the specified host machine.
+GTEST_DECLARE_string_(stream_result_to);
+
+// The upper limit for valid stack trace depths.
+const int kMaxStackTraceDepth = 100;
+
+namespace internal {
+
+class AssertHelper;
+class DefaultGlobalTestPartResultReporter;
+class ExecDeathTest;
+class NoExecDeathTest;
+class FinalSuccessChecker;
+class GTestFlagSaver;
+class TestResultAccessor;
+class TestEventListenersAccessor;
+class TestEventRepeater;
+class WindowsDeathTest;
+class UnitTestImpl* GetUnitTestImpl();
+void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
+                                    const String& message);
+
+// Converts a streamable value to a String.  A NULL pointer is
+// converted to "(null)".  When the input value is a ::string,
+// ::std::string, ::wstring, or ::std::wstring object, each NUL
+// character in it is replaced with "\\0".
+// Declared in gtest-internal.h but defined here, so that it has access
+// to the definition of the Message class, required by the ARM
+// compiler.
+template <typename T>
+String StreamableToString(const T& streamable) {
+  return (Message() << streamable).GetString();
+}
+
+}  // namespace internal
+
+// The friend relationship of some of these classes is cyclic.
+// If we don't forward declare them the compiler might confuse the classes
+// in friendship clauses with same named classes on the scope.
+class Test;
+class TestCase;
+class TestInfo;
+class UnitTest;
+
+// A class for indicating whether an assertion was successful.  When
+// the assertion wasn't successful, the AssertionResult object
+// remembers a non-empty message that describes how it failed.
+//
+// To create an instance of this class, use one of the factory functions
+// (AssertionSuccess() and AssertionFailure()).
+//
+// This class is useful for two purposes:
+//   1. Defining predicate functions to be used with Boolean test assertions
+//      EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts
+//   2. Defining predicate-format functions to be
+//      used with predicate assertions (ASSERT_PRED_FORMAT*, etc).
+//
+// For example, if you define IsEven predicate:
+//
+//   testing::AssertionResult IsEven(int n) {
+//     if ((n % 2) == 0)
+//       return testing::AssertionSuccess();
+//     else
+//       return testing::AssertionFailure() << n << " is odd";
+//   }
+//
+// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))
+// will print the message
+//
+//   Value of: IsEven(Fib(5))
+//     Actual: false (5 is odd)
+//   Expected: true
+//
+// instead of a more opaque
+//
+//   Value of: IsEven(Fib(5))
+//     Actual: false
+//   Expected: true
+//
+// in case IsEven is a simple Boolean predicate.
+//
+// If you expect your predicate to be reused and want to support informative
+// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
+// about half as often as positive ones in our tests), supply messages for
+// both success and failure cases:
+//
+//   testing::AssertionResult IsEven(int n) {
+//     if ((n % 2) == 0)
+//       return testing::AssertionSuccess() << n << " is even";
+//     else
+//       return testing::AssertionFailure() << n << " is odd";
+//   }
+//
+// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
+//
+//   Value of: IsEven(Fib(6))
+//     Actual: true (8 is even)
+//   Expected: false
+//
+// NB: Predicates that support negative Boolean assertions have reduced
+// performance in positive ones so be careful not to use them in tests
+// that have lots (tens of thousands) of positive Boolean assertions.
+//
+// To use this class with EXPECT_PRED_FORMAT assertions such as:
+//
+//   // Verifies that Foo() returns an even number.
+//   EXPECT_PRED_FORMAT1(IsEven, Foo());
+//
+// you need to define:
+//
+//   testing::AssertionResult IsEven(const char* expr, int n) {
+//     if ((n % 2) == 0)
+//       return testing::AssertionSuccess();
+//     else
+//       return testing::AssertionFailure()
+//         << "Expected: " << expr << " is even\n  Actual: it's " << n;
+//   }
+//
+// If Foo() returns 5, you will see the following message:
+//
+//   Expected: Foo() is even
+//     Actual: it's 5
+//
+class GTEST_API_ AssertionResult {
+ public:
+  // Copy constructor.
+  // Used in EXPECT_TRUE/FALSE(assertion_result).
+  AssertionResult(const AssertionResult& other);
+  // Used in the EXPECT_TRUE/FALSE(bool_expression).
+  explicit AssertionResult(bool success) : success_(success) {}
+
+  // Returns true iff the assertion succeeded.
+  operator bool() const { return success_; }  // NOLINT
+
+  // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
+  AssertionResult operator!() const;
+
+  // Returns the text streamed into this AssertionResult. Test assertions
+  // use it when they fail (i.e., the predicate's outcome doesn't match the
+  // assertion's expectation). When nothing has been streamed into the
+  // object, returns an empty string.
+  const char* message() const {
+    return message_.get() != NULL ?  message_->c_str() : "";
+  }
+  // TODO(vladl@google.com): Remove this after making sure no clients use it.
+  // Deprecated; please use message() instead.
+  const char* failure_message() const { return message(); }
+
+  // Streams a custom failure message into this object.
+  template <typename T> AssertionResult& operator<<(const T& value) {
+    AppendMessage(Message() << value);
+    return *this;
+  }
+
+  // Allows streaming basic output manipulators such as endl or flush into
+  // this object.
+  AssertionResult& operator<<(
+      ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
+    AppendMessage(Message() << basic_manipulator);
+    return *this;
+  }
+
+ private:
+  // Appends the contents of message to message_.
+  void AppendMessage(const Message& a_message) {
+    if (message_.get() == NULL)
+      message_.reset(new ::std::string);
+    message_->append(a_message.GetString().c_str());
+  }
+
+  // Stores result of the assertion predicate.
+  bool success_;
+  // Stores the message describing the condition in case the expectation
+  // construct is not satisfied with the predicate's outcome.
+  // Referenced via a pointer to avoid taking too much stack frame space
+  // with test assertions.
+  internal::scoped_ptr< ::std::string> message_;
+
+  GTEST_DISALLOW_ASSIGN_(AssertionResult);
+};
+
+// Makes a successful assertion result.
+GTEST_API_ AssertionResult AssertionSuccess();
+
+// Makes a failed assertion result.
+GTEST_API_ AssertionResult AssertionFailure();
+
+// Makes a failed assertion result with the given failure message.
+// Deprecated; use AssertionFailure() << msg.
+GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
+
+// The abstract class that all tests inherit from.
+//
+// In Google Test, a unit test program contains one or many TestCases, and
+// each TestCase contains one or many Tests.
+//
+// When you define a test using the TEST macro, you don't need to
+// explicitly derive from Test - the TEST macro automatically does
+// this for you.
+//
+// The only time you derive from Test is when defining a test fixture
+// to be used a TEST_F.  For example:
+//
+//   class FooTest : public testing::Test {
+//    protected:
+//     virtual void SetUp() { ... }
+//     virtual void TearDown() { ... }
+//     ...
+//   };
+//
+//   TEST_F(FooTest, Bar) { ... }
+//   TEST_F(FooTest, Baz) { ... }
+//
+// Test is not copyable.
+class GTEST_API_ Test {
+ public:
+  friend class TestInfo;
+
+  // Defines types for pointers to functions that set up and tear down
+  // a test case.
+  typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc;
+  typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc;
+
+  // The d'tor is virtual as we intend to inherit from Test.
+  virtual ~Test();
+
+  // Sets up the stuff shared by all tests in this test case.
+  //
+  // Google Test will call Foo::SetUpTestCase() before running the first
+  // test in test case Foo.  Hence a sub-class can define its own
+  // SetUpTestCase() method to shadow the one defined in the super
+  // class.
+  static void SetUpTestCase() {}
+
+  // Tears down the stuff shared by all tests in this test case.
+  //
+  // Google Test will call Foo::TearDownTestCase() after running the last
+  // test in test case Foo.  Hence a sub-class can define its own
+  // TearDownTestCase() method to shadow the one defined in the super
+  // class.
+  static void TearDownTestCase() {}
+
+  // Returns true iff the current test has a fatal failure.
+  static bool HasFatalFailure();
+
+  // Returns true iff the current test has a non-fatal failure.
+  static bool HasNonfatalFailure();
+
+  // Returns true iff the current test has a (either fatal or
+  // non-fatal) failure.
+  static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
+
+  // Logs a property for the current test.  Only the last value for a given
+  // key is remembered.
+  // These are public static so they can be called from utility functions
+  // that are not members of the test fixture.
+  // The arguments are const char* instead strings, as Google Test is used
+  // on platforms where string doesn't compile.
+  //
+  // Note that a driving consideration for these RecordProperty methods
+  // was to produce xml output suited to the Greenspan charting utility,
+  // which at present will only chart values that fit in a 32-bit int. It
+  // is the user's responsibility to restrict their values to 32-bit ints
+  // if they intend them to be used with Greenspan.
+  static void RecordProperty(const char* key, const char* value);
+  static void RecordProperty(const char* key, int value);
+
+ protected:
+  // Creates a Test object.
+  Test();
+
+  // Sets up the test fixture.
+  virtual void SetUp();
+
+  // Tears down the test fixture.
+  virtual void TearDown();
+
+ private:
+  // Returns true iff the current test has the same fixture class as
+  // the first test in the current test case.
+  static bool HasSameFixtureClass();
+
+  // Runs the test after the test fixture has been set up.
+  //
+  // A sub-class must implement this to define the test logic.
+  //
+  // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
+  // Instead, use the TEST or TEST_F macro.
+  virtual void TestBody() = 0;
+
+  // Sets up, executes, and tears down the test.
+  void Run();
+
+  // Deletes self.  We deliberately pick an unusual name for this
+  // internal method to avoid clashing with names used in user TESTs.
+  void DeleteSelf_() { delete this; }
+
+  // Uses a GTestFlagSaver to save and restore all Google Test flags.
+  const internal::GTestFlagSaver* const gtest_flag_saver_;
+
+  // Often a user mis-spells SetUp() as Setup() and spends a long time
+  // wondering why it is never called by Google Test.  The declaration of
+  // the following method is solely for catching such an error at
+  // compile time:
+  //
+  //   - The return type is deliberately chosen to be not void, so it
+  //   will be a conflict if a user declares void Setup() in his test
+  //   fixture.
+  //
+  //   - This method is private, so it will be another compiler error
+  //   if a user calls it from his test fixture.
+  //
+  // DO NOT OVERRIDE THIS FUNCTION.
+  //
+  // If you see an error about overriding the following function or
+  // about it being private, you have mis-spelled SetUp() as Setup().
+  struct Setup_should_be_spelled_SetUp {};
+  virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
+
+  // We disallow copying Tests.
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
+};
+
+typedef internal::TimeInMillis TimeInMillis;
+
+// A copyable object representing a user specified test property which can be
+// output as a key/value string pair.
+//
+// Don't inherit from TestProperty as its destructor is not virtual.
+class TestProperty {
+ public:
+  // C'tor.  TestProperty does NOT have a default constructor.
+  // Always use this constructor (with parameters) to create a
+  // TestProperty object.
+  TestProperty(const char* a_key, const char* a_value) :
+    key_(a_key), value_(a_value) {
+  }
+
+  // Gets the user supplied key.
+  const char* key() const {
+    return key_.c_str();
+  }
+
+  // Gets the user supplied value.
+  const char* value() const {
+    return value_.c_str();
+  }
+
+  // Sets a new value, overriding the one supplied in the constructor.
+  void SetValue(const char* new_value) {
+    value_ = new_value;
+  }
+
+ private:
+  // The key supplied by the user.
+  internal::String key_;
+  // The value supplied by the user.
+  internal::String value_;
+};
+
+// The result of a single Test.  This includes a list of
+// TestPartResults, a list of TestProperties, a count of how many
+// death tests there are in the Test, and how much time it took to run
+// the Test.
+//
+// TestResult is not copyable.
+class GTEST_API_ TestResult {
+ public:
+  // Creates an empty TestResult.
+  TestResult();
+
+  // D'tor.  Do not inherit from TestResult.
+  ~TestResult();
+
+  // Gets the number of all test parts.  This is the sum of the number
+  // of successful test parts and the number of failed test parts.
+  int total_part_count() const;
+
+  // Returns the number of the test properties.
+  int test_property_count() const;
+
+  // Returns true iff the test passed (i.e. no test part failed).
+  bool Passed() const { return !Failed(); }
+
+  // Returns true iff the test failed.
+  bool Failed() const;
+
+  // Returns true iff the test fatally failed.
+  bool HasFatalFailure() const;
+
+  // Returns true iff the test has a non-fatal failure.
+  bool HasNonfatalFailure() const;
+
+  // Returns the elapsed time, in milliseconds.
+  TimeInMillis elapsed_time() const { return elapsed_time_; }
+
+  // Returns the i-th test part result among all the results. i can range
+  // from 0 to test_property_count() - 1. If i is not in that range, aborts
+  // the program.
+  const TestPartResult& GetTestPartResult(int i) const;
+
+  // Returns the i-th test property. i can range from 0 to
+  // test_property_count() - 1. If i is not in that range, aborts the
+  // program.
+  const TestProperty& GetTestProperty(int i) const;
+
+ private:
+  friend class TestInfo;
+  friend class UnitTest;
+  friend class internal::DefaultGlobalTestPartResultReporter;
+  friend class internal::ExecDeathTest;
+  friend class internal::TestResultAccessor;
+  friend class internal::UnitTestImpl;
+  friend class internal::WindowsDeathTest;
+
+  // Gets the vector of TestPartResults.
+  const std::vector<TestPartResult>& test_part_results() const {
+    return test_part_results_;
+  }
+
+  // Gets the vector of TestProperties.
+  const std::vector<TestProperty>& test_properties() const {
+    return test_properties_;
+  }
+
+  // Sets the elapsed time.
+  void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; }
+
+  // Adds a test property to the list. The property is validated and may add
+  // a non-fatal failure if invalid (e.g., if it conflicts with reserved
+  // key names). If a property is already recorded for the same key, the
+  // value will be updated, rather than storing multiple values for the same
+  // key.
+  void RecordProperty(const TestProperty& test_property);
+
+  // Adds a failure if the key is a reserved attribute of Google Test
+  // testcase tags.  Returns true if the property is valid.
+  // TODO(russr): Validate attribute names are legal and human readable.
+  static bool ValidateTestProperty(const TestProperty& test_property);
+
+  // Adds a test part result to the list.
+  void AddTestPartResult(const TestPartResult& test_part_result);
+
+  // Returns the death test count.
+  int death_test_count() const { return death_test_count_; }
+
+  // Increments the death test count, returning the new count.
+  int increment_death_test_count() { return ++death_test_count_; }
+
+  // Clears the test part results.
+  void ClearTestPartResults();
+
+  // Clears the object.
+  void Clear();
+
+  // Protects mutable state of the property vector and of owned
+  // properties, whose values may be updated.
+  internal::Mutex test_properites_mutex_;
+
+  // The vector of TestPartResults
+  std::vector<TestPartResult> test_part_results_;
+  // The vector of TestProperties
+  std::vector<TestProperty> test_properties_;
+  // Running count of death tests.
+  int death_test_count_;
+  // The elapsed time, in milliseconds.
+  TimeInMillis elapsed_time_;
+
+  // We disallow copying TestResult.
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);
+};  // class TestResult
+
+// A TestInfo object stores the following information about a test:
+//
+//   Test case name
+//   Test name
+//   Whether the test should be run
+//   A function pointer that creates the test object when invoked
+//   Test result
+//
+// The constructor of TestInfo registers itself with the UnitTest
+// singleton such that the RUN_ALL_TESTS() macro knows which tests to
+// run.
+class GTEST_API_ TestInfo {
+ public:
+  // Destructs a TestInfo object.  This function is not virtual, so
+  // don't inherit from TestInfo.
+  ~TestInfo();
+
+  // Returns the test case name.
+  const char* test_case_name() const { return test_case_name_.c_str(); }
+
+  // Returns the test name.
+  const char* name() const { return name_.c_str(); }
+
+  // Returns the name of the parameter type, or NULL if this is not a typed
+  // or a type-parameterized test.
+  const char* type_param() const {
+    if (type_param_.get() != NULL)
+      return type_param_->c_str();
+    return NULL;
+  }
+
+  // Returns the text representation of the value parameter, or NULL if this
+  // is not a value-parameterized test.
+  const char* value_param() const {
+    if (value_param_.get() != NULL)
+      return value_param_->c_str();
+    return NULL;
+  }
+
+  // Returns true if this test should run, that is if the test is not disabled
+  // (or it is disabled but the also_run_disabled_tests flag has been specified)
+  // and its full name matches the user-specified filter.
+  //
+  // Google Test allows the user to filter the tests by their full names.
+  // The full name of a test Bar in test case Foo is defined as
+  // "Foo.Bar".  Only the tests that match the filter will run.
+  //
+  // A filter is a colon-separated list of glob (not regex) patterns,
+  // optionally followed by a '-' and a colon-separated list of
+  // negative patterns (tests to exclude).  A test is run if it
+  // matches one of the positive patterns and does not match any of
+  // the negative patterns.
+  //
+  // For example, *A*:Foo.* is a filter that matches any string that
+  // contains the character 'A' or starts with "Foo.".
+  bool should_run() const { return should_run_; }
+
+  // Returns the result of the test.
+  const TestResult* result() const { return &result_; }
+
+ private:
+
+#if GTEST_HAS_DEATH_TEST
+  friend class internal::DefaultDeathTestFactory;
+#endif  // GTEST_HAS_DEATH_TEST
+  friend class Test;
+  friend class TestCase;
+  friend class internal::UnitTestImpl;
+  friend TestInfo* internal::MakeAndRegisterTestInfo(
+      const char* test_case_name, const char* name,
+      const char* type_param,
+      const char* value_param,
+      internal::TypeId fixture_class_id,
+      Test::SetUpTestCaseFunc set_up_tc,
+      Test::TearDownTestCaseFunc tear_down_tc,
+      internal::TestFactoryBase* factory);
+
+  // Constructs a TestInfo object. The newly constructed instance assumes
+  // ownership of the factory object.
+  TestInfo(const char* test_case_name, const char* name,
+           const char* a_type_param,
+           const char* a_value_param,
+           internal::TypeId fixture_class_id,
+           internal::TestFactoryBase* factory);
+
+  // Increments the number of death tests encountered in this test so
+  // far.
+  int increment_death_test_count() {
+    return result_.increment_death_test_count();
+  }
+
+  // Creates the test object, runs it, records its result, and then
+  // deletes it.
+  void Run();
+
+  static void ClearTestResult(TestInfo* test_info) {
+    test_info->result_.Clear();
+  }
+
+  // These fields are immutable properties of the test.
+  const std::string test_case_name_;     // Test case name
+  const std::string name_;               // Test name
+  // Name of the parameter type, or NULL if this is not a typed or a
+  // type-parameterized test.
+  const internal::scoped_ptr<const ::std::string> type_param_;
+  // Text representation of the value parameter, or NULL if this is not a
+  // value-parameterized test.
+  const internal::scoped_ptr<const ::std::string> value_param_;
+  const internal::TypeId fixture_class_id_;   // ID of the test fixture class
+  bool should_run_;                 // True iff this test should run
+  bool is_disabled_;                // True iff this test is disabled
+  bool matches_filter_;             // True if this test matches the
+                                    // user-specified filter.
+  internal::TestFactoryBase* const factory_;  // The factory that creates
+                                              // the test object
+
+  // This field is mutable and needs to be reset before running the
+  // test for the second time.
+  TestResult result_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
+};
+
+// A test case, which consists of a vector of TestInfos.
+//
+// TestCase is not copyable.
+class GTEST_API_ TestCase {
+ public:
+  // Creates a TestCase with the given name.
+  //
+  // TestCase does NOT have a default constructor.  Always use this
+  // constructor to create a TestCase object.
+  //
+  // Arguments:
+  //
+  //   name:         name of the test case
+  //   a_type_param: the name of the test's type parameter, or NULL if
+  //                 this is not a type-parameterized test.
+  //   set_up_tc:    pointer to the function that sets up the test case
+  //   tear_down_tc: pointer to the function that tears down the test case
+  TestCase(const char* name, const char* a_type_param,
+           Test::SetUpTestCaseFunc set_up_tc,
+           Test::TearDownTestCaseFunc tear_down_tc);
+
+  // Destructor of TestCase.
+  virtual ~TestCase();
+
+  // Gets the name of the TestCase.
+  const char* name() const { return name_.c_str(); }
+
+  // Returns the name of the parameter type, or NULL if this is not a
+  // type-parameterized test case.
+  const char* type_param() const {
+    if (type_param_.get() != NULL)
+      return type_param_->c_str();
+    return NULL;
+  }
+
+  // Returns true if any test in this test case should run.
+  bool should_run() const { return should_run_; }
+
+  // Gets the number of successful tests in this test case.
+  int successful_test_count() const;
+
+  // Gets the number of failed tests in this test case.
+  int failed_test_count() const;
+
+  // Gets the number of disabled tests in this test case.
+  int disabled_test_count() const;
+
+  // Get the number of tests in this test case that should run.
+  int test_to_run_count() const;
+
+  // Gets the number of all tests in this test case.
+  int total_test_count() const;
+
+  // Returns true iff the test case passed.
+  bool Passed() const { return !Failed(); }
+
+  // Returns true iff the test case failed.
+  bool Failed() const { return failed_test_count() > 0; }
+
+  // Returns the elapsed time, in milliseconds.
+  TimeInMillis elapsed_time() const { return elapsed_time_; }
+
+  // Returns the i-th test among all the tests. i can range from 0 to
+  // total_test_count() - 1. If i is not in that range, returns NULL.
+  const TestInfo* GetTestInfo(int i) const;
+
+ private:
+  friend class Test;
+  friend class internal::UnitTestImpl;
+
+  // Gets the (mutable) vector of TestInfos in this TestCase.
+  std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
+
+  // Gets the (immutable) vector of TestInfos in this TestCase.
+  const std::vector<TestInfo*>& test_info_list() const {
+    return test_info_list_;
+  }
+
+  // Returns the i-th test among all the tests. i can range from 0 to
+  // total_test_count() - 1. If i is not in that range, returns NULL.
+  TestInfo* GetMutableTestInfo(int i);
+
+  // Sets the should_run member.
+  void set_should_run(bool should) { should_run_ = should; }
+
+  // Adds a TestInfo to this test case.  Will delete the TestInfo upon
+  // destruction of the TestCase object.
+  void AddTestInfo(TestInfo * test_info);
+
+  // Clears the results of all tests in this test case.
+  void ClearResult();
+
+  // Clears the results of all tests in the given test case.
+  static void ClearTestCaseResult(TestCase* test_case) {
+    test_case->ClearResult();
+  }
+
+  // Runs every test in this TestCase.
+  void Run();
+
+  // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
+  // for catching exceptions thrown from SetUpTestCase().
+  void RunSetUpTestCase() { (*set_up_tc_)(); }
+
+  // Runs TearDownTestCase() for this TestCase.  This wrapper is
+  // needed for catching exceptions thrown from TearDownTestCase().
+  void RunTearDownTestCase() { (*tear_down_tc_)(); }
+
+  // Returns true iff test passed.
+  static bool TestPassed(const TestInfo* test_info) {
+    return test_info->should_run() && test_info->result()->Passed();
+  }
+
+  // Returns true iff test failed.
+  static bool TestFailed(const TestInfo* test_info) {
+    return test_info->should_run() && test_info->result()->Failed();
+  }
+
+  // Returns true iff test is disabled.
+  static bool TestDisabled(const TestInfo* test_info) {
+    return test_info->is_disabled_;
+  }
+
+  // Returns true if the given test should run.
+  static bool ShouldRunTest(const TestInfo* test_info) {
+    return test_info->should_run();
+  }
+
+  // Shuffles the tests in this test case.
+  void ShuffleTests(internal::Random* random);
+
+  // Restores the test order to before the first shuffle.
+  void UnshuffleTests();
+
+  // Name of the test case.
+  internal::String name_;
+  // Name of the parameter type, or NULL if this is not a typed or a
+  // type-parameterized test.
+  const internal::scoped_ptr<const ::std::string> type_param_;
+  // The vector of TestInfos in their original order.  It owns the
+  // elements in the vector.
+  std::vector<TestInfo*> test_info_list_;
+  // Provides a level of indirection for the test list to allow easy
+  // shuffling and restoring the test order.  The i-th element in this
+  // vector is the index of the i-th test in the shuffled test list.
+  std::vector<int> test_indices_;
+  // Pointer to the function that sets up the test case.
+  Test::SetUpTestCaseFunc set_up_tc_;
+  // Pointer to the function that tears down the test case.
+  Test::TearDownTestCaseFunc tear_down_tc_;
+  // True iff any test in this test case should run.
+  bool should_run_;
+  // Elapsed time, in milliseconds.
+  TimeInMillis elapsed_time_;
+
+  // We disallow copying TestCases.
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase);
+};
+
+// An Environment object is capable of setting up and tearing down an
+// environment.  The user should subclass this to define his own
+// environment(s).
+//
+// An Environment object does the set-up and tear-down in virtual
+// methods SetUp() and TearDown() instead of the constructor and the
+// destructor, as:
+//
+//   1. You cannot safely throw from a destructor.  This is a problem
+//      as in some cases Google Test is used where exceptions are enabled, and
+//      we may want to implement ASSERT_* using exceptions where they are
+//      available.
+//   2. You cannot use ASSERT_* directly in a constructor or
+//      destructor.
+class Environment {
+ public:
+  // The d'tor is virtual as we need to subclass Environment.
+  virtual ~Environment() {}
+
+  // Override this to define how to set up the environment.
+  virtual void SetUp() {}
+
+  // Override this to define how to tear down the environment.
+  virtual void TearDown() {}
+ private:
+  // If you see an error about overriding the following function or
+  // about it being private, you have mis-spelled SetUp() as Setup().
+  struct Setup_should_be_spelled_SetUp {};
+  virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
+};
+
+// The interface for tracing execution of tests. The methods are organized in
+// the order the corresponding events are fired.
+class TestEventListener {
+ public:
+  virtual ~TestEventListener() {}
+
+  // Fired before any test activity starts.
+  virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
+
+  // Fired before each iteration of tests starts.  There may be more than
+  // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
+  // index, starting from 0.
+  virtual void OnTestIterationStart(const UnitTest& unit_test,
+                                    int iteration) = 0;
+
+  // Fired before environment set-up for each iteration of tests starts.
+  virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0;
+
+  // Fired after environment set-up for each iteration of tests ends.
+  virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0;
+
+  // Fired before the test case starts.
+  virtual void OnTestCaseStart(const TestCase& test_case) = 0;
+
+  // Fired before the test starts.
+  virtual void OnTestStart(const TestInfo& test_info) = 0;
+
+  // Fired after a failed assertion or a SUCCEED() invocation.
+  virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
+
+  // Fired after the test ends.
+  virtual void OnTestEnd(const TestInfo& test_info) = 0;
+
+  // Fired after the test case ends.
+  virtual void OnTestCaseEnd(const TestCase& test_case) = 0;
+
+  // Fired before environment tear-down for each iteration of tests starts.
+  virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0;
+
+  // Fired after environment tear-down for each iteration of tests ends.
+  virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0;
+
+  // Fired after each iteration of tests finishes.
+  virtual void OnTestIterationEnd(const UnitTest& unit_test,
+                                  int iteration) = 0;
+
+  // Fired after all test activities have ended.
+  virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0;
+};
+
+// The convenience class for users who need to override just one or two
+// methods and are not concerned that a possible change to a signature of
+// the methods they override will not be caught during the build.  For
+// comments about each method please see the definition of TestEventListener
+// above.
+class EmptyTestEventListener : public TestEventListener {
+ public:
+  virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestIterationStart(const UnitTest& /*unit_test*/,
+                                    int /*iteration*/) {}
+  virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {}
+  virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
+  virtual void OnTestStart(const TestInfo& /*test_info*/) {}
+  virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {}
+  virtual void OnTestEnd(const TestInfo& /*test_info*/) {}
+  virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}
+  virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {}
+  virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {}
+  virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/,
+                                  int /*iteration*/) {}
+  virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {}
+};
+
+// TestEventListeners lets users add listeners to track events in Google Test.
+class GTEST_API_ TestEventListeners {
+ public:
+  TestEventListeners();
+  ~TestEventListeners();
+
+  // Appends an event listener to the end of the list. Google Test assumes
+  // the ownership of the listener (i.e. it will delete the listener when
+  // the test program finishes).
+  void Append(TestEventListener* listener);
+
+  // Removes the given event listener from the list and returns it.  It then
+  // becomes the caller's responsibility to delete the listener. Returns
+  // NULL if the listener is not found in the list.
+  TestEventListener* Release(TestEventListener* listener);
+
+  // Returns the standard listener responsible for the default console
+  // output.  Can be removed from the listeners list to shut down default
+  // console output.  Note that removing this object from the listener list
+  // with Release transfers its ownership to the caller and makes this
+  // function return NULL the next time.
+  TestEventListener* default_result_printer() const {
+    return default_result_printer_;
+  }
+
+  // Returns the standard listener responsible for the default XML output
+  // controlled by the --gtest_output=xml flag.  Can be removed from the
+  // listeners list by users who want to shut down the default XML output
+  // controlled by this flag and substitute it with custom one.  Note that
+  // removing this object from the listener list with Release transfers its
+  // ownership to the caller and makes this function return NULL the next
+  // time.
+  TestEventListener* default_xml_generator() const {
+    return default_xml_generator_;
+  }
+
+ private:
+  friend class TestCase;
+  friend class TestInfo;
+  friend class internal::DefaultGlobalTestPartResultReporter;
+  friend class internal::NoExecDeathTest;
+  friend class internal::TestEventListenersAccessor;
+  friend class internal::UnitTestImpl;
+
+  // Returns repeater that broadcasts the TestEventListener events to all
+  // subscribers.
+  TestEventListener* repeater();
+
+  // Sets the default_result_printer attribute to the provided listener.
+  // The listener is also added to the listener list and previous
+  // default_result_printer is removed from it and deleted. The listener can
+  // also be NULL in which case it will not be added to the list. Does
+  // nothing if the previous and the current listener objects are the same.
+  void SetDefaultResultPrinter(TestEventListener* listener);
+
+  // Sets the default_xml_generator attribute to the provided listener.  The
+  // listener is also added to the listener list and previous
+  // default_xml_generator is removed from it and deleted. The listener can
+  // also be NULL in which case it will not be added to the list. Does
+  // nothing if the previous and the current listener objects are the same.
+  void SetDefaultXmlGenerator(TestEventListener* listener);
+
+  // Controls whether events will be forwarded by the repeater to the
+  // listeners in the list.
+  bool EventForwardingEnabled() const;
+  void SuppressEventForwarding();
+
+  // The actual list of listeners.
+  internal::TestEventRepeater* repeater_;
+  // Listener responsible for the standard result output.
+  TestEventListener* default_result_printer_;
+  // Listener responsible for the creation of the XML output file.
+  TestEventListener* default_xml_generator_;
+
+  // We disallow copying TestEventListeners.
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners);
+};
+
+// A UnitTest consists of a vector of TestCases.
+//
+// This is a singleton class.  The only instance of UnitTest is
+// created when UnitTest::GetInstance() is first called.  This
+// instance is never deleted.
+//
+// UnitTest is not copyable.
+//
+// This class is thread-safe as long as the methods are called
+// according to their specification.
+class GTEST_API_ UnitTest {
+ public:
+  // Gets the singleton UnitTest object.  The first time this method
+  // is called, a UnitTest object is constructed and returned.
+  // Consecutive calls will return the same object.
+  static UnitTest* GetInstance();
+
+  // Runs all tests in this UnitTest object and prints the result.
+  // Returns 0 if successful, or 1 otherwise.
+  //
+  // This method can only be called from the main thread.
+  //
+  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+  int Run() GTEST_MUST_USE_RESULT_;
+
+  // Returns the working directory when the first TEST() or TEST_F()
+  // was executed.  The UnitTest object owns the string.
+  const char* original_working_dir() const;
+
+  // Returns the TestCase object for the test that's currently running,
+  // or NULL if no test is running.
+  const TestCase* current_test_case() const;
+
+  // Returns the TestInfo object for the test that's currently running,
+  // or NULL if no test is running.
+  const TestInfo* current_test_info() const;
+
+  // Returns the random seed used at the start of the current test run.
+  int random_seed() const;
+
+#if GTEST_HAS_PARAM_TEST
+  // Returns the ParameterizedTestCaseRegistry object used to keep track of
+  // value-parameterized tests and instantiate and register them.
+  //
+  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+  internal::ParameterizedTestCaseRegistry& parameterized_test_registry();
+#endif  // GTEST_HAS_PARAM_TEST
+
+  // Gets the number of successful test cases.
+  int successful_test_case_count() const;
+
+  // Gets the number of failed test cases.
+  int failed_test_case_count() const;
+
+  // Gets the number of all test cases.
+  int total_test_case_count() const;
+
+  // Gets the number of all test cases that contain at least one test
+  // that should run.
+  int test_case_to_run_count() const;
+
+  // Gets the number of successful tests.
+  int successful_test_count() const;
+
+  // Gets the number of failed tests.
+  int failed_test_count() const;
+
+  // Gets the number of disabled tests.
+  int disabled_test_count() const;
+
+  // Gets the number of all tests.
+  int total_test_count() const;
+
+  // Gets the number of tests that should run.
+  int test_to_run_count() const;
+
+  // Gets the elapsed time, in milliseconds.
+  TimeInMillis elapsed_time() const;
+
+  // Returns true iff the unit test passed (i.e. all test cases passed).
+  bool Passed() const;
+
+  // Returns true iff the unit test failed (i.e. some test case failed
+  // or something outside of all tests failed).
+  bool Failed() const;
+
+  // Gets the i-th test case among all the test cases. i can range from 0 to
+  // total_test_case_count() - 1. If i is not in that range, returns NULL.
+  const TestCase* GetTestCase(int i) const;
+
+  // Returns the list of event listeners that can be used to track events
+  // inside Google Test.
+  TestEventListeners& listeners();
+
+ private:
+  // Registers and returns a global test environment.  When a test
+  // program is run, all global test environments will be set-up in
+  // the order they were registered.  After all tests in the program
+  // have finished, all global test environments will be torn-down in
+  // the *reverse* order they were registered.
+  //
+  // The UnitTest object takes ownership of the given environment.
+  //
+  // This method can only be called from the main thread.
+  Environment* AddEnvironment(Environment* env);
+
+  // Adds a TestPartResult to the current TestResult object.  All
+  // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc)
+  // eventually call this to report their results.  The user code
+  // should use the assertion macros instead of calling this directly.
+  void AddTestPartResult(TestPartResult::Type result_type,
+                         const char* file_name,
+                         int line_number,
+                         const internal::String& message,
+                         const internal::String& os_stack_trace);
+
+  // Adds a TestProperty to the current TestResult object. If the result already
+  // contains a property with the same key, the value will be updated.
+  void RecordPropertyForCurrentTest(const char* key, const char* value);
+
+  // Gets the i-th test case among all the test cases. i can range from 0 to
+  // total_test_case_count() - 1. If i is not in that range, returns NULL.
+  TestCase* GetMutableTestCase(int i);
+
+  // Accessors for the implementation object.
+  internal::UnitTestImpl* impl() { return impl_; }
+  const internal::UnitTestImpl* impl() const { return impl_; }
+
+  // These classes and funcions are friends as they need to access private
+  // members of UnitTest.
+  friend class Test;
+  friend class internal::AssertHelper;
+  friend class internal::ScopedTrace;
+  friend Environment* AddGlobalTestEnvironment(Environment* env);
+  friend internal::UnitTestImpl* internal::GetUnitTestImpl();
+  friend void internal::ReportFailureInUnknownLocation(
+      TestPartResult::Type result_type,
+      const internal::String& message);
+
+  // Creates an empty UnitTest.
+  UnitTest();
+
+  // D'tor
+  virtual ~UnitTest();
+
+  // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
+  // Google Test trace stack.
+  void PushGTestTrace(const internal::TraceInfo& trace);
+
+  // Pops a trace from the per-thread Google Test trace stack.
+  void PopGTestTrace();
+
+  // Protects mutable state in *impl_.  This is mutable as some const
+  // methods need to lock it too.
+  mutable internal::Mutex mutex_;
+
+  // Opaque implementation object.  This field is never changed once
+  // the object is constructed.  We don't mark it as const here, as
+  // doing so will cause a warning in the constructor of UnitTest.
+  // Mutable state in *impl_ is protected by mutex_.
+  internal::UnitTestImpl* impl_;
+
+  // We disallow copying UnitTest.
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);
+};
+
+// A convenient wrapper for adding an environment for the test
+// program.
+//
+// You should call this before RUN_ALL_TESTS() is called, probably in
+// main().  If you use gtest_main, you need to call this before main()
+// starts for it to take effect.  For example, you can define a global
+// variable like this:
+//
+//   testing::Environment* const foo_env =
+//       testing::AddGlobalTestEnvironment(new FooEnvironment);
+//
+// However, we strongly recommend you to write your own main() and
+// call AddGlobalTestEnvironment() there, as relying on initialization
+// of global variables makes the code harder to read and may cause
+// problems when you register multiple environments from different
+// translation units and the environments have dependencies among them
+// (remember that the compiler doesn't guarantee the order in which
+// global variables from different translation units are initialized).
+inline Environment* AddGlobalTestEnvironment(Environment* env) {
+  return UnitTest::GetInstance()->AddEnvironment(env);
+}
+
+// Initializes Google Test.  This must be called before calling
+// RUN_ALL_TESTS().  In particular, it parses a command line for the
+// flags that Google Test recognizes.  Whenever a Google Test flag is
+// seen, it is removed from argv, and *argc is decremented.
+//
+// No value is returned.  Instead, the Google Test flag variables are
+// updated.
+//
+// Calling the function for the second time has no user-visible effect.
+GTEST_API_ void InitGoogleTest(int* argc, char** argv);
+
+// This overloaded version can be used in Windows programs compiled in
+// UNICODE mode.
+GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv);
+
+namespace internal {
+
+// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc)
+// operand to be used in a failure message.  The type (but not value)
+// of the other operand may affect the format.  This allows us to
+// print a char* as a raw pointer when it is compared against another
+// char*, and print it as a C string when it is compared against an
+// std::string object, for example.
+//
+// The default implementation ignores the type of the other operand.
+// Some specialized versions are used to handle formatting wide or
+// narrow C strings.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+template <typename T1, typename T2>
+String FormatForComparisonFailureMessage(const T1& value,
+                                         const T2& /* other_operand */) {
+  // C++Builder compiles this incorrectly if the namespace isn't explicitly
+  // given.
+  return ::testing::PrintToString(value);
+}
+
+// The helper function for {ASSERT|EXPECT}_EQ.
+template <typename T1, typename T2>
+AssertionResult CmpHelperEQ(const char* expected_expression,
+                            const char* actual_expression,
+                            const T1& expected,
+                            const T2& actual) {
+#ifdef _MSC_VER
+# pragma warning(push)          // Saves the current warning state.
+# pragma warning(disable:4389)  // Temporarily disables warning on
+                               // signed/unsigned mismatch.
+#endif
+
+  if (expected == actual) {
+    return AssertionSuccess();
+  }
+
+#ifdef _MSC_VER
+# pragma warning(pop)          // Restores the warning state.
+#endif
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   FormatForComparisonFailureMessage(expected, actual),
+                   FormatForComparisonFailureMessage(actual, expected),
+                   false);
+}
+
+// With this overloaded version, we allow anonymous enums to be used
+// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums
+// can be implicitly cast to BiggestInt.
+GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression,
+                                       const char* actual_expression,
+                                       BiggestInt expected,
+                                       BiggestInt actual);
+
+// The helper class for {ASSERT|EXPECT}_EQ.  The template argument
+// lhs_is_null_literal is true iff the first argument to ASSERT_EQ()
+// is a null pointer literal.  The following default implementation is
+// for lhs_is_null_literal being false.
+template <bool lhs_is_null_literal>
+class EqHelper {
+ public:
+  // This templatized version is for the general case.
+  template <typename T1, typename T2>
+  static AssertionResult Compare(const char* expected_expression,
+                                 const char* actual_expression,
+                                 const T1& expected,
+                                 const T2& actual) {
+    return CmpHelperEQ(expected_expression, actual_expression, expected,
+                       actual);
+  }
+
+  // With this overloaded version, we allow anonymous enums to be used
+  // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous
+  // enums can be implicitly cast to BiggestInt.
+  //
+  // Even though its body looks the same as the above version, we
+  // cannot merge the two, as it will make anonymous enums unhappy.
+  static AssertionResult Compare(const char* expected_expression,
+                                 const char* actual_expression,
+                                 BiggestInt expected,
+                                 BiggestInt actual) {
+    return CmpHelperEQ(expected_expression, actual_expression, expected,
+                       actual);
+  }
+};
+
+// This specialization is used when the first argument to ASSERT_EQ()
+// is a null pointer literal, like NULL, false, or 0.
+template <>
+class EqHelper<true> {
+ public:
+  // We define two overloaded versions of Compare().  The first
+  // version will be picked when the second argument to ASSERT_EQ() is
+  // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or
+  // EXPECT_EQ(false, a_bool).
+  template <typename T1, typename T2>
+  static AssertionResult Compare(
+      const char* expected_expression,
+      const char* actual_expression,
+      const T1& expected,
+      const T2& actual,
+      // The following line prevents this overload from being considered if T2
+      // is not a pointer type.  We need this because ASSERT_EQ(NULL, my_ptr)
+      // expands to Compare("", "", NULL, my_ptr), which requires a conversion
+      // to match the Secret* in the other overload, which would otherwise make
+      // this template match better.
+      typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
+    return CmpHelperEQ(expected_expression, actual_expression, expected,
+                       actual);
+  }
+
+  // This version will be picked when the second argument to ASSERT_EQ() is a
+  // pointer, e.g. ASSERT_EQ(NULL, a_pointer).
+  template <typename T>
+  static AssertionResult Compare(
+      const char* expected_expression,
+      const char* actual_expression,
+      // We used to have a second template parameter instead of Secret*.  That
+      // template parameter would deduce to 'long', making this a better match
+      // than the first overload even without the first overload's EnableIf.
+      // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to
+      // non-pointer argument" (even a deduced integral argument), so the old
+      // implementation caused warnings in user code.
+      Secret* /* expected (NULL) */,
+      T* actual) {
+    // We already know that 'expected' is a null pointer.
+    return CmpHelperEQ(expected_expression, actual_expression,
+                       static_cast<T*>(NULL), actual);
+  }
+};
+
+// A macro for implementing the helper functions needed to implement
+// ASSERT_?? and EXPECT_??.  It is here just to avoid copy-and-paste
+// of similar code.
+//
+// For each templatized helper function, we also define an overloaded
+// version for BiggestInt in order to reduce code bloat and allow
+// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
+// with gcc 4.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+#define GTEST_IMPL_CMP_HELPER_(op_name, op)\
+template <typename T1, typename T2>\
+AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
+                                   const T1& val1, const T2& val2) {\
+  if (val1 op val2) {\
+    return AssertionSuccess();\
+  } else {\
+    return AssertionFailure() \
+        << "Expected: (" << expr1 << ") " #op " (" << expr2\
+        << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
+        << " vs " << FormatForComparisonFailureMessage(val2, val1);\
+  }\
+}\
+GTEST_API_ AssertionResult CmpHelper##op_name(\
+    const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+
+// Implements the helper function for {ASSERT|EXPECT}_NE
+GTEST_IMPL_CMP_HELPER_(NE, !=);
+// Implements the helper function for {ASSERT|EXPECT}_LE
+GTEST_IMPL_CMP_HELPER_(LE, <=);
+// Implements the helper function for {ASSERT|EXPECT}_LT
+GTEST_IMPL_CMP_HELPER_(LT, < );
+// Implements the helper function for {ASSERT|EXPECT}_GE
+GTEST_IMPL_CMP_HELPER_(GE, >=);
+// Implements the helper function for {ASSERT|EXPECT}_GT
+GTEST_IMPL_CMP_HELPER_(GT, > );
+
+#undef GTEST_IMPL_CMP_HELPER_
+
+// The helper function for {ASSERT|EXPECT}_STREQ.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
+                                          const char* actual_expression,
+                                          const char* expected,
+                                          const char* actual);
+
+// The helper function for {ASSERT|EXPECT}_STRCASEEQ.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
+                                              const char* actual_expression,
+                                              const char* expected,
+                                              const char* actual);
+
+// The helper function for {ASSERT|EXPECT}_STRNE.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
+                                          const char* s2_expression,
+                                          const char* s1,
+                                          const char* s2);
+
+// The helper function for {ASSERT|EXPECT}_STRCASENE.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
+                                              const char* s2_expression,
+                                              const char* s1,
+                                              const char* s2);
+
+
+// Helper function for *_STREQ on wide strings.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
+                                          const char* actual_expression,
+                                          const wchar_t* expected,
+                                          const wchar_t* actual);
+
+// Helper function for *_STRNE on wide strings.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
+                                          const char* s2_expression,
+                                          const wchar_t* s1,
+                                          const wchar_t* s2);
+
+}  // namespace internal
+
+// IsSubstring() and IsNotSubstring() are intended to be used as the
+// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by
+// themselves.  They check whether needle is a substring of haystack
+// (NULL is considered a substring of itself only), and return an
+// appropriate error message when they fail.
+//
+// The {needle,haystack}_expr arguments are the stringified
+// expressions that generated the two real arguments.
+GTEST_API_ AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const char* needle, const char* haystack);
+GTEST_API_ AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const wchar_t* needle, const wchar_t* haystack);
+GTEST_API_ AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const char* needle, const char* haystack);
+GTEST_API_ AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const wchar_t* needle, const wchar_t* haystack);
+GTEST_API_ AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::string& needle, const ::std::string& haystack);
+GTEST_API_ AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::string& needle, const ::std::string& haystack);
+
+#if GTEST_HAS_STD_WSTRING
+GTEST_API_ AssertionResult IsSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::wstring& needle, const ::std::wstring& haystack);
+GTEST_API_ AssertionResult IsNotSubstring(
+    const char* needle_expr, const char* haystack_expr,
+    const ::std::wstring& needle, const ::std::wstring& haystack);
+#endif  // GTEST_HAS_STD_WSTRING
+
+namespace internal {
+
+// Helper template function for comparing floating-points.
+//
+// Template parameter:
+//
+//   RawType: the raw floating-point type (either float or double)
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+template <typename RawType>
+AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression,
+                                         const char* actual_expression,
+                                         RawType expected,
+                                         RawType actual) {
+  const FloatingPoint<RawType> lhs(expected), rhs(actual);
+
+  if (lhs.AlmostEquals(rhs)) {
+    return AssertionSuccess();
+  }
+
+  ::std::stringstream expected_ss;
+  expected_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
+              << expected;
+
+  ::std::stringstream actual_ss;
+  actual_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
+            << actual;
+
+  return EqFailure(expected_expression,
+                   actual_expression,
+                   StringStreamToString(&expected_ss),
+                   StringStreamToString(&actual_ss),
+                   false);
+}
+
+// Helper function for implementing ASSERT_NEAR.
+//
+// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
+GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
+                                                const char* expr2,
+                                                const char* abs_error_expr,
+                                                double val1,
+                                                double val2,
+                                                double abs_error);
+
+// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
+// A class that enables one to stream messages to assertion macros
+class GTEST_API_ AssertHelper {
+ public:
+  // Constructor.
+  AssertHelper(TestPartResult::Type type,
+               const char* file,
+               int line,
+               const char* message);
+  ~AssertHelper();
+
+  // Message assignment is a semantic trick to enable assertion
+  // streaming; see the GTEST_MESSAGE_ macro below.
+  void operator=(const Message& message) const;
+
+ private:
+  // We put our data in a struct so that the size of the AssertHelper class can
+  // be as small as possible.  This is important because gcc is incapable of
+  // re-using stack space even for temporary variables, so every EXPECT_EQ
+  // reserves stack space for another AssertHelper.
+  struct AssertHelperData {
+    AssertHelperData(TestPartResult::Type t,
+                     const char* srcfile,
+                     int line_num,
+                     const char* msg)
+        : type(t), file(srcfile), line(line_num), message(msg) { }
+
+    TestPartResult::Type const type;
+    const char*        const file;
+    int                const line;
+    String             const message;
+
+   private:
+    GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);
+  };
+
+  AssertHelperData* const data_;
+
+  GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
+};
+
+}  // namespace internal
+
+#if GTEST_HAS_PARAM_TEST
+// The pure interface class that all value-parameterized tests inherit from.
+// A value-parameterized class must inherit from both ::testing::Test and
+// ::testing::WithParamInterface. In most cases that just means inheriting
+// from ::testing::TestWithParam, but more complicated test hierarchies
+// may need to inherit from Test and WithParamInterface at different levels.
+//
+// This interface has support for accessing the test parameter value via
+// the GetParam() method.
+//
+// Use it with one of the parameter generator defining functions, like Range(),
+// Values(), ValuesIn(), Bool(), and Combine().
+//
+// class FooTest : public ::testing::TestWithParam<int> {
+//  protected:
+//   FooTest() {
+//     // Can use GetParam() here.
+//   }
+//   virtual ~FooTest() {
+//     // Can use GetParam() here.
+//   }
+//   virtual void SetUp() {
+//     // Can use GetParam() here.
+//   }
+//   virtual void TearDown {
+//     // Can use GetParam() here.
+//   }
+// };
+// TEST_P(FooTest, DoesBar) {
+//   // Can use GetParam() method here.
+//   Foo foo;
+//   ASSERT_TRUE(foo.DoesBar(GetParam()));
+// }
+// INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
+
+template <typename T>
+class WithParamInterface {
+ public:
+  typedef T ParamType;
+  virtual ~WithParamInterface() {}
+
+  // The current parameter value. Is also available in the test fixture's
+  // constructor. This member function is non-static, even though it only
+  // references static data, to reduce the opportunity for incorrect uses
+  // like writing 'WithParamInterface<bool>::GetParam()' for a test that
+  // uses a fixture whose parameter type is int.
+  const ParamType& GetParam() const { return *parameter_; }
+
+ private:
+  // Sets parameter value. The caller is responsible for making sure the value
+  // remains alive and unchanged throughout the current test.
+  static void SetParam(const ParamType* parameter) {
+    parameter_ = parameter;
+  }
+
+  // Static value used for accessing parameter during a test lifetime.
+  static const ParamType* parameter_;
+
+  // TestClass must be a subclass of WithParamInterface<T> and Test.
+  template <class TestClass> friend class internal::ParameterizedTestFactory;
+};
+
+template <typename T>
+const T* WithParamInterface<T>::parameter_ = NULL;
+
+// Most value-parameterized classes can ignore the existence of
+// WithParamInterface, and can just inherit from ::testing::TestWithParam.
+
+template <typename T>
+class TestWithParam : public Test, public WithParamInterface<T> {
+};
+
+#endif  // GTEST_HAS_PARAM_TEST
+
+// Macros for indicating success/failure in test code.
+
+// ADD_FAILURE unconditionally adds a failure to the current test.
+// SUCCEED generates a success - it doesn't automatically make the
+// current test successful, as a test is only successful when it has
+// no failure.
+//
+// EXPECT_* verifies that a certain condition is satisfied.  If not,
+// it behaves like ADD_FAILURE.  In particular:
+//
+//   EXPECT_TRUE  verifies that a Boolean condition is true.
+//   EXPECT_FALSE verifies that a Boolean condition is false.
+//
+// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
+// that they will also abort the current function on failure.  People
+// usually want the fail-fast behavior of FAIL and ASSERT_*, but those
+// writing data-driven tests often find themselves using ADD_FAILURE
+// and EXPECT_* more.
+//
+// Examples:
+//
+//   EXPECT_TRUE(server.StatusIsOK());
+//   ASSERT_FALSE(server.HasPendingRequest(port))
+//       << "There are still pending requests " << "on port " << port;
+
+// Generates a nonfatal failure with a generic message.
+#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
+
+// Generates a nonfatal failure at the given source file location with
+// a generic message.
+#define ADD_FAILURE_AT(file, line) \
+  GTEST_MESSAGE_AT_(file, line, "Failed", \
+                    ::testing::TestPartResult::kNonFatalFailure)
+
+// Generates a fatal failure with a generic message.
+#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
+
+// Define this macro to 1 to omit the definition of FAIL(), which is a
+// generic name and clashes with some other libraries.
+#if !GTEST_DONT_DEFINE_FAIL
+# define FAIL() GTEST_FAIL()
+#endif
+
+// Generates a success with a generic message.
+#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
+
+// Define this macro to 1 to omit the definition of SUCCEED(), which
+// is a generic name and clashes with some other libraries.
+#if !GTEST_DONT_DEFINE_SUCCEED
+# define SUCCEED() GTEST_SUCCEED()
+#endif
+
+// Macros for testing exceptions.
+//
+//    * {ASSERT|EXPECT}_THROW(statement, expected_exception):
+//         Tests that the statement throws the expected exception.
+//    * {ASSERT|EXPECT}_NO_THROW(statement):
+//         Tests that the statement doesn't throw any exception.
+//    * {ASSERT|EXPECT}_ANY_THROW(statement):
+//         Tests that the statement throws an exception.
+
+#define EXPECT_THROW(statement, expected_exception) \
+  GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_NO_THROW(statement) \
+  GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_ANY_THROW(statement) \
+  GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_THROW(statement, expected_exception) \
+  GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_)
+#define ASSERT_NO_THROW(statement) \
+  GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_)
+#define ASSERT_ANY_THROW(statement) \
+  GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_)
+
+// Boolean assertions. Condition can be either a Boolean expression or an
+// AssertionResult. For more information on how to use AssertionResult with
+// these macros see comments on that class.
+#define EXPECT_TRUE(condition) \
+  GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
+                      GTEST_NONFATAL_FAILURE_)
+#define EXPECT_FALSE(condition) \
+  GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
+                      GTEST_NONFATAL_FAILURE_)
+#define ASSERT_TRUE(condition) \
+  GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
+                      GTEST_FATAL_FAILURE_)
+#define ASSERT_FALSE(condition) \
+  GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
+                      GTEST_FATAL_FAILURE_)
+
+// Includes the auto-generated header that implements a family of
+// generic predicate assertion macros.
+// Copyright 2006, Google 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 Google 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.
+
+// This file is AUTOMATICALLY GENERATED on 09/24/2010 by command
+// 'gen_gtest_pred_impl.py 5'.  DO NOT EDIT BY HAND!
+//
+// Implements a family of generic predicate assertion macros.
+
+#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
+#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
+
+// Makes sure this header is not included before gtest.h.
+#ifndef GTEST_INCLUDE_GTEST_GTEST_H_
+# error Do not include gtest_pred_impl.h directly.  Include gtest.h instead.
+#endif  // GTEST_INCLUDE_GTEST_GTEST_H_
+
+// This header implements a family of generic predicate assertion
+// macros:
+//
+//   ASSERT_PRED_FORMAT1(pred_format, v1)
+//   ASSERT_PRED_FORMAT2(pred_format, v1, v2)
+//   ...
+//
+// where pred_format is a function or functor that takes n (in the
+// case of ASSERT_PRED_FORMATn) values and their source expression
+// text, and returns a testing::AssertionResult.  See the definition
+// of ASSERT_EQ in gtest.h for an example.
+//
+// If you don't care about formatting, you can use the more
+// restrictive version:
+//
+//   ASSERT_PRED1(pred, v1)
+//   ASSERT_PRED2(pred, v1, v2)
+//   ...
+//
+// where pred is an n-ary function or functor that returns bool,
+// and the values v1, v2, ..., must support the << operator for
+// streaming to std::ostream.
+//
+// We also define the EXPECT_* variations.
+//
+// For now we only support predicates whose arity is at most 5.
+// Please email googletestframework@googlegroups.com if you need
+// support for higher arities.
+
+// GTEST_ASSERT_ is the basic statement to which all of the assertions
+// in this file reduce.  Don't use this in your code.
+
+#define GTEST_ASSERT_(expression, on_failure) \
+  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
+  if (const ::testing::AssertionResult gtest_ar = (expression)) \
+    ; \
+  else \
+    on_failure(gtest_ar.failure_message())
+
+
+// Helper function for implementing {EXPECT|ASSERT}_PRED1.  Don't use
+// this in your code.
+template <typename Pred,
+          typename T1>
+AssertionResult AssertPred1Helper(const char* pred_text,
+                                  const char* e1,
+                                  Pred pred,
+                                  const T1& v1) {
+  if (pred(v1)) return AssertionSuccess();
+
+  return AssertionFailure() << pred_text << "("
+                            << e1 << ") evaluates to false, where"
+                            << "\n" << e1 << " evaluates to " << v1;
+}
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
+// Don't use this in your code.
+#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
+  GTEST_ASSERT_(pred_format(#v1, v1),\
+                on_failure)
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED1.  Don't use
+// this in your code.
+#define GTEST_PRED1_(pred, v1, on_failure)\
+  GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
+                                             #v1, \
+                                             pred, \
+                                             v1), on_failure)
+
+// Unary predicate assertion macros.
+#define EXPECT_PRED_FORMAT1(pred_format, v1) \
+  GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_PRED1(pred, v1) \
+  GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_PRED_FORMAT1(pred_format, v1) \
+  GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_)
+#define ASSERT_PRED1(pred, v1) \
+  GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_)
+
+
+
+// Helper function for implementing {EXPECT|ASSERT}_PRED2.  Don't use
+// this in your code.
+template <typename Pred,
+          typename T1,
+          typename T2>
+AssertionResult AssertPred2Helper(const char* pred_text,
+                                  const char* e1,
+                                  const char* e2,
+                                  Pred pred,
+                                  const T1& v1,
+                                  const T2& v2) {
+  if (pred(v1, v2)) return AssertionSuccess();
+
+  return AssertionFailure() << pred_text << "("
+                            << e1 << ", "
+                            << e2 << ") evaluates to false, where"
+                            << "\n" << e1 << " evaluates to " << v1
+                            << "\n" << e2 << " evaluates to " << v2;
+}
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.
+// Don't use this in your code.
+#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\
+  GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2),\
+                on_failure)
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED2.  Don't use
+// this in your code.
+#define GTEST_PRED2_(pred, v1, v2, on_failure)\
+  GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \
+                                             #v1, \
+                                             #v2, \
+                                             pred, \
+                                             v1, \
+                                             v2), on_failure)
+
+// Binary predicate assertion macros.
+#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \
+  GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_PRED2(pred, v1, v2) \
+  GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \
+  GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)
+#define ASSERT_PRED2(pred, v1, v2) \
+  GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_)
+
+
+
+// Helper function for implementing {EXPECT|ASSERT}_PRED3.  Don't use
+// this in your code.
+template <typename Pred,
+          typename T1,
+          typename T2,
+          typename T3>
+AssertionResult AssertPred3Helper(const char* pred_text,
+                                  const char* e1,
+                                  const char* e2,
+                                  const char* e3,
+                                  Pred pred,
+                                  const T1& v1,
+                                  const T2& v2,
+                                  const T3& v3) {
+  if (pred(v1, v2, v3)) return AssertionSuccess();
+
+  return AssertionFailure() << pred_text << "("
+                            << e1 << ", "
+                            << e2 << ", "
+                            << e3 << ") evaluates to false, where"
+                            << "\n" << e1 << " evaluates to " << v1
+                            << "\n" << e2 << " evaluates to " << v2
+                            << "\n" << e3 << " evaluates to " << v3;
+}
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3.
+// Don't use this in your code.
+#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
+  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
+                on_failure)
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED3.  Don't use
+// this in your code.
+#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
+  GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \
+                                             #v1, \
+                                             #v2, \
+                                             #v3, \
+                                             pred, \
+                                             v1, \
+                                             v2, \
+                                             v3), on_failure)
+
+// Ternary predicate assertion macros.
+#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
+  GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_PRED3(pred, v1, v2, v3) \
+  GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \
+  GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_)
+#define ASSERT_PRED3(pred, v1, v2, v3) \
+  GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_)
+
+
+
+// Helper function for implementing {EXPECT|ASSERT}_PRED4.  Don't use
+// this in your code.
+template <typename Pred,
+          typename T1,
+          typename T2,
+          typename T3,
+          typename T4>
+AssertionResult AssertPred4Helper(const char* pred_text,
+                                  const char* e1,
+                                  const char* e2,
+                                  const char* e3,
+                                  const char* e4,
+                                  Pred pred,
+                                  const T1& v1,
+                                  const T2& v2,
+                                  const T3& v3,
+                                  const T4& v4) {
+  if (pred(v1, v2, v3, v4)) return AssertionSuccess();
+
+  return AssertionFailure() << pred_text << "("
+                            << e1 << ", "
+                            << e2 << ", "
+                            << e3 << ", "
+                            << e4 << ") evaluates to false, where"
+                            << "\n" << e1 << " evaluates to " << v1
+                            << "\n" << e2 << " evaluates to " << v2
+                            << "\n" << e3 << " evaluates to " << v3
+                            << "\n" << e4 << " evaluates to " << v4;
+}
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4.
+// Don't use this in your code.
+#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\
+  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4),\
+                on_failure)
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED4.  Don't use
+// this in your code.
+#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\
+  GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \
+                                             #v1, \
+                                             #v2, \
+                                             #v3, \
+                                             #v4, \
+                                             pred, \
+                                             v1, \
+                                             v2, \
+                                             v3, \
+                                             v4), on_failure)
+
+// 4-ary predicate assertion macros.
+#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
+  GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_PRED4(pred, v1, v2, v3, v4) \
+  GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
+  GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
+#define ASSERT_PRED4(pred, v1, v2, v3, v4) \
+  GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
+
+
+
+// Helper function for implementing {EXPECT|ASSERT}_PRED5.  Don't use
+// this in your code.
+template <typename Pred,
+          typename T1,
+          typename T2,
+          typename T3,
+          typename T4,
+          typename T5>
+AssertionResult AssertPred5Helper(const char* pred_text,
+                                  const char* e1,
+                                  const char* e2,
+                                  const char* e3,
+                                  const char* e4,
+                                  const char* e5,
+                                  Pred pred,
+                                  const T1& v1,
+                                  const T2& v2,
+                                  const T3& v3,
+                                  const T4& v4,
+                                  const T5& v5) {
+  if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess();
+
+  return AssertionFailure() << pred_text << "("
+                            << e1 << ", "
+                            << e2 << ", "
+                            << e3 << ", "
+                            << e4 << ", "
+                            << e5 << ") evaluates to false, where"
+                            << "\n" << e1 << " evaluates to " << v1
+                            << "\n" << e2 << " evaluates to " << v2
+                            << "\n" << e3 << " evaluates to " << v3
+                            << "\n" << e4 << " evaluates to " << v4
+                            << "\n" << e5 << " evaluates to " << v5;
+}
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5.
+// Don't use this in your code.
+#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\
+  GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5),\
+                on_failure)
+
+// Internal macro for implementing {EXPECT|ASSERT}_PRED5.  Don't use
+// this in your code.
+#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\
+  GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \
+                                             #v1, \
+                                             #v2, \
+                                             #v3, \
+                                             #v4, \
+                                             #v5, \
+                                             pred, \
+                                             v1, \
+                                             v2, \
+                                             v3, \
+                                             v4, \
+                                             v5), on_failure)
+
+// 5-ary predicate assertion macros.
+#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
+  GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
+#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \
+  GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
+#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
+  GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
+#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \
+  GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
+
+
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
+
+// Macros for testing equalities and inequalities.
+//
+//    * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual
+//    * {ASSERT|EXPECT}_NE(v1, v2):           Tests that v1 != v2
+//    * {ASSERT|EXPECT}_LT(v1, v2):           Tests that v1 < v2
+//    * {ASSERT|EXPECT}_LE(v1, v2):           Tests that v1 <= v2
+//    * {ASSERT|EXPECT}_GT(v1, v2):           Tests that v1 > v2
+//    * {ASSERT|EXPECT}_GE(v1, v2):           Tests that v1 >= v2
+//
+// When they are not, Google Test prints both the tested expressions and
+// their actual values.  The values must be compatible built-in types,
+// or you will get a compiler error.  By "compatible" we mean that the
+// values can be compared by the respective operator.
+//
+// Note:
+//
+//   1. It is possible to make a user-defined type work with
+//   {ASSERT|EXPECT}_??(), but that requires overloading the
+//   comparison operators and is thus discouraged by the Google C++
+//   Usage Guide.  Therefore, you are advised to use the
+//   {ASSERT|EXPECT}_TRUE() macro to assert that two objects are
+//   equal.
+//
+//   2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on
+//   pointers (in particular, C strings).  Therefore, if you use it
+//   with two C strings, you are testing how their locations in memory
+//   are related, not how their content is related.  To compare two C
+//   strings by content, use {ASSERT|EXPECT}_STR*().
+//
+//   3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to
+//   {ASSERT|EXPECT}_TRUE(expected == actual), as the former tells you
+//   what the actual value is when it fails, and similarly for the
+//   other comparisons.
+//
+//   4. Do not depend on the order in which {ASSERT|EXPECT}_??()
+//   evaluate their arguments, which is undefined.
+//
+//   5. These macros evaluate their arguments exactly once.
+//
+// Examples:
+//
+//   EXPECT_NE(5, Foo());
+//   EXPECT_EQ(NULL, a_pointer);
+//   ASSERT_LT(i, array_size);
+//   ASSERT_GT(records.size(), 0) << "There is no record left.";
+
+#define EXPECT_EQ(expected, actual) \
+  EXPECT_PRED_FORMAT2(::testing::internal:: \
+                      EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
+                      expected, actual)
+#define EXPECT_NE(expected, actual) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual)
+#define EXPECT_LE(val1, val2) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
+#define EXPECT_LT(val1, val2) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
+#define EXPECT_GE(val1, val2) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
+#define EXPECT_GT(val1, val2) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
+
+#define GTEST_ASSERT_EQ(expected, actual) \
+  ASSERT_PRED_FORMAT2(::testing::internal:: \
+                      EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
+                      expected, actual)
+#define GTEST_ASSERT_NE(val1, val2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
+#define GTEST_ASSERT_LE(val1, val2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
+#define GTEST_ASSERT_LT(val1, val2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
+#define GTEST_ASSERT_GE(val1, val2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
+#define GTEST_ASSERT_GT(val1, val2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
+
+// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of
+// ASSERT_XY(), which clashes with some users' own code.
+
+#if !GTEST_DONT_DEFINE_ASSERT_EQ
+# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)
+#endif
+
+#if !GTEST_DONT_DEFINE_ASSERT_NE
+# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2)
+#endif
+
+#if !GTEST_DONT_DEFINE_ASSERT_LE
+# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)
+#endif
+
+#if !GTEST_DONT_DEFINE_ASSERT_LT
+# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
+#endif
+
+#if !GTEST_DONT_DEFINE_ASSERT_GE
+# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
+#endif
+
+#if !GTEST_DONT_DEFINE_ASSERT_GT
+# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)
+#endif
+
+// C String Comparisons.  All tests treat NULL and any non-NULL string
+// as different.  Two NULLs are equal.
+//
+//    * {ASSERT|EXPECT}_STREQ(s1, s2):     Tests that s1 == s2
+//    * {ASSERT|EXPECT}_STRNE(s1, s2):     Tests that s1 != s2
+//    * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case
+//    * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case
+//
+// For wide or narrow string objects, you can use the
+// {ASSERT|EXPECT}_??() macros.
+//
+// Don't depend on the order in which the arguments are evaluated,
+// which is undefined.
+//
+// These macros evaluate their arguments exactly once.
+
+#define EXPECT_STREQ(expected, actual) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
+#define EXPECT_STRNE(s1, s2) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
+#define EXPECT_STRCASEEQ(expected, actual) \
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual)
+#define EXPECT_STRCASENE(s1, s2)\
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
+
+#define ASSERT_STREQ(expected, actual) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual)
+#define ASSERT_STRNE(s1, s2) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
+#define ASSERT_STRCASEEQ(expected, actual) \
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual)
+#define ASSERT_STRCASENE(s1, s2)\
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
+
+// Macros for comparing floating-point numbers.
+//
+//    * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual):
+//         Tests that two float values are almost equal.
+//    * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual):
+//         Tests that two double values are almost equal.
+//    * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
+//         Tests that v1 and v2 are within the given distance to each other.
+//
+// Google Test uses ULP-based comparison to automatically pick a default
+// error bound that is appropriate for the operands.  See the
+// FloatingPoint template class in gtest-internal.h if you are
+// interested in the implementation details.
+
+#define EXPECT_FLOAT_EQ(expected, actual)\
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
+                      expected, actual)
+
+#define EXPECT_DOUBLE_EQ(expected, actual)\
+  EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
+                      expected, actual)
+
+#define ASSERT_FLOAT_EQ(expected, actual)\
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
+                      expected, actual)
+
+#define ASSERT_DOUBLE_EQ(expected, actual)\
+  ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
+                      expected, actual)
+
+#define EXPECT_NEAR(val1, val2, abs_error)\
+  EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
+                      val1, val2, abs_error)
+
+#define ASSERT_NEAR(val1, val2, abs_error)\
+  ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
+                      val1, val2, abs_error)
+
+// These predicate format functions work on floating-point values, and
+// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g.
+//
+//   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
+
+// Asserts that val1 is less than, or almost equal to, val2.  Fails
+// otherwise.  In particular, it fails if either val1 or val2 is NaN.
+GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
+                                   float val1, float val2);
+GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
+                                    double val1, double val2);
+
+
+#if GTEST_OS_WINDOWS
+
+// Macros that test for HRESULT failure and success, these are only useful
+// on Windows, and rely on Windows SDK macros and APIs to compile.
+//
+//    * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)
+//
+// When expr unexpectedly fails or succeeds, Google Test prints the
+// expected result and the actual result with both a human-readable
+// string representation of the error, if available, as well as the
+// hex result code.
+# define EXPECT_HRESULT_SUCCEEDED(expr) \
+    EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
+
+# define ASSERT_HRESULT_SUCCEEDED(expr) \
+    ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
+
+# define EXPECT_HRESULT_FAILED(expr) \
+    EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
+
+# define ASSERT_HRESULT_FAILED(expr) \
+    ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
+
+#endif  // GTEST_OS_WINDOWS
+
+// Macros that execute statement and check that it doesn't generate new fatal
+// failures in the current thread.
+//
+//   * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement);
+//
+// Examples:
+//
+//   EXPECT_NO_FATAL_FAILURE(Process());
+//   ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed";
+//
+#define ASSERT_NO_FATAL_FAILURE(statement) \
+    GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)
+#define EXPECT_NO_FATAL_FAILURE(statement) \
+    GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)
+
+// Causes a trace (including the source file path, the current line
+// number, and the given message) to be included in every test failure
+// message generated by code in the current scope.  The effect is
+// undone when the control leaves the current scope.
+//
+// The message argument can be anything streamable to std::ostream.
+//
+// In the implementation, we include the current line number as part
+// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s
+// to appear in the same block - as long as they are on different
+// lines.
+#define SCOPED_TRACE(message) \
+  ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
+    __FILE__, __LINE__, ::testing::Message() << (message))
+
+// Compile-time assertion for type equality.
+// StaticAssertTypeEq<type1, type2>() compiles iff type1 and type2 are
+// the same type.  The value it returns is not interesting.
+//
+// Instead of making StaticAssertTypeEq a class template, we make it a
+// function template that invokes a helper class template.  This
+// prevents a user from misusing StaticAssertTypeEq<T1, T2> by
+// defining objects of that type.
+//
+// CAVEAT:
+//
+// When used inside a method of a class template,
+// StaticAssertTypeEq<T1, T2>() is effective ONLY IF the method is
+// instantiated.  For example, given:
+//
+//   template <typename T> class Foo {
+//    public:
+//     void Bar() { testing::StaticAssertTypeEq<int, T>(); }
+//   };
+//
+// the code:
+//
+//   void Test1() { Foo<bool> foo; }
+//
+// will NOT generate a compiler error, as Foo<bool>::Bar() is never
+// actually instantiated.  Instead, you need:
+//
+//   void Test2() { Foo<bool> foo; foo.Bar(); }
+//
+// to cause a compiler error.
+template <typename T1, typename T2>
+bool StaticAssertTypeEq() {
+  (void)internal::StaticAssertTypeEqHelper<T1, T2>();
+  return true;
+}
+
+// Defines a test.
+//
+// The first parameter is the name of the test case, and the second
+// parameter is the name of the test within the test case.
+//
+// The convention is to end the test case name with "Test".  For
+// example, a test case for the Foo class can be named FooTest.
+//
+// The user should put his test code between braces after using this
+// macro.  Example:
+//
+//   TEST(FooTest, InitializesCorrectly) {
+//     Foo foo;
+//     EXPECT_TRUE(foo.StatusIsOK());
+//   }
+
+// Note that we call GetTestTypeId() instead of GetTypeId<
+// ::testing::Test>() here to get the type ID of testing::Test.  This
+// is to work around a suspected linker bug when using Google Test as
+// a framework on Mac OS X.  The bug causes GetTypeId<
+// ::testing::Test>() to return different values depending on whether
+// the call is from the Google Test framework itself or from user test
+// code.  GetTestTypeId() is guaranteed to always return the same
+// value, as it always calls GetTypeId<>() from the Google Test
+// framework.
+#define GTEST_TEST(test_case_name, test_name)\
+  GTEST_TEST_(test_case_name, test_name, \
+              ::testing::Test, ::testing::internal::GetTestTypeId())
+
+// Define this macro to 1 to omit the definition of TEST(), which
+// is a generic name and clashes with some other libraries.
+#if !GTEST_DONT_DEFINE_TEST
+# define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name)
+#endif
+
+// Defines a test that uses a test fixture.
+//
+// The first parameter is the name of the test fixture class, which
+// also doubles as the test case name.  The second parameter is the
+// name of the test within the test case.
+//
+// A test fixture class must be declared earlier.  The user should put
+// his test code between braces after using this macro.  Example:
+//
+//   class FooTest : public testing::Test {
+//    protected:
+//     virtual void SetUp() { b_.AddElement(3); }
+//
+//     Foo a_;
+//     Foo b_;
+//   };
+//
+//   TEST_F(FooTest, InitializesCorrectly) {
+//     EXPECT_TRUE(a_.StatusIsOK());
+//   }
+//
+//   TEST_F(FooTest, ReturnsElementCountCorrectly) {
+//     EXPECT_EQ(0, a_.size());
+//     EXPECT_EQ(1, b_.size());
+//   }
+
+#define TEST_F(test_fixture, test_name)\
+  GTEST_TEST_(test_fixture, test_name, test_fixture, \
+              ::testing::internal::GetTypeId<test_fixture>())
+
+// Use this macro in main() to run all tests.  It returns 0 if all
+// tests are successful, or 1 otherwise.
+//
+// RUN_ALL_TESTS() should be invoked after the command line has been
+// parsed by InitGoogleTest().
+
+#define RUN_ALL_TESTS()\
+  (::testing::UnitTest::GetInstance()->Run())
+
+}  // namespace testing
+
+#endif  // GTEST_INCLUDE_GTEST_GTEST_H_
diff --git a/internal/ceres/implicit_schur_complement.cc b/internal/ceres/implicit_schur_complement.cc
new file mode 100644
index 0000000..bd90884
--- /dev/null
+++ b/internal/ceres/implicit_schur_complement.cc
@@ -0,0 +1,237 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/implicit_schur_complement.h"
+
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+ImplicitSchurComplement::ImplicitSchurComplement(int num_eliminate_blocks,
+                                                 bool constant_sparsity,
+                                                 bool preconditioner)
+    : num_eliminate_blocks_(num_eliminate_blocks),
+      constant_sparsity_(constant_sparsity),
+      preconditioner_(preconditioner),
+      A_(NULL),
+      D_(NULL),
+      b_(NULL),
+      block_diagonal_EtE_inverse_(NULL),
+      block_diagonal_FtF_inverse_(NULL) {
+}
+
+ImplicitSchurComplement::~ImplicitSchurComplement() {
+}
+
+void ImplicitSchurComplement::Init(const BlockSparseMatrixBase& A,
+                                   const double* D,
+                                   const double* b) {
+  // Since initialization is reasonably heavy, perhaps we can save on
+  // constructing a new object everytime.
+  if ((A_ == NULL) || !constant_sparsity_) {
+    A_.reset(new PartitionedMatrixView(A, num_eliminate_blocks_));
+  }
+
+  D_ = D;
+  b_ = b;
+
+  // Initialize temporary storage and compute the block diagonals of
+  // E'E and F'E.
+  if ((!constant_sparsity_) || (block_diagonal_EtE_inverse_ == NULL)) {
+    block_diagonal_EtE_inverse_.reset(A_->CreateBlockDiagonalEtE());
+    if (preconditioner_) {
+      block_diagonal_FtF_inverse_.reset(A_->CreateBlockDiagonalFtF());
+    }
+    rhs_.resize(A_->num_cols_f());
+    rhs_.setZero();
+    tmp_rows_.resize(A_->num_rows());
+    tmp_e_cols_.resize(A_->num_cols_e());
+    tmp_e_cols_2_.resize(A_->num_cols_e());
+    tmp_f_cols_.resize(A_->num_cols_f());
+  } else {
+    A_->UpdateBlockDiagonalEtE(block_diagonal_EtE_inverse_.get());
+    if (preconditioner_) {
+      A_->UpdateBlockDiagonalFtF(block_diagonal_FtF_inverse_.get());
+    }
+  }
+
+  // The block diagonals of the augmented linear system contain
+  // contributions from the diagonal D if it is non-null. Add that to
+  // the block diagonals and invert them.
+  if (D_ != NULL)  {
+    AddDiagonalAndInvert(D_, block_diagonal_EtE_inverse_.get());
+    if (preconditioner_) {
+      AddDiagonalAndInvert(D_ + A_->num_cols_e(),
+                           block_diagonal_FtF_inverse_.get());
+    }
+  } else {
+    AddDiagonalAndInvert(NULL, block_diagonal_EtE_inverse_.get());
+    if (preconditioner_) {
+      AddDiagonalAndInvert(NULL, block_diagonal_FtF_inverse_.get());
+    }
+  }
+
+  // Compute the RHS of the Schur complement system.
+  UpdateRhs();
+}
+
+// Evaluate the product
+//
+//   Sx = [F'F - F'E (E'E)^-1 E'F]x
+//
+// By breaking it down into individual matrix vector products
+// involving the matrices E and F. This is implemented using a
+// PartitionedMatrixView of the input matrix A.
+void ImplicitSchurComplement::RightMultiply(const double* x, double* y) const {
+  // y1 = F x
+  tmp_rows_.setZero();
+  A_->RightMultiplyF(x, tmp_rows_.data());
+
+  // y2 = E' y1
+  tmp_e_cols_.setZero();
+  A_->LeftMultiplyE(tmp_rows_.data(), tmp_e_cols_.data());
+
+  // y3 = -(E'E)^-1 y2
+  tmp_e_cols_2_.setZero();
+  block_diagonal_EtE_inverse_->RightMultiply(tmp_e_cols_.data(),
+                                             tmp_e_cols_2_.data());
+  tmp_e_cols_2_ *= -1.0;
+
+  // y1 = y1 + E y3
+  A_->RightMultiplyE(tmp_e_cols_2_.data(), tmp_rows_.data());
+
+  // y5 = D * x
+  if (D_ != NULL) {
+    ConstVectorRef Dref(D_ + A_->num_cols_e(), num_cols());
+    VectorRef(y, num_cols()) =
+        (Dref.array().square() *
+         ConstVectorRef(x, num_cols()).array()).matrix();
+  } else {
+    VectorRef(y, num_cols()).setZero();
+  }
+
+  // y = y5 + F' y1
+  A_->LeftMultiplyF(tmp_rows_.data(), y);
+}
+
+// Given a block diagonal matrix and an optional array of diagonal
+// entries D, add them to the diagonal of the matrix and compute the
+// inverse of each diagonal block.
+void ImplicitSchurComplement::AddDiagonalAndInvert(
+    const double* D,
+    BlockSparseMatrix* block_diagonal) {
+  const CompressedRowBlockStructure* block_diagonal_structure =
+      block_diagonal->block_structure();
+  for (int r = 0; r < block_diagonal_structure->rows.size(); ++r) {
+    const int row_block_pos = block_diagonal_structure->rows[r].block.position;
+    const int row_block_size = block_diagonal_structure->rows[r].block.size;
+    const Cell& cell = block_diagonal_structure->rows[r].cells[0];
+    MatrixRef m(block_diagonal->mutable_values() + cell.position,
+                row_block_size, row_block_size);
+
+    if (D != NULL) {
+      ConstVectorRef d(D + row_block_pos, row_block_size);
+      m += d.array().square().matrix().asDiagonal();
+    }
+
+    m = m
+        .selfadjointView<Eigen::Upper>()
+        .ldlt()
+        .solve(Matrix::Identity(row_block_size, row_block_size));
+  }
+}
+
+// Similar to RightMultiply, use the block structure of the matrix A
+// to compute y = (E'E)^-1 (E'b - E'F x).
+void ImplicitSchurComplement::BackSubstitute(const double* x, double* y) {
+  const int num_cols_e = A_->num_cols_e();
+  const int num_cols_f = A_->num_cols_f();
+  const int num_cols =  A_->num_cols();
+  const int num_rows = A_->num_rows();
+
+  // y1 = F x
+  tmp_rows_.setZero();
+  A_->RightMultiplyF(x, tmp_rows_.data());
+
+  // y2 = b - y1
+  tmp_rows_ = ConstVectorRef(b_, num_rows) - tmp_rows_;
+
+  // y3 = E' y2
+  tmp_e_cols_.setZero();
+  A_->LeftMultiplyE(tmp_rows_.data(), tmp_e_cols_.data());
+
+  // y = (E'E)^-1 y3
+  VectorRef(y, num_cols).setZero();
+  block_diagonal_EtE_inverse_->RightMultiply(tmp_e_cols_.data(), y);
+
+  // The full solution vector y has two blocks. The first block of
+  // variables corresponds to the eliminated variables, which we just
+  // computed via back substitution. The second block of variables
+  // corresponds to the Schur complement system, so we just copy those
+  // values from the solution to the Schur complement.
+  VectorRef(y + num_cols_e, num_cols_f) =  ConstVectorRef(x, num_cols_f);
+}
+
+// Compute the RHS of the Schur complement system.
+//
+// rhs = F'b - F'E (E'E)^-1 E'b
+//
+// Like BackSubstitute, we use the block structure of A to implement
+// this using a series of matrix vector products.
+void ImplicitSchurComplement::UpdateRhs() {
+  // y1 = E'b
+  tmp_e_cols_.setZero();
+  A_->LeftMultiplyE(b_, tmp_e_cols_.data());
+
+  // y2 = (E'E)^-1 y1
+  Vector y2 = Vector::Zero(A_->num_cols_e());
+  block_diagonal_EtE_inverse_->RightMultiply(tmp_e_cols_.data(), y2.data());
+
+  // y3 = E y2
+  tmp_rows_.setZero();
+  A_->RightMultiplyE(y2.data(), tmp_rows_.data());
+
+  // y3 = b - y3
+  tmp_rows_ = ConstVectorRef(b_, A_->num_rows()) - tmp_rows_;
+
+  // rhs = F' y3
+  rhs_.setZero();
+  A_->LeftMultiplyF(tmp_rows_.data(), rhs_.data());
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/implicit_schur_complement.h b/internal/ceres/implicit_schur_complement.h
new file mode 100644
index 0000000..37a319f
--- /dev/null
+++ b/internal/ceres/implicit_schur_complement.h
@@ -0,0 +1,176 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// An iterative solver for solving the Schur complement/reduced camera
+// linear system that arise in SfM problems.
+
+#ifndef CERES_INTERNAL_IMPLICIT_SCHUR_COMPLEMENT_H_
+#define CERES_INTERNAL_IMPLICIT_SCHUR_COMPLEMENT_H_
+
+#include "ceres/linear_operator.h"
+#include "ceres/partitioned_matrix_view.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockSparseMatrix;
+class BlockSparseMatrixBase;
+
+// This class implements various linear algebraic operations related
+// to the Schur complement without explicitly forming it.
+//
+//
+// Given a reactangular linear system Ax = b, where
+//
+//   A = [E F]
+//
+// The normal equations are given by
+//
+//   A'Ax = A'b
+//
+//  |E'E E'F||y| = |E'b|
+//  |F'E F'F||z|   |F'b|
+//
+// and the Schur complement system is given by
+//
+//  [F'F - F'E (E'E)^-1 E'F] z = F'b - F'E (E'E)^-1 E'b
+//
+// Now if we wish to solve Ax = b in the least squares sense, one way
+// is to form this Schur complement system and solve it using
+// Preconditioned Conjugate Gradients.
+//
+// The key operation in a conjugate gradient solver is the evaluation of the
+// matrix vector product with the Schur complement
+//
+//   S = F'F - F'E (E'E)^-1 E'F
+//
+// It is straightforward to see that matrix vector products with S can
+// be evaluated without storing S in memory. Instead, given (E'E)^-1
+// (which for our purposes is an easily inverted block diagonal
+// matrix), it can be done in terms of matrix vector products with E,
+// F and (E'E)^-1. This class implements this functionality and other
+// auxilliary bits needed to implement a CG solver on the Schur
+// complement using the PartitionedMatrixView object.
+//
+// THREAD SAFETY: This class is nqot thread safe. In particular, the
+// RightMultiply (and the LeftMultiply) methods are not thread safe as
+// they depend on mutable arrays used for the temporaries needed to
+// compute the product y += Sx;
+class ImplicitSchurComplement : public LinearOperator {
+ public:
+  // num_eliminate_blocks is the number of E blocks in the matrix
+  // A.
+  //
+  // constant_sparsity indicates if across calls to Init, the sparsity
+  // structure of the matrix A remains constant or not. This makes for
+  // significant savings across multiple matrices A, e.g. when used in
+  // conjunction with an optimization algorithm.
+  //
+  // preconditioner indicates whether the inverse of the matrix F'F
+  // should be computed or not as a preconditioner for the Schur
+  // Complement.
+  //
+  // TODO(sameeragarwal): Get rid of the two bools below and replace
+  // them with enums.
+  ImplicitSchurComplement(int num_eliminate_blocks,
+                          bool constant_sparsity,
+                          bool preconditioner);
+  virtual ~ImplicitSchurComplement();
+
+  // Initialize the Schur complement for a linear least squares
+  // problem of the form
+  //
+  //   |A      | x = |b|
+  //   |diag(D)|     |0|
+  //
+  // If D is null, then it is treated as a zero dimensional matrix. It
+  // is important that the matrix A have a BlockStructure object
+  // associated with it and has a block structure that is compatible
+  // with the SchurComplement solver.
+  void Init(const BlockSparseMatrixBase& A, const double* D, const double* b);
+
+  // y += Sx, where S is the Schur complement.
+  virtual void RightMultiply(const double* x, double* y) const;
+
+  // The Schur complement is a symmetric positive definite matrix,
+  // thus the left and right multiply operators are the same.
+  virtual void LeftMultiply(const double* x, double* y) const {
+    RightMultiply(x, y);
+  }
+
+  // y = (E'E)^-1 (E'b - E'F x). Given an estimate of the solution to
+  // the Schur complement system, this method computes the value of
+  // the e_block variables that were eliminated to form the Schur
+  // complement.
+  void BackSubstitute(const double* x, double* y);
+
+  virtual int num_rows() const { return A_->num_cols_f(); }
+  virtual int num_cols() const { return A_->num_cols_f(); }
+  const Vector& rhs()    const { return rhs_;             }
+
+  const BlockSparseMatrix* block_diagonal_EtE_inverse() const {
+    return block_diagonal_EtE_inverse_.get();
+  }
+
+  const BlockSparseMatrix* block_diagonal_FtF_inverse() const {
+    return block_diagonal_FtF_inverse_.get();
+  }
+
+ private:
+  void AddDiagonalAndInvert(const double* D, BlockSparseMatrix* matrix);
+  void UpdateRhs();
+
+  int num_eliminate_blocks_;
+  bool constant_sparsity_;
+  bool preconditioner_;
+
+  scoped_ptr<PartitionedMatrixView> A_;
+  const double* D_;
+  const double* b_;
+
+  scoped_ptr<BlockSparseMatrix> block_diagonal_EtE_inverse_;
+  scoped_ptr<BlockSparseMatrix> block_diagonal_FtF_inverse_;
+
+  Vector rhs_;
+
+  // Temporary storage vectors used to implement RightMultiply.
+  mutable Vector tmp_rows_;
+  mutable Vector tmp_e_cols_;
+  mutable Vector tmp_e_cols_2_;
+  mutable Vector tmp_f_cols_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_IMPLICIT_SCHUR_COMPLEMENT_H_
diff --git a/internal/ceres/implicit_schur_complement_test.cc b/internal/ceres/implicit_schur_complement_test.cc
new file mode 100644
index 0000000..e5dd471
--- /dev/null
+++ b/internal/ceres/implicit_schur_complement_test.cc
@@ -0,0 +1,197 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/implicit_schur_complement.h"
+
+#include <cstddef>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "Eigen/Dense"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+using testing::AssertionResult;
+
+const double kEpsilon = 1e-14;
+
+class ImplicitSchurComplementTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(2));
+
+    CHECK_NOTNULL(problem.get());
+    A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+    b_.reset(problem->b.release());
+    D_.reset(problem->D.release());
+
+    num_cols_ = A_->num_cols();
+    num_rows_ = A_->num_rows();
+    num_eliminate_blocks_ = problem->num_eliminate_blocks;
+  }
+
+  void ReducedLinearSystemAndSolution(double* D,
+                                      Matrix* lhs,
+                                      Vector* rhs,
+                                      Vector* solution) {
+    const CompressedRowBlockStructure* bs = A_->block_structure();
+    const int num_col_blocks = bs->cols.size();
+    vector<int> blocks(num_col_blocks - num_eliminate_blocks_, 0);
+    for (int i = num_eliminate_blocks_; i < num_col_blocks; ++i) {
+      blocks[i - num_eliminate_blocks_] = bs->cols[i].size;
+    }
+
+    BlockRandomAccessDenseMatrix blhs(blocks);
+    const int num_schur_rows = blhs.num_rows();
+
+    LinearSolver::Options options;
+    options.constant_sparsity = false;
+    options.num_eliminate_blocks = num_eliminate_blocks_;
+    options.type = DENSE_SCHUR;
+
+    scoped_ptr<SchurEliminatorBase> eliminator(
+        SchurEliminatorBase::Create(options));
+    CHECK_NOTNULL(eliminator.get());
+    eliminator->Init(num_eliminate_blocks_, bs);
+
+    lhs->resize(num_schur_rows, num_schur_rows);
+    rhs->resize(num_schur_rows);
+
+    eliminator->Eliminate(A_.get(), b_.get(), D, &blhs, rhs->data());
+
+    MatrixRef lhs_ref(blhs.mutable_values(), num_schur_rows, num_schur_rows);
+
+    // lhs_ref is an upper triangular matrix. Construct a full version
+    // of lhs_ref in lhs by transposing lhs_ref, choosing the strictly
+    // lower triangular part of the matrix and adding it to lhs_ref.
+    *lhs = lhs_ref;
+    lhs->triangularView<Eigen::StrictlyLower>() =
+        lhs_ref.triangularView<Eigen::StrictlyUpper>().transpose();
+
+    solution->resize(num_cols_);
+    solution->setZero();
+    VectorRef schur_solution(solution->data() + num_cols_ - num_schur_rows,
+                             num_schur_rows);
+    schur_solution = lhs->selfadjointView<Eigen::Upper>().ldlt().solve(*rhs);
+    eliminator->BackSubstitute(A_.get(), b_.get(), D,
+                               schur_solution.data(), solution->data());
+  }
+
+  AssertionResult TestImplicitSchurComplement(double* D) {
+    Matrix lhs;
+    Vector rhs;
+    Vector reference_solution;
+    ReducedLinearSystemAndSolution(D, &lhs, &rhs, &reference_solution);
+
+    ImplicitSchurComplement isc(num_eliminate_blocks_, false, true);
+    isc.Init(*A_, D, b_.get());
+
+    int num_sc_cols = lhs.cols();
+
+    for (int i = 0; i < num_sc_cols; ++i) {
+      Vector x(num_sc_cols);
+      x.setZero();
+      x(i) = 1.0;
+
+      Vector y(num_sc_cols);
+      y = lhs * x;
+
+      Vector z(num_sc_cols);
+      isc.RightMultiply(x.data(), z.data());
+
+      // The i^th column of the implicit schur complement is the same as
+      // the explicit schur complement.
+      if ((y - z).norm() > kEpsilon) {
+        return testing::AssertionFailure()
+            << "Explicit and Implicit SchurComplements differ in "
+            << "column " << i << ". explicit: " << y.transpose()
+            << " implicit: " << z.transpose();
+      }
+    }
+
+    // Compare the rhs of the reduced linear system
+    if ((isc.rhs() - rhs).norm() > kEpsilon) {
+      return testing::AssertionFailure()
+            << "Explicit and Implicit SchurComplements differ in "
+            << "rhs. explicit: " << rhs.transpose()
+            << " implicit: " << isc.rhs().transpose();
+    }
+
+    // Reference solution to the f_block.
+    const Vector reference_f_sol =
+        lhs.selfadjointView<Eigen::Upper>().ldlt().solve(rhs);
+
+    // Backsubstituted solution from the implicit schur solver using the
+    // reference solution to the f_block.
+    Vector sol(num_cols_);
+    isc.BackSubstitute(reference_f_sol.data(), sol.data());
+    if ((sol - reference_solution).norm() > kEpsilon) {
+      return testing::AssertionFailure()
+          << "Explicit and Implicit SchurComplements solutions differ. "
+          << "explicit: " << reference_solution.transpose()
+          << " implicit: " << sol.transpose();
+    }
+
+    return testing::AssertionSuccess();
+  }
+
+  int num_rows_;
+  int num_cols_;
+  int num_eliminate_blocks_;
+
+  scoped_ptr<BlockSparseMatrix> A_;
+  scoped_array<double> b_;
+  scoped_array<double> D_;
+};
+
+// Verify that the Schur Complement matrix implied by the
+// ImplicitSchurComplement class matches the one explicitly computed
+// by the SchurComplement solver.
+//
+// We do this with and without regularization to check that the
+// support for the LM diagonal is correct.
+TEST_F(ImplicitSchurComplementTest, SchurMatrixValuesTest) {
+  EXPECT_TRUE(TestImplicitSchurComplement(NULL));
+  EXPECT_TRUE(TestImplicitSchurComplement(D_.get()));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/integral_types.h b/internal/ceres/integral_types.h
new file mode 100644
index 0000000..01e0493
--- /dev/null
+++ b/internal/ceres/integral_types.h
@@ -0,0 +1,92 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Portable typedefs for various fixed-size integers. Uses template
+// metaprogramming instead of fragile compiler defines.
+
+#ifndef CERES_INTERNAL_INTEGRAL_TYPES_H_
+#define CERES_INTERNAL_INTEGRAL_TYPES_H_
+
+namespace ceres {
+namespace internal {
+
+// Compile time ternary on types.
+template<bool kCondition, typename kTrueType, typename kFalseType>
+struct Ternary {
+  typedef kTrueType type;
+};
+template<typename kTrueType, typename kFalseType>
+struct Ternary<false, kTrueType, kFalseType> {
+  typedef kFalseType type;
+};
+
+#define CERES_INTSIZE(TYPE) \
+    typename Ternary<sizeof(TYPE) * 8 == kBits, TYPE,
+
+template<int kBits>
+struct Integer {
+  typedef
+      CERES_INTSIZE(char)
+      CERES_INTSIZE(short)
+      CERES_INTSIZE(int)
+      CERES_INTSIZE(long int)
+      CERES_INTSIZE(long long)
+      void>::type >::type >::type >::type >::type
+      type;
+};
+
+template<int kBits>
+struct UnsignedInteger {
+  typedef
+      CERES_INTSIZE(unsigned char)
+      CERES_INTSIZE(unsigned short)
+      CERES_INTSIZE(unsigned int)
+      CERES_INTSIZE(unsigned long int)
+      CERES_INTSIZE(unsigned long long)
+      void>::type >::type >::type >::type >::type
+      type;
+};
+
+#undef CERES_INTSIZE
+
+typedef Integer< 8>::type int8;
+typedef Integer<16>::type int16;
+typedef Integer<32>::type int32;
+typedef Integer<64>::type int64;
+
+typedef UnsignedInteger< 8>::type uint8;
+typedef UnsignedInteger<16>::type uint16;
+typedef UnsignedInteger<32>::type uint32;
+typedef UnsignedInteger<64>::type uint64;
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_INTEGRAL_TYPES_H_
diff --git a/internal/ceres/iterative_schur_complement_solver.cc b/internal/ceres/iterative_schur_complement_solver.cc
new file mode 100644
index 0000000..48d8453
--- /dev/null
+++ b/internal/ceres/iterative_schur_complement_solver.cc
@@ -0,0 +1,147 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/iterative_schur_complement_solver.h"
+
+#include <algorithm>
+#include <cstring>
+#include <vector>
+
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/implicit_schur_complement.h"
+#include "ceres/linear_solver.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/visibility_based_preconditioner.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+IterativeSchurComplementSolver::IterativeSchurComplementSolver(
+    const LinearSolver::Options& options)
+    : options_(options) {
+}
+
+IterativeSchurComplementSolver::~IterativeSchurComplementSolver() {
+}
+
+LinearSolver::Summary IterativeSchurComplementSolver::SolveImpl(
+    BlockSparseMatrixBase* A,
+    const double* b,
+    const LinearSolver::PerSolveOptions& per_solve_options,
+    double* x) {
+  CHECK_NOTNULL(A->block_structure());
+
+  // Initialize a ImplicitSchurComplement object.
+  if ((schur_complement_ == NULL) || (!options_.constant_sparsity)) {
+    schur_complement_.reset(
+        new ImplicitSchurComplement(options_.num_eliminate_blocks,
+                                    options_.constant_sparsity,
+                                    options_.preconditioner_type == JACOBI));
+  }
+  schur_complement_->Init(*A, per_solve_options.D, b);
+
+  // Initialize the solution to the Schur complement system to zero.
+  //
+  // TODO(sameeragarwal): There maybe a better initialization than an
+  // all zeros solution. Explore other cheap starting points.
+  reduced_linear_system_solution_.resize(schur_complement_->num_rows());
+  reduced_linear_system_solution_.setZero();
+
+  // Instantiate a conjugate gradient solver that runs on the Schur complement
+  // matrix with the block diagonal of the matrix F'F as the preconditioner.
+  LinearSolver::Options cg_options;
+  cg_options.type = CONJUGATE_GRADIENTS;
+  cg_options.max_num_iterations = options_.max_num_iterations;
+  scoped_ptr<LinearSolver> cg_solver(LinearSolver::Create(cg_options));
+  LinearSolver::PerSolveOptions cg_per_solve_options;
+
+  cg_per_solve_options.r_tolerance = per_solve_options.r_tolerance;
+  cg_per_solve_options.q_tolerance = per_solve_options.q_tolerance;
+
+  bool is_preconditioner_good = false;
+  switch (options_.preconditioner_type) {
+    case IDENTITY:
+      is_preconditioner_good = true;
+      break;
+    case JACOBI:
+      // We need to strip the constness of the block_diagonal_FtF_inverse
+      // matrix here because the only other way to initialize the struct
+      // cg_solve_options would be to add a constructor to it. We know
+      // that the only method ever called on the preconditioner is the
+      // RightMultiply which is a const method so we don't need to worry
+      // about the object getting modified.
+      cg_per_solve_options.preconditioner =
+          const_cast<BlockSparseMatrix*>(
+              schur_complement_->block_diagonal_FtF_inverse());
+      is_preconditioner_good = true;
+      break;
+    case SCHUR_JACOBI:
+    case CLUSTER_JACOBI:
+    case CLUSTER_TRIDIAGONAL:
+      if (visibility_based_preconditioner_.get() == NULL) {
+        visibility_based_preconditioner_.reset(
+            new VisibilityBasedPreconditioner(*A->block_structure(), options_));
+      }
+      is_preconditioner_good =
+          visibility_based_preconditioner_->Compute(*A, per_solve_options.D);
+      cg_per_solve_options.preconditioner =
+          visibility_based_preconditioner_.get();
+      break;
+    default:
+      LOG(FATAL) << "Unknown Preconditioner Type";
+  }
+
+  LinearSolver::Summary cg_summary;
+  cg_summary.num_iterations = 0;
+  cg_summary.termination_type = FAILURE;
+
+  if (is_preconditioner_good) {
+    cg_summary = cg_solver->Solve(schur_complement_.get(),
+                                  schur_complement_->rhs().data(),
+                                  cg_per_solve_options,
+                                  reduced_linear_system_solution_.data());
+    if (cg_summary.termination_type != FAILURE) {
+      schur_complement_->BackSubstitute(
+          reduced_linear_system_solution_.data(), x);
+    }
+  }
+
+  VLOG(2) << "CG Iterations : " << cg_summary.num_iterations;
+  return cg_summary;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/iterative_schur_complement_solver.h b/internal/ceres/iterative_schur_complement_solver.h
new file mode 100644
index 0000000..cfeb65e
--- /dev/null
+++ b/internal/ceres/iterative_schur_complement_solver.h
@@ -0,0 +1,94 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_ITERATIVE_SCHUR_COMPLEMENT_SOLVER_H_
+#define CERES_INTERNAL_ITERATIVE_SCHUR_COMPLEMENT_SOLVER_H_
+
+#include "ceres/linear_solver.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockSparseMatrix;
+class BlockSparseMatrixBase;
+class ImplicitSchurComplement;
+class VisibilityBasedPreconditioner;
+
+// This class implements an iterative solver for the linear least
+// squares problems that have a bi-partitte sparsity structure common
+// to Structure from Motion problems.
+//
+// The algorithm used by this solver was developed in a series of
+// papers - "Agarwal et al, Bundle Adjustment in the Large, ECCV 2010"
+// and "Wu et al, Multicore Bundle Adjustment, submitted to CVPR
+// 2011" at the Univeristy of Washington.
+//
+// The key idea is that one can run Conjugate Gradients on the Schur
+// Complement system without explicitly forming the Schur Complement
+// in memory. The heavy lifting for this is done by the
+// ImplicitSchurComplement class. Not forming the Schur complement in
+// memory and factoring it results in substantial savings in time and
+// memory. Further, iterative solvers like this open up the
+// possibility of solving the Newton equations in a non-linear solver
+// only approximately and terminating early, thereby saving even more
+// time.
+//
+// For the curious, running CG on the Schur complement is the same as
+// running CG on the Normal Equations with an SSOR preconditioner. For
+// a proof of this fact and others related to this solver please see
+// the section on Domain Decomposition Methods in Saad's book
+// "Iterative Methods for Sparse Linear Systems".
+class IterativeSchurComplementSolver : public BlockSparseMatrixBaseSolver {
+ public:
+  explicit IterativeSchurComplementSolver(
+      const LinearSolver::Options& options);
+
+  virtual ~IterativeSchurComplementSolver();
+
+ private:
+  virtual LinearSolver::Summary SolveImpl(
+      BlockSparseMatrixBase* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& options,
+      double* x);
+
+  LinearSolver::Options options_;
+  scoped_ptr<internal::ImplicitSchurComplement> schur_complement_;
+  scoped_ptr<VisibilityBasedPreconditioner> visibility_based_preconditioner_;
+  Vector reduced_linear_system_solution_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_ITERATIVE_SCHUR_COMPLEMENT_SOLVER_H_
diff --git a/internal/ceres/iterative_schur_complement_solver_test.cc b/internal/ceres/iterative_schur_complement_solver_test.cc
new file mode 100644
index 0000000..8a38107
--- /dev/null
+++ b/internal/ceres/iterative_schur_complement_solver_test.cc
@@ -0,0 +1,123 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// TODO(sameeragarwal): Add support for larger, more complicated and
+// poorly conditioned problems both for correctness testing as well as
+// benchmarking.
+
+#include "ceres/iterative_schur_complement_solver.h"
+
+#include <cstddef>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "Eigen/Dense"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+using testing::AssertionResult;
+
+const double kEpsilon = 1e-14;
+
+class IterativeSchurComplementSolverTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(2));
+
+    CHECK_NOTNULL(problem.get());
+    A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+    b_.reset(problem->b.release());
+    D_.reset(problem->D.release());
+
+    num_cols_ = A_->num_cols();
+    num_rows_ = A_->num_rows();
+    num_eliminate_blocks_ = problem->num_eliminate_blocks;
+  }
+
+  AssertionResult TestSolver(double* D) {
+    TripletSparseMatrix triplet_A(A_->num_rows(),
+                                  A_->num_cols(),
+                                  A_->num_nonzeros());
+    A_->ToTripletSparseMatrix(&triplet_A);
+
+    DenseSparseMatrix dense_A(triplet_A);
+
+    LinearSolver::Options options;
+    options.type = DENSE_QR;
+    scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
+
+    LinearSolver::PerSolveOptions per_solve_options;
+    per_solve_options.D = D;
+    Vector reference_solution(num_cols_);
+    qr->Solve(&dense_A, b_.get(), per_solve_options, reference_solution.data());
+
+    options.num_eliminate_blocks = num_eliminate_blocks_;
+    options.max_num_iterations = num_cols_;
+    IterativeSchurComplementSolver isc(options);
+
+    Vector isc_sol(num_cols_);
+    per_solve_options.r_tolerance  = 1e-12;
+    isc.Solve(A_.get(), b_.get(), per_solve_options, isc_sol.data());
+    double diff = (isc_sol - reference_solution).norm();
+    if (diff < kEpsilon) {
+      return testing::AssertionSuccess();
+    } else {
+      return testing::AssertionFailure()
+          << "The reference solution differs from the ITERATIVE_SCHUR"
+          << " solution by " << diff << " which is more than " << kEpsilon;
+    }
+  }
+
+  int num_rows_;
+  int num_cols_;
+  int num_eliminate_blocks_;
+  scoped_ptr<BlockSparseMatrix> A_;
+  scoped_array<double> b_;
+  scoped_array<double> D_;
+};
+
+TEST_F(IterativeSchurComplementSolverTest, SolverTest) {
+  EXPECT_TRUE(TestSolver(NULL));
+  EXPECT_TRUE(TestSolver(D_.get()));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/jet_quaternion_integration_test.cc b/internal/ceres/jet_quaternion_integration_test.cc
new file mode 100644
index 0000000..c7c2a79
--- /dev/null
+++ b/internal/ceres/jet_quaternion_integration_test.cc
@@ -0,0 +1,201 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Tests the use of Cere's Jet type with the quaternions found in util/math/. In
+// theory, the unittests for the quaternion class should be type parameterized
+// to make for easier testing of instantiations of the quaternion class, but it
+// is not so, and not obviously worth the work to make the switch at this time.
+
+#include "base/stringprintf.h"
+#include "gtest/gtest.h"
+#include "util/math/mathlimits.h"
+#include "util/math/matrix3x3-inl.h"
+#include "util/math/quaternion-inl.h"
+#include "util/math/vector3-inl.h"
+#include "ceres/test_util.h"
+#include "ceres/jet.h"
+#include "ceres/jet_traits.h"
+
+namespace ceres {
+namespace internal {
+
+// Use a 4-element derivative to simulate the case where each of the
+// quaternion elements are derivative parameters.
+typedef Jet<double, 4> J;
+
+struct JetTraitsTest : public ::testing::Test {
+ protected:
+  JetTraitsTest()
+      : a(J(1.1, 0), J(2.1, 1), J(3.1, 2), J(4.1, 3)),
+        b(J(0.1, 0), J(1.1, 1), J(2.1, 2), J(5.0, 3)),
+        double_a(a[0].a, a[1].a, a[2].a, a[3].a),
+        double_b(b[0].a, b[1].a, b[2].a, b[3].a) {
+    // The quaternions should be valid rotations, so normalize them.
+    a.Normalize();
+    b.Normalize();
+    double_a.Normalize();
+    double_b.Normalize();
+  }
+
+  virtual ~JetTraitsTest() {}
+
+  // A couple of arbitrary normalized quaternions.
+  Quaternion<J> a, b;
+
+  // The equivalent of a, b but in scalar form.
+  Quaternion<double> double_a, double_b;
+};
+
+// Compare scalar multiplication to jet multiplication. Ignores derivatives.
+TEST_F(JetTraitsTest, QuaternionScalarMultiplicationWorks) {
+  Quaternion<J> c = a * b;
+  Quaternion<double> double_c = double_a * double_b;
+
+  for (int i = 0; i < 4; ++i) {
+    EXPECT_EQ(double_c[i], c[i].a);
+  }
+}
+
+// Compare scalar slerp to jet slerp. Ignores derivatives.
+TEST_F(JetTraitsTest, QuaternionScalarSlerpWorks) {
+  const J fraction(0.1);
+  Quaternion<J> c = Quaternion<J>::Slerp(a, b, fraction);
+  Quaternion<double> double_c =
+      Quaternion<double>::Slerp(double_a, double_b, fraction.a);
+
+  for (int i = 0; i < 4; ++i) {
+    EXPECT_EQ(double_c[i], c[i].a);
+  }
+}
+
+// On a 32-bit optimized build, the mismatch is about 1.4e-14.
+double const kTolerance = 1e-13;
+
+void ExpectJetsClose(const J &x, const J &y) {
+  ExpectClose(x.a, y.a, kTolerance);
+  ExpectClose(x.v[0], y.v[0], kTolerance);
+  ExpectClose(x.v[1], y.v[1], kTolerance);
+  ExpectClose(x.v[2], y.v[2], kTolerance);
+  ExpectClose(x.v[3], y.v[3], kTolerance);
+}
+
+void ExpectQuaternionsClose(const Quaternion<J>& x, const Quaternion<J>& y) {
+  for (int i = 0; i < 4; ++i) {
+    ExpectJetsClose(x[i], y[i]);
+  }
+}
+
+// Compare jet slurp to jet slerp using identies, checking derivatives.
+TEST_F(JetTraitsTest, CheckSlerpIdentitiesWithNontrivialDerivatives) {
+  // Do a slerp to 0.75 directly.
+  Quaternion<J> direct = Quaternion<J>::Slerp(a, b, J(0.75));
+
+  // Now go part way twice, in theory ending at the same place.
+  Quaternion<J> intermediate = Quaternion<J>::Slerp(a, b, J(0.5));
+  Quaternion<J> indirect = Quaternion<J>::Slerp(intermediate, b, J(0.5));
+
+  // Check that the destination is the same, including derivatives.
+  ExpectQuaternionsClose(direct, indirect);
+}
+
+TEST_F(JetTraitsTest, CheckAxisAngleIsInvertibleWithNontrivialDerivatives) {
+  Vector3<J> axis;
+  J angle;
+  a.GetAxisAngle(&axis, &angle);
+  b.SetFromAxisAngle(axis, angle);
+
+  ExpectQuaternionsClose(a, b);
+}
+
+TEST_F(JetTraitsTest,
+       CheckRotationMatrixIsInvertibleWithNontrivialDerivatives) {
+  Vector3<J> axis;
+  J angle;
+  Matrix3x3<J> R;
+  a.ToRotationMatrix(&R);
+  b.SetFromRotationMatrix(R);
+
+  ExpectQuaternionsClose(a, b);
+}
+
+// This doesn't check correctnenss, only that the instantiation compiles.
+TEST_F(JetTraitsTest, CheckRotationBetweenIsCompilable) {
+  // Get two arbitrary vectors x and y.
+  Vector3<J> x, y;
+  J ignored_angle;
+  a.GetAxisAngle(&x, &ignored_angle);
+  b.GetAxisAngle(&y, &ignored_angle);
+
+  Quaternion<J> between_x_and_y = Quaternion<J>::RotationBetween(x, y);
+
+  // Prevent optimizing this away.
+  EXPECT_NE(between_x_and_y[0].a, 0.0);
+}
+
+TEST_F(JetTraitsTest, CheckRotatedWorksAsExpected) {
+  // Get two arbitrary vectors x and y.
+  Vector3<J> x;
+  J ignored_angle;
+  a.GetAxisAngle(&x, &ignored_angle);
+
+  // Rotate via a quaternion.
+  Vector3<J> y = b.Rotated(x);
+
+  // Rotate via a rotation matrix.
+  Matrix3x3<J> R;
+  b.ToRotationMatrix(&R);
+  Vector3<J> yp = R * x;
+
+  ExpectJetsClose(yp[0], y[0]);
+  ExpectJetsClose(yp[1], y[1]);
+  ExpectJetsClose(yp[2], y[2]);
+}
+
+TEST_F(JetTraitsTest, CheckRotatedWorksAsExpectedWithDoubles) {
+  // Get two arbitrary vectors x and y.
+  Vector3<double> x;
+  double ignored_angle;
+  double_a.GetAxisAngle(&x, &ignored_angle);
+
+  // Rotate via a quaternion.
+  Vector3<double> y = double_b.Rotated(x);
+
+  // Rotate via a rotation matrix.
+  Matrix3x3<double> R;
+  double_b.ToRotationMatrix(&R);
+  Vector3<double> yp = R * x;
+
+  ExpectClose(yp[0], y[0], kTolerance);
+  ExpectClose(yp[1], y[1], kTolerance);
+  ExpectClose(yp[2], y[2], kTolerance);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/jet_test.cc b/internal/ceres/jet_test.cc
new file mode 100644
index 0000000..2e47b63
--- /dev/null
+++ b/internal/ceres/jet_test.cc
@@ -0,0 +1,332 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/jet.h"
+
+#include <algorithm>
+#include <cmath>
+
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+#include "ceres/test_util.h"
+
+#define VL VLOG(1)
+
+namespace ceres {
+namespace internal {
+
+typedef Jet<double, 2> J;
+
+// Convenient shorthand for making a jet.
+J MakeJet(double a, double v0, double v1) {
+  J z;
+  z.a = a;
+  z.v[0] = v0;
+  z.v[1] = v1;
+  return z;
+}
+
+// On a 32-bit optimized build, the mismatch is about 1.4e-14.
+double const kTolerance = 1e-13;
+
+void ExpectJetsClose(const J &x, const J &y) {
+  ExpectClose(x.a, y.a, kTolerance);
+  ExpectClose(x.v[0], y.v[0], kTolerance);
+  ExpectClose(x.v[1], y.v[1], kTolerance);
+}
+
+TEST(Jet, Jet) {
+  // Pick arbitrary values for x and y.
+  J x = MakeJet(2.3, -2.7, 1e-3);
+  J y = MakeJet(1.7,  0.5, 1e+2);
+
+  VL << "x = " << x;
+  VL << "y = " << y;
+
+  { // Check that log(exp(x)) == x.
+    J z = exp(x);
+    J w = log(z);
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, x);
+  }
+
+  { // Check that (x * y) / x == y.
+    J z = x * y;
+    J w = z / x;
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, y);
+  }
+
+  { // Check that sqrt(x * x) == x.
+    J z = x * x;
+    J w = sqrt(z);
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, x);
+  }
+
+  { // Check that sqrt(y) * sqrt(y) == y.
+    J z = sqrt(y);
+    J w = z * z;
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, y);
+  }
+
+  { // Check that cos(2*x) = cos(x)^2 - sin(x)^2
+    J z = cos(J(2.0) * x);
+    J w = cos(x)*cos(x) - sin(x)*sin(x);
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, z);
+  }
+
+  { // Check that sin(2*x) = 2*cos(x)*sin(x)
+    J z = sin(J(2.0) * x);
+    J w = J(2.0)*cos(x)*sin(x);
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(w, z);
+  }
+
+  { // Check that cos(x)*cos(x) + sin(x)*sin(x) = 1
+    J z = cos(x) * cos(x);
+    J w = sin(x) * sin(x);
+    VL << "z = " << z;
+    VL << "w = " << w;
+    ExpectJetsClose(z + w, J(1.0));
+  }
+
+  { // Check that atan2(r*sin(t), r*cos(t)) = t.
+    J t = MakeJet(0.7, -0.3, +1.5);
+    J r = MakeJet(2.3, 0.13, -2.4);
+    VL << "t = " << t;
+    VL << "r = " << r;
+
+    J u = atan2(r * sin(t), r * cos(t));
+    VL << "u = " << u;
+
+    ExpectJetsClose(u, t);
+  }
+
+  { // Check that pow(x, 1) == x.
+    VL << "x = " << x;
+
+    J u = pow(x, 1.);
+    VL << "u = " << u;
+
+    ExpectJetsClose(x, u);
+  }
+
+  { // Check that pow(x, 1) == x.
+    J y = MakeJet(1, 0.0, 0.0);
+    VL << "x = " << x;
+    VL << "y = " << y;
+
+    J u = pow(x, y);
+    VL << "u = " << u;
+
+    ExpectJetsClose(x, u);
+  }
+
+  { // Check that pow(e, log(x)) == x.
+    J logx = log(x);
+
+    VL << "x = " << x;
+    VL << "y = " << y;
+
+    J u = pow(M_E, logx);
+    VL << "u = " << u;
+
+    ExpectJetsClose(x, u);
+  }
+
+  { // Check that pow(e, log(x)) == x.
+    J logx = log(x);
+    J e = MakeJet(M_E, 0., 0.);
+    VL << "x = " << x;
+    VL << "log(x) = " << logx;
+
+    J u = pow(e, logx);
+    VL << "u = " << u;
+
+    ExpectJetsClose(x, u);
+  }
+
+  { // Check that pow(e, log(x)) == x.
+    J logx = log(x);
+    J e = MakeJet(M_E, 0., 0.);
+    VL << "x = " << x;
+    VL << "logx = " << logx;
+
+    J u = pow(e, logx);
+    VL << "u = " << u;
+
+    ExpectJetsClose(x, u);
+  }
+
+  { // Check that pow(x,y) = exp(y*log(x)).
+    J logx = log(x);
+    J e = MakeJet(M_E, 0., 0.);
+    VL << "x = " << x;
+    VL << "logx = " << logx;
+
+    J u = pow(e, y*logx);
+    J v = pow(x, y);
+    VL << "u = " << u;
+    VL << "v = " << v;
+
+    ExpectJetsClose(v, u);
+  }
+
+  { // Check that 1 + x == x + 1.
+    J a = x + 1.0;
+    J b = 1.0 + x;
+
+    ExpectJetsClose(a, b);
+  }
+
+  { // Check that 1 - x == -(x - 1).
+    J a = 1.0 - x;
+    J b = -(x - 1.0);
+
+    ExpectJetsClose(a, b);
+  }
+
+  { // Check that x/s == x*s.
+    J a = x / 5.0;
+    J b = x * 5.0;
+
+    ExpectJetsClose(5.0 * a, b / 5.0);
+  }
+
+  { // Check that x / y == 1 / (y / x).
+    J a = x / y;
+    J b = 1.0 / (y / x);
+    VL << "a = " << a;
+    VL << "b = " << b;
+
+    ExpectJetsClose(a, b);
+  }
+
+  { // Check that abs(-x * x) == sqrt(x * x).
+    ExpectJetsClose(abs(-x), sqrt(x * x));
+  }
+
+  { // Check that cos(acos(x)) == x.
+    J a = MakeJet(0.1, -2.7, 1e-3);
+    ExpectJetsClose(cos(acos(a)), a);
+    ExpectJetsClose(acos(cos(a)), a);
+
+    J b = MakeJet(0.6,  0.5, 1e+2);
+    ExpectJetsClose(cos(acos(b)), b);
+    ExpectJetsClose(acos(cos(b)), b);
+  }
+
+  { // Check that sin(asin(x)) == x.
+    J a = MakeJet(0.1, -2.7, 1e-3);
+    ExpectJetsClose(sin(asin(a)), a);
+    ExpectJetsClose(asin(sin(a)), a);
+
+    J b = MakeJet(0.4,  0.5, 1e+2);
+    ExpectJetsClose(sin(asin(b)), b);
+    ExpectJetsClose(asin(sin(b)), b);
+  }
+}
+
+TEST(Jet, JetsInEigenMatrices) {
+  J x = MakeJet(2.3, -2.7, 1e-3);
+  J y = MakeJet(1.7,  0.5, 1e+2);
+  J z = MakeJet(5.3, -4.7, 1e-3);
+  J w = MakeJet(9.7,  1.5, 10.1);
+
+  Eigen::Matrix<J, 2, 2> M;
+  Eigen::Matrix<J, 2, 1> v, r1, r2;
+
+  M << x, y, z, w;
+  v << x, z;
+
+  // Check that M * v == (v^T * M^T)^T
+  r1 = M * v;
+  r2 = (v.transpose() * M.transpose()).transpose();
+
+  ExpectJetsClose(r1(0), r2(0));
+  ExpectJetsClose(r1(1), r2(1));
+}
+
+TEST(JetTraitsTest, ClassificationMixed) {
+  Jet<double, 3> a(5.5, 0);
+  a.v[0] = std::numeric_limits<double>::quiet_NaN();
+  a.v[1] = std::numeric_limits<double>::infinity();
+  a.v[2] = -std::numeric_limits<double>::infinity();
+  EXPECT_FALSE(isfinite(a));
+  EXPECT_FALSE(isnormal(a));
+  EXPECT_TRUE(isinf(a));
+  EXPECT_TRUE(isnan(a));
+}
+
+TEST(JetTraitsTest, ClassificationNaN) {
+  Jet<double, 3> a(5.5, 0);
+  a.v[0] = std::numeric_limits<double>::quiet_NaN();
+  a.v[1] = 0.0;
+  a.v[2] = 0.0;
+  EXPECT_FALSE(isfinite(a));
+  EXPECT_FALSE(isnormal(a));
+  EXPECT_FALSE(isinf(a));
+  EXPECT_TRUE(isnan(a));
+}
+
+TEST(JetTraitsTest, ClassificationInf) {
+  Jet<double, 3> a(5.5, 0);
+  a.v[0] = std::numeric_limits<double>::infinity();
+  a.v[1] = 0.0;
+  a.v[2] = 0.0;
+  EXPECT_FALSE(isfinite(a));
+  EXPECT_FALSE(isnormal(a));
+  EXPECT_TRUE(isinf(a));
+  EXPECT_FALSE(isnan(a));
+}
+
+TEST(JetTraitsTest, ClassificationFinite) {
+  Jet<double, 3> a(5.5, 0);
+  a.v[0] = 100.0;
+  a.v[1] = 1.0;
+  a.v[2] = 3.14159;
+  EXPECT_TRUE(isfinite(a));
+  EXPECT_TRUE(isnormal(a));
+  EXPECT_FALSE(isinf(a));
+  EXPECT_FALSE(isnan(a));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/levenberg_marquardt.cc b/internal/ceres/levenberg_marquardt.cc
new file mode 100644
index 0000000..3ecae5d
--- /dev/null
+++ b/internal/ceres/levenberg_marquardt.cc
@@ -0,0 +1,619 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Implementation of a simple LM algorithm which uses the step sizing
+// rule of "Methods for Nonlinear Least Squares" by K. Madsen,
+// H.B. Nielsen and O. Tingleff. Available to download from
+//
+// http://www2.imm.dtu.dk/pubdb/views/edoc_download.php/3215/pdf/imm3215.pdf
+//
+// The basic algorithm described in this note is an exact step
+// algorithm that depends on the Newton(LM) step being solved exactly
+// in each iteration. When a suitable iterative solver is available to
+// solve the Newton(LM) step, the algorithm will automatically switch
+// to an inexact step solution method. This trades some slowdown in
+// convergence for significant savings in solve time and memory
+// usage. Our implementation of the Truncated Newton algorithm follows
+// the discussion and recommendataions in "Stephen G. Nash, A Survey
+// of Truncated Newton Methods, Journal of Computational and Applied
+// Mathematics, 124(1-2), 45-59, 2000.
+
+#include "ceres/levenberg_marquardt.h"
+
+#include <algorithm>
+#include <cstdlib>
+#include <cmath>
+#include <cstring>
+#include <string>
+#include <vector>
+
+#include <glog/logging.h>
+#include "Eigen/Core"
+#include "ceres/evaluator.h"
+#include "ceres/file.h"
+#include "ceres/linear_solver.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/sparse_matrix.h"
+#include "ceres/stringprintf.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+// Numbers for clamping the size of the LM diagonal. The size of these
+// numbers is heuristic. We will probably be adjusting them in the
+// future based on more numerical experience. With jacobi scaling
+// enabled, these numbers should be all but redundant.
+const double kMinLevenbergMarquardtDiagonal = 1e-6;
+const double kMaxLevenbergMarquardtDiagonal = 1e32;
+
+// Small constant for various floating point issues.
+const double kEpsilon = 1e-12;
+
+// Number of times the linear solver should be retried in case of
+// numerical failure. The retries are done by exponentially scaling up
+// mu at each retry. This leads to stronger and stronger
+// regularization making the linear least squares problem better
+// conditioned at each retry.
+const int kMaxLinearSolverRetries = 5;
+
+// D = 1/sqrt(diag(J^T * J))
+void EstimateScale(const SparseMatrix& jacobian, double* D) {
+  CHECK_NOTNULL(D);
+  jacobian.SquaredColumnNorm(D);
+  for (int i = 0; i < jacobian.num_cols(); ++i) {
+    D[i] = 1.0 / (kEpsilon + sqrt(D[i]));
+  }
+}
+
+// D = diag(J^T * J)
+void LevenbergMarquardtDiagonal(const SparseMatrix& jacobian,
+                                double* D) {
+  CHECK_NOTNULL(D);
+  jacobian.SquaredColumnNorm(D);
+  for (int i = 0; i < jacobian.num_cols(); ++i) {
+    D[i] = min(max(D[i], kMinLevenbergMarquardtDiagonal),
+               kMaxLevenbergMarquardtDiagonal);
+  }
+}
+
+string DumpLinearSolverProblem(
+    int iteration,
+    const SparseMatrix* A,
+    const double* D,
+    const double* b,
+    const double* x,
+    const Minimizer::Options& solver_options) {
+  if (solver_options.lsqp_dump_format == "ascii") {
+    // Dump to the screen instead of to file. Useful for debugging.
+    Matrix AA;
+    A->ToDenseMatrix(&AA);
+    LOG(INFO) << "A^T: \n" << AA.transpose();
+    if (D) {
+      LOG(INFO) << "A's appended diagonal:\n"
+                << ConstVectorRef(D, A->num_cols());
+    }
+    LOG(INFO) << "b: \n" << ConstVectorRef(b, A->num_rows());
+    LOG(INFO) << "x: \n" << ConstVectorRef(x, A->num_cols());
+    return "";
+  }
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  LinearLeastSquaresProblemProto lsqp;
+  A->ToProto(lsqp.mutable_a());
+  for (int i = 0; i < A->num_rows(); ++i) {
+    lsqp.add_b(b[i]);
+  }
+  if (D) {
+    for (int i = 0; i < A->num_cols(); ++i) {
+      lsqp.add_d(D[i]);
+    }
+  }
+  if (x) {
+    for (int i = 0; i < A->num_cols(); ++i) {
+      lsqp.add_x(x[i]);
+    }
+  }
+
+  lsqp.set_num_eliminate_blocks(solver_options.num_eliminate_blocks);
+
+  CHECK(solver_options.lsqp_dump_format.size());
+  string filename =
+      StringPrintf(solver_options.lsqp_dump_format.c_str(),  // NOLINT
+                   iteration);
+  VLOG(1) << "Dumping least squares problem for iteration " << iteration
+          << " to disk. File: " << filename;
+  WriteStringToFileOrDie(lsqp.SerializeAsString(), filename);
+  VLOG(2) << "Done dumping to disk";
+  return filename;
+#else
+  LOG(ERROR) << "Dumping least squares problems is only "
+             << "supported when Ceres is compiled with "
+             << "protocol buffer support.";
+  return "";
+#endif
+}
+
+bool RunCallback(IterationCallback* callback,
+                 const IterationSummary& iteration_summary,
+                 Solver::Summary* summary) {
+  const CallbackReturnType status = (*callback)(iteration_summary);
+  switch (status) {
+    case SOLVER_TERMINATE_SUCCESSFULLY:
+      summary->termination_type = USER_SUCCESS;
+      VLOG(1) << "Terminating on USER_SUCCESS.";
+      return false;
+    case SOLVER_ABORT:
+      summary->termination_type = USER_ABORT;
+      VLOG(1) << "Terminating on USER_ABORT.";
+      return false;
+    case SOLVER_CONTINUE:
+      return true;
+    default:
+      LOG(FATAL) << "Unknown status returned by callback: "
+                 << status;
+  }
+}
+
+}  // namespace
+
+LevenbergMarquardt::~LevenbergMarquardt() {}
+
+void LevenbergMarquardt::Minimize(const Minimizer::Options& options,
+                                  Evaluator* evaluator,
+                                  LinearSolver* linear_solver,
+                                  const double* initial_parameters,
+                                  double* final_parameters,
+                                  Solver::Summary* summary) {
+  time_t start_time = time(NULL);
+  const int num_parameters = evaluator->NumParameters();
+  const int num_effective_parameters = evaluator->NumEffectiveParameters();
+  const int num_residuals = evaluator->NumResiduals();
+
+  summary->termination_type = NO_CONVERGENCE;
+  summary->num_successful_steps = 0;
+  summary->num_unsuccessful_steps = 0;
+
+  // Allocate the various vectors needed by the algorithm.
+  memcpy(final_parameters, initial_parameters,
+         num_parameters * sizeof(*initial_parameters));
+
+  VectorRef x(final_parameters, num_parameters);
+  Vector x_new(num_parameters);
+
+  Vector lm_step(num_effective_parameters);
+  Vector gradient(num_effective_parameters);
+  Vector scaled_gradient(num_effective_parameters);
+  // Jacobi scaling vector
+  Vector scale(num_effective_parameters);
+
+  Vector f_model(num_residuals);
+  Vector f(num_residuals);
+  Vector f_new(num_residuals);
+  Vector D(num_parameters);
+  Vector muD(num_parameters);
+
+  // Ask the Evaluator to create the jacobian matrix. The sparsity
+  // pattern of this matrix is going to remain constant, so we only do
+  // this once and then re-use this matrix for all subsequent Jacobian
+  // computations.
+  scoped_ptr<SparseMatrix> jacobian(evaluator->CreateJacobian());
+
+  double x_norm  = x.norm();
+
+  double cost = 0.0;
+  D.setOnes();
+  f.setZero();
+
+  // Do initial cost and Jacobian evaluation.
+  if (!evaluator->Evaluate(x.data(), &cost, f.data(), jacobian.get())) {
+    LOG(WARNING) << "Failed to compute residuals and Jacobian. "
+                 << "Terminating.";
+    summary->termination_type = NUMERICAL_FAILURE;
+    return;
+  }
+
+  if (options.jacobi_scaling) {
+    EstimateScale(*jacobian, scale.data());
+    jacobian->ScaleColumns(scale.data());
+  } else {
+    scale.setOnes();
+  }
+
+  // This is a poor way to do this computation. Even if fixed_cost is
+  // zero, because we are subtracting two possibly large numbers, we
+  // are depending on exact cancellation to give us a zero here. But
+  // initial_cost and cost have been computed by two different
+  // evaluators. One which runs on the whole problem (in
+  // solver_impl.cc) in single threaded mode and another which runs
+  // here on the reduced problem, so fixed_cost can (and does) contain
+  // some numerical garbage with a relative magnitude of 1e-14.
+  //
+  // The right way to do this, would be to compute the fixed cost on
+  // just the set of residual blocks which are held constant and were
+  // removed from the original problem when the reduced problem was
+  // constructed.
+  summary->fixed_cost = summary->initial_cost - cost;
+
+  double model_cost = f.squaredNorm() / 2.0;
+  double total_cost = summary->fixed_cost + cost;
+
+  scaled_gradient.setZero();
+  jacobian->LeftMultiply(f.data(), scaled_gradient.data());
+  gradient = scaled_gradient.array() / scale.array();
+
+  double gradient_max_norm = gradient.lpNorm<Eigen::Infinity>();
+  // We need the max here to guard againt the gradient being zero.
+  const double gradient_max_norm_0 = max(gradient_max_norm, kEpsilon);
+  double gradient_tolerance = options.gradient_tolerance * gradient_max_norm_0;
+
+  double mu = options.tau;
+  double nu = 2.0;
+  int iteration = 0;
+  double actual_cost_change = 0.0;
+  double step_norm = 0.0;
+  double relative_decrease = 0.0;
+
+  // Insane steps are steps which are not sane, i.e. there is some
+  // numerical kookiness going on with them. There are various reasons
+  // for this kookiness, some easier to diagnose then others. From the
+  // point of view of the non-linear solver, they are steps which
+  // cannot be used. We return with NUMERICAL_FAILURE after
+  // kMaxLinearSolverRetries consecutive insane steps.
+  bool step_is_sane = false;
+  int num_consecutive_insane_steps = 0;
+
+  // Whether the step resulted in a sufficient decrease in the
+  // objective function when compared to the decrease in the value of
+  // the lineariztion.
+  bool step_is_successful = false;
+
+  // Parse the iterations for which to dump the linear problem.
+  vector<int> iterations_to_dump = options.lsqp_iterations_to_dump;
+  sort(iterations_to_dump.begin(), iterations_to_dump.end());
+
+  IterationSummary iteration_summary;
+  iteration_summary.iteration = iteration;
+  iteration_summary.step_is_successful = false;
+  iteration_summary.cost = total_cost;
+  iteration_summary.cost_change = actual_cost_change;
+  iteration_summary.gradient_max_norm = gradient_max_norm;
+  iteration_summary.step_norm = step_norm;
+  iteration_summary.relative_decrease = relative_decrease;
+  iteration_summary.mu = mu;
+  iteration_summary.eta = options.eta;
+  iteration_summary.linear_solver_iterations = 0;
+  iteration_summary.linear_solver_time_sec = 0.0;
+  iteration_summary.iteration_time_sec = (time(NULL) - start_time);
+  if (options.logging_type >= PER_MINIMIZER_ITERATION) {
+    summary->iterations.push_back(iteration_summary);
+  }
+
+  // Check if the starting point is an optimum.
+  VLOG(2) << "Gradient max norm: " << gradient_max_norm
+          << " tolerance: " << gradient_tolerance
+          << " ratio: " << gradient_max_norm / gradient_max_norm_0
+          << " tolerance: " << options.gradient_tolerance;
+  if (gradient_max_norm <= gradient_tolerance) {
+    summary->termination_type = GRADIENT_TOLERANCE;
+    VLOG(1) << "Terminating on GRADIENT_TOLERANCE. "
+            << "Relative gradient max norm: "
+            << gradient_max_norm / gradient_max_norm_0
+            << " <= " << options.gradient_tolerance;
+    return;
+  }
+
+  // Call the various callbacks.
+  for (int i = 0; i < options.callbacks.size(); ++i) {
+    if (!RunCallback(options.callbacks[i], iteration_summary, summary)) {
+      return;
+    }
+  }
+
+  // We only need the LM diagonal if we are actually going to do at
+  // least one iteration of the optimization. So we wait to do it
+  // until now.
+  LevenbergMarquardtDiagonal(*jacobian, D.data());
+
+  while ((iteration < options.max_num_iterations) &&
+         (time(NULL) - start_time) <= options.max_solver_time_sec) {
+    time_t iteration_start_time = time(NULL);
+    step_is_sane = false;
+    step_is_successful = false;
+
+    IterationSummary iteration_summary;
+    // The while loop here is just to provide an easily breakable
+    // control structure. We are guaranteed to always exit this loop
+    // at the end of one iteration or before.
+    while (1) {
+      muD = (mu * D).array().sqrt();
+      LinearSolver::PerSolveOptions solve_options;
+      solve_options.D = muD.data();
+      solve_options.q_tolerance = options.eta;
+      // Disable r_tolerance checking. Since we only care about
+      // termination via the q_tolerance. As Nash and Sofer show,
+      // r_tolerance based termination is essentially useless in
+      // Truncated Newton methods.
+      solve_options.r_tolerance = -1.0;
+
+      const time_t linear_solver_start_time = time(NULL);
+      LinearSolver::Summary linear_solver_summary =
+          linear_solver->Solve(jacobian.get(),
+                               f.data(),
+                               solve_options,
+                               lm_step.data());
+      iteration_summary.linear_solver_time_sec =
+          (time(NULL) - linear_solver_start_time);
+      iteration_summary.linear_solver_iterations =
+          linear_solver_summary.num_iterations;
+
+      if (binary_search(iterations_to_dump.begin(),
+                        iterations_to_dump.end(),
+                        iteration)) {
+        DumpLinearSolverProblem(iteration,
+                                jacobian.get(),
+                                muD.data(),
+                                f.data(),
+                                lm_step.data(),
+                                options);
+      }
+
+      // We ignore the case where the linear solver did not converge,
+      // since the partial solution computed by it still maybe of use,
+      // and there is no reason to ignore it, especially since we
+      // spent so much time computing it.
+      if ((linear_solver_summary.termination_type != TOLERANCE) &&
+          (linear_solver_summary.termination_type != MAX_ITERATIONS)) {
+        VLOG(1) << "Linear solver failure: retrying with a higher mu";
+        break;
+      }
+
+      step_norm = (lm_step.array() * scale.array()).matrix().norm();
+
+      // Check step length based convergence. If the step length is
+      // too small, then we are done.
+      const double step_size_tolerance =  options.parameter_tolerance *
+          (x_norm + options.parameter_tolerance);
+
+      VLOG(2) << "Step size: " << step_norm
+              << " tolerance: " <<  step_size_tolerance
+              << " ratio: " << step_norm / step_size_tolerance
+              << " tolerance: " << options.parameter_tolerance;
+      if (step_norm <= options.parameter_tolerance *
+          (x_norm + options.parameter_tolerance)) {
+        summary->termination_type = PARAMETER_TOLERANCE;
+        VLOG(1) << "Terminating on PARAMETER_TOLERANCE."
+             << "Relative step size: " << step_norm / step_size_tolerance
+            << " <= " << options.parameter_tolerance;
+        return;
+      }
+
+      Vector delta =  -(lm_step.array() * scale.array()).matrix();
+      if (!evaluator->Plus(x.data(), delta.data(), x_new.data())) {
+        LOG(WARNING) << "Failed to compute Plus(x, delta, x_plus_delta). "
+                     << "Terminating.";
+        summary->termination_type = NUMERICAL_FAILURE;
+        return;
+      }
+
+      double cost_new = 0.0;
+      if (!evaluator->Evaluate(x_new.data(), &cost_new, NULL, NULL)) {
+        LOG(WARNING) << "Failed to compute the value of the objective "
+                     << "function. Terminating.";
+        summary->termination_type = NUMERICAL_FAILURE;
+        return;
+      }
+
+      f_model.setZero();
+      jacobian->RightMultiply(lm_step.data(), f_model.data());
+      const double model_cost_new =
+          (f.segment(0, num_residuals) - f_model).squaredNorm() / 2;
+
+      actual_cost_change = cost - cost_new;
+      double model_cost_change = model_cost - model_cost_new;
+
+      VLOG(2) << "[Model cost] current: " << model_cost
+              << " new : " << model_cost_new
+              << " change: " << model_cost_change;
+
+      VLOG(2) << "[Nonlinear cost] current: " << cost
+              << " new : " << cost_new
+              << " change: " << actual_cost_change
+              << " relative change: " << fabs(actual_cost_change) / cost
+              << " tolerance: " << options.function_tolerance;
+
+      // In exact arithmetic model_cost_change should never be
+      // negative. But due to numerical precision issues, we may end up
+      // with a small negative number. model_cost_change which are
+      // negative and large in absolute value are indicative of a
+      // numerical failure in the solver.
+      if (model_cost_change < -kEpsilon) {
+        VLOG(1) << "Model cost change is negative.\n"
+                << "Current : " << model_cost
+                << " new : " << model_cost_new
+                << " change: " << model_cost_change << "\n";
+        break;
+      }
+
+      // If we have reached this far, then we are willing to trust the
+      // numerical quality of the step.
+      step_is_sane = true;
+      num_consecutive_insane_steps = 0;
+
+      // Check function value based convergence.
+      if (fabs(actual_cost_change) < options.function_tolerance * cost) {
+        VLOG(1) << "Termination on FUNCTION_TOLERANCE."
+                << " Relative cost change: " << fabs(actual_cost_change) / cost
+                << " tolerance: " << options.function_tolerance;
+        summary->termination_type = FUNCTION_TOLERANCE;
+        return;
+      }
+
+      // Clamp model_cost_change at kEpsilon from below.
+      if (model_cost_change < kEpsilon) {
+        VLOG(1) << "Clamping model cost change " << model_cost_change
+                << " to " << kEpsilon;
+        model_cost_change = kEpsilon;
+      }
+
+      relative_decrease = actual_cost_change / model_cost_change;
+      VLOG(2) << "actual_cost_change / model_cost_change = "
+              << relative_decrease;
+
+      if (relative_decrease < options.min_relative_decrease) {
+        VLOG(2) << "Unsuccessful step.";
+        break;
+      }
+
+      VLOG(2) << "Successful step.";
+
+      ++summary->num_successful_steps;
+      x = x_new;
+      x_norm = x.norm();
+
+      if (!evaluator->Evaluate(x.data(), &cost, f.data(), jacobian.get())) {
+        LOG(WARNING) << "Failed to compute residuals and jacobian. "
+                     << "Terminating.";
+        summary->termination_type = NUMERICAL_FAILURE;
+        return;
+      }
+
+      if (options.jacobi_scaling) {
+        jacobian->ScaleColumns(scale.data());
+      }
+
+      model_cost = f.squaredNorm() / 2.0;
+      LevenbergMarquardtDiagonal(*jacobian, D.data());
+      scaled_gradient.setZero();
+      jacobian->LeftMultiply(f.data(), scaled_gradient.data());
+      gradient = scaled_gradient.array() / scale.array();
+      gradient_max_norm = gradient.lpNorm<Eigen::Infinity>();
+
+      // Check gradient based convergence.
+      VLOG(2) << "Gradient max norm: " << gradient_max_norm
+              << " tolerance: " << gradient_tolerance
+              << " ratio: " << gradient_max_norm / gradient_max_norm_0
+              << " tolerance: " << options.gradient_tolerance;
+      if (gradient_max_norm <= gradient_tolerance) {
+        summary->termination_type = GRADIENT_TOLERANCE;
+        VLOG(1) << "Terminating on GRADIENT_TOLERANCE. "
+                << "Relative gradient max norm: "
+                << gradient_max_norm / gradient_max_norm_0
+                << " <= " << options.gradient_tolerance
+                << " (tolerance).";
+        return;
+      }
+
+      mu = mu * max(1.0 / 3.0, 1 - pow(2 * relative_decrease - 1, 3));
+      nu = 2.0;
+      step_is_successful = true;
+      break;
+    }
+
+    if (!step_is_sane) {
+      ++num_consecutive_insane_steps;
+    }
+
+    if (num_consecutive_insane_steps == kMaxLinearSolverRetries) {
+      VLOG(1) << "Too many consecutive retries; ending with numerical fail.";
+      summary->termination_type = NUMERICAL_FAILURE;
+
+      if (!options.crash_and_dump_lsqp_on_failure) {
+        return;
+      }
+
+      // Dump debugging information to disk.
+      CHECK(!options.lsqp_dump_format.empty())
+          << "Dumping the linear least squares problem on crash "
+          << "requires Solver::Options::lsqp_dump_format set a "
+          << "filename";
+      CHECK_NE(options.lsqp_dump_format, "ascii")
+          << "Dumping the linear least squares problem on crash "
+          << "requires Solver::Options::lsqp_dump_format set a "
+          << "filename";
+
+      const string filename = DumpLinearSolverProblem(iteration,
+                                                      jacobian.get(),
+                                                      muD.data(),
+                                                      f.data(),
+                                                      lm_step.data(),
+                                                      options);
+      LOG(FATAL) << "Linear least squares problem saved to " << filename
+                 << " please provide this to the Ceres developers for "
+                 << " debugging along with the v=2 log.";
+      return;
+    }
+
+    if (!step_is_successful) {
+      // Either the step did not lead to a decrease in cost or there
+      // was numerical failure. In either case we will scale mu up and
+      // retry. If it was a numerical failure, we hope that the
+      // stronger regularization will make the linear system better
+      // conditioned. If it was numerically sane, but there was no
+      // decrease in cost, then increasing mu reduces the size of the
+      // trust region and we look for a decrease closer to the
+      // linearization point.
+      ++summary->num_unsuccessful_steps;
+      mu = mu * nu;
+      nu = 2 * nu;
+    }
+
+    ++iteration;
+
+    total_cost = summary->fixed_cost + cost;
+
+    iteration_summary.iteration = iteration;
+    iteration_summary.step_is_successful = step_is_successful;
+    iteration_summary.cost = total_cost;
+    iteration_summary.cost_change = actual_cost_change;
+    iteration_summary.gradient_max_norm = gradient_max_norm;
+    iteration_summary.step_norm = step_norm;
+    iteration_summary.relative_decrease = relative_decrease;
+    iteration_summary.mu = mu;
+    iteration_summary.eta = options.eta;
+    iteration_summary.iteration_time_sec = (time(NULL) - iteration_start_time);
+
+    if (options.logging_type >= PER_MINIMIZER_ITERATION) {
+      summary->iterations.push_back(iteration_summary);
+    }
+
+    // Call the various callbacks.
+    for (int i = 0; i < options.callbacks.size(); ++i) {
+      if (!RunCallback(options.callbacks[i], iteration_summary, summary)) {
+        return;
+      }
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/levenberg_marquardt.h b/internal/ceres/levenberg_marquardt.h
new file mode 100644
index 0000000..d00bb90
--- /dev/null
+++ b/internal/ceres/levenberg_marquardt.h
@@ -0,0 +1,65 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Implmentation of Levenberg Marquardt algorithm based on "Methods for
+// Nonlinear Least Squares" by K. Madsen, H.B. Nielsen and
+// O. Tingleff. Available to download from
+//
+// http://www2.imm.dtu.dk/pubdb/views/edoc_download.php/3215/pdf/imm3215.pdf
+//
+
+#ifndef CERES_INTERNAL_LEVENBERG_MARQUARDT_H_
+#define CERES_INTERNAL_LEVENBERG_MARQUARDT_H_
+
+#include "ceres/minimizer.h"
+#include "ceres/solver.h"
+
+namespace ceres {
+namespace internal {
+
+class Evaluator;
+class LinearSolver;
+
+class LevenbergMarquardt : public Minimizer {
+ public:
+  virtual ~LevenbergMarquardt();
+
+  virtual void Minimize(const Minimizer::Options& options,
+                        Evaluator* evaluator,
+                        LinearSolver* linear_solver,
+                        const double* initial_parameters,
+                        double* final_parameters,
+                        Solver::Summary* summary);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_LEVENBERG_MARQUARDT_H_
diff --git a/internal/ceres/levenberg_marquardt_test.cc b/internal/ceres/levenberg_marquardt_test.cc
new file mode 100644
index 0000000..020abfa
--- /dev/null
+++ b/internal/ceres/levenberg_marquardt_test.cc
@@ -0,0 +1,247 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// This tests the Levenberg-Marquardt loop using a direct Evaluator
+// implementation, rather than having a test that goes through all the Program
+// and Problem machinery.
+
+#include <cmath>
+#include "ceres/dense_qr_solver.h"
+#include "ceres/dense_sparse_matrix.h"
+#include "ceres/evaluator.h"
+#include "ceres/levenberg_marquardt.h"
+#include "ceres/linear_solver.h"
+#include "ceres/minimizer.h"
+#include "ceres/internal/port.h"
+#include "gtest/gtest.h"
+
+namespace ceres {
+namespace internal {
+
+// Templated Evaluator for Powell's function. The template parameters
+// indicate which of the four variables/columns of the jacobian are
+// active. This is equivalent to constructing a problem and using the
+// SubsetLocalParameterization. This allows us to test the support for
+// the Evaluator::Plus operation besides checking for the basic
+// performance of the LevenbergMarquardt algorithm.
+template <bool col1, bool col2, bool col3, bool col4>
+class PowellEvaluator2 : public Evaluator {
+ public:
+  PowellEvaluator2()
+      : num_active_cols_(
+          (col1 ? 1 : 0) +
+          (col2 ? 1 : 0) +
+          (col3 ? 1 : 0) +
+          (col4 ? 1 : 0)) {
+    VLOG(1) << "Columns: "
+            << col1 << " "
+            << col2 << " "
+            << col3 << " "
+            << col4;
+  }
+
+  virtual ~PowellEvaluator2() {}
+
+  // Implementation of Evaluator interface.
+  virtual SparseMatrix* CreateJacobian() const {
+    CHECK(col1 || col2 || col3 || col4);
+    DenseSparseMatrix* dense_jacobian =
+        new DenseSparseMatrix(NumResiduals(), NumEffectiveParameters());
+    dense_jacobian->SetZero();
+    return dense_jacobian;
+  }
+
+  virtual bool Evaluate(const double* state,
+                        double* cost,
+                        double* residuals,
+                        SparseMatrix* jacobian) {
+    double x1 = state[0];
+    double x2 = state[1];
+    double x3 = state[2];
+    double x4 = state[3];
+
+    VLOG(1) << "State: "
+            << "x1=" << x1 << ", "
+            << "x2=" << x2 << ", "
+            << "x3=" << x3 << ", "
+            << "x4=" << x4 << ".";
+
+    double f1 = x1 + 10.0 * x2;
+    double f2 = sqrt(5.0) * (x3 - x4);
+    double f3 = pow(x2 - 2.0 * x3, 2.0);
+    double f4 = sqrt(10.0) * pow(x1 - x4, 2.0);
+
+    VLOG(1) << "Function: "
+            << "f1=" << f1 << ", "
+            << "f2=" << f2 << ", "
+            << "f3=" << f3 << ", "
+            << "f4=" << f4 << ".";
+
+    *cost = (f1*f1 + f2*f2 + f3*f3 + f4*f4) / 2.0;
+
+    VLOG(1) << "Cost: " << *cost;
+
+    if (residuals != NULL) {
+      residuals[0] = f1;
+      residuals[1] = f2;
+      residuals[2] = f3;
+      residuals[3] = f4;
+    }
+
+    if (jacobian != NULL) {
+      DenseSparseMatrix* dense_jacobian;
+      dense_jacobian = down_cast<DenseSparseMatrix*>(jacobian);
+      dense_jacobian->SetZero();
+
+      AlignedMatrixRef jacobian_matrix = dense_jacobian->mutable_matrix();
+      CHECK_EQ(jacobian_matrix.cols(), num_active_cols_);
+
+      int column_index = 0;
+      if (col1) {
+        jacobian_matrix.col(column_index++) <<
+            1.0,
+            0.0,
+            0.0,
+            sqrt(10) * 2.0 * (x1 - x4) * (1.0 - x4);
+      }
+      if (col2) {
+        jacobian_matrix.col(column_index++) <<
+            10.0,
+            0.0,
+            2.0*(x2 - 2.0*x3)*(1.0 - 2.0*x3),
+            0.0;
+      }
+
+      if (col3) {
+        jacobian_matrix.col(column_index++) <<
+            0.0,
+            sqrt(5.0),
+            2.0*(x2 - 2.0*x3)*(x2 - 2.0),
+            0.0;
+      }
+
+      if (col4) {
+        jacobian_matrix.col(column_index++) <<
+            0.0,
+            -sqrt(5.0),
+            0.0,
+            sqrt(10) * 2.0 * (x1 - x4) * (x1 - 1.0);
+      }
+      VLOG(1) << "\n" << jacobian_matrix;
+    }
+    return true;
+  }
+
+  virtual bool Plus(const double* state,
+                    const double* delta,
+                    double* state_plus_delta) const {
+    int delta_index = 0;
+    state_plus_delta[0] = (col1  ? state[0] + delta[delta_index++] : state[0]);
+    state_plus_delta[1] = (col2  ? state[1] + delta[delta_index++] : state[1]);
+    state_plus_delta[2] = (col3  ? state[2] + delta[delta_index++] : state[2]);
+    state_plus_delta[3] = (col4  ? state[3] + delta[delta_index++] : state[3]);
+    return true;
+  }
+
+  virtual int NumEffectiveParameters() const { return num_active_cols_; }
+  virtual int NumParameters()          const { return 4; }
+  virtual int NumResiduals()           const { return 4; }
+
+ private:
+  const int num_active_cols_;
+};
+
+// Templated function to hold a subset of the columns fixed and check
+// if the solver converges to the optimal values or not.
+template<bool col1, bool col2, bool col3, bool col4>
+void IsSolveSuccessful() {
+  LevenbergMarquardt lm;
+  Solver::Options solver_options;
+  Minimizer::Options minimizer_options(solver_options);
+  minimizer_options.gradient_tolerance = 1e-26;
+  minimizer_options.function_tolerance = 1e-26;
+  minimizer_options.parameter_tolerance = 1e-26;
+  LinearSolver::Options linear_solver_options;
+  DenseQRSolver linear_solver(linear_solver_options);
+
+  double initial_parameters[4] = { 3, -1, 0, 1.0 };
+  double final_parameters[4] = { -1.0, -1.0, -1.0, -1.0 };
+
+  // If the column is inactive, then set its value to the optimal
+  // value.
+  initial_parameters[0] = (col1 ? initial_parameters[0] : 0.0);
+  initial_parameters[1] = (col2 ? initial_parameters[1] : 0.0);
+  initial_parameters[2] = (col3 ? initial_parameters[2] : 0.0);
+  initial_parameters[3] = (col4 ? initial_parameters[3] : 0.0);
+
+  PowellEvaluator2<col1, col2, col3, col4> powell_evaluator;
+
+  Solver::Summary summary;
+  lm.Minimize(minimizer_options,
+              &powell_evaluator,
+              &linear_solver,
+              initial_parameters,
+              final_parameters,
+              &summary);
+
+  // The minimum is at x1 = x2 = x3 = x4 = 0.
+  EXPECT_NEAR(0.0, final_parameters[0], 0.001);
+  EXPECT_NEAR(0.0, final_parameters[1], 0.001);
+  EXPECT_NEAR(0.0, final_parameters[2], 0.001);
+  EXPECT_NEAR(0.0, final_parameters[3], 0.001);
+};
+
+TEST(LevenbergMarquardt, PowellsSingularFunction) {
+  // This case is excluded because this has a local minimum and does
+  // not find the optimum. This should not affect the correctness of
+  // this test since we are testing all the other 14 combinations of
+  // column activations.
+
+  // IsSolveSuccessful<true, true, false, true>();
+
+  IsSolveSuccessful<true,  true,  true,  true>();
+  IsSolveSuccessful<true,  true,  true,  false>();
+  IsSolveSuccessful<true,  false, true,  true>();
+  IsSolveSuccessful<false, true,  true,  true>();
+  IsSolveSuccessful<true,  true,  false, false>();
+  IsSolveSuccessful<true,  false, true,  false>();
+  IsSolveSuccessful<false, true,  true,  false>();
+  IsSolveSuccessful<true,  false, false, true>();
+  IsSolveSuccessful<false, true,  false, true>();
+  IsSolveSuccessful<false, false, true,  true>();
+  IsSolveSuccessful<true,  false, false, false>();
+  IsSolveSuccessful<false, true,  false, false>();
+  IsSolveSuccessful<false, false, true,  false>();
+  IsSolveSuccessful<false, false, false, true>();
+}
+
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/levenberg_marquardt_test.cc~ b/internal/ceres/levenberg_marquardt_test.cc~
new file mode 100644
index 0000000..a1d9c4f
--- /dev/null
+++ b/internal/ceres/levenberg_marquardt_test.cc~
@@ -0,0 +1,82 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/levenberg_marquardt.h"
+
+#include "gtest/gtest.h"
+
+namespace ceres2 {
+namespace internal {
+
+class PowellEvaluator : public Evaluator {
+ public:
+  PowellEvaluator(const Program& program);
+  virtual ~PowellEvaluator() {}
+
+  // Implementation of Evaluator interface.
+  virtual SparseMatrix* CreateJacobian() const {
+    DenseSparseMatrix* dense_jacobian =
+        new DenseSparseMatrix(NumResiduals(), NumEffectiveParameters());
+    dense_jacobian->SetZero();
+    return dense_jacobian;
+  }
+
+  virtual bool Evaluate(const double* state,
+                        double* cost,
+                        double* residuals,
+                        SparseMatrix* jacobian) {
+
+    // f1 = x1 + 10 * x2;
+    double r0 = x1[0] + T(10.0) * x2[0];
+    // f2 = sqrt(5) (x3 - x4)
+    double r1 = T(sqrt(5.0)) * (x3[0] - x4[0]);
+    // f3 = (x2 - 2 x3)^2
+    double r2 = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0]);
+    // f4 = sqrt(10) (x1 - x4)^2
+    double r3 = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0]);
+
+    if (residuals != NULL) {
+      residuals[0] = r0;
+
+    if (jacobian == 
+    AlignedMatrixRef jacobian 
+  }
+
+  virtual bool Plus(const double* state,
+                    const double* delta,
+                    double* state_plus_delta) const;
+  virtual int NumEffectiveParameters() const;
+  virtual int NumParameters() const;
+  virtual int NumResiduals() const;
+};
+
+
+}  // namespace internal
+}  // namespace ceres2
diff --git a/internal/ceres/linear_least_squares_problems.cc b/internal/ceres/linear_least_squares_problems.cc
new file mode 100644
index 0000000..9e3d8bd
--- /dev/null
+++ b/internal/ceres/linear_least_squares_problems.cc
@@ -0,0 +1,573 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/linear_least_squares_problems.h"
+
+#include <string>
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/file.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+LinearLeastSquaresProblem* CreateLinearLeastSquaresProblemFromId(int id) {
+  switch (id) {
+    case 0:
+      return LinearLeastSquaresProblem0();
+    case 1:
+      return LinearLeastSquaresProblem1();
+    case 2:
+      return LinearLeastSquaresProblem2();
+    case 3:
+      return LinearLeastSquaresProblem3();
+    default:
+      LOG(FATAL) << "Unknown problem id requested " << id;
+  }
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+LinearLeastSquaresProblem* CreateLinearLeastSquaresProblemFromFile(
+    const string& filename) {
+  LinearLeastSquaresProblemProto problem_proto;
+  {
+    string serialized_proto;
+    ReadFileToStringOrDie(filename, &serialized_proto);
+    CHECK(problem_proto.ParseFromString(serialized_proto));
+  }
+
+  LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem;
+  const SparseMatrixProto& A = problem_proto.a();
+
+  if (A.has_block_matrix()) {
+    problem->A.reset(new BlockSparseMatrix(A));
+  } else if (A.has_triplet_matrix()) {
+    problem->A.reset(new TripletSparseMatrix(A));
+  } else {
+    problem->A.reset(new CompressedRowSparseMatrix(A));
+  }
+
+  if (problem_proto.b_size() > 0) {
+    problem->b.reset(new double[problem_proto.b_size()]);
+    for (int i = 0; i < problem_proto.b_size(); ++i) {
+      problem->b[i] = problem_proto.b(i);
+    }
+  }
+
+  if (problem_proto.d_size() > 0) {
+    problem->D.reset(new double[problem_proto.d_size()]);
+    for (int i = 0; i < problem_proto.d_size(); ++i) {
+      problem->D[i] = problem_proto.d(i);
+    }
+  }
+
+  if (problem_proto.d_size() > 0) {
+    if (problem_proto.x_size() > 0) {
+      problem->x_D.reset(new double[problem_proto.x_size()]);
+      for (int i = 0; i < problem_proto.x_size(); ++i) {
+        problem->x_D[i] = problem_proto.x(i);
+      }
+    }
+  } else {
+    if (problem_proto.x_size() > 0) {
+      problem->x.reset(new double[problem_proto.x_size()]);
+      for (int i = 0; i < problem_proto.x_size(); ++i) {
+        problem->x[i] = problem_proto.x(i);
+      }
+    }
+  }
+
+  problem->num_eliminate_blocks = 0;
+  if (problem_proto.has_num_eliminate_blocks()) {
+    problem->num_eliminate_blocks = problem_proto.num_eliminate_blocks();
+  }
+
+  return problem;
+}
+#else
+LinearLeastSquaresProblem* CreateLinearLeastSquaresProblemFromFile(
+    const string& filename) {
+  LOG(FATAL)
+      << "Loading a least squares problem from disk requires "
+      << "Ceres to be built with Protocol Buffers support.";
+  return NULL;
+}
+#endif  // CERES_DONT_HAVE_PROTOCOL_BUFFERS
+
+/*
+A = [1   2]
+    [3   4]
+    [6 -10]
+
+b = [  8
+      18
+     -18]
+
+x = [2
+     3]
+
+D = [1
+     2]
+
+x_D = [1.78448275;
+       2.82327586;]
+ */
+LinearLeastSquaresProblem* LinearLeastSquaresProblem0() {
+  LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem;
+
+  TripletSparseMatrix* A = new TripletSparseMatrix(3, 2, 6);
+  problem->b.reset(new double[3]);
+  problem->D.reset(new double[2]);
+
+  problem->x.reset(new double[2]);
+  problem->x_D.reset(new double[2]);
+
+  int* Ai = A->mutable_rows();
+  int* Aj = A->mutable_cols();
+  double* Ax = A->mutable_values();
+
+  int counter = 0;
+  for (int i = 0; i < 3; ++i) {
+    for (int j = 0; j< 2; ++j) {
+      Ai[counter]=i;
+      Aj[counter]=j;
+      ++counter;
+    }
+  };
+
+  Ax[0] = 1.;
+  Ax[1] = 2.;
+  Ax[2] = 3.;
+  Ax[3] = 4.;
+  Ax[4] = 6;
+  Ax[5] = -10;
+  A->set_num_nonzeros(6);
+  problem->A.reset(A);
+
+  problem->b[0] = 8;
+  problem->b[1] = 18;
+  problem->b[2] = -18;
+
+  problem->x[0] = 2.0;
+  problem->x[1] = 3.0;
+
+  problem->D[0] = 1;
+  problem->D[1] = 2;
+
+  problem->x_D[0] = 1.78448275;
+  problem->x_D[1] = 2.82327586;
+  return problem;
+}
+
+
+/*
+      A = [1 0  | 2 0 0
+           3 0  | 0 4 0
+           0 5  | 0 0 6
+           0 7  | 8 0 0
+           0 9  | 1 0 0
+           0 0  | 1 1 1]
+
+      b = [0
+           1
+           2
+           3
+           4
+           5]
+
+      c = A'* b = [ 3
+                   67
+                   33
+                    9
+                   17]
+
+      A'A = [10    0    2   12   0
+              0  155   65    0  30
+              2   65   70    1   1
+             12    0    1   17   1
+              0   30    1    1  37]
+
+      S = [ 42.3419  -1.4000  -11.5806
+            -1.4000   2.6000    1.0000
+            11.5806   1.0000   31.1935]
+
+      r = [ 4.3032
+            5.4000
+            5.0323]
+
+      S\r = [ 0.2102
+              2.1367
+              0.1388]
+
+      A\b = [-2.3061
+              0.3172
+              0.2102
+              2.1367
+              0.1388]
+*/
+// The following two functions create a TripletSparseMatrix and a
+// BlockSparseMatrix version of this problem.
+
+// TripletSparseMatrix version.
+LinearLeastSquaresProblem* LinearLeastSquaresProblem1() {
+  int num_rows = 6;
+  int num_cols = 5;
+
+  LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem;
+  TripletSparseMatrix* A = new TripletSparseMatrix(num_rows,
+                                                   num_cols,
+                                                   num_rows * num_cols);
+  problem->b.reset(new double[num_rows]);
+  problem->D.reset(new double[num_cols]);
+  problem->num_eliminate_blocks = 2;
+
+  int* rows = A->mutable_rows();
+  int* cols = A->mutable_cols();
+  double* values = A->mutable_values();
+
+  int nnz = 0;
+
+  // Row 1
+  {
+    rows[nnz] = 0;
+    cols[nnz] = 0;
+    values[nnz++] = 1;
+
+    rows[nnz] = 0;
+    cols[nnz] = 2;
+    values[nnz++] = 2;
+  }
+
+  // Row 2
+  {
+    rows[nnz] = 1;
+    cols[nnz] = 0;
+    values[nnz++] = 3;
+
+    rows[nnz] = 1;
+    cols[nnz] = 3;
+    values[nnz++] = 4;
+  }
+
+  // Row 3
+  {
+    rows[nnz] = 2;
+    cols[nnz] = 1;
+    values[nnz++] = 5;
+
+    rows[nnz] = 2;
+    cols[nnz] = 4;
+    values[nnz++] = 6;
+  }
+
+  // Row 4
+  {
+    rows[nnz] = 3;
+    cols[nnz] = 1;
+    values[nnz++] = 7;
+
+    rows[nnz] = 3;
+    cols[nnz] = 2;
+    values[nnz++] = 8;
+  }
+
+  // Row 5
+  {
+    rows[nnz] = 4;
+    cols[nnz] = 1;
+    values[nnz++] = 9;
+
+    rows[nnz] = 4;
+    cols[nnz] = 2;
+    values[nnz++] = 1;
+  }
+
+  // Row 6
+  {
+    rows[nnz] = 5;
+    cols[nnz] = 2;
+    values[nnz++] = 1;
+
+    rows[nnz] = 5;
+    cols[nnz] = 3;
+    values[nnz++] = 1;
+
+    rows[nnz] = 5;
+    cols[nnz] = 4;
+    values[nnz++] = 1;
+  }
+
+  A->set_num_nonzeros(nnz);
+  CHECK(A->IsValid());
+
+  problem->A.reset(A);
+
+  for (int i = 0; i < num_cols; ++i) {
+    problem->D.get()[i] = 1;
+  }
+
+  for (int i = 0; i < num_rows; ++i) {
+    problem->b.get()[i] = i;
+  }
+
+  return problem;
+}
+
+// BlockSparseMatrix version
+LinearLeastSquaresProblem* LinearLeastSquaresProblem2() {
+  int num_rows = 6;
+  int num_cols = 5;
+
+  LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem;
+
+  problem->b.reset(new double[num_rows]);
+  problem->D.reset(new double[num_cols]);
+  problem->num_eliminate_blocks = 2;
+
+  CompressedRowBlockStructure* bs = new CompressedRowBlockStructure;
+  scoped_array<double> values(new double[num_rows * num_cols]);
+
+  for (int c = 0; c < num_cols; ++c) {
+    bs->cols.push_back(Block());
+    bs->cols.back().size = 1;
+    bs->cols.back().position = c;
+  }
+
+  int nnz = 0;
+
+  // Row 1
+  {
+    values[nnz++] = 1;
+    values[nnz++] = 2;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 0;
+    row.cells.push_back(Cell(0, 0));
+    row.cells.push_back(Cell(2, 1));
+  }
+
+  // Row 2
+  {
+    values[nnz++] = 3;
+    values[nnz++] = 4;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 1;
+    row.cells.push_back(Cell(0, 2));
+    row.cells.push_back(Cell(3, 3));
+  }
+
+  // Row 3
+  {
+    values[nnz++] = 5;
+    values[nnz++] = 6;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 2;
+    row.cells.push_back(Cell(1, 4));
+    row.cells.push_back(Cell(4, 5));
+  }
+
+  // Row 4
+  {
+    values[nnz++] = 7;
+    values[nnz++] = 8;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 3;
+    row.cells.push_back(Cell(1, 6));
+    row.cells.push_back(Cell(2, 7));
+  }
+
+  // Row 5
+  {
+    values[nnz++] = 9;
+    values[nnz++] = 1;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 4;
+    row.cells.push_back(Cell(1, 8));
+    row.cells.push_back(Cell(2, 9));
+  }
+
+  // Row 6
+  {
+    values[nnz++] = 1;
+    values[nnz++] = 1;
+    values[nnz++] = 1;
+
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 5;
+    row.cells.push_back(Cell(2, 10));
+    row.cells.push_back(Cell(3, 11));
+    row.cells.push_back(Cell(4, 12));
+  }
+
+  BlockSparseMatrix* A = new BlockSparseMatrix(bs);
+  memcpy(A->mutable_values(), values.get(), nnz * sizeof(*A->values()));
+
+  for (int i = 0; i < num_cols; ++i) {
+    problem->D.get()[i] = 1;
+  }
+
+  for (int i = 0; i < num_rows; ++i) {
+    problem->b.get()[i] = i;
+  }
+
+  problem->A.reset(A);
+
+  return problem;
+}
+
+
+/*
+      A = [1 0
+           3 0
+           0 5
+           0 7
+           0 9
+           0 0]
+
+      b = [0
+           1
+           2
+           3
+           4
+           5]
+*/
+// BlockSparseMatrix version
+LinearLeastSquaresProblem* LinearLeastSquaresProblem3() {
+  int num_rows = 5;
+  int num_cols = 2;
+
+  LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem;
+
+  problem->b.reset(new double[num_rows]);
+  problem->D.reset(new double[num_cols]);
+  problem->num_eliminate_blocks = 2;
+
+  CompressedRowBlockStructure* bs = new CompressedRowBlockStructure;
+  scoped_array<double> values(new double[num_rows * num_cols]);
+
+  for (int c = 0; c < num_cols; ++c) {
+    bs->cols.push_back(Block());
+    bs->cols.back().size = 1;
+    bs->cols.back().position = c;
+  }
+
+  int nnz = 0;
+
+  // Row 1
+  {
+    values[nnz++] = 1;
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 0;
+    row.cells.push_back(Cell(0, 0));
+  }
+
+  // Row 2
+  {
+    values[nnz++] = 3;
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 1;
+    row.cells.push_back(Cell(0, 1));
+  }
+
+  // Row 3
+  {
+    values[nnz++] = 5;
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 2;
+    row.cells.push_back(Cell(1, 2));
+  }
+
+  // Row 4
+  {
+    values[nnz++] = 7;
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 3;
+    row.cells.push_back(Cell(1, 3));
+  }
+
+  // Row 5
+  {
+    values[nnz++] = 9;
+    bs->rows.push_back(CompressedRow());
+    CompressedRow& row = bs->rows.back();
+    row.block.size = 1;
+    row.block.position = 4;
+    row.cells.push_back(Cell(1, 4));
+  }
+
+  BlockSparseMatrix* A = new BlockSparseMatrix(bs);
+  memcpy(A->mutable_values(), values.get(), nnz * sizeof(*A->values()));
+
+  for (int i = 0; i < num_cols; ++i) {
+    problem->D.get()[i] = 1;
+  }
+
+  for (int i = 0; i < num_rows; ++i) {
+    problem->b.get()[i] = i;
+  }
+
+  problem->A.reset(A);
+
+  return problem;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/linear_least_squares_problems.h b/internal/ceres/linear_least_squares_problems.h
new file mode 100644
index 0000000..46a624b
--- /dev/null
+++ b/internal/ceres/linear_least_squares_problems.h
@@ -0,0 +1,77 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_LINEAR_LEAST_SQUARES_PROBLEMS_H_
+#define CERES_INTERNAL_LINEAR_LEAST_SQUARES_PROBLEMS_H_
+
+#include <string>
+
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+// Structure defining a linear least squares problem and if possible
+// ground truth solutions. To be used by various LinearSolver tests.
+struct LinearLeastSquaresProblem {
+  LinearLeastSquaresProblem()
+      : A(NULL), b(NULL), D(NULL), num_eliminate_blocks(0),
+        x(NULL), x_D(NULL) {
+  }
+
+  scoped_ptr<SparseMatrix> A;
+  scoped_array<double> b;
+  scoped_array<double> D;
+  // If using the schur eliminator then how many of the variable
+  // blocks are e_type blocks.
+  int num_eliminate_blocks;
+
+  // Solution to min_x |Ax - b|^2
+  scoped_array<double> x;
+  // Solution to min_x |Ax - b|^2 + |Dx|^2
+  scoped_array<double> x_D;
+};
+
+// Factories for linear least squares problem.
+LinearLeastSquaresProblem* CreateLinearLeastSquaresProblemFromId(int id);
+LinearLeastSquaresProblem* CreateLinearLeastSquaresProblemFromFile(
+    const string& filename);
+
+LinearLeastSquaresProblem* LinearLeastSquaresProblem0();
+LinearLeastSquaresProblem* LinearLeastSquaresProblem1();
+LinearLeastSquaresProblem* LinearLeastSquaresProblem2();
+LinearLeastSquaresProblem* LinearLeastSquaresProblem3();
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_LINEAR_LEAST_SQUARES_PROBLEMS_H_
diff --git a/internal/ceres/linear_operator.cc b/internal/ceres/linear_operator.cc
new file mode 100644
index 0000000..4b59fa1
--- /dev/null
+++ b/internal/ceres/linear_operator.cc
@@ -0,0 +1,40 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/linear_operator.h"
+
+namespace ceres {
+namespace internal {
+
+LinearOperator::~LinearOperator() {
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/linear_operator.h b/internal/ceres/linear_operator.h
new file mode 100644
index 0000000..d5c15ce
--- /dev/null
+++ b/internal/ceres/linear_operator.h
@@ -0,0 +1,59 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Base classes for access to an linear operator.
+
+#ifndef CERES_INTERNAL_LINEAR_OPERATOR_H_
+#define CERES_INTERNAL_LINEAR_OPERATOR_H_
+
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+// This is an abstract base class for linear operators. It supports
+// access to size information and left and right multiply operators.
+class LinearOperator {
+ public:
+  virtual ~LinearOperator();
+
+  // y = y + Ax;
+  virtual void RightMultiply(const double* x, double* y) const = 0;
+  // y = y + A'x;
+  virtual void LeftMultiply(const double* x, double* y) const = 0;
+
+  virtual int num_rows() const = 0;
+  virtual int num_cols() const = 0;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_LINEAR_OPERATOR_H_
diff --git a/internal/ceres/linear_solver.cc b/internal/ceres/linear_solver.cc
new file mode 100644
index 0000000..e3912eb
--- /dev/null
+++ b/internal/ceres/linear_solver.cc
@@ -0,0 +1,86 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/linear_solver.h"
+
+#include <glog/logging.h>
+#include "ceres/conjugate_gradients_solver.h"
+#include "ceres/dense_qr_solver.h"
+#include "ceres/iterative_schur_complement_solver.h"
+#include "ceres/schur_complement_solver.h"
+#include "ceres/sparse_normal_cholesky_solver.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+LinearSolver::~LinearSolver() {
+}
+
+LinearSolver* LinearSolver::Create(const LinearSolver::Options& options) {
+  switch (options.type) {
+    case CONJUGATE_GRADIENTS:
+      return new ConjugateGradientsSolver(options);
+
+    case SPARSE_NORMAL_CHOLESKY:
+#ifndef CERES_NO_SUITESPARSE
+      return new SparseNormalCholeskySolver(options);
+#else
+      LOG(WARNING) << "SPARSE_NORMAL_CHOLESKY is not available. Please "
+                   << "build Ceres with SuiteSparse. Returning NULL.";
+      return NULL;
+#endif  // CERES_NO_SUITESPARSE
+
+    case SPARSE_SCHUR:
+#ifndef CERES_NO_SUITESPARSE
+      return new SparseSchurComplementSolver(options);
+#else
+      LOG(WARNING) << "SPARSE_SCHUR is not available. Please "
+                   << "build Ceres with SuiteSparse. Returning NULL.";
+      return NULL;
+#endif  // CERES_NO_SUITESPARSE
+
+    case DENSE_SCHUR:
+      return new DenseSchurComplementSolver(options);
+
+    case ITERATIVE_SCHUR:
+      return new IterativeSchurComplementSolver(options);
+
+    case DENSE_QR:
+      return new DenseQRSolver(options);
+
+    default:
+      LOG(FATAL) << "Unknown linear solver type :"
+                 << options.type;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/linear_solver.h b/internal/ceres/linear_solver.h
new file mode 100644
index 0000000..d287813
--- /dev/null
+++ b/internal/ceres/linear_solver.h
@@ -0,0 +1,291 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Abstract interface for objects solving linear systems of various
+// kinds.
+
+#ifndef CERES_INTERNAL_LINEAR_SOLVER_H_
+#define CERES_INTERNAL_LINEAR_SOLVER_H_
+
+#include <cstddef>
+
+#include <glog/logging.h>
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/dense_sparse_matrix.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class LinearOperator;
+
+// Abstract base class for objects that implement algorithms for
+// solving linear systems
+//
+//   Ax = b
+//
+// It is expected that a single instance of a LinearSolver object
+// maybe used multiple times for solving different linear
+// systems. This allows them to cache and reuse information across
+// solves if for example the sparsity of the linear system remains
+// constant.
+//
+// Subclasses of LinearSolver use two structs to configure themselves.
+// The Options struct configures the LinearSolver object for its
+// lifetime. The PerSolveOptions struct is used to specify options for
+// a particular Solve call.
+class LinearSolver {
+ public:
+  struct Options {
+    Options()
+        : type(SPARSE_NORMAL_CHOLESKY),
+          preconditioner_type(JACOBI),
+          min_num_iterations(1),
+          max_num_iterations(1),
+          num_threads(1),
+          constant_sparsity(false),
+          num_eliminate_blocks(0),
+          residual_reset_period(10),
+          row_block_size(Dynamic),
+          e_block_size(Dynamic),
+          f_block_size(Dynamic) {
+    }
+
+    LinearSolverType type;
+
+    PreconditionerType preconditioner_type;
+
+    // Number of internal iterations that the solver uses. This
+    // parameter only makes sense for iterative solvers like CG.
+    int min_num_iterations;
+    int max_num_iterations;
+
+    // If possible, how many threads can the solver use.
+    int num_threads;
+
+    // If possible cache and reuse the symbolic factorization across
+    // multiple calls.
+    bool constant_sparsity;
+
+    // Eliminate 0 to num_eliminate_blocks - 1 from the Normal
+    // equations to form a schur complement. Only used by the Schur
+    // complement based solver. The most common use for this parameter
+    // is in the case of structure from motion problems where we have
+    // camera blocks and point blocks. Then setting the
+    // num_eliminate_blocks to the number of points allows the solver
+    // to use the Schur complement trick. For more details see the
+    // description of this parameter in solver.h.
+    int num_eliminate_blocks;
+
+    // Iterative solvers, e.g. Preconditioned Conjugate Gradients
+    // maintain a cheap estimate of the residual which may become
+    // inaccurate over time. Thus for non-zero values of this
+    // parameter, the solver can be told to recalculate the value of
+    // the residual using a |b - Ax| evaluation.
+    int residual_reset_period;
+
+    // If the block sizes in a BlockSparseMatrix are fixed, then in
+    // some cases the Schur complement based solvers can detect and
+    // specialize on them.
+    //
+    // It is expected that these parameters are set programmatically
+    // rather than manually.
+    //
+    // Please see explicit_schur_complement_solver_impl.h for more
+    // details.
+    int row_block_size;
+    int e_block_size;
+    int f_block_size;
+  };
+
+  // Options for the Solve method.
+  struct PerSolveOptions {
+    PerSolveOptions()
+        : D(NULL),
+          preconditioner(NULL),
+          r_tolerance(0.0),
+          q_tolerance(0.0) {
+    }
+
+    // This option only makes sense for unsymmetric linear solvers
+    // that can solve rectangular linear systems.
+    //
+    // Given a matrix A, an optional diagonal matrix D as a vector,
+    // and a vector b, the linear solver will solve for
+    //
+    //   | A | x = | b |
+    //   | D |     | 0 |
+    //
+    // If D is null, then it is treated as zero, and the solver returns
+    // the solution to
+    //
+    //   A x = b
+    //
+    // In either case, x is the vector that solves the following
+    // optimization problem.
+    //
+    //   arg min_x ||Ax -b||^2 + ||Dx||^2
+    //
+    // Here A is a matrix of size m x n, with full column rank. If A
+    // does not have full column rank, the results returned by the
+    // solver cannot be relied on. D, if it is not null is an array of
+    // size n.  b is an array of size m and x is an array of size n.
+    double * D;
+
+    // This option only makes sense for iterative solvers.
+    //
+    // In general the performance of an iterative linear solver
+    // depends on the condition number of the matrix A. For example
+    // the convergence rate of the conjugate gradients algorithm
+    // is proportional to the square root of the condition number.
+    //
+    // One particularly useful technique for improving the
+    // conditioning of a linear system is to precondition it. In its
+    // simplest form a preconditioner is a matrix M such that instead
+    // of solving Ax = b, we solve the linear system AM^{-1} y = b
+    // instead, where M is such that the condition number k(AM^{-1})
+    // is smaller than the conditioner k(A). Given the solution to
+    // this system, x = M^{-1} y. The iterative solver takes care of
+    // the mechanics of solving the preconditioned system and
+    // returning the corrected solution x. The user only needs to
+    // supply a linear operator.
+    //
+    // A null preconditioner is equivalent to an identity matrix being
+    // used a preconditioner.
+    LinearOperator* preconditioner;
+
+
+    // The following tolerance related options only makes sense for
+    // iterative solvers. Direct solvers ignore them.
+
+    // Solver terminates when
+    //
+    //   |Ax - b| <= r_tolerance * |b|.
+    //
+    // This is the most commonly used termination criterion for
+    // iterative solvers.
+    double r_tolerance;
+
+    // For PSD matrices A, let
+    //
+    //   Q(x) = x'Ax - 2b'x
+    //
+    // be the cost of the quadratic function defined by A and b. Then,
+    // the solver terminates at iteration i if
+    //
+    //   i * (Q(x_i) - Q(x_i-1)) / Q(x_i) < q_tolerance.
+    //
+    // This termination criterion is more useful when using CG to
+    // solve the Newton step. This particular convergence test comes
+    // from Stephen Nash's work on truncated Newton
+    // methods. References:
+    //
+    //   1. Stephen G. Nash & Ariela Sofer, Assessing A Search
+    //      Direction Within A Truncated Newton Method, Operation
+    //      Research Letters 9(1990) 219-221.
+    //
+    //   2. Stephen G. Nash, A Survey of Truncated Newton Methods,
+    //      Journal of Computational and Applied Mathematics,
+    //      124(1-2), 45-59, 2000.
+    //
+    double q_tolerance;
+  };
+
+  // Summary of a call to the Solve method. We should move away from
+  // the true/false method for determining solver success. We should
+  // let the summary object do the talking.
+  struct Summary {
+    Summary()
+        : residual_norm(0.0),
+          num_iterations(-1),
+          termination_type(FAILURE) {
+    }
+
+    double residual_norm;
+    int num_iterations;
+    LinearSolverTerminationType termination_type;
+  };
+
+  virtual ~LinearSolver();
+
+  // Solve Ax = b.
+  virtual Summary Solve(LinearOperator* A,
+                        const double* b,
+                        const PerSolveOptions& per_solve_options,
+                        double* x) = 0;
+
+  static LinearSolver* Create(const Options& options);
+};
+
+// This templated subclass of LinearSolver serves as a base class for
+// other linear solvers that depend on the particular matrix layout of
+// the underlying linear operator. For example some linear solvers
+// need low level access to the TripletSparseMatrix implementing the
+// LinearOperator interface. This class hides those implementation
+// details behind a private virtual method, and has the Solve method
+// perform the necessary upcasting.
+template <typename MatrixType>
+class TypedLinearSolver : public LinearSolver {
+ public:
+  virtual ~TypedLinearSolver() {}
+  virtual LinearSolver::Summary Solve(
+      LinearOperator* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& per_solve_options,
+      double* x) {
+    CHECK_NOTNULL(A);
+    CHECK_NOTNULL(b);
+    CHECK_NOTNULL(x);
+    return SolveImpl(down_cast<MatrixType*>(A), b, per_solve_options, x);
+  }
+
+ private:
+  virtual LinearSolver::Summary SolveImpl(
+      MatrixType* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& per_solve_options,
+      double* x) = 0;
+};
+
+// Linear solvers that depend on acccess to the low level structure of
+// a SparseMatrix.
+typedef TypedLinearSolver<BlockSparseMatrix>         BlockSparseMatrixSolver;          // NOLINT
+typedef TypedLinearSolver<BlockSparseMatrixBase>     BlockSparseMatrixBaseSolver;      // NOLINT
+typedef TypedLinearSolver<CompressedRowSparseMatrix> CompressedRowSparseMatrixSolver;  // NOLINT
+typedef TypedLinearSolver<DenseSparseMatrix>         DenseSparseMatrixSolver;          // NOLINT
+typedef TypedLinearSolver<TripletSparseMatrix>       TripletSparseMatrixSolver;        // NOLINT
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_LINEAR_SOLVER_H_
diff --git a/internal/ceres/local_parameterization.cc b/internal/ceres/local_parameterization.cc
new file mode 100644
index 0000000..eeae74e
--- /dev/null
+++ b/internal/ceres/local_parameterization.cc
@@ -0,0 +1,140 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <glog/logging.h>
+#include "ceres/internal/eigen.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/rotation.h"
+
+namespace ceres {
+
+IdentityParameterization::IdentityParameterization(const int size)
+    : size_(size) {
+  CHECK_GT(size, 0);
+}
+
+bool IdentityParameterization::Plus(const double* x,
+                                    const double* delta,
+                                    double* x_plus_delta) const {
+  VectorRef(x_plus_delta, size_) =
+      ConstVectorRef(x, size_) + ConstVectorRef(delta, size_);
+  return true;
+}
+
+bool IdentityParameterization::ComputeJacobian(const double* x,
+                                               double* jacobian) const {
+  MatrixRef(jacobian, size_, size_) = Matrix::Identity(size_, size_);
+  return true;
+}
+
+SubsetParameterization::SubsetParameterization(
+    int size,
+    const vector<int>& constant_parameters)
+    : local_size_(size - constant_parameters.size()),
+      constancy_mask_(size, 0) {
+  CHECK_GT(constant_parameters.size(), 0)
+      << "The set of constant parameters should contain at least "
+      << "one element. If you do not wish to hold any parameters "
+      << "constant, then do not use a SubsetParameterization";
+
+  vector<int> constant = constant_parameters;
+  sort(constant.begin(), constant.end());
+  CHECK(unique(constant.begin(), constant.end()) == constant.end())
+      << "The set of constant parameters cannot contain duplicates";
+  CHECK_LT(constant_parameters.size(), size)
+      << "Number of parameters held constant should be less "
+      << "than the size of the parameter block. If you wish "
+      << "to hold the entire parameter block constant, then a "
+      << "efficient way is to directly mark it as constant "
+      << "instead of using a LocalParameterization to do so.";
+  CHECK_GE(*min_element(constant.begin(), constant.end()), 0);
+  CHECK_LT(*max_element(constant.begin(), constant.end()), size);
+
+  for (int i = 0; i < constant_parameters.size(); ++i) {
+    constancy_mask_[constant_parameters[i]] = 1;
+  }
+}
+
+bool SubsetParameterization::Plus(const double* x,
+                                  const double* delta,
+                                  double* x_plus_delta) const {
+  for (int i = 0, j = 0; i < constancy_mask_.size(); ++i) {
+    if (constancy_mask_[i]) {
+      x_plus_delta[i] = x[i];
+    } else {
+      x_plus_delta[i] = x[i] + delta[j++];
+    }
+  }
+  return true;
+}
+
+bool SubsetParameterization::ComputeJacobian(const double* x,
+                                             double* jacobian) const {
+  MatrixRef m(jacobian, constancy_mask_.size(), local_size_);
+  m.setZero();
+  for (int i = 0, j = 0; i < constancy_mask_.size(); ++i) {
+    if (!constancy_mask_[i]) {
+      m(i, j++) = 1.0;
+    }
+  }
+  return true;
+}
+
+bool QuaternionParameterization::Plus(const double* x,
+                                      const double* delta,
+                                      double* x_plus_delta) const {
+  const double norm_delta =
+      sqrt(delta[0] * delta[0] + delta[1] * delta[1] + delta[2] * delta[2]);
+  if (norm_delta > 0.0) {
+    const double sin_delta_by_delta = (sin(norm_delta) / norm_delta);
+    double q_delta[4];
+    q_delta[0] = cos(norm_delta);
+    q_delta[1] = sin_delta_by_delta * delta[0];
+    q_delta[2] = sin_delta_by_delta * delta[1];
+    q_delta[3] = sin_delta_by_delta * delta[2];
+    QuaternionProduct(q_delta, x, x_plus_delta);
+  } else {
+    for (int i = 0; i < 4; ++i) {
+      x_plus_delta[i] = x[i];
+    }
+  }
+  return true;
+}
+
+bool QuaternionParameterization::ComputeJacobian(const double* x,
+                                                 double* jacobian) const {
+  jacobian[0] = -x[1]; jacobian[1]  = -x[2]; jacobian[2]  = -x[3];  // NOLINT
+  jacobian[3] =  x[0]; jacobian[4]  =  x[3]; jacobian[5]  = -x[2];  // NOLINT
+  jacobian[6] = -x[3]; jacobian[7]  =  x[0]; jacobian[8]  =  x[1];  // NOLINT
+  jacobian[9] =  x[2]; jacobian[10] = -x[1]; jacobian[11] =  x[0];  // NOLINT
+  return true;
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/local_parameterization_test.cc b/internal/ceres/local_parameterization_test.cc
new file mode 100644
index 0000000..1533884
--- /dev/null
+++ b/internal/ceres/local_parameterization_test.cc
@@ -0,0 +1,251 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <cmath>
+#include "gtest/gtest.h"
+#include "ceres/internal/autodiff.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/rotation.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(IdentityParameterization, EverythingTest) {
+  IdentityParameterization parameterization(3);
+  EXPECT_EQ(parameterization.GlobalSize(), 3);
+  EXPECT_EQ(parameterization.LocalSize(), 3);
+
+  double x[3] = {1.0, 2.0, 3.0};
+  double delta[3] = {0.0, 1.0, 2.0};
+  double x_plus_delta[3] = {0.0, 0.0, 0.0};
+  parameterization.Plus(x, delta, x_plus_delta);
+  EXPECT_EQ(x_plus_delta[0], 1.0);
+  EXPECT_EQ(x_plus_delta[1], 3.0);
+  EXPECT_EQ(x_plus_delta[2], 5.0);
+
+  double jacobian[9];
+  parameterization.ComputeJacobian(x, jacobian);
+  int k = 0;
+  for (int i = 0; i < 3; ++i) {
+    for (int j = 0; j < 3; ++j, ++k) {
+      EXPECT_EQ(jacobian[k], (i == j) ? 1.0 : 0.0);
+    }
+  }
+}
+
+TEST(SubsetParameterization, DeathTests) {
+  vector<int> constant_parameters;
+  EXPECT_DEATH(SubsetParameterization parameterization(1, constant_parameters),
+               "at least");
+
+  constant_parameters.push_back(0);
+  EXPECT_DEATH(SubsetParameterization parameterization(1, constant_parameters),
+               "Number of parameters");
+
+  constant_parameters.push_back(1);
+  EXPECT_DEATH(SubsetParameterization parameterization(2, constant_parameters),
+               "Number of parameters");
+
+  constant_parameters.push_back(1);
+  EXPECT_DEATH(SubsetParameterization parameterization(2, constant_parameters),
+               "duplicates");
+}
+
+TEST(SubsetParameterization, NormalFunctionTest) {
+  double x[4] = {1.0, 2.0, 3.0, 4.0};
+  for (int i = 0; i < 4; ++i) {
+    vector<int> constant_parameters;
+    constant_parameters.push_back(i);
+    SubsetParameterization parameterization(4, constant_parameters);
+    double delta[3] = {1.0, 2.0, 3.0};
+    double x_plus_delta[4] = {0.0, 0.0, 0.0};
+
+    parameterization.Plus(x, delta, x_plus_delta);
+    int k = 0;
+    for (int j = 0; j < 4; ++j) {
+      if (j == i)  {
+        EXPECT_EQ(x_plus_delta[j], x[j]);
+      } else {
+        EXPECT_EQ(x_plus_delta[j], x[j] + delta[k++]);
+      }
+    }
+
+    double jacobian[4 * 3];
+    parameterization.ComputeJacobian(x, jacobian);
+    int delta_cursor = 0;
+    int jacobian_cursor = 0;
+    for (int j = 0; j < 4; ++j) {
+      if (j != i) {
+        for (int k = 0; k < 3; ++k, jacobian_cursor++) {
+          EXPECT_EQ(jacobian[jacobian_cursor], delta_cursor == k ? 1.0 : 0.0);
+        }
+        ++delta_cursor;
+      } else {
+        for (int k = 0; k < 3; ++k, jacobian_cursor++) {
+          EXPECT_EQ(jacobian[jacobian_cursor], 0.0);
+        }
+      }
+    }
+  };
+}
+
+// Functor needed to implement automatically differentiated Plus for
+// quaternions.
+struct QuaternionPlus {
+  template<typename T>
+  bool operator()(const T* x, const T* delta, T* x_plus_delta) const {
+    const T squared_norm_delta =
+        delta[0] * delta[0] + delta[1] * delta[1] + delta[2] * delta[2];
+
+    T q_delta[4];
+    if (squared_norm_delta > T(0.0)) {
+      T norm_delta = sqrt(squared_norm_delta);
+      const T sin_delta_by_delta = sin(norm_delta) / norm_delta;
+      q_delta[0] = cos(norm_delta);
+      q_delta[1] = sin_delta_by_delta * delta[0];
+      q_delta[2] = sin_delta_by_delta * delta[1];
+      q_delta[3] = sin_delta_by_delta * delta[2];
+    } else {
+      // We do not just use q_delta = [1,0,0,0] here because that is a
+      // constant and when used for automatic differentiation will
+      // lead to a zero derivative. Instead we take a first order
+      // approximation and evaluate it at zero.
+      q_delta[0] = T(1.0);
+      q_delta[1] = delta[0];
+      q_delta[2] = delta[1];
+      q_delta[3] = delta[2];
+    }
+
+    QuaternionProduct(q_delta, x, x_plus_delta);
+    return true;
+  }
+};
+
+void QuaternionParameterizationTestHelper(const double* x,
+                                          const double* delta,
+                                          const double* q_delta) {
+  double x_plus_delta_ref[4] = {0.0, 0.0, 0.0, 0.0};
+  QuaternionProduct(q_delta, x, x_plus_delta_ref);
+
+  double x_plus_delta[4] = {0.0, 0.0, 0.0, 0.0};
+  QuaternionParameterization param;
+  param.Plus(x, delta, x_plus_delta);
+  for (int i = 0; i < 4; ++i) {
+    EXPECT_EQ(x_plus_delta[i], x_plus_delta_ref[i]);
+  }
+
+  const double x_plus_delta_norm =
+      sqrt(x_plus_delta[0] * x_plus_delta[0] +
+           x_plus_delta[1] * x_plus_delta[1] +
+           x_plus_delta[2] * x_plus_delta[2] +
+           x_plus_delta[3] * x_plus_delta[3]);
+
+  EXPECT_NEAR(x_plus_delta_norm, 1.0, 1e-12);
+
+  double jacobian_ref[12];
+  double zero_delta[3] = {0.0, 0.0, 0.0};
+  const double* parameters[2] = {x, zero_delta};
+  double* jacobian_array[2] = { NULL, jacobian_ref };
+
+  // Autodiff jacobian at delta_x = 0.
+  internal::AutoDiff<QuaternionPlus, double, 4, 4, 3>::Differentiate(
+      QuaternionPlus(), parameters, x_plus_delta, jacobian_array);
+
+  double jacobian[12];
+  param.ComputeJacobian(x, jacobian);
+  for (int i = 0; i < 12; ++i) {
+    EXPECT_TRUE(isfinite(jacobian[i]));
+    EXPECT_NEAR(jacobian[i], jacobian_ref[i], 1e-12)
+        << "Jacobian mismatch: i = " << i
+        << "\n Expected \n" << ConstMatrixRef(jacobian_ref, 4, 3)
+        << "\n Actual \n" << ConstMatrixRef(jacobian, 4, 3);
+  }
+}
+
+TEST(QuaternionParameterization, ZeroTest) {
+  double x[4] = {0.5, 0.5, 0.5, 0.5};
+  double delta[3] = {0.0, 0.0, 0.0};
+  double q_delta[4] = {1.0, 0.0, 0.0, 0.0};
+  QuaternionParameterizationTestHelper(x, delta, q_delta);
+}
+
+
+TEST(QuaternionParameterization, NearZeroTest) {
+  double x[4] = {0.52, 0.25, 0.15, 0.45};
+  double norm_x = sqrt(x[0] * x[0] +
+                       x[1] * x[1] +
+                       x[2] * x[2] +
+                       x[3] * x[3]);
+  for (int i = 0; i < 4; ++i) {
+    x[i] = x[i] / norm_x;
+  }
+
+  double delta[3] = {0.24, 0.15, 0.10};
+  for (int i = 0; i < 3; ++i) {
+    delta[i] = delta[i] * 1e-14;
+  }
+
+  double q_delta[4];
+  q_delta[0] = 1.0;
+  q_delta[1] = delta[0];
+  q_delta[2] = delta[1];
+  q_delta[3] = delta[2];
+
+  QuaternionParameterizationTestHelper(x, delta, q_delta);
+}
+
+TEST(QuaternionParameterization, AwayFromZeroTest) {
+  double x[4] = {0.52, 0.25, 0.15, 0.45};
+  double norm_x = sqrt(x[0] * x[0] +
+                       x[1] * x[1] +
+                       x[2] * x[2] +
+                       x[3] * x[3]);
+
+  for (int i = 0; i < 4; ++i) {
+    x[i] = x[i] / norm_x;
+  }
+
+  double delta[3] = {0.24, 0.15, 0.10};
+  const double delta_norm = sqrt(delta[0] * delta[0] +
+                                 delta[1] * delta[1] +
+                                 delta[2] * delta[2]);
+  double q_delta[4];
+  q_delta[0] = cos(delta_norm);
+  q_delta[1] = sin(delta_norm) / delta_norm * delta[0];
+  q_delta[2] = sin(delta_norm) / delta_norm * delta[1];
+  q_delta[3] = sin(delta_norm) / delta_norm * delta[2];
+
+  QuaternionParameterizationTestHelper(x, delta, q_delta);
+}
+
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/loss_function.cc b/internal/ceres/loss_function.cc
new file mode 100644
index 0000000..00b2b18
--- /dev/null
+++ b/internal/ceres/loss_function.cc
@@ -0,0 +1,93 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Purpose: See .h file.
+
+#include "ceres/loss_function.h"
+
+#include <cmath>
+#include <cstddef>
+
+namespace ceres {
+
+void TrivialLoss::Evaluate(double s, double rho[3]) const {
+  rho[0] = s;
+  rho[1] = 1;
+  rho[2] = 0;
+}
+
+void HuberLoss::Evaluate(double s, double rho[3]) const {
+  if (s > b_) {
+    // Outlier region.
+    // 'r' is always positive.
+    const double r = sqrt(s);
+    rho[0] = 2 * a_ * r - b_;
+    rho[1] = a_ / r;
+    rho[2] = - rho[1] / (2 * s);
+  } else {
+    // Inlier region.
+    rho[0] = s;
+    rho[1] = 1;
+    rho[2] = 0;
+  }
+}
+
+void SoftLOneLoss::Evaluate(double s, double rho[3]) const {
+  const double sum = 1 + s * c_;
+  const double tmp = sqrt(sum);
+  // 'sum' and 'tmp' are always positive, assuming that 's' is.
+  rho[0] = 2 * b_ * (tmp - 1);
+  rho[1] = 1 / tmp;
+  rho[2] = - (c_ * rho[1]) / (2 * sum);
+}
+
+void CauchyLoss::Evaluate(double s, double rho[3]) const {
+  const double sum = 1 + s * c_;
+  const double inv = 1 / sum;
+  // 'sum' and 'inv' are always positive, assuming that 's' is.
+  rho[0] = b_ * log(sum);
+  rho[1] = inv;
+  rho[2] = - c_ * (inv * inv);
+}
+
+void ScaledLoss::Evaluate(double s, double rho[3]) const {
+  if (rho_.get() == NULL) {
+    rho[0] = a_ * s;
+    rho[1] = a_;
+    rho[2] = 0.0;
+  } else {
+    rho_->Evaluate(s, rho);
+    rho[0] *= a_;
+    rho[1] *= a_;
+    rho[2] *= a_;
+  }
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/loss_function_test.cc b/internal/ceres/loss_function_test.cc
new file mode 100644
index 0000000..eaeb2d8
--- /dev/null
+++ b/internal/ceres/loss_function_test.cc
@@ -0,0 +1,168 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/loss_function.h"
+
+#include <cstddef>
+
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+// Helper function for testing a LossFunction callback.
+//
+// Compares the values of rho'(s) and rho''(s) computed by the
+// callback with estimates obtained by symmetric finite differencing
+// of rho(s).
+void AssertLossFunctionIsValid(const LossFunction& loss, double s) {
+  CHECK_GT(s, 0);
+
+  // Evaluate rho(s), rho'(s) and rho''(s).
+  double rho[3];
+  loss.Evaluate(s, rho);
+
+  // Use symmetric finite differencing to estimate rho'(s) and
+  // rho''(s).
+  const double kH = 1e-4;
+  // Values at s + kH.
+  double fwd[3];
+  // Values at s - kH.
+  double bwd[3];
+  loss.Evaluate(s + kH, fwd);
+  loss.Evaluate(s - kH, bwd);
+
+  // First derivative.
+  const double fd_1 = (fwd[0] - bwd[0]) / (2 * kH);
+  ASSERT_NEAR(fd_1, rho[1], 1e-6);
+
+  // Second derivative.
+  const double fd_2 = (fwd[0] - 2*rho[0] + bwd[0]) / (kH * kH);
+  ASSERT_NEAR(fd_2, rho[2], 1e-6);
+}
+}  // namespace
+
+// Try two values of the scaling a = 0.7 and 1.3
+// (where scaling makes sense) and of the squared norm
+// s = 0.357 and 1.792
+//
+// Note that for the Huber loss the test exercises both code paths
+//  (i.e. both small and large values of s).
+
+TEST(LossFunction, TrivialLoss) {
+  AssertLossFunctionIsValid(TrivialLoss(), 0.357);
+  AssertLossFunctionIsValid(TrivialLoss(), 1.792);
+}
+
+TEST(LossFunction, HuberLoss) {
+  AssertLossFunctionIsValid(HuberLoss(0.7), 0.357);
+  AssertLossFunctionIsValid(HuberLoss(0.7), 1.792);
+  AssertLossFunctionIsValid(HuberLoss(1.3), 0.357);
+  AssertLossFunctionIsValid(HuberLoss(1.3), 1.792);
+}
+
+TEST(LossFunction, SoftLOneLoss) {
+  AssertLossFunctionIsValid(SoftLOneLoss(0.7), 0.357);
+  AssertLossFunctionIsValid(SoftLOneLoss(0.7), 1.792);
+  AssertLossFunctionIsValid(SoftLOneLoss(1.3), 0.357);
+  AssertLossFunctionIsValid(SoftLOneLoss(1.3), 1.792);
+}
+
+TEST(LossFunction, CauchyLoss) {
+  AssertLossFunctionIsValid(CauchyLoss(0.7), 0.357);
+  AssertLossFunctionIsValid(CauchyLoss(0.7), 1.792);
+  AssertLossFunctionIsValid(CauchyLoss(1.3), 0.357);
+  AssertLossFunctionIsValid(CauchyLoss(1.3), 1.792);
+}
+
+TEST(LossFunction, ScaledLoss) {
+  // Wrap a few loss functions, and a few scale factors. This can't combine
+  // construction with the call to AssertLossFunctionIsValid() because Apple's
+  // GCC is unable to eliminate the copy of ScaledLoss, which is not copyable.
+  {
+    ScaledLoss scaled_loss(NULL, 6, TAKE_OWNERSHIP);
+    AssertLossFunctionIsValid(scaled_loss, 0.323);
+  }
+  {
+    ScaledLoss scaled_loss(new TrivialLoss(), 10, TAKE_OWNERSHIP);
+    AssertLossFunctionIsValid(scaled_loss, 0.357);
+  }
+  {
+    ScaledLoss scaled_loss(new HuberLoss(0.7), 0.1, TAKE_OWNERSHIP);
+    AssertLossFunctionIsValid(scaled_loss, 1.792);
+  }
+  {
+    ScaledLoss scaled_loss(new SoftLOneLoss(1.3), 0.1, TAKE_OWNERSHIP);
+    AssertLossFunctionIsValid(scaled_loss, 1.792);
+  }
+  {
+    ScaledLoss scaled_loss(new CauchyLoss(1.3), 10, TAKE_OWNERSHIP);
+    AssertLossFunctionIsValid(scaled_loss, 1.792);
+  }
+}
+
+TEST(LossFunction, LossFunctionWrapper) {
+  // Initialization
+  HuberLoss loss_function1(1.0);
+  LossFunctionWrapper loss_function_wrapper(new HuberLoss(1.0),
+                                            TAKE_OWNERSHIP);
+
+  double s = 0.862;
+  double rho_gold[3];
+  double rho[3];
+  loss_function1.Evaluate(s, rho_gold);
+  loss_function_wrapper.Evaluate(s, rho);
+  for (int i = 0; i < 3; ++i) {
+    EXPECT_NEAR(rho[i], rho_gold[i], 1e-12);
+  }
+
+  // Resetting
+  HuberLoss loss_function2(0.5);
+  loss_function_wrapper.Reset(new HuberLoss(0.5), TAKE_OWNERSHIP);
+  loss_function_wrapper.Evaluate(s, rho);
+  loss_function2.Evaluate(s, rho_gold);
+  for (int i = 0; i < 3; ++i) {
+    EXPECT_NEAR(rho[i], rho_gold[i], 1e-12);
+  }
+
+  // Not taking ownership.
+  HuberLoss loss_function3(0.3);
+  loss_function_wrapper.Reset(&loss_function3, DO_NOT_TAKE_OWNERSHIP);
+  loss_function_wrapper.Evaluate(s, rho);
+  loss_function3.Evaluate(s, rho_gold);
+  for (int i = 0; i < 3; ++i) {
+    EXPECT_NEAR(rho[i], rho_gold[i], 1e-12);
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/map_util.h b/internal/ceres/map_util.h
new file mode 100644
index 0000000..ddf1252
--- /dev/null
+++ b/internal/ceres/map_util.h
@@ -0,0 +1,129 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Originally by Anton Carver
+
+#ifndef CERES_INTERNAL_MAP_UTIL_H_
+#define CERES_INTERNAL_MAP_UTIL_H_
+
+#include <utility>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+
+// Perform a lookup in a map or hash_map, assuming that the key exists.
+// Crash if it does not.
+//
+// This is intended as a replacement for operator[] as an rvalue (for reading)
+// when the key is guaranteed to exist.
+//
+// operator[] is discouraged for several reasons:
+//  * It has a side-effect of inserting missing keys
+//  * It is not thread-safe (even when it is not inserting, it can still
+//      choose to resize the underlying storage)
+//  * It invalidates iterators (when it chooses to resize)
+//  * It default constructs a value object even if it doesn't need to
+//
+// This version assumes the key is printable, and includes it in the fatal log
+// message.
+template <class Collection>
+const typename Collection::value_type::second_type&
+FindOrDie(const Collection& collection,
+          const typename Collection::value_type::first_type& key) {
+  typename Collection::const_iterator it = collection.find(key);
+  CHECK(it != collection.end()) << "Map key not found: " << key;
+  return it->second;
+}
+
+// Perform a lookup in a map or hash_map.
+// If the key is present in the map then the value associated with that
+// key is returned, otherwise the value passed as a default is returned.
+template <class Collection>
+const typename Collection::value_type::second_type&
+FindWithDefault(const Collection& collection,
+                const typename Collection::value_type::first_type& key,
+                const typename Collection::value_type::second_type& value) {
+  typename Collection::const_iterator it = collection.find(key);
+  if (it == collection.end()) {
+    return value;
+  }
+  return it->second;
+}
+
+// Insert a new key and value into a map or hash_map.
+// If the key is not present in the map the key and value are
+// inserted, otherwise nothing happens. True indicates that an insert
+// took place, false indicates the key was already present.
+template <class Collection>
+bool InsertIfNotPresent(
+    Collection * const collection,
+    const typename Collection::value_type::first_type& key,
+    const typename Collection::value_type::second_type& value) {
+  pair<typename Collection::iterator, bool> ret =
+    collection->insert(typename Collection::value_type(key, value));
+  return ret.second;
+}
+
+// Perform a lookup in a map or hash_map.
+// Same as above but the returned pointer is not const and can be used to change
+// the stored value.
+template <class Collection>
+typename Collection::value_type::second_type*
+FindOrNull(Collection& collection,  // NOLINT
+           const typename Collection::value_type::first_type& key) {
+  typename Collection::iterator it = collection.find(key);
+  if (it == collection.end()) {
+    return 0;
+  }
+  return &it->second;
+}
+
+// Test to see if a set, map, hash_set or hash_map contains a particular key.
+// Returns true if the key is in the collection.
+template <class Collection, class Key>
+bool ContainsKey(const Collection& collection, const Key& key) {
+  typename Collection::const_iterator it = collection.find(key);
+  return it != collection.end();
+}
+
+// Inserts a new key/value into a map or hash_map.
+// Dies if the key is already present.
+template<class Collection>
+void InsertOrDie(Collection* const collection,
+                 const typename Collection::value_type::first_type& key,
+                 const typename Collection::value_type::second_type& data) {
+  typedef typename Collection::value_type value_type;
+  CHECK(collection->insert(value_type(key, data)).second)
+    << "duplicate key: " << key;
+}
+
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_MAP_UTIL_H_
diff --git a/internal/ceres/matrix.proto b/internal/ceres/matrix.proto
new file mode 100644
index 0000000..55a01d2
--- /dev/null
+++ b/internal/ceres/matrix.proto
@@ -0,0 +1,143 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+syntax = "proto2";
+
+package ceres.internal;
+
+message BlockProto {
+  // The span of the block.
+  optional int32 size = 1;
+
+  // Position along the row or column (depending on storage orientation).
+  optional int32 position = 2;
+}
+
+message CellProto {
+  // Column or row block id as appropriate.
+  optional int32 block_id = 1;
+
+  // Position in the values array the cell is located. Each cell is stored as a
+  // row-major chunk inside the values array.
+  optional int32 position = 2;
+}
+
+// A single row or column, depending on the matrix type.
+message CompressedRowProto {
+  optional BlockProto block = 2;
+  repeated CellProto cells = 1;
+}
+
+message BlockStructureProto {
+  repeated BlockProto cols = 1;
+  repeated CompressedRowProto rows = 2;
+}
+
+// A block sparse matrix, either in column major or row major format.
+message BlockSparseMatrixProto {
+  optional int64 num_rows = 2;
+  optional int64 num_cols = 3;
+  optional int64 num_nonzeros = 4;
+  repeated double values = 1 [packed=true];
+
+  optional BlockStructureProto block_structure = 5;
+}
+
+message TripletSparseMatrixProto {
+  optional int64 num_rows = 4;
+  optional int64 num_cols = 5;
+  optional int64 num_nonzeros = 6;
+
+  // The data is stored as three arrays. For each i, values(i) is stored at the
+  // location (rows(i), cols(i)). If the there are multiple entries with the
+  // same (rows(i), cols(i)), the values entries corresponding to them are
+  // summed up.
+  repeated int64 rows = 1 [packed=true];
+  repeated int64 cols = 2 [packed=true];
+  repeated double values = 3 [packed=true];
+}
+
+message CompressedRowSparseMatrixProto {
+  optional int64 num_rows = 4;
+  optional int64 num_cols = 5;
+
+  repeated int64 rows = 1 [packed=true];
+  repeated int64 cols = 2 [packed=true];
+  repeated double values = 3 [packed=true];
+}
+
+message DenseSparseMatrixProto {
+  optional int64 num_rows = 1;
+  optional int64 num_cols = 2;
+
+  // Entries are stored in row-major order.
+  repeated double values = 3 [packed=true];
+}
+
+// A sparse matrix. It is a union; only one field is permitted. If new sparse
+// implementations are added, update this proto accordingly.
+message SparseMatrixProto {
+  optional TripletSparseMatrixProto triplet_matrix = 1;
+  optional BlockSparseMatrixProto block_matrix = 2;
+  optional CompressedRowSparseMatrixProto compressed_row_matrix = 3;
+  optional DenseSparseMatrixProto dense_matrix = 4;
+}
+
+// A linear least squares problem.
+//
+// Given a matrix A, an optional diagonal matrix D as a vector, and a vector b,
+// the proto represents the following linear least squares problem.
+//
+//   | A | x = | b |
+//   | D |     | 0 |
+//
+// If D is empty, then the problem is considered to be
+//
+//   A x = b
+//
+// The desired solution for the problem is the vector x that solves the
+// following optimization problem:
+//
+//   arg min_x ||Ax - b||^2 + ||Dx||^2
+//
+// If x is present, then it is the expected solution to the
+// problem. The dimensions of A, b, x, and D should be consistent.
+message LinearLeastSquaresProblemProto {
+  optional SparseMatrixProto a = 1;
+  repeated double b = 2 [packed=true];
+  repeated double d = 3 [packed=true];
+  repeated double x = 4 [packed=true];
+  // If the problem is of SfM type, i.e it has a generalized
+  // bi-partite structure, then num_eliminate_blocks is the number of
+  // column blocks that are to eliminated in the formation of the
+  // Schur complement. For more details see
+  // explicit_schur_complement_solver.h.
+  optional int32 num_eliminate_blocks = 5;
+}
diff --git a/internal/ceres/matrix_proto.h b/internal/ceres/matrix_proto.h
new file mode 100644
index 0000000..b8a3a1a
--- /dev/null
+++ b/internal/ceres/matrix_proto.h
@@ -0,0 +1,40 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A portability header to make optional protocol buffer support less intrusive.
+
+#ifndef CERES_INTERNAL_MATRIX_PROTO_H_
+#define CERES_INTERNAL_MATRIX_PROTO_H_
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+#include "ceres/matrix.pb.h"
+#endif
+
+#endif  // CERES_INTERNAL_MATRIX_PROTO_H_
diff --git a/internal/ceres/minimizer.h b/internal/ceres/minimizer.h
new file mode 100644
index 0000000..71163a8
--- /dev/null
+++ b/internal/ceres/minimizer.h
@@ -0,0 +1,102 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_MINIMIZER_H_
+#define CERES_INTERNAL_MINIMIZER_H_
+
+#include <vector>
+#include "ceres/solver.h"
+#include "ceres/iteration_callback.h"
+
+namespace ceres {
+namespace internal {
+
+class Evaluator;
+class LinearSolver;
+
+// Interface for non-linear least squares solvers.
+class Minimizer {
+ public:
+  // Options struct to control the behaviour of the Minimizer. Please
+  // see solver.h for detailed information about the meaning and
+  // default values of each of these parameters.
+  struct Options {
+    explicit Options(const Solver::Options& options) {
+      max_num_iterations = options.max_num_iterations;
+      max_solver_time_sec = options.max_solver_time_sec;
+      gradient_tolerance = options.gradient_tolerance;
+      parameter_tolerance = options.parameter_tolerance;
+      function_tolerance = options.function_tolerance;
+      min_relative_decrease = options.min_relative_decrease;
+      eta = options.eta;
+      tau = options.tau;
+      jacobi_scaling = options.jacobi_scaling;
+      crash_and_dump_lsqp_on_failure = options.crash_and_dump_lsqp_on_failure;
+      lsqp_dump_format = options.lsqp_dump_format;
+      lsqp_iterations_to_dump = options.lsqp_iterations_to_dump;
+      num_eliminate_blocks = options.num_eliminate_blocks;
+      logging_type = options.logging_type;
+    }
+
+    int max_num_iterations;
+    int max_solver_time_sec;
+    double gradient_tolerance;
+    double parameter_tolerance;
+    double function_tolerance;
+    double min_relative_decrease;
+    double eta;
+    double tau;
+    bool jacobi_scaling;
+    bool crash_and_dump_lsqp_on_failure;
+    string lsqp_dump_format;
+    vector<int> lsqp_iterations_to_dump;
+    int num_eliminate_blocks;
+    LoggingType logging_type;
+
+    // List of callbacks that are executed by the Minimizer at the end
+    // of each iteration.
+    //
+    // Client owns these pointers.
+    vector<IterationCallback*> callbacks;
+  };
+
+  virtual ~Minimizer() {}
+  virtual void Minimize(const Options& options,
+                        Evaluator* evaluator,
+                        LinearSolver* linear_solver,
+                        const double* initial_parameters,
+                        double* final_parameters,
+                        Solver::Summary* summary) = 0;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_MINIMIZER_H_
diff --git a/internal/ceres/mock_log.h b/internal/ceres/mock_log.h
new file mode 100644
index 0000000..bce54ab
--- /dev/null
+++ b/internal/ceres/mock_log.h
@@ -0,0 +1,160 @@
+// Copyright (c) 2007, Google 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 Google 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.
+//
+// Author: Zhanyong Wan
+//
+// Defines the ScopedMockLog class (using Google C++ Mocking
+// Framework), which is convenient for testing code that uses LOG().
+//
+// NOTE(keir): This is a fork until Google Log exports the scoped mock log
+// class; see: http://code.google.com/p/google-glog/issues/detail?id=88
+
+#ifndef GOOGLE_CERES_INTERNAL_MOCK_LOG_H_
+#define GOOGLE_CERES_INTERNAL_MOCK_LOG_H_
+
+#include <string>
+
+#include <gmock/gmock.h>
+
+#include "glog/logging.h"
+
+// Needed to make the scoped mock log tests work without modification.
+namespace ceres {
+namespace internal {
+using google::WARNING;
+}  // namespace internal
+}  // namespace ceres
+
+namespace testing {
+
+// A ScopedMockLog object intercepts LOG() messages issued during its
+// lifespan.  Using this together with Google C++ Mocking Framework,
+// it's very easy to test how a piece of code calls LOG().  The
+// typical usage:
+//
+//   TEST(FooTest, LogsCorrectly) {
+//     ScopedMockLog log;
+//
+//     // We expect the WARNING "Something bad!" exactly twice.
+//     EXPECT_CALL(log, Log(WARNING, _, "Something bad!"))
+//         .Times(2);
+//
+//     // We allow foo.cc to call LOG(INFO) any number of times.
+//     EXPECT_CALL(log, Log(INFO, HasSubstr("/foo.cc"), _))
+//         .Times(AnyNumber());
+//
+//     Foo();  // Exercises the code under test.
+//   }
+class ScopedMockLog : public google::LogSink {
+ public:
+  // When a ScopedMockLog object is constructed, it starts to
+  // intercept logs.
+  ScopedMockLog() { AddLogSink(this); }
+
+  // When the object is destructed, it stops intercepting logs.
+  virtual ~ScopedMockLog() { RemoveLogSink(this); }
+
+  // Implements the mock method:
+  //
+  //   void Log(LogSeverity severity, const string& file_path,
+  //            const string& message);
+  //
+  // The second argument to Send() is the full path of the source file
+  // in which the LOG() was issued.
+  //
+  // Note, that in a multi-threaded environment, all LOG() messages from a
+  // single thread will be handled in sequence, but that cannot be guaranteed
+  // for messages from different threads. In fact, if the same or multiple
+  // expectations are matched on two threads concurrently, their actions will
+  // be executed concurrently as well and may interleave.
+  MOCK_METHOD3(Log, void(google::LogSeverity severity,
+                         const std::string& file_path,
+                         const std::string& message));
+
+ private:
+  // Implements the send() virtual function in class LogSink.
+  // Whenever a LOG() statement is executed, this function will be
+  // invoked with information presented in the LOG().
+  //
+  // The method argument list is long and carries much information a
+  // test usually doesn't care about, so we trim the list before
+  // forwarding the call to Log(), which is much easier to use in
+  // tests.
+  //
+  // We still cannot call Log() directly, as it may invoke other LOG()
+  // messages, either due to Invoke, or due to an error logged in
+  // Google C++ Mocking Framework code, which would trigger a deadlock
+  // since a lock is held during send().
+  //
+  // Hence, we save the message for WaitTillSent() which will be called after
+  // the lock on send() is released, and we'll call Log() inside
+  // WaitTillSent(). Since while a single send() call may be running at a
+  // time, multiple WaitTillSent() calls (along with the one send() call) may
+  // be running simultaneously, we ensure thread-safety of the exchange between
+  // send() and WaitTillSent(), and that for each message, LOG(), send(),
+  // WaitTillSent() and Log() are executed in the same thread.
+  virtual void send(google::LogSeverity severity,
+                    const char* full_filename,
+                    const char* base_filename, int line, const tm* tm_time,
+                    const char* message, size_t message_len) {
+    // We are only interested in the log severity, full file name, and
+    // log message.
+    message_info_.severity = severity;
+    message_info_.file_path = full_filename;
+    message_info_.message = std::string(message, message_len);
+  }
+
+  // Implements the WaitTillSent() virtual function in class LogSink.
+  // It will be executed after send() and after the global logging lock is
+  // released, so calls within it (or rather within the Log() method called
+  // within) may also issue LOG() statements.
+  //
+  // LOG(), send(), WaitTillSent() and Log() will occur in the same thread for
+  // a given log message.
+  virtual void WaitTillSent() {
+    // First, and very importantly, we save a copy of the message being
+    // processed before calling Log(), since Log() may indirectly call send()
+    // and WaitTillSent() in the same thread again.
+    MessageInfo message_info = message_info_;
+    Log(message_info.severity, message_info.file_path, message_info.message);
+  }
+
+  // All relevant information about a logged message that needs to be passed
+  // from send() to WaitTillSent().
+  struct MessageInfo {
+    google::LogSeverity severity;
+    std::string file_path;
+    std::string message;
+  };
+  MessageInfo message_info_;
+};
+
+}  // namespace testing
+
+#endif  // GOOGLE_CERES_INTERNAL_MOCK_LOG_H_
diff --git a/internal/ceres/mutex.h b/internal/ceres/mutex.h
new file mode 100644
index 0000000..6514b10
--- /dev/null
+++ b/internal/ceres/mutex.h
@@ -0,0 +1,312 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: Craig Silverstein.
+//
+// A simple mutex wrapper, supporting locks and read-write locks.
+// You should assume the locks are *not* re-entrant.
+//
+// This class is meant to be internal-only and should be wrapped by an
+// internal namespace.  Before you use this module, please give the
+// name of your internal namespace for this module.  Or, if you want
+// to expose it, you'll want to move it to the Google namespace.  We
+// cannot put this class in global namespace because there can be some
+// problems when we have multiple versions of Mutex in each shared object.
+//
+// NOTE: by default, we have #ifdef'ed out the TryLock() method.
+//       This is for two reasons:
+// 1) TryLock() under Windows is a bit annoying (it requires a
+//    #define to be defined very early).
+// 2) TryLock() is broken for NO_THREADS mode, at least in NDEBUG
+//    mode.
+// If you need TryLock(), and either these two caveats are not a
+// problem for you, or you're willing to work around them, then
+// feel free to #define GMUTEX_TRYLOCK, or to remove the #ifdefs
+// in the code below.
+//
+// CYGWIN NOTE: Cygwin support for rwlock seems to be buggy:
+//    http://www.cygwin.com/ml/cygwin/2008-12/msg00017.html
+// Because of that, we might as well use windows locks for
+// cygwin.  They seem to be more reliable than the cygwin pthreads layer.
+//
+// TRICKY IMPLEMENTATION NOTE:
+// This class is designed to be safe to use during
+// dynamic-initialization -- that is, by global constructors that are
+// run before main() starts.  The issue in this case is that
+// dynamic-initialization happens in an unpredictable order, and it
+// could be that someone else's dynamic initializer could call a
+// function that tries to acquire this mutex -- but that all happens
+// before this mutex's constructor has run.  (This can happen even if
+// the mutex and the function that uses the mutex are in the same .cc
+// file.)  Basically, because Mutex does non-trivial work in its
+// constructor, it's not, in the naive implementation, safe to use
+// before dynamic initialization has run on it.
+//
+// The solution used here is to pair the actual mutex primitive with a
+// bool that is set to true when the mutex is dynamically initialized.
+// (Before that it's false.)  Then we modify all mutex routines to
+// look at the bool, and not try to lock/unlock until the bool makes
+// it to true (which happens after the Mutex constructor has run.)
+//
+// This works because before main() starts -- particularly, during
+// dynamic initialization -- there are no threads, so a) it's ok that
+// the mutex operations are a no-op, since we don't need locking then
+// anyway; and b) we can be quite confident our bool won't change
+// state between a call to Lock() and a call to Unlock() (that would
+// require a global constructor in one translation unit to call Lock()
+// and another global constructor in another translation unit to call
+// Unlock() later, which is pretty perverse).
+//
+// That said, it's tricky, and can conceivably fail; it's safest to
+// avoid trying to acquire a mutex in a global constructor, if you
+// can.  One way it can fail is that a really smart compiler might
+// initialize the bool to true at static-initialization time (too
+// early) rather than at dynamic-initialization time.  To discourage
+// that, we set is_safe_ to true in code (not the constructor
+// colon-initializer) and set it to true via a function that always
+// evaluates to true, but that the compiler can't know always
+// evaluates to true.  This should be good enough.
+
+#ifndef CERES_INTERNAL_MUTEX_H_
+#define CERES_INTERNAL_MUTEX_H_
+
+#if defined(NO_THREADS)
+  typedef int MutexType;      // to keep a lock-count
+#elif defined(_WIN32) || defined(__CYGWIN32__) || defined(__CYGWIN64__)
+# define WIN32_LEAN_AND_MEAN  // We only need minimal includes
+# ifdef GMUTEX_TRYLOCK
+  // We need Windows NT or later for TryEnterCriticalSection().  If you
+  // don't need that functionality, you can remove these _WIN32_WINNT
+  // lines, and change TryLock() to assert(0) or something.
+#   ifndef _WIN32_WINNT
+#     define _WIN32_WINNT 0x0400
+#   endif
+# endif
+// To avoid macro definition of ERROR.
+# define NOGDI
+// To avoid macro definition of min/max.
+# define NOMINMAX
+# include <windows.h>
+  typedef CRITICAL_SECTION MutexType;
+#elif defined(CERES_HAVE_PTHREAD) && defined(CERES_HAVE_RWLOCK)
+  // Needed for pthread_rwlock_*.  If it causes problems, you could take it
+  // out, but then you'd have to unset CERES_HAVE_RWLOCK (at least on linux --
+  // it *does* cause problems for FreeBSD, or MacOSX, but isn't needed for
+  // locking there.)
+# if defined(__linux__) && !defined(_XOPEN_SOURCE)
+#   define _XOPEN_SOURCE 500  // may be needed to get the rwlock calls
+# endif
+# include <pthread.h>
+  typedef pthread_rwlock_t MutexType;
+#elif defined(CERES_HAVE_PTHREAD)
+# include <pthread.h>
+  typedef pthread_mutex_t MutexType;
+#else
+# error Need to implement mutex.h for your architecture, or #define NO_THREADS
+#endif
+
+// We need to include these header files after defining _XOPEN_SOURCE
+// as they may define the _XOPEN_SOURCE macro.
+#include <assert.h>
+#include <stdlib.h>      // for abort()
+
+namespace ceres {
+namespace internal {
+
+class Mutex {
+ public:
+  // Create a Mutex that is not held by anybody.  This constructor is
+  // typically used for Mutexes allocated on the heap or the stack.
+  // See below for a recommendation for constructing global Mutex
+  // objects.
+  inline Mutex();
+
+  // Destructor
+  inline ~Mutex();
+
+  inline void Lock();    // Block if needed until free then acquire exclusively
+  inline void Unlock();  // Release a lock acquired via Lock()
+#ifdef GMUTEX_TRYLOCK
+  inline bool TryLock(); // If free, Lock() and return true, else return false
+#endif
+  // Note that on systems that don't support read-write locks, these may
+  // be implemented as synonyms to Lock() and Unlock().  So you can use
+  // these for efficiency, but don't use them anyplace where being able
+  // to do shared reads is necessary to avoid deadlock.
+  inline void ReaderLock();   // Block until free or shared then acquire a share
+  inline void ReaderUnlock(); // Release a read share of this Mutex
+  inline void WriterLock() { Lock(); }     // Acquire an exclusive lock
+  inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
+
+  // TODO(hamaji): Do nothing, implement correctly.
+  inline void AssertHeld() {}
+
+ private:
+  MutexType mutex_;
+  // We want to make sure that the compiler sets is_safe_ to true only
+  // when we tell it to, and never makes assumptions is_safe_ is
+  // always true.  volatile is the most reliable way to do that.
+  volatile bool is_safe_;
+
+  inline void SetIsSafe() { is_safe_ = true; }
+
+  // Catch the error of writing Mutex when intending MutexLock.
+  Mutex(Mutex* /*ignored*/) {}
+  // Disallow "evil" constructors
+  Mutex(const Mutex&);
+  void operator=(const Mutex&);
+};
+
+// Now the implementation of Mutex for various systems
+#if defined(NO_THREADS)
+
+// When we don't have threads, we can be either reading or writing,
+// but not both.  We can have lots of readers at once (in no-threads
+// mode, that's most likely to happen in recursive function calls),
+// but only one writer.  We represent this by having mutex_ be -1 when
+// writing and a number > 0 when reading (and 0 when no lock is held).
+//
+// In debug mode, we assert these invariants, while in non-debug mode
+// we do nothing, for efficiency.  That's why everything is in an
+// assert.
+
+Mutex::Mutex() : mutex_(0) { }
+Mutex::~Mutex()            { assert(mutex_ == 0); }
+void Mutex::Lock()         { assert(--mutex_ == -1); }
+void Mutex::Unlock()       { assert(mutex_++ == -1); }
+#ifdef GMUTEX_TRYLOCK
+bool Mutex::TryLock()      { if (mutex_) return false; Lock(); return true; }
+#endif
+void Mutex::ReaderLock()   { assert(++mutex_ > 0); }
+void Mutex::ReaderUnlock() { assert(mutex_-- > 0); }
+
+#elif defined(_WIN32) || defined(__CYGWIN32__) || defined(__CYGWIN64__)
+
+Mutex::Mutex()             { InitializeCriticalSection(&mutex_); SetIsSafe(); }
+Mutex::~Mutex()            { DeleteCriticalSection(&mutex_); }
+void Mutex::Lock()         { if (is_safe_) EnterCriticalSection(&mutex_); }
+void Mutex::Unlock()       { if (is_safe_) LeaveCriticalSection(&mutex_); }
+#ifdef GMUTEX_TRYLOCK
+bool Mutex::TryLock()      { return is_safe_ ?
+                                 TryEnterCriticalSection(&mutex_) != 0 : true; }
+#endif
+void Mutex::ReaderLock()   { Lock(); }      // we don't have read-write locks
+void Mutex::ReaderUnlock() { Unlock(); }
+
+#elif defined(CERES_HAVE_PTHREAD) && defined(CERES_HAVE_RWLOCK)
+
+#define SAFE_PTHREAD(fncall)  do {   /* run fncall if is_safe_ is true */  \
+  if (is_safe_ && fncall(&mutex_) != 0) abort();                           \
+} while (0)
+
+Mutex::Mutex() {
+  SetIsSafe();
+  if (is_safe_ && pthread_rwlock_init(&mutex_, NULL) != 0) abort();
+}
+Mutex::~Mutex()            { SAFE_PTHREAD(pthread_rwlock_destroy); }
+void Mutex::Lock()         { SAFE_PTHREAD(pthread_rwlock_wrlock); }
+void Mutex::Unlock()       { SAFE_PTHREAD(pthread_rwlock_unlock); }
+#ifdef GMUTEX_TRYLOCK
+bool Mutex::TryLock()      { return is_safe_ ?
+                                    pthread_rwlock_trywrlock(&mutex_) == 0 :
+                                    true; }
+#endif
+void Mutex::ReaderLock()   { SAFE_PTHREAD(pthread_rwlock_rdlock); }
+void Mutex::ReaderUnlock() { SAFE_PTHREAD(pthread_rwlock_unlock); }
+#undef SAFE_PTHREAD
+
+#elif defined(CERES_HAVE_PTHREAD)
+
+#define SAFE_PTHREAD(fncall)  do {   /* run fncall if is_safe_ is true */  \
+  if (is_safe_ && fncall(&mutex_) != 0) abort();                           \
+} while (0)
+
+Mutex::Mutex()             {
+  SetIsSafe();
+  if (is_safe_ && pthread_mutex_init(&mutex_, NULL) != 0) abort();
+}
+Mutex::~Mutex()            { SAFE_PTHREAD(pthread_mutex_destroy); }
+void Mutex::Lock()         { SAFE_PTHREAD(pthread_mutex_lock); }
+void Mutex::Unlock()       { SAFE_PTHREAD(pthread_mutex_unlock); }
+#ifdef GMUTEX_TRYLOCK
+bool Mutex::TryLock()      { return is_safe_ ?
+                                 pthread_mutex_trylock(&mutex_) == 0 : true; }
+#endif
+void Mutex::ReaderLock()   { Lock(); }
+void Mutex::ReaderUnlock() { Unlock(); }
+#undef SAFE_PTHREAD
+
+#endif
+
+// --------------------------------------------------------------------------
+// Some helper classes
+
+// MutexLock(mu) acquires mu when constructed and releases it when destroyed.
+class MutexLock {
+ public:
+  explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
+  ~MutexLock() { mu_->Unlock(); }
+ private:
+  Mutex * const mu_;
+  // Disallow "evil" constructors
+  MutexLock(const MutexLock&);
+  void operator=(const MutexLock&);
+};
+
+// ReaderMutexLock and WriterMutexLock do the same, for rwlocks
+class ReaderMutexLock {
+ public:
+  explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
+  ~ReaderMutexLock() { mu_->ReaderUnlock(); }
+ private:
+  Mutex * const mu_;
+  // Disallow "evil" constructors
+  ReaderMutexLock(const ReaderMutexLock&);
+  void operator=(const ReaderMutexLock&);
+};
+
+class WriterMutexLock {
+ public:
+  explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
+  ~WriterMutexLock() { mu_->WriterUnlock(); }
+ private:
+  Mutex * const mu_;
+  // Disallow "evil" constructors
+  WriterMutexLock(const WriterMutexLock&);
+  void operator=(const WriterMutexLock&);
+};
+
+// Catch bug where variable name is omitted, e.g. MutexLock (&mu);
+#define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name)
+#define ReaderMutexLock(x) COMPILE_ASSERT(0, rmutex_lock_decl_missing_var_name)
+#define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_MUTEX_H_
diff --git a/internal/ceres/normal_prior.cc b/internal/ceres/normal_prior.cc
new file mode 100644
index 0000000..f30bbc8
--- /dev/null
+++ b/internal/ceres/normal_prior.cc
@@ -0,0 +1,67 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/normal_prior.h"
+
+#include <cstddef>
+#include <vector>
+
+#include <glog/logging.h>
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+NormalPrior::NormalPrior(const Matrix& A, const Vector& b)
+    : A_(A), b_(b) {
+  CHECK_GT(b_.rows(), 0);
+  CHECK_GT(A_.rows(), 0);
+  CHECK_EQ(b_.rows(), A.cols());
+  set_num_residuals(A_.rows());
+  mutable_parameter_block_sizes()->push_back(b_.rows());
+}
+
+bool NormalPrior::Evaluate(double const* const* parameters,
+                           double* residuals,
+                           double** jacobians) const {
+  ConstVectorRef p(parameters[0], parameter_block_sizes()[0]);
+  VectorRef r(residuals, num_residuals());
+  // The following line should read
+  // r = A_ * (p - b_);
+  // The extra eval is to get around a bug in the eigen library.
+  r = A_ * (p - b_).eval();
+  if ((jacobians != NULL) && (jacobians[0] != NULL)) {
+    MatrixRef(jacobians[0], num_residuals(), parameter_block_sizes()[0]) = A_;
+  }
+  return true;
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/normal_prior_test.cc b/internal/ceres/normal_prior_test.cc
new file mode 100644
index 0000000..67af881
--- /dev/null
+++ b/internal/ceres/normal_prior_test.cc
@@ -0,0 +1,133 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/normal_prior.h"
+
+#include <cstddef>
+
+#include "gtest/gtest.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/random.h"
+
+namespace ceres {
+namespace internal {
+
+void RandomVector(Vector* v) {
+  for (int r = 0; r < v->rows(); ++r)
+    (*v)[r] = 2 * RandDouble() - 1;
+}
+
+void RandomMatrix(Matrix* m) {
+  for (int r = 0; r < m->rows(); ++r) {
+    for (int c = 0; c < m->cols(); ++c) {
+      (*m)(r, c) = 2 * RandDouble() - 1;
+    }
+  }
+}
+
+TEST(NormalPriorTest, ResidualAtRandomPosition) {
+  srand(5);
+
+  for (int num_rows = 1; num_rows < 5; ++num_rows) {
+    for (int num_cols = 1; num_cols < 5; ++num_cols) {
+      Vector b(num_cols);
+      RandomVector(&b);
+
+      Matrix A(num_rows, num_cols);
+      RandomMatrix(&A);
+
+      double * x = new double[num_cols];
+      for (int i = 0; i < num_cols; ++i)
+        x[i] = 2 * RandDouble() - 1;
+
+      double * jacobian = new double[num_rows * num_cols];
+      Vector residuals(num_rows);
+
+      NormalPrior prior(A, b);
+      prior.Evaluate(&x, residuals.data(), &jacobian);
+
+      // Compare the norm of the residual
+      double residual_diff_norm =
+          (residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
+      EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
+
+      // Compare the jacobians
+      MatrixRef J(jacobian, num_rows, num_cols);
+      double jacobian_diff_norm = (J - A).norm();
+      EXPECT_NEAR(jacobian_diff_norm, 0.0, 1e-10);
+
+      delete []x;
+      delete []jacobian;
+    }
+  }
+}
+
+TEST(NormalPriorTest, ResidualAtRandomPositionNullJacobians) {
+  srand(5);
+
+  for (int num_rows = 1; num_rows < 5; ++num_rows) {
+    for (int num_cols = 1; num_cols < 5; ++num_cols) {
+      Vector b(num_cols);
+      RandomVector(&b);
+
+      Matrix A(num_rows, num_cols);
+      RandomMatrix(&A);
+
+      double * x = new double[num_cols];
+      for (int i = 0; i < num_cols; ++i)
+        x[i] = 2 * RandDouble() - 1;
+
+      double* jacobians[1];
+      jacobians[0] = NULL;
+
+      Vector residuals(num_rows);
+
+      NormalPrior prior(A, b);
+      prior.Evaluate(&x, residuals.data(), jacobians);
+
+      // Compare the norm of the residual
+      double residual_diff_norm =
+          (residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
+      EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
+
+      prior.Evaluate(&x, residuals.data(), NULL);
+      // Compare the norm of the residual
+      residual_diff_norm =
+          (residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
+      EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
+
+
+      delete []x;
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/numeric_diff_cost_function_test.cc b/internal/ceres/numeric_diff_cost_function_test.cc
new file mode 100644
index 0000000..a39e160
--- /dev/null
+++ b/internal/ceres/numeric_diff_cost_function_test.cc
@@ -0,0 +1,234 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/numeric_diff_cost_function.h"
+
+#include <algorithm>
+#include <cmath>
+#include <string>
+#include <vector>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+#include "ceres/test_util.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+// y1 = x1'x2      -> dy1/dx1 = x2,               dy1/dx2 = x1
+// y2 = (x1'x2)^2  -> dy2/dx1 = 2 * x2 * (x1'x2), dy2/dx2 = 2 * x1 * (x1'x2)
+// y3 = x2'x2      -> dy3/dx1 = 0,                dy3/dx2 = 2 * x2
+class TestCostFunction : public CostFunction {
+ public:
+  TestCostFunction() {
+    set_num_residuals(3);
+    mutable_parameter_block_sizes()->push_back(5);  // x1.
+    mutable_parameter_block_sizes()->push_back(5);  // x2.
+  }
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    (void) jacobians;  // Ignored.
+
+    residuals[0] = residuals[1] = residuals[2] = 0;
+    for (int i = 0; i < 5; ++i) {
+      residuals[0] += parameters[0][i] * parameters[1][i];
+      residuals[2] += parameters[1][i] * parameters[1][i];
+    }
+    residuals[1] = residuals[0] * residuals[0];
+    return true;
+  }
+};
+
+TEST(NumericDiffCostFunction, EasyCase) {
+  // Try both central and forward difference.
+  internal::scoped_ptr<CostFunction> cfs[2];
+  cfs[0].reset(
+      new NumericDiffCostFunction<TestCostFunction,
+                                  CENTRAL,
+                                  3,  /* number of residuals */
+                                  5,  /* size of x1 */
+                                  5   /* size of x2 */>(
+          new TestCostFunction, TAKE_OWNERSHIP));
+
+  cfs[1].reset(
+      new NumericDiffCostFunction<TestCostFunction,
+                                  FORWARD,
+                                  3,  /* number of residuals */
+                                  5,  /* size of x1 */
+                                  5   /* size of x2 */>(
+          new TestCostFunction, TAKE_OWNERSHIP));
+
+  for (int c = 0; c < 2; ++c) {
+    CostFunction *cost_function = cfs[c].get();
+
+    double x1[] = { 1.0, 2.0, 3.0, 4.0, 5.0 };
+    double x2[] = { 9.0, 9.0, 5.0, 5.0, 1.0 };
+    double *parameters[] = { &x1[0], &x2[0] };
+
+    double dydx1[15];  // 3 x 5, row major.
+    double dydx2[15];  // 3 x 5, row major.
+    double *jacobians[2] = { &dydx1[0], &dydx2[0] };
+
+    double residuals[3] = {-1e-100, -2e-100, -3e-100 };
+
+    ASSERT_TRUE(cost_function->Evaluate(&parameters[0],
+                                        &residuals[0],
+                                        &jacobians[0]));
+
+    EXPECT_EQ(residuals[0], 67);
+    EXPECT_EQ(residuals[1], 4489);
+    EXPECT_EQ(residuals[2], 213);
+
+    for (int i = 0; i < 5; ++i) {
+      LOG(INFO) << "c = " << c << " i = " << i;
+      const double kEps = c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5;
+
+      ExpectClose(x2[i],                    dydx1[5 * 0 + i], kEps);  // y1
+      ExpectClose(x1[i],                    dydx2[5 * 0 + i], kEps);
+      ExpectClose(2 * x2[i] * residuals[0], dydx1[5 * 1 + i], kEps);  // y2
+      ExpectClose(2 * x1[i] * residuals[0], dydx2[5 * 1 + i], kEps);
+      ExpectClose(0.0,                      dydx1[5 * 2 + i], kEps);  // y3
+      ExpectClose(2 * x2[i],                dydx2[5 * 2 + i], kEps);
+    }
+  }
+}
+
+// y1 = sin(x1'x2)
+// y2 = exp(-x1'x2 / 10)
+//
+// dy1/dx1 =  x2 * cos(x1'x2),            dy1/dx2 =  x1 * cos(x1'x2)
+// dy2/dx1 = -x2 * exp(-x1'x2 / 10) / 10, dy2/dx2 = -x2 * exp(-x1'x2 / 10) / 10
+class TranscendentalTestCostFunction : public CostFunction {
+ public:
+  TranscendentalTestCostFunction() {
+    set_num_residuals(2);
+    mutable_parameter_block_sizes()->push_back(5);  // x1.
+    mutable_parameter_block_sizes()->push_back(5);  // x2.
+  }
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    (void) jacobians;  // Ignored.
+
+    double x1x2 = 0;
+    for (int i = 0; i < 5; ++i) {
+      x1x2 += parameters[0][i] * parameters[1][i];
+    }
+    residuals[0] = sin(x1x2);
+    residuals[1] = exp(-x1x2 / 10);
+    return true;
+  }
+};
+
+TEST(NumericDiffCostFunction, TransendentalOperationsInCostFunction) {
+  // Try both central and forward difference.
+  internal::scoped_ptr<CostFunction> cfs[2];
+  cfs[0].reset(
+      new NumericDiffCostFunction<TranscendentalTestCostFunction,
+                                  CENTRAL,
+                                  2,  /* number of residuals */
+                                  5,  /* size of x1 */
+                                  5   /* size of x2 */>(
+          new TranscendentalTestCostFunction, TAKE_OWNERSHIP));
+
+  cfs[1].reset(
+      new NumericDiffCostFunction<TranscendentalTestCostFunction,
+                                  FORWARD,
+                                  2,  /* number of residuals */
+                                  5,  /* size of x1 */
+                                  5   /* size of x2 */>(
+          new TranscendentalTestCostFunction, TAKE_OWNERSHIP));
+
+  for (int c = 0; c < 2; ++c) {
+    CostFunction *cost_function = cfs[c].get();
+
+    struct {
+      double x1[5];
+      double x2[5];
+    } kTests[] = {
+      { { 1.0, 2.0, 3.0, 4.0, 5.0 },  // No zeros.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 0.0, 2.0, 3.0, 0.0, 5.0 },  // Some zeros x1.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 1.0, 2.0, 3.0, 1.0, 5.0 },  // Some zeros x2.
+        { 0.0, 9.0, 0.0, 5.0, 0.0 },
+      },
+      { { 0.0, 0.0, 0.0, 0.0, 0.0 },  // All zeros x1.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 1.0, 2.0, 3.0, 4.0, 5.0 },  // All zeros x2.
+        { 0.0, 0.0, 0.0, 0.0, 0.0 },
+      },
+      { { 0.0, 0.0, 0.0, 0.0, 0.0 },  // All zeros.
+        { 0.0, 0.0, 0.0, 0.0, 0.0 },
+      },
+    };
+    for (int k = 0; k < ARRAYSIZE(kTests); ++k) {
+      double *x1 = &(kTests[k].x1[0]);
+      double *x2 = &(kTests[k].x2[0]);
+      double *parameters[] = { x1, x2 };
+
+      double dydx1[10];
+      double dydx2[10];
+      double *jacobians[2] = { &dydx1[0], &dydx2[0] };
+
+      double residuals[2];
+
+      ASSERT_TRUE(cost_function->Evaluate(&parameters[0],
+                                          &residuals[0],
+                                          &jacobians[0]));
+      LOG(INFO) << "Ran evaluate for test k=" << k << " c=" << c;
+
+      double x1x2 = 0;
+      for (int i = 0; i < 5; ++i) {
+        x1x2 += x1[i] * x2[i];
+      }
+
+      for (int i = 0; i < 5; ++i) {
+        const double kEps = c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5;
+
+        ExpectClose( x2[i] * cos(x1x2),              dydx1[5 * 0 + i], kEps);
+        ExpectClose( x1[i] * cos(x1x2),              dydx2[5 * 0 + i], kEps);
+        ExpectClose(-x2[i] * exp(-x1x2 / 10.) / 10., dydx1[5 * 1 + i], kEps);
+        ExpectClose(-x1[i] * exp(-x1x2 / 10.) / 10., dydx2[5 * 1 + i], kEps);
+      }
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/parameter_block.h b/internal/ceres/parameter_block.h
new file mode 100644
index 0000000..4bac1a8
--- /dev/null
+++ b/internal/ceres/parameter_block.h
@@ -0,0 +1,256 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_PARAMETER_BLOCK_H_
+#define CERES_INTERNAL_PARAMETER_BLOCK_H_
+
+#include <cstdlib>
+#include "ceres/integral_types.h"
+#include <glog/logging.h>
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/residual_block_utils.h"
+
+namespace ceres {
+namespace internal {
+
+class ProblemImpl;
+
+// The parameter block encodes the location of the user's original value, and
+// also the "current state" of the parameter. The evaluator uses whatever is in
+// the current state of the parameter when evaluating. This is inlined since the
+// methods are performance sensitive.
+//
+// The class is not thread-safe, unless only const methods are called. The
+// parameter block may also hold a pointer to a local parameterization; the
+// parameter block does not take ownership of this pointer, so the user is
+// responsible for the proper disposal of the local parameterization.
+class ParameterBlock {
+ public:
+  ParameterBlock(double* user_state, int size) {
+    Init(user_state, size, NULL);
+  }
+  ParameterBlock(double* user_state,
+                 int size,
+                 LocalParameterization* local_parameterization) {
+    Init(user_state, size, local_parameterization);
+  }
+
+  // The size of the parameter block.
+  int Size() const { return size_; }
+
+  // Manipulate the parameter state.
+  bool SetState(const double* x) {
+    CHECK(x != NULL)
+        << "Tried to set the state of constant parameter "
+        << "with user location " << user_state_;
+    CHECK(!is_constant_)
+        << "Tried to set the state of constant parameter "
+        << "with user location " << user_state_;
+
+    state_ = x;
+    return UpdateLocalParameterizationJacobian();
+  }
+
+  // Copy the current parameter state out to x. This is "GetState()" rather than
+  // simply "state()" since it is actively copying the data into the passed
+  // pointer.
+  void GetState(double *x) const {
+    if (x != state_) {
+      memcpy(x, state_, sizeof(*state_) * size_);
+    }
+  }
+
+  // Direct pointers to the current state.
+  const double* state() const { return state_; }
+  const double* user_state() const { return user_state_; }
+  double* mutable_user_state() { return user_state_; }
+  LocalParameterization* local_parameterization() const {
+    return local_parameterization_;
+  }
+  LocalParameterization* mutable_local_parameterization() {
+    return local_parameterization_;
+  }
+
+  // Set this parameter block to vary or not.
+  void SetConstant() { is_constant_ = true; }
+  void SetVarying() { is_constant_ = false; }
+  bool IsConstant() const { return is_constant_; }
+
+  // This parameter block's index in an array.
+  int index() const { return index_; }
+  void set_index(int index) { index_ = index; }
+
+  // This parameter offset inside a larger state vector.
+  int state_offset() const { return state_offset_; }
+  void set_state_offset(int state_offset) { state_offset_ = state_offset; }
+
+  // This parameter offset inside a larger delta vector.
+  int delta_offset() const { return delta_offset_; }
+  void set_delta_offset(int delta_offset) { delta_offset_ = delta_offset; }
+
+  // Methods relating to the parameter block's parameterization.
+
+  // The local to global jacobian. Returns NULL if there is no local
+  // parameterization for this parameter block. The returned matrix is row-major
+  // and has Size() rows and  LocalSize() columns.
+  const double* LocalParameterizationJacobian() const {
+    return local_parameterization_jacobian_.get();
+  }
+
+  int LocalSize() const {
+    return (local_parameterization_ == NULL)
+        ? size_
+        : local_parameterization_->LocalSize();
+  }
+
+  // Set the parameterization. The parameterization can be set exactly once;
+  // multiple calls to set the parameterization to different values will crash.
+  // It is an error to pass NULL for the parameterization. The parameter block
+  // does not take ownership of the parameterization.
+  void SetParameterization(LocalParameterization* new_parameterization) {
+    CHECK(new_parameterization != NULL) << "NULL parameterization invalid.";
+    CHECK(new_parameterization->GlobalSize() == size_)
+        << "Invalid parameterization for parameter block. The parameter block "
+        << "has size " << size_ << " while the parameterization has a global "
+        << "size of " << new_parameterization->GlobalSize() << ". Did you "
+        << "accidentally use the wrong parameter block or parameterization?";
+    if (new_parameterization != local_parameterization_) {
+      CHECK(local_parameterization_ == NULL)
+          << "Can't re-set the local parameterization; it leads to "
+          << "ambiguous ownership.";
+      local_parameterization_ = new_parameterization;
+      local_parameterization_jacobian_.reset(
+          new double[local_parameterization_->GlobalSize() *
+                     local_parameterization_->LocalSize()]);
+      CHECK(UpdateLocalParameterizationJacobian())
+          "Local parameterization Jacobian computation failed"
+          "for x: " << ConstVectorRef(state_, Size()).transpose();
+    } else {
+      // Ignore the case that the parameterizations match.
+    }
+  }
+
+  // Generalization of the addition operation. This is the same as
+  // LocalParameterization::Plus() but uses the parameter's current state
+  // instead of operating on a passed in pointer.
+  bool Plus(const double *x, const double* delta, double* x_plus_delta) {
+    if (local_parameterization_ == NULL) {
+      VectorRef(x_plus_delta, size_) = ConstVectorRef(x, size_) +
+                                       ConstVectorRef(delta,  size_);
+      return true;
+    }
+    return local_parameterization_->Plus(x, delta, x_plus_delta);
+  }
+
+ private:
+  void Init(double* user_state,
+            int size,
+            LocalParameterization* local_parameterization) {
+    user_state_ = user_state;
+    size_ = size;
+    is_constant_ = false;
+    state_ = user_state_;
+
+    local_parameterization_ = NULL;
+    if (local_parameterization != NULL) {
+      SetParameterization(local_parameterization);
+    }
+
+    index_ = -1;
+    state_offset_ = -1;
+    delta_offset_ = -1;
+  }
+
+  bool UpdateLocalParameterizationJacobian() {
+    if (local_parameterization_ == NULL) {
+      return true;
+    }
+
+    // Update the local to global Jacobian. In some cases this is
+    // wasted effort; if this is a bottleneck, we will find a solution
+    // at that time.
+
+    const int jacobian_size = Size() * LocalSize();
+    InvalidateArray(jacobian_size,
+                    local_parameterization_jacobian_.get());
+    if (!local_parameterization_->ComputeJacobian(
+            state_,
+            local_parameterization_jacobian_.get())) {
+      LOG(WARNING) << "Local parameterization Jacobian computation failed"
+          "for x: " << ConstVectorRef(state_, Size()).transpose();
+      return false;
+    }
+
+    if (!IsArrayValid(jacobian_size, local_parameterization_jacobian_.get())) {
+      LOG(WARNING) << "Local parameterization Jacobian computation returned"
+                   << "an invalid matrix for x: "
+                   << ConstVectorRef(state_, Size()).transpose()
+                   << "\n Jacobian matrix : "
+                   << ConstMatrixRef(local_parameterization_jacobian_.get(),
+                                     Size(),
+                                     LocalSize());
+      return false;
+    }
+    return true;
+  }
+
+  double* user_state_;
+  int size_;
+  bool is_constant_;
+  LocalParameterization* local_parameterization_;
+
+  // The "state" of the parameter. These fields are only needed while the
+  // solver is running. While at first glance using mutable is a bad idea, this
+  // ends up simplifying the internals of Ceres enough to justify the potential
+  // pitfalls of using "mutable."
+  mutable const double* state_;
+  mutable scoped_array<double> local_parameterization_jacobian_;
+
+  // The index of the parameter. This is used by various other parts of Ceres to
+  // permit switching from a ParameterBlock* to an index in another array.
+  int32 index_;
+
+  // The offset of this parameter block inside a larger state vector.
+  int32 state_offset_;
+
+  // The offset of this parameter block inside a larger delta vector.
+  int32 delta_offset_;
+
+  // Necessary so ProblemImpl can clean up the parameterizations.
+  friend class ProblemImpl;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_PARAMETER_BLOCK_H_
diff --git a/internal/ceres/parameter_block_test.cc b/internal/ceres/parameter_block_test.cc
new file mode 100644
index 0000000..98ec4d0
--- /dev/null
+++ b/internal/ceres/parameter_block_test.cc
@@ -0,0 +1,172 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/parameter_block.h"
+
+#include "gtest/gtest.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(ParameterBlock, SetLocalParameterization) {
+  double x[3] = { 1.0, 2.0, 3.0 };
+  ParameterBlock parameter_block(x, 3);
+
+  // The indices to set constant within the parameter block (used later).
+  vector<int> indices;
+  indices.push_back(1);
+
+  // Can't set the parameterization if the sizes don't match.
+  SubsetParameterization subset_wrong_size(4, indices);
+  ASSERT_DEATH(parameter_block.SetParameterization(&subset_wrong_size),
+               "global");
+
+  // Can't set parameterization to NULL from NULL.
+  ASSERT_DEATH(parameter_block.SetParameterization(NULL), "NULL");
+
+  // Now set the parameterization.
+  SubsetParameterization subset(3, indices);
+  parameter_block.SetParameterization(&subset);
+
+  // Re-setting the parameterization to the same value is supported.
+  parameter_block.SetParameterization(&subset);
+
+  // Can't set parameterization to NULL from another parameterization.
+  ASSERT_DEATH(parameter_block.SetParameterization(NULL), "NULL");
+
+  // Can't set the parameterization more than once.
+  SubsetParameterization subset_different(3, indices);
+  ASSERT_DEATH(parameter_block.SetParameterization(&subset_different),
+               "re-set");
+
+  // Ensure the local parameterization jacobian result is correctly computed.
+  ConstMatrixRef local_parameterization_jacobian(
+      parameter_block.LocalParameterizationJacobian(),
+      3,
+      2);
+  ASSERT_EQ(1.0, local_parameterization_jacobian(0, 0));
+  ASSERT_EQ(0.0, local_parameterization_jacobian(0, 1));
+  ASSERT_EQ(0.0, local_parameterization_jacobian(1, 0));
+  ASSERT_EQ(0.0, local_parameterization_jacobian(1, 1));
+  ASSERT_EQ(0.0, local_parameterization_jacobian(2, 0));
+  ASSERT_EQ(1.0, local_parameterization_jacobian(2, 1));
+
+  // Check that updating works as expected.
+  double x_plus_delta[3];
+  double delta[2] = { 0.5, 0.3 };
+  parameter_block.Plus(x, delta, x_plus_delta);
+  ASSERT_EQ(1.5, x_plus_delta[0]);
+  ASSERT_EQ(2.0, x_plus_delta[1]);
+  ASSERT_EQ(3.3, x_plus_delta[2]);
+}
+
+struct TestParameterization : public LocalParameterization {
+ public:
+  virtual ~TestParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const {
+    LOG(FATAL) << "Shouldn't get called.";
+    return true;
+  }
+  virtual bool ComputeJacobian(const double* x,
+                               double* jacobian) const {
+    jacobian[0] = *x * 2;
+    return true;
+  }
+
+  virtual int GlobalSize() const { return 1; }
+  virtual int LocalSize() const { return 1; }
+};
+
+TEST(ParameterBlock, SetStateUpdatesLocalParameterizationJacobian) {
+  TestParameterization test_parameterization;
+  double x[1] = { 1.0 };
+  ParameterBlock parameter_block(x, 1, &test_parameterization);
+
+  EXPECT_EQ(2.0, *parameter_block.LocalParameterizationJacobian());
+
+  x[0] = 5.5;
+  parameter_block.SetState(x);
+  EXPECT_EQ(11.0, *parameter_block.LocalParameterizationJacobian());
+}
+
+TEST(ParameterBlock, PlusWithNoLocalParameterization) {
+  double x[2] = { 1.0, 2.0 };
+  ParameterBlock parameter_block(x, 2);
+
+  double delta[2] = { 0.2, 0.3 };
+  double x_plus_delta[2];
+  parameter_block.Plus(x, delta, x_plus_delta);
+  EXPECT_EQ(1.2, x_plus_delta[0]);
+  EXPECT_EQ(2.3, x_plus_delta[1]);
+}
+
+// Stops computing the jacobian after the first time.
+class BadLocalParameterization : public LocalParameterization {
+ public:
+  BadLocalParameterization()
+      : calls_(0) {
+  }
+
+  virtual ~BadLocalParameterization() {}
+  virtual bool Plus(const double* x,
+                    const double* delta,
+                    double* x_plus_delta) const {
+    *x_plus_delta = *x + *delta;
+    return true;
+  }
+
+  virtual bool ComputeJacobian(const double* x, double* jacobian) const {
+    if (calls_ == 0) {
+      jacobian[0] = 0;
+    }
+    ++calls_;
+    return true;
+  }
+
+  virtual int GlobalSize() const { return 1;}
+  virtual int LocalSize()  const { return 1;}
+
+ private:
+  mutable int calls_;
+};
+
+TEST(ParameterBlock, DetectBadLocalParameterization) {
+  double x = 1;
+  BadLocalParameterization bad_parameterization;
+  ParameterBlock parameter_block(&x, 1, &bad_parameterization);
+  double y = 2;
+  EXPECT_FALSE(parameter_block.SetState(&y));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/partitioned_matrix_view.cc b/internal/ceres/partitioned_matrix_view.cc
new file mode 100644
index 0000000..ae16f03
--- /dev/null
+++ b/internal/ceres/partitioned_matrix_view.cc
@@ -0,0 +1,314 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 10
+
+#include "ceres/partitioned_matrix_view.h"
+
+#include <algorithm>
+#include <cstring>
+#include <vector>
+#include <glog/logging.h>
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+PartitionedMatrixView::PartitionedMatrixView(
+    const BlockSparseMatrixBase& matrix,
+    int num_col_blocks_a)
+    : matrix_(matrix),
+      num_col_blocks_e_(num_col_blocks_a) {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+  CHECK_NOTNULL(bs);
+
+  num_col_blocks_f_ = bs->cols.size() - num_col_blocks_a;
+
+  // Compute the number of row blocks in E. The number of row blocks
+  // in E maybe less than the number of row blocks in the input matrix
+  // as some of the row blocks at the bottom may not have any
+  // e_blocks. For a definition of what an e_block is, please see
+  // explicit_schur_complement_solver.h
+  num_row_blocks_e_ = 0;
+  for (int r = 0; r < bs->rows.size(); ++r) {
+    const vector<Cell>& cells = bs->rows[r].cells;
+    if (cells[0].block_id < num_col_blocks_a) {
+      ++num_row_blocks_e_;
+    }
+  }
+
+  // Compute the number of columns in E and F.
+  num_cols_e_ = 0;
+  num_cols_f_ = 0;
+
+  for (int c = 0; c < bs->cols.size(); ++c) {
+    const Block& block = bs->cols[c];
+    if (c < num_col_blocks_a) {
+      num_cols_e_ += block.size;
+    } else {
+      num_cols_f_ += block.size;
+    }
+  }
+
+  CHECK_EQ(num_cols_e_ + num_cols_f_, matrix_.num_cols());
+}
+
+PartitionedMatrixView::~PartitionedMatrixView() {
+}
+
+// The next four methods don't seem to be particularly cache
+// friendly. This is an artifact of how the BlockStructure of the
+// input matrix is constructed. These methods will benefit from
+// multithreading as well as improved data layout.
+
+void PartitionedMatrixView::RightMultiplyE(const double* x, double* y) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+
+  // Iterate over the first num_row_blocks_e_ row blocks, and multiply
+  // by the first cell in each row block.
+  for (int r = 0; r < num_row_blocks_e_; ++r) {
+    const double* row_values = matrix_.RowBlockValues(r);
+    const Cell& cell = bs->rows[r].cells[0];
+    const int row_block_pos = bs->rows[r].block.position;
+    const int row_block_size = bs->rows[r].block.size;
+    const int col_block_id = cell.block_id;
+    const int col_block_pos = bs->cols[col_block_id].position;
+    const int col_block_size = bs->cols[col_block_id].size;
+
+    ConstVectorRef xref(x + col_block_pos, col_block_size);
+    VectorRef yref(y + row_block_pos, row_block_size);
+    ConstMatrixRef m(row_values + cell.position,
+                     row_block_size,
+                     col_block_size);
+    yref += m.lazyProduct(xref);
+  }
+}
+
+void PartitionedMatrixView::RightMultiplyF(const double* x, double* y) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+
+  // Iterate over row blocks, and if the row block is in E, then
+  // multiply by all the cells except the first one which is of type
+  // E. If the row block is not in E (i.e its in the bottom
+  // num_row_blocks - num_row_blocks_e row blocks), then all the cells
+  // are of type F and multiply by them all.
+  for (int r = 0; r < bs->rows.size(); ++r) {
+    const int row_block_pos = bs->rows[r].block.position;
+    const int row_block_size = bs->rows[r].block.size;
+    VectorRef yref(y + row_block_pos, row_block_size);
+    const vector<Cell>& cells = bs->rows[r].cells;
+    for (int c = (r < num_row_blocks_e_) ? 1 : 0; c < cells.size(); ++c) {
+      const double* row_values = matrix_.RowBlockValues(r);
+      const int col_block_id = cells[c].block_id;
+      const int col_block_pos = bs->cols[col_block_id].position;
+      const int col_block_size = bs->cols[col_block_id].size;
+
+      ConstVectorRef xref(x + col_block_pos - num_cols_e(),
+                          col_block_size);
+      ConstMatrixRef m(row_values + cells[c].position,
+                       row_block_size,
+                       col_block_size);
+      yref += m.lazyProduct(xref);
+    }
+  }
+}
+
+void PartitionedMatrixView::LeftMultiplyE(const double* x, double* y) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+
+  // Iterate over the first num_row_blocks_e_ row blocks, and multiply
+  // by the first cell in each row block.
+  for (int r = 0; r < num_row_blocks_e_; ++r) {
+    const Cell& cell = bs->rows[r].cells[0];
+    const double* row_values = matrix_.RowBlockValues(r);
+    const int row_block_pos = bs->rows[r].block.position;
+    const int row_block_size = bs->rows[r].block.size;
+    const int col_block_id = cell.block_id;
+    const int col_block_pos = bs->cols[col_block_id].position;
+    const int col_block_size = bs->cols[col_block_id].size;
+
+    ConstVectorRef xref(x + row_block_pos, row_block_size);
+    VectorRef yref(y + col_block_pos, col_block_size);
+    ConstMatrixRef m(row_values + cell.position,
+                     row_block_size,
+                     col_block_size);
+    yref += m.transpose().lazyProduct(xref);
+  }
+}
+
+void PartitionedMatrixView::LeftMultiplyF(const double* x, double* y) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+
+  // Iterate over row blocks, and if the row block is in E, then
+  // multiply by all the cells except the first one which is of type
+  // E. If the row block is not in E (i.e its in the bottom
+  // num_row_blocks - num_row_blocks_e row blocks), then all the cells
+  // are of type F and multiply by them all.
+  for (int r = 0; r < bs->rows.size(); ++r) {
+    const int row_block_pos = bs->rows[r].block.position;
+    const int row_block_size = bs->rows[r].block.size;
+    ConstVectorRef xref(x + row_block_pos, row_block_size);
+    const vector<Cell>& cells = bs->rows[r].cells;
+    for (int c = (r < num_row_blocks_e_) ? 1 : 0; c < cells.size(); ++c) {
+      const double* row_values = matrix_.RowBlockValues(r);
+      const int col_block_id = cells[c].block_id;
+      const int col_block_pos = bs->cols[col_block_id].position;
+      const int col_block_size = bs->cols[col_block_id].size;
+
+      VectorRef yref(y + col_block_pos - num_cols_e(), col_block_size);
+      ConstMatrixRef m(row_values + cells[c].position,
+                       row_block_size,
+                       col_block_size);
+      yref += m.transpose().lazyProduct(xref);
+    }
+  }
+}
+
+// Given a range of columns blocks of a matrix m, compute the block
+// structure of the block diagonal of the matrix m(:,
+// start_col_block:end_col_block)'m(:, start_col_block:end_col_block)
+// and return a BlockSparseMatrix with the this block structure. The
+// caller owns the result.
+BlockSparseMatrix* PartitionedMatrixView::CreateBlockDiagonalMatrixLayout(
+    int start_col_block, int end_col_block) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+  CompressedRowBlockStructure* block_diagonal_structure =
+      new CompressedRowBlockStructure;
+
+  int block_position = 0;
+  int diagonal_cell_position = 0;
+
+  // Iterate over the column blocks, creating a new diagonal block for
+  // each column block.
+  for (int c = start_col_block; c < end_col_block; ++c) {
+    const Block& block = bs->cols[c];
+    block_diagonal_structure->cols.push_back(Block());
+    Block& diagonal_block = block_diagonal_structure->cols.back();
+    diagonal_block.size = block.size;
+    diagonal_block.position = block_position;
+
+    block_diagonal_structure->rows.push_back(CompressedRow());
+    CompressedRow& row = block_diagonal_structure->rows.back();
+    row.block = diagonal_block;
+
+    row.cells.push_back(Cell());
+    Cell& cell = row.cells.back();
+    cell.block_id = c - start_col_block;
+    cell.position = diagonal_cell_position;
+
+    block_position += block.size;
+    diagonal_cell_position += block.size * block.size;
+  }
+
+  // Build a BlockSparseMatrix with the just computed block
+  // structure.
+  return new BlockSparseMatrix(block_diagonal_structure);
+}
+
+BlockSparseMatrix* PartitionedMatrixView::CreateBlockDiagonalEtE() const {
+  BlockSparseMatrix* block_diagonal =
+      CreateBlockDiagonalMatrixLayout(0, num_col_blocks_e_);
+  UpdateBlockDiagonalEtE(block_diagonal);
+  return block_diagonal;
+}
+
+BlockSparseMatrix* PartitionedMatrixView::CreateBlockDiagonalFtF() const {
+  BlockSparseMatrix* block_diagonal =
+      CreateBlockDiagonalMatrixLayout(
+          num_col_blocks_e_, num_col_blocks_e_ + num_col_blocks_f_);
+  UpdateBlockDiagonalFtF(block_diagonal);
+  return block_diagonal;
+}
+
+// Similar to the code in RightMultiplyE, except instead of the matrix
+// vector multiply its an outer product.
+//
+//    block_diagonal = block_diagonal(E'E)
+void PartitionedMatrixView::UpdateBlockDiagonalEtE(
+    BlockSparseMatrix* block_diagonal) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+  const CompressedRowBlockStructure* block_diagonal_structure =
+      block_diagonal->block_structure();
+
+  block_diagonal->SetZero();
+
+  for (int r = 0; r < num_row_blocks_e_ ; ++r) {
+    const double* row_values = matrix_.RowBlockValues(r);
+    const Cell& cell = bs->rows[r].cells[0];
+    const int row_block_size = bs->rows[r].block.size;
+    const int block_id = cell.block_id;
+    const int col_block_size = bs->cols[block_id].size;
+    ConstMatrixRef m(row_values + cell.position,
+                           row_block_size,
+                           col_block_size);
+
+    const int cell_position =
+        block_diagonal_structure->rows[block_id].cells[0].position;
+
+    MatrixRef(block_diagonal->mutable_values() + cell_position,
+              col_block_size, col_block_size).noalias() += m.transpose() * m;
+  }
+}
+
+// Similar to the code in RightMultiplyF, except instead of the matrix
+// vector multiply its an outer product.
+//
+//   block_diagonal = block_diagonal(F'F)
+void PartitionedMatrixView::UpdateBlockDiagonalFtF(
+    BlockSparseMatrix* block_diagonal) const {
+  const CompressedRowBlockStructure* bs = matrix_.block_structure();
+  const CompressedRowBlockStructure* block_diagonal_structure =
+      block_diagonal->block_structure();
+
+  block_diagonal->SetZero();
+  for (int r = 0; r < bs->rows.size(); ++r) {
+    const int row_block_size = bs->rows[r].block.size;
+    const vector<Cell>& cells = bs->rows[r].cells;
+    const double* row_values = matrix_.RowBlockValues(r);
+    for (int c = (r < num_row_blocks_e_) ? 1 : 0; c < cells.size(); ++c) {
+      const int col_block_id = cells[c].block_id;
+      const int col_block_size = bs->cols[col_block_id].size;
+      ConstMatrixRef m(row_values + cells[c].position,
+                       row_block_size,
+                       col_block_size);
+      const int diagonal_block_id = col_block_id - num_col_blocks_e_;
+      const int cell_position =
+          block_diagonal_structure->rows[diagonal_block_id].cells[0].position;
+
+      MatrixRef(block_diagonal->mutable_values() + cell_position,
+                col_block_size, col_block_size).noalias() += m.transpose() * m;
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/partitioned_matrix_view.h b/internal/ceres/partitioned_matrix_view.h
new file mode 100644
index 0000000..cfe4de5
--- /dev/null
+++ b/internal/ceres/partitioned_matrix_view.h
@@ -0,0 +1,121 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// For generalized bi-partite Jacobian matrices that arise in
+// Structure from Motion related problems, it is sometimes useful to
+// have access to the two parts of the matrix as linear operators
+// themselves. This class provides that functionality.
+
+#ifndef CERES_INTERNAL_PARTITIONED_MATRIX_VIEW_H_
+#define CERES_INTERNAL_PARTITIONED_MATRIX_VIEW_H_
+
+#include "ceres/block_sparse_matrix.h"
+
+namespace ceres {
+namespace internal {
+
+// Given generalized bi-partite matrix A = [E F], with the same block
+// structure as required by the Schur complement based solver, found
+// in explicit_schur_complement_solver.h, provide access to the
+// matrices E and F and their outer products E'E and F'F with
+// themselves.
+//
+// Lack of BlockStructure object will result in a crash and if the
+// block structure of the matrix does not satisfy the requirements of
+// the Schur complement solver it will result in unpredictable and
+// wrong output.
+//
+// This class lives in the internal name space as its a utility class
+// to be used by the IterativeSchurComplementSolver class, found in
+// iterative_schur_complement_solver.h, and is not meant for general
+// consumption.
+class PartitionedMatrixView {
+ public:
+  // matrix = [E F], where the matrix E contains the first
+  // num_col_blocks_a column blocks.
+  PartitionedMatrixView(const BlockSparseMatrixBase& matrix,
+                        int num_col_blocks_a);
+  ~PartitionedMatrixView();
+
+  // y += E'x
+  void LeftMultiplyE(const double* x, double* y) const;
+
+  // y += F'x
+  void LeftMultiplyF(const double* x, double* y) const;
+
+  // y += Ex
+  void RightMultiplyE(const double* x, double* y) const;
+
+  // y += Fx
+  void RightMultiplyF(const double* x, double* y) const;
+
+  // Create and return the block diagonal of the matrix E'E.
+  BlockSparseMatrix* CreateBlockDiagonalEtE() const;
+
+  // Create and return the block diagonal of the matrix F'F.
+  BlockSparseMatrix* CreateBlockDiagonalFtF() const;
+
+  // Compute the block diagonal of the matrix E'E and store it in
+  // block_diagonal. The matrix block_diagonal is expected to have a
+  // BlockStructure (preferably created using
+  // CreateBlockDiagonalMatrixEtE) which is has the same structure as
+  // the block diagonal of E'E.
+  void UpdateBlockDiagonalEtE(BlockSparseMatrix* block_diagonal) const;
+
+  // Compute the block diagonal of the matrix F'F and store it in
+  // block_diagonal. The matrix block_diagonal is expected to have a
+  // BlockStructure (preferably created using
+  // CreateBlockDiagonalMatrixFtF) which is has the same structure as
+  // the block diagonal of F'F.
+  void UpdateBlockDiagonalFtF(BlockSparseMatrix* block_diagonal) const;
+
+  int num_col_blocks_e() const { return num_col_blocks_e_;  }
+  int num_col_blocks_f() const { return num_col_blocks_f_;  }
+  int num_cols_e()       const { return num_cols_e_;        }
+  int num_cols_f()       const { return num_cols_f_;        }
+  int num_rows()         const { return matrix_.num_rows(); }
+  int num_cols()         const { return matrix_.num_cols(); }
+
+ private:
+  BlockSparseMatrix* CreateBlockDiagonalMatrixLayout(int start_col_block,
+                                                     int end_col_block) const;
+
+  const BlockSparseMatrixBase& matrix_;
+  int num_row_blocks_e_;
+  int num_col_blocks_e_;
+  int num_col_blocks_f_;
+  int num_cols_e_;
+  int num_cols_f_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_PARTITIONED_MATRIX_VIEW_H_
diff --git a/internal/ceres/partitioned_matrix_view_test.cc b/internal/ceres/partitioned_matrix_view_test.cc
new file mode 100644
index 0000000..386a084
--- /dev/null
+++ b/internal/ceres/partitioned_matrix_view_test.cc
@@ -0,0 +1,191 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/partitioned_matrix_view.h"
+
+#include <vector>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/block_structure.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/random.h"
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+const double kEpsilon = 1e-14;
+
+class PartitionedMatrixViewTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(2));
+    CHECK_NOTNULL(problem.get());
+    A_.reset(problem->A.release());
+
+    num_cols_ = A_->num_cols();
+    num_rows_ = A_->num_rows();
+    num_eliminate_blocks_ = problem->num_eliminate_blocks;
+  }
+
+  int num_rows_;
+  int num_cols_;
+  int num_eliminate_blocks_;
+
+  scoped_ptr<SparseMatrix> A_;
+};
+
+TEST_F(PartitionedMatrixViewTest, DimensionsTest) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+  EXPECT_EQ(m.num_col_blocks_e(), num_eliminate_blocks_);
+  EXPECT_EQ(m.num_col_blocks_f(), num_cols_ - num_eliminate_blocks_);
+  EXPECT_EQ(m.num_cols_e(), num_eliminate_blocks_);
+  EXPECT_EQ(m.num_cols_f(), num_cols_ - num_eliminate_blocks_);
+  EXPECT_EQ(m.num_cols(), A_->num_cols());
+  EXPECT_EQ(m.num_rows(), A_->num_rows());
+}
+
+TEST_F(PartitionedMatrixViewTest, RightMultiplyE) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+
+  srand(5);
+
+  Vector x1(m.num_cols_e());
+  Vector x2(m.num_cols());
+  x2.setZero();
+
+  for (int i = 0; i < m.num_cols_e(); ++i) {
+    x1(i) = x2(i) = RandDouble();
+  }
+
+  Vector y1 = Vector::Zero(m.num_rows());
+  m.RightMultiplyE(x1.data(), y1.data());
+
+  Vector y2 = Vector::Zero(m.num_rows());
+  A_->RightMultiply(x2.data(), y2.data());
+
+  for (int i = 0; i < m.num_rows(); ++i) {
+    EXPECT_NEAR(y1(i), y2(i), kEpsilon);
+  }
+}
+
+TEST_F(PartitionedMatrixViewTest, RightMultiplyF) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+
+  srand(5);
+
+  Vector x1(m.num_cols_f());
+  Vector x2 = Vector::Zero(m.num_cols());
+
+  for (int i = 0; i < m.num_cols_f(); ++i) {
+    x1(i) = RandDouble();
+    x2(i + m.num_cols_e()) = x1(i);
+  }
+
+  Vector y1 = Vector::Zero(m.num_rows());
+  m.RightMultiplyF(x1.data(), y1.data());
+
+  Vector y2 = Vector::Zero(m.num_rows());
+  A_->RightMultiply(x2.data(), y2.data());
+
+  for (int i = 0; i < m.num_rows(); ++i) {
+    EXPECT_NEAR(y1(i), y2(i), kEpsilon);
+  }
+}
+
+TEST_F(PartitionedMatrixViewTest, LeftMultiply) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+
+  srand(5);
+
+  Vector x = Vector::Zero(m.num_rows());
+  for (int i = 0; i < m.num_rows(); ++i) {
+    x(i) = RandDouble();
+  }
+
+  Vector y = Vector::Zero(m.num_cols());
+  Vector y1 = Vector::Zero(m.num_cols_e());
+  Vector y2 = Vector::Zero(m.num_cols_f());
+
+  A_->LeftMultiply(x.data(), y.data());
+  m.LeftMultiplyE(x.data(), y1.data());
+  m.LeftMultiplyF(x.data(), y2.data());
+
+  for (int i = 0; i < m.num_cols(); ++i) {
+    EXPECT_NEAR(y(i),
+                (i < m.num_cols_e()) ? y1(i) : y2(i - m.num_cols_e()),
+                kEpsilon);
+  }
+}
+
+TEST_F(PartitionedMatrixViewTest, BlockDiagonalEtE) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+
+  scoped_ptr<BlockSparseMatrix>
+      block_diagonal_ee(m.CreateBlockDiagonalEtE());
+  const CompressedRowBlockStructure* bs  = block_diagonal_ee->block_structure();
+
+  EXPECT_EQ(block_diagonal_ee->num_rows(), 2);
+  EXPECT_EQ(block_diagonal_ee->num_cols(), 2);
+  EXPECT_EQ(bs->cols.size(), 2);
+  EXPECT_EQ(bs->rows.size(), 2);
+
+  EXPECT_NEAR(block_diagonal_ee->values()[0], 10.0, kEpsilon);
+  EXPECT_NEAR(block_diagonal_ee->values()[1], 155.0, kEpsilon);
+}
+
+TEST_F(PartitionedMatrixViewTest, BlockDiagonalFtF) {
+  PartitionedMatrixView m(*down_cast<BlockSparseMatrix*>(A_.get()),
+                          num_eliminate_blocks_);
+
+  scoped_ptr<BlockSparseMatrix>
+      block_diagonal_ff(m.CreateBlockDiagonalFtF());
+  const CompressedRowBlockStructure* bs  = block_diagonal_ff->block_structure();
+
+  EXPECT_EQ(block_diagonal_ff->num_rows(), 3);
+  EXPECT_EQ(block_diagonal_ff->num_cols(), 3);
+  EXPECT_EQ(bs->cols.size(), 3);
+  EXPECT_EQ(bs->rows.size(), 3);
+  EXPECT_NEAR(block_diagonal_ff->values()[0], 70.0, kEpsilon);
+  EXPECT_NEAR(block_diagonal_ff->values()[1], 17.0, kEpsilon);
+  EXPECT_NEAR(block_diagonal_ff->values()[2], 37.0, kEpsilon);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/problem.cc b/internal/ceres/problem.cc
new file mode 100644
index 0000000..b8c25d9
--- /dev/null
+++ b/internal/ceres/problem.cc
@@ -0,0 +1,149 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+
+#include "ceres/problem.h"
+
+#include <vector>
+#include "ceres/problem_impl.h"
+
+namespace ceres {
+
+class ResidualBlock;
+
+Problem::Problem() : problem_impl_(new internal::ProblemImpl) {}
+Problem::Problem(const Problem::Options& options)
+    : problem_impl_(new internal::ProblemImpl(options)) {}
+Problem::~Problem() {}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    const vector<double*>& parameter_blocks) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         parameter_blocks);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0, x1);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0, x1, x2);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0, x1, x2, x3);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3, double* x4) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0, x1, x2, x3, x4);
+}
+
+ResidualBlockId Problem::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) {
+  return problem_impl_->AddResidualBlock(cost_function,
+                                         loss_function,
+                                         x0, x1, x2, x3, x4, x5);
+}
+
+void Problem::AddParameterBlock(double* values, int size) {
+  problem_impl_->AddParameterBlock(values, size);
+}
+
+void Problem::AddParameterBlock(double* values,
+                                int size,
+                                LocalParameterization* local_parameterization) {
+  problem_impl_->AddParameterBlock(values, size, local_parameterization);
+}
+
+void Problem::SetParameterBlockConstant(double* values) {
+  problem_impl_->SetParameterBlockConstant(values);
+}
+
+void Problem::SetParameterBlockVariable(double* values) {
+  problem_impl_->SetParameterBlockVariable(values);
+}
+
+void Problem::SetParameterization(
+    double* values,
+    LocalParameterization* local_parameterization) {
+  problem_impl_->SetParameterization(values, local_parameterization);
+}
+
+int Problem::NumParameterBlocks() const {
+  return problem_impl_->NumParameterBlocks();
+}
+
+int Problem::NumParameters() const {
+  return problem_impl_->NumParameters();
+}
+
+int Problem::NumResidualBlocks() const {
+  return problem_impl_->NumResidualBlocks();
+}
+
+int Problem::NumResiduals() const {
+  return problem_impl_->NumResiduals();
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/problem_impl.cc b/internal/ceres/problem_impl.cc
new file mode 100644
index 0000000..6824247
--- /dev/null
+++ b/internal/ceres/problem_impl.cc
@@ -0,0 +1,359 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+
+#include "ceres/problem_impl.h"
+
+#include <algorithm>
+#include <cstddef>
+#include <set>
+#include <string>
+#include <utility>
+#include <vector>
+
+#include <glog/logging.h>
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/stl_util.h"
+#include "ceres/map_util.h"
+#include "ceres/stringprintf.h"
+#include "ceres/cost_function.h"
+#include "ceres/loss_function.h"
+
+namespace ceres {
+namespace internal {
+
+typedef map<double*, internal::ParameterBlock*> ParameterMap;
+
+// Returns true if two regions of memory, a and b, with sizes size_a and size_b
+// respectively, overlap.
+static bool RegionsAlias(const double* a, int size_a,
+                         const double* b, int size_b) {
+  return (a < b) ? b < (a + size_a)
+                 : a < (b + size_b);
+}
+
+static void CheckForNoAliasing(double* existing_block,
+                               int existing_block_size,
+                               double* new_block,
+                               int new_block_size) {
+  CHECK(!RegionsAlias(existing_block, existing_block_size,
+                      new_block, new_block_size))
+      << "Aliasing detected between existing parameter block at memory "
+      << "location " << existing_block
+      << " and has size " << existing_block_size << " with new parameter "
+      << "block that has memory adderss " << new_block << " and would have "
+      << "size " << new_block_size << ".";
+}
+
+static ParameterBlock* InternalAddParameterBlock(
+    double* values,
+    int size,
+    ParameterMap* parameter_map,
+    vector<ParameterBlock*>* parameter_blocks) {
+  CHECK(values) << "Null pointer passed to AddParameterBlock for a parameter "
+                << "with size " << size;
+
+  // Ignore the request if there is a block for the given pointer already.
+  ParameterMap::iterator it = parameter_map->find(values);
+  if (it != parameter_map->end()) {
+    int existing_size = it->second->Size();
+    CHECK(size == existing_size)
+        << "Tried adding a parameter block with the same double pointer, "
+        << values << ", twice, but with different block sizes. Original "
+        << "size was " << existing_size << " but new size is "
+        << size;
+    return it->second;
+  }
+  // Before adding the parameter block, also check that it doesn't alias any
+  // other parameter blocks.
+  if (!parameter_map->empty()) {
+    ParameterMap::iterator lb = parameter_map->lower_bound(values);
+
+    // If lb is not the first block, check the previous block for aliasing.
+    if (lb != parameter_map->begin()) {
+      ParameterMap::iterator previous = lb;
+      --previous;
+      CheckForNoAliasing(previous->first,
+                         previous->second->Size(),
+                         values,
+                         size);
+    }
+
+    // If lb is not off the end, check lb for aliasing.
+    if (lb != parameter_map->end()) {
+      CheckForNoAliasing(lb->first,
+                         lb->second->Size(),
+                         values,
+                         size);
+    }
+  }
+  ParameterBlock* new_parameter_block = new ParameterBlock(values, size);
+  (*parameter_map)[values] = new_parameter_block;
+  parameter_blocks->push_back(new_parameter_block);
+  return new_parameter_block;
+}
+
+ProblemImpl::ProblemImpl() : program_(new internal::Program) {}
+ProblemImpl::ProblemImpl(const Problem::Options& options)
+    : options_(options),
+      program_(new internal::Program) {}
+
+ProblemImpl::~ProblemImpl() {
+  // Collect the unique cost/loss functions and delete the residuals.
+  set<CostFunction*> cost_functions;
+  set<LossFunction*> loss_functions;
+  for (int i = 0; i < program_->residual_blocks_.size(); ++i) {
+    ResidualBlock* residual_block = program_->residual_blocks_[i];
+
+    // The const casts here are legit, since ResidualBlock holds these
+    // pointers as const pointers but we have ownership of them and
+    // have the right to destroy them when the destructor is called.
+    if (options_.cost_function_ownership == TAKE_OWNERSHIP) {
+      cost_functions.insert(
+          const_cast<CostFunction*>(residual_block->cost_function()));
+    }
+    if (options_.loss_function_ownership == TAKE_OWNERSHIP) {
+      loss_functions.insert(
+          const_cast<LossFunction*>(residual_block->loss_function()));
+    }
+
+    delete residual_block;
+  }
+
+  // Collect the unique parameterizations and delete the parameters.
+  set<LocalParameterization*> local_parameterizations;
+  for (int i = 0; i < program_->parameter_blocks_.size(); ++i) {
+    ParameterBlock* parameter_block = program_->parameter_blocks_[i];
+
+    if (options_.local_parameterization_ownership == TAKE_OWNERSHIP) {
+      local_parameterizations.insert(parameter_block->local_parameterization_);
+    }
+
+    delete parameter_block;
+  }
+
+  // Delete the owned cost/loss functions and parameterizations.
+  STLDeleteContainerPointers(local_parameterizations.begin(),
+                             local_parameterizations.end());
+  STLDeleteContainerPointers(cost_functions.begin(),
+                             cost_functions.end());
+  STLDeleteContainerPointers(loss_functions.begin(),
+                             loss_functions.end());
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    const vector<double*>& parameter_blocks) {
+  CHECK_NOTNULL(cost_function);
+  CHECK_EQ(parameter_blocks.size(),
+           cost_function->parameter_block_sizes().size());
+
+  // Check the sizes match.
+  const vector<int16>& parameter_block_sizes =
+      cost_function->parameter_block_sizes();
+  CHECK_EQ(parameter_block_sizes.size(), parameter_blocks.size())
+      << "Number of blocks input is different than the number of blocks "
+      << "that the cost function expects.";
+
+  // Check for duplicate parameter blocks.
+  vector<double*> sorted_parameter_blocks(parameter_blocks);
+  sort(sorted_parameter_blocks.begin(), sorted_parameter_blocks.end());
+  vector<double*>::const_iterator duplicate_items =
+      unique(sorted_parameter_blocks.begin(),
+             sorted_parameter_blocks.end());
+  if (duplicate_items != sorted_parameter_blocks.end()) {
+    string blocks;
+    for (int i = 0; i < parameter_blocks.size(); ++i) {
+      blocks += internal::StringPrintf(" %p ", parameter_blocks[i]);
+    }
+
+    LOG(FATAL) << "Duplicate parameter blocks in a residual parameter "
+               << "are not allowed. Parameter block pointers: ["
+               << blocks << "]";
+  }
+
+  // Add parameter blocks and convert the double*'s to parameter blocks.
+  vector<ParameterBlock*> parameter_block_ptrs(parameter_blocks.size());
+  for (int i = 0; i < parameter_blocks.size(); ++i) {
+    parameter_block_ptrs[i] =
+        InternalAddParameterBlock(parameter_blocks[i],
+                                  parameter_block_sizes[i],
+                                  &parameter_block_map_,
+                                  &program_->parameter_blocks_);
+  }
+
+  // Check that the block sizes match the block sizes expected by the
+  // cost_function.
+  for (int i = 0; i < parameter_block_ptrs.size(); ++i) {
+    CHECK_EQ(cost_function->parameter_block_sizes()[i],
+             parameter_block_ptrs[i]->Size())
+        << "The cost function expects parameter block " << i
+        << " of size " << cost_function->parameter_block_sizes()[i]
+        << " but was given a block of size "
+        << parameter_block_ptrs[i]->Size();
+  }
+
+  ResidualBlock* new_residual_block =
+      new ResidualBlock(cost_function,
+                        loss_function,
+                        parameter_block_ptrs);
+  program_->residual_blocks_.push_back(new_residual_block);
+  return new_residual_block;
+}
+
+// Unfortunately, macros don't help much to reduce this code, and var args don't
+// work because of the ambiguous case that there is no loss function.
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  residual_parameters.push_back(x1);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  residual_parameters.push_back(x1);
+  residual_parameters.push_back(x2);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  residual_parameters.push_back(x1);
+  residual_parameters.push_back(x2);
+  residual_parameters.push_back(x3);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3, double* x4) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  residual_parameters.push_back(x1);
+  residual_parameters.push_back(x2);
+  residual_parameters.push_back(x3);
+  residual_parameters.push_back(x4);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+const ResidualBlock* ProblemImpl::AddResidualBlock(
+    CostFunction* cost_function,
+    LossFunction* loss_function,
+    double* x0, double* x1, double* x2, double* x3, double* x4, double* x5) {
+  vector<double*> residual_parameters;
+  residual_parameters.push_back(x0);
+  residual_parameters.push_back(x1);
+  residual_parameters.push_back(x2);
+  residual_parameters.push_back(x3);
+  residual_parameters.push_back(x4);
+  residual_parameters.push_back(x5);
+  return AddResidualBlock(cost_function, loss_function, residual_parameters);
+}
+
+
+void ProblemImpl::AddParameterBlock(double* values, int size) {
+  InternalAddParameterBlock(values,
+                            size,
+                            &parameter_block_map_,
+                            &program_->parameter_blocks_);
+}
+
+void ProblemImpl::AddParameterBlock(
+    double* values,
+    int size,
+    LocalParameterization* local_parameterization) {
+  ParameterBlock* parameter_block =
+      InternalAddParameterBlock(values,
+                                size,
+                                &parameter_block_map_,
+                                &program_->parameter_blocks_);
+  if (local_parameterization != NULL) {
+    parameter_block->SetParameterization(local_parameterization);
+  }
+}
+
+void ProblemImpl::SetParameterBlockConstant(double* values) {
+  FindOrDie(parameter_block_map_, values)->SetConstant();
+}
+
+void ProblemImpl::SetParameterBlockVariable(double* values) {
+  FindOrDie(parameter_block_map_, values)->SetVarying();
+}
+
+void ProblemImpl::SetParameterization(
+    double* values,
+    LocalParameterization* local_parameterization) {
+  FindOrDie(parameter_block_map_, values)
+      ->SetParameterization(local_parameterization);
+}
+
+int ProblemImpl::NumParameterBlocks() const {
+  return program_->NumParameterBlocks();
+}
+
+int ProblemImpl::NumParameters() const {
+  return program_->NumParameters();
+}
+
+int ProblemImpl::NumResidualBlocks() const {
+  return program_->NumResidualBlocks();
+}
+
+int ProblemImpl::NumResiduals() const {
+  return program_->NumResiduals();
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/problem_impl.h b/internal/ceres/problem_impl.h
new file mode 100644
index 0000000..523860e
--- /dev/null
+++ b/internal/ceres/problem_impl.h
@@ -0,0 +1,127 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// This is the implementation of the public Problem API. The pointer to
+// implementation (PIMPL) idiom makes it possible for Ceres internal code to
+// refer to the private data members without needing to exposing it to the
+// world. An alternative to PIMPL is to have a factory which returns instances
+// of a virtual base class; while that approach would work, it requires clients
+// to always put a Problem object into a scoped pointer; this needlessly muddies
+// client code for little benefit. Therefore, the PIMPL comprise was chosen.
+
+#ifndef CERES_PUBLIC_PROBLEM_IMPL_H_
+#define CERES_PUBLIC_PROBLEM_IMPL_H_
+
+#include <map>
+#include <vector>
+
+#include "ceres/internal/macros.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/problem.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+class CostFunction;
+class LossFunction;
+class LocalParameterization;
+
+namespace internal {
+
+class Program;
+class ResidualBlock;
+
+class ProblemImpl {
+ public:
+  typedef map<double*, ParameterBlock*> ParameterMap;
+
+  ProblemImpl();
+  explicit ProblemImpl(const Problem::Options& options);
+
+  ~ProblemImpl();
+
+  // See the public problem.h file for description of these methods.
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   const vector<double*>& parameter_blocks);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3, double* x4);
+  ResidualBlockId AddResidualBlock(CostFunction* cost_function,
+                                   LossFunction* loss_function,
+                                   double* x0, double* x1, double* x2,
+                                   double* x3, double* x4, double* x5);
+  void AddParameterBlock(double* values, int size);
+  void AddParameterBlock(double* values,
+                         int size,
+                         LocalParameterization* local_parameterization);
+  void SetParameterBlockConstant(double* values);
+  void SetParameterBlockVariable(double* values);
+  void SetParameterization(double* values,
+                           LocalParameterization* local_parameterization);
+  int NumParameterBlocks() const;
+  int NumParameters() const;
+  int NumResidualBlocks() const;
+  int NumResiduals() const;
+
+  const Program& program() const { return *program_; }
+  Program* mutable_program() { return program_.get(); }
+
+  const ParameterMap& parameter_map() const { return parameter_block_map_; }
+
+ private:
+  const Problem::Options options_;
+
+  // The mapping from user pointers to parameter blocks.
+  map<double*, ParameterBlock*> parameter_block_map_;
+
+  internal::scoped_ptr<internal::Program> program_;
+  DISALLOW_COPY_AND_ASSIGN(ProblemImpl);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_PUBLIC_PROBLEM_IMPL_H_
diff --git a/internal/ceres/problem_test.cc b/internal/ceres/problem_test.cc
new file mode 100644
index 0000000..28331f2
--- /dev/null
+++ b/internal/ceres/problem_test.cc
@@ -0,0 +1,325 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+
+#include "ceres/problem.h"
+
+#include "gtest/gtest.h"
+#include "ceres/cost_function.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+// The following three classes are for the purposes of defining
+// function signatures. They have dummy Evaluate functions.
+
+// Trivial cost function that accepts a single argument.
+class UnaryCostFunction : public CostFunction {
+ public:
+  UnaryCostFunction(int num_residuals, int16 parameter_block_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block_size);
+  }
+  virtual ~UnaryCostFunction() {}
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 1;
+    }
+    return true;
+  }
+};
+
+// Trivial cost function that accepts two arguments.
+class BinaryCostFunction: public CostFunction {
+ public:
+  BinaryCostFunction(int num_residuals,
+                     int16 parameter_block1_size,
+                     int16 parameter_block2_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block1_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block2_size);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 2;
+    }
+    return true;
+  }
+};
+
+// Trivial cost function that accepts three arguments.
+class TernaryCostFunction: public CostFunction {
+ public:
+  TernaryCostFunction(int num_residuals,
+                      int16 parameter_block1_size,
+                      int16 parameter_block2_size,
+                      int16 parameter_block3_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block1_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block2_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block3_size);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = 3;
+    }
+    return true;
+  }
+};
+
+TEST(Problem, AddResidualWithNullCostFunctionDies) {
+  double x[3], y[4], z[5];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  problem.AddParameterBlock(y, 4);
+  problem.AddParameterBlock(z, 5);
+
+  ASSERT_DEATH(problem.AddResidualBlock(NULL, NULL, x),
+               "'cost_function' Must be non NULL");
+}
+
+TEST(Problem, AddResidualWithIncorrectNumberOfParameterBlocksDies) {
+  double x[3], y[4], z[5];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  problem.AddParameterBlock(y, 4);
+  problem.AddParameterBlock(z, 5);
+
+  // UnaryCostFunction takes only one parameter, but two are passed.
+  ASSERT_DEATH(
+      problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x, y),
+      "parameter_blocks.size()");
+}
+
+TEST(Problem, AddResidualWithDifferentSizesOnTheSameVariableDies) {
+  double x[3];
+
+  Problem problem;
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+  ASSERT_DEATH(problem.AddResidualBlock(
+      new UnaryCostFunction(2, 4 /* 4 != 3 */), NULL, x),
+               "different block sizes");
+}
+
+TEST(Problem, AddResidualWithDuplicateParametersDies) {
+  double x[3], z[5];
+
+  Problem problem;
+  ASSERT_DEATH(problem.AddResidualBlock(
+      new BinaryCostFunction(2, 3, 3), NULL, x, x),
+               "Duplicate parameter blocks");
+  ASSERT_DEATH(problem.AddResidualBlock(
+      new TernaryCostFunction(1, 5, 3, 5), NULL, z, x, z),
+               "Duplicate parameter blocks");
+}
+
+TEST(Problem, AddResidualWithIncorrectSizesOfParameterBlockDies) {
+  double x[3], y[4], z[5];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  problem.AddParameterBlock(y, 4);
+  problem.AddParameterBlock(z, 5);
+
+  // The cost function expects the size of the second parameter, z, to be 4
+  // instead of 5 as declared above. This is fatal.
+  ASSERT_DEATH(problem.AddResidualBlock(
+      new BinaryCostFunction(2, 3, 4), NULL, x, z),
+               "different block sizes");
+}
+
+TEST(Problem, AddResidualAddsDuplicatedParametersOnlyOnce) {
+  double x[3], y[4], z[5];
+
+  Problem problem;
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 4), NULL, y);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 5), NULL, z);
+
+  EXPECT_EQ(3, problem.NumParameterBlocks());
+  EXPECT_EQ(12, problem.NumParameters());
+}
+
+TEST(Problem, AddParameterWithDifferentSizesOnTheSameVariableDies) {
+  double x[3], y[4];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  problem.AddParameterBlock(y, 4);
+
+  ASSERT_DEATH(problem.AddParameterBlock(x, 4), "different block sizes");
+}
+
+static double *IntToPtr(int i) {
+  return reinterpret_cast<double*>(sizeof(double) * i);  // NOLINT
+}
+
+TEST(Problem, AddParameterWithAliasedParametersDies) {
+  // Layout is
+  //
+  //   0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17
+  //                 [x] x  x  x  x          [y] y  y
+  //         o==o==o                 o==o==o           o==o
+  //               o--o--o     o--o--o     o--o  o--o--o
+  //
+  // Parameter block additions are tested as listed above; expected successful
+  // ones marked with o==o and aliasing ones marked with o--o.
+
+  Problem problem;
+  problem.AddParameterBlock(IntToPtr(5),  5);  // x
+  problem.AddParameterBlock(IntToPtr(13), 3);  // y
+
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr( 4), 2), "Aliasing detected");
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr( 4), 3), "Aliasing detected");
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr( 4), 9), "Aliasing detected");
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr( 8), 3), "Aliasing detected");
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr(12), 2), "Aliasing detected");
+  ASSERT_DEATH(problem.AddParameterBlock(IntToPtr(14), 3), "Aliasing detected");
+
+  // These ones should work.
+  problem.AddParameterBlock(IntToPtr( 2), 3);
+  problem.AddParameterBlock(IntToPtr(10), 3);
+  problem.AddParameterBlock(IntToPtr(16), 2);
+
+  ASSERT_EQ(5, problem.NumParameterBlocks());
+}
+
+TEST(Problem, AddParameterIgnoresDuplicateCalls) {
+  double x[3], y[4];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  problem.AddParameterBlock(y, 4);
+
+  // Creating parameter blocks multiple times is ignored.
+  problem.AddParameterBlock(x, 3);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+
+  // ... even repeatedly.
+  problem.AddParameterBlock(x, 3);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+
+  // More parameters are fine.
+  problem.AddParameterBlock(y, 4);
+  problem.AddResidualBlock(new UnaryCostFunction(2, 4), NULL, y);
+
+  EXPECT_EQ(2, problem.NumParameterBlocks());
+  EXPECT_EQ(7, problem.NumParameters());
+}
+
+TEST(Problem, AddingParametersAndResidualsResultsInExpectedProblem) {
+  double x[3], y[4], z[5], w[4];
+
+  Problem problem;
+  problem.AddParameterBlock(x, 3);
+  EXPECT_EQ(1, problem.NumParameterBlocks());
+  EXPECT_EQ(3, problem.NumParameters());
+
+  problem.AddParameterBlock(y, 4);
+  EXPECT_EQ(2, problem.NumParameterBlocks());
+  EXPECT_EQ(7, problem.NumParameters());
+
+  problem.AddParameterBlock(z, 5);
+  EXPECT_EQ(3,  problem.NumParameterBlocks());
+  EXPECT_EQ(12, problem.NumParameters());
+
+  // Add a parameter that has a local parameterization.
+  problem.AddParameterBlock(w, 4, new QuaternionParameterization);
+  EXPECT_EQ(4,  problem.NumParameterBlocks());
+  EXPECT_EQ(16, problem.NumParameters());
+
+  problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x);
+  problem.AddResidualBlock(new BinaryCostFunction(6, 5, 4) , NULL, z, y);
+  problem.AddResidualBlock(new BinaryCostFunction(3, 3, 5), NULL, x, z);
+  problem.AddResidualBlock(new BinaryCostFunction(7, 5, 3), NULL, z, x);
+  problem.AddResidualBlock(new TernaryCostFunction(1, 5, 3, 4), NULL, z, x, y);
+
+  const int total_residuals = 2 + 6 + 3 + 7 + 1;
+  EXPECT_EQ(problem.NumResidualBlocks(), 5);
+  EXPECT_EQ(problem.NumResiduals(), total_residuals);
+}
+
+class DestructorCountingCostFunction : public SizedCostFunction<3, 4, 5> {
+ public:
+  explicit DestructorCountingCostFunction(int *counter)
+      : counter_(counter) {}
+
+  virtual ~DestructorCountingCostFunction() {
+    *counter_ += 1;
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    return true;
+  }
+
+ private:
+  int* counter_;
+};
+
+TEST(Problem, ReusedCostFunctionsAreOnlyDeletedOnce) {
+  double y[4], z[5];
+  int counter = 0;
+
+  // Add a cost function multiple times and check to make sure that
+  // the destructor on the cost function is only called once.
+  {
+    Problem problem;
+    problem.AddParameterBlock(y, 4);
+    problem.AddParameterBlock(z, 5);
+
+    CostFunction* cost = new DestructorCountingCostFunction(&counter);
+    problem.AddResidualBlock(cost, NULL, y, z);
+    problem.AddResidualBlock(cost, NULL, y, z);
+    problem.AddResidualBlock(cost, NULL, y, z);
+  }
+
+  // Check that the destructor was called only once.
+  CHECK_EQ(counter, 1);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/program.cc b/internal/ceres/program.cc
new file mode 100644
index 0000000..444b102
--- /dev/null
+++ b/internal/ceres/program.cc
@@ -0,0 +1,233 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/program.h"
+
+#include <map>
+#include <vector>
+#include "ceres/parameter_block.h"
+#include "ceres/residual_block.h"
+#include "ceres/stl_util.h"
+#include "ceres/map_util.h"
+#include "ceres/problem.h"
+#include "ceres/cost_function.h"
+#include "ceres/loss_function.h"
+#include "ceres/local_parameterization.h"
+
+namespace ceres {
+namespace internal {
+
+Program::Program() {}
+
+Program::Program(const Program& program)
+    : parameter_blocks_(program.parameter_blocks_),
+      residual_blocks_(program.residual_blocks_) {
+}
+
+const vector<ParameterBlock*>& Program::parameter_blocks() const {
+  return parameter_blocks_;
+}
+
+const vector<ResidualBlock*>& Program::residual_blocks() const {
+  return residual_blocks_;
+}
+
+vector<ParameterBlock*>* Program::mutable_parameter_blocks() {
+  return &parameter_blocks_;
+}
+
+vector<ResidualBlock*>* Program::mutable_residual_blocks() {
+  return &residual_blocks_;
+}
+
+bool Program::StateVectorToParameterBlocks(const double *state) {
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    if (!parameter_blocks_[i]->SetState(state)) {
+      return false;
+    }
+    state += parameter_blocks_[i]->Size();
+  }
+  return true;
+}
+
+void Program::ParameterBlocksToStateVector(double *state) const {
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    parameter_blocks_[i]->GetState(state);
+    state += parameter_blocks_[i]->Size();
+  }
+}
+
+void Program::CopyParameterBlockStateToUserState() {
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    parameter_blocks_[i]->GetState(
+        parameter_blocks_[i]->mutable_user_state());
+  }
+}
+
+bool Program::Plus(const double* state,
+                   const double* delta,
+                   double* state_plus_delta) const {
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    if (!parameter_blocks_[i]->Plus(state, delta, state_plus_delta)) {
+      return false;
+    }
+    state += parameter_blocks_[i]->Size();
+    delta += parameter_blocks_[i]->LocalSize();
+    state_plus_delta += parameter_blocks_[i]->Size();
+  }
+  return true;
+}
+
+void Program::SetParameterOffsetsAndIndex() {
+  // Set positions for all parameters appearing as arguments to residuals to one
+  // past the end of the parameter block array.
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    ResidualBlock* residual_block = residual_blocks_[i];
+    for (int j = 0; j < residual_block->NumParameterBlocks(); ++j) {
+      residual_block->parameter_blocks()[j]->set_index(-1);
+    }
+  }
+  // For parameters that appear in the program, set their position and offset.
+  int state_offset = 0;
+  int delta_offset = 0;
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    parameter_blocks_[i]->set_index(i);
+    parameter_blocks_[i]->set_state_offset(state_offset);
+    parameter_blocks_[i]->set_delta_offset(delta_offset);
+    state_offset += parameter_blocks_[i]->Size();
+    delta_offset += parameter_blocks_[i]->LocalSize();
+  }
+}
+
+int Program::NumResidualBlocks() const {
+  return residual_blocks_.size();
+}
+
+int Program::NumParameterBlocks() const {
+  return parameter_blocks_.size();
+}
+
+int Program::NumResiduals() const {
+  int num_residuals = 0;
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    num_residuals += residual_blocks_[i]->NumResiduals();
+  }
+  return num_residuals;
+}
+
+int Program::NumParameters() const {
+  int num_parameters = 0;
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    num_parameters += parameter_blocks_[i]->Size();
+  }
+  return num_parameters;
+}
+
+int Program::NumEffectiveParameters() const {
+  int num_parameters = 0;
+  for (int i = 0; i < parameter_blocks_.size(); ++i) {
+    num_parameters += parameter_blocks_[i]->LocalSize();
+  }
+  return num_parameters;
+}
+
+int Program::MaxScratchDoublesNeededForEvaluate() const {
+  // Compute the scratch space needed for evaluate.
+  int max_scratch_bytes_for_evaluate = 0;
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    max_scratch_bytes_for_evaluate =
+        max(max_scratch_bytes_for_evaluate,
+            residual_blocks_[i]->NumScratchDoublesForEvaluate());
+  }
+  return max_scratch_bytes_for_evaluate;
+}
+
+int Program::MaxDerivativesPerResidualBlock() const {
+  int max_derivatives = 0;
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    int derivatives = 0;
+    ResidualBlock* residual_block = residual_blocks_[i];
+    int num_parameters = residual_block->NumParameterBlocks();
+    for (int j = 0; j < num_parameters; ++j) {
+      derivatives += residual_block->NumResiduals() *
+                     residual_block->parameter_blocks()[j]->LocalSize();
+    }
+    max_derivatives = max(max_derivatives, derivatives);
+  }
+  return max_derivatives;
+}
+
+int Program::MaxParametersPerResidualBlock() const {
+  int max_parameters = 0;
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    max_parameters = max(max_parameters,
+                         residual_blocks_[i]->NumParameterBlocks());
+  }
+  return max_parameters;
+}
+
+bool Program::Evaluate(double* cost, double* residuals) {
+  *cost = 0.0;
+
+  // Scratch space is only needed if residuals is NULL.
+  scoped_array<double> scratch;
+  if (residuals == NULL) {
+    scratch.reset(new double[MaxScratchDoublesNeededForEvaluate()]);
+  } else {
+    // TODO(keir): Is this needed? Check by removing the equivalent statement in
+    // dense_evaluator.cc and running the tests.
+    VectorRef(residuals, NumResiduals()).setZero();
+  }
+
+  for (int i = 0; i < residual_blocks_.size(); ++i) {
+    ResidualBlock* residual_block = residual_blocks_[i];
+
+    // Evaluate the cost function for this residual.
+    double residual_cost;
+    if (!residual_block->Evaluate(&residual_cost,
+                                  residuals,
+                                  NULL,  // No jacobian.
+                                  scratch.get())) {
+      return false;
+    }
+
+    // Accumulate residual cost into the total cost.
+    *cost += residual_cost;
+
+    // Update the residuals cursor.
+    if (residuals != NULL) {
+      residuals += residual_block->NumResiduals();
+    }
+  }
+  return true;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/program.h b/internal/ceres/program.h
new file mode 100644
index 0000000..113d352
--- /dev/null
+++ b/internal/ceres/program.h
@@ -0,0 +1,128 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_PROGRAM_H_
+#define CERES_INTERNAL_PROGRAM_H_
+
+#include <vector>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+class ParameterBlock;
+class ProblemImpl;
+class ResidualBlock;
+
+// A nonlinear least squares optimization problem. This is different from the
+// similarly-named "Problem" object, which offers a mutation interface for
+// adding and modifying parameters and residuals. The Program contains the core
+// part of the Problem, which is the parameters and the residuals, stored in a
+// particular ordering. The ordering is critical, since it defines the mapping
+// between (residual, parameter) pairs and a position in the jacobian of the
+// objective function. Various parts of Ceres transform one Program into
+// another; for example, the first stage of solving involves stripping all
+// constant parameters and residuals. This is in contrast with Problem, which is
+// not built for transformation.
+class Program {
+ public:
+  Program();
+  explicit Program(const Program& program);
+
+  // The ordered parameter and residual blocks for the program.
+  const vector<ParameterBlock*>& parameter_blocks() const;
+  const vector<ResidualBlock*>& residual_blocks() const;
+  vector<ParameterBlock*>* mutable_parameter_blocks();
+  vector<ResidualBlock*>* mutable_residual_blocks();
+
+  // Serialize to/from the program and update states.
+  //
+  // NOTE: Setting the state of a parameter block can trigger the
+  // computation of the Jacobian of its local parameterization. If
+  // this computation fails for some reason, then this method returns
+  // false and the state of the parameter blocks cannot be trusted.
+  bool StateVectorToParameterBlocks(const double *state);
+  void ParameterBlocksToStateVector(double *state) const;
+
+  // Copy internal state out to the user's parameters.
+  void CopyParameterBlockStateToUserState();
+
+  // Update a state vector for the program given a delta.
+  bool Plus(const double* state,
+            const double* delta,
+            double* state_plus_delta) const;
+
+  // Set the parameter indices and offsets. This permits mapping backward
+  // from a ParameterBlock* to an index in the parameter_blocks() vector. For
+  // any parameter block p, after calling SetParameterOffsetsAndIndex(), it
+  // is true that
+  //
+  //   parameter_blocks()[p->index()] == p
+  //
+  // If a parameter appears in a residual but not in the parameter block, then
+  // it will have an index of -1.
+  //
+  // This also updates p->state_offset() and p->delta_offset(), which are the
+  // position of the parameter in the state and delta vector respectively.
+  void SetParameterOffsetsAndIndex();
+
+  // See problem.h for what these do.
+  int NumParameterBlocks() const;
+  int NumParameters() const;
+  int NumEffectiveParameters() const;
+  int NumResidualBlocks() const;
+  int NumResiduals() const;
+
+  int MaxScratchDoublesNeededForEvaluate() const;
+  int MaxDerivativesPerResidualBlock() const;
+  int MaxParametersPerResidualBlock() const;
+
+  // Evaluate the cost and maybe the residuals for the program. If residuals is
+  // NULL, then residuals are not calculated. If the jacobian is needed, instead
+  // use the various evaluators (e.g. dense_evaluator.h).
+  //
+  // This is a trivial implementation of evaluate not intended for use in the
+  // core solving loop. The other evaluators, which support constructing the
+  // jacobian in addition to the cost and residuals, are considerably
+  // complicated by the need to construct the jacobian.
+  bool Evaluate(double* cost, double* residuals);
+
+ private:
+  // The Program does not own the ParameterBlock or ResidualBlock objects.
+  vector<ParameterBlock*> parameter_blocks_;
+  vector<ResidualBlock*> residual_blocks_;
+
+  friend class ProblemImpl;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_PROGRAM_H_
diff --git a/internal/ceres/program_evaluator.h b/internal/ceres/program_evaluator.h
new file mode 100644
index 0000000..8c23e2e
--- /dev/null
+++ b/internal/ceres/program_evaluator.h
@@ -0,0 +1,275 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// The ProgramEvaluator runs the cost functions contained in each residual block
+// and stores the result into a jacobian. The particular type of jacobian is
+// abstracted out using two template parameters:
+//
+//   - An "EvaluatePreparer" that is responsible for creating the array with
+//     pointers to the jacobian blocks where the cost function evaluates to.
+//   - A "JacobianWriter" that is responsible for storing the resulting
+//     jacobian blocks in the passed sparse matrix.
+//
+// This abstraction affords a evaluator implementation while still efficiently
+// supporting multiple sparse matrices in the backend. This evaluator
+// implementation is threaded using OpenMP.
+//
+// The EvaluatePreparer and JacobianWriter interfaces are as follows:
+//
+//   class EvaluatePreparer {
+//     // Prepare the jacobians array for use as the destination of a call to
+//     // a cost function's evaluate method.
+//     void Prepare(const ResidualBlock* residual_block,
+//                  int residual_block_index,
+//                  SparseMatrix* jacobian,
+//                  double** jacobians);
+//   }
+//
+//   class JacobianWriter {
+//     // Create a jacobian that this writer can write. Same as
+//     // Evaluator::CreateJacobian.
+//     SparseMatrix* CreateJacobian() const;
+//
+//     // Create num_threads evaluate preparers. Caller owns result which must
+//     // be freed with delete[]. Resulting preparers are valid while *this is.
+//     EvaluatePreparer* CreateEvaluatePreparers(int num_threads);
+//
+//     // Write the block jacobians from a residual block evaluation to the
+//     // larger sparse jacobian.
+//     void Write(int residual_id,
+//                int residual_offset,
+//                double** jacobians,
+//                SparseMatrix* jacobian);
+//   }
+//
+// Note: The ProgramEvaluator is not thread safe, since internally it maintains
+// some per-thread scratch space.
+
+#ifndef CERES_INTERNAL_PROGRAM_EVALUATOR_H_
+#define CERES_INTERNAL_PROGRAM_EVALUATOR_H_
+
+#ifdef CERES_USE_OPENMP
+#include <omp.h>
+#endif
+
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+template<typename EvaluatePreparer, typename JacobianWriter>
+class ProgramEvaluator : public Evaluator {
+ public:
+  ProgramEvaluator(const Evaluator::Options &options, Program* program)
+      : options_(options),
+        program_(program),
+        jacobian_writer_(options, program),
+        evaluate_preparers_(
+            jacobian_writer_.CreateEvaluatePreparers(options.num_threads)) {
+#ifndef CERES_USE_OPENMP
+    CHECK_EQ(1, options_.num_threads)
+        << "OpenMP support is not compiled into this binary; "
+        << "only options.num_threads=1 is supported.";
+#endif
+
+    BuildResidualLayout(*program, &residual_layout_);
+    evaluate_scratch_.reset(CreateEvaluatorScratch(*program,
+                                                   options.num_threads));
+  }
+
+  // Implementation of Evaluator interface.
+  SparseMatrix* CreateJacobian() const {
+    return jacobian_writer_.CreateJacobian();
+  }
+
+  bool Evaluate(const double* state,
+                double* cost,
+                double* residuals,
+                SparseMatrix* jacobian) {
+    // The parameters are stateful, so set the state before evaluating.
+    if (!program_->StateVectorToParameterBlocks(state)) {
+      return false;
+    }
+
+    if (jacobian) {
+      jacobian->SetZero();
+    }
+
+    // Each thread gets it's own cost and evaluate scratch space.
+    for (int i = 0; i < options_.num_threads; ++i) {
+      evaluate_scratch_[i].cost = 0.0;
+    }
+
+    // This bool is used to disable the loop if an error is encountered
+    // without breaking out of it. The remaining loop iterations are still run,
+    // but with an empty body, and so will finish quickly.
+    bool abort = false;
+    int num_residual_blocks = program_->NumResidualBlocks();
+#pragma omp parallel for num_threads(options_.num_threads)
+    for (int i = 0; i < num_residual_blocks; ++i) {
+// Disable the loop instead of breaking, as required by OpenMP.
+#pragma omp flush(abort)
+      if (abort) {
+        continue;
+      }
+
+#ifdef CERES_USE_OPENMP
+      int thread_id = omp_get_thread_num();
+#else
+      int thread_id = 0;
+#endif
+      EvaluatePreparer* preparer = &evaluate_preparers_[thread_id];
+      EvaluateScratch* scratch = &evaluate_scratch_[thread_id];
+
+      // Prepare block residuals if requested.
+      const ResidualBlock* residual_block = program_->residual_blocks()[i];
+      double* block_residuals = (residuals != NULL)
+                              ? (residuals + residual_layout_[i])
+                              : NULL;
+
+      // Prepare block jacobians if requested.
+      double** block_jacobians = NULL;
+      if (jacobian != NULL) {
+        preparer->Prepare(residual_block,
+                          i,
+                          jacobian,
+                          scratch->jacobian_block_ptrs.get());
+        block_jacobians = scratch->jacobian_block_ptrs.get();
+      }
+
+      // Evaluate the cost, residuals, and jacobians.
+      double block_cost;
+      if (!residual_block->Evaluate(&block_cost,
+                                    block_residuals,
+                                    block_jacobians,
+                                    scratch->scratch.get())) {
+        abort = true;
+// This ensures that the OpenMP threads have a consistent view of 'abort'. Do
+// the flush inside the failure case so that there is usually only one
+// synchronization point per loop iteration instead of two.
+#pragma omp flush(abort)
+        continue;
+      }
+
+      scratch->cost += block_cost;
+
+      if (jacobian != NULL) {
+        jacobian_writer_.Write(i,
+                               residual_layout_[i],
+                               block_jacobians,
+                               jacobian);
+      }
+    }
+
+    if (!abort) {
+      // Sum the cost from each thread.
+      (*cost) = 0.0;
+      for (int i = 0; i < options_.num_threads; ++i) {
+        (*cost) += evaluate_scratch_[i].cost;
+      }
+    }
+    return !abort;
+  }
+
+  bool Plus(const double* state,
+            const double* delta,
+            double* state_plus_delta) const {
+    return program_->Plus(state, delta, state_plus_delta);
+  }
+
+  int NumParameters() const {
+    return program_->NumParameters();
+  }
+  int NumEffectiveParameters() const {
+    return program_->NumEffectiveParameters();
+  }
+
+  int NumResiduals() const {
+    return program_->NumResiduals();
+  }
+
+ private:
+  struct EvaluateScratch {
+    void Init(int max_parameters_per_residual_block,
+              int max_scratch_doubles_needed_for_evaluate) {
+      jacobian_block_ptrs.reset(
+          new double*[max_parameters_per_residual_block]);
+      scratch.reset(new double[max_scratch_doubles_needed_for_evaluate]);
+    }
+
+    double cost;
+    scoped_array<double> scratch;
+    scoped_array<double*> jacobian_block_ptrs;
+  };
+
+  static void BuildResidualLayout(const Program& program,
+                                  vector<int>* residual_layout) {
+    const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
+    residual_layout->resize(program.NumResidualBlocks());
+    int residual_pos = 0;
+    for (int i = 0; i < residual_blocks.size(); ++i) {
+      const int num_residuals = residual_blocks[i]->NumResiduals();
+      (*residual_layout)[i] = residual_pos;
+      residual_pos += num_residuals;
+    }
+  }
+
+  // Create scratch space for each thread evaluating the program.
+  static EvaluateScratch* CreateEvaluatorScratch(const Program& program,
+                                                 int num_threads) {
+    int max_parameters_per_residual_block =
+        program.MaxParametersPerResidualBlock();
+    int max_scratch_doubles_needed_for_evaluate =
+        program.MaxScratchDoublesNeededForEvaluate();
+
+    EvaluateScratch* evaluate_scratch = new EvaluateScratch[num_threads];
+    for (int i = 0; i < num_threads; i++) {
+      evaluate_scratch[i].Init(max_parameters_per_residual_block,
+                               max_scratch_doubles_needed_for_evaluate);
+    }
+    return evaluate_scratch;
+  }
+
+  Evaluator::Options options_;
+  Program* program_;
+  JacobianWriter jacobian_writer_;
+  scoped_array<EvaluatePreparer> evaluate_preparers_;
+  scoped_array<EvaluateScratch> evaluate_scratch_;
+  vector<int> residual_layout_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_PROGRAM_EVALUATOR_H_
diff --git a/internal/ceres/random.h b/internal/ceres/random.h
new file mode 100644
index 0000000..769e0b4
--- /dev/null
+++ b/internal/ceres/random.h
@@ -0,0 +1,47 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_RANDOM_H_
+#define CERES_INTERNAL_RANDOM_H_
+
+namespace ceres {
+
+inline double RandDouble() {
+  double r = rand();
+  return r / RAND_MAX;
+}
+
+inline int Uniform(int n) {
+  return rand() % n;
+}
+
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_RANDOM_H_
diff --git a/internal/ceres/residual_block.cc b/internal/ceres/residual_block.cc
new file mode 100644
index 0000000..0386789
--- /dev/null
+++ b/internal/ceres/residual_block.cc
@@ -0,0 +1,212 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//         sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/residual_block.h"
+
+#include <algorithm>
+#include <cstddef>
+#include <vector>
+
+#include "ceres/corrector.h"
+#include "ceres/parameter_block.h"
+#include "ceres/residual_block_utils.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/fixed_array.h"
+#include "ceres/local_parameterization.h"
+#include "ceres/loss_function.h"
+
+namespace ceres {
+namespace internal {
+
+ResidualBlock::ResidualBlock(const CostFunction* cost_function,
+                             const LossFunction* loss_function,
+                             const vector<ParameterBlock*>& parameter_blocks)
+    : cost_function_(cost_function),
+      loss_function_(loss_function),
+      parameter_blocks_(
+          new ParameterBlock* [
+              cost_function->parameter_block_sizes().size()]) {
+  std::copy(parameter_blocks.begin(),
+            parameter_blocks.end(),
+            parameter_blocks_.get());
+}
+
+bool ResidualBlock::Evaluate(double* cost,
+                             double* residuals,
+                             double** jacobians,
+                             double* scratch) const {
+  const int num_parameter_blocks = NumParameterBlocks();
+  const int num_residuals = cost_function_->num_residuals();
+
+  // Collect the parameters from their blocks. This will rarely allocate, since
+  // residuals taking more than 8 parameter block arguments are rare.
+  FixedArray<const double*, 8> parameters(num_parameter_blocks);
+  for (int i = 0; i < num_parameter_blocks; ++i) {
+    parameters[i] = parameter_blocks_[i]->state();
+  }
+
+  // Put pointers into the scratch space into global_jacobians as appropriate.
+  FixedArray<double*, 8> global_jacobians(num_parameter_blocks);
+  if (jacobians != NULL) {
+    for (int i = 0; i < num_parameter_blocks; ++i) {
+      const ParameterBlock* parameter_block = parameter_blocks_[i];
+      if (jacobians[i] != NULL &&
+          parameter_block->LocalParameterizationJacobian() != NULL) {
+        global_jacobians[i] = scratch;
+        scratch += num_residuals * parameter_block->Size();
+      } else {
+        global_jacobians[i] = jacobians[i];
+      }
+    }
+  }
+
+  // If the caller didn't request residuals, use the scratch space for them.
+  bool outputting_residuals = (residuals != NULL);
+  if (!outputting_residuals) {
+    residuals = scratch;
+  }
+
+  // Invalidate the evaluation buffers so that we can check them after
+  // the CostFunction::Evaluate call, to see if all the return values
+  // that were required were written to and that they are finite.
+  double** eval_jacobians = (jacobians != NULL) ? global_jacobians.get() : NULL;
+
+  InvalidateEvaluation(*this, cost, residuals, eval_jacobians);
+
+  if (!cost_function_->Evaluate(parameters.get(), residuals, eval_jacobians) ||
+      !IsEvaluationValid(*this,
+                         parameters.get(),
+                         cost,
+                         residuals,
+                         eval_jacobians)) {
+    string message =
+        "\n\n"
+        "Error in evaluating the ResidualBlock.\n\n"
+        "There are two possible reasons. Either the CostFunction did not evaluate and fill all    \n"  // NOLINT
+        "residual and jacobians that were requested or there was a non-finite value (nan/infinite)\n"  // NOLINT
+        "generated during the or jacobian computation. \n\n" +
+        EvaluationToString(*this,
+                           parameters.get(),
+                           cost,
+                           residuals,
+                           eval_jacobians);
+    LOG(WARNING) << message;
+    return false;
+  }
+
+  double squared_norm = VectorRef(residuals, num_residuals).squaredNorm();
+
+  // Update the jacobians with the local parameterizations.
+  if (jacobians != NULL) {
+    for (int i = 0; i < num_parameter_blocks; ++i) {
+      if (jacobians[i] != NULL) {
+        const ParameterBlock* parameter_block = parameter_blocks_[i];
+
+        // Apply local reparameterization to the jacobians.
+        if (parameter_block->LocalParameterizationJacobian() != NULL) {
+          ConstMatrixRef local_to_global(
+              parameter_block->LocalParameterizationJacobian(),
+              parameter_block->Size(),
+              parameter_block->LocalSize());
+          MatrixRef global_jacobian(global_jacobians[i],
+                                    num_residuals,
+                                    parameter_block->Size());
+          MatrixRef local_jacobian(jacobians[i],
+                                   num_residuals,
+                                   parameter_block->LocalSize());
+          local_jacobian.noalias() = global_jacobian * local_to_global;
+        }
+      }
+    }
+  }
+
+  if (loss_function_ == NULL) {
+    *cost = 0.5 * squared_norm;
+    return true;
+  }
+
+  double rho[3];
+  loss_function_->Evaluate(squared_norm, rho);
+  *cost = 0.5 * rho[0];
+
+  // No jacobians and not outputting residuals? All done. Doing an early exit
+  // here avoids constructing the "Corrector" object below in a common case.
+  if (jacobians == NULL && !outputting_residuals) {
+    return true;
+  }
+
+  // Correct for the effects of the loss function. The jacobians need to be
+  // corrected before the residuals, since they use the uncorrected residuals.
+  Corrector correct(squared_norm, rho);
+  if (jacobians != NULL) {
+    for (int i = 0; i < num_parameter_blocks; ++i) {
+      if (jacobians[i] != NULL) {
+        const ParameterBlock* parameter_block = parameter_blocks_[i];
+
+        // Correct the jacobians for the loss function.
+        correct.CorrectJacobian(num_residuals,
+                                parameter_block->LocalSize(),
+                                residuals,
+                                jacobians[i]);
+      }
+    }
+  }
+
+  // Correct the residuals with the loss function.
+  if (outputting_residuals) {
+    correct.CorrectResiduals(num_residuals, residuals);
+  }
+  return true;
+}
+
+int ResidualBlock::NumScratchDoublesForEvaluate() const {
+  // Compute the amount of scratch space needed to store the full-sized
+  // jacobians. For parameters that have no local parameterization  no storage
+  // is needed and the passed-in jacobian array is used directly. Also include
+  // space to store the residuals, which is needed for cost-only evaluations.
+  // This is slightly pessimistic, since both won't be needed all the time, but
+  // the amount of excess should not cause problems for the caller.
+  int num_parameters = NumParameterBlocks();
+  int scratch_doubles = 1;
+  for (int i = 0; i < num_parameters; ++i) {
+    const ParameterBlock* parameter_block = parameter_blocks_[i];
+    if (!parameter_block->IsConstant() &&
+        parameter_block->LocalParameterizationJacobian() != NULL) {
+      scratch_doubles += parameter_block->Size();
+    }
+  }
+  scratch_doubles *= NumResiduals();
+  return scratch_doubles;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/residual_block.h b/internal/ceres/residual_block.h
new file mode 100644
index 0000000..e0a06e7
--- /dev/null
+++ b/internal/ceres/residual_block.h
@@ -0,0 +1,124 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//         keir@google.com (Keir Mierle)
+//
+// Purpose : Class and struct definitions for parameter and residual blocks.
+
+#ifndef CERES_INTERNAL_RESIDUAL_BLOCK_H_
+#define CERES_INTERNAL_RESIDUAL_BLOCK_H_
+
+#include <vector>
+
+#include "ceres/cost_function.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+
+class LossFunction;
+
+namespace internal {
+
+class ParameterBlock;
+
+// A term in the least squares problem. The mathematical form of each term in
+// the overall least-squares cost function is:
+//
+//    1
+//   --- loss_function( || cost_function(block1, block2, ...) ||^2  ),
+//    2
+//
+// Storing the cost function and the loss function separately permits optimizing
+// the problem with standard non-linear least techniques, without requiring a
+// more general non-linear solver.
+//
+// The residual block stores pointers to but does not own the cost functions,
+// loss functions, and parameter blocks.
+class ResidualBlock {
+ public:
+  ResidualBlock(const CostFunction* cost_function,
+                const LossFunction* loss_function,
+                const vector<ParameterBlock*>& parameter_blocks);
+
+  // Evaluates the residual term, storing the scalar cost in *cost, the residual
+  // components in *residuals, and the jacobians between the parameters and
+  // residuals in jacobians[i], in row-major order. If residuals is NULL, the
+  // residuals are not computed. If jacobians is NULL, no jacobians are
+  // computed. If jacobians[i] is NULL, then the jacobian for that parameter is
+  // not computed.
+  //
+  // Evaluate needs scratch space which must be supplied by the caller via
+  // scratch. The array should have at least NumScratchDoublesForEvaluate()
+  // space available.
+  //
+  // The return value indicates the success or failure. If the function returns
+  // false, the caller should expect the the output memory locations to have
+  // been modified.
+  //
+  // The returned cost and jacobians have had robustification and local
+  // parameterizations applied already; for example, the jacobian for a
+  // 4-dimensional quaternion parameter using the "QuaternionParameterization"
+  // is num_residuals by 3 instead of num_residuals by 4.
+  bool Evaluate(double* cost,
+                double* residuals,
+                double** jacobians,
+                double* scratch) const;
+
+  const CostFunction* cost_function() const { return cost_function_; }
+  const LossFunction* loss_function() const { return loss_function_; }
+
+  // Access the parameter blocks for this residual. The array has size
+  // NumParameterBlocks().
+  ParameterBlock* const* parameter_blocks() const {
+    return parameter_blocks_.get();
+  }
+
+  // Number of variable blocks that this residual term depends on.
+  int NumParameterBlocks() const {
+    return cost_function_->parameter_block_sizes().size();
+  }
+
+  // The size of the residual vector returned by this residual function.
+  int NumResiduals() const { return cost_function_->num_residuals(); }
+
+  // The minimum amount of scratch space needed to pass to Evaluate().
+  int NumScratchDoublesForEvaluate() const;
+
+ private:
+  const CostFunction* cost_function_;
+  const LossFunction* loss_function_;
+  scoped_array<ParameterBlock*> parameter_blocks_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_RESIDUAL_BLOCK_H_
diff --git a/internal/ceres/residual_block_test.cc b/internal/ceres/residual_block_test.cc
new file mode 100644
index 0000000..92b79f6
--- /dev/null
+++ b/internal/ceres/residual_block_test.cc
@@ -0,0 +1,326 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/residual_block.h"
+
+#include "gtest/gtest.h"
+#include "ceres/parameter_block.h"
+#include "ceres/sized_cost_function.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/local_parameterization.h"
+
+namespace ceres {
+namespace internal {
+
+// Trivial cost function that accepts three arguments.
+class TernaryCostFunction: public CostFunction {
+ public:
+  TernaryCostFunction(int num_residuals,
+                      int16 parameter_block1_size,
+                      int16 parameter_block2_size,
+                      int16 parameter_block3_size) {
+    set_num_residuals(num_residuals);
+    mutable_parameter_block_sizes()->push_back(parameter_block1_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block2_size);
+    mutable_parameter_block_sizes()->push_back(parameter_block3_size);
+  }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = i;
+    }
+    if (jacobians) {
+      for (int k = 0; k < 3; ++k) {
+        if (jacobians[k] != NULL) {
+          MatrixRef jacobian(jacobians[k],
+                             num_residuals(),
+                             parameter_block_sizes()[k]);
+          jacobian.setConstant(k);
+        }
+      }
+    }
+    return true;
+  }
+};
+
+TEST(ResidualBlock, EvaluteWithNoLossFunctionOrLocalParameterizations) {
+  double scratch[64];
+
+  // Prepare the parameter blocks.
+  double values_x[2];
+  ParameterBlock x(values_x, 2);
+
+  double values_y[3];
+  ParameterBlock y(values_y, 3);
+
+  double values_z[4];
+  ParameterBlock z(values_z, 4);
+
+  vector<ParameterBlock*> parameters;
+  parameters.push_back(&x);
+  parameters.push_back(&y);
+  parameters.push_back(&z);
+
+  TernaryCostFunction cost_function(3, 2, 3, 4);
+
+  // Create the object under tests.
+  ResidualBlock residual_block(&cost_function, NULL, parameters);
+
+  // Verify getters.
+  EXPECT_EQ(&cost_function, residual_block.cost_function());
+  EXPECT_EQ(NULL, residual_block.loss_function());
+  EXPECT_EQ(parameters[0], residual_block.parameter_blocks()[0]);
+  EXPECT_EQ(parameters[1], residual_block.parameter_blocks()[1]);
+  EXPECT_EQ(parameters[2], residual_block.parameter_blocks()[2]);
+  EXPECT_EQ(3, residual_block.NumScratchDoublesForEvaluate());
+
+  // Verify cost-only evaluation.
+  double cost;
+  residual_block.Evaluate(&cost, NULL, NULL, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+
+  // Verify cost and residual evaluation.
+  double residuals[3];
+  residual_block.Evaluate(&cost, residuals, NULL, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  // Verify cost, residual, and jacobian evaluation.
+  cost = 0.0;
+  VectorRef(residuals, 3).setConstant(0.0);
+
+  Matrix jacobian_rx(3, 2);
+  Matrix jacobian_ry(3, 3);
+  Matrix jacobian_rz(3, 4);
+
+  jacobian_rx.setConstant(-1.0);
+  jacobian_ry.setConstant(-1.0);
+  jacobian_rz.setConstant(-1.0);
+
+  double *jacobian_ptrs[3] = {
+    jacobian_rx.data(),
+    jacobian_ry.data(),
+    jacobian_rz.data()
+  };
+
+  residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  EXPECT_TRUE((jacobian_rx.array() == 0.0).all()) << "\n" << jacobian_rx;
+  EXPECT_TRUE((jacobian_ry.array() == 1.0).all()) << "\n" << jacobian_ry;
+  EXPECT_TRUE((jacobian_rz.array() == 2.0).all()) << "\n" << jacobian_rz;
+
+  // Verify cost, residual, and partial jacobian evaluation.
+  cost = 0.0;
+  VectorRef(residuals, 3).setConstant(0.0);
+  jacobian_rx.setConstant(-1.0);
+  jacobian_ry.setConstant(-1.0);
+  jacobian_rz.setConstant(-1.0);
+
+  jacobian_ptrs[1] = NULL;  // Don't compute the jacobian for y.
+
+  residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  EXPECT_TRUE((jacobian_rx.array() ==  0.0).all()) << "\n" << jacobian_rx;
+  EXPECT_TRUE((jacobian_ry.array() == -1.0).all()) << "\n" << jacobian_ry;
+  EXPECT_TRUE((jacobian_rz.array() ==  2.0).all()) << "\n" << jacobian_rz;
+}
+
+// Trivial cost function that accepts three arguments.
+class LocallyParameterizedCostFunction: public SizedCostFunction<3, 2, 3, 4> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    for (int i = 0; i < num_residuals(); ++i) {
+      residuals[i] = i;
+    }
+    if (jacobians) {
+      for (int k = 0; k < 3; ++k) {
+        // The jacobians here are full sized, but they are transformed in the
+        // evaluator into the "local" jacobian. In the tests, the "subset
+        // constant" parameterization is used, which should pick out columns
+        // from these jacobians. Put values in the jacobian that make this
+        // obvious; in particular, make the jacobians like this:
+        //
+        //   0 1 2 3 4 ...
+        //   0 1 2 3 4 ...
+        //   0 1 2 3 4 ...
+        //
+        if (jacobians[k] != NULL) {
+          MatrixRef jacobian(jacobians[k],
+                             num_residuals(),
+                             parameter_block_sizes()[k]);
+          for (int j = 0; j < k + 2; ++j) {
+            jacobian.col(j).setConstant(j);
+          }
+        }
+      }
+    }
+    return true;
+  }
+};
+
+TEST(ResidualBlock, EvaluteWithLocalParameterizations) {
+  double scratch[64];
+
+  // Prepare the parameter blocks.
+  double values_x[2];
+  ParameterBlock x(values_x, 2);
+
+  double values_y[3];
+  ParameterBlock y(values_y, 3);
+
+  double values_z[4];
+  ParameterBlock z(values_z, 4);
+
+  vector<ParameterBlock*> parameters;
+  parameters.push_back(&x);
+  parameters.push_back(&y);
+  parameters.push_back(&z);
+
+  // Make x have the first component fixed.
+  vector<int> x_fixed;
+  x_fixed.push_back(0);
+  SubsetParameterization x_parameterization(2, x_fixed);
+  x.SetParameterization(&x_parameterization);
+
+  // Make z have the last and last component fixed.
+  vector<int> z_fixed;
+  z_fixed.push_back(2);
+  SubsetParameterization z_parameterization(4, z_fixed);
+  z.SetParameterization(&z_parameterization);
+
+  LocallyParameterizedCostFunction cost_function;
+
+  // Create the object under tests.
+  ResidualBlock residual_block(&cost_function, NULL, parameters);
+
+  // Verify getters.
+  EXPECT_EQ(&cost_function, residual_block.cost_function());
+  EXPECT_EQ(NULL, residual_block.loss_function());
+  EXPECT_EQ(parameters[0], residual_block.parameter_blocks()[0]);
+  EXPECT_EQ(parameters[1], residual_block.parameter_blocks()[1]);
+  EXPECT_EQ(parameters[2], residual_block.parameter_blocks()[2]);
+  EXPECT_EQ(3*(2 + 4) + 3, residual_block.NumScratchDoublesForEvaluate());
+
+  // Verify cost-only evaluation.
+  double cost;
+  residual_block.Evaluate(&cost, NULL, NULL, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+
+  // Verify cost and residual evaluation.
+  double residuals[3];
+  residual_block.Evaluate(&cost, residuals, NULL, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  // Verify cost, residual, and jacobian evaluation.
+  cost = 0.0;
+  VectorRef(residuals, 3).setConstant(0.0);
+
+  Matrix jacobian_rx(3, 1);  // Since the first element is fixed.
+  Matrix jacobian_ry(3, 3);
+  Matrix jacobian_rz(3, 3);  // Since the third element is fixed.
+
+  jacobian_rx.setConstant(-1.0);
+  jacobian_ry.setConstant(-1.0);
+  jacobian_rz.setConstant(-1.0);
+
+  double *jacobian_ptrs[3] = {
+    jacobian_rx.data(),
+    jacobian_ry.data(),
+    jacobian_rz.data()
+  };
+
+  residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  Matrix expected_jacobian_rx(3, 1);
+  expected_jacobian_rx << 1.0, 1.0, 1.0;
+
+  Matrix expected_jacobian_ry(3, 3);
+  expected_jacobian_ry << 0.0, 1.0, 2.0,
+                          0.0, 1.0, 2.0,
+                          0.0, 1.0, 2.0;
+
+  Matrix expected_jacobian_rz(3, 3);
+  expected_jacobian_rz << 0.0, 1.0, /* 2.0, */ 3.0,  // 3rd parameter constant.
+                          0.0, 1.0, /* 2.0, */ 3.0,
+                          0.0, 1.0, /* 2.0, */ 3.0;
+
+  EXPECT_EQ(expected_jacobian_rx, jacobian_rx)
+      << "\nExpected:\n" << expected_jacobian_rx
+      << "\nActual:\n"   << jacobian_rx;
+  EXPECT_EQ(expected_jacobian_ry, jacobian_ry)
+      << "\nExpected:\n" << expected_jacobian_ry
+      << "\nActual:\n"   << jacobian_ry;
+  EXPECT_EQ(expected_jacobian_rz, jacobian_rz)
+      << "\nExpected:\n " << expected_jacobian_rz
+      << "\nActual:\n"   << jacobian_rz;
+
+  // Verify cost, residual, and partial jacobian evaluation.
+  cost = 0.0;
+  VectorRef(residuals, 3).setConstant(0.0);
+  jacobian_rx.setConstant(-1.0);
+  jacobian_ry.setConstant(-1.0);
+  jacobian_rz.setConstant(-1.0);
+
+  jacobian_ptrs[1] = NULL;  // Don't compute the jacobian for y.
+
+  residual_block.Evaluate(&cost, residuals, jacobian_ptrs, scratch);
+  EXPECT_EQ(0.5 * (0*0 + 1*1 + 2*2), cost);
+  EXPECT_EQ(0.0, residuals[0]);
+  EXPECT_EQ(1.0, residuals[1]);
+  EXPECT_EQ(2.0, residuals[2]);
+
+  EXPECT_EQ(expected_jacobian_rx, jacobian_rx);
+  EXPECT_TRUE((jacobian_ry.array() == -1.0).all()) << "\n" << jacobian_ry;
+  EXPECT_EQ(expected_jacobian_rz, jacobian_rz);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/residual_block_utils.cc b/internal/ceres/residual_block_utils.cc
new file mode 100644
index 0000000..ed3499b
--- /dev/null
+++ b/internal/ceres/residual_block_utils.cc
@@ -0,0 +1,181 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/residual_block_utils.h"
+
+#include <cmath>
+#include <cstddef>
+#include <limits>
+#include <glog/logging.h>
+#include "ceres/residual_block.h"
+#include "ceres/parameter_block.h"
+#include "ceres/stringprintf.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+// It is a near impossibility that user code generates this exact
+// value in normal operation, thus we will use it to fill arrays
+// before passing them to user code. If on return an element of the
+// array still contains this value, we will assume that the user code
+// did not write to that memory location.
+static const double kImpossibleValue = 1e302;
+
+bool IsArrayValid(const int size, const double* x) {
+  if (x != NULL) {
+    for (int i = 0; i < size; ++i) {
+      if (!isfinite(x[i]) || (x[i] == kImpossibleValue))  {
+        return false;
+      }
+    }
+  }
+  return true;
+}
+
+void InvalidateArray(const int size, double* x) {
+  if (x != NULL) {
+    for (int i = 0; i < size; ++i) {
+      x[i] = kImpossibleValue;
+    }
+  }
+}
+
+void InvalidateEvaluation(const ResidualBlock& block,
+                          double* cost,
+                          double* residuals,
+                          double** jacobians) {
+  const int num_parameter_blocks = block.NumParameterBlocks();
+  const int num_residuals = block.NumResiduals();
+
+  InvalidateArray(1, cost);
+  InvalidateArray(num_residuals, residuals);
+  if (jacobians != NULL) {
+    for (int i = 0; i < num_parameter_blocks; ++i) {
+      const int parameter_block_size = block.parameter_blocks()[i]->Size();
+      InvalidateArray(num_residuals * parameter_block_size, jacobians[i]);
+    }
+  }
+}
+
+// Utility routine to print an array of doubles to a string. If the
+// array pointer is NULL, it is treated as an array of zeros.
+void AppendArrayToString(const int size, const double* x, string* result) {
+  for (int i = 0; i < size; ++i) {
+    if (x == NULL) {
+      StringAppendF(result, "Not Computed  ");
+    } else {
+      if (x[i] == kImpossibleValue) {
+        StringAppendF(result, "Uninitialized ");
+      } else {
+        StringAppendF(result, "%12g ", x[i]);
+      }
+    }
+  }
+}
+
+string EvaluationToString(const ResidualBlock& block,
+                          double const* const* parameters,
+                          double* cost,
+                          double* residuals,
+                          double** jacobians) {
+  CHECK_NOTNULL(cost);
+  CHECK_NOTNULL(residuals);
+
+  const int num_parameter_blocks = block.NumParameterBlocks();
+  const int num_residuals = block.NumResiduals();
+  string result = "";
+
+  StringAppendF(&result,
+                "Residual Block size: %d parameter blocks x %d residuals\n\n",
+                num_parameter_blocks, num_residuals);
+  result +=
+      "For each parameter block, the value of the parameters are printed in the first column   \n"  // NOLINT
+      "and the value of the jacobian under the corresponding residual. If a ParameterBlock was \n"  // NOLINT
+      "held constant then the corresponding jacobian is printed as 'Not Computed'. If an entry \n"  // NOLINT
+      "of the Jacobian/residual array was requested but was not written to by user code, it is \n"  // NOLINT
+      "indicated by 'Uninitialized'. This is an error. Residuals or Jacobian values evaluating \n"  // NOLINT
+      "to Inf or NaN is also an error.  \n\n"; // NOLINT
+
+  string space = "Residuals:     ";
+  result += space;
+  AppendArrayToString(num_residuals, residuals, &result);
+  StringAppendF(&result, "\n\n");
+
+  for (int i = 0; i < num_parameter_blocks; ++i) {
+    const int parameter_block_size = block.parameter_blocks()[i]->Size();
+    StringAppendF(
+        &result, "Parameter Block %d, size: %d\n", i, parameter_block_size);
+    StringAppendF(&result, "\n");
+    for (int j = 0; j < parameter_block_size; ++j) {
+      AppendArrayToString(1, parameters[i] + j, &result);
+      StringAppendF(&result, "| ");
+      for (int k = 0; k < num_residuals; ++k) {
+        AppendArrayToString(1,
+                            (jacobians != NULL && jacobians[i] != NULL)
+                            ? jacobians[i] + k * parameter_block_size + j
+                            : NULL,
+                            &result);
+      }
+      StringAppendF(&result, "\n");
+    }
+    StringAppendF(&result, "\n");
+  }
+  StringAppendF(&result, "\n");
+  return result;
+}
+
+bool IsEvaluationValid(const ResidualBlock& block,
+                       double const* const* parameters,
+                       double* cost,
+                       double* residuals,
+                       double** jacobians) {
+  const int num_parameter_blocks = block.NumParameterBlocks();
+  const int num_residuals = block.NumResiduals();
+
+  if (!IsArrayValid(num_residuals, residuals)) {
+    return false;
+  }
+
+  if (jacobians != NULL) {
+    for (int i = 0; i < num_parameter_blocks; ++i) {
+      const int parameter_block_size = block.parameter_blocks()[i]->Size();
+      if (!IsArrayValid(num_residuals * parameter_block_size, jacobians[i])) {
+        return false;
+      }
+    }
+  }
+
+  return true;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/residual_block_utils.h b/internal/ceres/residual_block_utils.h
new file mode 100644
index 0000000..228867c
--- /dev/null
+++ b/internal/ceres/residual_block_utils.h
@@ -0,0 +1,89 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Utility routines for ResidualBlock evaluation.
+//
+// These are useful for detecting two common class of errors.
+//
+// 1. Uninitialized memory - where the user for some reason did not
+// compute part of a cost/residual/jacobian.
+//
+// 2. Numerical failure while computing the cost/residual/jacobian,
+// e.g. NaN, infinities etc. This is particularly useful since the
+// automatic differentiation code does computations that are not
+// evident to the user and can silently generate hard to debug errors.
+
+#ifndef CERES_INTERNAL_RESIDUAL_BLOCK_UTILS_H_
+#define CERES_INTERNAL_RESIDUAL_BLOCK_UTILS_H_
+
+#include <string>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+class ResidualBlock;
+
+// Fill the array x with an impossible value that the user code is
+// never expected to compute.
+void InvalidateArray(int size, double* x);
+
+// Check if all the entries of the array x are valid, i.e. all the
+// values in the array should be finite and none of them should be
+// equal to the "impossible" value used by InvalidateArray.
+bool IsArrayValid(int size, const double* x);
+
+// Invalidate cost, resdual and jacobian arrays (if not NULL).
+void InvalidateEvaluation(const ResidualBlock& block,
+                          double* cost,
+                          double* residuals,
+                          double** jacobians);
+
+// Check if any of the arrays cost, residuals or jacobians contains an
+// NaN, return true if it does.
+bool IsEvaluationValid(const ResidualBlock& block,
+                       double const* const* parameters,
+                       double* cost,
+                       double* residuals,
+                       double** jacobians);
+
+// Create a string representation of the Residual block containing the
+// value of the parameters, residuals and jacobians if present.
+// Useful for debugging output.
+string EvaluationToString(const ResidualBlock& block,
+                          double const* const* parameters,
+                          double* cost,
+                          double* residuals,
+                          double** jacobians);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_RESIDUAL_BLOCK_UTILS_H_
diff --git a/internal/ceres/residual_block_utils_test.cc b/internal/ceres/residual_block_utils_test.cc
new file mode 100644
index 0000000..33a017e
--- /dev/null
+++ b/internal/ceres/residual_block_utils_test.cc
@@ -0,0 +1,180 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <cmath>
+
+#include "gtest/gtest.h"
+#include "ceres/parameter_block.h"
+#include "ceres/residual_block.h"
+#include "ceres/residual_block_utils.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/sized_cost_function.h"
+
+namespace ceres {
+namespace internal {
+
+// Routine to check if ResidualBlock::Evaluate for unary CostFunction
+// with one residual succeeds with true or dies.
+void CheckEvaluation(const CostFunction& cost_function, bool is_good) {
+  double x = 1.0;
+  ParameterBlock parameter_block(&x, 1);
+  vector<ParameterBlock*> parameter_blocks;
+  parameter_blocks.push_back(&parameter_block);
+
+  ResidualBlock residual_block(&cost_function,
+                               NULL,
+                               parameter_blocks);
+
+  scoped_array<double> scratch(
+      new double[residual_block.NumScratchDoublesForEvaluate()]);
+
+  double cost;
+  double residuals;
+  double jacobian;
+  double* jacobians[] = { &jacobian };
+
+  EXPECT_EQ(residual_block.Evaluate(&cost,
+                                    &residuals,
+                                    jacobians,
+                                    scratch.get()), is_good);
+}
+
+// A CostFunction that behaves normaly, i.e., it computes numerically
+// valid residuals and jacobians.
+class GoodCostFunction: public SizedCostFunction<1, 1> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    residuals[0] = 1;
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      jacobians[0][0] = 0.0;
+    }
+    return true;
+  }
+};
+
+// The following four CostFunctions simulate the different ways in
+// which user code can cause ResidualBlock::Evaluate to fail.
+class NoResidualUpdateCostFunction: public SizedCostFunction<1, 1> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    // Forget to update the residuals.
+    // residuals[0] = 1;
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      jacobians[0][0] = 0.0;
+    }
+    return true;
+  }
+};
+
+class NoJacobianUpdateCostFunction: public SizedCostFunction<1, 1> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    residuals[0] = 1;
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      // Forget to update the jacobians.
+      // jacobians[0][0] = 0.0;
+    }
+    return true;
+  }
+};
+
+class BadResidualCostFunction: public SizedCostFunction<1, 1> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    residuals[0] = 1.0/0.0;
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      jacobians[0][0] = 0.0;
+    }
+    return true;
+  }
+};
+
+class BadJacobianCostFunction: public SizedCostFunction<1, 1> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    residuals[0] = 1.0;
+    if (jacobians != NULL && jacobians[0] != NULL) {
+      jacobians[0][0] = 1.0/0.0;
+    }
+    return true;
+  }
+};
+
+TEST(ResidualBlockUtils, IsArrayValid) {
+  double x[3];
+  x[0] = 0.0;
+  x[1] = 1.0;
+  x[2] = 2.0;
+  EXPECT_TRUE(IsArrayValid(3, x));
+  x[1] = 1.0/0.0;
+  EXPECT_FALSE(IsArrayValid(3, x));
+  x[1] = 0.0/0.0;
+  EXPECT_FALSE(IsArrayValid(3, x));
+  EXPECT_TRUE(IsArrayValid(1, NULL));
+  InvalidateArray(3, x);
+  EXPECT_FALSE(IsArrayValid(3, x));
+}
+
+// Note: It is preferable to write the below test as:
+//
+//  CheckEvaluation(GoodCostFunction(), true);
+//  CheckEvaluation(NoResidualUpdateCostFunction(), false);
+//  CheckEvaluation(NoJacobianUpdateCostFunction(), false);
+//  ...
+//
+// however, there is a bug in the version of GCC on Mac OS X we tested, which
+// requires the objects get put into local variables instead of getting
+// instantiated on the stack.
+TEST(ResidualBlockUtils, CheckAllCombinationsOfBadness) {
+  GoodCostFunction good_fun;
+  CheckEvaluation(good_fun, true);
+  NoResidualUpdateCostFunction no_residual;
+  CheckEvaluation(no_residual, false);
+  NoJacobianUpdateCostFunction no_jacobian;
+  CheckEvaluation(no_jacobian, false);
+  BadResidualCostFunction bad_residual;
+  CheckEvaluation(bad_residual, false);
+  BadJacobianCostFunction bad_jacobian;
+  CheckEvaluation(bad_jacobian, false);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/rotation_test.cc b/internal/ceres/rotation_test.cc
new file mode 100644
index 0000000..a8351d5
--- /dev/null
+++ b/internal/ceres/rotation_test.cc
@@ -0,0 +1,922 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <cmath>
+#include <limits>
+#include <string>
+
+#include <glog/logging.h>
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+#include "ceres/test_util.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+#include "ceres/jet.h"
+#include "ceres/rotation.h"
+
+namespace ceres {
+namespace internal {
+
+double RandDouble() {
+  double r = rand();
+  return r / RAND_MAX;
+}
+
+// A tolerance value for floating-point comparisons.
+static double const kTolerance = numeric_limits<double>::epsilon() * 10;
+
+// Looser tolerance used for for numerically unstable conversions.
+static double const kLooseTolerance = 1e-9;;
+
+// Use as:
+// double quaternion[4];
+// EXPECT_THAT(quaternion, IsNormalizedQuaternion());
+MATCHER(IsNormalizedQuaternion, "") {
+  if (arg == NULL) {
+    *result_listener << "Null quaternion";
+    return false;
+  }
+
+  double norm2 = arg[0] * arg[0] + arg[1] * arg[1] +
+      arg[2] * arg[2] + arg[3] * arg[3];
+  if (fabs(norm2 - 1.0) > kTolerance) {
+    *result_listener << "squared norm is " << norm2;
+    return false;
+  }
+
+  return true;
+}
+
+// Use as:
+// double expected_quaternion[4];
+// double actual_quaternion[4];
+// EXPECT_THAT(actual_quaternion, IsNearQuaternion(expected_quaternion));
+MATCHER_P(IsNearQuaternion, expected, "") {
+  if (arg == NULL) {
+    *result_listener << "Null quaternion";
+    return false;
+  }
+
+  for (int i = 0; i < 4; i++) {
+    if (fabs(arg[i] - expected[i]) > kTolerance) {
+      *result_listener << "component " << i << " should be " << expected[i];
+      return false;
+    }
+  }
+
+  return true;
+}
+
+// Use as:
+// double expected_axis_angle[4];
+// double actual_axis_angle[4];
+// EXPECT_THAT(actual_axis_angle, IsNearAngleAxis(expected_axis_angle));
+MATCHER_P(IsNearAngleAxis, expected, "") {
+  if (arg == NULL) {
+    *result_listener << "Null axis/angle";
+    return false;
+  }
+
+  for (int i = 0; i < 3; i++) {
+    if (fabs(arg[i] - expected[i]) > kTolerance) {
+      *result_listener << "component " << i << " should be " << expected[i];
+      return false;
+    }
+  }
+
+  return true;
+}
+
+// Use as:
+// double matrix[9];
+// EXPECT_THAT(matrix, IsOrthonormal());
+MATCHER(IsOrthonormal, "") {
+  if (arg == NULL) {
+    *result_listener << "Null matrix";
+    return false;
+  }
+
+  for (int c1 = 0; c1 < 3; c1++) {
+    for (int c2 = 0; c2 < 3; c2++) {
+      double v = 0;
+      for (int i = 0; i < 3; i++) {
+        v += arg[i + 3 * c1] * arg[i + 3 * c2];
+      }
+      double expected = (c1 == c2) ? 1 : 0;
+      if (fabs(expected - v) > kTolerance) {
+        *result_listener << "Columns " << c1 << " and " << c2
+                         << " should have dot product " << expected
+                         << " but have " << v;
+        return false;
+      }
+    }
+  }
+
+  return true;
+}
+
+// Use as:
+// double matrix1[9];
+// double matrix2[9];
+// EXPECT_THAT(matrix1, IsNear3x3Matrix(matrix2));
+MATCHER_P(IsNear3x3Matrix, expected, "") {
+  if (arg == NULL) {
+    *result_listener << "Null matrix";
+    return false;
+  }
+
+  for (int i = 0; i < 9; i++) {
+    if (fabs(arg[i] - expected[i]) > kTolerance) {
+      *result_listener << "component " << i << " should be " << expected[i];
+      return false;
+    }
+  }
+
+  return true;
+}
+
+// Transforms a zero axis/angle to a quaternion.
+TEST(Rotation, ZeroAngleAxisToQuaternion) {
+  double axis_angle[3] = { 0, 0, 0 };
+  double quaternion[4];
+  double expected[4] = { 1, 0, 0, 0 };
+  AngleAxisToQuaternion(axis_angle, quaternion);
+  EXPECT_THAT(quaternion, IsNormalizedQuaternion());
+  EXPECT_THAT(quaternion, IsNearQuaternion(expected));
+}
+
+// Test that exact conversion works for small angles.
+TEST(Rotation, SmallAngleAxisToQuaternion) {
+  // Small, finite value to test.
+  double theta = 1.0e-2;
+  double axis_angle[3] = { theta, 0, 0 };
+  double quaternion[4];
+  double expected[4] = { cos(theta/2), sin(theta/2.0), 0, 0 };
+  AngleAxisToQuaternion(axis_angle, quaternion);
+  EXPECT_THAT(quaternion, IsNormalizedQuaternion());
+  EXPECT_THAT(quaternion, IsNearQuaternion(expected));
+}
+
+// Test that approximate conversion works for very small angles.
+TEST(Rotation, TinyAngleAxisToQuaternion) {
+  // Very small value that could potentially cause underflow.
+  double theta = pow(numeric_limits<double>::min(), 0.75);
+  double axis_angle[3] = { theta, 0, 0 };
+  double quaternion[4];
+  double expected[4] = { cos(theta/2), sin(theta/2.0), 0, 0 };
+  AngleAxisToQuaternion(axis_angle, quaternion);
+  EXPECT_THAT(quaternion, IsNormalizedQuaternion());
+  EXPECT_THAT(quaternion, IsNearQuaternion(expected));
+}
+
+// Transforms a rotation by pi/2 around X to a quaternion.
+TEST(Rotation, XRotationToQuaternion) {
+  double axis_angle[3] = { M_PI / 2, 0, 0 };
+  double quaternion[4];
+  double expected[4] = { M_SQRT1_2, M_SQRT1_2, 0, 0 };
+  AngleAxisToQuaternion(axis_angle, quaternion);
+  EXPECT_THAT(quaternion, IsNormalizedQuaternion());
+  EXPECT_THAT(quaternion, IsNearQuaternion(expected));
+}
+
+// Transforms a unit quaternion to an axis angle.
+TEST(Rotation, UnitQuaternionToAngleAxis) {
+  double quaternion[4] = { 1, 0, 0, 0 };
+  double axis_angle[3];
+  double expected[3] = { 0, 0, 0 };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected));
+}
+
+// Transforms a quaternion that rotates by pi about the Y axis to an axis angle.
+TEST(Rotation, YRotationQuaternionToAngleAxis) {
+  double quaternion[4] = { 0, 0, 1, 0 };
+  double axis_angle[3];
+  double expected[3] = { 0, M_PI, 0 };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected));
+}
+
+// Transforms a quaternion that rotates by pi/3 about the Z axis to an axis
+// angle.
+TEST(Rotation, ZRotationQuaternionToAngleAxis) {
+  double quaternion[4] = { sqrt(3) / 2, 0, 0, 0.5 };
+  double axis_angle[3];
+  double expected[3] = { 0, 0, M_PI / 3 };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected));
+}
+
+// Test that exact conversion works for small angles.
+TEST(Rotation, SmallQuaternionToAngleAxis) {
+  // Small, finite value to test.
+  double theta = 1.0e-2;
+  double quaternion[4] = { cos(theta/2), sin(theta/2.0), 0, 0 };
+  double axis_angle[3];
+  double expected[3] = { theta, 0, 0 };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected));
+}
+
+// Test that approximate conversion works for very small angles.
+TEST(Rotation, TinyQuaternionToAngleAxis) {
+  // Very small value that could potentially cause underflow.
+  double theta = pow(numeric_limits<double>::min(), 0.75);
+  double quaternion[4] = { cos(theta/2), sin(theta/2.0), 0, 0 };
+  double axis_angle[3];
+  double expected[3] = { theta, 0, 0 };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected));
+}
+
+static const int kNumTrials = 10000;
+
+// Takes a bunch of random axis/angle values, converts them to quaternions,
+// and back again.
+TEST(Rotation, AngleAxisToQuaterionAndBack) {
+  srand(5);
+  for (int i = 0; i < kNumTrials; i++) {
+    double axis_angle[3];
+    // Make an axis by choosing three random numbers in [-1, 1) and
+    // normalizing.
+    double norm = 0;
+    for (int i = 0; i < 3; i++) {
+      axis_angle[i] = RandDouble() * 2 - 1;
+      norm += axis_angle[i] * axis_angle[i];
+    }
+    norm = sqrt(norm);
+
+    // Angle in [-pi, pi).
+    double theta = M_PI * 2 * RandDouble() - M_PI;
+    for (int i = 0; i < 3; i++) {
+      axis_angle[i] = axis_angle[i] * theta / norm;
+    }
+
+    double quaternion[4];
+    double round_trip[3];
+    // We use ASSERTs here because if there's one failure, there are
+    // probably many and spewing a million failures doesn't make anyone's
+    // day.
+    AngleAxisToQuaternion(axis_angle, quaternion);
+    ASSERT_THAT(quaternion, IsNormalizedQuaternion());
+    QuaternionToAngleAxis(quaternion, round_trip);
+    ASSERT_THAT(round_trip, IsNearAngleAxis(axis_angle));
+  }
+}
+
+// Takes a bunch of random quaternions, converts them to axis/angle,
+// and back again.
+TEST(Rotation, QuaterionToAngleAxisAndBack) {
+  srand(5);
+  for (int i = 0; i < kNumTrials; i++) {
+    double quaternion[4];
+    // Choose four random numbers in [-1, 1) and normalize.
+    double norm = 0;
+    for (int i = 0; i < 4; i++) {
+      quaternion[i] = RandDouble() * 2 - 1;
+      norm += quaternion[i] * quaternion[i];
+    }
+    norm = sqrt(norm);
+
+    for (int i = 0; i < 4; i++) {
+      quaternion[i] = quaternion[i] / norm;
+    }
+
+    double axis_angle[3];
+    double round_trip[4];
+    QuaternionToAngleAxis(quaternion, axis_angle);
+    AngleAxisToQuaternion(axis_angle, round_trip);
+    ASSERT_THAT(round_trip, IsNormalizedQuaternion());
+    ASSERT_THAT(round_trip, IsNearQuaternion(quaternion));
+  }
+}
+
+// Transforms a zero axis/angle to a rotation matrix.
+TEST(Rotation, ZeroAngleAxisToRotationMatrix) {
+  double axis_angle[3] = { 0, 0, 0 };
+  double matrix[9];
+  double expected[9] = { 1, 0, 0, 0, 1, 0, 0, 0, 1 };
+  AngleAxisToRotationMatrix(axis_angle, matrix);
+  EXPECT_THAT(matrix, IsOrthonormal());
+  EXPECT_THAT(matrix, IsNear3x3Matrix(expected));
+}
+
+TEST(Rotation, NearZeroAngleAxisToRotationMatrix) {
+  double axis_angle[3] = { 1e-24, 2e-24, 3e-24 };
+  double matrix[9];
+  double expected[9] = { 1, 0, 0, 0, 1, 0, 0, 0, 1 };
+  AngleAxisToRotationMatrix(axis_angle, matrix);
+  EXPECT_THAT(matrix, IsOrthonormal());
+  EXPECT_THAT(matrix, IsNear3x3Matrix(expected));
+}
+
+// Transforms a rotation by pi/2 around X to a rotation matrix and back.
+TEST(Rotation, XRotationToRotationMatrix) {
+  double axis_angle[3] = { M_PI / 2, 0, 0 };
+  double matrix[9];
+  // The rotation matrices are stored column-major.
+  double expected[9] = { 1, 0, 0, 0, 0, 1, 0, -1, 0 };
+  AngleAxisToRotationMatrix(axis_angle, matrix);
+  EXPECT_THAT(matrix, IsOrthonormal());
+  EXPECT_THAT(matrix, IsNear3x3Matrix(expected));
+  double round_trip[3];
+  RotationMatrixToAngleAxis(matrix, round_trip);
+  EXPECT_THAT(round_trip, IsNearAngleAxis(axis_angle));
+}
+
+// Transforms an axis angle that rotates by pi about the Y axis to a
+// rotation matrix and back.
+TEST(Rotation, YRotationToRotationMatrix) {
+  double axis_angle[3] = { 0, M_PI, 0 };
+  double matrix[9];
+  double expected[9] = { -1, 0, 0, 0, 1, 0, 0, 0, -1 };
+  AngleAxisToRotationMatrix(axis_angle, matrix);
+  EXPECT_THAT(matrix, IsOrthonormal());
+  EXPECT_THAT(matrix, IsNear3x3Matrix(expected));
+
+  double round_trip[3];
+  RotationMatrixToAngleAxis(matrix, round_trip);
+  EXPECT_THAT(round_trip, IsNearAngleAxis(axis_angle));
+}
+
+TEST(Rotation, NearPiAngleAxisRoundTrip) {
+  double in_axis_angle[3];
+  double matrix[9];
+  double out_axis_angle[3];
+
+  srand(5);
+  for (int i = 0; i < kNumTrials; i++) {
+    // Make an axis by choosing three random numbers in [-1, 1) and
+    // normalizing.
+    double norm = 0;
+    for (int i = 0; i < 3; i++) {
+      in_axis_angle[i] = RandDouble() * 2 - 1;
+      norm += in_axis_angle[i] * in_axis_angle[i];
+    }
+    norm = sqrt(norm);
+
+    // Angle in [pi - kMaxSmallAngle, pi).
+    const double kMaxSmallAngle = 1e-2;
+    double theta = M_PI - kMaxSmallAngle * RandDouble();
+
+    for (int i = 0; i < 3; i++) {
+      in_axis_angle[i] *= (theta / norm);
+    }
+    AngleAxisToRotationMatrix(in_axis_angle, matrix);
+    RotationMatrixToAngleAxis(matrix, out_axis_angle);
+
+    for (int i = 0; i < 3; ++i) {
+      EXPECT_NEAR(out_axis_angle[i], in_axis_angle[i], kLooseTolerance);
+    }
+  }
+}
+
+TEST(Rotation, AtPiAngleAxisRoundTrip) {
+  // A rotation of M_PI about the X axis;
+  static const double kMatrix[3][3] = {
+    {1.0,  0.0,  0.0},
+    {0.0,  -1.0,  0.0},
+    {0.0,  0.0,  -1.0}
+  };
+
+  double in_matrix[9];
+  // Fill it from kMatrix in col-major order.
+  for (int j = 0, k = 0; j < 3; ++j) {
+     for (int i = 0; i < 3; ++i, ++k) {
+       in_matrix[k] = kMatrix[i][j];
+     }
+  }
+
+  const double expected_axis_angle[3] = { M_PI, 0, 0 };
+
+  double out_matrix[9];
+  double axis_angle[3];
+  RotationMatrixToAngleAxis(in_matrix, axis_angle);
+  AngleAxisToRotationMatrix(axis_angle, out_matrix);
+
+  LOG(INFO) << "AngleAxis = " << axis_angle[0] << " " << axis_angle[1]
+            << " " << axis_angle[2];
+  LOG(INFO) << "Expected AngleAxis = " << M_PI << " 0 0";
+  double out_rowmajor[3][3];
+  for (int j = 0, k = 0; j < 3; ++j) {
+    for (int i = 0; i < 3; ++i, ++k) {
+      out_rowmajor[i][j] = out_matrix[k];
+    }
+  }
+  LOG(INFO) << "Rotation:";
+  LOG(INFO) << "EXPECTED      |        ACTUAL";
+  for (int i = 0; i < 3; ++i) {
+    string line;
+    for (int j = 0; j < 3; ++j) {
+      StringAppendF(&line, "%g ", kMatrix[i][j]);
+    }
+    line += "         |        ";
+    for (int j = 0; j < 3; ++j) {
+      StringAppendF(&line, "%g ", out_rowmajor[i][j]);
+    }
+    LOG(INFO) << line;
+  }
+
+  EXPECT_THAT(axis_angle, IsNearAngleAxis(expected_axis_angle));
+  EXPECT_THAT(out_matrix, IsNear3x3Matrix(in_matrix));
+}
+
+// Transforms an axis angle that rotates by pi/3 about the Z axis to a
+// rotation matrix.
+TEST(Rotation, ZRotationToRotationMatrix) {
+  double axis_angle[3] =  { 0, 0, M_PI / 3 };
+  double matrix[9];
+  // This is laid-out row-major on the screen but is actually stored
+  // column-major.
+  double expected[9] = { 0.5, sqrt(3) / 2, 0,   // Column 1
+                         -sqrt(3) / 2, 0.5, 0,  // Column 2
+                         0, 0, 1 };             // Column 3
+  AngleAxisToRotationMatrix(axis_angle, matrix);
+  EXPECT_THAT(matrix, IsOrthonormal());
+  EXPECT_THAT(matrix, IsNear3x3Matrix(expected));
+  double round_trip[3];
+  RotationMatrixToAngleAxis(matrix, round_trip);
+  EXPECT_THAT(round_trip, IsNearAngleAxis(axis_angle));
+}
+
+// Takes a bunch of random axis/angle values, converts them to rotation
+// matrices, and back again.
+TEST(Rotation, AngleAxisToRotationMatrixAndBack) {
+  srand(5);
+  for (int i = 0; i < kNumTrials; i++) {
+    double axis_angle[3];
+    // Make an axis by choosing three random numbers in [-1, 1) and
+    // normalizing.
+    double norm = 0;
+    for (int i = 0; i < 3; i++) {
+      axis_angle[i] = RandDouble() * 2 - 1;
+      norm += axis_angle[i] * axis_angle[i];
+    }
+    norm = sqrt(norm);
+
+    // Angle in [-pi, pi).
+    double theta = M_PI * 2 * RandDouble() - M_PI;
+    for (int i = 0; i < 3; i++) {
+      axis_angle[i] = axis_angle[i] * theta / norm;
+    }
+
+    double matrix[9];
+    double round_trip[3];
+    AngleAxisToRotationMatrix(axis_angle, matrix);
+    ASSERT_THAT(matrix, IsOrthonormal());
+    RotationMatrixToAngleAxis(matrix, round_trip);
+
+    for (int i = 0; i < 3; ++i) {
+      EXPECT_NEAR(round_trip[i], axis_angle[i], kLooseTolerance);
+    }
+  }
+}
+
+// Transposes a 3x3 matrix.
+static void Transpose3x3(double m[9]) {
+  std::swap(m[1], m[3]);
+  std::swap(m[2], m[6]);
+  std::swap(m[5], m[7]);
+}
+
+// Convert Euler angles from radians to degrees.
+static void ToDegrees(double ea[3]) {
+  for (int i = 0; i < 3; ++i)
+    ea[i] *= 180.0 / M_PI;
+}
+
+// Compare the 3x3 rotation matrices produced by the axis-angle
+// rotation 'aa' and the Euler angle rotation 'ea' (in radians).
+static void CompareEulerToAngleAxis(double aa[3], double ea[3]) {
+  double aa_matrix[9];
+  AngleAxisToRotationMatrix(aa, aa_matrix);
+  Transpose3x3(aa_matrix);  // Column to row major order.
+
+  double ea_matrix[9];
+  ToDegrees(ea);  // Radians to degrees.
+  const int kRowStride = 3;
+  EulerAnglesToRotationMatrix(ea, kRowStride, ea_matrix);
+
+  EXPECT_THAT(aa_matrix, IsOrthonormal());
+  EXPECT_THAT(ea_matrix, IsOrthonormal());
+  EXPECT_THAT(ea_matrix, IsNear3x3Matrix(aa_matrix));
+}
+
+// Test with rotation axis along the x/y/z axes.
+// Also test zero rotation.
+TEST(EulerAnglesToRotationMatrix, OnAxis) {
+  int n_tests = 0;
+  for (double x = -1.0; x <= 1.0; x += 1.0) {
+    for (double y = -1.0; y <= 1.0; y += 1.0) {
+      for (double z = -1.0; z <= 1.0; z += 1.0) {
+        if ((x != 0) + (y != 0) + (z != 0) > 1)
+          continue;
+        double axis_angle[3] = {x, y, z};
+        double euler_angles[3] = {x, y, z};
+        CompareEulerToAngleAxis(axis_angle, euler_angles);
+        ++n_tests;
+      }
+    }
+  }
+  CHECK_EQ(7, n_tests);
+}
+
+// Test that a random rotation produces an orthonormal rotation
+// matrix.
+TEST(EulerAnglesToRotationMatrix, IsOrthonormal) {
+  srand(5);
+  for (int trial = 0; trial < kNumTrials; ++trial) {
+    double ea[3];
+    for (int i = 0; i < 3; ++i)
+      ea[i] = 360.0 * (RandDouble() * 2.0 - 1.0);
+    double ea_matrix[9];
+    ToDegrees(ea);  // Radians to degrees.
+    EulerAnglesToRotationMatrix(ea, 3, ea_matrix);
+    EXPECT_THAT(ea_matrix, IsOrthonormal());
+  }
+}
+
+// Tests using Jets for specific behavior involving auto differentiation
+// near singularity points.
+
+typedef Jet<double, 3> J3;
+typedef Jet<double, 4> J4;
+
+J3 MakeJ3(double a, double v0, double v1, double v2) {
+  J3 j;
+  j.a = a;
+  j.v[0] = v0;
+  j.v[1] = v1;
+  j.v[2] = v2;
+  return j;
+}
+
+J4 MakeJ4(double a, double v0, double v1, double v2, double v3) {
+  J4 j;
+  j.a = a;
+  j.v[0] = v0;
+  j.v[1] = v1;
+  j.v[2] = v2;
+  j.v[3] = v3;
+  return j;
+}
+
+
+bool IsClose(double x, double y) {
+  EXPECT_FALSE(isnan(x));
+  EXPECT_FALSE(isnan(y));
+  double absdiff = fabs(x - y);
+  if (x == 0 || y == 0) {
+    return absdiff <= kTolerance;
+  }
+  double reldiff = absdiff / max(fabs(x), fabs(y));
+  return reldiff <= kTolerance;
+}
+
+template <int N>
+bool IsClose(const Jet<double, N> &x, const Jet<double, N> &y) {
+  if (IsClose(x.a, y.a)) {
+    for (int i = 0; i < N; i++) {
+      if (!IsClose(x.v[i], y.v[i])) {
+        return false;
+      }
+    }
+  }
+  return true;
+}
+
+template <int M, int N>
+void ExpectJetArraysClose(const Jet<double, N> *x, const Jet<double, N> *y) {
+  for (int i = 0; i < M; i++) {
+    if (!IsClose(x[i], y[i])) {
+      LOG(ERROR) << "Jet " << i << "/" << M << " not equal";
+      LOG(ERROR) << "x[" << i << "]: " << x[i];
+      LOG(ERROR) << "y[" << i << "]: " << y[i];
+      Jet<double, N> d, zero;
+      d.a = y[i].a - x[i].a;
+      for (int j = 0; j < N; j++) {
+        d.v[j] = y[i].v[j] - x[i].v[j];
+      }
+      LOG(ERROR) << "diff: " << d;
+      EXPECT_TRUE(IsClose(x[i], y[i]));
+    }
+  }
+}
+
+// Log-10 of a value well below machine precision.
+static const int kSmallTinyCutoff =
+    static_cast<int>(2 * log(numeric_limits<double>::epsilon())/log(10.0));
+
+// Log-10 of a value just below values representable by double.
+static const int kTinyZeroLimit   =
+    static_cast<int>(1 + log(numeric_limits<double>::min())/log(10.0));
+
+// Test that exact conversion works for small angles when jets are used.
+TEST(Rotation, SmallAngleAxisToQuaternionForJets) {
+  // Examine small x rotations that are still large enough
+  // to be well within the range represented by doubles.
+  for (int i = -2; i >= kSmallTinyCutoff; i--) {
+    double theta = pow(10.0, i);
+    J3 axis_angle[3] = { J3(theta, 0), J3(0, 1), J3(0, 2) };
+    J3 quaternion[4];
+    J3 expected[4] = {
+        MakeJ3(cos(theta/2), -sin(theta/2)/2, 0, 0),
+        MakeJ3(sin(theta/2), cos(theta/2)/2, 0, 0),
+        MakeJ3(0, 0, sin(theta/2)/theta, 0),
+        MakeJ3(0, 0, 0, sin(theta/2)/theta),
+    };
+    AngleAxisToQuaternion(axis_angle, quaternion);
+    ExpectJetArraysClose<4, 3>(quaternion, expected);
+  }
+}
+
+
+// Test that conversion works for very small angles when jets are used.
+TEST(Rotation, TinyAngleAxisToQuaternionForJets) {
+  // Examine tiny x rotations that extend all the way to where
+  // underflow occurs.
+  for (int i = kSmallTinyCutoff; i >= kTinyZeroLimit; i--) {
+    double theta = pow(10.0, i);
+    J3 axis_angle[3] = { J3(theta, 0), J3(0, 1), J3(0, 2) };
+    J3 quaternion[4];
+    // To avoid loss of precision in the test itself,
+    // a finite expansion is used here, which will
+    // be exact up to machine precision for the test values used.
+    J3 expected[4] = {
+        MakeJ3(1.0, 0, 0, 0),
+        MakeJ3(0, 0.5, 0, 0),
+        MakeJ3(0, 0, 0.5, 0),
+        MakeJ3(0, 0, 0, 0.5),
+    };
+    AngleAxisToQuaternion(axis_angle, quaternion);
+    ExpectJetArraysClose<4, 3>(quaternion, expected);
+  }
+}
+
+// Test that derivatives are correct for zero rotation.
+TEST(Rotation, ZeroAngleAxisToQuaternionForJets) {
+  J3 axis_angle[3] = { J3(0, 0), J3(0, 1), J3(0, 2) };
+  J3 quaternion[4];
+  J3 expected[4] = {
+      MakeJ3(1.0, 0, 0, 0),
+      MakeJ3(0, 0.5, 0, 0),
+      MakeJ3(0, 0, 0.5, 0),
+      MakeJ3(0, 0, 0, 0.5),
+  };
+  AngleAxisToQuaternion(axis_angle, quaternion);
+  ExpectJetArraysClose<4, 3>(quaternion, expected);
+}
+
+// Test that exact conversion works for small angles.
+TEST(Rotation, SmallQuaternionToAngleAxisForJets) {
+  // Examine small x rotations that are still large enough
+  // to be well within the range represented by doubles.
+  for (int i = -2; i >= kSmallTinyCutoff; i--) {
+    double theta = pow(10.0, i);
+    double s = sin(theta);
+    double c = cos(theta);
+    J4 quaternion[4] = { J4(c, 0), J4(s, 1), J4(0, 2), J4(0, 3) };
+    J4 axis_angle[3];
+    J4 expected[3] = {
+        MakeJ4(s, -2*theta, 2*theta*c, 0, 0),
+        MakeJ4(0, 0, 0, 2*theta/s, 0),
+        MakeJ4(0, 0, 0, 0, 2*theta/s),
+    };
+    QuaternionToAngleAxis(quaternion, axis_angle);
+    ExpectJetArraysClose<3, 4>(axis_angle, expected);
+  }
+}
+
+// Test that conversion works for very small angles.
+TEST(Rotation, TinyQuaternionToAngleAxisForJets) {
+  // Examine tiny x rotations that extend all the way to where
+  // underflow occurs.
+  for (int i = kSmallTinyCutoff; i >= kTinyZeroLimit; i--) {
+    double theta = pow(10.0, i);
+    double s = sin(theta);
+    double c = cos(theta);
+    J4 quaternion[4] = { J4(c, 0), J4(s, 1), J4(0, 2), J4(0, 3) };
+    J4 axis_angle[3];
+    // To avoid loss of precision in the test itself,
+    // a finite expansion is used here, which will
+    // be exact up to machine precision for the test values used.
+    J4 expected[3] = {
+        MakeJ4(theta, -2*theta, 2.0, 0, 0),
+        MakeJ4(0, 0, 0, 2.0, 0),
+        MakeJ4(0, 0, 0, 0, 2.0),
+    };
+    QuaternionToAngleAxis(quaternion, axis_angle);
+    ExpectJetArraysClose<3, 4>(axis_angle, expected);
+  }
+}
+
+// Test that conversion works for no rotation.
+TEST(Rotation, ZeroQuaternionToAngleAxisForJets) {
+  J4 quaternion[4] = { J4(1, 0), J4(0, 1), J4(0, 2), J4(0, 3) };
+  J4 axis_angle[3];
+  J4 expected[3] = {
+      MakeJ4(0, 0, 2.0, 0, 0),
+      MakeJ4(0, 0, 0, 2.0, 0),
+      MakeJ4(0, 0, 0, 0, 2.0),
+  };
+  QuaternionToAngleAxis(quaternion, axis_angle);
+  ExpectJetArraysClose<3, 4>(axis_angle, expected);
+}
+
+TEST(Quaternion, RotatePointGivesSameAnswerAsRotationByMatrixCanned) {
+  // Canned data generated in octave.
+  double const q[4] = {
+    +0.1956830471754074,
+    -0.0150618562474847,
+    +0.7634572982788086,
+    -0.3019454777240753,
+  };
+  double const Q[3][3] = {  // Scaled rotation matrix.
+    { -0.6355194033477252,  0.0951730541682254,  0.3078870197911186 },
+    { -0.1411693904792992,  0.5297609702153905, -0.4551502574482019 },
+    { -0.2896955822708862, -0.4669396571547050, -0.4536309793389248 },
+  };
+  double const R[3][3] = {  // With unit rows and columns.
+    { -0.8918859164053080,  0.1335655625725649,  0.4320876677394745 },
+    { -0.1981166751680096,  0.7434648665444399, -0.6387564287225856 },
+    { -0.4065578619806013, -0.6553016349046693, -0.6366242786393164 },
+  };
+
+  // Compute R from q and compare to known answer.
+  double Rq[3][3];
+  QuaternionToScaledRotation<double>(q, Rq[0]);
+  ExpectArraysClose(9, Q[0], Rq[0], kTolerance);
+
+  // Now do the same but compute R with normalization.
+  QuaternionToRotation<double>(q, Rq[0]);
+  ExpectArraysClose(9, R[0], Rq[0], kTolerance);
+}
+
+
+TEST(Quaternion, RotatePointGivesSameAnswerAsRotationByMatrix) {
+  // Rotation defined by a unit quaternion.
+  double const q[4] = {
+    0.2318160216097109,
+    -0.0178430356832060,
+    0.9044300776717159,
+    -0.3576998641394597,
+  };
+  double const p[3] = {
+    +0.11,
+    -13.15,
+    1.17,
+  };
+
+  double R[3 * 3];
+  QuaternionToRotation(q, R);
+
+  double result1[3];
+  UnitQuaternionRotatePoint(q, p, result1);
+
+  double result2[3];
+  VectorRef(result2, 3) = ConstMatrixRef(R, 3, 3)* ConstVectorRef(p, 3);
+  ExpectArraysClose(3, result1, result2, kTolerance);
+}
+
+
+// Verify that (a * b) * c == a * (b * c).
+TEST(Quaternion, MultiplicationIsAssociative) {
+  double a[4];
+  double b[4];
+  double c[4];
+  for (int i = 0; i < 4; ++i) {
+    a[i] = 2 * RandDouble() - 1;
+    b[i] = 2 * RandDouble() - 1;
+    c[i] = 2 * RandDouble() - 1;
+  }
+
+  double ab[4];
+  double ab_c[4];
+  QuaternionProduct(a, b, ab);
+  QuaternionProduct(ab, c, ab_c);
+
+  double bc[4];
+  double a_bc[4];
+  QuaternionProduct(b, c, bc);
+  QuaternionProduct(a, bc, a_bc);
+
+  ASSERT_NEAR(ab_c[0], a_bc[0], kTolerance);
+  ASSERT_NEAR(ab_c[1], a_bc[1], kTolerance);
+  ASSERT_NEAR(ab_c[2], a_bc[2], kTolerance);
+  ASSERT_NEAR(ab_c[3], a_bc[3], kTolerance);
+}
+
+
+TEST(AngleAxis, RotatePointGivesSameAnswerAsRotationMatrix) {
+  double angle_axis[3];
+  double R[9];
+  double p[3];
+  double angle_axis_rotated_p[3];
+  double rotation_matrix_rotated_p[3];
+
+  for (int i = 0; i < 10000; ++i) {
+    double theta = (2.0 * i * 0.0011 - 1.0) * M_PI;
+    for (int j = 0; j < 50; ++j) {
+      double norm2 = 0.0;
+      for (int k = 0; k < 3; ++k) {
+        angle_axis[k] = 2.0 * RandDouble() - 1.0;
+        p[k] = 2.0 * RandDouble() - 1.0;
+        norm2 = angle_axis[k] * angle_axis[k];
+      }
+
+      const double inv_norm = theta / sqrt(norm2);
+      for (int k = 0; k < 3; ++k) {
+        angle_axis[k] *= inv_norm;
+      }
+
+      AngleAxisToRotationMatrix(angle_axis, R);
+      rotation_matrix_rotated_p[0] = R[0] * p[0] + R[3] * p[1] + R[6] * p[2];
+      rotation_matrix_rotated_p[1] = R[1] * p[0] + R[4] * p[1] + R[7] * p[2];
+      rotation_matrix_rotated_p[2] = R[2] * p[0] + R[5] * p[1] + R[8] * p[2];
+
+      AngleAxisRotatePoint(angle_axis, p, angle_axis_rotated_p);
+      for (int k = 0; k < 3; ++k) {
+        EXPECT_NEAR(rotation_matrix_rotated_p[k],
+                    angle_axis_rotated_p[k],
+                    kTolerance) << "p: " << p[0]
+                                << " " << p[1]
+                                << " " << p[2]
+                                << " angle_axis: " << angle_axis[0]
+                                << " " << angle_axis[1]
+                                << " " << angle_axis[2];
+      }
+    }
+  }
+}
+
+TEST(AngleAxis, NearZeroRotatePointGivesSameAnswerAsRotationMatrix) {
+  double angle_axis[3];
+  double R[9];
+  double p[3];
+  double angle_axis_rotated_p[3];
+  double rotation_matrix_rotated_p[3];
+
+  for (int i = 0; i < 10000; ++i) {
+    double norm2 = 0.0;
+    for (int k = 0; k < 3; ++k) {
+      angle_axis[k] = 2.0 * RandDouble() - 1.0;
+      p[k] = 2.0 * RandDouble() - 1.0;
+      norm2 = angle_axis[k] * angle_axis[k];
+    }
+
+    double theta = (2.0 * i * 0.0001  - 1.0) * 1e-16;
+    const double inv_norm = theta / sqrt(norm2);
+    for (int k = 0; k < 3; ++k) {
+      angle_axis[k] *= inv_norm;
+    }
+
+    AngleAxisToRotationMatrix(angle_axis, R);
+    rotation_matrix_rotated_p[0] = R[0] * p[0] + R[3] * p[1] + R[6] * p[2];
+    rotation_matrix_rotated_p[1] = R[1] * p[0] + R[4] * p[1] + R[7] * p[2];
+    rotation_matrix_rotated_p[2] = R[2] * p[0] + R[5] * p[1] + R[8] * p[2];
+
+    AngleAxisRotatePoint(angle_axis, p, angle_axis_rotated_p);
+    for (int k = 0; k < 3; ++k) {
+      EXPECT_NEAR(rotation_matrix_rotated_p[k],
+                  angle_axis_rotated_p[k],
+                  kTolerance) << "p: " << p[0]
+                              << " " << p[1]
+                              << " " << p[2]
+                              << " angle_axis: " << angle_axis[0]
+                              << " " << angle_axis[1]
+                              << " " << angle_axis[2];
+    }
+  }
+}
+
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/runtime_numeric_diff_cost_function.cc b/internal/ceres/runtime_numeric_diff_cost_function.cc
new file mode 100644
index 0000000..ac6d8aa
--- /dev/null
+++ b/internal/ceres/runtime_numeric_diff_cost_function.cc
@@ -0,0 +1,218 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Based on the templated version in public/numeric_diff_cost_function.h.
+
+#include "ceres/runtime_numeric_diff_cost_function.h"
+
+#include <algorithm>
+#include <numeric>
+#include <vector>
+
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+bool EvaluateJacobianForParameterBlock(const CostFunction* function,
+                                       int parameter_block_size,
+                                       int parameter_block,
+                                       RuntimeNumericDiffMethod method,
+                                       double relative_step_size,
+                                       double const* residuals_at_eval_point,
+                                       double** parameters,
+                                       double** jacobians) {
+  using Eigen::Map;
+  using Eigen::Matrix;
+  using Eigen::Dynamic;
+  using Eigen::RowMajor;
+
+  typedef Matrix<double, Dynamic, 1> ResidualVector;
+  typedef Matrix<double, Dynamic, 1> ParameterVector;
+  typedef Matrix<double, Dynamic, Dynamic, RowMajor> JacobianMatrix;
+
+  int num_residuals = function->num_residuals();
+
+  Map<JacobianMatrix> parameter_jacobian(jacobians[parameter_block],
+                                         num_residuals,
+                                         parameter_block_size);
+
+  // Mutate one element at a time and then restore.
+  Map<ParameterVector> x_plus_delta(parameters[parameter_block],
+                                    parameter_block_size);
+  ParameterVector x(x_plus_delta);
+  ParameterVector step_size = x.array().abs() * relative_step_size;
+
+  // To handle cases where a paremeter is exactly zero, instead use the mean
+  // step_size for the other dimensions.
+  double fallback_step_size = step_size.sum() / step_size.rows();
+  if (fallback_step_size == 0.0) {
+    // If all the parameters are zero, there's no good answer. Use the given
+    // relative step_size as absolute step_size and hope for the best.
+    fallback_step_size = relative_step_size;
+  }
+
+  // For each parameter in the parameter block, use finite differences to
+  // compute the derivative for that parameter.
+  for (int j = 0; j < parameter_block_size; ++j) {
+    if (step_size(j) == 0.0) {
+      // The parameter is exactly zero, so compromise and use the mean step_size
+      // from the other parameters. This can break in many cases, but it's hard
+      // to pick a good number without problem specific knowledge.
+      step_size(j) = fallback_step_size;
+    }
+    x_plus_delta(j) = x(j) + step_size(j);
+
+    ResidualVector residuals(num_residuals);
+    if (!function->Evaluate(parameters, &residuals[0], NULL)) {
+      // Something went wrong; bail.
+      return false;
+    }
+
+    // Compute this column of the jacobian in 3 steps:
+    // 1. Store residuals for the forward part.
+    // 2. Subtract residuals for the backward (or 0) part.
+    // 3. Divide out the run.
+    parameter_jacobian.col(j) = residuals;
+
+    double one_over_h = 1 / step_size(j);
+    if (method == CENTRAL) {
+      // Compute the function on the other side of x(j).
+      x_plus_delta(j) = x(j) - step_size(j);
+
+      if (!function->Evaluate(parameters, &residuals[0], NULL)) {
+        // Something went wrong; bail.
+        return false;
+      }
+      parameter_jacobian.col(j) -= residuals;
+      one_over_h /= 2;
+    } else {
+      // Forward difference only; reuse existing residuals evaluation.
+      parameter_jacobian.col(j) -=
+          Map<const ResidualVector>(residuals_at_eval_point, num_residuals);
+    }
+    x_plus_delta(j) = x(j);  // Restore x_plus_delta.
+
+    // Divide out the run to get slope.
+    parameter_jacobian.col(j) *= one_over_h;
+  }
+  return true;
+}
+
+class RuntimeNumericDiffCostFunction : public CostFunction {
+ public:
+  RuntimeNumericDiffCostFunction(const CostFunction* function,
+                                 RuntimeNumericDiffMethod method,
+                                 double relative_step_size)
+      : function_(function),
+        method_(method),
+        relative_step_size_(relative_step_size) {
+    *mutable_parameter_block_sizes() = function->parameter_block_sizes();
+    set_num_residuals(function->num_residuals());
+  }
+
+  virtual ~RuntimeNumericDiffCostFunction() { }
+
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    // Get the function value (residuals) at the the point to evaluate.
+    bool success = function_->Evaluate(parameters, residuals, NULL);
+    if (!success) {
+      // Something went wrong; ignore the jacobian.
+      return false;
+    }
+    if (!jacobians) {
+      // Nothing to do; just forward.
+      return true;
+    }
+
+    const vector<int16>& block_sizes = function_->parameter_block_sizes();
+    CHECK(!block_sizes.empty());
+
+    // Create local space for a copy of the parameters which will get mutated.
+    int parameters_size = accumulate(block_sizes.begin(), block_sizes.end(), 0);
+    vector<double> parameters_copy(parameters_size);
+    vector<double*> parameters_references_copy(block_sizes.size());
+    parameters_references_copy[0] = &parameters_copy[0];
+    for (int block = 1; block < block_sizes.size(); ++block) {
+      parameters_references_copy[block] = parameters_references_copy[block - 1]
+          + block_sizes[block - 1];
+    }
+
+    // Copy the parameters into the local temp space.
+    for (int block = 0; block < block_sizes.size(); ++block) {
+      memcpy(parameters_references_copy[block],
+             parameters[block],
+             block_sizes[block] * sizeof(*parameters[block]));
+    }
+
+    for (int block = 0; block < block_sizes.size(); ++block) {
+      if (!jacobians[block]) {
+        // No jacobian requested for this parameter / residual pair.
+        continue;
+      }
+      if (!EvaluateJacobianForParameterBlock(function_,
+                                             block_sizes[block],
+                                             block,
+                                             method_,
+                                             relative_step_size_,
+                                             residuals,
+                                             &parameters_references_copy[0],
+                                             jacobians)) {
+        return false;
+      }
+    }
+    return true;
+  }
+
+ private:
+  const CostFunction* function_;
+  RuntimeNumericDiffMethod method_;
+  double relative_step_size_;
+};
+
+}  // namespace
+
+CostFunction* CreateRuntimeNumericDiffCostFunction(
+    const CostFunction* cost_function,
+    RuntimeNumericDiffMethod method,
+    double relative_step_size) {
+  return new RuntimeNumericDiffCostFunction(cost_function,
+                                            method,
+                                            relative_step_size);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/runtime_numeric_diff_cost_function.h b/internal/ceres/runtime_numeric_diff_cost_function.h
new file mode 100644
index 0000000..01b57f9
--- /dev/null
+++ b/internal/ceres/runtime_numeric_diff_cost_function.h
@@ -0,0 +1,87 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Create CostFunctions as needed by the least squares framework with jacobians
+// computed via numeric differentiation.
+//
+// To get a numerically differentiated cost function, define a subclass of
+// CostFunction such that the Evaluate() function ignores the jacobian
+// parameter. The numeric differentiation wrapper will fill in the jacobian
+// parameter if nececssary by repeatedly calling the Evaluate() function with
+// small changes to the appropriate parameters, and computing the slope. This
+// implementation is not templated (hence the "Runtime" prefix), which is a bit
+// slower than but is more convenient than the templated version in
+// numeric_diff_cost_function.h
+//
+// The numerically differentiated version of a cost function for a cost function
+// can be constructed as follows:
+//
+//   CostFunction* cost_function =
+//     CreateRuntimeNumericDiffCostFunction(new MyCostFunction(...),
+//                                          CENTRAL,
+//                                          TAKE_OWNERSHIP);
+//
+// The central difference method is considerably more accurate; consider using
+// to start and only after that works, trying forward difference.
+//
+// TODO(keir): Characterize accuracy; mention pitfalls; provide alternatives.
+
+#ifndef CERES_INTERNAL_RUNTIME_NUMERIC_DIFF_COST_FUNCTION_H_
+#define CERES_INTERNAL_RUNTIME_NUMERIC_DIFF_COST_FUNCTION_H_
+
+#include "ceres/cost_function.h"
+
+namespace ceres {
+namespace internal {
+
+enum RuntimeNumericDiffMethod {
+  CENTRAL,
+  FORWARD,
+};
+
+// Create a cost function that evaluates the derivative with finite differences.
+// The base cost_function's implementation of Evaluate() only needs to fill in
+// the "residuals" argument and not the "jacobians". Any data written to the
+// jacobians by the base cost_function is overwritten.
+//
+// Forward difference or central difference is selected with CENTRAL or FORWARD.
+// The relative eps, which determines the step size for forward and central
+// differencing, is set with relative eps. Caller owns the resulting cost
+// function, and the resulting cost function does not own the base cost
+// function.
+CostFunction *CreateRuntimeNumericDiffCostFunction(
+    const CostFunction *cost_function,
+    RuntimeNumericDiffMethod method,
+    double relative_eps);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_RUNTIME_NUMERIC_DIFF_COST_FUNCTION_H_
diff --git a/internal/ceres/runtime_numeric_diff_cost_function_test.cc b/internal/ceres/runtime_numeric_diff_cost_function_test.cc
new file mode 100644
index 0000000..6926d28
--- /dev/null
+++ b/internal/ceres/runtime_numeric_diff_cost_function_test.cc
@@ -0,0 +1,223 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Based on the tests in numeric_diff_cost_function.cc.
+//
+// TODO(keir): See about code duplication.
+
+#include "ceres/runtime_numeric_diff_cost_function.h"
+
+#include <algorithm>
+#include <cmath>
+#include <string>
+#include <vector>
+
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+#include "ceres/test_util.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+const double kRelativeEps = 1e-6;
+
+// y1 = x1'x2      -> dy1/dx1 = x2,               dy1/dx2 = x1
+// y2 = (x1'x2)^2  -> dy2/dx1 = 2 * x2 * (x1'x2), dy2/dx2 = 2 * x1 * (x1'x2)
+// y3 = x2'x2      -> dy3/dx1 = 0,                dy3/dx2 = 2 * x2
+class TestCostFunction : public CostFunction {
+ public:
+  TestCostFunction() {
+    set_num_residuals(3);
+    mutable_parameter_block_sizes()->push_back(5);  // x1.
+    mutable_parameter_block_sizes()->push_back(5);  // x2.
+  }
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    (void) jacobians;  // Ignored.
+
+    residuals[0] = residuals[1] = residuals[2] = 0;
+    for (int i = 0; i < 5; ++i) {
+      residuals[0] += parameters[0][i] * parameters[1][i];
+      residuals[2] += parameters[1][i] * parameters[1][i];
+    }
+    residuals[1] = residuals[0] * residuals[0];
+    return true;
+  }
+};
+
+TEST(NumericDiffCostFunction, EasyCase) {
+  // Try both central and forward difference.
+  TestCostFunction term;
+  scoped_ptr<CostFunction> cfs[2];
+  cfs[0].reset(
+      CreateRuntimeNumericDiffCostFunction(&term, CENTRAL, kRelativeEps));
+
+  cfs[1].reset(
+      CreateRuntimeNumericDiffCostFunction(&term, FORWARD, kRelativeEps));
+
+
+  for (int c = 0; c < 2; ++c) {
+    CostFunction *cost_function = cfs[c].get();
+
+    double x1[] = { 1.0, 2.0, 3.0, 4.0, 5.0 };
+    double x2[] = { 9.0, 9.0, 5.0, 5.0, 1.0 };
+    double *parameters[] = { &x1[0], &x2[0] };
+
+    double dydx1[15];  // 3 x 5, row major.
+    double dydx2[15];  // 3 x 5, row major.
+    double *jacobians[2] = { &dydx1[0], &dydx2[0] };
+
+    double residuals[3] = {-1e-100, -2e-100, -3e-100 };
+
+    ASSERT_TRUE(cost_function->Evaluate(&parameters[0],
+                                        &residuals[0],
+                                        &jacobians[0]));
+
+    EXPECT_EQ(residuals[0], 67);
+    EXPECT_EQ(residuals[1], 4489);
+    EXPECT_EQ(residuals[2], 213);
+
+    for (int i = 0; i < 5; ++i) {
+      LOG(INFO) << "c = " << c << " i = " << i;
+      const double kEps = c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5;
+
+      ExpectClose(x2[i],                    dydx1[5 * 0 + i], kEps);  // y1
+      ExpectClose(x1[i],                    dydx2[5 * 0 + i], kEps);
+      ExpectClose(2 * x2[i] * residuals[0], dydx1[5 * 1 + i], kEps);  // y2
+      ExpectClose(2 * x1[i] * residuals[0], dydx2[5 * 1 + i], kEps);
+      ExpectClose(0.0,                      dydx1[5 * 2 + i], kEps);  // y3
+      ExpectClose(2 * x2[i],                dydx2[5 * 2 + i], kEps);
+    }
+  }
+}
+
+// y1 = sin(x1'x2)
+// y2 = exp(-x1'x2 / 10)
+//
+// dy1/dx1 =  x2 * cos(x1'x2),            dy1/dx2 =  x1 * cos(x1'x2)
+// dy2/dx1 = -x2 * exp(-x1'x2 / 10) / 10, dy2/dx2 = -x2 * exp(-x1'x2 / 10) / 10
+class TranscendentalTestCostFunction : public CostFunction {
+ public:
+  TranscendentalTestCostFunction() {
+    set_num_residuals(2);
+    mutable_parameter_block_sizes()->push_back(5);  // x1.
+    mutable_parameter_block_sizes()->push_back(5);  // x2.
+  }
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    (void) jacobians;  // Ignored.
+
+    double x1x2 = 0;
+    for (int i = 0; i < 5; ++i) {
+      x1x2 += parameters[0][i] * parameters[1][i];
+    }
+    residuals[0] = sin(x1x2);
+    residuals[1] = exp(-x1x2 / 10);
+    return true;
+  }
+};
+
+TEST(NumericDiffCostFunction, TransendentalOperationsInCostFunction) {
+  // Try both central and forward difference.
+  TranscendentalTestCostFunction term;
+  scoped_ptr<CostFunction> cfs[2];
+  cfs[0].reset(
+      CreateRuntimeNumericDiffCostFunction(&term, CENTRAL, kRelativeEps));
+
+  cfs[1].reset(
+      CreateRuntimeNumericDiffCostFunction(&term, FORWARD, kRelativeEps));
+
+  for (int c = 0; c < 2; ++c) {
+    CostFunction *cost_function = cfs[c].get();
+
+    struct {
+      double x1[5];
+      double x2[5];
+    } kTests[] = {
+      { { 1.0, 2.0, 3.0, 4.0, 5.0 },  // No zeros.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 0.0, 2.0, 3.0, 0.0, 5.0 },  // Some zeros x1.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 1.0, 2.0, 3.0, 1.0, 5.0 },  // Some zeros x2.
+        { 0.0, 9.0, 0.0, 5.0, 0.0 },
+      },
+      { { 0.0, 0.0, 0.0, 0.0, 0.0 },  // All zeros x1.
+        { 9.0, 9.0, 5.0, 5.0, 1.0 },
+      },
+      { { 1.0, 2.0, 3.0, 4.0, 5.0 },  // All zeros x2.
+        { 0.0, 0.0, 0.0, 0.0, 0.0 },
+      },
+      { { 0.0, 0.0, 0.0, 0.0, 0.0 },  // All zeros.
+        { 0.0, 0.0, 0.0, 0.0, 0.0 },
+      },
+    };
+    for (int k = 0; k < ARRAYSIZE(kTests); ++k) {
+      double *x1 = &(kTests[k].x1[0]);
+      double *x2 = &(kTests[k].x2[0]);
+      double *parameters[] = { x1, x2 };
+
+      double dydx1[10];
+      double dydx2[10];
+      double *jacobians[2] = { &dydx1[0], &dydx2[0] };
+
+      double residuals[2];
+
+      ASSERT_TRUE(cost_function->Evaluate(&parameters[0],
+                                          &residuals[0],
+                                          &jacobians[0]));
+      LOG(INFO) << "Ran evaluate for test k=" << k << " c=" << c;
+
+      double x1x2 = 0;
+      for (int i = 0; i < 5; ++i) {
+        x1x2 += x1[i] * x2[i];
+      }
+
+      for (int i = 0; i < 5; ++i) {
+        const double kEps = (c == 0 ? /* central */ 3e-9 : /* forward */ 2e-5);
+
+        ExpectClose( x2[i] * cos(x1x2),              dydx1[5 * 0 + i], kEps);  // NOLINT
+        ExpectClose( x1[i] * cos(x1x2),              dydx2[5 * 0 + i], kEps);  // NOLINT
+        ExpectClose(-x2[i] * exp(-x1x2 / 10.) / 10., dydx1[5 * 1 + i], kEps);
+        ExpectClose(-x1[i] * exp(-x1x2 / 10.) / 10., dydx2[5 * 1 + i], kEps);
+      }
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_complement_solver.cc b/internal/ceres/schur_complement_solver.cc
new file mode 100644
index 0000000..2bc8cdd
--- /dev/null
+++ b/internal/ceres/schur_complement_solver.cc
@@ -0,0 +1,285 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <algorithm>
+#include <ctime>
+#include <set>
+#include <vector>
+#include "Eigen/Dense"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/block_random_access_matrix.h"
+#include "ceres/block_random_access_sparse_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/detect_structure.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_complement_solver.h"
+#include "ceres/suitesparse.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+LinearSolver::Summary SchurComplementSolver::SolveImpl(
+    BlockSparseMatrixBase* A,
+    const double* b,
+    const LinearSolver::PerSolveOptions& per_solve_options,
+    double* x) {
+  const time_t start_time = time(NULL);
+  if (!options_.constant_sparsity || (eliminator_.get() == NULL)) {
+    InitStorage(A->block_structure());
+    DetectStructure(*A->block_structure(),
+                    options_.num_eliminate_blocks,
+                    &options_.row_block_size,
+                    &options_.e_block_size,
+                    &options_.f_block_size);
+    eliminator_.reset(CHECK_NOTNULL(SchurEliminatorBase::Create(options_)));
+    eliminator_->Init(options_.num_eliminate_blocks, A->block_structure());
+  };
+  const time_t init_time = time(NULL);
+  fill(x, x + A->num_cols(), 0.0);
+
+  LinearSolver::Summary summary;
+  summary.num_iterations = 1;
+  summary.termination_type = FAILURE;
+  eliminator_->Eliminate(A, b, per_solve_options.D, lhs_.get(), rhs_.get());
+  const time_t eliminate_time = time(NULL);
+
+  double* reduced_solution = x + A->num_cols() - lhs_->num_cols();
+  const bool status = SolveReducedLinearSystem(reduced_solution);
+  const time_t solve_time = time(NULL);
+
+  if (!status) {
+    return summary;
+  }
+
+  eliminator_->BackSubstitute(A, b, per_solve_options.D, reduced_solution, x);
+  const time_t backsubstitute_time = time(NULL);
+  summary.termination_type = TOLERANCE;
+
+  VLOG(2) << "time (sec) total: " << backsubstitute_time - start_time
+          << " init: " << init_time - start_time
+          << " eliminate: " << eliminate_time - init_time
+          << " solve: " << solve_time - eliminate_time
+          << " backsubstitute: " << backsubstitute_time - solve_time;
+  return summary;
+}
+
+// Initialize a BlockRandomAccessDenseMatrix to store the Schur
+// complement.
+void DenseSchurComplementSolver::InitStorage(
+    const CompressedRowBlockStructure* bs) {
+  const int num_eliminate_blocks = options().num_eliminate_blocks;
+  const int num_col_blocks = bs->cols.size();
+
+  vector<int> blocks(num_col_blocks - num_eliminate_blocks, 0);
+  for (int i = num_eliminate_blocks, j = 0;
+       i < num_col_blocks;
+       ++i, ++j) {
+    blocks[j] = bs->cols[i].size;
+  }
+
+  set_lhs(new BlockRandomAccessDenseMatrix(blocks));
+  set_rhs(new double[lhs()->num_rows()]);
+}
+
+// Solve the system Sx = r, assuming that the matrix S is stored in a
+// BlockRandomAccessDenseMatrix. The linear system is solved using
+// Eigen's Cholesky factorization.
+bool DenseSchurComplementSolver::SolveReducedLinearSystem(double* solution) {
+  const BlockRandomAccessDenseMatrix* m =
+      down_cast<const BlockRandomAccessDenseMatrix*>(lhs());
+  const int num_rows = m->num_rows();
+
+  // The case where there are no f blocks, and the system is block
+  // diagonal.
+  if (num_rows == 0) {
+    return true;
+  }
+
+  // TODO(sameeragarwal): Add proper error handling; this completely ignores
+  // the quality of the solution to the solve.
+  VectorRef(solution, num_rows) =
+      ConstMatrixRef(m->values(), num_rows, num_rows)
+      .selfadjointView<Eigen::Upper>()
+      .ldlt()
+      .solve(ConstVectorRef(rhs(), num_rows));
+
+  return true;
+}
+
+#ifndef CERES_NO_SUITESPARSE
+SparseSchurComplementSolver::SparseSchurComplementSolver(
+    const LinearSolver::Options& options)
+    : SchurComplementSolver(options),
+      symbolic_factor_(NULL) {
+}
+
+SparseSchurComplementSolver::~SparseSchurComplementSolver() {
+  if (symbolic_factor_ != NULL) {
+    ss_.Free(symbolic_factor_);
+    symbolic_factor_ = NULL;
+  }
+}
+
+// Determine the non-zero blocks in the Schur Complement matrix, and
+// initialize a BlockRandomAccessSparseMatrix object.
+void SparseSchurComplementSolver::InitStorage(
+    const CompressedRowBlockStructure* bs) {
+  const int num_eliminate_blocks = options().num_eliminate_blocks;
+  const int num_col_blocks = bs->cols.size();
+  const int num_row_blocks = bs->rows.size();
+
+  vector<int> blocks(num_col_blocks - num_eliminate_blocks, 0);
+  for (int i = num_eliminate_blocks; i < num_col_blocks; ++i) {
+    blocks[i - num_eliminate_blocks] = bs->cols[i].size;
+  }
+
+  set<pair<int, int> > block_pairs;
+  for (int i = 0; i < blocks.size(); ++i) {
+    block_pairs.insert(make_pair(i, i));
+  }
+
+  int r = 0;
+  while (r < num_row_blocks) {
+    int e_block_id = bs->rows[r].cells.front().block_id;
+    if (e_block_id >= num_eliminate_blocks) {
+      break;
+    }
+    vector<int> f_blocks;
+
+    // Add to the chunk until the first block in the row is
+    // different than the one in the first row for the chunk.
+    for (; r < num_row_blocks; ++r) {
+      const CompressedRow& row = bs->rows[r];
+      if (row.cells.front().block_id != e_block_id) {
+        break;
+      }
+
+      // Iterate over the blocks in the row, ignoring the first
+      // block since it is the one to be eliminated.
+      for (int c = 1; c < row.cells.size(); ++c) {
+        const Cell& cell = row.cells[c];
+        f_blocks.push_back(cell.block_id - num_eliminate_blocks);
+      }
+    }
+
+    sort(f_blocks.begin(), f_blocks.end());
+    f_blocks.erase(unique(f_blocks.begin(), f_blocks.end()), f_blocks.end());
+    for (int i = 0; i < f_blocks.size(); ++i) {
+      for (int j = i + 1; j < f_blocks.size(); ++j) {
+        block_pairs.insert(make_pair(f_blocks[i], f_blocks[j]));
+      }
+    }
+  }
+
+  // Remaing rows do not contribute to the chunks and directly go
+  // into the schur complement via an outer product.
+  for (; r < num_row_blocks; ++r) {
+    const CompressedRow& row = bs->rows[r];
+    CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
+    for (int i = 0; i < row.cells.size(); ++i) {
+      int r_block1_id = row.cells[i].block_id - num_eliminate_blocks;
+      for (int j = 0; j < row.cells.size(); ++j) {
+        int r_block2_id = row.cells[j].block_id - num_eliminate_blocks;
+        if (r_block1_id <= r_block2_id) {
+          block_pairs.insert(make_pair(r_block1_id, r_block2_id));
+        }
+      }
+    }
+  }
+
+  set_lhs(new BlockRandomAccessSparseMatrix(blocks, block_pairs));
+  set_rhs(new double[lhs()->num_rows()]);
+}
+
+// Solve the system Sx = r, assuming that the matrix S is stored in a
+// BlockRandomAccessSparseMatrix.  The linear system is solved using
+// CHOLMOD's sparse cholesky factorization routines.
+bool SparseSchurComplementSolver::SolveReducedLinearSystem(double* solution) {
+  // Extract the TripletSparseMatrix that is used for actually storing S.
+  TripletSparseMatrix* tsm =
+      const_cast<TripletSparseMatrix*>(
+          down_cast<const BlockRandomAccessSparseMatrix*>(lhs())->matrix());
+
+  const int num_rows = tsm->num_rows();
+
+  // The case where there are no f blocks, and the system is block
+  // diagonal.
+  if (num_rows == 0) {
+    return true;
+  }
+
+  cholmod_sparse* cholmod_lhs = ss_.CreateSparseMatrix(tsm);
+  // The matrix is symmetric, and the upper triangular part of the
+  // matrix contains the values.
+  cholmod_lhs->stype = 1;
+
+  cholmod_dense*  cholmod_rhs =
+      ss_.CreateDenseVector(const_cast<double*>(rhs()), num_rows, num_rows);
+
+  // Symbolic factorization is computed if we don't already have one handy.
+  if (symbolic_factor_ == NULL) {
+    symbolic_factor_ = ss_.AnalyzeCholesky(cholmod_lhs);
+  }
+
+  cholmod_dense* cholmod_solution =
+      ss_.SolveCholesky(cholmod_lhs, symbolic_factor_, cholmod_rhs);
+
+  ss_.Free(cholmod_lhs);
+  cholmod_lhs = NULL;
+  ss_.Free(cholmod_rhs);
+  cholmod_rhs = NULL;
+
+  // If sparsity is not constant across calls, then reset the symbolic
+  // factorization.
+  if (!options().constant_sparsity) {
+    ss_.Free(symbolic_factor_);
+    symbolic_factor_ = NULL;
+  }
+
+  if (cholmod_solution == NULL) {
+    LOG(ERROR) << "CHOLMOD solve failed.";
+    return false;
+  }
+
+  VectorRef(solution, num_rows)
+      = VectorRef(static_cast<double*>(cholmod_solution->x), num_rows);
+  ss_.Free(cholmod_solution);
+  return true;
+}
+#endif  // CERES_NO_SUITESPARSE
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_complement_solver.h b/internal/ceres/schur_complement_solver.h
new file mode 100644
index 0000000..039bc09
--- /dev/null
+++ b/internal/ceres/schur_complement_solver.h
@@ -0,0 +1,182 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_SCHUR_COMPLEMENT_SOLVER_H_
+#define CERES_INTERNAL_SCHUR_COMPLEMENT_SOLVER_H_
+
+#include "ceres/block_random_access_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/suitesparse.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockSparseMatrixBase;
+
+// Base class for Schur complement based linear least squares
+// solvers. It assumes that the input linear system Ax = b can be
+// partitioned into
+//
+//  E y + F z = b
+//
+// Where x = [y;z] is a partition of the variables.  The paritioning
+// of the variables is such that, E'E is a block diagonal
+// matrix. Further, the rows of A are ordered so that for every
+// variable block in y, all the rows containing that variable block
+// occur as a vertically contiguous block. i.e the matrix A looks like
+//
+//              E                 F
+//  A = [ y1   0   0   0 |  z1    0    0   0    z5]
+//      [ y1   0   0   0 |  z1   z2    0   0     0]
+//      [  0  y2   0   0 |   0    0   z3   0     0]
+//      [  0   0  y3   0 |  z1   z2   z3  z4    z5]
+//      [  0   0  y3   0 |  z1    0    0   0    z5]
+//      [  0   0   0  y4 |   0    0    0   0    z5]
+//      [  0   0   0  y4 |   0   z2    0   0     0]
+//      [  0   0   0  y4 |   0    0    0   0     0]
+//      [  0   0   0   0 |  z1    0    0   0     0]
+//      [  0   0   0   0 |   0    0   z3  z4    z5]
+//
+// This structure should be reflected in the corresponding
+// CompressedRowBlockStructure object associated with A. The linear
+// system Ax = b should either be well posed or the array D below
+// should be non-null and the diagonal matrix corresponding to it
+// should be non-singular.
+//
+// SchurComplementSolver has two sub-classes.
+//
+// DenseSchurComplementSolver: For problems where the Schur complement
+// matrix is small and dense, or if CHOLMOD/SuiteSparse is not
+// installed. For structure from motion problems, this is solver can
+// be used for problems with upto a few hundred cameras.
+//
+// SparseSchurComplementSolver: For problems where the Schur
+// complement matrix is large and sparse. It requires that
+// CHOLMOD/SuiteSparse be installed, as it uses CHOLMOD to find a
+// sparse Cholesky factorization of the Schur complement. This solver
+// can be used for solving structure from motion problems with tens of
+// thousands of cameras, though depending on the exact sparsity
+// structure, it maybe better to use an iterative solver.
+//
+// The two solvers can be instantiated by calling
+// LinearSolver::CreateLinearSolver with LinearSolver::Options::type
+// set to DENSE_SCHUR and SPARSE_SCHUR
+// respectively. LinearSolver::Options::num_eliminate_blocks should be
+// at least 1.
+class SchurComplementSolver : public BlockSparseMatrixBaseSolver {
+ public:
+  explicit SchurComplementSolver(const LinearSolver::Options& options)
+      : options_(options) {
+    CHECK_GT(options.num_eliminate_blocks, 0);
+  }
+
+  // LinearSolver methods
+  virtual ~SchurComplementSolver() {}
+  virtual LinearSolver::Summary SolveImpl(
+      BlockSparseMatrixBase* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& per_solve_options,
+      double* x);
+
+ protected:
+  const LinearSolver::Options& options() const { return options_; }
+
+  const BlockRandomAccessMatrix* lhs() const { return lhs_.get(); }
+  void set_lhs(BlockRandomAccessMatrix* lhs) { lhs_.reset(lhs); }
+  const double* rhs() const { return rhs_.get(); }
+  void set_rhs(double* rhs) { rhs_.reset(rhs); }
+
+ private:
+  virtual void InitStorage(const CompressedRowBlockStructure* bs) = 0;
+  virtual bool SolveReducedLinearSystem(double* solution) = 0;
+
+  LinearSolver::Options options_;
+
+  scoped_ptr<SchurEliminatorBase> eliminator_;
+  scoped_ptr<BlockRandomAccessMatrix> lhs_;
+  scoped_array<double> rhs_;
+
+  DISALLOW_COPY_AND_ASSIGN(SchurComplementSolver);
+};
+
+// Dense Cholesky factorization based solver.
+class DenseSchurComplementSolver : public SchurComplementSolver {
+ public:
+  explicit DenseSchurComplementSolver(const LinearSolver::Options& options)
+      : SchurComplementSolver(options) {}
+  virtual ~DenseSchurComplementSolver() {}
+
+ private:
+  virtual void InitStorage(const CompressedRowBlockStructure* bs);
+  virtual bool SolveReducedLinearSystem(double* solution);
+
+  DISALLOW_COPY_AND_ASSIGN(DenseSchurComplementSolver);
+};
+
+#ifndef CERES_NO_SUITESPARSE
+// Sparse Cholesky factorization based solver.
+class SparseSchurComplementSolver : public SchurComplementSolver {
+ public:
+  explicit SparseSchurComplementSolver(const LinearSolver::Options& options);
+  virtual ~SparseSchurComplementSolver();
+
+ private:
+  virtual void InitStorage(const CompressedRowBlockStructure* bs);
+  virtual bool SolveReducedLinearSystem(double* solution);
+
+
+  SuiteSparse ss_;
+  // Symbolic factorization of the reduced linear system. Precomputed
+  // once and reused if constant_sparsity_ is true.
+  cholmod_factor* symbolic_factor_;
+  DISALLOW_COPY_AND_ASSIGN(SparseSchurComplementSolver);
+};
+#else  // CERES_NO_SUITESPARSE
+class SparseSchurComplementSolver : public SchurComplementSolver {
+ public:
+  explicit SparseSchurComplementSolver(const LinearSolver::Options& options)
+      : SchurComplementSolver(options) {
+    LOG(FATAL) << "SPARSE_SCHUR is not available. Please "
+        "build Ceres with SuiteSparse.";
+  }
+
+  virtual ~SparseSchurComplementSolver() {}
+};
+#endif  // CERES_NO_SUITESPARSE
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SCHUR_COMPLEMENT_SOLVER_H_
diff --git a/internal/ceres/schur_complement_solver_test.cc b/internal/ceres/schur_complement_solver_test.cc
new file mode 100644
index 0000000..16c4200
--- /dev/null
+++ b/internal/ceres/schur_complement_solver_test.cc
@@ -0,0 +1,154 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <cstddef>
+
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/casts.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_complement_solver.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class SchurComplementSolverTest : public ::testing::Test {
+ protected:
+  void SetUpFromProblemId(int problem_id) {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(problem_id));
+
+    CHECK_NOTNULL(problem.get());
+    A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+    b.reset(problem->b.release());
+    D.reset(problem->D.release());
+
+    num_cols = A->num_cols();
+    num_rows = A->num_rows();
+    num_eliminate_blocks = problem->num_eliminate_blocks;
+
+    x.reset(new double[num_cols]);
+    sol.reset(new double[num_cols]);
+    sol_d.reset(new double[num_cols]);
+
+    LinearSolver::Options options;
+    options.constant_sparsity = false;
+    options.type = DENSE_QR;
+    scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
+
+    TripletSparseMatrix triplet_A(A->num_rows(),
+                                  A->num_cols(),
+                                  A->num_nonzeros());
+    A->ToTripletSparseMatrix(&triplet_A);
+
+    // Gold standard solutions using dense QR factorization.
+    DenseSparseMatrix dense_A(triplet_A);
+    LinearSolver::Summary summary1 =
+        qr->Solve(&dense_A,
+                  b.get(),
+                  LinearSolver::PerSolveOptions(),
+                  sol.get());
+
+    // Gold standard solution with appended diagonal.
+    LinearSolver::PerSolveOptions per_solve_options;
+    per_solve_options.D = D.get();
+    LinearSolver::Summary summary2 =
+        qr->Solve(&dense_A,
+                  b.get(),
+                  per_solve_options,
+                  sol_d.get());
+  }
+
+  void ComputeAndCompareSolutions(int problem_id,
+                                  bool regularization,
+                                  ceres::LinearSolverType linear_solver_type) {
+    SetUpFromProblemId(problem_id);
+    LinearSolver::Options options;
+    options.num_eliminate_blocks = num_eliminate_blocks;
+    options.type = linear_solver_type;
+    scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
+
+    LinearSolver::PerSolveOptions per_solve_options;
+    LinearSolver::Summary summary;
+    if (regularization) {
+      per_solve_options.D = D.get();
+    }
+
+    summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
+
+    if (regularization) {
+      for (int i = 0; i < num_cols; ++i) {
+        ASSERT_NEAR(sol_d.get()[i], x[i], 1e-10);
+      }
+    } else {
+      for (int i = 0; i < num_cols; ++i) {
+        ASSERT_NEAR(sol.get()[i], x[i], 1e-10);
+      }
+    }
+  }
+
+  int num_rows;
+  int num_cols;
+  int num_eliminate_blocks;
+
+  scoped_ptr<BlockSparseMatrix> A;
+  scoped_array<double> b;
+  scoped_array<double> x;
+  scoped_array<double> D;
+  scoped_array<double> sol;
+  scoped_array<double> sol_d;
+};
+
+#ifndef CERES_NO_SUITESPARSE
+
+TEST_F(SchurComplementSolverTest, SparseSchur) {
+  ComputeAndCompareSolutions(2, false, SPARSE_SCHUR);
+  ComputeAndCompareSolutions(3, false, SPARSE_SCHUR);
+  ComputeAndCompareSolutions(2, true, SPARSE_SCHUR);
+  ComputeAndCompareSolutions(3, true, SPARSE_SCHUR);
+}
+
+#endif  // CERES_NO_SUITESPARSE
+
+TEST_F(SchurComplementSolverTest, DenseSchur) {
+  ComputeAndCompareSolutions(2, false, DENSE_SCHUR);
+  ComputeAndCompareSolutions(3, false, DENSE_SCHUR);
+  ComputeAndCompareSolutions(2, true, DENSE_SCHUR);
+  ComputeAndCompareSolutions(3, true, DENSE_SCHUR);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_eliminator.cc b/internal/ceres/schur_eliminator.cc
new file mode 100644
index 0000000..44f5be3
--- /dev/null
+++ b/internal/ceres/schur_eliminator.cc
@@ -0,0 +1,141 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// ========================================
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+// THIS FILE IS AUTOGENERATED. DO NOT EDIT.
+//=========================================
+//
+// This file is generated using generate_template_specializations.py.
+// Editing it manually is not recommended.
+
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/internal/eigen.h"
+
+namespace ceres {
+namespace internal {
+
+SchurEliminatorBase*
+SchurEliminatorBase::Create(const LinearSolver::Options& options) {
+#ifndef CERES_RESTRICT_SCHUR_SPECIALIZATION
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 2) &&
+      (options.f_block_size == 2)) {
+    return new SchurEliminator<2, 2, 2>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 2) &&
+      (options.f_block_size == 3)) {
+    return new SchurEliminator<2, 2, 3>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 2) &&
+      (options.f_block_size == 4)) {
+    return new SchurEliminator<2, 2, 4>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 2) &&
+      (options.f_block_size == Dynamic)) {
+    return new SchurEliminator<2, 2, Dynamic>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 3) &&
+      (options.f_block_size == 3)) {
+    return new SchurEliminator<2, 3, 3>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 3) &&
+      (options.f_block_size == 4)) {
+    return new SchurEliminator<2, 3, 4>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 3) &&
+      (options.f_block_size == 9)) {
+    return new SchurEliminator<2, 3, 9>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 3) &&
+      (options.f_block_size == Dynamic)) {
+    return new SchurEliminator<2, 3, Dynamic>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == 3)) {
+    return new SchurEliminator<2, 4, 3>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == 4)) {
+    return new SchurEliminator<2, 4, 4>(options);
+  }
+  if ((options.row_block_size == 2) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == Dynamic)) {
+    return new SchurEliminator<2, 4, Dynamic>(options);
+  }
+  if ((options.row_block_size == 4) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == 2)) {
+    return new SchurEliminator<4, 4, 2>(options);
+  }
+  if ((options.row_block_size == 4) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == 3)) {
+    return new SchurEliminator<4, 4, 3>(options);
+  }
+  if ((options.row_block_size == 4) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == 4)) {
+    return new SchurEliminator<4, 4, 4>(options);
+  }
+  if ((options.row_block_size == 4) &&
+      (options.e_block_size == 4) &&
+      (options.f_block_size == Dynamic)) {
+    return new SchurEliminator<4, 4, Dynamic>(options);
+  }
+  if ((options.row_block_size == Dynamic) &&
+      (options.e_block_size == Dynamic) &&
+      (options.f_block_size == Dynamic)) {
+    return new SchurEliminator<Dynamic, Dynamic, Dynamic>(options);
+  }
+
+#endif
+  VLOG(1) << "Template specializations not found for <"
+          << options.row_block_size << ","
+          << options.e_block_size << ","
+          << options.f_block_size << ">";
+  return new SchurEliminator<Dynamic, Dynamic, Dynamic>(options);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_eliminator.h b/internal/ceres/schur_eliminator.h
new file mode 100644
index 0000000..c24fe43
--- /dev/null
+++ b/internal/ceres/schur_eliminator.h
@@ -0,0 +1,339 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_SCHUR_ELIMINATOR_H_
+#define CERES_INTERNAL_SCHUR_ELIMINATOR_H_
+
+#include <map>
+#include <vector>
+#include "ceres/mutex.h"
+#include "ceres/block_random_access_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/linear_solver.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+// Classes implementing the SchurEliminatorBase interface implement
+// variable elimination for linear least squares problems. Assuming
+// that the input linear system Ax = b can be partitioned into
+//
+//  E y + F z = b
+//
+// Where x = [y;z] is a partition of the variables.  The paritioning
+// of the variables is such that, E'E is a block diagonal matrix. Or
+// in other words, the parameter blocks in E form an independent set
+// of the of the graph implied by the block matrix A'A. Then, this
+// class provides the functionality to compute the Schur complement
+// system
+//
+//   S z = r
+//
+// where
+//
+//   S = F'F - F'E (E'E)^{-1} E'F and r = F'b - F'E(E'E)^(-1) E'b
+//
+// This is the Eliminate operation, i.e., construct the linear system
+// obtained by eliminating the variables in E.
+//
+// The eliminator also provides the reverse functionality, i.e. given
+// values for z it can back substitute for the values of y, by solving the
+// linear system
+//
+//  Ey = b - F z
+//
+// which is done by observing that
+//
+//  y = (E'E)^(-1) [E'b - E'F z]
+//
+// The eliminator has a number of requirements.
+//
+// The rows of A are ordered so that for every variable block in y,
+// all the rows containing that variable block occur as a vertically
+// contiguous block. i.e the matrix A looks like
+//
+//              E                 F                   chunk
+//  A = [ y1   0   0   0 |  z1    0    0   0    z5]     1
+//      [ y1   0   0   0 |  z1   z2    0   0     0]     1
+//      [  0  y2   0   0 |   0    0   z3   0     0]     2
+//      [  0   0  y3   0 |  z1   z2   z3  z4    z5]     3
+//      [  0   0  y3   0 |  z1    0    0   0    z5]     3
+//      [  0   0   0  y4 |   0    0    0   0    z5]     4
+//      [  0   0   0  y4 |   0   z2    0   0     0]     4
+//      [  0   0   0  y4 |   0    0    0   0     0]     4
+//      [  0   0   0   0 |  z1    0    0   0     0] non chunk blocks
+//      [  0   0   0   0 |   0    0   z3  z4    z5] non chunk blocks
+//
+// This structure should be reflected in the corresponding
+// CompressedRowBlockStructure object associated with A. The linear
+// system Ax = b should either be well posed or the array D below
+// should be non-null and the diagonal matrix corresponding to it
+// should be non-singular. For simplicity of exposition only the case
+// with a null D is described.
+//
+// The usual way to do the elimination is as follows. Starting with
+//
+//  E y + F z = b
+//
+// we can form the normal equations,
+//
+//  E'E y + E'F z = E'b
+//  F'E y + F'F z = F'b
+//
+// multiplying both sides of the first equation by (E'E)^(-1) and then
+// by F'E we get
+//
+//  F'E y + F'E (E'E)^(-1) E'F z =  F'E (E'E)^(-1) E'b
+//  F'E y +                F'F z =  F'b
+//
+// now subtracting the two equations we get
+//
+// [FF' - F'E (E'E)^(-1) E'F] z = F'b - F'E(E'E)^(-1) E'b
+//
+// Instead of forming the normal equations and operating on them as
+// general sparse matrices, the algorithm here deals with one
+// parameter block in y at a time. The rows corresponding to a single
+// parameter block yi are known as a chunk, and the algorithm operates
+// on one chunk at a time. The mathematics remains the same since the
+// reduced linear system can be shown to be the sum of the reduced
+// linear systems for each chunk. This can be seen by observing two
+// things.
+//
+//  1. E'E is a block diagonal matrix.
+//
+//  2. When E'F is computed, only the terms within a single chunk
+//  interact, i.e for y1 column blocks when transposed and multiplied
+//  with F, the only non-zero contribution comes from the blocks in
+//  chunk1.
+//
+// Thus, the reduced linear system
+//
+//  FF' - F'E (E'E)^(-1) E'F
+//
+// can be re-written as
+//
+//  sum_k F_k F_k' - F_k'E_k (E_k'E_k)^(-1) E_k' F_k
+//
+// Where the sum is over chunks and E_k'E_k is dense matrix of size y1
+// x y1.
+//
+// Advanced usage. Uptil now it has been assumed that the user would
+// be interested in all of the Schur Complement S. However, it is also
+// possible to use this eliminator to obtain an arbitrary submatrix of
+// the full Schur complement. When the eliminator is generating the
+// blocks of S, it asks the RandomAccessBlockMatrix instance passed to
+// it if it has storage for that block. If it does, the eliminator
+// computes/updates it, if not it is skipped. This is useful when one
+// is interested in constructing a preconditioner based on the Schur
+// Complement, e.g., computing the block diagonal of S so that it can
+// be used as a preconditioner for an Iterative Substructuring based
+// solver [See Agarwal et al, Bundle Adjustment in the Large, ECCV
+// 2008 for an example of such use].
+//
+// Example usage: Please see schur_complement_solver.cc
+class SchurEliminatorBase {
+ public:
+  virtual ~SchurEliminatorBase() {}
+
+  // Initialize the eliminator. It is the user's responsibilty to call
+  // this function before calling Eliminate or BackSubstitute. It is
+  // also the caller's responsibilty to ensure that the
+  // CompressedRowBlockStructure object passed to this method is the
+  // same one (or is equivalent to) the one associated with the
+  // BlockSparseMatrixBase objects below.
+  virtual void Init(int num_eliminate_blocks,
+                    const CompressedRowBlockStructure* bs) = 0;
+
+  // Compute the Schur complement system from the augmented linear
+  // least squares problem [A;D] x = [b;0]. The left hand side and the
+  // right hand side of the reduced linear system are returned in lhs
+  // and rhs respectively.
+  //
+  // It is the caller's responsibility to construct and initialize
+  // lhs. Depending upon the structure of the lhs object passed here,
+  // the full or a submatrix of the Schur complement will be computed.
+  //
+  // Since the Schur complement is a symmetric matrix, only the upper
+  // triangular part of the Schur complement is computed.
+  virtual void Eliminate(const BlockSparseMatrixBase* A,
+                         const double* b,
+                         const double* D,
+                         BlockRandomAccessMatrix* lhs,
+                         double* rhs) = 0;
+
+  // Given values for the variables z in the F block of A, solve for
+  // the optimal values of the variables y corresponding to the E
+  // block in A.
+  virtual void BackSubstitute(const BlockSparseMatrixBase* A,
+                              const double* b,
+                              const double* D,
+                              const double* z,
+                              double* y) = 0;
+  // Factory
+  static SchurEliminatorBase* Create(const LinearSolver::Options& options);
+};
+
+// Templated implementation of the SchurEliminatorBase interface. The
+// templating is on the sizes of the row, e and f blocks sizes in the
+// input matrix. In many problems, the sizes of one or more of these
+// blocks are constant, in that case, its worth passing these
+// parameters as template arguments so that they are visible to the
+// compiler and can be used for compile time optimization of the low
+// level linear algebra routines.
+//
+// This implementation is mulithreaded using OpenMP. The level of
+// parallelism is controlled by LinearSolver::Options::num_threads.
+template <int kRowBlockSize = Dynamic,
+          int kEBlockSize = Dynamic,
+          int kFBlockSize = Dynamic >
+class SchurEliminator : public SchurEliminatorBase {
+ public:
+  explicit SchurEliminator(const LinearSolver::Options& options)
+      : num_threads_(options.num_threads) {
+  }
+
+  // SchurEliminatorBase Interface
+  virtual ~SchurEliminator();
+  virtual void Init(int num_eliminate_blocks,
+                    const CompressedRowBlockStructure* bs);
+  virtual void Eliminate(const BlockSparseMatrixBase* A,
+                         const double* b,
+                         const double* D,
+                         BlockRandomAccessMatrix* lhs,
+                         double* rhs);
+  virtual void BackSubstitute(const BlockSparseMatrixBase* A,
+                              const double* b,
+                              const double* D,
+                              const double* z,
+                              double* y);
+
+ private:
+  // Chunk objects store combinatorial information needed to
+  // efficiently eliminate a whole chunk out of the least squares
+  // problem. Consider the first chunk in the example matrix above.
+  //
+  //      [ y1   0   0   0 |  z1    0    0   0    z5]
+  //      [ y1   0   0   0 |  z1   z2    0   0     0]
+  //
+  // One of the intermediate quantities that needs to be calculated is
+  // for each row the product of the y block transposed with the
+  // non-zero z block, and the sum of these blocks across rows. A
+  // temporary array "buffer_" is used for computing and storing them
+  // and the buffer_layout maps the indices of the z-blocks to
+  // position in the buffer_ array.  The size of the chunk is the
+  // number of row blocks/residual blocks for the particular y block
+  // being considered.
+  //
+  // For the example chunk shown above,
+  //
+  // size = 2
+  //
+  // The entries of buffer_layout will be filled in the following order.
+  //
+  // buffer_layout[z1] = 0
+  // buffer_layout[z5] = y1 * z1
+  // buffer_layout[z2] = y1 * z1 + y1 * z5
+  typedef map<int, int> BufferLayoutType;
+  struct Chunk {
+    Chunk() : size(0) {}
+    int size;
+    int start;
+    BufferLayoutType buffer_layout;
+  };
+
+  void ChunkDiagonalBlockAndGradient(
+      const Chunk& chunk,
+      const BlockSparseMatrixBase* A,
+      const double* b,
+      int row_block_counter,
+      typename EigenTypes<kEBlockSize, kEBlockSize>::Matrix* eet,
+      typename EigenTypes<kEBlockSize>::Vector* g,
+      double* buffer,
+      BlockRandomAccessMatrix* lhs);
+
+  void UpdateRhs(const Chunk& chunk,
+                 const BlockSparseMatrixBase* A,
+                 const double* b,
+                 int row_block_counter,
+                 const Vector& inverse_ete_g,
+                 double* rhs);
+
+  void ChunkOuterProduct(const CompressedRowBlockStructure* bs,
+                         const Matrix& inverse_eet,
+                         const double* buffer,
+                         const BufferLayoutType& buffer_layout,
+                         BlockRandomAccessMatrix* lhs);
+  void EBlockRowOuterProduct(const BlockSparseMatrixBase* A,
+                             int row_block_index,
+                             BlockRandomAccessMatrix* lhs);
+
+
+  void NoEBlockRowsUpdate(const BlockSparseMatrixBase* A,
+                             const double* b,
+                             int row_block_counter,
+                             BlockRandomAccessMatrix* lhs,
+                             double* rhs);
+
+  void NoEBlockRowOuterProduct(const BlockSparseMatrixBase* A,
+                               int row_block_index,
+                               BlockRandomAccessMatrix* lhs);
+
+  int num_eliminate_blocks_;
+
+  // Block layout of the columns of the reduced linear system. Since
+  // the f blocks can be of varying size, this vector stores the
+  // position of each f block in the row/col of the reduced linear
+  // system. Thus lhs_row_layout_[i] is the row/col position of the
+  // i^th f block.
+  vector<int> lhs_row_layout_;
+
+  // Combinatorial structure of the chunks in A. For more information
+  // see the documentation of the Chunk object above.
+  vector<Chunk> chunks_;
+
+  // Buffer to store the products of the y and z blocks generated
+  // during the elimination phase.
+  scoped_array<double> buffer_;
+  int buffer_size_;
+  int num_threads_;
+  int uneliminated_row_begins_;
+
+  // Locks for the blocks in the right hand side of the reduced linear
+  // system.
+  vector<Mutex*> rhs_locks_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SCHUR_ELIMINATOR_H_
diff --git a/internal/ceres/schur_eliminator_impl.h b/internal/ceres/schur_eliminator_impl.h
new file mode 100644
index 0000000..a388d00
--- /dev/null
+++ b/internal/ceres/schur_eliminator_impl.h
@@ -0,0 +1,702 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// TODO(sameeragarwal): row_block_counter can perhaps be replaced by
+// Chunk::start ?
+
+#ifndef CERES_INTERNAL_SCHUR_ELIMINATOR_IMPL_H_
+#define CERES_INTERNAL_SCHUR_ELIMINATOR_IMPL_H_
+
+#ifdef CERES_USE_OPENMP
+#include <omp.h>
+#endif
+
+// Eigen has an internal threshold switching between different matrix
+// multiplication algorithms. In particular for matrices larger than
+// EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD it uses a cache friendly
+// matrix matrix product algorithm that has a higher setup cost. For
+// matrix sizes close to this threshold, especially when the matrices
+// are thin and long, the default choice may not be optimal. This is
+// the case for us, as the default choice causes a 30% performance
+// regression when we moved from Eigen2 to Eigen3.
+#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 10
+
+#include <algorithm>
+#include <map>
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/block_random_access_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/block_structure.h"
+#include "ceres/map_util.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/stl_util.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::~SchurEliminator() {
+  STLDeleteElements(&rhs_locks_);
+}
+
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+Init(int num_eliminate_blocks, const CompressedRowBlockStructure* bs) {
+  CHECK_GT(num_eliminate_blocks, 0)
+      << "SchurComplementSolver cannot be initialized with "
+      << "num_eliminate_blocks = 0.";
+
+  num_eliminate_blocks_ = num_eliminate_blocks;
+
+  const int num_col_blocks = bs->cols.size();
+  const int num_row_blocks = bs->rows.size();
+
+  buffer_size_ = 1;
+  chunks_.clear();
+  lhs_row_layout_.clear();
+
+  int lhs_num_rows = 0;
+  // Add a map object for each block in the reduced linear system
+  // and build the row/column block structure of the reduced linear
+  // system.
+  lhs_row_layout_.resize(num_col_blocks - num_eliminate_blocks_);
+  for (int i = num_eliminate_blocks_; i < num_col_blocks; ++i) {
+    lhs_row_layout_[i - num_eliminate_blocks_] = lhs_num_rows;
+    lhs_num_rows += bs->cols[i].size;
+  }
+
+  int r = 0;
+  // Iterate over the row blocks of A, and detect the chunks. The
+  // matrix should already have been ordered so that all rows
+  // containing the same y block are vertically contiguous. Along
+  // the way also compute the amount of space each chunk will need
+  // to perform the elimination.
+  while (r < num_row_blocks) {
+    const int chunk_block_id = bs->rows[r].cells.front().block_id;
+    if (chunk_block_id >= num_eliminate_blocks_) {
+      break;
+    }
+
+    chunks_.push_back(Chunk());
+    Chunk& chunk = chunks_.back();
+    chunk.size = 0;
+    chunk.start = r;
+    int buffer_size = 0;
+    const int e_block_size = bs->cols[chunk_block_id].size;
+
+    // Add to the chunk until the first block in the row is
+    // different than the one in the first row for the chunk.
+    while (r + chunk.size < num_row_blocks) {
+      const CompressedRow& row = bs->rows[r + chunk.size];
+      if (row.cells.front().block_id != chunk_block_id) {
+        break;
+      }
+
+      // Iterate over the blocks in the row, ignoring the first
+      // block since it is the one to be eliminated.
+      for (int c = 1; c < row.cells.size(); ++c) {
+        const Cell& cell = row.cells[c];
+        if (InsertIfNotPresent(
+                &(chunk.buffer_layout), cell.block_id, buffer_size)) {
+          buffer_size += e_block_size * bs->cols[cell.block_id].size;
+        }
+      }
+
+      buffer_size_ = max(buffer_size, buffer_size_);
+      ++chunk.size;
+    }
+
+    CHECK_GT(chunk.size, 0);
+    r += chunk.size;
+  }
+  const Chunk& chunk = chunks_.back();
+
+  uneliminated_row_begins_ = chunk.start + chunk.size;
+  if (num_threads_ > 1) {
+    random_shuffle(chunks_.begin(), chunks_.end());
+  }
+
+  buffer_.reset(new double[buffer_size_ * num_threads_]);
+
+  STLDeleteElements(&rhs_locks_);
+  rhs_locks_.resize(num_col_blocks - num_eliminate_blocks_);
+  for (int i = 0; i < num_col_blocks - num_eliminate_blocks_; ++i) {
+    rhs_locks_[i] = new Mutex;
+  }
+
+  VLOG(1) << "Eliminator threads: " << num_threads_;
+}
+
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+Eliminate(const BlockSparseMatrixBase* A,
+          const double* b,
+          const double* D,
+          BlockRandomAccessMatrix* lhs,
+          double* rhs) {
+  if (lhs->num_rows() > 0) {
+    lhs->SetZero();
+    VectorRef(rhs, lhs->num_rows()).setZero();
+  }
+
+  const CompressedRowBlockStructure* bs = A->block_structure();
+  const int num_col_blocks = bs->cols.size();
+
+  // Add the diagonal to the schur complement.
+  if (D != NULL) {
+#pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
+    for (int i = num_eliminate_blocks_; i < num_col_blocks; ++i) {
+      const int block_id = i - num_eliminate_blocks_;
+      int r, c, row_stride, col_stride;
+      CellInfo* cell_info = lhs->GetCell(block_id, block_id,
+                                         &r, &c,
+                                         &row_stride, &col_stride);
+      if (cell_info != NULL) {
+        const int block_size = bs->cols[i].size;
+        typename EigenTypes<kFBlockSize>::ConstVectorRef
+            diag(D + bs->cols[i].position, block_size);
+
+        MutexLock l(&cell_info->m);
+        MatrixRef m(cell_info->values, row_stride, col_stride);
+        m.block(r, c, block_size, block_size).diagonal()
+            += diag.array().square().matrix();
+      }
+    }
+  }
+
+  // Eliminate y blocks one chunk at a time.  For each chunk,x3
+  // compute the entries of the normal equations and the gradient
+  // vector block corresponding to the y block and then apply
+  // Gaussian elimination to them. The matrix ete stores the normal
+  // matrix corresponding to the block being eliminated and array
+  // buffer_ contains the non-zero blocks in the row corresponding
+  // to this y block in the normal equations. This computation is
+  // done in ChunkDiagonalBlockAndGradient. UpdateRhs then applies
+  // gaussian elimination to the rhs of the normal equations,
+  // updating the rhs of the reduced linear system by modifying rhs
+  // blocks for all the z blocks that share a row block/residual
+  // term with the y block. EliminateRowOuterProduct does the
+  // corresponding operation for the lhs of the reduced linear
+  // system.
+#pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
+  for (int i = 0; i < chunks_.size(); ++i) {
+#ifdef CERES_USE_OPENMP
+    int thread_id = omp_get_thread_num();
+#else
+    int thread_id = 0;
+#endif
+    double* buffer = buffer_.get() + thread_id * buffer_size_;
+    const Chunk& chunk = chunks_[i];
+    const int e_block_id = bs->rows[chunk.start].cells.front().block_id;
+    const int e_block_size = bs->cols[e_block_id].size;
+
+    VectorRef(buffer, buffer_size_).setZero();
+
+    typename EigenTypes<kEBlockSize, kEBlockSize>::Matrix
+        ete(e_block_size, e_block_size);
+
+    if (D != NULL) {
+      const typename EigenTypes<kEBlockSize>::ConstVectorRef
+          diag(D + bs->cols[e_block_id].position, e_block_size);
+      ete = diag.array().square().matrix().asDiagonal();
+    } else {
+      ete.setZero();
+    }
+
+    typename EigenTypes<kEBlockSize>::Vector g(e_block_size);
+    g.setZero();
+
+    // We are going to be computing
+    //
+    //   S += F'F - F'E(E'E)^{-1}E'F
+    //
+    // for each Chunk. The computation is broken down into a number of
+    // function calls as below.
+
+    // Compute the outer product of the e_blocks with themselves (ete
+    // = E'E). Compute the product of the e_blocks with the
+    // corresonding f_blocks (buffer = E'F), the gradient of the terms
+    // in this chunk (g) and add the outer product of the f_blocks to
+    // Schur complement (S += F'F).
+    ChunkDiagonalBlockAndGradient(
+        chunk, A, b, chunk.start, &ete, &g, buffer, lhs);
+
+    // Normally one wouldn't compute the inverse explicitly, but
+    // e_block_size will typically be a small number like 3, in
+    // which case its much faster to compute the inverse once and
+    // use it to multiply other matrices/vectors instead of doing a
+    // Solve call over and over again.
+    typename EigenTypes<kEBlockSize, kEBlockSize>::Matrix inverse_ete =
+        ete
+        .template selfadjointView<Eigen::Upper>()
+        .ldlt()
+        .solve(Matrix::Identity(e_block_size, e_block_size));
+
+    // For the current chunk compute and update the rhs of the reduced
+    // linear system.
+    //
+    //   rhs = F'b - F'E(E'E)^(-1) E'b
+    UpdateRhs(chunk, A, b, chunk.start, inverse_ete * g, rhs);
+
+    // S -= F'E(E'E)^{-1}E'F
+    ChunkOuterProduct(bs, inverse_ete, buffer, chunk.buffer_layout, lhs);
+  }
+
+  // For rows with no e_blocks, the schur complement update reduces to
+  // S += F'F.
+  NoEBlockRowsUpdate(A, b,  uneliminated_row_begins_, lhs, rhs);
+}
+
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+BackSubstitute(const BlockSparseMatrixBase* A,
+               const double* b,
+               const double* D,
+               const double* z,
+               double* y) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+#pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
+  for (int i = 0; i < chunks_.size(); ++i) {
+    const Chunk& chunk = chunks_[i];
+    const int e_block_id = bs->rows[chunk.start].cells.front().block_id;
+    const int e_block_size = bs->cols[e_block_id].size;
+
+    typename EigenTypes<kEBlockSize>::VectorRef y_block(
+        y +  bs->cols[e_block_id].position, e_block_size);
+
+    typename EigenTypes<kEBlockSize, kEBlockSize>::Matrix
+        ete(e_block_size, e_block_size);
+    if (D != NULL) {
+      const typename EigenTypes<kEBlockSize>::ConstVectorRef
+          diag(D + bs->cols[e_block_id].position, e_block_size);
+      ete = diag.array().square().matrix().asDiagonal();
+    } else {
+      ete.setZero();
+    }
+
+    for (int j = 0; j < chunk.size; ++j) {
+      const CompressedRow& row = bs->rows[chunk.start + j];
+      const double* row_values = A->RowBlockValues(chunk.start + j);
+      const Cell& e_cell = row.cells.front();
+      DCHECK_EQ(e_block_id, e_cell.block_id);
+      const typename EigenTypes<kRowBlockSize, kEBlockSize>::ConstMatrixRef
+          e_block(row_values + e_cell.position,
+                  row.block.size,
+                  e_block_size);
+
+      typename EigenTypes<kRowBlockSize>::Vector
+          sj =
+          typename EigenTypes<kRowBlockSize>::ConstVectorRef
+          (b + bs->rows[chunk.start + j].block.position,
+           row.block.size);
+
+      for (int c = 1; c < row.cells.size(); ++c) {
+        const int f_block_id = row.cells[c].block_id;
+        const int f_block_size = bs->cols[f_block_id].size;
+        const typename EigenTypes<kRowBlockSize, kFBlockSize>::ConstMatrixRef
+            f_block(row_values + row.cells[c].position,
+                    row.block.size, f_block_size);
+        const int r_block = f_block_id - num_eliminate_blocks_;
+
+        sj -= f_block *
+            typename EigenTypes<kFBlockSize>::ConstVectorRef
+            (z + lhs_row_layout_[r_block], f_block_size);
+      }
+
+      y_block += e_block.transpose() * sj;
+      ete.template selfadjointView<Eigen::Upper>()
+          .rankUpdate(e_block.transpose(), 1.0);
+    }
+
+    y_block =
+        ete
+        .template selfadjointView<Eigen::Upper>()
+        .ldlt()
+        .solve(y_block);
+  }
+}
+
+// Update the rhs of the reduced linear system. Compute
+//
+//   F'b - F'E(E'E)^(-1) E'b
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+UpdateRhs(const Chunk& chunk,
+          const BlockSparseMatrixBase* A,
+          const double* b,
+          int row_block_counter,
+          const Vector& inverse_ete_g,
+          double* rhs) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+  const int e_block_size = inverse_ete_g.rows();
+  int b_pos = bs->rows[row_block_counter].block.position;
+  for (int j = 0; j < chunk.size; ++j) {
+    const CompressedRow& row = bs->rows[row_block_counter + j];
+    const double *row_values = A->RowBlockValues(row_block_counter + j);
+    const Cell& e_cell = row.cells.front();
+
+    const typename EigenTypes<kRowBlockSize, kEBlockSize>::ConstMatrixRef
+        e_block(row_values + e_cell.position,
+                row.block.size,
+                e_block_size);
+
+    const typename EigenTypes<kRowBlockSize>::Vector
+        sj =
+        typename EigenTypes<kRowBlockSize>::ConstVectorRef
+         (b + b_pos, row.block.size) - e_block * (inverse_ete_g);
+
+    for (int c = 1; c < row.cells.size(); ++c) {
+      const int block_id = row.cells[c].block_id;
+      const int block_size = bs->cols[block_id].size;
+      const typename EigenTypes<kRowBlockSize, kFBlockSize>::ConstMatrixRef
+          b(row_values + row.cells[c].position,
+            row.block.size, block_size);
+
+      const int block = block_id - num_eliminate_blocks_;
+      MutexLock l(rhs_locks_[block]);
+      typename EigenTypes<kFBlockSize>::VectorRef
+          (rhs + lhs_row_layout_[block], block_size).noalias()
+          += b.transpose() * sj;
+    }
+    b_pos += row.block.size;
+  }
+}
+
+// Given a Chunk - set of rows with the same e_block, e.g. in the
+// following Chunk with two rows.
+//
+//                E                   F
+//      [ y11   0   0   0 |  z11     0    0   0    z51]
+//      [ y12   0   0   0 |  z12   z22    0   0      0]
+//
+// this function computes twp matrices. The diagonal block matrix
+//
+//   ete = y11 * y11' + y12 * y12'
+//
+// and the off diagonal blocks in the Guass Newton Hessian.
+//
+//   buffer = [y11'(z11 + z12), y12' * z22, y11' * z51]
+//
+// which are zero compressed versions of the block sparse matrices E'E
+// and E'F.
+//
+// and the gradient of the e_block, E'b.
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+ChunkDiagonalBlockAndGradient(
+    const Chunk& chunk,
+    const BlockSparseMatrixBase* A,
+    const double* b,
+    int row_block_counter,
+    typename EigenTypes<kEBlockSize, kEBlockSize>::Matrix* ete,
+    typename EigenTypes<kEBlockSize>::Vector* g,
+    double* buffer,
+    BlockRandomAccessMatrix* lhs) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+
+  int b_pos = bs->rows[row_block_counter].block.position;
+  const int e_block_size = ete->rows();
+
+  // Iterate over the rows in this chunk, for each row, compute the
+  // contribution of its F blocks to the Schur complement, the
+  // contribution of its E block to the matrix EE' (ete), and the
+  // corresponding block in the gradient vector.
+  for (int j = 0; j < chunk.size; ++j) {
+    const CompressedRow& row = bs->rows[row_block_counter + j];
+    const double *row_values = A->RowBlockValues(row_block_counter + j);
+
+    if (row.cells.size() > 1) {
+      EBlockRowOuterProduct(A, row_block_counter + j, lhs);
+    }
+
+    // Extract the e_block, ETE += E_i' E_i
+    const Cell& e_cell = row.cells.front();
+    const typename EigenTypes<kRowBlockSize, kEBlockSize>::ConstMatrixRef
+        e_block(row_values + e_cell.position,
+                row.block.size,
+                e_block_size);
+
+    ete->template selfadjointView<Eigen::Upper>()
+        .rankUpdate(e_block.transpose(), 1.0);
+
+    // g += E_i' b_i
+    g->noalias() += e_block.transpose() *
+        typename EigenTypes<kRowBlockSize>::ConstVectorRef
+        (b + b_pos, row.block.size);
+
+    // buffer = E'F. This computation is done by iterating over the
+    // f_blocks for each row in the chunk.
+    for (int c = 1; c < row.cells.size(); ++c) {
+      const int f_block_id = row.cells[c].block_id;
+      const int f_block_size = bs->cols[f_block_id].size;
+      const typename EigenTypes<kRowBlockSize, kFBlockSize>::ConstMatrixRef
+          f_block(row_values + row.cells[c].position,
+                  row.block.size, f_block_size);
+
+      double* buffer_ptr =
+          buffer +  FindOrDie(chunk.buffer_layout, f_block_id);
+
+      typename EigenTypes<kEBlockSize, kFBlockSize>::MatrixRef
+          (buffer_ptr,  e_block_size, f_block_size).noalias()
+          += e_block.transpose() * f_block;
+    }
+    b_pos += row.block.size;
+  }
+}
+
+// Compute the outer product F'E(E'E)^{-1}E'F and subtract it from the
+// Schur complement matrix, i.e
+//
+//  S -= F'E(E'E)^{-1}E'F.
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+ChunkOuterProduct(const CompressedRowBlockStructure* bs,
+                  const Matrix& inverse_ete,
+                  const double* buffer,
+                  const BufferLayoutType& buffer_layout,
+                  BlockRandomAccessMatrix* lhs) {
+  // This is the most computationally expensive part of this
+  // code. Profiling experiments reveal that the bottleneck is not the
+  // computation of the right-hand matrix product, but memory
+  // references to the left hand side.
+  const int e_block_size = inverse_ete.rows();
+  BufferLayoutType::const_iterator it1 = buffer_layout.begin();
+  // S(i,j) -= bi' * ete^{-1} b_j
+  for (; it1 != buffer_layout.end(); ++it1) {
+    const int block1 = it1->first - num_eliminate_blocks_;
+    const int block1_size = bs->cols[it1->first].size;
+
+    const typename EigenTypes<kEBlockSize, kFBlockSize>::ConstMatrixRef
+        b1(buffer + it1->second, e_block_size, block1_size);
+    const typename EigenTypes<kFBlockSize, kEBlockSize>::Matrix
+        b1_transpose_inverse_ete = b1.transpose() * inverse_ete;
+
+    BufferLayoutType::const_iterator it2 = it1;
+    for (; it2 != buffer_layout.end(); ++it2) {
+      const int block2 = it2->first - num_eliminate_blocks_;
+
+      int r, c, row_stride, col_stride;
+      CellInfo* cell_info = lhs->GetCell(block1, block2,
+                                         &r, &c,
+                                         &row_stride, &col_stride);
+      if (cell_info == NULL) {
+        continue;
+      }
+
+      const int block2_size = bs->cols[it2->first].size;
+      const typename EigenTypes<kEBlockSize, kFBlockSize>::ConstMatrixRef
+          b2(buffer + it2->second, e_block_size, block2_size);
+
+      MutexLock l(&cell_info->m);
+      MatrixRef m(cell_info->values, row_stride, col_stride);
+
+      // We explicitly construct a block object here instead of using
+      // m.block(), as m.block() variant of the constructor does not
+      // allow mixing of template sizing and runtime sizing parameters
+      // like the Matrix class does.
+      Eigen::Block<MatrixRef, kFBlockSize, kFBlockSize>
+          block(m, r, c,  block1_size, block2_size);
+      block.noalias() -=  b1_transpose_inverse_ete * b2;
+    }
+  }
+}
+
+// For rows with no e_blocks, the schur complement update reduces to S
+// += F'F. This function iterates over the rows of A with no e_block,
+// and calls NoEBlockRowOuterProduct on each row.
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+NoEBlockRowsUpdate(const BlockSparseMatrixBase* A,
+                   const double* b,
+                   int row_block_counter,
+                   BlockRandomAccessMatrix* lhs,
+                   double* rhs) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+  for (; row_block_counter < bs->rows.size(); ++row_block_counter) {
+    const CompressedRow& row = bs->rows[row_block_counter];
+    const double *row_values = A->RowBlockValues(row_block_counter);
+    for (int c = 0; c < row.cells.size(); ++c) {
+      const int block_id = row.cells[c].block_id;
+      const int block_size = bs->cols[block_id].size;
+      const int block = block_id - num_eliminate_blocks_;
+      VectorRef(rhs + lhs_row_layout_[block], block_size).noalias()
+          += (ConstMatrixRef(row_values + row.cells[c].position,
+                             row.block.size, block_size).transpose() *
+              ConstVectorRef(b + row.block.position, row.block.size));
+    }
+    NoEBlockRowOuterProduct(A, row_block_counter, lhs);
+  }
+}
+
+
+// A row r of A, which has no e_blocks gets added to the Schur
+// Complement as S += r r'. This function is responsible for computing
+// the contribution of a single row r to the Schur complement. It is
+// very similar in structure to EBlockRowOuterProduct except for
+// one difference. It does not use any of the template
+// parameters. This is because the algorithm used for detecting the
+// static structure of the matrix A only pays attention to rows with
+// e_blocks. This is becase rows without e_blocks are rare and
+// typically arise from regularization terms in the original
+// optimization problem, and have a very different structure than the
+// rows with e_blocks. Including them in the static structure
+// detection will lead to most template parameters being set to
+// dynamic. Since the number of rows without e_blocks is small, the
+// lack of templating is not an issue.
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+NoEBlockRowOuterProduct(const BlockSparseMatrixBase* A,
+                     int row_block_index,
+                     BlockRandomAccessMatrix* lhs) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+  const CompressedRow& row = bs->rows[row_block_index];
+  const double *row_values = A->RowBlockValues(row_block_index);
+  for (int i = 0; i < row.cells.size(); ++i) {
+    const int block1 = row.cells[i].block_id - num_eliminate_blocks_;
+    DCHECK_GE(block1, 0);
+
+    const int block1_size = bs->cols[row.cells[i].block_id].size;
+    const ConstMatrixRef b1(row_values + row.cells[i].position,
+                            row.block.size, block1_size);
+    int r, c, row_stride, col_stride;
+    CellInfo* cell_info = lhs->GetCell(block1, block1,
+                                       &r, &c,
+                                       &row_stride, &col_stride);
+    if (cell_info != NULL) {
+      MutexLock l(&cell_info->m);
+      MatrixRef m(cell_info->values, row_stride, col_stride);
+      m.block(r, c, block1_size, block1_size)
+          .selfadjointView<Eigen::Upper>()
+          .rankUpdate(b1.transpose(), 1.0);
+    }
+
+    for (int j = i + 1; j < row.cells.size(); ++j) {
+      const int block2 = row.cells[j].block_id - num_eliminate_blocks_;
+      DCHECK_GE(block2, 0);
+      DCHECK_LT(block1, block2);
+      int r, c, row_stride, col_stride;
+      CellInfo* cell_info = lhs->GetCell(block1, block2,
+                                         &r, &c,
+                                         &row_stride, &col_stride);
+      if (cell_info == NULL) {
+        continue;
+      }
+
+      const int block2_size = bs->cols[row.cells[j].block_id].size;
+      MutexLock l(&cell_info->m);
+      MatrixRef m(cell_info->values, row_stride, col_stride);
+      m.block(r, c, block1_size, block2_size).noalias() +=
+          b1.transpose() * ConstMatrixRef(row_values + row.cells[j].position,
+                                          row.block.size,
+                                          block2_size);
+    }
+  }
+}
+
+// For a row with an e_block, compute the contribition S += F'F. This
+// function has the same structure as NoEBlockRowOuterProduct, except
+// that this function uses the template parameters.
+template <int kRowBlockSize, int kEBlockSize, int kFBlockSize>
+void
+SchurEliminator<kRowBlockSize, kEBlockSize, kFBlockSize>::
+EBlockRowOuterProduct(const BlockSparseMatrixBase* A,
+                      int row_block_index,
+                      BlockRandomAccessMatrix* lhs) {
+  const CompressedRowBlockStructure* bs = A->block_structure();
+  const CompressedRow& row = bs->rows[row_block_index];
+  const double *row_values = A->RowBlockValues(row_block_index);
+  for (int i = 1; i < row.cells.size(); ++i) {
+    const int block1 = row.cells[i].block_id - num_eliminate_blocks_;
+    DCHECK_GE(block1, 0);
+
+    const int block1_size = bs->cols[row.cells[i].block_id].size;
+    const typename EigenTypes<kRowBlockSize, kFBlockSize>::ConstMatrixRef
+        b1(row_values + row.cells[i].position,
+           row.block.size, block1_size);
+    {
+      int r, c, row_stride, col_stride;
+      CellInfo* cell_info = lhs->GetCell(block1, block1,
+                                         &r, &c,
+                                         &row_stride, &col_stride);
+      if (cell_info == NULL) {
+        continue;
+      }
+
+      MutexLock l(&cell_info->m);
+      MatrixRef m(cell_info->values, row_stride, col_stride);
+
+      Eigen::Block<MatrixRef, kFBlockSize, kFBlockSize>
+          block(m, r, c,  block1_size, block1_size);
+      block.template selfadjointView<Eigen::Upper>()
+          .rankUpdate(b1.transpose(), 1.0);
+    }
+
+    for (int j = i + 1; j < row.cells.size(); ++j) {
+      const int block2 = row.cells[j].block_id - num_eliminate_blocks_;
+      DCHECK_GE(block2, 0);
+      DCHECK_LT(block1, block2);
+      const int block2_size = bs->cols[row.cells[j].block_id].size;
+      int r, c, row_stride, col_stride;
+      CellInfo* cell_info = lhs->GetCell(block1, block2,
+                                         &r, &c,
+                                         &row_stride, &col_stride);
+      if (cell_info == NULL) {
+        continue;
+      }
+
+      const typename EigenTypes<kRowBlockSize, kFBlockSize>::ConstMatrixRef
+          b2(row_values + row.cells[j].position,
+             row.block.size,
+             block2_size);
+
+      MutexLock l(&cell_info->m);
+      MatrixRef m(cell_info->values, row_stride, col_stride);
+      Eigen::Block<MatrixRef, kFBlockSize, kFBlockSize>
+          block(m, r, c,  block1_size, block2_size);
+      block.noalias() += b1.transpose() * b2;
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SCHUR_ELIMINATOR_IMPL_H_
diff --git a/internal/ceres/schur_eliminator_test.cc b/internal/ceres/schur_eliminator_test.cc
new file mode 100644
index 0000000..0ac4354
--- /dev/null
+++ b/internal/ceres/schur_eliminator_test.cc
@@ -0,0 +1,233 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/schur_eliminator.h"
+
+#include <glog/logging.h>
+#include "ceres/file.h"
+#include "gtest/gtest.h"
+#include "Eigen/Dense"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/detect_structure.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+// TODO(sameeragarwal): Reduce the size of these tests and redo the
+// parameterization to be more efficient.
+
+DECLARE_string(test_srcdir);
+
+namespace ceres {
+namespace internal {
+
+class SchurEliminatorTest : public ::testing::Test {
+ protected:
+  void SetUpFromId(int id) {
+    scoped_ptr<LinearLeastSquaresProblem>
+        problem(CreateLinearLeastSquaresProblemFromId(id));
+    CHECK_NOTNULL(problem.get());
+    SetupHelper(problem.get());
+  }
+
+  void SetUpFromFilename(const string& filename) {
+    scoped_ptr<LinearLeastSquaresProblem>
+        problem(CreateLinearLeastSquaresProblemFromFile(filename));
+    CHECK_NOTNULL(problem.get());
+    SetupHelper(problem.get());
+  }
+
+  void SetupHelper(LinearLeastSquaresProblem* problem) {
+    A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+    b.reset(problem->b.release());
+    D.reset(problem->D.release());
+
+    num_eliminate_blocks = problem->num_eliminate_blocks;
+    num_eliminate_cols = 0;
+    const CompressedRowBlockStructure* bs = A->block_structure();
+
+    for (int i = 0; i < num_eliminate_blocks; ++i) {
+      num_eliminate_cols += bs->cols[i].size;
+    }
+  }
+
+  // Compute the golden values for the reduced linear system and the
+  // solution to the linear least squares problem using dense linear
+  // algebra.
+  void ComputeReferenceSolution(const Vector& D) {
+    Matrix J;
+    A->ToDenseMatrix(&J);
+    VectorRef f(b.get(), J.rows());
+
+    Matrix H  =  (D.cwiseProduct(D)).asDiagonal();
+    H.noalias() += J.transpose() * J;
+
+    const Vector g = J.transpose() * f;
+    const int schur_size = J.cols() - num_eliminate_cols;
+
+    lhs_expected.resize(schur_size, schur_size);
+    lhs_expected.setZero();
+
+    rhs_expected.resize(schur_size);
+    rhs_expected.setZero();
+
+    sol_expected.resize(J.cols());
+    sol_expected.setZero();
+
+    Matrix P = H.block(0, 0, num_eliminate_cols, num_eliminate_cols);
+    Matrix Q = H.block(0,
+                       num_eliminate_cols,
+                       num_eliminate_cols,
+                       schur_size);
+    Matrix R = H.block(num_eliminate_cols,
+                       num_eliminate_cols,
+                       schur_size,
+                       schur_size);
+    int row = 0;
+    const CompressedRowBlockStructure* bs = A->block_structure();
+    for (int i = 0; i < num_eliminate_blocks; ++i) {
+      const int block_size =  bs->cols[i].size;
+      P.block(row, row,  block_size, block_size) =
+          P
+          .block(row, row,  block_size, block_size)
+          .ldlt()
+          .solve(Matrix::Identity(block_size, block_size));
+      row += block_size;
+    }
+
+    lhs_expected
+        .triangularView<Eigen::Upper>() = R - Q.transpose() * P * Q;
+    rhs_expected =
+        g.tail(schur_size) - Q.transpose() * P * g.head(num_eliminate_cols);
+    sol_expected = H.ldlt().solve(g);
+  }
+
+  void EliminateSolveAndCompare(const VectorRef& diagonal,
+                                bool use_static_structure,
+                                const double relative_tolerance) {
+    const CompressedRowBlockStructure* bs = A->block_structure();
+    const int num_col_blocks = bs->cols.size();
+    vector<int> blocks(num_col_blocks - num_eliminate_blocks, 0);
+    for (int i = num_eliminate_blocks; i < num_col_blocks; ++i) {
+      blocks[i - num_eliminate_blocks] = bs->cols[i].size;
+    }
+
+    BlockRandomAccessDenseMatrix lhs(blocks);
+
+    const int num_cols = A->num_cols();
+    const int schur_size = lhs.num_rows();
+
+    Vector rhs(schur_size);
+
+    LinearSolver::Options options;
+    options.num_eliminate_blocks = num_eliminate_blocks;
+    if (use_static_structure) {
+      DetectStructure(*bs,
+                      options.num_eliminate_blocks,
+                      &options.row_block_size,
+                      &options.e_block_size,
+                      &options.f_block_size);
+    }
+
+    scoped_ptr<SchurEliminatorBase> eliminator;
+    eliminator.reset(SchurEliminatorBase::Create(options));
+    eliminator->Init(num_eliminate_blocks, A->block_structure());
+    eliminator->Eliminate(A.get(), b.get(), diagonal.data(), &lhs, rhs.data());
+
+    MatrixRef lhs_ref(lhs.mutable_values(), lhs.num_rows(), lhs.num_cols());
+    Vector reduced_sol  =
+        lhs_ref
+        .selfadjointView<Eigen::Upper>()
+        .ldlt()
+        .solve(rhs);
+
+    // Solution to the linear least squares problem.
+    Vector sol(num_cols);
+    sol.setZero();
+    sol.tail(schur_size) = reduced_sol;
+    eliminator->BackSubstitute(A.get(),
+                               b.get(),
+                               diagonal.data(),
+                               reduced_sol.data(),
+                               sol.data());
+
+    Matrix delta = (lhs_ref - lhs_expected).selfadjointView<Eigen::Upper>();
+    double diff = delta.norm();
+    EXPECT_NEAR(diff / lhs_expected.norm(), 0.0, relative_tolerance);
+    EXPECT_NEAR((rhs - rhs_expected).norm() / rhs_expected.norm(), 0.0,
+                relative_tolerance);
+    EXPECT_NEAR((sol - sol_expected).norm() / sol_expected.norm(), 0.0,
+                relative_tolerance);
+  }
+
+  scoped_ptr<BlockSparseMatrix> A;
+  scoped_array<double> b;
+  scoped_array<double> D;
+  int num_eliminate_blocks;
+  int num_eliminate_cols;
+
+  Matrix lhs_expected;
+  Vector rhs_expected;
+  Vector sol_expected;
+};
+
+TEST_F(SchurEliminatorTest, ScalarProblem) {
+  SetUpFromId(2);
+  Vector zero(A->num_cols());
+  zero.setZero();
+
+  ComputeReferenceSolution(VectorRef(zero.data(), A->num_cols()));
+  EliminateSolveAndCompare(VectorRef(zero.data(), A->num_cols()), true, 1e-14);
+  EliminateSolveAndCompare(VectorRef(zero.data(), A->num_cols()), false, 1e-14);
+
+  ComputeReferenceSolution(VectorRef(D.get(), A->num_cols()));
+  EliminateSolveAndCompare(VectorRef(D.get(), A->num_cols()), true, 1e-14);
+  EliminateSolveAndCompare(VectorRef(D.get(), A->num_cols()), false, 1e-14);
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(SchurEliminatorTest, BlockProblem) {
+  const string input_file =
+      JoinPath(FLAGS_test_srcdir,
+                     "problem-6-1384-000.lsqp");  // NOLINT
+
+  SetUpFromFilename(input_file);
+  ComputeReferenceSolution(VectorRef(D.get(), A->num_cols()));
+  EliminateSolveAndCompare(VectorRef(D.get(), A->num_cols()), true, 1e-10);
+  EliminateSolveAndCompare(VectorRef(D.get(), A->num_cols()), false, 1e-10);
+}
+#endif  // CERES_DONT_HAVE_PROTOCOL_BUFFERS
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_ordering.cc b/internal/ceres/schur_ordering.cc
new file mode 100644
index 0000000..c4fc1da
--- /dev/null
+++ b/internal/ceres/schur_ordering.cc
@@ -0,0 +1,113 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/schur_ordering.h"
+
+#include <glog/logging.h>
+#include "ceres/graph.h"
+#include "ceres/graph_algorithms.h"
+#include "ceres/map_util.h"
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/internal/scoped_ptr.h"
+
+CERES_HASH_NAMESPACE_START
+
+// Allow us to hash pointers as if they were int's
+template<> struct hash< ::ceres::internal::ParameterBlock*> {
+  size_t operator()(::ceres::internal::ParameterBlock* x) const {
+    return reinterpret_cast<size_t>(x);
+  }
+};
+
+CERES_HASH_NAMESPACE_END
+
+namespace ceres {
+namespace internal {
+
+int ComputeSchurOrdering(const Program& program,
+                         vector<ParameterBlock*>* ordering) {
+  CHECK_NOTNULL(ordering)->clear();
+
+  scoped_ptr<Graph< ParameterBlock*> > graph(
+      CHECK_NOTNULL(CreateHessianGraph(program)));
+  int independent_set_size =
+      IndependentSetOrdering<ParameterBlock*>(*graph, ordering);
+  const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
+
+  // Add the excluded blocks to back of the ordering vector.
+  for (int i = 0; i < parameter_blocks.size(); ++i) {
+    ParameterBlock* parameter_block = parameter_blocks[i];
+    if (parameter_block->IsConstant()) {
+      ordering->push_back(parameter_block);
+    }
+  }
+
+  return independent_set_size;
+}
+
+Graph<ParameterBlock*>*
+CreateHessianGraph(const Program& program) {
+  Graph<ParameterBlock*>* graph = new Graph<ParameterBlock*>;
+  const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
+  for (int i = 0; i < parameter_blocks.size(); ++i) {
+    ParameterBlock* parameter_block = parameter_blocks[i];
+    if (!parameter_block->IsConstant()) {
+      graph->AddVertex(parameter_block);
+    }
+  }
+
+  const vector<ResidualBlock*>& residual_blocks = program.residual_blocks();
+  for (int i = 0; i < residual_blocks.size(); ++i) {
+    const ResidualBlock* residual_block = residual_blocks[i];
+    const int num_parameter_blocks = residual_block->NumParameterBlocks();
+    ParameterBlock* const* parameter_blocks =
+        residual_block->parameter_blocks();
+    for (int j = 0; j < num_parameter_blocks; ++j) {
+      if (parameter_blocks[j]->IsConstant()) {
+        continue;
+      }
+
+      for (int k = j + 1; k < num_parameter_blocks; ++k) {
+        if (parameter_blocks[k]->IsConstant()) {
+          continue;
+        }
+
+        graph->AddEdge(parameter_blocks[j], parameter_blocks[k]);
+      }
+    }
+  }
+
+  return graph;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/schur_ordering.h b/internal/ceres/schur_ordering.h
new file mode 100644
index 0000000..1f9a4ff
--- /dev/null
+++ b/internal/ceres/schur_ordering.h
@@ -0,0 +1,74 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Compute a parameter block ordering for use with the Schur
+// complement based algorithms.
+
+#ifndef CERES_INTERNAL_SCHUR_ORDERING_H_
+#define CERES_INTERNAL_SCHUR_ORDERING_H_
+
+#include <vector>
+#include "ceres/graph.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class Program;
+class ParameterBlock;
+
+// Uses an approximate independent set ordering to order the parameter
+// blocks of a problem so that it is suitable for use with Schur
+// complement based solvers. The output variable ordering contains an
+// ordering of the parameter blocks and the return value is size of
+// the independent set or the number of e_blocks (see
+// schur_complement_solver.h for an explanation). Constant parameters
+// are added to the end.
+//
+// The ordering vector has the structure
+//
+// ordering = [independent set,
+//             complement of the independent set,
+//             fixed blocks]
+int ComputeSchurOrdering(const Program& program,
+                         vector<ParameterBlock* >* ordering);
+
+
+// Builds a graph on the parameter blocks of a Problem, whose
+// structure reflects the sparsity structure of the Hessian. Each
+// vertex corresponds to a parameter block in the Problem except for
+// parameter blocks that are marked constant. An edge connects two
+// parameter blocks, if they co-occur in a residual block.
+Graph<ParameterBlock*>* CreateHessianGraph(const Program& program);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SCHUR_ORDERING_H_
diff --git a/internal/ceres/schur_ordering_test.cc b/internal/ceres/schur_ordering_test.cc
new file mode 100644
index 0000000..bd74ebb
--- /dev/null
+++ b/internal/ceres/schur_ordering_test.cc
@@ -0,0 +1,177 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/schur_ordering.h"
+
+#include <cstddef>
+#include <vector>
+#include "gtest/gtest.h"
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/stl_util.h"
+#include "ceres/cost_function.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/sized_cost_function.h"
+
+namespace ceres {
+namespace internal {
+
+typedef Graph<ParameterBlock*> HessianGraph;
+typedef HashSet<ParameterBlock*> VertexSet;
+
+template <int M, int N1 = 0, int N2 = 0, int N3 = 0>
+class DummyCostFunction: public SizedCostFunction<M, N1, N2, N3> {
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    return true;
+  }
+};
+
+class SchurOrderingTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    // The explicit calls to AddParameterBlock are necessary because
+    // the below tests depend on the specific numbering of the
+    // parameter blocks.
+    problem_.AddParameterBlock(x_, 3);
+    problem_.AddParameterBlock(y_, 4);
+    problem_.AddParameterBlock(z_, 5);
+    problem_.AddParameterBlock(w_, 6);
+
+    problem_.AddResidualBlock(new DummyCostFunction<2, 3>, NULL, x_);
+    problem_.AddResidualBlock(new DummyCostFunction<6, 5, 4>, NULL, z_, y_);
+    problem_.AddResidualBlock(new DummyCostFunction<3, 3, 5>, NULL, x_, z_);
+    problem_.AddResidualBlock(new DummyCostFunction<7, 5, 3>, NULL, z_, x_);
+    problem_.AddResidualBlock(new DummyCostFunction<1, 5, 3, 6>, NULL,
+                              z_, x_, w_);
+  }
+
+  ProblemImpl problem_;
+  double x_[3], y_[4], z_[5], w_[6];
+};
+
+TEST_F(SchurOrderingTest, NoFixed) {
+  const Program& program = problem_.program();
+  const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
+  scoped_ptr<HessianGraph> graph(CreateHessianGraph(program));
+
+  const VertexSet& vertices = graph->vertices();
+  EXPECT_EQ(vertices.size(), 4);
+
+  for (int i = 0; i < 4; ++i) {
+    EXPECT_TRUE(vertices.find(parameter_blocks[i]) != vertices.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[0]);
+    EXPECT_EQ(neighbors.size(), 2);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[2]) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(parameter_blocks[3]) != neighbors.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[1]);
+    EXPECT_EQ(neighbors.size(), 1);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[2]) != neighbors.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[2]);
+    EXPECT_EQ(neighbors.size(), 3);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[0]) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(parameter_blocks[1]) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(parameter_blocks[3]) != neighbors.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[3]);
+    EXPECT_EQ(neighbors.size(), 2);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[0]) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(parameter_blocks[2]) != neighbors.end());
+  }
+}
+
+TEST_F(SchurOrderingTest, AllFixed) {
+  problem_.SetParameterBlockConstant(x_);
+  problem_.SetParameterBlockConstant(y_);
+  problem_.SetParameterBlockConstant(z_);
+  problem_.SetParameterBlockConstant(w_);
+
+  const Program& program = problem_.program();
+  scoped_ptr<HessianGraph> graph(CreateHessianGraph(program));
+  EXPECT_EQ(graph->vertices().size(), 0);
+}
+
+TEST_F(SchurOrderingTest, OneFixed) {
+  problem_.SetParameterBlockConstant(x_);
+
+  const Program& program = problem_.program();
+  const vector<ParameterBlock*>& parameter_blocks = program.parameter_blocks();
+  scoped_ptr<HessianGraph> graph(CreateHessianGraph(program));
+
+  const VertexSet& vertices = graph->vertices();
+
+  EXPECT_EQ(vertices.size(), 3);
+  EXPECT_TRUE(vertices.find(parameter_blocks[0]) == vertices.end());
+
+  for (int i = 1; i < 3; ++i) {
+    EXPECT_TRUE(vertices.find(parameter_blocks[i]) != vertices.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[1]);
+    EXPECT_EQ(neighbors.size(), 1);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[2]) != neighbors.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[2]);
+    EXPECT_EQ(neighbors.size(), 2);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[1]) != neighbors.end());
+    EXPECT_TRUE(neighbors.find(parameter_blocks[3]) != neighbors.end());
+  }
+
+  {
+    const VertexSet& neighbors = graph->Neighbors(parameter_blocks[3]);
+    EXPECT_EQ(neighbors.size(), 1);
+    EXPECT_TRUE(neighbors.find(parameter_blocks[2]) != neighbors.end());
+  }
+
+  // The constant parameter block is at the end.
+  vector<ParameterBlock*> ordering;
+  ComputeSchurOrdering(program, &ordering);
+  EXPECT_EQ(ordering.back(), parameter_blocks[0]);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/scratch_evaluate_preparer.cc b/internal/ceres/scratch_evaluate_preparer.cc
new file mode 100644
index 0000000..6f0ceef
--- /dev/null
+++ b/internal/ceres/scratch_evaluate_preparer.cc
@@ -0,0 +1,78 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/scratch_evaluate_preparer.h"
+
+#include "ceres/parameter_block.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+
+namespace ceres {
+namespace internal {
+
+ScratchEvaluatePreparer* ScratchEvaluatePreparer::Create(
+    const Program &program,
+    int num_threads) {
+  ScratchEvaluatePreparer* preparers = new ScratchEvaluatePreparer[num_threads];
+  int max_derivatives_per_residual_block =
+      program.MaxDerivativesPerResidualBlock();
+  for (int i = 0; i < num_threads; i++) {
+    preparers[i].Init(max_derivatives_per_residual_block);
+  }
+  return preparers;
+}
+
+void ScratchEvaluatePreparer::Init(int max_derivatives_per_residual_block) {
+  jacobian_scratch_.reset(
+      new double[max_derivatives_per_residual_block]);
+}
+
+// Point the jacobian blocks into the scratch area of this evaluate preparer.
+void ScratchEvaluatePreparer::Prepare(const ResidualBlock* residual_block,
+                                      int /* residual_block_index */,
+                                      SparseMatrix* /* jacobian */,
+                                      double** jacobians) {
+  double* jacobian_block_cursor = jacobian_scratch_.get();
+  int num_residuals = residual_block->NumResiduals();
+  int num_parameter_blocks = residual_block->NumParameterBlocks();
+  for (int j = 0; j < num_parameter_blocks; ++j) {
+    const ParameterBlock* parameter_block =
+        residual_block->parameter_blocks()[j];
+    if (parameter_block->IsConstant()) {
+      jacobians[j] = NULL;
+    } else {
+      jacobians[j] = jacobian_block_cursor;
+      jacobian_block_cursor += num_residuals * parameter_block->LocalSize();
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/scratch_evaluate_preparer.h b/internal/ceres/scratch_evaluate_preparer.h
new file mode 100644
index 0000000..6b12708
--- /dev/null
+++ b/internal/ceres/scratch_evaluate_preparer.h
@@ -0,0 +1,69 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// A scratch evaluate preparer provides temporary storage for the jacobians that
+// are created when running user-provided cost functions. The evaluator takes
+// care to avoid evaluating the jacobian for fixed parameters.
+
+#ifndef CERES_INTERNAL_SCRATCH_EVALUATE_PREPARER_H_
+#define CERES_INTERNAL_SCRATCH_EVALUATE_PREPARER_H_
+
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+class Program;
+class ResidualBlock;
+class SparseMatrix;
+
+class ScratchEvaluatePreparer {
+ public:
+  // Create num_threads ScratchEvaluatePreparers.
+  static ScratchEvaluatePreparer* Create(const Program &program,
+                                         int num_threads);
+
+  // EvaluatePreparer interface
+  void Init(int max_derivatives_per_residual_block);
+  void Prepare(const ResidualBlock* residual_block,
+               int residual_block_index,
+               SparseMatrix* jacobian,
+               double** jacobians);
+
+ private:
+  // Scratch space for the jacobians; each jacobian is packed one after another.
+  // There is enough scratch to hold all the jacobians for the largest residual.
+  scoped_array<double> jacobian_scratch_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SCRATCH_EVALUATE_PREPARER_H_
diff --git a/internal/ceres/solver.cc b/internal/ceres/solver.cc
new file mode 100644
index 0000000..c54668e
--- /dev/null
+++ b/internal/ceres/solver.cc
@@ -0,0 +1,229 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//         sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/solver.h"
+
+#include <vector>
+#include "ceres/levenberg_marquardt.h"
+#include "ceres/program.h"
+#include "ceres/solver_impl.h"
+#include "ceres/stringprintf.h"
+#include "ceres/problem.h"
+
+namespace ceres {
+
+Solver::~Solver() {}
+
+// TODO(sameeragarwal): The timing code here should use a sub-second
+// timer.
+void Solver::Solve(const Solver::Options& options,
+                   Problem* problem,
+                   Solver::Summary* summary) {
+  time_t start_time_seconds = time(NULL);
+  internal::SolverImpl::Solve(options, problem, summary);
+  summary->total_time_in_seconds =  time(NULL) - start_time_seconds;
+  summary->preprocessor_time_in_seconds =
+      summary->total_time_in_seconds - summary->minimizer_time_in_seconds;
+}
+
+void Solve(const Solver::Options& options,
+           Problem* problem,
+           Solver::Summary* summary) {
+  time_t start_time_seconds = time(NULL);
+  internal::SolverImpl::Solve(options, problem, summary);
+  summary->total_time_in_seconds =  time(NULL) - start_time_seconds;
+  summary->preprocessor_time_in_seconds =
+      summary->total_time_in_seconds - summary->minimizer_time_in_seconds;
+}
+
+Solver::Summary::Summary()
+    // Invalid values for most fields, to ensure that we are not
+    // accidentally reporting default values.
+    : termination_type(DID_NOT_RUN),
+      initial_cost(-1.0),
+      final_cost(-1.0),
+      fixed_cost(-1.0),
+      num_successful_steps(-1),
+      num_unsuccessful_steps(-1),
+      preprocessor_time_in_seconds(-1.0),
+      minimizer_time_in_seconds(-1.0),
+      total_time_in_seconds(-1.0),
+      num_parameter_blocks(-1),
+      num_parameters(-1),
+      num_residual_blocks(-1),
+      num_residuals(-1),
+      num_parameter_blocks_reduced(-1),
+      num_parameters_reduced(-1),
+      num_residual_blocks_reduced(-1),
+      num_residuals_reduced(-1),
+      num_eliminate_blocks_given(-1),
+      num_eliminate_blocks_used(-1),
+      num_threads_given(-1),
+      num_threads_used(-1),
+      num_linear_solver_threads_given(-1),
+      num_linear_solver_threads_used(-1),
+      linear_solver_type_given(SPARSE_NORMAL_CHOLESKY),
+      linear_solver_type_used(SPARSE_NORMAL_CHOLESKY),
+      preconditioner_type(IDENTITY),
+      ordering_type(NATURAL) {
+}
+
+string Solver::Summary::BriefReport() const {
+  string report = "Ceres Solver Report: ";
+  if (termination_type == DID_NOT_RUN) {
+    CHECK(!error.empty())
+          << "Solver terminated with DID_NOT_RUN but the solver did not "
+          << "return a reason. This is a Ceres error. Please report this "
+          << "to the Ceres team";
+    return report + "Termination: DID_NOT_RUN, because " + error;
+  }
+
+  internal::StringAppendF(&report, "Iterations: %d",
+                          num_successful_steps + num_unsuccessful_steps);
+  internal::StringAppendF(&report, ", Initial cost: %e", initial_cost);
+
+  // If the solver failed or was aborted, then the final_cost has no
+  // meaning.
+  if (termination_type != NUMERICAL_FAILURE &&
+      termination_type != USER_ABORT) {
+    internal::StringAppendF(&report, ", Final cost: %e", final_cost);
+  }
+
+  internal::StringAppendF(&report, ", Termination: %s.",
+                          SolverTerminationTypeToString(termination_type));
+  return report;
+};
+
+string Solver::Summary::FullReport() const {
+  string report =
+      "\n"
+      "Ceres Solver Report\n"
+      "-------------------\n";
+
+  if (termination_type == DID_NOT_RUN) {
+    internal::StringAppendF(&report, "                      Original\n");
+    internal::StringAppendF(&report, "Parameter blocks    % 10d\n",
+                            num_parameter_blocks);
+    internal::StringAppendF(&report, "Parameters          % 10d\n",
+                            num_parameters);
+    internal::StringAppendF(&report, "Residual blocks     % 10d\n",
+                            num_residual_blocks);
+    internal::StringAppendF(&report, "Residual            % 10d\n\n",
+                            num_residuals);
+  } else {
+    internal::StringAppendF(&report, "%45s    %21s\n", "Original", "Reduced");
+    internal::StringAppendF(&report, "Parameter blocks    % 25d% 25d\n",
+                            num_parameter_blocks, num_parameter_blocks_reduced);
+    internal::StringAppendF(&report, "Parameters          % 25d% 25d\n",
+                            num_parameters, num_parameters_reduced);
+    internal::StringAppendF(&report, "Residual blocks     % 25d% 25d\n",
+                            num_residual_blocks, num_residual_blocks_reduced);
+    internal::StringAppendF(&report, "Residual            % 25d% 25d\n\n",
+                          num_residuals, num_residuals_reduced);
+  }
+
+  internal::StringAppendF(&report,   "%45s    %21s\n", "Given",  "Used");
+  internal::StringAppendF(&report, "Linear solver       %25s%25s\n",
+                          LinearSolverTypeToString(linear_solver_type_given),
+                          LinearSolverTypeToString(linear_solver_type_used));
+
+  if (linear_solver_type_given == ITERATIVE_SCHUR) {
+    internal::StringAppendF(&report, "Preconditioner      %25s%25s\n",
+                            PreconditionerTypeToString(preconditioner_type),
+                            PreconditionerTypeToString(preconditioner_type));
+  } else {
+    internal::StringAppendF(&report, "Preconditioner      %25s%25s\n",
+                            "N/A", "N/A");
+  }
+
+  internal::StringAppendF(&report, "Ordering            %25s%25s\n",
+                          OrderingTypeToString(ordering_type),
+                          OrderingTypeToString(ordering_type));
+
+  if (IsSchurType(linear_solver_type_given)) {
+    if (ordering_type == SCHUR) {
+      internal::StringAppendF(&report, "num_eliminate_blocks%25s% 25d\n",
+                              "N/A",
+                              num_eliminate_blocks_used);
+    } else {
+      internal::StringAppendF(&report, "num_eliminate_blocks% 25d% 25d\n",
+                              num_eliminate_blocks_given,
+                              num_eliminate_blocks_used);
+    }
+  }
+
+  internal::StringAppendF(&report, "Threads:            % 25d% 25d\n",
+                          num_threads_given, num_threads_used);
+  internal::StringAppendF(&report, "Linear Solver Threads:% 23d% 25d\n",
+                          num_linear_solver_threads_given,
+                          num_linear_solver_threads_used);
+
+
+  if (termination_type == DID_NOT_RUN) {
+    CHECK(!error.empty())
+        << "Solver terminated with DID_NOT_RUN but the solver did not "
+        << "return a reason. This is a Ceres error. Please report this "
+        << "to the Ceres team";
+    internal::StringAppendF(&report, "Termination:           %20s\n",
+                            "DID_NOT_RUN");
+    internal::StringAppendF(&report, "Reason: %s\n", error.c_str());
+    return report;
+  }
+
+  internal::StringAppendF(&report, "\nCost:\n");
+  internal::StringAppendF(&report, "Initial        % 30e\n", initial_cost);
+  if (termination_type != NUMERICAL_FAILURE && termination_type != USER_ABORT) {
+    internal::StringAppendF(&report, "Final          % 30e\n", final_cost);
+    internal::StringAppendF(&report, "Change         % 30e\n",
+                            initial_cost - final_cost);
+  }
+
+  internal::StringAppendF(&report, "\nNumber of iterations:\n");
+  internal::StringAppendF(&report, "Successful               % 20d\n",
+                          num_successful_steps);
+  internal::StringAppendF(&report, "Unsuccessful             % 20d\n",
+                          num_unsuccessful_steps);
+  internal::StringAppendF(&report, "Total                    % 20d\n",
+                          num_successful_steps + num_unsuccessful_steps);
+  internal::StringAppendF(&report, "\nTime (in seconds):\n");
+  internal::StringAppendF(&report, "Preprocessor        % 25e\n",
+                          preprocessor_time_in_seconds);
+  internal::StringAppendF(&report, "Minimizer           % 25e\n",
+                          minimizer_time_in_seconds);
+  internal::StringAppendF(&report, "Total               % 25e\n",
+                          total_time_in_seconds);
+
+  internal::StringAppendF(&report, "Termination:        %25s\n",
+                SolverTerminationTypeToString(termination_type));
+  return report;
+};
+
+}  // namespace ceres
diff --git a/internal/ceres/solver_impl.cc b/internal/ceres/solver_impl.cc
new file mode 100644
index 0000000..ff2f5ea
--- /dev/null
+++ b/internal/ceres/solver_impl.cc
@@ -0,0 +1,699 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include "ceres/solver_impl.h"
+
+#include <iostream>  // NOLINT
+#include <numeric>
+#include "ceres/evaluator.h"
+#include "ceres/gradient_checking_cost_function.h"
+#include "ceres/levenberg_marquardt.h"
+#include "ceres/linear_solver.h"
+#include "ceres/map_util.h"
+#include "ceres/minimizer.h"
+#include "ceres/parameter_block.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/schur_ordering.h"
+#include "ceres/stringprintf.h"
+#include "ceres/iteration_callback.h"
+#include "ceres/problem.h"
+
+namespace ceres {
+namespace internal {
+namespace {
+
+void EvaluateCostAndResiduals(ProblemImpl* problem_impl,
+                              double* cost,
+                              vector<double>* residuals) {
+  CHECK_NOTNULL(cost);
+  Program* program = CHECK_NOTNULL(problem_impl)->mutable_program();
+  if (residuals != NULL) {
+    residuals->resize(program->NumResiduals());
+    program->Evaluate(cost, &(*residuals)[0]);
+  } else {
+    program->Evaluate(cost, NULL);
+  }
+}
+
+// Callback for updating the user's parameter blocks. Updates are only
+// done if the step is successful.
+class StateUpdatingCallback : public IterationCallback {
+ public:
+  StateUpdatingCallback(Program* program, double* parameters)
+      : program_(program), parameters_(parameters) {}
+
+  CallbackReturnType operator()(const IterationSummary& summary) {
+    if (summary.step_is_successful) {
+      program_->StateVectorToParameterBlocks(parameters_);
+      program_->CopyParameterBlockStateToUserState();
+    }
+    return SOLVER_CONTINUE;
+  }
+
+ private:
+  Program* program_;
+  double* parameters_;
+};
+
+// Callback for logging the state of the minimizer to STDERR or STDOUT
+// depending on the user's preferences and logging level.
+class LoggingCallback : public IterationCallback {
+ public:
+  explicit LoggingCallback(bool log_to_stdout)
+      : log_to_stdout_(log_to_stdout) {}
+
+  ~LoggingCallback() {}
+
+  CallbackReturnType operator()(const IterationSummary& summary) {
+    const char* kReportRowFormat =
+        "% 4d: f:% 8e d:% 3.2e g:% 3.2e h:% 3.2e "
+        "rho:% 3.2e mu:% 3.2e li:% 3d";
+    string output = StringPrintf(kReportRowFormat,
+                                 summary.iteration,
+                                 summary.cost,
+                                 summary.cost_change,
+                                 summary.gradient_max_norm,
+                                 summary.step_norm,
+                                 summary.relative_decrease,
+                                 summary.mu,
+                                 summary.linear_solver_iterations);
+    if (log_to_stdout_) {
+      cout << output << endl;
+    } else {
+      VLOG(1) << output;
+    }
+    return SOLVER_CONTINUE;
+  }
+
+ private:
+  const bool log_to_stdout_;
+};
+
+}  // namespace
+
+void SolverImpl::Minimize(const Solver::Options& options,
+                          Program* program,
+                          Evaluator* evaluator,
+                          LinearSolver* linear_solver,
+                          double* initial_parameters,
+                          double* final_parameters,
+                          Solver::Summary* summary) {
+  Minimizer::Options minimizer_options(options);
+
+  LoggingCallback logging_callback(options.minimizer_progress_to_stdout);
+  if (options.logging_type != SILENT) {
+    minimizer_options.callbacks.push_back(&logging_callback);
+  }
+
+  StateUpdatingCallback updating_callback(program, initial_parameters);
+  if (options.update_state_every_iteration) {
+    minimizer_options.callbacks.push_back(&updating_callback);
+  }
+
+  LevenbergMarquardt levenberg_marquardt;
+
+  time_t start_minimizer_time_seconds = time(NULL);
+  levenberg_marquardt.Minimize(minimizer_options,
+                               evaluator,
+                               linear_solver,
+                               initial_parameters,
+                               final_parameters,
+                               summary);
+  summary->minimizer_time_in_seconds =
+      time(NULL) - start_minimizer_time_seconds;
+}
+
+void SolverImpl::Solve(const Solver::Options& original_options,
+                       Problem* problem,
+                       Solver::Summary* summary) {
+  Solver::Options options(original_options);
+
+#ifndef CERES_USE_OPENMP
+  if (options.num_threads > 1) {
+    LOG(WARNING)
+        << "OpenMP support is not compiled into this binary; "
+        << "only options.num_threads=1 is supported. Switching"
+        << "to single threaded mode.";
+    options.num_threads = 1;
+  }
+  if (options.num_linear_solver_threads > 1) {
+    LOG(WARNING)
+        << "OpenMP support is not compiled into this binary; "
+        << "only options.num_linear_solver_threads=1 is supported. Switching"
+        << "to single threaded mode.";
+    options.num_linear_solver_threads = 1;
+  }
+#endif
+
+  // Reset the summary object to its default values;
+  *CHECK_NOTNULL(summary) = Solver::Summary();
+  summary->linear_solver_type_given = options.linear_solver_type;
+  summary->num_eliminate_blocks_given = original_options.num_eliminate_blocks;
+  summary->num_threads_given = original_options.num_threads;
+  summary->num_linear_solver_threads_given =
+      original_options.num_linear_solver_threads;
+  summary->ordering_type = original_options.ordering_type;
+
+  ProblemImpl* problem_impl = CHECK_NOTNULL(problem)->problem_impl_.get();
+
+  summary->num_parameter_blocks = problem_impl->NumParameterBlocks();
+  summary->num_parameters = problem_impl->NumParameters();
+  summary->num_residual_blocks = problem_impl->NumResidualBlocks();
+  summary->num_residuals = problem_impl->NumResiduals();
+
+  summary->num_threads_used = options.num_threads;
+
+  // Evaluate the initial cost and residual vector (if needed). The
+  // initial cost needs to be computed on the original unpreprocessed
+  // problem, as it is used to determine the value of the "fixed" part
+  // of the objective function after the problem has undergone
+  // reduction. Also the initial residuals are in the order in which
+  // the user added the ResidualBlocks to the optimization problem.
+  EvaluateCostAndResiduals(problem_impl,
+                           &summary->initial_cost,
+                           options.return_initial_residuals
+                           ? &summary->initial_residuals
+                           : NULL);
+
+  // If the user requests gradient checking, construct a new
+  // ProblemImpl by wrapping the CostFunctions of problem_impl inside
+  // GradientCheckingCostFunction and replacing problem_impl with
+  // gradient_checking_problem_impl.
+  scoped_ptr<ProblemImpl> gradient_checking_problem_impl;
+  if (options.check_gradients) {
+    VLOG(1) << "Checking Gradients";
+    gradient_checking_problem_impl.reset(
+        CreateGradientCheckingProblemImpl(
+            problem_impl,
+            options.numeric_derivative_relative_step_size,
+            options.gradient_check_relative_precision));
+
+    // From here on, problem_impl will point to the GradientChecking version.
+    problem_impl = gradient_checking_problem_impl.get();
+  }
+
+  // Create the three objects needed to minimize: the transformed program, the
+  // evaluator, and the linear solver.
+
+  scoped_ptr<Program> reduced_program(
+      CreateReducedProgram(&options, problem_impl, &summary->error));
+  if (reduced_program == NULL) {
+    return;
+  }
+
+  summary->num_parameter_blocks_reduced = reduced_program->NumParameterBlocks();
+  summary->num_parameters_reduced = reduced_program->NumParameters();
+  summary->num_residual_blocks_reduced = reduced_program->NumResidualBlocks();
+  summary->num_residuals_reduced = reduced_program->NumResiduals();
+
+  scoped_ptr<LinearSolver>
+      linear_solver(CreateLinearSolver(&options, &summary->error));
+  summary->linear_solver_type_used = options.linear_solver_type;
+  summary->preconditioner_type = options.preconditioner_type;
+  summary->num_eliminate_blocks_used = options.num_eliminate_blocks;
+  summary->num_linear_solver_threads_used = options.num_linear_solver_threads;
+
+  if (linear_solver == NULL) {
+    return;
+  }
+
+  if (!MaybeReorderResidualBlocks(options,
+                                  reduced_program.get(),
+                                  &summary->error)) {
+    return;
+  }
+
+  scoped_ptr<Evaluator> evaluator(
+      CreateEvaluator(options, reduced_program.get(), &summary->error));
+  if (evaluator == NULL) {
+    return;
+  }
+
+  // The optimizer works on contiguous parameter vectors; allocate some.
+  Vector initial_parameters(reduced_program->NumParameters());
+  Vector optimized_parameters(reduced_program->NumParameters());
+
+  // Collect the discontiguous parameters into a contiguous state vector.
+  reduced_program->ParameterBlocksToStateVector(&initial_parameters[0]);
+
+  // Run the optimization.
+  Minimize(options,
+           reduced_program.get(),
+           evaluator.get(),
+           linear_solver.get(),
+           initial_parameters.data(),
+           optimized_parameters.data(),
+           summary);
+
+  // If the user aborted mid-optimization or the optimization
+  // terminated because of a numerical failure, then return without
+  // updating user state.
+  if (summary->termination_type == USER_ABORT ||
+      summary->termination_type == NUMERICAL_FAILURE) {
+    return;
+  }
+
+  // Push the contiguous optimized parameters back to the user's parameters.
+  reduced_program->StateVectorToParameterBlocks(&optimized_parameters[0]);
+  reduced_program->CopyParameterBlockStateToUserState();
+
+  // Return the final cost and residuals for the original problem.
+  EvaluateCostAndResiduals(problem->problem_impl_.get(),
+                           &summary->final_cost,
+                           options.return_final_residuals
+                           ? &summary->final_residuals
+                           : NULL);
+
+  // Stick a fork in it, we're done.
+  return;
+}
+
+// Strips varying parameters and residuals, maintaining order, and updating
+// num_eliminate_blocks.
+bool SolverImpl::RemoveFixedBlocksFromProgram(Program* program,
+                                              int* num_eliminate_blocks,
+                                              string* error) {
+  int original_num_eliminate_blocks = *num_eliminate_blocks;
+  vector<ParameterBlock*>* parameter_blocks =
+      program->mutable_parameter_blocks();
+
+  // Mark all the parameters as unused. Abuse the index member of the parameter
+  // blocks for the marking.
+  for (int i = 0; i < parameter_blocks->size(); ++i) {
+    (*parameter_blocks)[i]->set_index(-1);
+  }
+
+  // Filter out residual that have all-constant parameters, and mark all the
+  // parameter blocks that appear in residuals.
+  {
+    vector<ResidualBlock*>* residual_blocks =
+        program->mutable_residual_blocks();
+    int j = 0;
+    for (int i = 0; i < residual_blocks->size(); ++i) {
+      ResidualBlock* residual_block = (*residual_blocks)[i];
+      int num_parameter_blocks = residual_block->NumParameterBlocks();
+
+      // Determine if the residual block is fixed, and also mark varying
+      // parameters that appear in the residual block.
+      bool all_constant = true;
+      for (int k = 0; k < num_parameter_blocks; k++) {
+        ParameterBlock* parameter_block = residual_block->parameter_blocks()[k];
+        if (!parameter_block->IsConstant()) {
+          all_constant = false;
+          parameter_block->set_index(1);
+        }
+      }
+
+      if (!all_constant) {
+        (*residual_blocks)[j++] = (*residual_blocks)[i];
+      }
+    }
+    residual_blocks->resize(j);
+  }
+
+  // Filter out unused or fixed parameter blocks, and update
+  // num_eliminate_blocks as necessary.
+  {
+    vector<ParameterBlock*>* parameter_blocks =
+        program->mutable_parameter_blocks();
+    int j = 0;
+    for (int i = 0; i < parameter_blocks->size(); ++i) {
+      ParameterBlock* parameter_block = (*parameter_blocks)[i];
+      if (parameter_block->index() == 1) {
+        (*parameter_blocks)[j++] = parameter_block;
+      } else if (i < original_num_eliminate_blocks) {
+        (*num_eliminate_blocks)--;
+      }
+    }
+    parameter_blocks->resize(j);
+  }
+
+  CHECK(((program->NumResidualBlocks() == 0) &&
+         (program->NumParameterBlocks() == 0)) ||
+        ((program->NumResidualBlocks() != 0) &&
+         (program->NumParameterBlocks() != 0)))
+      << "Congratulations, you found a bug in Ceres. Please report it.";
+  return true;
+}
+
+Program* SolverImpl::CreateReducedProgram(Solver::Options* options,
+                                          ProblemImpl* problem_impl,
+                                          string* error) {
+  Program* original_program = problem_impl->mutable_program();
+  scoped_ptr<Program> transformed_program(new Program(*original_program));
+
+  if (options->ordering_type == USER &&
+      !ApplyUserOrdering(*problem_impl,
+                         options->ordering,
+                         transformed_program.get(),
+                         error)) {
+    return NULL;
+  }
+
+  if (options->ordering_type == SCHUR && options->num_eliminate_blocks != 0) {
+    *error = "Can't specify SCHUR ordering and num_eliminate_blocks "
+        "at the same time; SCHUR ordering determines "
+        "num_eliminate_blocks automatically.";
+    return NULL;
+  }
+
+  if (options->ordering_type == SCHUR && options->ordering.size() != 0) {
+    *error = "Can't specify SCHUR ordering type and the ordering "
+        "vector at the same time; SCHUR ordering determines "
+        "a suitable parameter ordering automatically.";
+    return NULL;
+  }
+
+  int num_eliminate_blocks = options->num_eliminate_blocks;
+
+  if (!RemoveFixedBlocksFromProgram(transformed_program.get(),
+                                    &num_eliminate_blocks,
+                                    error)) {
+    return NULL;
+  }
+
+  if (transformed_program->NumParameterBlocks() == 0) {
+    LOG(WARNING) << "No varying parameter blocks to optimize; "
+                 << "bailing early.";
+    return transformed_program.release();
+  }
+
+  if (options->ordering_type == SCHUR) {
+    vector<ParameterBlock*> schur_ordering;
+    num_eliminate_blocks = ComputeSchurOrdering(*transformed_program,
+                                                &schur_ordering);
+    CHECK_EQ(schur_ordering.size(), transformed_program->NumParameterBlocks())
+        << "Congratulations, you found a Ceres bug! Please report this error "
+        << "to the developers.";
+
+    // Replace the transformed program's ordering with the schur ordering.
+    swap(*transformed_program->mutable_parameter_blocks(), schur_ordering);
+  }
+  options->num_eliminate_blocks = num_eliminate_blocks;
+  CHECK_GE(options->num_eliminate_blocks, 0)
+      << "Congratulations, you found a Ceres bug! Please report this error "
+      << "to the developers.";
+
+  // Since the transformed program is the "active" program, and it is mutated,
+  // update the parameter offsets and indices.
+  transformed_program->SetParameterOffsetsAndIndex();
+  return transformed_program.release();
+}
+
+LinearSolver* SolverImpl::CreateLinearSolver(Solver::Options* options,
+                                             string* error) {
+  if (options->linear_solver_type ==  CONJUGATE_GRADIENTS) {
+    *error = "CONJUGATE_GRADIENTS is not a valid solver for "
+        "linear least squares problems.";
+    return NULL;
+  }
+
+#ifdef CERES_NO_SUITESPARSE
+  if (options->linear_solver_type == SPARSE_NORMAL_CHOLESKY) {
+    *error = "Can't use SPARSE_NORMAL_CHOLESKY because SuiteSparse was not "
+        "enabled when Ceres was built.";
+    return NULL;
+  }
+#endif  // CERES_NO_SUITESPARSE
+
+  if (options->linear_solver_max_num_iterations <= 0) {
+    *error = "Solver::Options::linear_solver_max_num_iterations is 0.";
+    return NULL;
+  }
+  if (options->linear_solver_min_num_iterations <= 0) {
+    *error = "Solver::Options::linear_solver_min_num_iterations is 0.";
+    return NULL;
+  }
+  if (options->linear_solver_min_num_iterations >
+      options->linear_solver_max_num_iterations) {
+    *error = "Solver::Options::linear_solver_min_num_iterations > "
+        "Solver::Options::linear_solver_max_num_iterations.";
+    return NULL;
+  }
+
+  LinearSolver::Options linear_solver_options;
+  linear_solver_options.constant_sparsity = true;
+  linear_solver_options.min_num_iterations =
+        options->linear_solver_min_num_iterations;
+  linear_solver_options.max_num_iterations =
+      options->linear_solver_max_num_iterations;
+  linear_solver_options.type = options->linear_solver_type;
+  linear_solver_options.preconditioner_type = options->preconditioner_type;
+
+#ifdef CERES_NO_SUITESPARSE
+  if (linear_solver_options.preconditioner_type == SCHUR_JACOBI) {
+    *error =  "SCHUR_JACOBI preconditioner not suppored. Please build Ceres "
+        "with SuiteSparse support";
+    return NULL;
+  }
+
+  if (linear_solver_options.preconditioner_type == CLUSTER_JACOBI) {
+    *error =  "CLUSTER_JACOBI preconditioner not suppored. Please build Ceres "
+        "with SuiteSparse support";
+    return NULL;
+  }
+
+  if (linear_solver_options.preconditioner_type == CLUSTER_TRIDIAGONAL) {
+    *error =  "CLUSTER_TRIDIAGONAL preconditioner not suppored. Please build "
+        "Ceres with SuiteSparse support";
+    return NULL;
+  }
+#endif
+
+  linear_solver_options.num_threads = options->num_linear_solver_threads;
+  linear_solver_options.num_eliminate_blocks =
+      options->num_eliminate_blocks;
+
+  if ((linear_solver_options.num_eliminate_blocks == 0) &&
+      IsSchurType(linear_solver_options.type)) {
+#ifndef CERES_NO_SUITESPARSE
+    LOG(INFO) << "No elimination block remaining "
+              << "switching to SPARSE_NORMAL_CHOLESKY.";
+    linear_solver_options.type = SPARSE_NORMAL_CHOLESKY;
+#else
+    LOG(INFO) << "No elimination block remaining switching to DENSE_QR.";
+    linear_solver_options.type = DENSE_QR;
+#endif  // CERES_NO_SUITESPARSE
+  }
+
+#ifdef CERES_NO_SUITESPARSE
+  if (linear_solver_options.type == SPARSE_SCHUR) {
+    *error = "Can't use SPARSE_SCHUR because SuiteSparse was not "
+        "enabled when Ceres was built.";
+    return NULL;
+  }
+#endif  // CERES_NO_SUITESPARSE
+
+  // The matrix used for storing the dense Schur complement has a
+  // single lock guarding the whole matrix. Running the
+  // SchurComplementSolver with multiple threads leads to maximum
+  // contention and slowdown. If the problem is large enough to
+  // benefit from a multithreaded schur eliminator, you should be
+  // using a SPARSE_SCHUR solver anyways.
+  if ((linear_solver_options.num_threads > 1) &&
+      (linear_solver_options.type == DENSE_SCHUR)) {
+    LOG(WARNING) << "Warning: Solver::Options::num_linear_solver_threads = "
+                 << options->num_linear_solver_threads
+                 << " with DENSE_SCHUR will result in poor performance; "
+                 << "switching to single-threaded.";
+    linear_solver_options.num_threads = 1;
+  }
+
+  options->linear_solver_type = linear_solver_options.type;
+  options->num_linear_solver_threads = linear_solver_options.num_threads;
+
+  return LinearSolver::Create(linear_solver_options);
+}
+
+bool SolverImpl::ApplyUserOrdering(const ProblemImpl& problem_impl,
+                                   vector<double*>& ordering,
+                                   Program* program,
+                                   string* error) {
+  if (ordering.size() != program->NumParameterBlocks()) {
+    *error = StringPrintf("User specified ordering does not have the same "
+                          "number of parameters as the problem. The problem"
+                          "has %d blocks while the ordering has %ld blocks.",
+                          program->NumParameterBlocks(),
+                          ordering.size());
+    return false;
+  }
+
+  // Ensure that there are no duplicates in the user's ordering.
+  {
+    vector<double*> ordering_copy(ordering);
+    sort(ordering_copy.begin(), ordering_copy.end());
+    if (unique(ordering_copy.begin(), ordering_copy.end())
+        != ordering_copy.end()) {
+      *error = "User specified ordering contains duplicates.";
+      return false;
+    }
+  }
+
+  vector<ParameterBlock*>* parameter_blocks =
+      program->mutable_parameter_blocks();
+
+  fill(parameter_blocks->begin(),
+       parameter_blocks->end(),
+       static_cast<ParameterBlock*>(NULL));
+
+  const ProblemImpl::ParameterMap& parameter_map = problem_impl.parameter_map();
+  for (int i = 0; i < ordering.size(); ++i) {
+    ProblemImpl::ParameterMap::const_iterator it =
+        parameter_map.find(ordering[i]);
+    if (it == parameter_map.end()) {
+      *error = StringPrintf("User specified ordering contains a pointer "
+                            "to a double that is not a parameter block in the "
+                            "problem. The invalid double is at position %d "
+                            " in options.ordering.", i);
+      return false;
+    }
+    (*parameter_blocks)[i] = it->second;
+  }
+  return true;
+}
+
+// Find the minimum index of any parameter block to the given residual.
+// Parameter blocks that have indices greater than num_eliminate_blocks are
+// considered to have an index equal to num_eliminate_blocks.
+int MinParameterBlock(const ResidualBlock* residual_block,
+                      int num_eliminate_blocks) {
+  int min_parameter_block_position = num_eliminate_blocks;
+  for (int i = 0; i < residual_block->NumParameterBlocks(); ++i) {
+    ParameterBlock* parameter_block = residual_block->parameter_blocks()[i];
+    DCHECK_NE(parameter_block->index(), -1)
+        << "Did you forget to call Program::SetParameterOffsetsAndIndex()?";
+    min_parameter_block_position = std::min(parameter_block->index(),
+                                            min_parameter_block_position);
+  }
+  return min_parameter_block_position;
+}
+
+// Reorder the residuals for program, if necessary, so that the residuals
+// involving each E block occur together. This is a necessary condition for the
+// Schur eliminator, which works on these "row blocks" in the jacobian.
+bool SolverImpl::MaybeReorderResidualBlocks(const Solver::Options& options,
+                                            Program* program,
+                                            string* error) {
+  // Only Schur types require the lexicographic reordering.
+  if (!IsSchurType(options.linear_solver_type)) {
+    return true;
+  }
+
+  CHECK_NE(0, options.num_eliminate_blocks)
+        << "Congratulations, you found a Ceres bug! Please report this error "
+        << "to the developers.";
+
+  // Create a histogram of the number of residuals for each E block. There is an
+  // extra bucket at the end to catch all non-eliminated F blocks.
+  vector<int> residual_blocks_per_e_block(options.num_eliminate_blocks + 1);
+  vector<ResidualBlock*>* residual_blocks = program->mutable_residual_blocks();
+  vector<int> min_position_per_residual(residual_blocks->size());
+  for (int i = 0; i < residual_blocks->size(); ++i) {
+    ResidualBlock* residual_block = (*residual_blocks)[i];
+    int position = MinParameterBlock(residual_block,
+                                     options.num_eliminate_blocks);
+    min_position_per_residual[i] = position;
+    DCHECK_LE(position, options.num_eliminate_blocks);
+    residual_blocks_per_e_block[position]++;
+  }
+
+  // Run a cumulative sum on the histogram, to obtain offsets to the start of
+  // each histogram bucket (where each bucket is for the residuals for that
+  // E-block).
+  vector<int> offsets(options.num_eliminate_blocks + 1);
+  std::partial_sum(residual_blocks_per_e_block.begin(),
+                   residual_blocks_per_e_block.end(),
+                   offsets.begin());
+  CHECK_EQ(offsets.back(), residual_blocks->size())
+      << "Congratulations, you found a Ceres bug! Please report this error "
+      << "to the developers.";
+
+  CHECK(find(residual_blocks_per_e_block.begin(),
+             residual_blocks_per_e_block.end() - 1, 0) !=
+        residual_blocks_per_e_block.end())
+      << "Congratulations, you found a Ceres bug! Please report this error "
+      << "to the developers.";
+
+  // Fill in each bucket with the residual blocks for its corresponding E block.
+  // Each bucket is individually filled from the back of the bucket to the front
+  // of the bucket. The filling order among the buckets is dictated by the
+  // residual blocks. This loop uses the offsets as counters; subtracting one
+  // from each offset as a residual block is placed in the bucket. When the
+  // filling is finished, the offset pointerts should have shifted down one
+  // entry (this is verified below).
+  vector<ResidualBlock*> reordered_residual_blocks(
+      (*residual_blocks).size(), static_cast<ResidualBlock*>(NULL));
+  for (int i = 0; i < residual_blocks->size(); ++i) {
+    int bucket = min_position_per_residual[i];
+
+    // Decrement the cursor, which should now point at the next empty position.
+    offsets[bucket]--;
+
+    // Sanity.
+    CHECK(reordered_residual_blocks[offsets[bucket]] == NULL)
+        << "Congratulations, you found a Ceres bug! Please report this error "
+        << "to the developers.";
+
+    reordered_residual_blocks[offsets[bucket]] = (*residual_blocks)[i];
+  }
+
+  // Sanity check #1: The difference in bucket offsets should match the
+  // histogram sizes.
+  for (int i = 0; i < options.num_eliminate_blocks; ++i) {
+    CHECK_EQ(residual_blocks_per_e_block[i], offsets[i + 1] - offsets[i])
+        << "Congratulations, you found a Ceres bug! Please report this error "
+        << "to the developers.";
+  }
+  // Sanity check #2: No NULL's left behind.
+  for (int i = 0; i < reordered_residual_blocks.size(); ++i) {
+    CHECK(reordered_residual_blocks[i] != NULL)
+        << "Congratulations, you found a Ceres bug! Please report this error "
+        << "to the developers.";
+  }
+
+  // Now that the residuals are collected by E block, swap them in place.
+  swap(*program->mutable_residual_blocks(), reordered_residual_blocks);
+  return true;
+}
+
+Evaluator* SolverImpl::CreateEvaluator(const Solver::Options& options,
+                                       Program* program,
+                                       string* error) {
+  Evaluator::Options evaluator_options;
+  evaluator_options.linear_solver_type = options.linear_solver_type;
+  evaluator_options.num_eliminate_blocks = options.num_eliminate_blocks;
+  evaluator_options.num_threads = options.num_threads;
+  return Evaluator::Create(evaluator_options, program, error);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/solver_impl.h b/internal/ceres/solver_impl.h
new file mode 100644
index 0000000..957ebcc
--- /dev/null
+++ b/internal/ceres/solver_impl.h
@@ -0,0 +1,111 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_SOLVER_IMPL_H_
+#define CERES_INTERNAL_SOLVER_IMPL_H_
+
+#include "ceres/solver.h"
+
+namespace ceres {
+namespace internal {
+
+class Evaluator;
+class LinearSolver;
+class ProblemImpl;
+class Program;
+
+class SolverImpl {
+ public:
+  // Mirrors the interface in solver.h, but exposes implementation
+  // details for testing internally.
+  static void Solve(const Solver::Options& options,
+                    Problem* problem,
+                    Solver::Summary* summary);
+
+  // Create the transformed Program, which has all the fixed blocks
+  // and residuals eliminated, and in the case of automatic schur
+  // ordering, has the E blocks first in the resulting program, with
+  // options.num_eliminate_blocks set appropriately.
+  static Program* CreateReducedProgram(Solver::Options* options,
+                                       ProblemImpl* problem_impl,
+                                       string* error);
+
+  // Create the appropriate linear solver, taking into account any
+  // config changes decided by CreateTransformedProgram(). The
+  // selected linear solver, which may be different from what the user
+  // selected; consider the case that the remaining elimininated
+  // blocks is zero after removing fixed blocks.
+  static LinearSolver* CreateLinearSolver(Solver::Options* options,
+                                          string* error);
+
+  // Reorder the parameter blocks in program using the vector
+  // ordering. A return value of true indicates success and false
+  // indicates an error was encountered whose cause is logged to
+  // LOG(ERROR).
+  static bool ApplyUserOrdering(const ProblemImpl& problem_impl,
+                                vector<double*>& ordering,
+                                Program* program,
+                                string* error);
+
+  // Reorder the residuals for program, if necessary, so that the
+  // residuals involving each E block occur together. This is a
+  // necessary condition for the Schur eliminator, which works on
+  // these "row blocks" in the jacobian.
+  static bool MaybeReorderResidualBlocks(const Solver::Options& options,
+                                         Program* program,
+                                         string* error);
+
+  // Create the appropriate evaluator for the transformed program.
+  static Evaluator* CreateEvaluator(const Solver::Options& options,
+                                    Program* program,
+                                    string* error);
+
+  // Run the minimization for the given evaluator and configuration.
+  static void Minimize(const Solver::Options &options,
+                       Program* program,
+                       Evaluator* evaluator,
+                       LinearSolver* linear_solver,
+                       double* initial_parameters,
+                       double* final_parameters,
+                       Solver::Summary* summary);
+
+  // Remove the fixed or unused parameter blocks and residuals
+  // depending only on fixed parameters from the problem. Also updates
+  // num_eliminate_blocks, since removed parameters changes the point
+  // at which the eliminated blocks is valid.
+  static bool RemoveFixedBlocksFromProgram(Program* program,
+                                           int* num_eliminate_blocks,
+                                           string* error);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SOLVER_IMPL_H_
diff --git a/internal/ceres/solver_impl_test.cc b/internal/ceres/solver_impl_test.cc
new file mode 100644
index 0000000..6f22357
--- /dev/null
+++ b/internal/ceres/solver_impl_test.cc
@@ -0,0 +1,479 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "gtest/gtest.h"
+#include "ceres/linear_solver.h"
+#include "ceres/parameter_block.h"
+#include "ceres/problem_impl.h"
+#include "ceres/program.h"
+#include "ceres/residual_block.h"
+#include "ceres/solver_impl.h"
+#include "ceres/sized_cost_function.h"
+
+
+namespace ceres {
+namespace internal {
+
+// Templated base class for the CostFunction signatures.
+template <int kNumResiduals, int N0, int N1, int N2>
+class MockCostFunctionBase : public
+SizedCostFunction<kNumResiduals, N0, N1, N2> {
+ public:
+  virtual bool Evaluate(double const* const* parameters,
+                        double* residuals,
+                        double** jacobians) const {
+    // Do nothing. This is never called.
+    return true;
+  }
+};
+
+class UnaryCostFunction : public MockCostFunctionBase<2, 1, 0, 0> {};
+class BinaryCostFunction : public MockCostFunctionBase<2, 1, 1, 0> {};
+class TernaryCostFunction : public MockCostFunctionBase<2, 1, 1, 1> {};
+
+TEST(SolverImpl, RemoveFixedBlocksNothingConstant) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+  problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z);
+
+  string error;
+  {
+    int num_eliminate_blocks = 0;
+    Program program(*problem.mutable_program());
+    EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                         &num_eliminate_blocks,
+                                                         &error));
+    EXPECT_EQ(program.NumParameterBlocks(), 3);
+    EXPECT_EQ(program.NumResidualBlocks(), 3);
+    EXPECT_EQ(num_eliminate_blocks, 0);
+  }
+
+  // Check that num_eliminate_blocks is preserved, when it contains
+  // all blocks.
+  {
+    int num_eliminate_blocks = 3;
+    Program program(problem.program());
+    EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                         &num_eliminate_blocks,
+                                                         &error));
+    EXPECT_EQ(program.NumParameterBlocks(), 3);
+    EXPECT_EQ(program.NumResidualBlocks(), 3);
+    EXPECT_EQ(num_eliminate_blocks, 3);
+  }
+}
+
+TEST(SolverImpl, RemoveFixedBlocksAllParameterBlocksConstant) {
+  ProblemImpl problem;
+  double x;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.SetParameterBlockConstant(&x);
+
+  int num_eliminate_blocks = 0;
+  Program program(problem.program());
+  string error;
+  EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                       &num_eliminate_blocks,
+                                                       &error));
+  EXPECT_EQ(program.NumParameterBlocks(), 0);
+  EXPECT_EQ(program.NumResidualBlocks(), 0);
+  EXPECT_EQ(num_eliminate_blocks, 0);
+}
+
+TEST(SolverImpl, RemoveFixedBlocksNoResidualBlocks) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+
+  int num_eliminate_blocks = 0;
+  Program program(problem.program());
+  string error;
+  EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                       &num_eliminate_blocks,
+                                                       &error));
+  EXPECT_EQ(program.NumParameterBlocks(), 0);
+  EXPECT_EQ(program.NumResidualBlocks(), 0);
+  EXPECT_EQ(num_eliminate_blocks, 0);
+}
+
+TEST(SolverImpl, RemoveFixedBlocksOneParameterBlockConstant) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+  problem.SetParameterBlockConstant(&x);
+
+  int num_eliminate_blocks = 0;
+  Program program(problem.program());
+  string error;
+  EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                       &num_eliminate_blocks,
+                                                       &error));
+  EXPECT_EQ(program.NumParameterBlocks(), 1);
+  EXPECT_EQ(program.NumResidualBlocks(), 1);
+  EXPECT_EQ(num_eliminate_blocks, 0);
+}
+
+TEST(SolverImpl, RemoveFixedBlocksNumEliminateBlocks) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+  problem.SetParameterBlockConstant(&x);
+
+  int num_eliminate_blocks = 2;
+  Program program(problem.program());
+  string error;
+  EXPECT_TRUE(SolverImpl::RemoveFixedBlocksFromProgram(&program,
+                                                       &num_eliminate_blocks,
+                                                       &error));
+  EXPECT_EQ(program.NumParameterBlocks(), 2);
+  EXPECT_EQ(program.NumResidualBlocks(), 2);
+  EXPECT_EQ(num_eliminate_blocks, 1);
+}
+
+TEST(SolverImpl, ReorderResidualBlockNonSchurSolver) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+
+  const vector<ResidualBlock*>& residual_blocks =
+      problem.program().residual_blocks();
+  vector<ResidualBlock*> current_residual_blocks(residual_blocks);
+
+  Solver::Options options;
+  options.linear_solver_type = SPARSE_NORMAL_CHOLESKY;
+  string error;
+
+  EXPECT_TRUE(SolverImpl::MaybeReorderResidualBlocks(options,
+                                                     problem.mutable_program(),
+                                                     &error));
+  for (int i = 0; i < current_residual_blocks.size(); ++i) {
+    EXPECT_EQ(current_residual_blocks[i], residual_blocks[i]);
+  }
+}
+
+TEST(SolverImpl, ReorderResidualBlockNumEliminateBlockDeathTest) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+
+  Solver::Options options;
+  options.linear_solver_type = DENSE_SCHUR;
+  options.num_eliminate_blocks = 0;
+  string error;
+  EXPECT_DEATH(
+      SolverImpl::MaybeReorderResidualBlocks(
+          options, problem.mutable_program(), &error),
+      "Congratulations");
+}
+
+TEST(SolverImpl, ReorderResidualBlockNormalFunction) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &x);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &y);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &z);
+  problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
+  problem.AddResidualBlock(new UnaryCostFunction(), NULL, &y);
+
+  Solver::Options options;
+  options.linear_solver_type = DENSE_SCHUR;
+  options.num_eliminate_blocks = 2;
+
+  const vector<ResidualBlock*>& residual_blocks =
+      problem.program().residual_blocks();
+
+  vector<ResidualBlock*> expected_residual_blocks;
+
+  // This is a bit fragile, but it serves the purpose. We know the
+  // bucketing algorithm that the reordering function uses, so we
+  // expect the order for residual blocks for each e_block to be
+  // filled in reverse.
+  expected_residual_blocks.push_back(residual_blocks[4]);
+  expected_residual_blocks.push_back(residual_blocks[1]);
+  expected_residual_blocks.push_back(residual_blocks[0]);
+  expected_residual_blocks.push_back(residual_blocks[5]);
+  expected_residual_blocks.push_back(residual_blocks[2]);
+  expected_residual_blocks.push_back(residual_blocks[3]);
+
+  Program* program = problem.mutable_program();
+  program->SetParameterOffsetsAndIndex();
+
+  string error;
+  EXPECT_TRUE(SolverImpl::MaybeReorderResidualBlocks(options,
+                                                     problem.mutable_program(),
+                                                     &error));
+  for (int i = 0; i < expected_residual_blocks.size(); ++i) {
+    EXPECT_EQ(residual_blocks[i], expected_residual_blocks[i]);
+  }
+}
+
+TEST(SolverImpl, ApplyUserOrderingOrderingTooSmall) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+
+  vector<double*> ordering;
+  ordering.push_back(&x);
+  ordering.push_back(&z);
+
+  Program program(problem.program());
+  string error;
+  EXPECT_FALSE(SolverImpl::ApplyUserOrdering(problem,
+                                             ordering,
+                                             &program,
+                                             &error));
+}
+
+TEST(SolverImpl, ApplyUserOrderingHasDuplicates) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+
+  vector<double*> ordering;
+  ordering.push_back(&x);
+  ordering.push_back(&z);
+  ordering.push_back(&z);
+
+  Program program(problem.program());
+  string error;
+  EXPECT_FALSE(SolverImpl::ApplyUserOrdering(problem,
+                                             ordering,
+                                             &program,
+                                             &error));
+}
+
+
+TEST(SolverImpl, ApplyUserOrderingNormal) {
+  ProblemImpl problem;
+  double x;
+  double y;
+  double z;
+
+  problem.AddParameterBlock(&x, 1);
+  problem.AddParameterBlock(&y, 1);
+  problem.AddParameterBlock(&z, 1);
+
+  vector<double*> ordering;
+  ordering.push_back(&x);
+  ordering.push_back(&z);
+  ordering.push_back(&y);
+
+  Program* program = problem.mutable_program();
+  string error;
+
+  EXPECT_TRUE(SolverImpl::ApplyUserOrdering(problem,
+                                            ordering,
+                                            program,
+                                            &error));
+  const vector<ParameterBlock*>& parameter_blocks = program->parameter_blocks();
+
+  EXPECT_EQ(parameter_blocks.size(), 3);
+  EXPECT_EQ(parameter_blocks[0]->user_state(), &x);
+  EXPECT_EQ(parameter_blocks[1]->user_state(), &z);
+  EXPECT_EQ(parameter_blocks[2]->user_state(), &y);
+}
+
+
+TEST(SolverImpl, CreateLinearSolverConjugateGradients) {
+  Solver::Options options;
+  options.linear_solver_type = CONJUGATE_GRADIENTS;
+  string error;
+  EXPECT_FALSE(SolverImpl::CreateLinearSolver(&options, &error));
+}
+
+#ifdef CERES_NO_SUITESPARSE
+TEST(SolverImpl, CreateLinearSolverNoSuiteSparse) {
+  Solver::Options options;
+  options.linear_solver_type = SPARSE_NORMAL_CHOLESKY;
+  string error;
+  EXPECT_FALSE(SolverImpl::CreateLinearSolver(&options, &error));
+}
+#endif  // CERES_NO_SUITESPARSE
+
+TEST(SolverImpl, CreateLinearSolverNegativeMaxNumIterations) {
+  Solver::Options options;
+  options.linear_solver_type = DENSE_QR;
+  options.linear_solver_max_num_iterations = -1;
+  string error;
+  EXPECT_EQ(SolverImpl::CreateLinearSolver(&options, &error),
+            static_cast<LinearSolver*>(NULL));
+}
+
+TEST(SolverImpl, CreateLinearSolverNegativeMinNumIterations) {
+  Solver::Options options;
+  options.linear_solver_type = DENSE_QR;
+  options.linear_solver_min_num_iterations = -1;
+  string error;
+  EXPECT_EQ(SolverImpl::CreateLinearSolver(&options, &error),
+            static_cast<LinearSolver*>(NULL));
+}
+
+TEST(SolverImpl, CreateLinearSolverMaxLessThanMinIterations) {
+  Solver::Options options;
+  options.linear_solver_type = DENSE_QR;
+  options.linear_solver_min_num_iterations = 10;
+  options.linear_solver_max_num_iterations = 5;
+  string error;
+  EXPECT_EQ(SolverImpl::CreateLinearSolver(&options, &error),
+            static_cast<LinearSolver*>(NULL));
+}
+
+TEST(SolverImpl, CreateLinearSolverZeroNumEliminateBlocks) {
+  Solver::Options options;
+  options.num_eliminate_blocks = 0;
+  options.linear_solver_type = DENSE_SCHUR;
+  string error;
+  scoped_ptr<LinearSolver> solver(
+      SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_TRUE(solver != NULL);
+#ifndef CERES_NO_SUITESPARSE
+  EXPECT_EQ(options.linear_solver_type, SPARSE_NORMAL_CHOLESKY);
+#else
+  EXPECT_EQ(options.linear_solver_type, DENSE_QR);
+#endif  // CERES_NO_SUITESPARSE
+}
+
+TEST(SolverImpl, CreateLinearSolverDenseSchurMultipleThreads) {
+  Solver::Options options;
+  options.num_eliminate_blocks = 1;
+  options.linear_solver_type = DENSE_SCHUR;
+  options.num_linear_solver_threads = 2;
+  string error;
+  scoped_ptr<LinearSolver> solver(
+      SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_TRUE(solver != NULL);
+  EXPECT_EQ(options.linear_solver_type, DENSE_SCHUR);
+  EXPECT_EQ(options.num_linear_solver_threads, 1);
+}
+
+TEST(SolverImpl, CreateLinearSolverNormalOperation) {
+  Solver::Options options;
+  scoped_ptr<LinearSolver> solver;
+  options.linear_solver_type = DENSE_QR;
+  string error;
+  solver.reset(SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_EQ(options.linear_solver_type, DENSE_QR);
+  EXPECT_TRUE(solver.get() != NULL);
+
+#ifndef CERES_NO_SUITESPARSE
+  options.linear_solver_type = SPARSE_NORMAL_CHOLESKY;
+  solver.reset(SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_EQ(options.linear_solver_type, SPARSE_NORMAL_CHOLESKY);
+  EXPECT_TRUE(solver.get() != NULL);
+#endif  // CERES_NO_SUITESPARSE
+
+  options.linear_solver_type = DENSE_SCHUR;
+  options.num_eliminate_blocks = 2;
+  solver.reset(SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_EQ(options.linear_solver_type, DENSE_SCHUR);
+  EXPECT_TRUE(solver.get() != NULL);
+
+  options.linear_solver_type = SPARSE_SCHUR;
+  options.num_eliminate_blocks = 2;
+#ifndef CERES_NO_SUITESPARSE
+  solver.reset(SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_TRUE(solver.get() != NULL);
+  EXPECT_EQ(options.linear_solver_type, SPARSE_SCHUR);
+#else   // CERES_NO_SUITESPARSE
+  EXPECT_TRUE(SolverImpl::CreateLinearSolver(&options, &error) == NULL);
+#endif  // CERES_NO_SUITESPARSE
+
+  options.linear_solver_type = ITERATIVE_SCHUR;
+  options.num_eliminate_blocks = 2;
+  solver.reset(SolverImpl::CreateLinearSolver(&options, &error));
+  EXPECT_EQ(options.linear_solver_type, ITERATIVE_SCHUR);
+  EXPECT_TRUE(solver.get() != NULL);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/sparse_matrix.cc b/internal/ceres/sparse_matrix.cc
new file mode 100644
index 0000000..55336fd
--- /dev/null
+++ b/internal/ceres/sparse_matrix.cc
@@ -0,0 +1,40 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/sparse_matrix.h"
+
+namespace ceres {
+namespace internal {
+
+SparseMatrix::~SparseMatrix() {
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/sparse_matrix.h b/internal/ceres/sparse_matrix.h
new file mode 100644
index 0000000..962b803
--- /dev/null
+++ b/internal/ceres/sparse_matrix.h
@@ -0,0 +1,108 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Interface definition for sparse matrices.
+
+#ifndef CERES_INTERNAL_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_SPARSE_MATRIX_H_
+
+#include "ceres/linear_operator.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class SparseMatrixProto;
+
+// This class defines the interface for storing and manipulating
+// sparse matrices. The key property that differentiates different
+// sparse matrices is how they are organized in memory and how the
+// information about the sparsity structure of the matrix is
+// stored. This has significant implications for linear solvers
+// operating on these matrices.
+//
+// To deal with the different kinds of layouts, we will assume that a
+// sparse matrix will have a two part representation. A values array
+// that will be used to store the entries of the sparse matrix and
+// some sort of a layout object that tells the user the sparsity
+// structure and layout of the values array. For example in case of
+// the TripletSparseMatrix, this information is carried in the rows
+// and cols arrays and for the BlockSparseMatrix, this information is
+// carried in the CompressedRowBlockStructure object.
+//
+// This interface deliberately does not contain any information about
+// the structure of the sparse matrix as that seems to be highly
+// matrix type dependent and we are at this stage unable to come up
+// with an efficient high level interface that spans multiple sparse
+// matrix types.
+class SparseMatrix : public LinearOperator {
+ public:
+  virtual ~SparseMatrix();
+
+  // y += Ax;
+  virtual void RightMultiply(const double* x, double* y) const = 0;
+  // y += A'x;
+  virtual void LeftMultiply(const double* x, double* y) const = 0;
+
+  // In MATLAB notation sum(A.*A, 1)
+  virtual void SquaredColumnNorm(double* x) const = 0;
+  // A = A * diag(scale)
+  virtual void ScaleColumns(const double* scale) = 0;
+
+  // A = 0. A->num_nonzeros() == 0 is true after this call. The
+  // sparsity pattern is preserved.
+  virtual void SetZero() = 0;
+
+  // Resize and populate dense_matrix with a dense version of the
+  // sparse matrix.
+  virtual void ToDenseMatrix(Matrix* dense_matrix) const = 0;
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  // Dump the sparse matrix to a proto. Destroys the contents of proto.
+  virtual void ToProto(SparseMatrixProto *proto) const = 0;
+#endif
+
+  // Accessors for the values array that stores the entries of the
+  // sparse matrix. The exact interpreptation of the values of this
+  // array depends on the particular kind of SparseMatrix being
+  // accessed.
+  virtual double* mutable_values() = 0;
+  virtual const double* values() const = 0;
+
+  virtual int num_rows() const = 0;
+  virtual int num_cols() const = 0;
+  virtual int num_nonzeros() const = 0;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_SPARSE_MATRIX_H_
diff --git a/internal/ceres/sparse_normal_cholesky_solver.cc b/internal/ceres/sparse_normal_cholesky_solver.cc
new file mode 100644
index 0000000..59222dc
--- /dev/null
+++ b/internal/ceres/sparse_normal_cholesky_solver.cc
@@ -0,0 +1,129 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_NO_SUITESPARSE
+
+#include "ceres/sparse_normal_cholesky_solver.h"
+
+#include <algorithm>
+#include <cstring>
+#include <ctime>
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/linear_solver.h"
+#include "ceres/suitesparse.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+SparseNormalCholeskySolver::SparseNormalCholeskySolver(
+    const LinearSolver::Options& options)
+    : options_(options), symbolic_factor_(NULL) {}
+
+SparseNormalCholeskySolver::~SparseNormalCholeskySolver() {
+  if (symbolic_factor_ != NULL) {
+    ss_.Free(symbolic_factor_);
+    symbolic_factor_ = NULL;
+  }
+}
+
+LinearSolver::Summary SparseNormalCholeskySolver::SolveImpl(
+    CompressedRowSparseMatrix* A,
+    const double* b,
+    const LinearSolver::PerSolveOptions& per_solve_options,
+    double * x) {
+  const time_t start_time = time(NULL);
+  const int num_cols = A->num_cols();
+
+  LinearSolver::Summary summary;
+  Vector Atb = Vector::Zero(num_cols);
+  A->LeftMultiply(b, Atb.data());
+
+  if (per_solve_options.D != NULL) {
+    // Temporarily append a diagonal block to the A matrix, but undo it before
+    // returning the matrix to the user.
+    CompressedRowSparseMatrix D(per_solve_options.D, num_cols);
+    A->AppendRows(D);
+  }
+
+  VectorRef(x, num_cols).setZero();
+
+  scoped_ptr<cholmod_sparse> lhs(ss_.CreateSparseMatrixTransposeView(A));
+  CHECK_NOTNULL(lhs.get());
+
+  cholmod_dense* rhs = ss_.CreateDenseVector(Atb.data(), num_cols, num_cols);
+  const time_t init_time = time(NULL);
+
+  if (symbolic_factor_ == NULL) {
+    symbolic_factor_ = CHECK_NOTNULL(ss_.AnalyzeCholesky(lhs.get()));
+  }
+
+  const time_t symbolic_time = time(NULL);
+
+  cholmod_dense* sol = ss_.SolveCholesky(lhs.get(), symbolic_factor_, rhs);
+  const time_t solve_time = time(NULL);
+
+  ss_.Free(rhs);
+  rhs = NULL;
+
+  if (per_solve_options.D != NULL) {
+    A->DeleteRows(num_cols);
+  }
+
+  if (!options_.constant_sparsity) {
+    ss_.Free(symbolic_factor_);
+    symbolic_factor_ = NULL;
+  }
+
+  summary.num_iterations = 1;
+  if (sol != NULL) {
+    memcpy(x, sol->x, num_cols * sizeof(*x));
+
+    ss_.Free(sol);
+    sol = NULL;
+    summary.termination_type = TOLERANCE;
+  }
+
+  const time_t cleanup_time = time(NULL);
+  VLOG(2) << "time (sec) total: " << cleanup_time - start_time
+          << " init: " << init_time - start_time
+          << " symbolic: " << symbolic_time - init_time
+          << " solve: " << solve_time - symbolic_time
+          << " cleanup: " << cleanup_time - solve_time;
+  return summary;
+}
+
+}   // namespace internal
+}   // namespace ceres
+
+#endif  // CERES_NO_SUITESPARSE
diff --git a/internal/ceres/sparse_normal_cholesky_solver.h b/internal/ceres/sparse_normal_cholesky_solver.h
new file mode 100644
index 0000000..ce1d6d2
--- /dev/null
+++ b/internal/ceres/sparse_normal_cholesky_solver.h
@@ -0,0 +1,77 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// A solver for sparse linear least squares problem based on solving
+// the normal equations via a sparse cholesky factorization.
+
+#ifndef CERES_INTERNAL_SPARSE_NORMAL_CHOLESKY_SOLVER_H_
+#define CERES_INTERNAL_SPARSE_NORMAL_CHOLESKY_SOLVER_H_
+
+#ifndef CERES_NO_SUITESPARSE
+
+#include "cholmod.h"
+#include "cholmod_core.h"
+#include "ceres/linear_solver.h"
+#include "ceres/suitesparse.h"
+#include "ceres/internal/macros.h"
+
+namespace ceres {
+namespace internal {
+
+class CompressedRowSparseMatrix;
+
+// Solves the normal equations (A'A + D'D) x = A'b, using the CHOLMOD sparse
+// cholesky solver.
+class SparseNormalCholeskySolver : public CompressedRowSparseMatrixSolver {
+ public:
+  explicit SparseNormalCholeskySolver(const LinearSolver::Options& options);
+  virtual ~SparseNormalCholeskySolver();
+
+ private:
+  virtual LinearSolver::Summary SolveImpl(
+      CompressedRowSparseMatrix* A,
+      const double* b,
+      const LinearSolver::PerSolveOptions& options,
+      double* x);
+
+  const LinearSolver::Options options_;
+  SuiteSparse ss_;
+
+  // Cached factorization
+  cholmod_factor* symbolic_factor_;
+  DISALLOW_COPY_AND_ASSIGN(SparseNormalCholeskySolver);
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_NO_SUITESPARSE
+
+#endif  // CERES_INTERNAL_SPARSE_NORMAL_CHOLESKY_SOLVER_H_
diff --git a/internal/ceres/split.cc b/internal/ceres/split.cc
new file mode 100644
index 0000000..4fa1bd4
--- /dev/null
+++ b/internal/ceres/split.cc
@@ -0,0 +1,115 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#include <string>
+#include <vector>
+#include <iterator>
+#include "ceres/internal/port.h"
+
+namespace ceres {
+
+// If we know how much to allocate for a vector of strings, we can allocate the
+// vector<string> only once and directly to the right size. This saves in
+// between 33-66 % of memory space needed for the result, and runs faster in the
+// microbenchmarks.
+//
+// The reserve is only implemented for the single character delim.
+//
+// The implementation for counting is cut-and-pasted from
+// SplitStringToIteratorUsing. I could have written my own counting iterator,
+// and use the existing template function, but probably this is more clear and
+// more sure to get optimized to reasonable code.
+static int CalculateReserveForVector(const string& full, const char* delim) {
+  int count = 0;
+  if (delim[0] != '\0' && delim[1] == '\0') {
+    // Optimize the common case where delim is a single character.
+    char c = delim[0];
+    const char* p = full.data();
+    const char* end = p + full.size();
+    while (p != end) {
+      if (*p == c) {  // This could be optimized with hasless(v,1) trick.
+        ++p;
+      } else {
+        while (++p != end && *p != c) {
+          // Skip to the next occurence of the delimiter.
+        }
+        ++count;
+      }
+    }
+  }
+  return count;
+}
+
+template <typename StringType, typename ITR>
+static inline
+void SplitStringToIteratorUsing(const StringType& full,
+                                const char* delim,
+                                ITR& result) {
+  // Optimize the common case where delim is a single character.
+  if (delim[0] != '\0' && delim[1] == '\0') {
+    char c = delim[0];
+    const char* p = full.data();
+    const char* end = p + full.size();
+    while (p != end) {
+      if (*p == c) {
+        ++p;
+      } else {
+        const char* start = p;
+        while (++p != end && *p != c) {
+          // Skip to the next occurence of the delimiter.
+        }
+        *result++ = StringType(start, p - start);
+      }
+    }
+    return;
+  }
+
+  string::size_type begin_index, end_index;
+  begin_index = full.find_first_not_of(delim);
+  while (begin_index != string::npos) {
+    end_index = full.find_first_of(delim, begin_index);
+    if (end_index == string::npos) {
+      *result++ = full.substr(begin_index);
+      return;
+    }
+    *result++ = full.substr(begin_index, (end_index - begin_index));
+    begin_index = full.find_first_not_of(delim, end_index);
+  }
+}
+
+void SplitStringUsing(const string& full,
+                      const char* delim,
+                      vector<string>* result) {
+  result->reserve(result->size() + CalculateReserveForVector(full, delim));
+  back_insert_iterator< vector<string> > it(*result);
+  SplitStringToIteratorUsing(full, delim, it);
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/stl_util.h b/internal/ceres/stl_util.h
new file mode 100644
index 0000000..a1a19e8
--- /dev/null
+++ b/internal/ceres/stl_util.h
@@ -0,0 +1,75 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_STL_UTIL_H_
+#define CERES_INTERNAL_STL_UTIL_H_
+
+namespace ceres {
+
+// STLDeleteContainerPointers()
+//  For a range within a container of pointers, calls delete
+//  (non-array version) on these pointers.
+// NOTE: for these three functions, we could just implement a DeleteObject
+// functor and then call for_each() on the range and functor, but this
+// requires us to pull in all of algorithm.h, which seems expensive.
+// For hash_[multi]set, it is important that this deletes behind the iterator
+// because the hash_set may call the hash function on the iterator when it is
+// advanced, which could result in the hash function trying to deference a
+// stale pointer.
+template <class ForwardIterator>
+void STLDeleteContainerPointers(ForwardIterator begin,
+                                ForwardIterator end) {
+  while (begin != end) {
+    ForwardIterator temp = begin;
+    ++begin;
+    delete *temp;
+  }
+}
+
+// STLDeleteElements() deletes all the elements in an STL container and clears
+// the container.  This function is suitable for use with a vector, set,
+// hash_set, or any other STL container which defines sensible begin(), end(),
+// and clear() methods.
+//
+// If container is NULL, this function is a no-op.
+//
+// As an alternative to calling STLDeleteElements() directly, consider
+// ElementDeleter (defined below), which ensures that your container's elements
+// are deleted when the ElementDeleter goes out of scope.
+template <class T>
+void STLDeleteElements(T *container) {
+  if (!container) return;
+  STLDeleteContainerPointers(container->begin(), container->end());
+  container->clear();
+}
+
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_STL_UTIL_H_
diff --git a/internal/ceres/stringprintf.cc b/internal/ceres/stringprintf.cc
new file mode 100644
index 0000000..d1e016a
--- /dev/null
+++ b/internal/ceres/stringprintf.cc
@@ -0,0 +1,125 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: Sanjay Ghemawat
+
+#include <cerrno>
+#include <cstdarg>  // For va_list and related operations
+#include <cstdio>   // MSVC requires this for _vsnprintf
+#include <string>
+#include <vector>
+
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+#ifdef COMPILER_MSVC
+enum { IS_COMPILER_MSVC = 1 };
+#else
+enum { IS_COMPILER_MSVC = 0 };
+#endif
+
+void StringAppendV(string* dst, const char* format, va_list ap) {
+  // First try with a small fixed size buffer
+  char space[1024];
+
+  // It's possible for methods that use a va_list to invalidate
+  // the data in it upon use.  The fix is to make a copy
+  // of the structure before using it and use that copy instead.
+  va_list backup_ap;
+  va_copy(backup_ap, ap);
+  int result = vsnprintf(space, sizeof(space), format, backup_ap);
+  va_end(backup_ap);
+
+  if (result < sizeof(space)) {
+    if (result >= 0) {
+      // Normal case -- everything fit.
+      dst->append(space, result);
+      return;
+    }
+
+    if (IS_COMPILER_MSVC) {
+      // Error or MSVC running out of space.  MSVC 8.0 and higher
+      // can be asked about space needed with the special idiom below:
+      va_copy(backup_ap, ap);
+      result = vsnprintf(NULL, 0, format, backup_ap);
+      va_end(backup_ap);
+    }
+
+    if (result < 0) {
+      // Just an error.
+      return;
+    }
+  }
+
+  // Increase the buffer size to the size requested by vsnprintf,
+  // plus one for the closing \0.
+  int length = result+1;
+  char* buf = new char[length];
+
+  // Restore the va_list before we use it again
+  va_copy(backup_ap, ap);
+  result = vsnprintf(buf, length, format, backup_ap);
+  va_end(backup_ap);
+
+  if (result >= 0 && result < length) {
+    // It fit
+    dst->append(buf, result);
+  }
+  delete[] buf;
+}
+
+
+string StringPrintf(const char* format, ...) {
+  va_list ap;
+  va_start(ap, format);
+  string result;
+  StringAppendV(&result, format, ap);
+  va_end(ap);
+  return result;
+}
+
+const string& SStringPrintf(string* dst, const char* format, ...) {
+  va_list ap;
+  va_start(ap, format);
+  dst->clear();
+  StringAppendV(dst, format, ap);
+  va_end(ap);
+  return *dst;
+}
+
+void StringAppendF(string* dst, const char* format, ...) {
+  va_list ap;
+  va_start(ap, format);
+  StringAppendV(dst, format, ap);
+  va_end(ap);
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/stringprintf.h b/internal/ceres/stringprintf.h
new file mode 100644
index 0000000..30b974e
--- /dev/null
+++ b/internal/ceres/stringprintf.h
@@ -0,0 +1,89 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: Sanjay Ghemawat
+//
+// Printf variants that place their output in a C++ string.
+//
+// Usage:
+//      string result = StringPrintf("%d %s\n", 10, "hello");
+//      SStringPrintf(&result, "%d %s\n", 10, "hello");
+//      StringAppendF(&result, "%d %s\n", 20, "there");
+
+#ifndef CERES_INTERNAL_STRINGPRINTF_H_
+#define CERES_INTERNAL_STRINGPRINTF_H_
+
+#include <cstdarg>
+#include <string>
+
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+#if (defined(__GNUC__) || defined(__clang__))
+// Tell the compiler to do printf format string checking if the compiler
+// supports it; see the 'format' attribute in
+// <http://gcc.gnu.org/onlinedocs/gcc-4.3.0/gcc/Function-Attributes.html>.
+//
+// N.B.: As the GCC manual states, "[s]ince non-static C++ methods
+// have an implicit 'this' argument, the arguments of such methods
+// should be counted from two, not one."
+#define PRINTF_ATTRIBUTE(string_index, first_to_check) \
+    __attribute__((__format__ (__printf__, string_index, first_to_check)))
+#define SCANF_ATTRIBUTE(string_index, first_to_check) \
+    __attribute__((__format__ (__scanf__, string_index, first_to_check)))
+#else
+#define PRINTF_ATTRIBUTE(string_index, first_to_check)
+#endif
+
+// Return a C++ string.
+extern string StringPrintf(const char* format, ...)
+    // Tell the compiler to do printf format string checking.
+    PRINTF_ATTRIBUTE(1,2);
+
+// Store result into a supplied string and return it.
+extern const string& SStringPrintf(string* dst, const char* format, ...)
+    // Tell the compiler to do printf format string checking.
+    PRINTF_ATTRIBUTE(2,3);
+
+// Append result to a supplied string.
+extern void StringAppendF(string* dst, const char* format, ...)
+    // Tell the compiler to do printf format string checking.
+    PRINTF_ATTRIBUTE(2,3);
+
+// Lower-level routine that takes a va_list and appends to a specified string.
+// All other routines are just convenience wrappers around it.
+extern void StringAppendV(string* dst, const char* format, va_list ap);
+
+#undef PRINTF_ATTRIBUTE
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_STRINGPRINTF_H_
diff --git a/internal/ceres/suitesparse.cc b/internal/ceres/suitesparse.cc
new file mode 100644
index 0000000..1cf6a74
--- /dev/null
+++ b/internal/ceres/suitesparse.cc
@@ -0,0 +1,193 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_NO_SUITESPARSE
+
+#include "ceres/suitesparse.h"
+
+#include "cholmod.h"
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/triplet_sparse_matrix.h"
+namespace ceres {
+namespace internal {
+
+cholmod_sparse* SuiteSparse::CreateSparseMatrix(TripletSparseMatrix* A) {
+  cholmod_triplet triplet;
+
+  triplet.nrow = A->num_rows();
+  triplet.ncol = A->num_cols();
+  triplet.nzmax = A->max_num_nonzeros();
+  triplet.nnz = A->num_nonzeros();
+  triplet.i = reinterpret_cast<void*>(A->mutable_rows());
+  triplet.j = reinterpret_cast<void*>(A->mutable_cols());
+  triplet.x = reinterpret_cast<void*>(A->mutable_values());
+  triplet.stype = 0;  // Matrix is not symmetric.
+  triplet.itype = CHOLMOD_INT;
+  triplet.xtype = CHOLMOD_REAL;
+  triplet.dtype = CHOLMOD_DOUBLE;
+
+  return cholmod_triplet_to_sparse(&triplet, triplet.nnz, &cc_);
+}
+
+
+cholmod_sparse* SuiteSparse::CreateSparseMatrixTranspose(
+    TripletSparseMatrix* A) {
+  cholmod_triplet triplet;
+
+  triplet.ncol = A->num_rows();  // swap row and columns
+  triplet.nrow = A->num_cols();
+  triplet.nzmax = A->max_num_nonzeros();
+  triplet.nnz = A->num_nonzeros();
+
+  // swap rows and columns
+  triplet.j = reinterpret_cast<void*>(A->mutable_rows());
+  triplet.i = reinterpret_cast<void*>(A->mutable_cols());
+  triplet.x = reinterpret_cast<void*>(A->mutable_values());
+  triplet.stype = 0;  // Matrix is not symmetric.
+  triplet.itype = CHOLMOD_INT;
+  triplet.xtype = CHOLMOD_REAL;
+  triplet.dtype = CHOLMOD_DOUBLE;
+
+  return cholmod_triplet_to_sparse(&triplet, triplet.nnz, &cc_);
+}
+
+cholmod_sparse* SuiteSparse::CreateSparseMatrixTransposeView(
+    CompressedRowSparseMatrix* A) {
+  cholmod_sparse* m = new cholmod_sparse_struct;
+  m->nrow = A->num_cols();
+  m->ncol = A->num_rows();
+  m->nzmax = A->num_nonzeros();
+
+  m->p = reinterpret_cast<void*>(A->mutable_rows());
+  m->i = reinterpret_cast<void*>(A->mutable_cols());
+  m->x = reinterpret_cast<void*>(A->mutable_values());
+
+  m->stype = 0;  // Matrix is not symmetric.
+  m->itype = CHOLMOD_INT;
+  m->xtype = CHOLMOD_REAL;
+  m->dtype = CHOLMOD_DOUBLE;
+  m->sorted = 1;
+  m->packed = 1;
+
+  return m;
+}
+
+cholmod_dense* SuiteSparse::CreateDenseVector(const double* x,
+                                              int in_size,
+                                              int out_size) {
+    CHECK_LE(in_size, out_size);
+    cholmod_dense* v = cholmod_zeros(out_size, 1, CHOLMOD_REAL, &cc_);
+    if (x != NULL) {
+      memcpy(v->x, x, in_size*sizeof(*x));
+    }
+    return v;
+}
+
+cholmod_factor* SuiteSparse::AnalyzeCholesky(cholmod_sparse* A) {
+  cholmod_factor* factor = cholmod_analyze(A, &cc_);
+  CHECK_EQ(cc_.status, CHOLMOD_OK)
+      << "Cholmod symbolic analysis failed " << cc_.status;
+  CHECK_NOTNULL(factor);
+  return factor;
+}
+
+bool SuiteSparse::Cholesky(cholmod_sparse* A, cholmod_factor* L) {
+  CHECK_NOTNULL(A);
+  CHECK_NOTNULL(L);
+
+  cc_.quick_return_if_not_posdef = 1;
+  int status = cholmod_factorize(A, L, &cc_);
+  switch (cc_.status) {
+    case CHOLMOD_NOT_INSTALLED:
+      LOG(WARNING) << "Cholmod failure: method not installed.";
+      return false;
+    case CHOLMOD_OUT_OF_MEMORY:
+      LOG(WARNING) << "Cholmod failure: out of memory.";
+      return false;
+    case CHOLMOD_TOO_LARGE:
+      LOG(WARNING) << "Cholmod failure: integer overflow occured.";
+      return false;
+    case CHOLMOD_INVALID:
+      LOG(WARNING) << "Cholmod failure: invalid input.";
+      return false;
+    case CHOLMOD_NOT_POSDEF:
+      // TODO(sameeragarwal): These two warnings require more
+      // sophisticated handling going forward. For now we will be
+      // strict and treat them as failures.
+      LOG(WARNING) << "Cholmod warning: matrix not positive definite.";
+      return false;
+    case CHOLMOD_DSMALL:
+      LOG(WARNING) << "Cholmod warning: D for LDL' or diag(L) or "
+                   << "LL' has tiny absolute value.";
+      return false;
+    case CHOLMOD_OK:
+      if (status != 0) {
+        return true;
+      }
+      LOG(WARNING) << "Cholmod failure: cholmod_factorize returned zero "
+                   << "but cholmod_common::status is CHOLMOD_OK."
+                   << "Please report this to ceres-solver@googlegroups.com.";
+      return false;
+    default:
+      LOG(WARNING) << "Unknown cholmod return code. "
+                   << "Please report this to ceres-solver@googlegroups.com.";
+      return false;
+  }
+  return false;
+}
+
+cholmod_dense* SuiteSparse::Solve(cholmod_factor* L,
+                                  cholmod_dense* b) {
+  if (cc_.status != CHOLMOD_OK) {
+    LOG(WARNING) << "CHOLMOD status NOT OK";
+    return NULL;
+  }
+
+  return cholmod_solve(CHOLMOD_A, L, b, &cc_);
+}
+
+cholmod_dense* SuiteSparse::SolveCholesky(cholmod_sparse* A,
+                                          cholmod_factor* L,
+                                          cholmod_dense* b) {
+  CHECK_NOTNULL(A);
+  CHECK_NOTNULL(L);
+  CHECK_NOTNULL(b);
+
+  if (Cholesky(A, L)) {
+    return Solve(L, b);
+  }
+
+  return NULL;
+}
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_NO_SUITESPARSE
diff --git a/internal/ceres/suitesparse.h b/internal/ceres/suitesparse.h
new file mode 100644
index 0000000..091e67a
--- /dev/null
+++ b/internal/ceres/suitesparse.h
@@ -0,0 +1,159 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// A simple C++ interface to the SuiteSparse and CHOLMOD libraries.
+
+#ifndef CERES_INTERNAL_SUITESPARSE_H_
+#define CERES_INTERNAL_SUITESPARSE_H_
+
+#ifndef CERES_NO_SUITESPARSE
+
+#include <cstring>
+#include <string>
+
+#include <glog/logging.h>
+#include "cholmod.h"
+#include "ceres/internal/port.h"
+
+namespace ceres {
+namespace internal {
+
+class CompressedRowSparseMatrix;
+class TripletSparseMatrix;
+
+// The raw CHOLMOD and SuiteSparseQR libraries have a slightly
+// cumbersome c like calling format. This object abstracts it away and
+// provides the user with a simpler interface. The methods here cannot
+// be static as a cholmod_common object serves as a global variable
+// for all cholmod function calls.
+class SuiteSparse {
+ public:
+  SuiteSparse()  { cholmod_start(&cc_);  }
+  ~SuiteSparse() { cholmod_finish(&cc_); }
+
+  // Functions for building cholmod_sparse objects from sparse
+  // matrices stored in triplet form. The matrix A is not
+  // modifed. Called owns the result.
+  cholmod_sparse* CreateSparseMatrix(TripletSparseMatrix* A);
+
+  // This function works like CreateSparseMatrix, except that the
+  // return value corresponds to A' rather than A.
+  cholmod_sparse* CreateSparseMatrixTranspose(TripletSparseMatrix* A);
+
+  // Create a cholmod_sparse wrapper around the contents of A. This is
+  // a shallow object, which refers to the contents of A and does not
+  // use the SuiteSparse machinery to allocate memory, this object
+  // should be disposed off with a delete and not a call to Free as is
+  // the case for objects returned by CreateSparseMatrixTranspose.
+  cholmod_sparse* CreateSparseMatrixTransposeView(CompressedRowSparseMatrix* A);
+
+  // Given a vector x, build a cholmod_dense vector of size out_size
+  // with the first in_size entries copied from x. If x is NULL, then
+  // an all zeros vector is returned. Caller owns the result.
+  cholmod_dense* CreateDenseVector(const double* x, int in_size, int out_size);
+
+  // The matrix A is scaled using the matrix whose diagonal is the
+  // vector scale. mode describes how scaling is applied. Possible
+  // values are CHOLMOD_ROW for row scaling - diag(scale) * A,
+  // CHOLMOD_COL for column scaling - A * diag(scale) and CHOLMOD_SYM
+  // for symmetric scaling which scales both the rows and the columns
+  // - diag(scale) * A * diag(scale).
+  void Scale(cholmod_dense* scale, int mode, cholmod_sparse* A) {
+     cholmod_scale(scale, mode, A, &cc_);
+  }
+
+  // Create and return a matrix m = A * A'. Caller owns the
+  // result. The matrix A is not modified.
+  cholmod_sparse* AATranspose(cholmod_sparse* A) {
+    cholmod_sparse*m =  cholmod_aat(A, NULL, A->nrow, 1, &cc_);
+    m->stype = 1;  // Pay attention to the upper triangular part.
+    return m;
+  }
+
+  // y = alpha * A * x + beta * y. Only y is modified.
+  void SparseDenseMultiply(cholmod_sparse* A, double alpha, double beta,
+                           cholmod_dense* x, cholmod_dense* y) {
+    double alpha_[2] = {alpha, 0};
+    double beta_[2] = {beta, 0};
+    cholmod_sdmult(A, 0, alpha_, beta_, x, y, &cc_);
+  }
+
+  // Analyze the sparsity structure of the matrix A compute the
+  // symbolic factorization of A. A is not modified, only the pattern
+  // of non-zeros of A is used, the actual numerical values in A are
+  // of no consequence. Caller owns the result.
+  cholmod_factor* AnalyzeCholesky(cholmod_sparse* A);
+
+  // Use the symbolic factorization in L, to find the numerical
+  // factorization for the matrix A or AA^T. Return true if
+  // successful, false otherwise. L contains the numeric factorization
+  // on return.
+  bool Cholesky(cholmod_sparse* A, cholmod_factor* L);
+
+  // Given a Cholesky factorization of a matrix A = LL^T, solve the
+  // linear system Ax = b, and return the result. If the Solve fails
+  // NULL is returned. Caller owns the result.
+  cholmod_dense* Solve(cholmod_factor* L, cholmod_dense* b);
+
+  // Combine the calls to Cholesky and Solve into a single call. If
+  // the cholesky factorization or the solve fails, return
+  // NULL. Caller owns the result.
+  cholmod_dense* SolveCholesky(cholmod_sparse* A,
+                               cholmod_factor* L,
+                               cholmod_dense* b);
+
+  void Free(cholmod_sparse* m) { cholmod_free_sparse(&m, &cc_); }
+  void Free(cholmod_dense* m)  { cholmod_free_dense(&m, &cc_);  }
+  void Free(cholmod_factor* m) { cholmod_free_factor(&m, &cc_); }
+
+  void Print(cholmod_sparse* m, const string& name) {
+    cholmod_print_sparse(m, const_cast<char*>(name.c_str()), &cc_);
+  }
+
+  void Print(cholmod_dense* m, const string& name) {
+    cholmod_print_dense(m, const_cast<char*>(name.c_str()), &cc_);
+  }
+
+  void Print(cholmod_triplet* m, const string& name) {
+    cholmod_print_triplet(m, const_cast<char*>(name.c_str()), &cc_);
+  }
+
+  cholmod_common* mutable_cc() { return &cc_; }
+
+ private:
+  cholmod_common cc_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_NO_SUITESPARSE
+
+#endif  // CERES_INTERNAL_SUITESPARSE_H_
diff --git a/internal/ceres/symmetric_linear_solver_test.cc b/internal/ceres/symmetric_linear_solver_test.cc
new file mode 100644
index 0000000..365c9c0
--- /dev/null
+++ b/internal/ceres/symmetric_linear_solver_test.cc
@@ -0,0 +1,142 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: fredp@google.com (Fred Pighin)
+//
+// Tests for linear solvers that solve symmetric linear systems. Some
+// of this code is inhertited from Fred Pighin's code for testing the
+// old Conjugate Gradients solver.
+//
+// TODO(sameeragarwal): More comprehensive testing with larger and
+// more badly conditioned problem.
+
+#include "gtest/gtest.h"
+#include "ceres/linear_solver.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(ConjugateGradientTest, Solves3x3IdentitySystem) {
+  double diagonal[] = { 1.0, 1.0, 1.0 };
+  scoped_ptr<TripletSparseMatrix>
+      A(TripletSparseMatrix::CreateSparseDiagonalMatrix(diagonal, 3));
+  Vector b(3);
+  Vector x(3);
+
+  b(0) = 1.0;
+  b(1) = 2.0;
+  b(2) = 3.0;
+
+  x(0) = 1;
+  x(1) = 1;
+  x(2) = 1;
+
+  LinearSolver::Options options;
+  options.max_num_iterations = 10;
+  options.constant_sparsity = false;
+  options.type = CONJUGATE_GRADIENTS;
+
+  LinearSolver::PerSolveOptions per_solve_options;
+  per_solve_options.r_tolerance = 1e-9;
+
+  scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
+  LinearSolver::Summary summary =
+      solver->Solve(A.get(), b.data(), per_solve_options, x.data());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+  ASSERT_EQ(summary.num_iterations, 1);
+
+  ASSERT_DOUBLE_EQ(1, x(0));
+  ASSERT_DOUBLE_EQ(2, x(1));
+  ASSERT_DOUBLE_EQ(3, x(2));
+}
+
+
+TEST(ConjuateGradientTest, Solves3x3SymmetricSystem) {
+  scoped_ptr<TripletSparseMatrix> A(new TripletSparseMatrix(3, 3, 9));
+  Vector b(3);
+  Vector x(3);
+
+  //      | 2  -1  0|
+  //  A = |-1   2 -1| is symmetric positive definite.
+  //      | 0  -1  2|
+  int* Ai = A->mutable_rows();
+  int* Aj = A->mutable_cols();
+  double* Ax = A->mutable_values();
+  int counter = 0;
+  for (int i = 0; i < 3; ++i) {
+    for (int j = 0; j < 3; ++j) {
+      Ai[counter] = i;
+      Aj[counter] = j;
+      ++counter;
+    }
+  }
+  Ax[0] = 2.;
+  Ax[1] = -1.;
+  Ax[2] = 0;
+  Ax[3] = -1.;
+  Ax[4] = 2;
+  Ax[5] = -1;
+  Ax[6] = 0;
+  Ax[7] = -1;
+  Ax[8] = 2;
+  A->set_num_nonzeros(9);
+
+  b(0) = -1;
+  b(1) = 0;
+  b(2) = 3;
+
+  x(0) = 1;
+  x(1) = 1;
+  x(2) = 1;
+
+  LinearSolver::Options options;
+  options.max_num_iterations = 10;
+  options.constant_sparsity = false;
+  options.type = CONJUGATE_GRADIENTS;
+
+  LinearSolver::PerSolveOptions per_solve_options;
+  per_solve_options.r_tolerance = 1e-9;
+
+  scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
+  LinearSolver::Summary summary =
+      solver->Solve(A.get(), b.data(), per_solve_options, x.data());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+
+  ASSERT_DOUBLE_EQ(0, x(0));
+  ASSERT_DOUBLE_EQ(1, x(1));
+  ASSERT_DOUBLE_EQ(2, x(2));
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/system_test.cc b/internal/ceres/system_test.cc
new file mode 100644
index 0000000..01573ac
--- /dev/null
+++ b/internal/ceres/system_test.cc
@@ -0,0 +1,513 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//         sameeragarwal@google.com (Sameer Agarwal)
+//
+// System level tests for Ceres. The current suite of two tests. The
+// first test is a small test based on Powell's Function. It is a
+// scalar problem with 4 variables. The second problem is a bundle
+// adjustment problem with 16 cameras and two thousand cameras. The
+// first problem is to test the sanity test the factorization based
+// solvers. The second problem is used to test the various
+// combinations of solvers, orderings, preconditioners and
+// multithreading.
+
+#include <cmath>
+#include <cstdio>
+#include <cstdlib>
+#include <string>
+
+#include <glog/logging.h>
+#include "ceres/file.h"
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+#include "ceres/test_util.h"
+#include "ceres/autodiff_cost_function.h"
+#include "ceres/problem.h"
+#include "ceres/solver.h"
+#include "ceres/types.h"
+#include "ceres/rotation.h"
+
+DECLARE_string(test_srcdir);
+
+namespace ceres {
+namespace internal {
+
+// Struct used for configuring the solver.
+struct SolverConfig {
+  SolverConfig(LinearSolverType linear_solver_type,
+               OrderingType ordering_type)
+      : linear_solver_type(linear_solver_type),
+        ordering_type(ordering_type),
+        preconditioner_type(IDENTITY),
+        num_threads(1) {
+  }
+
+  SolverConfig(LinearSolverType linear_solver_type,
+               OrderingType ordering_type,
+               PreconditionerType preconditioner_type,
+               int num_threads)
+      : linear_solver_type(linear_solver_type),
+        ordering_type(ordering_type),
+        preconditioner_type(preconditioner_type),
+        num_threads(num_threads) {
+  }
+
+  string ToString() const {
+    return StringPrintf("(%s, %s, %s, %d)",
+                        LinearSolverTypeToString(linear_solver_type),
+                        OrderingTypeToString(ordering_type),
+                        PreconditionerTypeToString(preconditioner_type),
+                        num_threads);
+  }
+
+  LinearSolverType linear_solver_type;
+  OrderingType ordering_type;
+  PreconditionerType preconditioner_type;
+  int num_threads;
+};
+
+// Templated function that given a set of solver configurations,
+// instantiates a new copy of SystemTestProblem for each configuration
+// and solves it. The solutions are expected to have residuals with
+// coordinate-wise maximum absolute difference less than or equal to
+// max_abs_difference.
+//
+// The template parameter SystemTestProblem is expected to implement
+// the following interface.
+//
+//   class SystemTestProblem {
+//     public:
+//       SystemTestProblem();
+//       Problem* mutable_problem();
+//       Solver::Options* mutable_solver_options();
+//   };
+template <typename SystemTestProblem>
+void RunSolversAndCheckTheyMatch(const vector<SolverConfig>& configurations,
+                                 const double max_abs_difference) {
+  int num_configurations = configurations.size();
+  vector<SystemTestProblem*> problems;
+  vector<Solver::Summary> summaries(num_configurations);
+
+  for (int i = 0; i < num_configurations; ++i) {
+    SystemTestProblem* system_test_problem = new SystemTestProblem();
+
+    const SolverConfig& config = configurations[i];
+
+    Solver::Options& options = *(system_test_problem->mutable_solver_options());
+    options.linear_solver_type = config.linear_solver_type;
+    options.ordering_type = config.ordering_type;
+    options.preconditioner_type = config.preconditioner_type;
+    options.num_threads = config.num_threads;
+    options.num_linear_solver_threads = config.num_threads;
+    options.return_final_residuals = true;
+
+    if (options.ordering_type == SCHUR || options.ordering_type == NATURAL) {
+      options.ordering.clear();
+    }
+
+    if (options.ordering_type == SCHUR) {
+      options.num_eliminate_blocks = 0;
+    }
+
+    LOG(INFO) << "Running solver configuration: "
+              << config.ToString();
+
+    Solve(options,
+          system_test_problem->mutable_problem(),
+          &summaries[i]);
+
+    CHECK_NE(summaries[i].termination_type, ceres::NUMERICAL_FAILURE)
+        << "Solver configuration " << i << " failed.";
+    problems.push_back(system_test_problem);
+
+    // Compare the resulting solutions to each other. Arbitrarily take
+    // SPARSE_NORMAL_CHOLESKY as the golden solve. We compare
+    // solutions by comparing their residual vectors. We do not
+    // compare parameter vectors because it is much more brittle and
+    // error prone to do so, since the same problem can have nearly
+    // the same residuals at two completely different positions in
+    // parameter space.
+    if (i > 0) {
+      const vector<double>& reference_residuals = summaries[0].final_residuals;
+      const vector<double>& current_residuals = summaries[i].final_residuals;
+
+      for (int j = 0; j < reference_residuals.size(); ++j) {
+        EXPECT_NEAR(current_residuals[j],
+                    reference_residuals[j],
+                    max_abs_difference)
+            << "Not close enough residual:" << j
+            << " reference " << reference_residuals[j]
+            << " current " << current_residuals[j];
+      }
+    }
+  }
+
+  for (int i = 0; i < num_configurations; ++i) {
+    delete problems[i];
+  }
+}
+
+// This class implements the SystemTestProblem interface and provides
+// access to an implementation of Powell's singular function.
+//
+//   F = 1/2 (f1^2 + f2^2 + f3^2 + f4^2)
+//
+//   f1 = x1 + 10*x2;
+//   f2 = sqrt(5) * (x3 - x4)
+//   f3 = (x2 - 2*x3)^2
+//   f4 = sqrt(10) * (x1 - x4)^2
+//
+// The starting values are x1 = 3, x2 = -1, x3 = 0, x4 = 1.
+// The minimum is 0 at (x1, x2, x3, x4) = 0.
+//
+// From: Testing Unconstrained Optimization Software by Jorge J. More, Burton S.
+// Garbow and Kenneth E. Hillstrom in ACM Transactions on Mathematical Software,
+// Vol 7(1), March 1981.
+class PowellsFunction {
+ public:
+  PowellsFunction() {
+    x_[0] =  3.0;
+    x_[1] = -1.0;
+    x_[2] =  0.0;
+    x_[3] =  1.0;
+
+    problem_.AddResidualBlock(
+        new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), NULL, &x_[0], &x_[1]);
+    problem_.AddResidualBlock(
+        new AutoDiffCostFunction<F2, 1, 1, 1>(new F2), NULL, &x_[2], &x_[3]);
+    problem_.AddResidualBlock(
+        new AutoDiffCostFunction<F3, 1, 1, 1>(new F3), NULL, &x_[1], &x_[2]);
+    problem_.AddResidualBlock(
+        new AutoDiffCostFunction<F4, 1, 1, 1>(new F4), NULL, &x_[0], &x_[3]);
+
+    options_.max_num_iterations = 10;
+  }
+
+  Problem* mutable_problem() { return &problem_; }
+  Solver::Options* mutable_solver_options() { return &options_; }
+
+ private:
+  // Templated functions used for automatically differentiated cost
+  // functions.
+  class F1 {
+   public:
+    template <typename T> bool operator()(const T* const x1,
+                                          const T* const x2,
+                                          T* residual) const {
+      // f1 = x1 + 10 * x2;
+      *residual = *x1 + T(10.0) * *x2;
+      return true;
+    }
+  };
+
+  class F2 {
+   public:
+    template <typename T> bool operator()(const T* const x3,
+                                          const T* const x4,
+                                          T* residual) const {
+      // f2 = sqrt(5) (x3 - x4)
+      *residual = T(sqrt(5.0)) * (*x3 - *x4);
+      return true;
+    }
+  };
+
+  class F3 {
+   public:
+    template <typename T> bool operator()(const T* const x2,
+                                          const T* const x4,
+                                          T* residual) const {
+      // f3 = (x2 - 2 x3)^2
+      residual[0] = (x2[0] - T(2.0) * x4[0]) * (x2[0] - T(2.0) * x4[0]);
+      return true;
+    }
+  };
+
+  class F4 {
+   public:
+    template <typename T> bool operator()(const T* const x1,
+                                          const T* const x4,
+                                          T* residual) const {
+      // f4 = sqrt(10) (x1 - x4)^2
+      residual[0] = T(sqrt(10.0)) * (x1[0] - x4[0]) * (x1[0] - x4[0]);
+      return true;
+    }
+  };
+
+  double x_[4];
+  Problem problem_;
+  Solver::Options options_;
+};
+
+TEST(SystemTest, PowellsFunction) {
+  vector<SolverConfig> configurations;
+  configurations.push_back(SolverConfig(DENSE_QR, NATURAL));
+  configurations.push_back(SolverConfig(DENSE_SCHUR, SCHUR));
+
+#ifndef CERES_NO_SUITESPARSE
+  configurations.push_back(SolverConfig(SPARSE_NORMAL_CHOLESKY, NATURAL));
+  configurations.push_back(SolverConfig(SPARSE_SCHUR, SCHUR));
+#endif  // CERES_NO_SUITESPARSE
+
+  configurations.push_back(SolverConfig(ITERATIVE_SCHUR, SCHUR));
+  const double kMaxAbsoluteDifference = 1e-8;
+  RunSolversAndCheckTheyMatch<PowellsFunction>(configurations,
+                                               kMaxAbsoluteDifference);
+}
+
+// This class implements the SystemTestProblem interface and provides
+// access to a bundle adjustment problem. It is based on
+// examples/bundle_adjustment_example.cc. Currently a small 16 camera
+// problem is hard coded in the constructor. Going forward we may
+// extend this to a larger number of problems.
+class BundleAdjustmentProblem {
+ public:
+  BundleAdjustmentProblem() {
+    const string input_file =
+        JoinPath(FLAGS_test_srcdir,
+                       "problem-16-22106-pre.txt"); // NOLINT
+
+    ReadData(input_file);
+    BuildProblem();
+  }
+
+  ~BundleAdjustmentProblem() {
+    delete []point_index_;
+    delete []camera_index_;
+    delete []observations_;
+    delete []parameters_;
+  }
+
+  Problem* mutable_problem() { return &problem_; }
+  Solver::Options* mutable_solver_options() { return &options_; }
+
+  int num_cameras()            const { return num_cameras_;        }
+  int num_points()             const { return num_points_;         }
+  int num_observations()       const { return num_observations_;   }
+  const int* point_index()     const { return point_index_;  }
+  const int* camera_index()    const { return camera_index_; }
+  const double* observations() const { return observations_; }
+  double* mutable_cameras() { return parameters_; }
+  double* mutable_points() { return parameters_  + 9 * num_cameras_; }
+
+ private:
+  void ReadData(const string& filename) {
+    FILE * fptr = fopen(filename.c_str(), "r");
+
+    if (!fptr) {
+      LOG(FATAL) << "File Error: unable to open file " << filename;
+    };
+
+    // This will die horribly on invalid files. Them's the breaks.
+    FscanfOrDie(fptr, "%d", &num_cameras_);
+    FscanfOrDie(fptr, "%d", &num_points_);
+    FscanfOrDie(fptr, "%d", &num_observations_);
+
+    VLOG(1) << "Header: " << num_cameras_
+            << " " << num_points_
+            << " " << num_observations_;
+
+    point_index_ = new int[num_observations_];
+    camera_index_ = new int[num_observations_];
+    observations_ = new double[2 * num_observations_];
+
+    num_parameters_ = 9 * num_cameras_ + 3 * num_points_;
+    parameters_ = new double[num_parameters_];
+
+    for (int i = 0; i < num_observations_; ++i) {
+      FscanfOrDie(fptr, "%d", camera_index_ + i);
+      FscanfOrDie(fptr, "%d", point_index_ + i);
+      for (int j = 0; j < 2; ++j) {
+        FscanfOrDie(fptr, "%lf", observations_ + 2*i + j);
+      }
+    }
+
+    for (int i = 0; i < num_parameters_; ++i) {
+      FscanfOrDie(fptr, "%lf", parameters_ + i);
+    }
+  }
+
+  void BuildProblem() {
+    double* points = mutable_points();
+    double* cameras = mutable_cameras();
+
+    for (int i = 0; i < num_observations(); ++i) {
+      // Each Residual block takes a point and a camera as input and
+      // outputs a 2 dimensional residual.
+      CostFunction* cost_function =
+          new AutoDiffCostFunction<BundlerResidual, 2, 9, 3>(
+              new BundlerResidual(observations_[2*i + 0],
+                                  observations_[2*i + 1]));
+
+      // Each observation correponds to a pair of a camera and a point
+      // which are identified by camera_index()[i] and
+      // point_index()[i] respectively.
+      double* camera = cameras + 9 * camera_index_[i];
+      double* point = points + 3 * point_index()[i];
+      problem_.AddResidualBlock(cost_function, NULL, camera, point);
+    }
+
+    // The points come before the cameras.
+    for (int i = 0; i < num_points_; ++i) {
+      options_.ordering.push_back(points + 3 * i);
+    }
+
+    for (int i = 0; i < num_cameras_; ++i) {
+      options_.ordering.push_back(cameras + 9 * i);
+    }
+
+    options_.num_eliminate_blocks = num_points();
+    options_.max_num_iterations = 25;
+    options_.function_tolerance = 1e-10;
+    options_.gradient_tolerance = 1e-10;
+    options_.parameter_tolerance = 1e-10;
+  }
+
+  template<typename T>
+  void FscanfOrDie(FILE *fptr, const char *format, T *value) {
+    int num_scanned = fscanf(fptr, format, value);
+    if (num_scanned != 1) {
+      LOG(FATAL) << "Invalid UW data file.";
+    }
+  }
+
+  // Templated pinhole camera model.  The camera is parameterized
+  // using 9 parameters. 3 for rotation, 3 for translation, 1 for
+  // focal length and 2 for radial distortion. The principal point is
+  // not modeled (i.e. it is assumed be located at the image center).
+  struct BundlerResidual {
+    // (u, v): the position of the observation with respect to the image
+    // center point.
+    BundlerResidual(double u, double v): u(u), v(v) {}
+
+    template <typename T>
+    bool operator()(const T* const camera,
+                    const T* const point,
+                    T* residuals) const {
+      T p[3];
+      AngleAxisRotatePoint(camera, point, p);
+
+      // Add the translation vector
+      p[0] += camera[3];
+      p[1] += camera[4];
+      p[2] += camera[5];
+
+      const T& focal = camera[6];
+      const T& l1 = camera[7];
+      const T& l2 = camera[8];
+
+      // Compute the center of distortion.  The sign change comes from
+      // the camera model that Noah Snavely's Bundler assumes, whereby
+      // the camera coordinate system has a negative z axis.
+      T xp = - focal * p[0] / p[2];
+      T yp = - focal * p[1] / p[2];
+
+      // Apply second and fourth order radial distortion.
+      T r2 = xp*xp + yp*yp;
+      T distortion = T(1.0) + r2  * (l1 + l2  * r2);
+
+      residuals[0] = distortion * xp - T(u);
+      residuals[1] = distortion * yp - T(v);
+
+      return true;
+    }
+
+    double u;
+    double v;
+  };
+
+
+  Problem problem_;
+  Solver::Options options_;
+
+  int num_cameras_;
+  int num_points_;
+  int num_observations_;
+  int num_parameters_;
+
+  int* point_index_;
+  int* camera_index_;
+  double* observations_;
+  // The parameter vector is laid out as follows
+  // [camera_1, ..., camera_n, point_1, ..., point_m]
+  double* parameters_;
+};
+
+TEST(SystemTest, BundleAdjustmentProblem) {
+  vector<SolverConfig> configs;
+
+#define CONFIGURE(a, b, c, d) configs.push_back(SolverConfig(a, b, c, d))
+
+#ifndef CERES_NO_SUITESPARSE
+  CONFIGURE(SPARSE_NORMAL_CHOLESKY, NATURAL, IDENTITY, 1);
+  CONFIGURE(SPARSE_NORMAL_CHOLESKY, USER,    IDENTITY, 1);
+  CONFIGURE(SPARSE_NORMAL_CHOLESKY, SCHUR,   IDENTITY, 1);
+
+  CONFIGURE(SPARSE_SCHUR,           USER,    IDENTITY, 1);
+  CONFIGURE(SPARSE_SCHUR,           SCHUR,   IDENTITY, 1);
+#endif  // CERES_NO_SUITESPARSE
+
+  CONFIGURE(DENSE_SCHUR,            USER,    IDENTITY, 1);
+  CONFIGURE(DENSE_SCHUR,            SCHUR,   IDENTITY, 1);
+
+  CONFIGURE(ITERATIVE_SCHUR,        USER,    JACOBI, 1);
+
+#ifndef CERES_NO_SUITESPARSE
+  CONFIGURE(ITERATIVE_SCHUR,        USER,    SCHUR_JACOBI, 1);
+  CONFIGURE(ITERATIVE_SCHUR,        USER,    CLUSTER_JACOBI, 1);
+  CONFIGURE(ITERATIVE_SCHUR,        USER,    CLUSTER_TRIDIAGONAL, 1);
+#endif  // CERES_NO_SUITESPARSE
+
+  CONFIGURE(ITERATIVE_SCHUR,        SCHUR,   JACOBI, 1);
+
+#ifndef CERES_NO_SUITESPARSE
+  CONFIGURE(ITERATIVE_SCHUR,        SCHUR,   SCHUR_JACOBI, 1);
+  CONFIGURE(ITERATIVE_SCHUR,        SCHUR,   CLUSTER_JACOBI, 1);
+  CONFIGURE(ITERATIVE_SCHUR,        SCHUR,   CLUSTER_TRIDIAGONAL, 1);
+#endif  // CERES_NO_SUITESPARSE
+
+#undef CONFIGURE
+
+  // Single threaded evaluators and linear solvers.
+  const double kMaxAbsoluteDifference = 1e-4;
+  RunSolversAndCheckTheyMatch<BundleAdjustmentProblem>(configs,
+                                                       kMaxAbsoluteDifference);
+
+#ifdef CERES_USE_OPENMP
+  // Multithreaded evaluators and linear solvers.
+  for (int i = 0; i < configs.size(); ++i) {
+    configs[i].num_threads = 2;
+  }
+  RunSolversAndCheckTheyMatch<BundleAdjustmentProblem>(configs,
+                                                       kMaxAbsoluteDifference);
+#endif  // CERES_USE_OPENMP
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/test_util.cc b/internal/ceres/test_util.cc
new file mode 100644
index 0000000..2bf4009
--- /dev/null
+++ b/internal/ceres/test_util.cc
@@ -0,0 +1,110 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+//
+// Utility functions useful for testing.
+
+#include <cmath>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/stringprintf.h"
+
+namespace ceres {
+namespace internal {
+
+bool ExpectClose(double x, double y, double max_abs_relative_difference) {
+  double absolute_difference = fabs(x - y);
+  double relative_difference = absolute_difference / std::max(fabs(x), fabs(y));
+  if (x == 0 || y == 0) {
+    // If x or y is exactly zero, then relative difference doesn't have any
+    // meaning. Take the absolute difference instead.
+    relative_difference = absolute_difference;
+  }
+  if (relative_difference > max_abs_relative_difference) {
+    VLOG(1) << StringPrintf("x=%17g y=%17g abs=%17g rel=%17g",
+                            x, y, absolute_difference, relative_difference);
+  }
+
+  EXPECT_NEAR(relative_difference, 0.0, max_abs_relative_difference);
+  return relative_difference <= max_abs_relative_difference;
+}
+
+void ExpectArraysCloseUptoScale(int n,
+                                const double* p,
+                                const double* q,
+                                double tol) {
+  CHECK_GT(n, 0);
+  CHECK(p);
+  CHECK(q);
+
+  double p_max = 0;
+  double q_max = 0;
+  int p_i = 0;
+  int q_i = 0;
+
+  for (int i = 0; i < n; ++i) {
+    if (std::abs(p[i]) > p_max) {
+      p_max = std::abs(p[i]);
+      p_i = i;
+    }
+    if (std::abs(q[i]) > q_max) {
+      q_max = std::abs(q[i]);
+      q_i = i;
+    }
+  }
+
+  // If both arrays are all zeros, they are equal up to scale, but
+  // for testing purposes, that's more likely to be an error than
+  // a desired result.
+  CHECK_NE(p_max, 0.0);
+  CHECK_NE(q_max, 0.0);
+
+  for (int i = 0; i < n; ++i) {
+    double p_norm = p[i] / p[p_i];
+    double q_norm = q[i] / q[q_i];
+
+    EXPECT_NEAR(p_norm, q_norm, tol) << "i=" << i;
+  }
+}
+
+void ExpectArraysClose(int n,
+                       const double* p,
+                       const double* q,
+                       double tol) {
+  CHECK_GT(n, 0);
+  CHECK(p);
+  CHECK(q);
+
+  for (int i = 0; i < n; ++i) {
+    EXPECT_NEAR(p[i], q[i], tol) << "i=" << i;
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/test_util.h b/internal/ceres/test_util.h
new file mode 100644
index 0000000..93dc343
--- /dev/null
+++ b/internal/ceres/test_util.h
@@ -0,0 +1,64 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: keir@google.com (Keir Mierle)
+
+#ifndef CERES_INTERNAL_TEST_UTIL_H_
+#define CERES_INTERNAL_TEST_UTIL_H_
+
+namespace ceres {
+namespace internal {
+
+// Expects that x and y have a relative difference of no more than
+// max_abs_relative_difference. If either x or y is zero, then the relative
+// difference is interpreted as an absolute difference.
+bool ExpectClose(double x, double y, double max_abs_relative_difference);
+
+// Expects that for all i = 1,.., n - 1
+//
+//   |p[i] - q[i]| / max(|p[i]|, |q[i]|) < tolerance
+void ExpectArraysClose(int n,
+                       const double* p,
+                       const double* q,
+                       double tolerance);
+
+// Expects that for all i = 1,.., n - 1
+//
+//   |p[i] / max_norm_p - q[i] / max_norm_q| < tolerance
+//
+// where max_norm_p and max_norm_q are the max norms of the arrays p
+// and q respectively.
+void ExpectArraysCloseUptoScale(int n,
+                                const double* p,
+                                const double* q,
+                                double tolerance);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_TEST_UTIL_H_
diff --git a/internal/ceres/triplet_sparse_matrix.cc b/internal/ceres/triplet_sparse_matrix.cc
new file mode 100644
index 0000000..7d7c3df
--- /dev/null
+++ b/internal/ceres/triplet_sparse_matrix.cc
@@ -0,0 +1,299 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/triplet_sparse_matrix.h"
+
+#include <algorithm>
+#include <cstddef>
+#include <glog/logging.h>
+#include "ceres/matrix_proto.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/port.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+TripletSparseMatrix::TripletSparseMatrix()
+    : num_rows_(0),
+      num_cols_(0),
+      max_num_nonzeros_(0),
+      num_nonzeros_(0),
+      rows_(NULL),
+      cols_(NULL),
+      values_(NULL) {}
+
+TripletSparseMatrix::~TripletSparseMatrix() {}
+
+TripletSparseMatrix::TripletSparseMatrix(int num_rows,
+                                         int num_cols,
+                                         int max_num_nonzeros)
+    : num_rows_(num_rows),
+      num_cols_(num_cols),
+      max_num_nonzeros_(max_num_nonzeros),
+      num_nonzeros_(0),
+      rows_(NULL),
+      cols_(NULL),
+      values_(NULL) {
+  // All the sizes should at least be zero
+  CHECK_GE(num_rows, 0);
+  CHECK_GE(num_cols, 0);
+  CHECK_GE(max_num_nonzeros, 0);
+  AllocateMemory();
+}
+
+TripletSparseMatrix::TripletSparseMatrix(const TripletSparseMatrix& orig)
+    : num_rows_(orig.num_rows_),
+      num_cols_(orig.num_cols_),
+      max_num_nonzeros_(orig.max_num_nonzeros_),
+      num_nonzeros_(orig.num_nonzeros_),
+      rows_(NULL),
+      cols_(NULL),
+      values_(NULL) {
+  AllocateMemory();
+  CopyData(orig);
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TripletSparseMatrix::TripletSparseMatrix(const SparseMatrixProto& outer_proto) {
+  CHECK(outer_proto.has_triplet_matrix());
+
+  const TripletSparseMatrixProto& proto = outer_proto.triplet_matrix();
+  CHECK(proto.has_num_rows());
+  CHECK(proto.has_num_cols());
+  CHECK_EQ(proto.rows_size(), proto.cols_size());
+  CHECK_EQ(proto.cols_size(), proto.values_size());
+
+  // Initialize the matrix with the appropriate size and capacity.
+  max_num_nonzeros_ = 0;
+  set_num_nonzeros(0);
+  Reserve(proto.num_nonzeros());
+  Resize(proto.num_rows(), proto.num_cols());
+  set_num_nonzeros(proto.num_nonzeros());
+
+  // Copy the entries in.
+  for (int i = 0; i < proto.num_nonzeros(); ++i) {
+    rows_[i] = proto.rows(i);
+    cols_[i] = proto.cols(i);
+    values_[i] = proto.values(i);
+  }
+}
+#endif
+
+TripletSparseMatrix& TripletSparseMatrix::operator=(
+    const TripletSparseMatrix& rhs) {
+  num_rows_ = rhs.num_rows_;
+  num_cols_ = rhs.num_cols_;
+  num_nonzeros_ = rhs.num_nonzeros_;
+  max_num_nonzeros_ = rhs.max_num_nonzeros_;
+  AllocateMemory();
+  CopyData(rhs);
+  return *this;
+}
+
+bool TripletSparseMatrix::AllTripletsWithinBounds() const {
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    if ((rows_[i] < 0) || (rows_[i] >= num_rows_) ||
+        (cols_[i] < 0) || (cols_[i] >= num_cols_))
+      return false;
+  }
+  return true;
+}
+
+void TripletSparseMatrix::Reserve(int new_max_num_nonzeros) {
+  CHECK_LE(num_nonzeros_, new_max_num_nonzeros)
+    << "Reallocation will cause data loss";
+
+  // Nothing to do if we have enough space already.
+  if (new_max_num_nonzeros <= max_num_nonzeros_)
+    return;
+
+  int* new_rows = new int[new_max_num_nonzeros];
+  int* new_cols = new int[new_max_num_nonzeros];
+  double* new_values = new double[new_max_num_nonzeros];
+
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    new_rows[i] = rows_[i];
+    new_cols[i] = cols_[i];
+    new_values[i] = values_[i];
+  }
+
+  rows_.reset(new_rows);
+  cols_.reset(new_cols);
+  values_.reset(new_values);
+
+  max_num_nonzeros_ = new_max_num_nonzeros;
+}
+
+void TripletSparseMatrix::SetZero() {
+  fill(values_.get(), values_.get() + max_num_nonzeros_, 0.0);
+  num_nonzeros_ = 0;
+}
+
+void TripletSparseMatrix::set_num_nonzeros(int num_nonzeros) {
+  CHECK_GE(num_nonzeros, 0);
+  CHECK_LE(num_nonzeros, max_num_nonzeros_);
+  num_nonzeros_ = num_nonzeros;
+};
+
+void TripletSparseMatrix::AllocateMemory() {
+  rows_.reset(new int[max_num_nonzeros_]);
+  cols_.reset(new int[max_num_nonzeros_]);
+  values_.reset(new double[max_num_nonzeros_]);
+}
+
+void TripletSparseMatrix::CopyData(const TripletSparseMatrix& orig) {
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    rows_[i] = orig.rows_[i];
+    cols_[i] = orig.cols_[i];
+    values_[i] = orig.values_[i];
+  }
+}
+
+void TripletSparseMatrix::RightMultiply(const double* x,  double* y) const {
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    y[rows_[i]] += values_[i]*x[cols_[i]];
+  }
+}
+
+void TripletSparseMatrix::LeftMultiply(const double* x, double* y) const {
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    y[cols_[i]] += values_[i]*x[rows_[i]];
+  }
+}
+
+void TripletSparseMatrix::SquaredColumnNorm(double* x) const {
+  CHECK_NOTNULL(x);
+  VectorRef(x, num_cols_).setZero();
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    x[cols_[i]] += values_[i] * values_[i];
+  }
+}
+
+void TripletSparseMatrix::ScaleColumns(const double* scale) {
+  CHECK_NOTNULL(scale);
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    values_[i] = values_[i] * scale[cols_[i]];
+  }
+}
+
+void TripletSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const {
+  dense_matrix->resize(num_rows_, num_cols_);
+  dense_matrix->setZero();
+  Matrix& m = *dense_matrix;
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    m(rows_[i], cols_[i]) += values_[i];
+  }
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+void TripletSparseMatrix::ToProto(SparseMatrixProto *proto) const {
+  proto->Clear();
+
+  TripletSparseMatrixProto* tsm_proto = proto->mutable_triplet_matrix();
+  tsm_proto->set_num_rows(num_rows_);
+  tsm_proto->set_num_cols(num_cols_);
+  tsm_proto->set_num_nonzeros(num_nonzeros_);
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    tsm_proto->add_rows(rows_[i]);
+    tsm_proto->add_cols(cols_[i]);
+    tsm_proto->add_values(values_[i]);
+  }
+}
+#endif
+
+void TripletSparseMatrix::AppendRows(const TripletSparseMatrix& B) {
+  CHECK_EQ(B.num_cols(), num_cols_);
+  Reserve(num_nonzeros_ + B.num_nonzeros_);
+  for (int i = 0; i < B.num_nonzeros_; ++i) {
+    rows_.get()[num_nonzeros_] = B.rows()[i] + num_rows_;
+    cols_.get()[num_nonzeros_] = B.cols()[i];
+    values_.get()[num_nonzeros_++] = B.values()[i];
+  }
+  num_rows_ = num_rows_ + B.num_rows();
+}
+
+void TripletSparseMatrix::AppendCols(const TripletSparseMatrix& B) {
+  CHECK_EQ(B.num_rows(), num_rows_);
+  Reserve(num_nonzeros_ + B.num_nonzeros_);
+  for (int i = 0; i < B.num_nonzeros_; ++i, ++num_nonzeros_) {
+    rows_.get()[num_nonzeros_] = B.rows()[i];
+    cols_.get()[num_nonzeros_] = B.cols()[i] + num_cols_;
+    values_.get()[num_nonzeros_] = B.values()[i];
+  }
+  num_cols_ = num_cols_ + B.num_cols();
+}
+
+
+void TripletSparseMatrix::Resize(int new_num_rows, int new_num_cols) {
+  if ((new_num_rows >= num_rows_) && (new_num_cols >= num_cols_)) {
+    num_rows_  = new_num_rows;
+    num_cols_ = new_num_cols;
+    return;
+  }
+
+  num_rows_ = new_num_rows;
+  num_cols_ = new_num_cols;
+
+  int* r_ptr = rows_.get();
+  int* c_ptr = cols_.get();
+  double* v_ptr = values_.get();
+
+  int dropped_terms = 0;
+  for (int i = 0; i < num_nonzeros_; ++i) {
+    if ((r_ptr[i] < num_rows_) && (c_ptr[i] < num_cols_)) {
+      if (dropped_terms) {
+        r_ptr[i-dropped_terms] = r_ptr[i];
+        c_ptr[i-dropped_terms] = c_ptr[i];
+        v_ptr[i-dropped_terms] = v_ptr[i];
+      }
+    } else {
+      ++dropped_terms;
+    }
+  }
+  num_nonzeros_ -= dropped_terms;
+}
+
+TripletSparseMatrix* TripletSparseMatrix::CreateSparseDiagonalMatrix(
+    const double* values, int num_rows) {
+  TripletSparseMatrix* m =
+      new TripletSparseMatrix(num_rows, num_rows, num_rows);
+  for (int i = 0; i < num_rows; ++i) {
+    m->mutable_rows()[i] = i;
+    m->mutable_cols()[i] = i;
+    m->mutable_values()[i] = values[i];
+  }
+  m->set_num_nonzeros(num_rows);
+  return m;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/triplet_sparse_matrix.h b/internal/ceres/triplet_sparse_matrix.h
new file mode 100644
index 0000000..3c90a62
--- /dev/null
+++ b/internal/ceres/triplet_sparse_matrix.h
@@ -0,0 +1,136 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_INTERNAL_TRIPLET_SPARSE_MATRIX_H_
+#define CERES_INTERNAL_TRIPLET_SPARSE_MATRIX_H_
+
+#include "ceres/sparse_matrix.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+namespace ceres {
+namespace internal {
+
+class SparseMatrixProto;
+
+// An implementation of the SparseMatrix interface to store and
+// manipulate sparse matrices in triplet (i,j,s) form.  This object is
+// inspired by the design of the cholmod_triplet struct used in the
+// SuiteSparse package and is memory layout compatible with it.
+class TripletSparseMatrix : public SparseMatrix {
+ public:
+  TripletSparseMatrix();
+  TripletSparseMatrix(int num_rows, int num_cols, int max_num_nonzeros);
+  explicit TripletSparseMatrix(const TripletSparseMatrix& orig);
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  explicit TripletSparseMatrix(const SparseMatrixProto& proto);
+#endif
+
+  TripletSparseMatrix& operator=(const TripletSparseMatrix& rhs);
+
+  ~TripletSparseMatrix();
+
+  // Implementation of the SparseMatrix interface.
+  virtual void SetZero();
+  virtual void RightMultiply(const double* x, double* y) const;
+  virtual void LeftMultiply(const double* x, double* y) const;
+  virtual void SquaredColumnNorm(double* x) const;
+  virtual void ScaleColumns(const double* scale);
+  virtual void ToDenseMatrix(Matrix* dense_matrix) const;
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+  virtual void ToProto(SparseMatrixProto *proto) const;
+#endif
+  virtual int num_rows()        const { return num_rows_;     }
+  virtual int num_cols()        const { return num_cols_;     }
+  virtual int num_nonzeros()    const { return num_nonzeros_; }
+  virtual const double* values()  const { return values_.get(); }
+  virtual double* mutable_values()      { return values_.get(); }
+  virtual void set_num_nonzeros(int num_nonzeros);
+
+  // Increase max_num_nonzeros and correspondingly increase the size
+  // of rows_, cols_ and values_. If new_max_num_nonzeros is smaller
+  // than max_num_nonzeros_, then num_non_zeros should be less than or
+  // equal to new_max_num_nonzeros, otherwise data loss is possible
+  // and the method crashes.
+  void Reserve(int new_max_num_nonzeros);
+
+  // Append the matrix B at the bottom of this matrix. B should have
+  // the same number of columns as num_cols_.
+  void AppendRows(const TripletSparseMatrix& B);
+
+  // Append the matrix B at the right of this matrix. B should have
+  // the same number of rows as num_rows_;
+  void AppendCols(const TripletSparseMatrix& B);
+
+  // Resize the matrix. Entries which fall outside the new matrix
+  // bounds are dropped and the num_non_zeros changed accordingly.
+  void Resize(int new_num_rows, int new_num_cols);
+
+  int max_num_nonzeros() const { return max_num_nonzeros_; }
+  const int* rows()      const { return rows_.get();       }
+  const int* cols()      const { return cols_.get();       }
+  int* mutable_rows()          { return rows_.get();       }
+  int* mutable_cols()          { return cols_.get();       }
+
+  // Returns true if the entries of the matrix obey the row, column,
+  // and column size bounds and false otherwise.
+  bool AllTripletsWithinBounds() const;
+
+  bool IsValid() const { return AllTripletsWithinBounds(); }
+
+  // Build a sparse diagonal matrix of size num_rows x num_rows from
+  // the array values. Entries of the values array are copied into the
+  // sparse matrix.
+  static TripletSparseMatrix* CreateSparseDiagonalMatrix(const double* values,
+                                                         int num_rows);
+
+ private:
+  void AllocateMemory();
+  void CopyData(const TripletSparseMatrix& orig);
+
+  int num_rows_;
+  int num_cols_;
+  int max_num_nonzeros_;
+  int num_nonzeros_;
+
+  // The data is stored as three arrays. For each i, values_[i] is
+  // stored at the location (rows_[i], cols_[i]). If the there are
+  // multiple entries with the same (rows_[i], cols_[i]), the values_
+  // entries corresponding to them are summed up.
+  scoped_array<int> rows_;
+  scoped_array<int> cols_;
+  scoped_array<double> values_;
+};
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_TRIPLET_SPARSE_MATRIX_H__
diff --git a/internal/ceres/triplet_sparse_matrix_test.cc b/internal/ceres/triplet_sparse_matrix_test.cc
new file mode 100644
index 0000000..ef3b42c
--- /dev/null
+++ b/internal/ceres/triplet_sparse_matrix_test.cc
@@ -0,0 +1,354 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/triplet_sparse_matrix.h"
+
+#include "gtest/gtest.h"
+#include "ceres/matrix_proto.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+TEST(TripletSparseMatrix, DefaultConstructorReturnsEmptyObject) {
+  TripletSparseMatrix m;
+  EXPECT_EQ(m.num_rows(), 0);
+  EXPECT_EQ(m.num_cols(), 0);
+  EXPECT_EQ(m.num_nonzeros(), 0);
+  EXPECT_EQ(m.max_num_nonzeros(), 0);
+}
+
+TEST(TripletSparseMatrix, SimpleConstructorAndBasicOperations) {
+  // Build a matrix
+  TripletSparseMatrix m(2, 5, 4);
+  EXPECT_EQ(m.num_rows(), 2);
+  EXPECT_EQ(m.num_cols(), 5);
+  EXPECT_EQ(m.num_nonzeros(), 0);
+  EXPECT_EQ(m.max_num_nonzeros(), 4);
+
+  m.mutable_rows()[0] = 0;
+  m.mutable_cols()[0] = 1;
+  m.mutable_values()[0] = 2.5;
+
+  m.mutable_rows()[1] = 1;
+  m.mutable_cols()[1] = 4;
+  m.mutable_values()[1] = 5.2;
+  m.set_num_nonzeros(2);
+
+  EXPECT_EQ(m.num_nonzeros(), 2);
+
+  ASSERT_TRUE(m.AllTripletsWithinBounds());
+
+  // We should never be able resize and lose data
+  ASSERT_DEATH(m.Reserve(1), "Reallocation will cause data loss");
+
+  // We should be able to resize while preserving data
+  m.Reserve(50);
+  EXPECT_EQ(m.max_num_nonzeros(), 50);
+
+  m.Reserve(3);
+  EXPECT_EQ(m.max_num_nonzeros(), 50);  // The space is already reserved.
+
+  EXPECT_EQ(m.rows()[0], 0);
+  EXPECT_EQ(m.rows()[1], 1);
+
+  EXPECT_EQ(m.cols()[0], 1);
+  EXPECT_EQ(m.cols()[1], 4);
+
+  EXPECT_DOUBLE_EQ(m.values()[0], 2.5);
+  EXPECT_DOUBLE_EQ(m.values()[1], 5.2);
+
+  // Bounds check should fail
+  m.mutable_rows()[0] = 10;
+  EXPECT_FALSE(m.AllTripletsWithinBounds());
+
+  m.mutable_rows()[0] = 1;
+  m.mutable_cols()[0] = 100;
+  EXPECT_FALSE(m.AllTripletsWithinBounds());
+
+  // Remove all data and then resize the data store
+  m.SetZero();
+  EXPECT_EQ(m.num_nonzeros(), 0);
+  m.Reserve(1);
+}
+
+TEST(TripletSparseMatrix, CopyConstructor) {
+  TripletSparseMatrix orig(2, 5, 4);
+  orig.mutable_rows()[0] = 0;
+  orig.mutable_cols()[0] = 1;
+  orig.mutable_values()[0] = 2.5;
+
+  orig.mutable_rows()[1] = 1;
+  orig.mutable_cols()[1] = 4;
+  orig.mutable_values()[1] = 5.2;
+  orig.set_num_nonzeros(2);
+
+  TripletSparseMatrix cpy(orig);
+
+  EXPECT_EQ(cpy.num_rows(), 2);
+  EXPECT_EQ(cpy.num_cols(), 5);
+  ASSERT_EQ(cpy.num_nonzeros(), 2);
+  EXPECT_EQ(cpy.max_num_nonzeros(), 4);
+
+  EXPECT_EQ(cpy.rows()[0], 0);
+  EXPECT_EQ(cpy.rows()[1], 1);
+
+  EXPECT_EQ(cpy.cols()[0], 1);
+  EXPECT_EQ(cpy.cols()[1], 4);
+
+  EXPECT_DOUBLE_EQ(cpy.values()[0], 2.5);
+  EXPECT_DOUBLE_EQ(cpy.values()[1], 5.2);
+}
+
+TEST(TripletSparseMatrix, AssignmentOperator) {
+  TripletSparseMatrix orig(2, 5, 4);
+  orig.mutable_rows()[0] = 0;
+  orig.mutable_cols()[0] = 1;
+  orig.mutable_values()[0] = 2.5;
+
+  orig.mutable_rows()[1] = 1;
+  orig.mutable_cols()[1] = 4;
+  orig.mutable_values()[1] = 5.2;
+  orig.set_num_nonzeros(2);
+
+  TripletSparseMatrix cpy(3, 50, 40);
+  cpy.mutable_rows()[0] = 0;
+  cpy.mutable_cols()[0] = 10;
+  cpy.mutable_values()[0] = 10.22;
+
+  cpy.mutable_rows()[1] = 2;
+  cpy.mutable_cols()[1] = 23;
+  cpy.mutable_values()[1] = 34.45;
+
+  cpy.mutable_rows()[0] = 0;
+  cpy.mutable_cols()[0] = 10;
+  cpy.mutable_values()[0] = 10.22;
+
+  cpy.mutable_rows()[1] = 0;
+  cpy.mutable_cols()[1] = 3;
+  cpy.mutable_values()[1] = 4.4;
+  cpy.set_num_nonzeros(3);
+
+  cpy = orig;
+
+  EXPECT_EQ(cpy.num_rows(), 2);
+  EXPECT_EQ(cpy.num_cols(), 5);
+  ASSERT_EQ(cpy.num_nonzeros(), 2);
+  EXPECT_EQ(cpy.max_num_nonzeros(), 4);
+
+  EXPECT_EQ(cpy.rows()[0], 0);
+  EXPECT_EQ(cpy.rows()[1], 1);
+
+  EXPECT_EQ(cpy.cols()[0], 1);
+  EXPECT_EQ(cpy.cols()[1], 4);
+
+  EXPECT_DOUBLE_EQ(cpy.values()[0], 2.5);
+  EXPECT_DOUBLE_EQ(cpy.values()[1], 5.2);
+}
+
+TEST(TripletSparseMatrix, AppendRows) {
+  // Build one matrix.
+  TripletSparseMatrix m(2, 5, 4);
+  m.mutable_rows()[0] = 0;
+  m.mutable_cols()[0] = 1;
+  m.mutable_values()[0] = 2.5;
+
+  m.mutable_rows()[1] = 1;
+  m.mutable_cols()[1] = 4;
+  m.mutable_values()[1] = 5.2;
+  m.set_num_nonzeros(2);
+
+  // Build another matrix.
+  TripletSparseMatrix a(10, 5, 4);
+  a.mutable_rows()[0] = 0;
+  a.mutable_cols()[0] = 1;
+  a.mutable_values()[0] = 3.5;
+
+  a.mutable_rows()[1] = 1;
+  a.mutable_cols()[1] = 4;
+  a.mutable_values()[1] = 6.2;
+
+  a.mutable_rows()[2] = 9;
+  a.mutable_cols()[2] = 5;
+  a.mutable_values()[2] = 1;
+  a.set_num_nonzeros(3);
+
+  // Glue the second matrix to the bottom of the first.
+  m.AppendRows(a);
+
+  EXPECT_EQ(m.num_rows(), 12);
+  EXPECT_EQ(m.num_cols(), 5);
+  ASSERT_EQ(m.num_nonzeros(), 5);
+
+  EXPECT_EQ(m.values()[0], 2.5);
+  EXPECT_EQ(m.values()[1], 5.2);
+  EXPECT_EQ(m.values()[2], 3.5);
+  EXPECT_EQ(m.values()[3], 6.2);
+  EXPECT_EQ(m.values()[4], 1);
+
+  EXPECT_EQ(m.rows()[0], 0);
+  EXPECT_EQ(m.rows()[1], 1);
+  EXPECT_EQ(m.rows()[2], 2);
+  EXPECT_EQ(m.rows()[3], 3);
+  EXPECT_EQ(m.rows()[4], 11);
+
+  EXPECT_EQ(m.cols()[0], 1);
+  EXPECT_EQ(m.cols()[1], 4);
+  EXPECT_EQ(m.cols()[2], 1);
+  EXPECT_EQ(m.cols()[3], 4);
+  EXPECT_EQ(m.cols()[4], 5);
+}
+
+TEST(TripletSparseMatrix, AppendCols) {
+  // Build one matrix.
+  TripletSparseMatrix m(2, 5, 4);
+  m.mutable_rows()[0] = 0;
+  m.mutable_cols()[0] = 1;
+  m.mutable_values()[0] = 2.5;
+
+  m.mutable_rows()[1] = 1;
+  m.mutable_cols()[1] = 4;
+  m.mutable_values()[1] = 5.2;
+  m.set_num_nonzeros(2);
+
+  // Build another matrix.
+  TripletSparseMatrix a(2, 15, 4);
+  a.mutable_rows()[0] = 0;
+  a.mutable_cols()[0] = 1;
+  a.mutable_values()[0] = 3.5;
+
+  a.mutable_rows()[1] = 1;
+  a.mutable_cols()[1] = 4;
+  a.mutable_values()[1] = 6.2;
+
+  a.mutable_rows()[2] = 0;
+  a.mutable_cols()[2] = 10;
+  a.mutable_values()[2] = 1;
+  a.set_num_nonzeros(3);
+
+  // Glue the second matrix to the left of the first.
+  m.AppendCols(a);
+
+  EXPECT_EQ(m.num_rows(), 2);
+  EXPECT_EQ(m.num_cols(), 20);
+  ASSERT_EQ(m.num_nonzeros(), 5);
+
+  EXPECT_EQ(m.values()[0], 2.5);
+  EXPECT_EQ(m.values()[1], 5.2);
+  EXPECT_EQ(m.values()[2], 3.5);
+  EXPECT_EQ(m.values()[3], 6.2);
+  EXPECT_EQ(m.values()[4], 1);
+
+  EXPECT_EQ(m.rows()[0], 0);
+  EXPECT_EQ(m.rows()[1], 1);
+  EXPECT_EQ(m.rows()[2], 0);
+  EXPECT_EQ(m.rows()[3], 1);
+  EXPECT_EQ(m.rows()[4], 0);
+
+  EXPECT_EQ(m.cols()[0], 1);
+  EXPECT_EQ(m.cols()[1], 4);
+  EXPECT_EQ(m.cols()[2], 6);
+  EXPECT_EQ(m.cols()[3], 9);
+  EXPECT_EQ(m.cols()[4], 15);
+}
+
+TEST(TripletSparseMatrix, CreateDiagonalMatrix) {
+  scoped_array<double> values(new double[10]);
+  for (int i = 0; i < 10; ++i)
+    values[i] = i;
+
+  scoped_ptr<TripletSparseMatrix> m(
+      TripletSparseMatrix::CreateSparseDiagonalMatrix(values.get(), 10));
+  EXPECT_EQ(m->num_rows(), 10);
+  EXPECT_EQ(m->num_cols(), 10);
+  ASSERT_EQ(m->num_nonzeros(), 10);
+  for (int i = 0; i < 10 ; ++i) {
+    EXPECT_EQ(m->rows()[i], i);
+    EXPECT_EQ(m->cols()[i], i);
+    EXPECT_EQ(m->values()[i], i);
+  }
+}
+
+TEST(TripletSparseMatrix, Resize) {
+  TripletSparseMatrix m(10, 20, 200);
+  int nnz = 0;
+  for (int i = 0; i < 10; ++i) {
+    for (int j = 0; j < 20; ++j) {
+      m.mutable_rows()[nnz] = i;
+      m.mutable_cols()[nnz] = j;
+      m.mutable_values()[nnz++] = i+j;
+    }
+  }
+  m.set_num_nonzeros(nnz);
+  m.Resize(5, 6);
+  EXPECT_EQ(m.num_rows(), 5);
+  EXPECT_EQ(m.num_cols(), 6);
+  ASSERT_EQ(m.num_nonzeros(), 30);
+  for (int i = 0; i < 30; ++i) {
+    EXPECT_EQ(m.values()[i], m.rows()[i] + m.cols()[i]);
+  }
+}
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST(TripletSparseMatrix, Serialization) {
+  TripletSparseMatrix m(2, 5, 4);
+
+  m.mutable_rows()[0] = 0;
+  m.mutable_cols()[0] = 1;
+  m.mutable_values()[0] = 2.5;
+
+  m.mutable_rows()[1] = 1;
+  m.mutable_cols()[1] = 4;
+  m.mutable_values()[1] = 5.2;
+  m.set_num_nonzeros(2);
+
+  // Roundtrip through serialization and check for equality.
+  SparseMatrixProto proto;
+  m.ToProto(&proto);
+
+  TripletSparseMatrix n(proto);
+
+  ASSERT_EQ(n.num_rows(), 2);
+  ASSERT_EQ(n.num_cols(), 5);
+
+  // Note that max_num_nonzeros gets truncated; the serialization
+  ASSERT_EQ(n.num_nonzeros(), 2);
+  ASSERT_EQ(n.max_num_nonzeros(), 2);
+
+  for (int i = 0; i < m.num_nonzeros(); ++i) {
+    EXPECT_EQ(m.rows()[i],   n.rows()[i]);
+    EXPECT_EQ(m.cols()[i],   n.cols()[i]);
+    EXPECT_EQ(m.values()[i], n.values()[i]);
+  }
+}
+#endif
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/types.cc b/internal/ceres/types.cc
new file mode 100644
index 0000000..55910b0
--- /dev/null
+++ b/internal/ceres/types.cc
@@ -0,0 +1,98 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <string>
+#include "ceres/types.h"
+
+namespace ceres {
+
+#define CASESTR(x) case x: return #x
+
+const char* LinearSolverTypeToString(LinearSolverType solver_type) {
+  switch (solver_type) {
+    CASESTR(SPARSE_NORMAL_CHOLESKY);
+    CASESTR(DENSE_QR);
+    CASESTR(DENSE_SCHUR);
+    CASESTR(SPARSE_SCHUR);
+    CASESTR(ITERATIVE_SCHUR);
+    CASESTR(CONJUGATE_GRADIENTS);
+    default:
+      return "UNKNOWN";
+  }
+}
+
+const char* PreconditionerTypeToString(
+    PreconditionerType preconditioner_type) {
+  switch (preconditioner_type) {
+    CASESTR(IDENTITY);
+    CASESTR(JACOBI);
+    CASESTR(SCHUR_JACOBI);
+    CASESTR(CLUSTER_JACOBI);
+    CASESTR(CLUSTER_TRIDIAGONAL);
+    default:
+      return "UNKNOWN";
+  }
+}
+
+const char* OrderingTypeToString(OrderingType ordering_type) {
+  switch (ordering_type) {
+    CASESTR(NATURAL);
+    CASESTR(USER);
+    CASESTR(SCHUR);
+    default:
+      return "UNKNOWN";
+  }
+}
+
+const char* SolverTerminationTypeToString(
+    SolverTerminationType termination_type) {
+  switch (termination_type) {
+    CASESTR(NO_CONVERGENCE);
+    CASESTR(FUNCTION_TOLERANCE);
+    CASESTR(GRADIENT_TOLERANCE);
+    CASESTR(PARAMETER_TOLERANCE);
+    CASESTR(NUMERICAL_FAILURE);
+    CASESTR(USER_ABORT);
+    CASESTR(USER_SUCCESS);
+    CASESTR(DID_NOT_RUN);
+    default:
+      return "UNKNOWN";
+  }
+}
+
+#undef CASESTR
+
+bool IsSchurType(LinearSolverType type) {
+  return ((type == SPARSE_SCHUR) ||
+          (type == DENSE_SCHUR)  ||
+          (type == ITERATIVE_SCHUR));
+}
+
+}  // namespace ceres
diff --git a/internal/ceres/unsymmetric_linear_solver_test.cc b/internal/ceres/unsymmetric_linear_solver_test.cc
new file mode 100644
index 0000000..be91056
--- /dev/null
+++ b/internal/ceres/unsymmetric_linear_solver_test.cc
@@ -0,0 +1,160 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/casts.h"
+#include "ceres/compressed_row_sparse_matrix.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/linear_solver.h"
+#include "ceres/triplet_sparse_matrix.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+
+namespace ceres {
+namespace internal {
+
+class UnsymmetricLinearSolverTest : public ::testing::Test {
+ protected :
+  virtual void SetUp() {
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CreateLinearLeastSquaresProblemFromId(0));
+
+    CHECK_NOTNULL(problem.get());
+    A_.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
+    b_.reset(problem->b.release());
+    D_.reset(problem->D.release());
+    sol1_.reset(problem->x.release());
+    sol2_.reset(problem->x_D.release());
+    x_.reset(new double[A_->num_cols()]);
+  }
+
+  void TestSolver(LinearSolverType linear_solver_type) {
+    LinearSolver::Options options;
+    options.type = linear_solver_type;
+    scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
+
+    LinearSolver::PerSolveOptions per_solve_options;
+
+    // Unregularized
+    LinearSolver::Summary summary =
+        solver->Solve(A_.get(), b_.get(), per_solve_options, x_.get());
+
+    EXPECT_EQ(summary.termination_type, TOLERANCE);
+
+    for (int i = 0; i < A_->num_cols(); ++i) {
+      EXPECT_NEAR(sol1_[i], x_[i], 1e-8);
+    }
+
+    // Regularized solution
+    per_solve_options.D = D_.get();
+    summary = solver->Solve(A_.get(), b_.get(), per_solve_options, x_.get());
+
+    EXPECT_EQ(summary.termination_type, TOLERANCE);
+
+    for (int i = 0; i < A_->num_cols(); ++i) {
+      EXPECT_NEAR(sol2_[i], x_[i], 1e-8);
+    }
+  }
+
+  scoped_ptr<TripletSparseMatrix> A_;
+  scoped_array<double> b_;
+  scoped_array<double> D_;
+  scoped_array<double> sol1_;
+  scoped_array<double> sol2_;
+
+  scoped_array<double> x_;
+};
+
+// TODO(keir): Reduce duplication.
+TEST_F(UnsymmetricLinearSolverTest, DenseQR) {
+  LinearSolver::Options options;
+  options.type = DENSE_QR;
+  scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
+
+  LinearSolver::PerSolveOptions per_solve_options;
+  DenseSparseMatrix A(*A_);
+
+  // Unregularized
+  LinearSolver::Summary summary =
+      solver->Solve(&A, b_.get(), per_solve_options, x_.get());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+  for (int i = 0; i < A_->num_cols(); ++i) {
+    EXPECT_NEAR(sol1_[i], x_[i], 1e-8);
+  }
+
+  VectorRef x(x_.get(), A_->num_cols());
+  VectorRef b(b_.get(), A_->num_rows());
+  Vector r = A.matrix()*x - b;
+  LOG(INFO) << "r = A*x - b: \n" << r;
+
+  // Regularized solution
+  per_solve_options.D = D_.get();
+  summary = solver->Solve(&A, b_.get(), per_solve_options, x_.get());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+  for (int i = 0; i < A_->num_cols(); ++i) {
+    EXPECT_NEAR(sol2_[i], x_[i], 1e-8);
+  }
+}
+
+#ifndef CERES_NO_SUITESPARSE
+TEST_F(UnsymmetricLinearSolverTest, SparseNormalCholesky) {
+  LinearSolver::Options options;
+  options.type = SPARSE_NORMAL_CHOLESKY;
+  scoped_ptr<LinearSolver>solver(LinearSolver::Create(options));
+
+  LinearSolver::PerSolveOptions per_solve_options;
+  CompressedRowSparseMatrix A(*A_);
+
+  // Unregularized
+  LinearSolver::Summary summary =
+      solver->Solve(&A, b_.get(), per_solve_options, x_.get());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+  for (int i = 0; i < A_->num_cols(); ++i) {
+    EXPECT_NEAR(sol1_[i], x_[i], 1e-8);
+  }
+
+  // Regularized solution
+  per_solve_options.D = D_.get();
+  summary = solver->Solve(&A, b_.get(), per_solve_options, x_.get());
+
+  EXPECT_EQ(summary.termination_type, TOLERANCE);
+  for (int i = 0; i < A_->num_cols(); ++i) {
+    EXPECT_NEAR(sol2_[i], x_[i], 1e-8);
+  }
+}
+#endif  // CERES_NO_SUITESPARSE
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/visibility.cc b/internal/ceres/visibility.cc
new file mode 100644
index 0000000..5dceeb8
--- /dev/null
+++ b/internal/ceres/visibility.cc
@@ -0,0 +1,149 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: kushalav@google.com (Avanish Kushal)
+
+#include <cmath>
+#include <ctime>
+#include <algorithm>
+#include <set>
+#include <vector>
+#include <utility>
+
+#include <glog/logging.h>
+#include "ceres/block_structure.h"
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+
+namespace ceres {
+namespace internal {
+
+void ComputeVisibility(const CompressedRowBlockStructure& block_structure,
+                       const int num_eliminate_blocks,
+                       vector< set<int> >* visibility) {
+  CHECK_NOTNULL(visibility);
+
+  // Clear the visibility vector and resize it to hold a
+  // vector for each camera.
+  visibility->resize(0);
+  visibility->resize(block_structure.cols.size() - num_eliminate_blocks);
+
+  for (int i = 0; i < block_structure.rows.size(); ++i) {
+    const vector<Cell>& cells = block_structure.rows[i].cells;
+    int block_id = cells[0].block_id;
+    // If the first block is not an e_block, then skip this row block.
+    if (block_id >= num_eliminate_blocks) {
+      continue;
+    }
+
+    for (int j = 1; j < cells.size(); ++j) {
+      int camera_block_id = cells[j].block_id - num_eliminate_blocks;
+      DCHECK_GE(camera_block_id, 0);
+      DCHECK_LT(camera_block_id, visibility->size());
+      (*visibility)[camera_block_id].insert(block_id);
+    }
+  }
+}
+
+Graph<int>* CreateSchurComplementGraph(const vector<set<int> >& visibility) {
+  const time_t start_time = time(NULL);
+  // Compute the number of e_blocks/point blocks. Since the visibility
+  // set for each e_block/camera contains the set of e_blocks/points
+  // visible to it, we find the maximum across all visibility sets.
+  int num_points = 0;
+  for (int i = 0; i < visibility.size(); i++) {
+    if (visibility[i].size() > 0) {
+      num_points = max(num_points, (*visibility[i].rbegin()) + 1);
+    }
+  }
+
+  // Invert the visibility. The input is a camera->point mapping,
+  // which tells us which points are visible in which
+  // cameras. However, to compute the sparsity structure of the Schur
+  // Complement efficiently, its better to have the point->camera
+  // mapping.
+  vector<set<int> > inverse_visibility(num_points);
+  for (int i = 0; i < visibility.size(); i++) {
+    const set<int>& visibility_set = visibility[i];
+    for (set<int>::const_iterator it = visibility_set.begin();
+         it != visibility_set.end();
+         ++it) {
+      inverse_visibility[*it].insert(i);
+    }
+  }
+
+  // Map from camera pairs to number of points visible to both cameras
+  // in the pair.
+  HashMap<pair<int, int>, int > camera_pairs;
+
+  // Count the number of points visible to each camera/f_block pair.
+  for (vector<set<int> >::const_iterator it = inverse_visibility.begin();
+       it != inverse_visibility.end();
+       ++it) {
+    const set<int>& inverse_visibility_set = *it;
+    for (set<int>::const_iterator camera1 = inverse_visibility_set.begin();
+         camera1 != inverse_visibility_set.end();
+         ++camera1) {
+      set<int>::const_iterator camera2 = camera1;
+      for (++camera2; camera2 != inverse_visibility_set.end(); ++camera2) {
+        ++(camera_pairs[make_pair(*camera1, *camera2)]);
+      }
+    }
+  }
+
+  Graph<int>* graph = new Graph<int>();
+
+  // Add vertices and initialize the pairs for self edges so that self
+  // edges are guaranteed. This is needed for the Canonical views
+  // algorithm to work correctly.
+  static const double kSelfEdgeWeight = 1.0;
+  for (int i = 0; i < visibility.size(); ++i) {
+    graph->AddVertex(i);
+    graph->AddEdge(i, i, kSelfEdgeWeight);
+  }
+
+  // Add an edge for each camera pair.
+  for (HashMap<pair<int, int>, int>::const_iterator it = camera_pairs.begin();
+       it != camera_pairs.end();
+       ++it) {
+    const int camera1 = it->first.first;
+    const int camera2 = it->first.second;
+    CHECK_NE(camera1, camera2);
+
+    const int count = it->second;
+    const double weight = static_cast<double>(count) /
+        (sqrt(visibility[camera1].size() * visibility[camera2].size()));
+    graph->AddEdge(camera1, camera2, weight);
+  }
+
+  VLOG(2) << "Schur complement graph time: " << (time(NULL) - start_time);
+  return graph;
+}
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/visibility.h b/internal/ceres/visibility.h
new file mode 100644
index 0000000..692dd87
--- /dev/null
+++ b/internal/ceres/visibility.h
@@ -0,0 +1,77 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: kushalav@google.com (Avanish Kushal)
+//         sameeragarwal@google.com (Sameer Agarwal)
+//
+// Functions to manipulate visibility information from the block
+// structure of sparse matrices.
+
+#ifndef CERES_INTERNAL_VISIBILITY_H_
+#define CERES_INTERNAL_VISIBILITY_H_
+
+#include <set>
+#include <vector>
+#include "ceres/graph.h"
+
+namespace ceres {
+namespace internal {
+
+class CompressedRowBlockStructure;
+
+// Given a compressed row block structure, computes the set of
+// e_blocks "visible" to each f_block. If an e_block co-occurs with an
+// f_block in a residual block, it is visible to the f_block. The
+// first num_eliminate_blocks columns blocks are e_blocks and the rest
+// f_blocks.
+//
+// In a structure from motion problem, e_blocks correspond to 3D
+// points and f_blocks correspond to cameras.
+void ComputeVisibility(const CompressedRowBlockStructure& block_structure,
+                       int num_eliminate_blocks,
+                       vector<set<int> >* visibility);
+
+// Given f_block visibility as computed by the ComputeVisibility
+// function above, construct and return a graph whose vertices are
+// f_blocks and an edge connects two vertices if they have atleast one
+// e_block in common. The weight of this edge is normalized dot
+// product between the visibility vectors of the two
+// vertices/f_blocks.
+//
+// This graph reflects the sparsity structure of reduced camera
+// matrix/Schur complement matrix obtained by eliminating the e_blocks
+// from the normal equations.
+//
+// Caller acquires ownership of the returned Graph pointer
+// (heap-allocated).
+Graph<int>* CreateSchurComplementGraph(const vector<set<int> >& visibility);
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_VISIBILITY_H_
diff --git a/internal/ceres/visibility_based_preconditioner.cc b/internal/ceres/visibility_based_preconditioner.cc
new file mode 100644
index 0000000..aca7752
--- /dev/null
+++ b/internal/ceres/visibility_based_preconditioner.cc
@@ -0,0 +1,611 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/visibility_based_preconditioner.h"
+
+#include <algorithm>
+#include <functional>
+#include <iterator>
+#include <numeric>
+#include <set>
+#include <utility>
+#include <vector>
+#include <glog/logging.h>
+#include "Eigen/Dense"
+#include "ceres/block_random_access_sparse_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/canonical_views_clustering.h"
+#include "ceres/collections_port.h"
+#include "ceres/detect_structure.h"
+#include "ceres/graph.h"
+#include "ceres/graph_algorithms.h"
+#include "ceres/linear_solver.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/visibility.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+// TODO(sameeragarwal): Currently these are magic weights for the
+// preconditioner construction. Move these higher up into the Options
+// struct and provide some guidelines for choosing them.
+//
+// This will require some more work on the clustering algorithm and
+// possibly some more refactoring of the code.
+static const double kSizePenaltyWeight = 3.0;
+static const double kSimilarityPenaltyWeight = 0.0;
+
+#ifndef CERES_NO_SUITESPARSE
+VisibilityBasedPreconditioner::VisibilityBasedPreconditioner(
+    const CompressedRowBlockStructure& bs,
+    const LinearSolver::Options& options)
+    : options_(options),
+      num_blocks_(0),
+      num_clusters_(0),
+      factor_(NULL) {
+  CHECK_GT(options_.num_eliminate_blocks, 0);
+  CHECK(options_.preconditioner_type == SCHUR_JACOBI ||
+        options_.preconditioner_type == CLUSTER_JACOBI ||
+        options_.preconditioner_type == CLUSTER_TRIDIAGONAL)
+      << "Unknown preconditioner type: " << options_.preconditioner_type;
+  num_blocks_ = bs.cols.size() - options_.num_eliminate_blocks;
+  CHECK_GT(num_blocks_, 0)
+      << "Jacobian should have atleast 1 f_block for "
+      << "visibility based preconditioning.";
+
+  // Vector of camera block sizes
+  block_size_.resize(num_blocks_);
+  for (int i = 0; i < num_blocks_; ++i) {
+    block_size_[i] = bs.cols[i + options_.num_eliminate_blocks].size;
+  }
+
+  const time_t start_time = time(NULL);
+  switch (options_.preconditioner_type) {
+    case SCHUR_JACOBI:
+      ComputeSchurJacobiSparsity(bs);
+      break;
+    case CLUSTER_JACOBI:
+      ComputeClusterJacobiSparsity(bs);
+      break;
+    case CLUSTER_TRIDIAGONAL:
+      ComputeClusterTridiagonalSparsity(bs);
+      break;
+    default:
+      LOG(FATAL) << "Unknown preconditioner type";
+  }
+  const time_t structure_time = time(NULL);
+  InitStorage(bs);
+  const time_t storage_time = time(NULL);
+  InitEliminator(bs);
+  const time_t eliminator_time = time(NULL);
+
+  // Allocate temporary storage for a vector used during
+  // RightMultiply.
+  tmp_rhs_ = CHECK_NOTNULL(ss_.CreateDenseVector(NULL,
+                                                 m_->num_rows(),
+                                                 m_->num_rows()));
+  const time_t init_time = time(NULL);
+  VLOG(2) << "init time: "
+          << init_time - start_time
+          << " structure time: " << structure_time - start_time
+          << " storage time:" << storage_time - structure_time
+          << " eliminator time: " << eliminator_time - storage_time;
+}
+
+VisibilityBasedPreconditioner::~VisibilityBasedPreconditioner() {
+  if (factor_ != NULL) {
+    ss_.Free(factor_);
+    factor_ = NULL;
+  }
+  if (tmp_rhs_ != NULL) {
+    ss_.Free(tmp_rhs_);
+    tmp_rhs_ = NULL;
+  }
+}
+
+// Determine the sparsity structure of the SCHUR_JACOBI
+// preconditioner. SCHUR_JACOBI is an extreme case of a visibility
+// based preconditioner where each camera block corresponds to a
+// cluster and there is no interaction between clusters.
+void VisibilityBasedPreconditioner::ComputeSchurJacobiSparsity(
+    const CompressedRowBlockStructure& bs) {
+  num_clusters_ = num_blocks_;
+  cluster_membership_.resize(num_blocks_);
+  cluster_pairs_.clear();
+
+  // Each camea block is a member of its own cluster and the only
+  // cluster pairs are the self edges (i,i).
+  for (int i = 0; i < num_clusters_; ++i) {
+    cluster_membership_[i] = i;
+    cluster_pairs_.insert(make_pair(i, i));
+  }
+}
+
+// Determine the sparsity structure of the CLUSTER_JACOBI
+// preconditioner. It clusters cameras using their scene
+// visibility. The clusters form the diagonal blocks of the
+// preconditioner matrix.
+void VisibilityBasedPreconditioner::ComputeClusterJacobiSparsity(
+    const CompressedRowBlockStructure& bs) {
+  vector<set<int> > visibility;
+  ComputeVisibility(bs, options_.num_eliminate_blocks, &visibility);
+  CHECK_EQ(num_blocks_, visibility.size());
+  ClusterCameras(visibility);
+  cluster_pairs_.clear();
+  for (int i = 0; i < num_clusters_; ++i) {
+    cluster_pairs_.insert(make_pair(i, i));
+  }
+}
+
+// Determine the sparsity structure of the CLUSTER_TRIDIAGONAL
+// preconditioner. It clusters cameras using using the scene
+// visibility and then finds the strongly interacting pairs of
+// clusters by constructing another graph with the clusters as
+// vertices and approximating it with a degree-2 maximum spanning
+// forest. The set of edges in this forest are the cluster pairs.
+void VisibilityBasedPreconditioner::ComputeClusterTridiagonalSparsity(
+    const CompressedRowBlockStructure& bs) {
+  vector<set<int> > visibility;
+  ComputeVisibility(bs, options_.num_eliminate_blocks, &visibility);
+  CHECK_EQ(num_blocks_, visibility.size());
+  ClusterCameras(visibility);
+
+  // Construct a weighted graph on the set of clusters, where the
+  // edges are the number of 3D points/e_blocks visible in both the
+  // clusters at the ends of the edge. Return an approximate degree-2
+  // maximum spanning forest of this graph.
+  vector<set<int> > cluster_visibility;
+  ComputeClusterVisibility(visibility, &cluster_visibility);
+  scoped_ptr<Graph<int> > cluster_graph(
+      CHECK_NOTNULL(CreateClusterGraph(cluster_visibility)));
+  scoped_ptr<Graph<int> > forest(
+      CHECK_NOTNULL(Degree2MaximumSpanningForest(*cluster_graph)));
+  ForestToClusterPairs(*forest, &cluster_pairs_);
+}
+
+// Allocate storage for the preconditioner matrix.
+void VisibilityBasedPreconditioner::InitStorage(
+    const CompressedRowBlockStructure& bs) {
+  ComputeBlockPairsInPreconditioner(bs);
+  m_.reset(new BlockRandomAccessSparseMatrix(block_size_, block_pairs_));
+}
+
+// Call the canonical views algorithm and cluster the cameras based on
+// their visibility sets. The visibility set of a camera is the set of
+// e_blocks/3D points in the scene that are seen by it.
+//
+// The cluster_membership_ vector is updated to indicate cluster
+// memberships for each camera block.
+void VisibilityBasedPreconditioner::ClusterCameras(
+    const vector<set<int> >& visibility) {
+  scoped_ptr<Graph<int> > schur_complement_graph(
+      CHECK_NOTNULL(CreateSchurComplementGraph(visibility)));
+
+  CanonicalViewsClusteringOptions options;
+  options.size_penalty_weight = kSizePenaltyWeight;
+  options.similarity_penalty_weight = kSimilarityPenaltyWeight;
+
+  vector<int> centers;
+  HashMap<int, int> membership;
+  ComputeCanonicalViewsClustering(*schur_complement_graph,
+                                  options,
+                                  &centers,
+                                  &membership);
+  num_clusters_ = centers.size();
+  CHECK_GT(num_clusters_, 0);
+  VLOG(2) << "num_clusters: " << num_clusters_;
+  FlattenMembershipMap(membership, &cluster_membership_);
+}
+
+// Compute the block sparsity structure of the Schur complement
+// matrix. For each pair of cameras contributing a non-zero cell to
+// the schur complement, determine if that cell is present in the
+// preconditioner or not.
+//
+// A pair of cameras contribute a cell to the preconditioner if they
+// are part of the same cluster or if the the two clusters that they
+// belong have an edge connecting them in the degree-2 maximum
+// spanning forest.
+//
+// For example, a camera pair (i,j) where i belonges to cluster1 and
+// j belongs to cluster2 (assume that cluster1 < cluster2).
+//
+// The cell corresponding to (i,j) is present in the preconditioner
+// if cluster1 == cluster2 or the pair (cluster1, cluster2) were
+// connected by an edge in the degree-2 maximum spanning forest.
+//
+// Since we have already expanded the forest into a set of camera
+// pairs/edges, including self edges, the check can be reduced to
+// checking membership of (cluster1, cluster2) in cluster_pairs_.
+void VisibilityBasedPreconditioner::ComputeBlockPairsInPreconditioner(
+    const CompressedRowBlockStructure& bs) {
+  block_pairs_.clear();
+  for (int i = 0; i < num_blocks_; ++i) {
+    block_pairs_.insert(make_pair(i, i));
+  }
+
+  int r = 0;
+  set<pair<int, int> > skipped_pairs;
+  const int num_row_blocks = bs.rows.size();
+  const int num_eliminate_blocks = options_.num_eliminate_blocks;
+
+  // Iterate over each row of the matrix. The block structure of the
+  // matrix is assumed to be sorted in order of the e_blocks/point
+  // blocks. Thus all row blocks containing an e_block/point occur
+  // contiguously. Further, if present, an e_block is always the first
+  // parameter block in each row block.  These structural assumptions
+  // are common to all Schur complement based solvers in Ceres.
+  //
+  // For each e_block/point block we identify the set of cameras
+  // seeing it. The cross product of this set with itself is the set
+  // of non-zero cells contibuted by this e_block.
+  //
+  // The time complexity of this is O(nm^2) where, n is the number of
+  // 3d points and m is the maximum number of cameras seeing any
+  // point, which for most scenes is a fairly small number.
+  while (r < num_row_blocks) {
+    int e_block_id = bs.rows[r].cells.front().block_id;
+    if (e_block_id >= num_eliminate_blocks) {
+      // Skip the rows whose first block is an f_block.
+      break;
+    }
+
+    set<int> f_blocks;
+    for (; r < num_row_blocks; ++r) {
+      const CompressedRow& row = bs.rows[r];
+      if (row.cells.front().block_id != e_block_id) {
+        break;
+      }
+
+      // Iterate over the blocks in the row, ignoring the first block
+      // since it is the one to be eliminated and adding the rest to
+      // the list of f_blocks associated with this e_block.
+      for (int c = 1; c < row.cells.size(); ++c) {
+        const Cell& cell = row.cells[c];
+        const int f_block_id = cell.block_id - num_eliminate_blocks;
+        CHECK_GE(f_block_id, 0);
+        f_blocks.insert(f_block_id);
+      }
+    }
+
+    for (set<int>::const_iterator block1 = f_blocks.begin();
+         block1 != f_blocks.end();
+         ++block1) {
+      set<int>::const_iterator block2 = block1;
+      ++block2;
+      for (; block2 != f_blocks.end(); ++block2) {
+        if (IsBlockPairInPreconditioner(*block1, *block2)) {
+          block_pairs_.insert(make_pair(*block1, *block2));
+        } else {
+          skipped_pairs.insert(make_pair(*block1, *block2));
+        }
+      }
+    }
+  }
+
+  // The remaining rows which do not contain any e_blocks.
+  for (; r < num_row_blocks; ++r) {
+    const CompressedRow& row = bs.rows[r];
+    CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
+    for (int i = 0; i < row.cells.size(); ++i) {
+      const int block1 = row.cells[i].block_id - num_eliminate_blocks;
+      for (int j = 0; j < row.cells.size(); ++j) {
+        const int block2 = row.cells[j].block_id - num_eliminate_blocks;
+        if (block1 <= block2) {
+          if (IsBlockPairInPreconditioner(block1, block2)) {
+            block_pairs_.insert(make_pair(block1, block2));
+          } else {
+            skipped_pairs.insert(make_pair(block1, block2));
+          }
+        }
+      }
+    }
+  }
+
+  VLOG(1) << "Block pair stats: "
+          << block_pairs_.size() << " included "
+          << skipped_pairs.size() << " excluded";
+}
+
+// Initialize the SchurEliminator.
+void VisibilityBasedPreconditioner::InitEliminator(
+    const CompressedRowBlockStructure& bs) {
+  LinearSolver::Options eliminator_options;
+  eliminator_options.num_eliminate_blocks = options_.num_eliminate_blocks;
+  eliminator_options.num_threads = options_.num_threads;
+  eliminator_options.constant_sparsity = true;
+
+  DetectStructure(bs, options_.num_eliminate_blocks,
+                  &eliminator_options.row_block_size,
+                  &eliminator_options.e_block_size,
+                  &eliminator_options.f_block_size);
+
+  eliminator_.reset(SchurEliminatorBase::Create(eliminator_options));
+  eliminator_->Init(options_.num_eliminate_blocks, &bs);
+}
+
+// Compute the values of the preconditioner matrix and factorize it.
+bool VisibilityBasedPreconditioner::Compute(const BlockSparseMatrixBase& A,
+                                            const double* D) {
+  const time_t start_time = time(NULL);
+  const int num_rows = m_->num_rows();
+  CHECK_GT(num_rows, 0);
+
+  // We need a dummy rhs vector and a dummy b vector since the Schur
+  // eliminator combines the computation of the reduced camera matrix
+  // with the computation of the right hand side of that linear
+  // system.
+  //
+  // TODO(sameeragarwal): Perhaps its worth refactoring the
+  // SchurEliminator::Eliminate function to allow NULL for the rhs. As
+  // of now it does not seem to be worth the effort.
+  Vector rhs = Vector::Zero(m_->num_rows());
+  Vector b = Vector::Zero(A.num_rows());
+
+  // Compute a subset of the entries of the Schur complement.
+  eliminator_->Eliminate(&A, b.data(), D, m_.get(), rhs.data());
+
+  // Try factorizing the matrix. For SCHUR_JACOBI and CLUSTER_JACOBI,
+  // this should always succeed modulo some numerical/conditioning
+  // problems. For CLUSTER_TRIDIAGONAL, in general the preconditioner
+  // matrix as constructed is not positive definite. However, we will
+  // go ahead and try factorizing it. If it works, great, otherwise we
+  // scale all the cells in the preconditioner corresponding to the
+  // edges in the degree-2 forest and that guarantees positive
+  // definiteness. The proof of this fact can be found in Lemma 1 in
+  // "Visibility Based Preconditioning for Bundle Adjustment".
+  //
+  // Doing the factorization like this saves us matrix mass when
+  // scaling is not needed, which is quite often in our experience.
+  bool status = Factorize();
+
+  // The scaling only affects the tri-diagonal case, since
+  // ScaleOffDiagonalBlocks only pays attenion to the cells that
+  // belong to the edges of the degree-2 forest. In the SCHUR_JACOBI
+  // and the CLUSTER_JACOBI cases, the preconditioner is guaranteed to
+  // be positive semidefinite.
+  if (!status && options_.preconditioner_type == CLUSTER_TRIDIAGONAL) {
+    VLOG(1) << "Unscaled factorization failed. Retrying with off-diagonal "
+            << "scaling";
+    ScaleOffDiagonalCells();
+    status = Factorize();
+  }
+
+  VLOG(2) << "Compute time: " << time(NULL) - start_time;
+  return status;
+}
+
+// Consider the preconditioner matrix as meta-block matrix, whose
+// blocks correspond to the clusters. Then cluster pairs corresponding
+// to edges in the degree-2 forest are off diagonal entries of this
+// matrix. Scaling these off-diagonal entries by 1/2 forces this
+// matrix to be positive definite.
+void VisibilityBasedPreconditioner::ScaleOffDiagonalCells() {
+  for (set< pair<int, int> >::const_iterator it = block_pairs_.begin();
+       it != block_pairs_.end();
+       ++it) {
+    const int block1 = it->first;
+    const int block2 = it->second;
+    if (!IsBlockPairOffDiagonal(block1, block2)) {
+      continue;
+    }
+
+    int r, c, row_stride, col_stride;
+    CellInfo* cell_info = m_->GetCell(block1, block2,
+                                      &r, &c,
+                                      &row_stride, &col_stride);
+    CHECK(cell_info != NULL)
+        << "Cell missing for block pair (" << block1 << "," << block2 << ")"
+        << " cluster pair (" << cluster_membership_[block1]
+        << " " << cluster_membership_[block2] << ")";
+
+    // Ah the magic of tri-diagonal matrices and diagonal
+    // dominance. See Lemma 1 in "Visibility Based Preconditioning
+    // For Bundle Adjustment".
+    MatrixRef m(cell_info->values, row_stride, col_stride);
+    m.block(r, c, block_size_[block1], block_size_[block2]) *= 0.5;
+  }
+}
+
+// Compute the sparse Cholesky factorization of the preconditioner
+// matrix.
+bool VisibilityBasedPreconditioner::Factorize() {
+  // Extract the TripletSparseMatrix that is used for actually storing
+  // S and convert it into a cholmod_sparse object.
+  cholmod_sparse* lhs = ss_.CreateSparseMatrix(
+      down_cast<BlockRandomAccessSparseMatrix*>(
+          m_.get())->mutable_matrix());
+
+  // The matrix is symmetric, and the upper triangular part of the
+  // matrix contains the values.
+  lhs->stype = 1;
+
+  // Symbolic factorization is computed if we don't already have one
+  // handy.
+  if (factor_ == NULL) {
+    factor_ = ss_.AnalyzeCholesky(lhs);
+  }
+
+  bool status = ss_.Cholesky(lhs, factor_);
+  ss_.Free(lhs);
+  return status;
+}
+
+void VisibilityBasedPreconditioner::RightMultiply(const double* x,
+                                                  double* y) const {
+  CHECK_NOTNULL(x);
+  CHECK_NOTNULL(y);
+  SuiteSparse* ss = const_cast<SuiteSparse*>(&ss_);
+
+  const int num_rows = m_->num_rows();
+  memcpy(CHECK_NOTNULL(tmp_rhs_)->x, x, m_->num_rows() * sizeof(*x));
+  cholmod_dense* solution = CHECK_NOTNULL(ss->Solve(factor_, tmp_rhs_));
+  memcpy(y, solution->x, sizeof(*y) * num_rows);
+  ss->Free(solution);
+}
+
+int VisibilityBasedPreconditioner::num_rows() const {
+  return m_->num_rows();
+}
+
+// Classify camera/f_block pairs as in and out of the preconditioner,
+// based on whether the cluster pair that they belong to is in the
+// preconditioner or not.
+bool VisibilityBasedPreconditioner::IsBlockPairInPreconditioner(
+    const int block1,
+    const int block2) const {
+  int cluster1 = cluster_membership_[block1];
+  int cluster2 = cluster_membership_[block2];
+  if (cluster1 > cluster2) {
+    std::swap(cluster1, cluster2);
+  }
+  return (cluster_pairs_.count(make_pair(cluster1, cluster2)) > 0);
+}
+
+bool VisibilityBasedPreconditioner::IsBlockPairOffDiagonal(
+    const int block1,
+    const int block2) const {
+  return (cluster_membership_[block1] != cluster_membership_[block2]);
+}
+
+// Convert a graph into a list of edges that includes self edges for
+// each vertex.
+void VisibilityBasedPreconditioner::ForestToClusterPairs(
+    const Graph<int>& forest,
+    HashSet<pair<int, int> >* cluster_pairs) const {
+  CHECK_NOTNULL(cluster_pairs)->clear();
+  const HashSet<int>& vertices = forest.vertices();
+  CHECK_EQ(vertices.size(), num_clusters_);
+
+  // Add all the cluster pairs corresponding to the edges in the
+  // forest.
+  for (HashSet<int>::const_iterator it1 = vertices.begin();
+       it1 != vertices.end();
+       ++it1) {
+    const int cluster1 = *it1;
+    cluster_pairs->insert(make_pair(cluster1, cluster1));
+    const HashSet<int>& neighbors = forest.Neighbors(cluster1);
+    for (HashSet<int>::const_iterator it2 = neighbors.begin();
+         it2 != neighbors.end();
+         ++it2) {
+      const int cluster2 = *it2;
+      if (cluster1 < cluster2) {
+        cluster_pairs->insert(make_pair(cluster1, cluster2));
+      }
+    }
+  }
+}
+
+// The visibilty set of a cluster is the union of the visibilty sets
+// of all its cameras. In other words, the set of points visible to
+// any camera in the cluster.
+void VisibilityBasedPreconditioner::ComputeClusterVisibility(
+    const vector<set<int> >& visibility,
+    vector<set<int> >* cluster_visibility) const {
+  CHECK_NOTNULL(cluster_visibility)->resize(0);
+  cluster_visibility->resize(num_clusters_);
+  for (int i = 0; i < num_blocks_; ++i) {
+    const int cluster_id = cluster_membership_[i];
+    (*cluster_visibility)[cluster_id].insert(visibility[i].begin(),
+                                             visibility[i].end());
+  }
+}
+
+// Construct a graph whose vertices are the clusters, and the edge
+// weights are the number of 3D points visible to cameras in both the
+// vertices.
+Graph<int>* VisibilityBasedPreconditioner::CreateClusterGraph(
+    const vector<set<int> >& cluster_visibility) const {
+  Graph<int>* cluster_graph = new Graph<int>;
+
+  for (int i = 0; i < num_clusters_; ++i) {
+    cluster_graph->AddVertex(i);
+  }
+
+  for (int i = 0; i < num_clusters_; ++i) {
+    const set<int>& cluster_i = cluster_visibility[i];
+    for (int j = i+1; j < num_clusters_; ++j) {
+      vector<int> intersection;
+      const set<int>& cluster_j = cluster_visibility[j];
+      set_intersection(cluster_i.begin(), cluster_i.end(),
+                       cluster_j.begin(), cluster_j.end(),
+                       back_inserter(intersection));
+
+      if (intersection.size() > 0) {
+        // Clusters interact strongly when they share a large number
+        // of 3D points. The degree-2 maximum spanning forest
+        // alorithm, iterates on the edges in decreasing order of
+        // their weight, which is the number of points shared by the
+        // two cameras that it connects.
+        cluster_graph->AddEdge(i, j, intersection.size());
+      }
+    }
+  }
+  return cluster_graph;
+}
+
+// Canonical views clustering returns a HashMap from vertices to
+// cluster ids. Convert this into a flat array for quick lookup. It is
+// possible that some of the vertices may not be associated with any
+// cluster. In that case, randomly assign them to one of the clusters.
+void VisibilityBasedPreconditioner::FlattenMembershipMap(
+    const HashMap<int, int>& membership_map,
+    vector<int>* membership_vector) const {
+  CHECK_NOTNULL(membership_vector)->resize(0);
+  membership_vector->resize(num_blocks_, -1);
+  // Iterate over the cluster membership map and update the
+  // cluster_membership_ vector assigning arbitrary cluster ids to
+  // the few cameras that have not been clustered.
+  for (HashMap<int, int>::const_iterator it = membership_map.begin();
+       it != membership_map.end();
+       ++it) {
+    const int camera_id = it->first;
+    int cluster_id = it->second;
+
+    // If the view was not clustered, randomly assign it to one of the
+    // clusters. This preserves the mathematical correctness of the
+    // preconditioner. If there are too many views which are not
+    // clustered, it may lead to some quality degradation though.
+    //
+    // TODO(sameeragarwal): Check if a large number of views have not
+    // been clustered and deal with it?
+    if (cluster_id == -1) {
+      cluster_id = camera_id % num_clusters_;
+    }
+
+    membership_vector->at(camera_id) = cluster_id;
+  }
+}
+
+#endif  // CERES_NO_SUITESPARSE
+
+}  // namespace internal
+}  // namespace ceres
diff --git a/internal/ceres/visibility_based_preconditioner.h b/internal/ceres/visibility_based_preconditioner.h
new file mode 100644
index 0000000..fa095ca
--- /dev/null
+++ b/internal/ceres/visibility_based_preconditioner.h
@@ -0,0 +1,273 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+//
+// Preconditioners for linear systems that arise in Structure from
+// Motion problems. VisibilityBasedPreconditioner implements three
+// preconditioners:
+//
+//  SCHUR_JACOBI
+//  CLUSTER_JACOBI
+//  CLUSTER_TRIDIAGONAL
+//
+// Detailed descriptions of these preconditions beyond what is
+// documented here can be found in
+//
+// Bundle Adjustment in the Large
+// S. Agarwal, N. Snavely, S. Seitz & R. Szeliski, ECCV 2010
+// http://www.cs.washington.edu/homes/sagarwal/bal.pdf
+//
+// Visibility Based Preconditioning for Bundle Adjustment
+// A. Kushal & S. Agarwal, submitted to CVPR 2012
+// http://www.cs.washington.edu/homes/sagarwal/vbp.pdf
+//
+// The three preconditioners share enough code that its most efficient
+// to implement them as part of the same code base.
+
+#ifndef CERES_INTERNAL_VISIBILITY_BASED_PRECONDITIONER_H_
+#define CERES_INTERNAL_VISIBILITY_BASED_PRECONDITIONER_H_
+
+#include <set>
+#include <vector>
+#include <utility>
+#include "ceres/collections_port.h"
+#include "ceres/graph.h"
+#include "ceres/linear_solver.h"
+#include "ceres/linear_operator.h"
+#include "ceres/suitesparse.h"
+#include "ceres/internal/macros.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+class BlockRandomAccessSparseMatrix;
+class BlockSparseMatrixBase;
+class CompressedRowBlockStructure;
+class SchurEliminatorBase;
+
+// This class implements three preconditioners for Structure from
+// Motion/Bundle Adjustment problems. The name
+// VisibilityBasedPreconditioner comes from the fact that the sparsity
+// structure of the preconditioner matrix is determined by analyzing
+// the visibility structure of the scene, i.e. which cameras see which
+// points.
+//
+// Strictly speaking, SCHUR_JACOBI is not a visibility based
+// preconditioner but it is an extreme case of CLUSTER_JACOBI, where
+// every cluster contains exactly one camera block. Treating it as a
+// special case of CLUSTER_JACOBI makes it easy to implement as part
+// of the same code base with no significant loss of performance.
+//
+// In the following, we will only discuss CLUSTER_JACOBI and
+// CLUSTER_TRIDIAGONAL.
+//
+// The key idea of visibility based preconditioning is to identify
+// cameras that we expect have strong interactions, and then using the
+// entries in the Schur complement matrix corresponding to these
+// camera pairs as an approximation to the full Schur complement.
+//
+// CLUSTER_JACOBI identifies these camera pairs by clustering cameras,
+// and considering all non-zero camera pairs within each cluster. The
+// clustering in the current implementation is done using the
+// Canonical Views algorithm of Simon et al. (see
+// canonical_views_clustering.h). For the purposes of clustering, the
+// similarity or the degree of interaction between a pair of cameras
+// is measured by counting the number of points visible in both the
+// cameras. Thus the name VisibilityBasedPreconditioner. Further, if we
+// were to permute the parameter blocks such that all the cameras in
+// the same cluster occur contiguously, the preconditioner matrix will
+// be a block diagonal matrix with blocks corresponding to the
+// clusters. Thus in analogy with the Jacobi preconditioner we refer
+// to this as the CLUSTER_JACOBI preconditioner.
+//
+// CLUSTER_TRIDIAGONAL adds more mass to the CLUSTER_JACOBI
+// preconditioner by considering the interaction between clusters and
+// identifying strong interactions between cluster pairs. This is done
+// by constructing a weighted graph on the clusters, with the weight
+// on the edges connecting two clusters proportional to the number of
+// 3D points visible to cameras in both the clusters. A degree-2
+// maximum spanning forest is identified in this graph and the camera
+// pairs contained in the edges of this forest are added to the
+// preconditioner. The detailed reasoning for this construction is
+// explained in the paper mentioned above.
+//
+// Degree-2 spanning trees and forests have the property that they
+// correspond to tri-diagonal matrices. Thus there exist a permutation
+// of the camera blocks under which the CLUSTER_TRIDIAGONAL
+// preconditioner matrix is a block tridiagonal matrix, and thus the
+// name for the preconditioner.
+//
+// Thread Safety: This class is NOT thread safe.
+//
+// Example usage:
+//
+//   LinearSolver::Options options;
+//   options.preconditioner_type = CLUSTER_JACOBI;
+//   options.num_eliminate_blocks = num_points;
+//   VisibilityBasedPreconditioner preconditioner(
+//      *A.block_structure(), options);
+//   preconditioner.Compute(A, NULL);
+//   preconditioner.RightMultiply(x, y);
+//
+
+#ifndef CERES_NO_SUITESPARSE
+class VisibilityBasedPreconditioner : public LinearOperator {
+ public:
+  // Initialize the symbolic structure of the preconditioner. bs is
+  // the block structure of the linear system to be solved. It is used
+  // to determine the sparsity structure of the preconditioner matrix.
+  //
+  // It has the same structural requirement as other Schur complement
+  // based solvers. Please see schur_eliminator.h for more details.
+  //
+  // LinearSolver::Options::num_eliminate_blocks should be set to the
+  // number of e_blocks in the block structure.
+  //
+  // TODO(sameeragarwal): The use of LinearSolver::Options should
+  // ultimately be replaced with Preconditioner::Options and some sort
+  // of preconditioner factory along the lines of
+  // LinearSolver::CreateLinearSolver. I will wait to do this till I
+  // create a general purpose block Jacobi preconditioner for general
+  // sparse problems along with a CGLS solver.
+  VisibilityBasedPreconditioner(const CompressedRowBlockStructure& bs,
+                                const LinearSolver::Options& options);
+  virtual ~VisibilityBasedPreconditioner();
+
+  // Compute the numerical value of the preconditioner for the linear
+  // system:
+  //
+  //  |   A   | x = |b|
+  //  |diag(D)|     |0|
+  //
+  // for some vector b. It is important that the matrix A have the
+  // same block structure as the one used to construct this object.
+  //
+  // D can be NULL, in which case its interpreted as a diagonal matrix
+  // of size zero.
+  bool Compute(const BlockSparseMatrixBase& A,
+               const double* D);
+
+  // LinearOperator interface. Since the operator is symmetric,
+  // LeftMultiply and num_cols are just calls to RightMultiply and
+  // num_rows respectively. Compute() must be called before
+  // RightMultiply can be called.
+  virtual void RightMultiply(const double* x, double* y) const;
+  virtual void LeftMultiply(const double* x, double* y) const {
+    RightMultiply(x, y);
+  }
+  virtual int num_rows() const;
+  virtual int num_cols() const { return num_rows(); }
+
+  friend class VisibilityBasedPreconditionerTest;
+ private:
+  void ComputeSchurJacobiSparsity(const CompressedRowBlockStructure& bs);
+  void ComputeClusterJacobiSparsity(const CompressedRowBlockStructure& bs);
+  void ComputeClusterTridiagonalSparsity(const CompressedRowBlockStructure& bs);
+  void InitStorage(const CompressedRowBlockStructure& bs);
+  void InitEliminator(const CompressedRowBlockStructure& bs);
+  bool Factorize();
+  void ScaleOffDiagonalCells();
+
+  void ClusterCameras(const vector< set<int> >& visibility);
+  void FlattenMembershipMap(const HashMap<int, int>& membership_map,
+                            vector<int>* membership_vector) const;
+  void ComputeClusterVisibility(const vector<set<int> >& visibility,
+                                vector<set<int> >* cluster_visibility) const;
+  Graph<int>* CreateClusterGraph(const vector<set<int> >& visibility) const;
+  void ForestToClusterPairs(const Graph<int>& forest,
+                            HashSet<pair<int, int> >* cluster_pairs) const;
+  void ComputeBlockPairsInPreconditioner(const CompressedRowBlockStructure& bs);
+  bool IsBlockPairInPreconditioner(int block1, int block2) const;
+  bool IsBlockPairOffDiagonal(int block1, int block2) const;
+
+  LinearSolver::Options options_;
+
+  // Number of parameter blocks in the schur complement.
+  int num_blocks_;
+  int num_clusters_;
+
+  // Sizes of the blocks in the schur complement.
+  vector<int> block_size_;
+
+  // Mapping from cameras to clusters.
+  vector<int> cluster_membership_;
+
+  // Non-zero camera pairs from the schur complement matrix that are
+  // present in the preconditioner, sorted by row (first element of
+  // each pair), then column (second).
+  set<pair<int, int> > block_pairs_;
+
+  // Set of cluster pairs (including self pairs (i,i)) in the
+  // preconditioner.
+  HashSet<pair<int, int> > cluster_pairs_;
+  scoped_ptr<SchurEliminatorBase> eliminator_;
+
+  // Preconditioner matrix.
+  scoped_ptr<BlockRandomAccessSparseMatrix> m_;
+
+  // RightMultiply is a const method for LinearOperators. It is
+  // implemented using CHOLMOD's sparse triangular matrix solve
+  // function. This however requires non-const access to the
+  // SuiteSparse context object, even though it does not result in any
+  // of the state of the preconditioner being modified.
+  SuiteSparse ss_;
+
+  // Symbolic and numeric factorization of the preconditioner.
+  cholmod_factor* factor_;
+
+  // Temporary vector used by RightMultiply.
+  cholmod_dense* tmp_rhs_;
+  DISALLOW_COPY_AND_ASSIGN(VisibilityBasedPreconditioner);
+};
+#else  // SuiteSparse
+// If SuiteSparse is not compiled in, the preconditioner is not
+// available.
+class VisibilityBasedPreconditioner : public LinearOperator {
+ public:
+  VisibilityBasedPreconditioner(const CompressedRowBlockStructure& bs,
+                                const LinearSolver::Options& options) {
+    LOG(FATAL) << "Visibility based preconditioning is not available. Please "
+        "build Ceres with SuiteSparse.";
+  }
+  virtual ~VisibilityBasedPreconditioner() {}
+  virtual void RightMultiply(const double* x, double* y) const {}
+  virtual void LeftMultiply(const double* x, double* y) const {}
+  virtual int num_rows() const { return -1; }
+  virtual int num_cols() const { return -1; }
+  bool Compute(const BlockSparseMatrixBase& A, const double* D) {
+    return false;
+  }
+};
+#endif  // CERES_NO_SUITESPARSE
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_INTERNAL_VISIBILITY_BASED_PRECONDITIONER_H_
diff --git a/internal/ceres/visibility_based_preconditioner_test.cc b/internal/ceres/visibility_based_preconditioner_test.cc
new file mode 100644
index 0000000..390f081
--- /dev/null
+++ b/internal/ceres/visibility_based_preconditioner_test.cc
@@ -0,0 +1,363 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: sameeragarwal@google.com (Sameer Agarwal)
+
+#ifndef CERES_NO_SUITESPARSE
+
+#include "ceres/visibility_based_preconditioner.h"
+
+#include <glog/logging.h>
+#include "ceres/file.h"
+#include "gtest/gtest.h"
+#include "Eigen/Dense"
+#include "ceres/block_random_access_dense_matrix.h"
+#include "ceres/block_random_access_sparse_matrix.h"
+#include "ceres/block_sparse_matrix.h"
+#include "ceres/casts.h"
+#include "ceres/collections_port.h"
+#include "ceres/linear_least_squares_problems.h"
+#include "ceres/schur_eliminator.h"
+#include "ceres/stringprintf.h"
+#include "ceres/internal/eigen.h"
+#include "ceres/internal/scoped_ptr.h"
+#include "ceres/types.h"
+
+DECLARE_string(test_srcdir);
+
+namespace ceres {
+namespace internal {
+
+using testing::AssertionResult;
+using testing::AssertionSuccess;
+using testing::AssertionFailure;
+
+static const double kTolerance = 1e-12;
+
+class VisibilityBasedPreconditionerTest : public ::testing::Test {
+ public:
+  static const int kCameraSize = 9;
+
+ protected:
+  void SetUp() {
+    string input_file =
+        JoinPath(FLAGS_test_srcdir,
+                       "problem-6-1384-000.lsqp"); // NOLINT
+
+    scoped_ptr<LinearLeastSquaresProblem> problem(
+        CHECK_NOTNULL(CreateLinearLeastSquaresProblemFromFile(input_file)));
+    A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
+    b_.reset(problem->b.release());
+    D_.reset(problem->D.release());
+
+    const CompressedRowBlockStructure* bs =
+        CHECK_NOTNULL(A_->block_structure());
+    const int num_col_blocks = bs->cols.size();
+
+    num_cols_ = A_->num_cols();
+    num_rows_ = A_->num_rows();
+    num_eliminate_blocks_ = problem->num_eliminate_blocks;
+    num_camera_blocks_ = num_col_blocks - num_eliminate_blocks_;
+    options_.num_eliminate_blocks = num_eliminate_blocks_;
+
+    vector<int> blocks(num_col_blocks - num_eliminate_blocks_, 0);
+    for (int i = num_eliminate_blocks_; i < num_col_blocks; ++i) {
+      blocks[i - num_eliminate_blocks_] = bs->cols[i].size;
+    }
+
+    // The input matrix is a real jacobian and fairly poorly
+    // conditioned. Setting D to a large constant makes the normal
+    // equations better conditioned and makes the tests below better
+    // conditioned.
+    VectorRef(D_.get(), num_cols_).setConstant(10.0);
+
+    schur_complement_.reset(new BlockRandomAccessDenseMatrix(blocks));
+    Vector rhs(schur_complement_->num_rows());
+
+    scoped_ptr<SchurEliminatorBase> eliminator;
+    eliminator.reset(SchurEliminatorBase::Create(options_));
+    eliminator->Init(num_eliminate_blocks_, bs);
+    eliminator->Eliminate(A_.get(), b_.get(), D_.get(),
+                          schur_complement_.get(), rhs.data());
+  }
+
+
+  AssertionResult IsSparsityStructureValid() {
+    preconditioner_->InitStorage(*A_->block_structure());
+    const HashSet<pair<int, int> >& cluster_pairs = get_cluster_pairs();
+    const vector<int>& cluster_membership = get_cluster_membership();
+
+    for (int i = 0; i < num_camera_blocks_; ++i) {
+      for (int j = i; j < num_camera_blocks_; ++j) {
+        if (cluster_pairs.count(make_pair(cluster_membership[i],
+                                          cluster_membership[j]))) {
+          if (!IsBlockPairInPreconditioner(i, j)) {
+            return AssertionFailure()
+                << "block pair (" << i << "," << j << "missing";
+          }
+        } else {
+          if (IsBlockPairInPreconditioner(i, j)) {
+            return AssertionFailure()
+                << "block pair (" << i << "," << j << "should not be present";
+          }
+        }
+      }
+    }
+    return AssertionSuccess();
+  }
+
+  AssertionResult PreconditionerValuesMatch() {
+    preconditioner_->Compute(*A_, D_.get());
+    const HashSet<pair<int, int> >& cluster_pairs = get_cluster_pairs();
+    const BlockRandomAccessSparseMatrix* m = get_m();
+    Matrix preconditioner_matrix;
+    m->matrix()->ToDenseMatrix(&preconditioner_matrix);
+    ConstMatrixRef full_schur_complement(schur_complement_->values(),
+                                         m->num_rows(),
+                                         m->num_rows());
+    const int num_clusters = get_num_clusters();
+    const int kDiagonalBlockSize =
+        kCameraSize * num_camera_blocks_ / num_clusters;
+
+    for (int i = 0; i < num_clusters; ++i) {
+      for (int j = i; j < num_clusters; ++j) {
+        double diff = 0.0;
+        if (cluster_pairs.count(make_pair(i, j))) {
+          diff =
+              (preconditioner_matrix.block(kDiagonalBlockSize * i,
+                                           kDiagonalBlockSize * j,
+                                           kDiagonalBlockSize,
+                                           kDiagonalBlockSize) -
+               full_schur_complement.block(kDiagonalBlockSize * i,
+                                           kDiagonalBlockSize * j,
+                                           kDiagonalBlockSize,
+                                           kDiagonalBlockSize)).norm();
+        } else {
+          diff = preconditioner_matrix.block(kDiagonalBlockSize * i,
+                                             kDiagonalBlockSize * j,
+                                             kDiagonalBlockSize,
+                                             kDiagonalBlockSize).norm();
+        }
+        if (diff > kTolerance) {
+          return AssertionFailure()
+              << "Preconditioner block " << i << " " << j << " differs "
+              << "from expected value by " << diff;
+        }
+      }
+    }
+    return AssertionSuccess();
+  }
+
+  // Accessors
+  int get_num_blocks() { return preconditioner_->num_blocks_; }
+
+  int get_num_clusters() { return preconditioner_->num_clusters_; }
+  int* get_mutable_num_clusters() { return &preconditioner_->num_clusters_; }
+
+  const vector<int>& get_block_size() {
+    return preconditioner_->block_size_; }
+
+  vector<int>* get_mutable_block_size() {
+    return &preconditioner_->block_size_; }
+
+  const vector<int>& get_cluster_membership() {
+    return preconditioner_->cluster_membership_;
+  }
+
+  vector<int>* get_mutable_cluster_membership() {
+    return &preconditioner_->cluster_membership_;
+  }
+
+  const set<pair<int, int> >& get_block_pairs() {
+    return preconditioner_->block_pairs_;
+  }
+
+  set<pair<int, int> >* get_mutable_block_pairs() {
+    return &preconditioner_->block_pairs_;
+  }
+
+  const HashSet<pair<int, int> >& get_cluster_pairs() {
+    return preconditioner_->cluster_pairs_;
+  }
+
+  HashSet<pair<int, int> >* get_mutable_cluster_pairs() {
+    return &preconditioner_->cluster_pairs_;
+  }
+
+  bool IsBlockPairInPreconditioner(const int block1, const int block2) {
+    return preconditioner_->IsBlockPairInPreconditioner(block1, block2);
+  }
+
+  bool IsBlockPairOffDiagonal(const int block1, const int block2) {
+    return preconditioner_->IsBlockPairOffDiagonal(block1, block2);
+  }
+
+  const BlockRandomAccessSparseMatrix* get_m() {
+    return preconditioner_->m_.get();
+  }
+
+  int num_rows_;
+  int num_cols_;
+  int num_eliminate_blocks_;
+  int num_camera_blocks_;
+
+  scoped_ptr<BlockSparseMatrix> A_;
+  scoped_array<double> b_;
+  scoped_array<double> D_;
+
+  LinearSolver::Options options_;
+  scoped_ptr<VisibilityBasedPreconditioner> preconditioner_;
+  scoped_ptr<BlockRandomAccessDenseMatrix> schur_complement_;
+};
+
+#ifndef CERES_DONT_HAVE_PROTOCOL_BUFFERS
+TEST_F(VisibilityBasedPreconditionerTest, SchurJacobiStructure) {
+  options_.preconditioner_type = SCHUR_JACOBI;
+  preconditioner_.reset(
+      new VisibilityBasedPreconditioner(*A_->block_structure(), options_));
+  EXPECT_EQ(get_num_blocks(), num_camera_blocks_);
+  EXPECT_EQ(get_num_clusters(), num_camera_blocks_);
+  for (int i = 0; i < num_camera_blocks_; ++i) {
+    for (int j = 0; j < num_camera_blocks_; ++j) {
+      const string msg = StringPrintf("Camera pair: %d %d", i, j);
+      SCOPED_TRACE(msg);
+      if (i == j) {
+        EXPECT_TRUE(IsBlockPairInPreconditioner(i, j));
+        EXPECT_FALSE(IsBlockPairOffDiagonal(i, j));
+      } else {
+        EXPECT_FALSE(IsBlockPairInPreconditioner(i, j));
+        EXPECT_TRUE(IsBlockPairOffDiagonal(i, j));
+      }
+    }
+  }
+}
+
+TEST_F(VisibilityBasedPreconditionerTest, OneClusterClusterJacobi) {
+  options_.preconditioner_type = CLUSTER_JACOBI;
+  preconditioner_.reset(
+      new VisibilityBasedPreconditioner(*A_->block_structure(), options_));
+
+  // Override the clustering to be a single clustering containing all
+  // the cameras.
+  vector<int>& cluster_membership = *get_mutable_cluster_membership();
+  for (int i = 0; i < num_camera_blocks_; ++i) {
+    cluster_membership[i] = 0;
+  }
+
+  *get_mutable_num_clusters() = 1;
+
+  HashSet<pair<int, int> >& cluster_pairs = *get_mutable_cluster_pairs();
+  cluster_pairs.clear();
+  cluster_pairs.insert(make_pair(0, 0));
+
+  EXPECT_TRUE(IsSparsityStructureValid());
+  EXPECT_TRUE(PreconditionerValuesMatch());
+
+  // Multiplication by the inverse of the preconditioner.
+  const int num_rows = schur_complement_->num_rows();
+  ConstMatrixRef full_schur_complement(schur_complement_->values(),
+                                       num_rows,
+                                       num_rows);
+  Vector x(num_rows);
+  Vector y(num_rows);
+  Vector z(num_rows);
+
+  for (int i = 0; i < num_rows; ++i) {
+    x.setZero();
+    y.setZero();
+    z.setZero();
+    x[i] = 1.0;
+    preconditioner_->RightMultiply(x.data(), y.data());
+    z = full_schur_complement
+        .selfadjointView<Eigen::Upper>()
+        .ldlt().solve(x);
+    double max_relative_difference =
+        ((y - z).array() / z.array()).matrix().lpNorm<Eigen::Infinity>();
+    EXPECT_NEAR(max_relative_difference, 0.0, kTolerance);
+  }
+}
+
+
+
+TEST_F(VisibilityBasedPreconditionerTest, ClusterJacobi) {
+  options_.preconditioner_type = CLUSTER_JACOBI;
+  preconditioner_.reset(
+      new VisibilityBasedPreconditioner(*A_->block_structure(), options_));
+
+  // Override the clustering to be equal number of cameras.
+  vector<int>& cluster_membership = *get_mutable_cluster_membership();
+  cluster_membership.resize(num_camera_blocks_);
+  static const int kNumClusters = 3;
+
+  for (int i = 0; i < num_camera_blocks_; ++i) {
+    cluster_membership[i] = (i * kNumClusters) / num_camera_blocks_;
+  }
+  *get_mutable_num_clusters() = kNumClusters;
+
+  HashSet<pair<int, int> >& cluster_pairs = *get_mutable_cluster_pairs();
+  cluster_pairs.clear();
+  for (int i = 0; i < kNumClusters; ++i) {
+    cluster_pairs.insert(make_pair(i, i));
+  }
+
+  EXPECT_TRUE(IsSparsityStructureValid());
+  EXPECT_TRUE(PreconditionerValuesMatch());
+}
+
+
+TEST_F(VisibilityBasedPreconditionerTest, ClusterTridiagonal) {
+  options_.preconditioner_type = CLUSTER_TRIDIAGONAL;
+  preconditioner_.reset(
+      new VisibilityBasedPreconditioner(*A_->block_structure(), options_));
+  static const int kNumClusters = 3;
+
+  // Override the clustering to be 3 clusters.
+  vector<int>& cluster_membership = *get_mutable_cluster_membership();
+  cluster_membership.resize(num_camera_blocks_);
+  for (int i = 0; i < num_camera_blocks_; ++i) {
+    cluster_membership[i] = (i * kNumClusters) / num_camera_blocks_;
+  }
+  *get_mutable_num_clusters() = kNumClusters;
+
+  // Spanning forest has structure 0-1 2
+  HashSet<pair<int, int> >& cluster_pairs = *get_mutable_cluster_pairs();
+  cluster_pairs.clear();
+  for (int i = 0; i < kNumClusters; ++i) {
+    cluster_pairs.insert(make_pair(i, i));
+  }
+  cluster_pairs.insert(make_pair(0, 1));
+
+  EXPECT_TRUE(IsSparsityStructureValid());
+  EXPECT_TRUE(PreconditionerValuesMatch());
+}
+#endif  // CERES_DONT_HAVE_PROTOCOL_BUFFERS
+
+}  // namespace internal
+}  // namespace ceres
+
+#endif  // CERES_NO_SUITESPARSE
diff --git a/internal/ceres/visibility_test.cc b/internal/ceres/visibility_test.cc
new file mode 100644
index 0000000..ac26dfc
--- /dev/null
+++ b/internal/ceres/visibility_test.cc
@@ -0,0 +1,203 @@
+// Ceres Solver - A fast non-linear least squares minimizer
+// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
+// http://code.google.com/p/ceres-solver/
+//
+// 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 Google 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.
+//
+// Author: kushalav@google.com (Avanish Kushal)
+//         sameeragarwal@google.com (Sameer Agarwal)
+
+#include "ceres/visibility.h"
+
+#include <set>
+#include <vector>
+#include <glog/logging.h>
+#include "gtest/gtest.h"
+#include "ceres/block_structure.h"
+#include "ceres/graph.h"
+#include "ceres/internal/scoped_ptr.h"
+
+namespace ceres {
+namespace internal {
+
+class VisibilityTest : public ::testing::Test {
+};
+
+TEST(VisibilityTest, SimpleMatrix) {
+  //   A = [1 0 0 0 0 1
+  //        1 0 0 1 0 0
+  //        0 1 1 0 0 0
+  //        0 1 0 0 1 0]
+
+  int num_cols = 6;
+  int num_eliminate_blocks = 2;
+  CompressedRowBlockStructure bs;
+
+  // Row 1
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 0;
+    row.cells.push_back(Cell(0, 0));
+    row.cells.push_back(Cell(5, 0));
+  }
+
+  // Row 2
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 2;
+    row.cells.push_back(Cell(0, 1));
+    row.cells.push_back(Cell(3, 1));
+  }
+
+  // Row 3
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 4;
+    row.cells.push_back(Cell(1, 2));
+    row.cells.push_back(Cell(2, 2));
+  }
+
+  // Row 4
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 6;
+    row.cells.push_back(Cell(1, 3));
+    row.cells.push_back(Cell(4, 3));
+  }
+  bs.cols.resize(num_cols);
+
+  vector< set<int> > visibility;
+  ComputeVisibility(bs, num_eliminate_blocks, &visibility);
+  ASSERT_EQ(visibility.size(), num_cols - num_eliminate_blocks);
+  for (int i = 0; i < visibility.size(); ++i) {
+    ASSERT_EQ(visibility[i].size(), 1);
+  }
+
+  scoped_ptr<Graph<int> > graph(CreateSchurComplementGraph(visibility));
+  EXPECT_EQ(graph->vertices().size(), visibility.size());
+  for (int i = 0; i < visibility.size(); ++i) {
+    EXPECT_EQ(graph->VertexWeight(i), 1.0);
+  }
+
+  for (int i = 0; i < visibility.size(); ++i) {
+    for (int j = i; j < visibility.size(); ++j) {
+      double edge_weight = 0.0;
+      if ((i == 1 && j == 3) || (i == 0 && j == 2) || (i == j)) {
+        edge_weight = 1.0;
+      }
+
+      EXPECT_EQ(graph->EdgeWeight(i, j), edge_weight)
+          << "Edge: " << i << " " << j
+          << " weight: " << graph->EdgeWeight(i, j)
+          << " expected weight: " << edge_weight;
+    }
+  }
+}
+
+
+TEST(VisibilityTest, NoEBlocks) {
+  //   A = [1 0 0 0 0 0
+  //        1 0 0 0 0 0
+  //        0 1 0 0 0 0
+  //        0 1 0 0 0 0]
+
+  int num_cols = 6;
+  int num_eliminate_blocks = 2;
+  CompressedRowBlockStructure bs;
+
+  // Row 1
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 0;
+    row.cells.push_back(Cell(0, 0));
+  }
+
+  // Row 2
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 2;
+    row.cells.push_back(Cell(0, 1));
+  }
+
+  // Row 3
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 4;
+    row.cells.push_back(Cell(1, 2));
+  }
+
+  // Row 4
+  {
+    bs.rows.push_back(CompressedRow());
+    CompressedRow& row = bs.rows.back();
+    row.block.size = 2;
+    row.block.position = 6;
+    row.cells.push_back(Cell(1, 3));
+  }
+  bs.cols.resize(num_cols);
+
+  vector<set<int> > visibility;
+  ComputeVisibility(bs, num_eliminate_blocks, &visibility);
+  ASSERT_EQ(visibility.size(), num_cols - num_eliminate_blocks);
+  for (int i = 0; i < visibility.size(); ++i) {
+    ASSERT_EQ(visibility[i].size(), 0);
+  }
+
+  scoped_ptr<Graph<int> > graph(CreateSchurComplementGraph(visibility));
+  EXPECT_EQ(graph->vertices().size(), visibility.size());
+  for (int i = 0; i < visibility.size(); ++i) {
+    EXPECT_EQ(graph->VertexWeight(i), 1.0);
+  }
+
+  for (int i = 0; i < visibility.size(); ++i) {
+    for (int j = i; j < visibility.size(); ++j) {
+      double edge_weight = 0.0;
+      if (i == j) {
+        edge_weight = 1.0;
+      }
+      EXPECT_EQ(graph->EdgeWeight(i, j), edge_weight)
+          << "Edge: " << i << " " << j
+          << " weight: " << graph->EdgeWeight(i, j)
+          << " expected weight: " << edge_weight;
+    }
+  }
+}
+
+}  // namespace internal
+}  // namespace ceres